diff --git a/code/__DEFINES/stats.dm b/code/__DEFINES/stats.dm index 1810d01e1d..bc7cbfc4a4 100644 --- a/code/__DEFINES/stats.dm +++ b/code/__DEFINES/stats.dm @@ -8,7 +8,11 @@ #define FACEHUG_TIER_3 100 #define FACEHUG_TIER_4 1000 +/// Consecutive rounds this player has readied up and failed to get a slot. +#define PLAYER_STAT_UNASSIGNED_ROUND_STREAK "unassigned_round_streak" + // Stat Categories #define STAT_CATEGORY_MARINE "marine" #define STAT_CATEGORY_XENO "xeno" #define STAT_CATEGORY_YAUTJA "yautja" +#define STAT_CATEGORY_MISC "misc" diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm index aa73d6008e..936be4aaef 100644 --- a/code/__HELPERS/_lists.dm +++ b/code/__HELPERS/_lists.dm @@ -149,6 +149,43 @@ return null +/** + * Shuffles a provided list based on the weight of each element. + * + * Higher weight elements have a higher probability of being picked and tend to appear earlier in the list. + * Unweighted elements are never picked and are discarded. + * + * Arguments: + * * list_to_pick - assoc list in the form of: element = weight + * + * Returns list of shuffled weighted elements + */ +/proc/shuffle_weight(list/list_to_pick) + list_to_pick = list_to_pick.Copy() //not inplace + + var/total_weight = 0 + for(var/item in list_to_pick) + if(list_to_pick[item]) + total_weight += list_to_pick[item] + else + list_to_pick -= item //discard unweighted + + var/list_to_return = list() + + while(length(list_to_pick)) + var/target_weight = rand(1, total_weight) + for(var/item in list_to_pick) + var/item_weight = list_to_pick[item] + target_weight -= item_weight + + if(target_weight <= 0) + list_to_return += item + list_to_pick -= item + total_weight -= item_weight + break + + return list_to_return + /** * Removes any null entries from the list * Returns TRUE if the list had nulls, FALSE otherwise diff --git a/code/controllers/subsystem/xeno_ai.dm b/code/controllers/subsystem/xeno_ai.dm index 9cd608f211..6f22d17e42 100644 --- a/code/controllers/subsystem/xeno_ai.dm +++ b/code/controllers/subsystem/xeno_ai.dm @@ -11,6 +11,43 @@ SUBSYSTEM_DEF(xeno_ai) var/ai_kill = FALSE + //currently the only caste that has an actual targeting difference is facehugger + /// Assoc list of valid targets by hive & caste, in the form of: hive = (/caste = targets) + var/list/target_cache = list() + +/datum/controller/subsystem/xeno_ai/proc/get_valid_targets(mob/living/carbon/xenomorph/xeno) + var/datum/hive_status/hive = xeno.hive + LAZYINITLIST(target_cache[hive]) + + var/caste = xeno.type + if(target_cache[hive][caste]) + return target_cache[hive][caste] + + var/list/valid_targets = list() + target_cache[hive][caste] = valid_targets + + for(var/mob/living/carbon/potential_target in GLOB.alive_mob_list) + if(!potential_target.ai_can_target(xeno)) + continue + + valid_targets += potential_target + + for(var/obj/vehicle/multitile/potential_vehicle_target as anything in GLOB.all_multi_vehicles) + if(potential_vehicle_target.health <= 0) + continue + + if(hive.faction_is_ally(potential_vehicle_target.vehicle_faction)) + continue + + if(!length(valid_targets & potential_vehicle_target.interior.get_passengers())) + continue + + valid_targets += potential_vehicle_target + + valid_targets += GLOB.all_active_defenses + + return valid_targets + /datum/controller/subsystem/xeno_ai/stat_entry(msg) msg = "P:[length(ai_mobs)]" return ..() @@ -26,6 +63,10 @@ SUBSYSTEM_DEF(xeno_ai) message_admins("[key_name_admin(usr)] [SSxeno_ai.ai_kill? "killed" : "revived"] all xeno AI.") /datum/controller/subsystem/xeno_ai/fire(resumed = FALSE) + for(var/datum/hive_status/hive as anything in target_cache) + for(var/caste as anything in target_cache[hive]) + target_cache[hive][caste] = null + if(ai_kill) return diff --git a/code/datums/ammo/bullet/pistol.dm b/code/datums/ammo/bullet/pistol.dm index ff74a2148b..a821b41ac6 100644 --- a/code/datums/ammo/bullet/pistol.dm +++ b/code/datums/ammo/bullet/pistol.dm @@ -100,7 +100,7 @@ headshot_state = HEADSHOT_OVERLAY_MEDIUM accuracy = HIT_ACCURACY_TIER_3 accuracy_var_low = PROJECTILE_VARIANCE_TIER_6 - damage = 55 + damage = 45 penetration = ARMOR_PENETRATION_TIER_3 shrapnel_chance = SHRAPNEL_CHANCE_TIER_2 diff --git a/code/datums/ammo/bullet/shotgun.dm b/code/datums/ammo/bullet/shotgun.dm index 7330d22a03..cee7d0c9ab 100644 --- a/code/datums/ammo/bullet/shotgun.dm +++ b/code/datums/ammo/bullet/shotgun.dm @@ -11,28 +11,30 @@ name = "shotgun slug" handful_state = "slug_shell" - accurate_range = 6 - max_range = 8 - damage = 70 - penetration = ARMOR_PENETRATION_TIER_4 + accurate_range = 7 + max_range = 14 + damage = 90 + penetration = ARMOR_PENETRATION_TIER_6 + damage_var_low = PROJECTILE_VARIANCE_TIER_10 + damage_var_high = PROJECTILE_VARIANCE_TIER_1 damage_armor_punch = 2 handful_state = "slug_shell" /datum/ammo/bullet/shotgun/slug/on_hit_mob(mob/M,obj/projectile/P) - knockback(M, P, 6) + knockback(M, P, 8) /datum/ammo/bullet/shotgun/slug/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile) if(iscarbonsizexeno(living_mob)) var/mob/living/carbon/xenomorph/target = living_mob to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!")) - target.KnockDown(0.5) // If you ask me the KD should be left out, but players like their visual cues - target.Stun(0.5) - target.apply_effect(1, SUPERSLOW) - target.apply_effect(3, SLOW) + target.KnockDown(3.5) + target.Stun(3.5) + target.Slow(5) else if(!isyautja(living_mob)) //Not predators. - living_mob.apply_effect(1, SUPERSLOW) - living_mob.apply_effect(2, SLOW) + living_mob.KnockDown(2) + living_mob.Stun(2) + living_mob.Superslow(5) to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!")) living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) @@ -42,11 +44,9 @@ handful_state = "beanbag_slug" icon_state = "beanbag" flags_ammo_behavior = AMMO_BALLISTIC|AMMO_IGNORE_RESIST - sound_override = 'sound/weapons/gun_shotgun_riot.ogg' - max_range = 12 shrapnel_chance = 0 - damage = 0 + damage = 20 stamina_damage = 45 accuracy = HIT_ACCURACY_TIER_3 shell_speed = AMMO_SPEED_TIER_3 @@ -127,19 +127,36 @@ accuracy_var_low = PROJECTILE_VARIANCE_TIER_5 accuracy_var_high = PROJECTILE_VARIANCE_TIER_5 - accurate_range = 4 - max_range = 4 - damage = 65 - damage_var_low = PROJECTILE_VARIANCE_TIER_8 - damage_var_high = PROJECTILE_VARIANCE_TIER_8 + accurate_range = 7 + max_range = 9 + damage = 50 + damage_var_low = PROJECTILE_VARIANCE_TIER_10 + damage_var_high = PROJECTILE_VARIANCE_TIER_1 penetration = ARMOR_PENETRATION_TIER_1 - bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_3 + bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_7 shell_speed = AMMO_SPEED_TIER_2 damage_armor_punch = 0 pen_armor_punch = 0 handful_state = "buckshot_shell" multiple_handful_name = TRUE +/datum/ammo/bullet/shotgun/buckshot/on_hit_mob(mob/M,obj/projectile/P) + knockback(M, P, 4) +/datum/ammo/bullet/shotgun/buckshot/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile) + if(iscarbonsizexeno(living_mob)) + var/mob/living/carbon/xenomorph/target = living_mob + to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!")) + target.KnockDown(2.5) + target.Stun(2.5) + target.Slow(4) + else + if(!isyautja(living_mob)) //Not predators. + living_mob.KnockDown(3) + living_mob.Stun(3) + living_mob.Slow(5) + to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!")) + living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) + /datum/ammo/bullet/shotgun/buckshot/incendiary name = "incendiary buckshot shell" handful_state = "incen_buckshot" @@ -178,8 +195,8 @@ accuracy_var_low = PROJECTILE_VARIANCE_TIER_6 accuracy_var_high = PROJECTILE_VARIANCE_TIER_6 accurate_range = 4 - max_range = 4 - damage = 65 + max_range = 6 + damage = 50 damage_var_low = PROJECTILE_VARIANCE_TIER_8 damage_var_high = PROJECTILE_VARIANCE_TIER_8 penetration = ARMOR_PENETRATION_TIER_1 @@ -191,6 +208,23 @@ /datum/ammo/bullet/shotgun/spread/masterkey damage = 20 +/datum/ammo/bullet/shotgun/spread/on_hit_mob(mob/M,obj/projectile/P) + knockback(M, P, 4) +/datum/ammo/bullet/shotgun/spread/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile) + if(iscarbonsizexeno(living_mob)) + var/mob/living/carbon/xenomorph/target = living_mob + to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!")) + target.KnockDown(2.5) + target.Stun(2.5) + target.Slow(4) + else + if(!isyautja(living_mob)) //Not predators. + living_mob.KnockDown(3) + living_mob.Stun(3) + living_mob.Slow(5) + to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!")) + living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) + /datum/ammo/bullet/shotgun/spread/special name = "additional buckshot, USCM special type" @@ -209,24 +243,53 @@ handful_state = "heavy_buckshot" multiple_handful_name = TRUE bonus_projectiles_type = /datum/ammo/bullet/shotgun/heavy/buckshot/spread - bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_3 - accurate_range = 3 - max_range = 3 + bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_8 + accurate_range = 8 + max_range = 10 damage = 75 - penetration = 0 + penetration = ARMOR_PENETRATION_TIER_2 shell_speed = AMMO_SPEED_TIER_2 damage_armor_punch = 0 pen_armor_punch = 0 /datum/ammo/bullet/shotgun/heavy/buckshot/on_hit_mob(mob/M,obj/projectile/P) - knockback(M,P) + knockback(M,P,5) +/datum/ammo/bullet/shotgun/heavy/buckshot/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile) + if(iscarbonsizexeno(living_mob)) + var/mob/living/carbon/xenomorph/target = living_mob + to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!")) + target.KnockDown(5) + target.Stun(5) + target.Slow(8) + else + if(!isyautja(living_mob)) //Not predators. + living_mob.KnockDown(2) + living_mob.Stun(2) + living_mob.Slow(6) + to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!")) + living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) /datum/ammo/bullet/shotgun/heavy/buckshot/spread name = "additional heavy buckshot" - max_range = 4 + max_range = 7 scatter = SCATTER_AMOUNT_TIER_1 bonus_projectiles_amount = 0 +/datum/ammo/bullet/shotgun/heavy/buckshot/spread/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile) + if(iscarbonsizexeno(living_mob)) + var/mob/living/carbon/xenomorph/target = living_mob + to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!")) + target.KnockDown(5) + target.Stun(5) + target.Slow(8) + else + if(!isyautja(living_mob)) //Not predators. + living_mob.KnockDown(2) + living_mob.Stun(2) + living_mob.Slow(6) + to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!")) + living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) + /datum/ammo/bullet/shotgun/heavy/buckshot/special bonus_projectiles_type = /datum/ammo/bullet/shotgun/heavy/buckshot/spread/special bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_8 @@ -251,8 +314,8 @@ multiple_handful_name = TRUE damage_type = BURN damage = 60 - accurate_range = 3 - max_range = 4 + accurate_range = 4 + max_range = 6 bonus_projectiles_type = /datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath/spread /datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath/set_bullet_traits() @@ -264,9 +327,7 @@ /datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath/spread name = "additional dragon's breath" bonus_projectiles_amount = 0 - accurate_range = 4 - max_range = 5 //make use of the ablaze property - shell_speed = AMMO_SPEED_TIER_4 // so they hit before the main shell stuns + shell_speed = AMMO_SPEED_TIER_4 /datum/ammo/bullet/shotgun/heavy/slug @@ -274,26 +335,26 @@ handful_state = "heavy_slug" accurate_range = 7 - max_range = 8 - damage = 90 //ouch. - penetration = ARMOR_PENETRATION_TIER_6 + max_range = 17 + damage = 120 //ouch. + penetration = ARMOR_PENETRATION_TIER_9 damage_armor_punch = 2 /datum/ammo/bullet/shotgun/heavy/slug/on_hit_mob(mob/M,obj/projectile/P) - knockback(M, P, 7) + knockback(M, P, 8) /datum/ammo/bullet/shotgun/heavy/slug/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile) if(iscarbonsizexeno(living_mob)) var/mob/living/carbon/xenomorph/target = living_mob to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!")) - target.KnockDown(0.5) // If you ask me the KD should be left out, but players like their visual cues - target.Stun(0.5) - target.apply_effect(2, SUPERSLOW) - target.apply_effect(5, SLOW) + target.KnockDown(7) + target.Stun(7) + target.Slow(10) else if(!isyautja(living_mob)) //Not predators. - living_mob.apply_effect(1, SUPERSLOW) - living_mob.apply_effect(2, SLOW) + living_mob.KnockDown(8) + living_mob.Stun(8) + living_mob.Superslow(15) to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!")) living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) @@ -303,14 +364,13 @@ headshot_state = HEADSHOT_OVERLAY_MEDIUM handful_state = "heavy_beanbag" flags_ammo_behavior = AMMO_BALLISTIC|AMMO_IGNORE_RESIST - sound_override = 'sound/weapons/gun_shotgun_riot.ogg' max_range = 7 shrapnel_chance = 0 - damage = 0 + damage = 25 stamina_damage = 100 - accuracy = HIT_ACCURACY_TIER_2 - shell_speed = AMMO_SPEED_TIER_2 + accuracy = HIT_ACCURACY_TIER_6 + shell_speed = 3 /datum/ammo/bullet/shotgun/heavy/beanbag/on_hit_mob(mob/M, obj/projectile/P) if(!M || M == P.firer) diff --git a/code/datums/ammo/bullet/sniper.dm b/code/datums/ammo/bullet/sniper.dm index edf3fa3b8f..58fe6c3988 100644 --- a/code/datums/ammo/bullet/sniper.dm +++ b/code/datums/ammo/bullet/sniper.dm @@ -275,7 +275,7 @@ /datum/ammo/bullet/sniper/anti_materiel/vulture damage = 400 // Fully intended to vaporize anything smaller than a mini cooper - accurate_range_min = 10 + accurate_range_min = 0 handful_state = "vulture_bullet" sound_hit = 'sound/bullets/bullet_vulture_impact.ogg' flags_ammo_behavior = AMMO_BALLISTIC|AMMO_SNIPER|AMMO_IGNORE_COVER|AMMO_ANTIVEHICLE diff --git a/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm b/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm index 96eaa7d8fb..1f84842e54 100644 --- a/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm +++ b/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm @@ -22,7 +22,7 @@ if(isfacehugger(checked_xeno)) return FALSE - var/mob/parent_mob = parent + var/mob/living/parent_mob = parent var/captee_stat = parent_mob.stat var/mob/pulledby = parent_mob.pulledby @@ -45,7 +45,7 @@ if(distance > 10) return FALSE - if(captee_stat == CONSCIOUS) + if(captee_stat == CONSCIOUS && !(locate(/datum/effects/crit) in parent_mob.effects_list)) return FALSE if(isxeno(pulledby) && pulledby != checked_xeno) diff --git a/code/datums/effects/mob_crit/human_crit.dm b/code/datums/effects/mob_crit/human_crit.dm index ff4d0eeda0..8b25b2bc2a 100644 --- a/code/datums/effects/mob_crit/human_crit.dm +++ b/code/datums/effects/mob_crit/human_crit.dm @@ -8,7 +8,8 @@ qdel(src) return FALSE - affected_mob.apply_effect(3, PARALYZE) + affected_mob.KnockDown(3) + affected_mob.Stun(3) if(!affected_mob.reagents || !affected_mob.reagents.has_reagent("inaprovaline")) affected_mob.apply_damage(1, OXY) diff --git a/code/datums/effects/pain/human_pain.dm b/code/datums/effects/pain/human_pain.dm index 9c8070596b..bddd793077 100644 --- a/code/datums/effects/pain/human_pain.dm +++ b/code/datums/effects/pain/human_pain.dm @@ -58,7 +58,8 @@ var/mob/living/carbon/affected_mob = affected_atom if(do_once) - affected_mob.apply_effect(3, PARALYZE) + affected_mob.KnockDown(3) + affected_mob.Stun(3) do_once = FALSE affected_mob.EyeBlur(2) @@ -83,7 +84,8 @@ affected_mob.EyeBlur(2) if(affected_mob.pain && affected_mob.pain.feels_pain) affected_mob.TalkStutter(2) - affected_mob.apply_effect(2, PARALYZE) + affected_mob.KnockDown(2) + affected_mob.Stun(2) if(!affected_mob.reagents || !affected_mob.reagents.has_reagent("inaprovaline")) affected_mob.apply_damage(0.5, OXY) diff --git a/code/datums/factions/clf.dm b/code/datums/factions/clf.dm index 5456084b1a..8cd3756c41 100644 --- a/code/datums/factions/clf.dm +++ b/code/datums/factions/clf.dm @@ -58,19 +58,19 @@ list("MP5 Magazine (9mm)", 5, /obj/item/ammo_magazine/smg/mp5, null, VENDOR_ITEM_REGULAR), list("SIDEARMS", 0, null, null, null), - list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("Beretta 92FS Pistol", 15, /obj/item/weapon/gun/pistol/b92fs, null, VENDOR_ITEM_REGULAR), - list("CMB Spearhead Autorevolver", 15, /obj/item/weapon/gun/revolver/cmb, null, VENDOR_ITEM_REGULAR), + list("CMB Spearhead Autorevolver", 15, /obj/item/weapon/gun/revolver/spearhead, null, VENDOR_ITEM_REGULAR), list("Holdout Pistol", 10, /obj/item/weapon/gun/pistol/holdout, null, VENDOR_ITEM_REGULAR), list("KT-42 Automag", 15, /obj/item/weapon/gun/pistol/kt42, null, VENDOR_ITEM_REGULAR), list("S&W .357 Revolver", 15, /obj/item/weapon/gun/revolver/small, null, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", 0, null, null, null), - list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("Beretta 92FS Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/b92fs, null, VENDOR_ITEM_REGULAR), list("KT-42 Magazine (.44)", 5, /obj/item/ammo_magazine/pistol/kt42, null, VENDOR_ITEM_REGULAR), - list("Spearhead Speed Loader (.357)", 10, /obj/item/ammo_magazine/revolver/cmb/normalpoint, VENDOR_ITEM_REGULAR), - list("Hollowpoint Spearhead Speed Loader (.357)", 5, /obj/item/ammo_magazine/revolver/cmb, VENDOR_ITEM_REGULAR), + list("Spearhead Speed Loader (.357)", 10, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR), + list("Hollowpoint Spearhead Speed Loader (.357)", 5, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR), list("S&W Speed Loader (.357)", 5, /obj/item/ammo_magazine/revolver/small, null, VENDOR_ITEM_REGULAR), list("Tiny Pistol Magazine (.22)", 5, /obj/item/ammo_magazine/pistol/holdout, null, VENDOR_ITEM_REGULAR), @@ -126,19 +126,19 @@ list("MP5 Magazine (9mm)", 60, /obj/item/ammo_magazine/smg/mp5, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", 20, /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 20, /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("Beretta 92FS Pistol", 20, /obj/item/weapon/gun/pistol/b92fs, VENDOR_ITEM_REGULAR), - list("CMB Spearhead Autorevolver", 20, /obj/item/weapon/gun/revolver/cmb, VENDOR_ITEM_REGULAR), + list("CMB Spearhead Autorevolver", 20, /obj/item/weapon/gun/revolver/spearhead, VENDOR_ITEM_REGULAR), list("Holdout Pistol", 20, /obj/item/weapon/gun/pistol/holdout, VENDOR_ITEM_REGULAR), list("KT-42 Automag", 20, /obj/item/weapon/gun/pistol/kt42, VENDOR_ITEM_REGULAR), list("S&W .357 Revolver", 20, /obj/item/weapon/gun/revolver/small, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), - list("88M4 Magazine (9mm)", 40, /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 40, /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("Beretta 92FS Magazine (9mm)", 40, /obj/item/ammo_magazine/pistol/b92fs, VENDOR_ITEM_REGULAR), list("KT-42 Magazine (.44)", 40, /obj/item/ammo_magazine/pistol/kt42, VENDOR_ITEM_REGULAR), - list("Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/cmb/normalpoint, VENDOR_ITEM_REGULAR), - list("Hollowpoint Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/cmb, VENDOR_ITEM_REGULAR), + list("Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR), + list("Hollowpoint Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR), list("S&W Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/small, VENDOR_ITEM_REGULAR), list("Tiny Pistol Magazine (.22)", 40, /obj/item/ammo_magazine/pistol/holdout, VENDOR_ITEM_REGULAR), diff --git a/code/datums/factions/pmc.dm b/code/datums/factions/pmc.dm index 0b48fc63eb..51747807f3 100644 --- a/code/datums/factions/pmc.dm +++ b/code/datums/factions/pmc.dm @@ -43,11 +43,11 @@ list("SIDEARMS", 0, null, null, null), list("VP78 pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", 0, null, null, null), list("VP78 magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 15, /obj/item/attachable/angledgrip, null, VENDOR_ITEM_REGULAR), @@ -83,11 +83,11 @@ list("SIDEARMS", 0, null, null, null), list("VP78 pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88 Mod 4 Combat Pistol", 30, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 30, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", 0, null, null, null), list("VP78 magazine (9mm)", 50, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88M4 Magazine (9mm)", 50, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 50, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("UTILITIES", 0, null, null, null), list("M94 Marking Flare Pack", 30, /obj/item/storage/box/m94, null, VENDOR_ITEM_RECOMMENDED), diff --git a/code/datums/factions/royalmarinescommando.dm b/code/datums/factions/royalmarinescommando.dm index b5605ea61f..aa9db0f5f2 100644 --- a/code/datums/factions/royalmarinescommando.dm +++ b/code/datums/factions/royalmarinescommando.dm @@ -40,11 +40,11 @@ list("SIDEARMS", 0, null, null, null), list("VP78 Pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", 0, null, null, null), list("VP78 magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 15, /obj/item/attachable/angledgrip, null, VENDOR_ITEM_REGULAR), @@ -79,11 +79,11 @@ list("SIDEARMS", -1, null, null), list("VP78 Pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), list("VP78 magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), - list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR), list("UTILITIES", -1, null, null), list("M94 Marking Flare Pack", 3, /obj/item/storage/box/m94, null, VENDOR_ITEM_RECOMMENDED), diff --git a/code/datums/supply_packs/ammo.dm b/code/datums/supply_packs/ammo.dm index b8b26225a0..4fc69d6653 100644 --- a/code/datums/supply_packs/ammo.dm +++ b/code/datums/supply_packs/ammo.dm @@ -250,16 +250,16 @@ containername = "\improper shotgun breaching crate" group = "Ammo" -//------------------------For 88M4 ---------------- +//------------------------For vp70 ---------------- -/datum/supply_packs/ammo_mod88_mag_box_ap - name = "Magazine box (88 Mod 4 AP, 16x mags)" +/datum/supply_packs/ammo_vp70_mag_box_ap + name = "Magazine box (VP70, 16x mags)" contains = list( - /obj/item/ammo_box/magazine/mod88, + /obj/item/ammo_box/magazine/vp70, ) cost = 20 containertype = /obj/structure/closet/crate/ammo - containername = "\improper 88 Mod 4 AP magazines crate" + containername = "\improper VP70 magazines crate" group = "Ammo" //------------------------Special or non common magazines---------------- diff --git a/code/datums/supply_packs/black_market.dm b/code/datums/supply_packs/black_market.dm index 94f5456ae0..e80a64825e 100644 --- a/code/datums/supply_packs/black_market.dm +++ b/code/datums/supply_packs/black_market.dm @@ -151,7 +151,7 @@ Non-USCM items, from CLF, UPP, colonies, etc. Mostly combat-related. new /obj/item/ammo_magazine/smg/mac15(src) new /obj/item/ammo_magazine/smg/mac15(src) if(4) //upp - new /obj/item/weapon/gun/shotgun/type23/riot_control(src) + new /obj/item/weapon/gun/shotgun/type23/riot(src) new /obj/item/ammo_magazine/handful/shotgun/heavy/beanbag(src) new /obj/item/ammo_magazine/handful/shotgun/heavy/beanbag(src) new /obj/item/ammo_magazine/handful/shotgun/heavy/flechette(src) @@ -410,12 +410,12 @@ Additionally, weapons that are way too good to put in the basically-flavor black /datum/supply_packs/contraband/seized/cmb name = "CMB Spearhead revolver (x5 magazines included)" contains = list( - /obj/item/weapon/gun/revolver/cmb, - /obj/item/ammo_magazine/revolver/cmb, - /obj/item/ammo_magazine/revolver/cmb, - /obj/item/ammo_magazine/revolver/cmb, - /obj/item/ammo_magazine/revolver/cmb, - /obj/item/ammo_magazine/revolver/cmb, + /obj/item/weapon/gun/revolver/spearhead, + /obj/item/ammo_magazine/revolver/spearhead, + /obj/item/ammo_magazine/revolver/spearhead, + /obj/item/ammo_magazine/revolver/spearhead, + /obj/item/ammo_magazine/revolver/spearhead, + /obj/item/ammo_magazine/revolver/spearhead, ) dollar_cost = 20 containertype = /obj/structure/largecrate/black_market @@ -683,7 +683,7 @@ USCM spare items, miscellaneous gear that's too niche and distant (or restricted contains = list( /obj/item/ammo_magazine/smg/m39/rubber, /obj/item/ammo_magazine/pistol/rubber, - /obj/item/ammo_magazine/pistol/mod88/rubber, + /obj/item/ammo_magazine/pistol/vp70/rubber, /obj/item/ammo_magazine/rifle/rubber, /obj/item/ammo_magazine/rifle/m4ra/rubber, /obj/item/ammo_magazine/shotgun/beanbag, @@ -694,9 +694,9 @@ USCM spare items, miscellaneous gear that's too niche and distant (or restricted /* - Misc. USCM weaponry - */ /datum/supply_packs/contraband/surplus/mk45_automag - name = "surplus MK-45 Automagnum case" + name = "surplus HG 45 case" dollar_cost = 35 - contains = list(/obj/item/storage/box/guncase/mk45_automag) + contains = list(/obj/item/storage/box/guncase/hg45) containertype = /obj/structure/largecrate/black_market /datum/supply_packs/contraband/surplus/nsg23_marine @@ -1064,13 +1064,13 @@ This is where the RO can reclaim their lost honor and purchase the M44 custom, t /datum/supply_packs/contraband/deep_storage/cartridge_bayonet name = "M8 Cartridge Bayonet Kit" - contains = list(/obj/item/storage/box/co2_knife) + contains = list(/obj/item/storage/box/loadout/co2_knife) dollar_cost = 10 containertype = /obj/structure/largecrate/black_market /datum/supply_packs/contraband/deep_storage/clf_holdout name = "D18 Holdout Pistol" - contains = list(/obj/item/storage/box/clf) + contains = list(/obj/item/storage/box/loadout/clf) dollar_cost = 10 crate_heat = 2 containertype = /obj/structure/largecrate/black_market diff --git a/code/game/jobs/role_authority.dm b/code/game/jobs/role_authority.dm index 03ea7546d0..4c2cff5e3b 100644 --- a/code/game/jobs/role_authority.dm +++ b/code/game/jobs/role_authority.dm @@ -152,18 +152,46 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou //PART II: Setting up our player variables and lists, to see if we have anyone to destribute. unassigned_players = list() - for(var/mob/new_player/M in GLOB.player_list) //Get all players who are ready. - if(!M.ready || M.job) + for(var/mob/new_player/player as anything in GLOB.new_player_list) + if(!player.ready || player.job) //get only players who are ready and unassigned continue - unassigned_players += M + var/datum/preferences/prefs = player.client?.prefs + if(!prefs) //either no client to play, or no preferences + continue + + if(prefs.alternate_option == RETURN_TO_LOBBY && !prefs.has_job_priorities()) //only try to assign players that could possibly be assigned + continue + + unassigned_players += player if(!length(unassigned_players)) //If we don't have any players, the round can't start. unassigned_players = null return - unassigned_players = shuffle(unassigned_players, 1) //Shuffle the players. + var/list/player_weights = list() + var/debug_total_weight = 0 + for(var/mob/new_player/cycled_unassigned as anything in unassigned_players) + var/base_weight = 1 //baseline weighting + var/new_bonus = 0 + switch(cycled_unassigned.client.get_total_human_playtime()) //+1 for new players, +2 for really new players + if(0 to 2 HOURS) + new_bonus = 2 + if(2 HOURS to 5 HOURS) + new_bonus = 1 + + var/streak_bonus = max(get_client_stat(cycled_unassigned.client, PLAYER_STAT_UNASSIGNED_ROUND_STREAK) - 2, 0) //+1 per missed round after 2 + + player_weights[cycled_unassigned] = base_weight + new_bonus + streak_bonus + debug_total_weight += player_weights[cycled_unassigned] + log_debug("ASSIGNMENT: player_weights generated with [length(player_weights)] players and [debug_total_weight] total weight.") + + unassigned_players = shuffle_weight(player_weights) + var/list/debug_weight_order = list() + for(var/mob/new_player/cycled_unassigned as anything in unassigned_players) + debug_weight_order += player_weights[cycled_unassigned] + log_debug("ASSIGNMENT: unassigned_players by entry weight: ([debug_weight_order.Join(", ")])") // How many positions do we open based on total pop for(var/i in roles_by_name) @@ -193,11 +221,11 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou return log_debug("ASSIGNMENT: Starting prime priority assignments.") - for(var/mob/new_player/cycled_unassigned in shuffle(unassigned_players)) + for(var/mob/new_player/cycled_unassigned in unassigned_players) assign_role_to_player_by_priority(cycled_unassigned, roles_to_assign, unassigned_players, PRIME_PRIORITY) log_debug("ASSIGNMENT: Starting regular priority assignments.") - for(var/mob/new_player/cycled_unassigned in shuffle(unassigned_players)) + for(var/mob/new_player/cycled_unassigned in unassigned_players) var/player_assigned_job = FALSE for(var/priority in HIGH_PRIORITY to LOW_PRIORITY) @@ -210,20 +238,17 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou break if(!player_assigned_job) - log_debug("ASSIGNMENT: [cycled_unassigned] was unable to be assigned a job based on preferences and roles to assign. Attempting alternate options.") - switch(cycled_unassigned.client.prefs.alternate_option) if(GET_RANDOM_JOB) - log_debug("ASSIGNMENT: [cycled_unassigned] has opted for random job alternate option. Finding random job.") var/iterator = 0 while((cycled_unassigned in unassigned_players) || iterator >= 5) iterator++ var/random_job_name = pick(roles_to_assign) var/datum/job/random_job = roles_to_assign[random_job_name] - log_debug("ASSIGNMENT: [cycled_unassigned] is attempting to be assigned to [random_job_name].") if(assign_role(cycled_unassigned, random_job)) log_debug("ASSIGNMENT: We have randomly assigned [random_job_name] to [cycled_unassigned]") + cycled_unassigned.client.player_data.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 0, TRUE) unassigned_players -= cycled_unassigned if(random_job.spawn_positions != -1 && random_job.current_positions >= random_job.spawn_positions) @@ -234,10 +259,10 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou log_debug("ASSIGNMENT: [cycled_unassigned] was unable to be randomly assigned a job. Something has gone wrong.") if(BE_MARINE) - log_debug("ASSIGNMENT: [cycled_unassigned] has opted for marine alternate option. Checking if slot is available.") var/datum/job/marine_job = GET_MAPPED_ROLE(JOB_SQUAD_MARINE) if(assign_role(cycled_unassigned, marine_job)) log_debug("ASSIGNMENT: We have assigned [marine_job.title] to [cycled_unassigned] via alternate option.") + cycled_unassigned.client.player_data.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 0, TRUE) unassigned_players -= cycled_unassigned if(marine_job.spawn_positions != -1 && marine_job.current_positions >= marine_job.spawn_positions) @@ -251,22 +276,22 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou cycled_unassigned.ready = 0 log_debug("ASSIGNMENT: Assignment complete. Players unassigned: [length(unassigned_players)] Jobs unassigned: [length(roles_to_assign)]") + for(var/mob/new_player/cycled_unassigned in unassigned_players) + cycled_unassigned.client.player_data.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 1) return roles_to_assign /datum/authority/branch/role/proc/assign_role_to_player_by_priority(mob/new_player/cycled_unassigned, list/roles_to_assign, list/unassigned_players, priority) - log_debug("ASSIGNMENT: We have started cycled through priority [priority] for [cycled_unassigned].") - var/wanted_jobs_by_name = shuffle(cycled_unassigned.client?.prefs?.get_jobs_by_priority(priority)) + var/wanted_jobs_by_name = shuffle(cycled_unassigned.client.prefs.get_jobs_by_priority(priority)) var/player_assigned_job = FALSE for(var/job_name in wanted_jobs_by_name) - log_debug("ASSIGNMENT: We are cycling through wanted jobs and are at [job_name] for [cycled_unassigned].") if(job_name in roles_to_assign) - log_debug("ASSIGNMENT: We have found [job_name] in roles to assign for [cycled_unassigned].") var/datum/job/actual_job = roles_to_assign[job_name] if(assign_role(cycled_unassigned, actual_job)) - log_debug("ASSIGNMENT: We have assigned [job_name] to [cycled_unassigned].") + log_debug("ASSIGNMENT: We have assigned [job_name] to [cycled_unassigned] at priority [priority].") + cycled_unassigned.client.player_data?.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 0, TRUE) unassigned_players -= cycled_unassigned if(actual_job.spawn_positions != -1 && actual_job.current_positions >= actual_job.spawn_positions) @@ -277,10 +302,8 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou break if(player_assigned_job) - log_debug("ASSIGNMENT: [cycled_unassigned] has been assigned a job.") return player_assigned_job - log_debug("ASSIGNMENT: [cycled_unassigned] did not get a job at priority [priority].") return player_assigned_job /** diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm index b93b9501a9..8dc415cecf 100644 --- a/code/game/machinery/vending/cm_vending.dm +++ b/code/game/machinery/vending/cm_vending.dm @@ -1182,7 +1182,7 @@ GLOBAL_LIST_EMPTY(vending_products) //---helper glob data GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( - /obj/item/ammo_box/magazine/mod88/empty = /obj/item/ammo_box/magazine/mod88, + /obj/item/ammo_box/magazine/vp70/empty = /obj/item/ammo_box/magazine/vp70, /obj/item/ammo_box/magazine/m4a3/empty = /obj/item/ammo_box/magazine/m4a3, /obj/item/ammo_box/magazine/m4a3/ap/empty = /obj/item/ammo_box/magazine/m4a3/ap, /obj/item/ammo_box/magazine/m4a3/hp/empty = /obj/item/ammo_box/magazine/m4a3/hp, diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm index 01b8482c51..4fbeef10bd 100644 --- a/code/game/machinery/vending/vending_types.dm +++ b/code/game/machinery/vending/vending_types.dm @@ -294,7 +294,7 @@ products = list( /obj/item/ammo_magazine/smg/m39/rubber = 20, /obj/item/ammo_magazine/pistol/rubber = 20, - /obj/item/ammo_magazine/pistol/mod88/rubber = 20, + /obj/item/ammo_magazine/pistol/vp70/rubber = 20, /obj/item/ammo_magazine/rifle/rubber = 20, /obj/item/ammo_magazine/rifle/m4ra/rubber = 20, /obj/item/ammo_magazine/shotgun/beanbag = 20, diff --git a/code/game/machinery/vending/vendor_types/crew/mp.dm b/code/game/machinery/vending/vendor_types/crew/mp.dm index 5f85060dc9..75f35df175 100644 --- a/code/game/machinery/vending/vendor_types/crew/mp.dm +++ b/code/game/machinery/vending/vendor_types/crew/mp.dm @@ -15,7 +15,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police, list( list("MP Beret", 0, /obj/item/clothing/head/beret/marine/mp, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY), list("HANDGUN CASE (CHOOSE 1)", 0, null, null, null), - list("88 mod 4 Combat Pistol Case", 0, /obj/item/storage/box/guncase/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), + list("VP70 Combat Pistol Case", 0, /obj/item/storage/box/guncase/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), list("M44 Combat Revolver Case", 0, /obj/item/storage/box/guncase/m44, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), list("M4A3 Service Pistol Case", 0, /obj/item/storage/box/guncase/m4a3, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), @@ -73,7 +73,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police_warden, list( list("Warden Peaked Cap", 0, /obj/item/clothing/head/beret/marine/mp/warden, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY), list("HANDGUN CASE (CHOOSE 1)", 0, null, null, null), - list("88 mod 4 Combat Pistol Case", 0, /obj/item/storage/box/guncase/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), + list("VP70 Combat Pistol Case", 0, /obj/item/storage/box/guncase/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), list("M44 Combat Revolver Case", 0, /obj/item/storage/box/guncase/m44, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), list("M4A3 Service Pistol Case", 0, /obj/item/storage/box/guncase/m4a3, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), diff --git a/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm b/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm index f1cfd80f25..c3d94fe630 100644 --- a/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm +++ b/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm @@ -24,13 +24,13 @@ list("M41A Magazine (10x24mm)", 24, /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", 4, /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 4, /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Combat Revolver", 4, /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", 4, /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("M82F Flare Gun", 4, /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), - list("88M4 Magazine (9mm)", 20, /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 20, /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Speedloader (.44)", 20, /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), list("M4A3 Magazine (9mm)", 20, /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), list("M4A3 AP Magazine (9mm)", 12, /obj/item/ammo_magazine/pistol/ap, VENDOR_ITEM_REGULAR), @@ -71,7 +71,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_pilot_officer, list( list("M3-VL Pattern Flak Vest", 0, /obj/item/clothing/suit/storage/marine/light/vest/dcc, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), - list("88 Mod 4 Combat Pistol", 0, /obj/item/weapon/gun/pistol/mod88, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 0, /obj/item/weapon/gun/pistol/vp70, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), list("VP78 Pistol", 0, /obj/item/weapon/gun/pistol/vp78, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), list("BELT (CHOOSE 1)", 0, null, null, null), @@ -160,7 +160,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_dropship_crew_chief, list( list("M3-VL Pattern Flak Vest", 0, /obj/item/clothing/suit/storage/marine/light/vest/dcc, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), - list("88 Mod 4 Combat Pistol", 0, /obj/item/weapon/gun/pistol/mod88, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 0, /obj/item/weapon/gun/pistol/vp70, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), list("VP78 Pistol", 0, /obj/item/weapon/gun/pistol/vp78, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), list("BELT (CHOOSE 1)", 0, null, null, null), diff --git a/code/game/machinery/vending/vendor_types/crew/senior_officers.dm b/code/game/machinery/vending/vendor_types/crew/senior_officers.dm index ae42ddd542..9236411bf6 100644 --- a/code/game/machinery/vending/vendor_types/crew/senior_officers.dm +++ b/code/game/machinery/vending/vendor_types/crew/senior_officers.dm @@ -45,7 +45,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police_chief, list( list("CMP Beret", 0, /obj/item/clothing/head/beret/marine/mp/cmp, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY), list("HANDGUN CASE (CHOOSE 1)", 0, null, null, null), - list("88 mod 4 Combat Pistol Case", 0, /obj/item/storage/box/guncase/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), + list("VP70 Combat Pistol Case", 0, /obj/item/storage/box/guncase/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), list("M44 Combat Revolver Case", 0, /obj/item/storage/box/guncase/m44, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), list("M4A3 Service Pistol Case", 0, /obj/item/storage/box/guncase/m4a3, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY), @@ -132,7 +132,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_chief_engineer, list( list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), - list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), + list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), @@ -158,7 +158,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_chief_engineer, list( list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), list("PRIMARY FIREARMS (CHOOSE 1)", 0, null, null, null), - list("M37A2 Pump Shotgun", 0, /obj/item/storage/box/guncase/pumpshotgun, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), + list("M120 Tactical Shotgun", 0, /obj/item/storage/box/guncase/shotguncombat, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), list("M41A Pulse Rifle MK2", 0, /obj/item/storage/box/guncase/m41a, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), list("M240 Incinerator Unit", 0, /obj/item/storage/box/guncase/flamer, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), @@ -185,7 +185,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_req_officer, list( list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), - list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), + list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("M44 Custom Revolver", 0, /obj/item/storage/belt/gun/m44/custom, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null), @@ -266,7 +266,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_cmo, list( list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), - list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), + list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("COMBAT EQUIPMENT (COMBAT USE ONLY)", 0, null, null, null), @@ -416,7 +416,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_xo, list( list("PERSONAL WEAPON (CHOOSE 1)", 0, null, null, null), list("VP78 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp78, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/commander, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), - list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), + list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), list("EYEWEAR (CHOOSE 1)", 0, null, null, null), @@ -492,7 +492,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_auxiliary_officer, list( list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), - list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), + list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("M44 Custom Revolver", 0, /obj/item/storage/belt/gun/m44/custom, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("HAT (CHOOSE 1)", 0, null, null, null), diff --git a/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm b/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm index 01cd07e900..1eaa66af83 100644 --- a/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm +++ b/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm @@ -224,13 +224,13 @@ GLOBAL_LIST_INIT(cm_vending_vehicle_crew_arc, list( list("M41A Magazine (10x24mm)", 12, /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", 2, /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 2, /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Combat Revolver", 2, /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", 2, /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("M82F Flare Gun", 2, /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), - list("88M4 Magazine (9mm)", 10, /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", 10, /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Speedloader (.44)", 10, /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), list("M4A3 Magazine (9mm)", 10, /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), list("M4A3 AP Magazine (9mm)", 6, /obj/item/ammo_magazine/pistol/ap, VENDOR_ITEM_REGULAR), @@ -265,7 +265,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_vehicle_crew, list( list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), - list("88 Mod 4 Combat Pistol", 0, /obj/item/weapon/gun/pistol/mod88, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", 0, /obj/item/weapon/gun/pistol/vp70, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), list("VP78 Pistol", 0, /obj/item/weapon/gun/pistol/vp78, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), list("BELT (CHOOSE 1)", 0, null, null, null), diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm index 51db8a3053..30cfb9ae08 100644 --- a/code/game/machinery/vending/vendor_types/requisitions.dm +++ b/code/game/machinery/vending/vendor_types/requisitions.dm @@ -30,7 +30,7 @@ list("M4RA Battle Rifle", floor(scale * 20), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", floor(scale * 50), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 50), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Combat Revolver", floor(scale * 50), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", floor(scale * 50), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("M82F Flare Gun", floor(scale * 20), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), @@ -259,7 +259,7 @@ list("M39 HV Magazine (10x20mm)", floor(scale * 100), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), list("M44 Speed Loader (.44)", floor(scale * 80), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), list("M4A3 Magazine (9mm)", floor(scale * 100), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), - list("88 Mod 4 Magazine (9mm)", floor(scale * 50), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 50), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("ARMOR-PIERCING AMMUNITION", -1, null, null), list("M4RA AP Magazine (10x24mm)", floor(scale * 16), /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR), @@ -581,11 +581,11 @@ list("M41A Rubber Magazine (10x24mm)", floor(scale * 25), /obj/item/ammo_magazine/rifle/rubber, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("SIDEARM NONLETHAL AMMUNITION", -1, null, null), - list("88M4 Rubber Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/mod88/rubber, VENDOR_ITEM_REGULAR), + list("VP70 Rubber Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/vp70/rubber, VENDOR_ITEM_REGULAR), list("M4A3 Rubber Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/rubber, VENDOR_ITEM_REGULAR), list("ATTACHMENTS", -1, null, null), 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 167b1163fa..24297b7682 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 @@ -31,13 +31,13 @@ list("M41A Magazine (10x24mm)", floor(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Combat Revolver", floor(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("M82F Flare Gun", floor(scale * 10), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), - list("88M4 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Speedloader (.44)", floor(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), list("M4A3 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), @@ -461,18 +461,10 @@ list("M89-S Signal Flare Pack", round(scale * 1), /obj/item/storage/box/m94/signal, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), - list("M44 Combat Revolver", round(scale * 2), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), - list("VP78 pistol", round(scale * 2), /obj/item/weapon/gun/pistol/vp78, VENDOR_ITEM_REGULAR), list("M82F Flare Gun", round(scale * 1), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), - list("SIDEARM AMMUNITION", -1, null, null), - list("88M4 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), - list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), - list("M4A3 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), - list("VP78 magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), - list("MISCELLANEOUS", -1, null, null), list("Extinguisher", round(scale * 5), /obj/item/tool/extinguisher, VENDOR_ITEM_REGULAR), list("Fire Extinguisher (Portable)", round(scale * 1), /obj/item/tool/extinguisher/mini, VENDOR_ITEM_REGULAR), @@ -582,7 +574,7 @@ list("SIDEARMS", -1, null, null), //forecon loves their pistols list("M48A4 Service Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/m1911/socom, VENDOR_ITEM_REGULAR), - list("88 Mod 4 Combat Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Combat Revolver", round(scale * 5), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("VP78 pistol", round(scale * 5), /obj/item/weapon/gun/pistol/vp78, VENDOR_ITEM_REGULAR), @@ -590,7 +582,7 @@ list("SIDEARM AMMUNITION", -1, null, null), list("M1911 Magazine (.45)", round(scale * 20), /obj/item/ammo_magazine/pistol/m1911, VENDOR_ITEM_REGULAR), - list("88M4 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), list("M4A3 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), list("VP78 magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/wo_vendors.dm b/code/game/machinery/vending/vendor_types/wo_vendors.dm index 443d6ce16a..a064218c2e 100644 --- a/code/game/machinery/vending/vendor_types/wo_vendors.dm +++ b/code/game/machinery/vending/vendor_types/wo_vendors.dm @@ -137,13 +137,13 @@ list("M41A MK2 Magazine (10x24mm)", floor(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Combat Revolver", floor(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("M82F Flare Gun", floor(scale * 5), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), - list("88M4 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Speedloader (.44)", floor(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), list("M4A3 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), diff --git a/code/game/objects/effects/spawners/faction_spawners.dm b/code/game/objects/effects/spawners/faction_spawners.dm index eb634e383d..6c80260d44 100644 --- a/code/game/objects/effects/spawners/faction_spawners.dm +++ b/code/game/objects/effects/spawners/faction_spawners.dm @@ -134,7 +134,7 @@ mags_min = 1 guns = list( /obj/item/weapon/gun/pistol/vp78 = /obj/item/ammo_magazine/pistol/vp78, - /obj/item/weapon/gun/pistol/mod88 = /obj/item/ammo_magazine/pistol/mod88/normalpoint + /obj/item/weapon/gun/pistol/vp70 = /obj/item/ammo_magazine/pistol/vp70 ) /obj/effect/spawner/random/gun/pmc_secondary/lowchance diff --git a/code/game/objects/effects/spawners/random.dm b/code/game/objects/effects/spawners/random.dm index 388e9f289c..0951524e15 100644 --- a/code/game/objects/effects/spawners/random.dm +++ b/code/game/objects/effects/spawners/random.dm @@ -329,7 +329,7 @@ var/mags_min = 1 var/list/guns = list( /obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs, - /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb, + /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead, /obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower, /obj/item/weapon/gun/pistol/m1911 = /obj/item/ammo_magazine/pistol/m1911, /obj/item/weapon/gun/revolver/small = /obj/item/ammo_magazine/revolver/small, @@ -388,9 +388,9 @@ /obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs, - /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb, - /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb, - /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb, + /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead, + /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead, + /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead, /obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower, /obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower, /obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower, diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index d901ee188b..6ddabf0c39 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -224,7 +224,7 @@ GLOBAL_LIST_INIT_TYPED(cardboard_recipes, /datum/stack_recipe, list ( \ )), \ null, \ new/datum/stack_recipe_list("empty ammo boxes",list( \ - new/datum/stack_recipe("empty magazine box (88 Mod 4 AP)", /obj/item/ammo_box/magazine/mod88/empty), \ + new/datum/stack_recipe("empty magazine box (VP70)", /obj/item/ammo_box/magazine/vp70/empty), \ new/datum/stack_recipe("empty magazine box (SU-6)", /obj/item/ammo_box/magazine/su6/empty), \ new/datum/stack_recipe("empty magazine box (VP78)", /obj/item/ammo_box/magazine/vp78/empty), \ null, \ diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 23cb8464dd..61acabe07a 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -1055,7 +1055,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r /obj/item/weapon/gun/rifle/m4ra/training, /obj/item/weapon/gun/smg/m39/training, /obj/item/weapon/gun/pistol/m4a3/training, - /obj/item/weapon/gun/pistol/mod88/training) //Ivan doesn't carry toys. + /obj/item/weapon/gun/pistol/vp70/training) //Ivan doesn't carry toys. var/list/picklist = subtypesof(/obj/item/weapon/gun) - (template_guns + bad_guns + emplacements + yautja_guns + smartguns + training_guns) var/random_gun = pick(picklist) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index cd12249e36..f8120e71db 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -507,8 +507,8 @@ new /obj/item/restraint/handcuffs(src) new /obj/item/restraint/handcuffs(src) new /obj/item/reagent_container/spray/pepper(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) /obj/item/storage/belt/security/MP/full/synth/fill_preset_inventory() new /obj/item/explosive/grenade/flashbang(src) @@ -544,8 +544,8 @@ new /obj/item/restraint/handcuffs(src) new /obj/item/restraint/handcuffs(src) new /obj/item/restraint/handcuffs(src) - new /obj/item/ammo_magazine/revolver/cmb/normalpoint(src) - new /obj/item/ammo_magazine/revolver/cmb/normalpoint(src) + new /obj/item/ammo_magazine/revolver/spearhead(src) + new /obj/item/ammo_magazine/revolver/spearhead(src) /obj/item/storage/belt/security/MP/CMB/full/highpower/fill_preset_inventory() new /obj/item/weapon/gun/energy/taser(src) @@ -1289,15 +1289,15 @@ new /obj/item/ammo_magazine/pistol(src) new /obj/item/ammo_magazine/pistol(src) -/obj/item/storage/belt/gun/m4a3/mod88/fill_preset_inventory() - handle_item_insertion(new /obj/item/weapon/gun/pistol/mod88()) +/obj/item/storage/belt/gun/m4a3/vp70/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/vp70()) for(var/i = 1 to storage_slots - 1) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) + new /obj/item/ammo_magazine/pistol/vp70(src) -/obj/item/storage/belt/gun/m4a3/mod88_near_empty/fill_preset_inventory() - handle_item_insertion(new /obj/item/weapon/gun/pistol/mod88()) +/obj/item/storage/belt/gun/m4a3/vp70_near_empty/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/vp70()) for(var/i = 1 to 3) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) + new /obj/item/ammo_magazine/pistol/vp70(src) /obj/item/storage/belt/gun/m4a3/vp78/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/vp78()) @@ -1359,10 +1359,31 @@ for(var/i = 1 to storage_slots - 1) new /obj/item/ammo_magazine/pistol/highpower/black(src) -/obj/item/storage/belt/gun/m4a3/highpower/tactical/fill_preset_inventory() - handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/tactical()) +/obj/item/storage/belt/gun/m4a3/highpower/automag/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag()) for(var/i = 1 to storage_slots - 1) - new /obj/item/ammo_magazine/pistol/highpower/black(src) + new /obj/item/ammo_magazine/pistol/highpower/automag(src) + +/obj/item/storage/belt/gun/m4a3/highpower/automag/tactical/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag/tactical()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/highpower/automag(src) + +/obj/item/storage/belt/gun/m4a3/nailgun + name = "customized nailgun holster" + desc = "Combination of a M276 pistol holster and engineering toolbelt that have been cannibalized into a unique belt that can holster a compact nailgun and two spare nailgun magazines." + icon_state = "nailgun_holster" + storage_slots = 3 + can_hold = list( + /obj/item/weapon/gun/smg/nailgun/compact, + /obj/item/ammo_magazine/smg/nailgun, + ) + has_gamemode_skin = FALSE + +/obj/item/storage/belt/gun/m4a3/nailgun/prefilled/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/smg/nailgun/compact()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/smg/nailgun(src) /obj/item/storage/belt/gun/m4a3/nailgun name = "customized nailgun holster" @@ -1757,11 +1778,11 @@ /obj/item/ammo_magazine/rifle/m4ra/rubber, /obj/item/ammo_magazine/smg/m39/rubber, /obj/item/ammo_magazine/pistol/rubber, - /obj/item/ammo_magazine/pistol/mod88/rubber) //Ivan doesn't bring children's ammo. + /obj/item/ammo_magazine/pistol/vp70/rubber) //Ivan doesn't bring children's ammo. var/list/picklist = subtypesof(/obj/item/ammo_magazine) - (internal_mags + bad_mags + sentry_mags + training_mags) var/random_mag = pick(picklist) - var/guntype = pick(subtypesof(/obj/item/weapon/gun/revolver) + subtypesof(/obj/item/weapon/gun/pistol) - list(/obj/item/weapon/gun/pistol/m4a3/training, /obj/item/weapon/gun/pistol/mod88/training)) + var/guntype = pick(subtypesof(/obj/item/weapon/gun/revolver) + subtypesof(/obj/item/weapon/gun/pistol) - list(/obj/item/weapon/gun/pistol/m4a3/training, /obj/item/weapon/gun/pistol/vp70/training)) handle_item_insertion(new guntype()) for(var/total_storage_slots in 2 to storage_slots) //minus templates new random_mag(src) @@ -2044,7 +2065,7 @@ /obj/item/storage/belt/gun/utility/full/fill_preset_inventory() - handle_item_insertion(new /obj/item/weapon/gun/pistol/mod88()) + handle_item_insertion(new /obj/item/weapon/gun/pistol/vp70()) new /obj/item/tool/screwdriver(src) new /obj/item/tool/wrench(src) new /obj/item/tool/weldingtool(src) diff --git a/code/game/objects/items/storage/misc.dm b/code/game/objects/items/storage/misc.dm index 479ea4b9e0..7cfa727615 100644 --- a/code/game/objects/items/storage/misc.dm +++ b/code/game/objects/items/storage/misc.dm @@ -111,50 +111,117 @@ else icon_state = "6_pack_[length(contents)]" -/obj/item/storage/box/clf - name = "D18-storing box" - desc = "A fairly decorated and ceremonial box containing a CLF D18 and a single additional magazine for it. I guess those CLF folk really care about their craftsmanship and prose rather than practicality, eh?" - icon = 'icons/obj/items/storage/kits.dmi' - icon_state = "m43case" - w_class = SIZE_SMALL - max_w_class = SIZE_TINY - storage_slots = 2 - can_hold = list(/obj/item/weapon/gun/pistol/clfpistol, /obj/item/ammo_magazine/pistol/clfpistol) - -/obj/item/storage/box/clf/fill_preset_inventory() - new /obj/item/weapon/gun/pistol/clfpistol(src) - new /obj/item/ammo_magazine/pistol/clfpistol(src) - -/obj/item/storage/box/upp //war trophy luger - name = "Type 73 storing case" - desc = "A small case containing the once-standard sidearm of the UPP, the Type 73, and two additional magazines. The contained sidearm is probably looted off a dead officer or from a captured stockpile, either way this thing is worth a pretty penny." +/obj/item/storage/box/loadout + name = "storage case" + desc = "A wooden case that fits a pistol and a number of magazines." icon = 'icons/obj/items/storage/kits.dmi' icon_state = "matebacase" w_class = SIZE_LARGE max_w_class = SIZE_MEDIUM - storage_slots = 3 - can_hold = list(/obj/item/weapon/gun/pistol/t73, /obj/item/ammo_magazine/pistol/t73) - -/obj/item/storage/box/upp/fill_preset_inventory() - new /obj/item/weapon/gun/pistol/t73(src) - new /obj/item/ammo_magazine/pistol/t73(src) - new /obj/item/ammo_magazine/pistol/t73(src) + storage_slots = 7 -/obj/item/storage/box/M1911_loadout +/obj/item/storage/box/loadout/upp + name = "Type 73 storing case" + desc = "A small case containing a loaded Type 73, and additional magazines." +/obj/item/storage/box/loadout/upp/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/t73()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/t73(src) + +/obj/item/storage/box/loadout/M4A3_custom_loadout + name = "M4A3 storage case" + desc = "A relatively large storage case containing a loaded M4A3 and additional magazines." + +/obj/item/storage/box/loadout/M4A3_custom_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/m4a3/custom()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol(src) + +/obj/item/storage/box/loadout/HG45_civilian_loadout + name = "HG 45 'Aguila' storage case" + desc = "A relatively large storage case containing a loaded HG 45 'Aguila' and additional magazines." + +/obj/item/storage/box/loadout/HG45_civilian_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/highpower(src) + +/obj/item/storage/box/loadout/HG45_marine_loadout + name = "HG 45 'Marina' storage case" + desc = "A relatively large storage case containing a loaded HG 45 'Marina' and additional magazines." + +/obj/item/storage/box/loadout/HG45_marine_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/black()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/highpower/black(src) + +/obj/item/storage/box/loadout/HG44_loadout + name = "HG 44 'Automag' storage case" + desc = "A relatively large storage case containing a loaded HG 44 'Automag' and additional magazines." + +/obj/item/storage/box/loadout/HG44_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/highpower/automag(src) + +/obj/item/storage/box/loadout/Spearhead_loadout + name = "Spearhead Armoury storage case" + desc = "A relatively large storage case containing a loaded Spearhead Armoury autorevolver and additional speedloaders." + +/obj/item/storage/box/loadout/Spearhead_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/revolver/spearhead(src) + +/obj/item/storage/box/loadout/Spearhead_loadout/custom + name = "Spearhead Armoury storage case" + desc = "A relatively large storage case containing a loaded Spearhead Armoury autorevolver and additional speedloaders." + +/obj/item/storage/box/loadout/Spearhead_loadout/custom/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead/black()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/revolver/spearhead(src) + +/obj/item/storage/box/loadout/M1911_loadout name = "M1911 storage case" - desc = "A relatively large storage case containing the 1911 and additional magazines. Purchased by enlisted or aspiring PMCs looking to carry a timeless classic" - icon = 'icons/obj/items/storage/kits.dmi' - icon_state = "matebacase" - w_class = SIZE_LARGE - max_w_class = SIZE_MEDIUM - storage_slots = 3 + desc = "A relatively large storage case containing a loaded M1911 and additional magazines." + +/obj/item/storage/box/loadout/M1911_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/m1911()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/m1911(src) + +/obj/item/storage/box/loadout/M44_loadout + name = "M44 storage case" + desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders." + +/obj/item/storage/box/loadout/M44_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/revolver/m44()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/revolver(src) + +/obj/item/storage/box/loadout/M44_custom_loadout + name = "M44 storage case" + desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders." + +/obj/item/storage/box/loadout/M44_custom_loadout/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/revolver/m44/custom()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/revolver(src) + +/obj/item/storage/box/loadout/clf + name = "Hummingbird storage box" + desc = "A slim storage case containing a loaded Hummingbird pistol and additional magazines." + w_class = SIZE_SMALL + max_w_class = SIZE_TINY + storage_slots = 4 -/obj/item/storage/box/M1911_loadout/fill_preset_inventory() - new /obj/item/weapon/gun/pistol/m1911(src) - new /obj/item/ammo_magazine/pistol/m1911(src) - new /obj/item/ammo_magazine/pistol/m1911(src) +/obj/item/storage/box/loadout/clf/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/clfpistol()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/clfpistol(src) -/obj/item/storage/box/co2_knife +/obj/item/storage/box/loadout/co2_knife name = "M8 cartridge bayonet packaging" desc = "Contains one M8 Cartridge Bayonet and two sister CO2 cartridges. Thanks for being a dedicated Boots magazine subscriber!" icon = 'icons/obj/items/storage/kits.dmi' @@ -165,7 +232,7 @@ max_w_class = SIZE_SMALL can_hold = list(/obj/item/attachable/bayonet/co2, /obj/item/co2_cartridge) -/obj/item/storage/box/co2_knife/fill_preset_inventory() +/obj/item/storage/box/loadout/co2_knife/fill_preset_inventory() new /obj/item/attachable/bayonet/co2(src) new /obj/item/co2_cartridge(src) new /obj/item/co2_cartridge(src) diff --git a/code/game/objects/items/storage/pouch.dm b/code/game/objects/items/storage/pouch.dm index acf1228dc0..e2398fcbe0 100644 --- a/code/game/objects/items/storage/pouch.dm +++ b/code/game/objects/items/storage/pouch.dm @@ -461,7 +461,7 @@ /obj/item/storage/pouch/magazine/pistol/pmc_mod88/fill_preset_inventory() for(var/i = 1 to storage_slots) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) + new /obj/item/ammo_magazine/pistol/vp70(src) /obj/item/storage/pouch/magazine/pistol/pmc_vp78/fill_preset_inventory() for(var/i = 1 to storage_slots) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm index 4531a68c42..30b8ccb025 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm @@ -80,10 +80,10 @@ new /obj/item/weapon/shield/riot(src) new /obj/item/weapon/shield/riot(src) new /obj/item/weapon/shield/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) new /obj/item/weapon/gun/launcher/grenade/m81/riot(src, TRUE) new /obj/item/storage/box/nade_box/tear_gas(src) new /obj/item/clothing/mask/gas(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm index acc43c302e..a208a61a95 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm @@ -18,10 +18,10 @@ new /obj/item/weapon/shield/riot(src) new /obj/item/weapon/shield/riot(src) new /obj/item/weapon/shield/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) - new /obj/item/ammo_magazine/shotgun/beanbag/riot(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) + new /obj/item/ammo_magazine/shotgun/beanbag(src) new /obj/item/weapon/gun/launcher/grenade/m81/riot(src, TRUE) new /obj/item/storage/box/nade_box/tear_gas(src) new /obj/item/clothing/mask/gas(src) diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm index 474c6a37b7..86bb74820a 100644 --- a/code/game/objects/structures/crates_lockers/crates.dm +++ b/code/game/objects/structures/crates_lockers/crates.dm @@ -402,11 +402,11 @@ weapon_type = /obj/item/weapon/gun/pistol/m4a3/training ammo_type = /obj/item/ammo_magazine/pistol/rubber -/obj/structure/closet/crate/weapon/training/mod88 - name = "training 88 mod 4 crate" - desc = "A crate with an 88 mod 4 pistol and nonlethal ammunition for it. Intended for use in combat exercises." - weapon_type = /obj/item/weapon/gun/pistol/mod88/training - ammo_type = /obj/item/ammo_magazine/pistol/mod88/rubber +/obj/structure/closet/crate/weapon/training/vp70 + name = "training VP70 crate" + desc = "A crate with an VP70 pistol and nonlethal ammunition for it. Intended for use in combat exercises." + weapon_type = /obj/item/weapon/gun/pistol/vp70/training + ammo_type = /obj/item/ammo_magazine/pistol/vp70/rubber /obj/structure/closet/crate/weapon/training/grenade name = "rubber pellet M15 grenades crate" diff --git a/code/game/objects/structures/crates_lockers/largecrate.dm b/code/game/objects/structures/crates_lockers/largecrate.dm index 6d929c2cb8..18c2bca57a 100644 --- a/code/game/objects/structures/crates_lockers/largecrate.dm +++ b/code/game/objects/structures/crates_lockers/largecrate.dm @@ -436,7 +436,7 @@ GLOBAL_LIST_INIT(rbarrel_color_list, list(COLOR_SILVER, /obj/item/weapon/gun/pistol/m1911 = /obj/item/ammo_magazine/pistol/m1911, /obj/item/weapon/gun/pistol/heavy = /obj/item/ammo_magazine/pistol/heavy, /obj/item/weapon/gun/revolver/small = /obj/item/ammo_magazine/revolver/small, - /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb, + /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead, /obj/item/weapon/gun/shotgun/merc = /obj/item/ammo_magazine/handful/shotgun/buckshot, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb = /obj/item/ammo_magazine/handful/shotgun/buckshot, /obj/item/weapon/gun/smg/mp27 = /obj/item/ammo_magazine/smg/mp27, diff --git a/code/game/sound.dm b/code/game/sound.dm index 9fd3705e37..9bc5bd7828 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -428,8 +428,8 @@ sound = pick('sound/weapons/gun_shotgun_tactical_1.ogg','sound/weapons/gun_shotgun_tactical_2.ogg','sound/weapons/gun_shotgun_tactical_3.ogg','sound/weapons/gun_shotgun_tactical_4.ogg') if("m4a3") sound = pick('sound/weapons/gun_m4a3_1.ogg','sound/weapons/gun_m4a3_2.ogg','sound/weapons/gun_m4a3_3.ogg','sound/weapons/gun_m4a3_4.ogg','sound/weapons/gun_m4a3_5.ogg') - if("88m4") - sound = pick('sound/weapons/gun_88m4_v7.ogg') + if("vp70") + sound = pick('sound/weapons/gun_vp70_v7.ogg') if("gun_casing_shotgun") sound = pick ('sound/bullets/bulletcasing_shotgun_fall1.ogg') if("gun_nsg23") diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index a9ed150870..3a0e9b1d67 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -21,7 +21,7 @@ GLOBAL_LIST_INIT(bgstate_options, list( "whitefull" )) -#define MAX_SAVE_SLOTS 10 +#define MAX_SAVE_SLOTS 20 /datum/preferences var/client/owner @@ -948,6 +948,18 @@ GLOBAL_LIST_INIT(bgstate_options, list( return jobs_to_return +/// Returns TRUE if any job has a priority other than NEVER, FALSE otherwise. +/datum/preferences/proc/has_job_priorities() + if(!length(job_preference_list)) + ResetJobs() + return FALSE + + for(var/job in job_preference_list) + if(job_preference_list[job] != NEVER_PRIORITY) + return TRUE + + return FALSE + /datum/preferences/proc/SetJobDepartment(datum/job/J, priority) if(!J || priority < 0 || priority > 4) return FALSE @@ -1624,7 +1636,7 @@ GLOBAL_LIST_INIT(bgstate_options, list( if("underwear") var/list/underwear_options = gender == MALE ? GLOB.underwear_m : GLOB.underwear_f var/old_gender = gender - var/new_underwear = tgui_input_list(user, "Choose your character's underwear:", "Character Preference", underwear_options) + var/new_underwear = tgui_input_list(user, "Choose your character's underwear:", "Character Preference", underwear_options-GLOB.underwear_restricted) if(old_gender != gender) return if(new_underwear) @@ -1634,7 +1646,7 @@ GLOBAL_LIST_INIT(bgstate_options, list( if("undershirt") var/list/undershirt_options = gender == MALE ? GLOB.undershirt_m : GLOB.undershirt_f var/old_gender = gender - var/new_undershirt = tgui_input_list(user, "Choose your character's undershirt:", "Character Preference", undershirt_options) + var/new_undershirt = tgui_input_list(user, "Choose your character's undershirt:", "Character Preference", undershirt_options-GLOB.undershirt_restricted) if(old_gender != gender) return if(new_undershirt) diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 3288098d92..39278fff48 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -742,31 +742,58 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name) /datum/gear/weapon/m8_cartridge_bayonet display_name = "M8 Cartridge Bayonet" - path = /obj/item/storage/box/co2_knife + path = /obj/item/storage/box/loadout/co2_knife /datum/gear/weapon/clfpistol - display_name = "D18 Holdout Pistol" - path = /obj/item/storage/box/clf + display_name = "Hummingbird Pistol" + path = /obj/item/storage/box/loadout/clf -/datum/gear/weapon/upppistol //ww2 war trophy luger +/datum/gear/weapon/upppistol display_name = "Type 73 Pistol" - path = /obj/item/storage/box/upp - slot = WEAR_IN_BACK - cost = 4 + path = /obj/item/storage/box/loadout/upp /datum/gear/weapon/m4a3_custom - display_name = "M4A3 Custom Pistol" - path = /obj/item/weapon/gun/pistol/m4a3/custom + display_name = "Custom M4A3 Pistol" + path = /obj/item/storage/box/loadout/M4A3_custom_loadout + allowed_origins = USCM_ORIGINS + +/datum/gear/weapon/m1911 + display_name = "M1911 Pistol" + path = /obj/item/storage/box/loadout/M1911_loadout + allowed_origins = USCM_ORIGINS + +/datum/gear/weapon/m44 + display_name = "M44 Revolver" + path = /obj/item/storage/box/loadout/M44_loadout allowed_origins = USCM_ORIGINS /datum/gear/weapon/m44_custom_revolver - display_name = "M44 Custom Revolver" - path = /obj/item/weapon/gun/revolver/m44/custom + display_name = "Custom M44 Revolver" + path = /obj/item/storage/box/loadout/M44_custom_loadout allowed_origins = USCM_ORIGINS -/datum/gear/weapon/m1911 - display_name = "M1911 Service Pistol" - path = /obj/item/storage/box/M1911_loadout +/datum/gear/weapon/hg45_civilian + display_name = "HG 45 'Aguila' Pistol" + path = /obj/item/storage/box/loadout/HG45_civilian_loadout + +/datum/gear/weapon/hg45_marine + display_name = "HG 45 'Marina' Pistol" + path = /obj/item/storage/box/loadout/HG45_marine_loadout + allowed_origins = USCM_ORIGINS + +/datum/gear/weapon/hg44 + display_name = "HG 44 'Automag' Pistol" + path = /obj/item/storage/box/loadout/HG45_marine_loadout + allowed_origins = USCM_ORIGINS + +/datum/gear/weapon/spearhead + display_name = "Spearhead Armoury Revolver" + path = /obj/item/storage/box/loadout/Spearhead_loadout + allowed_origins = USCM_ORIGINS + +/datum/gear/weapon/spearhead_custom + display_name = "Custom Spearhead Armoury Revolver" + path = /obj/item/storage/box/loadout/Spearhead_loadout/custom allowed_origins = USCM_ORIGINS /datum/gear/weapon/m2100_machete diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm index 4978634668..ef57b6413d 100644 --- a/code/modules/cm_marines/equipment/guncases.dm +++ b/code/modules/cm_marines/equipment/guncases.dm @@ -25,7 +25,7 @@ //------------ /obj/item/storage/box/guncase/vp78 name = "\improper VP78 pistol case" - desc = "A gun case containing the VP78. Comes with two magazines." + desc = "A gun case containing a VP78. Comes with two magazines." can_hold = list(/obj/item/weapon/gun/pistol/vp78, /obj/item/ammo_magazine/pistol/vp78) storage_slots = 3 @@ -37,7 +37,7 @@ //------------ /obj/item/storage/box/guncase/smartpistol name = "\improper SU-6 pistol case" - desc = "A gun case containing the SU-6 smart pistol. Comes with a full belt holster." + desc = "A gun case containing a SU-6 smart pistol. Comes with a full belt holster." can_hold = list(/obj/item/storage/belt/gun/smartpistol, /obj/item/weapon/gun/pistol/smart, /obj/item/ammo_magazine/pistol/smart) storage_slots = 2 @@ -48,7 +48,7 @@ //------------ /obj/item/storage/box/guncase/mou53 name = "\improper MOU53 shotgun case" - desc = "A gun case containing the MOU53 shotgun. It does come loaded, but you'll still have to find ammunition as you go." + desc = "A gun case containing a MOU53 shotgun. It does come loaded, but you'll still have to find ammunition as you go." storage_slots = 2 can_hold = list(/obj/item/weapon/gun/shotgun/double/mou53, /obj/item/attachable/stock/mou53) @@ -59,7 +59,7 @@ //------------ /obj/item/storage/box/guncase/lmg name = "\improper M41AE2 heavy pulse rifle case" - desc = "A gun case containing the M41AE2 heavy pulse rifle. You can get additional ammunition at requisitions." + desc = "A gun case containing a M41AE2 heavy pulse rifle. You can get additional ammunition at requisitions." storage_slots = 5 can_hold = list(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/rifle/lmg) @@ -72,7 +72,7 @@ //------------ /obj/item/storage/box/guncase/m41aMK1 name = "\improper M41A pulse rifle MK1 case" - desc = "A gun case containing the M41A pulse rifle MK1. It can only use proprietary MK1 magazines." + desc = "A gun case containing a loaded M41A pulse rifle MK1 and two additional magazines." storage_slots = 3 can_hold = list(/obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1) @@ -84,7 +84,7 @@ /obj/item/storage/box/guncase/m41aMK1AP name = "\improper M41A pulse rifle MK1 AP case" - desc = "A gun case containing the M41A pulse rifle MK1 loaded with AP rounds. It can only use proprietary MK1 magazines." + desc = "A gun case containing a M41A pulse rifle MK1 loaded with AP rounds and two additional magazines." storage_slots = 3 can_hold = list(/obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1) @@ -97,7 +97,7 @@ //M79 grenade launcher /obj/item/storage/box/guncase/m79 name = "\improper M79 grenade launcher case" - desc = "A gun case containing the modernized M79 grenade launcher. Comes with 3 baton slugs, 3 hornet shells and 3 star shell grenades." + desc = "A gun case containing a modernized M79 grenade launcher. Comes with 3 baton slugs, 3 hornet shells and 3 star shell grenades." storage_slots = 4 can_hold = list(/obj/item/weapon/gun/launcher/grenade/m81/m79, /obj/item/storage/box/packet) @@ -111,7 +111,7 @@ //R4T lever action rifle /obj/item/storage/box/guncase/r4t_scout name = "\improper R4T lever action rifle case" - desc = "A gun case containing the R4T lever action rifle, intended for scouting. Comes with an ammunition belt, the optional revolver attachment for it, two boxes of ammunition, a sling, and a stock for the rifle." + desc = "A gun case containing a R4T lever action rifle, intended for scouting. Comes with an ammunition belt, the optional revolver attachment for it, two boxes of ammunition, a sling, and a stock for the rifle." storage_slots = 7 can_hold = list(/obj/item/weapon/gun/lever_action/r4t, /obj/item/attachable/stock/r4t, /obj/item/attachable/magnetic_harness/lever_sling, /obj/item/ammo_magazine/lever_action, /obj/item/ammo_magazine/lever_action/training, /obj/item/storage/belt/shotgun/lever_action, /obj/item/storage/belt/gun/m44/lever_action/attach_holster, /obj/item/device/motiondetector/m717) @@ -126,7 +126,7 @@ /obj/item/storage/box/guncase/xm88 name = "\improper XM88 heavy rifle case" - desc = "A gun case containing the XM88 Heavy Rifle, a prototype weapon designed for use against heavily armored infantry targets and light vehicles. Contains an ammunition belt, two boxes of ammunition, the XS-9 Targeting Relay attachment, and the stock for the rifle." + desc = "A gun case containing a XM88 Heavy Rifle, a prototype weapon designed for use against heavily armored infantry targets and light vehicles. Contains an ammunition belt, two boxes of ammunition, the XS-9 Targeting Relay attachment, and the stock for the rifle." storage_slots = 6 can_hold = list(/obj/item/weapon/gun/lever_action/xm88, /obj/item/attachable/stock/xm88, /obj/item/attachable/scope/mini/xm88, /obj/item/ammo_magazine/lever_action/xm88, /obj/item/storage/belt/shotgun/xm88) @@ -141,7 +141,7 @@ //------------ /obj/item/storage/box/guncase/flamer name = "\improper M240 incinerator case" - desc = "A gun case containing the M240A1 incinerator unit. It does come loaded, but you'll still have to find extra tanks as you go." + desc = "A gun case containing a M240A1 incinerator unit. It does come loaded, but you'll still have to find extra tanks as you go." storage_slots = 4 can_hold = list(/obj/item/weapon/gun/flamer, /obj/item/ammo_magazine/flamer_tank, /obj/item/attachable/attached_gun/extinguisher) @@ -162,7 +162,7 @@ //------------ /obj/item/storage/box/guncase/m56d name = "\improper M56D heavy machine gun case" - desc = "A gun case containing the M56D heavy machine gun. You'll need to order resupplies from requisitions or scavenge them on the field. How do they fit all this into a case? Wouldn't you need a crate." + desc = "A gun case containing a M56D heavy machine gun. You'll need to order resupplies from requisitions or scavenge them on the field. How do they fit all this into a case? Wouldn't you need a crate." storage_slots = 8 can_hold = list(/obj/item/device/m56d_gun, /obj/item/ammo_magazine/m56d, /obj/item/device/m56d_post, /obj/item/tool/wrench, /obj/item/tool/screwdriver, /obj/item/ammo_magazine/m56d, /obj/item/pamphlet/skill/machinegunner, /obj/item/storage/belt/marine/m2c) @@ -179,7 +179,7 @@ //------------ /obj/item/storage/box/guncase/m2c name = "\improper M2C heavy machine gun case" - desc = "A gun case containing the M2C heavy machine gun. It doesn't come loaded, but it does have spare ammunition. You'll have to order extras from requisitions." + desc = "A gun case containing a M2C heavy machine gun. It doesn't come loaded, but it does have spare ammunition. You'll have to order extras from requisitions." storage_slots = 7 can_hold = list(/obj/item/pamphlet/skill/machinegunner, /obj/item/device/m2c_gun, /obj/item/ammo_magazine/m2c, /obj/item/storage/belt/marine/m2c, /obj/item/pamphlet/skill/machinegunner) @@ -195,7 +195,7 @@ //------------ /obj/item/storage/box/guncase/m41a name = "\improper M41A pulse rifle MK2 case" - desc = "A gun case containing the M41A pulse rifle MK2." + desc = "A gun case containing a M41A pulse rifle MK2." storage_slots = 5 can_hold = list(/obj/item/weapon/gun/rifle/m41a, /obj/item/ammo_magazine/rifle) @@ -206,43 +206,50 @@ //------------ -/obj/item/storage/box/guncase/pumpshotgun - name = "\improper M37A2 Pump Shotgun case" - desc = "A gun case containing the M37A2 Pump Shotgun." - icon_state = "guncase_red" - storage_slots = 4 - can_hold = list(/obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/flechette, /obj/item/ammo_magazine/shotgun/slugs, /obj/item/storage/pouch/shotgun) +/obj/item/storage/box/guncase/shotguncombat + name = "\improper M120 tactical shotgun case" + desc = "A gun case containing an unloaded M120 tactical shotgun, two boxes of 12 gauge buckshot, and one box of 12 gauge slug." + icon_state = "guncase" + storage_slots = 3 + can_hold = list(/obj/item/weapon/gun/shotgun/combat, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/slugs) + +/obj/item/storage/box/guncase/shotguncombat/fill_preset_inventory() + new /obj/item/weapon/gun/shotgun/combat(src) + new /obj/item/ammo_magazine/shotgun/buckshot(src) + new /obj/item/ammo_magazine/shotgun/slugs(src) + +/obj/item/storage/box/guncase/shotgunpump + name = "\improper Ithaca 37 pump-action shotgun case" + desc = "A gun case containing an unloaded Ithaca 37 pump-action shotgun, a box of 12 gauge buckshot, and a box of 12 gauge slugs." + icon_state = "matebacase" + storage_slots = 3 + can_hold = list(/obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/slugs) -/obj/item/storage/box/guncase/pumpshotgun/fill_preset_inventory() +/obj/item/storage/box/guncase/shotgunpump/fill_preset_inventory() new /obj/item/weapon/gun/shotgun/pump(src) - new /obj/item/storage/pouch/shotgun(src) - new /obj/item/storage/large_holster/m37(src) - for(var/i = 1 to 3) - var/random_pick = rand(1, 3) - switch(random_pick) - if(1) - new /obj/item/ammo_magazine/shotgun/buckshot(src) - if(2) - new /obj/item/ammo_magazine/shotgun/flechette(src) - if(3) - new /obj/item/ammo_magazine/shotgun/slugs(src) - -/obj/item/storage/box/guncase/pumpshotgun/special + new /obj/item/ammo_magazine/shotgun/buckshot(src) + new /obj/item/ammo_magazine/shotgun/slugs(src) + + +/obj/item/storage/box/guncase/shotgunpump/special + name = "\improper Ithaca 37 pump-action shotgun case" + desc = "A gun case containing an unloaded Ithaca 37 pump-action shotgun and one box of 12 gauge USCM Special buckshot." + icon_state = "matebacase" storage_slots = 2 -/obj/item/storage/box/guncase/pumpshotgun/special/fill_preset_inventory() - new /obj/item/weapon/gun/shotgun/pump/special(src) +/obj/item/storage/box/guncase/shotgunpump/special/fill_preset_inventory() + new /obj/item/weapon/gun/shotgun/pump(src) new /obj/item/ammo_magazine/shotgun/buckshot/special(src) new /obj/item/storage/pouch/shotgun(src) new /obj/item/storage/large_holster/m37(src) -/obj/item/storage/box/guncase/mk45_automag - name = "\improper MK-45 Automagnum case" - desc = "A gun case containing the MK-45 'High-Power' Automagnum sidearm. While this weapon was rejected as a replacement for the M44 Combat Revolver, it is often back-issued to troops who prefer its powerful bullets over more common sidearms." +/obj/item/storage/box/guncase/hg45 + name = "\improper HG 45 pistol case" + desc = "A gun case containing a HG 45 pistol." storage_slots = 6 can_hold = list(/obj/item/weapon/gun/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower) -/obj/item/storage/box/guncase/mk45_automag/fill_preset_inventory() +/obj/item/storage/box/guncase/hg45/fill_preset_inventory() if(prob(30)) new /obj/item/weapon/gun/pistol/highpower(src) new /obj/item/ammo_magazine/pistol/highpower(src) @@ -251,19 +258,11 @@ new /obj/item/ammo_magazine/pistol/highpower(src) new /obj/item/ammo_magazine/pistol/highpower(src) new /obj/item/ammo_magazine/pistol/highpower(src) - else - new /obj/item/weapon/gun/pistol/highpower/black(src) - new /obj/item/ammo_magazine/pistol/highpower/black(src) - new /obj/item/ammo_magazine/pistol/highpower/black(src) - new /obj/item/ammo_magazine/pistol/highpower/black(src) - new /obj/item/ammo_magazine/pistol/highpower/black(src) - new /obj/item/ammo_magazine/pistol/highpower/black(src) - new /obj/item/ammo_magazine/pistol/highpower/black(src) /obj/item/storage/box/guncase/nsg23_marine name = "\improper NSG-23 assault rifle case" - desc = "A gun case containing the NSG 23 assault rifle. While usually seen in the hands of PMCs, this weapon is sometimes issued to USCM personnel." + desc = "A gun case containing a NSG 23 assault rifle. While usually seen in the hands of PMCs, this weapon is sometimes issued to USCM personnel." storage_slots = 6 can_hold = list(/obj/item/weapon/gun/rifle/nsg23/no_lock, /obj/item/ammo_magazine/rifle/nsg23) @@ -277,7 +276,7 @@ /obj/item/storage/box/guncase/m3717 name = "\improper M37-17 pump shotgun case" - desc = "A gun case containing the M37-17 pump shotgun. Rarely seen issued to USCM vessels on the edges of inhabited space who need the extra bang for their buck (literally) the M37-17 has. Like this one! Well, if it had the budget for it." + desc = "A gun case containing a M37-17 pump shotgun. Rarely seen issued to USCM vessels on the edges of inhabited space who need the extra bang for their buck (literally) the M37-17 has. Like this one! Well, if it had the budget for it." storage_slots = 4 can_hold = list(/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, /obj/item/ammo_magazine/shotgun/buckshot) @@ -289,7 +288,7 @@ /obj/item/storage/box/guncase/m1911 name = "\improper M1911 service pistol case" - desc = "A gun case containing the M1911 service pistol. It might be three centuries old but it's still a damn good pistol. Back-issue only, though." + desc = "A gun case containing a M1911 service pistol. It might be three centuries old but it's still a damn good pistol. Back-issue only, though." storage_slots = 7 can_hold = list(/obj/item/weapon/gun/pistol/m1911, /obj/item/ammo_magazine/pistol/m1911) @@ -331,7 +330,7 @@ /obj/item/storage/box/guncase/vulture name = "\improper M707 anti-materiel rifle case" - desc = "A gun case containing the M707 \"Vulture\" anti-materiel rifle and its requisite spotting tools." + desc = "A gun case containing a M707 \"Vulture\" anti-materiel rifle and its requisite spotting tools." icon_state = "guncase_blue" storage_slots = 7 can_hold = list( @@ -403,27 +402,27 @@ //Handgun case for Military police vendor three mag , a railflashligh and the handgun. -//88 Mod 4 Combat Pistol -/obj/item/storage/box/guncase/mod88 - name = "\improper 88 Mod 4 Combat Pistol case" - desc = "A gun case containing an 88 Mod 4 Combat Pistol." +//VP70 Combat Pistol +/obj/item/storage/box/guncase/vp70 + name = "\improper VP70 Combat Pistol case" + desc = "A gun case containing a VP70 Combat Pistol." storage_slots = 8 - can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88) + can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/vp70, /obj/item/ammo_magazine/pistol/vp70) -/obj/item/storage/box/guncase/mod88/fill_preset_inventory() +/obj/item/storage/box/guncase/vp70/fill_preset_inventory() new /obj/item/attachable/flashlight(src) - new /obj/item/weapon/gun/pistol/mod88(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) - new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src) + new /obj/item/weapon/gun/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) //M44 Combat Revolver /obj/item/storage/box/guncase/m44 name = "\improper M44 Combat Revolver case" - desc = "A gun case containing an M44 Combat Revolver loaded with marksman ammo." + desc = "A gun case containing a M44 Combat Revolver loaded with marksman ammo." storage_slots = 8 can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/revolver/m44, /obj/item/ammo_magazine/revolver) @@ -440,7 +439,7 @@ //M4A3 Service Pistol /obj/item/storage/box/guncase/m4a3 name = "\improper M4A3 Service Pistol case" - desc = "A gun case containing an M4A3 Service Pistol." + desc = "A gun case containing a M4A3 Service Pistol." storage_slots = 8 can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/m4a3, /obj/item/ammo_magazine/pistol) diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm index 457f7eb80a..ec24a11414 100644 --- a/code/modules/cm_marines/equipment/kit_boxes.dm +++ b/code/modules/cm_marines/equipment/kit_boxes.dm @@ -498,7 +498,7 @@ icon_state = "[initial(icon_state)]_e" /obj/item/storage/box/kit/cryo_self_defense/fill_preset_inventory() - new /obj/item/weapon/gun/pistol/mod88/flashlight(src) + new /obj/item/weapon/gun/pistol/vp70/flashlight(src) new /obj/item/attachable/bayonet(src) new /obj/item/tool/crowbar/red(src) new /obj/item/reagent_container/food/snacks/packaged_meal(src, pick("boneless pork ribs", "grilled chicken", "pizza square", "spaghetti chunks", "chicken tender")) diff --git a/code/modules/cm_marines/overwatch.dm b/code/modules/cm_marines/overwatch.dm index 49be73c186..4b0ec5fff6 100644 --- a/code/modules/cm_marines/overwatch.dm +++ b/code/modules/cm_marines/overwatch.dm @@ -215,6 +215,9 @@ if(DEAD) mob_state = "Dead" + if(mob_state == "Conscious" && (locate(/datum/effects/crit) in marine_human.effects_list)) + mob_state = "Incapacitated" + if(!istype(marine_human.head, /obj/item/clothing/head/helmet/marine)) has_helmet = FALSE diff --git a/code/modules/cm_tech/implements/ammo_kits.dm b/code/modules/cm_tech/implements/ammo_kits.dm index b77db20eeb..f1545fb751 100644 --- a/code/modules/cm_tech/implements/ammo_kits.dm +++ b/code/modules/cm_tech/implements/ammo_kits.dm @@ -62,7 +62,7 @@ .[/obj/item/ammo_magazine/rifle/m41aMK1] = /obj/item/ammo_magazine/rifle/m41aMK1/incendiary .[/obj/item/ammo_magazine/pistol] = /obj/item/ammo_magazine/pistol/incendiary .[/obj/item/ammo_magazine/pistol/vp78] = /obj/item/ammo_magazine/pistol/vp78/incendiary - .[/obj/item/ammo_magazine/pistol/mod88] = /obj/item/ammo_magazine/pistol/mod88/incendiary + .[/obj/item/ammo_magazine/pistol/vp70] = /obj/item/ammo_magazine/pistol/vp70/incendiary .[/obj/item/ammo_magazine/revolver] = /obj/item/ammo_magazine/revolver/incendiary /obj/item/storage/box/shotgun @@ -111,7 +111,7 @@ .[/obj/item/ammo_magazine/rifle/m41aMK1] = /obj/item/ammo_magazine/rifle/m41aMK1/penetrating .[/obj/item/ammo_magazine/pistol] = /obj/item/ammo_magazine/pistol/penetrating .[/obj/item/ammo_magazine/pistol/vp78] = /obj/item/ammo_magazine/pistol/vp78/penetrating - .[/obj/item/ammo_magazine/pistol/mod88] = /obj/item/ammo_magazine/pistol/mod88/penetrating + .[/obj/item/ammo_magazine/pistol/vp70] = /obj/item/ammo_magazine/pistol/vp70/penetrating .[/obj/item/ammo_magazine/revolver] = /obj/item/ammo_magazine/revolver/penetrating /obj/item/ammo_kit/toxin @@ -127,5 +127,5 @@ .[/obj/item/ammo_magazine/rifle/m41aMK1] = /obj/item/ammo_magazine/rifle/m41aMK1/toxin .[/obj/item/ammo_magazine/pistol] = /obj/item/ammo_magazine/pistol/toxin .[/obj/item/ammo_magazine/pistol/vp78] = /obj/item/ammo_magazine/pistol/vp78/toxin - .[/obj/item/ammo_magazine/pistol/mod88] = /obj/item/ammo_magazine/pistol/mod88/toxin + .[/obj/item/ammo_magazine/pistol/vp70] = /obj/item/ammo_magazine/pistol/vp70/toxin .[/obj/item/ammo_magazine/revolver] = /obj/item/ammo_magazine/revolver/marksman/toxin diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 658c6bfa1f..85755abd58 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -923,8 +923,8 @@ GLOBAL_LIST_INIT(rebel_rifles, list( new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/b92fs(new_human), WEAR_IN_BACK) if(1) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead(new_human), WEAR_IN_BACK) if(2) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/highpower(new_human), WEAR_IN_BACK) @@ -1080,20 +1080,11 @@ GLOBAL_LIST_INIT(rebel_rifles, list( ) /datum/equipment_preset/proc/load_upp_shotgun(mob/living/carbon/human/new_human) - var/random_shotgun = rand(1,3) - switch(random_shotgun) - if(1) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher, WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_R_STORE) - if(2) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher/slug, WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyslug, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyslug, WEAR_R_STORE) - if(3) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher/flechette, WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyflechette, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyflechette, WEAR_R_STORE) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_R_STORE) + /datum/equipment_preset/proc/add_upp_weapon(mob/living/carbon/human/new_human) var/random_gun = rand(1,5) diff --git a/code/modules/gear_presets/cbrn.dm b/code/modules/gear_presets/cbrn.dm index 3952329155..b2ecf5b403 100644 --- a/code/modules/gear_presets/cbrn.dm +++ b/code/modules/gear_presets/cbrn.dm @@ -44,7 +44,7 @@ if("flamethrower") new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/flamer/underextinguisher(new_human), WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/flamethrower/kit(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK) @@ -91,7 +91,7 @@ if("flamethrower") new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/flamer/underextinguisher(new_human), WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/flamethrower/kit(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK) @@ -122,7 +122,7 @@ . = ..() new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/medic(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full/dutch(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medkit/full_advanced(new_human), WEAR_L_STORE) diff --git a/code/modules/gear_presets/clf.dm b/code/modules/gear_presets/clf.dm index 6af9584166..7665cd6994 100644 --- a/code/modules/gear_presets/clf.dm +++ b/code/modules/gear_presets/clf.dm @@ -460,7 +460,7 @@ new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF/cct(new_human), WEAR_L_EAR) diff --git a/code/modules/gear_presets/cmb.dm b/code/modules/gear_presets/cmb.dm index a8a03ee758..34d428e16a 100644 --- a/code/modules/gear_presets/cmb.dm +++ b/code/modules/gear_presets/cmb.dm @@ -77,9 +77,9 @@ switch(choice) if(1 to 6) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full/revolver, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) @@ -111,9 +111,9 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun, WEAR_IN_R_STORE) if(10) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full/revolver, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) @@ -147,9 +147,9 @@ new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB/marshal, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, WEAR_J_STORE) @@ -226,9 +226,9 @@ /datum/equipment_preset/cmb/synth/load_gear(mob/living/carbon/human/new_human) //backpack new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/security, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/autopsy_scanner, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio, WEAR_IN_BACK) @@ -295,9 +295,9 @@ new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/ICC, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/health/ceramic_plate, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow, WEAR_JACKET) diff --git a/code/modules/gear_presets/corpses.dm b/code/modules/gear_presets/corpses.dm index d84cf766c4..f3e14dcbc5 100644 --- a/code/modules/gear_presets/corpses.dm +++ b/code/modules/gear_presets/corpses.dm @@ -259,7 +259,7 @@ var/random = rand(1,4) add_ice_colony_survivor_equipment(new_human) 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/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) @@ -680,7 +680,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel, 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/storage/belt/gun/m4a3/mod88, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_L_STORE) add_random_survivor_equipment(new_human) @@ -711,7 +711,7 @@ 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/weapon/baton, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88_near_empty, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) //*****************************************************************************************************/ @@ -736,7 +736,7 @@ 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/weapon/baton, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88_near_empty, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) /datum/equipment_preset/corpse/pmc/goon/lead/burst diff --git a/code/modules/gear_presets/pmc.dm b/code/modules/gear_presets/pmc.dm index d0877cf731..3ce170aa2c 100644 --- a/code/modules/gear_presets/pmc.dm +++ b/code/modules/gear_presets/pmc.dm @@ -90,7 +90,7 @@ new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) switch(choice) @@ -229,7 +229,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/energy/taser, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) @@ -1370,7 +1370,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/ap, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/ap, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large/pmc_m39, WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) diff --git a/code/modules/gear_presets/survivors/misc.dm b/code/modules/gear_presets/survivors/misc.dm index 32669c01e2..e426be794d 100644 --- a/code/modules/gear_presets/survivors/misc.dm +++ b/code/modules/gear_presets/survivors/misc.dm @@ -197,7 +197,7 @@ Everything below isn't used or out of place. new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/large_stack(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88_near_empty, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/corporate/no_lock, WEAR_J_STORE) diff --git a/code/modules/gear_presets/upp.dm b/code/modules/gear_presets/upp.dm index ecbd68f49b..0090b52764 100644 --- a/code/modules/gear_presets/upp.dm +++ b/code/modules/gear_presets/upp.dm @@ -132,7 +132,10 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/box/m94, WEAR_IN_BACK) //4.25 //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92, WEAR_WAIST) - load_upp_shotgun(new_human) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_R_STORE) + /datum/equipment_preset/upp/soldier/proc/load_upp_double(mob/living/carbon/human/new_human, obj/item/clothing/under/marine/veteran/UPP/UPP) @@ -140,7 +143,7 @@ var/rifle = prob(50) ? /obj/item/weapon/gun/rifle/type71/dual : /obj/item/weapon/gun/rifle/type71/carbine/dual new_human.equip_to_slot_or_del(new rifle, WEAR_BACK) //body - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/dual, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE) //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp/full, WEAR_WAIST) //pockets @@ -578,7 +581,7 @@ UPP.attach_accessory(new_human, W) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/heavy/dragonsbreath, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/dragon, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/heavy/dragonsbreath, WEAR_IN_JACKET) //waist var/uppvetsidearm = prob(50) ? /obj/item/storage/belt/gun/type47/t73 : /obj/item/storage/belt/gun/type47/np92 @@ -2823,7 +2826,7 @@ new_human.equip_to_slot_or_del(UPP, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/dual, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE) //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/shotgun/upp/heavybuck(new_human), WEAR_WAIST) //limb diff --git a/code/modules/gear_presets/uscm.dm b/code/modules/gear_presets/uscm.dm index 4df09b5f7a..506965a88b 100644 --- a/code/modules/gear_presets/uscm.dm +++ b/code/modules/gear_presets/uscm.dm @@ -316,7 +316,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/tanker(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/tanker(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/tool/weldpack(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tank(new_human), WEAR_R_STORE) @@ -815,20 +815,16 @@ new_human.equip_to_slot_or_del(new new_mask, WEAR_FACE) /datum/equipment_preset/uscm/smartgunner_equipped/random/spawn_marine_sidearm(mob/living/carbon/human/new_human) - var/sidearm = pick("m4a3", "mod88", "vp78", "m44") + var/sidearm = pick("m4a3", "vp70", "m44") switch(sidearm) if("m4a3") new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m4a3(new_human), WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol(new_human), WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol(new_human), WEAR_IN_ACCESSORY) - if("mod88") - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88(new_human), WEAR_IN_ACCESSORY) - if("vp78") - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp78(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_ACCESSORY) + if("vp70") + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) if("m44") new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/m44(new_human), WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver(new_human), WEAR_IN_ACCESSORY) diff --git a/code/modules/gear_presets/uscm_event.dm b/code/modules/gear_presets/uscm_event.dm index 9ef15ff955..8d033cfb80 100644 --- a/code/modules/gear_presets/uscm_event.dm +++ b/code/modules/gear_presets/uscm_event.dm @@ -309,7 +309,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/senior(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost(new_human), WEAR_JACKET) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) diff --git a/code/modules/gear_presets/uscm_police.dm b/code/modules/gear_presets/uscm_police.dm index 5a924cbbef..5018f8d25e 100644 --- a/code/modules/gear_presets/uscm_police.dm +++ b/code/modules/gear_presets/uscm_police.dm @@ -48,9 +48,9 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/mpsec(new_human), WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster(new_human), WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST) @@ -105,9 +105,9 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/mpsec(new_human), WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster(new_human), WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST) @@ -167,9 +167,9 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/mpsec(new_human), WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster(new_human), WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST) diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index 91ceceee3f..22a298093e 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -864,7 +864,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/pilot(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/pilot(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) @@ -960,7 +960,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/pilot/dcc(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/vest/dcc(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) diff --git a/code/modules/gear_presets/wo.dm b/code/modules/gear_presets/wo.dm index b87d939fc9..fcefdc03e9 100644 --- a/code/modules/gear_presets/wo.dm +++ b/code/modules/gear_presets/wo.dm @@ -309,7 +309,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/engineer, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) new_human.equip_to_slot_or_del(new back_item, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_R_STORE) diff --git a/code/modules/gear_presets/wy_goons.dm b/code/modules/gear_presets/wy_goons.dm index a15e9b4433..fbfe8305ee 100644 --- a/code/modules/gear_presets/wy_goons.dm +++ b/code/modules/gear_presets/wy_goons.dm @@ -79,7 +79,7 @@ new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/corporate, WEAR_J_STORE) @@ -150,7 +150,7 @@ new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/nsg23, WEAR_J_STORE) @@ -253,7 +253,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full, WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/surgical_line, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_R_STORE) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 13231a93dc..5eadbd57c7 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -859,6 +859,7 @@ nutrition -= 40 apply_damage(-3, TOX) addtimer(VARSET_CALLBACK(src, lastpuke, FALSE), 35 SECONDS) + reagents.remove_any(rand(15, 30)) /mob/living/carbon/human/proc/get_visible_gender() if(wear_suit && wear_suit.flags_inv_hide & HIDEJUMPSUIT && ((head && head.flags_inv_hide & HIDEMASK) || wear_mask)) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index e664143be7..c22a68a61b 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -24,7 +24,7 @@ return 1 // If unconscious with oxygen damage, do CPR. If dead, we do CPR - if(!(stat == UNCONSCIOUS && getOxyLoss() > 0) && !(stat == DEAD)) + if(!((stat == UNCONSCIOUS || (locate(/datum/effects/crit) in effects_list)) && getOxyLoss() > 0) && !(stat == DEAD)) help_shake_act(attacking_mob) return 1 diff --git a/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm b/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm index 37750b5585..3bca610af8 100644 --- a/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm +++ b/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm @@ -7,7 +7,7 @@ if(stat != DEAD) //the dead get zero fullscreens - if(stat == UNCONSCIOUS) + if(stat == UNCONSCIOUS || (locate(/datum/effects/crit) in effects_list)) var/severity = 0 switch(health) if(-20 to -10) severity = 1 diff --git a/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm b/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm index 5b37238d28..65f98d928e 100644 --- a/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm +++ b/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm @@ -42,7 +42,8 @@ //UNCONSCIOUS. NO-ONE IS HOME if(regular_update && ((getOxyLoss() > 50))) - apply_effect(3, PARALYZE) + KnockDown(3) + Stun(3) if((src.species.flags & HAS_HARDCRIT) && HEALTH_THRESHOLD_CRIT > health) var/already_in_crit = FALSE diff --git a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm index ac598fe7ac..e87de58155 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm @@ -235,16 +235,12 @@ var/atom/movable/closest_target var/smallest_distance = INFINITY - for(var/mob/living/carbon/potential_target as anything in GLOB.alive_mob_list) - if(!istype(potential_target)) - continue + var/list/valid_targets = SSxeno_ai.get_valid_targets(src) + for(var/atom/movable/potential_target as anything in valid_targets) if(z != potential_target.z) continue - if(!potential_target.ai_can_target(src)) - continue - var/distance = get_dist(src, potential_target) if(distance > ai_range) @@ -258,59 +254,6 @@ closest_target = potential_target smallest_distance = distance - for(var/obj/vehicle/multitile/potential_vehicle_target as anything in GLOB.all_multi_vehicles) - if(z != potential_vehicle_target.z) - continue - - var/distance = get_dist(src, potential_vehicle_target) - - if(distance > ai_range) - continue - - if(potential_vehicle_target.health <= 0) - continue - - var/multitile_faction = potential_vehicle_target.vehicle_faction - if(hive.faction_is_ally(multitile_faction)) - continue - - var/skip_vehicle - var/list/interior_living_mobs = potential_vehicle_target.interior.get_passengers() - for(var/mob/living/carbon/human/human_mob in interior_living_mobs) - if(!human_mob.ai_can_target(src)) - continue - - skip_vehicle = FALSE - break - - if(skip_vehicle) - continue - - viable_targets += potential_vehicle_target - - if(smallest_distance <= distance) - continue - - closest_target = potential_vehicle_target - smallest_distance = distance - - for(var/obj/structure/machinery/defenses/potential_defense_target as anything in GLOB.all_active_defenses) - if(z != potential_defense_target.z) - continue - - var/distance = get_dist(src, potential_defense_target) - - if(distance > ai_range) - continue - - viable_targets += potential_defense_target - - if(smallest_distance <= distance) - continue - - closest_target = potential_defense_target - smallest_distance = distance - var/extra_check_distance = round(smallest_distance * EXTRA_CHECK_DISTANCE_MULTIPLIER) if(extra_check_distance < 1) diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm index 40e20fc06f..9627ac60c0 100644 --- a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm +++ b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm @@ -138,7 +138,7 @@ At bare minimum, make sure the relevant checks from parent types gets copied in // MOBS // ///////////////////////////// /mob/living/ai_check_stat(mob/living/carbon/xenomorph/X) - return stat == CONSCIOUS + return stat == CONSCIOUS && !(locate(/datum/effects/crit) in effects_list) ///////////////////////////// diff --git a/code/modules/mob/new_player/preferences_setup.dm b/code/modules/mob/new_player/preferences_setup.dm index 73128b041d..f0dfdc8925 100644 --- a/code/modules/mob/new_player/preferences_setup.dm +++ b/code/modules/mob/new_player/preferences_setup.dm @@ -16,8 +16,10 @@ randomize_hair_color("facial") randomize_eyes_color() randomize_skin_color() - underwear = gender == MALE ? pick(GLOB.underwear_m) : pick(GLOB.underwear_f) - undershirt = gender == MALE ? pick(GLOB.undershirt_m) : pick(GLOB.undershirt_f) + var/list/undershirt_options = gender == MALE ? GLOB.undershirt_m : GLOB.undershirt_f + undershirt = pick(undershirt_options-GLOB.undershirt_restricted) + var/list/underwear_options = gender == MALE ? GLOB.underwear_m : GLOB.underwear_f + underwear = pick(underwear_options-GLOB.underwear_restricted) backbag = 2 age = rand(AGE_MIN,AGE_MAX) if(H) diff --git a/code/modules/mob/new_player/sprite_accessories/undershirt.dm b/code/modules/mob/new_player/sprite_accessories/undershirt.dm index 5919b75636..5fb59cf261 100644 --- a/code/modules/mob/new_player/sprite_accessories/undershirt.dm +++ b/code/modules/mob/new_player/sprite_accessories/undershirt.dm @@ -1,12 +1,15 @@ GLOBAL_LIST_INIT_TYPED(undershirt_m, /datum/sprite_accessory/undershirt, setup_undershirt(MALE)) GLOBAL_LIST_INIT_TYPED(undershirt_f, /datum/sprite_accessory/undershirt, setup_undershirt(FEMALE)) +GLOBAL_LIST_INIT_TYPED(undershirt_restricted, /datum/sprite_accessory/undershirt, setup_undershirt(null, TRUE)) -/proc/setup_undershirt(restricted_gender) +/proc/setup_undershirt(restricted_gender, restricted) var/list/undershirt_list = list() for(var/undershirt_type in subtypesof(/datum/sprite_accessory/undershirt)) var/datum/sprite_accessory/undershirt/undershirt_datum = new undershirt_type if(restricted_gender && undershirt_datum.gender != restricted_gender && (undershirt_datum.gender == MALE || undershirt_datum.gender == FEMALE)) continue + if(restricted && !undershirt_datum.restricted) + continue if(undershirt_datum.camo_conforming) undershirt_list["[undershirt_datum.name] (Camo Conforming)"] = undershirt_datum var/datum/sprite_accessory/undershirt/classic_datum = new undershirt_type @@ -28,6 +31,7 @@ GLOBAL_LIST_INIT_TYPED(undershirt_f, /datum/sprite_accessory/undershirt, setup_u /datum/sprite_accessory/undershirt icon = 'icons/mob/humans/undershirt.dmi' var/camo_conforming = FALSE + var/restricted = FALSE /datum/sprite_accessory/undershirt/proc/get_image(mob_gender) var/selected_icon_state = icon_state @@ -117,3 +121,10 @@ GLOBAL_LIST_INIT_TYPED(undershirt_f, /datum/sprite_accessory/undershirt, setup_u icon_state = "strapless" gender = FEMALE camo_conforming = TRUE + +// Restricted +/datum/sprite_accessory/undershirt/telnyashka + name = "Telnyashka" + icon_state = "telnyashka" + gender = NEUTER + restricted = TRUE diff --git a/code/modules/mob/new_player/sprite_accessories/underwear.dm b/code/modules/mob/new_player/sprite_accessories/underwear.dm index 869179619e..9c98abccb2 100644 --- a/code/modules/mob/new_player/sprite_accessories/underwear.dm +++ b/code/modules/mob/new_player/sprite_accessories/underwear.dm @@ -1,12 +1,15 @@ GLOBAL_LIST_INIT_TYPED(underwear_m, /datum/sprite_accessory/underwear, setup_underwear(MALE)) GLOBAL_LIST_INIT_TYPED(underwear_f, /datum/sprite_accessory/underwear, setup_underwear(FEMALE)) +GLOBAL_LIST_INIT_TYPED(underwear_restricted, /datum/sprite_accessory/underwear, setup_underwear(null, TRUE)) -/proc/setup_underwear(restricted_gender) +/proc/setup_underwear(restricted_gender, restricted) var/list/underwear_list = list() for(var/underwear_type in subtypesof(/datum/sprite_accessory/underwear)) var/datum/sprite_accessory/underwear/underwear_datum = new underwear_type if(restricted_gender && underwear_datum.gender != restricted_gender && (underwear_datum.gender == MALE || underwear_datum.gender == FEMALE)) continue + if(restricted && !underwear_datum.restricted) + continue if(underwear_datum.camo_conforming) underwear_list["[underwear_datum.name] (Camo Conforming)"] = underwear_datum var/datum/sprite_accessory/underwear/classic_datum = new underwear_type @@ -28,6 +31,7 @@ GLOBAL_LIST_INIT_TYPED(underwear_f, /datum/sprite_accessory/underwear, setup_und /datum/sprite_accessory/underwear icon = 'icons/mob/humans/underwear.dmi' var/camo_conforming = FALSE + var/restricted = FALSE /datum/sprite_accessory/underwear/proc/get_image(mob_gender) var/selected_icon_state = icon_state diff --git a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm index a750875c75..7a45130110 100644 --- a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm @@ -373,19 +373,19 @@ /obj/item/ammo_box/magazine/su6/empty empty = TRUE -//-----------------------88M4 Pistol Mag Box----------------------- +//-----------------------VP70 Pistol Mag Box----------------------- -/obj/item/ammo_box/magazine/mod88 - name = "magazine box (88 Mod 4 AP x 16)" +/obj/item/ammo_box/magazine/vp70 + name = "magazine box (VP70 x 16)" icon_state = "base_mod88" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_reg" overlay_gun_type = "_mod88" overlay_content = "_reg" num_of_magazines = 16 - magazine_type = /obj/item/ammo_magazine/pistol/mod88 + magazine_type = /obj/item/ammo_magazine/pistol/vp70 -/obj/item/ammo_box/magazine/mod88/empty +/obj/item/ammo_box/magazine/vp70/empty empty = TRUE //-----------------------VP78 Pistol Mag Box----------------------- diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 01d7f57ee5..4f95c15781 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -1760,8 +1760,8 @@ Defined in conflicts.dm of the #defines folder. icon = 'icons/obj/items/weapons/guns/attachments/stock.dmi' /obj/item/attachable/stock/shotgun - name = "\improper M37 wooden stock" - desc = "A non-standard heavy wooden stock for the M37 Shotgun. More cumbersome than the standard issue stakeout, but reduces recoil and improves accuracy. Allegedly makes a pretty good club in a fight too." + name = "\improper Ithaca 37 wooden stock" + desc = "A standard wooden stock for the Ithaca pump-action shotgun. More cumbersome than the standard issue stakeout, but reduces recoil and improves accuracy. Allegedly makes a pretty good club in a fight too." slot = "stock" icon_state = "stock" wield_delay_mod = WIELD_DELAY_FAST @@ -1869,8 +1869,8 @@ Defined in conflicts.dm of the #defines folder. attach_icon = new_attach_icon ? new_attach_icon : "u_" + attach_icon /obj/item/attachable/stock/tactical - name = "\improper MK221 tactical stock" - desc = "A metal stock made for the MK221 tactical shotgun." + name = "\improper M120 tactical stock" + desc = "A metal stock made for the M120 tactical shotgun." icon_state = "tactical_stock" hud_offset_mod = 6 @@ -1904,6 +1904,33 @@ Defined in conflicts.dm of the #defines folder. recoil_unwielded_mod = -RECOIL_AMOUNT_TIER_5 scatter_unwielded_mod = -SCATTER_AMOUNT_TIER_10 +/obj/item/attachable/stock/type23/wood + name = "\improper KS-29 wooden stock" + desc = "A standard heavy wooden stock for the KS-29 riot shotgun. Allegedly makes a pretty good club in a fight too." + slot = "stock" + icon_state = "type23_wood" + wield_delay_mod = WIELD_DELAY_FAST + pixel_shift_x = 32 + pixel_shift_y = 15 + hud_offset_mod = 6 //*Very* long sprite. + flags_attach_features = NO_FLAGS + +/obj/item/attachable/stock/type23/wood/New() + ..() + //it makes stuff much better when two-handed + accuracy_mod = HIT_ACCURACY_MULT_TIER_4 + recoil_mod = -RECOIL_AMOUNT_TIER_4 + scatter_mod = -SCATTER_AMOUNT_TIER_8 + movement_onehanded_acc_penalty_mod = -MOVEMENT_ACCURACY_PENALTY_MULT_TIER_5 + //it makes stuff much worse when one handed + accuracy_unwielded_mod = -HIT_ACCURACY_MULT_TIER_3 + recoil_unwielded_mod = RECOIL_AMOUNT_TIER_4 + scatter_unwielded_mod = SCATTER_AMOUNT_TIER_8 + //but at the same time you are slow when 2 handed + aim_speed_mod = CONFIG_GET(number/slowdown_med) + + matter = list("wood" = 2000) + /obj/item/attachable/stock/slavic name = "wooden stock" desc = "A non-standard heavy wooden stock for Slavic firearms." @@ -2189,9 +2216,9 @@ Defined in conflicts.dm of the #defines folder. if("classic") attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon -/obj/item/attachable/stock/mod88 - name = "\improper Mod 88 burst stock" - desc = "Increases the fire rate and burst amount on the Mod 88. Some versions act as a holster for the weapon when un-attached. This is a test item and should not be used in normal gameplay (yet)." +/obj/item/attachable/stock/vp70 + name = "\improper VP70 burst stock" + desc = "Increases the fire rate and burst amount on the VP70. Some versions act as a holster for the weapon when un-attached. This is a test item and should not be used in normal gameplay (yet)." icon_state = "mod88_stock" attach_icon = "mod88_stock_a" wield_delay_mod = WIELD_DELAY_FAST @@ -2200,7 +2227,7 @@ Defined in conflicts.dm of the #defines folder. size_mod = 2 melee_mod = 5 -/obj/item/attachable/stock/mod88/New() +/obj/item/attachable/stock/vp70/New() ..() //2h accuracy_mod = HIT_ACCURACY_MULT_TIER_3 @@ -2774,7 +2801,7 @@ Defined in conflicts.dm of the #defines folder. name = "U1 grenade launcher" desc = "A weapon-mounted, reloadable grenade launcher." icon_state = "grenade" - attach_icon = "grenade_a" + attach_icon = "grenade" w_class = SIZE_MEDIUM current_rounds = 0 max_rounds = 3 @@ -2943,12 +2970,22 @@ Defined in conflicts.dm of the #defines folder. current_rounds = 0 max_rounds = 5 max_range = 10 - attachment_firing_delay = 30 + attachment_firing_delay = 15 /obj/item/attachable/attached_gun/grenade/mk1/recon icon_state = "green_grenade-mk1" attach_icon = "green_grenade-mk1_a" +/obj/item/attachable/attached_gun/grenade/m120 + name = "\improper PN/c 30mm underslung grenade launcher" + desc = "Compact variant of the PN pump action underslung grenade launcher. Fits the M120 shotgun, three round tube, chambers one." + icon_state = "grenade-mk1" + attach_icon = "grenade-mk1_a" + current_rounds = 0 + max_rounds = 3 + max_range = 10 + attachment_firing_delay = 15 + /obj/item/attachable/attached_gun/grenade/m203 //M16 GL, only DD have it. name = "\improper M203 Grenade Launcher" desc = "An antique underbarrel grenade launcher. Adopted in 1969 for the M16, it was made obsolete centuries ago; how its ended up here is a mystery to you. Holds only one propriatary 40mm grenade, does not have modern IFF systems, it won't pass through your friends." diff --git a/code/modules/projectiles/guns/pistols.dm b/code/modules/projectiles/guns/pistols.dm index f2908b8495..b0171818a2 100644 --- a/code/modules/projectiles/guns/pistols.dm +++ b/code/modules/projectiles/guns/pistols.dm @@ -6,6 +6,7 @@ icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' reload_sound = 'sound/weapons/flipblade.ogg' cocked_sound = 'sound/weapons/gun_pistol_cocked.ogg' + empty_sound = 'sound/weapons/gun_empty.ogg' matter = list("metal" = 2000) flags_equip_slot = SLOT_WAIST @@ -48,12 +49,13 @@ /obj/item/weapon/gun/pistol/m4a3 name = "\improper M4A3 service pistol" - desc = "An M4A3 Service Pistol, once the standard issue sidearm of the Colonial Marines but has recently been replaced with the Weyland Yutani 88 Mod 4 combat pistol. Fires 9mm pistol rounds." + desc = "The recently replaced semi-automatic 9mm service pistol of the USCM. It remains popular among marines due to its light trigger and familiarity." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m4a3" item_state = "m4a3" + fire_sound = "vp70" current_mag = /obj/item/ammo_magazine/pistol - flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED attachable_allowed = list( /obj/item/attachable/suppressor, /obj/item/attachable/reddot, @@ -87,7 +89,7 @@ /obj/item/weapon/gun/pistol/m4a3/custom name = "\improper M4A3 custom pistol" - desc = "This M4A3 sports a nickel finish and faux ivory grips. This one is a slightly customized variant produced by a well known gunsmith on Gateway Station. These are commonly purchased by low level enlisted men and junior officers who have nothing better to spend their salary on. Chambered in 9mm." + desc = "Sporting a nickel finish and possibly faux ivory grips, this 9mm pistol has been customized by a well known gunsmith on Gateway Station. It offers no tactical advantages." icon_state = "m4a3c" item_state = "m4a3c" @@ -102,37 +104,89 @@ damage_mult = BASE_BULLET_DAMAGE_MULT +//VP70 - Counterpart to M1911, offers burst and capacity ine exchange of low accuracy and damage. + +/obj/item/weapon/gun/pistol/vp70 + name = "\improper VP70 M5 service pistol" + desc = "Standard issue semi-automatic USCM service pistol. Recently replacing the M4A3, it retains its predecessor's 9mm chambering but offers both a higher magazine capacity and a 3-round burst selector." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' + icon_state = "vp70" + item_state = "vp70" + fire_sound = "vp70" + firesound_volume = 20 + reload_sound = 'sound/weapons/gun_vp70_reload.ogg' + unload_sound = 'sound/weapons/gun_vp70_unload.ogg' + current_mag = /obj/item/ammo_magazine/pistol/vp70 + force = 8 + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED + attachable_allowed = list( + /obj/item/attachable/suppressor, + /obj/item/attachable/extended_barrel, + /obj/item/attachable/heavy_barrel, + /obj/item/attachable/compensator, + /obj/item/attachable/flashlight, + /obj/item/attachable/reflex, + /obj/item/attachable/reddot, + /obj/item/attachable/burstfire_assembly, + /obj/item/attachable/lasersight, + /obj/item/attachable/flashlight/grip, + /obj/item/attachable/magnetic_harness, + /obj/item/attachable/stock/vp70, + ) + +/obj/item/weapon/gun/pistol/vp70/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 27, "muzzle_y" = 21,"rail_x" = 8, "rail_y" = 22, "under_x" = 21, "under_y" = 18, "stock_x" = 18, "stock_y" = 15) + + +/obj/item/weapon/gun/pistol/vp70/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_11) + set_burst_amount(BURST_AMOUNT_TIER_3) + set_burst_delay(FIRE_DELAY_TIER_11) + accuracy_mult = BASE_ACCURACY_MULT + accuracy_mult_unwielded = BASE_ACCURACY_MULT + scatter = SCATTER_AMOUNT_TIER_7 + burst_scatter_mult = SCATTER_AMOUNT_TIER_7 + scatter_unwielded = SCATTER_AMOUNT_TIER_7 + damage_mult = BASE_BULLET_DAMAGE_MULT + + +/obj/item/weapon/gun/pistol/vp70/training + current_mag = /obj/item/ammo_magazine/pistol/vp70/rubber + + +/obj/item/weapon/gun/pistol/vp70/flashlight/handle_starting_attachment() + ..() + var/obj/item/attachable/flashlight/flashlight = new(src) + flashlight.Attach(src) + update_attachable(flashlight.slot) + //------------------------------------------------------- -//M4A3 45 //Inspired by the 1911 -//deprecated /obj/item/weapon/gun/pistol/m1911 - name = "\improper M1911 service pistol" - desc = "A timeless classic since the first World War. Once standard issue for the USCM, now back order only. Chambered in .45 ACP. Unfortunately, due to the progression of IFF technology, M1911 .45 ACP is NOT compatible with the SU-6." + name = "\improper M1911 pistol" + desc = "Despite never being an official service pistol of the USCM, its .45 ACP chambering and cultural connection to the Corps's predecessor keeps it a popular pistol, enough so that a large quantity are kept on backorder." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m4a345" item_state = "m4a3" - + fire_sound = 'sound/weapons/gun_vp78_v2.ogg' current_mag = /obj/item/ammo_magazine/pistol/m1911 - /obj/item/weapon/gun/pistol/m1911/set_gun_attachment_offsets() attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 22, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17) - /obj/item/weapon/gun/pistol/m1911/set_gun_config_values() ..() set_fire_delay(FIRE_DELAY_TIER_9) 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 + scatter_unwielded = SCATTER_AMOUNT_TIER_4 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5 - + recoil_unwielded = RECOIL_AMOUNT_TIER_4 /obj/item/weapon/gun/pistol/m1911/socom - name = "\improper M48A4 service pistol" + name = "\improper M48A4 pistol" desc = "A timeless classic since the first World War, the M1911A1 has limited use with the USCM, and is often used as a sidearm by non-governmental bodies due to its reliability. This is a modernized version with an ammo counter and a polymer grip, designated M48A4. Chambered in .45 ACP." icon_state = "m4a345_s" item_state = "m4a3" @@ -146,116 +200,83 @@ scatter = SCATTER_AMOUNT_TIER_8 burst_scatter_mult = SCATTER_AMOUNT_TIER_6 scatter_unwielded = SCATTER_AMOUNT_TIER_6 - damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5 /obj/item/weapon/gun/pistol/m1911/socom/equipped starting_attachment_types = list(/obj/item/attachable/suppressor, /obj/item/attachable/lasersight, /obj/item/attachable/reflex) -//------------------------------------------------------- -//Beretta 92FS, the gun McClane carries around in Die Hard. Very similar to the service pistol, all around. - -/obj/item/weapon/gun/pistol/b92fs - name = "\improper Beretta 92FS pistol" - desc = "A popular police firearm in the 20th century, often employed by hardboiled cops while confronting terrorists. A classic of its time, chambered in 9mm." - icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' - icon_state = "b92fs" - item_state = "b92fs" - current_mag = /obj/item/ammo_magazine/pistol/b92fs - -/obj/item/weapon/gun/pistol/b92fs/Initialize(mapload, spawn_empty) - . = ..() - if(prob(10)) - name = "\improper Beretta 93FR burst pistol" - desc += " This specific pistol is a burst-fire, limited availability, police-issue 93FR type Beretta. Not too accurate, aftermarket modififcations are recommended." - var/obj/item/attachable/burstfire_assembly/BFA = new(src) - BFA.flags_attach_features &= ~ATTACH_REMOVABLE - BFA.Attach(src) - update_attachable(BFA.slot) - add_firemode(GUN_FIREMODE_BURSTFIRE) - -/obj/item/weapon/gun/pistol/b92fs/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 22, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17) - -/obj/item/weapon/gun/pistol/b92fs/set_gun_config_values() - ..() - set_fire_delay(FIRE_DELAY_TIER_12) - accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5 - accuracy_mult_unwielded = BASE_ACCURACY_MULT - scatter = SCATTER_AMOUNT_TIER_7 - burst_scatter_mult = SCATTER_AMOUNT_TIER_5 - scatter_unwielded = SCATTER_AMOUNT_TIER_7 - damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_2 - - -//------------------------------------------------------- -//DEAGLE //This one is obvious. +//.45 MARSHALS PISTOL //Inspired by the Browning Hipower +// rebalanced - singlefire, very strong bullets but slow to fire and heavy recoil +// redesigned - now rejected USCM sidearm model, utilized by Colonial Marshals and other stray groups. -/obj/item/weapon/gun/pistol/heavy - name = "vintage Desert Eagle" - desc = "A bulky 50 caliber pistol with a serious kick, probably taken from some museum somewhere. This one is engraved, 'Peace through superior firepower.'" +/obj/item/weapon/gun/pistol/highpower + name = "\improper HG 45 'Aguila' pistol" + desc = "A semi-automatic Henjin-Garcia design chambered in .45 ACP that is slowly replacing the Office of the Colonial Marshals's Spearhead revolver." icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' - icon_state = "deagle" - item_state = "deagle" - fire_sound = 'sound/weapons/gun_DE50.ogg' - firesound_volume = 40 - current_mag = /obj/item/ammo_magazine/pistol/heavy - force = 13 - + icon_state = "highpower" + item_state = "highpower" + fire_sound = 'sound/weapons/gun_vp78_v2.ogg' + current_mag = /obj/item/ammo_magazine/pistol/highpower + force = 15 attachable_allowed = list( - /obj/item/attachable/reddot, - /obj/item/attachable/reflex, - /obj/item/attachable/flashlight, + /obj/item/attachable/suppressor, // Barrel + /obj/item/attachable/bayonet, + /obj/item/attachable/bayonet/upp_replica, + /obj/item/attachable/bayonet/upp, /obj/item/attachable/extended_barrel, /obj/item/attachable/heavy_barrel, - /obj/item/attachable/lasersight, /obj/item/attachable/compensator, + /obj/item/attachable/reddot, // Rail + /obj/item/attachable/reflex, + /obj/item/attachable/flashlight, + /obj/item/attachable/magnetic_harness, + /obj/item/attachable/scope, + /obj/item/attachable/scope/mini, + /obj/item/attachable/gyro, // Under + /obj/item/attachable/lasersight, + /obj/item/attachable/burstfire_assembly, ) +/obj/item/weapon/gun/pistol/highpower/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 20,"rail_x" = 6, "rail_y" = 22, "under_x" = 20, "under_y" = 15, "stock_x" = 0, "stock_y" = 0) -/obj/item/weapon/gun/pistol/heavy/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 30, "muzzle_y" = 20,"rail_x" = 17, "rail_y" = 21, "under_x" = 20, "under_y" = 17, "stock_x" = 20, "stock_y" = 17) - - -/obj/item/weapon/gun/pistol/heavy/set_gun_config_values() +/obj/item/weapon/gun/pistol/highpower/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_5) - set_burst_amount(BURST_AMOUNT_TIER_2) - set_burst_delay(FIRE_DELAY_TIER_8) - accuracy_mult = BASE_ACCURACY_MULT - accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_5 + set_fire_delay(FIRE_DELAY_TIER_7) + 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 + BULLET_DAMAGE_MULT_TIER_1 - recoil = RECOIL_AMOUNT_TIER_5 - recoil_unwielded = RECOIL_AMOUNT_TIER_3 + scatter_unwielded = SCATTER_AMOUNT_TIER_4 + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5 + recoil_unwielded = RECOIL_AMOUNT_TIER_4 -/obj/item/weapon/gun/pistol/heavy/co - name = "polished vintage Desert Eagle" - desc = "The handcannon that needs no introduction, the .50-caliber Desert Eagle is expensive, unwieldy, and extremely heavy for a pistol. However, it makes up for it with its powerful shots capable of stopping a bear dead in its tracks. Iconic, glamorous, and above all, extremely deadly." - icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' - icon_state = "c_deagle" - item_state = "c_deagle" - current_mag = /obj/item/ammo_magazine/pistol/heavy/super/highimpact - black_market_value = 100 +/obj/item/weapon/gun/pistol/highpower/black + name = "\improper HG 45 'Marina' pistol" + current_mag = /obj/item/ammo_magazine/pistol/highpower/black + icon_state = "highpower_b" + item_state = "highpower_b" + desc = "A semi-automatic Henjin-Garcia design chambered in .45 ACP that is slowly replacing the Office of the Colonial Marshals's Spearhead revolver. Unlike its more common siblings, this variant was marketed and successfully sold in small quantities to the USCM." -/obj/item/weapon/gun/pistol/heavy/co/set_gun_config_values() +/obj/item/weapon/gun/pistol/highpower/automag + name = "\improper HG 44 'Automag' pistol" + desc = "A semi-automatic Henjin-Garcia design chambered in .44 Magnum that was largely discontinued in favour of the HG 45 configuration chambered in .45 ACP." + current_mag = /obj/item/ammo_magazine/pistol/highpower/automag + icon_state = "highpower_tac" + item_state = "highpower_tac" + fire_sound = 'sound/weapons/gun_kt42.ogg' + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED + +/obj/item/weapon/gun/pistol/highpower/automag/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_5) - accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 - accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_7 - scatter = SCATTER_AMOUNT_TIER_6 - burst_scatter_mult = SCATTER_AMOUNT_TIER_4 - scatter_unwielded = SCATTER_AMOUNT_TIER_3 - damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_8 - recoil = RECOIL_AMOUNT_TIER_3 - recoil_unwielded = RECOIL_AMOUNT_TIER_2 + set_fire_delay(FIRE_DELAY_TIER_6) + recoil = RECOIL_AMOUNT_TIER_5 + recoil_unwielded = RECOIL_AMOUNT_TIER_3 -/obj/item/weapon/gun/pistol/heavy/co/gold - name = "golden vintage Desert Eagle" - desc = "A Desert Eagle anodized in gold and adorned with rosewood grips. The living definition of ostentatious, it's flashy, unwieldy, tremendously heavy, and kicks like a mule. But as a symbol of power, there's nothing like it." - icon_state = "g_deagle" - item_state = "g_deagle" +/obj/item/weapon/gun/pistol/highpower/automag/tactical + name = "\improper HG 44 'Automag' pistol" + desc = "A semi-automatic Henjin-Garcia design chambered in .44 Magnum that was largely discontinued in favour of the HG 45 configuration chambered in .45 ACP." + starting_attachment_types = list(/obj/item/attachable/suppressor, /obj/item/attachable/lasersight, /obj/item/attachable/reflex) + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED //------------------------------------------------------- //NP92 pistol @@ -263,13 +284,13 @@ /obj/item/weapon/gun/pistol/np92 name = "\improper NP92 pistol" - desc = "The standard issue sidearm of the UPP. The NP92 is a small but powerful sidearm, well-liked by most it is issued to, although some prefer the weapon it was meant to replace, the Type 73. Takes 12 round magazines." + desc = "The standard issue sidearm of the UPP. Chambered in 9x18mm Makarov, The NP92 is a small versatile pistol." icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' icon_state = "np92" item_state = "np92" - fire_sound = "88m4" + fire_sound = "vp70" current_mag = /obj/item/ammo_magazine/pistol/np92 - flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED attachable_allowed = list( /obj/item/attachable/suppressor, /obj/item/attachable/reddot, @@ -299,7 +320,7 @@ inherent_traits = list(TRAIT_GUN_SILENCED) fire_sound = "gun_silenced" current_mag = /obj/item/ammo_magazine/pistol/np92/suppressed - flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED attachable_allowed = list( /obj/item/attachable/reddot, /obj/item/attachable/reflex, @@ -315,13 +336,14 @@ /obj/item/weapon/gun/pistol/t73 name = "\improper Type 73 pistol" - desc = "The Type 73 is the once-standard issue sidearm of the UPP. Replaced by the NP92 in UPP use, it remains popular with veteran UPP troops due to familiarity and extra power. Due to an extremely large amount being produced, they tend to end up in the hands of forces attempting to arm themselves on a budget. Users include the Union of Progressive Peoples, Colonial Liberation Front, and just about any mercenary or pirate group out there." + desc = "Once the standard issue sidearm of the UPP it has since been replaced by the smaller NP92. Chambered with 7.62x25mm Tokarev, it remains popular with veterans due to its extra firepower." icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' icon_state = "tt" item_state = "tt" - fire_sound = 'sound/weapons/gun_tt.ogg' + fire_sound = 'sound/weapons/gun_vp78_v2.ogg' +// fire_sound = 'sound/weapons/gun_tt.ogg' current_mag = /obj/item/ammo_magazine/pistol/t73 - flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED attachable_allowed = list( /obj/item/attachable/reddot, /obj/item/attachable/reflex, @@ -351,7 +373,7 @@ icon_state = "ttb" item_state = "ttb" current_mag = /obj/item/ammo_magazine/pistol/t73_impact - flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED accepted_ammo = list( /obj/item/ammo_magazine/pistol/t73, /obj/item/ammo_magazine/pistol/t73_impact, @@ -410,7 +432,6 @@ //------------------------------------------------------- -//PIZZACHIMP PROTECTION /obj/item/weapon/gun/pistol/holdout name = "holdout pistol" @@ -454,20 +475,17 @@ //------------------------------------------------------- //CLF HOLDOUT PISTOL /obj/item/weapon/gun/pistol/clfpistol - name = "D18 Hummingbird Pistol" - desc = "The D18 Hummingbird Pistol was produced in the mid-2170s as a cheap and concealable firearm for CLF Sleeper Cell agents for assassinations and ambushes, and is able to be concealed in shoes and workboots." + name = "Hummingbird pistol" + desc = "Chambering .50 AE catridges this gun is as compact as it could possibly be. Rumored to be designed and produced by the UPP before being distributed into UA space for arming sleeper cells with throwaway weapons capable of penetrating standard M3 pattern armor." icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' icon_state = "m43" item_state = "m43" - flags_gun_features = GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED fire_sound = 'sound/weapons/gun_m43.ogg' current_mag = /obj/item/ammo_magazine/pistol/clfpistol w_class = SIZE_TINY force = 5 - attachable_allowed = list( - /obj/item/attachable/suppressor, - /obj/item/attachable/flashlight, - ) + attachable_allowed = null /obj/item/weapon/gun/pistol/clfpistol/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) @@ -481,163 +499,12 @@ burst_scatter_mult = SCATTER_AMOUNT_TIER_5 scatter_unwielded = SCATTER_AMOUNT_TIER_8 scatter = SCATTER_AMOUNT_TIER_9 - damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_4 + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_10 + recoil = RECOIL_AMOUNT_TIER_2 + recoil_unwielded = RECOIL_AMOUNT_TIER_1 //------------------------------------------------------- -//.45 MARSHALS PISTOL //Inspired by the Browning Hipower -// rebalanced - singlefire, very strong bullets but slow to fire and heavy recoil -// redesigned - now rejected USCM sidearm model, utilized by Colonial Marshals and other stray groups. - -/obj/item/weapon/gun/pistol/highpower - name = "\improper MK-45 'High-Power' Automagnum" - desc = "Originally designed as a replacement for the USCM's M44 combat revolver, it was rejected at the last minute by a committee, citing its need to be cocked after every loaded magazine to be too cumbersone and antiquated. The design has recently been purchased by the Henjin-Garcia company, refitted for .45 ACP, and sold to the Colonial Marshals and other various unscrupulous armed groups." - icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' - icon_state = "highpower" - item_state = "highpower" - fire_sound = 'sound/weapons/gun_kt42.ogg' - current_mag = /obj/item/ammo_magazine/pistol/highpower - force = 15 - attachable_allowed = list( - /obj/item/attachable/suppressor, // Barrel - /obj/item/attachable/bayonet, - /obj/item/attachable/bayonet/upp_replica, - /obj/item/attachable/bayonet/upp, - /obj/item/attachable/extended_barrel, - /obj/item/attachable/heavy_barrel, - /obj/item/attachable/compensator, - /obj/item/attachable/reddot, // Rail - /obj/item/attachable/reflex, - /obj/item/attachable/flashlight, - /obj/item/attachable/magnetic_harness, - /obj/item/attachable/scope, - /obj/item/attachable/scope/mini, - /obj/item/attachable/gyro, // Under - /obj/item/attachable/lasersight, - /obj/item/attachable/burstfire_assembly, - ) - /// This weapon needs to be manually racked every time a new magazine is loaded. I tried and failed to touch gun shitcode so this will do. - var/manually_slided = FALSE - -/obj/item/weapon/gun/pistol/highpower/Initialize(mapload, spawn_empty) - . = ..() - manually_slided = TRUE - -/obj/item/weapon/gun/pistol/highpower/Fire(atom/target, mob/living/user, params, reflex = 0, dual_wield) - if(!manually_slided) - click_empty() - to_chat(user, SPAN_DANGER("\The [src] makes a clicking noise! You need to manually rack the slide after loading in a new magazine!")) - return NONE - return ..() - -/obj/item/weapon/gun/pistol/highpower/unique_action(mob/user) - if(!manually_slided) - user.visible_message(SPAN_NOTICE("[user] racks \the [src]'s slide."), SPAN_NOTICE("You rack \the [src]'s slide, loading the next bullet in.")) - manually_slided = TRUE - cock_gun(user, TRUE) - return - ..() - -/obj/item/weapon/gun/pistol/highpower/cock_gun(mob/user, manual = FALSE) - if(manual) - ..() - else return - -/obj/item/weapon/gun/pistol/highpower/reload(mob/user, obj/item/ammo_magazine/magazine) - //reset every time its reloaded - manually_slided = FALSE - ..() - -/obj/item/weapon/gun/pistol/highpower/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 20,"rail_x" = 6, "rail_y" = 22, "under_x" = 20, "under_y" = 15, "stock_x" = 0, "stock_y" = 0) - -/obj/item/weapon/gun/pistol/highpower/set_gun_config_values() - ..() - set_fire_delay(FIRE_DELAY_TIER_5) - accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 - accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_3 - scatter = SCATTER_AMOUNT_TIER_6 - scatter_unwielded = SCATTER_AMOUNT_TIER_4 - damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_8 - recoil = RECOIL_AMOUNT_TIER_4 - recoil_unwielded = RECOIL_AMOUNT_TIER_4 -//also comes in.... BLAPCK -//the parent has a blueish tint, making it look best for civilian usage (colonies, marshals). this one has a black tint on its metal, making it best for military groups like VAIPO, elite mercs, etc. -// black tinted magazines also included -/obj/item/weapon/gun/pistol/highpower/black - current_mag = /obj/item/ammo_magazine/pistol/highpower/black - icon_state = "highpower_b" - item_state = "highpower_b" - -//unimplemented -/obj/item/weapon/gun/pistol/highpower/tactical - name = "\improper MK-44 SOCOM Automagnum" - desc = "Originally designed as a replacement for the USCM's M44 combat revolver, it was rejected at the last minute by a committee, citing its need to be cocked after every loaded magazine to be too cumbersone and antiquated. The design has recently been purchased by the Henjin-Garcia company and sold to the Colonial Marshals and other various unscrupulous armed groups. This one has a sleek, dark design." - current_mag = /obj/item/ammo_magazine/pistol/highpower/black - icon_state = "highpower_tac" - item_state = "highpower_tac" - starting_attachment_types = list(/obj/item/attachable/suppressor, /obj/item/attachable/lasersight, /obj/item/attachable/reflex) - flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER - -//------------------------------------------------------- -//mod88 based off VP70 - Counterpart to M1911, offers burst and capacity ine exchange of low accuracy and damage. - -/obj/item/weapon/gun/pistol/mod88 - name = "\improper 88 Mod 4 combat pistol" - desc = "Standard issue USCM firearm. Also found in the hands of Weyland-Yutani PMC teams. Fires 9mm armor shredding rounds and is capable of 3-round burst." - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' - icon_state = "_88m4" // to comply with css standards - item_state = "_88m4" - fire_sound = "88m4" - firesound_volume = 20 - reload_sound = 'sound/weapons/gun_88m4_reload.ogg' - unload_sound = 'sound/weapons/gun_88m4_unload.ogg' - current_mag = /obj/item/ammo_magazine/pistol/mod88/normalpoint - force = 8 - flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER - attachable_allowed = list( - /obj/item/attachable/suppressor, - /obj/item/attachable/extended_barrel, - /obj/item/attachable/heavy_barrel, - /obj/item/attachable/compensator, - /obj/item/attachable/flashlight, - /obj/item/attachable/reflex, - /obj/item/attachable/reddot, - /obj/item/attachable/burstfire_assembly, - /obj/item/attachable/lasersight, - /obj/item/attachable/flashlight/grip, - /obj/item/attachable/magnetic_harness, - /obj/item/attachable/stock/mod88, - ) - -/obj/item/weapon/gun/pistol/mod88/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 27, "muzzle_y" = 21,"rail_x" = 8, "rail_y" = 22, "under_x" = 21, "under_y" = 18, "stock_x" = 18, "stock_y" = 15) - - -/obj/item/weapon/gun/pistol/mod88/set_gun_config_values() - ..() - set_fire_delay(FIRE_DELAY_TIER_11) - set_burst_amount(BURST_AMOUNT_TIER_3) - set_burst_delay(FIRE_DELAY_TIER_11) - accuracy_mult = BASE_ACCURACY_MULT - accuracy_mult_unwielded = BASE_ACCURACY_MULT - scatter = SCATTER_AMOUNT_TIER_7 - burst_scatter_mult = SCATTER_AMOUNT_TIER_7 - scatter_unwielded = SCATTER_AMOUNT_TIER_7 - damage_mult = BASE_BULLET_DAMAGE_MULT - - -/obj/item/weapon/gun/pistol/mod88/training - current_mag = /obj/item/ammo_magazine/pistol/mod88/rubber - - -/obj/item/weapon/gun/pistol/mod88/flashlight/handle_starting_attachment() - ..() - var/obj/item/attachable/flashlight/flashlight = new(src) - flashlight.Attach(src) - update_attachable(flashlight.slot) - -//------------------------------------------------------- // ES-4 - Basically a CL-exclusive reskin of the 88 mod 4 that only uses less-lethal ammo. /obj/item/weapon/gun/pistol/es4 @@ -648,8 +515,8 @@ item_state = "es4" fire_sound = 'sound/weapons/gun_es4.ogg' firesound_volume = 20 - reload_sound = 'sound/weapons/gun_88m4_reload.ogg' - unload_sound = 'sound/weapons/gun_88m4_unload.ogg' + reload_sound = 'sound/weapons/gun_vp70_reload.ogg' + unload_sound = 'sound/weapons/gun_vp70_unload.ogg' current_mag = /obj/item/ammo_magazine/pistol/es4 force = 8 muzzle_flash = "muzzle_flash_blue" @@ -684,7 +551,6 @@ icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "vp78" item_state = "vp78" - fire_sound = 'sound/weapons/gun_vp78_v2.ogg' reload_sound = 'sound/weapons/gun_vp78_reload.ogg' unload_sound = 'sound/weapons/gun_vp78_unload.ogg' @@ -761,6 +627,113 @@ It is a modified Beretta 93R, and can fire three-round burst or single fire. Whe recoil_unwielded = RECOIL_AMOUNT_TIER_3 +//------------------------------------------------------- +//Beretta 92FS, the gun McClane carries around in Die Hard. Very similar to the service pistol, all around. + +/obj/item/weapon/gun/pistol/b92fs + name = "\improper Beretta 92FS pistol" + desc = "A popular police firearm in the 20th century, often employed by hardboiled cops while confronting terrorists. A classic of its time, chambered in 9mm." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' + icon_state = "b92fs" + item_state = "b92fs" + current_mag = /obj/item/ammo_magazine/pistol/b92fs + +/obj/item/weapon/gun/pistol/b92fs/Initialize(mapload, spawn_empty) + . = ..() + if(prob(10)) + name = "\improper Beretta 93FR burst pistol" + desc += " This specific pistol is a burst-fire, limited availability, police-issue 93FR type Beretta. Not too accurate, aftermarket modififcations are recommended." + var/obj/item/attachable/burstfire_assembly/BFA = new(src) + BFA.flags_attach_features &= ~ATTACH_REMOVABLE + BFA.Attach(src) + update_attachable(BFA.slot) + add_firemode(GUN_FIREMODE_BURSTFIRE) + +/obj/item/weapon/gun/pistol/b92fs/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 22, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17) + +/obj/item/weapon/gun/pistol/b92fs/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_12) + accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5 + accuracy_mult_unwielded = BASE_ACCURACY_MULT + scatter = SCATTER_AMOUNT_TIER_7 + burst_scatter_mult = SCATTER_AMOUNT_TIER_5 + scatter_unwielded = SCATTER_AMOUNT_TIER_7 + damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_2 + + +//------------------------------------------------------- +//DEAGLE //This one is obvious. + +/obj/item/weapon/gun/pistol/heavy + name = "vintage Desert Eagle" + desc = "A bulky 50 caliber pistol with a serious kick, probably taken from some museum somewhere. This one is engraved, 'Peace through superior firepower.'" + icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' + icon_state = "deagle" + item_state = "deagle" + fire_sound = 'sound/weapons/gun_DE50.ogg' + firesound_volume = 40 + current_mag = /obj/item/ammo_magazine/pistol/heavy + force = 13 + + attachable_allowed = list( + /obj/item/attachable/reddot, + /obj/item/attachable/reflex, + /obj/item/attachable/flashlight, + /obj/item/attachable/extended_barrel, + /obj/item/attachable/heavy_barrel, + /obj/item/attachable/lasersight, + /obj/item/attachable/compensator, + ) + + +/obj/item/weapon/gun/pistol/heavy/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 30, "muzzle_y" = 20,"rail_x" = 17, "rail_y" = 21, "under_x" = 20, "under_y" = 17, "stock_x" = 20, "stock_y" = 17) + + +/obj/item/weapon/gun/pistol/heavy/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_5) + set_burst_amount(BURST_AMOUNT_TIER_2) + set_burst_delay(FIRE_DELAY_TIER_8) + accuracy_mult = BASE_ACCURACY_MULT + accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_5 + 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_1 + recoil = RECOIL_AMOUNT_TIER_5 + recoil_unwielded = RECOIL_AMOUNT_TIER_3 + +/obj/item/weapon/gun/pistol/heavy/co + name = "polished vintage Desert Eagle" + desc = "The handcannon that needs no introduction, the .50-caliber Desert Eagle is expensive, unwieldy, and extremely heavy for a pistol. However, it makes up for it with its powerful shots capable of stopping a bear dead in its tracks. Iconic, glamorous, and above all, extremely deadly." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' + icon_state = "c_deagle" + item_state = "c_deagle" + base_gun_icon = "c_deagle" + current_mag = /obj/item/ammo_magazine/pistol/heavy/super/highimpact + black_market_value = 100 + +/obj/item/weapon/gun/pistol/heavy/co/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_5) + accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 + accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_7 + scatter = SCATTER_AMOUNT_TIER_6 + burst_scatter_mult = SCATTER_AMOUNT_TIER_4 + scatter_unwielded = SCATTER_AMOUNT_TIER_3 + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_8 + recoil = RECOIL_AMOUNT_TIER_3 + recoil_unwielded = RECOIL_AMOUNT_TIER_2 + +/obj/item/weapon/gun/pistol/heavy/co/gold + name = "golden vintage Desert Eagle" + desc = "A Desert Eagle anodized in gold and adorned with rosewood grips. The living definition of ostentatious, it's flashy, unwieldy, tremendously heavy, and kicks like a mule. But as a symbol of power, there's nothing like it." + icon_state = "g_deagle" + item_state = "g_deagle" + base_gun_icon = "g_deagle" //------------------------------------------------------- //The first rule of monkey pistol is we don't talk about monkey pistol. diff --git a/code/modules/projectiles/guns/revolvers.dm b/code/modules/projectiles/guns/revolvers.dm index 71429d2ab5..66a52c8bf9 100644 --- a/code/modules/projectiles/guns/revolvers.dm +++ b/code/modules/projectiles/guns/revolvers.dm @@ -293,14 +293,14 @@ icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m44r" item_state = "m44r" - + fire_sounds = list('sound/weapons/gun_cmb_1.ogg', 'sound/weapons/gun_cmb_2.ogg') cocked_sound = 'sound/weapons/gun_revolver_spun.ogg' unload_sound = 'sound/weapons/handling/pkd_open_chamber.ogg' chamber_close_sound = 'sound/weapons/handling/pkd_close_chamber.ogg' current_mag = /obj/item/ammo_magazine/internal/revolver/m44 force = 8 - flags_gun_features = GUN_INTERNAL_MAG|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER + flags_gun_features = GUN_INTERNAL_MAG|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED attachable_allowed = list( /obj/item/attachable/bayonet, /obj/item/attachable/bayonet/upp, @@ -405,7 +405,7 @@ name = "\improper PKL 'Double' Blaster" desc = "Sold to civilians and private corporations, the Pflager Katsumata Series-L Blaster is a premium double barrel sidearm that can fire two rounds at the same time. Usually found in the hands of combat synths and replicants, this hand cannon is worth more than the combined price of three Emanators. Originally commissioned by the Wallace Corporation, it has since been released onto public market as a luxury firearm." icon_state = "pkd_double" - item_state = "88m4" //placeholder + item_state = "vp70" //placeholder attachable_allowed = list( /obj/item/attachable/flashlight, @@ -699,18 +699,20 @@ //------------------------------------------------------- //MARSHALS REVOLVER //Spearhead exists in Alien cannon. -/obj/item/weapon/gun/revolver/cmb - name = "\improper CMB Spearhead autorevolver" - desc = "An automatic revolver chambered in .357, often loaded with hollowpoint on spaceships to prevent hull damage. Commonly issued to Colonial Marshals." +/obj/item/weapon/gun/revolver/spearhead + name = "\improper Spearhead Armoury revolver" + desc = "A sleek high-quality revolver designed by Spearhead Armoury chambered in .357 commonly issued to Colonial Marshals." icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' icon_state = "spearhead" item_state = "spearhead" fire_sound = null fire_sounds = list('sound/weapons/gun_cmb_1.ogg', 'sound/weapons/gun_cmb_2.ogg') fire_rattle = 'sound/weapons/gun_cmb_rattle.ogg' - cylinder_click = list('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg') - current_mag = /obj/item/ammo_magazine/internal/revolver/cmb/hollowpoint - force = 12 + //cylinder_click = list('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg') + unload_sound = 'sound/weapons/handling/pkd_open_chamber.ogg' + chamber_close_sound = 'sound/weapons/handling/pkd_close_chamber.ogg' + current_mag = /obj/item/ammo_magazine/internal/revolver/spearhead + force = 15 attachable_allowed = list( /obj/item/attachable/suppressor, // Muzzle /obj/item/attachable/extended_barrel, @@ -724,21 +726,21 @@ /obj/item/attachable/lasersight, ) -/obj/item/weapon/gun/revolver/cmb/click_empty(mob/user) +/obj/item/weapon/gun/revolver/spearhead/click_empty(mob/user) if(user) to_chat(user, SPAN_WARNING("*click*")) playsound(user, pick('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg'), 25, 1, 5) //5 tile range else playsound(src, pick('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg'), 25, 1, 5) -/obj/item/weapon/gun/revolver/cmb/Fire(atom/target, mob/living/user, params, reflex = 0, dual_wield) +/obj/item/weapon/gun/revolver/spearhead/Fire(atom/target, mob/living/user, params, reflex = 0, dual_wield) playsound('sound/weapons/gun_cmb_bass.ogg') // badass shooting bass return ..() -/obj/item/weapon/gun/revolver/cmb/set_gun_attachment_offsets() +/obj/item/weapon/gun/revolver/spearhead/set_gun_attachment_offsets() attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 22,"rail_x" = 11, "rail_y" = 25, "under_x" = 20, "under_y" = 18, "stock_x" = 20, "stock_y" = 18) -/obj/item/weapon/gun/revolver/cmb/set_gun_config_values() +/obj/item/weapon/gun/revolver/spearhead/set_gun_config_values() ..() set_fire_delay(FIRE_DELAY_TIER_6) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 @@ -749,5 +751,12 @@ recoil = RECOIL_AMOUNT_TIER_5 recoil_unwielded = RECOIL_AMOUNT_TIER_3 -/obj/item/weapon/gun/revolver/cmb/normalpoint - current_mag = /obj/item/ammo_magazine/internal/revolver/cmb +/obj/item/weapon/gun/revolver/spearhead/hollowpoint + current_mag = /obj/item/ammo_magazine/internal/revolver/spearhead/hollowpoint + +/obj/item/weapon/gun/revolver/spearhead/black + name = "\improper Spearhead Armoury autorevolver" + desc = "A sleek high-quality revolver designed by Spearhead Armoury chambered in .357 commonly issued to Colonial Marshals, though this version has been customized with a black metal finish indicating it is unlikely to be a service weapon." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' + icon_state = "spearhead_black" + item_state = "spearhead_black" diff --git a/code/modules/projectiles/guns/shotguns.dm b/code/modules/projectiles/guns/shotguns.dm index bbdc73daed..bb45d7f34a 100644 --- a/code/modules/projectiles/guns/shotguns.dm +++ b/code/modules/projectiles/guns/shotguns.dm @@ -20,6 +20,7 @@ can cause issues with ammo types getting mixed up during the burst. has_empty_icon = FALSE has_open_icon = FALSE fire_delay_group = list(FIRE_DELAY_GROUP_SHOTGUN) + map_specific_decoration = FALSE var/gauge = "12g" /obj/item/weapon/gun/shotgun/Initialize(mapload, spawn_empty) @@ -153,7 +154,6 @@ can cause issues with ammo types getting mixed up during the burst. current_mag.chamber_position-- return in_chamber - /obj/item/weapon/gun/shotgun/ready_in_chamber() return ready_shotgun_tube() @@ -229,7 +229,7 @@ can cause issues with ammo types getting mixed up during the burst. scatter = SCATTER_AMOUNT_TIER_5 burst_scatter_mult = SCATTER_AMOUNT_TIER_3 scatter_unwielded = SCATTER_AMOUNT_TIER_1 - damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_2 + damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_3 recoil_unwielded = RECOIL_AMOUNT_TIER_1 @@ -237,15 +237,17 @@ can cause issues with ammo types getting mixed up during the burst. //TACTICAL SHOTGUN /obj/item/weapon/gun/shotgun/combat - name = "\improper MK221 tactical shotgun" - desc = "The Weyland-Yutani MK221 Shotgun, a semi-automatic shotgun with a quick fire rate." + name = "\improper M120 tactical shotgun" + desc = "A successor to the Benelli M4 Super 90, the M120 tactical shotgun is in service with the USCM due its easy maneuverability in close quarters, 12 gauge chambering, high firerate and integrated U1 underslung grenade launcher. While not part of the standard doctrine, they are common none the less. The internal tube magazine stores 6 shells and the U1 grenade launcher stores three grenades." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "mk221" item_state = "mk221" fire_sound = "gun_shotgun_tactical" firesound_volume = 20 - current_mag = /obj/item/ammo_magazine/internal/shotgun + + flags_equip_slot = SLOT_BACK + current_mag = /obj/item/ammo_magazine/internal/shotgun/combat attachable_allowed = list( /obj/item/attachable/bayonet, /obj/item/attachable/bayonet/upp, @@ -264,26 +266,12 @@ can cause issues with ammo types getting mixed up during the burst. if(current_mag && current_mag.current_rounds > 0) load_into_chamber() -/obj/item/weapon/gun/shotgun/combat/handle_starting_attachment() - ..() - var/obj/item/attachable/attached_gun/grenade/ugl = new(src) - var/obj/item/attachable/stock/tactical/stock = new(src) - ugl.flags_attach_features &= ~ATTACH_REMOVABLE - ugl.hidden = TRUE - ugl.Attach(src) - update_attachable(ugl.slot) - stock.hidden = FALSE - stock.Attach(src) - update_attachable(stock.slot) - /obj/item/weapon/gun/shotgun/combat/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 21, "under_x" = 14, "under_y" = 16, "stock_x" = 11, "stock_y" = 13.) - - + attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 21, "under_x" = 22, "under_y" = 14, "stock_x" = 11, "stock_y" = 13.) /obj/item/weapon/gun/shotgun/combat/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_5*2) + set_fire_delay(FIRE_DELAY_TIER_9) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_6 @@ -292,7 +280,7 @@ can cause issues with ammo types getting mixed up during the burst. damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_4 recoil_unwielded = RECOIL_AMOUNT_TIER_2 - + starting_attachment_types = list(/obj/item/attachable/attached_gun/grenade/m120, /obj/item/attachable/stock/tactical) /obj/item/weapon/gun/shotgun/combat/get_examine_text(mob/user) . = ..() @@ -300,32 +288,31 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/weapon/gun/shotgun/combat/riot - name = "\improper MK221 riot shotgun" + name = "\improper M120/R tactical shotgun" icon_state = "mp220" item_state = "mp220" - desc = "The Weyland-Yutani MK221 Shotgun, a semi-automatic shotgun with a quick fire rate. Equipped with a steel blue finish to signify use in riot control. It has been modified to only fire 20G beanbags." + desc = "A successor to the Benelli M4 Super 90, the M120 tactical shotgun is in service with the USCM due its easy maneuverability in close quarters, 12 gauge chambering, high firerate and integrated U1 underslung grenade launcher. While not part of the standard doctrine, they are common none the less. This one comes with a blue steel finish to denote its function as a riot shotgun. The internal tube magazine stores 6 shells and the U1 grenade launcher stores three grenades." current_mag = /obj/item/ammo_magazine/internal/shotgun/combat/riot - gauge = "20g" /obj/item/weapon/gun/shotgun/combat/guard - desc = "The Weyland-Yutani MK221 Shotgun, a semi-automatic shotgun with a quick fire rate. Equipped with a red handle to signify its use with Military Police Honor Guards." + desc = "The Weyland-Yutani M120 Shotgun, a semi-automatic shotgun with a quick fire rate. Equipped with a red handle to signify its use with Military Police Honor Guards." icon_state = "mp221" item_state = "mp221" starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/bayonet) - current_mag = /obj/item/ammo_magazine/internal/shotgun/buckshot + current_mag = /obj/item/ammo_magazine/internal/shotgun/combat /obj/item/weapon/gun/shotgun/combat/covert starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel) - current_mag = /obj/item/ammo_magazine/internal/shotgun/buckshot + current_mag = /obj/item/ammo_magazine/internal/shotgun/combat //SOF MK210, an earlier developmental variant of the MK211 tactical used by USCM SOF. /obj/item/weapon/gun/shotgun/combat/marsoc name = "\improper XM38 tactical shotgun" - desc = "Way back in 2168, Wey-Yu began testing the MK221. The USCM picked up an early prototype, and later adopted it with a limited military contract. But the USCM Special Operations Forces wasn't satisfied, and iterated on the early prototypes they had access to; eventually, their internal armorers and tinkerers produced the MK210, designated XM38, a lightweight folding shotgun that snaps to the belt. And to boot, it's fully automatic, made of stamped medal, and keeps the UGL. Truly an engineering marvel." + desc = "An ARMAT design adopted for testing by the Marine Raiders due to it's compact size, high firerate and integrated magnetic harness system. You might think the size would leave its magazine tube wanting, but through engineering magic, the XM38 is capable of holding six shells with its internal tube magazine." icon_state = "mk210" item_state = "mk210" - current_mag = /obj/item/ammo_magazine/internal/shotgun/buckshot + current_mag = /obj/item/ammo_magazine/internal/shotgun/marsoc flags_equip_slot = SLOT_WAIST|SLOT_BACK flags_gun_features = GUN_CAN_POINTBLANK|GUN_INTERNAL_MAG @@ -353,7 +340,7 @@ can cause issues with ammo types getting mixed up during the burst. ..() set_fire_delay(FIRE_DELAY_TIER_6) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 - accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 - HIT_ACCURACY_MULT_TIER_5 + accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 scatter = SCATTER_AMOUNT_TIER_6 burst_scatter_mult = SCATTER_AMOUNT_TIER_6 scatter_unwielded = SCATTER_AMOUNT_TIER_2 @@ -365,18 +352,19 @@ can cause issues with ammo types getting mixed up during the burst. //TYPE 23. SEMI-AUTO UPP SHOTGUN, BASED ON KS-23 /obj/item/weapon/gun/shotgun/type23 - name = "\improper Type 23 riot shotgun" - desc = "As UPP soldiers frequently reported being outmatched by enemy combatants, UPP High Command commissioned a large amount of Type 23 shotguns, originally used for quelling defector colony riots. This slow semi-automatic shotgun chambers 8 gauge, and packs a mean punch." + name = "\improper KS-29/4 combat shotgun" + desc = "A contemporary semi-automatic design based off of the KS-23, a Soviet-era pump-action riot shotgun chambered in 6 gauge shells. Updated for the UPP's Naval Infantry as a boarding gun, it was downgraded to 8 gauge chambering in order to make it more controllable without much loss to overall firepower and allow for easier storage of large quantities of shells on the individual user. Its internal tube magazine can store 4 shells." icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' - icon_state = "type23" - item_state = "type23" - fire_sound = 'sound/weapons/gun_type23.ogg' //not perfect, too small + icon_state = "type23_tactical" + item_state = "type23_tactical" + fire_sound = 'sound/weapons/gun_type23.ogg' current_mag = /obj/item/ammo_magazine/internal/shotgun/type23 attachable_allowed = list( /obj/item/attachable/reddot, // Rail /obj/item/attachable/reddot/upp, /obj/item/attachable/reflex, /obj/item/attachable/reflex/upp, + /obj/item/attachable/scope/upp, /obj/item/attachable/flashlight, /obj/item/attachable/magnetic_harness, /obj/item/attachable/bayonet, // Muzzle @@ -392,9 +380,8 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/attachable/burstfire_assembly, /obj/item/attachable/stock/type23, // Stock ) - flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_INTERNAL_MAG + flags_gun_features = GUN_CAN_POINTBLANK|GUN_INTERNAL_MAG flags_equip_slot = SLOT_BACK - map_specific_decoration = FALSE gauge = "8g" starting_attachment_types = list(/obj/item/attachable/stock/type23) @@ -403,101 +390,26 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/weapon/gun/shotgun/type23/set_gun_config_values() ..() - set_fire_delay(2.5 SECONDS) + set_fire_delay(FIRE_DELAY_TIER_8) accuracy_mult = BASE_ACCURACY_MULT - accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 + accuracy_mult_unwielded = BASE_ACCURACY_MULT scatter = SCATTER_AMOUNT_TIER_4 scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_1 recoil_unwielded = RECOIL_AMOUNT_TIER_1 -/obj/item/weapon/gun/shotgun/type23/breacher - random_spawn_chance = 100 - random_rail_chance = 100 - random_spawn_rail = list( - /obj/item/attachable/magnetic_harness, - /obj/item/attachable/flashlight, - ) - random_muzzle_chance = 100 - random_spawn_muzzle = list( - /obj/item/attachable/bayonet/upp, - ) - random_under_chance = 40 - random_spawn_under = list( - /obj/item/attachable/verticalgrip/upp, - ) - -/obj/item/weapon/gun/shotgun/type23/breacher/slug - current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/slug - -/obj/item/weapon/gun/shotgun/type23/breacher/flechette - current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/flechette - -/obj/item/weapon/gun/shotgun/type23/dual - random_spawn_chance = 100 - random_rail_chance = 100 - random_spawn_rail = list( - /obj/item/attachable/magnetic_harness, - ) - random_muzzle_chance = 80 - random_spawn_muzzle = list( - /obj/item/attachable/bayonet/upp, - /obj/item/attachable/heavy_barrel, - ) - random_under_chance = 100 - random_spawn_under = list( - /obj/item/attachable/flashlight/grip, - /obj/item/attachable/verticalgrip/upp, - ) - -/obj/item/weapon/gun/shotgun/type23/dragon - current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/dragonsbreath - random_spawn_chance = 100 - random_rail_chance = 100 - random_spawn_rail = list( - /obj/item/attachable/magnetic_harness, - ) - random_muzzle_chance = 70 - random_spawn_muzzle = list( - /obj/item/attachable/bayonet/upp, - /obj/item/attachable/heavy_barrel, - ) - random_under_chance = 100 - random_spawn_under = list( - /obj/item/attachable/attached_gun/extinguisher, - ) - -/obj/item/weapon/gun/shotgun/type23/riot_control - name = "\improper Type 23-R riot control shotgun" - desc = "This slow semi-automatic shotgun chambers 8 gauge, and packs a mean punch. The -R version is designed for UPP colony security personnel and handling colony rioting, sporting an integrated vertical grip but lacking in attachment choices." - current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/beanbag - attachable_allowed = list( - /obj/item/attachable/reddot, //Rail - /obj/item/attachable/reddot/upp, - /obj/item/attachable/reflex, - /obj/item/attachable/reflex/upp, - /obj/item/attachable/flashlight, - /obj/item/attachable/magnetic_harness, - /obj/item/attachable/verticalgrip, //Underbarrel - /obj/item/attachable/verticalgrip/upp, - /obj/item/attachable/stock/type23, //Stock - ) - flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_INTERNAL_MAG - flags_equip_slot = SLOT_BACK - map_specific_decoration = FALSE - gauge = "8g" - starting_attachment_types = list(/obj/item/attachable/stock/type23) -/obj/item/weapon/gun/shotgun/type23/riot_control/handle_starting_attachment() - . = ..() - var/obj/item/attachable/verticalgrip/integrated_grip = new(src) - integrated_grip.flags_attach_features &= ~ATTACH_REMOVABLE - integrated_grip.Attach(src) - update_attachable(integrated_grip.slot) +/obj/item/weapon/gun/shotgun/type23/riot + name = "\improper KS-29 riot shotgun" + desc = "A contemporary semi-automatic design based off of the KS-23, a Soviet-era riot shotgun chambered in 6 gauge shells. Like its Naval Infantry sibling, it is downgraded to 8 gauge chambering in order to make it more controllable without much loss to overall firepower and allow for easier storage of large quantities of shells on the individual user. Its internal tube magazine can store 4 shells." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' + icon_state = "type23_wood" + item_state = "type23_wood" + starting_attachment_types = list(/obj/item/attachable/stock/type23/wood) -/obj/item/weapon/gun/shotgun/type23/pve - current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/special +/obj/item/weapon/gun/shotgun/type23/riot/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 13, "rail_y" = 21, "under_x" = 24, "under_y" = 15, "stock_x" = 16, "stock_y" = 15) //------------------------------------------------------- //DOUBLE SHOTTY @@ -653,7 +565,7 @@ can cause issues with ammo types getting mixed up during the burst. accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_7 scatter_unwielded = SCATTER_AMOUNT_TIER_1 - damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_7 + damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_3 recoil_unwielded = RECOIL_AMOUNT_TIER_1 @@ -676,7 +588,7 @@ can cause issues with ammo types getting mixed up during the burst. scatter = SCATTER_AMOUNT_TIER_6 burst_scatter_mult = SCATTER_AMOUNT_TIER_10 scatter_unwielded = SCATTER_AMOUNT_TIER_2 - damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_7 + damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_3 recoil_unwielded = RECOIL_AMOUNT_TIER_1 @@ -720,7 +632,7 @@ can cause issues with ammo types getting mixed up during the burst. set_fire_delay(FIRE_DELAY_TIER_7) accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10 scatter_unwielded = SCATTER_AMOUNT_TIER_7 - damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5 + damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_2 recoil_unwielded = RECOIL_AMOUNT_TIER_3 @@ -793,7 +705,6 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/attachable/lasersight, /obj/item/attachable/stock/mou53, ) - map_specific_decoration = TRUE civilian_usable_override = FALSE /obj/item/weapon/gun/shotgun/double/mou53/set_gun_attachment_offsets() @@ -1077,8 +988,8 @@ can cause issues with ammo types getting mixed up during the burst. //Shotguns in this category will need to be pumped each shot. /obj/item/weapon/gun/shotgun/pump - name = "\improper M37A2 pump shotgun" - desc = "An Armat Battlefield Systems classic design, the M37A2 combines close-range firepower with long term reliability. Requires a pump, which is a Unique Action." + name = "Ithaca 37 pump-action shotgun" + desc = "A customized Ithaca 37 hunting shotgun. Its wooden stock has been replaced with a bakelite pistol grip, and its barrel and magazine tube have been cut down to half their lengths for easier handling in close quarters at the cost of magazine size, only fitting four shells and one chambered." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m37" item_state = "m37" @@ -1112,11 +1023,10 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/attachable/attached_gun/flamer/advanced, /obj/item/attachable/stock/shotgun, ) - map_specific_decoration = TRUE /obj/item/weapon/gun/shotgun/pump/Initialize(mapload, spawn_empty) . = ..() - pump_delay = FIRE_DELAY_TIER_5*2 + pump_delay = FIRE_DELAY_TIER_8 additional_fire_group_delay += pump_delay @@ -1127,7 +1037,7 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/weapon/gun/shotgun/pump/set_gun_config_values() ..() set_burst_amount(BURST_AMOUNT_TIER_1) - set_fire_delay(FIRE_DELAY_TIER_7 * 4) + set_fire_delay(FIRE_DELAY_TIER_7) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_6 @@ -1136,7 +1046,7 @@ can cause issues with ammo types getting mixed up during the burst. damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_4 recoil_unwielded = RECOIL_AMOUNT_TIER_2 - wield_delay = WIELD_DELAY_MIN + //wield_delay = WIELD_DELAY_MIN /obj/item/weapon/gun/shotgun/pump/unique_action(mob/user) pump_shotgun(user) @@ -1200,9 +1110,6 @@ can cause issues with ammo types getting mixed up during the burst. //------------------------------------------------------- -/obj/item/weapon/gun/shotgun/pump/special - current_mag = /obj/item/ammo_magazine/internal/shotgun/special - /obj/item/weapon/gun/shotgun/pump/dual_tube name = "generic dual-tube pump shotgun" desc = "A twenty-round pump action shotgun with dual internal tube magazines. You can switch the active internal magazine by toggling the shotgun tube." @@ -1253,7 +1160,7 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb name = "\improper HG 37-12 pump shotgun" - desc = "A eight-round pump action shotgun with four-round capacity dual internal tube magazines allowing for quick reloading and highly accurate fire. Used exclusively by Colonial Marshals. You can switch the active internal magazine by toggling the shotgun tube." + desc = "An eight-round pump action shotgun with four-round capacity dual internal tube magazines allowing for quick reloading and highly accurate fire. Standard issue shotgun of the Colonial Marshals Bureau. By toggling the shotgun tube, you can swap between the internal magazines." icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' icon_state = "hg3712" item_state = "hg3712" @@ -1271,7 +1178,6 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/attachable/attached_gun/flamer/advanced, ) starting_attachment_types = list(/obj/item/attachable/stock/hg3712) - map_specific_decoration = FALSE civilian_usable_override = TRUE // Come on. It's THE, er, other, survivor shotgun. @@ -1281,7 +1187,7 @@ can cause issues with ammo types getting mixed up during the burst. /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/set_gun_config_values() ..() - set_fire_delay(1.6 SECONDS) + set_fire_delay(FIRE_DELAY_TIER_7) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_6 @@ -1300,8 +1206,4 @@ can cause issues with ammo types getting mixed up during the burst. current_mag = /obj/item/ammo_magazine/internal/shotgun/cmb/m3717 starting_attachment_types = list(/obj/item/attachable/stock/hg3712/m3717) -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717/set_gun_config_values() - ..() - damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_3 - //------------------------------------------------------- diff --git a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm index 40a145e1f7..4189cbfade 100644 --- a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm +++ b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm @@ -337,7 +337,7 @@ icon_state = "m79" item_state = "m79" flags_equip_slot = SLOT_BACK - preload = /obj/item/explosive/grenade/slug/baton + preload = null is_lobbing = TRUE actions_types = list(/datum/action/item_action/toggle_firing_level) diff --git a/code/modules/projectiles/magazines/pistols.dm b/code/modules/projectiles/magazines/pistols.dm index 3ae221fd42..ddcbefcb63 100644 --- a/code/modules/projectiles/magazines/pistols.dm +++ b/code/modules/projectiles/magazines/pistols.dm @@ -60,48 +60,52 @@ //------------------------------------------------------- -//88M4 based off VP70 +//vp70 based off VP70 -/obj/item/ammo_magazine/pistol/mod88 - name = "\improper 88M4 AP magazine (9mm)" - default_ammo = /datum/ammo/bullet/pistol/ap - caliber = "9mm" - icon_state = "88m4" - max_rounds = 19 - gun_type = /obj/item/weapon/gun/pistol/mod88 - ammo_band_icon = "+88m4_band" - ammo_band_icon_empty = "+88m4_band_e" - ammo_band_color = AMMO_BAND_COLOR_AP -/obj/item/ammo_magazine/pistol/mod88/normalpoint // Unused - name = "\improper 88M4 magazine (9mm)" +/obj/item/ammo_magazine/pistol/vp70 + name = "\improper VP70 Magazine (9mm)" default_ammo = /datum/ammo/bullet/pistol caliber = "9mm" + icon_state = "vp70" + max_rounds = 19 + gun_type = /obj/item/weapon/gun/pistol/vp70 + ammo_band_icon = "+vp70_band" + ammo_band_icon_empty = "+vp70_band_e" ammo_band_color = null -/obj/item/ammo_magazine/pistol/mod88/normalpoint/extended // Unused - name = "\improper 88M4 extended magazine (9mm)" - icon_state = "88m4_mag_ex" +/obj/item/ammo_magazine/pistol/vp70/ap + name = "\improper VP70 AP magazine (9mm)" + default_ammo = /datum/ammo/bullet/pistol/ap + caliber = "9mm" + icon_state = "vp70" + max_rounds = 19 + gun_type = /obj/item/weapon/gun/pistol/vp70 + ammo_band_color = AMMO_BAND_COLOR_AP + +/obj/item/ammo_magazine/pistol/vp70/extended // Unused + name = "\improper vp70 extended magazine (9mm)" + icon_state = "vp70_mag_ex" default_ammo = /datum/ammo/bullet/pistol caliber = "9mm" -/obj/item/ammo_magazine/pistol/mod88/toxin - name = "\improper 88M4 toxic magazine (9mm)" +/obj/item/ammo_magazine/pistol/vp70/toxin + name = "\improper vp70 toxic magazine (9mm)" default_ammo = /datum/ammo/bullet/pistol/ap/toxin ammo_band_color = AMMO_BAND_COLOR_TOXIN -/obj/item/ammo_magazine/pistol/mod88/penetrating - name = "\improper 88M4 wall-penetrating magazine (9mm)" +/obj/item/ammo_magazine/pistol/vp70/penetrating + name = "\improper vp70 wall-penetrating magazine (9mm)" default_ammo = /datum/ammo/bullet/pistol/ap/penetrating ammo_band_color = AMMO_BAND_COLOR_PENETRATING -/obj/item/ammo_magazine/pistol/mod88/incendiary - name = "\improper 88M4 incendiary magazine (9mm)" +/obj/item/ammo_magazine/pistol/vp70/incendiary + name = "\improper vp70 incendiary magazine (9mm)" default_ammo = /datum/ammo/bullet/pistol/incendiary ammo_band_color = AMMO_BAND_COLOR_INCENDIARY -/obj/item/ammo_magazine/pistol/mod88/rubber - name = "\improper 88M4 rubber magazine (9mm)" +/obj/item/ammo_magazine/pistol/vp70/rubber + name = "\improper vp70 rubber magazine (9mm)" default_ammo = /datum/ammo/bullet/pistol/rubber ammo_band_color = AMMO_BAND_COLOR_RUBBER @@ -269,36 +273,41 @@ //------------------------------------------------------- //CLF HOLDOUT PISTOL /obj/item/ammo_magazine/pistol/clfpistol - name = "D18 magazine (9mm)" - desc = "A small D18 magazine storing 7 9mm bullets. How is it even this small?" - default_ammo = /datum/ammo/bullet/pistol - caliber = "9mm" + name = "Type 18 magazine (.50)" + default_ammo = /datum/ammo/bullet/pistol/heavy/super + caliber = ".50" icon = 'icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi' icon_state = "m4a3" // placeholder - max_rounds = 7 + max_rounds = 3 w_class = SIZE_TINY gun_type = /obj/item/weapon/gun/pistol/clfpistol - //------------------------------------------------------- //.45 MARSHALS PISTOL //Inspired by the Browning Hipower // rebalanced - singlefire, very strong bullets but slow to fire and heavy recoil // redesigned - now rejected USCM sidearm model, utilized by Colonial Marshals and other stray groups. /obj/item/ammo_magazine/pistol/highpower - name = "\improper MK-45 Automagnum magazine (.45)" - default_ammo = /datum/ammo/bullet/pistol/highpower + name = "\improper HG-45 'Aguila' magazine (.45)" + default_ammo = /datum/ammo/bullet/pistol/heavy caliber = ".45" icon = 'icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi' icon_state = "highpower" - max_rounds = 13 + max_rounds = 11 gun_type = /obj/item/weapon/gun/pistol/highpower //comes in black, for the black variant of the highpower, better for military usage /obj/item/ammo_magazine/pistol/highpower/black + name = "\improper HG 45 'Marina' magazine (.45)" icon_state = "highpower_b" +/obj/item/ammo_magazine/pistol/highpower/automag + name = "\improper HG 44 'Automag' magazine (.44)" + icon_state = "highpower_b" + max_rounds = 13 + default_ammo = /datum/ammo/bullet/revolver + //------------------------------------------------------- /* Auto 9 The gun RoboCop uses. A better version of the VP78, with more rounds per magazine. Probably the best pistol around, but takes no attachments. @@ -310,7 +319,7 @@ It is a modified Beretta 93R, and can fire three-round burst or single fire. Whe default_ammo = /datum/ammo/bullet/pistol/squash caliber = "9mm" icon = 'icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi' - icon_state = "88m4" //PLACEHOLDER + icon_state = "vp70" //PLACEHOLDER max_rounds = 50 gun_type = /obj/item/weapon/gun/pistol/auto9 diff --git a/code/modules/projectiles/magazines/revolvers.dm b/code/modules/projectiles/magazines/revolvers.dm index b81d476cb7..6bd3db1ebd 100644 --- a/code/modules/projectiles/magazines/revolvers.dm +++ b/code/modules/projectiles/magazines/revolvers.dm @@ -79,21 +79,21 @@ max_rounds = 6 gun_type = /obj/item/weapon/gun/revolver/small -/obj/item/ammo_magazine/revolver/cmb - name = "\improper Spearhead hollowpoint speed loader (.357)" - desc = "A speedloader of 6 hollowpoint .357 bullets, issued to Colonial Marshals to both prevent overpenetration and improve performance against unarmored criminals or wildlife. Less effective against hard targets, but what're the chances of encountering those?" - default_ammo = /datum/ammo/bullet/revolver/small/hollowpoint +/obj/item/ammo_magazine/revolver/spearhead + name = "\improper Spearhead speed loader (.357)" + desc = "A speedloader of 6 FMJ .357 bullets, uncommonly issued to Colonial Marshals due to overpenetration risks." + default_ammo = /datum/ammo/bullet/revolver/small caliber = ".357" icon = 'icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi' - icon_state = "cmb_hp" + icon_state = "cmb" max_rounds = 6 - gun_type = /obj/item/weapon/gun/revolver/cmb + gun_type = /obj/item/weapon/gun/revolver/spearhead -/obj/item/ammo_magazine/revolver/cmb/normalpoint //put these in the marshal ert - ok sure :) +/obj/item/ammo_magazine/revolver/spearhead/hollowpoint name = "\improper Spearhead speed loader (.357)" - desc = "A speedloader of 6 FMJ .357 bullets, uncommonly issued to Colonial Marshals due to overpenetration risks." - default_ammo = /datum/ammo/bullet/revolver/small - icon_state = "cmb" + desc = "A speedloader of 6 hollowpoint .357 bullets, commonly issued to Colonial Marshals to both prevent overpenetration and improve performance against unarmored criminals or wildlife." + default_ammo = /datum/ammo/bullet/revolver/small/hollowpoint + icon_state = "cmb_hp" /** * MATEBA REVOLVER @@ -206,15 +206,15 @@ //------------------------------------------------------- //MARSHALS REVOLVER //Spearhead exists in Alien cannon. -/obj/item/ammo_magazine/internal/revolver/cmb +/obj/item/ammo_magazine/internal/revolver/spearhead default_ammo = /datum/ammo/bullet/revolver/small caliber = ".357" - gun_type = /obj/item/weapon/gun/revolver/cmb + gun_type = /obj/item/weapon/gun/revolver/spearhead -/obj/item/ammo_magazine/internal/revolver/cmb/hollowpoint +/obj/item/ammo_magazine/internal/revolver/spearhead/hollowpoint default_ammo = /datum/ammo/bullet/revolver/small/hollowpoint caliber = ".357" - gun_type = /obj/item/weapon/gun/revolver/cmb + gun_type = /obj/item/weapon/gun/revolver/spearhead //------------------------------------------------------- //BIG GAME HUNTER'S REVOLVER diff --git a/code/modules/projectiles/magazines/shotguns.dm b/code/modules/projectiles/magazines/shotguns.dm index 2ea8b33ed7..9fe9f0f440 100644 --- a/code/modules/projectiles/magazines/shotguns.dm +++ b/code/modules/projectiles/magazines/shotguns.dm @@ -24,7 +24,7 @@ GLOBAL_LIST_INIT(shotgun_boxes_12g, list( caliber = "12g" gun_type = /obj/item/weapon/gun/shotgun max_rounds = 25 // Real shotgun boxes are usually 5 or 25 rounds. This works with the new system, five handfuls. - w_class = SIZE_LARGE // Can't throw it in your pocket, friend. + w_class = SIZE_MEDIUM // Can't throw it in your pocket, friend. flags_magazine = AMMUNITION_REFILLABLE|AMMUNITION_HANDFUL_BOX handful_state = "slug_shell" transfer_handful_amount = 5 @@ -78,15 +78,6 @@ GLOBAL_LIST_INIT(shotgun_boxes_12g, list( default_ammo = /datum/ammo/bullet/shotgun/beanbag handful_state = "beanbag_slug" -/obj/item/ammo_magazine/shotgun/beanbag/riot - name = "box of RC beanbag slugs" - desc = "A box filled with beanbag shotgun shells used for non-lethal crowd control. Riot Control use only." - icon_state = "beanbag" - item_state = "beanbag" - default_ammo = /datum/ammo/bullet/shotgun/beanbag - handful_state = "beanbag_slug" - caliber = "20g" - /obj/item/ammo_magazine/shotgun/light/breaching name = "box of breaching shells" desc = "A box filled with breaching shotgun shells. 16 Gauge." @@ -111,12 +102,14 @@ Generic internal magazine. All shotguns will use this or a variation with differ Since all shotguns share ammo types, the gun path is going to be the same for all of them. And it also doesn't really matter. You can only reload them with handfuls. */ + /obj/item/ammo_magazine/internal/shotgun name = "shotgun tube" desc = "An internal magazine. It is not supposed to be seen or removed." default_ammo = /datum/ammo/bullet/shotgun/buckshot caliber = "12g" - max_rounds = 9 + max_rounds = 4 + current_rounds = 0 chamber_closed = 0 /obj/item/ammo_magazine/internal/shotgun/double //For a double barrel. @@ -137,36 +130,26 @@ also doesn't really matter. You can only reload them with handfuls. caliber = "2 bore" default_ammo = /datum/ammo/bullet/shotgun/twobore +/obj/item/ammo_magazine/internal/shotgun/combat + caliber = "12g" + max_rounds = 6 + /obj/item/ammo_magazine/internal/shotgun/combat/riot - caliber = "20g" default_ammo = /datum/ammo/bullet/shotgun/beanbag + current_rounds = 6 + +/obj/item/ammo_magazine/internal/shotgun/marsoc + caliber = "12g" + max_rounds = 7 + current_rounds = 7 /obj/item/ammo_magazine/internal/shotgun/merc max_rounds = 5 -/obj/item/ammo_magazine/internal/shotgun/buckshot - default_ammo = /datum/ammo/bullet/shotgun/buckshot - /obj/item/ammo_magazine/internal/shotgun/type23 - default_ammo = /datum/ammo/bullet/shotgun/heavy/buckshot caliber = "8g" max_rounds = 4 -/obj/item/ammo_magazine/internal/shotgun/type23/slug - default_ammo = /datum/ammo/bullet/shotgun/heavy/slug - -/obj/item/ammo_magazine/internal/shotgun/type23/flechette - default_ammo = /datum/ammo/bullet/shotgun/heavy/flechette - -/obj/item/ammo_magazine/internal/shotgun/type23/dragonsbreath - default_ammo = /datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath - -/obj/item/ammo_magazine/internal/shotgun/type23/beanbag - default_ammo = /datum/ammo/bullet/shotgun/heavy/beanbag - -/obj/item/ammo_magazine/internal/shotgun/type23/special - default_ammo = /datum/ammo/bullet/shotgun/heavy/buckshot/special - /obj/item/ammo_magazine/internal/shotgun/cmb default_ammo = /datum/ammo/bullet/shotgun/buckshot max_rounds = 4 @@ -174,9 +157,6 @@ also doesn't really matter. You can only reload them with handfuls. /obj/item/ammo_magazine/internal/shotgun/cmb/m3717 max_rounds = 5 -/obj/item/ammo_magazine/internal/shotgun/special - default_ammo = /datum/ammo/bullet/shotgun/buckshot/special - //------------------------------------------------------- /* diff --git a/code/modules/reagents/chemistry_reagents/other.dm b/code/modules/reagents/chemistry_reagents/other.dm index 70148f0e65..74b50f0410 100644 --- a/code/modules/reagents/chemistry_reagents/other.dm +++ b/code/modules/reagents/chemistry_reagents/other.dm @@ -109,10 +109,10 @@ description = "A ubiquitous chemical substance that is composed of hydrogen and oxygen. It is a vital component to all known forms of organic life, even though it provides no calories or organic nutrients. It is also an effective solvent and can be used for cleaning." reagent_state = LIQUID color = "#0064C8" // rgb: 0, 100, 200 - custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS) chemclass = CHEM_CLASS_BASIC chemfiresupp = TRUE intensitymod = -3 + properties = list(PROPERTY_HEMOGENIC = 1) /datum/reagent/water/reaction_turf(turf/T, volume) if(!istype(T)) return @@ -132,6 +132,12 @@ if(M.fire_stacks <= 0) M.ExtinguishMob() +/datum/reagent/water/on_mob_life(mob/living/M) + . = ..() + if(ishuman(M) && volume >= 100 && prob(25)) + var/mob/living/carbon/human/human = M + human.vomit() + /datum/reagent/water/holywater name = "Holy Water" id = "holywater" diff --git a/code/modules/vehicles/interior/interactable/vendors.dm b/code/modules/vehicles/interior/interactable/vendors.dm index 90c5dcdaa1..71f4e9e0e2 100644 --- a/code/modules/vehicles/interior/interactable/vendors.dm +++ b/code/modules/vehicles/interior/interactable/vendors.dm @@ -172,7 +172,7 @@ list("M4RA Battle Rifle", floor(scale * 2), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("88 Mod 4 Combat Pistol", floor(scale * 2), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 2), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), list("M44 Combat Revolver", floor(scale * 1.5), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), list("M4A3 Service Pistol", floor(scale * 2.5), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), @@ -202,7 +202,7 @@ list("M39 HV Magazine (10x20mm)", floor(scale * 6), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), list("M44 Speed Loader (.44)", floor(scale * 4), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), list("M4A3 Magazine (9mm)", floor(scale * 10), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), - list("88 Mod 4 Magazine (9mm)", floor(scale * 8), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 8), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("ARMOR-PIERCING AMMUNITION", -1, null, null), list("M4RA AP Magazine (10x24mm)", 0, /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR), diff --git a/html/changelogs/AutoChangeLog-pr-335.yml b/html/changelogs/AutoChangeLog-pr-335.yml new file mode 100644 index 0000000000..c8dfb807dc --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-335.yml @@ -0,0 +1,5 @@ +author: "Merrgear" +delete-after: True +changes: + - qol: "made crit less boring" + - code_imp: "changed the crit code to not knock you unconcious\n:cl:" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-366.yml b/html/changelogs/AutoChangeLog-pr-366.yml new file mode 100644 index 0000000000..798eacb6af --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-366.yml @@ -0,0 +1,4 @@ +author: "Doubleumc" +delete-after: True +changes: + - code_imp: "changed slotting - new players and players that got skipped previous rounds have a higher chance to get a slot" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-394.yml b/html/changelogs/AutoChangeLog-pr-394.yml new file mode 100644 index 0000000000..751c6dccbc --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-394.yml @@ -0,0 +1,4 @@ +author: "Doubleumc" +delete-after: True +changes: + - code_imp: "AI caches valid targets for better performance" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-396.yml b/html/changelogs/AutoChangeLog-pr-396.yml new file mode 100644 index 0000000000..902e69979c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-396.yml @@ -0,0 +1,4 @@ +author: "AndroBetel" +delete-after: True +changes: + - balance: "Vulture no longer has minimum range requirements to hit bugs." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-397.yml b/html/changelogs/AutoChangeLog-pr-397.yml new file mode 100644 index 0000000000..af89299062 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-397.yml @@ -0,0 +1,5 @@ +author: "AndroBetel" +delete-after: True +changes: + - rscadd: "Water now helps you regen blood." + - rscadd: "Vomiting now removes some reagents, helping negate OD effects." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-405.yml b/html/changelogs/AutoChangeLog-pr-405.yml new file mode 100644 index 0000000000..0542615d52 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-405.yml @@ -0,0 +1,4 @@ +author: "AndroBetel" +delete-after: True +changes: + - rscadd: "Adds restricted underwear." \ No newline at end of file diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi index be9fc49e26..063e379133 100644 Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ diff --git a/icons/mob/humans/onmob/belt.dmi b/icons/mob/humans/onmob/belt.dmi index 48886fd007..adf914f6dd 100644 Binary files a/icons/mob/humans/onmob/belt.dmi and b/icons/mob/humans/onmob/belt.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_1.dmi b/icons/mob/humans/onmob/items_lefthand_1.dmi index ee5b61b1e2..31eec7604a 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_1.dmi and b/icons/mob/humans/onmob/items_lefthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_1.dmi b/icons/mob/humans/onmob/items_righthand_1.dmi index cae8e73437..2394301f40 100644 Binary files a/icons/mob/humans/onmob/items_righthand_1.dmi and b/icons/mob/humans/onmob/items_righthand_1.dmi differ diff --git a/icons/mob/humans/onmob/suit_slot.dmi b/icons/mob/humans/onmob/suit_slot.dmi index f53045282a..95e45a1c60 100644 Binary files a/icons/mob/humans/onmob/suit_slot.dmi and b/icons/mob/humans/onmob/suit_slot.dmi differ diff --git a/icons/mob/humans/undershirt.dmi b/icons/mob/humans/undershirt.dmi index 468778851c..928dc332e6 100644 Binary files a/icons/mob/humans/undershirt.dmi and b/icons/mob/humans/undershirt.dmi differ diff --git a/icons/obj/items/clothing/belts.dmi b/icons/obj/items/clothing/belts.dmi index 010222e0c9..f0fe1af4d6 100644 Binary files a/icons/obj/items/clothing/belts.dmi and b/icons/obj/items/clothing/belts.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi index f1d157596d..850cd8a495 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments.dmi b/icons/obj/items/weapons/guns/attachments.dmi index e627f7559a..1b36a842e6 100644 Binary files a/icons/obj/items/weapons/guns/attachments.dmi and b/icons/obj/items/weapons/guns/attachments.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/stock.dmi b/icons/obj/items/weapons/guns/attachments/stock.dmi index 9f28383c0b..c0cd4ffb44 100644 Binary files a/icons/obj/items/weapons/guns/attachments/stock.dmi and b/icons/obj/items/weapons/guns/attachments/stock.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/under.dmi b/icons/obj/items/weapons/guns/attachments/under.dmi index 84bcf6906c..8d42d0ee01 100644 Binary files a/icons/obj/items/weapons/guns/attachments/under.dmi and b/icons/obj/items/weapons/guns/attachments/under.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi index 38e3ad9f82..1ef71a2c9c 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi index dcdc441fcb..9103c2e56d 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi index f6867f7ca8..dd5c76bcbd 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi differ diff --git a/icons/obj/items/weapons/guns/lineart.dmi b/icons/obj/items/weapons/guns/lineart.dmi index f7018aaee8..380169d359 100644 Binary files a/icons/obj/items/weapons/guns/lineart.dmi and b/icons/obj/items/weapons/guns/lineart.dmi differ diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index 2144ce31c1..b7b7836148 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -150,6 +150,11 @@ /obj/structure/window_frame/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) +"act" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) "acx" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, @@ -254,6 +259,9 @@ "aev" = ( /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) +"aew" = ( +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) "aex" = ( /obj/structure/closet/crate/freezer/rations, /turf/open/floor/plating, @@ -372,6 +380,9 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) +"agR" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_research) "ahf" = ( /obj/structure/surface/table, /turf/open/floor, @@ -441,6 +452,14 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) +"aiG" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) "aiL" = ( /obj/structure/surface/table, /obj/item/clothing/suit/storage/CMB, @@ -493,6 +512,15 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) +"ajo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) "ajL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -731,6 +759,12 @@ "amE" = ( /turf/open/floor/plating, /area/bigredv2/caves_north) +"amF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) "amH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -797,13 +831,6 @@ "anp" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/nw/ceiling) -"anr" = ( -/obj/structure/platform/shiva, -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "ant" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -950,11 +977,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/bar) -"aoC" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) "aoD" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/virology) @@ -1123,11 +1145,6 @@ "arD" = ( /turf/open/mars, /area/bigredv2/outside/ne) -"arH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) "arI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -1257,6 +1274,11 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/cargo) +"atx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) "atA" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, @@ -1929,6 +1951,11 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) +"aBs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) "aBv" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/eta/research) @@ -2049,6 +2076,9 @@ /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) +"aDo" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) "aDv" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, @@ -2088,6 +2118,13 @@ "aEu" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside) +"aEy" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) "aEF" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves/lambda/research) @@ -2149,6 +2186,9 @@ }, /turf/open/jungle, /area/bigredv2/outside/admin_building) +"aFl" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "aFv" = ( /turf/open/mars, /area/bigredv2/outside/virology) @@ -2180,10 +2220,37 @@ /obj/structure/machinery/biogenerator, /turf/open/floor, /area/bigredv2/outside/hydroponics) +"aGP" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) "aHn" = ( /obj/effect/decal/cleanable/blood, /turf/open/mars, /area/bigredv2/outside/nw) +"aHx" = ( +/obj/item/tool/pickaxe{ + pixel_y = -7 + }, +/obj/item/tool/pickaxe{ + pixel_y = 4 + }, +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/obj/item/tool/pickaxe, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "aHP" = ( /obj/structure/prop/almayer/computers/mapping_computer{ desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; @@ -2203,6 +2270,9 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) +"aJk" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) "aJA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -2222,15 +2292,38 @@ /obj/effect/landmark/hunter_primary, /turf/open/mars, /area/bigredv2/outside/c) +"aKu" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "aKP" = ( /turf/open/mars, /area/bigredv2/outside/e) +"aKZ" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) "aLc" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, /turf/open/mars, /area/bigredv2/outside/c) +"aLg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aLk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) "aLo" = ( /obj/structure/surface/table, /obj/item/device/radio, @@ -2243,14 +2336,16 @@ "aLI" = ( /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) -"aMe" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) +"aLK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aLN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) "aMl" = ( /obj/structure/machinery/light{ dir = 8 @@ -2299,12 +2394,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/hydroponics) -"aMU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) "aNo" = ( /turf/open/floor, /area/bigredv2/outside/general_store) @@ -2378,6 +2467,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor, /area/bigredv2/outside/general_store) +"aOT" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) "aOW" = ( /obj/structure/surface/table, /obj/structure/pipes/vents/pump{ @@ -2566,12 +2659,13 @@ "aTa" = ( /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"aTF" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"aTA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) +/obj/item/device/flashlight/flare{ + pixel_y = -7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "aTQ" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor, @@ -2587,12 +2681,25 @@ /obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"aUB" = ( -/obj/structure/platform{ - dir = 4 +"aUg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) +/area/bigredv2/outside/w) +"aUN" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"aUR" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1cave_flank" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) "aUV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair, @@ -2635,6 +2742,9 @@ /obj/effect/landmark/crap_item, /turf/open/mars, /area/bigredv2/outside/e) +"aWm" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) "aWz" = ( /obj/structure/showcase{ icon_state = "bus" @@ -2645,6 +2755,9 @@ /obj/effect/landmark/hunter_secondary, /turf/open/mars, /area/bigredv2/outside/e) +"aWS" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/eta) "aXd" = ( /obj/structure/machinery/light{ dir = 1 @@ -2678,13 +2791,17 @@ }, /turf/open/floor, /area/bigredv2/outside/office_complex) +"aYb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) "aYc" = ( /obj/structure/machinery/light, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"aYn" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/lz1_north_cas) "aYs" = ( /obj/structure/machinery/vending/cola, /turf/open/floor, @@ -2737,6 +2854,15 @@ "aYO" = ( /turf/open/floor, /area/bigredv2/outside/admin_building) +"aYQ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) "aZa" = ( /obj/effect/decal/mecha_wreckage/ripley/firefighter, /turf/open/floor/mech_bay_recharge_floor, @@ -2760,6 +2886,10 @@ /obj/structure/closet/secure_closet/quartermaster, /turf/open/floor, /area/bigredv2/outside/cargo) +"aZo" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) "aZr" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -3308,6 +3438,11 @@ /obj/item/tool/lighter/random, /turf/open/floor, /area/bigredv2/outside/cargo) +"bfe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) "bfk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3335,10 +3470,6 @@ }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bfx" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/podhatch/southwest, -/area/bigredv2/caves/lambda/research) "bfz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -3391,16 +3522,9 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, /area/bigredv2/outside/cargo) -"bhg" = ( -/obj/item/paper/bigred/crazy, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) "bhi" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside/c) -"bho" = ( -/turf/open/floor/almayer/w_y2/north, -/area/bigredv2/outside/admin_building) "bhr" = ( /obj/effect/landmark/crap_item, /turf/open/mars, @@ -3424,11 +3548,9 @@ }, /turf/open/mars, /area/bigredv2/outside/c) -"bhV" = ( -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) +"bib" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_cave_cas) "bic" = ( /obj/effect/landmark/yautja_teleport, /turf/open/mars, @@ -3436,9 +3558,6 @@ "bie" = ( /turf/open/floor/plating, /area/bigredv2/outside/space_port_lz2) -"bin" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/n) "biq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -3459,6 +3578,12 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"bix" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "biK" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor, @@ -3473,6 +3598,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) +"biO" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) "biQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -3498,9 +3632,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/bigredv2/outside/space_port_lz2) -"bjq" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/ne) "bjA" = ( /turf/open/mars, /area/bigredv2/outside/s) @@ -3510,6 +3641,11 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/s) +"bjI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) "bjM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -3539,6 +3675,20 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"bkF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/structure/surface/table, +/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ + pixel_y = 12 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bkQ" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) "bkT" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, /turf/open/floor/plating, @@ -3546,6 +3696,13 @@ "bkU" = ( /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) +"bkY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Robotics" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) "bld" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, @@ -3625,6 +3782,15 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) +"blU" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/virology) +"blV" = ( +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "bme" = ( /turf/open/mars, /area/bigredv2/outside/sw) @@ -3634,12 +3800,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) -"bmL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) "bmM" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, @@ -3657,72 +3817,147 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) -"bot" = ( -/obj/structure/closet/radiation, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"boA" = ( +"bmX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpU" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"bnc" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Kitchen"; + name = "Storm Shutters"; + pixel_x = 32 }, -/turf/open/floor/plating, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"bnd" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) -"bqv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"bnl" = ( +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"bnn" = ( +/obj/structure/sink{ + pixel_y = 32 }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"boo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"bow" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"boA" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"bqZ" = ( -/obj/structure/bed/chair/wood/normal{ +"boF" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"brm" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/caves/eta/research) -"brt" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"boU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"boX" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"bpb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"bph" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bpm" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/eta/xenobiology) +"bpH" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/ne) +"bqo" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"bqR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bqT" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"bqU" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"bqY" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"brj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"brr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/tool/surgery/retractor, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) "brD" = ( /turf/open/floor/plating, /area/bigredv2/outside/filtration_cave_cas) "brE" = ( /turf/open/floor/greengrid, /area/bigredv2/outside/filtration_cave_cas) -"bsi" = ( +"brK" = ( +/obj/effect/spawner/gibspawner/human, +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Cargo Bay Storage" + name = "\improper Atmospherics Condenser" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bsf" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) "bss" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; @@ -3732,67 +3967,97 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"bsw" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"bsy" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/s) "bsH" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) -"bsO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"bsV" = ( -/obj/structure/machinery/light{ - dir = 1 +"bsZ" = ( +/obj/item/bedsheet/brown, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"btg" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = 13 }, -/turf/open/floor/carpet5_1/west, -/area/bigredv2/caves/eta/living) -"btp" = ( -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "btw" = ( /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) -"btP" = ( -/turf/open/space/basic, -/area/space) -"btW" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/effect/decal/cleanable/cobweb2, +"btz" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"btG" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"btV" = ( +/obj/structure/surface/table, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"btZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"bup" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bur" = ( -/turf/open/floor/warnwhite, +"buh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"buX" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"buZ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"bvi" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) +"bvl" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"bvo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/engineering) "bvv" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) -"bvy" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/research) "bvF" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -3809,11 +4074,14 @@ "bvY" = ( /turf/open/floor/plating, /area/bigredv2/outside/eta) -"bwk" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) +"bwr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/marshal_office) "bww" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) @@ -3945,12 +4213,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) -"bBE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) "bBN" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -3978,9 +4240,12 @@ /turf/open/mars, /area/bigredv2/caves/eta/research) "bCL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) "bDk" = ( /obj/structure/machinery/light{ dir = 8 @@ -4043,22 +4308,26 @@ "bFw" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/warehouse) -"bFy" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) "bFC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bFK" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bFY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) +"bFV" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_sw) +"bGf" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"bGm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bGn" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "bGp" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -4066,764 +4335,787 @@ /turf/open/floor, /area/bigred/ground/garage_workshop) "bGD" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_virology) -"bHJ" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"bIj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"bIk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"bGH" = ( /obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"bIv" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/white, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"bHn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"bIA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/filtration_plant) -"bIF" = ( -/turf/open/floor/whitepurplecorner/west, -/area/bigredv2/caves/lambda/xenobiology) -"bIH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"bIL" = ( -/obj/structure/platform{ - dir = 8 - }, +"bHM" = ( /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"bIN" = ( -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/structure/cable{ - icon_state = "1-9" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bIV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/area/bigredv2/outside/e) +"bHQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"bIy" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"bJK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"bJN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" - }, -/turf/open/floor/delivery, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "bJS" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"bKc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bKi" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"bKw" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_cave_cas) -"bKL" = ( -/obj/structure/bed/chair{ +"bKu" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/e) +"bKG" = ( +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bKN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/caves/eta/research) -"bLh" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/toughened, +/obj/structure/closet/crate/freezer, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_east) -"bLl" = ( +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"bKP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"bLa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/tool/warning_cone, -/obj/structure/barricade/handrail/wire{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"bLv" = ( -/obj/structure/platform/shiva{ - dir = 1 +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bLc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"bLD" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"bLF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"bMd" = ( -/obj/structure/bed/stool, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"bMl" = ( -/obj/structure/surface/table, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bMq" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/virology) +"bLh" = ( +/obj/effect/landmark/crap_item, /obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bLn" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bMG" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"bMU" = ( -/obj/item/clothing/accessory/storage/holster/armpit, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"bNe" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_lambda) -"bNf" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"bNi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/pinpointer, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bNp" = ( -/obj/structure/bookcase/manuals/research_and_development, +"bLv" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"bLE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bLY" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"bMy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"bMQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bNF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bNG" = ( +/area/bigredv2/outside/library) +"bNa" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cargo Bay Security" +/obj/item/device/multitool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"bNF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bNR" = ( +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/xenobiology) +"bNJ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"bOd" = ( /obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/paper/bigred/crazy, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"bOi" = ( -/obj/structure/closet/secure_closet, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"bOf" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"bOp" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"bOH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bOO" = ( +/obj/structure/machinery/light/small/built{ + dir = 8 }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"bPa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"bPh" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"bPj" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 }, -/turf/open/floor/plating, +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"bOm" = ( -/obj/structure/machinery/washing_machine, +"bPl" = ( +/obj/structure/surface/table, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bPp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"bOs" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/west, +"bPz" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"bOD" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bOE" = ( -/obj/structure/closet/secure_closet/cargotech{ - req_access = null; - req_one_access_txt = "21;101" - }, +"bPA" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) +"bPX" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"bQe" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/cargo) -"bOF" = ( -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"bOG" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"bOK" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bPq" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"bPS" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, +"bQl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 5 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bPU" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"bQe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"bQq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) "bQB" = ( -/obj/item/paper/bigred/witness, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) +/obj/structure/bed, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) "bQF" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/nw) +"bQR" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"bRa" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) "bRd" = ( /obj/structure/cable{ icon_state = "1-4" }, /turf/open/floor/plating, /area/bigredv2/oob) -"bRe" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 +"bRj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"bRp" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bRF" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"bRf" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"bRu" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"bRw" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) "bRO" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) "bRQ" = ( -/turf/open/floor/almayer/w_y1/north, -/area/bigredv2/outside/admin_building) -"bRT" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/morgue{ + dir = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bRZ" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Meeting Room" +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"bRX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"bSb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bSo" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"bSs" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"bSe" = ( /turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) +"bSv" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) "bSC" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_research) +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) "bSO" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) "bSR" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"bTi" = ( -/obj/structure/morgue{ +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/purple/southeast, +/area/bigredv2/caves/lambda/research) +"bSV" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/virology) +"bSZ" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"bTa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bTB" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/whiteblue/southwest, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"bTA" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"bTH" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bTI" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "bTK" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"bTL" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"bTM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"bTP" = ( -/obj/structure/surface/table, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"bUs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"bTQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"bUC" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bUO" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"bVB" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"bVW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bVZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bTR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"bWF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"bWN" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"bWU" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"bTS" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, -/turf/open/mars_cave/mars_cave_13, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"bWZ" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bTV" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/item/trash/tray, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"bXl" = ( -/obj/structure/machinery/light{ +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"bUk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bUq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"bUA" = ( +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"bUN" = ( +/obj/structure/pipes/vents/scrubber/on{ dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"bXq" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light{ +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"bUX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/virology) +"bVH" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"bVU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"bXG" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/scrubber/on{ - dir = 1 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bWp" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bWr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 10; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/lambda/virology) -"bXM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"bXN" = ( -/obj/structure/window, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"bXU" = ( -/obj/structure/machinery/light, -/obj/item/storage/fancy/vials/random, /turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/lambda/xenobiology) -"bXV" = ( -/obj/item/ashtray/bronze{ - pixel_x = -7 +/area/bigredv2/caves/mining) +"bWT" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 14 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"bXe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"bXP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) "bYa" = ( /obj/item/reagent_container/spray/cleaner, /turf/open/floor, /area/bigredv2/outside/cargo) -"bYz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Atmospherics Condenser" +"bYg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bYm" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"bYB" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bYH" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"bZi" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) +"bZm" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) "bZp" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) -"bZv" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bZS" = ( +"bZx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"bZT" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"bZO" = ( +/obj/structure/curtain/red, +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"caa" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"can" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/crap_item, /turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"caM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"caP" = ( +/area/bigredv2/outside/engineering) +"cau" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"caZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"caz" = ( +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"caR" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"cbn" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"cbu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/purple/east, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"caT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -30 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) -"cch" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/asteroidwarning, +"caY" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"cbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"ccy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" +"cbr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/caves/lambda/virology) -"ccR" = ( -/obj/structure/largecrate/guns, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"cdH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"cdK" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/gloves, -/obj/item/reagent_container/spray/cleaner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"cdT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/comfy{ +/area/bigredv2/caves/lambda/research) +"cbK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/radiation, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"ccO" = ( +/obj/structure/platform/kutjevo/rock{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"cdZ" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/space_port_lz2) -"ceb" = ( -/obj/structure/disposalpipe/segment, -/obj/item/frame/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/power/terminal{ +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"ccS" = ( +/obj/structure/surface/table, +/obj/structure/xenoautopsy, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"ccX" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"cdl" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"cdI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"cdS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"cdU" = ( +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/eta/xenobiology) "cec" = ( /obj/structure/bed, /obj/item/toy/plush/farwa, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"cez" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"ceH" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"ceI" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe{ + pixel_y = -7 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Virology Wing" +/obj/item/tool/pickaxe{ + pixel_y = -3 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"ceX" = ( -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"cfc" = ( -/obj/structure/machinery/light{ +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ceP" = ( +/obj/structure/surface/table/holotable/wood, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Administration" + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ceV" = ( +/obj/item/tool/warning_cone{ + pixel_y = 19 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"cfb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"cgz" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"cgA" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ +"cfq" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/dark, +/obj/structure/surface/table/woodentable, +/obj/item/device/camera, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"cgF" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"chr" = ( -/obj/structure/surface/table, -/obj/item/tool/screwdriver, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "yellow"; - phone_id = "Robotics" +"cfI" = ( +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"cgq" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"cgr" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"cgE" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"cio" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"ciB" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/n) +"cjc" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"cje" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"chK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"chL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-in" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/caves/lambda/virology) -"chW" = ( -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"ciL" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light/built, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"cja" = ( -/obj/item/tool/pickaxe, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"cjz" = ( +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"cjF" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"cjZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ckn" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"ckQ" = ( -/obj/structure/surface/table, +"cjR" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"ckZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"ckf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"ckn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"ckv" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"clc" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"ckH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"clg" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"ckN" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"cll" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" +/area/bigredv2/outside/hydroponics) +"ckW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"clh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Bar" }, /turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"clm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"cln" = ( -/obj/structure/machinery/chem_master, -/obj/structure/pipes/standard/simple/hidden/green, +/area/bigredv2/outside/bar) +"clr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"clz" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave/mars_cave_6, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cmb" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +"clA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Eta Lab Maintenance Storage" }, -/turf/open/mars_cave/mars_cave_23, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"clV" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "cmH" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/coffee, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"cmM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/camera/autoname, /turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cmJ" = ( +/obj/structure/machinery/telecomms/server, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/eta/storage) -"cne" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"cmK" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"cnq" = ( -/obj/item/cell/hyper/empty, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"cmO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"cnp" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) "cns" = ( /obj/effect/landmark/nightmare{ insert_tag = "se-checkpoint" @@ -4831,266 +5123,207 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"cob" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"coj" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"col" = ( +"cnt" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"cop" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/bigredv2/outside/c) -"coD" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"coJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/roller, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"coO" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_12, -/area/space) -"cpt" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"cpy" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"cpI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"cpJ" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_north) -"cpL" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/n) -"cpZ" = ( -/turf/open/floor/whitegreen/east, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"cqc" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"cqs" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"cqu" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"cqB" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"cnW" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"cnX" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"cqJ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"cqM" = ( -/obj/structure/machinery/camera/autoname{ +/area/bigredv2/caves/eta/xenobiology) +"cob" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"cri" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"crx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door_control{ + id = "Office Complex 2"; + name = "Storm Shutters"; + pixel_x = -32 }, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/outside/telecomm/warehouse) -"crM" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/dark, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) -"csp" = ( +"col" = ( /obj/effect/landmark/nightmare{ - insert_tag = "viro_open" + insert_tag = "vault_v2" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"csy" = ( +"coA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"csJ" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_east) -"csP" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"coH" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"ctb" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"coI" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ctp" = ( -/obj/structure/machinery/light{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"cpv" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"cpx" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cpW" = ( +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"cpZ" = ( +/obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"ctK" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"cqc" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"cqh" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"cql" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"cqv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"cqR" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"ctO" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/bluegrid/damaged4, -/area/bigredv2/caves/lambda/research) -"cui" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_virology) -"cuv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"crh" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"crm" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"crw" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/research) +"crL" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"csr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"cuA" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"csM" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"ctw" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Medical Clinic Operating Theatre" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"cuI" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) +"ctE" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"ctN" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"cvp" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) "cvr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/xenobiology) -"cvs" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-offices" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cvz" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/c) -"cvN" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/w) -"cwt" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"cwx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) -"cwF" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cwN" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"cwR" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/storage/box/stompers{ - pixel_y = 15 +"cvZ" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"cwl" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/nw) +"cwG" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"cwS" = ( -/obj/structure/machinery/light{ - dir = 1 +"cwQ" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 13 }, -/turf/open/floor/darkpurple2/north, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"cxs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Storage" + }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) -"cwT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"cxC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"cxE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" +"cxX" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"cxQ" = ( -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"cxW" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "filtration_restored" +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 }, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/s) -"cys" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/bigredv2/caves_sw) +"cyc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/lambda/xenobiology) +"cyd" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"cym" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"cyu" = ( +/obj/structure/machinery/vending/security, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) "cyv" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_x = 3; @@ -5099,528 +5332,580 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"cze" = ( +"cyB" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"cyS" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/caves_north) +"czj" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"czs" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"czw" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"czC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cAf" = ( -/obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"cAn" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_north) -"cAp" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"czM" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/freezerfloor, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"czZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cAd" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) -"cAB" = ( -/obj/structure/coatrack{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/item/clothing/shoes/black{ - pixel_y = -7 +"cAz" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2-4"; + name = "heavy duty power cable" }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cAI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) "cAN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"cAO" = ( +"cAS" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"cAY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"cBq" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"cCn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/recharger, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"cCw" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"cBb" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" +"cCO" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"cBh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"cEw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cBm" = ( -/obj/structure/window, -/obj/structure/window{ - dir = 8 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cEE" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz2_south_cas) +"cFb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cFA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"cFG" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"cFH" = ( /obj/structure/surface/table/woodentable, -/obj/item/prop/magazine/book/starshiptroopers, +/obj/item/ashtray/glass, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"cBr" = ( +/area/bigredv2/outside/bar) +"cFP" = ( +/obj/structure/surface/table, +/obj/item/alienjar, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"cFW" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 + pixel_x = -4; + pixel_y = 20 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cBy" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"cGe" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz1_north_cas) +"cGk" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"cBF" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/floor4, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"cBJ" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/oob) -"cBV" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/lz2_south_cas) -"cCt" = ( -/obj/structure/surface/table, +"cGt" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "prison_breakout" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/marshal_office) +"cGv" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"cGF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"cCw" = ( -/obj/structure/surface/table, -/obj/item/trash/snack_bowl, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"cCY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 8 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"cDt" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"cDz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"cDE" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/rad, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"cDF" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"cDU" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"cEo" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cEs" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/library) +"cGM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cGP" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/filtration_plant) -"cEV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/lz2_cave) -"cEX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"cGR" = ( -/obj/item/clothing/suit/storage/labcoat/science, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"cHk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/s) -"cHs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"cHu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"cHx" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, +"cHf" = ( +/obj/structure/bed/stool, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) +/area/bigredv2/caves/lambda/xenobiology) +"cHg" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_north) +"cHi" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"cHl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) "cHy" = ( /obj/item/device/flashlight, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) -"cHJ" = ( -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"cHN" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/n) -"cHO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_se) -"cIc" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_north) -"cIn" = ( -/obj/structure/platform/shiva{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"cIC" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"cIH" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 12 +"cHC" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"cHD" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"cIP" = ( -/obj/item/paper/bigred/smuggling, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cIW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"cHH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"cHT" = ( +/obj/item/tool/pickaxe{ + pixel_x = -18; + pixel_y = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"cJg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"cKa" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"cKb" = ( -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - name = "supply crate" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cKp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/burger, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"cKt" = ( +"cIL" = ( /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 + layer = 3 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"cKZ" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cLd" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"cLe" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_virology) -"cLp" = ( -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"cMk" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"cMB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cIP" = ( +/obj/item/paper/bigred/smuggling, /turf/open/floor, -/area/bigredv2/outside/hydroponics) -"cMH" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/head/hardhat, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"cNs" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"cNw" = ( -/obj/item/ammo_magazine/handful/shotgun/custom_color{ - color = "#6666ff"; - desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; - name = "handful of HE/FRAG shells (12g)"; - pixel_y = 3 +/area/bigredv2/outside/cargo) +"cJd" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cJj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"cNL" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"cOd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/storage/box/m94, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/darkgreen2/east, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"cJk" = ( +/turf/open/floor/darkpurplecorners2/west, /area/bigredv2/caves/lambda/xenobiology) -"cOs" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lambda_cave_cas) -"cOt" = ( -/obj/structure/sign/poster/clf, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"cOw" = ( -/obj/structure/pipes/vents/pump{ +"cJq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"cJs" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"cJT" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"cJZ" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/e) +"cKc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"cKe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"cKf" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"cOx" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/item/storage/box/snappops, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"cOW" = ( -/obj/structure/surface/table, +/obj/item/trash/kepler, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"cKg" = ( +/obj/structure/machinery/washing_machine, /obj/item/clothing/under/brown, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 + }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"cOZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cKm" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"cKA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"cPj" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/bigredv2/outside/chapel) +"cKG" = ( +/obj/item/tool/weedkiller, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"cLs" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"cLD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cPt" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves_north) -"cPD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"cLW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Robotics" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Dormitories EVA Maintenance" }, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"cPF" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"cPL" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"cPQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, +/area/bigredv2/outside/general_offices) +"cLZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/freezerfloor, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) -"cPR" = ( -/obj/structure/machinery/light, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"cPW" = ( +"cMg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" + }, /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"cMo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"cMq" = ( +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) -"cQb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"cQf" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"cQk" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 +"cMr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/purple/east, +/area/bigredv2/caves/lambda/research) +"cMF" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 }, -/obj/structure/surface/table, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"cQn" = ( -/obj/effect/decal/cleanable/dirt, +/obj/item/trash/chips, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"cMO" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"cMV" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) +"cNk" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/virology) +"cNB" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"cOq" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"cOt" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"cOX" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"cPn" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"cPt" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"cPv" = ( +/obj/item/spacecash/c1, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cQq" = ( -/turf/open/floor/darkpurple2/northeast, -/area/bigredv2/caves/lambda/research) -"cQC" = ( -/obj/effect/landmark/xeno_spawn, +"cPw" = ( /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"cQD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/bigredv2/caves/lambda/xenobiology) +"cPx" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_research) +"cPy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/virology) +"cPF" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_virology) +"cPX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/powercell{ + pixel_x = 6; + pixel_y = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cQa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"cQH" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"cQN" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cQf" = ( +/turf/open/space/basic, +/area/space) +"cQj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"cRh" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/filtration_plant) -"cRG" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cRS" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"cRW" = ( -/obj/effect/landmark/good_item, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cQR" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cQW" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"cRa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) -"cSp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"cSG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"cSI" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +"cRi" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/eta) +"cRj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"cRk" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cRy" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cTv" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1north_mining" +/area/bigredv2/caves/lambda/breakroom) +"cRE" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"cRK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"cRY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cSr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"cSy" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cTn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) "cTw" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"cTL" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 + }, /obj/structure/surface/table, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"cUp" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cTQ" = ( +/obj/structure/closet/l3closet/scientist, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"cUE" = ( -/obj/structure/machinery/botany, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"cVa" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"cVd" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"cUf" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"cUs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"cUA" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"cUY" = ( +/obj/structure/closet/jcloset, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"cVc" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"cVd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"cVg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) "cVh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, @@ -5631,470 +5916,432 @@ /area/bigredv2/caves/mining) "cVz" = ( /obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) -"cVE" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) "cVY" = ( /turf/open/mars, /area/bigredv2/outside/space_port_lz2) -"cWn" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 - }, -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +"cWe" = ( +/obj/item/reagent_container/pill/happy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"cWq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cWg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"cWL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig" +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"cWI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cWW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/delivery, +/turf/open/floor/cult, /area/bigredv2/outside/marshal_office) -"cWM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"cWY" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/item/stack/sheet/metal/small_stack, +"cXe" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/flares, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cXv" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/head/beret/sec/warden, +"cXw" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"cXH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cYc" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_sw) +/area/bigredv2/caves/eta/research) +"cXJ" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"cXL" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/ne) +"cXR" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"cXZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"cYf" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) "cYo" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) "cYr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"cYs" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"cZq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"cYQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"dap" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_virology) -"daF" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" +/area/bigredv2/outside/bar) +"cZJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/delivery, -/area/bigredv2/caves_north) -"daI" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"cZK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"dae" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/white, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"daR" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/eta/xenobiology) -"daW" = ( -/obj/effect/landmark/crap_item, +"dan" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1north_mining" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"daw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) "dbd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/head/det_hat, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + icon_state = "door_locked"; + id = "safe_room"; + name = "\improper Lambda Lab Director's Safe Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) "dbi" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/telecomm/lz2_cave) -"dbn" = ( +"dbp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 5 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"dbw" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"dbB" = ( +/obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"dbD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"dbE" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/corpsespawner/miner, -/obj/item/weapon/gun/rifle/m16{ - pixel_x = 10 - }, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"dbU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"dcg" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump, /turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"dcH" = ( +/area/bigredv2/outside/bar) +"dbF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"dcO" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"ddh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"dbI" = ( +/obj/structure/platform/shiva{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"dcf" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dcy" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_lambda) -"ddk" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"ddG" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"dcI" = ( +/obj/item/stack/sheet/glass, /turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ddW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"ddX" = ( -/obj/structure/machinery/light/small{ +/area/bigredv2/outside/engineering) +"dcR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"den" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"dez" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"deD" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"deH" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"dcV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox/vegetable, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"ddR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"ddT" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, /turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"deQ" = ( +/area/bigredv2/caves/mining) +"des" = ( /obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Administration" - }, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"deT" = ( -/obj/item/storage/belt/grenade, -/obj/structure/closet/crate, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/storage/firstaid/o2, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"det" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/item/handset, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"deD" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"deV" = ( -/obj/item/tool/wrench{ - pixel_x = -7; - pixel_y = -14 +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"deO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"deW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"dfd" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"dfr" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"dfv" = ( -/obj/structure/machinery/computer/communications{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"dfI" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Director's Office" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"dfS" = ( /obj/structure/surface/table, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/outside/admin_building) -"dfw" = ( -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"dfR" = ( -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"dfT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"dfU" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"dgr" = ( -/turf/open/floor/purplecorner/west, -/area/bigredv2/caves/lambda/research) -"dgs" = ( -/obj/item/paper/bigred/them, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dgH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"dhr" = ( -/obj/item/tool/warning_cone{ - pixel_x = -13; - pixel_y = 11 +"dfV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"dgv" = ( +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"dgx" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/n) +"dgA" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"dgY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"dhN" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"dhd" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"dhX" = ( -/obj/structure/curtain/medical, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +"dhU" = ( +/obj/item/clothing/under/darkred, +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"dis" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"djd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"dik" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"dil" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"diS" = ( -/obj/structure/closet/crate, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"dje" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"diW" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/white, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"djk" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"djC" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/space_port_lz2) +"djJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"djL" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"diZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull, -/area/bigredv2/caves/lambda/xenobiology) -"djl" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"djn" = ( +"dkJ" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"dkf" = ( -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 +/obj/item/reagent_container/food/snacks/csandwich, +/obj/item/toy/deck/uno{ + pixel_y = 18 }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"dkt" = ( -/mob/living/simple_animal/hostile/retaliate/clown{ - desc = "Always returning. Always watching."; - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"dkS" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/e) +"dlj" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"dlq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"dlT" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/structure/platform_decoration/kutjevo/rock{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"dmi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"dlw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/tofu, -/obj/structure/cable{ - icon_state = "5-9" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dlK" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"dlY" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" - }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "A big air filter."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "fuel_enhancer"; - layer = 5; - name = "Air filter"; - pixel_x = -3; - pixel_y = 1 - }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "cooling_system"; - layer = 4; - name = "\improper Air Condenser"; - pixel_x = -5; - pixel_y = 25 - }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dmn" = ( +/turf/open/floor/warnwhite/north, +/area/bigredv2/outside/virology) "dmr" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz1_north_cas) -"dmx" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) "dmB" = ( /obj/item/tool/pickaxe, /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"dmP" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/filtration_cave_cas) -"dnl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +"dmF" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"dmG" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"dno" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"dnx" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"dnS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper General Store" - }, -/turf/open/floor/delivery, +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"dmK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/restraint/adjustable/cable, +/turf/open/floor, /area/bigredv2/outside/general_store) -"dnY" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - dir = 1 +"dmO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/landing/console2) -"dob" = ( -/obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/white, -/area/bigredv2/outside/medical) -"doc" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"doh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"doi" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/admin_building) +"dnF" = ( +/turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) +"dnJ" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_sw) +"dnS" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"dob" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) "dot" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -6103,175 +6350,259 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"doA" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +"doL" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"dpi" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"dpt" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"dpN" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"dqv" = ( -/obj/structure/bed/roller, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"dqL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"dpd" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_lambda) +"dpe" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"dpl" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"dpG" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"dpK" = ( +/obj/structure/machinery/body_scanconsole, /obj/effect/decal/cleanable/dirt, -/obj/item/device/lightreplacer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"dqP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/whitebluefull/northeast, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) -"dqQ" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_cave_cas) -"dqU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/xenobiology) -"drt" = ( +"dpW" = ( +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"dpY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"drx" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"dqe" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"dqk" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/obj/structure/machinery/power/apc/power/north{ + name = "Interview Room APC" }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"drz" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"dqq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"dqO" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/n) +"drd" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/xenobiology) -"drJ" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"dre" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"drn" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"drs" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"drw" = ( +/obj/structure/closet/crate/miningcar/yellow, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"drV" = ( -/obj/item/explosive/grenade/baton, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"dsj" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"dsx" = ( -/obj/structure/closet/secure_closet, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"dsy" = ( -/obj/structure/platform, -/obj/structure/platform{ +"drH" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"dsD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"dsX" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/n) -"dtc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"dth" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg3/west, +"drK" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"dsa" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"dsg" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"dsk" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"dss" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/mining) -"dtr" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"dtv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Greenhouse Storage" +"dsK" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dtw" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"dty" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"dtU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"dtY" = ( +/obj/structure/closet/secure_closet, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"dub" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dua" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) "duo" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"duA" = ( -/obj/structure/platform{ +"duF" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/marshal_office) +"duP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"dvh" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/space_port_lz2) -"dvn" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/s) -"dwh" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"dva" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"dvd" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"dww" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_virology) -"dwz" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"dwC" = ( +/area/bigredv2/caves/eta/living) +"dve" = ( /obj/structure/machinery/door_control{ - id = "Engineering"; + id = "Operations"; name = "Storm Shutters"; pixel_y = -32 }, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"dvg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/podhatch/northwest, +/area/bigredv2/caves/lambda/research) +"dvn" = ( +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"dvr" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"dvt" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"dvI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/caves/eta/research) +"dvL" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_virology) +"dvM" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"dvT" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"dwa" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dwi" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"dwp" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) "dwO" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -6282,313 +6613,240 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dwS" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"dwX" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"dxg" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 +"dwU" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/telecomm/lz2_cave) +"dxe" = ( +/obj/structure/closet/secure_closet/cargotech{ + req_access = null; + req_one_access_txt = "21;101" }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"dxr" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"dxl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"dxA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bar Backroom" }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"dxy" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/wood, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) -"dxQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"dxZ" = ( -/obj/structure/toilet{ - dir = 8 +"dxR" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/eta) +"dxS" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dxY" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"dya" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) "dyq" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/ne) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) "dyv" = ( /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"dyy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"dyN" = ( +"dyx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"dyD" = ( /obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"dyL" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"dyR" = ( -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"dyW" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/se) -"dyZ" = ( -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"dzs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" +/obj/structure/platform_decoration{ + dir = 6 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"dzG" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dzR" = ( -/obj/item/ore{ - pixel_x = -1 +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"dzc" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/turf/open/mars_cave/mars_dirt_6, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dzE" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"dzG" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio/headset, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"dzO" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/telecomm/n_cave) +"dzU" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_cave_cas) +"dAq" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/hardhat, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"dzT" = ( -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"dzX" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/se) -"dAb" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"dAk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +"dAD" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"dAJ" = ( +/obj/structure/cable{ + icon_state = "1-6" }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-9" }, -/turf/open/mars_cave/mars_cave_17, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dAo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"dAt" = ( -/obj/structure/machinery/light{ - dir = 8 +"dAW" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Engineering"; + name = "\improper Engineering Shutters" }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"dAO" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"dAU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"dBf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"dBd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "dBu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"dBD" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"dBM" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/bcircuit, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) -"dCd" = ( -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) +"dBM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"dBV" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Virology" + }, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"dBX" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/virology) +"dCu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/access_button/airlock_interior{ + master_tag = "viro_controller"; + pixel_y = 28 + }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) "dCA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dCC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"dCI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"dCL" = ( -/obj/structure/closet/l3closet/general, +"dCG" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"dCY" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"dDh" = ( +/obj/structure/bed, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"dCP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Bedroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"dCT" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/mining) -"dDc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Biology Wing" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) +/area/bigredv2/outside/medical) "dDk" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"dDo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"dDq" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"dDA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"dDL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"dDO" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Virology APC" - }, +/obj/effect/spawner/random/tech_supply, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"dEc" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"dEn" = ( -/obj/structure/largecrate/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dEx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Kitchen" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"dEA" = ( -/obj/item/tool/extinguisher/mini, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"dEU" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/ne) -"dEX" = ( -/turf/open/floor/wood, /area/bigredv2/outside/office_complex) -"dFA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +"dEk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Lambda Checkpoint" + name = "\improper Cargo Bay" }, /turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"dFP" = ( +/area/bigredv2/outside/cargo) +"dEl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"dFV" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2-4"; - name = "heavy duty power cable" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"dEy" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_virology) +"dEH" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating/platingdmg3/west, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"dGl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"dGo" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light{ +"dFI" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"dGW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"dGZ" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 +/obj/structure/machinery/door/window, +/obj/structure/window/reinforced, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"dGe" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) +"dGr" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"dHj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) "dHr" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; @@ -6596,85 +6854,93 @@ }, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"dHL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"dHS" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"dIb" = ( -/turf/open/floor, -/area/bigredv2/caves) -"dIh" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"dIR" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 +"dHs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"dIW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"dJc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"dJh" = ( -/obj/item/weapon/shield/riot{ - pixel_x = -6 +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -32 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/machinery/light/built, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"dHz" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"dHC" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"dJj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"dJo" = ( -/obj/structure/bed/chair/office/light{ +/area/bigredv2/caves_east) +"dHD" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/lambda/research) +"dHI" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"dHJ" = ( +/obj/structure/closet/jcloset, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"dHN" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"dJy" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/area/bigredv2/outside/general_offices) +"dHW" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper{ + pixel_x = -7 }, -/turf/open/floor/loadingarea/east, -/area/bigredv2/outside/cargo) -"dJH" = ( +/obj/item/prop/magazine/book/theartofwar{ + pixel_x = 11 + }, +/obj/item/tool/pen{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"dHX" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"dHY" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"dIb" = ( +/turf/open/floor, +/area/bigredv2/caves) +"dIl" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"dJQ" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"dKi" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/tonic, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"dIC" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/bigredv2/outside/c) +"dIL" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dJc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/dorms) "dKo" = ( /obj/item/ore/iron{ pixel_x = 6; @@ -6687,664 +6953,544 @@ /obj/item/ore/iron, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dKz" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"dKG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"dKT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) +"dKt" = ( +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/storage) +"dKB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) "dKV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"dLj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"dLx" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/whiteyellow/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"dLD" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/s) -"dLG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"dLK" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Communications Landing Zone" +"dKZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"dLj" = ( +/obj/structure/disposalpipe/segment, +/obj/item/frame/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"dLU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dLl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Dormitories Bedroom" + name = "\improper Spaceport" }, /turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"dMu" = ( -/obj/structure/janitorialcart, -/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/space_port) +"dLm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"dLv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"dLS" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"dMo" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"dMI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dMR" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"dMJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"dNj" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/eta/xenobiology) +"dNI" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"dNK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 32 +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"dNV" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"dNY" = ( +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"dOZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"dPi" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/FixOVein, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"dPj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"dNh" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"dPx" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/hvac{ + pixel_x = -32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"dNK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"dQb" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"dQc" = ( +/obj/structure/surface/table, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"dQn" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/filtration_cave_cas) +"dQK" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dQO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"dQS" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dQX" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 4; health = 25000 }, -/turf/open/floor/loadingarea/west, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_north) +"dRj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"dRN" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) -"dNT" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/eta) -"dOh" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/n) -"dOo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dRU" = ( +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 }, -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"dSa" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"dSg" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/landmark/good_item, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"dOt" = ( -/obj/structure/machinery/chem_master, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dSh" = ( /turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) -"dOz" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"dOA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"dOM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"dPi" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/weapon/gun/smg/fp9000, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"dPl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/plating/platingdmg3/west, +"dSt" = ( +/obj/structure/lamarr, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"dSY" = ( +/obj/structure/machinery/computer/area_atmos/area, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"dTe" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"dPo" = ( -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -8; - pixel_y = 9 +"dTu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = 4; - pixel_y = 15 +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"dTU" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2"; + pixel_x = -9; + pixel_y = 11 }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1"; + pixel_x = 12; + pixel_y = 16 }, -/turf/open/mars_cave/mars_cave_14, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"dPK" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +"dTW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"dPS" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"dTY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"dUh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"dUl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"dQc" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_sw) -"dQo" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"dQK" = ( +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"dUp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"dQT" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"dRg" = ( -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"dRu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"dRK" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"dVo" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/n) +"dVE" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"dVO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"dXk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"dXy" = ( +/obj/structure/platform/shiva{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"dRR" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/ne) -"dSb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"dSg" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"dXB" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"dXD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dTd" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"dTB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"dTI" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dVa" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"dVb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite/northwest, -/area/bigredv2/outside/virology) -"dVh" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/area/bigredv2/outside/dorms) +"dXV" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/c) +"dYy" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"dYE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"dVC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"dWf" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"dWs" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Office" +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 }, -/turf/open/floor/delivery, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"dYW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/breakroom) -"dWJ" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"dWQ" = ( +"dZe" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"dWX" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"dXb" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"dXd" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"dXq" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;200" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"dXJ" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light_construct{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"dZf" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"dZm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"dZG" = ( +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"dXU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"dZQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"eae" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"dYd" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"dYz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/caves_sw) +"eat" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"dYM" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"eaI" = ( /obj/structure/surface/table, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"dZA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"eaf" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"eas" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"eaz" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/c) -"eaH" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"ebd" = ( -/obj/item/tool/pickaxe{ - pixel_y = 12 +/obj/item/device/healthanalyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"eaP" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"ebn" = ( +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"ece" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"ech" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 + }, +/obj/structure/platform_decoration/shiva, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"ecm" = ( +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"ecG" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/dark, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) -"eby" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"ebX" = ( -/obj/item/weapon/shield/riot, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"ecW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"ecY" = ( -/obj/structure/machinery/light{ - dir = 8 +"ecH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"edq" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/area/bigredv2/outside/nw) +"edA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave/mars_dirt_4, +/obj/structure/closet/crate, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"edU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/eta) -"edY" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/white, +"edR" = ( +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) -"eeb" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"eec" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 +"edS" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"edY" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"edZ" = ( +/obj/structure/machinery/r_n_d/bioprinter, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"eem" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eer" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ +/obj/structure/platform_decoration/shiva, +/obj/item/stack/cable_coil, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"eep" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - pixel_y = -30 + name = "\improper Dormitories Toilet" }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"eeC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/lambda/xenobiology) -"eeO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"eeG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"eeW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/black, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"efj" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"efv" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"efz" = ( /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"eeX" = ( -/obj/structure/surface/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +/area/bigred/ground/garage_workshop) +"efU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/storage/box/beakers, -/turf/open/floor/whitepurplecorner/north, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"ege" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"egj" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"ego" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) -"efn" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_13, +"egS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"efs" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/n) -"efJ" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = -5; - pixel_y = 4 +"ehi" = ( +/obj/structure/machinery/light_construct{ + dir = 4 }, -/obj/item/tool/lighter/zippo, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"efK" = ( -/obj/structure/machinery/computer/general_air_control, /turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"efN" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/goldschlager, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"egk" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"egm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab Storage Bay" +"ehl" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"ehI" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Recreation" }, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"egA" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/w) -"egK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/lambda/xenobiology) -"egS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"egW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"egZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"ehb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/darkyellow2, +/area/bigredv2/outside/dorms) +"eit" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) -"ehz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"ehD" = ( -/obj/structure/machinery/reagentgrinder, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ehE" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_north) -"ehJ" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ehM" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"ehV" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"eiN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) +"eiA" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) "eji" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Break Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"ejm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"ejq" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/n) -"ejv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"ejE" = ( -/obj/structure/machinery/centrifuge, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"ejH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) "ejP" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/se) -"ekf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Medical Clinic Power Station" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"ekI" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"ekW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"ekP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"ekY" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"elb" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"elj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"ekT" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/door/window{ + layer = 4 + }, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"ele" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"elk" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) -"elr" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"ely" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/n) -"elI" = ( +"emX" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/flask, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"elX" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"emk" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"emD" = ( -/obj/structure/girder/reinforced, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/research) -"end" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +/obj/item/device/analyzer/plant_analyzer, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) "ene" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ @@ -7354,9 +7500,38 @@ /obj/item/reagent_container/food/snacks/cookie, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"env" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) +"eng" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"eni" = ( +/obj/structure/window, +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"ent" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -5 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "enD" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/cigarbutt{ @@ -7372,156 +7547,168 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"enG" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_lambda) -"enV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/eta/research) -"eoQ" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"epf" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +"enF" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"enL" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 }, -/turf/open/mars_cave/mars_cave_17, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"epw" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave/mars_dirt_7, +"eoc" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"eoh" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"eou" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"eoA" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"eoS" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/lambda_cave_cas) +"epb" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"epL" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +"epi" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 + layer = 3; + pixel_x = 24 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"eqc" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"epo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"epE" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"epS" = ( /obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"eqG" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"eqH" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) -"eqJ" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"eqh" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"eqs" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/podhatch/northwest, -/area/bigredv2/caves/lambda/research) -"eqY" = ( -/obj/structure/closet/hydrant{ +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; pixel_y = 32 }, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eru" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/bed, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"erW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/bigredv2/outside/medical) +"eqW" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz1_north_cas) +"err" = ( +/obj/structure/coatrack{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/clothing/shoes/black{ + pixel_y = -7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"erY" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ese" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"esk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"est" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"esC" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/lambda/xenobiology) -"esI" = ( +/area/bigredv2/outside/admin_building) +"erv" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"erR" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"erW" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"esn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"esx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"esB" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"esH" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/obj/structure/barricade/handrail/wire{ - dir = 1 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"esT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"eta" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Cell" +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Operations"; + pixel_y = 24 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"etg" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/lambda_cave_cas) -"etj" = ( -/obj/structure/target, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"etm" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"etv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/prop/alien/hugger, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"eti" = ( +/obj/structure/machinery/light/small/built{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"etK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/ne) -"euc" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"etw" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"eun" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "eup" = ( /obj/structure/bed/chair, /obj/item/trash/cigbutt, @@ -7530,380 +7717,325 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"evh" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/window{ - dir = 8 +"euA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"euC" = ( +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"euD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"euW" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/machinery/computer/emails{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"evf" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Canteen" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"evg" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves/eta/research) "evM" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"evO" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"evZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) "ewc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/outside/space_port) -"ewz" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"ewS" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"exm" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/firealarm{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"exn" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 + }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ewH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, +"exE" = ( +/obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"exH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"eyc" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"eyx" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"eyJ" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"ewU" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/e) -"exf" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"exo" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"exO" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 12 - }, -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"exS" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/virology) -"eyx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic CMO's Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"eyS" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"eze" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"ezf" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"ezi" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"eAH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"eAO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"eBj" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +"eza" = ( +/obj/structure/machinery/door_control{ + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 28; + req_access_txt = "106"; + specialfunctions = 4 }, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"eBm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"eCa" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eCl" = ( +/area/bigredv2/caves/lambda/breakroom) +"eze" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"eCC" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"eCK" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = 3; - pixel_y = 12 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"ezf" = ( +/obj/structure/tunnel{ + id = "hole5" }, -/turf/open/mars_cave/mars_cave_15, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"eAa" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_north) +"eBi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"eBI" = ( +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"eBS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"eCc" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/ne) +"eCe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"eCW" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 +"eCf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"eCA" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"eDd" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"eDt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eCC" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"eCK" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"eCL" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "eDy" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"eDz" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eDG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"eDJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"eDL" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"eDP" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/n) "eDS" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"eEi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) +"eDY" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "eEy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) -"eFo" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 +"eEG" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"eFi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"eFq" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"eFl" = ( +/obj/structure/closet/l3closet/scientist, /obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"eFT" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor/dark, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"eFx" = ( -/obj/structure/surface/rack, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = 8 +"eGe" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"eGF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Relaxation Room" }, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = -7 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"eHd" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Bar APC" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eGD" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"eHe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/structure/platform_decoration/shiva, -/obj/item/stack/cable_coil, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"eGW" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"eHy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/union, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eHE" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"eHF" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"eId" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"eHq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"eIr" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"eHC" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/redfull/northwest, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) -"eIF" = ( +"eHW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"eIj" = ( +/obj/effect/decal/hefa_cult_decals/d32, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"eIG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"eIP" = ( -/obj/effect/decal/remains/xeno, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"eJr" = ( -/obj/structure/surface/table/woodentable, +"eIp" = ( +/obj/structure/surface/table, +/obj/item/trash/burger, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"eJt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"eJu" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/whitegreenfull, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/outside/medical) -"eJJ" = ( +"eIC" = ( /turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/lz2_south_cas) -"eJK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves/lambda/research) -"eKc" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/telecomm/n_cave) -"eKw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Offices" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"eKI" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) -"eKL" = ( -/obj/structure/pipes/vents/scrubber/on, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/north, +"eIE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) -"eKO" = ( +"eIS" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"eIU" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"eIV" = ( +/obj/structure/pipes/vents/scrubber/on, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/xenobiology) +"eJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"eJo" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/starshiptroopers, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"eJx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"eJD" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"eJO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"eKk" = ( +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) -"eKP" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"eKR" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"eLg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) +"eKG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"eKX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bar" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"eLm" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) "eLq" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -7913,172 +8045,178 @@ /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigredv2/outside/cargo) -"eLO" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"eLY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/caves/eta/xenobiology) -"eLZ" = ( -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave/mars_dirt_4, +"eLI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) -"eMK" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/beach_ball, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"eNa" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 +"eME" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"eMS" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"eNc" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) "eNx" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-cave-mushroom" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"eNB" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 +"eNC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"eOn" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/obj/structure/machinery/light/small/built{ - dir = 1 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"eOs" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/bonesetter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"eOL" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"eON" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"eOz" = ( -/obj/structure/machinery/photocopier, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"ePa" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ePb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) "ePk" = ( /obj/structure/prop/server_equipment/broken, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) -"ePD" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"eQo" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"eQu" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"eQz" = ( -/obj/structure/machinery/camera/autoname, +"ePo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_cave_cas) +"ePq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"ePB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"ePS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; + icon_state = "NW-out"; pixel_x = -1; - pixel_y = -1 + pixel_y = 1 }, -/turf/open/floor/red/northeast, -/area/bigredv2/outside/marshal_office) -"eQJ" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"eQT" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"eQX" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"eQf" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eQp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/darkyellowcorners2, +/obj/item/trash/cheesie, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"eRA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) -"eRh" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/vest, -/obj/structure/machinery/door/window/eastright, -/obj/structure/window/reinforced, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"eRi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 +"eRJ" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm) +"eRK" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Virology Lab Cell" }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"eRk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d96, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eRv" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"eRD" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"eTy" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "Xenbiology Lab APC" +/area/bigredv2/outside/virology) +"eRY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/static_comms/net_two{ + broken_on_spawn = 1 }, -/obj/structure/machinery/door_control{ - id = "lambda"; - name = "Lambda Lockdown"; - pixel_y = -25 +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"eRZ" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/eta) +"eSz" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"eSC" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3"; + pixel_x = 17 }, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"eTC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"eUh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab" +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"eTi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"eTl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"eUm" = ( -/obj/structure/window/framed/solaris, -/obj/structure/curtain, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"eUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"eTp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" }, /turf/open/floor/delivery, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/marshal_office) +"eTt" = ( +/obj/structure/surface/table, +/obj/item/tool/extinguisher, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"eTx" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"eTF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"eTG" = ( +/obj/structure/surface/table, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/tool/pen, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) "eUs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -8089,46 +8227,92 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"eVm" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +"eUt" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"eVf" = ( +/obj/item/reagent_container/food/snacks/sausage, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"eVI" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"eVL" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/floor/asteroidfloor/north, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"eVJ" = ( +/obj/item/paper/bigred/final, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"eVK" = ( +/obj/item/device/flashlight/on{ + pixel_x = 8 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"eVO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) -"eVX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eWe" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"eVY" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "A big air filter."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "fuel_enhancer"; + layer = 5; + name = "Air filter"; + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "cooling_system"; + layer = 4; + name = "\improper Air Condenser"; + pixel_x = -5; + pixel_y = 25 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) "eWo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"eWp" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"eWq" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"eWt" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"eWB" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "eWK" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) "eWP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, @@ -8139,62 +8323,53 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"eWY" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"eWZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"eXb" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"eXc" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"eXl" = ( -/obj/item/tool/surgery/scalpel/laser/advanced, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"eXw" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eYc" = ( +"eXr" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"eXy" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"eXz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"eYr" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_research) -"eYB" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"eYI" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz2_south_cas) -"eYO" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/surface/table, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"eZh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eXB" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"eXS" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"eXV" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/ne) +"eYG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"eZa" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"eZe" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/chapel) +"eZo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) "eZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -8205,388 +8380,394 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"eZC" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"faa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"fai" = ( +"eZF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"eZZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"faq" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"fae" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"faD" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"faL" = ( -/obj/item/shard, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"fbN" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important items upon."; +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"faA" = ( +/obj/structure/prop/dam/truck/mining{ + desc = "A crawler, imported from the Alpha Centauri colonies."; dir = 1; - name = "trophy board"; - pixel_y = 30 - }, -/obj/item/oldresearch/Chitin{ - anchored = 1; - pixel_y = 27 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"fbP" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"fbV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Virology Quarantine" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"fcl" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"fcB" = ( -/obj/structure/machinery/light{ - dir = 1 + icon_state = "crawler_crate_alt"; + name = "crawler" }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/s) +"faC" = ( +/obj/structure/machinery/light, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"fcE" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"fcI" = ( -/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"fcW" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/eta) -"fcY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"faI" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"fbX" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"fdb" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_lambda) -"fdn" = ( -/obj/structure/disposalpipe/broken{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) +"fcb" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"fck" = ( +/obj/item/ore, /turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"fcv" = ( +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"fcR" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 15 + }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"fdv" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/light{ - dir = 8 +"fcZ" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) "fdy" = ( /turf/open/floor, /area/bigredv2/caves/eta/living) -"fdz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"fdW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"fdF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"fdZ" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/s) -"feG" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"ffj" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/ne) -"ffH" = ( +/area/bigredv2/outside/filtration_plant) +"fej" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreen/north, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cargo Bay Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"feq" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ffJ" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"fex" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Anomaly Chamber" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ffQ" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/space_port_lz2) -"ffY" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"feO" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"ffw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"fgn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ffK" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_sw) +"fgg" = ( +/mob/living/simple_animal/corgi/puppy{ + desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; + name = "\improper Mister Wiggles" + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"fgv" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"fgB" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"fgu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"fgC" = ( -/obj/structure/surface/table, -/obj/item/storage/box/gloves, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"fgI" = ( -/obj/structure/bed, /turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"fgM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"fgN" = ( -/obj/structure/surface/table/holotable/wood, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_color = "blue"; - phone_id = "Administration" +/area/bigredv2/outside/engineering) +"fgI" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/research) +"fhd" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"fhk" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 +/obj/structure/morgue{ + dir = 2 }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"fhg" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/s) -"fhK" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"fhp" = ( /turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"fhO" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"fhS" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1entrance_v2" +/area/bigredv2/outside/marshal_office) +"fhC" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"fie" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_research) -"fii" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"fhX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_research) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"fig" = ( +/obj/structure/machinery/computer/general_air_control{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) "fin" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) -"fio" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"fiu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"fiM" = ( +"fiz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"fiN" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"fjQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"fiS" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"fiV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"fjs" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"fjx" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"fjA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "\improper Operations" }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"fjU" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/caves_lambda) -"fjX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"fjD" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"fjZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"fkb" = ( -/turf/open/floor/delivery, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fjH" = ( +/obj/structure/surface/table, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"fjK" = ( +/turf/open/floor/darkblue2/west, /area/bigredv2/outside/admin_building) +"fjT" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"fjY" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"fkb" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/item/paper_bundle, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "fkd" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves_research) +"fky" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"fkD" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"fkK" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"fks" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"fkS" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/caves/eta/xenobiology) -"fkH" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/delivery, +/turf/open/floor/darkblue2/east, /area/bigredv2/outside/admin_building) -"fkW" = ( -/obj/item/stack/sheet/wood, +"flb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"flp" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"fld" = ( -/obj/structure/machinery/computer/operating, +/area/bigredv2/caves/mining) +"flL" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fmc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"fmh" = ( /turf/open/floor/white, -/area/bigredv2/outside/virology) -"fll" = ( -/obj/structure/window/reinforced{ +/area/bigredv2/caves/lambda/xenobiology) +"fmp" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"fmM" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"flm" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"fmO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"flx" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/s) -"fmm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"fmT" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"fmW" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"fnq" = ( +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"fnf" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"fns" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"fnN" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 +/obj/structure/cable{ + icon_state = "2-9" }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fnt" = ( +/obj/structure/machinery/door_control{ + id = "eta"; + name = "Eta Lockdown"; + pixel_x = 30; + throw_range = 15 }, -/obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"fnU" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"fnV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"fnX" = ( -/obj/structure/largecrate/supply, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"fnQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"fof" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"foj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"fnU" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"fok" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"for" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"fom" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) "fov" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/west, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) -"foC" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/light{ - dir = 8 +"foy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"foG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"foZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"foL" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) "fpa" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -8594,560 +8775,415 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"fpG" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/e) -"fpO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"fqa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"fqd" = ( -/obj/structure/machinery/light, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"fqv" = ( +"fpb" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"fqB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"fpg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/red/east, -/area/bigredv2/outside/marshal_office) -"fqJ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"fqZ" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigred/ground/garage_workshop) -"frh" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Office" +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"fpD" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"fpG" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"fpM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"fpN" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = -32 }, -/turf/open/floor/delivery, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"frL" = ( +"fqe" = ( +/obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"frS" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/ne) -"frY" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 +/obj/structure/sign/safety/hvac{ + pixel_x = -32 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/closet/crate/freezer, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"frb" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"frB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"frH" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"fss" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/se) -"fsy" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"ftf" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"ftm" = ( -/obj/structure/showcase, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"ftA" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkyellow2/northeast, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"ftF" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/structure/machinery/light{ +"frQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"frV" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/item/ammo_magazine/pistol/m1911, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ftW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ftY" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"ftZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"fuh" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"fuC" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) +"fsc" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"fuS" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"fvg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ +/area/bigredv2/caves/eta/xenobiology) +"fsi" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"fsH" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"fts" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"fvm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"fvF" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/crap_item, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"fvM" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"fvX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"fwh" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"fwl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/engineering) +"ftN" = ( +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"fuA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"fwt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"fuB" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"fvK" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"fwH" = ( -/obj/structure/platform{ - dir = 8 - }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"fwI" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"fwJ" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"fwM" = ( +"fvO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"fvQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W-corner" + icon_state = "SW-out" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"fwo" = ( +/obj/item/stack/sheet/wood, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"fws" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) "fwV" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/caves) -"fxl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) -"fxE" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/oob) -"fyb" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Director's Office" +"fxG" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"fxJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"fyi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/hemostat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"fyw" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/space_port_lz2) -"fyA" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"fyJ" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"fyo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/carpet15_15/west, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"fzt" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"fzS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"fzZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"fAb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fyu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"fAw" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) -"fAB" = ( +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"fyD" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/n) +"fyG" = ( +/obj/structure/closet/secure_closet, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"fzk" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_north) +"fzp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_se) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"fzw" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"fzB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bar Backroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"fzE" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"fzF" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"fzL" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"fAy" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) "fBc" = ( /obj/structure/pipes/standard/tank/phoron, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"fBd" = ( -/obj/structure/machinery/door_control{ - id = "Filtration Plant"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"fBz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"fBK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/phone_base/colony_net{ +"fBe" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 + id = "viro"; + name = "Virology Lockdown" }, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"fBQ" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 13 +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"fBY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) "fCb" = ( /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) -"fCm" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"fCt" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"fCv" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"fCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"fCM" = ( +"fCg" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"fCq" = ( /obj/structure/surface/table, -/obj/item/clothing/mask/cigarette, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"fCR" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"fCV" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"fDk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/trash/syndi_cakes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"fDs" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"fDu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Office Complex Storage" - }, -/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) -"fDx" = ( -/obj/structure/bed/chair{ - dir = 1 +"fCW" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_north) +"fDi" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"fDy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/window{ + dir = 8 }, +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreencorner/north, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) -"fDF" = ( -/obj/structure/machinery/computer/general_air_control{ - dir = 8; - pixel_y = 6 - }, +"fDs" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"fDB" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"fDI" = ( -/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/head/beret/sec/warden, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"fDX" = ( -/obj/item/stack/sheet/wood, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"fEd" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/filtration_cave_cas) -"fES" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"fFg" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/area/bigredv2/outside/marshal_office) +"fDR" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"fEb" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"fEy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"fEI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"fFC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"fFk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"fFJ" = ( -/obj/item/grown/sunflower, /turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"fGi" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"fGs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light{ - dir = 8 +/area/bigredv2/outside/medical) +"fFm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/machinery/access_button/airlock_interior{ - master_tag = "viro_controller"; - pixel_y = 28 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"fGp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Filtration"; + pixel_y = 24 }, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"fGt" = ( -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"fGL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/research_and_development, -/turf/open/floor/whitepurple/east, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"fGA" = ( +/turf/open/floor/whitepurplecorner/west, /area/bigredv2/caves/lambda/xenobiology) -"fGZ" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 +"fHc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "fHv" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"fHx" = ( -/obj/structure/machinery/light/built{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/pipes/vents/scrubber/on{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"fId" = ( +/obj/item/trash/raisins, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"fIm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"fIp" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"fHQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/marshal_office) -"fIu" = ( -/obj/item/reagent_container/spray/pepper, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"fJe" = ( -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"fJq" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"fIA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"fIM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"fJo" = ( +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"fJz" = ( -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) +/area/bigredv2/caves/eta/research) "fJG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "\improper Bar Maintenance" + name = "\improper Marshal Head Office" }, /turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"fJW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"fJZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Bedroom" +/area/bigredv2/outside/marshal_office) +"fJN" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"fKO" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"fLi" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" }, /turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"fKF" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"fKX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"fLa" = ( -/obj/item/paper/bigred/walls, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"fLd" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/binoculars, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"fMt" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"fMx" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"fMz" = ( -/obj/structure/stairs/perspective{ +/area/bigredv2/outside/lambda_cave_cas) +"fLO" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 1; - icon_state = "p_stair_full" + health = 25000 }, -/turf/open/floor/dark, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"fMI" = ( +"fLP" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"fMu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"fMx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) "fML" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -9155,24 +9191,33 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "fMQ" = ( -/obj/structure/sink{ - pixel_y = 32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"fNq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"fNp" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"fNw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"fNK" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"fOg" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/purple/west, -/area/bigredv2/caves/lambda/research) -"fND" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"fNT" = ( -/obj/item/trash/raisins, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) +/obj/structure/machinery/light, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"fOG" = ( +/turf/open/floor/darkbluecorners2, +/area/bigredv2/outside/admin_building) "fOM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -9180,953 +9225,856 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"fOR" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"fOS" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"fPh" = ( +"fOO" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"fPu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1 }, -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fOQ" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"fPw" = ( +/obj/structure/surface/table, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"fPx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "fPB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"fPG" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +"fPE" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 }, -/turf/open/mars_cave/mars_dirt_7, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"fPL" = ( -/obj/structure/bed, -/obj/item/prop/alien/hugger, -/obj/item/bedsheet/brown{ - layer = 3.1 +"fPG" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "tcomms_open" }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"fPS" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"fPR" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"fPZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"fQr" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"fPU" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"fQn" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"fQq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 9 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"fQw" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/obj/item/device/flashlight/lamp{ - pixel_y = 15 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"fQL" = ( +/obj/structure/machinery/r_n_d/organic_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"fRn" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Xenbiology Lab APC" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"fRi" = ( -/obj/item/clothing/mask/gas, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"fRp" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"fRP" = ( +/obj/structure/machinery/door_control{ + id = "lambda"; + name = "Lambda Lockdown"; + pixel_y = -25 + }, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"fRr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"fRv" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"fSq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"fSc" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/good_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"fSu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"fSx" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_west_cas) +"fSG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"fSN" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"fTf" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"fTp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"fSd" = ( +"fTr" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fTJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/bigredv2/caves/eta/xenobiology) +"fTS" = ( +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"fSE" = ( -/obj/structure/prop/tower, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) -"fSN" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"fTm" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"fTr" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"fTw" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_sw) -"fTx" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"fTH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Operations" +"fTW" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"fUm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"fTK" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"fUx" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"fUX" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"fVp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/w) -"fUn" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"fUo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"fVi" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +/area/bigredv2/outside/virology) +"fVH" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"fVL" = ( +/obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"fVv" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/area/bigredv2/caves/lambda/xenobiology) +"fVN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"fVB" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/se) -"fVU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/mining) +"fVS" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/e) +"fVV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) "fWf" = ( -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/research) -"fWy" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"fWD" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_cave_16, +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"fWk" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"fWp" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"fXw" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"fXF" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"fXX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"fWU" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"fYk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/tank/air, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"fXd" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Kitchen Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"fYs" = ( /turf/open/floor/white, -/area/bigredv2/outside/medical) -"fYw" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/office_complex) +"fXj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"fYC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fXm" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"fXp" = ( +/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/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bar Backroom" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fXV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Biology Wing" }, /turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"fYr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/sosjerky, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "fYH" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"fYQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"fYZ" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"fZa" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"fZp" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"fZs" = ( +/obj/item/storage/belt/grenade, +/obj/structure/closet/crate, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"fZh" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/nw) -"fZq" = ( +"fZZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"fZv" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"fZw" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"fZz" = ( -/obj/effect/landmark/monkey_spawn, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"gao" = ( +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"gaH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplecorner, -/area/bigredv2/caves/lambda/research) -"fZC" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"gab" = ( -/obj/item/clothing/glasses/welding, -/turf/open/floor/purplecorner/west, -/area/bigredv2/caves/lambda/research) -"gae" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Toilet" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"gbi" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"gam" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"gaA" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"gbO" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"gbT" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"gaB" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"gcq" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/medical) -"gbe" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/lz2_south_cas) -"gbv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"gcu" = ( +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"gcy" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"gbw" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/lightbrown, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"gbJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"gcH" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 + }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"gbX" = ( +"gcI" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"gcO" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"gce" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"gcm" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"gcL" = ( -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"gcS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Lambda Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"gcZ" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) +/area/bigredv2/caves/lambda/xenobiology) "gda" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) -"gdf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/aifixer, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) "gdD" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gdK" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) "gdN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"gdS" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +"gdQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"gdW" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"gdZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"geB" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"gdX" = ( -/turf/open/floor/darkgreen2/west, -/area/bigredv2/caves/eta/xenobiology) -"gdY" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"gen" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_lambda) -"gfc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/mineral/processing_unit, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gfi" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gfo" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"gfF" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_sw) "gfJ" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv, -/turf/open/floor/whitegreencorner, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ggm" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigred/ground/garage_workshop) -"ggs" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ore/diamond, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ggP" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"gfR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"ghb" = ( +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"ggh" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"ggk" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"ggv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"ggy" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"ghN" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"ggE" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"ghb" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ghe" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "gio" = ( /turf/open/mars_cave, /area/bigredv2/outside/filtration_cave_cas) -"git" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"giB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/caves_sw) -"giJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"giX" = ( +"giI" = ( +/obj/structure/machinery/centrifuge, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"gjr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"gja" = ( -/obj/item/ammo_magazine/shotgun/beanbag/riot, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"gjN" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/dark, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"gjw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"gjD" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"gjG" = ( +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) -"gkr" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"gjK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"gjL" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"gkh" = ( +/obj/structure/toilet{ + dir = 1 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"gkq" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"gkL" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz1_telecomm_cas) -"gkO" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"gln" = ( -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"gly" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/general_offices) +"gkT" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 }, -/obj/item/trash/cheesie, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"glA" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"glt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) +"glz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) "glB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lz2_south_cas) -"glZ" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"gmm" = ( -/obj/structure/window/framed/solaris, -/obj/effect/decal/cleanable/molten_item, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"gmM" = ( +"glH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"gmX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"gmZ" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"gmb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"gnm" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"gnx" = ( -/obj/item/stack/sheet/plasteel, -/obj/structure/machinery/camera/autoname{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"gob" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"gof" = ( -/obj/structure/pipes/vents/scrubber/on, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/xenobiology) -"gon" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"goG" = ( -/obj/effect/decal/cleanable/blood/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"gmf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"gmy" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/ne) +"gmP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"goH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"goI" = ( -/obj/structure/machinery/teleport/hub, -/turf/open/floor/podhatch/southeast, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"gmU" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"gnj" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"gnu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gnz" = ( +/turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/research) -"goP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"goZ" = ( -/turf/open/floor/darkredcorners2/north, +"gnB" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"gpc" = ( -/obj/structure/machinery/light{ +"gnC" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"gnE" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"gnK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 + }, +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"gnY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"goa" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"gom" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"goG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/obj/structure/machinery/light/small, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) "gpg" = ( /turf/open/mars_cave, /area/bigredv2/caves_east) -"gpj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) "gpp" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/w) -"gpz" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"gpF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"gpO" = ( +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "gpR" = ( /turf/open/gm/river, /area/bigredv2/outside/c) -"gpY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) +"gqa" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/sw) "gqc" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/whitegreencorner, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"gqp" = ( -/obj/structure/platform/shiva{ - dir = 8 +"gqC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/disk, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"gqO" = ( +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"gqL" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/se) +"gqN" = ( /obj/structure/machinery/light, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"gqQ" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/handset, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "gqS" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, /obj/structure/machinery/light, /turf/open/floor, /area/bigred/ground/garage_workshop) -"gqU" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Control Center APC" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"gry" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whiteyellow/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"grC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"grJ" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"grK" = ( +"grq" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"grQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"gse" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"gsm" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"grG" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"grJ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6; + pixel_y = 10 }, -/obj/item/weapon/baseballbat, -/turf/open/mars_cave/mars_cave_3, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"gst" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/se) -"gsx" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"gsB" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 +"gsr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"gte" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" }, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"gsN" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"gtc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"gtd" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_x = -9; - pixel_y = 13 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"gtD" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 11 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "gtJ" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/n) -"gtL" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"gtW" = ( /obj/structure/bed, -/obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/wood, /area/bigredv2/caves/eta/living) -"gtX" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_se) -"gug" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Relaxation" +"gtK" = ( +/obj/item/tool/warning_cone{ + pixel_x = 16; + pixel_y = 14 }, +/turf/open/mars, +/area/bigredv2/outside/n) +"gtV" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"gup" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/outside/nw/ceiling) +"gtW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Lambda Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"gtX" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_se) +"gun" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"guJ" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/engineering) "guN" = ( -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/storage) -"guT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Technical Lab" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" }, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"guU" = ( +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) -"gvu" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/virology) -"gvN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/obj/structure/cable{ - icon_state = "2-9" +"guV" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"gvc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"gvj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) +"gvm" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/window/reinforced/toughened, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"gvo" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"gvt" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_sw) +"gvu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gvE" = ( +/obj/structure/surface/table, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"gvQ" = ( +/obj/effect/spawner/random/tool, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) +"gvS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/northwest, +/area/bigredv2/outside/virology) "gwa" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"gwq" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gwA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"gwN" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/area/bigredv2/outside/general_offices) +"gwG" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, +/obj/item/tool/extinguisher, /turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"gwU" = ( +/area/bigredv2/outside/bar) +"gwN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"gxa" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/n) +"gxi" = ( /obj/effect/decal/cleanable/blood{ + dir = 8; icon_state = "gib6"; - pixel_y = -8 + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"gwV" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"gwX" = ( -/obj/structure/pipes/vents/pump{ +"gxm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"gxn" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"gxt" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"gxx" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"gxw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"gxP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" }, /turf/open/floor/delivery, -/area/bigredv2/outside/c) -"gxz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"gxW" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs, +/area/bigredv2/outside/general_store) +"gxR" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gxV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"gyj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"gyM" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"gyN" = ( +/area/bigredv2/outside/general_offices) +"gyg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"gyp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"gyP" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"gzc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Break Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"gzi" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 15 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"gzp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"gzr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"gzC" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"gyB" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/space_port_lz2) +"gyI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 8 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gyX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, -/obj/item/tool/pickaxe/drill{ - pixel_y = -8 +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"gAn" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gzY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"gAk" = ( +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"gAq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"gAy" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"gAu" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) +/obj/item/paper/bigred/crazy, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "gAE" = ( /obj/structure/sink{ dir = 1; @@ -10134,1413 +10082,1130 @@ }, /turf/open/floor, /area/bigredv2/outside/hydroponics) -"gAX" = ( +"gAM" = ( +/obj/item/clothing/suit/storage/labcoat/science, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"gAO" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"gBh" = ( -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/lambda/virology) -"gBj" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"gBJ" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"gBY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"gCm" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"gCD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"gCY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"gDq" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/pipes/vents/pump, /turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"gDA" = ( -/obj/structure/sign/nosmoking_1{ +/area/bigredv2/outside/medical) +"gAV" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"gBx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"gBL" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"gBM" = ( +/obj/structure/closet/hydrant{ pixel_y = 32 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"gCf" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/lambda_cave_cas) +"gCz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"gDk" = ( +/obj/item/tool/wrench{ + pixel_x = -7; + pixel_y = -14 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"gDF" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/solar_tracker, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"gDS" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"gDr" = ( /obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/mars_cave/mars_cave_2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"gDT" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"gDZ" = ( -/obj/structure/powerloader_wreckage/ft, +"gDF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"gDX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"gEd" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"gEj" = ( +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"gEp" = ( +/obj/structure/janitorialcart, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"gEv" = ( +/obj/structure/surface/table, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) -"gEc" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/filtration_plant) -"gET" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"gEU" = ( +"gEJ" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = -4 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"gFa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gFc" = ( /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"gEW" = ( +/area/bigredv2/outside/telecomm/n_cave) +"gFi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gFm" = ( +/obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"gEY" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"gFJ" = ( +/area/bigredv2/caves/mining) +"gFu" = ( /obj/structure/surface/table, -/obj/item/toy/sword, -/obj/item/toy/gun, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"gFN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"gFV" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +"gFB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"gGk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"gGm" = ( +/turf/open/floor/bluegrid/damaged3, +/area/bigredv2/caves/lambda/research) +"gFP" = ( +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"gFU" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"gGr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/bedsheetbin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"gGe" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"gGy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"gGT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"gGB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"gHc" = ( /turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) -"gGQ" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) +/area/bigredv2/outside/n) "gHg" = ( -/obj/structure/machinery/light{ +/obj/structure/surface/table, +/obj/item/device/multitool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"gHl" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz2_south_cas) +"gHE" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + desc = "Always returning. Always watching."; + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"gHr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bar Backroom" +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"gHF" = ( +/turf/open/mars_cave/mars_cave_2, +/area/space) +"gHS" = ( +/obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"gHJ" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"gHR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Cargo Bay Quartermaster" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"gIb" = ( +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) +"gIg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"gJs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/nw) +/area/bigredv2/outside/medical) +"gIp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"gID" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"gIR" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) "gJw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/caves_virology) -"gJA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/caves/lambda/xenobiology) +"gJB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "gJG" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"gJL" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"gJR" = ( -/obj/item/tool/weldingtool/experimental, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"gJU" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"gKl" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"gJJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"gKm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"gKI" = ( +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"gJR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"gKO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cargo Offices" }, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/research) -"gLh" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"gKd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"gLo" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gKg" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"gKE" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, +/obj/structure/barricade/wooden, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"gLu" = ( +"gKS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"gKU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 + icon_state = "U-S" }, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"gLG" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"gLO" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/bigredv2/caves/lambda/research) +"gKV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"gLe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"gLT" = ( -/obj/structure/bed/chair/wood/normal, +"gLl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"gMf" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "An exchange valve"; - dir = 8; - icon = 'icons/obj/pipes/filter.dmi'; - icon_state = "map"; - name = "Automated Valve" +/area/bigredv2/outside/dorms) +"gMu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"gMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"gMI" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"gMO" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"gNq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"gNr" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"gND" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) +"gMA" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"gNk" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) "gNH" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) -"gNN" = ( +"gNJ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"gNQ" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"gNR" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" +/obj/item/trash/snack_bowl, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"gOi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Telecommunications" }, -/obj/structure/cryofeed/right{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "\improper coolant feed" +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm) +"gOJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"gNX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/red/north, -/area/bigredv2/outside/lambda_cave_cas) -"gOl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"gOw" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -15 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/highpower, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"gOz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Head Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"gOB" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/c) -"gOC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, +"gPe" = ( +/obj/item/device/taperecorder, /turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"gPs" = ( +/obj/structure/surface/table, +/obj/item/storage/box/gloves, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) -"gOI" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/lambda_cave_cas) -"gOQ" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"gPk" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"gPt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +"gPD" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"gPQ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"gPy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"gPZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"gQf" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"gQl" = ( +/area/bigredv2/caves/eta/storage) +"gQs" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"gQI" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"gRc" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"gRu" = ( -/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" +/turf/open/floor/bluegrid/damaged4, +/area/bigredv2/caves/lambda/research) +"gQu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-9" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"gQK" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"gQP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" }, -/obj/structure/cable{ - icon_state = "4-5" +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"gQR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gRD" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"gRh" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"gRA" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"gSz" = ( +/obj/structure/barricade/wooden, /turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"gRN" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"gRZ" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/eta) -"gSp" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/space_port_lz2) +/area/bigredv2/outside/c) "gSB" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8 }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"gSS" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Virology Lab Cell" +"gSE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"gTd" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lambda_cave_cas) -"gTe" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/w) -"gTo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) -"gTJ" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"gUg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"gSF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"gUi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"gUj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"gSX" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"gSY" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"gTp" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"gTt" = ( +/obj/structure/closet/crate, /turf/open/floor/wood, -/area/bigredv2/outside/bar) -"gUB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"gUP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"gUR" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"gUX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wetleather, -/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/dorms) +"gTJ" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"gVe" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"gVA" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_research) -"gVU" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"gWo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"gWM" = ( +"gTY" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"gUq" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"gUZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"gWS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"gXe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/structure/surface/table, -/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ - pixel_y = 12 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"gXr" = ( -/obj/item/ore, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"gXv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"gXK" = ( -/obj/structure/filingcabinet/medical{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/medical{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"gYH" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"gZs" = ( -/obj/effect/decal/cleanable/blood/oil, +"gVP" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"gZx" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/area/bigredv2/outside/telecomm) +"gVS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"gZz" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"gWg" = ( +/obj/structure/fence, /turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"haa" = ( +/area/bigredv2/outside/n) +"gWu" = ( /obj/structure/surface/table, -/obj/item/storage/briefcase, -/obj/structure/machinery/light{ +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"gWQ" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/eta/xenobiology) +"gWT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"hag" = ( -/turf/open/floor/rampbottom, -/area/bigredv2/outside/chapel) -"hay" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"haC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"haK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/vomit, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"haQ" = ( -/obj/structure/machinery/shower{ - dir = 8 +"gWY" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"gWZ" = ( +/obj/item/cell/hyper/empty, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"gXr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"gXD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lambda Lab Maintenance Storage" }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"hbe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/dark, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"gYe" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"hbj" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_east) -"hbF" = ( -/obj/structure/bed/chair/wood/normal{ +"gYu" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"gYN" = ( +/obj/structure/toilet{ dir = 8 }, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"hbH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 8 +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/paper_bin/wy{ - pixel_x = -4; - pixel_y = 8 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"gYQ" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"gZh" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/bigredv2/outside/library) -"hcn" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"gZi" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/ne) +"gZk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Technical Lab" }, /turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"hdp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/telecomm/n_cave) -"hdw" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"hdE" = ( +/area/bigredv2/caves/lambda/research) +"gZl" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"gZE" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"hdI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/w) -"hdP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"hdQ" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"her" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"hev" = ( -/turf/open/floor/freezerfloor, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"hey" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 +"gZM" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"heW" = ( -/obj/structure/bed/stool, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"hfe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"hfh" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hag" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E-corner" }, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"hfo" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"hfH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ - dir = 1; - name = "\improper Dormitories Restroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"hfR" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +"hah" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"hga" = ( +"haK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"hbx" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cola, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"hbC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"hgs" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_6, +/obj/item/device/camera/oldcamera, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hgv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/sosjerky, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hhn" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"hbH" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/virology) +"hbY" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"hcf" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"hcg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/barricade/wooden, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"hcP" = ( +/obj/structure/surface/table, /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"hhu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = 7; - pixel_y = 14 +/area/bigredv2/outside/space_port_lz2) +"hcT" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/window{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-10" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hhw" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hdg" = ( +/obj/structure/tunnel{ + id = "hole4" }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lambda_cave_cas) -"hhx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/river, -/area/bigredv2/outside/c) -"hhB" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_east) -"hhU" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/caves_north) -"hhV" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/e) -"hiP" = ( -/obj/structure/sign/safety/one{ - pixel_x = 16 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"hjz" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"hjC" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"hjH" = ( -/obj/structure/foamed_metal, -/obj/structure/machinery/light, -/turf/open/floor/darkpurple2, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) -"hjM" = ( -/obj/structure/machinery/computer/atmos_alert{ +"hdq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"hdG" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"hjN" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"hkk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz1_north_cas) -"hkq" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"hkr" = ( /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"hkt" = ( -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"hkv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"hkH" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"hlb" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/area/space) +"hdI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"heg" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"hes" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"heD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"hld" = ( -/obj/structure/bed/chair{ +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"heO" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"heQ" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"heT" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"hll" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +"hfd" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"hfe" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"hlA" = ( -/obj/structure/lamarr, -/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/research) -"hlC" = ( -/obj/structure/machinery/light{ - dir = 4 +"hff" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz1_north_cas) +"hfl" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Virology Lab Cell" }, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"hlF" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"hlG" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"hlP" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"hfz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"hlR" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "door_locked"; - id = "safe_room"; - name = "\improper Lambda Lab Director's Safe Room" + name = "\improper Bar Maintenance" }, /turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"hfA" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) -"hlT" = ( +"hfX" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"hmt" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"hmA" = ( -/obj/item/reagent_container/food/snacks/sausage, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) -"hmF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Armory" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/delivery, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"hmJ" = ( -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"hnG" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"hga" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hnK" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office Complex Storage" }, /turf/open/floor/delivery, -/area/bigredv2/caves_north) -"hnM" = ( -/obj/structure/tunnel{ - id = "hole3" +/area/bigredv2/outside/office_complex) +"hgk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Eta Lab Restroom" }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"hgP" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/n) +"hhg" = ( +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"hhi" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"hoH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"hhE" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"hhT" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 8 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hoL" = ( -/obj/structure/machinery/photocopier{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"hpn" = ( -/obj/item/alien_embryo, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"hpG" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_sw) -"hpS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, +/area/bigredv2/outside/general_offices) +"hhZ" = ( /turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"hpV" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"hqO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars, -/area/bigredv2/caves_north) -"hqR" = ( +/area/bigredv2/outside/marshal_office) +"hie" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg2/west, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"hig" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/warnwhite/southeast, +/area/bigredv2/caves/lambda/virology) +"hiO" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"hiP" = ( +/obj/structure/sign/safety/one{ + pixel_x = 16 + }, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"hsa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" +"hiT" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"hsm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"hjb" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = 32 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hjf" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"hsL" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"hsU" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"htq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/ammo_magazine/pistol/hp{ - pixel_x = 8; - pixel_y = -7 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"hjU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/ammo_magazine/pistol{ - pixel_y = -4 +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "9-10" +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"htK" = ( -/obj/structure/bed/chair{ +"hjX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"hkg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "Office Complex 2"; - name = "Storm Shutters"; - pixel_x = -32 +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"hkv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"hkw" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"huT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hkS" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"huU" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"hvh" = ( -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"hvj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"hle" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) -"hvQ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"hlh" = ( +/obj/structure/machinery/shower{ dir = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"hll" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"hlr" = ( +/obj/structure/machinery/computer/med_data{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hlA" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"hlW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hmj" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hmw" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hmG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"hmJ" = ( +/obj/item/weapon/gun/pistol/holdout, /turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"hmK" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/xenobiology) -"hvV" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +"hmT" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"hno" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"hnr" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) +"hnz" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/structure/cable{ + icon_state = "11-6" + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hwq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"hnD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/dark, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"hnP" = ( +/turf/open/floor/carpet5_1/west, /area/bigredv2/outside/admin_building) -"hwD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"hxa" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"hxv" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +"hnX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"hxx" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"hxI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"hnY" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"hob" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"hxW" = ( +/area/bigredv2/outside/c) +"hoN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/telecomm/n_cave) -"hyd" = ( -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/storage) -"hyk" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/virology) -"hyl" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hoU" = ( +/obj/structure/machinery/optable, +/turf/open/floor/whiteblue/east, +/area/bigredv2/outside/medical) +"hpn" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"hpv" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"hyz" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1cave_flank" +/obj/structure/platform{ + dir = 8 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"hyL" = ( -/obj/structure/machinery/compressor{ - dir = 1 +/obj/structure/platform_decoration{ + dir = 5 }, -/turf/open/floor/darkyellow2/west, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"hyU" = ( -/obj/item/weapon/gun/smg/m39, -/obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"hza" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "tcomms_open" +"hpE" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"hpF" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_east) +"hqf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"hzs" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"hzy" = ( +/area/bigredv2/outside/admin_building) +"hqi" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"hzX" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"hqu" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/space_port_lz2) +"hqA" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"hqF" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/item/organ/heart/prosthetic, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"hAj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_research) -"hBa" = ( -/obj/structure/machinery/power/apc/no_power/south, +"hqG" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"hBn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"hBz" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/eta/xenobiology) -"hBB" = ( -/obj/structure/safe, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"hBD" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"hCc" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"hCe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"hqO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars, +/area/bigredv2/caves_north) +"hqX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"hCX" = ( -/obj/structure/surface/table, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"hDa" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"hDd" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/virology) +"hrd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"hDf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hDh" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"hDs" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"hDH" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"hry" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"hDK" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"hDP" = ( +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"hsB" = ( +/obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/west, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"hEx" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"hEC" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"hEI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engineering Secure Storage" +"htE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"hFe" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/s) -"hFh" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hFi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves/lambda/research) +"htF" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"htV" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"htZ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"hul" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - name = "\improper Engineering Tool Storage" + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"huo" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"hFn" = ( -/obj/structure/machinery/door_control{ - id = "eta"; - name = "Eta Lockdown"; - pixel_x = 30; - throw_range = 15 +"hup" = ( +/obj/structure/machinery/light, +/obj/structure/window{ + dir = 4 }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"hFA" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/surface/table/woodentable, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 11 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) -"hFG" = ( +"hvl" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"hvw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/xenobiology) +"hvF" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/ne) +"hvK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"hFK" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"hFO" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"hFT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"hvP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"hGd" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/raisins, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hGp" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/red/north, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lambda_cave_cas) -"hGr" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_east) -"hGx" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"hGV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"hHb" = ( -/obj/structure/sign/safety/ladder, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/oob) -"hHm" = ( -/obj/structure/machinery/computer/cameras{ +"hvQ" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/outside/admin_building) -"hHw" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"hIp" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/e) -"hIq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"hIU" = ( -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"hJa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"hvV" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"hwj" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"hJc" = ( -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"hJl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"hJy" = ( +/turf/open/floor/red/southeast, +/area/bigredv2/outside/lambda_cave_cas) +"hwP" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; dir = 4; @@ -11548,363 +11213,650 @@ icon_state = "intact"; name = "Pipe" }, +/obj/structure/cable{ + icon_state = "2-5" + }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hJV" = ( -/obj/structure/bed/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +"hxa" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"hym" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/darkish, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) -"hKf" = ( -/obj/structure/toilet{ +"hyp" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"hyA" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"hyB" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"hyH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"hyZ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Surgery" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"hzq" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"hzy" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"hzE" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door/window, -/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"hKh" = ( +/area/bigredv2/outside/marshal_office) +"hzJ" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/brown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"hzO" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/restraint/adjustable/cable/cyan, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"hKX" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"hLp" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"hLx" = ( -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"hLS" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"hMy" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"hMF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/northwest, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"hMN" = ( +"hAj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"hAT" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"hBd" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/n) +"hBi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"hMT" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 12 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"hBm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"hBq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/cable, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"hNy" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_lambda) -"hNR" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"hBD" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"hCb" = ( /obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"hNT" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"hNZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -32 +"hCC" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"hCH" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 }, -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"hOb" = ( -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"hOz" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"hOK" = ( +"hDl" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "medbay-v3" + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"hDt" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"hOV" = ( -/obj/structure/machinery/light, -/obj/structure/closet/cabinet, -/obj/structure/pipes/vents/pump{ +/obj/item/paper/janitor, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"hDy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"hDK" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"hPd" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"hDR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"hPe" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz1_telecomm_cas) -"hPs" = ( -/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"hEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"hEX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab Storage Bay" }, -/obj/structure/machinery/alarm{ +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"hFb" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - pixel_x = -30 + id = "workshop_br_g"; + name = "\improper Workshop Garage" }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"hPI" = ( +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"hFt" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"hFu" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hFw" = ( +/obj/structure/curtain/medical, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"hFC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"hFJ" = ( +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"hFM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hQi" = ( -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"hQJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +/area/bigredv2/outside/general_offices) +"hFZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"hGa" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"hQN" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"hQO" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hGh" = ( +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) -"hQR" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hQT" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz1_telecomm_cas) -"hQU" = ( -/turf/open/floor/asteroidwarning/southwest, +"hGs" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/e) +"hGB" = ( +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) -"hQZ" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"hRm" = ( -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hSo" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"hSz" = ( -/obj/item/device/flashlight/on{ - pixel_x = 8 +"hGC" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"hGP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Maintenance" }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"hSD" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"hHb" = ( +/obj/structure/sign/safety/ladder, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/oob) +"hHy" = ( +/obj/structure/prop/dam/truck/damaged, /turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"hHC" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hIg" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"hSS" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"hSW" = ( -/obj/structure/machinery/computer/area_atmos/area, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, +"hIh" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"hIx" = ( +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/research) +"hJU" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed/right{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "\improper coolant feed" + }, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"hKe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"hKq" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hKB" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/virology) +"hKJ" = ( +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) -"hTn" = ( +"hKQ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"hKY" = ( +/obj/structure/machinery/light/built{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"hKZ" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"hLa" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hLd" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"hLp" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"hLS" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"hMw" = ( +/obj/structure/machinery/photocopier, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"hMH" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"hMM" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"hMP" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hMS" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"hMZ" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"hTS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hOb" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"hOj" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "anomalybelt" }, -/turf/open/floor/redcorner/east, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"hOF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"hOH" = ( +/obj/structure/bed, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"hUo" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lz2_south_cas) -"hUp" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"hUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"hOI" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hUB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"hPf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hPs" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"hPB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"hUE" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"hPH" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"hPP" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"hQh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"hQi" = ( +/obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"hUF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) -"hVq" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"hVw" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz1_north_cas) -"hVG" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Medical Clinic Morgue" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"hVL" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;200" +"hQC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"hQY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"hVS" = ( +/area/bigredv2/outside/marshal_office) +"hRc" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"hRe" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hRH" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"hRV" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz1_north_cas) +"hSH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) -"hVX" = ( +"hSI" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"hSR" = ( +/obj/item/device/analyzer, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"hST" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"hSW" = ( +/obj/structure/surface/table, +/obj/item/toy/sword, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hTf" = ( /obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"hWw" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_6, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"hWF" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"hWH" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"hWV" = ( +"hTw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"hTB" = ( /turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_north) -"hXc" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" +/area/bigredv2/caves_se) +"hTG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"hTI" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"hXv" = ( -/obj/structure/bed/chair/wood/normal{ +"hUd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"hUf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"hUl" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"hUn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"hUs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"hXx" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hXB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ +"hUK" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" + }, +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, +/obj/structure/machinery/computer/pandemic, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"hUS" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"hUT" = ( +/obj/structure/cryofeed, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) -"hXO" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"hVf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_north) -"hYh" = ( -/turf/open/floor/darkgreencorners2, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"hYk" = ( -/obj/structure/machinery/conveyor{ - dir = 9; - id = "anomalybelt" +"hVH" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/research) +"hVK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"hVS" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"hYn" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"hYB" = ( -/obj/structure/platform{ - dir = 1 +/area/bigredv2/outside/general_offices) +"hWw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/platform{ +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"hWT" = ( +/obj/structure/platform/shiva{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"hXl" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/s) +"hXm" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hXA" = ( +/obj/structure/ore_box, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"hXM" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/platform_decoration{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"hYy" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"hYM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/eta/research) +"hYV" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) "hZl" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 3; @@ -11916,13 +11868,27 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"hZz" = ( -/obj/item/reagent_container/pill/happy, +"hZp" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"hZs" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/mining) +"hZF" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"hZK" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) "ian" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/door_control{ @@ -11932,1127 +11898,970 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"iaC" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"iaD" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"iaL" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) "iaN" = ( /obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) "iaS" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"iaV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "ibi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"ibm" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/n) +/obj/structure/surface/rack, +/obj/item/storage/bag/ore{ + pixel_y = 5 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ibl" = ( +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) "ibP" = ( /turf/open/floor/plating, /area/bigredv2/caves_research) -"icb" = ( -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"ick" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/w) -"icp" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"ict" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"icB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"icR" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/virology) -"idd" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/marshal_office) -"idq" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/blood/oil/streak{ - pixel_y = 4 +"icd" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"icg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Machine room" }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ids" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ +"icx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"idU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"idX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Courtroom" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"iee" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"icU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"idS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"iea" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"ieV" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_sw) -"ifq" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"ier" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"ifx" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ifG" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"igr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"igv" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"ies" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz2_south_cas) +"ieu" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"ifk" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"igC" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"igQ" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"ifo" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"igV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/cell/hyper, +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/research) +"ifO" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"ifP" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) -"igW" = ( -/obj/structure/platform_decoration{ +"igA" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"igG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"igS" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"ihd" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"ihe" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Server" +/obj/structure/computer3frame/wallcomp, +/obj/structure/cable{ + icon_state = "11-2" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "ihf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"ihn" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"ihV" = ( /obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"iia" = ( -/obj/structure/showcase, -/turf/open/floor/carpet6_2/west, -/area/bigredv2/caves/eta/living) -"iid" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_lambda) -"iif" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"iig" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"ihu" = ( +/obj/item/stool, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"ihz" = ( +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"ihE" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"iii" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"iiE" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"iiA" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"iiM" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"ijg" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"ijo" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) -"iiB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"ikg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"iiR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"iiU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"iiX" = ( -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"ije" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"ikT" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + req_one_access_txt = "19;200" }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Communications"; + pixel_x = -18 }, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"ijl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/bigredv2/outside/telecomm) +"ilq" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ilw" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"ilE" = ( +/obj/structure/fence, +/obj/structure/disposalpipe/segment, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ilP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ijx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"imu" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"imD" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/flask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"imQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"imU" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"iki" = ( -/obj/structure/bed/chair{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"inK" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/caves_sw) +"inO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/light{ - dir = 8 + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ioa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) -"ikp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"iku" = ( -/turf/open/floor/warnwhite/west, -/area/bigredv2/caves/lambda/xenobiology) -"ikC" = ( +"ioj" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"ikI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ilp" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/beaker/sulphuric, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"ilq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/rollingpin, /turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) -"ilE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" +"ioZ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"ipf" = ( +/obj/item/device/flashlight/lantern{ + pixel_x = -6 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"ipl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"ipP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/research) +"ipY" = ( /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"ilI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"imd" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/e) -"imo" = ( +/area/bigredv2/caves/eta/storage) +"iqg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"imx" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"imF" = ( -/obj/item/ore{ - pixel_x = 9 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"iqi" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "filtration_restored" }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"imW" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/s) +"iql" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"imZ" = ( -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"inc" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"inl" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"iqm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"iqx" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"iqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wetleather, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ino" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"iqW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Virology Lab Decontamination" }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"irk" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/obj/item/device/flashlight/lamp, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iro" = ( /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"iou" = ( -/obj/structure/machinery/light/built, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"irv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic" }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"ioz" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"iry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"irN" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"irU" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ioU" = ( -/obj/structure/toilet{ - dir = 1 +/area/bigredv2/outside/medical) +"iss" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"isC" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1containers_scramble" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"ipf" = ( -/obj/item/device/flashlight/lantern{ - pixel_x = -6 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"isF" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"isH" = ( +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"isQ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"isS" = ( +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) -"ipi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"isU" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) +"ith" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"ipv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"itH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window{ + dir = 2 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"ipP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lambda_cave_cas) -"ipS" = ( -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"ipT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio/headset, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"iqa" = ( -/obj/structure/machinery/access_button/airlock_exterior{ - master_tag = "viro_controller"; - pixel_y = -28 +/obj/structure/foamed_metal, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "chem_lock"; + name = "\improper Chemistry Lockdown" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"itJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"iqd" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteblue/northeast, -/area/bigredv2/outside/medical) -"iqt" = ( -/obj/structure/machinery/light{ +/obj/item/tool/warning_cone, +/obj/structure/barricade/handrail/wire{ dir = 1 }, -/obj/structure/machinery/biogenerator, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"iqz" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/filtration_cave_cas) -"iqL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"iqT" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/space_port_lz2) -"irc" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/lambda/research) -"irg" = ( -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"iri" = ( -/obj/structure/bed/chair{ +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"itL" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"itR" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"itZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"irF" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"irN" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"irR" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"irX" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"itp" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"its" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"iuf" = ( -/obj/item/shard{ - icon_state = "small" +"iuC" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"ivh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ium" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"iuq" = ( -/turf/open/floor/rampbottom, -/area/bigredv2/outside/marshal_office) -"iuP" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/eta) -"iuV" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/item/paper_bundle, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"ivd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 32 }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"ivn" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"ivt" = ( +/obj/structure/closet/secure_closet/brig, /turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"ivi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_id = "Clinic Reception" +/area/bigredv2/outside/marshal_office) +"ivW" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"iwa" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"iwb" = ( +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"iwf" = ( +/obj/structure/largecrate/guns, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"iwg" = ( +/obj/structure/curtain/open/medical, /turf/open/floor/white, /area/bigredv2/outside/medical) -"ivw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ivJ" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/gun/rifle/m41a/training, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ivM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"iwj" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, +"iwm" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/pinpointer, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"iwF" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 18; - pixel_y = 11 +/area/bigredv2/outside/admin_building) +"iwJ" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important items upon."; + dir = 1; + name = "trophy board"; + pixel_y = 30 }, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = -5; - pixel_y = 4 +/obj/item/oldresearch/Chitin{ + anchored = 1; + pixel_y = 27 }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 10; - pixel_y = 2 +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"iwP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ixo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"ixC" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"ixL" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/mars_cave/mars_cave_15, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"ixd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Eta Lab Maintenance Storage" +"ixM" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"ixV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"iya" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"ixt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"ixv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"ixC" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/warning_stripes{ - icon_state = "U-N" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"iyb" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 }, -/turf/open/floor/dark, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) -"ixE" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/bar) -"ixH" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/e) -"ixM" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"iyz" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) -"iyx" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_virology) -"iyP" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/filtration_cave_cas) -"izn" = ( -/turf/open/mars_cave/mars_cave_7, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"izJ" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"izK" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"izO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) -"izz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"izR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"izQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/lambda/virology) +"izX" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/scrubber/on{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, +/turf/open/floor/darkgreen2/north, /area/bigredv2/caves/lambda/virology) +"iAb" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "iAi" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"iAj" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/lz2_cave) -"iAs" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) "iAw" = ( /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"iAA" = ( -/obj/item/device/reagent_scanner, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"iAI" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"iAV" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/c) -"iAY" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iCt" = ( -/obj/structure/largecrate/mule, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"iCB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Meeting Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"iCF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"iCK" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"iDl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"iDz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"iDA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"iDU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"iEd" = ( -/obj/structure/bed/chair, +"iAP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/head/det_hat, /turf/open/floor/wood, /area/bigredv2/outside/marshal_office) -"iEl" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"iEv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +"iAQ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"iAR" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - name = "\improper Cargo Bay Quartermaster" + name = "\improper Eta Lab Server" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"iEB" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/caves/lambda/virology) -"iEJ" = ( +/area/bigredv2/caves/eta/storage) +"iAX" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/se) +"iBa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"iFh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"iFn" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"iFS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"iBc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"iFW" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"iGn" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"iBl" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iBv" = ( +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) -"iGq" = ( +"iBQ" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, /obj/structure/surface/table, -/obj/item/paper, /turf/open/floor/white, /area/bigredv2/outside/admin_building) -"iGI" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"iGJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"iGK" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_sw) -"iGL" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/virology) -"iGQ" = ( -/obj/structure/platform/shiva{ +"iBU" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"iBZ" = ( +/obj/structure/platform_decoration/shiva{ + dir = 1 + }, +/obj/structure/platform_decoration/shiva{ dir = 4 }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"iGZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"iHt" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = -32 +"iCg" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"iCn" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"iCp" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/spawner/gibspawner/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"iDw" = ( +/obj/structure/bed/roller, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"iDx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"iEE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"iHK" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen_v/northeast, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"iEQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) -"iHO" = ( -/obj/item/weapon/gun/rifle/m4ra, -/obj/effect/landmark/corpsespawner/ua_riot, +"iEU" = ( /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, /turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"iHQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/bigredv2/caves/mining) +"iFk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"iHS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"iIl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"iIm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/s) -"iIG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"iIK" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"iIM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"iJb" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"iJj" = ( +/area/bigredv2/outside/general_offices) +"iFq" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"iJv" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"iJz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Crew Habitation Complex" + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"iKf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, -/obj/structure/machinery/light/double{ - dir = 1 +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"iGd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"iGK" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_sw) +"iHq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/buritto, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"iHr" = ( /obj/effect/decal/cleanable/blood{ dir = 8; icon_state = "gib6"; layer = 4; - pixel_x = 14; + pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"iKq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" +"iIz" = ( +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"iIE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"iKN" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/se) -"iLl" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"iLR" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"iLW" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"iMd" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/eta) -"iMF" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"iNd" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"iJj" = ( +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"iJC" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"iNL" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz2_south_cas) -"iNR" = ( -/turf/open/gm/river, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/virology) +"iJK" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) -"iNT" = ( -/obj/structure/barricade/wooden, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"iOl" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whiteyellow/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"iOv" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"iOx" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/caves/lambda/xenobiology) -"iOK" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/classic_baton, -/turf/open/mars_cave/mars_dirt_4, +"iKm" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"iKU" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"iLa" = ( +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_research) -"iOQ" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 +"iLi" = ( +/obj/item/ashtray/bronze{ + pixel_x = -7 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"iLk" = ( +/obj/structure/closet/secure_closet/security/science, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"iLD" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"iMn" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"iMF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"iMR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"iOU" = ( -/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"iPp" = ( -/obj/structure/machinery/light, +/area/bigredv2/caves_lambda) +"iMX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"iNe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"iPK" = ( +/area/bigredv2/outside/e) +"iNp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"iNt" = ( +/obj/item/tank/air, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"iNG" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"iPV" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"iOs" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"iQb" = ( -/obj/structure/machinery/power/port_gen/pacman/super, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"iOQ" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"iOZ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"iQo" = ( -/obj/structure/window/reinforced, +/area/bigredv2/caves_east) +"iPs" = ( +/obj/structure/janitorialcart, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"iPu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"iPB" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz1_telecomm_cas) +"iPM" = ( +/obj/structure/machinery/light/built, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) +/area/bigredv2/caves/lambda/research) +"iQu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "iQw" = ( /obj/item/ore, /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"iQW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"iRy" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +"iRn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/item/weapon/baton/loaded, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"iRz" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"iRA" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Power Substation" }, /turf/open/floor/delivery, /area/bigredv2/outside/lz2_south_cas) -"iRU" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iSc" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) "iSi" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"iSw" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz1_north_cas) -"iSz" = ( -/obj/structure/barricade/handrail{ +/obj/structure/machinery/door/airlock/almayer/research/colony{ dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"iSR" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"iTh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"iTy" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"iTC" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"iTE" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 + name = "\improper Eta Lab Decontamination" }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"iTK" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) -"iTM" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/curtain/red, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"iTS" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_lambda) -"iUc" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, +"iST" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"iUx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/area/bigredv2/outside/marshal_office) +"iSU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -32 +/obj/structure/machinery/firealarm{ + dir = 1 }, -/obj/structure/machinery/light/built, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"iUP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Technical Storage" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iTJ" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_lambda) +"iTL" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"iTT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"iUZ" = ( -/obj/structure/surface/table, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"iUb" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"iUy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"iUR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/tool/surgery/surgicaldrill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"iUZ" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) "iVd" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -13065,387 +12874,370 @@ }, /turf/open/mars, /area/space) +"iVf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"iVg" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) "iVi" = ( /obj/structure/fence, /turf/open/mars, /area/bigredv2/outside/se) -"iVI" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"iWa" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/caves/eta/xenobiology) -"iWg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"iWY" = ( -/obj/item/explosive/grenade/baton{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"iXc" = ( -/obj/structure/closet/secure_closet/CMO, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"iXl" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/camera/autoname{ - dir = 8 +"iVj" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"iVG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"iVS" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"iVY" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"iXI" = ( +/obj/structure/surface/table, /turf/open/floor/white, /area/bigredv2/outside/admin_building) +"iWn" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/ne) +"iWt" = ( +/obj/structure/largecrate/mule, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"iWK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"iXd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "chapel_cult" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) "iXT" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"iXW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/telecomm/n_cave) +"iXZ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"iYq" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"iYj" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donut, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"iYS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 + }, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"iZa" = ( +"iYs" = ( /obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"iYM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/obj/item/cell/hyper, -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/research) +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"iYU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iYY" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) "iZd" = ( -/obj/structure/machinery/vending/security, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"iZy" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/sw) +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"iZp" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"iZr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) "iZA" = ( /obj/structure/surface/rack, /turf/open/floor, /area/bigredv2/caves) -"iZE" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/w) -"iZO" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) +"iZK" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) "iZR" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Greenhouse Storage" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"jab" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"jad" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"jai" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"jau" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"jaD" = ( -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/eta/xenobiology) -"jaK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jaJ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"jaW" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"jbc" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"jaZ" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"jbf" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"jbt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"jbv" = ( +"jbP" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"jcx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"jbB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"jbN" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Xenobiology Lab" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"jcI" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"jbO" = ( -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"jbR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/bigredv2/outside/telecomm) +"jdl" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_sw) +"jdy" = ( +/obj/item/tool/pickaxe, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"jcb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"jcm" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"jct" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"jcw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"jcF" = ( +/area/bigredv2/caves/mining) +"jdO" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"jcX" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"jdk" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"jdl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"jdI" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"jdM" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jdP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jdU" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; + dir = 8; health = 25000 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"jdS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - id_tag = "mbayexit"; - name = "Medbay Reception"; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"jdV" = ( -/obj/structure/surface/table, -/obj/item/tool/extinguisher, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"jeg" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_lambda) -"jei" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"jej" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"jeo" = ( /obj/structure/surface/table, -/obj/item/oldresearch/Blood, -/obj/item/oldresearch/Blood, -/obj/item/tool/pen, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"jep" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"jfp" = ( -/turf/open/floor/whiteyellow/west, -/area/bigredv2/caves/lambda/xenobiology) -"jfz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/lambda/xenobiology) -"jfO" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"jgr" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/loadingarea/west, -/area/bigredv2/outside/cargo) -"jgR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"jhh" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 8 +/obj/item/device/flashlight, +/obj/item/storage/box/stompers{ + pixel_y = 15 }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"jhy" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"jik" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_research) -"jir" = ( +"jeM" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"jeU" = ( +/turf/open/floor/purplecorner, +/area/bigredv2/caves/lambda/research) +"jeW" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars/mars_dirt_12, +/area/space) +"jfa" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"jfl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Robotics" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"jfK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"jfL" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"jfW" = ( /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"jiu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"jiQ" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"jja" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"jjm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/door_control{ - id = "Spaceport"; - name = "Storm Shutters"; - pixel_x = 32 +/area/bigredv2/outside/chapel) +"jgJ" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/tool/pen, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"jjq" = ( -/obj/structure/bed/chair{ +/area/bigredv2/outside/admin_building) +"jgV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"jjv" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"jhb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jhf" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/lambda_cave_cas) +"jhz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_sw) -"jjK" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/warnwhite/southeast, -/area/bigredv2/caves/lambda/virology) -"jjR" = ( -/obj/structure/machinery/light{ +"jhC" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"jhQ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jii" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"jix" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"jiA" = ( +/obj/item/device/reagent_scanner, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"jiF" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"jiT" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"jjU" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/nw) -"jjW" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"jkt" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/redcorner/east, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"jkg" = ( -/obj/structure/machinery/light{ +"jkL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jkM" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"jks" = ( -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"jkL" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/flask/detflask, /turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) +/area/bigredv2/outside/bar) "jkO" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"jkV" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lambda_cave_cas) -"jlc" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"jlf" = ( -/obj/structure/surface/table, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/outside/admin_building) "jlg" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -13453,998 +13245,914 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jlz" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz1_telecomm_cas) -"jlQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/static_comms/net_two{ - broken_on_spawn = 1 +"jln" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"jlx" = ( +/obj/structure/computer3frame/wallcomp, +/obj/structure/cable{ + icon_state = "11-2" }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"jlX" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jlz" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"jmf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"jmg" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"jmr" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_research) -"jmL" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"jlG" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"jnp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"jnq" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"jnU" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jlM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"jlR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jlT" = ( /turf/open/floor/asteroidwarning, -/area/bigredv2/caves_north) -"jnY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/area/bigredv2/outside/space_port_lz2) +"jlZ" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"joP" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whiteyellow/north, -/area/bigredv2/caves/lambda/xenobiology) -"jpc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/pizzabox/vegetable, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"jpo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/whitebluefull/northeast, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jmr" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"jmR" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"jqI" = ( +"jnd" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"jny" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/lambda/research) +"jnA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"jqQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"jra" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"jri" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"jrB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"jnW" = ( +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"joD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/lawyer/bluejacket, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"joH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"jsi" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"jsp" = ( -/obj/structure/machinery/light, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"jsr" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"jst" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"jtb" = ( +"joQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"jpd" = ( /obj/structure/surface/table, -/obj/structure/window, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"jtx" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/library) -"jug" = ( -/turf/open/mars_cave/mars_cave_12, -/area/bigredv2/caves/eta/research) -"juK" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"jpf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"jpG" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"jpS" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"jqf" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"juO" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"jqn" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) +"jqp" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"jqs" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/mars_cave/mars_cave_16, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) -"juW" = ( +"jqD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"jve" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"jqL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"jqR" = ( +/obj/item/weapon/gun/pistol/b92fs{ + pixel_x = 13; + pixel_y = -7 }, -/turf/open/mars_cave/mars_dirt_5, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"jvs" = ( -/obj/limb/arm/l_arm, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor, +"jqT" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"jrf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/restraint/handcuffs, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) -"jvG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/darkyellow2, +"jrm" = ( +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"jvL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"jrv" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"jrO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"jvU" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/s) -"jwc" = ( /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"jwe" = ( -/obj/structure/machinery/light/built, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/area/bigredv2/caves/mining) +"jse" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"jss" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"jww" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/n) -"jwI" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"jwN" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_research) -"jxo" = ( -/obj/structure/window, -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"jxx" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -4; - pixel_y = 20 - }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"jsy" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"jtw" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"jty" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"jtG" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/xenobiology) +"jtK" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"jxA" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, +"jtS" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/space_port_lz2) +"jtV" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"jxJ" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"jyR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window{ - dir = 2 - }, -/obj/structure/foamed_metal, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "chem_lock"; - name = "\improper Chemistry Lockdown" - }, -/turf/open/floor/whiteyellowfull, -/area/bigredv2/caves/lambda/xenobiology) -"jzc" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +"jue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/extinguisher, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"jzs" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"juk" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_plant) +"jum" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/tool/hatchet, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"jup" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"juw" = ( /turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"jzL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/area/bigredv2/caves/lambda/xenobiology) +"juJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_x = -1; + pixel_y = 14 }, -/obj/structure/bed/chair{ - dir = 8 +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 6 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"jAF" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/nw) -"jAZ" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"jBO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/item/reagent_container/food/snacks/tofu, +/obj/structure/cable{ + icon_state = "5-9" }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"jCh" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jCj" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"jCn" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"jCG" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/nw) -"jCI" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"jCW" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"juM" = ( +/obj/item/clothing/under/lightbrown, /turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"jDa" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"jDi" = ( +/area/bigredv2/outside/general_offices) +"juQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 9 }, -/turf/open/floor/redcorner, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"jDy" = ( +"juY" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"jDz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Bar" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"jDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"jEr" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"jEy" = ( -/obj/item/device/flashlight, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"jFq" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"jFX" = ( -/turf/open/floor/darkyellowcorners2/north, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) -"jGo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"jGH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"jGN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +"jvL" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) -"jGZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jHg" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/eta/xenobiology) -"jHn" = ( -/obj/effect/decal/cleanable/dirt, +"jwp" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/c) +"jwX" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"jHI" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/area/bigredv2/caves/lambda/xenobiology) +"jwZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"jxs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"jIp" = ( -/obj/item/tool/wet_sign, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jIB" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 +"jxC" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"jxL" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) +"jxM" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"jIJ" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"jJn" = ( +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"jxN" = ( +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jyg" = ( +/obj/structure/closet/secure_closet/medical1, /obj/structure/machinery/camera/autoname{ - dir = 8 + dir = 4 }, -/turf/open/floor/whiteblue/southeast, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) -"jJB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"jJI" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"jJJ" = ( -/obj/structure/pipes/vents/scrubber/on{ +"jyD" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jyF" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"jJV" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"jJY" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/item/storage/fancy/vials/random, /turf/open/floor/white, -/area/bigredv2/outside/medical) -"jKe" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ +/area/bigredv2/outside/admin_building) +"jyG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"jKg" = ( -/mob/living/simple_animal/corgi/puppy{ - desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; - name = "\improper Mister Wiggles" - }, -/turf/open/floor/elevatorshaft/north, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) -"jKj" = ( +"jyT" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"jze" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"jzs" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"jAg" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"jAm" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"jKt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/recharger, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"jKO" = ( -/obj/item/tool/weldpack, -/obj/item/frame/rack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jKP" = ( +/area/bigredv2/outside/admin_building) +"jAU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"jLl" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"jLx" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/virology) -"jMb" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"jMC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/southeast, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) -"jNf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jNi" = ( +"jBj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"jBx" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"jNj" = ( -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jNq" = ( -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 13 - }, -/obj/item/clothing/shoes/dress{ - pixel_y = -13 +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -7 }, -/obj/item/clothing/under/suit_jacket/trainee{ - pixel_x = -6; - pixel_y = 15 +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"jNz" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) -"jNJ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"jOn" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Command Complex" +/obj/item/tool/lighter/zippo{ + pixel_x = -1; + pixel_y = 14 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"jOr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jOv" = ( -/obj/item/weapon/shield/riot, +"jBZ" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"jCh" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 + pixel_x = -1; + pixel_y = 5 }, -/turf/open/mars_cave/mars_cave_17, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"jOW" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_sw) -"jPd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"jPg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"jCp" = ( +/obj/item/clothing/under/brown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"jCr" = ( +/obj/structure/disposalpipe/junction, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jCN" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jCR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"jPm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"jCT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"jPw" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"jPR" = ( -/obj/item/weapon/twohanded/folded_metal_chair, +"jDy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jPX" = ( -/obj/item/ore/diamond{ - pixel_x = 8; - pixel_y = -11 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/cable{ + icon_state = "11-2" }, -/obj/item/storage/firstaid/fire, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jQd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"jQv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"jQw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"jQy" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"jQO" = ( +"jDz" = ( /obj/structure/surface/table/reinforced, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Xenobiology" +/obj/structure/machinery/light, +/obj/structure/xenoautopsy/tank/hugger, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/whitepurple/east, +/turf/open/floor/whitepurple/southeast, /area/bigredv2/caves/lambda/xenobiology) -"jRr" = ( -/obj/structure/largecrate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"jRJ" = ( -/obj/structure/bed/roller, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"jSi" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +"jDD" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"jSn" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 +"jDJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Library" }, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"jSs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/w) -"jSJ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"jSL" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/wood, +/turf/open/floor/delivery, /area/bigredv2/outside/library) -"jST" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +"jEl" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/c) +"jEv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"jTf" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"jEy" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"jEz" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"jTm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"jUc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"jUj" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"jUl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"jEN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"jEZ" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/whitegreen/east, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"jFf" = ( +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"jFk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) -"jUs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"jFl" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/admin_building) +"jFF" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/tramadol, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"jFW" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"jGK" = ( +/turf/open/floor/purple, +/area/bigredv2/caves/lambda/research) +"jHM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"jHR" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/e) +"jIg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"jUG" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"jUK" = ( -/obj/structure/bed/chair{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jIl" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"jIG" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"jIH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/carpet7_3/west, -/area/bigredv2/outside/admin_building) -"jUP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"jJd" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"jUQ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"jUY" = ( -/turf/open/mars_cave, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/weapon/gun/rifle/m41a/training, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"jVX" = ( -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/eta/xenobiology) -"jWr" = ( -/obj/structure/machinery/light{ - dir = 1 +"jJp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Lambda Lab Prison Restroom" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"jJB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"jWO" = ( +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"jJT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"jKo" = ( /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"jXu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - amount = 30 +/area/bigredv2/caves/eta/storage) +"jKu" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"jKv" = ( +/turf/open/floor/purplecorner/west, +/area/bigredv2/caves/lambda/research) +"jKB" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"jLh" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"jLA" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-eva" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"jLG" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_sw) +"jLN" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"jMA" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"jXH" = ( +"jMR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"jXM" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = -32 +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"jMV" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"jXZ" = ( -/obj/structure/machinery/processor, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"jYz" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) -"jYG" = ( -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"jYW" = ( +"jMW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Dormitories Lavatory" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"jZq" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"jNf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"jZE" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"jNw" = ( /obj/item/ore{ - pixel_x = 13; - pixel_y = 12 + pixel_x = -4; + pixel_y = 7 }, -/turf/open/mars_cave/mars_dirt_6, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jZF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"jND" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"jOb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"jZK" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jOl" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"jZV" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/north, +/obj/item/clothing/glasses/science, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/research) -"kag" = ( -/obj/structure/machinery/light{ +"jOD" = ( +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_se) +"jOE" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"kau" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/n) -"kaX" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, /turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"kbg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"kbt" = ( -/obj/structure/closet/firecloset/full, +/area/bigredv2/outside/engineering) +"jOW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"kbB" = ( +/area/bigredv2/caves_lambda) +"jPh" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light_construct{ - dir = 8 +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"jPm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jPv" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"jPy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"kbN" = ( +"jPN" = ( /obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, /obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"jPX" = ( +/obj/item/ore/diamond{ + pixel_x = 8; + pixel_y = -11 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/storage/firstaid/fire, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jPY" = ( +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"jQg" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"jQk" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"kcf" = ( -/obj/structure/tunnel{ - id = "hole4" +/area/bigredv2/outside/engineering) +"jRf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" }, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"kcl" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"jRB" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"jSc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/obj/structure/machinery/door_control{ + id = "viro"; + name = "Virology Lockdown"; + pixel_x = -25 }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"jSl" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) -"kcx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating, +"jSK" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"jSU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"jTw" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_south_cas) +"jTL" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/xenobiology) +"jUc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"jUt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/plate, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jUY" = ( +/turf/open/mars_cave, /area/bigredv2/caves/mining) -"kcU" = ( -/obj/effect/decal/cleanable/dirt, +"jVb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"jVv" = ( /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"kdz" = ( -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"kdF" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/s) -"kdT" = ( +/area/bigredv2/outside/ne) +"jWh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"jWi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"jXj" = ( +/obj/item/reagent_container/glass/rag, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"keg" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lz2_south_cas) -"kej" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"key" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"kfk" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"kfO" = ( +"jXs" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"jXE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"kfU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"jYc" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 5; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kgd" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jYs" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_lambda) +"jZs" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"jZT" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) +"kae" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/filtration_plant) +"kat" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"kau" = ( /obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"kaA" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/lightbrown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"kby" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kgN" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"kgV" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/ne) -"kgY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"kbF" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"kbJ" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1entrance_v2" }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"khi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"khr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"khw" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 +/turf/open/mars, +/area/bigredv2/outside/nw) +"kcb" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"kcq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"kcx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"khI" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/n) -"kik" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"kiv" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"kiI" = ( +"kcD" = ( /obj/structure/surface/table, /obj/structure/phone_base/colony_net/rotary{ phone_category = "Eta Labs"; @@ -14453,1109 +14161,1096 @@ }, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) -"kiO" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"kju" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/n) -"kjy" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"kka" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"kkq" = ( -/obj/structure/showcase{ - icon = 'icons/obj/structures/machinery/research.dmi'; - icon_state = "d_analyzer_la" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"kkB" = ( -/obj/structure/machinery/light{ +"kcE" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/machinery/teleport/station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"kcI" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"kdU" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/caves/lambda/xenobiology) +"keg" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lz2_south_cas) +"keo" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/e) +"kew" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"kex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, /turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"kkD" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"key" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"kez" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"kfk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"kfy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Medical Clinic Power Station" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"kfI" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/dark, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"kgc" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/ne) +"kgH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"kgN" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"kkG" = ( -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"kkM" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"klz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"kho" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"klN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"klQ" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/caves_lambda) +"khr" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"khs" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/xenobiology) -"klY" = ( +/obj/item/tool/hand_labeler, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"kiF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"kiG" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"kiO" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"kiT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"kjb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"kjm" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"kjF" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"kkg" = ( +/obj/item/tool/pickaxe{ + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"kkK" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"kkU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"kld" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"klr" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"kly" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/item/prop/alien/hugger, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"klP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"kmu" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/eta/storage) +"klY" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"kmE" = ( -/obj/item/tool/wrench, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"kmJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Machine room" +"kmn" = ( +/obj/structure/showcase{ + icon_state = "mechfab1" }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/carpet5_1/west, +/area/bigredv2/caves/eta/living) +"kmB" = ( +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"kmW" = ( -/obj/structure/machinery/light{ +"kmM" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"kna" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"knn" = ( +/obj/structure/sign/double/barsign{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"knb" = ( /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"knj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/bigredv2/outside/c) +"kno" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"knx" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/space_port) -"knm" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"koa" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/nw) +"koe" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"knw" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"koq" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"kos" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"kox" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"knQ" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"knS" = ( -/obj/structure/platform/shiva{ - dir = 1 + dir = 6 }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"koz" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"koF" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"koT" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"koV" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"kpo" = ( -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"koB" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -24 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"kpt" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"koL" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"koR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"kpx" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"kpc" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"kqr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"kpC" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"krg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper/courtroom{ - name = "A Crash Course in Legal SOP" +"kpH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"krn" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_research) -"kru" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +/area/bigredv2/outside/bar) +"kpJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"krD" = ( -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"krL" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/bigredv2/caves/eta/living) +"kpL" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"krN" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "anomalybelt" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"kpZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/turf/open/floor/dark, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"kqd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"kqx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Dormitories" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"kri" = ( +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) -"krU" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/s) +"krs" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"krC" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) "krW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/writing, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"ksf" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +"ksa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"ksj" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"ksr" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 }, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"kso" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"kts" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold/small_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ktx" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"ksz" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"ktl" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"kts" = ( -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"ktD" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"ktI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" + name = "\improper Lambda Lab Prisoner Room" }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ktJ" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"ktT" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"ktX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"kuh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) "kuu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kuA" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"kuR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"kuZ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Surgery" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"kvx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"kuU" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/darkyellow2/east, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"kvS" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"kvV" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/virology) -"kwa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"kuW" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"kwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"kwz" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"kvx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/c) -"kwA" = ( -/turf/open/floor/carpet9_4/west, -/area/bigredv2/outside/bar) -"kwC" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"kwT" = ( -/obj/structure/bed/chair{ - dir = 4 +"kvD" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"kwf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"kwB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/sign/safety/laser{ + pixel_y = 32 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"kwU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_17, +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"kwF" = ( +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_cave_cas) -"kwV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"kxt" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +"kwJ" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"kxv" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"kxG" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz1_north_cas) -"kyp" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 }, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"kyw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"kyE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) +/area/space) +"kxl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"kxV" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"kxZ" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"kya" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"kyo" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/library) "kyS" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/obj/structure/machinery/camera/autoname, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"kzF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"kzW" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"kAd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"kzb" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/purple/southeast, -/area/bigredv2/caves/lambda/research) -"kzn" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"kzr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_lambda) -"kzz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"kzA" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"kAm" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) +"kAJ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"kzJ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"kAD" = ( +"kAN" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/outside/space_port) +"kBb" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "kBn" = ( /turf/closed/wall/solaris, /area/bigredv2/caves) +"kBw" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) "kBE" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kCd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"kDr" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"kDB" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 +"kBP" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + do_not_disturb = 1; + phone_category = "Lambda Labs"; + phone_color = "red"; + phone_id = "Director's Safe Room"; + pixel_x = -18 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"kCk" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"kCq" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"kCI" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/whitegreen/east, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"kDC" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"kEb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"kEs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"kCV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kEt" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"kDh" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kEv" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/e) -"kEw" = ( -/obj/structure/machinery/light{ +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/eta/research) +"kDk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"kEF" = ( -/obj/structure/surface/table, -/obj/item/tool/weedkiller/D24, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"kDF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/white, /area/bigredv2/outside/virology) -"kFf" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_se) -"kFo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_3, +"kDW" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kFu" = ( -/obj/structure/toilet{ +"kEg" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"kEp" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 12 + }, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/structure/cable, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"kEw" = ( +/obj/structure/machinery/mill, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"kEz" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"kFQ" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"kEE" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"kFf" = ( /obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"kFp" = ( +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) -"kFU" = ( -/obj/structure/closet/toolcloset, +"kFT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northeast, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) -"kFV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"kGt" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate, -/area/bigredv2/caves/lambda/xenobiology) -"kGM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic Treatment" +"kGo" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"kGJ" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"kGQ" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"kGP" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/mars/mars_dirt_9, -/area/space) -"kHa" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"kGS" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"kGW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"kHv" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"kHy" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 + pixel_x = 6 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"kHc" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1containers_scramble" +"kHB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"kHJ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"kHf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"kHu" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"kHS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"kHA" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/nw) -"kHB" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"kIc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"kHU" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_sw) +"kIs" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"kId" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"kIG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"kJa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"kJh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"kIk" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Canteen" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"kKm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"kIm" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"kIp" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"kIx" = ( -/obj/structure/surface/table, +/area/bigredv2/caves/eta/research) +"kKw" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -7 - }, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 - }, -/obj/item/tool/lighter/zippo{ - pixel_x = -1; - pixel_y = 14 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kIA" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"kJj" = ( -/obj/structure/largecrate/random, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) "kKx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kLk" = ( +"kKP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kLl" = ( -/obj/structure/sign/safety/biolab{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"kLu" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"kLe" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"kLM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper/Court, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"kLO" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/eta/xenobiology) -"kMe" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) -"kMi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"kMk" = ( -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"kMr" = ( +/area/bigredv2/caves/eta/research) +"kLf" = ( +/obj/structure/machinery/light, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"kLm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/hefa_cult_decals/d96, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kLH" = ( +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) "kMI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"kMN" = ( -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"kNr" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/sw) -"kNz" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/eta/research) -"kNE" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"kNT" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"kOb" = ( -/obj/structure/machinery/shower{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Private Office" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"kPd" = ( -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"kPl" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"kNa" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"kNL" = ( +/obj/item/paper/bigred/them, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kOm" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/research) +"kOB" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/obj/item/ammo_box/magazine/misc/flares/empty, +/obj/structure/closet/firecloset, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kPs" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"kPA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/white, +"kOK" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/plating, /area/bigredv2/outside/virology) -"kPF" = ( +"kOS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"kOX" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"kPi" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"kPo" = ( /obj/structure/surface/table, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"kQb" = ( -/obj/structure/machinery/computer/cameras, +/obj/effect/spawner/random/tool, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) +"kPv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"kPA" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) "kQc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave, /area/bigredv2/caves_east) -"kQf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/buritto, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"kQm" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" +"kQn" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 }, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"kQW" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"kRb" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"kRk" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"kQt" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"kQF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/asteroidfloor/north, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"kQV" = ( +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/w) +"kRp" = ( +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) "kRK" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"kRM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"kRL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"kSc" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"kSf" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"kSE" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_lambda) -"kSI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"kSP" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"kTc" = ( -/turf/open/floor/almayer/w_y0/north, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"kTg" = ( -/obj/structure/bed/chair{ - dir = 1 +"kSg" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"kSj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"kSB" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"kSG" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"kST" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_sw) +"kTp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"kTo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/virology) "kTq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"kTr" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "kTs" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) +"kTt" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/e) +"kTw" = ( +/obj/structure/machinery/computer/communications{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) "kTx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"kTB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"kTy" = ( +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"kTN" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"kTH" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) "kTO" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"kTP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) +/obj/item/trash/pistachios, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) "kUh" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"kUx" = ( -/obj/structure/prop/dam/truck/damaged, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"kUB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/darkblue2, -/area/bigredv2/caves/eta/research) -"kUL" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"kUM" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/filtration_plant) -"kUV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Research Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"kVK" = ( -/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"kUj" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"kUS" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"kVR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/bigred/ground/garage_workshop) +"kUY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/nightmare{ - insert_tag = "dorms_party" +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"kVs" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kVy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bananapeel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"kWE" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz1_telecomm_cas) +"kWO" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"kWW" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"kWw" = ( +/area/bigredv2/outside/lambda_cave_cas) +"kXn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/flask, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"kXt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"kWx" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"kWC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"kWE" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"kXG" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"kXa" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"kXg" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"kXq" = ( -/turf/open/floor/asteroidwarning/west, +/turf/open/floor/delivery, /area/bigredv2/outside/eta) -"kXv" = ( -/obj/effect/decal/cleanable/blood, +"kXN" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kXO" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"kXT" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"kXX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"kXV" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) "kXZ" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"kYJ" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz1_telecomm_cas) +"kYO" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"kYS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"kYT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"kYe" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"kYh" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/baton/loaded, -/obj/item/weapon/twohanded/spear{ - pixel_x = -16; - pixel_y = -9 +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"kZa" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 2 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"kZh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"kYy" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"kYK" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/ne) -"kZi" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/space_port_lz2) -"kZj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"kZB" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"kZD" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) +"kZm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "kZG" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/bible/hefa, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kZP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/csandwich, -/obj/item/toy/deck/uno{ - pixel_y = 18 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) "kZQ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"lap" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"laD" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"lae" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"lar" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"laQ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"lbf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"lbg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"laS" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lbr" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"lbj" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) -"lbw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_east) -"lbN" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"lbP" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"lbU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" +"lbl" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"lbF" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"lbY" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "lbZ" = ( /obj/item/frame/rack, /obj/effect/decal/cleanable/dirt, @@ -15571,17 +15266,14 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"lcn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"lcq" = ( -/obj/structure/barricade/handrail{ - dir = 4 +"lcl" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "lcu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/cigarette, @@ -15594,368 +15286,288 @@ }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"lcy" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"lda" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"ldj" = ( -/obj/structure/pipes/vents/pump{ +"ldg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ldP" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"lec" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"leg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"lel" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"leQ" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"leW" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/lz2_south_cas) +"lfg" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_north) +"lfw" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) -"ldo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/eta/research) -"ldx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay Offices" +"lfB" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/virology) +"lfF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"ldW" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"lfP" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"ldZ" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"lej" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" +/obj/item/weapon/gun/rifle/mar40/lmg, +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lge" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;200" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"lek" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/filtration_cave_cas) -"leo" = ( -/obj/structure/machinery/compressor{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"lgs" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"lhb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"let" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lhi" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"lez" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"leB" = ( -/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"lhs" = ( +/obj/item/clothing/mask/gas, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"leJ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp{ - pixel_y = 15 - }, -/obj/item/paper/bigred/lambda, -/turf/open/floor/elevatorshaft/north, +/area/bigredv2/outside/filtration_plant) +"lhz" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/breakroom) -"leY" = ( +"lhJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"lhO" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"lix" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/tool/soap/deluxe, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"liI" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/cleanable/blood, +/obj/item/alien_embryo, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"leZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lfd" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"lfe" = ( -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"lfj" = ( -/obj/structure/bed/chair, /turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"lfG" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) -"lfO" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"lgG" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"lha" = ( -/obj/item/folder/yellow, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"lhd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "4-10" +/area/bigredv2/outside/general_store) +"liX" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 }, -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"ljP" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"ljV" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"lka" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"lkn" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"lhm" = ( +"lkp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"lil" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"liK" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/eta/research) -"liY" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ljf" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) -"ljz" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ljC" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"ljM" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_north) -"ljN" = ( +"lkz" = ( +/obj/structure/surface/table, +/obj/item/storage/briefcase, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lkQ" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - name = "\improper Lambda Lab Chemistry Lab" + name = "\improper Lambda Lab Administration Office" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"ljQ" = ( -/obj/item/frame/table, +/area/bigredv2/caves/lambda/breakroom) +"llg" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" + }, +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"llA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"lka" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"llW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lkd" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/whiteyellowcorner/east, -/area/bigredv2/caves/lambda/xenobiology) -"lkp" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"lmc" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_east) +"lmg" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"lmq" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 1 +/obj/effect/spawner/random/technology_scanner, +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"lmO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -7; pixel_y = 4 }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) -"lky" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/eta) -"lkL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"lnf" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; health = 25000 }, -/turf/open/floor/white, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"lnk" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"lnE" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"log" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"loA" = ( +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) -"lkT" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, +"loL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"lph" = ( +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) -"llb" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-eva" - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"llh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"llC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +"lpQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Marshal Office Prison" + name = "\improper Engineering Tool Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"lpT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"lqb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" }, /turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"lqj" = ( +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"lmc" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/n) -"lmg" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"lmh" = ( -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -10; - pixel_y = 2 +"lqr" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8; - pixel_y = 7 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"lqw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"lqE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lmq" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"lmy" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) -"lnr" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"lnT" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +"lqF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/outside/admin_building) -"loE" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"lqS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"loR" = ( -/obj/structure/surface/table/reinforced, -/obj/item/oldresearch/Resin, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"loS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"lpi" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"lpq" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_cave_16, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"lrb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"lpI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"lqu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/research) -"lqz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"lqD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"lqH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"lqW" = ( +"lru" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; dir = 1; @@ -15963,261 +15575,220 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave/mars_cave_17, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"lqX" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 1 +"lrC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"lrM" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = -4; + pixel_y = 3 }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"lrR" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"lrZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"lsN" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) -"lra" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, +"lsU" = ( +/obj/structure/platform, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"ltg" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"ltj" = ( +/obj/structure/xenoautopsy/tank/larva, +/obj/effect/decal/warning_stripes, /obj/structure/window/reinforced{ - dir = 4; - health = 80 + dir = 1 }, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"lrh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"ltQ" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"ltU" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"lrJ" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"lua" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/turf/open/floor/carpet10_8/west, -/area/bigredv2/caves/eta/living) -"lrS" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"lsd" = ( -/obj/item/reagent_container/pill/happy, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"luc" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"lue" = ( +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"lui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, /turf/open/floor/white, /area/bigredv2/outside/medical) -"lsK" = ( -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/xenobiology) -"lsP" = ( -/obj/structure/surface/rack, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"lsR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"ltd" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/grown/log, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"lte" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"ltY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"ltZ" = ( -/obj/item/ore/iron{ - pixel_x = 6; - pixel_y = 9 +"luq" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"luE" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"luH" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/n) +"luL" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"luN" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/eta) +"luQ" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"luS" = ( +/obj/structure/showcase{ + icon = 'icons/obj/structures/machinery/research.dmi'; + icon_state = "d_analyzer_la" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"luc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"lug" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"luC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"luE" = ( -/obj/structure/surface/rack, -/obj/item/device/camera_film, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"luF" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"lvi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"lvq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "\improper Lambda Lab Prisoner Room" + name = "\improper Eta Lab Dormitories" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"lvr" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/bigredv2/caves/eta/research) +"lvw" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) "lvy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/se) -"lvW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lvQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"lwc" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"lwg" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"lwA" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"lwF" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"lwG" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "lwO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/virology) -"lxi" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"lxp" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"lxK" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/se) -"lxL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/storage) -"lxO" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"lyq" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"lxi" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"lxj" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"lyA" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"lxm" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_north) -"lyE" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"lyK" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/s) -"lza" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"lxq" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_cave_cas) +"lxz" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"lzg" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lzz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/machinery/camera/autoname, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"lxA" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"lyr" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/disk/nuclear, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"lzh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, /turf/open/floor/wood, /area/bigredv2/outside/office_complex) +"lzH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) "lzI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) -"lzN" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/FixOVein, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"lAj" = ( -/obj/structure/platform_decoration{ +"lAy" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"lAl" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/se) -"lAn" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"lAU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"lAr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Operations"; - pixel_y = 24 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"lAN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/chapel) +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) "lBc" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/c) @@ -16226,35 +15797,59 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) "lBk" = ( +/obj/effect/decal/cleanable/dirt{ + pixel_x = 17 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"lBS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"lCf" = ( -/obj/structure/airlock_assembly, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lCg" = ( -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"lCn" = ( -/obj/effect/landmark/crap_item, +"lBJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/medical) -"lCs" = ( -/turf/open/floor/darkbluecorners2, +"lBN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lCf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"lCu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"lCN" = ( +"lCl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"lCv" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"lCz" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"lCL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"lCP" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) "lCR" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask{ @@ -16271,712 +15866,709 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"lCW" = ( -/obj/item/ore/coal{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/ore/coal, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"lDM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 +"lCV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"lDg" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/s) +"lDn" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"lDr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"lDy" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"lDN" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/red/east, -/area/bigredv2/outside/marshal_office) -"lEe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lDS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering SMES" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"lEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"lDU" = ( +/obj/structure/platform/kutjevo/rock{ dir = 8 }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"lFj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"lFm" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ +/obj/structure/platform/kutjevo/rock{ dir = 1 }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"lEj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/red/north, +/area/bigredv2/outside/marshal_office) +"lEu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"lFl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"lFo" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/s) +"lFs" = ( +/obj/structure/machinery/botany, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"lFn" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz2_west_cas) -"lFE" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"lFK" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"lGa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"lGl" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"lFA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"lGM" = ( +/area/bigredv2/outside/telecomm) +"lFT" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"lFZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"lGc" = ( /obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/chips, /turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"lGP" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" +/area/bigredv2/outside/general_store) +"lGl" = ( +/obj/structure/fence, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"lHb" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"lHg" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/mars_cave/mars_cave_13, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lHP" = ( -/turf/open/floor/whiteblue/southeast, -/area/bigredv2/outside/medical) -"lHQ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"lHV" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +"lGp" = ( +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -8; + pixel_y = 9 }, -/obj/structure/machinery/door_control{ - id = "viro"; - name = "Virology Lockdown"; - pixel_x = -25 +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = 4; + pixel_y = 15 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"lIz" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"lIF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"lGM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) +"lGO" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"lHh" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 150; + name = "Safe-Room intercom"; + pixel_y = -30 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"lHD" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light/built, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"lId" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "lIL" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"lIM" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) "lIS" = ( -/turf/open/floor/podhatch/north, +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light, +/turf/open/floor/whitepurple/southwest, /area/bigredv2/caves/lambda/research) -"lJe" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves_north) -"lJm" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 +"lJC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"lJN" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lKi" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"lKv" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"lKx" = ( -/obj/item/paper/bigred/final, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"lKF" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"lJF" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"lKQ" = ( -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"lKZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/obj/item/ashtray/bronze, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/admin_building) -"lLg" = ( +"lKC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"lKR" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/e) +"lKZ" = ( +/obj/item/clothing/shoes/galoshes, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"lLQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"lLn" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"lMa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"lLx" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"lLD" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"lMd" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; pixel_y = 11 }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 11 +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"lLO" = ( -/obj/structure/machinery/botany/editor, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen_v/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"lLQ" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"lLV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"lMg" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz1_north_cas) "lMl" = ( -/obj/structure/surface/table, -/obj/structure/machinery/recharger, -/turf/open/floor/whitegreencorner, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/warnwhite/southwest, +/area/bigredv2/caves/lambda/virology) +"lMU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"lMv" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"lMO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) "lMV" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/machinery/mill, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"lNr" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" + }, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"lNt" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lNI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"lNO" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"lNg" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"lNT" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"lNz" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lNX" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donut, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"lNM" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/paper_bin, -/obj/item/tool/pen/clicky, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"lOo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_sw) -"lOL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"lOU" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/lz1_north_cas) -"lPH" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +"lOc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"lQh" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"lOy" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"lOB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"lQG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"lQQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"lQW" = ( -/obj/structure/platform{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"lPt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"lPI" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lQi" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"lRh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) -"lRq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 4; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +"lQr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"lQx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "2-5" +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"lQM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"lQY" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"lRe" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"lRo" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"lRI" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "vault_v2" +"lRr" = ( +/obj/item/device/multitool, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"lRO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"lRP" = ( +/obj/structure/machinery/conveyor_switch{ + id = "anomalybelt" }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"lRW" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"lSp" = ( -/obj/structure/machinery/blackbox_recorder, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"lSN" = ( -/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/cable, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"lSx" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/sw) +"lTi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) -"lSY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"lTs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"lTv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Relaxation" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"lTh" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"lTO" = ( +"lTC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"lTF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"lUm" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"lUQ" = ( +/obj/structure/machinery/computer/aifixer, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"lTK" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_north) +"lTO" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"lTQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Meeting Room" + }, /turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"lUZ" = ( +/area/bigredv2/outside/admin_building) +"lTZ" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/s) +"lUt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreencorners2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"lVj" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 2 +"lUE" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"lUM" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"lUS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/high_explosive/frag{ + desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lVx" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Xenobiology" +"lUX" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/caves_north) +"lVU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lWd" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_lambda) +"lWi" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 1; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"lVM" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"lVT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/hatchet, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"lWW" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lWn" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lambda_cave_cas) +"lWM" = ( +/obj/item/tool/pickaxe/drill, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"lWT" = ( +/obj/item/device/flashlight, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "lXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"lXI" = ( /obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/landing/console2) +"lXv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, /obj/effect/spawner/random/tech_supply, -/obj/item/handset, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"lXM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"lXT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"lXL" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "lYc" = ( -/obj/structure/machinery/light{ +/obj/structure/closet/l3closet/scientist, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"lYn" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"lYs" = ( +/obj/structure/showcase, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"lYg" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"lYv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"lYH" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"lYW" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Office" }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"lYP" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/podhatchfloor, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "lYY" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_east) "lYZ" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"lZf" = ( -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"lZG" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_cave_cas) -"lZZ" = ( +"lZY" = ( +/obj/structure/machinery/light, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"may" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"mah" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"man" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/item/tank/air, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"mao" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light/built{ - dir = 4 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) "maF" = ( /obj/item/frame/rack, /obj/effect/landmark/good_item, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mbe" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/device/defibrillator, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) "mbi" = ( +/obj/structure/machinery/computer/operating, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"mbj" = ( +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + name = "supply crate" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mbl" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"mbB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mbt" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"mbJ" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"mbG" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_south_cas) -"mbN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"mbO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"mch" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"mcp" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"mbS" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/area/bigredv2/outside/space_port_lz2) +"mcv" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"mcx" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_x = 7; + pixel_y = 12 }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"mcO" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cargo_containers" }, -/turf/open/mars_cave/mars_cave_3, +/turf/closed/wall/solaris, +/area/bigredv2/outside/cargo) +"mcS" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"mcL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"mdf" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"mcP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"mcQ" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/area/bigredv2/outside/telecomm) +"mdR" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"meG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mcT" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"meI" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"mds" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/space_port_lz2) -"mdL" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"meP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"meT" = ( +/turf/open/mars, +/area/bigredv2/outside/eta) +"meW" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"mfb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"mea" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"mel" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"meJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/door_control{ - id = "tcomms"; - name = "Storm Shutters"; - pixel_x = -32 +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"mfE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"meT" = ( -/turf/open/mars, -/area/bigredv2/outside/eta) -"meU" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"mfT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_y = -32 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"meV" = ( -/turf/open/floor/asteroidwarning/southwest, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) -"mfe" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/structure/machinery/light{ - dir = 8 +"mfY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"mff" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/lz2_south_cas) -"mfp" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"mgj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ore/diamond, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mgu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Quartermaster" }, -/turf/open/floor, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) -"mfI" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/eta/xenobiology) -"mfL" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"mfM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +"mgG" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"mfS" = ( -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"mfW" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"mfY" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"mhb" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"mgi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"mgr" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light/small/built{ + dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"mgv" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"mhr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"mgN" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/virology) -"mhs" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"mhz" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/shard, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"mhA" = ( -/obj/structure/showcase{ - icon_state = "bus" +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"mhu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/carpet9_4/west, -/area/bigredv2/caves/eta/living) +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"mhB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) "mhG" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = -3 @@ -16986,256 +16578,268 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"miC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"miH" = ( -/obj/structure/disposalpipe/junction, -/turf/open/mars_cave/mars_cave_2, +"mhN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 + }, +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) +"mij" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/research) +"mja" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"mjb" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_north) +"mjc" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) "mji" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "\improper Engineering Workshop" }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"mjo" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"mjv" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves/eta/research) -"mjC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"mjG" = ( -/obj/structure/machinery/light, -/obj/structure/window{ +"mjt" = ( +/obj/structure/largecrate, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/woodentable, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 11 +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"mju" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/river, +/area/bigredv2/outside/c) +"mjS" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mkk" = ( +/obj/structure/cable, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"mkv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"mkx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) "mky" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/se) -"mkV" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"mlx" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "containerroom_xenos" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/nw/ceiling) -"mlJ" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"mlM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic Treatment" +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"mln" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"mlW" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"mlX" = ( -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"mmo" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light{ +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"mlx" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"mlM" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"mmL" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_virology) -"mmM" = ( -/obj/structure/closet/crate, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"mne" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Oxygen Supply Console" - }, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mno" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - req_one_access_txt = "19;200" - }, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Communications"; - pixel_x = -18 - }, /turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"mnp" = ( -/obj/item/device/multitool, -/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) -"mns" = ( -/obj/structure/machinery/light, +"mma" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"mmn" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"mmp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"mnz" = ( -/obj/structure/filingcabinet, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"mnC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"mnO" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"mmU" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"mnY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"moT" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"moV" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"mmX" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) +"mnB" = ( +/obj/structure/fence, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"mpx" = ( -/obj/structure/machinery/optable, -/turf/open/floor/whiteblue/east, -/area/bigredv2/outside/medical) -"mpC" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 +/area/bigredv2/outside/filtration_cave_cas) +"mnD" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" }, -/obj/structure/platform_decoration/shiva{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"mnW" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump, +/obj/item/trash/cheesie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mox" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"moW" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) +"moY" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"mpp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"mpz" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/telecomm/n_cave) +"mpM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) +/turf/open/floor/delivery, +/area/bigredv2/outside/eta) +"mql" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) "mqo" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"mqF" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mra" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"mrc" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) -"mrw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"mrE" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mqJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mqO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"msh" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"msz" = ( +"mrb" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"mrA" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; + dir = 8; health = 25000 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"msC" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"mrE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"mrT" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"msE" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 +"mrY" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mst" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"msM" = ( +/obj/structure/platform/shiva{ + dir = 1 }, -/obj/item/trash/chips, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"msY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) "mta" = ( -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"mtu" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/darkyellow2/north, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"mtC" = ( -/obj/structure/curtain/red, -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, +"mtl" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/eta/xenobiology) +"mtm" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"mty" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"mtJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) +"mtI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) "mtL" = ( /obj/structure/bed/chair/office/dark{ dir = 4; @@ -17244,155 +16848,151 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mtN" = ( -/obj/structure/bed/chair/comfy/black{ +"mtO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"muE" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/se) +"muF" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper General Store" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"muP" = ( +/turf/closed/wall/wood, +/area/bigredv2/caves_research) +"mvk" = ( +/obj/structure/platform/kutjevo/rock{ dir = 8 }, -/obj/structure/machinery/camera/autoname{ +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"mtS" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_se) -"mub" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/red, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"mug" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/lambda/research) -"muo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"muv" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"muP" = ( -/turf/closed/wall/wood, -/area/bigredv2/caves_research) -"muQ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"mvd" = ( -/obj/structure/largecrate/guns, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"mvm" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/w) -"mvT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, +/area/space) +"mvN" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"mvW" = ( +/obj/structure/surface/table, +/obj/item/book/manual/nuclear, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"mwh" = ( +/obj/structure/machinery/conveyor{ + dir = 9; + id = "anomalybelt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"mwk" = ( -/obj/structure/machinery/light{ +/area/bigredv2/caves/lambda/research) +"mwA" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"mwx" = ( -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"mwP" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = 28 +/obj/structure/machinery/door/window{ + dir = 1; + opacity = 1 }, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"mxd" = ( -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"mxx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"myl" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite, +/area/bigredv2/caves/lambda/virology) +"mwK" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"mxa" = ( +/obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"myr" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"myw" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"mzk" = ( -/obj/structure/bed, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"mxM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"mzn" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/research) -"mzE" = ( -/obj/structure/pipes/vents/pump{ +"myf" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"mzI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"mzN" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"myE" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"myH" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"myK" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"mzv" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/filtration_cave_cas) +"mzD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"mzI" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"mAh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"mAo" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"mAu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"mAB" = ( +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"mAG" = ( +/turf/open/floor/darkpurple2/northwest, +/area/bigredv2/caves/lambda/research) +"mAY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"mAP" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, +/area/bigredv2/outside/virology) +"mBe" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"mAW" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"mBj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"mBi" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) "mBo" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_x = -7; @@ -17401,119 +17001,200 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "mBv" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/n_cave) -"mBF" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz2_south_cas) +"mBx" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"mBC" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) "mBI" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor, /area/bigred/ground/garage_workshop) -"mCj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"mCV" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -32 }, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"mCD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/restraint/handcuffs, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"mCF" = ( +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"mCW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"mCU" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"mDh" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"mCX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/white, -/area/bigredv2/outside/virology) +/obj/structure/platform_decoration/shiva, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "mDk" = ( /obj/structure/dispenser/oxygen, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"mDE" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/c) -"mEy" = ( +"mDn" = ( /obj/structure/surface/table, -/obj/item/trash/burger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"mEA" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"mEE" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"mDt" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mDF" = ( /turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lz2_south_cas) -"mEN" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/toxin, +/area/bigredv2/caves_north) +"mDG" = ( +/obj/structure/bed/chair/office/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"mEW" = ( -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_color = "blue"; - phone_id = "Director" +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"mEo" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"mGb" = ( -/obj/item/tool/pen, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"mEq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"mEM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"mFg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/restraint/adjustable/cable/cyan, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"mFC" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"mFS" = ( /turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"mGW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"mHe" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/space_port_lz2) -"mHf" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves) -"mHg" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"mFU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"mGf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"mGn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Holding Cell" }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"mHk" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"mGs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mGy" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"mGz" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"mGY" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"mHa" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pen, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"mHh" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"mHL" = ( -/obj/structure/machinery/vending/coffee, +"mHk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"mHu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"mHA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"mHE" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"mHO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2/north, /area/bigredv2/outside/admin_building) +"mIf" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"mIs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mIt" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) "mIu" = ( /obj/structure/machinery/light{ dir = 4 @@ -17521,575 +17202,691 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mIB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, +"mIO" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"mIS" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engineering Secure Storage" + }, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"mIJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"mIO" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -32 +"mJf" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"mJj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Operations" }, -/obj/item/stack/sheet/metal{ - amount = 30 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"mJw" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"mJO" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/nw) +"mJV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"mJd" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/telecomm/n_cave) -"mJD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"mJI" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"mJX" = ( -/obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"mKx" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"mKB" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"mJY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"mKL" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/n) +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "mKM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"mLr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" +"mKS" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mKW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"mLR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mMb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"mLy" = ( -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"mLD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"mLQ" = ( +"mMr" = ( /obj/structure/curtain/medical, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) -"mLW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab" +"mMz" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"mMN" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"mNl" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"mMo" = ( -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"mMv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/glass, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"mMw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"mNK" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"mOp" = ( +/obj/effect/decal/cleanable/mucus, /turf/open/floor/darkgreencorners2, /area/bigredv2/caves/lambda/virology) -"mMG" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"mMQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/copper{ - pixel_y = 1 +"mOA" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "eta"; + name = "Eta Lockdown" }, -/obj/item/stack/sheet/mineral/osmium{ - pixel_y = 6 - }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_y = 12 +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"mOF" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/n) +"mOL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"mPb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"mPe" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"mPk" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mMW" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"mMY" = ( -/obj/item/weapon/gun/boltaction, -/turf/open/floor/plating/platingdmg3/west, +/obj/item/weapon/baseballbat, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"mNg" = ( -/obj/structure/largecrate/random/case, +"mPp" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mPt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" + }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"mNn" = ( +"mPI" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/pen, -/turf/open/floor/darkyellow2/east, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"mNp" = ( +"mPR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper General Store Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"mQi" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"mQn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) -"mNt" = ( -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"mNv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 +"mQr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-4-8"; + name = "heavy duty power cable" }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"mPe" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"mPk" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"mQh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"mQn" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "chapel_cult" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"mQL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"mQu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_lambda) -"mQX" = ( -/obj/item/tool/warning_cone, /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"mQZ" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"mRk" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/area/bigredv2/outside/e) +"mRn" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"mRm" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_research) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "mRD" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/atmos_alert, /turf/open/floor, /area/bigredv2/caves) -"mRE" = ( -/obj/structure/machinery/power/reactor/colony{ - name = "Reactor Turbine" +"mSc" = ( +/obj/item/paper/bigred/witness, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"mSl" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"mSo" = ( +/obj/structure/machinery/door_control{ + id = "filtration"; + name = "Filtration Lockdown"; + pixel_x = 30; + throw_range = 15 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"mSz" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"mTg" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, +/obj/effect/decal/cleanable/blood/oil/streak{ + pixel_y = 4 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"mTF" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/n) +"mTZ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"mUb" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"mUs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"mVl" = ( /turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"mRM" = ( -/obj/structure/closet/secure_closet/bar, +/area/bigredv2/outside/library) +"mVo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"mVF" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"mRS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife, -/turf/open/floor/yellowfull, +"mVJ" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) -"mRV" = ( +"mVL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"mWj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"mWE" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"mRY" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_cave_cas) -"mSv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"mSB" = ( +/obj/item/storage/firstaid/toxin, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"mSE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/whiteyellow/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"mSH" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mWN" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"mTo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) -"mTu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"mTv" = ( -/obj/effect/decal/cleanable/dirt, +"mWO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"mTZ" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"mUh" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "workshop_br_g"; - name = "\improper Workshop Garage" - }, -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"mUS" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/filtration_cave_cas) -"mUU" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor/whitegreencorner/north, /area/bigredv2/outside/medical) -"mVx" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/eta) -"mVy" = ( +"mXm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"mVI" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"mVN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Eta Lab Restroom" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Eta Lab Security Office" }, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"mVU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/bigredv2/caves/eta/storage) +"mXo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"mXu" = ( +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"mXM" = ( +/obj/structure/bed, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"mWl" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/bigredv2/outside/marshal_office) +"mXN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 }, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"mXR" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"mYf" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"mYk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"mWp" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"mWs" = ( -/obj/item/folder/yellow, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"mYt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -30 }, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"mWz" = ( -/obj/item/tool/warning_cone{ - pixel_x = 5; - pixel_y = 13 +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"mWZ" = ( -/obj/effect/spawner/gibspawner/human, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/obj/structure/machinery/light/built{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"mYH" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves) +"mYU" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"mZy" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"mZD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Atmospherics Condenser" + name = "\improper Cargo Bay Offices" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"mXh" = ( /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"mYx" = ( -/obj/item/stack/sheet/wood{ - amount = 2 +/area/bigredv2/outside/cargo) +"mZK" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"mYL" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"mYV" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"mZg" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"mZh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"mZy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) "mZX" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"nab" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nad" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"naf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"nap" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) -"naq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"naX" = ( -/obj/effect/decal/hefa_cult_decals/d32, +"nan" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"nax" = ( +/obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nbp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"naD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"ncn" = ( +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) +"naH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"nbr" = ( +/obj/structure/girder/reinforced, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"nbE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"nbX" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"ncu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ncd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ncl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"ncx" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"ncK" = ( -/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) -"ndR" = ( -/obj/effect/decal/cleanable/liquid_fuel, +"ncw" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/caves/eta/research) +"ncz" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/east, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"ncG" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"ndh" = ( +/obj/item/trash/popcorn, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/virology) +"ndo" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"nej" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves_research) -"neW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"nfa" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"nfj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"ndt" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/sw) +"ndx" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"nfE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"neh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/marshal_office) -"nfK" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"nfM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"nga" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/n) -"nhh" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/ne) -"nhy" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"nej" = ( +/obj/item/tool/pickaxe{ + pixel_y = -3 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"nhG" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"nhK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"nid" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper General Store" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nez" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Xenobiology" }, /turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"nio" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"niE" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"niL" = ( +/area/bigredv2/caves/lambda/xenobiology) +"neI" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"neO" = ( +/obj/structure/bed/chair, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"nfr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ngm" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ngx" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) +"ngK" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"ngU" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"nhJ" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nhL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"nhY" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"nig" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"nih" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"nir" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"niD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"niN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) -"niS" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, +"niW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"njn" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"njp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"njw" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "admin_pmc" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"njI" = ( +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) -"njl" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"njM" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) +"nki" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"nkm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"nkp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "nky" = ( /obj/structure/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) -"nkM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"nld" = ( -/obj/structure/machinery/computer/station_alert, +"nkO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"nkP" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"nli" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) +/obj/item/tool/surgery/cautery, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "nls" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"nlF" = ( -/obj/structure/machinery/camera/autoname{ +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nlD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"nlM" = ( +/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/structure/cable{ + icon_state = "1-9" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-5" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nlQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Administration Wing" }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"nlG" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nlR" = ( -/obj/structure/closet/crate/internals, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) "nlW" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -18098,26 +17895,39 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/mars, /area/space) -"nms" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"nmD" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"nmT" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +"nmh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"nmw" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"nmB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Virology Lab" }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"nno" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/e) -"nnt" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"nmU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_virology) +"nmX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"nnl" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_research) +"nnr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, @@ -18125,44 +17935,112 @@ /turf/open/floor/dark, /area/bigredv2/outside/engineering) "nnz" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"nnC" = ( -/turf/open/floor/whitepurplecorner, -/area/bigredv2/caves/lambda/research) +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"nnI" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) "nnJ" = ( -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"nou" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"nnU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"npd" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"npj" = ( -/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"noC" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"npw" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"noJ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"noS" = ( +/obj/item/reagent_container/spray/plantbgone, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"npe" = ( +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"npg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E-corner" + icon_state = "NE-out" }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "viro_q"; + layer = 4; + name = "Qurantine Lockdown"; + normaldoorcontrol = 1; + pixel_x = -25; + req_access_txt = "7"; + specialfunctions = 4 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"npD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "npL" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"npN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"npQ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"nqi" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -6 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) "nqr" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -18170,867 +18048,819 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"nqS" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"nrf" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"nrl" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"nrv" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"nry" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"nsl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"nsq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"nsF" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/lz2_south_cas) -"ntd" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"ntk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"nqx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"ntp" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nqR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" }, -/obj/item/tank/air, -/turf/open/floor/darkyellow2/northwest, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"ntt" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"ntG" = ( -/obj/structure/machinery/light{ +"nqV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"nrA" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"nrK" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"ntJ" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"ntM" = ( -/obj/structure/largecrate, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"ntU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"nug" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +/area/bigredv2/outside/marshal_office) +"nrN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"nul" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, /turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"nuq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"nuu" = ( +/area/bigredv2/outside/medical) +"nrQ" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c1, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"nsj" = ( /obj/structure/bed, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"nsB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice/d20, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nsF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"nuK" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"nuT" = ( -/obj/structure/machinery/computer/cameras, +"nsL" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ntq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ntw" = ( /obj/structure/surface/table, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/research) -"nuV" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_id = "Workshop" }, -/turf/open/mars_cave/mars_cave_3, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"nuO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nvr" = ( +"nuU" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"nvf" = ( +/obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"nvW" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"nwd" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"nwu" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"nvX" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/filtration_cave_cas) +"nvY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"nwa" = ( /obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"nwt" = ( +/obj/structure/dispenser/oxygen, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"nwv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"nxm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"nxx" = ( -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"nxA" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/area/bigredv2/outside/general_offices) +"nwy" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"nxL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"nyg" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nxc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/eta/research) -"nyq" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"nyz" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"nzg" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"nzn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"nxu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"nxW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/caves/lambda/virology) +"nyf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"nyx" = ( +/obj/structure/machinery/light, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"nzs" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/sw) -"nzu" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"nzI" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"nzJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"nzM" = ( -/obj/structure/tunnel{ - id = "hole5" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"nAe" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"nAn" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/obj/item/device/flashlight/lamp, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"nAD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"nAE" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" +"nyz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"nAF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"nyE" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"nyK" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nyO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"nzw" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"nzU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"nAI" = ( -/turf/open/floor/darkblue2/southeast, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"nAq" = ( +/obj/item/weapon/gun/smg/m39, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) -"nAM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/structure/machinery/light{ - dir = 8 +"nAU" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"nAZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/high_explosive/frag{ - desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nCB" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"nCE" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"nCJ" = ( +/obj/structure/platform/shiva{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nBd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"nBt" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"nBx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"nBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) +"nCN" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) "nCT" = ( /obj/structure/sign/poster/ad, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"nCW" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/caves/eta/research) "nCX" = ( /obj/structure/closet/crate/miningcar/yellow{ layer = 3 }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"nDp" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/turf/open/floor/carpet10_8/west, +/area/bigredv2/caves/eta/living) "nDt" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/caves_north) -"nDz" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"nDG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"nDF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Technical Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) "nDH" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"nDK" = ( /obj/structure/machinery/light{ dir = 8 }, +/obj/structure/machinery/teleport/station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"nDL" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"nDM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"nDV" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"nEr" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/n) +"nFo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"nFv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"nFC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"nFI" = ( +/obj/structure/bed, +/obj/item/prop/alien/hugger, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, /turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nDZ" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/area/bigredv2/outside/admin_building) +"nFK" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"nEn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"nFP" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"nEu" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"nEL" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"nFe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Virology Lab Decontamination" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nFV" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"nFE" = ( +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"nGj" = ( /obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Space Port" - }, +/obj/effect/spawner/random/tool, /turf/open/floor/dark, /area/bigredv2/outside/space_port) -"nFR" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"nGe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"nGu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"nGO" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"nHr" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"nHP" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"nHT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"nGi" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/bladerunner{ + pixel_y = 3 }, -/obj/structure/plasticflaps, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"nGA" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_north) -"nHe" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/caves_lambda) -"nIW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nHY" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"nJb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"nIi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /obj/structure/machinery/camera/autoname{ - dir = 8 + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"nJt" = ( -/obj/structure/surface/table, /turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"nJU" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 +/area/bigredv2/outside/filtration_plant) +"nIj" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"nIt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"nIw" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"nII" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "viro-rock_open" }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"nJS" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"nKm" = ( +/obj/structure/airlock_assembly, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nJZ" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +"nKq" = ( +/obj/structure/machinery/door_control{ + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -28; + req_access_txt = "106"; + specialfunctions = 4 }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"nKi" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"nKr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"nKJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"nKs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/obj/structure/surface/table, -/obj/item/storage/box/m94, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"nKY" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"nKu" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplefull, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"nKy" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"nKB" = ( +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) -"nLd" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"nLf" = ( +"nKC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"nLi" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"nLy" = ( -/obj/structure/surface/table, -/obj/item/alienjar, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"nLO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/obj/structure/machinery/light/small, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"nLP" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nKK" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/effect/decal/cleanable/cobweb2, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"nLW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"nLX" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/area/bigredv2/outside/general_offices) +"nLq" = ( +/obj/item/paper/bigred/walls, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nMu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" +"nLD" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"nLM" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"nMw" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/xenobiology) -"nML" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"nMS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Abandoned Mining Storage" +/obj/structure/cable, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control, +/obj/structure/cable{ + icon_state = "11-2" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nNv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"nNG" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"nNL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"nMa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"nMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"nNO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"nNV" = ( -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"nOg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/general_offices) -"nOp" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"nOs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"nOQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"nOV" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"nPD" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/n) -"nPF" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/firealarm, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"nQr" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"nMJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"nMO" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/outside/admin_building) -"nQC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nQE" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"nMQ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"nMT" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"nNb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Greenhouse Storage" }, /turf/open/floor/delivery, +/area/bigredv2/outside/library) +"nNg" = ( +/turf/open/floor/darkgreen2/west, /area/bigredv2/caves/eta/xenobiology) -"nQF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/darkyellow2/east, +"nNQ" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"nNY" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"nNZ" = ( +/turf/open/floor/almayer/w_y1/north, +/area/bigredv2/outside/admin_building) +"nOd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"nOl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Chief Engineer's Office" + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"nQO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"nQU" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 +"nOq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"nRb" = ( -/obj/structure/platform/shiva{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nOG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory" }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"nRd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"nOJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"nOS" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) -"nRj" = ( +"nPp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/plating/warnplate/southeast, -/area/bigredv2/outside/telecomm/warehouse) -"nRm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"nRo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"nRJ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"nPC" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"nPZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"nQa" = ( /obj/structure/surface/table, -/obj/item/clothing/glasses/science, -/turf/open/floor/whitepurple/north, +/obj/item/circuitboard/solar_tracker, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"nQw" = ( +/turf/open/floor/podhatch/north, /area/bigredv2/caves/lambda/research) -"nRM" = ( -/obj/effect/decal/cleanable/dirt{ - pixel_x = 17 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +"nQH" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"nSB" = ( +"nQY" = ( +/obj/item/weapon/shield/riot, /obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6; - pixel_y = 10 + pixel_x = -8; + pixel_y = 6 }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"nSF" = ( +"nRd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"nRi" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"nRz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowcorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"nRZ" = ( /obj/structure/surface/table, -/obj/item/weapon/baton, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"nSQ" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"nTr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/tonic, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"nSu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) +"nTq" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"nTt" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) "nTu" = ( -/obj/structure/surface/table, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"nTH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"nTE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"nTI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "nTW" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"nUb" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"nTZ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) "nUk" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/telecomm/n_cave) -"nUn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"nUq" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"nUx" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"nUL" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"nUN" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"nVa" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz1_north_cas) +"nVg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"nVy" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"nVY" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"nWj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/lambda/xenobiology) +"nWk" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"nWv" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 }, +/obj/item/tool/lighter/zippo, /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) -"nUy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"nWC" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/xenobiology) -"nUz" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 15 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"nUD" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"nUM" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"nWO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"nUP" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"nVp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"nVH" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nWu" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" + dir = 6 }, -/turf/open/floor/darkred2/north, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"nWw" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"nWC" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"nWG" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/ne) -"nWM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" +"nXA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab" }, /turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"nXc" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"nXi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"nXv" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"nXx" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"nXy" = ( -/obj/structure/closet/toolcloset, +/area/bigredv2/caves/lambda/research) +"nXL" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/filtration_plant) +"nXX" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"nYc" = ( +/obj/item/tool/hatchet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"nYg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"nXV" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"nYl" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"nYs" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"nYu" = ( /obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"nYt" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"nYN" = ( -/obj/structure/prop/dam/truck/mining{ - desc = "A crawler, imported from the Alpha Centauri colonies."; - dir = 1; - icon_state = "crawler_crate_alt"; - name = "crawler" +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"nYO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"nYT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/s) +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) "nYV" = ( /obj/item/tool/warning_cone, /turf/open/mars, /area/bigredv2/outside/s) -"nZa" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/n_cave) -"nZe" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe{ - pixel_y = -7 +"nYZ" = ( +/obj/item/folder/yellow, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"nZC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/obj/item/tool/pickaxe{ - pixel_y = -3 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"nZE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig" }, -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"nZG" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_se) +"nZI" = ( +/obj/item/ore{ + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"nZf" = ( -/obj/structure/machinery/door_control{ - id = "General Store"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) "nZK" = ( /obj/item/ore/diamond, /obj/item/stack/sheet/mineral/diamond{ @@ -19040,1189 +18870,1198 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"oap" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"oav" = ( +"oaj" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) -"oax" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"oaz" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_sw) -"oaC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"oaY" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"obd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen" +"oak" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"oaL" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"oaQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"obc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) "obf" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-graveyard" }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/se) -"obx" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +"obw" = ( +/obj/structure/surface/table, +/obj/item/folder/black, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"oby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"obD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"obO" = ( +/obj/limb/arm/l_arm, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"obP" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves) +"oce" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"obI" = ( -/obj/structure/machinery/botany, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"obU" = ( -/obj/structure/machinery/photocopier, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"ocg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"och" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"oco" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/caves/lambda/breakroom) "ocp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/eta/research) -"ocL" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"odm" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/eta) +"ocE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ocI" = ( +/obj/item/trash/chips, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ocW" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_research) "odo" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ - dir = 1 + dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"odt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/tool/extinguisher, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) "odw" = ( /obj/structure/bed, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"odD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"odS" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oeH" = ( -/obj/structure/machinery/door_control{ - id = "Chapel"; - name = "Storm Shutters"; - pixel_x = -32 +"odE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"oef" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"oel" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"oet" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"oeu" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"oew" = ( +/obj/structure/machinery/botany/editor, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"oeL" = ( +/turf/open/floor/whitegreen_v/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"oeC" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"oeO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"oeH" = ( +/obj/item/ore, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"oeW" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_sw) +"oeU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"oeY" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"off" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/virology) "ofn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"oft" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +"ofI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ofA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"ofB" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"ofC" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/telecomm/warehouse) +"ofJ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"ofW" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) "ofX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/s) -"ogg" = ( -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) +"ofZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"ogf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "ogs" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"ogN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"ogP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/radiation, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"ohk" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"ogv" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"ogK" = ( +/obj/item/tool/wrench, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"ogL" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ogM" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) -"oht" = ( -/obj/structure/sink{ - pixel_x = 1; - pixel_y = 20 +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"ogT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/mirror{ - pixel_y = 29 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/turf/open/floor/freezerfloor, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"ohw" = ( +"oht" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/eta/xenobiology) +"ohE" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"ohI" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/telecomm) +"ohL" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) "ohY" = ( /obj/structure/cargo_container/hd/left/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"oid" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) "oie" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"oii" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"oij" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, /turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"oik" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"oim" = ( -/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"oit" = ( +"oiC" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"oiE" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"oiR" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/lambda_cave_cas) +"ojp" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"ojS" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/holdout, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"okd" = ( /obj/structure/machinery/door_control{ - id = "Medical"; + id = "Marshal Offices"; name = "Storm Shutters"; - pixel_y = 32 + pixel_x = -32 }, -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"oiV" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"oki" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"okk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lambda Labs"; - phone_id = "Surgery"; - pixel_y = 24 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"okK" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"oje" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/white, +/area/bigredv2/outside/chapel) +"okQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) -"ojk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"ojw" = ( +"okU" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"ojD" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"okY" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"olf" = ( +/obj/structure/window/framed/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"olC" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"olG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/gm/river, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"olH" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"olJ" = ( +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"omC" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"ojL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"ojO" = ( -/obj/effect/landmark/survivor_spawner, +"omS" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) +"onn" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"onz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"okz" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"onR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"ooe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/platform/kutjevo/rock{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"oou" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"ooV" = ( +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/obj/structure/platform_decoration/kutjevo/rock{ +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"opc" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"okB" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"olr" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"olP" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves/eta/xenobiology) -"omW" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"opx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"oqc" = ( +/obj/item/robot_parts/robot_component/diagnosis_unit{ + pixel_y = 15 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"oqf" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) -"omZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"onc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +"oqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"ora" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "\improper Telecommunications" + name = "\improper Marshal Office Equipment" }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"osY" = ( +/obj/item/device/radio/headset, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) -"ong" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "eta_carp" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"onr" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "medbay-v3" +"ote" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"oti" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"ony" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz1_north_cas) -"onB" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"onR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/broken, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"onU" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"oon" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oua" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"ovd" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"oor" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"ove" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"ooJ" = ( +/obj/structure/machinery/door_control{ + id = "Bar Complex"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ovj" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"ovt" = ( +/obj/structure/prop/tower, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"ovK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"ovN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"owb" = ( +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"owr" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"owA" = ( +/obj/structure/bed/chair, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"owI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"ooQ" = ( -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"opj" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/sw) -"opD" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"opP" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/bigredv2/outside/filtration_plant) +"owQ" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"oxi" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"opQ" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-5" }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"oqN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"oqO" = ( -/obj/structure/girder/displaced, /turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"orE" = ( +/area/bigredv2/caves/mining) +"oxk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"oxH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"osr" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"oxL" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"oxM" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, /turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"osD" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/s) -"osI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"osP" = ( -/turf/open/floor/purple, -/area/bigredv2/caves/lambda/research) -"otx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 +/area/bigredv2/outside/admin_building) +"oxP" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"oyA" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + id_tag = "mbayexit"; + name = "Medbay Reception"; + req_one_access_txt = "2;8;19" }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/whitegreencorner, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"otP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Dormitories" +"oyH" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"oyJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + amount = 30 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"otY" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"oyL" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"oyQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"oze" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"ozp" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/lambda_cave_cas) +"ozv" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_virology) +"ozD" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lambda_cave_cas) +"oAq" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"oAr" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"oAv" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"oAw" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"oAV" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"oBz" = ( +/obj/structure/closet/l3closet/security, /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"oBA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"ous" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"out" = ( -/obj/item/trash/popcorn, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/virology) -"ouE" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"oBR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"oCB" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"oCM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Server" + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"oDb" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/eta) +"oDe" = ( /obj/structure/surface/table, -/obj/item/oldresearch/Blood, -/obj/item/oldresearch/Blood, -/obj/item/paper, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"ouJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/storage/box/beakers, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"oDy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"oDJ" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"oDV" = ( /obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"oEf" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"oEg" = ( +/obj/structure/machinery/computer/telecomms/traffic, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"oEj" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/n) +"oEM" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/baton/loaded, +/obj/item/weapon/twohanded/spear{ + pixel_x = -16; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"oEY" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"oFv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"ouU" = ( -/turf/open/mars/mars_dirt_12, +"oGb" = ( +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/sw) -"ouY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/whitegreencorner, +"oGq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) +"oGz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"ova" = ( +"oGK" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ovy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"oGL" = ( +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"oGS" = ( +/obj/effect/spawner/random/tool, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"oGX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"oHe" = ( +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/s) -"owf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +"oHh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/red/north, -/area/bigredv2/outside/marshal_office) -"own" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"owu" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"owL" = ( +"oHm" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"oHE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"owT" = ( +/area/bigredv2/outside/engineering) +"oHP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"oxk" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"oxn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/outside/medical) +"oIi" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"oxB" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" +/area/bigredv2/outside/general_offices) +"oIr" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"oIt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"oyn" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"oIv" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"oyu" = ( +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"oIW" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/powercell, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"oyx" = ( -/obj/structure/fence, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oJf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"oJH" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oJM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/podhatch/northeast, +/area/bigredv2/caves/lambda/research) +"oJN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"oKA" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/xenobiology) +"oKC" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"oKS" = ( +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/n_cave) -"oyE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"oyR" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"ozq" = ( +"oLl" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"oLM" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"ozv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/bigredv2/caves_virology) -"ozz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"oBw" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"oBz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"oCi" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"oCj" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"oCl" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"oMb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"oMe" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"oMZ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"oNv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"oCT" = ( -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"oDA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Telecommunications" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm) -"oEl" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"oEL" = ( -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"oFa" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"oNV" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oOB" = ( +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/c) -"oFj" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"oFv" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 +"oOF" = ( +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 5; + pixel_y = -5 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"oFZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/weapon/gun/smg/bizon{ + pixel_x = 1; + pixel_y = 11 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"oGn" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/lambda/xenobiology) -"oGx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 11; + pixel_y = -3 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"oGC" = ( -/obj/structure/platform_decoration/shiva{ +/obj/item/ammo_magazine/smg/bizon, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/platform_decoration/shiva, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"oGH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper General Store Security" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oOP" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"oHc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/loadingarea/north, -/area/bigredv2/caves/eta/storage) -"oHf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"oHH" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"oOU" = ( +/obj/structure/machinery/light, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/lambda/xenobiology) +"oPy" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"oHI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"oHM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"oHV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"oHW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/purple/northwest, -/area/bigredv2/caves/lambda/research) -"oIC" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oIH" = ( /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"oIK" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +/area/bigredv2/caves/eta/storage) +"oPV" = ( +/obj/structure/machinery/access_button/airlock_exterior{ + master_tag = "viro_controller"; + pixel_y = -28 }, -/obj/structure/platform_decoration{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/gm/river, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"oQg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) -"oJb" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"oQC" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz2_south_cas) +"oQJ" = ( +/obj/item/folder/yellow, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"oQX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"oJC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"oRa" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"oJR" = ( +/area/bigredv2/outside/library) +"oRj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"oJV" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 8; - pixel_y = 32 +/area/bigredv2/caves/mining) +"oRA" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"oRC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"oJY" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"oKq" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/w) -"oKS" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"oKX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"oSb" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_south_cas) +"oSj" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"oLp" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"oSF" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"oTo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"oLK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/lambda/research) -"oLN" = ( -/turf/open/floor/warnwhite/north, -/area/bigredv2/outside/virology) -"oLR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Medical Clinic Power Station" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"oML" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"oMN" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/obj/structure/cable, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oMO" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"oMY" = ( -/obj/structure/machinery/computer/area_atmos{ - dir = 1 - }, +/area/bigred/ground/garage_workshop) +"oTt" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"oMZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"oNa" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"oNe" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"oTI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"oTY" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"oNL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"oNX" = ( -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/weapon/gun/pistol/b92fs{ - pixel_x = 13; - pixel_y = -7 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"oOs" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves_east) -"oOI" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"oUj" = ( /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) -"oPc" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Holding Cell" +"oUK" = ( +/obj/item/ore/iron{ + pixel_x = 6; + pixel_y = 9 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"oPd" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"oUL" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/filtration_cave_cas) +"oUT" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"oVh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Access door" }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"oPr" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"oPt" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/disk/nuclear, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"oPL" = ( -/obj/structure/coatrack{ - pixel_x = 12 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"oVi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"oVk" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ - pixel_x = 11; - pixel_y = 4 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"oPM" = ( -/turf/open/floor/purple/southeast, -/area/bigredv2/caves/lambda/research) -"oQH" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz2_south_cas) -"oQS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"oVu" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"oRe" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"oVB" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"oVG" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/w) +"oVN" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/north, +/area/bigredv2/caves/lambda/xenobiology) +"oVQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"oRF" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oVS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/outside/medical) -"oRJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"oVW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"oWh" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, /turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"oRY" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"oSB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"oSE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer3/server, +"oWz" = ( +/obj/structure/surface/table, +/obj/item/weapon/baton, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"oSG" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_sw) -"oSQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"oSU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"oTl" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"oTJ" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"oUa" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump, -/obj/item/trash/cheesie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"oUg" = ( -/obj/structure/bed/chair, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oUi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"oWE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"oUp" = ( -/obj/structure/closet/crate/miningcar, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oUt" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oUB" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"oUO" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oUW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"oUZ" = ( -/turf/open/floor/asteroidfloor/north, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) -"oVq" = ( +"oWQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"oXa" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"oXb" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"oVB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/area/bigredv2/outside/engineering) +"oXG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"oXP" = ( +/obj/structure/tunnel{ + id = "hole3" }, -/turf/open/mars_cave/mars_dirt_5, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"oVV" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/door/window{ - dir = 1; - opacity = 1 - }, -/turf/open/floor/warnwhite, -/area/bigredv2/caves/lambda/virology) -"oWb" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"oWi" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"oWz" = ( -/turf/open/mars/mars_dirt_11, +"oYi" = ( +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/ne) -"oWN" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/virology) -"oWZ" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"oXi" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/tool/soap/deluxe, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"oXv" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"oXw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 4 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" +"oYq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"oXM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"oYd" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/research) -"oYi" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"oYj" = ( -/obj/structure/cable{ - icon_state = "11-2" +"oYD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oYn" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz1_telecomm_cas) -"oYy" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"oYL" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"oYP" = ( -/obj/structure/machinery/light/small{ - dir = 8 + dir = 6 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"oZk" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"oZn" = ( -/turf/open/mars_cave/mars_cave_20, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"oYN" = ( +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/ne) -"oZv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"oZC" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whitepurplecorner/north, +"oZD" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = -3 + }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"oZJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) "oZQ" = ( /turf/closed/wall/r_wall/unmeltable, /area/bigredv2/outside/filtration_plant) -"oZS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ +"pah" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/landing/console) -"pas" = ( -/obj/structure/surface/table, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"paC" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm) +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "paG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"paH" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"pbe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"pbi" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"pbj" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"paQ" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/mauler, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/floor4, -/area/bigredv2/outside/marshal_office) -"pbl" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/n) +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "pbr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_cave_cas) +"pbx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/caves/eta/research) +"pbB" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"pbE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) "pbX" = ( /obj/effect/spawner/random/tool, /obj/effect/decal/cleanable/dirt, @@ -20243,926 +20082,990 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"pcg" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/c) -"pct" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"pcw" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_east) -"pcB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/clipboard, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) "pcF" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"pcG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"pcH" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/s) -"pcY" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"pdJ" = ( -/turf/open/floor/carpet5_1/west, -/area/bigredv2/outside/admin_building) -"ped" = ( +"pcU" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"pem" = ( -/obj/structure/cable{ - icon_state = "5-6" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"pdk" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/marshal_office) +"pdp" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"pdK" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) "per" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/dorms) -"peI" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"peM" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore{ - pixel_y = 5 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +"pez" = ( +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"peU" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) "peW" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/c) +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) "peZ" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"pfb" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"pfi" = ( -/obj/item/stack/sheet/glass, +"pfJ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"pfL" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"pfr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"pgc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/elevatorshaft/north, +/area/bigredv2/outside/admin_building) +"pfO" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) -"pge" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3"; - pixel_x = 17 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_cave_13, +"pfT" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"phb" = ( -/obj/item/frame/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"phd" = ( -/obj/item/reagent_container/glass/rag, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"phj" = ( -/obj/structure/machinery/light{ - dir = 8 +"pgh" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"pgo" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"phr" = ( -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/xenobiology) -"phy" = ( /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"phA" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/area/bigredv2/caves/eta/storage) +"phg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"phl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Oxygen Supply Console" }, -/obj/item/stack/sheet/wood{ - pixel_y = -7 +/obj/structure/cable{ + icon_state = "11-2" }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pid" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"phv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"pii" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"phN" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) -"piB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"piG" = ( -/obj/structure/closet/jcloset, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"piH" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"phX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_15, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"pid" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"pis" = ( +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_north) -"piT" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"piv" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"pja" = ( -/obj/structure/machinery/computer/med_data{ - density = 0; - pixel_y = 16 +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"pjc" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"pjo" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/white, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) +"pjC" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"pjF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"pjI" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "pjL" = ( -/obj/structure/fence, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) +"pjN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/obj/item/weapon/shield/riot, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"pjP" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pjU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"pjZ" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"pjM" = ( -/obj/structure/bed/chair/office/dark{ +/area/bigredv2/outside/c) +"pkg" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"pkf" = ( -/obj/effect/landmark/crap_item, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"pkk" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/space_port_lz2) +"pkp" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/se) +"pkC" = ( +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"pki" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"pku" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"plj" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, +/area/bigredv2/outside/virology) +"pkF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/general_offices) +/area/bigredv2/caves/eta/research) +"pkX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"plh" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "plq" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/xenobiology) -"plr" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"plt" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"pls" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/purple/northwest, +/area/bigredv2/caves/lambda/research) +"pmp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"pmr" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/outside/admin_building) +"pmv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves/lambda/xenobiology) -"plu" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"plU" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/xenobiology) -"pme" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"pmi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice/d20, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/library) +"pmC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"pmD" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) "pmS" = ( /turf/open/mars, /area/bigredv2/caves_north) -"pnh" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"pnJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"pog" = ( -/obj/structure/platform{ +"pmX" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"poi" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"poz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"pnw" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/n_cave) +"pnH" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz1_telecomm_cas) +"pnO" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pnQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"pof" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pok" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"poO" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"ppd" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"ppp" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"ppr" = ( -/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"poo" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"pop" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"poA" = ( /turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"ppA" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"ppE" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"ppR" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"pqg" = ( +/area/bigredv2/caves/eta/research) +"poD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"pqo" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"pqG" = ( -/obj/effect/spawner/random/attachment, -/obj/structure/machinery/light{ +"poG" = ( +/obj/structure/platform{ dir = 4 }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"poU" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm/lz2_cave) +"poW" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pqR" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ +"poY" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_sw) +"ppb" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) -"prs" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"prJ" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ppl" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"ppn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"prT" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"prX" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_cave_cas) -"psc" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - density = 0; - pixel_y = 16 +/area/bigredv2/caves/eta/living) +"ppp" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ppt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"psr" = ( -/obj/structure/surface/table, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"psQ" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"ptn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"ptB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"ppz" = ( +/obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) -"ptH" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/filtration_cave_cas) -"ptL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"ppF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"ptR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ - name = "\improper Dormitories Restroom" +"ppG" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Control Center APC" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"pup" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_se) -"pvf" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz1_north_cas) -"pvJ" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"ppI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"pqB" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"pqI" = ( +/obj/structure/fence, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"pvP" = ( -/obj/structure/reagent_dispensers/fueltank, +/area/bigredv2/caves/mining) +"pqV" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"pwd" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/door/window{ - layer = 4 +"prh" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"prx" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"prH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"prQ" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"pwx" = ( -/obj/structure/cryofeed, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"psn" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"pwy" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) -"pwQ" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/s) -"pxi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"pxm" = ( +"psD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"psR" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"pxy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/filtration_plant) +"psS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Armory" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"ptd" = ( +/obj/structure/machinery/light, +/obj/structure/closet/cabinet, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"pxE" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"pxG" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +/area/bigredv2/caves/eta/living) +"ptj" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"ptt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic CMO's Office" }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -6; - pixel_y = 12 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"ptC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/outside/telecomm/warehouse) +"ptL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"ptW" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pua" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"puF" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"pvn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"pvN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"pye" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4 +"pwh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/plating/warnplate/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"pys" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pwK" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"pwV" = ( +/obj/item/tool/lighter/random, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/caves/lambda/virology) -"pyE" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"pyV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay" +"pxd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"pzq" = ( -/obj/structure/surface/table, -/obj/item/tool/pen/blue, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"pzv" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"pxh" = ( +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 20 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"pzx" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/mirror{ + pixel_y = 29 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"pzA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"pxj" = ( +/obj/structure/prop/dam/crane, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"pxx" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"pxB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"pzB" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Director's Office" }, -/turf/open/floor/freezerfloor, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) -"pzV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper General Store Storage" +"pxJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"pAb" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"pAh" = ( /turf/open/floor/asteroidwarning, -/area/bigredv2/caves_lambda) -"pAi" = ( +/area/bigredv2/outside/n) +"pxN" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/whitepurplecorner/north, +/turf/open/floor/whiteblue/northeast, /area/bigredv2/outside/medical) +"pxY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"pyw" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"pyF" = ( +/obj/structure/platform/shiva{ + dir = 8 + }, +/obj/item/disk, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"pyN" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"pyS" = ( +/obj/structure/pipes/vents/scrubber/on, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"pza" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Toilet" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"pzp" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_lambda) +"pzx" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) "pAt" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_research) +"pAN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"pBn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"pBH" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/southwest, +/obj/item/clothing/head/hardhat/orange{ + pixel_y = 10 + }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) -"pAu" = ( -/obj/structure/surface/table/woodentable{ - flipped = 1 +"pCI" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/w) +"pCS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"pAA" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/sw) -"pAD" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"pAN" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"pAP" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"pDm" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - name = "\improper Machine room" + name = "\improper Dormitories Tool Storage Maintenance" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pAR" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"pBf" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"pDQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"pEq" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"pEy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"pEB" = ( +/obj/structure/foamed_metal, +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"pEC" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"pFb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"pFe" = ( +/obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"pFl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"pFF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"pFM" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"pFQ" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"pGl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_se) -"pBK" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"pCe" = ( -/turf/open/floor/whiteblue/northwest, -/area/bigredv2/outside/medical) -"pCE" = ( -/obj/structure/machinery/light{ - dir = 1 +"pGr" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"pGw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper/Court, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"pGy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"pGC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"pGI" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"pGR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab" }, -/obj/structure/morgue{ - dir = 2 +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"pHd" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"pCX" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_virology) -"pDj" = ( -/obj/structure/bed/chair/comfy{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"pHi" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"pHj" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/structure/window, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) -"pDl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pEu" = ( -/obj/structure/machinery/light{ +"pHl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Armory" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"pHn" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"pHw" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidwarning/east, -/area/bigred/ground/garage_workshop) -"pEz" = ( -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/outside/n) +"pHy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"pHD" = ( +/obj/structure/surface/table, +/obj/item/device/healthanalyzer, +/obj/structure/pipes/vents/pump, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic"; + pixel_y = 24 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pHP" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/dark, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) -"pFk" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -24 +"pHQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Robotics" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"pHU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/binoculars, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"pIa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"pFH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"pFM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 +/area/bigredv2/outside/ne) +"pIf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"pFQ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"pGk" = ( -/obj/item/tool/lighter/random, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"pIn" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"pIw" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, -/obj/structure/surface/table, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"pGt" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"pGF" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm/n_cave) -"pGL" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) -"pGR" = ( +"pIL" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"pIV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pJi" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/outside/lambda_cave_cas) +"pJp" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/ne) +"pJx" = ( +/obj/structure/barricade/handrail{ dir = 1; - name = "\improper Chief Engineer's Office" + layer = 3.01; + pixel_y = 9 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"pGX" = ( +"pJB" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"pJL" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/gun/smg/fp9000, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"pKb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"pGZ" = ( +"pKs" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"pHw" = ( -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/structure/cable{ - icon_state = "6-8" +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"pKF" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_west_cas) +"pKG" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"pKU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"pLs" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"pLy" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pHQ" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor/whitegreen/north, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"pLP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) -"pIg" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" +"pLU" = ( +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"pMl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/window/reinforced/toughened{ - dir = 8 +/obj/structure/sign/prop3{ + pixel_y = 32 }, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"pIo" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"pIJ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"pMw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"pIM" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"pMy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"pML" = ( +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"pMN" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"pMV" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_research) -"pIR" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/w) -"pIV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"pJs" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2"; - pixel_x = -9; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1"; - pixel_x = 12; - pixel_y = 16 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"pJG" = ( -/obj/item/weapon/gun/pistol/b92fs{ - pixel_x = 13; - pixel_y = -7 +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"pNi" = ( +/obj/item/explosive/grenade/baton{ + dir = 8 }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"pKr" = ( +"pNm" = ( +/obj/structure/bed/stool, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pNw" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/caves/eta/xenobiology) +"pNE" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"pKK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"pKM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"pLd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"pLe" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"pLg" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"pNQ" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/filtration_cave_cas) -"pLq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "viro_q"; - layer = 4; - name = "Qurantine Lockdown"; - normaldoorcontrol = 1; - pixel_x = -25; - req_access_txt = "7"; - specialfunctions = 4 - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"pLw" = ( -/obj/structure/machinery/light{ +"pOn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"pLZ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"pMg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"pOs" = ( /obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"pOE" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"pOS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories Tool Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"pOU" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pMj" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"pMw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"pPn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"pMA" = ( -/obj/structure/cargo_container/kelland/right, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"pPr" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) -"pMF" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"pNi" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/east, +"pPt" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"pNu" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"pNR" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm/lz2_cave) -"pNS" = ( -/obj/structure/closet/secure_closet/injection, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"pOj" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"pOz" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"pOJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"pOO" = ( -/obj/effect/landmark/corpsespawner/miner, +"pPu" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"pPw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"pPX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"pQj" = ( /obj/effect/decal/cleanable/blood{ dir = 8; icon_state = "gib6"; @@ -21170,41 +21073,20 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"pPc" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/outside/admin_building) -"pPx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"pPL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"pQr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/surface/table/woodentable, -/obj/item/storage/bible, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"pQu" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "pQC" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"pQD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/virology) "pQE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -21212,323 +21094,352 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"pQI" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) +"pQF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"pQJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) "pQM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) -"pQR" = ( -/obj/structure/platform/kutjevo/rock{ +"pQQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"pRo" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_12, -/area/space) +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"pRH" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) "pRP" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/n_cave) -"pRV" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, +"pSb" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/disease2/diseaseanalyser, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"pSc" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"pSj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pSp" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"pSo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"pSv" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +"pSE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/obj/effect/landmark/crap_item, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"pSH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Xenobiology" }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"pSw" = ( -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"pSV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"pSW" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_cave_cas) +"pTk" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"pTC" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"pUe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, +/turf/open/floor/darkred2/northwest, /area/bigredv2/outside/admin_building) -"pTr" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/lz2_south_cas) -"pTM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) +"pUh" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "pUi" = ( /obj/item/weapon/broken_bottle, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"pUp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"pUA" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"pUY" = ( -/obj/structure/machinery/light{ - dir = 4 +"pVf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"pVq" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-offices" }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"pVe" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"pVV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"pVj" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/n) -"pVn" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"pWg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"pWr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/obj/item/weapon/shield/riot, -/turf/open/floor/vault2/west, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"pWk" = ( +/obj/structure/surface/table, +/obj/item/ore/diamond, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"pWs" = ( +"pWq" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port_lz2) +"pWS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"pXe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"pXH" = ( /obj/structure/barricade/handrail{ dir = 1; layer = 3.01; pixel_y = 9 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) -"pXe" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_sw) -"pXT" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"pXW" = ( +"pXN" = ( +/obj/item/paper/bigred/crazy, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pYf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"pYm" = ( +/turf/open/floor/almayer/w_y0/north, +/area/bigredv2/outside/admin_building) +"pYB" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"pYc" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"pYk" = ( +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"pYY" = ( +/obj/structure/surface/rack, +/obj/item/weapon/twohanded/lungemine{ + pixel_y = 8 + }, +/obj/item/weapon/twohanded/lungemine{ + pixel_y = -7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pZa" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"qab" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"qaR" = ( +/obj/vehicle/powerloader/ft, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"qbc" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"qbf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"pYx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"pZf" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"pZo" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"pZv" = ( -/obj/structure/machinery/power/terminal{ +"qbm" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"qbE" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pZC" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"qcf" = ( +/obj/item/alien_embryo, /turf/open/floor/white, /area/bigredv2/outside/medical) -"pZH" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"qaj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"qao" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Library" +"qcl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/library) -"qaq" = ( -/obj/item/tool/weedkiller, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"qav" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitepurplecorner/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qcT" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/outside/medical) -"qaP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Armory" +"qdf" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"qdk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"qaR" = ( -/obj/vehicle/powerloader/ft, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"qaW" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"qbW" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"qdy" = ( /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"qdb" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/panelscorched, -/area/bigredv2/outside/engineering) -"qdd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"qdh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"qdn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qdC" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"qdI" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"qdN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"qdz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) +"qdQ" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) "qdR" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) +/obj/structure/surface/rack, +/obj/item/device/camera_film, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) "qdS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qed" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/caves/eta/research) -"qeb" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"qef" = ( -/obj/item/tool/warning_cone{ - pixel_y = 17 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"qeo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"qex" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"qeN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"qeY" = ( -/obj/structure/closet/l3closet/scientist, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"qeQ" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/se) +"qfi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"qgl" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 10; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/area/bigredv2/outside/general_offices) +"qfj" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"qfs" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -15 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/highpower, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"qgu" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 9; - pixel_y = -8 +"qfw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"qfx" = ( +/obj/effect/spawner/random/attachment, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qfG" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"qgn" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -10; + pixel_y = 12 }, -/turf/open/mars_cave/mars_cave_6, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qgz" = ( +"qgs" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"qgC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"qgQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"qgZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Private Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"qhd" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) "qhk" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 9; @@ -21540,26 +21451,43 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"qiB" = ( -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_lambda) -"qjd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +"qhs" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"qhB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) +/area/bigredv2/outside/hydroponics) +"qij" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"qim" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 30 + }, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) "qje" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/ne) -"qjt" = ( +/obj/structure/closet/radiation, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"qjr" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - name = "Interview Room APC" - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/w) +"qjs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) "qjA" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -21568,18 +21496,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"qjB" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"qjH" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) "qjO" = ( /obj/structure/prop/almayer/computers/mapping_computer{ desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; @@ -21587,203 +21503,178 @@ }, /turf/open/floor/greengrid, /area/space) -"qjS" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"qkd" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"qkv" = ( -/turf/open/floor/darkpurplecorners2/east, +"qkt" = ( +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/caves/lambda/research) -"qkI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/w) +"qkD" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/se) +"qkL" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) "qkO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/tank/air, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"qkP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/recharge_station, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"qkZ" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"qkT" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/lz1_north_cas) +"qlo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"qlc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"qli" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"qlG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"qlI" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) -"qlH" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/sw) -"qlJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) "qlK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qlY" = ( -/obj/structure/largecrate/lisa, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) +"qlT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-interior"; + name = "Lambda Checkpoint Interior"; + pixel_x = null + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"qme" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) "qmm" = ( /obj/structure/cargo_container/hd/right/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"qmp" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"qms" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"qmy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"qmS" = ( -/obj/structure/janitorialcart, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"qne" = ( +"qmn" = ( +/obj/structure/machinery/chem_master, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"qnA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"qnL" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"qoe" = ( -/obj/structure/surface/table, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qos" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"qmz" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Xenobiology Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/xenobiology) -"qoL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Dormitories EVA" + name = "\improper Lambda Lab Server Room" }, /turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"qpe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"qpl" = ( +/area/bigredv2/caves/lambda/research) +"qnd" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_north) +"qnh" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"qoh" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"qps" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"qqJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"qqY" = ( -/obj/effect/landmark/crap_item, +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"qoi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"qrd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"qoy" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"qoW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"qpk" = ( +/turf/open/floor/whiteyellow/west, +/area/bigredv2/caves/lambda/xenobiology) +"qpm" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_research) +"qpV" = ( +/obj/structure/foamed_metal, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"qrM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"qrT" = ( -/obj/structure/flora/pottedplant, +/area/bigredv2/caves/lambda/xenobiology) +"qqb" = ( /turf/open/floor/wood, -/area/bigredv2/outside/office_complex) +/area/bigredv2/outside/admin_building) +"qqf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qqT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/item/clipboard, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"qrq" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"qrw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"qrK" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"qrP" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/eta/research) "qrZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/fire, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qsp" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz2_south_cas) +"qsa" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"qsC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) "qsE" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/garage_workshop) -"qsV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm/n_cave) -"qtX" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/barricade/wooden, +"qsR" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"qug" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"qus" = ( -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) +"qsT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"qtd" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"qub" = ( +/obj/structure/bed/chair, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) "qux" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -21791,1351 +21682,1312 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"quI" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_north) -"qva" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/lz1_north_cas) -"qvh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"qvo" = ( +"quJ" = ( /obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "Blue"; - phone_id = "Director" - }, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/research) -"qwv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"qwZ" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qvS" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"qxa" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"qxc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories Tool Storage" +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"qwm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Research Office" }, /turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"qxu" = ( -/obj/structure/machinery/camera/autoname{ +/area/bigredv2/caves/eta/living) +"qwB" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"qwK" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"qwT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"qym" = ( -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qxk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"qyp" = ( -/turf/open/floor/delivery, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, /area/bigredv2/outside/dorms) -"qyw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"qyA" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"qyE" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" +"qxr" = ( +/obj/structure/sign/safety/electronics{ + pixel_y = 32 }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"qyL" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/northwest, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"qyY" = ( -/obj/structure/machinery/light/small{ +"qxx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"qxK" = ( +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qxO" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"qzA" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"qzJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"qxV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"qyb" = ( +/turf/closed/wall/mineral/uranium, +/area/bigredv2/outside/engineering) +"qyg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"qyx" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/s) +"qyB" = ( +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"qzN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"qyN" = ( +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"qyU" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) +"qzm" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" + network = list("interrogation") + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"qzp" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"qzP" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/goldschlager, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qzR" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"qzZ" = ( -/obj/item/stack/rods, -/obj/item/stack/rods, +"qAH" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_sw) +"qAV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"qAa" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"qAQ" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "prison_breakout" +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 8 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/marshal_office) -"qBj" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"qBD" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/caves/eta/xenobiology) -"qBJ" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/n) -"qBY" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/item/tool/pickaxe/drill{ + pixel_y = -8 }, -/turf/open/mars_cave/mars_cave_16, +/obj/item/tool/pickaxe/drill, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qCg" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"qCi" = ( -/obj/item/tool/warning_cone{ - pixel_y = 20 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"qCr" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/corpsespawner/engineer, +"qAX" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"qBq" = ( +/obj/structure/surface/table, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"qCR" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/bigredv2/outside/office_complex) +"qBP" = ( +/obj/effect/decal/cleanable/vomit, /turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"qCY" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qDA" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"qDE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"qDS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/bigredv2/outside/medical) +"qBY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/bluegrid/damaged3, -/area/bigredv2/caves/lambda/research) -"qEa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"qEo" = ( -/obj/effect/landmark/monkey_spawn, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"qCG" = ( +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"qEr" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"qDj" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"qDF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Dormitories EVA" }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"qDQ" = ( +/obj/item/ore/coal{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/ore/coal, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"qEa" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/e) +"qEu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) "qEx" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"qEP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Lambda Labs"; + phone_id = "Surgery"; + pixel_y = 24 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"qEU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"qEY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"qEZ" = ( /obj/structure/surface/table, -/obj/item/bodybag/cryobag, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/surgery/surgicaldrill, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"qEN" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"qFl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/loadingarea/north, -/area/bigredv2/caves/eta/storage) -"qEO" = ( -/obj/structure/machinery/mill, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"qES" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/caves/eta/research) -"qEX" = ( -/obj/effect/landmark/hunter_secondary, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"qFw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Surgery" +/area/bigredv2/outside/nw) +"qFp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"qFG" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"qFN" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"qFP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qFt" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qFx" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/s) +"qFy" = ( +/obj/item/ore{ + pixel_x = 9 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"qFJ" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"qFK" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"qFV" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"qGd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"qFZ" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"qGh" = ( +/area/bigredv2/outside/eta) +"qGk" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"qGq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"qGr" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/s) +"qGA" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) +"qGP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"qGV" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qGr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_west_cas) -"qHd" = ( +"qHl" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qHy" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_sw) +"qHE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"qHM" = ( +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"qHS" = ( +/obj/structure/machinery/sleep_console, /turf/open/floor/white, /area/bigredv2/outside/medical) -"qHn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/restraint/adjustable/cable, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"qHL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"qHQ" = ( -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/medical) -"qHT" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/lambda/virology) "qHZ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) -"qIa" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, +"qIu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"qIL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"qJa" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"qIb" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz1_telecomm_cas) -"qIy" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"qIZ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"qJF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Dormitories Tool Storage Maintenance" +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"qJc" = ( +/turf/open/floor/almayer/w_y2/north, +/area/bigredv2/outside/admin_building) +"qJh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"qJI" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/lambda_cave_cas) -"qJK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/delivery, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"qJp" = ( +/obj/structure/platform/shiva{ + dir = 1 + }, +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"qKt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/plate, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"qLn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"qJr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"qJy" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"qJI" = ( +/obj/structure/morgue{ + dir = 1 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"qLp" = ( -/obj/structure/xenoautopsy/tank/larva, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"qKv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"qLT" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"qKz" = ( +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/w) +"qKT" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"qLz" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"qLI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"qMf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"qLW" = ( +/obj/item/explosive/grenade/baton, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"qMi" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"qMr" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qMo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/telecomm/n_cave) +"qMt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"qMB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"qMI" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/lz2_cave) -"qMN" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/core, -/obj/item/shard, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"qMP" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/ne) -"qNv" = ( -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"qMA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/item/disk/nuclear, +/obj/item/weapon/gun/pistol/vp70, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"qMQ" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"qNu" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Engineering Landing Zone" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) "qNP" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qNR" = ( -/obj/effect/decal/cleanable/dirt, +"qOc" = ( /turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"qOh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/n) +"qOm" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"qOt" = ( -/obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/caves/eta/research) -"qOS" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"qPb" = ( +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"qOR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"qPw" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"qPc" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/machinery/light{ - dir = 1 +/area/bigredv2/outside/filtration_plant) +"qPC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/north, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"qPs" = ( -/turf/open/floor/purple/northeast, -/area/bigredv2/caves/lambda/research) -"qPu" = ( -/obj/item/clothing/shoes/galoshes, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"qPw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/lz2_cave) -"qPB" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +"qPN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "qPT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/eta) -"qQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"qQs" = ( -/turf/open/floor/purplecorner, -/area/bigredv2/caves/lambda/research) -"qQu" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/hardhat/orange{ - pixel_y = 10 - }, +"qQd" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"qQC" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"qQF" = ( +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/filtration_plant) -"qQz" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"qQQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"qQV" = ( -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"qRf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"qRr" = ( -/obj/structure/machinery/light{ - dir = 4 +"qQR" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"qQU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"qRy" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/obj/structure/prop/almayer/missile_tube{ - color = "grey"; - desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; - icon_state = "missiletubesouth"; - name = "\improper massive vent"; - pixel_x = -15 +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"qQZ" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"qRE" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/warnwhite/southwest, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) -"qSi" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/tool/extinguisher, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"qSj" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qSH" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"qSK" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkyellow2/north, +"qRa" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) -"qSN" = ( +"qRd" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"qRj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 9 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"qTa" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"qTn" = ( -/obj/item/device/analyzer, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"qTt" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"qTx" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"qTS" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/freezerfloor, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qRl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) -"qTW" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/s) -"qTX" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 +"qRM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"qUa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"qSd" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_virology) +"qSj" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qSu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"qUi" = ( -/turf/open/mars_cave/mars_cave_12, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_research) -"qUj" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"qUk" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic Chemistry" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"qUu" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"qUD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"qUV" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"qSU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) -"qUW" = ( -/obj/structure/bed/chair/office/dark, +"qTf" = ( +/obj/structure/machinery/power/apc/power/south, /turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"qUY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/caves/eta/research) -"qVi" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"qVw" = ( -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/research) -"qVW" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"qWs" = ( -/turf/open/floor/whitegreencorner, -/area/bigredv2/caves/lambda/xenobiology) -"qWv" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"qWx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Abandoned Mining Storage" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qXh" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/n) -"qXq" = ( +/area/bigredv2/outside/chapel) +"qTt" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"qTw" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/blood, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"qXW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/space_port) -"qYG" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/se) -"qYM" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/lambda_cave_cas) -"qYU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"qTF" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"qTN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"qZd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_13, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qZq" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"qZW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"raD" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/caves/eta/research) -"raF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"raW" = ( +"qUd" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/effect/decal/cleanable/cobweb, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"rbo" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "viro-rock_open" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"rbs" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +"qUt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "\improper Marshal Office Equipment" + name = "\improper Dormitories Bedroom" }, /turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"rbt" = ( -/turf/open/floor/darkpurplecorners2/north, -/area/bigredv2/caves/lambda/research) -"rbK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/outside/general_offices) +"qUy" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_virology) +"qUP" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz1_north_cas) +"qUQ" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"rcq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"rcs" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "red"; - phone_id = "Marshal Office" +/area/bigredv2/outside/filtration_plant) +"qVb" = ( +/obj/structure/morgue{ + dir = 2 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"rcI" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave/mars_cave_3, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"qVi" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"rdq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ +"qVs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ dir = 1; - name = "\improper Eta Lab Dormitories" + name = "\improper Dormitories Restroom" }, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"rds" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"rdz" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"rdL" = ( -/turf/open/floor/whiteblue/northeast, -/area/bigredv2/outside/medical) -"rdR" = ( -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"rdV" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"rdW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/virology) -"reo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"reB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/dorms) +"qVC" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"reK" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qVL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"qWe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"reL" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qWi" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/vest, +/obj/structure/machinery/door/window/eastright, +/obj/structure/window/reinforced, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"qWo" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"qWs" = ( +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"reO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Access door" +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"qWC" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"qWV" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rfm" = ( -/obj/structure/sign/safety/electronics{ - pixel_y = 32 +/obj/structure/platform_decoration{ + dir = 10 }, -/turf/open/floor/darkyellow2/north, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"rfw" = ( +"qXo" = ( /obj/structure/surface/table, /obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"rfD" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "Library"; - name = "Storm Shutters" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"rfQ" = ( -/obj/item/tool/pickaxe{ - pixel_y = -7 - }, -/obj/item/tool/pickaxe{ - pixel_y = 4 - }, -/obj/item/tool/pickaxe{ - pixel_y = -3 +"qXD" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_x = -3; + pixel_y = -9 }, -/obj/item/tool/pickaxe, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-5" }, -/obj/structure/surface/rack, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rgr" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/n) -"rgB" = ( -/obj/structure/surface/table, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"rhd" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Medical Clinic Operating Theatre" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"rhg" = ( -/obj/item/reagent_container/spray/plantbgone, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"rhw" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitegreenfull, +"qXM" = ( +/obj/item/tool/warning_cone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/filtration_cave_cas) +"qXT" = ( +/obj/structure/machinery/chem_master, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) -"rhE" = ( +"qYa" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"qYd" = ( +/obj/structure/machinery/floodlight, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"qYh" = ( /obj/structure/bed/chair, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"rhG" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/s) -"rhZ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"rid" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"rip" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"riy" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/obj/structure/closet/cabinet, -/obj/item/disk/nuclear, -/obj/item/weapon/gun/pistol/mod88, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"riC" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/lz1_north_cas) -"riF" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/item/tool/lighter/random, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"riR" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"qYv" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"rjd" = ( -/obj/item/spacecash/c1, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rjl" = ( -/obj/structure/machinery/light/built{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"qYC" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"qYX" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"qZb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/barricade/handrail/wire{ dir = 1 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"rjm" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"qZI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/roller, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qZP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"rau" = ( +/obj/item/tool/warning_cone{ + pixel_x = -6 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"raH" = ( +/obj/structure/machinery/photocopier, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"raS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"raX" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"rba" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"rbr" = ( +/obj/item/tool/weldpack, +/obj/item/frame/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rbw" = ( +/obj/structure/surface/table, +/obj/item/tank/anesthetic, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rbB" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"rcf" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"rck" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"rcw" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/fireaxe, /turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"rjr" = ( -/obj/structure/window/reinforced/toughened{ +/area/bigredv2/outside/filtration_plant) +"rdk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1; - icon_state = "fwindow"; - pixel_y = 12 + name = "\improper Engineering Workshop" }, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"rdp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"rdq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) +"rdw" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"rdG" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"rdK" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"rdP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rdR" = ( +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"ree" = ( +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ren" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"reN" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/surface/table/reinforced, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Virology" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"reQ" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/nw) +"rfq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/eta/xenobiology) +"rfx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"rhd" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/mining) +"rhh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"rhC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"rhP" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"rhW" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"rif" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"riz" = ( +/obj/structure/machinery/botany, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"riO" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"rjf" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) "rjw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) -"rjB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) "rjF" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 19 }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"rjG" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/outside/admin_building) -"rjN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/camera/oldcamera, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +"rjM" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "rjP" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"rkz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, +/obj/structure/surface/table/woodentable, +/obj/item/trash/cheesie, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"rke" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/sheet/plasteel, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"rkB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"rlH" = ( +/area/bigredv2/outside/general_offices) +"rkq" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz1_telecomm_cas) +"rkQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"rla" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"rlI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) -"rlO" = ( -/obj/structure/machinery/photocopier, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) +/area/bigredv2/caves/eta/living) +"rli" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/caves/lambda/virology) +"rlE" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"rme" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) "rml" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor, /area/bigred/ground/garage_workshop) -"rmV" = ( -/obj/effect/spawner/random/tool, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) +"rmB" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/lz2_south_cas) +"rmH" = ( +/obj/structure/largecrate/guns, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"rnb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) "rnc" = ( /turf/open/mars_cave, /area/bigredv2/caves_research) -"rnv" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +"rnq" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/cable, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) +/obj/item/trash/tray, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) "rnw" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rnB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper General Store Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"rnK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) "rnM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/random/barrel/true_random, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"rnX" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"rol" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"roo" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/vents/pump{ +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"roS" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" + }, +/obj/structure/window/reinforced{ dir = 8 }, +/obj/structure/plasticflaps, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"rpk" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/lz2_south_cas) +"rpG" = ( /turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"rob" = ( +/area/bigredv2/caves/eta/xenobiology) +"rqx" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"rqU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"rqV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"rqW" = ( +/obj/item/ammo_magazine/handful/shotgun/custom_color{ + color = "#6666ff"; + desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; + name = "handful of HE/FRAG shells (12g)"; + pixel_y = 3 + }, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"rrc" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"rod" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"rof" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rrF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"rrG" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"roz" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_se) -"roD" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"roI" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "etatunnel_open" +"rrZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"rpi" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"rsa" = ( +/obj/structure/closet/crate/miningcar, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rsg" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"rss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"rsz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"rsU" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"rpw" = ( -/obj/item/clothing/under/darkred, -/obj/structure/surface/rack, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"rpE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"rpH" = ( -/obj/structure/machinery/camera/autoname{ +"rte" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"rtg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"rtz" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/xenobiology) +"ruv" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/podhatch/southwest, +/area/bigredv2/caves/lambda/research) +"ruJ" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"rve" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera_film, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"rpW" = ( -/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"rqb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1; - name = "\improper Engineering Workshop" +"rvk" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/n) +"rvm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"rqi" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"rwe" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"rqm" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"rwF" = ( +/obj/structure/cable{ + icon_state = "5-8" }, -/obj/item/tool/hand_labeler, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"rqr" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_west_cas) -"rqL" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"rqW" = ( -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"rrB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"rrU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"rrX" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"rsb" = ( -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"rsg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/obj/structure/cable{ + icon_state = "5-6" }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"rsx" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rwG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"rwL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"rxg" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz2_south_cas) +"rxr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"rtM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"rum" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +"rxz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, /turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"ruo" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +/area/bigredv2/outside/bar) +"rxC" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/sw) +"rxX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"rya" = ( +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"ryj" = ( +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Director" }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"ruq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"rur" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"ruC" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rad_haz{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"ruL" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/n) -"ruM" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/lambda/xenobiology) -"ruZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ryo" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"ryZ" = ( /obj/structure/surface/table, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"rvc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northwest, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"rvk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "lambda-interior"; - name = "Lambda Checkpoint Interior"; - pixel_x = null +"rzt" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"rvm" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/xenobiology) -"rvq" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rvP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Toilet" +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"rvT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"rwf" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz1_telecomm_cas) -"rwg" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 +"rzv" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 }, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"rwN" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"rxp" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"rxq" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"rxD" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/n) -"rxF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"rxG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"rxW" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"ryj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/eta) -"ryk" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lambda_cave_cas) -"ryo" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/e) -"ryE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"rza" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"rzs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Robotics" +/area/bigredv2/caves/lambda/breakroom) +"rzD" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = -3; + pixel_y = -5 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"rzt" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/stack/cable_coil/cut{ + pixel_x = 9; + pixel_y = -8 }, -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"rzI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/flare{ - pixel_y = -7 +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) +"rzM" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"rzN" = ( +/obj/item/stack/sheet/plasteel, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "rzO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -23148,181 +23000,213 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"rzU" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 - }, +"rAa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"rAg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"rAx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"rAG" = ( /obj/effect/decal/cleanable/blood{ - dir = 8; icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 + pixel_y = -8 }, -/obj/item/weapon/gun/rifle/m41a/training, -/turf/open/mars_cave/mars_cave_17, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"rzY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rBm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Wing" +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"rCc" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"rCq" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"rCr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/oldresearch/Resin, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"rCR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"rAx" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_west_cas) -"rAD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 +/area/bigredv2/outside/marshal_office) +"rCV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"rAF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"rDc" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rBl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"rDe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"rBv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"rBy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"rBR" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/telecomm/lz2_cave) -"rBW" = ( -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"rCb" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"rCz" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/prop/alien/hugger, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"rDY" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -32 }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"rCR" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/virology) -"rDd" = ( -/obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"rDD" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"rDM" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_north) -"rEn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"rEp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"rEg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"rEl" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"rEx" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"rEP" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"rES" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"rEF" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"rFw" = ( +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rFd" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ +/obj/item/circuitboard/firealarm, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"rFh" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_research) +"rFp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"rFK" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"rFy" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; - name = "W-Y Enviorment Control System Control Panel" - }, -/obj/structure/cable{ - icon_state = "11-2" - }, -/obj/structure/cable{ - icon_state = "11-10" - }, +/area/bigredv2/outside/marshal_office) +"rFL" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rFz" = ( -/obj/structure/surface/table, -/obj/item/ore/diamond, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"rGw" = ( -/obj/structure/bed/chair/office/light{ +"rFT" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"rFX" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"rFY" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"rGI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"rGm" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 }, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"rGH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) "rGK" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 1; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) "rGQ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"rGY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"rHd" = ( +/obj/item/ore/gold, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table, -/obj/item/tool/surgery/retractor, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rHg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"rHn" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"rHs" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) "rHA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/river, @@ -23330,35 +23214,39 @@ "rIl" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) -"rIu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) "rII" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) "rIR" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"rJv" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_sw) -"rJS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/filtration_cave_cas) +"rIW" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"rJa" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars/mars_dirt_9, +/area/space) +"rJb" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"rJt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"rJu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) "rKs" = ( /obj/item/stack/medical/splint{ pixel_x = 4; @@ -23372,184 +23260,122 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "rKI" = ( -/obj/structure/machinery/conveyor_switch{ - id = "anomalybelt" - }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Anomaly Lab" }, -/turf/open/floor/purple/north, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) -"rKL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"rLk" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"rLx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"rLP" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"rKR" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"rLg" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"rMc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"rLl" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"rLM" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"rLW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 8 - }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"rMd" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/w) +"rMi" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"rMj" = ( +/obj/structure/machinery/autolathe, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"rMq" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) "rMt" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/nw) -"rMA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering SMES" +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "rMG" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor, /area/bigred/ground/garage_workshop) -"rMN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"rMU" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"rNa" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) "rNc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/harpoon, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"rNn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"rNB" = ( +"rNl" = ( +/obj/structure/machinery/teleport/hub, +/turf/open/floor/podhatch/southeast, +/area/bigredv2/caves/lambda/research) +"rNm" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/gun/rifle/m41a/training, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"rNA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"rNL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"rOp" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"rOD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"rNI" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz1_north_cas) -"rOb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/tool/extinguisher, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"rOd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"rOD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/powercell{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rOI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Security Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"rOQ" = ( -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) "rPl" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/xenobiology) +"rPn" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"rPr" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"rPG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) -"rPm" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor/whiteblue/northwest, -/area/bigredv2/outside/medical) -"rPA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"rPD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/roller, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rPP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"rPU" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-10" +"rPY" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"rQk" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"rQr" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rQb" = ( -/obj/structure/surface/table, -/obj/item/storage/briefcase, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"rQo" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) +/turf/open/floor/carpet9_4/west, +/area/bigredv2/caves/eta/living) "rQs" = ( /obj/structure/bed/sofa/south{ desc = "An old rusty ladder"; @@ -23559,113 +23385,77 @@ }, /turf/open/floor/plating, /area/bigredv2/oob) -"rQu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"rQI" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/structure/machinery/light/built{ - dir = 1 +"rQt" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, /turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) -"rRc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"rRk" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rRI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rQF" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"rRV" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"rSa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"rSi" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - do_not_disturb = 1; - phone_category = "Lambda Labs"; - phone_color = "red"; - phone_id = "Director's Safe Room"; - pixel_x = -18 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"rSF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"rTa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rTe" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/space_port_lz2) -"rTk" = ( +/area/bigredv2/outside/office_complex) +"rQP" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"rRa" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"rRk" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"rRD" = ( /obj/structure/machinery/light, -/turf/open/floor/whitebluefull/northeast, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"rRG" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"rTp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rTs" = ( +"rRS" = ( +/turf/open/floor/darkpurple2/northeast, +/area/bigredv2/caves/lambda/research) +"rSd" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"rTf" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"rTv" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"rTi" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/caves_north) +"rTE" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/xenobiology) +"rTJ" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"rTV" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"rUj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"rTM" = ( -/obj/structure/machinery/door_control{ - id = "safe_room"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 28; - req_access_txt = "106"; - specialfunctions = 4 +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"rTS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"rUd" = ( -/obj/structure/foamed_metal, -/turf/open/floor/whiteyellow/southwest, -/area/bigredv2/caves/lambda/xenobiology) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) "rUn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -23676,179 +23466,134 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"rUx" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rUI" = ( +"rUp" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"rUN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"rVm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"rUy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rVI" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"rVK" = ( -/turf/open/floor/asteroidwarning/north, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Virology Lab Chemistry" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) -"rVY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rVF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"rVS" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_research) +"rWx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = -4; + pixel_y = 8 + }, /turf/open/floor/wood, /area/bigredv2/outside/library) -"rWk" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 +"rWB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"rWu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"rWE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"rWW" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_sw) +"rXc" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"rXM" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 + }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) -"rWI" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"rWQ" = ( -/obj/structure/closet/firecloset/full, +"rYe" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"rYi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rYj" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"rXh" = ( +/area/bigredv2/outside/admin_building) +"rYr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"rYx" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"rYL" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"rZB" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/red/southwest, -/area/bigredv2/outside/marshal_office) -"rXp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"rXq" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/collectable/tophat/super, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"rXT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Toilet" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"rYc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"rYf" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"rYj" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"rYk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/outside/telecomm/warehouse) +"rZY" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"rYW" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves) -"rYX" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"rYY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"rZc" = ( +"saG" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"rZn" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"rZy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"rZC" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"saR" = ( +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/eta/xenobiology) -"saB" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"saP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"saS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"saT" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"sbl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Chemistry" +"saX" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"sbx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Checkpoint" }, /turf/open/floor/delivery, -/area/bigredv2/outside/virology) +/area/bigredv2/outside/marshal_office) "sbA" = ( /obj/item/frame/rack, /obj/effect/spawner/random/toolbox, @@ -23861,488 +23606,562 @@ /area/bigredv2/caves/mining) "sbG" = ( /obj/structure/surface/table, -/obj/item/storage/pill_bottle/tramadol, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"sbI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"scu" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"scH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"scI" = ( -/obj/item/tool/crowbar/red, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"scc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sdA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ +"sck" = ( +/obj/structure/barricade/wooden{ dir = 1; - icon_state = "p_stair_full" + pixel_y = 7 }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"sdK" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"sdP" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"see" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"sew" = ( -/obj/structure/surface/table, -/obj/item/toy/sword, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"seM" = ( -/obj/structure/surface/table, -/obj/item/tank/anesthetic, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"sfl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"sfu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" +"scK" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"sgc" = ( -/obj/structure/machinery/light{ +/obj/structure/prop/almayer/missile_tube{ + color = "grey"; + desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; + icon_state = "missiletubesouth"; + name = "\improper massive vent"; + pixel_x = -15 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"sdb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"sdk" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"sdL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"sgD" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"sgN" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/bigredv2/outside/space_port) +"sdP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"sec" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sgU" = ( -/obj/item/ore, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"sed" = ( +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"seX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sfg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"sfo" = ( /turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"sfp" = ( +/obj/structure/largecrate/lisa, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"sfF" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) -"shy" = ( +"sfN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"sfR" = ( /turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"shE" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"shY" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/e) -"sia" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"sih" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/bigredv2/outside/c) +"sfT" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"sfX" = ( +/obj/structure/platform_decoration/shiva{ dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sjh" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"sjw" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +/obj/structure/platform_decoration/shiva{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"skh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/whitepurple/west, +/obj/item/stack/cable_coil/random, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"ski" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) -"skn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"skv" = ( -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"skF" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"slp" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_south_cas) -"sls" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ - layer = 4 - }, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"slD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"slM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +"sgj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - name = "\improper Marshal Office Prison" + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"sme" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/whitebluefull/northeast, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"sgn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"sgD" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"sgH" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"shg" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"shw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) -"smg" = ( -/obj/structure/machinery/light{ +"sic" = ( +/obj/effect/landmark/crap_item, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"sih" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"smh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"smI" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"smV" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"smW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"snb" = ( -/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"sit" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"siv" = ( /obj/structure/surface/table, +/obj/item/storage/briefcase, /obj/structure/machinery/light{ dir = 4 }, -/obj/item/stack/sheet/glass{ - amount = 30 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"siS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"snm" = ( -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"snG" = ( -/obj/structure/bed, -/turf/open/floor/whitegreen/west, +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) -"snQ" = ( +"sjb" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"sjl" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"sjr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"snU" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sos" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"sow" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"soz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"sjB" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"sjD" = ( /turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"soI" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 +/area/bigredv2/caves_research) +"sjE" = ( +/obj/structure/machinery/processor, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"sjU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"soL" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"skf" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ski" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) +"skz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"skS" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"soU" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"skY" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor/redcorner, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"spD" = ( +"smh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"smk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"snp" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/n) +"snF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"snR" = ( /obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Storm Shutters"; + pixel_x = -32 }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"spW" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"spZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"sqm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"squ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"sqB" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"sqU" = ( +/area/bigredv2/outside/telecomm) +"soh" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_north) +"soi" = ( /obj/structure/filingcabinet, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"sra" = ( -/obj/item/tool/warning_cone{ - pixel_x = -6 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"srd" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"soq" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"sor" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"sou" = ( +/obj/structure/closet/hydrant{ + pixel_y = -32 }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"soH" = ( +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"soN" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"sri" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"sru" = ( -/obj/structure/machinery/light{ - dir = 8 +"sph" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"spn" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/eta/xenobiology) -"srP" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/virology) -"ssf" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_se) -"ssm" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"ssr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"spu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"spG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) +"sqa" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/se) +"sqg" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"sqs" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_north) +"sqP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"src" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"srq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/eta/xenobiology) +"srD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) "ssE" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/caves) -"ssH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"ssN" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"ssQ" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"stp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"stw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"stF" = ( +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"stH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"std" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"stL" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"stO" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) -"suk" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/mars_cave/mars_cave_15, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"stP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"suq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/red/northwest, -/area/bigredv2/outside/marshal_office) -"suC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"suo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"suM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable, -/obj/item/prop/magazine/book/bladerunner{ - pixel_y = 3 +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"suN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"suK" = ( -/obj/structure/machinery/door_control{ - id = "garage"; - name = "Garage Shutters"; - pixel_x = 26; - range = 500 +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"suX" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/s) +"suY" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"svk" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"svm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"svx" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"svV" = ( +/obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"suW" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"svO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"svR" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/bigredv2/outside/bar) +"swc" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"swz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/obj/item/weapon/baton/loaded, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"swo" = ( +/obj/structure/machinery/computer/pandemic, /turf/open/floor/white, /area/bigredv2/outside/virology) -"swD" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"sxa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/telecomm/n_cave) -"sxx" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "admin_pmc" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"sxD" = ( -/obj/effect/glowshroom, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"sxJ" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"sxO" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"sxT" = ( +"swr" = ( +/obj/item/device/flashlight, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"swv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) -"sxV" = ( -/obj/structure/machinery/light{ +"swC" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"swJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"swT" = ( +/obj/structure/surface/table, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Space Port" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"swY" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/closet/secure_closet/security, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"syq" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/area/bigredv2/outside/engineering) +"sxq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"sxW" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"sxY" = ( +/obj/structure/surface/table, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/paper, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"syk" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"szH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/north, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"syt" = ( +/obj/structure/machinery/door_control{ + id = "General Store"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"syC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"syS" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"szI" = ( +"sza" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"szR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"sAu" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"sAr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) "sAS" = ( /obj/item/toy/prize/fireripley{ pixel_y = 19 @@ -24350,605 +24169,656 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"sBt" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_east) -"sBx" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/n) -"sCg" = ( -/obj/structure/closet/secure_closet/engineering_personal, +"sBr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"sBI" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_east) +"sCl" = ( +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"sCq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"sCx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"sCp" = ( +"sDM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 5 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"sCs" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/mining) -"sCu" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"sCU" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/obj/effect/landmark/nightmare{ + insert_tag = "dorms_party" }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"sCX" = ( -/obj/structure/inflatable/door, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"sDc" = ( -/obj/structure/bed/chair/wood/normal, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"sDN" = ( +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/xenobiology) +"sDO" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"sDU" = ( +/obj/structure/barricade/wooden, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"sDo" = ( -/obj/structure/urinal{ - pixel_y = 32 +"sDV" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"sEd" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"sDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/virology) -"sEj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 + dir = 10 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"sEu" = ( -/obj/item/explosive/grenade/slug/baton{ - dir = 1; - pixel_y = -8 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"sEH" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = 28 }, -/obj/item/explosive/grenade/baton{ - dir = 4; - pixel_x = 9; - pixel_y = -8 +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"sEQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-10" +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"sEV" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"sFf" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/collectable/tophat/super, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"sFw" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/lz2_south_cas) +"sFA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Virology Quarantine" }, -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"sFD" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"sFJ" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/eta/research) +"sGf" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/space_port_lz2) +"sGn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Break Room" }, -/obj/structure/cable{ - icon_state = "4-5" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"sGw" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"sGE" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"sGK" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"sHl" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sEK" = ( -/obj/item/stack/cable_coil/cut, +"sHv" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/n) +"sHB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"sHF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"sEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sIb" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"sIh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lambda-cave-extratunnel" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sEU" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"sIs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Armory" }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"sFf" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"sIu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"sIv" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"sIZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"sFl" = ( +"sJa" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = -28 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"sJE" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"sKM" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/filtration_cave_cas) +"sKZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"sLM" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) -"sFD" = ( -/obj/structure/ore_box, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"sFP" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/c) -"sGo" = ( -/obj/item/trash/eat, /turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"sLS" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"sMi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"sGJ" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/se) -"sGP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"sGS" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"sGY" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"sHw" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" +"sMn" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"sMC" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"sME" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"sMM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Operations Armory" }, /turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"sIh" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lambda-cave-extratunnel" +"sNc" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Dormitories APC" + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"sNe" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"sNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sNm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"sNB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"sNC" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"sNJ" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"sOs" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Lambda Checkpoint" }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"sIj" = ( -/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"sOK" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"sOR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"sIK" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"sJs" = ( +/area/bigredv2/caves/eta/research) +"sOX" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"sPb" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"sPd" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"sPl" = ( /obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"sPr" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"sPs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"sJx" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"sJV" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"sPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"sQc" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lz2_south_cas) +"sQj" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"sQC" = ( +/obj/effect/decal/cleanable/vomit, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"sKd" = ( -/obj/structure/sign/double/barsign{ - pixel_y = 32 +/area/bigredv2/caves/lambda/breakroom) +"sQD" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"sQI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"sQM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"sRp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"sRW" = ( +/obj/structure/barricade/wooden, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"sKi" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = -4; - pixel_y = 3 +"sSn" = ( +/obj/structure/machinery/photocopier{ + density = 0; + pixel_y = 16 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"sKy" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"sKF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"sSG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"sKY" = ( +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"sSM" = ( /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"sLb" = ( +/area/bigredv2/outside/w) +"sTa" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_sw) +"sTu" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Director's Office" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sTM" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/space_port_lz2) +"sTQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Bedroom" }, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"sLj" = ( +/area/bigredv2/outside/dorms) +"sUj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"sUu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"sLM" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"sLS" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"sMa" = ( -/obj/item/grown/log, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"sMv" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_sw) -"sMB" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"sMD" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"sMM" = ( -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"sMU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"sMX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"sNe" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +"sUv" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/e) +"sUF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"sNl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave/mars_cave_19, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"sNM" = ( +"sUH" = ( +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"sVe" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"sNZ" = ( -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"sOg" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"sVk" = ( /obj/structure/surface/table, -/obj/item/tool/surgery/cautery, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"sOF" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/door_control{ + id = "Spaceport"; + name = "Storm Shutters"; + pixel_x = 32 }, -/obj/effect/landmark/monkey_spawn, +/obj/item/tool/pen, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"sVn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"sOM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"sVp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/research) -"sPz" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sPJ" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/asteroidwarning/southwest, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"sWz" = ( +/turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_lambda) -"sPY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"sWF" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"sPZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"sQr" = ( -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/space_port) -"sQG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"sWJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/white, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) -"sQI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"sQK" = ( +"sXf" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"sXj" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"sXA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_virology) -"sQR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/caves_east) +"sXD" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"sXM" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Courtroom" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"sYO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/delivery, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) -"sRq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; +"sZr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sSz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/closet/crate/miningcar/yellow{ - layer = 3 + name = "\improper Engineering Lockers" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"sSE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"sZZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"sSX" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"sSZ" = ( -/obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) -"sTq" = ( -/obj/structure/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, +"taa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"sTE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 17 +"tag" = ( +/obj/structure/machinery/door_control{ + id = "Filtration Plant"; + name = "Storm Shutters"; + pixel_x = -32 }, -/obj/item/reagent_container/food/snacks/jellysandwich/cherry, -/turf/open/mars_cave/mars_cave_3, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"taA" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sTK" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"sUh" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"sUN" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sVd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"sVv" = ( +"taC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Abandoned Mining Storage" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sVy" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"sVF" = ( -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 + name = "\improper Kitchen" }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"sVT" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"sVU" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/warning_stripes, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"sWD" = ( -/obj/structure/toilet{ - pixel_y = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"taH" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"sWP" = ( -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"sXf" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"sXA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"taO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"sXJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"sYg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bananapeel, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"sYs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"sYM" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"sZe" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 +"tbc" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/wood, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"sZz" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"sZR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"taa" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"tam" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"taC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"taD" = ( -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"taF" = ( -/obj/effect/decal/cleanable/dirt, +"tbp" = ( /obj/effect/landmark/good_item, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"taM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"tbw" = ( +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/medical) -"tbf" = ( -/obj/structure/surface/table, -/obj/item/book/manual/nuclear, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"tbx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/virology) -"tbH" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "reactor_meltdown" +"tbA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) +/obj/item/ammo_box/magazine/misc/flares/empty, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tbL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) "tcb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/meat, /turf/open/floor, /area/bigred/ground/garage_workshop) -"tcx" = ( +"tcw" = ( +/obj/effect/decal/cleanable/mucus, /obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"tcL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"tcE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"tcZ" = ( +/obj/structure/machinery/light, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"tcP" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"tdv" = ( +/area/bigredv2/outside/chapel) +"tdi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/storage) -"tdW" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"tdk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Telecommunications" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm) +"tdz" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"tdY" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) "tdZ" = ( /obj/item/tool/pickaxe/drill, /obj/structure/machinery/light{ @@ -24960,33 +24830,30 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tei" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Bar APC" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"tex" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"teF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, +"teg" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"teG" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"teH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) -"teY" = ( -/turf/open/mars_cave/mars_dirt_5, +"tfo" = ( +/obj/item/ore{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"tfl" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/c) "tft" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, @@ -24995,125 +24862,169 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tfB" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/se) -"tfL" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/w) -"tfP" = ( -/obj/structure/machinery/camera/autoname{ +"tgD" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"tgI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"thd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"tfX" = ( -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) -"tfY" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"thn" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"thp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2{ +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"thP" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Communications Landing Zone" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"thY" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"tib" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"tgb" = ( -/turf/open/floor/carpet11_12/west, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) -"tgg" = ( -/obj/structure/barricade/wooden, +"tid" = ( +/obj/structure/closet, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tir" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"tiy" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tiz" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"tja" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 9 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"tgm" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"tjf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"tgy" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"tju" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"thP" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_virology) -"thQ" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, +/turf/open/floor/darkredcorners2/north, /area/bigredv2/outside/admin_building) -"tix" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_virology) -"tiM" = ( +"tjA" = ( /obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tjk" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tjH" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_virology) +"tjK" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/space_port_lz2) +"tjQ" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tke" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"tkj" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 13 }, -/obj/structure/window/reinforced/toughened{ - dir = 4 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"tkA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/obj/structure/machinery/computer/pandemic, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"tjP" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz2_west_cas) -"tjX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"tjY" = ( -/turf/open/floor/darkblue2/northwest, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"tkd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"tkY" = ( +/obj/item/ore{ + pixel_x = -1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"tkO" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"tln" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"tlt" = ( +/obj/structure/machinery/computer/crew{ + density = 0; + pixel_y = 16 }, -/obj/item/trash/kepler, /turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"tkU" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"tlo" = ( -/obj/structure/machinery/prop/almayer/computer/PC, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"tlu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"tlE" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"tlL" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/telecomm/warehouse) -"tlH" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Administration" + }, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) "tlP" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ @@ -25122,129 +25033,140 @@ /turf/open/floor, /area/bigred/ground/garage_workshop) "tlT" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tmm" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/closet/cabinet, -/obj/item/clothing/accessory/armband, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"tlV" = ( -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"tmz" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz2_south_cas) -"tmO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"tmy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"tmZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"tnb" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_cave_cas) -"tnJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"tnL" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tot" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"tox" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/space_port) +"tnn" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/mining) +"tnC" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"tnG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"tnK" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/s) +"tnM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/red, +/area/bigredv2/outside/marshal_office) "toA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/alien/hugger, /turf/open/floor, /area/bigredv2/outside/admin_building) -"toJ" = ( -/obj/structure/machinery/light{ - dir = 4 +"tpd" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"tpi" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"tpo" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"tpJ" = ( -/obj/structure/girder, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tpW" = ( -/obj/structure/platform/shiva{ - dir = 1 +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"tpx" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "viro_open" }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"tpH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"tqy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"tqB" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"tqI" = ( -/obj/structure/machinery/light/small, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"tpY" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tqV" = ( -/obj/structure/bed/chair/wood/normal{ +/area/bigredv2/caves_east) +"tqf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"tqw" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"trn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/n_cave) -"tsi" = ( -/obj/item/ore{ - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"tqU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"trA" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "Library"; + name = "Storm Shutters" }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"trI" = ( /turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) +/area/bigredv2/outside/filtration_plant) +"trL" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) "tsn" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) -"tst" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "tsv" = ( -/obj/item/tank/air, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Dormitories EVA" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"tsw" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor, +/area/bigredv2/outside/cargo) "tsy" = ( /obj/effect/decal/cleanable/dirt{ pixel_x = 8 @@ -25269,856 +25191,491 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tsz" = ( -/obj/structure/machinery/door_control{ - id = "filtration"; - name = "Filtration Lockdown"; - pixel_x = 30; - throw_range = 15 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"tsJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"ttg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +"tsC" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 }, /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"ttA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"ttV" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"tue" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"tuq" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/space_port_lz2) -"tuF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Relaxation Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"tuK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tuN" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"tvz" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"twb" = ( -/obj/item/ore{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"twf" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"twt" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"txj" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/item/trash/cigbutt{ - pixel_x = 7 - }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"txn" = ( -/obj/structure/closet/l3closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"txA" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"txC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" +/area/bigredv2/outside/filtration_plant) +"tsZ" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"ttd" = ( +/obj/item/tool/surgery/scalpel/laser/advanced, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"ttI" = ( +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 13 }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"txF" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/xenobiology) -"txJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ttU" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, /area/bigredv2/outside/medical) -"txL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"txT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"txV" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tyb" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"tyj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"tyo" = ( +"tus" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"tuw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"tzk" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/w) -"tzl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_se) -"tzB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"tzF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"tAh" = ( -/obj/structure/fence, -/obj/structure/disposalpipe/segment, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tAi" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"tAp" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"tAy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"tAX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tBf" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tBC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"tBF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"tCh" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tCm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"tCS" = ( -/obj/structure/platform, -/obj/structure/flora/jungle/planttop1{ - pixel_y = 10 +"tux" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"tDa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/sw) -"tDk" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tDn" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"tDE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, +"tuF" = ( +/obj/structure/closet/secure_closet/marshal, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"tDR" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tDZ" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_15, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"tuN" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave, /area/bigredv2/caves/mining) -"tEk" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/mars_cave/mars_dirt_6, +"tvn" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"tvL" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tEs" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +"tvM" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"tEt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"tEz" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/mars, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) -"tED" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"tEW" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/eta/xenobiology) -"tFq" = ( -/obj/effect/glowshroom, -/obj/structure/machinery/light{ - dir = 8 +"tvO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/beach_ball, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"tvS" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/xenobiology) -"tFF" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"tFL" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"twa" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"tww" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"twE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"tFR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/caves_lambda) -"tFW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tGf" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"tGn" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"twM" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"twP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"twZ" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/turf/open/floor/darkblue2, /area/bigredv2/outside/admin_building) -"tGX" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"txd" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"txe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"tHa" = ( +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"txj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"txF" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"txJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"txO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"txR" = ( /obj/structure/surface/table, -/turf/open/floor/darkred2/west, +/obj/effect/spawner/random/toolbox, +/obj/item/tool/extinguisher, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"txT" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/eta/research) -"tHn" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"tHo" = ( -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"tHB" = ( -/obj/structure/bed/chair, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"tHJ" = ( -/obj/effect/decal/cleanable/dirt, +"tyh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"tyq" = ( +/obj/structure/largecrate/supply/supplies, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"tIy" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"tyz" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"tyQ" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/outside/admin_building) +"tyX" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"tIA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tIL" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"tzr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"tzD" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/n) +"tzR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"tAe" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "containerroom_xenos" }, -/obj/structure/cable{ - icon_state = "1-5" +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/nw/ceiling) +"tAn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"tAv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"tAB" = ( +/obj/structure/surface/table, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "Blue"; + phone_id = "Director" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tIX" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) +"tAC" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"tAF" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port_lz2) -"tJt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"tJA" = ( +"tAR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"tBf" = ( +/obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"tKb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera, -/turf/open/floor/wood, +"tBi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"tBJ" = ( +/turf/open/floor/bluegrid/damaged5, +/area/bigredv2/caves/lambda/research) +"tBN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tBQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"tKB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" +"tCb" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"tCh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"tCs" = ( +/obj/structure/showcase, +/turf/open/floor/carpet6_2/west, +/area/bigredv2/caves/eta/living) +"tCF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"tDe" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"tDk" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"tKJ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"tLu" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"tLD" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"tLG" = ( +"tDw" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"tDM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"tLJ" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/nw) -"tMd" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/w) -"tMy" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"tDT" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"tMB" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/xenobiology) -"tML" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"tDU" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"tMM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"tNr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, /turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"tNx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"tNB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"tND" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/area/bigredv2/outside/office_complex) +"tEj" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"tEM" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rad_haz{ + pixel_y = -32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"tNE" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/ore_box, -/turf/open/floor/whitepurple/east, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) -"tNJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"tNY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"tOb" = ( +"tEP" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"tEQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor/white, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) -"tOl" = ( -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/gun/smg/bizon{ - pixel_x = 1; - pixel_y = 11 +"tEV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 11; - pixel_y = -3 +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"tFs" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Cargo Bay Quartermaster" }, -/obj/item/ammo_magazine/smg/bizon, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"tFz" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c100, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 12 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tOq" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"tOt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tFR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"tOy" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz1_north_cas) -"tOD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tOS" = ( -/obj/structure/fence, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"tPh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/lambda/xenobiology) -"tPv" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"tPz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tPE" = ( -/obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tPJ" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"tPS" = ( +"tGd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"tPY" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"tRg" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"tGw" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tGE" = ( +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"tGU" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = 5 }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_lambda) -"tRv" = ( -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -11; - pixel_y = 10 +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = -5 }, -/turf/open/mars_cave/mars_dirt_7, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tSc" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"tSi" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"tSt" = ( -/obj/structure/surface/table, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"tSG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/outside/space_port) -"tST" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tTa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tGX" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"tTt" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"tHd" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Server Room" + dir = 1; + name = "\improper Lambda Lab Chemistry Lab" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"tTw" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/n) -"tTy" = ( +/area/bigredv2/caves/lambda/xenobiology) +"tHN" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/window, /turf/open/floor/wood, /area/bigredv2/outside/library) -"tTP" = ( -/obj/structure/machinery/vending/snack, +"tHZ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"tTU" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"tUe" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"tUt" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"tIr" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"tUw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"tUB" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tVk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4 +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"tIA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/warnplate/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"tVl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"tVn" = ( -/obj/item/tool/lighter/zippo, /turf/open/floor, /area/bigred/ground/garage_workshop) -"tVT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"tVZ" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/janitor, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"tWj" = ( -/obj/effect/decal/cleanable/dirt, +"tJz" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"tWl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, +/obj/item/folder/yellow, /turf/open/floor/dark, /area/bigredv2/outside/telecomm) -"tWr" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"tXh" = ( -/turf/open/floor/plating/warnplate, -/area/bigredv2/caves/lambda/xenobiology) -"tXi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"tXr" = ( -/obj/structure/machinery/floodlight, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"tXI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"tXJ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"tXM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"tXW" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"tYe" = ( +"tJD" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"tYh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"tYo" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tYq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkblue2, -/area/bigredv2/caves/eta/research) -"tYE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Virology Lab Decontamination" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"tYW" = ( -/obj/structure/bed/chair, +/obj/item/storage/firstaid/regular, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/medical) -"tZo" = ( +"tJE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"tZs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"uad" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/lightreplacer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"tKf" = ( +/obj/structure/machinery/disposal, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/red/southwest, -/area/bigredv2/outside/lambda_cave_cas) -"uan" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"uaD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"uaN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Operating Theatre" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"uaO" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/c) -"uba" = ( +/area/bigredv2/outside/space_port) +"tKg" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"tLe" = ( +/obj/effect/glowshroom, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"tLo" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"tLr" = ( /obj/structure/machinery/door_control{ desc = "A remote control-switch for opening the engines blast doors."; id = "rad_door"; @@ -26132,98 +25689,264 @@ }, /turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) -"ubd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, +"tLE" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"tLF" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"tLW" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/caves/eta/research) +"tMF" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"tMM" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_east) +"tMV" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"tNu" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, /area/bigredv2/outside/bar) -"ubn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior"; - pixel_x = null +"tOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"ubs" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"tOJ" = ( +/obj/structure/machinery/camera/autoname, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tOP" = ( +/obj/structure/surface/table, +/obj/item/tool/screwdriver, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "yellow"; + phone_id = "Robotics" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"tOY" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"tPy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" }, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"ucd" = ( +"tPI" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"tPX" = ( /obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"ucm" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ucA" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"tQf" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tQD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"ucD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"tQQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"tQY" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"tRc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/machinery/recharge_station, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"ucH" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_virology) -"uda" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/bigredv2/outside/engineering) +"tRj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"tRu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"udc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"ude" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"tRv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/gloves, +/obj/item/reagent_container/spray/cleaner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"tRE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"tRF" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"tSe" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/eta) +"tSo" = ( +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"tSy" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/e) -"udg" = ( -/obj/structure/machinery/camera/autoname{ +/area/bigredv2/outside/c) +"tSH" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"tSK" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"tSR" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/red/northeast, /area/bigredv2/outside/marshal_office) -"udl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tTs" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_lambda) +"tTG" = ( +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"tTL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"udv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Storage" +/obj/structure/sign/safety/high_rad{ + pixel_x = -32 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"udw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"tUv" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tUE" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"tVl" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"tVn" = ( +/obj/item/tool/lighter/zippo, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tVC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"tVD" = ( +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"tVV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"udY" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"tVY" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"tVZ" = ( /obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ueB" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"tWf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tWn" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/handset, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"tWu" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"tWR" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"tWW" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"tXl" = ( /obj/structure/phone_base/colony_net{ phone_category = "Solaris Ridge"; phone_color = "green"; @@ -26232,1397 +25955,1505 @@ }, /turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) -"ueP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"ufe" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Anomaly Chamber" +"tXo" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tXY" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"ufk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"ufq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/admin_building) +"tYp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Marshal Office Prison Toilet" }, /turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"ufT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 +/area/bigredv2/outside/marshal_office) +"tYO" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 }, /turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"ufV" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_research) -"ufW" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"ugv" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/filtration_plant) -"ugM" = ( +/area/bigredv2/outside/virology) +"tYQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Machine room" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tZi" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"ugS" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"ugV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tZv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"tZS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"uai" = ( +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) -"uha" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" +"uar" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"uaG" = ( +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"uaO" = ( +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/weapon/gun/pistol/b92fs{ + pixel_x = 13; + pixel_y = -7 }, -/turf/open/mars_cave/mars_cave_3, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"uhm" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"uhu" = ( +"ubd" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"uhM" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"uib" = ( -/obj/structure/bed, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"uis" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"ubs" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ubz" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ubN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = 32 }, +/obj/effect/decal/cleanable/vomit, +/obj/structure/machinery/light/built{ + dir = 1 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"ucD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"uiQ" = ( -/obj/structure/machinery/power/apc/power/south, /turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"uiZ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/area/bigredv2/caves/eta/research) +"ucH" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_virology) +"ucW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"udg" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"udm" = ( /turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"ujg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/area/bigredv2/outside/lz2_south_cas) +"udw" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"udB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"udL" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"ujm" = ( -/obj/item/tool/wet_sign, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"uei" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"ukj" = ( -/obj/item/tool/warning_cone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/filtration_cave_cas) -"ukr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidfloor/north, +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"uej" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) -"uku" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ukJ" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ukR" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"ulH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/on, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"umO" = ( -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"umV" = ( +"uel" = ( +/obj/structure/safe, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ueK" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ueP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) +"ueY" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"ufh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"unc" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "Operations"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/caves/eta/xenobiology) -"unf" = ( -/turf/open/floor/darkblue2/north, +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) -"unm" = ( -/obj/structure/bed/chair/office/dark{ +"ufs" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ufF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"ufO" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"ufY" = ( +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"unt" = ( -/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"ugx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"unv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/n) -"unz" = ( -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"uoz" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/structure/cable{ - icon_state = "11-6" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"ugG" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uoD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"upi" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"upw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"upE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"upW" = ( -/obj/structure/machinery/power/breakerbox/activated, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"uqr" = ( +"uhN" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/space_port_lz2) +"uhP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"uhT" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/virology) +"uhZ" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet7_3/west, -/area/bigredv2/outside/admin_building) -"uqA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"urf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"urq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"urr" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/eta) -"urs" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"urK" = ( -/obj/structure/bed, +/obj/effect/decal/cleanable/blood, /turf/open/floor/white, -/area/bigredv2/outside/medical) -"urL" = ( +/area/bigredv2/outside/marshal_office) +"uid" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/outside/space_port) +"uja" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"urP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"urT" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/nw) -"urW" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"urZ" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/xenobiology) +"ujm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"usn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"ust" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 7 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Kitchen Storage" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"usz" = ( /turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"usJ" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Dormitories APC" - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"usL" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/filtration_cave_cas) -"uto" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +/area/bigredv2/outside/hydroponics) +"ukc" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/wood, -/area/bigredv2/outside/bar) -"utI" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"uuc" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"uun" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = 5 +/area/bigredv2/outside/admin_building) +"ukf" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = -5 +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uvH" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"ukg" = ( +/obj/effect/glowshroom, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"uwo" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"ukr" = ( /obj/structure/curtain/medical, /turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/lambda/virology) -"uwp" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, +"ukK" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"uwA" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/s) -"uwJ" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"uwO" = ( +/area/bigredv2/outside/lz2_west_cas) +"ult" = ( /obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"uxx" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"ulH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/on, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"uxG" = ( -/obj/item/trash/pistachios, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"uxN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/shard{ - icon_state = "small" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"uxQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +"ulN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"uxS" = ( +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"ump" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"umX" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"ung" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"uxU" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"unl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uyu" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/lz2_south_cas) -"uyH" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"uyT" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"uzf" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"uzj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"uzk" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"unq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"uzr" = ( -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 + dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"uzW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" + name = "\improper Medical Clinic Treatment" }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"uAm" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"unx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"uAA" = ( -/obj/structure/machinery/deployable/barrier, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"unD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Eta Lab Armory" }, /turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"uAW" = ( +/area/bigredv2/caves/eta/research) +"unF" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ + layer = 4 + }, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"unY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"uAZ" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"uon" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"uBx" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"uBy" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"uBH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"uCs" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"uCu" = ( -/obj/structure/bed/stool, +/turf/open/floor/dark, +/area/bigredv2/landing/console) +"uox" = ( +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"uoA" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"uoQ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"uoS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"upd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/flask/detflask, /turf/open/floor/wood, -/area/bigredv2/outside/bar) -"uCx" = ( -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/research) -"uCF" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/marshal_office) +"upi" = ( +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"upk" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"upw" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"upE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigred/ground/garage_workshop) -"uCM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"upX" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"upY" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"uqa" = ( +/obj/structure/target, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"uqy" = ( +/obj/structure/cryofeed, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) -"uCW" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/virology) -"uDb" = ( -/obj/structure/closet/athletic_mixed, +"uqE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"uqH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"urb" = ( +/obj/item/grown/sunflower, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"urr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"urs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"urK" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"uDn" = ( -/obj/structure/sign/safety/west, -/obj/structure/sign/safety/hazard{ - pixel_x = 12 +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"urO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/copper{ + pixel_y = 1 }, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"uDo" = ( -/obj/structure/cable{ - icon_state = "5-8" +/obj/item/stack/sheet/mineral/osmium{ + pixel_y = 6 }, -/obj/structure/cable{ - icon_state = "5-6" +/obj/item/stack/sheet/mineral/platinum{ + pixel_y = 12 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uDq" = ( -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"uDs" = ( -/obj/structure/machinery/light{ - dir = 4 +"urX" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ust" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/mars_cave/mars_cave_11, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"usx" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"utd" = ( +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/research) -"uDx" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/obj/structure/cable, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"uEn" = ( +"utn" = ( /obj/structure/surface/table, -/obj/item/reagent_container/glass/bottle/toxin, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"uEF" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"uEN" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"uER" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"uEY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"uts" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"utu" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"utG" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/space_port_lz2) +"uuc" = ( +/obj/structure/machinery/power/breakerbox/activated, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"uFh" = ( +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"uup" = ( /obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/north, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) -"uFi" = ( -/obj/item/paper/bigred/finance{ - pixel_x = -9 +"uuq" = ( +/obj/structure/cable{ + icon_state = "1-6" }, -/turf/open/floor/plating, +/obj/structure/cable{ + icon_state = "6-8" + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uFm" = ( +"uuC" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"uuI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uuP" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/s) +"uvx" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"uvy" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/e) -"uFo" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"uFp" = ( -/obj/structure/machinery/mill, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"uFL" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/n) -"uFS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"uGw" = ( +"uvF" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"uvI" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"uvS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whiteyellow/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"uwA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; name = "\improper Greenhouse Storage" }, /turf/open/floor/delivery, -/area/bigredv2/outside/library) -"uGT" = ( -/obj/structure/machinery/light, +/area/bigredv2/outside/hydroponics) +"uwE" = ( +/obj/structure/bed/chair/comfy/blue, /turf/open/floor/wood, -/area/bigredv2/outside/bar) -"uGX" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"uHd" = ( -/obj/structure/closet/jcloset, +/area/bigredv2/outside/admin_building) +"uwF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"uHj" = ( -/turf/open/floor/whitepurplefull, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"uxl" = ( +/obj/structure/window/framed/solaris, +/obj/effect/decal/cleanable/molten_item, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"uxx" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"uxP" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars/mars_dirt_12, +/area/space) +"uxQ" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"uys" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"uyw" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "eta_carp" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/xenobiology) +"uyx" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"uyI" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uyJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"uzq" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"uzw" = ( +/turf/open/floor/purple/north, /area/bigredv2/caves/lambda/research) -"uHm" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_4, +"uAm" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"uAA" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uHp" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_research) -"uHs" = ( +"uAC" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"uAV" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"uBi" = ( +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"uBo" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, +/obj/item/moneybag, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"uBO" = ( +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"uCn" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"uHN" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) +"uCq" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"uHQ" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"uHV" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"uIb" = ( -/obj/structure/bed/chair, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"uCs" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"uCJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"uIf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Operations Armory" +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"uCS" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uCV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"uIn" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = -28 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"uCZ" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/ne) +"uDn" = ( +/obj/structure/sign/safety/west, +/obj/structure/sign/safety/hazard{ + pixel_x = 12 + }, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"uDB" = ( +/obj/item/explosive/grenade/custom/antiweed, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"uDR" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"uEb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) -"uIz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"uEj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"uIH" = ( -/obj/item/tool/hatchet, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"uJa" = ( +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"uED" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"uEP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uER" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"uEU" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/w) +"uEX" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/filtration_plant) +"uFe" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/caves_lambda) -"uJw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"uFi" = ( +/obj/item/paper/bigred/finance{ + pixel_x = -9 }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"uFp" = ( +/obj/structure/machinery/mill, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"uFC" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"uFE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"uJP" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uFZ" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"uGa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"uJU" = ( +"uGl" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_lambda) +"uGA" = ( /obj/structure/machinery/light{ dir = 4 }, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/eta/research) +"uGZ" = ( +/obj/structure/machinery/camera/autoname, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"uJV" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"uKd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, +/area/bigredv2/outside/office_complex) +"uHQ" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"uHS" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"uHX" = ( +/obj/item/trash/burger, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uKi" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +"uId" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"uKo" = ( -/turf/open/mars_cave/mars_cave_17, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"uKr" = ( -/obj/structure/machinery/door_control{ - id = "Kitchen Greenhouse"; - name = "Storm Shutters"; - pixel_x = 32 +"uIm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/red/northwest, +/area/bigredv2/outside/marshal_office) +"uIo" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_lambda) +"uIM" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"uIW" = ( +/obj/structure/platform/shiva, +/obj/structure/platform/shiva{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"uKs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"uKx" = ( +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"uIY" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"uJw" = ( /obj/structure/surface/table/reinforced, -/obj/item/trash/waffles, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) +/obj/item/book/manual/research_and_development, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"uJG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) "uKC" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"uKF" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"uLk" = ( +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"uKN" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/sw) +"uKQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W-corner" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"uLH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/witness, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uLK" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"uKZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/ne) -"uLW" = ( -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/storage) -"uMy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"uMF" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"uMP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/c) -"uMU" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/darkpurple2/north, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"uLj" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"uNb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"uNc" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"uNh" = ( +"uLp" = ( /obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/bigredv2/caves/eta/xenobiology) -"uNq" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"uNt" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"uLA" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"uNz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"uLE" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"uNA" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"uLH" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/med_data/laptop{ +/obj/effect/spawner/random/toolbox, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"uLL" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/n) +"uLM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"uNI" = ( -/obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/waffles, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"uOh" = ( -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"uOv" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"uOC" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/chapel) -"uOG" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"uOR" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"uOT" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"uPh" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"uPk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"uPn" = ( -/obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"uPq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"uPH" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"uLY" = ( +/obj/item/clothing/glasses/meson, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"uQa" = ( -/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"uMa" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"uQu" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"uMp" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"uQD" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/space_port_lz2) -"uRj" = ( -/obj/structure/machinery/light{ - dir = 1 +"uMH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"uNA" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"uNH" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"uNJ" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "reactor_meltdown" }, -/obj/structure/pipes/vents/pump{ +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"uNP" = ( +/turf/open/floor/carpet9_4/west, +/area/bigredv2/outside/bar) +"uNQ" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"uOh" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"uOz" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"uRz" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/space_port) +"uOB" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"uPg" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"uPr" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"uRB" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"uPv" = ( /turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"uRD" = ( +/area/bigredv2/outside/office_complex) +"uPB" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"uPL" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"uPT" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"uQA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"uQG" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"uQQ" = ( +/obj/item/clothing/glasses/welding, +/turf/open/floor/purplecorner/west, +/area/bigredv2/caves/lambda/research) +"uRl" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uRu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "uRE" = ( /obj/effect/landmark/nightmare{ insert_tag = "medbay-passage" }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/admin_building) -"uRO" = ( -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"uRP" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"uSs" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/s) -"uSQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"uTc" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Cell" +"uRG" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/virology) +"uRJ" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"uRU" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_research) +"uSh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uSu" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "An exchange valve"; + dir = 8; + icon = 'icons/obj/pipes/filter.dmi'; + icon_state = "map"; + name = "Automated Valve" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/xenobiology) -"uTo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uSw" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uSz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"uSY" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_north) +"uTo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"uTB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"uTO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"uUy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"uUc" = ( -/obj/item/tool/warning_cone, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"uUA" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper General Store" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"uUD" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/storage) +"uUL" = ( /turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/s) +/area/bigredv2/outside/eta) +"uUQ" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;200" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) "uUV" = ( /obj/structure/prop/server_equipment/yutani_server/broken, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) -"uUW" = ( -/obj/structure/machinery/power/apc/no_power/north, +"uUZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/lz2_cave) -"uVf" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"uVg" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"uVi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"uVp" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"uVq" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Hydroponics" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"uVY" = ( -/obj/structure/surface/table, -/obj/item/device/healthanalyzer, -/obj/structure/pipes/vents/pump, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic"; - pixel_y = 24 + icon_state = "NW-out" }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"uWh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/built{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"uWG" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/nw) -"uWN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"uXg" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"uXn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"uXt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Robotics" +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"uVq" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"uXE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"uVu" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"uVH" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 3; + pixel_y = 12 }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uWc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"uXY" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"uXZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/telecomm/warehouse) +"uWf" = ( +/obj/item/tool/extinguisher/mini, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"uWx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"uWW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"uXl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/mars_cave/mars_cave_16, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"uXU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"uYj" = ( +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"uYr" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_north) -"uYA" = ( +"uYn" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"uZk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"uZl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"uZm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"uZJ" = ( +/obj/item/weapon/gun/rifle/m4ra, +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"uZW" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/telecomm) -"uYL" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) -"uYU" = ( -/turf/open/floor/darkyellow2/southeast, +"vaw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"vaG" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"vbf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"vbj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"vbk" = ( +/obj/item/ore, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) -"uZc" = ( +"vbq" = ( /obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"uZo" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/n_cave) -"uZq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/tool/weedkiller/D24, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vbv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"vbx" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"vbA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_west_cas) -"uZG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"vac" = ( +/area/bigredv2/caves/lambda/xenobiology) +"vbC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_east) -"vaf" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_se) +"vbW" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vcc" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"vag" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"vcn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"vcw" = ( +/turf/open/floor/purple/southeast, +/area/bigredv2/caves/lambda/research) +"vcK" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vcN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"vcO" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/ne) +"vcX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"vdh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "etatunnel_open" }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"vdk" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"vaZ" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"vbf" = ( -/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"vdo" = ( +/obj/effect/landmark/hunter_primary, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"vbA" = ( +/area/bigredv2/caves_sw) +"vdB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"vbH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"vch" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"vcj" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_virology) -"vcH" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"vcM" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"vdb" = ( -/obj/effect/spawner/random/tool, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"vdc" = ( +/area/bigredv2/caves_east) +"vdF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/virology) -"vdv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"vdV" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) +"vea" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) "vec" = ( /obj/structure/pipes/standard/tank, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"vef" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"veg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) +"vek" = ( +/obj/structure/surface/table, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) "vex" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) -"vfo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"vfp" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"vfq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"veQ" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vff" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vfW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"vgl" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) -"vfr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +"vgO" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) -"vhK" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"vgR" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"vhM" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_north) -"vhS" = ( -/turf/open/floor/darkpurple2/northwest, -/area/bigredv2/caves/lambda/research) -"vid" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "U-S" +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"vhN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/dark, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"vhR" = ( +/turf/open/floor/darkpurplecorners2/north, /area/bigredv2/caves/lambda/research) -"viE" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz1_north_cas) -"viF" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/ne) -"viJ" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz1_north_cas) -"vjd" = ( +"vhX" = ( +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"vie" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"vik" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"viD" = ( +/obj/item/trash/eat, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"vjp" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_sw) -"vjz" = ( +"vjA" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/ne) +"vjY" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"vjJ" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"vjW" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Server" - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"vkb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) "vkh" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" +/obj/structure/largecrate/random, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"vkm" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/research) +"vko" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"vkQ" = ( +/obj/structure/machinery/deployable/barrier, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"vlh" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"vki" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"vkV" = ( -/obj/item/ore/gold, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vlt" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) -"vmi" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"vml" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"vmq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"vlm" = ( +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/surface/rack, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"vlL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"vmr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, +/area/bigredv2/outside/engineering) +"vlV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/xenobiology) +"vmf" = ( +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"vmp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) +/area/bigredv2/caves_research) +"vmK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) "vmL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, @@ -27646,143 +27477,229 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"vna" = ( -/turf/open/mars_cave/mars_cave_23, +"vmX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"vnd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"vnk" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vnv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"vny" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"vnD" = ( +/obj/structure/cable{ + icon_state = "5-6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"voy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/purple/west, /area/bigredv2/caves/lambda/research) -"vnh" = ( -/obj/effect/glowshroom, +"voF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"voW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/eta/research) +"vpH" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vpN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"vpT" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"vqa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"vqc" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vqh" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -32 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"vqx" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) -"vnq" = ( -/obj/structure/surface/table, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"vnA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/nw) -"vnV" = ( +"vqz" = ( +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vqH" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vrx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"vol" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"vrC" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"vrD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"vou" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"vrE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"vpw" = ( -/turf/open/floor/bluegrid/damaged5, -/area/bigredv2/caves/lambda/research) -"vpB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"vqd" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"vst" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"vta" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"vtc" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitebluefull/northeast, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"vqt" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"vtj" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"vqC" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"vqG" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"vrd" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"vrl" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"vto" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"vts" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"vrS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"vrZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Lambda Lab Prison Restroom" +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"vtF" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"vsn" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" +/area/bigredv2/outside/engineering) +"vum" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"vsx" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light/built{ dir = 4 }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/lambda_cave_cas) -"vsT" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_west_cas) -"vtb" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"vut" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vtv" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"vuA" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"vuH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vuI" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"vuN" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"vuY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"vvd" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) +/turf/open/floor/delivery, +/area/bigredv2/caves_north) "vvj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) +"vvC" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_plant) +"vvE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) "vvL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/minecart_tracks{ @@ -27794,679 +27711,771 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"vvP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"vwk" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"vxq" = ( -/turf/open/floor/whiteyellow, -/area/bigredv2/caves/lambda/xenobiology) -"vxI" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, +"vwb" = ( +/obj/structure/machinery/light, /turf/open/floor/wood, /area/bigredv2/outside/bar) +"vwe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"vwh" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donut, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vwp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_virology) +"vwt" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"vwN" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"vwY" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"vxb" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/filtration_plant) "vxQ" = ( /obj/item/tool/pickaxe/gold, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"vye" = ( +"vyh" = ( +/obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"vyN" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"vyj" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"vyr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -4; - pixel_y = 7 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"vyu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"vyO" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/c) +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"vyC" = ( +/obj/structure/surface/table, +/obj/item/toy/sword, +/obj/item/toy/gun, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vyE" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/chapel) "vyV" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "vyW" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "Bar Complex"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"vzC" = ( +/obj/item/explosive/grenade/slug/baton{ + dir = 1; + pixel_y = -8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"vyY" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_cave_cas) -"vzj" = ( -/obj/structure/machinery/computer/area_atmos{ - dir = 1 +/obj/item/explosive/grenade/baton{ + dir = 4; + pixel_x = 9; + pixel_y = -8 }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"vzt" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"vzF" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-10" }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"vAs" = ( -/obj/structure/window/framed/solaris/reinforced/tinted, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"vAI" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"vAX" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Eta Lab Decontamination" +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"vBe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" +/obj/structure/cable{ + icon_state = "4-5" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"vBi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"vBx" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) -"vBI" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/filtration_plant) -"vBQ" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 13 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vzI" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"vBR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lambda Lab Maintenance Storage" +"vzY" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"vAe" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/warning_stripes, +/turf/open/floor/whitepurple, /area/bigredv2/caves/lambda/xenobiology) -"vBU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"vAf" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"vCb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 }, -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"vCr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/medical{ - pixel_y = -32 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vAg" = ( +/obj/item/tool/wirecutters, /turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"vCA" = ( -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"vCE" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/area/bigredv2/outside/c) +"vAo" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/core, +/obj/item/shard, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"vAs" = ( +/obj/structure/window/framed/solaris/reinforced/tinted, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"vAt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Abandoned Mining Storage" }, -/obj/item/weapon/gun/rifle/mar40/lmg, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vCH" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"vCR" = ( -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"vDM" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"vDR" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +"vAu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"vAQ" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) +"vBh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"vDT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/lawyer/bluejacket, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"vEd" = ( -/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"vEw" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"vEx" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_research) -"vEW" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"vFf" = ( -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vBA" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"vFt" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/c) -"vFP" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vBZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"vCg" = ( +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"vCP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"vDd" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/structure/machinery/light{ + dir = 8 }, +/obj/item/ammo_magazine/pistol/m1911, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vFX" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"vGg" = ( +"vDx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"vGl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"vDO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"vGG" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"vEb" = ( +/obj/structure/coatrack{ + pixel_x = 12 }, -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"vGN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"vGO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ + pixel_x = 11; + pixel_y = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"vGQ" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/n) -"vGR" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/n) -"vGY" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"vEe" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"vEn" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"vEv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"vEy" = ( /obj/structure/surface/table, -/obj/item/spacecash/c100, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 12 +/obj/item/storage/firstaid/rad, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"vFi" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"vFo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"vFu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"vGo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "vHa" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"vHh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Command Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"vHg" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/obj/item/folder/black, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"vHn" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_north) -"vHt" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"vHw" = ( +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"vHI" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) +"vHY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"vIp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"vHw" = ( -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"vHD" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"vHK" = ( +"vIq" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper/courtroom{ + name = "A Crash Course in Legal SOP" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"vIr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/good_item, -/turf/open/floor/dark, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Virology Lab Decontamination" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"vIU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"vHO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"vJa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port) +"vJg" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"vHQ" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Virology Lab" +/area/bigredv2/outside/office_complex) +"vJq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"vHR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"vIC" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"vJr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"vJu" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"vJw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vJJ" = ( +/obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"vIV" = ( +"vJP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"vKi" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/lz2_south_cas) +"vKu" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"vKw" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"vJy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"vJD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"vJN" = ( -/obj/structure/platform_decoration/shiva{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"vKO" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/platform_decoration/shiva, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"vJR" = ( -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/engineering) -"vKt" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"vKF" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/white, -/area/bigredv2/outside/medical) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) "vLd" = ( /turf/open/floor, /area/bigred/ground/garage_workshop) -"vME" = ( -/obj/structure/machinery/teleport/station, -/turf/open/floor/podhatch, -/area/bigredv2/caves/lambda/research) -"vMI" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"vNd" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/spawner/random/tool, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"vNX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"vOy" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_virology) -"vOP" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"vOY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"vMl" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"vPH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"vQi" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"vQo" = ( -/obj/structure/window, -/obj/structure/window{ - dir = 8 +"vMC" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; + name = "W-Y Enviorment Control System Control Panel" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"vQz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"vQL" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"vQN" = ( -/turf/open/floor/rampbottom/north, -/area/bigredv2/outside/chapel) -"vQQ" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/n) -"vQW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/cable{ + icon_state = "11-2" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"vQY" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/filtration_plant) -"vRs" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"vRz" = ( -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"vRE" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 +/obj/structure/cable{ + icon_state = "11-10" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vSb" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"vSs" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"vSR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"vMR" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"vNi" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"vNl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"vNn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/delivery, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"vSX" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/caves_north) -"vSY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"vTi" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"vTp" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"vTr" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Filtration"; - pixel_y = 24 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"vTs" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"vTy" = ( +"vNo" = ( +/obj/structure/closet/l3closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"vNQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"vNS" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/s) +"vNX" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"vTI" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"vTS" = ( -/obj/structure/largecrate/random, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 + }, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"vTX" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/ne) -"vUh" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/brown, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 +"vOj" = ( +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"vOG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"vPj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"vPl" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"vPr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"vUs" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vUx" = ( +"vPU" = ( +/obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/dark, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"vPW" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"vUV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vQo" = ( +/obj/structure/machinery/teleport/station, +/turf/open/floor/podhatch, +/area/bigredv2/caves/lambda/research) +"vQr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"vQv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vRc" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"vRh" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) +"vRs" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"vRw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"vRB" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"vRJ" = ( +/obj/item/device/mass_spectrometer/adv, +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"vRU" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"vSn" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"vSF" = ( +/obj/item/clothing/accessory/storage/holster/armpit, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) -"vVW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"vTu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vTw" = ( +/obj/structure/surface/table, +/obj/item/toy/dice, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"vTM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"vVZ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_cave_cas) -"vWL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"vWR" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" +/area/bigredv2/outside/general_offices) +"vTN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -9; + pixel_y = 13 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vWZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Anomaly Lab" +"vTQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"vXA" = ( -/obj/structure/machinery/telecomms/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"vYc" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/lz2_cave) +"vTV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"vUj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"vUs" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/sign/prop3{ - pixel_y = 32 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"vUx" = ( +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"vUQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"vYv" = ( -/obj/item/device/flashlight, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vUY" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vYB" = ( -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 2; - pixel_y = -3 +"vVr" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"vVZ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_cave_cas) +"vWf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/lz2_cave) +"vWl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + name = "\improper Dormitories Restroom" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vYD" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"vYJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"vWn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"vZs" = ( -/obj/structure/toilet{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vWp" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"vWE" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"vWK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"vXt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"vXz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"vXG" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_north) +"vXU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/paper/bigred/lambda, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"vXZ" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"vZL" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/glass{ - amount = 30 +"vYg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Offices" }, -/turf/open/floor, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) -"was" = ( -/obj/structure/machinery/mill, -/turf/open/floor/darkyellow2/north, +"vYo" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"vYU" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"vYX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"vZh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"vZp" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"waB" = ( -/obj/structure/machinery/light{ +"vZC" = ( +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"vZG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"wbd" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"vZN" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"vZZ" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"wan" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/landmark/corpsespawner/colonist/random/burst, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"wau" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"waz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"wbe" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"wbg" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) "wbx" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "Righty tighty, lefty loosey!"; @@ -28477,405 +28486,383 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wbB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"wbY" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" +"wbA" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"wcg" = ( -/turf/open/mars_cave/mars_cave_14, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"wbI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"wbJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wcd" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"wci" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"wcj" = ( +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) "wcw" = ( /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"wcT" = ( -/turf/open/mars_cave/mars_dirt_6, +"wcz" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) -"wcU" = ( -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"wdv" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_north) -"wdF" = ( -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"wdS" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"wef" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/engineering) -"wer" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ +"wcN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"wcV" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wdp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"wdA" = ( +/turf/open/floor/purple/northeast, +/area/bigredv2/caves/lambda/research) +"wdB" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"wdE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"weg" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wer" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"weu" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) "weF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) "weO" = ( /obj/structure/closet/secure_closet/medical_wall{ pixel_y = -5 }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) +"weX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"weZ" = ( +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wfa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) "wfd" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) +"wfk" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) "wfn" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"wfI" = ( -/obj/structure/surface/table, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_15"; - pixel_y = 10 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"wfJ" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"wfS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/lambda/virology) -"wfW" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"wgi" = ( -/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"wgm" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"wgu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"wgy" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"wgA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"wfw" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz1_north_cas) +"wgd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) -"wgC" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"wgi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wgI" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper{ - pixel_x = -7 - }, -/obj/item/prop/magazine/book/theartofwar{ - pixel_x = 11 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"wgk" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/item/tool/pen{ - pixel_x = -7 +/obj/structure/window/reinforced/tinted, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"wgJ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, /turf/open/floor/wood, /area/bigredv2/outside/library) -"wgO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"wgQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 9; - pixel_y = -3 +"wgL" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Hydroponics" }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wgZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"whp" = ( -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"wgO" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"whN" = ( -/obj/structure/surface/table, -/obj/structure/xenoautopsy, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"whV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"wib" = ( -/obj/structure/surface/table, -/obj/item/folder/black, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"wiH" = ( +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"whk" = ( /obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/obj/item/xenos_claw, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"wiU" = ( -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"wiZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"wjx" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"wjB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"wjN" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"wjU" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"whx" = ( +/obj/structure/surface/table/holotable/wood, +/obj/item/paper_bin, +/obj/item/tool/pen/clicky, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"whG" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"whI" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"wkj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/outside/admin_building) +"whJ" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 13; + pixel_y = 10 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"wkx" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wkP" = ( -/turf/open/floor/rampbottom/north, -/area/bigredv2/outside/marshal_office) -"wlo" = ( +"whV" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) -"wlB" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 5; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"wmD" = ( -/obj/structure/bed/chair, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wmM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +"wic" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"wmR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wmX" = ( +/area/bigredv2/outside/filtration_plant) +"wiQ" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"wjh" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"wmY" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"wno" = ( -/obj/structure/machinery/light, +/area/bigredv2/outside/filtration_plant) +"wjn" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"wjp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel{ + id = "hole2" + }, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"wns" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"wnz" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"wnB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/bigredv2/caves/eta/xenobiology) +"wjq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"wnQ" = ( -/obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_id = "Workshop" +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"wki" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"wku" = ( +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"wkK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"wnS" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"wkM" = ( +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"wkX" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"wll" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"wls" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/research) -"wos" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"wot" = ( -/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"wmk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"wmn" = ( /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) -"wox" = ( -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"woE" = ( -/obj/structure/surface/table, +"wmr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"wnz" = ( +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) +"wnV" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/recharger, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"wol" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"woq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/device/healthanalyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"woN" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"wow" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"woT" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"wpc" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"wpr" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"wpF" = ( -/obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) -"wpO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"wpw" = ( /obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"wpR" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"wpI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"wqB" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_sw) -"wqD" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/eta) -"wqE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"wpJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic Chemistry" }, -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"wqI" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/c) -"wqU" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_plant) -"wri" = ( -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/admin_building) -"wrC" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -32 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"wpQ" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"wqs" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"wqC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"wqF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"wqH" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda"; + name = "Lambda Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves_north) "wrS" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -28883,397 +28870,451 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wrV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"wsb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"wsd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/light/built{ - dir = 4 +"wsa" = ( +/obj/structure/surface/table, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_15"; + pixel_y = 10 }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"wsf" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/outside/lambda_cave_cas) -"wsg" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/landmark/corpsespawner/colonist/random/burst, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"wsM" = ( -/obj/effect/spawner/random/toolbox, /turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"wsN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/area/bigredv2/outside/office_complex) +"wsA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = -28 +/obj/item/device/defibrillator, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"wsB" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" }, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"wtj" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wtr" = ( /turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) -"wsP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"wsT" = ( +"wuc" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"wup" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"wut" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, /obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"wux" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"wuK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"wvg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 18; + pixel_y = 11 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wsY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/podhatch/northeast, -/area/bigredv2/caves/lambda/research) -"wtj" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"wtl" = ( -/obj/item/trash/burger, -/turf/open/floor/plating/platingdmg3/west, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"wub" = ( +"wvu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"wuu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Clinic" }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"wuA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"wuF" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/n) -"wvj" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"wwr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"wvn" = ( -/obj/effect/landmark/crap_item, +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"wwt" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"wvB" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"wvE" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"wvF" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"wwB" = ( +/obj/structure/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"wvW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"wwD" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"wwF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"wwc" = ( -/obj/item/weapon/broken_bottle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wwt" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"wwH" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Kitchen"; - name = "Storm Shutters"; - pixel_x = 32 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"wwG" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"wwI" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"wwR" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"wwX" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_east) +"wxd" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigred/ground/garage_workshop) +"wxE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"wxJ" = ( +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lambda_cave_cas) -"wwS" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 +"wxT" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_research) +"wxU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"wxW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wwT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"wwY" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"wxw" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"wxB" = ( -/obj/structure/surface/table, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"wxX" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"wxE" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"wyx" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/area/bigredv2/outside/filtration_plant) +"wyi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior"; + pixel_x = null }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"wym" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"wyt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) "wyB" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/ne) -"wyY" = ( -/obj/item/tool/pickaxe{ - pixel_y = -3 +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"wyH" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_lambda) +"wyQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"wyV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 11 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"wzf" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) "wzn" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"wzq" = ( -/obj/structure/closet, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/plating/platingdmg3/west, +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"wzv" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"wzC" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ +"wzs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"wzN" = ( -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_se) -"wzQ" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"wAx" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz2_south_cas) -"wAC" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"wAJ" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wAL" = ( -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/bar) -"wAN" = ( -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"wzG" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"wAe" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"wAO" = ( +/obj/structure/machinery/light/built, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"wAP" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/virology) "wBg" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"wBj" = ( -/obj/structure/urinal{ - pixel_y = 32 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"wBp" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"wBt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"wCa" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/darkyellow2, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"wBU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"wBZ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) -"wCd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"wCe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"wCn" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_west_cas) -"wDo" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"wCE" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bottle/toxin, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"wCK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"wDy" = ( -/obj/structure/machinery/light{ - dir = 1 +"wCL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"wDI" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"wDO" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"wDl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) "wDV" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_3, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"wEi" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"wEB" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 +"wDX" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"wEE" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/storage) -"wEW" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"wFj" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"wEb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"wFp" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"wGe" = ( -/obj/structure/platform, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"wGh" = ( +"wEj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"wGp" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"wEk" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"wEn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/white, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"wEH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/ammo_magazine/pistol/hp{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/ammo_magazine/pistol{ + pixel_y = -4 + }, +/obj/structure/cable{ + icon_state = "9-10" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wEL" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"wEN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"wEO" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/sw) +"wEZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"wFb" = ( +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"wFs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"wFK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"wGe" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) +"wGn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/obj/item/xenos_claw, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) "wGr" = ( /obj/structure/closet/firecloset/full, /turf/open/mars, /area/bigredv2/outside/c) -"wGX" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/asteroidwarning, -/area/bigredv2/caves_lambda) -"wHg" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"wGP" = ( +/obj/structure/machinery/door_control{ + id = "garage"; + name = "Garage Shutters"; + pixel_x = 26; + range = 500 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"wGU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/xenobiology) +"wHb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wHl" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/s) -"wHn" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"wHp" = ( -/obj/item/tool/wirecutters, +/obj/item/stack/sheet/wood{ + amount = 2 + }, /turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"wIv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"wIK" = ( -/obj/effect/landmark/crap_item, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"wJb" = ( -/obj/structure/machinery/computer/pandemic, +/area/bigredv2/outside/nw) +"wHn" = ( +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/research) +"wHs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"wIq" = ( +/obj/structure/surface/table, /turf/open/floor/white, -/area/bigredv2/outside/virology) +/area/bigredv2/outside/admin_building) +"wIy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"wIH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) "wJd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -29281,230 +29322,198 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "wJf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"wJK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"wKh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"wKs" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"wJp" = ( +/obj/structure/tunnel{ + id = "hole1" }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"wKE" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"wJG" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wJZ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"wKn" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_research) +"wLk" = ( +/obj/item/tool/warning_cone{ + pixel_y = 20 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"wLx" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"wLX" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/n) +"wMm" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"wMq" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_west_cas) +"wMI" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"wKH" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"wKQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"wMN" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Marshal Office" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"wKY" = ( -/obj/structure/largecrate/supply/supplies, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"wLa" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"wLQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"wMu" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"wMA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Dormitories EVA Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"wMH" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) "wMQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor, /area/bigred/ground/garage_workshop) -"wMZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) "wNq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/warnplate/northeast, -/area/bigredv2/caves/lambda/xenobiology) +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) "wNA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/pistol/m1911, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wNC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"wNE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bar" +"wNT" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"wNU" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"wNM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"wNN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wNZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"wOH" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"wOJ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"wPc" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"wPj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, -/turf/open/floor/red, +/turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) -"wPr" = ( -/obj/structure/surface/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"wPv" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) +"wPn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"wPp" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"wPA" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "wPD" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/filtration_cave_cas) +"wPQ" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"wPU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"wPG" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"wPY" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"wQg" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/effect/landmark/good_item, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wQn" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"wQo" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"wQt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" }, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"wQm" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = -4 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"wQy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"wQO" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"wQw" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"wQW" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"wQY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"wQZ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"wRB" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wRD" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"wRO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"wQA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/lambda/xenobiology) +"wSa" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"wRc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"wRq" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"wRD" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"wRR" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -10; - pixel_y = 12 +/obj/structure/mirror{ + pixel_x = -28 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wSg" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) "wSj" = ( /obj/structure/sign/safety/life_support, /obj/structure/sign/safety/maint{ @@ -29512,638 +29521,686 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) -"wSo" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"wSD" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/nw) +"wSF" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "wSK" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_north) -"wTr" = ( +/obj/structure/machinery/vending/snack, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"wTv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"wSZ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) -"wTB" = ( -/obj/structure/largecrate/random/barrel/white, +"wTu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"wTJ" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"wTR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/mineral/processing_unit, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wTU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"wUg" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"wUI" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"wUN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +"wTT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"wTV" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_research) +"wUh" = ( +/obj/structure/bed/chair/comfy/lime{ dir = 8 }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"wUT" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"wUn" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"wVs" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"wVy" = ( -/obj/item/clothing/under/lightbrown, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"wVB" = ( -/obj/structure/platform, -/obj/structure/platform{ +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" + }, +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/outside/admin_building) +"wUH" = ( /obj/structure/platform_decoration{ - dir = 10 + dir = 1 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"wVH" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"wVM" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"wVe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"wVj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wVz" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) -"wVO" = ( -/obj/item/robot_parts/robot_component/diagnosis_unit{ - pixel_y = 15 +"wWe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"wWh" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"wVY" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 13 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"wWv" = ( +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"wWg" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold/small_stack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wWj" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"wWC" = ( -/obj/item/bedsheet/brown, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed, -/obj/structure/bed{ - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"wWM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 32 - }, +"wWP" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"wXx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/white, -/area/bigredv2/outside/virology) +/area/bigredv2/caves/lambda/breakroom) +"wXi" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz1_north_cas) "wXz" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/research) -"wXC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wXJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Recreation" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"wYD" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_east) -"wZv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"wZE" = ( -/obj/item/shard, +"wXI" = ( +/obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"wXT" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"wXX" = ( +/obj/structure/surface/table, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"wZh" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"wZD" = ( /turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) -"wZS" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"wZV" = ( -/obj/item/ore, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +"xat" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"xaD" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Crew Habitation Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"xaG" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) "xaH" = ( /turf/closed/wall/wood, /area/bigredv2/caves_sw) -"xaK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"xaO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"xaS" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/lz2_south_cas) -"xba" = ( -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/lambda/research) -"xbd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"xaX" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"xbh" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"xbB" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"xbE" = ( -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"xbO" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"xce" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"xbP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" +"xcp" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"xbR" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"xci" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"xcE" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"xdh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"xcG" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) +"xcR" = ( /turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) -"xdm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Spaceport" +"xcY" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"xds" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"xec" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz1_north_cas) -"xek" = ( +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"xdV" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Virology APC" + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xed" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) +"xee" = ( +/obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"xel" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"xer" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) -"xeK" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"xeZ" = ( -/turf/open/floor/whitegreen/west, +"xex" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/s) +"xey" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"xeH" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/whitegreen/north, /area/bigredv2/caves/lambda/xenobiology) -"xfc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xfl" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Engineering Landing Zone" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"xfq" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"xfw" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) +"xfD" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) "xfJ" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"xge" = ( -/turf/open/floor/whiteblue/southwest, -/area/bigredv2/outside/medical) -"xhp" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"xhO" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/marshal_office) -"xhS" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/se) -"xid" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xik" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"xfX" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"xiy" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xgo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"xhb" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"xhp" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"xhG" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"xhK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal{ + amount = 30 }, /turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) +"xhM" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xif" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"xii" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"xiq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) "xiE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"xiS" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 5 }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xjc" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"xjo" = ( +/obj/item/weapon/broken_bottle, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/medical) -"xiF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" +"xjq" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"xjs" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"xjL" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"xki" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"xiM" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"xkK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/lambda/research) +"xkT" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/armband, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"xle" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"xll" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xlG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"xiY" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/eta) -"xjs" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"xlT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"xlW" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/space_port_lz2) +"xmd" = ( +/obj/item/frame/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"xml" = ( /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"xjB" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xjX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/area/bigredv2/outside/lz2_south_cas) +"xmp" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"xmA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Private Office" + name = "\improper Engineering Break Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"xmB" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" }, /turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"xkb" = ( -/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_cave_cas) +"xmD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xmQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/panelscorched, /area/bigredv2/outside/engineering) -"xke" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"xna" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic Treatment" }, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"xko" = ( -/obj/structure/surface/table, -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/research) -"xkL" = ( -/obj/structure/bed, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xkP" = ( /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"xkT" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/white, /area/bigredv2/outside/medical) -"xlf" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"xnd" = ( +/obj/item/shard{ + icon_state = "small" }, -/turf/open/mars_cave/mars_cave_20, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xlg" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"xls" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" +"xnt" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Meeting Room" }, /turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"xlx" = ( -/turf/open/mars/mars_dirt_5, -/area/bigredv2/outside/w) -"xlD" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/lz2_cave) -"xlF" = ( -/obj/structure/machinery/light/small/built{ +/area/bigredv2/outside/admin_building) +"xnz" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"xlS" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"xlY" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/warnwhite/west, -/area/bigredv2/caves/lambda/xenobiology) -"xml" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) +"xon" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"xoo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"xmp" = ( -/obj/item/tool/pickaxe{ - pixel_x = -18; - pixel_y = 4 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Operating Theatre" }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"xov" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"xow" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"xmv" = ( -/obj/structure/inflatable/door, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"xmw" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"xmz" = ( -/obj/structure/filingcabinet, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"xmL" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"xmW" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +"xoK" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/eta/research) +"xoO" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xnb" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"xop" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_north) -"xoM" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/virology) -"xoN" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/landmark/good_item, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"xoO" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"xoP" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" + }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) -"xpc" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) +"xpk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "xpm" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"xpt" = ( -/obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"xpv" = ( -/obj/structure/machinery/computer/crew{ - density = 0; - pixel_y = 16 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"xpr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"xpy" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz2_south_cas) -"xpF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_se) +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) "xpG" = ( /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"xpJ" = ( +"xpH" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"xpV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"xpJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"xpW" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"xpY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"xqb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"xqr" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"xqv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"xrd" = ( +"xqs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"xqL" = ( /obj/structure/surface/table, -/obj/item/spacecash/c1, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xrk" = ( +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xqN" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"xrb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" + dir = 1; + name = "\improper Lambda Lab Virology Wing" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) +/area/bigredv2/caves/lambda/virology) "xrp" = ( /obj/structure/largecrate/guns/merc{ name = "\improper dodgy crate" }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xrr" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_virology) -"xrt" = ( -/obj/structure/machinery/light{ - dir = 8 +"xrH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/high_rad{ - pixel_x = -32 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/lz2_cave) +"xrS" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/darkyellow2/east, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"xsn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"xss" = ( +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) -"xru" = ( -/obj/structure/machinery/light{ - dir = 1 +"xsD" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"xsE" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"xrv" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"xsJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"xrE" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"xsN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Surgery" }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"xrM" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"xsT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"xso" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"xsB" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"xtG" = ( -/obj/structure/machinery/light{ +"xsU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xsW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"xtl" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/lz2_cave) +"xuf" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"xtO" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/mining) -"xtV" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"xui" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"xut" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" + }, +/obj/structure/ore_box, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/research) +"xuB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xuF" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) "xuL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"xuO" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) "xuP" = ( /obj/item/trash/cigbutt/cigarbutt{ pixel_x = 16; @@ -30158,382 +30215,325 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xuV" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"xva" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"xvT" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_se) -"xwc" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -5 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xwt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"xwZ" = ( +"xvf" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"xxj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 8 +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"xvS" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/se) +"xvU" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"xvW" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"xxq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"xwt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"xwI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"xxH" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/mauler, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"xxY" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"xxO" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"xyg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"xyi" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/item/paper/bigred/union, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xyx" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, /turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"xyR" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/e) -"xyZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/bigredv2/outside/library) +"xzn" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"xzp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"xAs" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/n) -"xAu" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xzP" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) -"xAy" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"xAG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"xAH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xzT" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) -"xAL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen_v/northeast, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"xzW" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/xenobiology) -"xAM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"xAP" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/door/window{ +"xzX" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"xAu" = ( +/obj/item/weapon/shield/riot, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"xAF" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"xAQ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/structure/machinery/light/built{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) "xBc" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"xBd" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cargo_containers" +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xBs" = ( +/obj/structure/machinery/door_control{ + id = "Chapel"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"xBz" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"xBE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xBR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/cargo) -"xBh" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations" }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"xBw" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"xCf" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"xCo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xCB" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/holdout, -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xCm" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/ne) -"xCL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"xCY" = ( +/obj/item/reagent_container/glass/beaker/sulphuric, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"xCH" = ( /obj/structure/surface/table, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"xDz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave/mars_cave_2, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 17 + }, +/obj/item/reagent_container/food/snacks/jellysandwich/cherry, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"xDE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"xDI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"xCK" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz2_south_cas) +"xDd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xDm" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 2; + pixel_y = -3 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"xEy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"xEQ" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xDz" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"xEX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/item/storage/firstaid/adv, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"xDW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 5 }, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/research) -"xFn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/structure/xenoautopsy/tank/hugger, -/obj/effect/decal/warning_stripes, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xEj" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"xEF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"xFm" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"xFA" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"xFu" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"xFD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xFP" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/moneybag, -/turf/open/floor/plating, +/obj/item/paper/bigred/witness, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xFX" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) "xFZ" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) -"xGs" = ( -/obj/item/device/radio/intercom{ - dir = 1; - frequency = 150; - name = "Safe-Room intercom"; - pixel_y = -30 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"xGE" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/weapon/gun/launcher/grenade/m81/m79{ - pixel_x = -3; - pixel_y = -9 - }, -/obj/structure/cable{ - icon_state = "1-5" +"xGa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"xGB" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"xGL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"xGQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "xGR" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"xGY" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/virology) -"xHm" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"xHJ" = ( -/turf/open/mars_cave/mars_cave_23, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"xHp" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"xHU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"xHJ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"xIi" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/lz2_cave) -"xIq" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "eta"; - name = "Eta Lockdown" +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"xIl" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"xIs" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"xIA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"xIB" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) "xIP" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) -"xIV" = ( -/obj/structure/surface/table, -/obj/item/toy/dice, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"xIY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +"xIT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/corpsespawner/miner, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 10 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"xJc" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"xJj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/lambda/xenobiology) -"xJs" = ( -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"xJv" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xJf" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"xJl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) "xJC" = ( /obj/item/ore, /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"xJR" = ( -/obj/structure/bed/chair, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/eta/research) -"xJS" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) "xKb" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) -"xKe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"xKp" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) +"xKE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) "xKG" = ( /obj/structure/bed/sofa/south/grey/right{ pixel_y = 6 @@ -30541,216 +30541,247 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) -"xKJ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"xKQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"xKW" = ( -/obj/item/stool, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"xLf" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_sw) -"xLq" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"xLP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"xMc" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump{ - dir = 4 +"xKL" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"xLt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"xMf" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light, -/turf/open/floor/whitepurple/southwest, +"xLA" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"xLI" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"xLX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) +"xMf" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_south_cas) +"xMq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) "xMr" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"xMA" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"xMI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"xMW" = ( -/obj/structure/machinery/door_control{ - id = "safe_room"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -28; - req_access_txt = "106"; - specialfunctions = 4 +"xMv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"xNk" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/white, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"xMC" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"xMR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"xNq" = ( -/obj/item/tool/warning_cone{ - pixel_x = 16; - pixel_y = 14 +"xNX" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/mars, -/area/bigredv2/outside/n) -"xOd" = ( -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"xOs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"xOu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"xOI" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/dirt, -/obj/item/organ/heart/prosthetic, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"xOk" = ( +/obj/structure/surface/table/reinforced, /turf/open/floor/white, /area/bigredv2/outside/medical) -"xPj" = ( +"xOl" = ( /obj/structure/surface/table, -/obj/item/tool/surgery/bonesetter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"xPN" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"xOC" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"xON" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"xOX" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/se) +"xPJ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"xPM" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"xPV" = ( +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/clothing/shoes/dress{ + pixel_y = -13 + }, +/obj/item/clothing/under/suit_jacket/trainee{ + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) "xQb" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) -"xQc" = ( -/turf/open/mars/mars_dirt_8, +"xQl" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/c) -"xQn" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) "xQw" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"xQJ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"xQK" = ( -/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"xRi" = ( -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/caves/lambda/research) -"xRm" = ( +/area/bigredv2/outside/library) +"xQC" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"xQO" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 + }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"xRA" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 +/area/bigredv2/caves/lambda/breakroom) +"xRq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"xRF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Toilet" }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"xRM" = ( -/obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xSh" = ( +"xRT" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"xSc" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"xSi" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"xSv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"xSI" = ( -/obj/item/device/taperecorder, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"xTt" = ( +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"xSR" = ( /obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/cleanable/blood, -/obj/item/alien_embryo, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) +/obj/structure/window, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"xSS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"xTl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xTp" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) "xTM" = ( /obj/structure/closet/medical_wall, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"xUs" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 +"xTN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"xUH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"xVd" = ( -/obj/item/device/mass_spectrometer/adv, -/obj/structure/foamed_metal, -/turf/open/floor/whiteyellow, -/area/bigredv2/caves/lambda/xenobiology) -"xVq" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"xTO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"xUI" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"xVr" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"xVW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"xWa" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/obj/item/trash/raisins, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xUT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Medical Clinic Power Station" }, -/turf/open/floor/red/northeast, -/area/bigredv2/outside/marshal_office) +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"xVz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"xVJ" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz2_west_cas) +"xWp" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_east) "xWr" = ( /obj/item/ore/uranium{ desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; @@ -30767,331 +30798,300 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xWE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"xWM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"xXj" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"xXy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"xXD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"xXI" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer/test_floor4, +"xWG" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) -"xXZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Greenhouse Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"xYs" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"xWO" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/caves_lambda) +"xWP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Private Office" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"xYx" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"xYF" = ( -/obj/item/trash/chips, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"xYG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"xYH" = ( +/area/bigredv2/outside/office_complex) +"xXc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"xYI" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"xYO" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 5; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"xXf" = ( +/obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xYS" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"xYZ" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/ne) -"xZk" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"xZH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"yaw" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"ybb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"ybu" = ( -/obj/structure/fence, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +"xXh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ybM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"xXB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"xXO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, +/obj/structure/machinery/light/double{ + dir = 1 + }, /obj/effect/decal/cleanable/blood{ + dir = 8; icon_state = "gib6"; - pixel_y = -8 + layer = 4; + pixel_x = 14; + pixel_y = 3 }, -/turf/open/mars_cave/mars_cave_6, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xYd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"ybU" = ( +"xYF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/hemostat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xYK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"xYX" = ( /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) -"yca" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cargo Offices" +/area/bigredv2/outside/virology) +"xZa" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/se) +"xZn" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"ycq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/lz2_cave) +"xZW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"xZY" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"yae" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"yaD" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"ycv" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"yaF" = ( +/obj/structure/platform, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 10 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"yds" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"ydz" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/admin_building) +"ybg" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/classic_baton, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"ybv" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"ycf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"ycG" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) -"ydP" = ( -/obj/effect/decal/cleanable/dirt, +"ycZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"ydC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"yea" = ( +"yed" = ( +/turf/open/floor/carpet11_12/west, +/area/bigredv2/outside/bar) +"yei" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"yeA" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_north) -"yeD" = ( +/area/bigredv2/outside/hydroponics) +"yek" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"yfb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"yep" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"yfn" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"yfp" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"yfr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"yfH" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"yfK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"yfY" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/caves_lambda) +"ygd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"yfp" = ( -/obj/structure/machinery/chem_master, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"yfX" = ( +"ygA" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"ygG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ygr" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_north) -"yho" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"ygZ" = ( +/obj/structure/machinery/door_control{ + id = "Kitchen Greenhouse"; + name = "Storm Shutters"; + pixel_x = 32 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"yhB" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"yhR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"yim" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"yiu" = ( -/obj/item/clothing/under/brown, /turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"yja" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/cheesie, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"yjF" = ( -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"yjQ" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/sw) -"yjV" = ( -/obj/structure/platform_decoration{ +/area/bigredv2/outside/hydroponics) +"yhj" = ( +/obj/structure/machinery/light/built{ dir = 8 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"ykf" = ( -/turf/open/floor/darkpurplecorners2/west, +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/xenobiology) -"ykC" = ( +"yho" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ykN" = ( -/turf/open/mars_cave/mars_cave_10, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"yhC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"yhG" = ( +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) -"ykR" = ( -/turf/closed/wall/mineral/uranium, +"yjg" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"ykS" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/research) -"ykT" = ( -/obj/structure/prop/dam/crane, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"ykX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"yle" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"yjj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"yjr" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"yjS" = ( +/obj/item/shard, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"ylj" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"ylp" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/n) -"ylI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "\improper Operations" +"ykm" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"ykq" = ( /turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"ylO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/area/bigredv2/outside/general_offices) +"ykr" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"yle" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"ylg" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"ylp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/outside/telecomm/warehouse) +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"ylz" = ( +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ylL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) (1,1,1) = {" aaa @@ -31749,8 +31749,8 @@ aaa aab aao aao -okz -dxg +lDU +kwJ aao aao aao @@ -31813,10 +31813,10 @@ aao aao aao aao -mmL -dap -dap -sQK +tjH +sQj +sQj +qUy aao aao aao @@ -31831,14 +31831,14 @@ aao aao aao aao -mmL -dap -dap -dap -dap -dap -dap -sQK +tjH +sQj +sQj +sQj +sQj +sQj +sQj +qUy aao aao aao @@ -31965,10 +31965,10 @@ aaa aaa aab aao -wPD -dkt +mvk +gHE qjO -vBx +hdG aao aao aao @@ -31988,19 +31988,19 @@ aao aao aao acA -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM acA aao aao @@ -32029,12 +32029,12 @@ aao aao aao aao -hQT -dpN -dEc -dEc -dEc -sQK +kYJ +nCN +fhd +fhd +fhd +qUy aao aao aao @@ -32047,18 +32047,18 @@ aao aao aao aao -mmL -dEc -dEc -dEc -dEc -ozq -dEc -dEc -dEc -dEc -dEc -dEc +tjH +fhd +fhd +fhd +fhd +pnQ +fhd +fhd +fhd +fhd +fhd +fhd aao aao aao @@ -32183,10 +32183,10 @@ aaa aab aao aao -pqR -hmA -coO -pQR +ccO +eVf +uxP +jeW aao aao aao @@ -32205,19 +32205,19 @@ aao aao aao acA -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS -hSS +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM +evM acA aao aao @@ -32245,14 +32245,14 @@ aao aao aao aao -hQT -dpN -dpN -dEc -ozq -dEc -dEc -sQK +kYJ +nCN +nCN +fhd +pnQ +fhd +fhd +qUy aao aao aao @@ -32261,39 +32261,39 @@ aao aao aao aao -cLe +qSd aao -mmL -dEc -dEc -dEc -dEc -dEc -dEc +tjH +fhd +fhd +fhd +fhd +fhd +fhd ucH -dEc -dEc -dEc -dEc -dEc -dEc +fhd +fhd +fhd +fhd +fhd +fhd aao aao -cLe +qSd aao -mmL -sQK +tjH +qUy aao -mmL -sMv -sMv -sMv -sMv -sMv -sMv -sMv -sMv -ieV +tjH +gvt +gvt +gvt +gvt +gvt +gvt +gvt +gvt +gfF aao aao aao @@ -32401,7 +32401,7 @@ aab aao aao aao -kGQ +rJa aVQ nlW aao @@ -32422,8 +32422,8 @@ aao aao aao acA -hSS -hSS +evM +evM acQ acQ acQ @@ -32433,8 +32433,8 @@ acQ acQ acQ acQ -drt -hSS +hie +evM ahN aao aao @@ -32462,56 +32462,56 @@ aao aao aao aao -oYn -dpN -dpN -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc +cym +nCN +nCN +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd aao aao -mmL -dEc -dap -dEc -dEc -dEc -dEc -dEc -dEc -xrr -dEc -dEc -dEc -dEc -dEc -dEc -dEc +tjH +fhd +sQj +fhd +fhd +fhd +fhd +fhd +fhd +dEy +fhd +fhd +fhd +fhd +fhd +fhd +fhd aao aao -pCX -dap -dEc -dEc -dap -dEc -nls -nls -nls -nls -nls -nls -nls -nls -nls -ieV +pgh +sQj +fhd +fhd +sQj +fhd +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +gfF aao aao aao @@ -32639,19 +32639,19 @@ aao aao aao acA -hSS -hSS +evM +evM acQ -wib -rrX -lZZ -mno -dXq -hVL -meJ +obw +hTw +fTf +ikT +uUQ +lge +snR acQ -hSS -hSS +evM +evM aiv aao aao @@ -32675,31 +32675,31 @@ aao aao aao aao -dpN -dpN -dpN -hQT -dpN -dpN -dpN -dEc -dEc -dEc -thP -dEc -dEc -dEc -dEc -dEc -dEc -dEc -aao -pCX -dEc -dEc -dEc +nCN +nCN +nCN +kYJ +nCN +nCN +nCN +fhd +fhd +fhd +pxx +fhd +fhd +fhd +fhd +fhd +fhd +fhd +aao +pgh +fhd +fhd +fhd ucH -dEc +fhd aao aao aao @@ -32708,34 +32708,34 @@ aao aao aao aao -dEc -dEc -dEc -dap -iyx -dEc -dEc -dEc -dEc -dEc -dEc -eHF -nls -nls -cDU -nls -nls -eHF -nls -nls -nls -sMv -sMv -sMv -sMv -sMv -sMv -ieV +fhd +fhd +fhd +sQj +oze +fhd +fhd +fhd +fhd +fhd +fhd +jwZ +wwD +wwD +dpG +wwD +wwD +jwZ +wwD +wwD +wwD +gvt +gvt +gvt +gvt +gvt +gvt +gfF aao aao aao @@ -32811,8 +32811,8 @@ aao aao aao aao -nuK -nuK +uNA +uNA aao aao aao @@ -32856,19 +32856,19 @@ aao aao aao acA -hSS -hSS +evM +evM acQ -lWW -lWW -lWW -ipS -vch -lWW -eby +pTC +pTC +pTC +osY +oJf +pTC +aOT afv -kWC -kWC +mdf +mdf acA aao aao @@ -32887,34 +32887,34 @@ aao aao aao aao -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -oYn -dpN -dpN -dpN -dEc -dEc -dEc -thP -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -thP +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +cym +nCN +nCN +nCN +fhd +fhd +fhd +pxx +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +pxx aao aao aao @@ -32925,14 +32925,14 @@ aao aao aao aao -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd ucH ucH ucH @@ -32940,22 +32940,22 @@ iGK iGK iGK iGK -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -sMv -sMv -ieV +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +gvt +gvt +gfF aao aao aao @@ -32986,12 +32986,12 @@ aao aao aao aao -wqB -sMv -sMv -sMv -sMv -ieV +jsy +gvt +gvt +gvt +gvt +gfF aao aao aao @@ -33027,9 +33027,9 @@ aao aao aao aao -nio -uHm -hnM +dQK +bGn +oXP aao aao aao @@ -33073,19 +33073,19 @@ aao aao aao acA -hSS -hSS +evM +evM acQ aWz acZ -lWW -lWW -lWW -dfw -lWW +pTC +pTC +pTC +upi +pTC afv -kWC -kWC +mdf +mdf acA aao aao @@ -33097,41 +33097,41 @@ aao aao aao aao -hza +fPG aao aao -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -iOU -dpN -oYn -dpN -dpN -dpN -dEc -dEc -dEc -thP -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -thP +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +jaJ +nCN +cym +nCN +nCN +nCN +fhd +fhd +fhd +pxx +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +pxx aao aao aao @@ -33141,15 +33141,15 @@ aao aao aao aao -dap -dap -dap -dEc -dEc -dEc -dEc -dEc -xrr +sQj +sQj +sQj +fhd +fhd +fhd +fhd +fhd +dEy aao aao aao @@ -33157,22 +33157,22 @@ aao aao aao aao -hpG +bFV iGK iGK iGK iGK iGK iGK -nls -nls -nls -nls -eHF -nls -nls -nls -mVI +wwD +wwD +wwD +wwD +jwZ +wwD +wwD +wwD +wTJ aao aao aao @@ -33190,26 +33190,26 @@ aao aao aao aao -nls -nls -nls -nls -nls +wwD +wwD +wwD +wwD +wwD aao aao aao aao aao aao -wqB -sMv -qWv -qWv -qWv -qWv -qWv -qWv -ieV +jsy +gvt +cQW +cQW +cQW +cQW +cQW +cQW +gfF aao aao aao @@ -33234,20 +33234,20 @@ aao aao aao aao -hWw -twb -wZV +ggk +tfo +oeH aao aao aao aao aao aao -nio -vUs -nio -sVF -kXa +dQK +vJu +dQK +iwb +rEP aao aao aao @@ -33290,19 +33290,19 @@ aao aao aao acA -hSS -hSS +evM +evM acQ aWz biQ -lWW -lWW -lWW -loS -qUW +pTC +pTC +pTC +urK +gVP afv -hSS -hSS +evM +evM acA acA acA @@ -33310,62 +33310,62 @@ acA acA ahN acA -uan -xZk -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN +vYX +cJT +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN gda gda gda -dpN -dpN -dpN -xZk -dpN -dpN -ogs -dpN -dEc -dEc -dEc -thP -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -ozq -dEc -dEc -dap -dap -dap -dap -aao -aao -aao -aao -dEc -dEc +nCN +nCN +nCN +cJT +nCN +nCN +wMm +nCN +fhd +fhd +fhd +pxx +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +pnQ +fhd +fhd +sQj +sQj +sQj +sQj +aao +aao +aao +aao +fhd +fhd ucH ucH -dEc -dEc -dEc -dEc -thP +fhd +fhd +fhd +fhd +pxx aao aao aao @@ -33381,20 +33381,20 @@ aao aao aao aao -hpG +bFV iGK iGK iGK iGK -nls -nls -nls -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ +wwD +wwD +wwD +soq +soq +soq +soq +soq +soq aao aao aao @@ -33405,28 +33405,28 @@ aao aao aao aao -nls -nls -nls -jjv -nls -nls -nls -nls -nls +wwD +wwD +wwD +lpT +wwD +wwD +wwD +wwD +wwD aao aao aao -wqB -nls -nls -sbI -qWv -qWv -qWv -qWv -qWv -mVI +jsy +wwD +wwD +jhz +cQW +cQW +cQW +cQW +cQW +wTJ aao aao aao @@ -33444,28 +33444,28 @@ aao aao aao aao -oUt -cpt -cpt -cpt -cpt -nWw -nuK -nio -vUs -tRv -tsi +dya +qme +qme +qme +qme +iZK +uNA +dQK +vJu +sCl +nZI vHw vHw aao aao aao -nio -ehJ -kXa -nio -nio -nio +dQK +vJJ +rEP +dQK +dQK +dQK vHw vHw aao @@ -33507,82 +33507,82 @@ aao aao aao acA -hSS -hSS +evM +evM acQ acQ acQ acQ -oDA +gOi acQ acQ acQ acQ -hSS -hSS -hSS -kWC -kWC -kWC -kWC -paC +evM +evM +evM +mdf +mdf +mdf +mdf +eRJ akl -hPe -dpN -dpN -xZk -rwf -dpN -dpN -dpN -dpN -dpN -dpN -xZk -dpN -dpN -xZk -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dEc -dEc -dEc -thP +cio +nCN +nCN +cJT +rkq +nCN +nCN +nCN +nCN +nCN +nCN +cJT +nCN +nCN +cJT +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +fhd +fhd +fhd +pxx aao aao aao aao aao aao -dEc -pCX -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -xrr -dEc -dEc -dEc -dEc -dEc -dEc -thP +fhd +pgh +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +dEy +fhd +fhd +fhd +fhd +fhd +fhd +pxx aao aao aao @@ -33603,47 +33603,47 @@ aao aao aao aao -hpG +bFV ski -wzQ -wzQ -wzQ -wCn -wCn -wCn -wzQ -wzQ -wzQ -wzQ -wzQ +soq +soq +soq +ege +ege +ege +soq +soq +soq +soq +soq aao aao aao aao aao -nls -nls -nls -nls -nls -nls -bIj -bIj -nls -nls -jjv -pFH -nls -nls -nls -nls -qWv -qWv -qWv -uhm -qWv -qWv -qWv +wwD +wwD +wwD +wwD +wwD +wwD +eae +eae +wwD +wwD +lpT +rwL +wwD +wwD +wwD +wwD +cQW +cQW +cQW +qrq +cQW +cQW +cQW aao aao aao @@ -33660,30 +33660,30 @@ aao aao aao aao -cpt -cpt -cpt -cpt -wlB -cTw -xmW -vGG -nSB -pxG -itp -kXa -kXa -uGX -nWw -rTp -nio -dQT -eGW -eGW -eGW -eGW -eGW -xMA +qme +qme +qme +qme +pvN +txO +wMI +mhN +grJ +btG +xGQ +rEP +rEP +gpO +iZK +lId +dQK +wcj +qRd +qRd +qRd +qRd +qRd +tCb vHw aao aao @@ -33724,82 +33724,82 @@ aao aao aao acA -hSS -hSS +evM +evM acQ -qzR -tcx -psQ -tWl -gLh -lWW -hBa +jcI +tJz +cPt +lFA +hqA +pTC +vut acQ -hSS -hSS -kWC -neW -hSS -kWC -kWC -paC +evM +evM +mdf +qgQ +evM +mdf +mdf +eRJ acA -hPe -dpN -dpN -dpN -qIb -dpN -dpN -dpN -dpN -dpN -xZk -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dEc -dEc -dEc -thP -aao -aao -aao -aao -aao -aao -aao -pCX -dEc -dEc -dEc -dEc -dEc -dEc -dEc -dEc -ozq -dEc -dEc +cio +nCN +nCN +nCN +kWE +nCN +nCN +nCN +nCN +nCN +cJT +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +fhd +fhd +fhd +pxx +aao +aao +aao +aao +aao +aao +aao +pgh +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +pnQ +fhd +fhd ucH -dEc -dEc -dEc +fhd +fhd +fhd aao aao -pCX -dEc -dEc -xrr +pgh +fhd +fhd +dEy aao aao aao @@ -33821,47 +33821,47 @@ aao aao aao aao -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wCn -wCn -wzQ -wzQ -nls -nls -nls -nls -nls -nls -bIj -bIj -nls -nls -bIj -bIj -nls -nls -nls -pFH -nls -nls -nls -nls -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv +soq +soq +soq +soq +soq +soq +soq +soq +soq +ege +ege +soq +soq +wwD +wwD +wwD +wwD +wwD +wwD +eae +eae +wwD +wwD +eae +eae +wwD +wwD +wwD +rwL +wwD +wwD +wwD +wwD +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW aao aao aao @@ -33876,32 +33876,32 @@ aao aao aao aao -nio -uGX -cpt -cpt -cpt -cpt -cpt -sEK -cpt -eGW -eGW -gaA -wpc -eGW -kIp -nWw -rTp -nio -tVT -cpt -cpt -cpt -cpt -kIp -utI -cpt +dQK +gpO +qme +qme +qme +qme +qme +gFm +qme +qRd +qRd +cOX +gcH +qRd +jpS +iZK +lId +dQK +qOR +qme +qme +qme +qme +jpS +iZp +qme aao aao aao @@ -33941,81 +33941,81 @@ aae aae aae acA -hSS -hSS +evM +evM acQ -eby -uYA -uYA -uYA -lWW -lWW +aOT +frQ +frQ +frQ +pTC +pTC acZ afv -kWC -kWC -hSS -hSS -hSS -hSS -hSS -paC +mdf +mdf +evM +evM +evM +evM +evM +eRJ acA -hPe -dpN -dpN -dpN -dpN -xZk -xZk -dpN -xZk -xZk -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN -dpN +cio +nCN +nCN +nCN +nCN +cJT +cJT +nCN +cJT +cJT +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN +nCN gda gda -bGD -dEc -dEc -ozq -sQK +dvL +fhd +fhd +pnQ +qUy aao aao aao aao aao aao -pCX +pgh ucH ucH ucH -dEc -dEc +fhd +fhd ucH ucH ucH ucH ucH -thP +pxx aao -pCX -dEc +pgh +fhd aao aao aao -vOy +cPF ucH -xrr +dEy aao aao aao @@ -34035,51 +34035,51 @@ aao aao aao aao -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ +soq +soq +soq +soq +soq +soq +soq +soq +soq ski eEy ski -wzQ -wzQ -wzQ -lqH -nls -sMv -bIj -bIj -nls -jjv -bIj -bIj -nls -nls -nls -nls -nls -nls -nls -pFH -gUP -nls -nls -nls -nls -nls -nls -nls -qWv -qWv -qWv -qWv -nls +soq +soq +soq +rwG +wwD +gvt +eae +eae +wwD +lpT +eae +eae +wwD +wwD +wwD +wwD +wwD +wwD +wwD +rwL +imQ +wwD +wwD +wwD +wwD +wwD +wwD +wwD +cQW +cQW +cQW +cQW +wwD aao aao aao @@ -34092,34 +34092,34 @@ vHw aao aao aao -nio -nio -pAN -cpt -cTw -cpt -cpt -cpt -gbJ -kIp -kIp -xIA -xIA -kIp -kIp -kIp -nWw -rTp -nio -nio -uGX -cpt -cpt -cpt -kIp -kIp -cpt -cpt +dQK +dQK +pbB +qme +txO +qme +qme +qme +hlW +jpS +jpS +kxl +kxl +jpS +jpS +jpS +iZK +lId +dQK +dQK +gpO +qme +qme +qme +jpS +jpS +qme +qme aao aao aao @@ -34144,68 +34144,68 @@ aao aao aao aae -ecY -dsj -dsj -dsj -dsj -ecY -dsj -dsj -dsj -dsj -dsj -dsj -ecY -dsj -hSS -dbw -onc -hzs -vBi -vBi -tNr -lWW -lWW +vUs +wmn +wmn +wmn +wmn +vUs +wmn +wmn +wmn +wmn +wmn +wmn +vUs +wmn +evM +iBc +tdk +loL +uZW +uZW +mtI +pTC +pTC afL afv -hSS -hSS -hSS -hSS -hSS -kWC -kXV -paC +evM +evM +evM +evM +evM +mdf +ohE +eRJ acA -hPe -dpN -dpN -dpN -dpN -dpN -dpN -iOU -dpN -dpN -dpN -dpN -aao -aao -dpN -dpN -xZk -xZk -oYn +cio +nCN +nCN +nCN +nCN +nCN +nCN +jaJ +nCN +nCN +nCN +nCN +aao +aao +nCN +nCN +cJT +cJT +cym gda -gkL +iPB aao aao -pCX +pgh gJw gJw -ePb -dww +uXU +gMA aao aao aao @@ -34215,9 +34215,9 @@ aao aao aao aao -pCX -pCX -xrr +pgh +pgh +dEy aao aao aao @@ -34225,8 +34225,8 @@ aao aao aao aao -pCX -thP +pgh +pxx aao aao aao @@ -34251,54 +34251,54 @@ aao aao aao aao -wzQ -wzQ -wCn -wCn -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -vsT -wzQ -wzQ -wzQ -nls -nls -kHf -bIj -nls -nls -nls -nls -nls -nls -jjv -nls -nls +soq +soq +ege +ege +soq +soq +soq +soq +soq +soq +soq +soq +soq +wMq +soq +soq +soq +wwD +wwD +wQy +eae +wwD +wwD +wwD +wwD +wwD +wwD +lpT +wwD +wwD aao aao aao -bRf -nls -nls -nls -nls -nls -nls -nls -nls -qWv -nls -qWv -qWv -cmb -cpt +lbj +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +cQW +wwD +cQW +cQW +tnn +qme vHw vHw vHw @@ -34307,37 +34307,37 @@ vHw vHw vHw vHw -kIp -nWw -nio -nio -nio -pAN -cpt -cpt -cpt -cpt -cpt -nWw -uGX -xIA -xIA -kIp -kIp -kFo -nWw -jGZ -nio -nio -uGX -cpt -cpt -cpt -cpt -cpt -tOD -cpt -cpt +jpS +iZK +dQK +dQK +dQK +pbB +qme +qme +qme +qme +qme +iZK +gpO +kxl +kxl +jpS +jpS +jbt +iZK +mFU +dQK +dQK +gpO +qme +qme +qme +qme +qme +uqE +qme +qme vHw aao aao @@ -34361,42 +34361,42 @@ aao aao aao aae -dsj -fSE -qCg -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -bUs +wmn +ovt +oEg +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +vEv acQ -lWW -lWW -lWW -uYA -lWW -lWW +pTC +pTC +pTC +frQ +pTC +pTC acZ afv -hSS -kWC -kWC -hSS -hSS -kWC -hSS -paC +evM +mdf +mdf +evM +evM +mdf +evM +eRJ acA aao -dpN +nCN gda gda gda @@ -34404,37 +34404,37 @@ gda gda gda gda -dpN -dpN +nCN +nCN aao aao aao aao -oYn -dpN -dpN +cym +nCN +nCN gda aao aao aao aao -xrr +dEy aao -iGL -uCW -cQH -cQH +uRG +lfB +mwK +mwK aao aao aao aao -csp +tpx aao aao aao -pCX -pCX -dEc +pgh +pgh +fhd aao aao aao @@ -34442,8 +34442,8 @@ aao aao aao aao -vOy -thP +cPF +pxx aao aao aao @@ -34467,30 +34467,30 @@ aao aao aao aao -wzQ -wzQ -vsT -tLD -wzQ -wzQ -wzQ -wzQ -wzQ -tjP -wzQ -wzQ -wzQ -wzQ -vsT -wzQ -tLD -nls -nls -nls -nls -nls -sMv -ieV +soq +soq +wMq +ukK +soq +soq +soq +soq +soq +xVJ +soq +soq +soq +soq +wMq +soq +ukK +wwD +wwD +wwD +wwD +wwD +gvt +gfF aao aao aao @@ -34501,60 +34501,60 @@ aao aao aao aao -bRf -nls -nls -nls -nls -nls +lbj +wwD +wwD +wwD +wwD +wwD xaH xaH -nls -qWv -qWv -qWv -qWv -sCs -cpt -cpt -nmD -cpt -cpt -sEK -kIp -rur -kIp -kIp -kIp -lwA -nio -kXa -nio -uGX -cpt -cpt -cpt -cpt -cpt -kIp -iSi -iSi -iSi -iSi -iSi -wcg -jGZ -nio -nio -uGX -cpt -cpt -cpt -cpt -cpt -cpt -cpt -cpt +wwD +cQW +cQW +cQW +cQW +rhd +qme +qme +gBx +qme +qme +gFm +jpS +eMS +jpS +jpS +jpS +isS +dQK +rEP +dQK +gpO +qme +qme +qme +qme +qme +jpS +gTp +gTp +gTp +gTp +gTp +eIS +mFU +dQK +dQK +gpO +qme +qme +qme +qme +qme +qme +qme +qme vHw aao aao @@ -34578,58 +34578,58 @@ aao aao aao aae -dsj -dsj -dsj -jCj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -wot -dsj -dsj -kMi +wmn +wmn +wmn +dzE +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +iwa +wmn +wmn +tmZ acQ -psQ -wZv -jdV -gLG -lWW -lWW +cPt +uFe +eTt +mSl +pTC +pTC afL acQ -hSS -kWC -kWC -hSS -hSS -kWC -hSS -paC +evM +mdf +mdf +evM +evM +mdf +evM +eRJ akl aao aao pQM -dXU -dXU +fzE +fzE pQM -dXU -dXU -dXU +fzE +fzE +fzE aao aao aao aao aao aao -jlz +pnH gda -qIb +kWE aao aao aao @@ -34637,10 +34637,10 @@ aao aao aao aao -dXd -gvu -srP -gRN +rCq +bSV +hbH +tLo aao aao aao @@ -34649,9 +34649,9 @@ aao aao aao aao -tix -cui -vcj +nOJ +nmU +vwp aao aao aao @@ -34660,7 +34660,7 @@ aao aao aao ozv -ePb +uXU aao aao aao @@ -34680,34 +34680,34 @@ aao aao aao aao -wzQ -wzQ -wzQ -wzQ -wzQ -wCn -wzQ -wzQ -wzQ +soq +soq +soq +soq +soq +ege +soq +soq +soq ski ski ski -tjP +xVJ aao aao aao aao aao -rAx +rdG ski ski -nls -bIj -bIj -nls -nls -nls -mVI +wwD +eae +eae +wwD +wwD +wwD +wTJ aao aao aao @@ -34718,61 +34718,61 @@ aao aao aao aao -bRf -nls -nls -nls -nls -nls +lbj +wwD +wwD +wwD +wwD +wwD xaH xaH -nls -qWv -qWv -qWv -qWv -cpt -ivJ -cpt -hXc -cpt -cpt -cpt -kIp -kIp -kIp -kIp -kIp -nWw -doA -nio -nio -uGX -aao -aao -aao -aao -cpt -nWw -eDL -nio -nio -kXa -nio -dOM -jGZ -nio -nio -uGX -cpt -cpt -cpt -ifx -cpt -cpt -cpt -xfc -xfc +wwD +cQW +cQW +cQW +cQW +qme +rNm +qme +xce +qme +qme +qme +jpS +jpS +jpS +jpS +jpS +iZK +jCh +dQK +dQK +gpO +aao +aao +aao +aao +qme +iZK +reN +dQK +dQK +rEP +dQK +hTI +mFU +dQK +dQK +gpO +qme +qme +qme +nJS +qme +qme +qme +qij +qij aao aao aao @@ -34795,22 +34795,22 @@ aae aae aae aae -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -ydz -dsj -dsj -dsj -dsj -dsj -dsj -kMi +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +hqG +wmn +wmn +wmn +wmn +wmn +wmn +tmZ acQ acQ acQ @@ -34854,14 +34854,14 @@ aao aao aao aao -gRN -srP -gRN -sKY -hyk -hyk -sKY -sKY +tLo +hbH +tLo +wll +wAP +wAP +wll +wll aoD aoD aoD @@ -34896,16 +34896,16 @@ aao aao aao aao -lFn -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -wzQ -rqr +fSx +soq +soq +soq +soq +soq +soq +soq +soq +pKF aao aao aao @@ -34918,15 +34918,15 @@ aao aao aao aao -bRf -bIj -bIj -nls -jjv -nls -nls -sMv -ieV +lbj +eae +eae +wwD +lpT +wwD +wwD +gvt +gfF aao aao aao @@ -34935,35 +34935,35 @@ aao aao aao aao -hpG -nls -nls -nls -nls -nls -nls -nls -nls -qWv -qWv -qWv -qWv -cpt -iSi -iSi -iSi -iSi -oeO -sEK -rcI -kIp -kIp -kIp -kIp -kIp -lwA -eDL -nio +bFV +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +cQW +cQW +cQW +cQW +qme +gTp +gTp +gTp +gTp +thn +gFm +hhi +jpS +jpS +jpS +jpS +jpS +isS +reN +dQK aao aao aao @@ -34972,24 +34972,24 @@ uHQ uHQ uHQ uHQ -lJN -iRU -qWx -lJN +suY +eQf +mPt +suY uHQ uHQ uHQ -sNl -sZz -cpt -tOD -xtO -cpt -iSi -iSi -cpt -xfc -xfc +qEx +uMp +qme +uqE +dss +qme +gTp +gTp +qme +qij +qij aao aao aao @@ -35009,41 +35009,41 @@ aao aao aao aae -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -iPp +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +bqY aae -mcL -dsj -dsj -dsj -dsj -dsj -kMi -ecY -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj +deO +wmn +wmn +wmn +wmn +wmn +tmZ +vUs +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn aae aao aao qsE qsE qlK -lEh +tWf qrZ qsE aao @@ -35071,29 +35071,29 @@ aao aao aao aao -gRN -gRN -sKY -xoM +tLo +tLo +wll +hKB aFv aFv -rCR -icR +dGe +edR aoD -rWQ -dRg +sME +koL aoD -wFp +bSo aRE -qTX +rme arT -kEF -lHV -ntk -uuc -sKy +vbq +jSc +foy +tYO +pof aoD -oMO +ssQ aRE aoD aao @@ -35113,16 +35113,16 @@ aao aao aao aao -uZq +hTG tft -qGr -qGr -qGr +oeC +oeC +oeC tft tft ski ski -tjP +xVJ aao aao aao @@ -35135,15 +35135,15 @@ aao aao aao aao -hpG +bFV iGK iGK -nls -nls -nls -nls -nls -mVI +wwD +wwD +wwD +wwD +wwD +wTJ aao aao aao @@ -35153,32 +35153,32 @@ aao aao aao aao -bRf -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv -hVX -eLZ -iOQ -lVj -gBj -pAN -cpt +lbj +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +sck +drw +bTH +kZa +lkn +pbB +qme key jUY jUY jUY dHr hLp -fdn +oak vHw aao aao @@ -35186,27 +35186,27 @@ aao aao aao uHQ -sWD -tOl +vcK +oOF uHQ -rTa -gUX -jCh -iRU -kIx -xCf +mrT +iqM +seX +eQf +jBx +ojS uHQ -oBw -jsi -iSi -iSi -xDz -nWw -nio -nio -pAN -xfc -xfc +nxu +sXD +gTp +gTp +pKb +iZK +dQK +dQK +pbB +qij +qij aao aao aao @@ -35226,34 +35226,34 @@ aao aao aao aae -dsj -dsj -dsj -dsj -dsj -dsj -dsj -wot -dsj -dsj -dsj -ecY -dsj -dsj -dsj -dsj -dsj -dsj -kMi -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj +wmn +wmn +wmn +wmn +wmn +wmn +wmn +iwa +wmn +wmn +wmn +vUs +wmn +wmn +wmn +wmn +wmn +wmn +tmZ +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn aae aao aao @@ -35265,7 +35265,7 @@ vLd qsE qsE qsE -wPG +nVg upE hBD lcu @@ -35288,30 +35288,30 @@ aao aao aao aao -sKY -gRN -sKY -sKY -mgN -mgN -sKY -lwO +wll +tLo +wll +wll +cNk +cNk +wll +fVp aoD -dCL -dRg +eUt +koL aoD aQz -ous -qTX +sVn +rme arT -fld -dRg -kPA -dRg -vHQ +mbi +koL +qtd +koL +nmB aoD -edY -kPA +lFT +qtd aoD aao aao @@ -35355,12 +35355,12 @@ aao aao aao aao -hpG -nls -nls -nls -jjv -mVI +bFV +wwD +wwD +wwD +lpT +wTJ aao aao aao @@ -35370,60 +35370,60 @@ aao aao aao aao -bRf -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv -qWv -sbI -sKi -kXa -oCj -imF -plr -kXa -uGX +lbj +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +jhz +lrM +rEP +xGB +qFy +oVu +rEP +gpO wtj -saP +rYi krW kuu onR egS -miH -tAh -gpF -ceb +jCr +ilE +mtO +dLj uHQ uHQ uHQ uHQ rjF -rvP +xRF lBe -tlH -jCh -iAY -iRU -qCY -eXw +tXo +seX +fTS +eQf +nax +wPA uHQ aao aao -nuK -nuK -uGX -nWw -nio -nio -nio -naq -xfc +uNA +uNA +gpO +iZK +dQK +dQK +dQK +fuA +qij aao aao aao @@ -35443,34 +35443,34 @@ aao aao aao aae -eqH -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -eqH -dsj -dsj -dsj -dsj -kMi -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj -dsj +dHX +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +dHX +wmn +wmn +wmn +wmn +tmZ +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn +wmn aae aao qsE @@ -35505,30 +35505,30 @@ aao aao aao aao -sKY -sKY -icR -hxI -bZS -bZS -bZS -wDO -tYE -kHu -gUB -tYE -ljQ -qSN +wll +wll +edR +iJC +bUX +bUX +bUX +hSH +iqW +wwt +pwh +iqW +wkM +xTl aSv arT -tDn -heW -ueP -qSN -dRg +ctN +pNm +kDF +xTl +koL aoD -pAD -etv +kOK +bCL aoD aao aao @@ -35539,11 +35539,11 @@ aao aao aao ayf -rWI +koq cVY ayf cVY -kRb +heg ayf cVY cVY @@ -35573,11 +35573,11 @@ aao aao aao aao -bRf -nls -cDU -nls -mVI +lbj +wwD +dpG +wwD +wTJ aao aao aao @@ -35587,61 +35587,61 @@ aao aao aao aao -bRf -qWv -qWv -qWv -qWv -qWv -qWv -qWv -uhm -qWv +lbj +cQW +cQW +cQW +cQW +cQW +cQW +cQW +qrq +cQW iGK -pXe +sTa vHw vHw -nuK -nuK -nXV -dQT -wfn +uNA +uNA +klY +wcj +hKq wtj -dth -cKp +lBN +cFb vmL -jCh -dth -cpt -hpV -jKO -xzp +seX +lBN +qme +pqI +rbr +nuO uHQ -fyA -vGY -rfQ -hQR -scI +qHl +tFz +aHx +whJ +pOU xTM -tlH -mHk -dPl -iRU -snU -jCh +tXo +gDr +ucW +eQf +flL +seX uHQ -nuK -nuK -oCj -kXa -uGX -nWw -nio -kXa -nio -uGX -cpt -cpt +uNA +uNA +xGB +rEP +gpO +iZK +dQK +rEP +dQK +gpO +qme +qme aao aao aao @@ -35660,34 +35660,34 @@ aao aao aao aae -dsj -dsj -dlK -urZ -uiZ -jST -oNa -urZ -uiZ -jST -oNa -urZ -uiZ -jST -oNa -urZ -uiZ -jST -prs -nxA -kUL -eDd -vDR -mZh -mkk -mZh -mZh -xYG +wmn +wmn +oLM +ifk +hRc +nWC +esH +ifk +hRc +nWC +esH +ifk +hRc +nWC +esH +ifk +hRc +nWC +ycG +fzw +xpH +sdL +xOC +oBR +hvK +oBR +oBR +vhN aae aao qsE @@ -35722,30 +35722,30 @@ aao aao aao aoD -hyk -sKY -rVK -reB -hVS -hVS -hVS -pFk +wAP +wll +loA +dEl +yjr +yjr +yjr +koB aoD -dRg -dRg +koL +koL aoD -rBW -tYh -qTX +lDn +nKr +rme arT -seM -wXx -wJb -tYh -dRg +rbw +gwN +swo +nKr +koL aoD -edY -tYh +lFT +nKr aoD aao aao @@ -35760,10 +35760,10 @@ cVY cVY cVY cVY -hEx -xLq -tEz -wwY +nVY +rCc +sor +gNJ cVY cVY bjN @@ -35790,11 +35790,11 @@ aao aao aao aao -bRf -nls -nls -nls -mVI +lbj +wwD +wwD +wwD +wTJ aao aao aao @@ -35804,16 +35804,16 @@ aao aao aao aao -jJI -pFH -pFH -sbI -qWv -qWv -qWv -qWv -jOW -jOW +hFt +rwL +rwL +jhz +cQW +cQW +cQW +cQW +kST +kST aao aao aao @@ -35824,41 +35824,41 @@ aao aao wtj tfz -jCh -jCh -jCh -eRk -liY -cpt -hpV -skF -pZv +seX +seX +seX +kLm +oVQ +qme +pqI +pnO +skf uHQ -qoe -gtd -eHy -lka -dmx +uVH +vTN +xyg +scc +taA uHQ -eqY -lkp -jCh -dmx -qCY -qCY +cXe +sjr +seX +taA +nax +nax uHQ aao -dzR -lJm -jZE -uGX -cpt -nDZ -mgv -nio -uGX -tOD -cpt +tkY +hCH +uox +gpO +qme +bVH +ixL +dQK +gpO +uqE +qme aao aao aao @@ -35877,8 +35877,8 @@ aao aao aao aae -dsj -iLW +wmn +dqq aah aaF aah @@ -35900,11 +35900,11 @@ aah aah aaF aah -pVn -dsj -dsj -dsj -kMi +xzT +wmn +wmn +wmn +tmZ aae aao qsE @@ -35940,29 +35940,29 @@ aao aoD aoD aFv -rCR -rVK -reB -hVS -qEX -hVS -dno +dGe +loA +dEl +yjr +nrA +yjr +cGv aoD -mMG -vou +tVl +jfL aoD -dDO -tYh -qTX +xdV +nKr +rme apG arT arT apG -sbl +rUy apG aoD aoD -nFe +vIr aoD aao aao @@ -35977,7 +35977,7 @@ ayf cVY cVY cVY -fCV +lCv cVY cVY cVY @@ -36007,30 +36007,30 @@ aao aao aao aao -hpG +bFV iGK iGK -nls -nls -ieV +wwD +wwD +gfF aao aao aao aao aao -wqB -sMv -sMv -nls -nls -pFH -qWv -qWv -qWv -qWv -vjp -oaz -oaz +jsy +gvt +gvt +wwD +wwD +rwL +cQW +cQW +cQW +cQW +qHy +qAH +qAH aao aao aao @@ -36038,44 +36038,44 @@ aao aao aao aao -nVH -wFj +htV +kDW qux -csy -jCh -nAZ -jCh -uLH -cpt -hpV -dFV -qzN +oYq +seX +lUS +seX +xFP +qme +pqI +cAz +xFD uHQ -fQw -bhg -gXe -wRR -rjd +tUv +pXN +bkF +qgn +cPv nCT -pGX -kIc -jCh -wtl -jCh -wkx +cQa +hkw +seX +uHX +seX +iBl uHQ aao aao -kXa -nuK -uGX -oUg -uKC -lpq -exf -cpt -cpt -cpt +rEP +uNA +gpO +hmj +wNU +gtD +wDX +qme +qme +qme aao aao aao @@ -36094,8 +36094,8 @@ aao aao aao aae -dsj -oik +wmn +luq aah aah aah @@ -36117,11 +36117,11 @@ aah aah aah aah -gxt -dsj -dsj -dsj -kMi +vrE +wmn +wmn +wmn +tmZ aae aao qsE @@ -36137,7 +36137,7 @@ vLd upE vLd vLd -qSH +kcb qsE aao aao @@ -36157,29 +36157,29 @@ aao aeI aoD aFv -rCR -rVK -reB -hVS -hVS -hVS -nEL +dGe +loA +dEl +yjr +yjr +yjr +vEe aoD aoD aoD aoD -ous -tYh -gdD -tWr -tWr -tWr -tWr -lkL -dRg -ntk -dRg -tYh +sVn +nKr +vnk +vqc +vqc +vqc +vqc +iRn +koL +foy +koL +nKr aoD aao aao @@ -36190,16 +36190,16 @@ aao aao aao ayf -fwI +lDy cVY cVY -cIC +uCs cVY cVY cVY cVY -mds -ffQ +jtS +sGf cVY cVY cVY @@ -36227,26 +36227,26 @@ aao aao aao aao -bRf -jjv -mVI +lbj +lpT +wTJ aao aao aao aao aao -hpG -nls -nls -jjv -nls -pFH -qWv -qWv -qWv -oSG -oaz -cYc +bFV +wwD +wwD +lpT +wwD +rwL +cQW +cQW +cQW +jdl +qAH +ffK uHQ uHQ uHQ @@ -36256,43 +36256,43 @@ uHQ uHQ gSB dwO -khw -iRU -hqR +qTN +eQf +eZZ wNA cVd -jCh -liY -cpt -hpV -uKd -oYj +seX +oVQ +qme +pqI +cQj +blV uHQ -qPB -pqG -uQu -eIP -mNg -kZB -leZ -jCh -fSd -lmh -leZ -jCh +xmD +qfx +uEP +tvL +pfT +uSw +cGM +seX +mHh +vpH +cGM +seX uHQ aao aao -tEk -nuK -uGX -vbf -hOz -xid -gDS -cpt -cpt -cpt +ele +uNA +gpO +sXf +rte +uOh +ndx +qme +qme +qme aao aao aao @@ -36311,8 +36311,8 @@ aao aao aao aae -dsj -kik +wmn +dis aah aah aah @@ -36334,17 +36334,17 @@ aah aah acx aah -csP -dsj -dsj -dsj -kMi +rDc +wmn +wmn +wmn +tmZ aae aao qsE qsE -dyZ -rqb +gEj +rdk qsE qsE qsE @@ -36354,7 +36354,7 @@ qsE vLd upE vLd -hsL +tBN qsE aao aao @@ -36374,29 +36374,29 @@ aeI aeI aoD aFv -rCR -rVK -reB -hVS -exS -exS -hVS +dGe +loA +dEl +yjr +dBX +dBX +yjr aoD -jKj -dRg -dRg -dRg -tYh -dRg -dRg -eru -dRg -dRg -tYh -dRg -ous -dRg -tYh +eZF +koL +koL +koL +nKr +koL +koL +qCG +koL +koL +nKr +koL +sVn +koL +nKr aoD aoD aoD @@ -36407,33 +36407,33 @@ aao aao aao ayf -rjP +vVr cVY cVY -mds -iqT +jtS +utG cVY -mds -ffQ -vTp -vTp -ffQ -ffQ -ffQ -ffQ +jtS +sGf +pPr +pPr +sGf +sGf +sGf +sGf ayf ayf -hDh +ogs ayf ayf -mHe -vTp -cdZ +sTM +pPr +xlW cVY cVY -uQD -vTp -cdZ +djC +pPr +xlW cVY cVY cVY @@ -36444,72 +36444,72 @@ aao aao aao aao -bRf -nls -nls -sMv -nls +lbj +wwD +wwD +gvt +wwD aao aao aao -nls -tXW -bIj -nls -nls -pXe +wwD +joQ +eae +wwD +wwD +sTa aao -qWv -qWv -oSG -oaz -cYc +cQW +cQW +jdl +qAH +ffK uHQ sAS tdZ kBE gTJ nZK -ftF +vDd qVi wtj qhk cVd -weF -hqR +lTi +eZZ kZG -jCh -kEt -cpt -hpV -ybu -xzp +seX +kXN +qme +pqI +lGl +nuO uHQ uHQ uHQ -xjB -jCh -xjB +rFL +seX +rFL wfd -uun -rOD -jCh -xRM -oUO -dzG +tGU +cPX +seX +mcS +kno +xXf uHQ aao aao aao -eGW -cpt -oUg -xrd -vjJ -gDS -cpt -cpt -cpt +qRd +qme +hmj +nrQ +sPb +ndx +qme +qme +qme aao aao aao @@ -36528,8 +36528,8 @@ aao aao aao aae -dsj -fKX +wmn +oxP aah aah aah @@ -36551,25 +36551,25 @@ aah aah aah aah -fVv -dsj -dsj -dsj -kMi +kpZ +wmn +wmn +wmn +tmZ aae aao qsE -reo -pki -qnL -oHH -qnL -qnL -tot -rsb +rnK +dnF +efz +waz +efz +efz +igA +jFf qsE -dyZ -rqb +gEj +rdk qsE qsE qsE @@ -36590,33 +36590,33 @@ aeI aeI aoD aoD -mgN -sKY -rVK -reB -kvV -sKY -sKY -rVK +cNk +wll +loA +dEl +xYX +wll +wll +loA aoD -mCX -dRg -dRg -dRg -jaK -vdc -vdc -vdc -vdc -dVb -pid -dgH -dgH -dgH -mns +mAY +koL +koL +koL +uXl +iqg +iqg +iqg +iqg +gvS +eFi +vdF +vdF +vdF +sAu aoD -wgy -wgy +pkC +pkC aoD aoD aoD @@ -36627,106 +36627,106 @@ ayf ayf cVY cVY -vTp -dvh -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -oUZ -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -vCH -tuq -vTp +pPr +pkk +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +crh +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +eXy +hqu +pPr ayf ayf aao aao aao aao -bRf -eHF -nls -nls -nls -nls +lbj +jwZ +wwD +wwD +wwD +wwD aao -nls -nls -tXW -bIj -nls -mVI +wwD +wwD +joQ +eae +wwD +wTJ aao aao aao aao aao -xLf -cYc +poY +ffK uHQ cyv jPm uFi wtj jPX -ggs +mgj qVi wtj pbZ wtj -xpV -rjN -hqR -hqR -jCh -cpt -cpt -oIC -cpt -cpt -cpt -lJN -iRU -jPR -rzI -vkV -jCh -jCh -nRM -iRU -cKb -sqm +iry +hbC +eZZ +eZZ +seX +qme +qme +lru +qme +qme +qme +suY +eQf +kBb +aTA +rHd +seX +seX +lBk +eQf +mbj +edA uHQ aao -cpt -cpt -cpt -cpt -cpt -jaZ -jaZ -cpt -cpt -cpt -cpt +qme +qme +qme +qme +qme +xHp +xHp +qme +qme +qme +qme aao aao aao @@ -36745,8 +36745,8 @@ aao aao aao aae -dsj -iLW +wmn +dqq aah aah aah @@ -36768,25 +36768,25 @@ aah aah aah aah -pVn -dsj -dsj -dsj -kMi +xzT +wmn +wmn +wmn +tmZ aae aao qsE -rOb -pki -qnL -pki -qnL -qnL -doi -ppA -bmL -iDl -tex +odt +dnF +efz +dnF +efz +efz +qLz +kUS +tmm +oTo +uZk qsE aao aao @@ -36807,90 +36807,90 @@ aeI aeI aeI aoD -sKY -sKY -rVK -reB -kvV -sKY -hyk -xGY +wll +wll +loA +dEl +xYX +wll +wAP +uhT aoD -eyS -dRg -dRg -swz -uJU -nSQ -dRg -dRg -wVH -oLN -dRg -dRg -gdD -dRg -dRg -dRg -dRg -ous -dRg -dTd -dRg +ubz +koL +koL +rrc +lOc +ogL +koL +koL +wRD +dmn +koL +koL +vnk +koL +koL +koL +koL +sVn +koL +mVo +koL aoD aao aao ayf cVY cVY -mds -vTp -koT -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -xfq -vTp -vTp +jtS +pPr +mja +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +jlT +pPr +pPr ayf aao aao aao aao -bRf -nls -nls -nls -jjv -sMv -nls -nls -lOo -nls -nls -nls -pXe +lbj +wwD +wwD +wwD +lpT +gvt +wwD +wwD +euD +wwD +wwD +wwD +sTa aao aao aao @@ -36899,51 +36899,51 @@ aao aao aao uHQ -jNj +ttI vxQ mtL pUi -xFA -nJU +uBo +gkT hZl ust -xJS -kTr -rNa -qgu -cBb -cBb -cBb -mLr -mLr -uWN -nWw -uGX -cpt -lJN -cQn -kPl -gzC -dTI -wWg -efN -iAY +tiy +epb +fkD +rzD +gYu +gYu +gYu +aGP +aGP +mQr +iZK +gpO +qme +suY +mMb +tbA +qAV +bWp +kts +qzP +fTS uHQ uHQ uHQ uHQ -qXq -cpt -cpt -cpt -cpt -cpt -cpt -kIp -kIp -cpt -cpt -cpt +pFQ +qme +qme +qme +qme +qme +qme +jpS +jpS +qme +qme +qme aao aao aao @@ -36962,8 +36962,8 @@ aao aao aao aae -dsj -oik +wmn +luq aah aah aah @@ -36974,7 +36974,7 @@ aah aah aah aah -dLK +thP aah aah aah @@ -36985,25 +36985,25 @@ aah aah aah aah -gxt -dsj -dsj -dsj -kMi +vrE +wmn +wmn +wmn +tmZ aae aao qsE -kbt -pki -qnL -rxF -qnL -qnL -qnL -ppA -iDl -iDl -rsb +jLN +dnF +efz +ovK +efz +efz +efz +kUS +oTo +oTo +jFf qsE aao aao @@ -37024,14 +37024,14 @@ aeI aeI aeI aoD -sKY -sKY -rVK -reB -out -xoM +wll +wll +loA +dEl +ndh +hKB aFv -oWN +blU aoD apG apG @@ -37039,74 +37039,74 @@ apG apG apG apG -fTr -dRg -dRg -oLN -dRg -dRg -dRg -dRg -dRg -dRg -dRg -dRg -dRg -dRg -dRg +nsL +koL +koL +dmn +koL +koL +koL +koL +koL +koL +koL +koL +koL +koL +koL aoD aao aao ayf cVY cVY -uQD -vTp -koT -hDh -sCU -mHg -lQQ -wjU -sCU -mHg -lQQ -wjU -sCU -mHg -lQQ -wjU -sCU -mHg -lQQ -wjU -sCU -mHg -lQQ -wjU -sCU -hDh -oUZ -xfq -cuI -vTp +djC +pPr +mja +ogs +bRF +rHs +jqf +tvM +bRF +rHs +jqf +tvM +bRF +rHs +jqf +tvM +bRF +rHs +jqf +tvM +bRF +rHs +jqf +tvM +bRF +ogs +crh +jlT +oAw +pPr ayf aao aao aao aao -hpG +bFV iGK -nls -nls -nls -nls -nls -sMv -nls -nls -nls -nls +wwD +wwD +wwD +wwD +wwD +gvt +wwD +wwD +wwD +wwD aao aao aao @@ -37116,51 +37116,51 @@ aao aao aao weO -iRU +eQf wtj rKs wJd -naX -iRU +eIj +eQf qVi eup enD tsy -ftW -ftW -fnf -iSi -fnf -iSi -iSi -gLo -iSi -iSi -cpt -nMS -msC -qGh -nQC -vYv -dEn -jCh -jOr +lWi +lWi +rGK +gTp +rGK +gTp +gTp +jfK +gTp +gTp +qme +vAt +gMu +iYU +uSh +lWT +vUY +seX +cQR uHQ -wTB -iRU -lJN -qqJ -cpt -cpt -cpt -cpt -cpt -cpt -xtO -xtO -cpt -cpt -cpt +ugG +eQf +suY +oRj +qme +qme +qme +qme +qme +qme +dss +dss +qme +qme +qme aao aao aao @@ -37179,8 +37179,8 @@ aao aao aao aae -dsj -kik +wmn +dis aah aah aah @@ -37202,25 +37202,25 @@ aah aah aah aah -csP -dsj -dsj -dsj -kMi +rDc +wmn +wmn +wmn +tmZ aae aao qsE -yaw -pki -qnL -pki -iDl -iDl -qnL -tex -fqZ -fqZ -ggm +efj +dnF +efz +dnF +oTo +oTo +efz +uZk +wkX +wkX +wxd qsE aao aao @@ -37241,46 +37241,46 @@ aeI aeI aoD aoD -sKY -sKY -rVK -reB -kvV -xoM +wll +wll +loA +dEl +xYX +hKB aFv aFv aoD -gwa -gwa -gwa -gwa -tGf +gun +gun +gun +gun +kXT arT -dRg -dRg -ous -oLN -dRg -dRg -dRg -dRg -dRg -dRg -eru -dRg -dRg -dRg -dRg +koL +koL +sVn +dmn +koL +koL +koL +koL +koL +koL +qCG +koL +koL +koL +koL aoD aao aao ayf ayf cVY -uQD -vTp -koT -wRc +djC +pPr +mja +guV bie bje bie @@ -37302,11 +37302,11 @@ bie bie bje bie -wKs -oUZ -xfq -pMA -vTp +xPJ +crh +jlT +vZZ +pPr ayf aao aao @@ -37314,16 +37314,16 @@ aao aao aao aao -hpG +bFV iGK -nls -nls -nls -nls -eHF -mVI -nls -nls +wwD +wwD +wwD +wwD +jwZ +wTJ +wwD +wwD aao aao aao @@ -37333,7 +37333,7 @@ aao aao aao uHQ -bOi +dtY wtj duo wtj @@ -37343,41 +37343,41 @@ uHQ jlg vvL xuP -cpt -wcg -nio -nio -nio -nio -nio -ktD -nio -nio -uGX -iRU -jCh -jNf -mMQ -iRU -peM -cWY -jIp -gfc -iRU -dgs -lJN -pQD -cpt -cpt -xtO -qMr -cpt -cpt -kIp -kIp -cpt -cpt -cpt +qme +eIS +dQK +dQK +dQK +dQK +dQK +jrO +dQK +dQK +gpO +eQf +seX +bqR +urO +eQf +ibi +fWp +nyK +wTR +eQf +kNL +suY +pYf +qme +qme +dss +srD +qme +qme +jpS +jpS +qme +qme +qme aao aao aao @@ -37396,8 +37396,8 @@ aao aao aao aae -dsj -fKX +wmn +oxP aah aah aah @@ -37419,24 +37419,24 @@ aah aah aah aah -fVv -dsj -dsj -dsj -kMi +kpZ +wmn +wmn +wmn +tmZ aae aao qsE qsE -sGS -pEu -pki -qnL -iDl -iDl -rsb -wcU -uCF +eXr +fSu +dnF +efz +oTo +oTo +jFf +kRp +cgr qsE qsE aao @@ -37458,46 +37458,46 @@ aeI aeI aeI aoD -sKY -sKY -rVK -reB -kvV -xoM +wll +wll +loA +dEl +xYX +hKB aFv aFv aoD -gwa -tGf -qkd -gwa -gwa +gun +kXT +iCn +gun +gun arT -dRg -dRg -dRg +koL +koL +koL aoD asl -ddk +hfl aoD asl -ddk +hfl aoD asl -ddk +hfl aoD asl -ddk +hfl aoD aao aao ayf -opD +rba cVY -uQD -vTp -koT -eqG +djC +pPr +mja +vuI bie bie bie @@ -37519,11 +37519,11 @@ bie bie bie bie -vzF -oUZ -xfq -vTp -vTp +lua +crh +jlT +pPr +pPr ayf aao aao @@ -37533,14 +37533,14 @@ aao aao aao aao -bRf -nls -nls -nls -nls -nls -nls -jjv +lbj +wwD +wwD +wwD +wwD +wwD +wwD +lpT aao aao aao @@ -37550,51 +37550,51 @@ aao aao aao uHQ -wzq +tid wtj wtj mBo wtj xrp rzT -sPz +bYB vmV bss -nWw -nio -nio -kXa -kXa -teY -nio -ktD -kXa -nuK -uGX -lJN -jCh -jCh -iRU -iRU -iRU -iRU -iRU -tpJ -iRU -iRU -lCf -qXq -tOD -cpt -kIp +iZK +dQK +dQK +rEP +rEP +uYj +dQK +jrO +rEP +uNA +gpO +suY +seX +seX +eQf +eQf +eQf +eQf +eQf +onn +eQf +eQf +nKm +pFQ +uqE +qme +jpS vHw vHw -qyY -kIp -kFo -cpt -cpt -cpt +xbB +jpS +jbt +qme +qme +qme aao aao aao @@ -37613,8 +37613,8 @@ aao aao aao aae -dsj -iLW +wmn +dqq aah aah aah @@ -37636,23 +37636,23 @@ aah aah aah aah -pVn -dsj -dsj -dsj -kMi +xzT +wmn +wmn +wmn +tmZ aae aao aao qsE qsE qsE -pki -qnL -doi -qnL -tex -rzt +dnF +efz +qLz +efz +uZk +mEM qsE qsE aao @@ -37662,8 +37662,8 @@ aeI aeI aeI aeI -jjU -jCG +cwl +bYm aeI aeI aeI @@ -37675,46 +37675,46 @@ aeI aeI aeI aoD -sKY -sKY -rVK -reB -kvV -xoM +wll +wll +loA +dEl +xYX +hKB aFv aFv aoD -gwa -gwa -gwa -gwa -gwa -gSS -dRg -dRg -dRg +gun +gun +gun +gun +gun +eRK +koL +koL +koL asl -uEn -gwa +wCE +gun asl -vnq -gwa +rbB +gun asl -vnq -gwa +rbB +gun asl -vnq -gwa +rbB +gun aoD aao aao ayf cVY cVY -uQD -vTp -koT -hlF +djC +pPr +mja +hUS bie bie bie @@ -37736,11 +37736,11 @@ bie bie bie bie -tIX -oUZ -xfq -vTp -vTp +tAF +crh +jlT +pPr +pPr ayf aao aao @@ -37750,14 +37750,14 @@ aao aao aao aao -bRf -nls -jjv -nls -nls -bIj -bIj -mVI +lbj +wwD +lpT +wwD +wwD +eae +eae +wTJ aao aao aao @@ -37767,51 +37767,51 @@ aao aao aao uHQ -mzI +lrb mIu fML eUs -iRU -deT +eQf +fZs lIL fBc -sRq -vYB -nWw -nio -nio -kXa -teY -nio -nio -ktD -nio -nio -uGX -lJN -cKb -wwS -eFx -xwc -iRU -nZe -jCh -iRU -hXx -iRU -lJN -qXq -cpt -cpt -cqs +fXp +xDm +iZK +dQK +dQK +rEP +uYj +dQK +dQK +jrO +dQK +dQK +gpO +suY +mbj +exn +pYY +ent +eQf +ceI +seX +eQf +nhJ +eQf +suY +pFQ +qme +qme +wBp vHw vHw -cpt -kIp -kIp -cpt -cpt -cpt +qme +jpS +jpS +qme +qme +qme aao aao aao @@ -37830,8 +37830,8 @@ aao aao aao aae -dsj -oik +wmn +luq aah aah aah @@ -37853,22 +37853,22 @@ aah aah aah aah -gxt -dsj -dsj -dsj -kMi +vrE +wmn +wmn +wmn +tmZ aae aao aao aao aao qsE -mwP -qnL -qnL -doi -rsb +sEH +efz +efz +qLz +jFf qsE qsE aao @@ -37878,60 +37878,60 @@ aeI aeI aeI atQ -jjU -jwc -jwc -tLJ -fZh +cwl +vYo +vYo +koa +tyz aeI aeI aeI -jjU -tLJ -jCG +cwl +koa +bYm aeI aeI aoD -sKY -jLx -hVS -reB -hVS -rdW -xoM +wll +bLc +yjr +dEl +yjr +cPy +hKB aFv aoD -gwa -gwa -gwa -tGf -qkd +gun +gun +gun +kXT +iCn arT -dRg -dRg -dRg +koL +koL +koL asl -fgI -luC +bQB +qoi asl -fgI -luC +bQB +qoi asl -fgI -luC +bQB +qoi asl -fgI -luC +bQB +qoi aoD aao aao ayf ayf cVY -gSp -vTp -koT -lbY +uhN +pPr +mja +nTZ bie bie bie @@ -37953,11 +37953,11 @@ bie bie bie bie -sUh -oUZ -xfq -vTp -vTp +sIv +crh +jlT +pPr +pPr ayf aao aao @@ -37967,14 +37967,14 @@ aao aao aao aao -bRf -nls -nls +lbj +wwD +wwD iGK -nls -bIj -bIj -nls +wwD +eae +eae +wwD aao aao aao @@ -37992,42 +37992,42 @@ uHQ uHQ vHw fBc -sRq -gMf -nWw -eDL -nio -kXa -teY -nio -kXa -hvV -kXa -nio -xpc +fXp +uSu +iZK +reN +dQK +rEP +uYj +dQK +rEP +cYr +rEP +dQK +dTe cOt -eDz -jCh -vtb -iRU -jCh -jCh -uxU -iRU -cwF -fLa -lJN -qXq -cpt -cpt -cpt -nWw -oYP -pAN -iSi -cpt -cpt -cpt +hjb +seX +uAA +eQf +seX +seX +stP +eQf +enF +nLq +suY +pFQ +qme +qme +qme +iZK +sGw +pbB +gTp +qme +qme +qme aao aao aao @@ -38047,8 +38047,8 @@ aao aao aao aae -dsj -kik +wmn +dis aah aaF aah @@ -38070,11 +38070,11 @@ aah aah aaF aah -csP -dsj -dsj -dsj -kMi +rDc +wmn +wmn +wmn +tmZ aae aao aao @@ -38082,63 +38082,63 @@ aao aao qsE qsE -mUh -mUh -mUh -mUh +hFb +hFb +hFb +hFb qsE aao aao aeI aeI aeI -jjU -tLJ -tLJ -jwc -jwc -jwc -jwc -jwc -tLJ -tLJ -tLJ -jwc -jwc -jwc -tLJ -tLJ +cwl +koa +koa +vYo +vYo +vYo +vYo +vYo +koa +koa +koa +vYo +vYo +vYo +koa +koa aoD -sKY +wll aoD -wRq -hCe -sjw +fBe +stH +wbA aoD -xoM +hKB aFv aoD -qkd -rYY -jkg -gwa -gwa +iCn +xzX +wux +gun +gun arT -dRg -dRg -dRg +koL +koL +koL asl -nJb -coj +iya +egj asl -nJb -coj +iya +egj asl -nJb -coj +iya +egj asl -nJb -coj +iya +egj aoD aao aao @@ -38146,9 +38146,9 @@ ayf cVY cVY cVY -uQD -koT -wRc +djC +mja +guV bie bie bie @@ -38170,11 +38170,11 @@ bie bie bie bie -wKs -oUZ -xfq -vTp -vTp +xPJ +crh +jlT +pPr +pPr ayf aao aao @@ -38184,15 +38184,15 @@ aao aao aao aao -bRf -nls -mVI +lbj +wwD +wTJ aao -hpG -nls -nls -nls -nls +bFV +wwD +wwD +wwD +wwD aao aao aao @@ -38211,39 +38211,39 @@ vHw vec wbx bss -fYZ +ktJ vHw -rUx -kXa -mYV -kXa -nio -oVB -oMZ -nuK -nio +mMN +rEP +jtK +rEP +dQK +cUs +fpD +uNA +dQK uHQ -eCa +lNt rNc -mMY -iRU -wAN -oUO -iRU -iRU -iRU +pjP +eQf +jNw +kno +eQf +eQf +eQf uHQ uHQ wfd uHQ -cpt -cpt -nWw -nio -nio -nio -pAN -cpt +qme +qme +iZK +dQK +dQK +dQK +pbB +qme aao aao aao @@ -38264,73 +38264,73 @@ aao aao aao aae -dsj -dsj -kxt -jHI -gdS -oTl -kxt -dWQ -ttg -oTl -kxt -jHI -gdS -oTl -kxt -jHI -gdS -oTl -kxt -jHI -gdS -oTl -kxt -dsj -eqH -dsj -dsj -kMi +wmn +wmn +meW +pwK +oce +lqr +meW +qIL +rUj +lqr +meW +pwK +oce +lqr +meW +pwK +oce +lqr +meW +pwK +oce +lqr +meW +wmn +dHX +wmn +wmn +tmZ aae aao aao aeI aeI aeI -uIn -ukR -ukR -dCI -ukR -bBE -fhS +sJa +oUj +oUj +vpN +oUj +uEb +kbJ aeI aeI aeI -rMt -gEU -jKP -jKP -jKP -gEU -jKP -jKP -gEU -gEU -gEU -gEU -gEU -jKP -gEU -jKP -vnA +mJO +ncG +sQM +sQM +sQM +ncG +sQM +sQM +ncG +ncG +ncG +ncG +ncG +sQM +ncG +sQM +rPG aoD aoD aoD -hVS -reB -hVS +yjr +dEl +yjr aoD aoD aoD @@ -38342,7 +38342,7 @@ aoD aoD aoD aoD -rbo +nII aoD aoD aoD @@ -38362,10 +38362,10 @@ ayf ayf cVY cVY -mds -vTp -koT -snQ +jtS +pPr +mja +bGm bie bie bie @@ -38376,7 +38376,7 @@ bie bie bie bie -xfl +qNu bie bie bie @@ -38387,11 +38387,11 @@ bie bie bie bie -vzF -oUZ -xfq -vTp -vTp +lua +crh +jlT +pPr +pPr ayf aao aao @@ -38401,16 +38401,16 @@ aao aao aao aao -bRf -nls -mVI +lbj +wwD +wTJ aao aao -hpG -nls -nls -nls -nls +bFV +wwD +wwD +wwD +wwD aao aao aao @@ -38430,37 +38430,37 @@ aao aao aao aao -twb -ebd -wVO -vBQ -nio -oVB -teY -kXa -kXa +tfo +kkg +oqc +cwQ +dQK +cUs +uYj +rEP +rEP uHQ wtj ohY -iRU -cKb -iRU -wTB -iRU -iRU -iRU -oXw +eQf +mbj +eQf +ugG +eQf +eQf +eQf +hjU ipf sdP uHQ -cpt -rNa -rNa -eGW -lwA -nio -nio -uGX +qme +fkD +fkD +qRd +isS +dQK +dQK +gpO aao aao aao @@ -38481,75 +38481,75 @@ aao aao aao aae -eqH -jiQ -jiQ -jiQ -jiQ -jiQ -jiQ -jiQ -jiQ -jiQ -jiQ -jiQ -jiQ -eqH -jiQ -dHj -jiQ -dHj -dHj -jiQ -jiQ -kHc -jiQ -jiQ -jiQ -jiQ -jiQ -qXW +dHX +wdB +wdB +wdB +wdB +wdB +wdB +wdB +wdB +wdB +wdB +wdB +wdB +dHX +wdB +tDM +wdB +tDM +tDM +wdB +wdB +isC +wdB +wdB +wdB +wdB +wdB +vJa aae -myr +weu aeI aeI aeI aeI -qUu -ukR -dCI -ukR -ukR -uWG +sNJ +oUj +vpN +oUj +oUj +jKB aeI aeI aeI aeI -mKx -ukR -dCI -fzS -fzS -fzS -jDa -dCI -ukR -qaj -oOI -oOI -oOI -oOI -oOI -oOI -gUg -vnA -jwc +kiO +oUj +vpN +nhY +nhY +nhY +nnJ +vpN +oUj +wCe +jvL +jvL +jvL +jvL +jvL +jvL +ecH +rPG +vYo aoD -wRq -hCe -wRq +fBe +stH +fBe aoD -cYo +tnC aoD aEu aEu @@ -38569,20 +38569,20 @@ aoD aEu aEu aoD -hkr -hkr +sSM +sSM aoD -hkr -hkr -gpp -hkr -vTp -ffQ -ffQ -vTp -vTp -koT -hlF +sSM +sSM +uEU +sSM +pPr +sGf +sGf +pPr +pPr +mja +hUS bie bie bie @@ -38604,11 +38604,11 @@ bie bie bie bie -tIX -oUZ -xfq -vTp -vTp +tAF +crh +jlT +pPr +pPr ayf aao aao @@ -38618,18 +38618,18 @@ aao aao aao aao -bRf -nls -pXe +lbj +wwD +sTa aao aao aao -bRf -nls -jjv -nls -nls -nls +lbj +wwD +lpT +wwD +wwD +wwD aao aao aao @@ -38646,37 +38646,37 @@ aao aao aao aao -nJZ -cWn -nLd -fBQ -wVY -nio -txj -mTZ -wsg -lwA +prQ +bPj +fzF +tkj +rMt +dQK +eLI +cXR +wan +isS uHQ wtj qSj -iRU +eQf uHQ -ewz -kqr -iuf -bOD -iRU -nTr +iSU +bSb +xnd +poW +eQf +mqF dKo -iRU +eQf uHQ -iSi -iSi -iSi -iSi -nWw -nio -nio +gTp +gTp +gTp +gTp +iZK +dQK +dQK aao aao aao @@ -38711,7 +38711,7 @@ abk aah abu aaH -spW +gvo aah aah aah @@ -38727,79 +38727,79 @@ aah aah aeG aae -myr +weu aeI aeI aeI aeI aeI -mKx -ukR -ukR -myr +kiO +oUj +oUj +weu aeI aeI aeI aeI -jjU -mKx -ukR -myr -jwc -wuA -jwc -jwc -mKx -ukR -hMN -ukR -ukR -ukR -ukR -ukR -ukR -hMN -giX -jwc -qUu -ukR -hMN -ukR -uWG -cYo +cwl +kiO +oUj +weu +vYo +yhC +vYo +vYo +kiO +oUj +fae +oUj +oUj +oUj +oUj +oUj +oUj +fae +bmX +vYo +sNJ +oUj +fae +oUj +jKB +tnC aEu aEu aEu aEu aEu -xlx -iZE -iZE +qKz +xcY +xcY aEu aEu aEu aEu aEu aEu -hkr +sSM aEu aEu aEu aEu -hkr -hkr -hkr -hkr -mCF -mCF -mCF -vTp -vTp -vTp -vTp -vTp -koT -vye +sSM +sSM +sSM +sSM +hrd +hrd +hrd +pPr +pPr +pPr +pPr +pPr +mja +rTf bie bie bie @@ -38821,11 +38821,11 @@ bie bie bie bie -sUh -oUZ -xfq -vTp -vTp +sIv +crh +jlT +pPr +pPr ayf aao aao @@ -38835,20 +38835,20 @@ aao aao aao aao -hpG -pXe +bFV +sTa aao aao aao aao -bRf -nls -nls -nls -nls -nls -nls -ieV +lbj +wwD +wwD +wwD +wwD +wwD +wwD +gfF aao aao aao @@ -38864,36 +38864,36 @@ aao aao aao aao -rYX -ycv -vdb -kXa -nio -lqW +yfH +kpL +gvQ +rEP +dQK +fmO lCR -iwF -eCK +wvg +fjT uHQ wtj qmm -wyY +nej lBe -iRU -iRU -tpJ -bOD -jCh +eQf +eQf +onn +poW +seX nqr -jCh +seX xWr uHQ vHw -eGW -eGW -eGW -nWw -nio -kXa +qRd +qRd +qRd +iZK +dQK +rEP aao aao aao @@ -38928,7 +38928,7 @@ abl aah abv aaI -iLR +qWo aah aah aah @@ -38944,79 +38944,79 @@ aah aah aeG aae -myr +weu aeI aeI aeI aeI aeI -mKx -dCI -dCI -myr +kiO +vpN +vpN +weu aeI aeI aeI aeI -kHA -mKx -dCI -giX -wuA -rMt -gEU -gEU -ukR -ukR -hMN -ukR -ukR -ukR -ukR -ukR -ukR -pwy -qZW -jwc -jwc -mKx -hMN -myr -jwc -jAF +eIU +kiO +vpN +bmX +yhC +mJO +ncG +ncG +oUj +oUj +fae +oUj +oUj +oUj +oUj +oUj +oUj +gcq +rYx +vYo +vYo +kiO +fae +weu +vYo +mmX aeI aEu aEu aEu aEu -tfL +sOK aEu -xlx -iZE +qKz +xcY aEu -jSs -nUP -nUP -nUP -nUP -nUP -pOJ -nUP -nUP -nUP -pOJ -nUP -nUP -pOJ -nUP -nUP -mxx -mxx -vCH -vCH -vCH -oUZ -qDE +qjr +ldP +ldP +ldP +ldP +ldP +xKE +ldP +ldP +ldP +xKE +ldP +ldP +xKE +ldP +ldP +qTt +qTt +eXy +eXy +eXy +crh +thp bie bie bie @@ -39038,11 +39038,11 @@ bie bie bie bjo -wKs -oUZ -xfq -vTp -vTp +xPJ +crh +jlT +pPr +pPr ayf aao aao @@ -39058,14 +39058,14 @@ aao aao aao aao -bRf -nls -eHF -nls -nls -nls -nls -mVI +lbj +wwD +jwZ +wwD +wwD +wwD +wwD +wTJ aao aao aao @@ -39083,34 +39083,34 @@ aao aao aao aao -lwA -nio -nio -dAk +isS +dQK +dQK +kZh ene -kZP -suk +dkJ +pGI uHQ uHQ uHQ uHQ uHQ -iRU -sVv +eQf +iaV uHQ -lJN -lJN +suY +suY wrS -reO +oVh uHQ uHQ uHQ -iSi -iSi -iSi -wcg -xZH -nio +gTp +gTp +gTp +eIS +xpY +dQK aao aao aao @@ -39145,7 +39145,7 @@ abm aah abw aaJ -eNc +uxQ aah aah aah @@ -39161,45 +39161,45 @@ aah aah aeG aae -myr -jCG +weu +bYm aeI aeI aeI aeI -mKx -dCI -ukR -myr +kiO +vpN +oUj +weu aeI aeI aeI aeI -kHA -oyn -ukR -giX -jwc -mKx +eIU +oWQ +oUj +bmX +vYo +kiO anp anp anp -uMF -nLf -uMF +nkP +hkg +nkP anp anp anp -mlx -ukR -hMN -giX -jwc -jwc -mKx -hMN -myr -cYo +tAe +oUj +fae +bmX +vYo +vYo +kiO +fae +weu +tnC aeI aeI aeI @@ -39209,31 +39209,31 @@ aEu aEu aEu aEu -xlx -xlx -tMd -cvN -fxl -uYL -uYL -fxl -uYL -uYL -fxl -ixM -uYL -cvN -hdI -cvN -cvN -cvN -gZz -kTB -gZz -gZz -gZz -oUZ -eqG +qKz +qKz +kQV +gPD +uTO +jnd +jnd +uTO +jnd +jnd +uTO +mln +jnd +gPD +eeG +gPD +gPD +gPD +mPe +rdp +mPe +mPe +mPe +crh +vuI bie bie bie @@ -39255,11 +39255,11 @@ bie bie bie bie -vzF -oUZ -xfq -vTp -vTp +lua +crh +jlT +pPr +pPr ayf aao aao @@ -39275,58 +39275,58 @@ aao aao aao aao -bRf -nls -nls -nls -nls -nls -nls -nls -bRf +lbj +wwD +wwD +wwD +wwD +wwD +wwD +wwD +lbj aao aao xMr -tJA +clr lbZ maF sbA pcf -fFg -lKx -iSi -pge -lHg -gFV -exO -qtX -wcg -nio -teY -uzW -lYv -bWU -wcg -oYP -nio -nio -nio -nio -uGX -cpt -nmD -nWw -nio -pcY -kXa +jDD +eVJ +gTp +eSC +qsR +xcp +gnK +gKE +eIS +dQK +uYj +hul +meI +kfI +eIS +sGw +dQK +dQK +dQK +dQK +gpO +qme +gBx +iZK +dQK +jOb +rEP nCX uHQ uHQ -nio -nio -nio -nio -nio +dQK +dQK +dQK +dQK +dQK aao aao aao @@ -39362,7 +39362,7 @@ aah aah aah aah -mfS +tWu aah aah aah @@ -39378,26 +39378,26 @@ aah aah aeG aae -myr -jwc -jCG +weu +vYo +bYm aeI aeI aeI -mKx -ukR -ukR -giX +kiO +oUj +oUj +bmX aeI aeI aeI aeI -kHA -mKx -ukR -giX -cYo -mKx +eIU +kiO +oUj +bmX +tnC +kiO anp avT bZp @@ -39408,15 +39408,15 @@ azn avT avT anp -ukR -hMN -myr -jwc -jwc -mKx -hMN -myr -cYo +oUj +fae +weu +vYo +vYo +kiO +fae +weu +tnC aeI aeI aEu @@ -39425,32 +39425,32 @@ aEu aEu aEu aEu -hkr -hkr -hkr -fTK -pIR -hkr -hkr -hkr -tzk -tzk -tzk -tzk -tzk -hkr -tMd -cvN -cvN -cvN -egA -cwx -vTp -vTp -vTp -vTp -koT -hlF +sSM +sSM +sSM +igG +xLI +sSM +sSM +sSM +iii +iii +iii +iii +iii +sSM +kQV +gPD +gPD +gPD +cgE +oWE +pPr +pPr +pPr +pPr +mja +hUS bie bje bie @@ -39472,11 +39472,11 @@ bie bie bje bie -tIX -oUZ -xfq -vTp -wdS +tAF +crh +jlT +pPr +wEL ayf aao aao @@ -39492,58 +39492,58 @@ aao aao aao aao -hpG +bFV iGK iGK -nls -nls -jjv -nls -nls -bRf -nls -lbr +wwD +wwD +lpT +wwD +wwD +lbj +wwD +rMi fYH -kLk +kOB dCA cAN -pDl +jhb mhG -iKf -edq -gAu -jve -pJs -xmp -wvW -phA -nio -gOw -gwU -ktD -syq -npL -nio -kXa -ehJ -nio -nio -nio -uGX -cpt -cpt -nWw -teY -uvH -lCW +xXO +czM +fPE +nPZ +dTU +cHT +nFP +nwy +dQK +qfs +rAG +jrO +wol +kHy +dQK +rEP +vJJ +dQK +dQK +dQK +gpO +qme +qme +iZK +uYj +kEg +qDQ nCX uHQ uHQ -rTp -jGZ -rTp -goP -jGZ +lId +mFU +lId +eCe +mFU aao aao aao @@ -39564,11 +39564,11 @@ aao aao aao aao -pvf +hff aae aae aae -cTv +dan aah aah aaU @@ -39579,7 +39579,7 @@ aah aah aah aah -mfS +tWu aah aah aah @@ -39595,48 +39595,48 @@ aah aah aeG aae -myr -jwc -jwc -jCG +weu +vYo +vYo +bYm ahi aeI -mKx -ukR -ukR -myr +kiO +oUj +oUj +weu aeI aeI aeI aeI -kHA -mKx -ukR -myr -cYo -mKx +eIU +kiO +oUj +weu +tnC +kiO bFw -crx -crx -ylO +uWc +uWc +rZB axZ avT azo aAq aAZ anp -ukR -hMN -ukR -gEU -gEU -qTa -hMN -myr -cYo +oUj +fae +oUj +ncG +ncG +vyW +fae +weu +tnC aeI -rMt -jKP +mJO +sQM aEu aEu aEu @@ -39644,56 +39644,56 @@ aEu aEu aEu aEu -nUP -hdI -cvN -nUP -nUP -nUP -nUP -nUP -nUP -mvm +ldP +eeG +gPD +ldP +ldP +ldP +ldP +ldP +ldP +rMd aYF -ick -tMd -cvN -hdI -cvN -qkI -cwx -vTp -gkO -vTp -vTp -koT -hDh -oPd -qjB -bIV -tfY -ujg -qjB -bIV -lIM -oPd -qjB -bIV -lIM -oPd -qjB -bIV -lIM -oPd -qjB -bIV -lIM -oPd -hDh -oUZ -xfq -vTp -ppd +pCI +kQV +gPD +eeG +gPD +eHW +oWE +pPr +pdp +pPr +pPr +mja +ogs +hKQ +ktx +rIW +nKs +oYD +ktx +rIW +nFK +hKQ +ktx +rIW +nFK +hKQ +ktx +rIW +nFK +hKQ +ktx +rIW +nFK +hKQ +ogs +crh +jlT +pPr +tAC ayf aao aao @@ -39712,55 +39712,55 @@ aao aao aao aao -bRf -nls -nls -nls -nls -nls -nls -cIW +lbj +wwD +wwD +wwD +wwD +wwD +wwD +jue uxx fOM ulH -vIV -pDl +pQJ +jhb uxx -tFW -oNX -nLX -vIC -hSD -xrE -pMg -pMg -epw -nio -nio -oVB -nio -hFK -tYo -tDR -nio -kXa -nio -nio -uGX -cpt -cpt -nWw -nio -uvH -kXa -xzp +sUF +uaO +ogf +uCV +iCp +hIg +gAV +gAV +ltU +dQK +dQK +cUs +dQK +koe +vpT +iAb +dQK +rEP +dQK +dQK +gpO +qme +qme +iZK +dQK +kEg +rEP +nuO uHQ uHQ -dQT -eGW -eGW -eGW -eGW +wcj +qRd +qRd +qRd +qRd aao aao aao @@ -39780,11 +39780,11 @@ aao aao aao aao -iSw -ony -ony -xec -pTM +prx +fNw +fNw +xXB +dUh aae aah aah @@ -39796,7 +39796,7 @@ aah abD aah aah -mfS +tWu aah aah aah @@ -39811,48 +39811,48 @@ aah aah aah aeG -lda -ukR -gEU -gEU -gEU -gEU -gEU -ukR -ukR -ukR -ukR -gEU -gEU -gEU -jKP -jKP -ukR -ukR -giX -cYo -mKx +sqg +oUj +ncG +ncG +ncG +ncG +ncG +oUj +oUj +oUj +oUj +ncG +ncG +ncG +sQM +sQM +oUj +oUj +bmX +tnC +kiO bFw -iOv -myw -tlu +iYY +bsw +ofI axZ avT avT avT avT anp -ukR -fvX -tam -tam -tam -rPl -uzk -uWG -cYo +oUj +sEd +wdp +wdp +wdp +cAS +jSU +jKB +tnC aeI -mKx +kiO aoH aoH aoH @@ -39862,55 +39862,55 @@ aoH aoH aoH asj -nid -nid +uUA +uUA asj aoH aoH asK -pzV +rnB asK -pIR +xLI aYF aYF -tMd -cvN -hdI -cvN -qkI -cwx -vTp -vTp -vTp -vTp -koT -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -xfq -vTp -xhp +kQV +gPD +eeG +gPD +eHW +oWE +pPr +pPr +pPr +pPr +mja +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +jlT +pPr +tEj ayf aao aao @@ -39929,56 +39929,56 @@ aao aao aao aao -bRf -nls -nls -nls -nls -wUg -sSz -lbf +lbj +wwD +wwD +wwD +wwD +gjD +cxX +nPp tCh eZw cVh -lyq -kEs +vPr +gUZ tCh -fwl -fcl -fcl -fcl -fcl -wyx -nIW -vml -fcl -fcl -wyx -fPG -fcl -fcl -fcl -igQ -fcl -fcl -fcl -wjx -xlf -qZd -qZd -xBh -wiU -txV -nio +gmb +fXj +fXj +fXj +fXj +lzH +wEb +xow +fXj +fXj +lzH +sgj +fXj +fXj +fXj +pmX +fXj +fXj +fXj +kEz +raX +xTO +xTO +rhh +cjz +bNJ +dQK nCX uHQ aao -kIp -kIp -kIp -kIp -kIp -kIp +jpS +jpS +jpS +jpS +jpS +jpS aao aao aao @@ -39996,12 +39996,12 @@ aab aao aao aao -viJ -iSw -lOU -iSw -kxG -pTM +iUb +prx +qkT +prx +gBL +dUh aaq aah aah @@ -40013,7 +40013,7 @@ aah aah aah aah -mfS +tWu aah aah aah @@ -40028,105 +40028,105 @@ aah aah aah agr -sVd -oOI -oOI -oOI -oOI -oFZ -ukR -ukR -ukR -ukR -ukR -ukR -dCI -ukR -dCI -dCI -ukR -dCI -myr -cYo -mKx +hjX +jvL +jvL +jvL +jvL +qFl +oUj +oUj +oUj +oUj +oUj +oUj +vpN +oUj +vpN +vpN +oUj +vpN +weu +tnC +kiO bFw -iOv -iOv -tlu +iYY +iYY +ofI axZ avT avT avT avT anp -myr -urT -urT -urT -jwc -jwc -jwc -jwc -jAF +weu +bQF +bQF +bQF +vYo +vYo +vYo +vYo +mmX aeI -oyn +oWQ apt -msz -knm -mrE -knm -knm -tuK -mrE -wox -knm -knm -tiM -wxw +hHC +lcl +xBE +lcl +lcl +gWT +xBE +gwq +lcl +lcl +lXL +nwa aoH aXH aXH asK -pIR +xLI aYF aYF -tMd -cvN -hdI -cvN -qkI -vTp -aao -aao -vTp -vTp -koT -nLW -cYr -cYr -gZz -gZz -gZz -oUZ -oUZ -oUZ -gZz -gZz -oUZ -gZz -gZz -gZz -gZz -gZz -gZz -oUZ -oUZ -oUZ -gZz -gZz -gZz -kZi -vTp +kQV +gPD +eeG +gPD +eHW +pPr +aao +aao +pPr +pPr +mja +qfw +dua +dua +mPe +mPe +mPe +crh +crh +crh +mPe +mPe +crh +mPe +mPe +mPe +mPe +mPe +mPe +crh +crh +crh +mPe +mPe +mPe +pWq +pPr ayf ayf aao @@ -40146,56 +40146,56 @@ aao aao aao aao -hpG +bFV iGK iGK -nls -nls -nls -nls -cIW +wwD +wwD +wwD +wwD +jue uxx -gWM -nOV +kgH +lmO kKx -hUu +qcl uxx -uXZ -qBY -juO -grQ -eGW -eGW -xRA -fWD -lwA -nio -nio -ktD -nio -nio -nuK -dQT -eGW -eGW -eGW -lwA -nio -nio -nio -eDL -kXa -nio -dQT -iRU +nnU +gxi +kYS +eON +qRd +qRd +bTS +lgs +isS +dQK +dQK +jrO +dQK +dQK +uNA +wcj +qRd +qRd +qRd +isS +dQK +dQK +dQK +reN +rEP +dQK +wcj +eQf uHQ aao aao -kIp -kIp -kFo -kIp -kIp +jpS +jpS +jbt +jpS +jpS aao aao aao @@ -40212,13 +40212,13 @@ aaa aab aao aao -iSw -iSw -iSw -iSw -iSw -kxG -pTM +prx +prx +prx +prx +prx +gBL +dUh aae aah aah @@ -40230,7 +40230,7 @@ aah adL aah aah -mfS +tWu aah acx aah @@ -40245,50 +40245,50 @@ acx aah aah aeG -lda -ukR -jDa -jDa -ukR -hMN -ukR -jDa -jDa -jDa -jDa -jDa -jDa -jDa -jDa -jDa -jDa -fzS -gJs -cYo -mKx +sqg +oUj +nnJ +nnJ +oUj +fae +oUj +nnJ +nnJ +nnJ +nnJ +nnJ +nnJ +nnJ +nnJ +nnJ +nnJ +nhY +mPb +tnC +kiO bFw -stO -hvj -nRj +gfR +gyX +ptC aya avT azo aAq aAZ anp -myr +weu aeI aeI ahi -wSD -urT -jAF +reQ +bQF +mmX aeI aeI aeI -oyn +oWQ apt -msz +hHC aNo aOB aOB @@ -40299,51 +40299,51 @@ aNo aOB aOB aNo -kbg +pFF aoH aXH aXH asK -pIR +xLI aYF aYF -gTe -cvN -cvN -cvN -qkI -vTp -vTp -aao -aao -vTp -koT -nLW -oUZ -xfq -kJj -fCR -lZf -koT -oUZ -fOS +xHJ +gPD +gPD +gPD +eHW +pPr +pPr +aao +aao +pPr +mja +qfw +crh +jlT +eTi +npQ +vOj +mja +crh +lCl ayf ayf -hDh +ogs ayf ayf -mHe -vTp -vTp -vTp -koT -oUZ -xfq -vTp -mHe -vTp -vTp -vTp +sTM +pPr +pPr +pPr +mja +crh +jlT +pPr +sTM +pPr +pPr +pPr aao aao aao @@ -40366,54 +40366,54 @@ aao aao aao aao -jcm -ufW -jbR -slp -oGx +kcI +xml +ggv +oSb +wwF uxx fOM kcx pbX -pDl +jhb uxx -ybM -clz -dCT +wbI +uvI +fVN vHw vHw uHQ uHQ -lJN -lJN -kmJ +suY +suY +icg vRs -ktD -kXa -nio -teY -uGX +jrO +rEP +dQK +uYj +gpO aao aao -iSi -iSi -kXa -nio -pIo +gTp +gTp +rEP +dQK +okY uHQ -odS -nab -iRU -oUp +kVs +qFt +eQf +rsa uHQ aao aao -cpt -iSi -iSi -cpt -cpt -cpt +qme +gTp +gTp +qme +qme +qme aao aao aao @@ -40429,17 +40429,17 @@ aaa aab aao aao -tOy -iSw -iSw -aYn -dmr -ocL -pTM +wfw +prx +prx +qUP +cGe +ioZ +dUh aae aaw -lda -xdm +sqg +dLl aaw aaw abx @@ -40447,7 +40447,7 @@ abx aaw aaw aah -mfS +tWu aah aah aah @@ -40463,26 +40463,26 @@ aah aah aeG aae -mea -jwc -jwc -mKx -hMN -myr -jwc -jwc -jwc -jwc -jwc -jwc -jwc -jwc -jwc -jwc -jwc -jwc -jwc -mKx +eiA +vYo +vYo +kiO +fae +weu +vYo +vYo +vYo +vYo +vYo +vYo +vYo +vYo +vYo +vYo +vYo +vYo +vYo +kiO anp avT avT @@ -40493,7 +40493,7 @@ avT avT avT anp -myr +weu aeI aeI aeI @@ -40503,65 +40503,65 @@ aeI aeI aeI aeI -oyn +oWQ apt -msz +hHC aOw -iYq -xKJ -jhy -jNi -ykC -uku +vwh +pmp +xqL +kjm +cEw +utn aNo -wox -hKh -evO +gwq +mFg +eCL aoH aXH aXH asK -pIR +xLI bbb aYF -tMd -cvN -cvN -cvN -qkI -vTp -vTp -ojw -vTp -vTp -koT -oUZ -oUZ -oUZ -vCH -vCH -vCH -oUZ -oUZ -dnY +kQV +gPD +gPD +gPD +eHW +pPr +pPr +jtw +pPr +pPr +mja +crh +crh +crh +eXy +eXy +eXy +crh +crh +lXf ayf ayf ayf ayf ayf -vTp -vTp -mHe -vTp -koT -oUZ -xfq -vTp -vTp -vTp -vTp -vTp -mHe +pPr +pPr +sTM +pPr +mja +crh +jlT +pPr +pPr +pPr +pPr +pPr +sTM aao aao aao @@ -40583,39 +40583,39 @@ aao aao aao aao -jcm -ufW -ufW -ufW -kfO -ucm +kcI +xml +xml +xml +vXt +qGV rUn dSg pQE jDy -oMN -jDG -bWN +uCS +mXN +cJs vHw vHw vHw uHQ -uoz -gfi -sRq -xYO +hnz +vqH +fXp +jYc qVi -ktD -nio -kXa -nio -uGX +jrO +dQK +rEP +dQK +gpO vHw vHw -eGW -eGW -nio -nio +qRd +qRd +dQK +dQK aao uHQ uHQ @@ -40625,12 +40625,12 @@ uHQ uHQ aao aao -wcg -nio -nio -uGX -kIp -kIp +eIS +dQK +dQK +gpO +jpS +jpS aao aao aao @@ -40647,24 +40647,24 @@ aab aao aao aao -iSw -aYn -ocL -ocL -ocL -hkk +prx +qUP +ioZ +ioZ +ioZ +pPX aae -rwg -hjC -jHn -oWZ -jbN -oZS -nFE -ewc +dPx +aJk +xwt +hyA +tKf +uon +swT +kAN aaw aca -mfS +tWu aah aah aah @@ -40680,26 +40680,26 @@ aah aah aeG aae -myr -jwc -jwc -mKx -hMN -myr -jwc -jwc -jwc -jwc -jwc -jwc -jwc -jwc -gsN -jwc -jwc -jwc -jwc -mKx +weu +vYo +vYo +kiO +fae +weu +vYo +vYo +vYo +vYo +vYo +vYo +vYo +vYo +icd +vYo +vYo +vYo +vYo +kiO anp avU avT @@ -40710,7 +40710,7 @@ avT avT aBa anp -myr +weu aeI aeI aeI @@ -40720,66 +40720,66 @@ aeI aeI aeI aeI -oyn +oWQ apt -msz +hHC aOx -lNz +kzW aoH aoH aoH aoH -gdW +dfS aNo -wox +gwq aOB -xxH +paQ aoH aXH aXH asK -pIR +xLI aYF -oKq -tMd -cvN -cvN -cvN -pIR -vTp -vTp -vTp -vTp -vTp -koT -oUZ -oUZ -cYr -gZz -gZz -gZz -oUZ -oUZ -jiu +oVG +kQV +gPD +gPD +gPD +xLI +pPr +pPr +pPr +pPr +pPr +mja +crh +crh +dua +mPe +mPe +mPe +crh +crh +tAn ayf aFc aFc aFc ayf -fTx -fTx +dAW +dAW axX -vTp -koT -oUZ -xfq -vTp -vTp -vTp -vTp -vTp -vTp -rTe +pPr +mja +crh +jlT +pPr +pPr +pPr +pPr +pPr +pPr +gyB lzI aao aao @@ -40800,11 +40800,11 @@ aao aao aao aao -jcm -ufW -ufW -ufW -woT +kcI +xml +xml +xml +ovj uHQ tBf qjA @@ -40812,26 +40812,26 @@ bJS iaN uHQ tDk -eec +vAf gNH aao aao uHQ -txC -bIN -iRU -hJy +igS +dAJ +eQf +jxs qVi -qLT -nio -nio -nio -pAN -iSi -iSi -iSi -wcg -dQT +wDV +dQK +dQK +dQK +pbB +gTp +gTp +gTp +eIS +wcj aao aao aao @@ -40841,13 +40841,13 @@ aao aao aao aao -wcg -nio -rTp -rTp -uGX -kIp -kIp +eIS +dQK +lId +lId +gpO +jpS +jpS aao aao aao @@ -40864,24 +40864,24 @@ aab aao aao aao -dmr -ocL -ocL -ocL -hVw -ony +cGe +ioZ +ioZ +ioZ +vto +fNw aae -wgi -hjC -hjC -hjC -hjC -hjC -kIm -lza +vWp +aJk +aJk +aJk +aJk +aJk +bkQ +lqw abR aah -mfS +tWu aah aah acB @@ -40895,29 +40895,29 @@ aah aeF afg afg -knj +ubd aae -myr -urT -jwc -mKx -hMN -ukR -gEU -gEU -gEU -gEU -gEU -gEU -gEU -gEU -gEU -gEU -gEU -gEU -gEU -ukR -uMF +weu +bQF +vYo +kiO +fae +oUj +ncG +ncG +ncG +ncG +ncG +ncG +ncG +ncG +ncG +ncG +ncG +ncG +ncG +oUj +nkP avT avT avT @@ -40927,7 +40927,7 @@ avT avT avT anp -myr +weu aeI aeI aeI @@ -40937,71 +40937,71 @@ aeI aeI aeI aeI -oRe +psn aoH -mYx +qMi aOy -tPE -jnq -suW -qpl -mfe -nAe +bGH +moY +gFu +lGc +icU +lNX aNo -ctb +dUp aQM aPG -sfu +gxP aYG aXH asK -pIR -oKq -hkr -tMd -cvN -cvN -cvN -pIR -vTp -vTp -vTp -vTp -vTp -udc -cxC -klz -xfq -lZf -hdQ -kJj -koT -oUZ -kPF -fyw +xLI +oVG +sSM +kQV +gPD +gPD +gPD +xLI +pPr +pPr +pPr +pPr +pPr +mcp +cvr +swv +jlT +vOj +bYH +eTi +mja +crh +hcP +tjK aFc aFc -qlH +ndt azb -ceX -imZ +gjG +xss azb -vCH -oUZ -oUZ -oUZ -vCH -vCH -vCH -vCH -vCH -vCH -vCH -yim -cBV -cBV -cBV -hQU +eXy +crh +crh +crh +eXy +eXy +eXy +eXy +eXy +eXy +eXy +wTT +rpk +rpk +rpk +sFw keg keg keg @@ -41017,11 +41017,11 @@ aao aao aao aao -mbG -ufW -ufW -ufW -hQN +jTw +xml +xml +xml +hpn uHQ uHQ uHQ @@ -41034,20 +41034,20 @@ aao aao aao uHQ -skF -gfi -gRu -vWR +pnO +vqH +nlM +lbF uHQ vHw vHw -lwA -nio -nio -nio -dQT -eGW -eGW +isS +dQK +dQK +dQK +wcj +qRd +qRd aao aao aao @@ -41058,13 +41058,13 @@ aao aao aao aao -nio -nio -its -rTp -pAN -kIp -kIp +dQK +dQK +jCT +lId +pbB +jpS +jpS aao aao aao @@ -41081,24 +41081,24 @@ aab aao aao aao -lMg -lMg -ocL -viE -iSw -pvf +wXi +wXi +ioZ +nVa +prx +hff aae -wWM -jHn -jHn -hjC -jHn -hjC -hjC -lKF +oGL +xwt +xwt +aJk +xwt +aJk +aJk +nYO abR aah -mfS +tWu aah aah aah @@ -41111,30 +41111,30 @@ aah aah aeG afh -vQi -sQr -eKR -tAi +fPR +nih +nzw +kTy ahX -kHA -mKx -hMN -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -ukR -uMF +eIU +kiO +fae +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +oUj +nkP avT avT avT @@ -41144,7 +41144,7 @@ avT avT avT anp -myr +weu aeI aeI aeI @@ -41154,9 +41154,9 @@ aeI aeI aeI aeI -mKx +kiO aoH -wox +gwq aOx aNo aNo @@ -41167,58 +41167,58 @@ aUV aVK aOy aNo -sew +hSW aoH aYH aXH asK -cvN -nUP -hdE -hdI -hdI -hdI -hdI -cvN -fPh -vCH -vCH -vCH -vCH -vEw -cYr -sxT -cYr -vCH -vCH -vCH -oUZ -oUZ -iIG -fyw +gPD +ldP +iTT +eeG +eeG +eeG +eeG +gPD +oDV +eXy +eXy +eXy +eXy +ier +dua +mhu +dua +eXy +eXy +eXy +crh +crh +sCq +tjK aFc aFc -qlH +ndt azb -jMb -nLP -eji -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -oUZ -yim -hUo -hUo -hUo -pTr +hPs +wQW +xmA +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +crh +wTT +itR +itR +itR +vKi keg xIP bvF @@ -41228,17 +41228,17 @@ bvS bvS bvS keg -iaD +hGB aao aao aao aao aao vex -tqB -nXx -ufW -woT +jss +hAT +xml +ovj vex aao aao @@ -41248,23 +41248,23 @@ aao aao aao aao -roI +vdh aao uHQ -xbE -rPU -uDo -lRq +jlx +hcT +rwF +hwP uHQ vHw hLS -nWw -nio -kXa -nio -uGX -cpt -cpt +iZK +dQK +rEP +dQK +gpO +qme +qme aao aao aao @@ -41275,13 +41275,13 @@ aao aao aao aao -lwA -nio -nio -kXa -nio -uGX -kIp +isS +dQK +dQK +rEP +dQK +gpO +jpS aao aao aao @@ -41299,23 +41299,23 @@ aao aao aao aao -iSw -kxG -viE -iSw -rNI +prx +gBL +nVa +prx +cHi aae -ucD -jHn -jHn -hlG -jHn -jHn -hjC -cQk +brj +xwt +xwt +exE +xwt +xwt +aJk +ovd aaw aah -mfS +tWu acn aah aah @@ -41328,30 +41328,30 @@ aah aah aeH aah -vQi -fzt -sQr -giX +fPR +nLD +nih +bmX ahX -kHA -mKx -jGN -oOI -tam -tam -tam -tam -tam -tam -tam -tam -tam -tam -tam -tam -tam -oOI -fES +eIU +kiO +vAu +jvL +wdp +wdp +wdp +wdp +wdp +wdp +wdp +wdp +wdp +wdp +wdp +wdp +wdp +jvL +gtV avV avV avV @@ -41361,7 +41361,7 @@ avT avT avT anp -myr +weu aeI aeI aeI @@ -41371,9 +41371,9 @@ aeI aeI aeI aeI -mKx +kiO aoH -ntU +mqO aOx aOB aOB @@ -41381,61 +41381,61 @@ aRM aOB aOB aUW -qHn -jab -sew -gFJ +dmK +qFp +hSW +vyC aoH aYI aXH asK -cvN -cvN +gPD +gPD asK -hdI -cvN -cvN -kRk -cvN +eeG +gPD +gPD +aUg +gPD asK -oUZ -oUZ -oUZ +crh +crh +crh asK -oUZ -oUZ -sxT -cYr -gAX -gAX -fyw -oUZ -oUZ -snm -fyw +crh +crh +mhu +dua +fDR +fDR +tjK +crh +crh +ibl +tjK aFc aFc -qlH +ndt azb -jMb -cRG +hPs +oRA azb -gZz -gZz -gZz -gZz -gZz -gZz -gZz -gZz -gZz -gZz -gZz -yim -hUo -hUo -hUo -pTr +mPe +mPe +mPe +mPe +mPe +mPe +mPe +mPe +mPe +mPe +mPe +wTT +itR +itR +itR +vKi keg rdR rdR @@ -41445,17 +41445,17 @@ btw btw btw keg -iaD +hGB aao aao aao aao aao aao -jcm -ufW -ufW -hQN +kcI +xml +xml +hpn aao aao aao @@ -41468,19 +41468,19 @@ aao aao aao lBe -skF -lhd -sRq -gvN +pnO +wbJ +fXp +fns uHQ aao -nmD -nWw -nio -nio -nio -uGX -cpt +gBx +iZK +dQK +dQK +dQK +gpO +qme aao aao aao @@ -41492,12 +41492,12 @@ aao aao aao aao -kIp -lwA -nio -tPz -dQT -kIp +jpS +isS +dQK +fIM +wcj +jpS aao aao aao @@ -41515,24 +41515,24 @@ aab aao aao aao -iSw -iSw -kxG -viE -lOU +prx +prx +gBL +nVa +qkT aao aae -eLg -hjC -hjC -hjC -dIW -hjC -hjC -wZE +uoQ +aJk +aJk +aJk +sfN +aJk +aJk +ybv abS aah -mfS +tWu aco aah aah @@ -41546,28 +41546,28 @@ aah aah aah aah -oqO -sQr -vMI +wcd +nih +vHg aeI -kHA -mKx -ukR -myr -jwc -jwc -urT -urT -jwc -jwc -jwc -jwc -urT -urT -jwc -jwc -jwc -mKx +eIU +kiO +oUj +weu +vYo +vYo +bQF +bQF +vYo +vYo +vYo +vYo +bQF +bQF +vYo +vYo +vYo +kiO anp avT avT @@ -41578,7 +41578,7 @@ avT avT avT anp -myr +weu aeI aeI aeI @@ -41588,18 +41588,18 @@ aeI aeI aeI aeI -mKx +kiO aoH -wox +gwq aOz -saB -qRf -nNG -dKi -ova -cmH +bPa +nUq +xsU +nRZ +whk +uqH aQM -tAX +iQu aoH aoH aoH @@ -41609,11 +41609,11 @@ asK atw atU asK -dJy -dJy -dJy -dJy -dJy +mgG +mgG +mgG +mgG +mgG asK atw atw @@ -41621,21 +41621,21 @@ atw asK asK asK -qOh -pyV +vnv +dEk asK asK asK asK -gHR +tFs asK -xBd +mcO aFc -kNr -yjQ +rxC +gqa azb -jMb -cRG +hPs +oRA axX azB axX @@ -41645,34 +41645,34 @@ azB azB axX axX -iZy -ouU -ouU +vRh +lSx +lSx glB -mEE -hUo -hUo -hUo -iRz +sQc +itR +itR +itR +iRA rdR rdR -iRz +iRA btw btw btw hEC keg -iaD +hGB aao aao aao aao aao -ufW -jcm -ufW -ufW -hQN +xml +kcI +xml +xml +hpn aao aao aao @@ -41685,18 +41685,18 @@ aao aao aao uHQ -vFP -pHw -pem -qgl +kpC +uuq +vnD +bWr hiP -sVy -cpt -cpt -eGW -eGW -eGW -cpt +rzt +qme +qme +qRd +qRd +qRd +qme aao aao aao @@ -41707,14 +41707,14 @@ aao aao aao aao -nio -nio -uGX -kIp -eGW -eGW -kIp -kIp +dQK +dQK +gpO +jpS +qRd +qRd +jpS +jpS aao aao aao @@ -41732,24 +41732,24 @@ aab aao aao aao -iSw -aYn -ocL -ocL -dmr +prx +qUP +ioZ +ioZ +cGe aao aae -eLg -hjC -hjC -pKK -hjC -hjC -jHn -qZq +uoQ +aJk +aJk +uOz +aJk +aJk +xwt +wZD abT aah -mfS +tWu aah aah aah @@ -41763,28 +41763,28 @@ aah aah aah aah -vQi -fzt -myr +fPR +nLD +weu ahX -kHA -mKx -ukR -myr -jwc -jAF +eIU +kiO +oUj +weu +vYo +mmX aeI aeI -wSD -urT -urT -jAF +reQ +bQF +bQF +mmX aeI aeI -wSD -urT -urT -mKx +reQ +bQF +bQF +kiO anp avU avT @@ -41795,7 +41795,7 @@ avT avT aBa anp -myr +weu aeI aeI aeI @@ -41805,71 +41805,71 @@ aeI aeI aeI aeI -mKx +kiO aoH -wEW +sPr aOy -ioz +wJG aoH aoH aoH aoH -sdK +fWf aNo -wox +gwq aoH aXH aXH aYJ aZm -ilE +wcN bay aZu asK -cqB -owT -owT -cqB -owT +mrA +jxC +jxC +mrA +jxC asK aZu aZu aZu asK -vZL +caR beT baz aZu bbM -pfr +kUY asK aZw aZu bld asK -kNr -yjQ +rxC +gqa bme azb -jMb -eQo -xkb -imZ +hPs +fNp +fws +xss azb -xuV -iGn -tEt -bKc -hey +edS +gYe +sbG +oVB +phN axX -qlH +ndt bme aao glB -mEE -hUo -hUo -pTr +sQc +itR +itR +vKi keg bvv lmg @@ -41879,17 +41879,17 @@ btw btw btw keg -iaD -iaD +hGB +hGB aao aao aao aao -ufW -ufW -ufW -ufW -ufW +xml +xml +xml +xml +xml aao aao aao @@ -41902,17 +41902,17 @@ aao aao aao uHQ -mne -rPU -dlw -htq -vRE -cpt -iSi -cpt -iSi -cpt -tqI +phl +hcT +juJ +wEH +fqe +qme +gTp +qme +gTp +qme +nQH vHw aao aao @@ -41923,15 +41923,15 @@ aao aao aao aao -nio -dQT -eGW -kIp -kIp -kIp -kIp -kIp -kIp +dQK +wcj +qRd +jpS +jpS +jpS +jpS +jpS +jpS aao aao aao @@ -41949,24 +41949,24 @@ aab aao aao aao -iSw -kxG -ocL -ocL -ocL +prx +gBL +ioZ +ioZ +ioZ aao aae -qnA -dDq -rFw -jjm -lSp -rrB -oXv -tSG +nGj +nDL +lvQ +sVk +fhC +gsr +lXv +uid abR aah -mfS +tWu aah aah aah @@ -41979,16 +41979,16 @@ aah aah aah aah -sQr +nih afh -sQr -qzZ +nih +vUx aeI -kHA -mKx -ukR -myr -cYo +eIU +kiO +oUj +weu +tnC aeI aeI aeI @@ -42001,7 +42001,7 @@ aeI aeI aeI aeI -mKx +kiO anp avT avT @@ -42012,7 +42012,7 @@ avT avT avT anp -myr +weu aeI aeI aeI @@ -42022,18 +42022,18 @@ aeI aeI aeI aeI -mKx +kiO apt -msz +hHC aOy -ekY -foC -caZ -elI -pxm -gDq +oiC +kXn +cWI +imD +hXm +gxR aNo -wox +gwq aoH aXH aXH @@ -42042,51 +42042,51 @@ aXH asK baz aZu -udw +twE aZu aZu aZu aZu aZu -for -fgM -bwk -rIR +nXX +dRN +wzG +fVV atA -esk -mNt -vnV -mNt -mNt +iwP +iIz +tnG +iIz +iIz aZu asK aZu bkA hzy axL -qlH +ndt bme bme azb -jMb -nLP -nLP -cRG +hPs +wQW +wQW +oRA azb -jMb -nLP -nLP -nLP -cRG +hPs +wQW +wQW +wQW +oRA azb bme bme aao glB -xIq -xIq -xIq -xIq +mOA +mOA +mOA +mOA keg xIP xIP @@ -42096,16 +42096,16 @@ bvS bvS bvS keg -iaD -xaS +hGB +xCK aao aao -tmz -slp -ufW -ufW -ufW -ufW +xMf +oSb +xml +xml +xml +xml aao aao aao @@ -42119,17 +42119,17 @@ aao aao aao uHQ -lSN -sEu -dPl -lLD -pAP -tst -pOz -uGX -eGW -cpt -cpt +nLM +vzC +ucW +wyV +tYQ +kAJ +xNX +gpO +qRd +qme +qme vHw aao aao @@ -42138,17 +42138,17 @@ aao aao aao aao -kIp -kIp -eGW -kIp -kIp -kIp -kIp -kIp -kIp -kIp -kIp +jpS +jpS +qRd +jpS +jpS +jpS +jpS +jpS +jpS +jpS +jpS aao aao aao @@ -42166,11 +42166,11 @@ aab aao aao aao -iSw -qva -ocL -ocL -ocL +prx +hRV +ioZ +ioZ +ioZ aao aae aae @@ -42183,7 +42183,7 @@ aae aae aae aah -kEw +oRC aah aah aah @@ -42197,15 +42197,15 @@ aah aah aah aah -vQi +fPR ahh -giX +bmX aeI -kHA -mKx -ukR -myr -cYo +eIU +kiO +oUj +weu +tnC aeI aeI aeI @@ -42218,7 +42218,7 @@ aeI aeI aeI aeI -mKx +kiO anp qaR avT @@ -42229,7 +42229,7 @@ azo aAq aAZ anp -myr +weu aeI aeI aeI @@ -42239,9 +42239,9 @@ aeI aeI aeI aeI -mKx +kiO apt -msz +hHC aOy aNo aNo @@ -42250,7 +42250,7 @@ aNo aNo aNo aOC -wox +gwq aoH aXH aXH @@ -42271,39 +42271,39 @@ aZO aZu atA bkn -mNt +iIz bfB bgD -unt +jPv bbe -iEv +mgu bbe bbe aLo axL -qlH +ndt bme bme azb -jMb -nLP -nLP -nLP -eji -nLP -nLP -fRP -wmD -fiN +hPs +wQW +wQW +wQW +xmA +wQW +wQW +coA +fxG +fzL axX bme -pAA +wEO aao glB -uyu -gbe -gbe -mff +rmB +udm +udm +leW keg keg keg @@ -42313,17 +42313,17 @@ keg keg keg keg -eYI -ufW -ufW -ufW -ufW -ufW -ufW -ufW -ufW -ufW -ufW +cEE +xml +xml +xml +xml +xml +xml +xml +xml +xml +xml aao aao aao @@ -42336,36 +42336,36 @@ aao aao aao uHQ -rFy -tIL -xGE -jxx -sFf -cpt -pSv -cpt -hXc -cpt -cpt -sEK -cpt +vMC +oxi +qXD +cFW +sHl +qme +epE +qme +xce +qme +qme +gFm +qme aao aao aao aao aao -sTE -wDV -kIp -kIp -kIp -ddX -kIp -kIp -kIp -kIp -kIp -kIp +xCH +pHn +jpS +jpS +jpS +kuW +jpS +jpS +jpS +jpS +jpS +jpS aao aao aao @@ -42383,11 +42383,11 @@ aab aao aao aao -lOU -iSw -qva -ocL -ocL +qkT +prx +hRV +ioZ +ioZ aao aao aao @@ -42405,7 +42405,7 @@ aae aae aae aae -hyz +aUR aae aae aaq @@ -42416,14 +42416,14 @@ aae aae aae aae -gJs +mPb aeI -kHA -oyn -ukR -giX -jwc -jCG +eIU +oWQ +oUj +bmX +vYo +bYm aeI aeI aeI @@ -42435,7 +42435,7 @@ aeI aeI aeI aeI -mKx +kiO anp avT avT @@ -42446,7 +42446,7 @@ avT avT avT anp -myr +weu aeI aeI aeI @@ -42456,9 +42456,9 @@ aeI aeI aeI aeI -foj +wHb apu -wox +gwq aOy aPC aNo @@ -42467,7 +42467,7 @@ aNo aTQ aRM aNo -nhy +cwG aoH aXH aXH @@ -42482,66 +42482,66 @@ aZu bdK aZM aZu -vRz -oYy -mrw -hkt +gao +aLK +xlG +udw asK aZu -mNt -vnV -mNt -jdl -pGZ +iIz +tnG +iIz +qIu +epo atA -mnz +soi aZO blg axL -qlH +ndt bme bme azb -jMb -nLP -nLP -cRG +hPs +wQW +wQW +oRA azb -jMb -nLP -fRP -wmD -wMH +hPs +wQW +coA +fxG +bLh azb -pAA -iZy -aao -iaD -wAx -iaD -nrl -iaD -eJJ -ufW -ufW -ufW -ufW -ufW -ufW -ufW -ufW -ufW -ufW -qsp -qsp -qsp -ufW -ufW -ufW -ufW -ufW -ufW -ufW +wEO +vRh +aao +hGB +gHl +hGB +dCG +hGB +mBv +xml +xml +xml +xml +xml +xml +xml +xml +xml +xml +kBw +kBw +kBw +xml +xml +xml +xml +xml +xml +xml aao aao aao @@ -42554,34 +42554,34 @@ aao rIl rIl rIl -uDx -vFX -vFX +mmn +rol +rol wSj -cpt -cpt -fGZ -iSi -iSi -fYw -cpt -cpt -cpt +qme +qme +gZM +gTp +gTp +qTw +qme +qme +qme aao aao aao -nuK -mRk -njl -kIp -kIp -cqs +uNA +kiF +lRo +jpS +jpS +wBp vHw -mZX -kIp -kIp -iSi -ykT +sIZ +jpS +jpS +gTp +pxj aao aao aao @@ -42600,11 +42600,11 @@ aab aao aao aao -tOy -iSw -iSw -kxG -ocL +wfw +prx +prx +gBL +ioZ aao aao aao @@ -42635,12 +42635,12 @@ aao aao aeI aeI -kHA -mKx -dCI -giX -jwc -cYo +eIU +kiO +vpN +bmX +vYo +tnC aeI aeI aeI @@ -42652,18 +42652,18 @@ aeI aeI aeI aeI -mKx +kiO anp anp alX -nUD -xwt +uQG +wvu alX anp anp anp anp -myr +weu aeI aeI ahi @@ -42673,23 +42673,23 @@ aeI aeI aeI aeI -msh +vKu apu -mYx +qMi aOy -rQb -rXq -rQb -rXq -haa -cwR +lkz +sFf +lkz +sFf +siv +jeo aNo -wox +gwq aoH aXH aXH asK -bOE +dxe aZu aZu aZu @@ -42703,62 +42703,62 @@ aZu bfB bbe bbe -iEv +mgu bbe bhE bbR biK -tWj -snb +cRk +vmX atA -mnz +soi aZu aZu axL -qlH +ndt bme bme azb -tHo -fcI -fcI -lCg +tTG +iVg +iVg +hyB azb -tHo -nLP -fcI -nLP -dwC +tTG +wQW +iVg +wQW +bZi axX -iZy -iZy -aao -iaD -iaD -iaD -iaD -iaD -iaD -eQJ -ufW -ufW -qsp -ufW -ufW -ufW -ufW -ufW -xpy -iaD -iaD -iaD -eJJ -ufW -ufW -ufW -ufW -ufW -ufW +vRh +vRh +aao +hGB +hGB +hGB +hGB +hGB +hGB +mXR +xml +xml +kBw +xml +xml +xml +xml +xml +oQC +hGB +hGB +hGB +mBv +xml +xml +xml +xml +xml +xml aao aao aao @@ -42769,36 +42769,36 @@ aao aao aao rIl -ntt -cNw -rnv -gNR -gNR +oel +rqW +mjS +hJU +hJU rIl aao -cpt -nmT -nio -nio -pAN -cpt -hay -cpt -aao -aao -aao -std -tox -uwJ -uGX -kIp -kIp -rur -kIp -kIp -nWw -kXa -nio +qme +dtw +dQK +dQK +pbB +qme +mIf +qme +aao +aao +aao +lnE +qTF +rJb +gpO +jpS +jpS +eMS +jpS +jpS +iZK +rEP +dQK aao aao aao @@ -42817,11 +42817,11 @@ aab aao aao aao -iSw -iSw -iSw -kxG -ocL +prx +prx +prx +gBL +ioZ aao aao aao @@ -42852,12 +42852,12 @@ aao aao aeI aeI -kHA -mKx -dCI -giX -jwc -cYo +eIU +kiO +vpN +bmX +vYo +tnC aeI aeI aeI @@ -42869,18 +42869,18 @@ aeI aeI aeI aeI -mKx -ukR -ukR +kiO +oUj +oUj alu -fYs -qHd +eLm +nrN alu -ukR -ukR -ukR -ukR -myr +oUj +oUj +oUj +oUj +weu aeI aeI aeI @@ -42890,23 +42890,23 @@ aeI aeI aeI aeI -mKx +kiO apt -msz +hHC aOy -sme +oeU aoH aoH aoH aoH -rQb +lkz aNo -drx +ffw aoH aXH aXH asK -bOE +dxe aZM baB aZO @@ -42916,24 +42916,24 @@ aZO bdL aZu aZu -vRz -jRr -fzZ -cPR +gao +mjt +oTI +ult asK asK asK -qOh -pyV +vnv +dEk asK asK asK -mfp +rhW aZu blh asK -kNr -nzs +rxC +uKN bme axX azB @@ -42942,40 +42942,40 @@ azB axX axX axX -ixt +ipl ayr -ixt +ipl axX axX -iZy -opj -aao -aao -aao -iaD -iaD -iNL -iaD -eQJ -ufW -oQH -iaD -eJJ -ufW -ufW -qsp -xpy -iaD -iaD -iaD -iaD -iaD -bQB -ufW -ufW -ufW -ufW -ufW +vRh +oGb +aao +aao +aao +hGB +hGB +jqn +hGB +mXR +xml +rxg +hGB +mBv +xml +xml +kBw +oQC +hGB +hGB +hGB +hGB +hGB +mSc +xml +xml +xml +xml +xml aao aao aao @@ -42986,35 +42986,35 @@ aao aao aao rIl -bSe -hSz -qRy -dlY -lGP +hhg +eVK +scK +eWe +bSs rIl aao aao -nWw -cBr -bRe -cMH -deV -cpt -cpt +iZK +mTZ +xYd +dAq +gDk +qme +qme aao aao aao aao -dWJ -idq -oZk -gzi -kIp -kIp -kIp -kIp -nWw -nio +ltQ +mTg +tDw +fcR +jpS +jpS +jpS +jpS +iZK +dQK aao aao aao @@ -43034,12 +43034,12 @@ aab aao aao aao -iSw -iSw -aYn -ocL -ocL -ocL +prx +prx +qUP +ioZ +ioZ +ioZ aao aao aao @@ -43069,56 +43069,56 @@ aao aeI aeI aeI -kHA -mKx -ukR -myr -jwc -jAF +eIU +kiO +oUj +weu +vYo +mmX aeI aeI aeI -rMt -gEU -gEU -gEU -gEU -gEU -gEU -gEU -ukR -ukR -ukR +mJO +ncG +ncG +ncG +ncG +ncG +ncG +ncG +oUj +oUj +oUj alu -fYs -wGp +eLm +wPU alu -ukR -ukR -ukR -ukR -ukR -gEU -gEU -gEU -gEU -gEU -gEU -meV +oUj +oUj +oUj +oUj +oUj +ncG +ncG +ncG +ncG +ncG +ncG +rPn aeI aeI -oyn +oWQ apt -msz +hHC aOy -eXb -rfw -eXb -tST -eqc -cOx +roo +qXo +roo +wcV +tZi +tQf aNo -tUB +hmw aoH aXH aYc @@ -43146,51 +43146,51 @@ aZu aZu asK atA -gHR +tFs atA asK axX axX axX axX -smV -wUI -smV +bSC +vgR +bSC axX -dAb -tNx -nLP -mIO -cRG +qfG +jXE +wQW +mCV +oRA azb -iZy -iZy -iZy -iZy +vRh +vRh +vRh +vRh aao aao aao -iaD -iaD -iaD -eJJ -qsp -xpy -iaD -iNL -eJJ -xpy -iaD -iaD -iaD -iaD -iaD -wAx -iaD -eQJ -ufW -ufW -ufW +hGB +hGB +hGB +mBv +kBw +oQC +hGB +jqn +mBv +oQC +hGB +hGB +hGB +hGB +hGB +gHl +hGB +mXR +xml +xml +xml aao aao aao @@ -43203,34 +43203,34 @@ aao aao aao hHb -rmV -pFQ -fsy -gNR -gNR +oGS +oAV +eCK +hJU +hJU rIl aao aao -cpt -lwA -npL -nio -nio -pAN -iSi +qme +isS +kHy +dQK +dQK +pbB +gTp aao aao aao -dzR -lJm -hMT -cIH -nUz -kIp -iSi -kIp -kIp -kIp +tkY +hCH +kEp +liX +jad +jpS +gTp +jpS +jpS +jpS aao aao aao @@ -43252,11 +43252,11 @@ aao aao aao aao -dmr -ocL -ocL -ocL -ocL +cGe +ioZ +ioZ +ioZ +ioZ aao aao aao @@ -43285,17 +43285,17 @@ aao aao aeI aeI -jjU -jwc -mKx -dCI -myr -cYo +cwl +vYo +kiO +vpN +weu +tnC aeI aeI aeI aeI -mKx +kiO alu alu alu @@ -43307,8 +43307,8 @@ alu alu alu alu -nUD -xwt +uQG +wvu alu alu alu @@ -43321,12 +43321,12 @@ alu alu alu alu -onr +hDl aCM aBR -paH +bGf apt -msz +hHC aOy aOB aNo @@ -43335,7 +43335,7 @@ aOy aNo aOB aOB -wox +gwq aoH cec aXH @@ -43350,12 +43350,12 @@ bdi aZu aZu aZu -vRz -kId -ntM -ntM -mrw -hkt +gao +eze +wAe +wAe +xlG +udw aZu baz biL @@ -43366,47 +43366,47 @@ aZu aZu beA axX -xXI -xXI -xXI -sCg -jZF -pYk -vqt +sxq +sxq +sxq +ndo +kOS +qbf +qzp axX -dAb -tNx -nLP -fRP -cRG +qfG +jXE +wQW +coA +oRA azb -opj -iZy -iZy -iZy -iZy -aao -aao -iaD -iaD -iaD -fof -iaD -iaD -iaD -iaD -iaD -wAx -iaD -iaD -xaS -eYI -nsF -iaD -iaD -eQJ -ufW -ufW +oGb +vRh +vRh +vRh +vRh +aao +aao +hGB +hGB +hGB +goa +hGB +hGB +hGB +hGB +hGB +gHl +hGB +hGB +xCK +cEE +ies +hGB +hGB +mXR +xml +xml aao aao aao @@ -43420,33 +43420,33 @@ aao aao aao rIl -bSe -uER -qRy -dlY -lGP +hhg +kmM +scK +eWe +bSs rIl aao aao -cpt -niE -wgO -nio -nuK -nio -nio +qme +clV +jqs +dQK +uNA +dQK +dQK aao aao aao aao -wQm -nuK -uGX -cpt -nWw -nio -uGX -kIp +gEJ +uNA +gpO +qme +iZK +dQK +gpO +jpS aao aao aao @@ -43469,12 +43469,12 @@ aao aao aao aao -ocL -ocL -ocL -ocL -hVw -iSw +ioZ +ioZ +ioZ +ioZ +vto +prx aao aao aao @@ -43502,48 +43502,48 @@ aao aao aeI aeI -kHA -jwc -mKx -dCI -myr -lVM +eIU +vYo +kiO +vpN +weu +vRc aeI aeI aeI aeI -mKx +kiO alu -oZC -pAi -eeX -nTu -nVp -pAi -nqS +kat +ccX +oDe +cVz +nFo +ccX +sjB alu -mEy -sbG -btp -eTC -bOs -hfo +eIp +jFF +kFp +qxx +wGe +rsg alu -xeK -hJV +gUq +qYh amj -cVz -dWX -dqP -icb -cgF +irU +fTW +npD +leQ +rEl alu -wRD +oki aBR aBR -paH +bGf aoH -wox +gwq aOA aPG aQM @@ -43552,15 +43552,15 @@ aSI aOB aNo aNo -wox +gwq aoH hmJ aXH asK asK atA -owT -pyV +jxC +dEk auk asK asK @@ -43582,48 +43582,48 @@ bfz aZO aZu bli -tKB -nBM -lNg -qTt -qTt -vki -fRP -cRG +tPy +hUf +aYQ +dhd +dhd +kRL +coA +oRA axX ayr ayr -jWr -fRP -cRG +nkm +coA +oRA axX axX axX -iZy -iZy -iZy -aao -aao -aao -iaD -iaD -iaD -iaD -iaD -iaD -iaD -iaD -iaD -iaD -xaS -ufW -ufW -ufW -eYI -eYI -ufW -ufW -ufW +vRh +vRh +vRh +aao +aao +aao +hGB +hGB +hGB +hGB +hGB +hGB +hGB +hGB +hGB +hGB +xCK +xml +xml +xml +cEE +cEE +xml +xml +xml aao aao aao @@ -43637,33 +43637,33 @@ aao aao aao rIl -cBJ -fxE -fxE +qJy +jeM +jeM rIl rIl rIl aao aao -cpt -cpt -eFo -lwA -nio -uwJ -nio +qme +qme +lMd +isS +dQK +rJb +dQK aao aao aao -tXr -hgs -nuK -mlW -cpt -nWw -kXa -pAN -kIp +qYd +dSa +uNA +kSg +qme +iZK +rEP +pbB +jpS aao aao aao @@ -43686,12 +43686,12 @@ aao aao aao aao -ocL -ocL -ocL -viE -iSw -iSw +ioZ +ioZ +ioZ +nVa +prx +prx aao aao aao @@ -43719,48 +43719,48 @@ aao aao aeI aeI -kHA -jwc -oyn -dCI -myr -jwc -jCG +eIU +vYo +oWQ +vpN +weu +vYo +bYm aeI aeI aeI -mKx +kiO alu -ueB -hJc -hJc -iAA -hJc -hOK -hOK -qUk -gcL -ikI -fYs -qHd -fYs -lpi +tXl +vZC +vZC +jiA +vZC +wTu +wTu +wpJ +qgs +qdS +eLm +nrN +eLm +vdk alu -xeK -xeK +gUq +gUq amj -xPj -ikI -ikI -rWu -icb +eOs +qdS +qdS +wVj +leQ alu -wRD +oki aBR aBR -paH +bGf apt -msz +hHC aOB aOB aOB @@ -43769,7 +43769,7 @@ aOy aOB aOB aNo -wox +gwq aoH odw aXH @@ -43779,17 +43779,17 @@ aZO aZO aZO baz -vcM +mYU asK bee aZu baz -vRz -ntM -dpt -dpt -dpt -hkt +gao +wAe +mFC +mFC +mFC +udw aZu baz aZu @@ -43799,49 +43799,49 @@ bfB bbe bbe blj -wTv -cqJ -vYD -uxS -xDE -xDE -ndR -nUM -pii -wbB -evZ -fRP -mMv -rPP -lqX -dMu +gFa +oiE +ghe +taO +soN +soN +wXI +rqV +iXZ +wgi +jAU +coA +atx +qJa +iYj +gEp axX -iZy -iZy -iZy +vRh +vRh +vRh aao aao aao aao -iNL -iaD -iaD +jqn +hGB +hGB aao aao -rJv -dQc -dQc -dQc -nls -jOW -nls -nls -nls -jOW -jOW -jOW -nls -nls +jLG +rWW +rWW +rWW +wwD +kST +wwD +wwD +wwD +kST +kST +kST +wwD +wwD aao aao aao @@ -43856,32 +43856,32 @@ aao rIl bRd rQs -rMq +lrR rIl aao aao aao -nio -uGX -kHa -kHa -cpt -nio -uwJ +dQK +gpO +kew +kew +qme +dQK +rJb aao aao aao aao aao aao -uNq -iQb -cpt -wcg -nio -fMx -uGX -kIp +ltg +bSZ +qme +eIS +dQK +dsK +gpO +jpS aao aao aao @@ -43905,11 +43905,11 @@ aao aao aao aao -ocL -viE -iSw -tOy -viJ +ioZ +nVa +prx +wfw +iUb aao aao aao @@ -43936,61 +43936,61 @@ agu aeI aeI aeI -kHA -jwc -oyn -dCI -ukR -gEU -gEU -meV +eIU +vYo +oWQ +vpN +oUj +ncG +ncG +rPn aeI aeI -oyn +oWQ alu -faa -faa -rUI -nKY -faa -faa -faa +iGd +iGd +kQF +ePB +iGd +iGd +iGd amj -rjB -kwi -bNF -xaK -fYs -iiX -rhd -upi -upi +cnt +oNV +pIV +jkL +eLm +uOB +ctw +gWY +gWY amj -lGM -ikI -xOI -vFf -rTk +mtm +qdS +hqF +wWv +wau alu -wRD +oki aBR aBR -paH +bGf apt aNo aNo -wox -bTK -mrE -coJ -wox -mrE -wox -oft +gwq +spn +xBE +qZI +gwq +xBE +gwq +imU aoH aXH aXH -fFC +nUN aZu aZO aZO @@ -44000,7 +44000,7 @@ bcz asK bdM aZu -ivw +pFb aZu aZu aZu @@ -44017,50 +44017,50 @@ aZu aZu aZr axX -iTM +wSZ ayr ayr ayr ayr -bsV -uNz +ggy +sMi ayr -fRP -fRP -fRP -hbe -wmR -fRP -cRG +coA +coA +coA +rAg +xsT +coA +oRA axX -iZy -iZy -iZy +vRh +vRh +vRh aao aao aao aao -iaD +hGB aao aao aao aao -nls -nls -nls -nls -vjp +wwD +wwD +wwD +wwD +qHy aao aao aao aao aao -oaz -oaz -oeW -nls -oSG -oaz +qAH +qAH +kHU +wwD +jdl +qAH aao aao aao @@ -44077,14 +44077,14 @@ rIl rIl aao aao -nuK -nio -twf +uNA +dQK +xTN jUY jUY jUY -xMA -eGW +tCb +qRd aao aao aao @@ -44093,13 +44093,13 @@ aao aao aao aao -wcg -nio -kXa -nio -uGX -kIp -kIp +eIS +dQK +rEP +dQK +gpO +jpS +jpS aao aao aao @@ -44122,11 +44122,11 @@ aao aao aao aao -ocL -ocL -riC -iSw -iSw +ioZ +ioZ +eqW +prx +prx aao aao aao @@ -44153,55 +44153,55 @@ aeI aeI aeI aeI -wSD -jwc -mKx -dCI -dCI -dCI -ukR -myr +reQ +vYo +kiO +vpN +vpN +vpN +oUj +weu aeI aeI -kej +jpf alu -yfp -kdT -rQo -ibi -cln -wsb -cwt -cjZ -szH -ikI -fYs -fYs -fYs -dwX +qmn +wmk +ijo +pLP +qXT +gDX +tvn +uts +tcE +qdS +eLm +eLm +eLm +nCE alu -xeK -xeK +gUq +gUq amj -lzN -hpn -fYs -taD -icb +dPi +qcf +eLm +qxK +leQ alu -wRD +oki aBR aBR -paH +bGf aoH -nid -nid +uUA +uUA aoH -xTt +liI aOC -iUZ +qEZ aNo -xIV +vTw aOB aoH aoH @@ -44210,8 +44210,8 @@ aXH asK asK atA -owT -pyV +jxC +dEk auk asK asK @@ -44234,25 +44234,25 @@ aZO aZu aZr axX -nrv -poi -wKE -dRK -mub -nRd -ewH -wKQ -see -mWs -tPS -gFN -ooJ -fRP -egk +lwO +lAy +biO +fgB +nmh +cZK +vlL +sZr +joH +oQJ +fnQ +gKS +hcg +coA +gID azb -tDa -iZy -iZy +gvj +vRh +vRh aao aao aao @@ -44260,25 +44260,25 @@ aao aao aao aao -nls -ieV -nls -nls -nls -nls +wwD +gfF +wwD +wwD +wwD +wwD aao -tbH +uNJ aao aao aao aao -fTw -oaz -oeW -nls -vjp -oaz -oaz +dnJ +qAH +kHU +wwD +qHy +qAH +qAH aao aao aao @@ -44294,9 +44294,9 @@ aao aao aao aao -nio -kXa -mjo +dQK +rEP +bqo jUY jUY tuN @@ -44310,13 +44310,13 @@ aao aao aao aao -nio -nio -nio -nio -uGX -kIp -kIp +dQK +dQK +dQK +dQK +gpO +jpS +jpS aao aao aao @@ -44340,11 +44340,11 @@ aao aao aao aao -ocL -viE -iSw -lOU -iSw +ioZ +nVa +prx +qkT +prx aao aao aao @@ -44360,9 +44360,9 @@ aao aao aao acp -xhO -idd -xhO +luQ +eXS +luQ acp aao aao @@ -44371,57 +44371,57 @@ aeI ahi aeI aeI -kHA -ikC -fzS -jDa -jDa -ukR -giX -jCG +eIU +cSr +nhY +nnJ +nnJ +oUj +bmX +bYm aeI -oyn +oWQ alu -qav -pQI -cVa -pQI -qav -rqm -ihn +mrb +niD +uup +niD +mrb +khs +utu alu -pVe -mwx -ogN -ogN -ogN -fXw +inO +nKB +nsF +nsF +nsF +wPQ alu -ehM -xeK +pjo +gUq amj -sOg -uQa -jpo -lHb -evM +nli +gAO +fmc +jQg +ptW alu -wRD +oki aBR aBR -paH -dnS +bGf +muF aNq aOC apQ -jZK +jAg aNo -woE +eaI aNo -wDI +boX aVM aoH -rxq +bRO aXH aXH asK @@ -44440,7 +44440,7 @@ aZu aZu aZu asK -lLQ +kFf aZu aZO biN @@ -44460,41 +44460,41 @@ ayr ayr ayr ayr -cpI -vjd -nLP -jXu -nLP -urP +pah +uei +wQW +oyJ +wQW +lar azb -tDa -iZy -iZy +gvj +vRh +vRh aao aao aao -nls -nls -nls -nls -xnb -nls -ieV -nls -nls -nls +wwD +wwD +wwD +wwD +vdo +wwD +gfF +wwD +wwD +wwD aao aao aao aao aao aao -cYc -rJv -nls -oSG -oaz -oaz +ffK +jLG +wwD +jdl +qAH +qAH aao aao aao @@ -44511,9 +44511,9 @@ aao aao aao aao -kXa -tLu -cpy +rEP +owQ +ddT jUY jUY jUY @@ -44527,13 +44527,13 @@ aao vHw aao aao -nio -kXa -nio -nio -uGX -kIp -kIp +dQK +rEP +dQK +dQK +gpO +jpS +jpS aao aao aao @@ -44557,11 +44557,11 @@ aao aao aao aao -ocL -ocL -dmr -riC -iSw +ioZ +ioZ +cGe +eqW +prx aao aao aao @@ -44575,11 +44575,11 @@ aao aao aao aao -pUA +qOc acp -xhO -xhO -xhO +luQ +luQ +luQ acp aao aeI @@ -44588,27 +44588,27 @@ aeI aeI aeI aeI -wSD -urT -urT -urT -jwc -mKx -myr -cYo +reQ +bQF +bQF +bQF +vYo +kiO +weu +tnC aeI -pzx +jEZ alu alu -qIZ +xOk amj -qIZ +xOk alu alu alu alu -ffH -iiX +gdZ +uOB alu alu alu @@ -44619,26 +44619,26 @@ alu alu alu alu -uaN +xoo alu alu alu -wRD +oki aBR aBR -paH -dnS +bGf +muF aNq aNo apQ -riF +jSK aNo -dyN +bNa aNo -xFX +nWk aOB aoH -vDM +upX aXH aXH asK @@ -44648,7 +44648,7 @@ aZO aZO baz aZu -eKw +vYg aZO bbO beA @@ -44668,37 +44668,37 @@ aZu aZu bdN axX -loE -uJV -vTS -vTS -qQz -vTS -kiO -lrS +oIv +pHd +tQY +tQY +iXT +tQY +vyu +iJK ayr -cpI -nLP -xml -nLP -nLP -uZc +pah +wQW +vMl +wQW +wQW +fOg axX -tDa -iZy -iZy +gvj +vRh +vRh aao aao aao -nls -nls -nls -nls -nls -nls -nls -sMv -nls +wwD +wwD +wwD +wwD +wwD +wwD +wwD +gvt +wwD aao aao aao @@ -44706,12 +44706,12 @@ aao aao aao aao -rJv -nls -nls -oSG -oaz -cYc +jLG +wwD +wwD +jdl +qAH +ffK aao aao aao @@ -44728,31 +44728,31 @@ aao aao aao aao -nio -jGo -jOv +dQK +vGo +nQY jUY -kIp -kIp -kIp -cpt -cpt -cpt -cpt -cpt +jpS +jpS +jpS +qme +qme +qme +qme +qme aao vHw vHw -cpt -eGW -eGW -eGW -eGW -cpt -cpt -cpt -cpt -cpt +qme +qRd +qRd +qRd +qRd +qme +qme +qme +qme +qme aao aao aao @@ -44775,11 +44775,11 @@ aao aao aao aao -ocL -ocL -ocL -dmr -dmr +ioZ +ioZ +ioZ +cGe +cGe aao aao aao @@ -44790,69 +44790,69 @@ aao aao aao aao -gEW -rxD -pUA +sfo +mTF +qOc acp -faL +yjS adz adz acp aao -gEU -gEU -gEU -gEU -gEU -meV +ncG +ncG +ncG +ncG +ncG +rPn aeI aeI aeI aeI -kHA -mKx -giX -jwc -tLJ -vCr +eIU +kiO +bmX +vYo +koa +mfT alu -wXC -fYs -fYs -fYs -rPD +gqc +eLm +eLm +eLm +rES amj -pAb -btp -knw -brt +kQt +kFp +mWO +suM amj -cJg -jlX -btp -jbO +jze +lNI +kFp +vhX amj -cJg -kjy -kjy -kjy -eTC -tNY -iiA +jze +htF +htF +htF +qxx +gjr +qcT alu -wRD +oki aBR aBR -paH +bGf aoH -nid -nid +uUA +uUA aoH -gNN +gte aNo -vkh +mmp aNo -pKr +vRw aNo aoH aXd @@ -44869,11 +44869,11 @@ atA aZO beg bbe -yca +gJR baC bfZ bbe -yca +gJR bbe baC bit @@ -44885,51 +44885,51 @@ aZu aZu bll axX -nUb -cSI -fRP -fRP -eHE -uxG -nLP -tLG +fCg +jMA +coA +coA +vff +kTO +wQW +dyx ayr -cpI -hQJ -oyu -mNn -wDo -rlH +pah +gyI +rsU +mHa +wCK +xhK axX -tDa -tDa +gvj +gvj aao aao aao -giB -giB -giB -giB -giB -giB -giB -giB -giB +inK +inK +inK +inK +inK +inK +inK +inK +inK aao aao aao aao aao aao -fTw -oaz -oeW -nls -nls -oSG -oaz -oaz -oaz +dnJ +qAH +kHU +wwD +wwD +jdl +qAH +qAH +qAH aao aao aao @@ -44946,31 +44946,31 @@ aao aao aao aao -nio -uGX +dQK +gpO jkO -kIp -iSi -oxB -kIp -cpt -cpt -cpt -iSi -efn -nmD -cpt -cpt -cpt -cpt -cpt -bTI -cja -cpt -cpt -cpt -cKt -cpt +jpS +gTp +vhM +jpS +qme +qme +qme +gTp +erv +gBx +qme +qme +qme +qme +qme +sFD +jdy +qme +qme +qme +tVY +qme aao aao aao @@ -44992,11 +44992,11 @@ aao aao aao aao -ocL -ocL -ocL -ocL -ocL +ioZ +ioZ +ioZ +ioZ +ioZ aao aao aao @@ -45006,10 +45006,10 @@ aao aao aao aao -rxD -tTw -lmq -pUA +mTF +ceH +rck +qOc acp adj adA @@ -45021,56 +45021,56 @@ acp agy agy acp -myr +weu aeI aeI aeI aeI -kHA -mKx -giX -jwc -jwc -oyn +eIU +kiO +bmX +vYo +vYo +oWQ alD -wXC -fYs -ikI -ikI -jRJ +gqc +eLm +qdS +qdS +vqz amj -tMM -fYs -sih -kwi -kGM -bNF -cuA -iCF -kwi -fMI -bNF -iCF -bNF -uoD -fdz -rAF -iJb +tdi +eLm +vJw +oNV +xna +pIV +gfJ +hLa +oNV +irv +pIV +hLa +pIV +gvu +fFm +kTq +dpK alu -wRD +oki aBR aBR -paH +bGf apt aNq aOB -cqM -yea -yea -oKX -yea -yea -gKm +isQ +eoh +eoh +kDk +eoh +eoh +shw aoH aXH aXH @@ -45086,11 +45086,11 @@ asK aZu beh aZO -owT +jxC aZO bbO aZu -owT +jxC aZu aZO biq @@ -45102,16 +45102,16 @@ aZu aZu blm axX -dcO -pNi -fcI -sGo -fRP -pvP -foG -jMC +xWG +rRk +iVg +viD +coA +lxi +jQk +nMa ayr -ubs +gLe ayZ ayZ ayZ @@ -45126,7 +45126,7 @@ axX axX axX axX -wwT +pFl axX axX axX @@ -45139,14 +45139,14 @@ aao aao aao aao -rJv -nls -nls -nls -nls -xLf -oaz -oaz +jLG +wwD +wwD +wwD +wwD +poY +qAH +qAH aao aao aao @@ -45163,31 +45163,31 @@ aao aao aao vHw -xMA -utI -kIp -wcg -nio -nio -uGX -ltZ -utI -nWw -kXa -nio -uGX -cpt -iSi -kIp -kIp -cpt -fZa -cpt -cpt -cpt -cpt -vCE -jYG +tCb +iZp +jpS +eIS +dQK +dQK +gpO +oUK +iZp +iZK +rEP +dQK +gpO +qme +gTp +jpS +jpS +qme +pIn +qme +qme +qme +qme +lfP +kmB aao aao aao @@ -45209,12 +45209,12 @@ aao aao aao aao -ocL -lMg -ocL -ocL -ocL -ocL +ioZ +wXi +ioZ +ioZ +ioZ +ioZ aao aao aao @@ -45222,64 +45222,64 @@ aao aao aao aao -qXh -lmq -ibm -lmq -pUA +fyD +rck +nEr +rck +qOc acp adk adk adk ael -rpW +bqU afi -dVa +ckf adk adS acp -myr +weu aeI aeI aeI aeI -kHA -mKx -myr -jwc -jwc -oyn +eIU +kiO +weu +vYo +vYo +oWQ alD -wXC -fYs -ikI -grK -jRJ +gqc +eLm +qdS +lui +vqz amj -fgn -fYs -qHd -ikI -nUD -ikI -ikI -rVm -eaf +uZm +eLm +nrN +qdS +uQG +qdS +qdS +qWe +weg amj -osI -iEJ -kDB -fqv -mBj -oSU -wWj +okQ +gmP +wut +sQI +xGL +dGr +xaG alu -wRD +oki aBR aBR -paH +bGf aoH -rCb +ncz aNo aOB aOB @@ -45287,10 +45287,10 @@ aNo aOy aNo aOB -svO +oby aoH asK -pzV +rnB asK asK aZu @@ -45299,7 +45299,7 @@ baD aZu aZu bcC -eKw +vYg aZu aZu aZu @@ -45322,47 +45322,47 @@ axX ayr ayr ayr -hEI -hEI +mIS +mIS ayr ayr ayr ayr -wmR -xkb -wbB -imZ +xsT +fws +wgi +xss ayZ -eeb +cqh ayZ -kiv -wbB -kbB -xkb -xQJ -hyL -iSc -lil -iSc -xpt -wbB -xkb +xqN +wgi +dZe +fws +rNA +cpZ +vZp +nTE +vZp +vPW +wgi +fws ayZ -xkb -imZ +fws +xss axX axX aao aao -nls -nls -nls -nls -nls -nls -nls -vjp -oaz +wwD +wwD +wwD +wwD +wwD +wwD +wwD +qHy +qAH aao aao aao @@ -45379,33 +45379,33 @@ aao aao aao aao -kIp -kIp -kIp -eVY -nio -uwJ -uwJ -uGX -cpt -kIp -nWw -nio -dQT -cpt -cpt -eGW -kIp -kIp -cpt -gsm -bLD -jsr -cpt -hXc -xmW -nWw -kXa +jpS +jpS +jpS +vzI +dQK +rJb +rJb +gpO +qme +jpS +iZK +dQK +wcj +qme +qme +qRd +jpS +jpS +qme +mPk +djJ +cjF +qme +xce +wMI +iZK +rEP aao aao aao @@ -45427,88 +45427,88 @@ aao aao aao aao -iSw -qva -lMg -ocL -ocL -ocL +prx +hRV +wXi +ioZ +ioZ +ioZ aao aao aao aao aao -gEW -qXh -lmq -lmq -lmq -pUA +sfo +fyD +rck +rck +rck +qOc acp -pNS +ilq adB adk adk -rpW +bqU adS -rpW +bqU adS adk acp -ukR -meV +oUj +rPn aeI aeI -jjU -jwc -mKx -myr -jwc -jwc -mKx +cwl +vYo +kiO +weu +vYo +vYo +kiO alD -fYs -rWu -oje -udY -bNF -fMI -bNF -bNF -lzg -iiX +eLm +wVj +qqf +hMP +pIV +irv +pIV +pIV +jlR +uOB amj -hzX -fYs -qHd -sGY +rXM +eLm +nrN +cYf alu amj -txJ +gIg alu alu alu alu alu alu -wRD +oki aBR aBR -paH +bGf apt -xfJ +dLS aNo aOB aQT -raF -dKV -yea -yea -yea +oYL +jqD +eoh +eoh +eoh aoH -qzA -qzA -qzA +xjs +xjs +xjs asK aZv aZR @@ -45522,7 +45522,7 @@ atA asK asK atA -bNG +fej atA asK aZu @@ -45539,46 +45539,46 @@ axX bmn bmT ayr -fqa -fRP -vKt +vIp +coA +knx ayr -luE -xkb -mTv -pfi -nLP -fRP -wbY -whp -wbY -fcI -wDo -wDo -wDo -fRP -fcI -wDo -wDo -fRP -fcI -fcI -bRu -lej -nLP -cRG -bot +qdR +fws +lMa +dcI +wQW +coA +kiG +vNX +kiG +iVg +wCK +wCK +wCK +coA +iVg +wCK +wCK +coA +iVg +iVg +qdQ +vtF +wQW +oRA +qje axX aao -nls -nls -nls -nls -nls -jOW -jOW -vjp -oaz +wwD +wwD +wwD +wwD +wwD +kST +kST +qHy +qAH aao aao aao @@ -45596,34 +45596,34 @@ aao aao aao aao -kIp -kIp -uha +jpS +jpS +iEU vHw -ffJ -pJG -drJ -uGX -cpt -cpt -cpt -eGW -cpt -nEu -iSi -iSi -iSi -cpt -cpt +flp +jqR +qdf +gpO +qme +qme +qme +qRd +qme +nyE +gTp +gTp +gTp +qme +qme aao aao -cpt -cpt -cpt -cpt -nWw -kXa -kXa +qme +qme +qme +qme +iZK +rEP +rEP aao aao aao @@ -45644,23 +45644,23 @@ aao aao aao aao -lOU -iSw -iSw -kxG -ocL -ocL -ocL +qkT +prx +prx +gBL +ioZ +ioZ +ioZ aao aao aao -gEW -gEW -tTw -lmq -khI -jJV -knb +sfo +sfo +ceH +rck +mOF +jqp +hfd acp acp acp @@ -45669,67 +45669,67 @@ acp acp acp acp -tSi -khr +kGo +jix acp acp -ukR -gEU -gEU -gEU -gEU -ukR -ukR -gEU -gEU -ukR -ljC -fYs -fYs -qHd -fYs -fYs +oUj +ncG +ncG +ncG +ncG +oUj +oUj +ncG +ncG +oUj +iZd +eLm +eLm +nrN +eLm +eLm amj -gcL -fYs -huT -brt +qgs +eLm +dmi +suM alu alu -qHQ -gaB +tbw +uCn alu alu -gqc -uhu -xrM -fdv -gfJ -otx -gfJ +sDO +lFl +jyg +dsk +olC +xDz +olC alu -wRD +oki aBR aFL -paH +bGf apt -pYx +kZQ aOB aNo aNo -oKX +kDk aoH apQ apQ apQ aoH -qzA -qzA -qzA +xjs +xjs +xjs asK aZu aZu -hkt +udw aZu aZu aZu @@ -45740,7 +45740,7 @@ atA beW aZu baz -uKF +tsw asK bYa aZu @@ -45755,46 +45755,46 @@ asK axX bmn bmV -rMA -jMb -fRP -wmY +lDS +hPs +coA +eCA ayr -mPe -nLP -wmR -nLP -nLP -end +myK +wQW +xsT +wQW +wQW +rDY axX axX axX -iig -iig -iig -qdb -pZf -iig -iig +oNv +oNv +oNv +xmQ +nIj +oNv +oNv ayZ -pZf -gGk -gGk +nIj +jWh +jWh ayZ axX -pZf +nIj ayZ axX axX aao -nls -nls -nls -nls -vjp -oaz -oaz -oaz +wwD +wwD +wwD +wwD +qHy +qAH +qAH +qAH aao aao aao @@ -45812,35 +45812,35 @@ aao aao aao aao -kIp -kIp -cpt -stL -mCU -nio -nio +jpS +jpS +qme +lxj +kIs +dQK +dQK aao aao aao aao aao -iSi -dPo -kXa -nio -nio -nio +gTp +lGp +rEP +dQK +dQK +dQK aao aao aao aao aao -kIp -kIp -nuV -nWw -kXa -kXa +jpS +jpS +hYy +iZK +rEP +rEP aao aao aao @@ -45862,87 +45862,87 @@ aao aao aao aao -viJ -iSw -qva -ocL -ocL -ocL -pTM -gEW -rxD -gEW -khI -jJV -jJV -knb +iUb +prx +hRV +ioZ +ioZ +ioZ +dUh +sfo +mTF +sfo +mOF +jqp +jqp +hfd acp acp acp -diW -diW -diW +hyp +hyp +hyp acr -nAF -lFm +bIy +vUQ acp -tSi +kGo adk -eNa +ijg acp acr acr acr acr acr -qaj -oOI -oOI -oOI -oOI -sQI -bNF -xYF -lzg -fYs -fYs +wCe +jvL +jvL +jvL +jvL +oHP +pIV +ocI +jlR +eLm +eLm amj -kTx -fYs -huT -brt +oGz +eLm +dmi +suM amj -sUN -cuv -qHd -xkT +dzc +rnw +nrN +feq alu -mAW -jmL -ouY -mwx -mwx -uNb -fHv +gmU +uLY +qJr +nKB +nKB +jFk +uAC alu -wRD +oki aBR aBR -paH +bGf apt -tUe +vrC aNo aNo aNo -oKX +kDk apQ -rJS +nTI aVh -odo +olG aoH -qzA -qzA -bQF +xjs +xjs +qWC asK aZw aZu @@ -45966,52 +45966,52 @@ asK aZu aZO aZO -bsi +pBn aZO aZu axX bmn bmV ayr -rfm -fRP -wCa +qxr +coA +mYf ayZ -dbn -gFN -ooJ -nLP -nLP -gVU -eeb -eeb +qvS +gKS +hcg +wQW +wQW +tRF +cqh +cqh axX -hYB -iAI -iAI -dsy -iSz -hYB -iAI -wVB -kka -pog -iAI -wVB +hpv +nFV +nFV +frH +pJx +hpv +nFV +qWV +ngK +kgN +nFV +qWV ayZ -bRu -cRG +qdQ +oRA axX aao aao -nls -nls -nls -vjp -oaz -oaz -oaz -rJv +wwD +wwD +wwD +qHy +qAH +qAH +qAH +jLG aao aao aao @@ -46028,22 +46028,22 @@ aao aao aao aao -kXa -uGX -kIp -kIp -nWw -dbE -nio +rEP +gpO +jpS +jpS +iZK +xIT +dQK mKM aao aao aao aao aao -rUx -rUx -rUx +mMN +mMN +mMN aao aao aao @@ -46053,12 +46053,12 @@ aao aao aao fpa -hlb -oJb -pbi -kzA -kXa -kXa +hTf +dwp +xds +jlz +rEP +rEP aao aao aab @@ -46080,86 +46080,86 @@ aao aao aao aao -iSw -iSw -kxG -ocL -ocL -mTo -tTw -lmq -xAs -pUA +prx +prx +gBL +ioZ +ioZ +oua +ceH +rck +luH +qOc acp acp agy acp -ttV -iJj -eJt -cxQ -cxQ -llC -cxQ -cxQ -xiF -pAR +geB +fyu +dxl +hhZ +hhZ +lwG +hhZ +hhZ +pkX +okU adk -nyq +ykr acp -xVr -qxu -xVr -xVr +hRH +gyp +hRH +hRH acr -eVX -lbU +dBd +nhL acp acp acp -qAQ -oit -urK -gOC -urK -urK +cGt +eqs +dDh +ppb +dDh +dDh amj -gcL -lCn -huT -brt +qgs +luE +dmi +suM alu -ukJ -qIy -vqd -cDt +eyx +plh +qMt +qHS alu -jJY -qHd -fYs -fYs -lsd -ikI -mEN +uRl +nrN +eLm +eLm +jxN +qdS +mWE alu -wRD +oki aBR aBR -paH +bGf apt -rQu -pIV -clg -jEy -nbp -oGH -dKV -nZf -svO +xpk +hbx +nMO +swr +oxH +mPR +jqD +syt +oby aoH -qzA -qzA -qzA +xjs +xjs +xjs asK aZx aZx @@ -46176,9 +46176,9 @@ bfH bgb bei asK -owT -xYs -lhm +jxC +rLP +sVp asK eLq eWP @@ -46190,45 +46190,45 @@ axX ayr ayr ayr -ksz -fRP -wCa +oMZ +coA +mYf ayZ -cpI -fRP -fRP -fRP -nXc -eQo -cDF -imZ -dhN -duA -iNR -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC +pah +coA +coA +coA +xmp +fNp +pzx +xss +nMQ +tOY +uaG +qyb +vko +pJx +tOY +uaG +vko +ngK +tOY +qyb +vko ayZ -jMb -cRG +hPs +oRA axX aao -nls -oeW -nls -oSG -oaz -cYc -oaz -oaz -oeW +wwD +kHU +wwD +jdl +qAH +ffK +qAH +qAH +kHU aao aao aao @@ -46245,13 +46245,13 @@ aao aao aao aao -nuK -uGX -pOO -kmu -eId -reL -nio +uNA +gpO +oti +wLx +iHr +pxd +dQK aao aao aao @@ -46270,12 +46270,12 @@ aao aao aao vHw -iWY -iRy -nio -kXa -kXa -kXa +pNi +swc +dQK +rEP +rEP +rEP aao aao aab @@ -46297,43 +46297,43 @@ aao aao aao aao -tOy -iSw -kxG -ocL -ocL -unv -lmq -ibm -lmq -pUA +wfw +prx +gBL +ioZ +ioZ +xJf +rck +nEr +rck +qOc acp -obI -cUE -cUE -cxQ -fVi -cxQ -eJt -eJt +riz +lFs +lFs +hhZ +jMV +hhZ +dxl +dxl acr -mzk -mzk +hOH +hOH acp -tFL +glt adk -uVg +dZG acp -xVr -nzI -nzI -nzI +hRH +lqj +lqj +lqj acr -hTS -uVg +dae +dZG aer -nzI -qps +lqj +ivt acp amj amj @@ -46341,28 +46341,28 @@ amj alu alu alu -dOA -fYs -qHd -gyP +ubs +eLm +nrN +pfJ amj -dob -qIy -vqd -mMo +xBc +plh +qMt +cSy alu -uVY -hZz -rWu -gxn -fYs -ikI -oav +pHD +cWe +wVj +ren +eLm +qdS +tJD alu -wRD +oki aBR aBR -paH +bGf aoH aoH aoH @@ -46374,16 +46374,16 @@ aoH aoH aoH aoH -qzA -qzA -qzA +xjs +xjs +xjs asK atw atw atw asK -owT -ldx +jxC +mZD asK atw atw @@ -46393,9 +46393,9 @@ asK asK asK asK -jgr -jgr -dNK +pFM +pFM +kby asK asK asK @@ -46404,48 +46404,48 @@ asK asK asK axX -rhZ -xkb -xkb -hYn -gFN -wHg -hFi -prJ -gFN -gFN -gFN -gFN -gFN -vOY -cRG -dhN -duA -iNR -iNR -iaC -iSz -duA -iNR -iaC -kka -duA -iNR -iaC +tWR +fws +fws +spG +gKS +oXb +lpQ +dKB +gKS +gKS +gKS +gKS +gKS +mJV +oRA +nMQ +tOY +uaG +uaG +vko +pJx +tOY +uaG +vko +ngK +tOY +uaG +vko ayZ -jMb -cRG +hPs +oRA axX aao -nls -nls -nls -oSG -oaz -oaz -oaz -oaz -oeW +wwD +wwD +wwD +jdl +qAH +qAH +qAH +qAH +kHU aao aao aao @@ -46462,13 +46462,13 @@ aao aao aao aao -nuK -uGX -mbS -xrv -jSi -inl -gZx +uNA +gpO +xvW +taH +dEH +enL +xzn aao aao aao @@ -46487,12 +46487,12 @@ aao aao aao vHw -lwA -nio -nio -kXa -gGQ -kXa +isS +dQK +dQK +rEP +wzn +rEP aao aao aab @@ -46514,157 +46514,157 @@ aao aao aao aao -iSw -iSw -kxG -gEW -qXh -ryE -cpL -lmq -lmq -pUA +prx +prx +gBL +sfo +fyD +xGR +oEj +rck +rck +qOc acq -mlX -cxQ -cxQ -sow -sow -sow -eJt -jCn +lTO +hhZ +hhZ +dxY +dxY +dxY +dxl +qxV acr acr acr acp -tFL +glt adk -uVg +dZG acp -xcE -nzI -nzI -nzI -bJN -hTS -khr -oPc -nzI -smI +may +lqj +lqj +lqj +mfE +dae +jix +mGn +lqj +mDt acp -iXc -cbn -cbn -cbn -cbn +qwB +oLl +oLl +oLl +oLl amj -gcL -fYs -qHd -iiX +qgs +eLm +nrN +uOB alu -ukJ -qwv -npj -xkT +eyx +eOn +ckv +feq alu -lMl -mwx -uNb -uNb -uNb -mwx -tSt +cCn +nKB +jFk +jFk +jFk +nKB +qdC alu -wRD +oki aBR aBR -wqI -oUB -wVM -wVM -oUB -oUB -oUB -oUB -oUB -oUB -wVM -wVM -oLp -oLp -qzA -oUB -wVM -wVM -wVM -oUB -oUB -wVM -wVM -wVM -oUB -oUB -oUB -oUB -oUB -oUB -jdM -jdM -jdM -moV -irX -oUB -olr -olr -olr -olr -cwN +dXV +uER +oBA +oBA +uER +uER +uER +uER +uER +uER +oBA +oBA +pjZ +pjZ +xjs +uER +oBA +oBA +oBA +uER +uER +oBA +oBA +oBA +uER +uER +uER +uER +uER +uER +uDR +uDR +uDR +itZ +pok +uER +xbO +xbO +xbO +xbO +uIY axX -deD -nLP -fRP -fRP -fRP -tLG +pjI +wQW +coA +coA +coA +dyx ayZ -vHt -wef -wDo -wDo -ouJ -wDo -wmR -lCg -dhN -nug -yjV -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC +wow +bvo +wCK +wCK +wqF +wCK +xsT +hyB +nMQ +xON +bTV +qyb +vko +pJx +tOY +uaG +vko +ngK +tOY +qyb +vko ayZ -jMb -cRG +hPs +oRA axX -uFS -nls -nls -nls -oSG -oaz -oaz -oaz -rJv -nls -nls -nls +uKZ +wwD +wwD +wwD +jdl +qAH +qAH +qAH +jLG +wwD +wwD +wwD aao aao aao @@ -46680,12 +46680,12 @@ aao aao aao muP -deH -jai -mRm -jwN -fie -iIK +yaD +yhG +wxT +wTV +qpm +trL muP aao aao @@ -46703,13 +46703,13 @@ aao aao aao aao -cpt -tDZ -nio -kXa -nio -kXa -kXa +qme +qoy +dQK +rEP +dQK +rEP +rEP aao aao aab @@ -46732,68 +46732,68 @@ aao aao aao aao -pVj -gEW -gEW -gEW -ryE -ibm -lmq -dsX -pUA +imu +sfo +sfo +sfo +xGR +nEr +rck +crm +qOc acr -mlX -cxQ -cxQ -sow -sow -sow -eJt -eJt +lTO +hhZ +hhZ +dxY +dxY +dxY +dxl +dxl acr -nAF -lFm +bIy +vUQ acp -tFL +glt ahk -uVg +dZG acp -rFz -dBM -dYM -nhG +pWk +oEf +vek +oyQ acr -hTS -khr +dae +jix aer -nzI -xkL +lqj +mXM acp -pja -cgz -nAn -rvq -bNF -eyx -bNF -bNF -lzg -iiX +hlr +rRG +irk +bTB +pIV +ptt +pIV +pIV +jlR +uOB amj -fYs -fYs -qHd -cDt +eLm +eLm +nrN +qHS alu -fgC -mwx -mAW -mAW -tSc -cNL -cDE +gPs +nKB +gmU +gmU +hym +des +vEy alu -wRD +oki aKk aBR aBR @@ -46808,80 +46808,80 @@ aBR aBR aBR aBR -paH -qzA -wRD -cvz -pcg +bGf +xjs +oki +kEE +oOB aBR aBR -nFR -gJG -gJG -gJG -gJG -pcg +krC +eou +eou +eou +eou +oOB aBR aBR aBR aBR aBR aBR -nFR -gJG -ekW -vuY -gJG -kDC -kDC -kDC -uwA -mbO +krC +eou +hle +oid +eou +wup +wup +wup +bsy +pEC axX -was -nLP -fRP -gdY -fRP -ghN +lMV +wQW +coA +jtV +coA +sjl ayZ -dqL -tLG +tJE +dyx axX axX axX axX -reK +dcR axX axX axX -duA -iNR -iaC -iSz -nug -rUN -oIK -kka -duA -iNR -iaC +tOY +uaG +vko +pJx +xON +cpv +dyL +ngK +tOY +uaG +vko ayZ -jMb -cRG +hPs +oRA axX -sYs -nls -oeW -nls -nls -dQc -dQc -dQc -nls -nls -nls -nls +wJZ +wwD +kHU +wwD +wwD +rWW +rWW +rWW +wwD +wwD +wwD +wwD aao aao aao @@ -46897,13 +46897,13 @@ aao aao aao aao -jai -jai -mRm -qBj -jwN -qBj -dBD +yhG +yhG +wxT +weF +wTV +weF +upk aao aao aao @@ -46919,14 +46919,14 @@ aao aao aao aao -uGX -mqo -kYh -nio -nio -kXa -kXa -kXa +gpO +sHF +oEM +dQK +dQK +rEP +rEP +rEP aao aao aab @@ -46949,68 +46949,68 @@ aao aao aao aao -gEW -gEW -gEW -gEW -ruL -lmq -lmq -kau -pUA +sfo +sfo +sfo +sfo +nSu +rck +rck +ciB +qOc acs -mlX -cxQ -eJt -dXJ -cxQ -daI -muo -qCR -dBf -qCR -qCR -slM -gTo +lTO +hhZ +dxl +vTu +hhZ +mxM +ocE +smk +lJC +smk +smk +kZm +vNl ahl -rSa +iyz acp acr acr acr acr acr -rqi -khr +xRq +jix acp acp acp acp -xpv -cbn -mbe -rPA -cbn +tlt +oLl +wsA +bOp +oLl amj -gcL -fYs -uNt -mLy +qgs +eLm +sTu +qWs alu alu -nUD -mlM +uQG +unq alu alu amj -kTO +sKZ alu alu alu alu alu alu -wRD +oki aBR aLc aBR @@ -47025,81 +47025,81 @@ aBR aBR aFL aBR -paH -qzA -wRD +bGf +xjs +oki aBR aBR aBR -eaz -gJG -gJG -gJG -xuL -vyO +bPA +eou +eou +eou +jfa +lnk aBR aBR aBR aBR aBR aBR -eaz -gJG -gJG -qNR -rbK -gJG -kDC -kDC -kDC -pcH -mbO +bPA +eou +eou +rJt +iEE +eou +wup +wup +wup +vNS +pEC axX -fcE -nLP -uaD -fRP -nLP -cri +nYu +wQW +kNa +coA +wQW +vvE ayr -cpI -cRG +pah +oRA axX -upW -iYS -nJt -wmR -xkb -ohI -dhN -duA -ykR -iaC -pWs -mRE -mRE -mRE -jxA -duA -ykR -iaC -gGk -fqa -cRG -tcP -sYs -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +uuc +suo +mta +xsT +fws +xif +nMQ +tOY +qyb +vko +eaP +kLH +kLH +kLH +omC +tOY +qyb +vko +jWh +vIp +oRA +hPH +wJZ +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -47114,13 +47114,13 @@ aao aao aao aao -jai -jai -mRm -xik -xik -qBj -dBD +yhG +yhG +wxT +eWK +eWK +weF +upk aao aao aao @@ -47136,13 +47136,13 @@ aao aao aao aao -rzU -fZa -nWw -nio -dQT -lwA -kXa +jJd +pIn +iZK +dQK +wcj +isS +rEP aao aao aao @@ -47166,42 +47166,42 @@ aao aao aao aao -gEW -gEW -gEW -gEW -mTo -pVj -pVj -gEW -pUA +sfo +sfo +sfo +sfo +oua +imu +imu +sfo +qOc acq -mlX -eJt -hga -riR -cxQ -sJs -cxQ -cxQ +lTO +dxl +cau +hzE +hhZ +uhZ +hhZ +hhZ acr -mzk -mzk +hOH +hOH acp -tSi +kGo ahm -khr +jix acp -suq -dDo -fkd -rXh -xPN -hTS -khr +uIm +uGa +cje +bwr +okd +dae +jix aer -nzI -qps +lqj +ivt acp anZ anZ @@ -47209,114 +47209,114 @@ alu alu alu alu -gcL -fYs -qHd -kMN -kjy -cPL -fYs -qHd -btp -jlX -btp -btp -xJc -uCs -snG -snG -uib +qgs +eLm +nrN +tVD +htF +gbT +eLm +nrN +kFp +lNI +kFp +kFp +aKu +pUh +nsj +nsj +dvr alu -qzA -uXg -uXg -uXg -uXg -uXg -sSZ -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -qzA -qzA -qzA -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -peW +xjs +mzI +mzI +mzI +mzI +mzI +nnz +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +xjs +xjs +xjs +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +grG aBR aBR aBR aBR -cvz -gJG -gJG -qNR -mdL -gJG -flx -flx -pcH +kEE +eou +eou +rJt +iUR +eou +xex +xex +vNS bjA -mbO +pEC axX -xwZ -fRP -fRP -nLP -nLP -nxL +pjU +coA +coA +wQW +wQW +xbh ayZ -vHt -tLG +wow +dyx axX -mtu -kkD -gFN -ooJ -qAa -mAo -gmm -duA -iNR -iaC -wjN -xkb -krL -xkb -skn -duA -iNR -iaC -gGk -fqa -tLG -tcP -oeL -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +kyS +jiF +gKS +hcg +xSc +eWq +uxl +tOY +uaG +vko +pXH +fws +xZW +fws +raS +tOY +uaG +vko +jWh +vIp +dyx +hPH +tww +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -47331,14 +47331,14 @@ aao aao aao aao -jai -jai -mRm -iZR -ebX -qBj -ntd -jai +yhG +yhG +wxT +pQj +xAu +weF +lhO +yhG aao aao aao @@ -47351,15 +47351,15 @@ aao aao aao aao -nuK -teY -epf -uKi -nWw -nio -uGX -cpt -kXa +uNA +uYj +oVk +xEF +iZK +dQK +gpO +qme +rEP aao aao aao @@ -47385,70 +47385,70 @@ aao aao aao aao -gEW -gEW -mTo -gEW -gEW -gEW -pUA +sfo +sfo +oua +sfo +sfo +sfo +qOc acq -mlX -eJt -eJt -sow -sow -sow -cxQ -eJt +lTO +dxl +dxl +dxY +dxY +dxY +hhZ +dxl acr acr acr acp -tSi +kGo ahm -taF +fSq acp -owf -xVr -bSO -wOJ -nzI -hTS -khr -oPc -nzI -smI +lEj +hRH +fEb +tnM +lqj +dae +jix +mGn +lqj +mDt acp -lXT -hFG -hFG -hFG -wqE +wmr +pHw +pHw +pHw +mrE alu -dOA -fYs -sEQ -bVW -fYs -fYs -kuR -huT -ikI -fYs -fYs -lCn -vKF -fYs -fYs -fYs -iiX +ubs +eLm +lBJ +uFE +eLm +eLm +qPN +dmi +qdS +eLm +eLm +luE +iwg +eLm +eLm +eLm +uOB alu -qzA -qzA -qzA -qzA -qzA +xjs +xjs +xjs +xjs +xjs apC apC apJ @@ -47460,7 +47460,7 @@ apC apC apC apJ -sHw +tXY apJ apC apC @@ -47470,71 +47470,71 @@ apC apC apC apC -sxx -qzA -wRD +njw +xjs +oki aBR aBR aBR aBR aFL -nFR -gJG -paH -uPH -vyO +krC +eou +bGf +lrZ +lnk bjA bjA bjA bjA -mbO +pEC axX -ftA -wDo -kQW -obU -tUt -jQd +bQR +wCK +wHs +raH +pcU +teH ayZ -giJ -fRP -uZG -sXJ -uXE -gtc -fRP -nLP -oMY -dhN -duA -ykR -iaC -oFj -cEo +opx +coA +nvY +paG +uPr +gQR +coA +wQW +cTw +nMQ +tOY +qyb +vko +gcy +faC axX -sEj -ejH -duA -ykR -iaC +hUn +oVi +tOY +qyb +vko ayZ -jMb -tLG +hPs +dyx axX -oeL -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +tww +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -47549,13 +47549,13 @@ aao aao aao aao -jai -iHO -fii -iOK -qBj -gja -jai +yhG +uZJ +qSu +ybg +weF +jPY +yhG aao aao aao @@ -47568,14 +47568,14 @@ aao aao aao aao -nuK -teY -uGX -cpt -nWw -nio -uGX -xHJ +uNA +uYj +gpO +qme +iZK +dQK +gpO +hZs aao aao aao @@ -47605,106 +47605,106 @@ aao aao aao aao -gEW -gEW -qXh -pUA +sfo +sfo +fyD +qOc acp -mlX -cxQ -cxQ -sow -kuA -kuA -cxQ -cxQ +lTO +hhZ +hhZ +dxY +cGk +cGk +hhZ +hhZ acr -nAF -lFm +bIy +vUQ acp -tSi +kGo ahn -khr +jix acp -owf -xVr -xVr -wOJ -nzI -uWh -khr +lEj +hRH +hRH +tnM +lqj +qdk +jix aer -nzI -xkL +lqj +mXM acp -hNT -cpL -cpL -lmq -jTm -gGr -bNF -bNF -lzg -ikI -fYs -fYs -ikI -huT -ikI -uBy -cpZ -mBj -mkV -nuu -nuu -ids -mUU +rYe +oEj +oEj +rck +kGW +ttU +pIV +pIV +jlR +qdS +eLm +eLm +qdS +dmi +qdS +kbF +ylz +xGL +fDs +bPz +bPz +pkg +ego alu -qzA -qzA -qzA -qzA +xjs +xjs +xjs +xjs apC apC -mlJ -jSn -iGq -wxE +iVY +iBQ +poo +sjb aof -coD -oYi -lYP +hGh +svx +iqx aof -lpI -eze -pPc +hyH +qjs +pmr aof -ghb -oim -oim -oim -oim -xKe -oim +xMR +qqb +qqb +qqb +qqb +hOF +qqb apC apC -wRD +oki aBR aBR aBR aBR aBR -nFR -gJG -wHp -uPH -gJG -uwA +krC +eou +vAg +lrZ +eou +bsy bjA bjA -wHl -mbO +uuP +pEC axX axX axX @@ -47713,47 +47713,47 @@ ayr ayr ayr ayr -oXM -eer +qKv +pPn axX -ktX -jlQ -tNx -fRP -qAa -dpi -dhN -duA -iNR -iaC -oKS -fcI -fJW -wDo -tUw -duA -iNR -iaC +kna +eRY +jXE +coA +xSc +dMR +nMQ +tOY +uaG +vko +mHu +iVg +vwe +wCK +qkP +tOY +uaG +vko ayZ -jMb -cRG +hPs +oRA axX -oeL -nls -nls -jOW -jOW -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +tww +wwD +wwD +kST +kST +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -47767,11 +47767,11 @@ aao aao aao aao -jai -jai -ufV -ufV -drV +yhG +yhG +rVS +rVS +qLW aao aao aao @@ -47785,14 +47785,14 @@ aao aao aao aao -nuK -kXa -uGX -cpt -nWw -nio -uGX -xHJ +uNA +rEP +gpO +qme +iZK +dQK +gpO +hZs aao aao aao @@ -47822,54 +47822,54 @@ aao aao aao aao -gEW -mKL -qXh -pUA +sfo +eDP +fyD +qOc acq -mlX -cxQ -cxQ -cxQ -dXJ -eJt -eJt -eJt -llC -cxQ -cxQ -xiF -tSi +lTO +hhZ +hhZ +hhZ +vTu +dxl +dxl +dxl +lwG +hhZ +hhZ +pkX +kGo ahn -uVg +dZG acp -eQz -lDM -lDM -fHQ -nzI -uWh -uVg +tSR +wPj +wPj +eTl +lqj +qdk +dZG acp acp acp acp -hNT -cpL -lmq -lmq -pUA -nUD -gcL -fYs -qHd -fYs -ikI -ikI -wwc -qHd -rRk -brt +rYe +oEj +rck +rck +qOc +uQG +qgs +eLm +nrN +eLm +qdS +qdS +xjo +nrN +syS +suM alu alu alu @@ -47879,23 +47879,23 @@ alu alu alu alu -dKz -qzA -qzA +xsE +xjs +xjs uRE -ezi -iXI -unm -iXI -ezf +wIq +uvx +jyF +uvx +nPC aof -coD -coD -dOz +hGh +hGh +oxM aof -wKh -phy -pGL +oVS +ptj +pop asT aZC aZC @@ -47903,74 +47903,74 @@ baG aZC baG aZC -oim -eYB +qqb +cnW apC -wRD +oki aBR aBR aBR aBR aBR lBc -uaO -paH +sfR +bGf biV -uMP +mzD bjC -uwA +bsy bkq -kdF -mbO +xaX +pEC axX -qyL -xkb -txL -rpi -djn +jRB +fws +mPI +sCx +sqP ayZ -xEQ -uRD -tLG +txe +jJT +dyx axX -nXv -rsg -uba -nLP -fcI -vOP -dhN -duA -ykR -iaC -pWs -mRE -mRE -mRE -jxA -duA -ykR -iaC +hMS +neh +tLr +wQW +iVg +dnS +nMQ +tOY +qyb +vko +eaP +kLH +kLH +kLH +omC +tOY +qyb +vko ayZ -fqa -cRG +vIp +oRA axX -oeL -nls -vjp -cYc -oaz -oeW -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +tww +wwD +qHy +ffK +qAH +kHU +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -47984,11 +47984,11 @@ aao aao aao aao -ykN -hDa -mGW -oJR -dJh +rFh +iVS +pHy +kCk +nqi aao aao aao @@ -48004,10 +48004,10 @@ aao aao aao uDn -qyY -cpt -nWw -tnL +xbB +qme +iZK +thY vHw aao aao @@ -48039,155 +48039,155 @@ aao aao aao aao -pbl -gEW -qXh -pUA +nKy +sfo +fyD +qOc acp -obI -cUE -cUE -cxQ -cxQ -cys -ohk -ohk +riz +lFs +lFs +hhZ +hhZ +tQD +rrF +rrF acr -mzk -mzk +hOH +hOH acp -tSi +kGo ahm -nyq +ykr acp -nzI -nzI -nzI -nzI -nzI -uWh -uVg +lqj +lqj +lqj +lqj +lqj +qdk +dZG aer -nzI -qps +lqj +ivt acp -hNT -lmq -lmq -lmq -pUA +rYe +rck +rck +rck +qOc alD -gcL -ikI -xiE -pZC -kwi -kwi -kwi -lzg -fYs -iXT +qgs +qdS +fRr +jmR +oNV +oNV +oNV +jlR +eLm +siS alu -tTP -fYs -cbn -fYs -tkO -sgN -eAH +wSK +eLm +oLl +eLm +cKf +aLg +fIp alu aof -jOn +vHa aof apC -iLl -nul -iXI -pkf -fJz +kkK +eHe +uvx +isF +pQQ aof -xUs -klY -coD +oij +rDe +hGh aof -otY -phy -lfe +qxO +ptj +tlE asT aZB aZT -cTL +btV bbj -cTL +btV bcE -oim -oim +qqb +qqb apC -wRD +oki aBR aBR aBR aBR aBR -nFR -gJG -paH -wRD -gJG -whV -lyK +krC +eou +bGf +oki +eou +glH +hXl bjA -kdF -mbO +xaX +pEC axX -nld -nLP -nnt -dik -wkj +wSF +wQW +nnr +vBh +jVb azE -jMb -wmR -eCW +hPs +xsT +nIw axX axX axX axX -iGZ +oFv axX axX axX -duA -iNR -iaC -iSz -hYB -iAI -wVB -kka -duA -iNR -iaC +tOY +uaG +vko +pJx +hpv +nFV +qWV +ngK +tOY +uaG +vko ayZ -fqa -cRG +vIp +oRA axX aao aao aao -oaz +qAH aao -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -48201,11 +48201,11 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -48220,12 +48220,12 @@ aao aao aao aao -qBj -krn -oJR -mRm -epL -qBj +weF +agR +kCk +wxT +tLE +weF aao aao aao @@ -48255,81 +48255,81 @@ aao aao aao aao -cpL -xAs -gEW -sBx -pUA +oEj +luH +sfo +tzD +qOc acp acp agy acp acp -bOm +gZl acp -fMQ -hev +bnn +ixM acr acr acr acp -tSi +kGo ahm -khr -cWL -cqu -eIF -eIF -eIF -cqu +jix +nZE +fJN +naH +naH +naH +fJN ahm -uVg -oPc -nzI -smI +dZG +mGn +lqj +mDt acp -hNT -lmq -lmq -lmq -pUA +rYe +rck +rck +rck +qOc alD -pHQ -ikI -ikI -fYs -hlT -ikI -ikI -huT -bFK -iiX +nDV +qdS +qdS +eLm +uuI +qdS +qdS +dmi +qBP +uOB amj -tYW -dGW -oje -kIA -pZC -kIA -kwi -xbP -ixv -ixv -sdA -rpE -tOb -ixv -ixv -tNB -jXM +eWB +kCI +qqf +kzF +jmR +kzF +oNV +tyh +vTV +vTV +dQO +cTn +dmO +vTV +vTV +bQl +fpN aof -coD -vmq -xAG +hGh +fyo +qzm aof -wQg -phy -lfe +xoO +ptj +tlE aof aZC aZU @@ -48337,57 +48337,57 @@ aZC aZU aZC bcF -oim -oim +qqb +qqb apD -wRD +oki aBR aBR aBR aBR bhi bhi -dIh -kmE -mQX -gJG -whV -nYN +xKL +ogK +dfd +eou +glH +faA bjA -kdF -xek +xaX +jqL axX -ssr -wNN -ckQ -fDx -uNz +taa +qGq +fts +unY +sMi ayZ -jMb -wmR -ogP -xkb -xkb -ugM -xkb -fRP -imZ -dhN -hYB -ojD -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC -iig -fqa -cRG +hPs +xsT +cbK +fws +fws +lvw +fws +coA +xss +nMQ +hpv +kuU +qyb +vko +pJx +tOY +uaG +vko +ngK +tOY +qyb +vko +oNv +vIp +oRA axX aao aao @@ -48395,17 +48395,17 @@ aao aao aao aao -nls -nls -nls +wwD +wwD +wwD aao aao -nls -nls -nls -nls -nls -nls +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -48418,12 +48418,12 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -48437,12 +48437,12 @@ aao aao aao aao -jwN -qBj -dBD -mRm -qBj -fie +wTV +weF +upk +wxT +weF +qpm aao aao aao @@ -48472,139 +48472,139 @@ aao aao aao aao -lmq -lmq -kau -gEW -jww -sgD -sgD -sgD +rck +rck +ciB +sfo +dgx +mZy +mZy +mZy aao acp acp acp -oXi -udg -gPy -tzF -gWo +lix +vcc +tYp +oIt +tbc acp -tSi +kGo aho -nNv -xYH -lBS -nNv -nNv -nNv +euA +iST +ovN +euA +euA +euA alr ami -uda +eun aer -nzI -xkL +lqj +mXM acp -hNT -lmq -lmq -lmq -pUA +rYe +rck +rck +rck +qOc alD -rGK -cpZ -fYs -cpZ -mBj -juK -oRF -lbg -fYs -iiX +oaj +ylz +eLm +ylz +xGL +hKe +nIt +vtc +eLm +uOB amj -rhE -ikI -rLg -ikI -cbn -ikI -dGW -nUD -sgc -pkf -knQ -fkb -bPq -iXI -iXI -gzp -iXI -yfb -iFS -cQD -iFS -vSR -fJq -phy -phy -bRZ +owA +qdS +lkp +qdS +oLl +qdS +kCI +uQG +gtW +isF +uVq +gnE +fLO +uvx +uvx +wfa +uvx +xBR +tkA +ogT +tkA +jnA +hqf +ptj +ptj +xnt aZC aZC aZC aZC aZC bcG -oim -oim +qqb +qqb apD -wRD +oki aBR aBR -eaz +bPA bhi bhi bhi -rBR -paH -wRD -gJG -whV -lyK +dwU +bGf +oki +eou +glH +hXl bjA -kdF -xek +xaX +jqL axX -qPc -qCr -gtL -fRP -sNM -pGR -gFN -hwD -hld -cPj -cPj -fRP -nLP -fRP -cRG -dhN -duA -iNR -iNR -iaC -iSz -duA -iNR -iaC -kka -duA -iNR -iaC +cvZ +heT +kvD +coA +jPy +nOl +gKS +lel +jOE +oHE +oHE +coA +wQW +coA +oRA +nMQ +tOY +uaG +uaG +vko +pJx +tOY +uaG +vko +ngK +tOY +uaG +vko ayZ -jMb -cRG +hPs +oRA axX aao aao @@ -48612,18 +48612,18 @@ aao aao aao aao -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -48636,12 +48636,12 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -48654,13 +48654,13 @@ aao aao aao aao -qBj -qBj -dBD -mRm -qBj -jwN -qBj +weF +weF +upk +wxT +weF +wTV +weF aao aao aao @@ -48689,13 +48689,13 @@ aao aao aao aao -lmq -lmq -kau -gEW -qXh -lmq -efs +rck +rck +ciB +sfo +fyD +rck +ljP acP aao aao @@ -48712,116 +48712,116 @@ acp acp acp aer -bLF +bPp aer acp -jjW +gBM ajL -ruo +coH acp acp acp acp -hNT -lmq -lmq -lmq -lfO +rYe +rck +rck +rck +wbg alu alu -eUm -hVG -eUm +olf +nTq +olf alu alu -qEa -qHd -fYs -iiX +ncd +nrN +eLm +uOB amj -emk -nQO -oon -kQf -ivi +ghb +xgo +xuB +iHq +xCo amj amj alu aof -jOn +vHa aof apC -xNk -nul -nYl -mAu -wZS +gnB +eHe +jAm +gnY +cLs aof -sJx -lTO -sJx +xsD +nTu +xsD aof -nWu -phy -lfe +hKZ +ptj +tlE aof -oim -oim -oim -oim -oim -tTa -oim -oim +qqb +qqb +qqb +qqb +qqb +nKC +qqb +qqb apC -wRD +oki aBR aBR -iWg +kvx bhi dbi -qPw -qPw -mjC -wRD -gJG -whV -lyK +vWf +vWf +fxJ +oki +eou +glH +hXl bjA -kdF -xek +xaX +jqL axX -irR -mel -gYH -ltY -lCg +lsN +ldg +rTV +vuN +hyB ayZ -tvz -wmR -yhB -eBm -gjN -fRP -eHE -nLP -nrf -dhN -duA -iNR -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC +txF +xsT +yjg +yep +pqB +coA +vff +wQW +vea +nMQ +tOY +uaG +qyb +vko +pJx +tOY +uaG +vko +ngK +tOY +qyb +vko ayZ -jMb -cRG +hPs +oRA axX aao aao @@ -48830,17 +48830,17 @@ aao aao aao aao -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls -nls +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD aao aao aao @@ -48851,15 +48851,15 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -48872,12 +48872,12 @@ aao aao aao aao -qBj -dBD -mRm -qBj -qBj -qBj +weF +upk +wxT +weF +weF +weF aao aao aao @@ -48905,108 +48905,108 @@ aao aao aao aao -lmq -lmq -lmq -kau -gEW -bin -lmq -efs +rck +rck +rck +ciB +sfo +dqO +rck +ljP acP acP aao aao aao aao -sgD -sMD +mZy +xTp acp -xmw -ofC -ofC -ofC +xhG +hzq +hzq +hzq acp -crM -nzI -nzI -grJ +mrY +lqj +lqj +vbW aer -tFL +glt ahn -uVg +dZG aer -nzI -qps +lqj +ivt acp -hNT -lmq -lmq -lmq -tfP +rYe +rck +rck +rck +ooV alu -rPm -xge -fYs -pCe -bTi +bRQ +isH +eLm +mAB +khr alu -uFh -qHd -fYs -fYs -ljC -cbn -fYs -rRI -taM -lbN -fYs -rhw +qMQ +nrN +eLm +eLm +iZd +oLl +eLm +dbF +sph +myf +eLm +gqN alu -wrC -qzA -qzA +vqh +xjs +xjs apD -oyR -iXI -nwv -mSv +pSp +uvx +hQh +fpM aof aof aof aof aof aof -fUn -phy -lfe +djk +ptj +tlE aof aof asT asT asT aof -iCB +lTQ aof aof apC -kcU +fMu aBR aBR bhi bhi dbi -xlD -qMI -iAj -wRD -uaO +wNT +nVy +xZn +oki +sfR ofX -kDC -fdZ -kDC -fBz +wup +lDg +wup +wkK axX ayr ayZ @@ -49014,31 +49014,31 @@ ayZ ayr ayr ayr -fMt -wmR -pyE -jrB -pGk -nLP -vJR -fcI -vzj +tsn +xsT +tjA +vQv +pwV +wQW +guJ +iVg +nOS axX -nug -rUN -rUN -oIK -iSz -nug -rUN -oIK -kka -nug -rUN -oIK +xON +cpv +cpv +dyL +pJx +xON +cpv +dyL +ngK +xON +cpv +dyL ayZ -sXf -cRG +iBv +oRA axX aao aao @@ -49048,53 +49048,53 @@ aao aao aao aao -nls -nls -nls -nls -nls -nls -nls -nls -nls -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -bVB -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +iBU +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao aao aao -oJR -oJR -oJR -uHp -qBj -qBj +kCk +kCk +kCk +cPx +weF +weF aao aao aao @@ -49121,123 +49121,123 @@ aao aao aao aao -lmq -ibm -lmq -nPD -gEW -rxD -tTw -lmq -efs -xNq +rck +nEr +rck +uFC +sfo +mTF +ceH +rck +ljP +gtK acP acP acP acP acP acP -pUA +qOc acp -bHJ -nzI -nzI -nzI +oBz +lqj +lqj +lqj acp -gnm -nzI -nzI -grJ +ufs +lqj +lqj +vbW aer -hxx +mdR ahn -khr -oPc -nzI -smI +jix +mGn +lqj +mDt acp -hNT -lmq -lmq -lmq -pUA +rYe +rck +rck +rck +qOc alu -iSR -ogg -fYs -uOh -fWy +qVb +cpW +eLm +pML +qJI alu -qEx -xiE -jTf -bNF -sQI -bNF -msE -lzg +bix +fRr +lMU +pIV +oHP +pIV +cMF +jlR alu -fYs -cbn -fYs +eLm +oLl +eLm alu -qzA -qzA -qzA +xjs +xjs +xjs apD -lqz -ezf -iXI -vag +oTt +nPC +uvx +eXz aof -lfd -mQh -mQh -mQh -uIf -her -wJf -rlI -fvg -qUD -rEp -gPZ -dfT -hlP -bMG -pPc +ofW +gpp +gpp +gpp +sMM +cfb +pfL +uED +cRa +ufF +cLD +xiq +bZx +tEQ +fjs +pmr apD -oLp -kcU +pjZ +fMu aBR aBR bhi bhi dbi -xlD -xlD -cEV -qzA -hdw -ovy -sia -sia -qeN -cwN -tKB -fhO -rYj -rYj -sIj -wbB -rMN -sXf -vUx -gLO -gLO -vfq -fRP -ehb +wNT +wNT +xrH +xjs +buZ +ycZ +cXJ +cXJ +jCR +uIY +tPy +fWk +huo +huo +xee +wgi +gKd +iBv +qPC +swY +swY +ekP +coA +saG axX axX axX @@ -49245,16 +49245,16 @@ ayZ ayZ ayZ ayZ -pZf +nIj ayZ -xso -gGk -eUq -xso +vgl +jWh +dNK +vgl ayZ ayZ axX -pZf +nIj ayZ axX axX @@ -49265,53 +49265,53 @@ aao aao aao aao -nls -nls -nls -nls -nls -nls -nls -nls -nls -oJR -oJR -oJR -oJR -oJR -oJR -jik -oJR -oJR -pIM -jik -oJR -oJR -oJR -oJR -muQ -vEx -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +wwD +kCk +kCk +kCk +kCk +kCk +kCk +sjD +kCk +kCk +iWK +sjD +kCk +kCk +kCk +kCk +xAF +iLa +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao -oJR -oJR -oJR -oJR -oJR -ufV -ufV +kCk +kCk +kCk +kCk +kCk +rVS +rVS aao aao aao @@ -49338,142 +49338,142 @@ aao aao aao aao -lmq -lmq -dsX -gEW -hxW -tXi -tXi -qCi -jLl -tXi -tXi -mJd +rck +rck +crm +sfo +iXW +kXX +kXX +wLk +gFc +kXX +kXX +dzO acP acP acP acP -pUA +qOc acp -shE -nzI -aMe -nzI +oie +lqj +xhM +lqj acp -rcs -nzI -wLa -nzI -bXM -tFL +wMN +lqj +pSj +lqj +tBQ +glt ahm -khr +jix aer -nzI -xkL +lqj +mXM acp -hNT -lmq -lmq -lmq -pUA +rYe +rck +rck +rck +qOc alu -iSR -ogg -fYs -uOh -fWy +qVb +cpW +eLm +pML +qJI alu -cdK -fYs -jUl -jdI +tRv +eLm +iMX +jbc alu -cbn -fYs -eJu -jdS -cbn -fYs -phd +oLl +eLm +fFk +oyA +oLl +eLm +jXj alu -qzA -qzA -qzA +xjs +xjs +xjs apD -deQ -lra -gqQ -mAu +tlL +ith +tWn +gnY aof -lyE -kmW -ekI -jct +tdz +rHg +wiQ +sXj aof -tGn -phy -hQO -lQW -lAj -jir -phy -phy -phy -jir -jcb +pDQ +ptj +pIL +poG +dvt +mty +ptj +ptj +ptj +mty +wFK apD -oLp -wRD +pjZ +oki aBR aBR -gOB +kxV bhi dbi -uUW -xHU -cBh -qzA -oUB -wuu -qli -qli -qli -cBy -mIB -mIJ -vpB -mIJ -srd -mIJ -mIB -see -kvx -see -xKQ -ewH -nUM -fRP -wbY -xrt -wbY -xkb -wbB -wbB -wbB -fRP -wbB -wbB -kiv -fRP -xkb -xkb -sXf -lej -nLP -cRG -bot +xtl +vTQ +ePS +xjs +uER +mHk +gvc +gvc +gvc +unl +gdD +fiz +spu +fiz +caa +fiz +gdD +joH +gnu +joH +oQg +vlL +rqV +coA +kiG +tTL +kiG +fws +wgi +wgi +wgi +coA +wgi +wgi +xqN +coA +fws +fws +iBv +vtF +wQW +oRA +qje axX aao aao @@ -49483,51 +49483,51 @@ aao aao aao aao -nls -nls -nls -nls -nls -nls -nls -oJR -oJR -oJR -oJR -mGW -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -jik -jik -jik -jik -oJR -jik -lqD -jik -jik -jmr -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +wwD +wwD +wwD +wwD +wwD +wwD +wwD +kCk +kCk +kCk +kCk +pHy +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +sjD +sjD +sjD +sjD +kCk +sjD +tbL +sjD +sjD +nnl +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -49555,55 +49555,55 @@ aao aao aao aao -dsX -pVj -gEW -gEW -hdp +crm +imu +sfo +sfo +vny pRP -pjL -ohw -ofA -oyx +nHr +oUT +vie +esB pRP -pGF +pGr acP acP acP -vGR -pUA +uLL +qOc acp -shE -wLa -xJv -nzI +oie +pSj +djL +lqj acp -eVI -wLa -fjZ -mvT +lxz +pSj +lLQ +mKS aer -tFL +glt ahm -khr +jix acp acp acp acp -hNT -lmq -lmq -lmq -pUA +rYe +rck +rck +rck +qOc alu -pCE -ogg -fYs -uOh -fWy +fhk +cpW +eLm +pML +qJI alu alu -oLR +kfy alu alu alu @@ -49615,49 +49615,49 @@ alu alu alu alu -qzA -qzA -qzA +xjs +xjs +xjs apC -phy -phy -fMz -uwO +ptj +ptj +kCq +rYj aof aof aof aof aof aof -tGn -phy -tCS +pDQ +ptj +yaF aFd -vtv -fPu -sCu -gpj -sCu -jir -arH +jgJ +nMJ +upY +xpr +upY +mty +cHH apD -qzA -wRD +xjs +oki aBR aBR aBR bhi bhi auW -pNR -paH -wRD -uaO +poU +bGf +oki +sfR ofX -kDC -kDC -kDC -xek +wup +wup +wup +jqL axX axX axX @@ -49668,28 +49668,28 @@ axX axX axX axX -wpR -lha -mTv -rEn +feO +nYZ +lMa +jup ayZ -eeb +cqh ayZ -fcI -sYg -sTq -fcI -jlc -leo -nWC -leo -nWC -jlc -fcI -fcI +iVg +kVy +ehi +iVg +njn +oaL +qQd +oaL +qQd +njn +iVg +iVg ayZ -fcI -lCg +iVg +hyB axX axX aao @@ -49702,15 +49702,15 @@ aao aao aao aao -nls -nls -nls -oJR -oJR -oJR -oJR -jik -oJR +wwD +wwD +wwD +kCk +kCk +kCk +kCk +sjD +kCk rnc rnc rnc @@ -49720,31 +49720,31 @@ rnc rnc rnc rnc -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -jik -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +sjD +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -49772,123 +49772,123 @@ aao aao aao aao -pbl -gEW -gEW -rxD -eKc +nKy +sfo +sfo +mTF +jFW pRP -xXj -aUB -aUB -tpi -oyx -pGF +gGe +mEo +mEo +mRn +esB +pGr acP acP acP -qBJ +sHv aao acp -rLl -wLa -gxW -czC +sMn +pSj +nkp +mqJ acp -cXv -wLa -wLa -mvT +fDB +pSj +pSj +mKS aer -tSi +kGo ajL -khr -igr -wzv -svR +jix +sbx +gAn +lhi acq -hNT -lmq -lmq -lmq -pUA +rYe +rck +rck +rck +qOc alu -iSR -ogg -wgQ -uOh -fWy +qVb +cpW +oZD +pML +qJI alu -kFQ +mJf ayV ayV alu -qzA -oUB -oUB -oUB -hsU -oUB -oUB -oUB -oUB -oUB -oUB -qzA +xjs +uER +uER +uER +kHv +uER +uER +uER +uER +uER +uER +xjs apC -phy -phy -fMz -mAu +ptj +ptj +kCq +gnY aof -luc -dfT -hlP -dfT -gPZ -qkZ -phy -cgA -fwH -fPS -eas +bXP +bZx +tEQ +bZx +xiq +tju +ptj +hjf +vXZ +fvK +vfW aof aof aof -gAk +eHq aof aof apC -wRD +oki aBR aBR aBR -nFR -gJG -kwz -leB -paH -wRD -gJG -esI -kDC -kDC -kDC -osD -olr -jmg -olr -olr -olr -olr -olr -olr -cwN +krC +eou +ogv +wuc +bGf +oki +eou +qZb +wup +wup +wup +dAD +xbO +vCP +xbO +xbO +xbO +xbO +xbO +xbO +uIY axX axX -tOq -mTv -haC +pPt +lMa +qrw axX axX axX @@ -49920,24 +49920,24 @@ aao aao aao aao -oJR -oJR -oJR -ofB -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +ehl +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao aao aao aao -eYr +uRU rnc rnc rnc @@ -49947,21 +49947,21 @@ rnc hAj rnc rnc -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk rnc -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -49989,58 +49989,58 @@ aao aao aao aao -lmc -gEW -qXh -vQQ -eKc -oyx -wGe -uZo -nZa -doh -pjL -pGF +gxa +sfo +fyD +eji +jFW +esB +lsU +oKS +pnw +vtj +nHr +pGr acP acP -vGR -lmq +uLL +rck aao acp -lcy -wLa -hll -smI +izK +pSj +uPT +mDt acp -caM -wLa -tHJ -nzI +dQS +pSj +sLM +lqj aer -tSi +kGo ahm -khr +jix aer -hCX -dPS +gvE +gSE acq -hNT -lmq -lmq -ely -lfO +rYe +rck +rck +snp +wbg alu -iqd -jJn -mpx -rdL -lHP -ekf -rCz +pxN +uZl +hoU +wnz +uBO +xUT +plq ayV ayV alu -wRD +oki aBR aBR aBR @@ -50051,73 +50051,73 @@ aBR aBR aBR aFL -paH +bGf apC -ebn -wJf -qrd -yho +tux +pfL +npN +fQr aof -gxz -ljf -wsP -sCu -sCu -sCu -dJH -cnq -skv -phy -eas +mfb +cVc +eNC +upY +upY +upY +weX +gWZ +mXu +ptj +vfW aof -oim -mAh -nKi -oim -rlO +qqb +nWO +nqx +qqb +ukc apC -wRD +oki aBR aFL aBR -nFR -gJG -kwz -gJG -paH -wRD -gJG -bLl -kDC -kDC -flx -kDC -kDC -ifG +krC +eou +ogv +eou +bGf +oki +eou +itJ +wup +wup +xex +wup +wup +sQD bjA bjA bjA bjA bjA bjA -osD -cwN +dAD +uIY axX -npd -sNM -cob -lCu -lCu -lCu -lCu -fjQ +lQr +jPy +cKc +jdP +jdP +jdP +jdP +lQx axX -jvU +oKC bjA bjA bjA -kdF -kDC +xaX +wup azO azO azO @@ -50136,15 +50136,15 @@ aao aao aao aao -oJR -oJR -oJR -ykN -mGW -oJR -oJR +kCk +kCk +kCk +rFh +pHy +kCk +kCk rnc -bSC +ocW aao aao aao @@ -50164,21 +50164,21 @@ aao aao aao aao -gVA +pAt aao aao -eYr -bSC +uRU +ocW aao -eYr -oJR -mGW -oJR -oJR -oJR -oJR -oJR -oJR +uRU +kCk +pHy +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -50207,45 +50207,45 @@ aao aao aao aao -pbl -qXh -lmq -hdp -oyx -wGe -uZo -uZo -flm -pjL -pGF +nKy +fyD +rck +vny +esB +lsU +oKS +oKS +hnY +nHr +pGr acP -vGR -lmq +uLL +rck aao aao acp -rLl -wLa -kTN -dbD -qaP -dbD -dbD -kru -dbU -qaP -gTo +sMn +pSj +swC +prH +sIs +prH +prH +uRu +mLR +sIs +vNl amo -khr +jix acp aer aer acp -hNT -lmq -efs +rYe +rck +ljP acP -pUA +qOc alu alu alu @@ -50257,7 +50257,7 @@ alu alu alu alu -wRD +oki aBR aBR aBR @@ -50268,48 +50268,48 @@ aBR aBR aBR aBR -paH +bGf apC -muv +tpd aof aof aof aof -jnp -jcb +ecG +wFK aof aof kRK kRK aof aof -tND -phy -eas +ogM +ptj +vfW aof -uqr -jUK -pdJ +xnz +fbX +hnP aof aof apC -wRD -xQc +oki +jEl aBR aBR -nFR -gJG -kwz -gJG -paH -wRD -gJG -esI -kDC -kDC +krC +eou +ogv +eou +bGf +oki +eou +qZb +wup +wup bjA -fhg -pcH +qyx +vNS bjA bjA bjA @@ -50318,34 +50318,34 @@ bjA bjA bjA bjA -mbO +pEC axX -lUm -fcI -nQF -ouJ -egW -ppr -bRu -uNz +wBZ +iVg +pqV +wqF +ueK +upw +qdQ +sMi axX -jvU +oKC bjA bjA -wHl -kDC -rhG +uuP +wup +wQn azO -tAp -tAp -tAp -tAp -lxO -czw -czw -czw -czw -czw +xLA +xLA +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk qPT aao aao @@ -50354,12 +50354,12 @@ aao aao aao aao -oJR -bSC +kCk +ocW ibP -bVB -oJR -vEx +iBU +kCk +iLa aao aao aao @@ -50388,14 +50388,14 @@ aao aao aao aao -bVB -oJR -oJR -oJR -oJR -oJR -oJR -oJR +iBU +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -50424,57 +50424,57 @@ aao aao aao aao -pbl -qXh -lmq -hdp +nKy +fyD +rck +vny pRP -igW -bIL -bIL -omW -oyx -qsV +wUH +ruJ +ruJ +oqf +esB +uTB acP -khI +mOF aao aao aao acp -fCm -nzI -wLa -nzI +cRE +lqj +pSj +lqj acp -oaY -nzI -vUV -dAU +rFK +lqj +hQY +dMI acp -tSi +kGo amp -mnO -foZ +hry +cMo aoj aoj -qjd -gHF -lmq -efs +rCR +tAv +rck +ljP acP -jww -sgD -sgD -sgD -sgD -sgD -nxx -ihd -sgD -tqy -sgD -sgD -nzu +dgx +mZy +mZy +mZy +mZy +mZy +iVj +rLk +mZy +eVO +mZy +mZy +ivn aBR aBR aBR @@ -50485,45 +50485,45 @@ aBR aBR aBR aBR -paH +bGf apD -izz -dfT -rEp -gPZ -cfc -qkZ -jcb +pUe +bZx +cLD +xiq +vNi +tju +wFK kRK -tjY -rjG -rjG -nQr +tyQ +fjK +fjK +wUn kRK -wKh -phy -dOo +oVS +ptj +ufh aof -uNA -hPd -wri +udg +lJF +jFl aof -gXK +qHM apC -wRD -gJG -xQc +oki +eou +jEl aBR bhi bhi auW -gxx -paH -wRD -gxx +jLh +bGf +oki +jLh ofX -kUx -pcH +hHy +vNS bjA bjA bjA @@ -50535,7 +50535,7 @@ bjA bjA bjA bjA -mbO +pEC axX axX axX @@ -50543,26 +50543,26 @@ axX axX axX axX -krD -teF +pjc +wEn axX -jvU +oKC bjA -wHl -kDC -kDC -kDC +uuP +wup +wup +wup azO -tAp -tAp -tAp -tAp -lxO -czw -czw -czw -czw -czw +xLA +xLA +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk qPT aao aao @@ -50570,13 +50570,13 @@ aao aao aao aao -qUi +fkd ibP ibP -bVB +iBU rnc rnc -bSC +ocW aao aao aao @@ -50605,14 +50605,14 @@ aao aao aao aao -eYr -oJR -oJR -oJR -oJR -oJR -oJR -oJR +uRU +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -50641,43 +50641,43 @@ aao aao aao aao -lmc -lmc -cHN -eKc +gxa +gxa +qGA +jFW pRP -oyx -pjL -oyx -oyx +esB +nHr +esB +esB pRP -qsV +uTB acP -pUA +qOc acp acp acp acp acp acp -pWr +pjN acp acp acp aer -pxy +pHl aer acp -xru +gZE amq -khr -rpW +jix +bqU adS aoW -rpW -wlo -lmq -kju +bqU +pxJ +rck +fsi amD acP acP @@ -50702,44 +50702,44 @@ aBR aBR aBR aBR -paH +bGf apD -kTo -wsP -jir -phy -sCu -sCu -fAw -frh -unf -phy -phy -qDA +rNL +eNC +mty +ptj +upY +upY +hxa +lYW +wku +ptj +ptj +jEy kRK -fUn -phy -eas +djk +ptj +vfW aof -fyJ -rqW -wri -mtC -oim +eat +gIR +jFl +bZO +qqb apC -wRD -uXn -pcg +oki +jlM +oOB aBR bhi bhi wGr aBR -paH -wRD -gJG -whV -kDC +bGf +oki +eou +glH +wup bjA bkq bjA @@ -50752,34 +50752,34 @@ bjA bjA bjA bjA -osD -olr -olr -olr -cwN +dAD +xbO +xbO +xbO +uIY ayr -rza -tEt -sXf -uNz +eit +sbG +iBv +sMi ayr -jvU -fdZ -kDC -kDC -krU +oKC +lDg +wup +wup +tnK azO azO azO -dNT -tAp -tAp -lxO -czw -czw -czw -czw -czw +tSe +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk aAp aAp aAp @@ -50820,15 +50820,15 @@ aCe aCe aCe aCe -ong +uyw aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -50859,18 +50859,18 @@ aao aao aao aao -pbl -qXh -nUk -trn -trn -mBv -mBv -mBv -trn -sxa +nKy +fyD +mpz +hUd +hUd +rcf +rcf +rcf +hUd +qMo acP -pUA +qOc acp adQ aep @@ -50885,16 +50885,16 @@ adS ajL adS acr -tSi +kGo ahn -rSa +iyz acp acp acp acp -wlo -lmq -ely +pxJ +rck +snp acP acP acP @@ -50919,45 +50919,45 @@ aBR aBR aBR aBR -paH +bGf apC aof aof -jir -fTH +mty +mJj aof aof aof aof -hyl -phy -phy -phy -frh -phy -phy -eas +gDF +ptj +ptj +ptj +lYW +ptj +ptj +vfW aof aof aof aof aof -mWp +rQk apC -wRD -vyO +oki +lnk aBR aBR aBR aBR aBR aBR -paH -wRD -gJG -whV -kDC -uwA +bGf +oki +eou +glH +wup +bsy bjA bjA bjA @@ -50971,32 +50971,32 @@ bkq bjA bjA bjA -kdF -kDC -mbO +xaX +wup +pEC ayr -fcE -gLO -nLP -wpO +nYu +swY +wQW +qab ayr -cwN -uSs -rhG -rhG -mbO -lky -miC -lky -xiY -pMF -gRZ -lxO -czw -czw -czw -czw -czw +uIY +qGr +wQn +wQn +pEC +kXG +hdI +kXG +uAm +nKu +uUL +xRT +eKk +eKk +eKk +eKk +eKk aAp bwK bxc @@ -51008,23 +51008,23 @@ byg bxd bxc aBE -lKQ -exo +eBI +oxL aAp -wzn -qpe -vXA +pJB +fSG +cmJ aCe -fks -nMw -nMw -iWa +uEj +yfp +yfp +oKA aCe -bUO -uOG -gND -gND -gND +oSF +hlA +tMV +tMV +tMV aCe dyv bDk @@ -51034,19 +51034,19 @@ dyv bDk dyv aCe -qBD -sru +pNw +rfq jJB aCe aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -jmr +kCk +kCk +kCk +kCk +kCk +kCk +kCk +nnl aao aao aao @@ -51077,17 +51077,17 @@ aao aao aao aao -gEW -pVj -pVj -cHN -efs +sfo +imu +imu +qGA +ljP acP acP acP acP acP -pUA +qOc acp adR aeq @@ -51096,152 +51096,152 @@ aeq adk adk adS -rbs +ora adS adS ahm adS -dKG -tSi +eTp +kGo amr -uVg +dZG aer -nzI -qps +lqj +ivt acp -wlo -efs -khI -jJV -jJV -jJV -jJV -jJV -jJV -jJV -jJV -ucd -jJV -jJV -dxQ -jJV -uXg -oFa -oFa -oFa -uXg -oFa -peW +pxJ +ljP +mOF +jqp +jqp +jqp +jqp +jqp +jqp +jqp +jqp +qbc +jqp +jqp +log +jqp +mzI +swJ +swJ +swJ +mzI +swJ +grG aBR aBR aBR aBR -paH +bGf apD -lpI -eze -jir -phy +hyH +qjs +mty +ptj aof aTa aTa aof -hoL -phy -qdz -ict +sSn +ptj +kSc +twZ aof -fUn -phy -oQS +djk +ptj +rOD aof -wvj -oim -oim -oim -oim +nAU +qqb +qqb +qqb +qqb apC -wRD -vyO +oki +lnk aBR aBR aBR aBR aBR bhO -oHI -wLQ -xOs -uVi -kDC -kDC -fdZ -uwA +lTC +koR +bTK +lEu +wup +wup +lDg +bsy bjA -wHl -fdZ -fdZ -fdZ -fdZ -fdZ -uwA +uuP +lDg +lDg +lDg +lDg +lDg +bsy bjA -wHl -fdZ -kDC -kDC -mbO -tKB -nLP -nLP -nLP -fYQ -vBe -mVy -mVy -rOd -rOd -mVy -ryj -wIv -ryj -eKO -hUF -hUF -eKO -eKO -eKO -eKO -lGa -eKO -egm -qEN +uuP +lDg +wup +wup +pEC +tPy +wQW +wQW +wQW +tRc +rnb +pGC +pGC +mZX +mZX +pGC +mpM +mGf +mpM +gJB +rxX +rxX +gJB +gJB +gJB +gJB +nqV +gJB +hEX +ylp bxc bxd -mvd +iwf bxc bxU bxc -iCt +iWt bxd aBE -lKQ -exo +eBI +oxL aAp -oii -uNc -oii +dvM +fpG +dvM aCe -uRP -sIK -gRc -jUj -uTc -jUj -jUj -jUj -jUj -gET +wci +kIG +iuC +jty +jhC +jty +jty +jty +jty +jBZ aCe dyv dyv @@ -51252,17 +51252,17 @@ dyv dyv aCe dyv -gRD -mfI -olP -jik -jmr -oJR -bVB -oJR -oJR -oJR -oJR +uCq +saR +rTE +sjD +nnl +kCk +iBU +kCk +kCk +kCk +kCk aao aao aao @@ -51295,16 +51295,16 @@ aao aao aao aao -gEW -gEW -qXh -efs +sfo +sfo +fyD +ljP acP acP aao aao acP -pUA +qOc acp adS adS @@ -51319,16 +51319,16 @@ adS ahm adS acr -tSi +kGo ahm -uVg -oPc -nzI -smI +dZG +mGn +lqj +mDt acp -wlo -efs -pUA +pxJ +ljP +qOc amn amV amV @@ -51348,117 +51348,117 @@ amn amn amn amn -wRD +oki aBR aBR aBR aBR -paH +bGf apD -fUn -phy -jir -phy -hcn +djk +ptj +mty +ptj +jgV aTa aTa -hcn -unf -lCs -lnT -jlf +jgV +wku +fOG +fkS +isU kRK -tFF -phy -oQS +gKg +ptj +rOD aof -oim -mPk -thQ -oim -oim +qqb +uwE +drK +qqb +qqb apC -wRD -gJG -xQc +oki +eou +jEl aBR aBR aBR aBR bhP -paH -nyz -iAV -kDC -kDC -kDC -kDC -kDC -fdZ -kDC -kDC -kDC -kDC -kDC -kDC -kDC -fdZ -kDC -kDC -kDC -kDC -mbO -krD -nLP -nLP -eHE -wmR -krD -cwN -cwN -olr -olr -cwN -lky -miC -lky -czw -edU -wqD -czw -czw -czw -czw -czw -czw -usz -oHc +bGf +oXG +xPM +wup +wup +wup +wup +wup +lDg +wup +wup +wup +wup +wup +wup +wup +lDg +wup +wup +wup +wup +pEC +pjc +wQW +wQW +vff +xsT +pjc +uIY +uIY +xbO +xbO +uIY +kXG +hdI +kXG +eKk +kPv +ljV +eKk +eKk +eKk +eKk +eKk +eKk +ipY +dUl bxd bxd -ccR +rmH bxc -qug +qYa byh byx byg aBE -lKQ -oaC +eBI +vcN aAp -uNc -uNc -uNc +fpG +fpG +fpG aCe -uRP -jUj -jUj -lsK +wci +jty +jty +sDN aCe -nfK -rxG -mNp -jUj -xCY +dfV +fsc +vjY +jty +wXX aCe dyv dyv @@ -51469,17 +51469,17 @@ dyv dyv aCe dyv -ppE -jHg +cNB +bpm vvj -bVB -oJR -oJR -mGW -oJR -fKF -oJR -oJR +iBU +kCk +kCk +pHy +kCk +dQb +kCk +kCk aao aao aao @@ -51510,54 +51510,54 @@ aao aao aao aao -pbl -gEW -gEW -gEW -tTw -efs +nKy +sfo +sfo +sfo +ceH +ljP acP acP acP aao acP -pUA +qOc acp -cBF -cBF -cBF -cBF -pbj -cBF -cBF +hll +hll +hll +hll +tuF +hll +hll aer -cKZ +pSc adS ajL akp acr -xWa -fqB -nfE +snF +dmG +dgY aer -nzI -xkL +lqj +mXM acp -wlo -lmq -pUA +pxJ +rck +qOc amn -mmM -jCI -jCI -jCI -jCI -jCI -jCI -jCI -jCI -oUW -jCI +gTt +sxW +sxW +sxW +sxW +sxW +sxW +sxW +sxW +dVO +sxW amn atn atn @@ -51565,139 +51565,139 @@ atn atn atn amn -wRD +oki aBR aBR aBR aBR -paH +bGf apC -jcF -phy -jir -lfe +lNO +ptj +mty +tlE aof -gqU +ppG aTa aof -lAr -ehz +esT +jIl aof kRK aof -otY -phy -eas +qxO +ptj +vfW aof -hBB -rLW -wbd -cCw -eXc +uel +mDn +nls +gNQ +xFu apC -wRD -gJG -gJG -xQc +oki +eou +eou +jEl aBR aBR aBR bhP -paH -wRD +bGf +oki aBR -kdF -krU -qeN -qeN -qeN -qeN -sia -sia -sia -sia -sia -qeN -qeN -sia -sia -sia -sia -sia -cwN +xaX +tnK +jCR +jCR +jCR +jCR +cXJ +cXJ +cXJ +cXJ +cXJ +jCR +jCR +cXJ +cXJ +cXJ +cXJ +cXJ +uIY ayr -wgm -nLP -nLP -uNz +eyJ +wQW +wQW +sMi ayr -cwN -jvU -kDC -kDC -mbO -lky -miC -lky -xiY -tAp -tAp -lxO -czw -czw -czw -czw -czw +uIY +oKC +wup +wup +pEC +kXG +hdI +kXG +uAm +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk aAp bwN bxe bxd -mvd +iwf bww -qug +qYa bxc -qlY +sfp byH aBE -sZR -exo +mkx +oxL aAp aBy -vjW +oCM aBy aCe -etj -jUj -jUj -lsK +uqa +jty +jty +sDN aCH -uhM -qQk -jPg -uPk -wiH +mbt +wjp +kCV +vOG +wGn aCe aCH -nQE +cnX aCH aCe aCH -nQE +cnX aCH aCe aCH -nQE +cnX fin vvj -mGW -oJR -oJR -oJR -vEx -oJR -oJR -oJR -oJR +pHy +kCk +kCk +kCk +iLa +kCk +kCk +kCk +kCk aao aao aao @@ -51727,18 +51727,18 @@ aao aao aao aao -pbl -tKJ -gEW -tTw -lmq -lmq -nga +nKy +iAQ +sfo +ceH +rck +rck +dVo acP acP acP acP -pUA +qOc acp acr aer @@ -51754,27 +51754,27 @@ ajL akq acr acr -sQR +icx acr acp acp acp acp -wlo -lmq -pUA +pxJ +rck +qOc amn -wWC -jCI -nap -wWC -dez -gwN -wWC -elb -jCI -wWC -jCI +bsZ +sxW +gnC +bsZ +epi +twa +bsZ +oEY +sxW +bsZ +sxW amn aua aua @@ -51782,29 +51782,29 @@ aua aEK aFN amn -wRD +oki aBR aBR aBR aBR -paH +bGf apC -mHL -phy -jir -jcb +wwB +ptj +mty +wFK aof sLS aUe aof -hHm -dfv +whI +kTw kRK -lpI -lKZ -erW -uPq -eas +hyH +hDR +mHO +vDO +vfW aof aof aof @@ -51812,27 +51812,27 @@ aof aof aof apC -pxi -fiM -qlJ -qlJ -qlJ -qlJ -qlJ -gWS -qzA -qzA -uXg -uXg -qzA +lqF +mWj +qgC +qgC +qgC +qgC +qgC +hob +xjs +xjs +mzI +mzI +xjs awp awp axr axr axr awp -sMM -vSY +hMM +wQt awp awp awp @@ -51843,28 +51843,28 @@ awp awp awp ayr -wMu -nLP -nLP -uNz +uuC +wQW +wQW +sMi ayr -cwN -jvU -kDC -kDC -osD +uIY +oKC +wup +wup +dAD azO azO azO -iMd -gRZ -tAp -lxO -czw -czw -czw -czw -czw +oDb +uUL +xLA +xRT +eKk +eKk +eKk +eKk +eKk aAp bwO bxf @@ -51876,46 +51876,46 @@ bxf bxf byI aBE -lKQ -uPh +eBI +puF aAp -uNc -uNc -jUG +fpG +fpG +pZa aCe -kzJ -jUj -jUj -lsK +wxU +jty +jty +sDN aCH -rds -rxG -sJV -lYY -jUj +fEy +fsc +yjj +wEk +jty aCL -drz -jUj -drz +lRe +jty +lRe aCL -drz -jUj -drz +lRe +jty +lRe aCL -drz -jUj +lRe +jty vvj -hBz -oJR -oJR -oJR -oJR -vEx -oJR -oJR -oJR -oJR -oJR +dNj +kCk +kCk +kCk +kCk +iLa +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -51944,24 +51944,24 @@ aao aao aao aao -lmc -gEW -qXh -lmq -lmq -lmq -efs +gxa +sfo +fyD +rck +rck +rck +ljP acP acP acP acP -pUA +qOc acp -jYz -ykX -jKt -faD -sZe +rLx +lrC +wnV +fuB +dfr aer ahs adS @@ -51977,21 +51977,21 @@ anB alx alx acr -wlo -lmq -pUA +pxJ +rck +qOc amn -jCI -jCI -pzA -wWC -mmM -dGo -wWC -mmM -kag -fbP -jCI +sxW +sxW +fmM +bsZ +gTt +uFZ +bsZ +gTt +gLl +fPx +sxW amn aua aua @@ -51999,17 +51999,17 @@ aua aua aws amn -wRD +oki aBR aBR aBR aBR -paH +bGf apD -wKh -phy -jir -pSw +oVS +ptj +mty +dve aof aof aof @@ -52017,75 +52017,75 @@ aof kRK kRK aof -wKh -gLu -kTc -hwq -jir -gOl +oVS +vNn +pYm +csr +mty +heD aYO bca bcQ bdr nky apC -rYk -wVM -wVM -wVM -wVM -qzA -qzA -moV -qzA -qzA -qzA -qzA -qzA +vKw +oBA +oBA +oBA +oBA +xjs +xjs +itZ +xjs +xjs +xjs +xjs +xjs awp -qEr -qSi -gGm -hXB -fBd -jWO -oML -bup -oML -oML -nlF -wAJ -bIA -fuh -nYs -nOp +doL +txR +kXt +fIA +tag +rGH +nyO +tjf +nyO +nyO +xDW +iro +psR +oeu +hCb +gWu ayr -wMu -nLP -bFC -uNz +uuC +wQW +iTL +sMi ayr -cwN -jvU -flx -flx -flx -flx +uIY +oKC +xex +xex +xex +xex azO meT -odm -tAp -tAp -lxO -czw -czw -czw -czw -czw +eRZ +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk aAp aAp aAp -cPD +jfl aBy aBy aBy @@ -52093,46 +52093,46 @@ aAp aAp aAp aAp -lKQ -exo +eBI +oxL aAp -uNc -rZc -jUG +fpG +kJh +pZa aCe -etj -jUj -jUj -lsK +uqa +jty +jty +sDN aCH -nLy -jUj -pqg -rxG -jUj -vrl -jUj -jUj -jUj -uis -jUj -jUj -jUj -hJl -jUj -rxG -jUj -hBz -oJR -oJR -oJR -oJR -vEx -oJR -oJR -oJR -oJR -oJR +cFP +jty +hBm +fsc +jty +kGJ +jty +jty +jty +boo +jty +jty +jty +iMF +jty +fsc +jty +dNj +kCk +kCk +kCk +kCk +iLa +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -52162,23 +52162,23 @@ aao aao aao aao -pbl -qXh -lmq -ibm -lmq -efs +nKy +fyD +rck +nEr +rck +ljP acP acP acP acP -pUA +qOc acq -glA -faD -jkL -mfY -faD +qFK +fuB +upd +wQO +fuB acp adS adS @@ -52194,11 +52194,11 @@ adk alx alx alZ -wlo -lmq -pUA +pxJ +rck +qOc amn -fJZ +sTQ amn amn amn @@ -52208,82 +52208,82 @@ amn amn amn amn -fJZ +sTQ amn -pLd +qLI amn amn amn -gyN +dXD amn -wRD +oki aBR aBR aBR aBR -paH +bGf apD -fUn -phy -feG -qNv -eze -eze -cRW -rtM -ugS -ugS -ugS -goZ -gLu -bRQ -hwq -vVW -rTv +djk +ptj +pIw +mGY +qjs +qjs +tbp +dcy +rdw +rdw +rdw +ihz +vNn +nNZ +csr +lCL +ygd baJ -scH -xuO -fwh +dZQ +bTR +wwR toA apC -rbK -gJG -gJG -gJG -iAV -paH -qzA -jUs -qvh -qvh -qvh -qvh -mgi -bup -oML -oxn -dJo -gbv -oco -vBU -nDz +iEE +eou +eou +eou +xPM +bGf +xjs +glz +tqf +tqf +tqf +tqf +eBi +tjf +nyO +hoN +drH +owI +qPw +tja +vZN awp awp awp -mWl -vfr -ejv -vfr -vfr -vfr -bYz -sXf -nLP -nLP -uNz +uSz +nxc +bjI +nxc +nxc +nxc +gFi +iBv +wQW +wQW +sMi ayr -cwN -jvU +uIY +oKC bkq bjA bjA @@ -52291,65 +52291,65 @@ bjA azO meT meT -urr -tAp -lxO -czw -czw -tXJ -czw -czw +luN +xLA +xRT +eKk +eKk +rPY +eKk +eKk aAp -xmz -xpm -cmM -dDL -xpJ -xtV -dCC -xpJ -pct +pvn +jKo +bTa +klP +mkv +neI +oPy +mkv +lYc aAp -lKQ -sri -ihe -uNc -gpc -wgZ +eBI +ewS +iAR +fpG +ofZ +iNp aCe -uRP -jUj -sIK -lsK +wci +jty +kIG +sDN aCH -whN -jUj -kgY -rxG -mNp -rYc -rxG -rxG -rxG -kzz -rxG -rxG -rxG -gzY -rxG -jUj -jUj +ccS +jty +ddR +fsc +vjY +ifP +fsc +fsc +fsc +hQC +fsc +fsc +fsc +mQn +fsc +jty +jty vvj -bVB -oJR -oJR -oJR -vEx -oJR -mGW -oJR -oJR -oJR +iBU +kCk +kCk +kCk +iLa +kCk +pHy +kCk +kCk +kCk aao aao aao @@ -52379,24 +52379,24 @@ aao aao aao aao -pbl -vGQ -cHN -lmq -lmq -lmq -nga +nKy +sgH +qGA +rck +rck +rck +dVo acP acP acP -pUA +qOc adG -faD -xva -kNE -faD -faD -gOz +fuB +oWh +cdl +fuB +fuB +fJG adS adk adS @@ -52404,16 +52404,16 @@ aje ajM adS acr -tyj -yle +wgO +nOd alx adS -tyj -tyj +wgO +wgO acr -iiR -oHf -kCd +whV +dZm +fpb asI ayY ayY @@ -52424,83 +52424,83 @@ ayY axG ayY ayY -kVR +sDM asJ asJ aua asJ aDQ -wmM +mHE aws amI -wRD -xQc +oki +jEl aBR aKr aBR -paH +bGf apC -kTo -iQW -lbP -sCu -sCu -phy -sCu -sCu -sCu -iQW -wsP -sCu -rGI -bho -hwq -jcb +rNL +dtU +fmp +upY +upY +ptj +upY +upY +upY +dtU +eNC +upY +mEq +qJc +csr +wFK aof bbo -fwh -qdh -fwh +wwR +pVV +wwR bQe apD -rbK -gJG -iAV -pcg +iEE +eou +xPM +oOB aBR -paH -qzA -qzA -qzA -qzA -qzA -qzA -qzA +bGf +xjs +xjs +xjs +xjs +xjs +xjs +xjs awp -own -rof -rof -rof -vfr -wAJ -nDz +fUx +mCW +mCW +mCW +nxc +iro +vZN ayF -wVs -hfh -nRm -aTF -aTF -hTn -aTF -wgC -wTv -see -see -xXD -xiy +ihE +uKQ +dKV +cYs +cYs +wic +cYs +ugx +gFa +joH +joH +txj +sNm ayr -cwN -jvU +uIY +oKC bjA bjA bjA @@ -52508,65 +52508,65 @@ bjA azO meT meT -odm -tAp -lxO -czw -czw -czw -czw -czw +eRZ +xLA +xRT +eKk +eKk +eKk +eKk +eKk aAp -xmz -wEE -iGJ -lFE -lFE -lFE -caP -guN -qeY +pvn +uUD +gAq +rdK +rdK +rdK +iiE +gIb +cTQ aAp -lKQ -sxJ +eBI +jND aAp aAp aAp aAp aCe -uRP -gRc -jUj -lsK +wci +iuC +jty +sDN aCH -jei -gZs -kgY -rxG -rxG -xWE -iDU -rxG -iDU -dJj -iDU -rxG -iDU -qRr -ppR -jUj -iDU +eTG +dTY +ddR +fsc +fsc +dyq +iZr +fsc +iZr +stw +iZr +fsc +iZr +jMR +ewc +jty +iZr fin ibP -mGW -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +pHy +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -52596,23 +52596,23 @@ aao aao aao aao -pbl -pbl -qXh -lmq -lmq -lmq -efs +nKy +nKy +fyD +rck +rck +rck +ljP acP acP acP -pUA +qOc acq -fND -bMU -dbd -mfY -faD +fUX +vSF +iAP +wQO +fuB acp adS adk @@ -52621,16 +52621,16 @@ ajf ajN akt acr -bKL -kXZ +jkt +nRi adS anC -bKL -bKL +jkt +jkt amb -hNT -lmq -ikp +rYe +rck +rII asJ asJ aua @@ -52650,74 +52650,74 @@ asJ awn aws amI -wRD -gJG -xQc +oki +eou +jEl aBR -eaz -paH +bPA +bGf apC aof -dCP +sUj aof aof aof -dCP +sUj aof aof aof -dCP +sUj aof aof -wJK -rII -mCj -jcb +tGd +kYT +mqo +wFK aof bbp -fwh -uRB -fwh +wwR +vPU +wwR aYO apD -rbK -vyO +iEE +lnk aBR aBR aBR -paH -qzA -oUB -qjH -qjH -oUB -qzA -qzA +bGf +xjs +uER +fcZ +fcZ +uER +xjs +xjs awp -upw -vfr -vfr -rkz -tXM -wAJ -nDz +noJ +nxc +nxc +wfn +xfX +iro +vZN ayF -wVs -hfh -vHK -vfr -vfr -tOt -ino -nDz +ihE +uKQ +tuw +nxc +nxc +iOs +qUQ +vZN ayr ayr ayr ayr ayr ayr -cwN -jvU +uIY +oKC bjA bjA bjA @@ -52726,65 +52726,65 @@ azO meT meT meT -urr -lxO -czw -czw -czw -czw -czw +luN +xRT +eKk +eKk +eKk +eKk +eKk aAp -xmz -hyd -chW -chW -chW -ifq -rTS -uLW -qeY +pvn +dKt +owb +owb +owb +czj +bHQ +lOy +cTQ aAp -lKQ -oaC +eBI +vcN aBE -kQb -sxV -sNZ +gQK +lTs +iLk aCe -unc -tMB -tMB -plq +wGU +rpG +rpG +rtz aCH -ouE -rid -eDt -rid -lFK +sxY +lCV +bVU +lCV +cHC aCL -cvr -jUj -cvr +mZK +jty +mZK aCL -cvr -jUj -cvr +mZK +jty +mZK aCL -cvr -jUj -cvr +mZK +jty +mZK aCe aao -eYr +uRU rnc rnc -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -52813,41 +52813,41 @@ aao aao aao aao -pbl -pbl -tTw -lmq -lmq +nKy +nKy +ceH +rck +rck aao -lmq -nga +rck +dVo acP acP -pUA +qOc acp -dPi -suK -faD -faD -faD +pJL +wGP +fuB +fuB +fuB aer adS adS aiO ajg -bNR +gAy akt acr -ddG -bMq +quJ +nbX adS anD -ddG -ddG -oRY -hNT -lmq -ikp +quJ +quJ +jqT +rYe +rck +rII amn amn amn @@ -52866,107 +52866,107 @@ ayY aAC aAC aFP -wNC -wRD -gJG -gJG -sFP -gJG -paH +djd +oki +eou +eou +jwp +eou +bGf apC -pRV -oim -jNq +dfU +qqb +xPV aof -vaZ -oim -oPL +pLs +qqb +vEb aof -cAB -oim -pRV +err +qqb +dfU aof -gae +pza aof -wKh -lfe +oVS +tlE aof bbq bcd bcU -wsM +pKG aYO apC -rbK -gJG -sFP -xQc +iEE +eou +jwp +jEl aBR -paH -wRD -cop +bGf +oki +dIC gpR gpR -cop -psc -fZv +dIC +aEy +rZY awp -jQy -iXl -eWY -kxv -oSE -eWY -uYU +bnd +sWF +xIl +myE +tFR +xIl +hKJ ayF -wVs -hfh -cOZ -wAJ -lYc -kbN -nSF -hNR +ihE +uKQ +uWx +iro +dIl +vKO +oWz +xvf awp -cwN -olr -olr -olr -cwN -cwN -jvU +uIY +xbO +xbO +xbO +uIY +uIY +oKC bjA bjA bjA bjA azO meT -mVx -fcW -tAp -gbX -czw -czw -czw -czw -czw +cRi +aWS +xLA +fnq +eKk +eKk +eKk +eKk +eKk aAp -chr -cdH -xpm -xpm -gDZ -xpm -oSQ -xpm -hxv +tOP +mUs +jKo +jKo +vbx +jKo +bUk +jKo +noC aAp -lKQ -qdd -rOI -fQq -wNZ -wNZ +eBI +rdP +mXm +dbp +uyJ +uyJ aCe aCe aCe @@ -52975,33 +52975,33 @@ aCe aCe aCL aDj -qos +jcx aDj aCL aCe aCH -nQE +cnX aCH aCe aCH -nQE +cnX aCH aCe aCH -nQE +cnX aCH aCe aao aao aao aao -gVA -oJR -oJR -oJR -oJR -oJR -oJR +pAt +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -53029,18 +53029,18 @@ aao aao aao aao -wuF -gEW -tTw -lmq -lmq -lmq +wLX +sfo +ceH +rck +rck +rck aao aao -efs +ljP acP acP -pUA +qOc acp acp acp @@ -53062,12 +53062,12 @@ adk adk adS acr -hNT -ylp -pUA +rYe +hBd +qOc amI -wWC -jCI +bsZ +sxW amn asJ asJ @@ -53083,50 +53083,50 @@ asJ aua aua asJ -qyp -wRD -gJG -gJG -gJG -gJG -paH +cMO +oki +eou +eou +eou +eou +bGf apC -oJC -oim -oim +lCf +qqb +qqb aof -gBJ -oim -oim +cfq +qqb +qqb aof -oJC -ylj -bNi +lCf +etw +iwm aof -oht +pxh aof -wKh -lfe +oVS +tlE aof xKG aTa bcV bdt baJ -uAA -tkd -uXg -uXg -peW +vkQ +gGy +mzI +mzI +grG aBR -paH -gfo +bGf +ryo gpR gpR gpR gpR -dty -qzA +xat +xjs awM awM awM @@ -53138,87 +53138,87 @@ awM awM awp awp -eZh -vSY +vHY +wQt awp awp awp awp awp -jvU +oKC bjA bjA bjA -vrd -cwN -jvU +luc +uIY +oKC bjA bjA bjA bjA azO -fcW -gRZ -tAp -tAp -lxO -czw -czw -czw -czw -czw +aWS +uUL +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk aAp -rvT -wEE -caP -tXI -lFE -lFE -caP -lxL -ftY +mhB +uUD +iiE +rss +rdK +rdK +iiE +lAU +nfr aBy -lKQ -umV +eBI +vlh aBE -ftY -yds -wNZ +nfr +bSO +uyJ aBE -nwd +wZh bww bww hkv aCL -kLO -gdX -kgY -gdX -jaD +rSd +nNg +ddR +nNg +mtl aCe -uMy -sYM -sYM +hGC +dvT +dvT aCe -qmp -sYM -sYM +ixC +dvT +dvT aCe -sYM -uMy -sYM +dvT +hGC +dvT aCe aao aao aao aao -gVA +pAt aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aao aao @@ -53246,24 +53246,24 @@ aao aao aao aao -pbl -qXh -lmq -lmq -lmq -lmq -lmq +nKy +fyD +rck +rck +rck +rck +rck aao -efs +ljP acP acP -jww -sgD -sgD -sgD -sgD -sgD -knb +dgx +mZy +mZy +mZy +mZy +mZy +hfd acr ahu adS @@ -53273,19 +53273,19 @@ ajQ akt acr adk -ctK -kLM -xVq -iAs +bqT +pGw +jaW +hCC adk alZ -hNT +rYe acP -pUA +qOc amI -mmM -jCI -nWM +gTt +sxW +oVW asJ asJ asJ @@ -53296,134 +53296,134 @@ azS amn amn amn -qyp -hfH +cMO +qVs amn amn amn -wRD -gJG -mDE -iAV -iAV -paH +oki +eou +tSy +xPM +xPM +bGf apC -wvj -fLd -hjN +nAU +pHU +tKg aof -fPL -oim -pRV +nFI +qqb +dfU aof -wvj -oim -oEl +nAU +qqb +dLv aof -vZs +gYN aof -uRO -fAw +tSo +hxa aof bbr toA aYO fPB bQe -fkH -piB -oUB -qzA -wRD +jse +sRW +uER +xjs +oki aBR -paH -gfo +bGf +ryo gpR gpR gpR gpR -dty -qzA +xat +xjs awM -gmZ -gmZ -gmZ -gmZ -gmZ -gmZ -gmZ +xoP +xoP +xoP +xoP +xoP +xoP +xoP awM -hQZ -lQh -vBU -wAJ -fBd -vbH -sAr -pAt +qnh +nIi +tja +iro +tag +bOH +bFC +uKC awp -jvU +oKC bjA bjA bjA -mbO -cwN -jvU +pEC +uIY +oKC bjA bjA -krU +tnK azO azO azO -dNT -tAp -tAp -lxO -czw -czw -bRw -czw -czw +tSe +xLA +xLA +xRT +eKk +eKk +lQY +eKk +eKk aAp -bZv -hyd -chW -chW -chW -chW -chW -tdv -ijx -rzs -xpJ -dGl +gPQ +dKt +owb +owb +owb +owb +owb +kwf +tOj +pHQ +mkv +qEu aBQ -spD -pOj -xpm +cyd +pgo +jKo aBE -vlt +uoA bBv bww bBN aCL -daR -jUj -igV -kpx -uNh +gWQ +jty +ooe +jbP +fTJ aCe -sYM -sYM -sYM +dvT +dvT +dvT aCe -sYM -sYM -uMy +dvT +dvT +hGC aCe -sYM -sYM -sYM +dvT +dvT +dvT aCe aao aao @@ -53433,9 +53433,9 @@ aao aao aao aao -oJR -oJR -mGW +kCk +kCk +pHy aao aao aao @@ -53463,15 +53463,15 @@ aao aao aao aao -gEW -gEW -cHN -lmq -lmq -lmq -lmq -lmq -efs +sfo +sfo +qGA +rck +rck +rck +rck +rck +ljP acP acP acP @@ -53480,7 +53480,7 @@ acP acP acP acP -pUA +qOc acr ahu adS @@ -53490,20 +53490,20 @@ ajL ajj acr adk -wkP -mtN -pLw -iuq +pdk +uwF +cWW +duF adS acr -hNT +rYe acP -pUA +qOc amn -mAP -jCI +fcb +sxW amn -xYI +oMe asJ awY axH @@ -53511,19 +53511,19 @@ asJ asJ azT amn -oNL -wsN -gHJ -gHJ -oNL -mwk +qGk +wSa +wtr +wtr +qGk +tmy amn -wRD -pcg +oki +oOB aBR aBR aBR -paH +bGf apC apJ apJ @@ -53539,8 +53539,8 @@ apJ apC apC apC -fkb -ylI +gnE +fjA apC apC apC @@ -53548,99 +53548,99 @@ apC apC apC apC -sSX -gOQ -paH -wRD -xQc -paH -wRD -cop +hSI +bvl +bGf +oki +jEl +bGf +oki +dIC gpR -hhx -cop -paH -qzA +mju +dIC +bGf +xjs awM -saT -saT -saT -saT -pwx -saT -saT +hUT +hUT +hUT +hUT +uqy +hUT +hUT awM -vTr -cOZ -bpU -bqv -bpU -vfr -vfr -grC +fGp +uWx +vwt +dlq +vwt +nxc +nxc +lDr awp -jvU +oKC bjA bjA bjA -mbO -cwN -jvU +pEC +uIY +oKC bjA bjA -mbO -lky -miC -lky -xiY -tAp -gRZ -lxO -czw -czw -czw -czw -czw +pEC +kXG +hdI +kXG +uAm +xLA +uUL +xRT +eKk +eKk +eKk +eKk +eKk aAp -kEb -vyN -dnx -ped -dwh -dwh -eOz -xpJ -sCp +kPo +fkK +ngm +ppI +uys +uys +hMw +mkv +cZJ aBy -lKQ -nBd +eBI +uUy aBQ -kiI -nwu -nwu +kcD +gEv +gEv aBE -vlt +uoA bww bww bBO aCL -tEW -eLY -eDt -eLY -jVX +oht +srq +bVU +srq +cdU aCe -sYM -rZC -sYM +dvT +deD +dvT aCe -sYM -hlC -sYM +dvT +tVV +dvT aCe -qmp -hlC -uMy +ixC +tVV +hGC aCe aao aao @@ -53650,9 +53650,9 @@ aao aao aao aao -oJR -oJR -oJR +kCk +kCk +kCk aao aao aao @@ -53679,25 +53679,25 @@ aao aao aao aao -wuF -gEW -gEW -gEW -cHN -lmq -cpL -lmq -lmq -efs +wLX +sfo +sfo +sfo +qGA +rck +oEj +rck +rck +ljP acP acP -uFL -rxp -rxp -rxp -uFL +hgP +wbe +wbe +wbe +hgP acP -pUA +qOc acr acr acr @@ -53713,12 +53713,12 @@ acr acr acr acr -hNT +rYe acP -pUA +qOc amn -wWC -jCI +bsZ +sxW amn asJ awo @@ -53728,56 +53728,56 @@ ayp asJ azU amn -gHJ -dKT -soL -dKT -llh -qkO +wtr +pEy +xJl +pEy +okk +eJb amn -wRD +oki aBR aBR aBR aBR -wqI -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -qzA -qzA -oUB -oUB -oUB -oUB -oUB -oUB -oUB -dTB -gJG -fDs -qzA -uXg -qzA -qzA -oFa -nzJ -kWE -oFa -qzA -qzA +dXV +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +xjs +xjs +uER +uER +uER +uER +uER +uER +uER +pOs +eou +tPX +xjs +mzI +xjs +xjs +swJ +sZZ +cqR +swJ +xjs +xjs awM awM awM @@ -53787,37 +53787,37 @@ awM awM awM awM -eKP -cOZ -bpV +uVu +uWx +kiT bkU -bqX -vfr -xQn -txT +sjU +nxc +mDG +rEg awp -jvU +oKC bjA bjA bjA -mbO -cwN -cwN -sia -sia -cwN -lky -miC -lky -czw -kXq -kXq -czw -czw -czw -czw -czw -czw +pEC +uIY +uIY +cXJ +cXJ +uIY +kXG +hdI +kXG +eKk +src +src +eKk +eKk +eKk +eKk +eKk +eKk aAp aAp aAp @@ -53829,21 +53829,21 @@ aAp aAp aAp aAp -eWK -nBd +iqm +uUy aBE aBQ aBQ aBQ aBE aBE -ixd +clA aBE aBE aCL aCL aDj -qos +jcx aDj aCL aCe @@ -53867,9 +53867,9 @@ aDY aDY aao aao -oJR -oJR -oJR +kCk +kCk +kCk aao aao aao @@ -53896,46 +53896,46 @@ aao aao aao aao -xAs -gEW -gEW -xsB -gEW -pVj -cHN -lmq -lmq -efs +luH +sfo +sfo +oAv +sfo +imu +qGA +rck +rck +ljP acP acP -bFy -oie -gEY -wKY -roD +dMo +mql +dHY +tyq +vSn acP -jww -sgD -sgD -knb +dgx +mZy +mZy +hfd acr adS ajL akc -iEd -faD -uJP -htK -vDT -tKb -hkH +ivW +fuB +laS +cob +joD +tQQ +rve acr -hNT +rYe acP -pUA +qOc amn -diS -jCI +uLE +sxW amn asJ awo @@ -53945,14 +53945,14 @@ ayq ayY azV amn -sDo -uJw -gHJ -gHJ +foL +cRK +wtr +wtr amn amn amn -wRD +oki aBR aBR aBR @@ -53969,125 +53969,125 @@ aBR aBR aBR aBR -nFR -gJG -vyO +krC +eou +lnk aBR -paH -wRD +bGf +oki aBR aBR -nFR -gJG -gJG -vyO +krC +eou +eou +lnk aBR aBR -iNT -fDs -qzA -oUB -qzA -qzA -qzA -qzA -qzA -qzA -qzA -qzA +gSz +tPX +xjs +uER +xjs +xjs +xjs +xjs +xjs +xjs +xjs +xjs awp -iEl -hPs -ffY -vcH -qyA -qyA -qyA -wTr -jFX -cOZ -bpU +gbO +odo +llW +jrm +kYO +kYO +kYO +oHh +kae +uWx +vwt bkU -bpU -vfr -vfr -pLZ +vwt +nxc +nxc +pNE awp -jvU +oKC bjA bjA bjA -osD -olr -olr -olr -olr -cwN -lky -miC -lky -czw -wqD -edU -czw -czw -czw -czw -czw -czw +dAD +xbO +xbO +xbO +xbO +uIY +kXG +hdI +kXG +eKk +ljV +kPv +eKk +eKk +eKk +eKk +eKk +eKk aBv -kOb -kOb -kOb -kOb +nHY +nHY +nHY +nHY aBA -nsq -kkG -kkG -kkG -phj -xRm -tcL -nXi -nXi -wfW -tnJ -kkG -kkG -xRm -kkG -kkG -gHg -xdh -nXi -tcL -kkG +uhP +xcR +xcR +xcR +cKm +mFS +fTp +hST +hST +tgD +aBs +xcR +xcR +mFS +xcR +xcR +uMa +bLE +hST +fTp +xcR aDv -glZ -glZ -uRz -glZ -bOK -glZ -glZ -rdV -dNh -vJD -vJD -vJD -uRz -glZ -glZ -glZ -glZ -uRz +cyB +cyB +cWg +cyB +xzP +cyB +cyB +wEN +ppt +ksa +ksa +ksa +cWg +cyB +cyB +cyB +cyB +cWg aDY aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aao aab @@ -54113,63 +54113,63 @@ aao aao aao aao -lmq -xAs -rxD -gEW -gEW -gEW -bin -lmq -lmq -efs +rck +luH +mTF +sfo +sfo +sfo +dqO +rck +rck +ljP acP acP -bFy -oie -knb -wKY -roD +dMo +mql +hfd +tyq +vSn acP acP acP acP -pUA +qOc acr adS ajR acr -iEd -fnU -fnU -fnU -fnU -fnU -faD +ivW +fhp +fhp +fhp +fhp +fhp +fuB acr -hNT +rYe acP -dxr +bWT amI -mmM -jCI -nWM +gTt +sxW +oVW asJ awo dJc axK ayp asJ -yfX +qxk amn -cAp -lVT -gHJ -gHJ -rXT -kFu +eWp +jum +wtr +wtr +eep +hDK amn -wRD +oki aBR aBR aBR @@ -54183,128 +54183,128 @@ aBR aBR aBR aBR -eaz -sFP -sFP -gJG -gJG -gJG -sFP -paH -wRD -sFP -sFP -gJG -gJG -gJG -gJG -sFP -sFP -gJG -paH -wRD -gJG -paH -qzA -oUB -qjH -qjH -oUB -qzA -qzA +bPA +jwp +jwp +eou +eou +eou +jwp +bGf +oki +jwp +jwp +eou +eou +eou +eou +jwp +jwp +eou +bGf +oki +eou +bGf +xjs +uER +fcZ +fcZ +uER +xjs +xjs awp -iEl -bFY -vfr -vfr -vfr -xoO -vfr -vfr -nfM -cOZ -bpV +gbO +wDl +nxc +nxc +nxc +rPr +nxc +nxc +wxX +uWx +kiT bkU -bqX -wAJ -vBI -gDF +sjU +iro +cGP +nQa azG -cHk +kKP bjA bjA bjA bjA bjA -kdF -kDC -kDC -mbO -lky -miC -lky -xiY -gRZ -tAp -lxO -czw -czw -tXJ -czw -czw -vAX -okB -iJv -okB -okB -vAX -fpO -fDk -wmX -kyE -qbW -qbW -tmO -luF -cwT -hoH -fSc -rnM -qbW -qbW -hoH -cwT -qbW -qbW -qbW -tmO -cwT -mLW -imo -qyw -qyw -clc -lIF -lIF -qPb -gam -imo -jUP -cAO -cAO -cAO -gKI -pme -cAO -lOL -fJe +xaX +wup +wup +pEC +kXG +hdI +kXG +uAm +uUL +xLA +xRT +eKk +eKk +rPY +eKk +eKk +iSi +uyx +pMV +uyx +uyx +iSi +eZo +rUp +lQi +hZK +esn +esn +gQu +ckW +mVL +pQr +yek +hzO +esn +esn +pQr +mVL +esn +esn +esn +gQu +mVL +pGR +eRA +onz +onz +sBr +lQM +lQM +tRE +dvd +eRA +sRp +vnd +vnd +vnd +bYg +rxr +vnd +vFo +iOQ aDY aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aao aab @@ -54330,46 +54330,46 @@ aao aao aao aao -lmq -lmq -lmq -kau -gEW -gEW -qXh -lmq -lmq -efs +rck +rck +rck +ciB +sfo +sfo +fyD +rck +rck +ljP acP acP -bFy -knb -knb -qTx -roD +dMo +hfd +hfd +xfD +vSn acP acP acP acP -pUA +qOc acr adS ajS -nMu -nms -bCL -ojO -bCL -bCL -ldj -vHa +cMg +psD +gGT +lfw +gGT +gGT +sYO +rif acr -hNT +rYe acP -rAD +mWN amI -wWC -jCI +bsZ +sxW amn asJ awo @@ -54379,14 +54379,14 @@ ayp asJ azW amn -urq -fyi -gHJ -gHJ +eDy +xYF +wtr +wtr amn amn amn -wRD +oki aBR aBR aBR @@ -54400,129 +54400,129 @@ aBR aBR aBR aBR -tfl -uXg -uXg -uXg -uXg -uXg -uXg -qzA -lFj -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -qzA -wRD -vyO -paH -wRD -cop +xQl +mzI +mzI +mzI +mzI +mzI +mzI +xjs +ixV +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +xjs +oki +lnk +bGf +oki +dIC gpR gpR -cop -psc -qzA +dIC +aEy +xjs awp -ntp -jFX -wAJ -rof -wsT -aTF -wgC -vqG -oML -vBU -bpU -bqw -bpU -fSN -wgu -bNf +qkO +kae +iro +mCW +kKw +cYs +ugx +rcw +nyO +tja +vwt +hag +vwt +prh +rAa +wzf azG -cHk +kKP bjA bjA bjA bjA bjA -kdF -kDC -dvn -osD +xaX +wup +qFx +dAD azO azO azO -iMd -tAp -tAp -lxO -czw -czw -czw -czw -czw +oDb +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk aBv -dXb -dXb -pzB -dXb +cXw +cXw +eFl +cXw aBA -lRh -hYh -hYh -hPI -xRm -hYh -hYh -hYh -hYh -lUZ -kFV -tIy -wmX -jcw -tcL -wmX -gNq -xRm -hRm -xRm -xRm -etm -dHS -dHS -dHS -dHS -rSF -fDI -dHS -ktT -fDI -eQX +sfg +xZY +xZY +rtg +mFS +xZY +xZY +xZY +xZY +ygG +jHM +eHC +lQi +sOR +fTp +lQi +vkb +mFS +gFP +mFS +mFS +nMT +hOb +hOb +hOb +hOb +kpJ +vXz +hOb +xer +vXz +nzU aDX aDv aDv aDv aDv aDX -lvW -fJe +iBa +iOQ aDY aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -54547,63 +54547,63 @@ aao aao aao aao -lmq -cpL -lmq -kau -gEW -gEW -tTw -lmq -lmq -efs +rck +oEj +rck +ciB +sfo +sfo +ceH +rck +rck +ljP acP acP -ikp -knb -knb -knb -hNT +rII +hfd +hfd +hfd +rYe acP acP acP acP -pUA -mfM +qOc +mJY adS adk acr -faD -fnU -fnU -fnU -fnU -fnU -gQf +fuB +fhp +fhp +fhp +fhp +fhp +uQA acr -hhn +jdU acP -rAD +mWN amn amn amn amn -usJ +sNc awo axc awZ ayp asJ aws -ptR -wGh -dKT -gHJ -gHJ -rXT -ioU +vWl +vJr +pEy +wtr +wtr +eep +gkh amn -wRD +oki aBR aBR aBR @@ -54617,75 +54617,75 @@ aBR aBR aBR aBR -paH -qzA -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -oUB -nzu -pcg -paH -gfo +bGf +xjs +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +uER +ivn +oOB +bGf +ryo gpR gpR gpR gpR -dty -qzA +xat +xjs awp -nBx -wAJ -bPS -oML -kZj -vfr -vfr -rof -kXv -pEz -vfr -vfr -wAJ -vfr -dsD -bNf +hqi +iro +koz +nyO +csM +nxc +nxc +mCW +jiT +wjh +nxc +nxc +iro +nxc +cbg +wzf azG -jvU +oKC bjA bjA bjA bjA bjA -kdF -dLD -dLD -dvn -dvn +xaX +lTZ +lTZ +qFx +qFx azO meT -odm -tAp -tAp -lxO -czw -czw -czw -czw -czw +eRZ +xLA +xLA +xRT +eKk +eKk +eKk +eKk +eKk aBv aBv aBv @@ -54695,51 +54695,51 @@ aBv aBv aBv aBv -vuH -kkG +gdQ +xcR aBv aBw aBw aBw -sLb +pxB aBv aBv -hYh -hYh -tcL -mLD -mLD -hYh -hYh -hYh -hYh +xZY +xZY +fTp +oJN +oJN +xZY +xZY +xZY +xZY aDv -fJe -ihf -fJe -fJe -fJe -qym -lCN -mSB -fDI -nTH +iOQ +gRh +iOQ +iOQ +iOQ +ppF +cCw +pSV +vXz +nYT aDv -rqL -rqL -vGN -rqL +dpl +dpl +vst +dpl aDv -lvW -rsx +iBa +pmv aDY aao aao -oJR -mGW -oJR -oJR -oJR +kCk +pHy +kCk +kCk +kCk aao aab aaa @@ -54764,46 +54764,46 @@ aao aao aao aao -lmq -lmq -lmq -kau -gEW -qXh -lmq -lmq -lmq -efs +rck +rck +rck +ciB +sfo +fyD +rck +rck +rck +ljP acP acP -bFy -knb -knb -oie -roD +dMo +hfd +hfd +mql +vSn acP acP acP acP -pUA -rpW +qOc +bqU adS adk akc -iEd -poO -rGw -fnU -tHB -poO -sPY +ivW +dBu +gbi +fhp +qub +dBu +nrK acr -jFq +lFZ acP -pUA +qOc amI -wWC -jCI +bsZ +sxW amn asJ asJ @@ -54812,15 +54812,15 @@ axd asJ asJ azY -eRD -vQW -dKT -gHJ -gHJ +jNf +xDd +pEy +wtr +wtr amn amn amn -wRD +oki aBR aBR aBR @@ -54834,96 +54834,96 @@ aBR aBR aBR aBR -paH -wRD -gJG -gJG -gJG -gJG -gJG -gJG -gJG -iAV -iAV -iAV -pcg +bGf +oki +eou +eou +eou +eou +eou +eou +eou +xPM +xPM +xPM +oOB aBR aBR aBR -cvz -iAV -iAV -pcg +kEE +xPM +xPM +oOB aBR -paH -gfo +bGf +ryo gpR gpR gpR gpR -dty -qzA +xat +xjs awp -kSI -can -uAZ -can -cOZ -efK -vTI -phb -vTI -fDF -fDF -tsz -vTI -vTI -iIl -bNf +mMz +hGa +ihf +hGa +uWx +ngU +hcf +xmd +hcf +fig +fig +mSo +hcf +hcf +sIu +wzf awp -jvU +oKC bjA bjA nYV bjA bjA -iIm -uUc -dvn -hFe -qTW +wEZ +pyw +qFx +suX +oHe azO meT meT -odm -gRZ -lxO -czw -czw -czw -czw -czw +eRZ +uUL +xRT +eKk +eKk +eKk +eKk +eKk aBw -qUY -rGY -vSb -uIz -wOH -vSb -qOt +dvI +brr +iss +xsJ +cgq +iss +edZ aBv -vuH -kkG +gdQ +xcR aBw -mzn -dJQ -dJQ -rBy -bvy +omS +fjx +fjx +hnD +btz aBv aBA aCh -kRM +tRu aCh aBA aBA @@ -54939,24 +54939,24 @@ aDX aDX aDX aDX -kXg -nTH +pHi +nYT aDX aDX aDX aDX aDX aDX -lvW -fJe +iBa +iOQ aDY aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -54982,84 +54982,84 @@ aao aao aao aao -ibm -dsX -gEW -gEW -qXh -lmq -lmq -lmq -efs +nEr +crm +sfo +sfo +fyD +rck +rck +rck +ljP acP acP -bFy -knb -oie -gEY -roD +dMo +hfd +mql +dHY +vSn acP acP acP acP -pUA +qOc acr ajj adk akc -iEd -xQK -xQK -faD -iEd -xQK -krg +ivW +dOZ +dOZ +fuB +ivW +dOZ +vIq acr -hNT +rYe acP -pUA +qOc amI -mmM -jCI -nWM +gTt +sxW +oVW asJ asJ aua aua awn aua -veg +bLa amn -haQ -haQ -tdW -gHJ -rXT -ioU +wgk +wgk +wNq +wtr +eep +gkh amn -qzA -uXg -uXg -uXg -uXg -uXg -uXg -uXg -eaH -uXg -uXg -uXg -peW +xjs +mzI +mzI +mzI +mzI +mzI +mzI +mzI +wVz +mzI +mzI +mzI +grG aBR -paH -wRD -gJG -piT -iAV -iAV -iAV -iAV -pcg +bGf +oki +eou +gOJ +xPM +xPM +xPM +xPM +oOB aBR aBR aBR @@ -55072,20 +55072,20 @@ aBR aBR aBR aBR -xBc -wRD -cop +qQC +oki +dIC gpR -hhx -cop -paH -qzA +mju +dIC +bGf +xjs awp awp awp awp awp -uCM +gKV awp awp ayF @@ -55098,82 +55098,82 @@ ayF ayF awp awp -jEr -fdZ -fdZ -fdZ -fdZ -fdZ -dvn -dvn -dvn -pwQ -cxW +vFi +lDg +lDg +lDg +lDg +lDg +qFx +qFx +qFx +lFo +iqi azO meT meT meT -urr -lxO -czw +luN +xRT +eKk bvY -czw -oHV -czw +eKk +qGd +eKk aBw -tYe -cwT -cwT -cwT -cwT -cwT -cne +wyt +mVL +mVL +mVL +mVL +mVL +cKe aBv -fjX -pnJ +mky +wEj aBw -pjM -xRm -qMf -xRm -tYq +efv +mFS +kKm +mFS +qlo aBv -hMF -nLi -tcL -nLi -nLi -vPH -hBn -hBn -hBn -cKa -nLi -qES +ipP +dSh +fTp +dSh +dSh +pRo +vJP +vJP +vJP +qkL +dSh +hVH aDX -iTy -tbf -mRV -xel +qfj +mvW +yho +mch aDX -kXg -rNB +pHi +twP aDX -bNp -iuV -xel -xel +oet +fkb +mch +mch aDX -lvW -gwV +iBa +eoc aDY aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -55199,27 +55199,27 @@ aao aao aao aao -lmq -kau -gEW -gEW -qXh -vQQ -lmq -lmq -lmq -nga +rck +ciB +sfo +sfo +fyD +eji +rck +rck +rck +dVo acP -bFy -fnX -fwJ -eVL -roD +dMo +kxZ +rnM +ueY +vSn acP acP acP acP -pUA +qOc acr acr acr @@ -55232,19 +55232,19 @@ akj akj akj acr -hNT +rYe acP -pUA +qOc amn -mmM -jCI +gTt +sxW amn asJ -jxJ -oSB -fok -fok -fok +uHS +xfJ +bUq +bUq +bUq azZ amn amn @@ -55266,12 +55266,12 @@ anJ aoz anJ anJ -wRD +oki aBR -paH -wRD -gJG -vyO +bGf +oki +eou +lnk aBR aBR aBR @@ -55289,108 +55289,108 @@ aBR aBR aBR aBR -paH -qzA -oFa -nzJ -kWE -oFa -qzA -qzA +bGf +xjs +swJ +sZZ +cqR +swJ +xjs +xjs awp -kWw -owu +fZZ +rqx awp -kSP -cOZ -wEi +xjL +uWx +fPZ awp -qaW -qaW -qaW -qaW -qaW -qaW -qaW -qaW -qaW -qaW -jEr -eZC -kDC -aao -aao -mUS -mUS -mUS -mUS -pLg +ksj +ksj +ksj +ksj +ksj +ksj +ksj +ksj +ksj +ksj +vFi +gSY +wup +aao +aao +mzv +mzv +mzv +mzv +jii aao azO meT meT meT -urr -qVm -czw -czw -czw -czw -czw +luN +uJG +eKk +eKk +eKk +eKk +eKk aBv -fgu -wmX -wmX -xRm -jep -wmX -wub +oaQ +lQi +lQi +mFS +pkF +lQi +pMw aBw -vCA -juW +bnl +pOn aBv -lXI -xko -oPt -wnS -tYq +det +vHI +lyr +xYK +qlo aBv -sqU -xRm -tcL -wmX -wmX -wmX -xRm -xRm -xRm -xRm -xRm -tfX +bMy +mFS +fTp +lQi +lQi +lQi +mFS +mFS +mFS +mFS +mFS +jnW aDX -dQo -iTy -oRJ -iTy +hUl +qfj +lGM +qfj aDX -kXg -dcH +pHi +cRj aDX -iTy -iTy -oRJ -iTy +qfj +qfj +lGM +qfj aDX -lvW -fJe +iBa +iOQ aDY aao aao -oJR -oJR -oJR -mGW -oJR +kCk +kCk +kCk +pHy +kCk aao aab aaa @@ -55418,196 +55418,196 @@ aao aao aao aao -pbl -gEW -tTw -lmq -lmq -lmq -lmq -efs +nKy +sfo +ceH +rck +rck +rck +rck +ljP acP -uFL -gCm -gCm -gCm -uFL +hgP +gWg +gWg +gWg +hgP acP acP acP acP -jww -sgD -sgD -sgD -tqy -tqy -sgD -sgD -tqy -tqy -tqy -tqy -sgD -rgr +dgx +mZy +mZy +mZy +eVO +eVO +mZy +mZy +eVO +eVO +eVO +eVO +mZy +gHc amD -pUA +qOc amn -wWC -jCI +bsZ +sxW amn avG -jxJ -jxJ -rZn -jxJ -fok +uHS +uHS +jrv +uHS +bUq aws amn -eMK -fvM -oWi -uDb -fvM -jNJ +tvO +rYL +gTY +mNl +rYL +rRa amn -umO -gon -wAL -peZ -elX -peZ -nDH -peZ -elX -peZ -peZ +qAX +rHn +drn +rhP +jhQ +rhP +mGs +rhP +jhQ +rhP +rhP anJ -kVK +izJ aBR -paH -wRD -gJG -vyO -vFt -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -uXg -qzA -qzA -qzA -qzA -qzA -cvs -qzA -qzA +bGf +oki +eou +lnk +eWt +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +mzI +xjs +xjs +xjs +xjs +xjs +pVq +xjs +xjs awp -own -owu +fUx +rqx awp -kSP -cOZ -hKX +xjL +uWx +ohL awp -qaW -qaW -vfp -lcq -lcq -vfp -qaW -qaW -qaW -qaW -jEr -eZC -eZC -aao -aao -uEF -xjs -uEF -uEF -uEF +ksj +ksj +qYC +heQ +heQ +qYC +ksj +ksj +ksj +ksj +vFi +gSY +gSY +aao +aao +tWW +sHB +tWW +tWW +tWW aao azO meT meT meT -urr -lxO +luN +xRT bvY -czw +eKk bvY -czw -czw +eKk +eKk aBv -dLG -wmX -fuC -wmX -xRm -xRm -iPV -iUP -mnY -ddW +iVG +lQi +odE +lQi +mFS +mFS +vUj +nDF +yae +wBg aBv -vQL -xEX -vGl -qvo -tYq +nDH +frV +pbE +tAB +qlo aBv -wDy -xRm -gPt -tMy -mGb -tMy -cwT -iif -khi -xRm -xRm -tfX +fMQ +mFS +hVf +hfe +fJo +hfe +mVL +hfX +ucD +mFS +mFS +jnW aDX -riy -dAo -qzJ -dAo -kUV -lIF -cHx -kUV -dAo -dAo -qzJ -hOV +qMA +xXc +kqd +xXc +qwm +lQM +ppn +qwm +xXc +xXc +kqd +ptd aDX -lvW -fJe +iBa +iOQ aDY aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -55635,15 +55635,15 @@ aao aao aao aao -lmc -qXh -lmq -lmq -lmq +gxa +fyD +rck +rck +rck aao -lmq -lmq -nga +rck +rck +dVo acP acP acP @@ -55668,45 +55668,45 @@ acP acP acP acP -pUA +qOc amn -rum -jCI +epS +sxW amn asJ -jxJ -fhK -iiU -uEY -iiU +uHS +pGy +qEU +bKP +qEU aAa -wXJ -jCI -jCI -kPs -jCI -jCI -jCI -wXJ -umO -pXW -wAL -sDc -oUa -hXv -fio -ljz -gUj -lMV -peZ +ehI +sxW +sxW +kXO +sxW +sxW +sxW +ehI +qAX +tib +drn +svV +mnW +oJH +hUs +qQR +cRY +hRe +rhP aqz -wRD -sFP -paH -wRD -gJG -vyO -paH +oki +jwp +bGf +oki +eou +lnk +bGf asv asv asv @@ -55725,106 +55725,106 @@ atJ atJ asv asv -qzA -qzA -qzA -qzA -qzA -qzA +xjs +xjs +xjs +xjs +xjs +xjs awp -own -owu +fUx +rqx awp -kSP -cOZ -nDz +xjL +uWx +vZN awp -qaW -jEr +ksj +vFi oZQ wcw wcw oZQ -dil -qaW -qaW +vgO +ksj +ksj ofn -jEr -eZC -ugv +vFi +gSY +trI aao -uEF -xjs -uEF -xjs -uEF +tWW +sHB +tWW +sHB +tWW aao aao azO azO meT -mVx -gRZ -lxO -czw -gRZ -oHV +cRi +uUL +xRT +eKk +uUL +qGd bvY -czw +eKk aBw -sjh -xRm -fDk -wmX -wmX -lXf -dtc +txT +mFS +rUp +lQi +lQi +kex +hMH aBw -vCA -cUp +bnl +jEN aBv -nML -ipv -cwT -cwT -kUB +cqc +cXH +mVL +mVL +hno aBv -mEA -xRm -xRm -xRm -xRm -xRm -rIu -tcL -rIu -xRm -wmX -tfX +umX +mFS +mFS +mFS +mFS +mFS +sXM +fTp +sXM +mFS +lQi +jnW aDX -iTy -iTy -iTy -iTy +qfj +qfj +qfj +qfj aDX -kXg -rNB +pHi +twP aDX -iTy -eRv -usn -iTy +qfj +eDY +voF +qfj aDX -lvW -fJe +iBa +iOQ aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -55853,14 +55853,14 @@ aao aao aao aao -qXh -ibm -lmq +fyD +nEr +rck aao aao aao -lmq -efs +rck +ljP acP acP acP @@ -55885,163 +55885,163 @@ acP acP acP acP -pUA +qOc amI -mmM -jCI -nWM +gTt +sxW +oVW asJ -jxJ -jxJ -fok -hDd -fok +uHS +uHS +bUq +naf +bUq aAb amn -jCI -jCI -jCI -jCI -jCI -kpo +sxW +sxW +sxW +sxW +sxW +npe amn -umO -umO -wAL -peZ -let -peZ -sPZ -kfU -let -peZ -peZ +qAX +qAX +drn +rhP +vuA +rhP +frB +kpH +vuA +rhP +rhP anJ -mKB -gJG -paH -wRD -gJG -vyO -paH +ifO +eou +bGf +oki +eou +lnk +bGf asv -gln -bur -xJs -rrU -nad -hpS +pez +fov +aDo +iUy +fXd +eBS asv -nTW -nTW -cVE +xjq +xjq +urX asv -ckZ -xQw -pZH -ihV -xMc +tpH +tDU +vMR +qBq +rQF asv -qzA -qzA -qzA +xjs +xjs +xjs asv atJ atJ awp -cxE +uId awp awp awp -uCM +gKV awp awp -qaW -cch +ksj +wPp wcw iQw wcw wcw -pzv -qaW -qaW -cEs -jEr -eZC -eZC -ptH -xjs -xjs -xjs -uEF -uEF +xQC +ksj +ksj +eyc +vFi +gSY +gSY +pNQ +sHB +sHB +sHB +tWW +tWW aao aao aao azO azO -tAp -tAp -lxO -iuP +xLA +xLA +xRT +dxR bvY -czw -iuP -czw +eKk +dxR +eKk aBw -nCW -lwg -lwg -rDd -lap -lwg -brm +tLW +poA +poA +fQL +dpe +poA +ncw aBv -kgN -cUp +tEV +jEN aBv -nuT -hFn -gdf -hlA -nAI +ngx +fnt +lTF +dSt +vAQ aBv -dHL -wKH -xRm -oYd -lLn -oZv -idU -rnX -nOs -xlg -plu -lqu +krs +buX +mFS +utd +qyg +htZ +pVf +jPN +ePq +dyD +oXa +mYk aDX -vmi -iTy -iTy -iia +gtJ +qfj +qfj +tCs aDX -kXg -nTH +pHi +nYT aDX -btg -iTy -iTy -gtW +kmn +qfj +qfj +hhE aDX -lvW -fJe +iBa +iOQ aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -56070,14 +56070,14 @@ aao aao aao aao -qXh -lmq -lmq -lmq -lmq -lmq -lmq -efs +fyD +rck +rck +rck +rck +rck +rck +ljP acP acP acP @@ -56095,103 +56095,103 @@ acP acP acP acP -khI -jJV -jJV -jJV -jJV -jJV -jJV -knb +mOF +jqp +jqp +jqp +jqp +jqp +jqp +hfd amI -wWC -jCI +bsZ +sxW amn -xYI -sMU -qQQ -rip -qms -bPU +oMe +jIH +gjw +exH +eKG +aZo aws -wXJ -jCI -vqC -vqC -vqC -vqC -vqC -wXJ -umO -git -ixE -peZ -peZ -peZ -peZ -kfU -peZ -peZ -dxy +ehI +sxW +cAd +cAd +cAd +cAd +cAd +ehI +qAX +pPw +svk +rhP +rhP +rhP +rhP +kpH +rhP +rhP +sDU aqz -wRD -obx -paH -wRD -gJG -vyO -xBc +oki +pTk +bGf +oki +eou +lnk +qQC asH -xJs -bur -orE -ilI -gpY -orE -orE -orE -xJs -xJs +aDo +fov +vmK +urr +poD +vmK +vmK +vmK +aDo +aDo asv -xQw -fNT -pUp -pUp -fCM +tDU +fId +cOq +cOq +uPB asH -qzA -qzA -qzA +xjs +xjs +xjs asv -smg -twt -dLj -rvc -nPF -ozz -cNs -udl -lQG +mpp +sGE +nqR +wQY +rFd +vWK +jpG +bLn +juY ayF -dhr -cch +dRU +wPp wcw wcw wcw wcw -pzv -qaW -qaW -cEs -jEr -cRh -eZC -ptH -xjs -uEF -uEF -xjs -uEF +xQC +ksj +ksj +eyc +vFi +qQF +gSY +pNQ +sHB +tWW +tWW +sHB +tWW aao aao aao @@ -56214,8 +56214,8 @@ aBv aBv aBv aBv -vCA -oor +bnl +aYb aBv aBv aBv @@ -56223,10 +56223,10 @@ aBv aBv aBv aBv -wnQ -xRm -xRm -mrc +ntw +mFS +mFS +kjF aBA aCh aCh @@ -56241,24 +56241,24 @@ aDX aDX aDX aDX -nry -xAu +ieu +mQi aDX aDX aDX aDX aDX aDX -szI -clm +uLM +wuK aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -56287,15 +56287,15 @@ aao aao aao aao -gEW -cHN -lmq -lmq -lmq -lmq -lmq -lmq -nga +sfo +qGA +rck +rck +rck +rck +rck +rck +dVo acP acP acP @@ -56312,7 +56312,7 @@ acP akV acP acP -pUA +qOc ako ako ako @@ -56332,84 +56332,84 @@ ayv asJ aws amn -fvM -mfL -mfL -mfL -mfL -mfL +rYL +tSH +tSH +tSH +tSH +tSH amn -ntG -umO -wAL -peZ -jzc -peZ -peZ -kfU -elX -peZ -peZ +xlT +qAX +drn +rhP +gwG +rhP +rhP +kpH +jhQ +rhP +rhP anJ -wRD -gJG -paH -wRD -gJG -vyO -paH +oki +eou +bGf +oki +eou +lnk +bGf asH -bIv -bur -orE -xJs -gpY -orE -orE -kzn -orE -nxm +bRp +fov +vmK +aDo +poD +vmK +vmK +eME +vmK +hIh asv -uRj -qdn -tPv -mnC -qwZ +rVF +xLt +vJg +wqC +juQ avr -gpz -qzA -qzA +skS +xjs +xjs asv -lKi -twt +oHm +sGE awp -bFY -vfr -ldW -vfr -lLV -jvG +wDl +nxc +kcE +nxc +mmU +duP ayF -qaW -qef +ksj +xon oZQ wcw rHA oZQ -nzg -qaW -qaW -cEs -jEr -eZC -fRi -ptH -uEF -uEF -uEF -xjs -uEF -uEF +jyT +ksj +ksj +eyc +vFi +gSY +lhs +pNQ +tWW +tWW +tWW +sHB +tWW +tWW aao aao aao @@ -56427,55 +56427,55 @@ aao aao aao aBv -qOS -vTi -wSg +jln +olH +txd aBA -vCA -cUp +bnl +jEN aBv -hyU -hyU -hyU -hyU -hyU +nAq +nAq +nAq +nAq +nAq aBv -dHL -xRm -xRm -fWf -vPH -pYc -dOt -tHa -lez -cRS -qES -kkB +krs +mFS +mFS +crw +pRo +qYX +lbl +fPw +xjc +nmw +hVH +nDK aDX -vmi -iTy -iTy -lrJ +gtJ +qfj +qfj +nDp aDX -kXg -rNB +pHi +twP aDX -mhA -iTy -iTy -vmi +rQr +qfj +qfj +gtJ aDX -vvP -clm +qBY +wuK aDY aao aao aao -oJR -mGW -oJR -oJR +kCk +pHy +kCk +kCk aao aab aaa @@ -56504,32 +56504,32 @@ aao aao aao aao -gEW -pbl -pVj -dOh -pVj -cHN -lmq -lmq -lmq -gtJ -gtJ -nga +sfo +nKy +imu +gRA +imu +qGA +rck +rck +rck +rvk +rvk +dVo acP acP acP acP acP -khI -jJV -jJV -jJV -jJV -jJV -jJV -jJV -knb +mOF +jqp +jqp +jqp +jqp +jqp +jqp +jqp +hfd aku aoo apc @@ -56542,91 +56542,91 @@ atC ars amn amn -ufq -otP +rMc +kqx amn amn anJ -gUi +ajo anJ anJ anJ -llb +jLA amn amn amn amn -tgb -tgb -kwA -hVq -pAu -lMV -peZ -kgd -yja -lMV -uGT +yed +yed +uNP +veQ +ree +hRe +rhP +jkM +rjP +hRe +vwb anJ -bUC -uXg -qzA -wRD -gJG -vyO -paH +qKT +mzI +xjs +oki +eou +lnk +bGf asH aZa -bur -orE -vHh -kMr -nxm +fov +vmK +eeW +xuL +hIh asv -kAD -orE -xSI +xiE +vmK +gPe asv -pUp -ydP -pZH -pZH -wxB +cOq +xsn +vMR +vMR +gHg asH -qzA -qzA -qzA +xjs +xjs +xjs asv -hUE -jZq -mWZ -frL -oVq -ptn -rof -dAO -xqv +sWJ +tAR +brK +xSi +amF +xiS +mCW +rrG +jmr ayF -qaW -qaW -xXy -eRi -man -xXy -qaW -qaW -qaW -cEs -jEr -eZC -eZC -ptH -uEF -uEF -uEF -uEF -uEF -uEF +ksj +ksj +gmf +fhX +fWU +gmf +ksj +ksj +ksj +eyc +vFi +gSY +gSY +pNQ +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -56644,55 +56644,55 @@ aao aao aao aBv -vTi -vTi -wnB -rdq -mnY -iTK -hmF -iif -wmX -xRm -xRm -xRm +olH +olH +kox +lvi +yae +buh +unD +hfX +lQi +mFS +mFS +mFS aBv -tyb -xRm -xRm -wmX -wmX -xRm -xRm -xRm -xRm -wmX -oZJ -xRm +rFT +mFS +mFS +lQi +lQi +mFS +mFS +mFS +mFS +lQi +vrD +mFS aDX -iTy -iTy -iTy -iTy +qfj +qfj +qfj +qfj aDX -uzj -rNB +uWW +twP aDX -iTy -iTy -eRv -iTy +qfj +qfj +eDY +qfj aDX -vvP -lTh +qBY +caY aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -56721,32 +56721,32 @@ aao aao aao aao -gEW -gEW -sBx -gEW -gEW -gEW -cHN -lmq -lmq -lmq -lmq -lmq -nga +sfo +sfo +tzD +sfo +sfo +sfo +qGA +rck +rck +rck +rck +rck +dVo acP acP acP acP -pUA -uFL -ejq -ejq -ejq -ejq -knb -knb -knb +qOc +hgP +wPc +wPc +wPc +wPc +hfd +hfd +hfd aku aop apc @@ -56769,81 +56769,81 @@ aAg aAg aAg anJ -saS -peZ -peZ -peZ -peZ -peZ -peZ -hFh -let -peZ -peZ -kfU -let -vxI -peZ -wNE -qzA -qzA -qzA -wRD -gJG -vyO -paH +fOO +rhP +rhP +rhP +rhP +rhP +rhP +dIL +vuA +rhP +rhP +kpH +vuA +rxz +rhP +eKX +xjs +xjs +xjs +oki +eou +lnk +bGf asv -xJs -bur -qTn -xJs -pfb -orE +aDo +fov +hSR +aDo +hnX +vmK asv -rZy -rZy -rZy +dDk +dDk +dDk asv -rcq -qwZ -pZH -lgG -niL +tgI +juQ +vMR +fCq +fOQ asv -oLp -qzA -hFO +pjZ +xjs +dVE asv -tgy -lKv +hBi +rRD awp -bFY -rof -uHs -oco -oco -qne +wDl +mCW +fdF +qPw +qPw +xhb ayF -qaW -qaW -ybb -vfp -vfp -vfp -qaW -qaW -qaW +ksj +ksj +pHP +qYC +qYC +qYC +ksj +ksj +ksj awp -vAI -ugv -eZC -ptH -uEF -uEF -tsv -uEF -uEF -uEF +nNQ +trI +gSY +pNQ +tWW +tWW +iNt +tWW +tWW +tWW aao aao aao @@ -56861,55 +56861,55 @@ aao aao aao aBv -dcg -myl -xyi +nTt +idS +hiT aBA -vCA -juW +bnl +pOn aBv -eIr -nkM -gce -qYU -fqd +qed +eJx +ckH +qGP +lZY aBv -iqt -xRm -xRm -xRm -dYd -wmX -wmX -wmX -wmX -xRm -tfX +rvm +mFS +mFS +mFS +kLe +lQi +lQi +lQi +lQi +mFS +jnW aBA aDX -tlT -dAo -bQq -dAo -kUV -lIF -cHx -kUV -dAo -qzJ -dAo -hOV +xkT +xXc +qVL +xXc +qwm +lQM +ppn +qwm +xXc +kqd +xXc +ptd aDX -lvW -clm +iBa +wuK aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -56939,31 +56939,31 @@ aao aao aao aao -gEW -gEW -lmc -gEW -gEW -rxD -mKL -mKL -cHN -lmq -lmq -lmq -nga +sfo +sfo +gxa +sfo +sfo +mTF +eDP +eDP +qGA +rck +rck +rck +dVo acP acP acP -pUA -ejq -fnX -fnX -oie -knb -knb -knb -knb +qOc +wPc +kxZ +kxZ +mql +hfd +hfd +hfd +hfd aku aop apc @@ -56981,47 +56981,47 @@ apc apc ars anJ -sKF -wTU +fHc +gVS aCb aCb -fJG -ijl -fiu -fio -fio -fio -erY -fio -fio -fio -fio -fio -eWZ -peZ -peZ -tgg -ubd -nEn -qzA -qzA -wRD -gJG -vyO -paH +hfz +hah +xll +hUs +hUs +hUs +tjQ +hUs +hUs +hUs +hUs +hUs +cYQ +rhP +rhP +dbB +bGD +tzR +xjs +xjs +oki +eou +lnk +bGf asv -hCc -bur -xJs -xJs -wiZ -xJs +bvi +fov +aDo +aDo +cFA +aDo asv asv asv asv asv -fDu +hga asv asv asv @@ -57031,36 +57031,36 @@ avS asv asv asv -tgy -twt +hBi +sGE awp -nXy -rof -rof -vfr -jPd -bRT +hMZ +mCW +mCW +nxc +qsT +vIU ayF -mcT -jEr +ceV +vFi oZQ rzO bkU oZQ -hWF -qaW -qaW -cEs -jEr -eZC -eZC -ptH -uEF -uEF -uEF -uEF -uEF -uEF +eTx +ksj +ksj +eyc +vFi +gSY +gSY +pNQ +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -57078,55 +57078,55 @@ aao aao aao aBv -vTi -ntJ -vTi +olH +pjF +olH aBA -vCA -cUp +bnl +jEN aBw -wmX -wmX -xRm -xRm -xRm +lQi +lQi +mFS +mFS +mFS aBv -raD -plu -xRm -plu -plu -fXF -plu -plu -xRm -plu -ykS -fCv +kOm +oXa +mFS +oXa +oXa +dmF +oXa +oXa +mFS +oXa +nuU +oDJ aDX -iTy -iTy -hHw -iTy +qfj +qfj +mGy +qfj aDX -kXg -nTH +pHi +nYT aDX -iTy -iTy -hHw -iTy +qfj +qfj +mGy +qfj aDX -lvW -clm +iBa +wuK aDY aao aao aao -oJR -oJR -oJR -mGW +kCk +kCk +kCk +pHy aao aab aaa @@ -57157,30 +57157,30 @@ aao aao aao aao -gEW -gEW -gEW -tTw -lmq -xAs -rxD -bin -lmq -lmq -lmq -efs +sfo +sfo +sfo +ceH +rck +luH +mTF +dqO +rck +rck +rck +ljP acP acP acP -pUA -ejq -gEY -oie -knb -knb -oie -knb -knb +qOc +wPc +dHY +mql +hfd +hfd +mql +hfd +hfd aku aoq apd @@ -57203,81 +57203,81 @@ aAH aAg aAg anJ -kfU -peZ -peZ -sPZ -peZ -peZ -peZ -peZ -peZ -sPZ -peZ -aMU -fiu -ijl -gcZ +kpH +rhP +rhP +frB +rhP +rhP +rhP +rhP +rhP +frB +rhP +hPf +xll +hah +mVF anJ -sKd -qzA -qzA -wRD -gJG -vyO -paH +knn +xjs +xjs +oki +eou +lnk +bGf asv asv asv -eoQ -orE -sQG -bTP +uGZ +vmK +vZh +dQc aul bdy bdy asv -vQz -iee -jZq -jZq -jZq -jZq -jZq -uAW -jZq -jZq -jZq +tZv +vBZ +tAR +tAR +tAR +tAR +tAR +wPn +tAR +tAR +tAR bjM -twt +sGE awp -kFU -tBF -urL -imW -hSW -hjM +gEd +uCJ +ryZ +uIM +dSY +ufY awp -qaW -jEr +ksj +vFi mDk bkU bkU irN -hWF -yeD -gXr -cEs -jEr -eZC -cRh -ptH -sgU -uEF -sTK -uEF -uEF -uEF +eTx +kFT +vbk +eyc +vFi +gSY +qQF +pNQ +fck +tWW +wpQ +tWW +tWW +tWW aao aao aao @@ -57295,55 +57295,55 @@ aao aao aao aBv -qOS -vTi -qOS +jln +olH +jln aBA -vCA -spZ +bnl +sPy aBw -dsx -dsx -dsx -dsx -dsx +fyG +fyG +fyG +fyG +fyG aBv aBw aBw -vsn +piv aBw aBw aBv aBw aBw -vsn +piv aBw aBw aBv aDY aDY -xel -mRV -qlc +mch +yho +nbE aDX -kXg -nTH +pHi +nYT aDX -xqr -wvB -mRV -pas +rjM +fjY +yho +rla aDX -lvW -egZ +iBa +bfe aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -57376,32 +57376,32 @@ aao aao aao aao -qXh -lmq -lmq -lmq -lmq -kau -cHN -lmq -lmq -lmq -nga +fyD +rck +rck +rck +rck +ciB +qGA +rck +rck +rck +dVo acP acP -pUA -ejq -fwJ -knb -knb -oie -oie -knb -knb +qOc +wPc +rnM +hfd +hfd +mql +mql +hfd +hfd ako ako ako -jYW +nOG ako ako ako @@ -57420,53 +57420,53 @@ aAH aAg aAg anJ -kfU -sDc -xfw -lMV -sDc -xfw -hfR -nlG -nlG -nlG -nlG -uCu -peZ -kfU -peZ +kpH +svV +wRB +hRe +svV +wRB +sih +cJd +cJd +cJd +cJd +hQi +rhP +kpH +rhP anJ -moV -gUR -qzA -wRD -gJG -pcg -paH -qzA -qzA +itZ +cql +xjs +oki +eou +oOB +bGf +xjs +xjs asv -rgB -orE -kMr -mZg +bPl +vmK +xuL +frb aul aXU aXr asv -lKi +oHm bfk -ftZ -ftZ -ftZ -dPK -tPJ -tPJ -tTU -tPJ -soU -tPJ -tPJ +nGu +nGu +nGu +xMv +itL +itL +oDy +itL +szR +itL +itL awp awp blF @@ -57475,25 +57475,25 @@ ayF ayF ayF awp -qaW -jEr +ksj +vFi bkU bkU boA bkU -qQu -qaW -yeD -cEs -jEr -eZC -eZC -ptH -uEF -uEF -uEF -uEF -uEF +pBH +ksj +kFT +eyc +vFi +gSY +gSY +pNQ +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -57516,8 +57516,8 @@ aBv aBv aBv aBv -vCA -cUp +bnl +jEN aBv aBv aBv @@ -57525,11 +57525,11 @@ aBv aBv aBv aBv -eLO -eLO -eLO -eLO -eLO +eCC +eCC +eCC +eCC +eCC aBv bvP bvP @@ -57543,24 +57543,24 @@ aDX aDX aDX aDX -kXg -nTH +pHi +nYT aDX aDX aDX aDX aDX aDX -vvP -clm +qBY +wuK aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -57593,34 +57593,34 @@ aao aao aao aao -qXh -lmq -cpL -lmq -lmq -kau -gEW -cHN -lmq -lmq -efs +fyD +rck +oEj +rck +rck +ciB +sfo +qGA +rck +rck +ljP acP acP -pUA -ejq -knb -knb -knb -oie -knb -knb -oie +qOc +wPc +hfd +hfd +hfd +mql +hfd +hfd +mql ako -rpw -sxO -col -sxO -gbw +dhU +kSG +svm +kSG +kaA ako asL atD @@ -57637,45 +57637,45 @@ aAI anJ anJ anJ -fYC +dxA anJ anJ anJ anJ anJ anJ -wjB -ePa -vNd -hgv -lvr -nlG -kfU -uOv +cFH +sfT +iLD +fYr +uyI +cJd +kpH +cIL aqz -moV -qzA -qzA -qzA -uXg -uXg -qzA -qzA -qzA +itZ +xjs +xjs +xjs +mzI +mzI +xjs +xjs +xjs asv -ilp -orE -hFT -eDJ +xCB +vmK +jEz +rqU bcX bdz bcX -uXt -xOu -nOQ +bkY +yfr +kXZ asv asv -qgZ +xWP asv asv asv @@ -57692,25 +57692,25 @@ bkU bkT bkU awp -qaW -jEr +ksj +vFi oZQ bkU boA oZQ -ruZ -qaW -qaW -cEs -jEr -eZC -eZC +mcx +ksj +ksj +eyc +vFi +gSY +gSY ppp -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -57733,20 +57733,20 @@ aao aao aao aBv -qdS -fcY -pQu -onU -cDz -kkM -mZy -bKN +pbx +woq +xOl +teG +hmG +nCB +yle +cPn aBv -eLO -hkq -eLO -eLO -hkq +eCC +iKm +eCC +eCC +iKm aBv bvP bvP @@ -57759,25 +57759,25 @@ aDY bDx bDE fdy -kIk -dHS -jvL -fmW -vNX -vNX -vNX -vNX -tCm -gCD -clm +evf +hOb +nMC +cdI +leg +leg +leg +leg +dTW +xGa +wuK aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -57810,97 +57810,97 @@ aao aao aao aao -gEW -cHN -lmq -vQQ -lmq -kau -gEW -bin -lmq -lmq -lmq -nga +sfo +qGA +rck +eji +rck +ciB +sfo +dqO +rck +rck +rck +dVo acP -pUA -knb -knb -knb -knb -knb -knb -knb -oie +qOc +hfd +hfd +hfd +hfd +hfd +hfd +hfd +mql ako -lsP -sxO -col -sxO -psr +eFT +kSG +svm +kSG +rTJ ako asM atE apc ako -gzr +czZ aop apc -dLU -xGR -bXl +qUt +gNk +udL ako -hJa -imx -wnz +gyg +aFl +uRJ anJ -uto -fio -jGH -peZ -ehD -inc +tOJ +hUs +vBA +rhP +rEx +tGw anJ -peZ -peZ -oax -peZ -qjS -nlG -kfU -peZ +rhP +rhP +lVU +rhP +tNu +cJd +kpH +rhP anJ -moV -qzA -qzA -qzA -qzA +itZ +xjs +xjs +xjs +xjs asv asv asv asv asv -leY -xJs -nou -bur +qdN +aDo +fvO +fov aXr aXr aXU -ldZ -lKi -tZs +cMq +oHm +peZ asv -fnV -dEX -lzz -dEX -xbd +hVK +fAy +dsa +fAy +lzh asv -rdz -fOR -fOR -rdz +ssN +oCB +oCB +ssN awp bkU bkU @@ -57909,28 +57909,28 @@ bkU bkU bkU awp -qaW -qaW -sra -gQI -gQI -mWz -qaW -qaW -qaW +ksj +ksj +rau +hiO +hiO +tsC +ksj +ksj +ksj awp -jEr -cRh -eZC +vFi +qQF +gSY aao aao -uEF -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -57951,19 +57951,19 @@ aao aao aBv wXz -vJy -wmX +lUt +lQi wXz -xRm -xRm +mFS +mFS bAK -hDK +gSX aBv -eLO -eLO -eLO -eLO -eLO +eCC +eCC +eCC +eCC +eCC aBv bvP bCE @@ -57977,24 +57977,24 @@ bDy bDF bDM aDX -qym -clm -dHS -clm -waB -clm -clm -dcH -fJe -qym +ppF +wuK +hOb +wuK +bTQ +wuK +wuK +cRj +iOQ +ppF aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -58027,71 +58027,71 @@ aao aao aao aao -gEW -qXh -lmq -lmq -dsX -gEW -xsB -tTw -lmq +sfo +fyD +rck +rck +crm +sfo +oAv +ceH +rck aao -lmq -efs +rck +ljP acP -pUA -knb -oie -oie -knb -knb -knb -oie -gEY +qOc +hfd +mql +mql +hfd +hfd +hfd +mql +dHY ako -sxO -sxO -vCb -sxO -cOW +kSG +kSG +mfY +kSG +hzJ ako asN atE apc ako -mJD +oqC aop apc ako -kDr -vSs +tEP +kSB ako -hJa -imx -imx +gyg +aFl +aFl anJ -tei -peZ -peZ -peZ -peZ -peZ -gHr -peZ -peZ -peZ -peZ -hGd -nlG -kfU -uGT +eHd +rhP +rhP +rhP +rhP +rhP +fzB +rhP +rhP +rhP +rhP +xUI +cJd +kpH +vwb anJ -moV -qzA -qzA -qzA -qzA +itZ +xjs +xjs +xjs +xjs asv aXS aYs @@ -58105,19 +58105,19 @@ asv asv asv asv -cSG -lIz +lRO +mbJ asv -dEX -dEX -wvF -fnV -dEX +fAy +fAy +wVe +hVK +fAy asH -hfe -rKR -rKR -sGJ +ump +hvV +hvV +muE awp bkT blG @@ -58126,28 +58126,28 @@ bkU bkT bkU awp -qaW -qaW -qaW +ksj +ksj +ksj awp -cEs -cEs -cEs -cEs +eyc +eyc +eyc +eyc awp awp -jEr -eZC -eZC +vFi +gSY +gSY aao -mtJ -uEF -uEF -uEF -uEF -uEF -uEF -uEF +gaH +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -58167,20 +58167,20 @@ aao aao aao aBv -doc -tyo +peW +wBt ocp wXz bAa -irF +tIr bAu -kTg +gIp aBv -eLO -eLO -eLO -eLO -hkq +eCC +eCC +eCC +eCC +iKm aBv bvP bvP @@ -58196,22 +58196,22 @@ aDY aDX aDX aDX -mVN +hgk aDX aDX aDX aDX -gug +lTv aDX aDX aDY aao aao aao -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aab aaa @@ -58245,96 +58245,96 @@ aao aao aao aao -gEW -pVj -pVj -gEW -gEW -qXh -vQQ -lmq -aao -aao -lmq -nga -pUA -ejq -knb -oie -knb -knb -oie -fwJ -fwJ +sfo +imu +imu +sfo +sfo +fyD +eji +rck +aao +aao +rck +dVo +qOc +wPc +hfd +mql +hfd +hfd +mql +rnM +rnM ako -sxO -gDT -nNO -ese -goH +kSG +hvl +gwA +ntq +qoh ako asO atE apc ako -ruq +iPu aop axi ako ako ako ako -hJa -imx -imx +gyg +aFl +aFl anJ -xmL -xmL -bXq -oPr -mRM -pMj +tlT +tlT +dxS +dcf +cpx +hFu anJ -urW -mgr +fTr +lPI anJ -vyW -qjS -nlG -kfU -peZ +ove +tNu +cJd +kpH +rhP aqz -ycq -qvh -qvh -qvh -qvh -yhR +bph +tqf +tqf +tqf +tqf +meP bcX bcX bcX -jZq -jZq -jZq -uAW -uAW -uAW -jZq -wEB -jZq +tAR +tAR +tAR +wPn +wPn +wPn +tAR +vts +tAR beL -rTs +deW asv -igv -vHD -igv -fnV -fnV +niN +uPv +niN +hVK +hVK asv -hfe +ump bes bes -sGJ +muE awp awp awp @@ -58343,29 +58343,29 @@ awp awp awp awp -qaW -qaW -yeD -vfp -vfp -vfp -vfp -vfp -vfp -vfp -wqU -eZC -eZC -kwU -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +ksj +ksj +kFT +qYC +qYC +qYC +qYC +qYC +qYC +qYC +vvC +gSY +gSY +ePo +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -58384,20 +58384,20 @@ aao aao aao aBv -doc +peW bzm -kNz -nyg -xJR +xoK +kDh +sFJ bAu bAL -kTg +gIp aBv -eLO -hkq -xtG -eLO -eLO +eCC +iKm +cqv +eCC +eCC aBv bvP bvP @@ -58410,11 +58410,11 @@ aao aao aao aDY -oTJ -oTJ -jCW -oTJ -poz +tiz +tiz +wIy +tiz +cmK aDX fdy fdy @@ -58425,9 +58425,9 @@ aDY aao aao aao -oJR -oJR -oJR +kCk +kCk +kCk aao aao aab @@ -58460,50 +58460,50 @@ aao aao aao aao -wuF -mKL -mKL -gEW -gEW -gEW -gEW -tTw -lmq -lmq -lmq +wLX +eDP +eDP +sfo +sfo +sfo +sfo +ceH +rck +rck +rck aao -lmq -efs -pUA -ejq -knb -knb -knb -wKY +rck +ljP +qOc +wPc +hfd +hfd +hfd +tyq aao aao aao ako -wPY -sxO -qIa -yiu -sxO +rGm +kSG +gFU +jCp +kSG ako asP apc apc -qxc +pOS apc aop apc -dLU -xGR -bXl +qUt +gNk +udL ako -hJa -imx -imx +gyg +aFl +aFl anJ anJ anJ @@ -58518,51 +58518,51 @@ anJ anJ anJ anJ -ivM -jDz +unx +clh anJ -wer -oUB -oUB -oUB -qzA -ldZ +vzY +uER +uER +uER +xjs +cMq aXr aXr aXU -pqo -ftZ -ftZ -tPJ -tTU -tPJ -ftZ -ftZ -tPJ +vRU +nGu +nGu +itL +oDy +itL +nGu +nGu +itL beM -oUi +oQX asv -slD -pzq -bMl -dEX -dEX +iYs +iUZ +fjH +fAy +fAy asH -hfe -gst +ump +wQo bes -fss -fOR -fOR -fOR -fOR -fOR -fOR -fOR -fOR -rdz -qaW -jEr +jxL +oCB +oCB +oCB +oCB +oCB +oCB +oCB +oCB +ssN +ksj +vFi xJC mzV mzV @@ -58570,19 +58570,19 @@ mzV mzV mzV mzV -gEc -eZC -eZC -kwU -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +uEX +gSY +gSY +ePo +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -58602,12 +58602,12 @@ aao aao aBv byY -mjv -uDs +vkm +uGA wXz -liK +qrP wXz -jug +evg bAY aBv aBv @@ -58627,11 +58627,11 @@ aao aao aao aDY -dxZ -dxZ -dxZ -dxZ -hxa +tGX +tGX +tGX +tGX +hlh aDX bEz bEF @@ -58642,9 +58642,9 @@ aDY aao aao aao -oJR -lqD -oJR +kCk +tbL +kCk aao aao aab @@ -58676,73 +58676,73 @@ aao aao aao aao -rxD -rxD -sqB -gEW -gEW -gEW -gEW -qXh -lmq -lmq -lmq -lmq -lmq -lmq -efs -pUA -ejq -fwJ -fnX +mTF +mTF +mNK +sfo +sfo +sfo +sfo +fyD +rck +rck +rck +rck +rck +rck +ljP +qOc +wPc +rnM +kxZ aao aao aao aao aao ako -vUh -wVy -qIa -sxO -sxO +cKg +juM +gFU +kSG +kSG ako asQ atE atE -mra +ykq apc aop apc ako -kDr -vSs +tEP +kSB ako -odD -imx -imx -wwt -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx +mIs +aFl +aFl +tir +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl anT aQa aCZ anT -xAH -iCK -iCK -iCK -fPU +mQL +eOL +eOL +eOL +eSz asH aXU aYt @@ -58756,20 +58756,20 @@ asv asv asv asv -lKi -tZs +oHm +peZ asv -wfI -xEy -vYJ -dEX -qrT +wsa +rlE +dje +fAy +kWO asv -hfe -cPF +ump +cjc bes bes -qYG +xvS bes bes bes @@ -58777,9 +58777,9 @@ bes bes bes bes -sGJ -qaW -jEr +muE +ksj +vFi mzV mzV mzV @@ -58787,19 +58787,19 @@ mzV mzV mzV mzV -gEc -eZC -ugv -kwU -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +uEX +gSY +trI +ePo +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -58821,8 +58821,8 @@ aBv aBv aBv aBv -ldo -enV +voW +hYM aBv aBv aBv @@ -58834,10 +58834,10 @@ aao aao aao aao -ykN -jik -jik -bSC +rFh +sjD +sjD +ocW aao aao aao @@ -58859,9 +58859,9 @@ aDY aao aao aao -oJR -oJR -oJR +kCk +kCk +kCk aao aao aab @@ -58893,23 +58893,23 @@ aao aao aao aao -ibm -lmq -xAs -rxD -gEW -gEW -sqB -qXh -lmq -cpL -lmq -lmq -lmq -lmq -lmq -pUA -ejq +nEr +rck +luH +mTF +sfo +sfo +mNK +fyD +rck +oEj +rck +rck +rck +rck +rck +qOc +wPc aao aao aao @@ -58918,11 +58918,11 @@ aao aao aao ako -wPY -sxO -col -tBC -sxO +rGm +kSG +svm +drd +kSG ako asR atF @@ -58935,31 +58935,31 @@ ako ako ako ako -odD -imx -imx -imx -imx -imx -imx -imx -imx -sVT -imx -imx -imx -imx -imx -imx -iJz +mIs +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +mPp +aFl +aFl +aFl +aFl +aFl +aFl +xaD aQa aCZ -iJz -xAH -iCK -ude -ude -fPU +xaD +mQL +eOL +dkS +dkS +eSz asv aXV aYu @@ -58973,8 +58973,8 @@ bcY bcY aKn asv -lKi -tZs +oHm +peZ asv asv asv @@ -58982,9 +58982,9 @@ asv asv asv asv -rdz -lxK -gst +ssN +sqa +wQo bes bes bes @@ -58994,9 +58994,9 @@ bes bes bes bes -sGJ -rdz -jEr +muE +ssN +vFi mzV mzV mzV @@ -59004,18 +59004,18 @@ mzV mzV mzV mzV -gEc -eZC -vQY -vmr -uEF -uEF -mtJ -uEF -uEF -uEF -uEF -uEF +uEX +gSY +nXL +kHB +tWW +tWW +gaH +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -59026,8 +59026,8 @@ aao aao aao aao -oJR -oJR +kCk +kCk aao aao aao @@ -59038,9 +59038,9 @@ aao aao aao aao -bVB -oJR -oJR +iBU +kCk +kCk aao aao aao @@ -59051,9 +59051,9 @@ aao aao aao aao -bVB -oJR -vEx +iBU +kCk +iLa aao aao aao @@ -59065,20 +59065,20 @@ aao aao aao aao -nej -jik -jik -jik -jik -jik -jmr +wKn +sjD +sjD +sjD +sjD +sjD +nnl aao aao aao aao -oJR -oJR -oJR +kCk +kCk +kCk aao aao aab @@ -59110,21 +59110,21 @@ aao aao aao aao -lmq -lmq -lmq -lmq -xAs -gEW -gEW -qXh -lmq -lmq +rck +rck +rck +rck +luH +sfo +sfo +fyD +rck +rck aao aao aao aao -lmq +rck aao aao aao @@ -59148,35 +59148,35 @@ ako atE aop apc -dLU -xGR -bXl +qUt +gNk +udL ako -hJa -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx -imx +gyg +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl +aFl anT aQb aCZ anT -xAH -nno +mQL +qEa aKP aKP -fPU +eSz asv asv asv @@ -59185,23 +59185,23 @@ asv aXr baO aXr -xjX +kMI aXU aXr bdW asv -vYc +pMl bfq -jjR -kyS -twt -vwk -fov -twt -ium -rdz -ftf -mky +pmC +sGK +sGE +rFX +hPP +sGE +rYr +ssN +cnp +gqL bhr bes bes @@ -59211,9 +59211,9 @@ bes bes bes bes -sGJ -rdz -jEr +muE +ssN +vFi mzV eWo mzV @@ -59221,18 +59221,18 @@ dmB mzV mzV mzV -gEc -ugv -uKo -vmr -uEF -uEF -lkT -uEF -uEF -uEF -uEF -uEF +uEX +trI +juk +kHB +tWW +tWW +lCz +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -59242,11 +59242,11 @@ aao aao aao aao -oJR -mGW -oJR -oJR -oJR +kCk +pHy +kCk +kCk +kCk aao aao aao @@ -59254,10 +59254,10 @@ aao aao aao aao -jik -oJR -oJR -oJR +sjD +kCk +kCk +kCk aao aao aao @@ -59268,9 +59268,9 @@ aao aao aao aao -bVB -muQ -vEx +iBU +xAF +iLa aao aao aao @@ -59283,19 +59283,19 @@ aao aao aao aao -bVB -oJR -mGW -oJR -oJR -bSC +iBU +kCk +pHy +kCk +kCk +ocW aao aao aao aao -oJR -oJR -oJR +kCk +kCk +kCk aao aao aab @@ -59327,15 +59327,15 @@ aao aao aao aao -lmq -lmq -lmq -lmq -lmq -kau -pnh -yeA -hWH +rck +rck +rck +rck +rck +ciB +ote +hmT +eGe aao aao aao @@ -59356,7 +59356,7 @@ aou aph apR aou -ssm +sJE ako asS atG @@ -59366,11 +59366,11 @@ atE aop apc ako -kDr -vSs +tEP +kSB ako -hJa -imx +gyg +aFl anT anX anX @@ -59386,39 +59386,39 @@ anT anT anT anT -tZo -dEx +qhB +taC anT -xAH -nno +mQL +qEa aKP aVY -ixH -imd -ncK -ncK -ncK +bKu +nHP +bHM +bHM +bHM asv asv asv asv asv -qjt +dqk bdA aXU -xjX -lKi +kMI +oHm bfr -cPW -kpt -cPW -cPW -rxW -tPJ -ldZ -rdz -ftf -mky +fMx +iYM +fMx +fMx +rCV +itL +cMq +ssN +cnp +gqL bes bes bes @@ -59428,9 +59428,9 @@ bes bes bes bes -sGJ -rdz -ftf +muE +ssN +cnp mzV mzV mzV @@ -59438,18 +59438,18 @@ mzV mzV mzV mzV -gEc -vQY -uKo -vmr -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +uEX +nXL +juk +kHB +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -59457,24 +59457,24 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao -bVB -oJR -oJR -jmr +iBU +kCk +kCk +nnl aao aao aao @@ -59484,10 +59484,10 @@ aao aao aao aao -ykN -oJR -oJR -vEx +rFh +kCk +kCk +iLa aao aao aao @@ -59500,20 +59500,20 @@ aao aao aao aao -bVB -oJR -oJR -oJR -vEx +iBU +kCk +kCk +kCk +iLa aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -59544,15 +59544,15 @@ aao aao aao aao -cpL -lmq -pLe -vQQ -lmq -ehE -pnh -pnh -bRO +oEj +rck +uPL +eji +rck +sqs +ote +ote +bOf aao aao aao @@ -59574,7 +59574,7 @@ api apS aqV aqV -qJF +pDm apd atH aud @@ -59586,35 +59586,35 @@ ako ako ako ako -odD -imx +mIs +aFl anU -dQK -lsR -gmM -vTs -gyM +rWB +lKC +cLZ +usx +jIG anT -dBu -sLM -rod -uKx +cAI +dPj +vEn +ixo aMl -eVm +jyD aCZ -iri +ckN aQd -dCd +qrK anT -xAH -nno +mQL +qEa aKP aKP aKP -ewU -fPU -ncK -ncK +cJZ +eSz +bHM +bHM asH baj baP @@ -59624,8 +59624,8 @@ bda aXr bdY asv -lKi -gly +oHm +eQp asv asv asv @@ -59633,65 +59633,65 @@ asv asv asv asv -rdz -rdz -iKN -iKN -iKN -iKN -iKN -iKN -iKN -iKN -iKN -iKN -rdz -rdz -ftf +ssN +ssN +qeQ +qeQ +qeQ +qeQ +qeQ +qeQ +qeQ +qeQ +qeQ +qeQ +ssN +ssN +cnp bes mzV eWo mzV mzV mzV -kUM -ugv -uKo +vxb +trI +juk aao aao -uEF -uEF -uEF -rMU -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +sfF +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -vEx +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +iLa aao aao aao @@ -59701,10 +59701,10 @@ aao aao aao aao -bVB -oJR -oJR -vEx +iBU +kCk +kCk +iLa aao aao aao @@ -59717,20 +59717,20 @@ aao aao aao aao -bVB -oJR -oJR -oJR -oJR -bSC +iBU +kCk +kCk +kCk +kCk +ocW aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -59761,15 +59761,15 @@ aao aao aao aao -hWH -hWH -hWH -hWH -vHn -pnh -pnh -pnh -hWV +eGe +eGe +eGe +eGe +pis +ote +ote +ote +soh aao aao aao @@ -59787,7 +59787,7 @@ amE hqO ako ako -wMA +cLW ako ako ako @@ -59799,92 +59799,92 @@ ako avI apc axk -xAM -ufk -bZT -ufk -ncu -ufk -dtv +rrZ +hdq +llA +hdq +pIa +hdq +iZR aCY aCZ aET aMQ aCZ anT -dBu -rod -lEe -wpF -dCd +cAI +vEn +xuf +vyh +qrK aCZ -lfj +neO aOW -woN +rwe aQm aqU -xAH -xMI -ryo -ryo -ryo -iCK -fPU -ncK -ncK +mQL +qsC +lKR +lKR +lKR +eOL +eSz +bHM +bHM asv aXr baO aXr -xjX +kMI aXr aXr bdY asv -lKi -tZs +oHm +peZ asv -onB -pbe -nKJ -uVp -tVZ +sza +tBi +cJj +uNQ +hDt asv -tzB -rdz -rdz -rdz -rdz -rdz -rdz -rdz -rdz -rdz -rdz -rdz -rdz -rdz -ftf +xpm +ssN +ssN +ssN +ssN +ssN +ssN +ssN +ssN +ssN +ssN +ssN +ssN +ssN +cnp bes mzV mzV mzV mzV mzV -gEc -cRh -uKo +uEX +qQF +juk aao aao -uEF -uEF -uEF -ecW -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +ylL +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -59892,25 +59892,25 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -cAf -oJR -oJR -oJR -oJR -oJR -jik -jmr +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +mlx +kCk +kCk +kCk +kCk +kCk +sjD +nnl aao aao aao @@ -59918,10 +59918,10 @@ aao aao aao aao -bVB -oJR -oJR -vEx +iBU +kCk +kCk +iLa aao aao aao @@ -59934,20 +59934,20 @@ aao aao aao aao -eYr -oJR -oJR -oJR -vEx +uRU +kCk +kCk +kCk +iLa aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -59980,12 +59980,12 @@ aao aao aao aao -fkW -vhK -pnh -pnh -kyp -wdv +rXc +dQX +ote +ote +gwa +bTL aao aao aao @@ -60003,52 +60003,52 @@ pmS pmS hqO ako -wfJ -hIq -qgz -kHB -wUT +dwa +hFM +vbf +nwt +iql ako -kSf -txn -kSf +xuF +vNo +xuF ako avJ apc axl -mra -imx -env -xVW -imx -imx -lUQ +ykq +aFl +oYi +nyf +aFl +aFl +hbY aCo aCZ aEU aMQ gAE anT -dBu -qTS -iNd -mRS +cAI +uPg +sVe +nRd aCZ -dCd +qrK aML -bWZ +rnq aQf -oCl +vaw aqU -goG -mhs -mhs -mhs -mhs -mhs -ncK -ncK -ncK +gHS +bPX +bPX +bPX +bPX +bPX +bHM +bHM +bHM asv asv asv @@ -60058,88 +60058,88 @@ aXr bdB bdW asv -lKi -tZs +oHm +peZ asv -onB -sLj -nDG -nDG -qus +sza +sUu +bHn +bHn +uBi asv -tzB -rdz -fOR -fOR -fOR -fOR -fOR -rdz -rdz -rdz -rdz -fOR -fOR -fOR -jau +xpm +ssN +oCB +oCB +oCB +oCB +oCB +ssN +ssN +ssN +ssN +oCB +oCB +oCB +klr lvy lvy lvy bes mzV -kUM -eZC +vxb +gSY aao aao aao aao aao -ipi -ipi -npw -ipi -ipi -ipi -ipi -ipi +nZC +nZC +kcq +nZC +nZC +nZC +nZC +nZC aao aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -mGW -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -vEx +kCk +kCk +kCk +kCk +kCk +kCk +pHy +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +iLa aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -jmr +kCk +kCk +kCk +kCk +kCk +kCk +nnl aao aao aao @@ -60152,19 +60152,19 @@ aao aao aao aao -bVB -oJR -oJR -bSC +iBU +kCk +kCk +ocW aao aao aao aao -oJR -oJR -mGW -oJR -oJR +kCk +kCk +pHy +kCk +kCk aao aab aaa @@ -60198,11 +60198,11 @@ aao aao aao aao -fDX -pIJ -iHS -ggP -lyA +fwo +dlT +nUk +gYQ +lnf aao aao aao @@ -60220,25 +60220,25 @@ pmS pmS hqO ako -wfJ -hIq -rjm -cQf -wUT +dwa +hFM +gxV +qdy +iql ako -rjm -rjm -cQf +gxV +gxV +qdy ako apc avJ apc ako -xYZ +jVv arD arD -nhh -imx +pdK +aFl anU aCZ aCZ @@ -60246,55 +60246,55 @@ aQa aCZ aCZ anT -mmo -rod -iNd -wpF -dCd +fmT +vEn +sVe +vyh +qrK aCZ -jbB +xey aOY -dnl +hXM aCo aqU -sXA -imd -imd -imd -imd -imd -ncK -ncK -ncK +iNe +nHP +nHP +nHP +nHP +nHP +bHM +bHM +bHM asv aXr aXr aXr -xjX +kMI aXr aXU bdW asv -lKi -tZs +oHm +peZ asv -qmS -sLj -cze -nDG -qus -hsa -tzB -ftf -gst +iPs +sUu +skY +bHn +uBi +xpJ +xpm +cnp +wQo bes bes bes bes -sGJ -rdz -rdz -kYy +muE +ssN +ssN +vwN bes bes bes @@ -60303,8 +60303,8 @@ bes bes bes mzV -kUM -wBg +vxb +pua aao aao aao @@ -60312,51 +60312,51 @@ aao aao aao kBn -mSH -mSH -mSH -mSH -mSH -tNJ -mSH +xmB +xmB +xmB +xmB +xmB +wwr +xmB kBn aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -eYr -oJR -muQ -oJR -oJR -vEx -oJR -oJR -oJR -oJR -mGW -oJR -oJR -oJR -oJR -oJR -oJR -vEx +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +uRU +kCk +xAF +kCk +kCk +iLa +kCk +kCk +kCk +kCk +pHy +kCk +kCk +kCk +kCk +kCk +kCk +iLa aao aao aao @@ -60369,19 +60369,19 @@ aao aao aao aao -bVB -oJR -vEx +iBU +kCk +iLa aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -60415,103 +60415,103 @@ aao aao aao aao -jUQ -hXO -hWH -hWH -cAn +tdY +hpE +eGe +eGe +qnd aao aao aao aao aao aao -hWH -cPt +eGe +fCW aao aao aao pmS -vSX -nDt +rTi +cyS pmS hqO ako -fZq -hIq -rjm -rjm -wUT +mBe +hFM +gxV +gxV +iql aml -rjm -rjm -cQf +gxV +gxV +qdy aml apc apc apc aku -xYZ +jVv arD arD -nhh -imx +pdK +aFl anU -fvm +kkU aCo aEU aCZ -vTs +usx anT -hGx -fai -fdW -uNI +mVJ +lqS +lOB +oAr aCZ -dCd +qrK aOa -kwT +fBY aMQ -nuq +esx aqU -xAH -iCK -ude -ude -ude -iCK -fPU -ncK -ncK +mQL +eOL +dkS +dkS +dkS +eOL +eSz +bHM +bHM asH baj -dRu +fEI bbC asv asv -qgZ +xWP asv asv -lKi -jDi -iKq -icB -nfj -qPu -chK -nDG -ldZ -tzB -ftf -cPF +oHm +uvF +npL +gxw +fSN +lKZ +ydC +bHn +cMq +xpm +cnp +cjc bes bes bes bes -dyW -fOR -fOR -jau +hnr +oCB +oCB +klr vVZ aao vVZ @@ -60529,53 +60529,53 @@ aao aao aao aao -mRY -mRY -mRY -mRY -mRY -mRY -mRY +dzU +dzU +dzU +dzU +dzU +dzU +dzU aao aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -mGW -oJR -oJR -oJR -oJR -bVB -oJR -oJR -oJR -oJR -jik -jik -jik -jik -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +pHy +kCk +kCk +kCk +kCk +iBU +kCk +kCk +kCk +kCk +sjD +sjD +sjD +sjD +kCk +kCk rnc rnc rnc rnc -oJR -oJR -jik -jmr +kCk +kCk +sjD +nnl aao aao aao @@ -60586,19 +60586,19 @@ aao aao aao aao -bVB -lqD -vEx +iBU +tbL +iLa aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -60630,76 +60630,76 @@ aao aao aao aao -cIc -xop -piH -mah -mah -ljM -mah +lfg +cHg +fsH +sDV +sDV +rOp +sDV aao aao aao aao -hWH -uYr -hWH -hWH +eGe +hZF +eGe +eGe aao aao aao aao -hWH -cPt -hhU +eGe +fCW +lUX aao ako -wfJ -hIq -jzs -rjm -cQf -qoL -cQf -cQf -cQf -qoL +dwa +hFM +fnU +gxV +qdy +qDF +qdy +qdy +qdy +qDF apc apc apc aku -xYZ +jVv arD arD -nhh -imx +pdK +aFl anU -fvm +kkU aCo aEW aCZ -vTs +usx anT -fqJ -fai -fdW -bKi -dCd +tDe +lqS +lOB +ppl +qrK aML -tML +pKs aPa -oCl +vaw aRq anT -xAH -iCK -xyR +mQL +eOL +jHR aVY aKP -ewU -fPU -ncK -ncK +cJZ +eSz +bHM +bHM asv asv asv @@ -60709,26 +60709,26 @@ bdb aXr aXr asv -lKi -tPJ -ldZ -qus -nDG -nDG -nDG -rWk +oHm +itL +cMq +uBi +bHn +bHn +bHn +hkS asv -rdz -den -cPF +ssN +qhs +cjc bes bes bes ejP -mSH -mSH -mSH -mSH +xmB +xmB +xmB +xmB vVZ rjw fCb @@ -60748,11 +60748,11 @@ kBn aao aao kBn -mSH -mSH -mSH -mSH -mSH +xmB +xmB +xmB +xmB +xmB vVZ aao aao @@ -60760,39 +60760,39 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -bVB -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +iBU +kCk +kCk +kCk +kCk +kCk rnc rnc rnc rnc -bSC +ocW aao aao aao aao -bVB -oJR -oJR -vEx +iBU +kCk +kCk +iLa aao aao aao @@ -60803,19 +60803,19 @@ aao aao aao aao -bVB -oJR -bSC +iBU +kCk +ocW aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -60847,105 +60847,105 @@ aao aao aao aao -lRW -pnh -yeA -hWH -cPt -hWH -hWH +gdK +ote +hmT +eGe +fCW +eGe +eGe aao aao aao -koV -hWH -hWH -hWH -hWH -vHn +nNY +eGe +eGe +eGe +eGe +pis aao aao aao -uYr -cPt -hWH +hZF +fCW +eGe aao ako -dWf -ivd -vrS -gmX -laD +cmH +iFk +qfi +oIi +oIW amm -gmX -gmX -bTA +oIi +oIi +vTM aml atE aww apc aku -xYZ +jVv arD arD -nhh -imx +pdK +aFl anU -fvm -cMB +kkU +jPh aEU aCZ -vTs +usx anT -fqJ -fai -fdW -qKt +tDe +lqS +lOB +jUt aCZ -lfj +neO jUc -bWZ +rnq aQi -eDG -obd -xAH -tGX -nno +wWe +qRl +mQL +kly +qEa aKP aKP -ewU -fPU -ncK -ncK -ncK -ncK -ncK -ncK +cJZ +eSz +bHM +bHM +bHM +bHM +bHM +bHM asv bwA bdD aXU asv -lKi -tPJ +oHm +itL asv -fuS -fuS -uxQ -piG -uHd +xEj +xEj +wpI +cUY +dHJ asv -ftf -mky -cPF +cnp +gqL +cjc bes bhr aao aao -iqz -bKw -bKw -fEd +oUL +lxq +lxq +wPD brD fCb fCb @@ -60965,38 +60965,38 @@ kBn aao aao aao -uLk -uLk -uLk -uLk -uLk -uLk -uLk -uLk +vyr +vyr +vyr +vyr +vyr +vyr +vyr +vyr aao aao aao aao -vEx -oJR -oJR -mGW -oJR -oJR -oJR -oJR -oJR -oJR -oJR +iLa +kCk +kCk +pHy +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao -ykN -oJR -oJR -oJR +rFh +kCk +kCk +kCk rnc rnc -bSC +ocW aao aao aao @@ -61006,11 +61006,11 @@ aao aao aao aao -oJR +kCk hAj -oJR -oJR -jmr +kCk +kCk +nnl aao aao aao @@ -61018,21 +61018,21 @@ aao aao aao aao -ykN -jik -oJR -vEx +rFh +sjD +kCk +iLa aao aao aao aao aao aao -mGW -oJR -oJR -oJR -oJR +pHy +kCk +kCk +kCk +kCk aao aab aaa @@ -61064,80 +61064,80 @@ aao aao aao aao -hWH -ehE -pnh -koV -hWH -hWH -fkW -hWH +eGe +sqs +ote +nNY +eGe +eGe +rXc +eGe aao aao -yeA -hWH -hWH -hWH -vHn -pnh -pnh -pnh -pnh -jAZ -koF -cPt +hmT +eGe +eGe +eGe +pis +ote +ote +ote +ote +dsg +pyN +fCW aao ako -wfJ -hIq -cQf -cQf -gcm +dwa +hFM +qdy +qdy +hhT ako -nQU -cQf -uVf +jKu +qdy +nyx ako atE apc apc aku -xYZ +jVv arD arD -nhh -imx +pdK +aFl anU -vTs +usx aCZ aQa aCZ -gyM +jIG anT -fqJ -fai -fdW -ilq -dCd +tDe +lqS +lOB +dva +qrK aCo -xiM +wpr aPb -ujm +fXm aRr -lUQ -xAH -iCK -nno +hbY +mQL +eOL +qEa aKP aKP -ewU -fPU -ncK -ncK -ncK -ncK -ncK -ncK +cJZ +eSz +bHM +bHM +bHM +bHM +bHM +bHM asv asv asv @@ -61152,17 +61152,17 @@ asv asv asv asv -ftf -mky -xhS +cnp +gqL +pkp bes bes aao aao -dmP -jNz -tsn -kMe +nvX +kwF +xMq +jZT aao aao rjw @@ -61172,7 +61172,7 @@ aao aao aao pcF -rYW +obP dIb dIb dIb @@ -61182,38 +61182,38 @@ kBn aao aao aao -rMU -rMU -uEF -uEF -uEF -uEF -uEF -uEF +sfF +sfF +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao aao aao -oJR -vEx -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +iLa +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao -bVB -oJR -oJR -vEx -oJR -oJR -oJR +iBU +kCk +kCk +iLa +kCk +kCk +kCk aao aao aao @@ -61223,33 +61223,33 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -jik -jik -jik -jik -jik -jik -jik -oJR -oJR -oJR -bSC +kCk +kCk +kCk +kCk +kCk +sjD +sjD +sjD +sjD +sjD +sjD +sjD +kCk +kCk +kCk +ocW aao aao aao aao aao -oJR -oJR -oJR -oJR -mGW -oJR +kCk +kCk +kCk +kCk +pHy +kCk aao aab aaa @@ -61281,105 +61281,105 @@ aao aao aao aao -cPt -cpJ -pnh -yeA -hWH -hWH -wSK -hWH -aao -aao -gMI -jAZ -jAZ -swD -pnh -pnh -pnh -pnh -pnh -pnh -yeA -uYr +fCW +vXG +ote +hmT +eGe +eGe +fzk +eGe +aao +aao +ufO +dsg +dsg +oef +ote +ote +ote +ote +ote +ote +hmT +hZF aao ako -btW -hIq -cQf -kHB -wUT +nKK +hFM +qdy +nwt +iql ako -kSf -kSf -kSf +xuF +xuF +xuF ako avJ avJ axi ako -xYZ +jVv arD arD -nhh +pdK anT anT anY anY -tZo -xXZ +qhB +uwA anY anT -fqJ -lrh -uKr -eEi +tDe +wxW +ygZ +nkO aCZ -nuq +esx aOe -opP +jlG aQk -dCd +qrK anT -xAH -iCK -hhV +mQL +eOL +fVS aKP aKP -ewU -ixH -imd -imd -imd -imd -imd -imd -imd -imd -imd -imd -fOR -fOR -fOR -fOR -fOR -fOR -fOR -fOR -fOR -iMF -jau -cPF +cJZ +bKu +nHP +nHP +nHP +nHP +nHP +nHP +nHP +nHP +nHP +nHP +oCB +oCB +oCB +oCB +oCB +oCB +oCB +oCB +oCB +cUA +klr +cjc bes bes bes aao kBn -mSH -mSH -mSH -mSH +xmB +xmB +xmB +xmB vVZ brE fCb @@ -61398,39 +61398,39 @@ dIb kBn aao aao -uEF -uEF -rMU -uEF -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +sfF +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao -ykN -oJR -oJR -oJR -vEx -oJR -oJR -oJR +rFh +kCk +kCk +kCk +iLa +kCk +kCk +kCk aao aao aao @@ -61440,33 +61440,33 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -mGW -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +pHy +kCk +kCk rnc -bSC -oJR +ocW +kCk aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aab aaa @@ -61498,32 +61498,32 @@ aao aao aao aao -uYr -hWH -ehE -pnh -koV -hWH -hWH -vHn +hZF +eGe +sqs +ote +nNY +eGe +eGe +pis aao aao -gMI -pnh -pnh -pnh -pnh -pnh -pnh -pnh -pnh -lRW -nGA -uYr +ufO +ote +ote +ote +ote +ote +ote +ote +ote +gdK +mGz +hZF aao akL akU -eCl +tsv akU akU akL @@ -61532,14 +61532,14 @@ akL akL akL akL -lLg +iIE apc avJ ako -xYZ +jVv arD arD -nhh +pdK anU aCi aCZ @@ -61549,54 +61549,54 @@ aCo aGL anT anT -fYk +ujm anT anT -dCd +qrK aMO -cCt +kTH aPa -jst +rFY aCo aqU -xAH -nno +mQL +qEa aKP aKP aKP -shY -ude -iCK -iCK -ude -ude -iCK -iCK -iCK -iCK -ude -ude -mky -mky -mky -mky -mky -mky -mky -mky -mky -tOS -rKR -xhS +hGs +dkS +eOL +eOL +dkS +dkS +eOL +eOL +eOL +eOL +dkS +dkS +gqL +gqL +gqL +gqL +gqL +gqL +gqL +gqL +gqL +oeY +hvV +pkp bes bes bes bes aao -iqz -bKw -bKw -fEd +oUL +lxq +lxq +wPD vVZ vVZ vVZ @@ -61614,24 +61614,24 @@ dIb iZA kBn aao -uEF -uEF -uEF -lkT -uEF -mtJ -uEF -uEF -uEF -uEF -usL +tWW +tWW +tWW +lCz +tWW +gaH +tWW +tWW +tWW +tWW +rIR aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -61640,14 +61640,14 @@ aao aao aao aao -bVB -oJR -oJR -lwc -vEx -oJR -oJR -oJR +iBU +kCk +kCk +tMF +iLa +kCk +kCk +kCk aao aao aao @@ -61657,9 +61657,9 @@ aao aao aao aao -oJR -jik -oJR +kCk +sjD +kCk rnc rnc rnc @@ -61669,20 +61669,20 @@ rnc rnc rnc rnc -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk aao aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aao aab @@ -61717,46 +61717,46 @@ aao aao aao aao -ehE -pnh -pnh -jAZ -jAZ -wdv +sqs +ote +ote +dsg +dsg +bTL aao aao -cpJ -pnh -pnh -pnh -pnh -lRW -lRW -pnh -yeA -hWH -hWH +vXG +ote +ote +ote +ote +gdK +gdK +ote +hmT +eGe +eGe aao aao akL -raW -hIq -jnY -rjm -qmy -rjm -jqQ -cQf -kaX -nOg +gkq +hFM +qVC +gxV +suN +gxV +qUd +qdy +iMn +iDx ant ant ant ako -xYZ +jVv arD arD -nhh +pdK anU aCj aCo @@ -61765,55 +61765,55 @@ aEU aCZ aCZ anT -kLl -iNd -dVC +ukf +sVe +wyQ anT aCZ -uIb +ioj aOg -wzC +wls aQm -eDG +wWe aqU -xAH -nno +mQL +qEa aKP aKP aKP aKP aKP -shY -iCK +hGs +eOL aKP aKP -shY -ude -ude -hhV +hGs +dkS +dkS +fVS aKP aKP -qYG -mky -mky -mky -mky -mky -mky -mky -xhS +xvS +gqL +gqL +gqL +gqL +gqL +gqL +gqL +pkp iVi bes bes bes -tfB -dzX -dzX -aao -prX -mRY -mRY -tnb +xZa +qkD +qkD +aao +moW +dzU +dzU +bib vVZ fCb fCb @@ -61830,25 +61830,25 @@ dIb dIb kBn kBn -rMU -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -mtJ -uEF -gQl -oJR -oJR -oJR -mGW -oJR -oJR +sfF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +gaH +tWW +vmp +kCk +kCk +kCk +pHy +kCk +kCk aao aao aao @@ -61857,14 +61857,14 @@ aao aao aao aao -bVB -oJR +iBU +kCk rnc -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -61874,32 +61874,32 @@ aao aao aao aao -bVB -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +iBU +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aao aab @@ -61935,66 +61935,66 @@ aao aao aao aao -gMI -pnh -pnh -pnh -pnh -nGA +ufO +ote +ote +ote +ote +mGz aao -hWH -ehE -pnh -pnh -nGA -hWH -hWH -cpJ -nGA -hWH +eGe +sqs +ote +ote +mGz +eGe +eGe +vXG +mGz +eGe aao aao aao akL -cQf -hIq -cQf -rjm -rjm -rjm -cQf -rjm -cQf +qdy +hFM +qdy +gxV +gxV +gxV +qdy +gxV +qdy akL -lBk -env -env -env -xCm -oWz -kYK -nhh +nYg +oYi +oYi +oYi +hvF +gmy +iWn +pdK anU -bIk +mjc aCo aCo aEZ aGb aEd -gse -jgR -nAD -fZw +msY +lPt +cdS +lYH anT -rRc +jdO aMQ -xiM +wpr aPb -dCd +qrK aCZ aqU -xAH -nno +mQL +qEa aVt aKP aKP @@ -62011,27 +62011,27 @@ aKP aKP aKP bes -qYG -rKR -rKR -rKR -rKR -rKR -xhS +xvS +hvV +hvV +hvV +hvV +hvV +pkp bes iVi bes bes bes -fVB -mky -mky -aao -prX -mRY -mRY -tnb -shy +xOX +gqL +gqL +aao +moW +dzU +dzU +bib +lph kTs fCb bsH @@ -62046,25 +62046,25 @@ dIb dIb dIb ssE -rMU -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -gQl -oJR -oJR -oJR -oJR -oJR +sfF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +vmp +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -62074,48 +62074,48 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -jmr -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +nnl +kCk aao -ykN -jik -jik -jik -jik -jik -oJR -oJR -oJR -oJR -oJR -oJR -mGW -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +rFh +sjD +sjD +sjD +sjD +sjD +kCk +kCk +kCk +kCk +kCk +kCk +pHy +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -62152,45 +62152,45 @@ aao aao aao aao -rDM -pnh -pnh -pnh -yeA -hWH -wSK -hWH -ehE -pnh -yeA -hWH -hWH -uYr -hWH -wSK -hWH +uSY +ote +ote +ote +hmT +eGe +fzk +eGe +sqs +ote +hmT +eGe +eGe +hZF +eGe +fzk +eGe aao aao aao akL -cQf -nzn -gmX -gmX -fCE -gmX -bTA -cQf -gnx +qdy +btZ +oIi +oIi +rke +oIi +vTM +qdy +rzN akL -etK -uEN -uEN -uEN -uEN -uEN -dyq -nhh +mHA +nTW +nTW +nTW +nTW +nTW +pJp +pdK anT aCl aDa @@ -62198,21 +62198,21 @@ aDa aFa aEU aCZ -lUQ -fai -cPQ -sMB +hbY +lqS +jMW +eXB anT aCZ -dCd +qrK aCZ -gBY +aLk aQn -dCd +qrK anT -xAH -iCK -xyR +mQL +eOL +jHR aKP aKP aKP @@ -62239,16 +62239,16 @@ bes iVi bes bes -tfB -mky -mky +xZa +gqL +gqL aao aao -prX -mRY -mRY -tnb -shy +moW +dzU +dzU +bib +lph fCb fCb fCb @@ -62263,23 +62263,23 @@ dIb dIb dIb ssE -rMU -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -gQl -oJR -oJR -oJR +sfF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +vmp +kCk +kCk +kCk aao aao aao @@ -62291,48 +62291,48 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -mGW -vEx -oJR -ykN -oJR -oJR -oJR -oJR -oJR -oJR -oJR -vEx -mGW -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +pHy +iLa +kCk +rFh +kCk +kCk +kCk +kCk +kCk +kCk +kCk +iLa +pHy +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao -oJR -oJR -oJR -lqD -oJR -oJR +kCk +kCk +kCk +tbL +kCk +kCk aao aao aao @@ -62370,44 +62370,44 @@ aao aao aao aao -rDM +uSY abO -pnh -nGA -uYr -hWH -vHn -pnh -pnh -yeA -hWH -hWH -hWH -hWH +ote +mGz +hZF +eGe +pis +ote +ote +hmT +eGe +eGe +eGe +eGe aao aao aao aao aao akL -wPr -cQf -lnr -cQf -eFq -cQf -plj -cQf -plj +ftN +qdy +hVS +qdy +iFq +qdy +dHN +qdy +dHN akL -xYZ -uEN -nWG -kgV -dEU -vTX -dyq -nhh +jVv +nTW +eCc +uCZ +oYN +uNH +pJp +pdK anT aCm aCZ @@ -62416,20 +62416,20 @@ aCZ aQa aCZ anT -rod -iNd -jXZ +vEn +sVe +sjE anT -wQA +tVC aEd -xxY +tZS aPh -iri +ckN aCZ aqU -xAH -iFn -nno +mQL +owr +qEa aKP aKP aKP @@ -62456,15 +62456,15 @@ bes iVi bes bes -fVB -lAl +xOX +iAX aao aao aao -prX -mRY -mRY -tnb +moW +dzU +dzU +bib vVZ fCb kTs @@ -62480,21 +62480,21 @@ dIb dIb kBn kBn -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -mtJ -uEF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +gaH +tWW gio -uEF -gQl -oJR +tWW +vmp +kCk aao aao aao @@ -62508,48 +62508,48 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk rnc rnc rnc -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk rnc -bSC +ocW aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -mGW -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +pHy +kCk +kCk aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -62588,16 +62588,16 @@ aao aao aao aao -gMI -yeA -hWH -cHu -hWH -ehE -pnh -pnh -nGA -hWH +ufO +hmT +eGe +cAY +eGe +sqs +ote +ote +mGz +eGe aao aao aao @@ -62617,14 +62617,14 @@ akL akL akL akL -xYZ -uEN -nWG -bjq -aao -pvJ -vTX -nhh +jVv +nTW +eCc +bpH +aao +oIr +uNH +pdK anU aCn aCZ @@ -62634,19 +62634,19 @@ aQa aCZ anT anT -fYk +ujm anT anT aEU -eDG +wWe aML -tML +pKs aQo -jst +rFY aqU -wgA -kEv -nno +ncl +keo +qEa aKP aKP aKP @@ -62673,15 +62673,15 @@ bes iVi bes bes -fVB -mky +xOX +gqL aao aao aao -dqQ -lZG -lZG -vyY +kAm +mnB +mnB +pSW vVZ kTs fCb @@ -62694,20 +62694,20 @@ pcF kBn kBn kBn -rYW +obP kBn -uEF -uEF -uEF -uEF -mtJ -uEF -uEF -uEF -uEF -uEF -uEF -usL +tWW +tWW +tWW +tWW +gaH +tWW +tWW +tWW +tWW +tWW +tWW +rIR aao aao aao @@ -62724,25 +62724,25 @@ aao aao aao aao -ykN -vEx -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +rFh +iLa +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk rnc -oJR -oJR -oJR -oJR -oJR -oJR -vEx -oJR +kCk +kCk +kCk +kCk +kCk +kCk +iLa +kCk aao aao aao @@ -62751,22 +62751,22 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -62806,12 +62806,12 @@ aao aao aao aao -mbN -rKL -rKL -rKL -mbN -mbN +eCf +xov +xov +xov +eCf +eCf aao aao aao @@ -62825,23 +62825,23 @@ aao aao aao aao -dub -env -env -env -env -xVW -xVW -xVW -env -xCm -uEN -uEN -bjq +jzs +oYi +oYi +oYi +oYi +nyf +nyf +nyf +oYi +hvF +nTW +nTW +bpH aao aao -frS -nhh +cXL +pdK anU aCo aCZ @@ -62850,20 +62850,20 @@ aCo aQa aCZ anT -gVe +yei aJA -lXM +qEY aEd -jBO +pIf aCZ -lfj +neO aPi -lHQ +vbv aQm aqU -wgA -ybU -nno +ncl +fky +qEa aKP aKP aKP @@ -62890,15 +62890,15 @@ bes iVi bes bes -fVB +xOX aao aao aao aao -ukj -lfG -lfG -gGB +qXM +vFu +vFu +oGq pbr pbr pbr @@ -62911,19 +62911,19 @@ pcF aao aao aao -mHf -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +mYH +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -62941,25 +62941,25 @@ aao aao aao aao -bVB -vEx -oJR -oJR -oJR -oJR +iBU +iLa +kCk +kCk +kCk +kCk aao aao aao aao aao -bVB -oJR -oJR -oJR -muQ -oJR -bSC -oJR +iBU +kCk +kCk +kCk +xAF +kCk +ocW +kCk aao aao aao @@ -62968,21 +62968,21 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -63022,13 +63022,13 @@ aao aao aao aao -lJe -daF -daF -hnK -daF -daF -lJe +mjb +wqH +wqH +vvd +wqH +wqH +mjb aao aao aao @@ -63038,27 +63038,27 @@ aao aao aao aao -kSE +qyU aao aao aao aao aao aao -uEN -rRV -uEN -uEN -uEN -nWG -uEN -uEN -uEN -oZn -pvJ +nTW +vYU +nTW +nTW +nTW +eCc +nTW +nTW +nTW +gZi +oIr aao -frS -nhh +cXL +pdK anU aCp aDb @@ -63068,19 +63068,19 @@ aQa aCZ anT aIF -xLP +jCN aCZ -eDG +wWe aMp -eDG +wWe aCo -ucA +sPl aQq -wwH +bnc anT -wgA -sFl -nno +ncl +mXo +qEa aKP aKP aKP @@ -63111,33 +63111,33 @@ aao aao aao aao -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao aao aao aao -uEF -uEF -mtJ -uEF -rMU -uEF -uEF -uEF -uEF -uEF +tWW +tWW +gaH +tWW +sfF +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -63158,25 +63158,25 @@ aao aao aao aao -bVB -vEx -oJR -oJR -oJR -oJR +iBU +iLa +kCk +kCk +kCk +kCk aao aao aao aao aao -bVB -oJR -oJR -oJR -oJR -vEx -oJR -oJR +iBU +kCk +kCk +kCk +kCk +iLa +kCk +kCk aao aao aao @@ -63186,18 +63186,18 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -mGW -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +pHy +kCk +kCk aao aao aao @@ -63239,13 +63239,13 @@ aao aao aao aao -lJe -ygr -quI -quI -quI -jnU -lJe +mjb +mDF +lTK +lTK +lTK +eAa +mjb aao aao aao @@ -63255,9 +63255,9 @@ aao aao aao aao -izn -dtr -bNe +vwY +fKO +dZf aao aao aao @@ -63265,23 +63265,23 @@ aao aao aao aao -uLK -uLK +mst +mst aao aao -nWG -uEN -nWG -oZn -wyB -ffj -nhh +eCc +nTW +eCc +gZi +kgc +vcO +pdK anW anW anW anW anW -uGw +nNb anW anW anW @@ -63295,24 +63295,24 @@ anW anW anW anW -sXA -sFl -nno +iNe +mXo +qEa aKP aKP aKP aKP -hIp -pKM -mhs -pKM -pKM -pKM -mhs -pKM -pKM -mhs -lxK +sUv +xSS +bPX +xSS +xSS +xSS +bPX +xSS +xSS +bPX +sqa bes bes bes @@ -63328,32 +63328,32 @@ aao aao aao aao -uEF -uEF -lek -lek -lek -iyP -uEF -ecW -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -rMU -uEF -uEF -uEF -uEF +tWW +tWW +dQn +dQn +dQn +sKM +tWW +ylL +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +sfF +tWW +tWW +tWW +tWW aao aao aao @@ -63375,25 +63375,25 @@ aao aao aao aao -bVB -vEx -oJR -oJR -oJR -oJR +iBU +iLa +kCk +kCk +kCk +kCk aao aao aao aao aao -eYr +uRU rnc rnc rnc rnc -bSC -oJR -oJR +ocW +kCk +kCk aao aao aao @@ -63404,17 +63404,17 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -63456,13 +63456,13 @@ aao aao aao aao -lJe -daF -daF -daF -daF -daF -lJe +mjb +wqH +wqH +wqH +wqH +wqH +mjb aao aao aao @@ -63470,56 +63470,56 @@ aao aao aao aao -pcG -dtr -vbA -vbA -vbA -bNe +urs +fKO +wJf +wJf +wJf +dZf aao aao aao aao aao -jeg -pvJ -pvJ -lMO +eIC +oIr +oIr +phg aao aao -uEN -uEN -uEN -uEN -nWG -qMP -imx +nTW +nTW +nTW +nTW +eCc +vjA +aFl anW -hnG -uBH -hFA -pPx -rpH +fjD +jSl +bMQ +cGF +pHj anW -iwj -hnG -hnG +nir +fjD +fjD anW -hnG +fjD anW -iwj -iwj -iwj +nir +nir +nir anW -ncK -sXA -ybU -nno +bHM +iNe +fky +qEa aKP aWL aKP aKP -fPU +eSz atb atb atP @@ -63528,8 +63528,8 @@ atP atP atP atb -mQn -ftf +iXd +cnp bes bes bes @@ -63544,31 +63544,31 @@ aao aao aao aao -uEF -uEF -uEF -uEF -uEF -uEF -uEF -lek -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -rMU -uEF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +dQn +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +sfF +tWW aao aao aao @@ -63592,12 +63592,12 @@ aao aao aao aao -bVB -vEx -oJR -mGW -oJR -oJR +iBU +iLa +kCk +pHy +kCk +kCk aao aao aao @@ -63605,12 +63605,12 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -63621,16 +63621,16 @@ aao aao aao aao -oJR -mGW -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +pHy +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -63673,80 +63673,80 @@ aao aao aao aao -fwM -fwM -fwM -fwM -fwM -fwM +iMR +iMR +iMR +iMR +iMR +iMR aao aao -vbA -vbA -vbA -vbA -vbA -vbA -cSp -vbA +wJf +wJf +wJf +wJf +wJf +wJf +qSU +wJf xFZ anj -vbA -vbA +wJf +wJf aao aao aao -wcT -wvE -ckn -jeg -pvJ -frS -nWG -xqb -uEN -uEN -uEN -uEN -uEN -uEN -nhh +iTJ +tsZ +cHD +eIC +oIr +cXL +eCc +sdb +nTW +nTW +nTW +nTW +nTW +nTW +pdK anW -hnG -cZq -cZq -pPx -cZq -eBj -cZq -cZq -uBH -rob -uBH -ejm -cZq -cZq -cZq +fjD +xQw +xQw +cGF +xQw +xyx +xQw +xQw +jSl +tHN +jSl +nOq +xQw +xQw +xQw aqx -ncK -sXA -sFl -nno +bHM +iNe +mXo +qEa aKP aKP aKP aKP -fPU +eSz atb -prT -kPd -kPd -kPd -kPd -kPd -oeH +wfk +pOE +pOE +pOE +pOE +pOE +xBs atb -ftf +cnp bes bes bes @@ -63761,29 +63761,29 @@ aao aao aao aao -uEF -uEF -uEF -mtJ -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +gaH +tWW +tWW +tWW +tWW +tWW aao aao -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -63809,12 +63809,12 @@ aao aao aao aao -bVB -oJR -oJR -oJR -oJR -oJR +iBU +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -63822,12 +63822,12 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -mGW +kCk +kCk +kCk +kCk +kCk +pHy aao aao aao @@ -63839,14 +63839,14 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -63889,81 +63889,81 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -cSp -vbA -vbA -vbA -izn -vbA -wvn -vbA -cSp -fCt -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +qSU +wJf +wJf +wJf +vwY +wJf +sEV +wJf +qSU +ggh +wJf +wJf +wJf +wJf aao aao -nsl -wvE -wvE -wvE -wcT -iid -frS -nWG -xqb -uEN -uEN -nWG -uEN -uEN -nWG -nhh +fIm +tsZ +tsZ +tsZ +iTJ +dpd +cXL +eCc +sdb +nTW +nTW +eCc +nTW +nTW +eCc +pdK anW -hnG -uBH -kyw -xUH -mzN -mzN -mzN -fVU -xxq -wNM -uDq -cZq -uDq -hDs -wgI +fjD +jSl +lhb +vWn +pQF +pQF +pQF +hFZ +ckn +pxY +qFJ +xQw +qFJ +kau +dHW aqx -ncK -sXA -sFl -iCK -xyR +bHM +iNe +mXo +eOL +jHR aKP aKP aKP -fPU +eSz atd -vdV -vQN -kPd -gwX -kPd -hag -vdV +jfW +vyE +pOE +oSj +pOE +eZe +jfW atb -ftf +cnp bes bes bes @@ -63978,28 +63978,28 @@ aao aao aao aao -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao -uEF -uEF -uEF -mtJ -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +gaH +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -64025,13 +64025,13 @@ aao aao aao aao -oJR -bVB -oJR -oJR -oJR -oJR -oJR +kCk +iBU +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -64039,12 +64039,12 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -64057,12 +64057,12 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -64106,81 +64106,81 @@ aao aao aao aao -vbA -och -vbA -vbA -vbA -och -vbA -cSp -vbA -vbA -nhK -izn -vbA -vbA -vbA +wJf +izO +wJf +wJf +wJf +izO +wJf +qSU +wJf +wJf +nFv +vwY +wJf +wJf +wJf kfk -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao -wcT -wvE -wvE -wvE -wvE -ckn -iid -pvJ -vTX -wIK -uEN -nWG -uEN -uEN -uEN -uEN -nhh +iTJ +tsZ +tsZ +tsZ +tsZ +cHD +dpd +oIr +uNH +sic +nTW +eCc +nTW +nTW +nTW +nTW +pdK anW anW -hhu -rVY -vQo -uDq -xYx -uDq -cZq -jri -mzN -mzN -fUo -mzN -xke -mjG +tDT +qwT +bow +qFJ +tVZ +qFJ +xQw +erR +pQF +pQF +gZh +pQF +rJu +hup anW -ncK -wgA -sFl -iCK -nno +bHM +ncl +mXo +eOL +qEa aKP aKP aKP -fPU +eSz atd -vdV -ipT -kvS -pPL -kvS -kvS -vdV +jfW +dzG +uzq +fpg +uzq +uzq +jfW atb -ftf +cnp bes bes bes @@ -64196,24 +64196,24 @@ aao aao aao aao -uEF -uEF -uEF -rMU -uEF -uEF -uEF +tWW +tWW +tWW +sfF +tWW +tWW +tWW aao aao aao aao aao -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao @@ -64241,13 +64241,13 @@ aao aao aao aao -ykN -oJR -oJR -oJR -oJR -jmr -oJR +rFh +kCk +kCk +kCk +kCk +nnl +kCk aao aao aao @@ -64256,12 +64256,12 @@ aao aao aao aao -mGW -oJR -oJR -oJR -oJR -oJR +pHy +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -64274,11 +64274,11 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -64323,81 +64323,81 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -cSp -vbA -och -vbA -izn -vbA -vbA -huU +wJf +wJf +wJf +wJf +wJf +wJf +wJf +qSU +wJf +izO +wJf +vwY +wJf +wJf +sIb aao -izn -vbA -vbA -och -vbA -vbA -enG -wvE -wvE -wvE -wvE -wvE -aao -aao -pvJ -dRR -uEN -uEN -uEN -uEN -uEN -uEN -nhh +vwY +wJf +wJf +izO +wJf +wJf +pzp +tsZ +tsZ +tsZ +tsZ +tsZ +aao +aao +oIr +nUL +nTW +nTW +nTW +nTW +nTW +nTW +pdK anW -cOw -cdT -ncn -pDj -uBH -uBH -uBH -cZq -cZq -cZq -gLT -cBm -uDq -rBl -fVU -qao -wMZ -qFP -sFl -iCK -nno +cjR +xki +qRj +xIi +jSl +jSl +jSl +xQw +xQw +xQw +kyo +eJo +qFJ +qJh +hFZ +jDJ +eJO +grq +mXo +eOL +qEa aKP aKP -fpG -fPU +kTt +eSz atb -vdV -mta -sWP -ugV -mta -sWP -gMO +jfW +qyN +uai +njp +qyN +uai +tcZ atb -ftf +cnp bes bes aEX @@ -64414,22 +64414,22 @@ aao aao aao aao -uEF -uEF -uEF -uEF -uEF -uEF +tWW +tWW +tWW +tWW +tWW +tWW aao aao aao aao aao -iyP -uEF -uEF -uEF -uEF +sKM +tWW +tWW +tWW +tWW aao aao aao @@ -64458,13 +64458,13 @@ aao aao aao aao -bVB -oJR -oJR -oJR -bVB -oJR -jmr +iBU +kCk +kCk +kCk +iBU +kCk +nnl aao aao aao @@ -64473,12 +64473,12 @@ aao aao aao aao -oJR -oJR -oJR -oJR -oJR -oJR +kCk +kCk +kCk +kCk +kCk +kCk aao aao aao @@ -64492,10 +64492,10 @@ aao aao aao aao -gQl -gQl -gQl -gQl +vmp +vmp +vmp +vmp aao aao aao @@ -64539,82 +64539,82 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -qMB -qMB -vbA -cSp -vbA -cQC -vbA -izn -vbA -sGP +wJf +wJf +wJf +wJf +wJf +wFs +wFs +wJf +qSU +wJf +vqx +wJf +vwY +wJf +cXZ aao aao -dDk -vbA -vbA -qMB -qMB -vbA -iTS -wcT -wvE -wvE +ylg +wJf +wJf +wFs +wFs +wJf +jYs +iTJ +tsZ +tsZ aao aao aao aao aao -kuh -vTX -nWG -nWG -uEN -uEN -uEN -nhh +fiV +uNH +eCc +eCc +nTW +nTW +nTW +pdK anW -tsJ -jtb -tsJ -jtb -cZq -jwI -pxE -pmi -mcQ -cZq -gLT -jxo -cZq -vEd -uBH -jtx -ncK -wgA -sFl -iCK -iCK -ryo -ryo -iCK -fPU +oGK +xSR +oGK +xSR +xQw +bSv +laQ +nsB +lec +xQw +kyo +eni +xQw +dpW +jSl +mVl +bHM +ncl +mXo +eOL +eOL +lKR +lKR +eOL +eSz atd -vdV -hbF -tqV -ugV -hbF -tqV -vdV +jfW +jxM +iaS +njp +jxM +iaS +jfW atb -ftf +cnp bes bes aEX @@ -64632,10 +64632,10 @@ aao aao aao aao -uEF -uEF -rMU -uEF +tWW +tWW +sfF +tWW aao aao aao @@ -64643,12 +64643,12 @@ aao aao aao aao -iyP -uEF -njM -njM -njM -njM +sKM +tWW +kPA +kPA +kPA +kPA aao aao aao @@ -64673,15 +64673,15 @@ aao aao aao aao -xpF -bIH -fTm -fTm -fTm +vPj +pXe +dXk +dXk +dXk aao -xvT -fTm -xHm +kTx +dXk +wxE aao aao aao @@ -64690,11 +64690,11 @@ aao aao aao aao -fTm -fTm -fTm -fTm -fTm +dXk +dXk +dXk +dXk +dXk aao aao aao @@ -64709,10 +64709,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -64756,82 +64756,82 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -cSp -vbA -vbA -vbA -vbA -vbA -pWg +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +qSU +wJf +wJf +wJf +wJf +wJf +dRj +aao +aao +aao +ylg +wJf +wFs +wFs +wJf +wJf +uIo +uIo aao aao aao -dDk -vbA -qMB -qMB -vbA -vbA -hNy -hNy -aao -aao -aao -pvJ -lMO -pvJ -pvJ -lMO -viF -vTX -uEN -uEN -uEN -nhh +oIr +phg +oIr +oIr +phg +fiS +uNH +nTW +nTW +nTW +pdK anW anW anW anW anW -kcl -gLT -eJr -eJr -mcQ -cZq -cZq -bXN -xBw -evh -rfD +lNT +kyo +kez +kez +lec +xQw +xQw +weZ +txJ +jlZ +trA anW -ncK -fXX -tVl -uFm -uFm -taC -uFm -uFm -sSE +bHM +wgd +xwI +kos +kos +uvy +kos +kos +pCS atd -vdV -vaf -cQN -ugV -sNe -cQN -vdV +jfW +pSE +dHz +njp +pYB +dHz +jfW atb -ftf +cnp bes bes bes @@ -64849,28 +64849,28 @@ aao aao aao aao -njM -njM -sBt -njM +kPA +kPA +xWp +kPA aao aao aao aao aao -njM -njM -njM -pcw -pcw -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kUj +kUj +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -64890,15 +64890,15 @@ aao aao aao aao -mtS -qFZ -pBf -qFZ -qFZ +aUN +xxO +aLN +xxO +xxO aao -roz -qFZ -eCC +dgA +xxO +jej aao aao aao @@ -64907,11 +64907,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -64926,10 +64926,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -64972,83 +64972,83 @@ aao aao aao aao -vbA -vbA -vbA -vbA -qMB -qMB -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wFs +wFs +wJf +wJf +wJf aao -nzM -vbA -vbA -vbA -fCt +ezf +wJf +wJf +wJf +ggh aao aao aao aao aao -izn -vbA -vbA -vbA -och -vbA -vbA +vwY +wJf +wJf +wJf +izO +wJf +wJf aao aao aao aao -pvJ -pvJ -pvJ +oIr +oIr +oIr aao aao aao -uEN -uEN -uEN -nhh -imx -imx -imx -imx +nTW +nTW +nTW +pdK +aFl +aFl +aFl +aFl anW -jSL -tgm -tgm -uBH -lAn -tgm -cZq -cZq -cZq -uSQ -qFG +twM +wgJ +wgJ +jSl +cJq +wgJ +xQw +xQw +xQw +lDN +xii aqx -ncK -sXA -dZA -imd -imd -imd -imd -imd -wgA +bHM +iNe +niW +nHP +nHP +nHP +nHP +nHP +ncl atb -vdV -hbF -tqV -ugV -mBF -tqV -vdV +jfW +jxM +iaS +njp +kGP +iaS +jfW atb -ftf +cnp bes bes bes @@ -65066,31 +65066,31 @@ bes aao aao aao -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA aao -njM +kPA aao aao -njM -njM -njM +kPA +kPA +kPA gpg gpg gpg -njM -njM -njM +kPA +kPA +kPA gpg -njM -njM -njM -njM -njM -xCL +kPA +kPA +kPA +kPA +kPA +dHC aao aao aao @@ -65106,16 +65106,16 @@ aao aao aao aao -ssf -qFZ -qFZ -qFZ -qFZ +dNV +xxO +xxO +xxO +xxO aao aao aao -mtS -eCC +aUN +jej aao aao aao @@ -65124,11 +65124,11 @@ aao aao aao aao -qFZ -qFZ -pBf -qFZ -qFZ +xxO +xxO +aLN +xxO +xxO aao aao aao @@ -65143,10 +65143,10 @@ aao aao aao aao -qFZ -qFZ -pBf -qFZ +xxO +xxO +aLN +xxO aao aao aao @@ -65189,83 +65189,83 @@ aao aao aao aao -vbA -och -vbA -vbA -qMB -qMB -vbA -vbA -vbA +wJf +izO +wJf +wJf +wFs +wFs +wJf +wJf +wJf aao aao -izn -vbA -vbA -vbA -mQu +vwY +wJf +wJf +wJf +pMy aao aao aao aao -izn -vbA -vbA -vbA -vbA -qMB -vbA -vbA +vwY +wJf +wJf +wJf +wJf +wFs +wJf +wJf aao aao aao -pvJ -lMO +oIr +phg aao aao aao aao -nWG -nWG -uEN -nhh -imx -imx -imx -imx +eCc +eCc +nTW +pdK +aFl +aFl +aFl +aFl anW -meU -qFG -lcn -uBH -suC -lcn -hDf -tTy -gJU -gJU -hbH +oRa +xii +sNk +jSl +nHT +sNk +jIg +mbl +eZa +eZa +rWx aqx -ncK -sXA -sFl -iCK -ude -ude -iCK -iCK -dFP +bHM +iNe +mXo +eOL +dkS +dkS +eOL +eOL +oMb atd -vdV -sNe -cQN -ugV -sNe -cQN -vdV +jfW +pYB +dHz +njp +pYB +dHz +jfW atb -ftf +cnp bes bes bes @@ -65283,31 +65283,31 @@ bes aao aao aao -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -wYD -njM -njM -njM -hGr +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +lYY +kPA +kPA +kPA +vyj aao aao aao @@ -65323,16 +65323,16 @@ aao aao aao aao -mtS -qFZ -eCC -qFZ -qFZ +aUN +xxO +jej +xxO +xxO aao aao aao -mtS -eCC +aUN +jej aao aao aao @@ -65341,11 +65341,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -65360,10 +65360,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -65405,35 +65405,35 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf aao aao aao -izn -pNu -vbA -vbA -pWg +vwY +teg +wJf +wJf +dRj aao aao aao aao -izn -vbA -fCt -vbA -qMB -qMB -vbA -vbA +vwY +wJf +ggh +wJf +wFs +wFs +wJf +wJf aao aao aao @@ -65445,12 +65445,12 @@ aao aao aao aao -qje -nhh -imx -imx -imx -imx +eXV +pdK +aFl +aFl +aFl +aFl anW anW anW @@ -65464,25 +65464,25 @@ aoc aoc anW anW -ncK -wgA -sFl -nno +bHM +ncl +mXo +qEa aKP aKP -shY -iCK -dFP +hGs +eOL +oMb atd -vdV -hbF -tqV -ugV -hbF -tqV -uiQ +jfW +jxM +iaS +njp +jxM +iaS +qTf atb -ftf +cnp bes bes bes @@ -65500,32 +65500,32 @@ bes aao aao aao -njM -njM -njM +kPA +kPA +kPA gpg -njM -njM +kPA +kPA gpg gpg -njM -njM -dSb -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -wYD -njM -njM -njM -gsx +kPA +kPA +vdB +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +lYY +kPA +kPA +kPA +iiM aao aao aao @@ -65538,18 +65538,18 @@ aao aao aao aao -ssf -xAy -qFZ -qFZ -kFf -qFZ -qFZ +dNV +yfn +xxO +xxO +hTB +xxO +xxO aao aao aao -mtS -eCC +aUN +jej aao aao aao @@ -65558,11 +65558,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -65577,10 +65577,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -65621,38 +65621,38 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao -izn -vbA -vbA -fCt +vwY +wJf +wJf +ggh aao -iZO -dtr -bNe +tus +fKO +dZf aao -izn -vbA -vbA -dtr -dtr -vbA -och -vbA -vbA -vbA +vwY +wJf +wJf +fKO +fKO +wJf +izO +wJf +wJf +wJf aao aao aao @@ -65663,43 +65663,43 @@ aao aao aao arD -qMP -env -env -env -env -env -env -env -env -env -imd -imd -imd -imd -imd -imd -imd -imd -ncK -wgA -sFl -nno +vjA +oYi +oYi +oYi +oYi +oYi +oYi +oYi +oYi +oYi +nHP +nHP +nHP +nHP +nHP +nHP +nHP +nHP +bHM +ncl +mXo +qEa aKP aKP aKP -ewU -dFP +cJZ +oMb atb -vdV -sNe -cQN -ugV -sNe -cQN -vdV +jfW +pYB +dHz +njp +pYB +dHz +jfW atb -ftf +cnp bes bes bes @@ -65718,31 +65718,31 @@ aao aao aao aao -njM -njM -njM -sBt -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -sBt -njM -njM -hGr +kPA +kPA +kPA +xWp +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +xWp +kPA +kPA +vyj aao aao aao @@ -65755,18 +65755,18 @@ aao aao aao aao -mtS -qFZ -qFZ -kFf -qFZ -qFZ +aUN +xxO +xxO +hTB +xxO +xxO aao aao aao aao -mtS -eCC +aUN +jej aao aao aao @@ -65775,11 +65775,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -65794,10 +65794,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -65838,44 +65838,44 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao aao -izn -vbA -vbA -vbA -pcG -vbA -vbA -vbA -dtr -vbA -wvn -qMB -qMB -qUV -vbA -vbA -vbA -vbA -vbA -cSp -vbA -vbA -vbA -dtr -bNe +vwY +wJf +wJf +wJf +urs +wJf +wJf +wJf +fKO +wJf +sEV +wFs +wFs +jZs +wJf +wJf +wJf +wJf +wJf +qSU +wJf +wJf +wJf +fKO +dZf aao aao aao @@ -65897,26 +65897,26 @@ aKP aKP aKP aKP -fpG -fPU -sXA -sFl -iCK -xyR +kTt +eSz +iNe +mXo +eOL +jHR aKP aKP -ewU -paG -lAN -hGV -eQu -bqZ -mTu -hbF -tqV -vdV +cJZ +qZP +cBq +cKA +kHJ +qYv +mOL +jxM +iaS +jfW atb -ftf +cnp bes bes bes @@ -65935,31 +65935,31 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -sBt -njM -njM -hGr +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +xWp +kPA +kPA +vyj aao aao aao @@ -65972,18 +65972,18 @@ aao aao aao aao -mtS -qFZ -qqY -qFZ +aUN +xxO +oTY +xxO aao aao aao aao aao aao -mtS -eCC +aUN +jej aao aao aao @@ -65992,11 +65992,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -66011,10 +66011,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -66054,46 +66054,46 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao aao -iZO -vbA -vbA -vbA +tus +wJf +wJf +wJf xFZ -cSp -vbA -och -qMB -qMB -vbA -vbA -qMB -qMB -vbA -vbA +qSU +wJf +izO +wFs +wFs +wJf +wJf +wFs +wFs +wJf +wJf xFZ -vbA -dtr -vbA -cSp -vbA -vbA -och -vbA -vbA -bNe +wJf +fKO +wJf +qSU +wJf +wJf +izO +wJf +wJf +dZf aao aao aao @@ -66113,27 +66113,27 @@ aKP aKP aKP aKP -fpG -iCK -fPU -sXA -dZA -mhs -wQw -mhs -mhs -mhs -dZA -uOC -vdV -sNe -cQN -iiB -sNe -cQN -vdV +kTt +eOL +eSz +iNe +niW +bPX +uLA +bPX +bPX +bPX +niW +dlj +jfW +pYB +dHz +qHE +pYB +dHz +jfW atb -ftf +cnp bes bes aEX @@ -66153,30 +66153,30 @@ aao aao aao aao -njM -njM -njM -njM -ttA -njM -njM -njM +kPA +kPA +kPA +kPA +sXA +kPA +kPA +kPA aao aao aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -hbj +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +tMM aao aao aao @@ -66189,18 +66189,18 @@ aao aao aao aao -mtS -eCC -qFZ -qFZ +aUN +jej +xxO +xxO aao aao aao aao aao aao -mtS -eCC +aUN +jej aao aao aao @@ -66209,11 +66209,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -66228,10 +66228,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -66271,48 +66271,48 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf aao aao aao aao aao -izn -vbA -vbA -fCt +vwY +wJf +wJf +ggh aao -jXH -vbA -vbA -qMB -qMB -vbA -vbA -vbA -vbA -vbA -huU -och -dDk +uej +wJf +wJf +wFs +wFs +wJf +wJf +wJf +wJf +wJf +sIb +izO +ylg xFZ xFZ -cWM -vbA -vbA -vbA +flb +wJf +wJf +wJf xFZ xFZ -vbA -vbA -bNe +wJf +wJf +dZf aao aao aao @@ -66327,30 +66327,30 @@ aao aKP aKP aKP -fpG -ryo -ryo -iCK -iCK -fPU -sXA -ncK -ncK -jkV -etg -etg -gcS -jkV -jkV -vdV -hbF -tqV -ugV -hbF -tqV -gMO +kTt +lKR +lKR +eOL +eOL +eSz +iNe +bHM +bHM +heO +gCf +gCf +lqb +heO +heO +jfW +jxM +iaS +njp +jxM +iaS +tcZ atb -ftf +cnp bes aEX aEX @@ -66369,15 +66369,15 @@ aao aao aao aao -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA gpg -njM -njM -njM +kPA +kPA +kPA aao aao aao @@ -66388,11 +66388,11 @@ aao aao aao aao -csJ -njM -njM -njM -hGr +lmc +kPA +kPA +kPA +vyj aao aao aao @@ -66405,19 +66405,19 @@ aao aao aao aao -ssf -qFZ -eCC -qFZ -qFZ +dNV +xxO +jej +xxO +xxO aao aao aao aao -qFZ -qFZ -qFZ -vef +xxO +xxO +xxO +czs aao aao aao @@ -66425,12 +66425,12 @@ aao aao aao aao -qFZ -qFZ -qFZ -pBf -qFZ -qFZ +xxO +xxO +xxO +aLN +xxO +xxO aao aao aao @@ -66445,10 +66445,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -66488,26 +66488,26 @@ aao aao aao aao -vbA -vbA -och -vbA -vbA -vbA -vbA +wJf +wJf +izO +wJf +wJf +wJf +wJf aao aao aao aao aao aao -izn -wvn +vwY +sEV xFZ -huU +sIb aao aao -dDk +ylg xFZ xFZ xFZ @@ -66515,9 +66515,9 @@ xFZ xFZ xFZ xFZ -huU +sIb aao -vbA +wJf aao aao aao @@ -66525,12 +66525,12 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -bNe +wJf +wJf +wJf +wJf +wJf +dZf aao aao aao @@ -66545,29 +66545,29 @@ aao aao aao aao -iCK -iCK -iCK -gKl -fPU -sXA -ncK -ncK -etg -ubn -oqN -kts -uad -jkV -vdV -mta -sWP -ugV -mta -sWP -vdV +eOL +eOL +eOL +bpb +eSz +iNe +bHM +bHM +gCf +wyi +lfF +aew +oiR +heO +jfW +qyN +uai +njp +qyN +uai +jfW atb -ftf +cnp bes aEX aEX @@ -66585,17 +66585,17 @@ aao aao aao aao -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -66605,12 +66605,12 @@ aao aao aao aao -sBt -njM -njM -dSb -njM -gsx +xWp +kPA +kPA +vdB +kPA +iiM aao aao aao @@ -66622,33 +66622,33 @@ aao aao aao aao -mtS -qFZ -eCC -qFZ -ssf -xAy -xAy -xAy -pup -qFZ -qFZ -qFZ -kFf +aUN +xxO +jej +xxO +dNV +yfn +yfn +yfn +nZG +xxO +xxO +xxO +hTB aao aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -66662,10 +66662,10 @@ aao aao aao aao -qFZ -pBf -qFZ -qFZ +xxO +aLN +xxO +xxO aao aao aao @@ -66706,20 +66706,20 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao aao adZ adZ -xJj -jfz -eeC +vlV +cyc +lka adZ adZ aao @@ -66743,12 +66743,12 @@ aao aao aao aao -vbA -vbA -cLd -vbA -vbA -bNe +wJf +wJf +hLd +wJf +wJf +dZf aao aao aao @@ -66765,26 +66765,26 @@ aao aao aao aao -ipP -iUc -nGe -hDH -iUc -ipP -iPK -gXv -jvs -qrM -ipP -vdV -hIU -kdz -iHQ -hIU -kdz -vdV +uTo +mnD +phX +guN +mnD +uTo +cHl +euW +obO +wBU +uTo +jfW +ecm +sed +okK +ecm +sed +jfW atb -ftf +cnp bes aEX bes @@ -66802,16 +66802,16 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -66823,11 +66823,11 @@ aao aao aao aao -wYD +lYY gpg gpg -njM -hGr +kPA +vyj aao aao aao @@ -66839,33 +66839,33 @@ aao aao aao aao -mtS -qeb -qFZ -xAy -qFZ -qFZ -qFZ -qFZ -eCC -qFZ -qFZ -qFZ +aUN +qlI +xxO +yfn +xxO +xxO +xxO +xxO +jej +xxO +xxO +xxO aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -66879,9 +66879,9 @@ aao aao aao aao -qFZ -qFZ -qFZ +xxO +xxO +xxO aao aao aao @@ -66923,21 +66923,21 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao adZ adZ -kMI -plU -oGn -tPh -nAM +efU +rPl +cPw +nWj +hWw adZ adZ aao @@ -66961,12 +66961,12 @@ amk amk amk amk -vbA -vbA -dDk -vbA -vbA -vbA +wJf +wJf +ylg +wJf +wJf +wJf aao aao aao @@ -66982,26 +66982,26 @@ aao aao aao aao -ryk -cOs -xSh -nRo -fZC -etg -jpc -kts -kts -dzT -ipP -jkV -nvW -nvW -vdV -nvW -nvW -ksf +ozD +lWn +coI +bXe +tUE +gCf +dcV +aew +aew +caz +uTo +heO +peU +peU +jfW +peU +peU +ykm atb -ftf +cnp bes bes bes @@ -67019,15 +67019,15 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -67042,10 +67042,10 @@ aao aao aao aao -fTm -fTm -fTm -cHO +dXk +dXk +dXk +pGl aao aao aao @@ -67056,33 +67056,33 @@ aao aao aao aao -mtS -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ +aUN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -67095,10 +67095,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -67140,21 +67140,21 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao adZ -xYS -lte -plt -ruM -lte -lte +qRa +cFG +vbA +dCY +cFG +cFG adZ adZ adZ @@ -67167,25 +67167,25 @@ aeU aev apq adZ -uzr -qFN -eRh -rSi +vlm +eJD +qWi +kBP amk -gyj -jSJ +wQZ +dKZ avM -pku -kUh +uLj +dob amk -vbA -vbA -vbA -dDk -vbA -vbA -vbA -bNe +wJf +wJf +wJf +ylg +wJf +wJf +wJf +dZf aao aao aao @@ -67200,17 +67200,17 @@ aao aao aao aao -gTd -xSh -fZC -lLx -jkV -gNX -wwI -kts -qJI -nLO -jkV +wxJ +coI +tUE +lUM +heO +pjL +kWW +aew +eoS +goG +heO atb atb atb @@ -67218,7 +67218,7 @@ atb atb atb atb -ftf +cnp bes bes bes @@ -67238,14 +67238,14 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -67258,13 +67258,13 @@ aao aao aao aao -qFZ -qFZ -mtS -qFZ -qFZ -xAy -wzN +xxO +xxO +aUN +xxO +xxO +yfn +jOD aao aao aao @@ -67272,36 +67272,36 @@ aao aao aao aao -ssf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -kFf +dNV +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +hTB aao aao aao aao aao -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -67312,10 +67312,10 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao @@ -67357,76 +67357,76 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao adZ -xYS -lte -oWb -iaL -uKs -lte -bsO +qRa +cFG +kld +eoA +iEQ +cFG +hGP aev aev adZ aao gNH -tPY +ojp aev aev aoE apr adZ -pgc -hvh -hvh -xGs +dpY +lUE +lUE +lHh amk auj auY -pQC -bXV +pfO +iLi aqc amk aao -vbA -vbA -vbA -izn -vbA -vbA -vbA -dtr -dtr -pcG -dtr -dtr -dtr -dtr -dtr -bNe +wJf +wJf +wJf +vwY +wJf +wJf +wJf +fKO +fKO +urs +fKO +fKO +fKO +fKO +fKO +dZf aao aao aao aao -jkV -hhw -xSh -fZC -fZC -dFA -kts -kts -kts -kts -iZd +heO +hvP +coI +tUE +tUE +sOs +aew +aew +aew +aew +cyu aao aao aao @@ -67457,12 +67457,12 @@ aao aao aao aao -njM -njM -njM -dSb -njM -njM +kPA +kPA +kPA +vdB +kPA +kPA aao aao aao @@ -67473,14 +67473,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -mtS -qFZ -qFZ -eCC +xxO +xxO +xxO +xxO +aUN +xxO +xxO +jej aao aao aao @@ -67489,38 +67489,38 @@ aao aao aao aao -mtS -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -eCC +aUN +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +jej aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -67528,11 +67528,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -67574,76 +67574,76 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao adZ -rEF -lte -bOF -mhz -lte -dqv +uar +cFG +fcv +pMN +cFG +iDw adZ aev aev adZ aao gNH -tPY +ojp aev anM aqb aps adZ -fbN -hvh -jKg -hvh -hlR +iwJ +lUE +fgg +lUE +dbd aqc auY -oyE -tlo -vjz +uMH +pLU +qRM amk aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf xFZ xFZ kfk -vbA +wJf xFZ -vbA -vbA -vbA -fCt +wJf +wJf +wJf +ggh aao aao aao aao aao -gTd -xSh -fZC -dVh -jkV -hGp -kts -kts -gOI -mCD +wxJ +coI +tUE +oAq +heO +cMV +aew +aew +ozp +jrf aao aao aao @@ -67676,10 +67676,10 @@ aao aao aao aao -njM -njM -njM -njM +kPA +kPA +kPA +kPA aao aao aao @@ -67689,67 +67689,67 @@ aao aao aao aao -fTm -qFZ -qFZ -qFZ -pBf -mtS -qFZ -qFZ -kFf +dXk +xxO +xxO +xxO +aLN +aUN +xxO +xxO +hTB aao aao aao aao aao aao -ssf -xAy -qFZ -eCC -qFZ -qFZ -qFZ -qFZ +dNV +yfn +xxO +jej +xxO +xxO +xxO +xxO gtX gtX -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -67791,11 +67791,11 @@ aao aao aao aao -vbA -vbA -vbA -och -vbA +wJf +wJf +wJf +izO +wJf aao aao aao @@ -67803,7 +67803,7 @@ adZ adZ afd afd -kuZ +hyZ afd afd adZ @@ -67813,54 +67813,54 @@ adZ adZ adZ adZ -vBR +gXD adZ afd afd adZ -sMX -hvh -hvh -xMW +qbE +lUE +lUE +nKq amk -rTM +eza auY -pQC -mEW +pfO +ryj aqc amk aao aao -vbA -vbA -eKI -vbA -huU -vbA -och -vbA -cSp -vbA -och -izn -vbA -vbA -vbA -bNe +wJf +wJf +wcz +wJf +sIb +wJf +izO +wJf +qSU +wJf +izO +vwY +wJf +wJf +wJf +dZf aao aao aao -wsf -gTd -eeO -fZC -fZC -etg -jmf -kts -kts -dzT -jkV +pJi +wxJ +gxm +tUE +tUE +gCf +xsW +aew +aew +caz +heO aao aao aao @@ -67894,9 +67894,9 @@ aao aao aao aao -ojL -ojL -tAy +fzp +fzp +rkQ aao aao aao @@ -67905,67 +67905,67 @@ aao aao aao aao -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -eCC -qFZ +kPA +dXk +xxO +xxO +xxO +xxO +xxO +xxO +jej +xxO aao aao aao aao aao aao -mtS -qFZ -qFZ -kFf -qFZ -qFZ -qFZ +aUN +xxO +xxO +hTB +xxO +xxO +xxO aao aao aao -tzl -fTm -fTm -fTm +wym +dXk +dXk +dXk aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO aao aao aao @@ -68008,21 +68008,21 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao aao adZ -jzL -jzL -uxN -jzL -jzL +vcn +vcn +rBm +vcn +vcn adZ aeU aev @@ -68036,9 +68036,9 @@ aev aev adZ amk -hmt -leJ -hUp +iKU +vXU +rjf amk aqc aqc @@ -68049,38 +68049,38 @@ amk aao aao aao -vbA -izn -fCt -vbA -vbA -vbA -vbA -cSp -vbA -vbA -vbA +wJf +vwY +ggh +wJf +wJf +wJf +wJf +qSU +wJf +wJf +wJf xFZ -vbA -vbA -fCt +wJf +wJf +ggh aao aao aao -jkV -cll -xls -cll -cll -jkV -vWL -xoN -kts -dzT -qYM +heO +fLi +uoS +fLi +fLi +heO +yfK +pWS +aew +caz +jhf aao aao -njM +kPA aao aao aao @@ -68111,78 +68111,78 @@ aao aao aao aao -njM -njM -njM +kPA +kPA +kPA aao aao aao aao aao aao -njM -njM -njM -fTm -qFZ -qFZ -qFZ -xAy -qFZ -qFZ -eCC -qFZ +kPA +kPA +kPA +dXk +xxO +xxO +xxO +yfn +xxO +xxO +jej +xxO aao aao aao aao aao aao -roz -qFZ -vol -qFZ -qFZ -qFZ +dgA +xxO +eYG +xxO +xxO +xxO aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -68225,21 +68225,21 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao aao adZ -oiV -hjz -hjz -hjz -toJ +qEP +juw +juw +juw +ung adZ aev aev @@ -68257,7 +68257,7 @@ adZ adZ adZ adZ -fyb +dfI amX amk amk @@ -68267,50 +68267,50 @@ amk amk aao aao -dDk -huU +ylg +sIb aao aao aao aao aao aao -vbA -vbA -vbA -izn -vbA -vbA +wJf +wJf +wJf +vwY +wJf +wJf aao aao aao aao -gJL -eYc -nYt -nYt -etg -rvk -cCY -kts -vsx -jkV +mvN +jEv +mcv +mcv +gCf +qlT +ulN +aew +hwj +heO aao -njM -pcw -pcw -gsx +kPA +kUj +kUj +iiM aao aao aao aao aao aao -csJ -pcw -pcw -pcw -gsx +lmc +kUj +kUj +kUj +iiM aao aao aao @@ -68327,38 +68327,38 @@ aao aao aao aao -csJ -njM -njM -njM -njM +lmc +kPA +kPA +kPA +kPA aao aao aao -njM -njM -njM -njM -njM -fTm -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO gtX -qFZ -qFZ -qFZ -eCC -qFZ +xxO +xxO +xxO +jej +xxO aao aao aao aao aao -qFZ -qFZ -qFZ -eCC -qFZ +xxO +xxO +xxO +jej +xxO aao aao aao @@ -68368,38 +68368,38 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -68442,20 +68442,20 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao aao adZ adZ -hjz -hjz -hjz +juw +juw +juw adZ adZ aev @@ -68473,12 +68473,12 @@ aev hvQ aev aev -bsO -owL -owL +hGP +lwF +lwF amX awC -nUx +lxm axp ayA amk @@ -68492,43 +68492,43 @@ aao aao aao aao -vbA -vbA -vbA -dDk -och -vbA -vbA +wJf +wJf +wJf +ylg +izO +wJf +wJf aao aao aao -iIM -eYc -nYt -ukr -jkV -etg -etg -gup -jkV -jkV -njM -njM -njM -njM -dSb -gsx +ycf +jEv +mcv +hFC +heO +gCf +gCf +gQP +heO +heO +kPA +kPA +kPA +kPA +vdB +iiM aao aao aao aao aao -sBt -njM -dSb -njM -njM -gsx +xWp +kPA +vdB +kPA +kPA +iiM aao aao aao @@ -68540,42 +68540,42 @@ aao aao aao aao -csJ -pcw -pcw -pcw -njM -njM -njM -njM -njM -pcw -pcw -njM -njM -njM -njM -dSb -sBt -fTm -eCC +lmc +kUj +kUj +kUj +kPA +kPA +kPA +kPA +kPA +kUj +kUj +kPA +kPA +kPA +kPA +vdB +xWp +dXk +jej aao aao -mtS -pBf -qFZ -eCC -qFZ +aUN +aLN +xxO +jej +xxO aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -68585,38 +68585,38 @@ aao aao aao aao -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +aLN +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -68659,11 +68659,11 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao adZ @@ -68671,8 +68671,8 @@ adZ adZ adZ adZ -xkP -qFw +crL +xsN adZ aev aev @@ -68691,13 +68691,13 @@ aeU aev aev adZ -bOG -owL -tuF +rzv +lwF +eGF auY aqc axT -kwC +vta amk anI aAM @@ -68711,41 +68711,41 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf aao aao -tFR -elj -cQb -kzr -ddh -fdb -hhB -hhB -bLh -njM -njM -njM -njM -njM -njM -hGr +rdq +sPs +nmX +oGX +rFp +qbm +wwX +wwX +sBI +kPA +kPA +kPA +kPA +kPA +kPA +vyj aao aao aao aao aao -wYD +lYY gpg -njM -njM -njM -hGr +kPA +kPA +kPA +vyj aao aao aao @@ -68757,41 +68757,41 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -pcw -njM -njM -csJ -njM -fTm -kFf +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kUj +kPA +kPA +lmc +kPA +dXk +hTB aao aao -mtS -qFZ -qFZ -eCC -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -eCC -qFZ +aUN +xxO +xxO +jej +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +jej +xxO aao aao aao @@ -68802,37 +68802,37 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -68876,31 +68876,31 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao adZ aev aeU aev -udv -unz -qUj -bsO +cxs +erW +pPu +hGP aev aev anM adZ adZ -lug -mfW +tln +aWm adZ -uBx -gJA +mox +cvp adZ aqb aqb @@ -68908,13 +68908,13 @@ anl anl aev adZ -fcB -owL -mXh +iVf +lwF +fZp auY aqc aqc -rGQ +xVz amk anI aAN @@ -68929,29 +68929,29 @@ aao aao aao aao -vbA -vbA -vbA -dtr -dtr -dtr -oNe -fCt -dYz -pAh -vbA -qMB -qMB -njM -njM -njM -njM -njM -njM -njM -njM -njM -hGr +wJf +wJf +wJf +fKO +fKO +fKO +dwi +ggh +vrx +wyH +wJf +wFs +wFs +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vyj aao aao aao @@ -68959,58 +68959,56 @@ aao aao aao aao -wYD +lYY gpg -njM -hGr -njM -njM -njM -njM +kPA +vyj +kPA +kPA +kPA +kPA aao aao aao aao aao aao -csJ -njM +lmc +kPA gpg gpg gpg -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -pcw -njM -njM -fAB -aao -aao -aao -mtS -qFZ -qFZ -eCC -qFZ -qFZ -qFZ -qFZ -ssf -xAy -qFZ -pBf -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kUj +kPA +kPA +vbC +aao aao aao +aUN +xxO +xxO +jej +xxO +xxO +xxO +xxO +dNV +yfn +xxO +aLN +xxO +xxO aao aao aao @@ -69019,36 +69017,38 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ aao aao +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ +aao +aao +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO aao aao aao @@ -69093,31 +69093,31 @@ aao aao aao aao -vbA -och -vbA -vbA -vbA +wJf +izO +wJf +wJf +wJf aao aao adZ -nlR +wXT aeV aev adZ -unz -tEs +erW +aKZ adZ adZ adZ adZ adZ adZ -qEo -kGt +fNK +bRa adZ -lMv -kGt +xrS +bRa adZ adZ adZ @@ -69125,13 +69125,13 @@ adZ adZ adZ adZ -owL -owL +lwF +lwF amX awD -jhh -jhh -efJ +wUh +wUh +nWv amk anI aAO @@ -69148,83 +69148,83 @@ aao aao aao aao -izn -vbA -vbA -vbA -vbA -fCt -dYz -pAh -vbA -vbA -cSp -njM -njM -njM -njM -njM -njM +vwY +wJf +wJf +wJf +wJf +ggh +vrx +wyH +wJf +wJf +qSU +kPA +kPA +kPA +kPA +kPA +kPA gpg gpg -njM -njM -pcw -pcw -gsx +kPA +kPA +kUj +kUj +iiM aao aao aao aao aao aao -njM -hGr -njM -njM -njM -njM +kPA +vyj +kPA +kPA +kPA +kPA aao aao aao aao -csJ -pcw -njM -njM -njM -ojk -njM -njM -njM +lmc +kUj +kPA +kPA +kPA +qQU +kPA +kPA +kPA gpg gpg -njM -njM -njM -njM -njM -njM -njM -njM -hGr +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vyj aao aao aao aao -mtS -qFZ -qFZ -eCC -qFZ -qFZ -qFZ -ssf -qFZ -qFZ -qFZ -qFZ -qFZ +aUN +xxO +xxO +jej +xxO +xxO +xxO +dNV +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -69241,16 +69241,16 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -69259,13 +69259,13 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -69310,11 +69310,11 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao adZ @@ -69322,28 +69322,28 @@ aex aex afA adZ -cwS -hNZ +hBq +nan adZ aao aao aao aao adZ -rOQ -tXh +vmf +xed adZ -jra -kGt +mKW +bRa adZ -jSJ +dKZ aqc aqc -qdR +cUf aqc amk -kLu -lPH +wqs +pLy amk amk amk @@ -69352,8 +69352,8 @@ amk amk anI anL -qVW -qJK +kri +dBM anL anI anI @@ -69365,82 +69365,82 @@ aao aao aao aao -dDk -vbA -vbA -vbA -vbA -fCt -dYz -pAh -vbA -vbA -qHL -njM -njM -njM -njM -nfa -hGr -njM -njM -njM +ylg +wJf +wJf +wJf +wJf +ggh +vrx +wyH +wJf +wJf +kjb +kPA +kPA +kPA +kPA +iOZ +vyj +kPA +kPA +kPA gpg -njM -njM -njM -pcw -pcw -pcw -pcw -pcw -pcw -njM -hGr -dSb -njM -njM -njM -njM -ojL -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -dSb -sBt -njM -njM -njM -njM -njM -njM -njM -cHO -aao -ssf -xAy -qFZ -qFZ -qFZ -eCC -pBf -ssf -dwz -qFZ +kPA +kPA +kPA +kUj +kUj +kUj +kUj +kUj +kUj +kPA +vyj +vdB +kPA +kPA +kPA +kPA +fzp +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +vdB +xWp +kPA +kPA +kPA +kPA +kPA +kPA +kPA +pGl +aao +dNV +yfn +xxO +xxO +xxO +jej +aLN +dNV +drs +xxO gtX gtX gtX -kFf +hTB aao aao aao @@ -69458,16 +69458,16 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -69476,13 +69476,13 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -69527,11 +69527,11 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao adZ @@ -69539,41 +69539,41 @@ adZ adZ afB adZ -oJV -oEL +jbf +sou adZ aao aao aao adZ adZ -wNq -tVk +daw +ilP adZ -pye -tVk +opc +ilP adZ adZ -squ -lNM -fgN +fom +whx +ceP aqc amk -owL -oFv -oap -uHV +lwF +xQO +tqw +ctE amk aao anI -iZa -jks -skh -skh -pcB -skh -uFo -xMf +ifo +gnz +rfx +rfx +qqT +rfx +gcI +lIS anI aao anI @@ -69582,80 +69582,79 @@ anI anI anI anI -sPJ -dDk -vbA -vbA -vbA +kho +ylg +wJf +wJf +wJf arK -vTy -pAh -vbA -vbA -qMB -njM -njM -njM -njM -njM -hbj -aao -aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -pcw -pcw -pcw -pcw -pcw -vac -pcw -njM -njM -hGr -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -sBt -njM -njM -nfa -njM -njM -njM -njM -fTm -xAy -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -xAy -qFZ -qFZ -eCC +jOW +wyH +wJf +wJf +wFs +kPA +kPA +kPA +kPA +kPA +tMM aao aao +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kUj +kUj +kUj +kUj +kUj +kSj +kUj +kPA +kPA +vyj +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +xWp +kPA +kPA +iOZ +kPA +kPA +kPA +kPA +dXk +yfn +xxO +xxO +xxO +xxO +xxO +xxO +yfn +xxO +xxO +jej +aao aao aao aao @@ -69675,31 +69674,32 @@ aao aao aao aao -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ aao +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao aao aao aao -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ +aao +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO aao aao aao @@ -69744,133 +69744,133 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao adZ -gry -jfp -rUd -jyR -esC -xIY +xMC +qpk +cfI +itH +lGO +hPB adZ aao aao adZ adZ -xOd -iku -iku -klQ -xlY -xlY -eTy +olJ +sMC +sMC +uja +kya +kya +fRn adZ adZ auY -wCd +boF aqc amX -klN -urf -uXY -jjq +cRy +obc +sOX +ppz amk aao anI -nRJ -dEA +jOl +uWf afz -uHj -uHj -uHj -jja -wns +mBC +mBC +mBC +mJw +gXr anI aao anI -vhS -mYL -mYL -mYL -eUh -nYt -nHe -nHe -nHe -nHe -uJa -eYc -pAh -vbA -qMB -qMB -njM -njM -njM -njM -hGr -aao -aao -aao -aao -csJ -njM -njM -njM -njM -njM -njM -njM -fQn -njM -njM -njM -njM -njM -njM -nfa -njM -ojL -njM -njM -dSb -hGr -njM -njM -csJ -njM -njM -njM -njM -njM -njM -njM -sBt -njM -njM -njM -njM -njM -njM -fQn -fTm -qFZ -qFZ -qFZ -pBf -qFZ +mAG +fVH +fVH +fVH +nXA +mcv +xWO +xWO +xWO +xWO +yfY +jEv +wyH +wJf +wFs +wFs +kPA +kPA +kPA +kPA +vyj +aao +aao +aao +aao +lmc +kPA +kPA +kPA +kPA +kPA +kPA +kPA +nvf +kPA +kPA +kPA +kPA +kPA +kPA +iOZ +kPA +fzp +kPA +kPA +vdB +vyj +kPA +kPA +lmc +kPA +kPA +kPA +kPA +kPA +kPA +kPA +xWp +kPA +kPA +kPA +kPA +kPA +kPA +nvf +dXk +xxO +xxO +xxO +aLN +xxO gtX gtX gtX gtX gtX -kFf +hTB aao aao aao @@ -69892,16 +69892,16 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -69909,14 +69909,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -69961,127 +69961,127 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf aao adZ -joP -diZ -xVd -jyR -qSK -qUj +oVN +gJJ +vRJ +itH +whG +pPu adZ aao aao adZ -ehV -iOx -niS -fGt -fGt -fGt -niS -bIF -xlS +kPi +kdU +edY +rQP +rQP +rQP +edY +fGA +eng adZ arI ass aqc -dWs -owL -xui -uXY -jjq +lkQ +lwF +ocg +sOX +ppz amk aao anI -lxp -xba +mBi +mij afz -mnp -oLK -wSo -uHj -icp +lRr +xkK +pFe +mBC +sNe anI aao anI -vCR -uCx -tlV -tlV -qVW -nYt -fdb -fdb -fdb -fdb -nYt -eYc -pAh -vbA -vbA -cSp -njM -njM -njM +guU +hIx +gjL +gjL +kri +mcv +qbm +qbm +qbm +qbm +mcv +jEv +wyH +wJf +wJf +qSU +kPA +kPA +kPA gpg -hbj +tMM aao aao aao -oOs -njM -njM -njM -cqc -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +hpF +kPA +kPA +kPA +tpY +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA kQc gpg -njM -njM -hGr -njM -njM -njM -njM -njM -njM -njM -njM -hGr -njM -sBt -njM -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -eCC +kPA +kPA +vyj +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vyj +kPA +xWp +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO +xxO +jej aao aao aao @@ -70109,15 +70109,15 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -70126,13 +70126,13 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -70178,89 +70178,89 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf aao adZ -joP -egK -vxq -ljN -wdF -wPv +oVN +hvw +gJG +tHd +qpV +qhd adZ aao aao adZ -fGi -fGt -fGt -xKW -eYO -fGt -fGt -fGt -qLp +fRv +rQP +rQP +ihu +tcw +rQP +rQP +rQP +ltj adZ amk amk amk amk -owL -mVU +lwF +vQr amk amk amk aao anI -ePD -xRi -xba +rMj +qkt +mij afz afz -uHj -nnC -ciL +mBC +tGE +lHD anI aao anI -vCR -uPn +guU +lYn anI anI anI -tRg -dtr -dtr -dtr -dtr -gJL -mzE -wGX -vbA -vbA -qHL -njM -njM -hbj +uGl +fKO +fKO +fKO +fKO +mvN +fHv +lWd +wJf +wJf +kjb +kPA +kPA +tMM aao aao aao aao aao aao -wYD +lYY gpg gpg gpg -njM -njM -njM -njM +kPA +kPA +kPA +kPA gpg gpg gpg @@ -70269,38 +70269,37 @@ gpg gpg gpg gpg -hbj -aao -aao -sBt -njM -hGr -njM -njM -njM -njM -njM -njM -njM -njM -hGr -njM -sBt -njM -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -kFf +tMM aao aao +xWp +kPA +vyj +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vyj +kPA +xWp +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO +xxO +hTB +aao aao aao aao @@ -70326,16 +70325,16 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ aao +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -70343,13 +70342,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf +aao +xxO +xxO +xxO +xxO +xxO +xxO +aLN aao aao aao @@ -70395,74 +70395,74 @@ aao aao aao aao -vbA -vbA -vbA -och -vbA +wJf +wJf +wJf +izO +wJf aao aao adZ -dLx -lkd -bXU +ggE +nRz +oOU adZ -hSo -hjH +ygA +pEB adZ aao aao adZ -mJI -kcf -smW -fGt -fGt -niS -fGt -qMN -sVU +eEG +hdg +dXB +rQP +rQP +edY +rQP +vAo +vAe adZ aao azm amk amk -mXh -rzY +fZp +nlQ amk amk aao aao anI anI -dGZ -xRi -cGR -uHj -fZz -cHJ +qOm +qkt +gAM +mBC +vWE +dNY anI anI aao anI -vCR -uOT +guU +lae anI aao aao -dtr -vbA -och -vbA -vbA -kwV -nYt -pAh -vbA -vbA -qMB -njM -njM +fKO +wJf +izO +wJf +wJf +obD +mcv +wyH +wJf +wJf +wFs +kPA +kPA aao aao aao @@ -70474,14 +70474,14 @@ aao aao aao aao -sBt -hGr -njM -njM -njM -njM -njM -njM +xWp +vyj +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -70490,32 +70490,32 @@ aao aao aao aao -sBt -hGr -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +xWp +vyj +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA gpg gpg gpg gpg gpg gpg -njM -fTm -pBf -qFZ -qFZ -kFf -qFZ +kPA +dXk +aLN +xxO +xxO +hTB +xxO aao aao aao @@ -70543,14 +70543,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -70559,14 +70559,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO aao aao aao @@ -70613,71 +70613,71 @@ aao aao aao aao -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf aao aao adZ adZ -iOl -mSE +riO +uvS adZ -hSo -wPv +ygA +qhd adZ adZ aao adZ -mcP -fGt -mMW -niS -fGt -fIu -eXl -fGt -euc +rAx +rQP +qFV +edY +rQP +euC +ttd +rQP +lCP adZ aao amk amk -iki -uXY -xyZ -iki +cYo +sOX +vZG +cYo amk amk aao aao anI anI -yjF -gJR -uHj -sFD +iJj +lue +mBC +hXA anI anI aao aao anI -vHR -uOT +rGQ +lae anI aao aao -vbA -vbA -vbA +wJf +wJf +wJf xFZ xFZ -fjU -dIR -pAh -vbA -vbA -qMB +xcG +ksr +wyH +wJf +wJf +wFs aao aao aao @@ -70691,14 +70691,14 @@ aao aao aao aao -wYD -njM -njM -njM -dSb -njM -njM -njM +lYY +kPA +kPA +kPA +vdB +kPA +kPA +kPA aao aao aao @@ -70707,33 +70707,33 @@ aao aao aao aao -sBt -hGr -njM -njM -dSb -njM -njM -njM -cqc -njM -njM -njM -hbj +xWp +vyj +kPA +kPA +vdB +kPA +kPA +kPA +tpY +kPA +kPA +kPA +tMM aao aao aao aao aao aao -xvT -fTm -qFZ -qFZ -eCC -qFZ -qFZ -qFZ +kTx +dXk +xxO +xxO +jej +xxO +xxO +xxO aao aao aao @@ -70760,13 +70760,13 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -70776,14 +70776,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO aao aao aao @@ -70830,10 +70830,10 @@ aao aao aao aao -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf aao aao aao @@ -70841,58 +70841,58 @@ adZ adZ adZ adZ -hSo -hjz -ykf +ygA +juw +cJk adZ adZ adZ -pFM -fGL -jQO -oCT -tHn -oCT -loR -tHn -xFn +iNG +uJw +pSH +sUH +sNC +sUH +rCr +sNC +jDz adZ amk amk -soI -owL -nnJ -fAb -owL -rDD +tvS +lwF +mBx +sEQ +lwF +mUb amk amk aao aao anI -nAE -qVw -tNE -kQm +wsB +wHn +xut +syk anI aao aao aao anI -vCR -uOT +guU +lae anI aao -izn -vbA -vbA -fCt +vwY +wJf +wJf +ggh aao aao aao -fjU -gen -vbA +xcG +tTs +wJf aao aao sIh @@ -70909,13 +70909,13 @@ aao aao aao aao -wYD -njM -njM -gsx -njM -njM -njM +lYY +kPA +kPA +iiM +kPA +kPA +kPA aao aao aao @@ -70923,19 +70923,19 @@ aao aao aao aao -csJ -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +lmc +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -70943,15 +70943,15 @@ aao aao aao aao -mtS +aUN gtX gtX gtX -kFf -qFZ -qFZ -qFZ -fTm +hTB +xxO +xxO +xxO +dXk aao aao aao @@ -70977,11 +70977,11 @@ aao aao aao aao -qFZ -qFZ -pBf -qFZ -qFZ +xxO +xxO +aLN +xxO +xxO aao aao aao @@ -70993,14 +70993,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO aao aao aao @@ -71047,64 +71047,64 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao adZ adZ -txF -hjz -uAm +jTL +juw +sSG adZ adZ afd afd afd -lVx +nez adZ -lVx +nez afd afd afd adZ amk -gDA -dwS -owL -fll -hUB -owL -owL -jwe +tHZ +sQC +lwF +dYW +ikg +lwF +lwF +wAO amk anI -emD +nbr anI anL -qVW -guT +kri +gZk anL anI anI anI anI anI -jZV -sos +tCF +lhJ anI aao -izn -vbA -vbA -vbA -bNe +vwY +wJf +wJf +wJf +dZf aao aao aao @@ -71127,33 +71127,33 @@ aao aao aao aao -wYD +lYY gpg -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA aao aao aao aao aao -csJ -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -gsx +lmc +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +iiM aao aao aao @@ -71165,12 +71165,12 @@ aao aao aao aao -fTm -fTm -fTm -fTm -qFZ -qFZ +dXk +dXk +dXk +dXk +xxO +xxO aao aao aao @@ -71194,11 +71194,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -71210,14 +71210,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -71265,63 +71265,63 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -iZO -bNe +wJf +wJf +wJf +wJf +wJf +wJf +tus +dZf aao aao adZ adZ -txF -tED -jbv -xrk -dAt -rnw -mQZ -mQZ -mQZ -mQZ -mQZ -mQZ -fHx -fmm -dDc -uXY -est -iQo -kWx -ftm -faq -oCi -uXY -dzs -mug -irc -vna -mYL -nnz -hDP -jIB -bJK -rBv -mYL -mYL -mYL -rbt -uOT +jTL +act +sNB +vcX +sec +bLY +oyL +oyL +oyL +oyL +oyL +oyL +yhj +kpc +fXV +sOX +ece +vCg +wWh +lYs +xFm +xIs +sOX +jRf +fgI +jny +dHD +fVH +sdk +nDt +iyb +caT +eIE +fVH +fVH +fVH +vhR +lae anI aao -dDk -vbA +ylg +wJf xFZ -vbA -fCt +wJf +ggh aao aao aao @@ -71346,31 +71346,31 @@ aao aao aao aao -njM -njM -gsx -njM -njM -njM +kPA +kPA +iiM +kPA +kPA +kPA aao aao aao -csJ -njM +lmc +kPA gpg -njM -njM +kPA +kPA gpg gpg -njM -njM -njM -njM -njM -njM -njM -njM -hGr +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vyj aao aao aao @@ -71383,14 +71383,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -71411,11 +71411,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -71427,14 +71427,14 @@ aao aao aao aao -qFZ -iDA -iDA -qFZ -qFZ -iDA -iDA -qFZ +xxO +gCz +gCz +xxO +xxO +gCz +gCz +xxO aao aao aao @@ -71482,65 +71482,65 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -izn -vbA -bNe +wJf +wJf +wJf +wJf +wJf +wJf +vwY +wJf +dZf aao aao adZ adZ -gof -nUy -lSY -kTq -kTq -kTq -cOd -rXp -cOd -rNn -iaS -vGg -jcX -jQw -ptB -eAO -ssH -kkq -jdk -xDI -uMU -ptB -jQw -sOM +eIV +bNF +wIH +iea +iea +iea +wRO +tyX +wRO +vJq +hmK +wdE +dqe +cmO +ioa +xXh +vbj +luS +hfA +kAd +lhz +ioa +cmO +syC azl aAo -eJK -uqA -mbi -xaO -xaO -idX -rjl -gKO -vHO -gkr -kwa +htE +pAN +exm +rhC +rhC +dYE +hKY +mhr +cbr +mlM +pid anI aao aao -kSE +qyU aao -izn +vwY xFZ -dtr -bNe +fKO +dZf aao aao aao @@ -71563,31 +71563,31 @@ aao aao aao aao -njM -sBt -lbw -njM -njM -njM -pcw -njM -njM -njM -njM -njM -njM -hGr +kPA +xWp +haK +kPA +kPA +kPA +kUj +kPA +kPA +kPA +kPA +kPA +kPA +vyj aao aao -sBt -njM -njM -njM -njM -njM -dSb -njM -hbj +xWp +kPA +kPA +kPA +kPA +kPA +vdB +kPA +tMM aao aao aao @@ -71600,16 +71600,16 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO aao aao aao @@ -71628,11 +71628,11 @@ aao aao aao aao -qFZ -iDA -iDA -qFZ -qFZ +xxO +gCz +gCz +xxO +xxO aao aao aao @@ -71644,14 +71644,14 @@ aao aao aao aao -qFZ -iDA -iDA -qFZ -qFZ -iDA -iDA -qFZ +xxO +gCz +gCz +xxO +xxO +gCz +gCz +xxO aao aao aao @@ -71700,42 +71700,42 @@ aao aao aao aao -vbA -vbA -och -vbA -vbA -izn -vbA +wJf +wJf +izO +wJf +wJf +vwY +wJf adZ adZ adZ adZ adZ -xkP -lvq +crL +ktI adZ afd afd afd -uVq +wgL adZ -uVq +wgL afd afd afd adZ amk -rQI -fvF -owL -peI -xWM -owL -jJJ -bSR +xAQ +wWP +lwF +aiG +tSK +lwF +bUN +oyH amk -emD +nbr aEF anI anI @@ -71745,10 +71745,10 @@ anI anI anI anI -cQq -qkv -oIH -qeo +rRS +vaG +qwK +dTu anI aao aao @@ -71757,7 +71757,7 @@ aao aao aao aao -kSE +qyU aao aao aao @@ -71780,30 +71780,30 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -wYD -hbj +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +lYY +tMM aao aao -wYD -njM -njM -njM -njM -njM -njM -hbj +lYY +kPA +kPA +kPA +kPA +kPA +kPA +tMM aao aao aao @@ -71818,18 +71818,18 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -71845,11 +71845,11 @@ aao aao aao aao -qFZ -iDA -iDA -qFZ -qFZ +xxO +gCz +gCz +xxO +xxO aao aao aao @@ -71861,14 +71861,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -71917,39 +71917,39 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -cHs -fCt +wJf +wJf +wJf +wJf +wJf +udB +ggh afd -tpo -hjz -eta -hjz -hjz -hjz +xhp +juw +fgv +juw +juw +juw adZ -lLO -xeZ -xeZ -xeZ -tFq -xeZ -xeZ -xeZ -pZo +oew +tLF +tLF +tLF +ukg +tLF +tLF +tLF +fLP adZ amk amk -sEU -owL -vEW -vEW -fRp -uOR +jXs +lwF +hYV +hYV +vPl +rQt amk amk aao @@ -71963,9 +71963,9 @@ aao aao anI anI -cQq -qkv -qeo +rRS +vaG +dTu anI aao aao @@ -71998,28 +71998,28 @@ aao aao aao aao -njM -njM -njM -njM -njM -dSb -njM -njM -njM -dSb -njM +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +vdB +kPA aao aao aao aao aao -wYD +lYY gpg gpg gpg gpg -hbj +tMM aao aao aao @@ -72035,19 +72035,19 @@ aao aao aao aao -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO aao aao aao @@ -72061,12 +72061,12 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -72079,13 +72079,13 @@ aao aao aao aao -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ +xxO +xxO +aLN +xxO +xxO +xxO +xxO aao aao aao @@ -72135,37 +72135,37 @@ aao aao aao aao -vbA -vbA -vbA -vbA -izn -fCt +wJf +wJf +wJf +wJf +vwY +ggh afd -oJY -mbB +dHI +xle adZ -hdP -hjz -lGl +vkh +juw +jwX adZ -wHn -rVI -ltd -sMa -moT -rVI -moT -fFJ -eQT +xeH +bPh +vqa +njI +boU +bPh +boU +urb +xzW adZ aao amk amk -pUY -uXY -uXY -pUY +jyG +sOX +sOX +jyG amk amk aao @@ -72181,8 +72181,8 @@ aao aao anI anI -ctp -iou +phv +iPM anI anI anI @@ -72215,17 +72215,17 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -72251,21 +72251,21 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -72278,12 +72278,12 @@ aao aao aao aao -qFZ -qFZ -qFZ -pBf -qFZ -qFZ +xxO +xxO +xxO +aLN +xxO +xxO aao aao aao @@ -72296,14 +72296,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -iDA -iDA -qFZ -pBf -qFZ +xxO +xxO +xxO +gCz +gCz +xxO +aLN +xxO aao aao aao @@ -72352,36 +72352,36 @@ aao aao aao aao -vbA -vbA -vbA -vbA -izn -fCt +wJf +wJf +wJf +wJf +vwY +ggh adZ adZ adZ adZ -hdP -hjz -bMd +vkh +juw +cHf adZ -ejE -uIH -moT -sMa -moT -xKp -moT -rVI -elr +giI +nYc +boU +njI +boU +qyB +boU +bPh +xpW adZ aao aao amk amk -mXh -gzc +fZp +sGn amk amk aao @@ -72398,15 +72398,15 @@ aao aao aao anI -vpw -qeo +tBJ +dTu anI aMr -bLv +msM ePk -knS +qJp aMr -bLv +msM xKb anI aao @@ -72431,17 +72431,17 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -72467,24 +72467,24 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -72495,11 +72495,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -72513,14 +72513,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO aao aao aao @@ -72569,42 +72569,42 @@ aao aao aao aao -vbA -vbA -vbA -vbA -izn -fCt +wJf +wJf +wJf +wJf +vwY +ggh afd -oJY -iDz +dHI +bOd adZ -hjz -hjz -pBK +juw +juw +tPI adZ -qEO -rhg -moT -sxD -moT -mJX -moT -rVI -iTC +kEw +noS +boU +tLe +boU +uDB +boU +bPh +bRX adZ aao aao aao amk -dkf -taa +hFJ +hZp amk aao aao -iZO -qiB -lRI +tus +sWz +col aao anI anI @@ -72615,16 +72615,16 @@ anI anI aao anI -ctO -vGO +gQs +nig anI -cIn -jKe -cIn -mpC -gqp -jKe -cIn +dXy +iBZ +dXy +sfX +pyF +iBZ +dXy anI aao aao @@ -72648,12 +72648,12 @@ aao aao aao aao -njM -njM -njM -dSb -njM -njM +kPA +kPA +kPA +vdB +kPA +kPA aao aao aao @@ -72684,39 +72684,39 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao aao aao aao -qFZ -iDA -iDA -qFZ -qFZ +xxO +gCz +gCz +xxO +xxO aao aao aao @@ -72731,14 +72731,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -72786,62 +72786,62 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -fCt +wJf +wJf +wJf +wJf +wJf +ggh afH -hjz -tpo -eta -hjz -hjz -bMd +juw +xhp +fgv +juw +juw +cHf adZ -iHK -phr -rVI -rVI -rVI -sxD -qaq -qWs -qxa +emX +bUA +bPh +bPh +bPh +tLe +cKG +jtG +xBz adZ aao aao -iZO +tus amY -xmv -sCX +wyB +dvn amY -dtr -dtr -fCt -vbA -kSE +fKO +fKO +ggh +wJf +qyU anI anI -gNr +bZm anL -oHW -fNq -fBK +pls +voy +lmq anI anI anI -vHR -qDS +rGQ +gFB anI -iGQ -vJN -iGQ -oGC -nRb -eGD -iGQ +dbI +mDh +dbI +ech +hWT +eem +dbI anI aao aao @@ -72864,13 +72864,13 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -72888,52 +72888,52 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO aao aao aao aao aao aao -qFZ -pBf -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +aLN +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao aao -qFZ -qFZ -iDA -iDA -qFZ -qFZ +xxO +xxO +gCz +gCz +xxO +xxO aao aao aao @@ -72948,14 +72948,14 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73003,61 +73003,61 @@ aao aao aao aao -vbA -vbA -vbA -och -vbA -fCt +wJf +wJf +wJf +izO +wJf +ggh adZ adZ adZ adZ -tkU -hjz -wno +gcO +juw +uLp adZ adZ -xAL -dqU -rvm -rvm -rvm -dqU -wAC +kJa +iCg +nki +nki +nki +iCg +sPd adZ adZ -iVI -dtr -pXT +pmD +fKO +elk amY -gPk -rYf +ofJ +gnj amY -izn -vbA -izn -dtr -fCt +vwY +wJf +vwY +fKO +ggh anL -osr -pSo -ufe -hQi -oIH -dgr -ktl +hes +dLm +fex +uzw +qwK +jKv +uLH anI anI -vCR -qeo +guU +dTu anI aMr -anr +uIW aMr -tpW +nCJ ePk -bLv +msM uUV anI aao @@ -73081,12 +73081,12 @@ aao aao aao aao -ojL -ojL -ojL -ojL -ojL -ojL +fzp +fzp +fzp +fzp +fzp +fzp aao aao aao @@ -73103,25 +73103,25 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73129,28 +73129,28 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73165,14 +73165,14 @@ aao aao aao aao -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73221,18 +73221,18 @@ aao aao aao aao -vbA -vbA -vbA -vbA -fCt +wJf +wJf +wJf +wJf +ggh afd -nvr -hjz -eta -hjz -tpo -hjz +xqs +juw +fgv +juw +xhp +juw adZ adZ adZ @@ -73244,33 +73244,33 @@ adZ adZ adZ aao -uyT -vbA -fCt +luL +wJf +ggh amk -gCY -gqO +xSv +wpw amk -uyT -dtr -bhV -vbA -fCt +luL +fKO +lWM +wJf +ggh anL -gNr -gNr +bZm +bZm anL -hQi -daW -oIH -gab -mNv +uzw +oou +qwK +uQQ +jpd anL -tjX -vdv +stp +sgn anI anI -tTt +qmz anI anI anI @@ -73298,12 +73298,12 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -73317,28 +73317,28 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -dSb -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +dXk +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73346,29 +73346,29 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73380,15 +73380,15 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO aao aao aao @@ -73439,16 +73439,16 @@ aao aao aao aao -vbA -vbA -vbA -fCt +wJf +wJf +wJf +ggh afd -oJY -mbB +dHI +xle adZ adZ -vrZ +jJp adZ adZ aao @@ -73461,38 +73461,38 @@ aao aao aao aao -izn +vwY asx -fCt +ggh amY -gPk -jPw +ofJ +gom amY -izn -vbA -vbA -vbA -fCt +vwY +wJf +wJf +wJf +ggh anI anL anL anI -vfo -oIH -oIH -oIH -osP +kwB +qwK +qwK +qwK +jGK anL -vCR -ruC +guU +tEM anI -mxd +stF aLI -nBt +hsB aHP anI -eqJ -bfx +dvg +ruv anI aao aao @@ -73513,14 +73513,14 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -73532,29 +73532,29 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73563,29 +73563,29 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO aao aao aao @@ -73596,16 +73596,16 @@ aao aao aao aao -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73656,17 +73656,17 @@ aao aao aao aao -vbA -vbA -izn -fCt +wJf +wJf +vwY +ggh adZ adZ adZ adZ -wBj -kMk -kMk +hOI +fmh +fmh adZ aao aao @@ -73676,40 +73676,40 @@ aao aao aao aao -iZO -dtr -fCt -vbA -vbA +tus +fKO +ggh +wJf +wJf amY -xmv -sCX +wyB +dvn amY -dDk +ylg xFZ -vnh -vbA -fCt +xvU +wJf +ggh anL -krN -vid -ixC -hQi -kYe -oIH -oIH -osP -vWZ -vCR -qeo -vWZ +hOj +gKU +mIO +uzw +kOX +qwK +qwK +jGK +rKI +guU +dTu +rKI aLI aMs -mxd -dyy +stF +meG anL -lIS -vME +nQw +vQo anI aao aao @@ -73730,13 +73730,13 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -73748,30 +73748,30 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73779,30 +73779,30 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -iDA -iDA -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +gCz +gCz +xxO aao aao aao @@ -73810,19 +73810,19 @@ aao aao aao aao -tJt -tJt -tJt -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ -qFZ -qFZ +bRj +bRj +bRj +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -73873,60 +73873,60 @@ aao aao aao aao -vbA -vbA -izn -fCt +wJf +wJf +vwY +ggh vAs -hKf -hKf -hKf -lYg -qex -kMk +dFI +dFI +dFI +fVL +gjK +fmh adZ aao aao aao -iZO -dtr -dtr -dtr -dtr -vbA -vbA -gMu -vbA -vbA +tus +fKO +fKO +fKO +fKO +wJf +wJf +mma +wJf +wJf amk -jfO -jPw +dNI +gom anw aao aao -izn -vnh -fCt +vwY +xvU +ggh anL -hYk -ije -nGi -qyE -oIH -uHN -oIH -osP -qVW -eKL -sfl -qVW -mxd +mwh +wwG +roS +llg +qwK +mxa +qwK +jGK +kri +pyS +tRj +kri +stF aMt aMs aLI -ufe -wsY -goI +fex +oJM +rNl anI aao aao @@ -73943,17 +73943,17 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -73964,81 +73964,81 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +kPA +kPA +dXk +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -iDA -iDA -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +gCz +gCz +xxO +xxO +gCz +gCz +xxO +xxO aao aao aao aao -qFZ -qFZ -tJt -tJt -tJt -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -iDA -iDA -qFZ +xxO +xxO +bRj +bRj +bRj +xxO +xxO +xxO +xxO +xxO +xxO +gCz +gCz +xxO aao aao aao @@ -74090,57 +74090,57 @@ aao aao aao aao -vbA -vbA -izn -fCt +wJf +wJf +vwY +ggh vAs -kMk -jQv -kMk -ufT -ufT -iTE +fmh +vik +fmh +qim +qim +wCL adZ aao aao aao -izn -vbA -vbA -vbA -vbA -vbA -huU -vbA -vbA -vbA +vwY +wJf +wJf +wJf +wJf +wJf +sIb +wJf +wJf +wJf amk amk amk amk aao aao -vbA -izn -fCt +wJf +vwY +ggh anI anL anL anI -rKI -oIH -oIH -oIH -osP +lRP +qwK +qwK +qwK +jGK anL -vCR -iqa +guU +oPV anI aLI -mxd -mxd -jsp +stF +stF +kLf anI anI anI @@ -74159,18 +74159,18 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA aao aao aao @@ -74180,82 +74180,82 @@ aao aao aao aao -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao aao aao aao -fTm -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +dXk +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -iDA -iDA -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +gCz +gCz +xxO aao aao aao @@ -74307,10 +74307,10 @@ aao aao aao aao -vbA -vbA -cHs -vbA +wJf +wJf +udB +wJf adZ adZ adZ @@ -74320,16 +74320,16 @@ adZ adZ adZ aao -iZO -dtr -vbA -vbA -vbA -vbA -vbA -fCt -vbA -vbA +tus +fKO +wJf +wJf +wJf +wJf +wJf +ggh +wJf +wJf aao aao aao @@ -74338,21 +74338,21 @@ aao aao aao aao -iZO -vbA -fCt +tus +wJf +ggh anL -dfR -gNr +wFb +bZm anL -hQi -oIH -oIH -qQs -kzb +uzw +qwK +qwK +jeU +bSR anL -hsm -iHt +xLX +sgD anI anI aMu @@ -74375,19 +74375,19 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -74396,17 +74396,17 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -74416,62 +74416,62 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -74524,12 +74524,12 @@ aao aao aao aao -vbA -vbA -dDk +wJf +wJf +ylg xFZ -vbA -bNe +wJf +dZf aao aao aao @@ -74537,14 +74537,14 @@ aao aao aao aao -izn -vbA -vbA -vbA -och -vbA -vbA -fCt +vwY +wJf +wJf +wJf +izO +wJf +wJf +ggh aao aao aao @@ -74555,21 +74555,21 @@ aao aao aao aao -izn -vbA -fCt +vwY +wJf +ggh anL -pSo -gNr -ufe -hQi -oIH -qQs -oPM +dLm +bZm +fex +uzw +qwK +jeU +vcw anI aob -txA -cez +qDj +xrb aob aob aob @@ -74592,36 +74592,36 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -74633,62 +74633,62 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -iDA -iDA -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -kZD -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +aLN +xxO +gCz +gCz +xxO +xxO +xxO +aLN +xxO +xxO +xxO +faI +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -74741,27 +74741,27 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -dtr -dtr -soz -dtr -dtr -dtr -dtr -vbA -vbA -vbA -vbA -vbA -vbA -vbA -huU +wJf +wJf +wJf +wJf +wJf +wJf +fKO +fKO +jBj +fKO +fKO +fKO +fKO +wJf +wJf +wJf +wJf +wJf +wJf +wJf +sIb aao aao aao @@ -74772,23 +74772,23 @@ aao aao aao aao -izn -vbA -fCt +vwY +wJf +ggh anI anI -gNr +bZm anL -qPs -cbu -oPM +wdA +cMr +vcw anI anI aob -cLp -nUn -opQ -qRE +dgv +sit +eti +lMl aob aao aao @@ -74807,36 +74807,36 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA aao aao aao @@ -74849,62 +74849,62 @@ aao aao aao aao -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +dXk +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -bWF -iDA -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +dmr +gCz +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -74958,26 +74958,26 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -dDk +wJf +wJf +wJf +wJf +wJf +wJf +ylg xFZ -vbA +wJf xFZ xFZ xFZ -vbA -vbA -vbA -vbA -vbA -vbA -vbA -fCt +wJf +wJf +wJf +wJf +wJf +wJf +wJf +ggh aao aao aao @@ -74989,10 +74989,10 @@ aao aao aao aao -dDk -och -vbA -bNe +ylg +izO +wJf +dZf anI anI anI @@ -75002,10 +75002,10 @@ anI anI aao aob -eNB -izQ -hLx -oVV +mhb +kTp +qdI +mwA aob aao aao @@ -75022,37 +75022,37 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -75064,27 +75064,27 @@ aao aao aao aao -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ +kPA +kPA +dXk +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO aao aao aao @@ -75094,34 +75094,34 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO aao aao -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qlG -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +gCz +gCz +xxO +xxO +xxO +xxO +xxO +xxO +xxO +tke +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -75172,29 +75172,29 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA -huU +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf +sIb aao aao aao @@ -75206,10 +75206,10 @@ aao aao aao aao -vbA -vbA -vbA -huU +wJf +wJf +wJf +sIb aao aao aao @@ -75219,10 +75219,10 @@ aao aao aao aob -irg -qLn -xlF -jjK +dYy +gqC +qQZ +hig aob aao aao @@ -75239,37 +75239,37 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -75280,27 +75280,27 @@ aao aao aao aao -njM -njM -njM -fTm -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +kPA +kPA +kPA +dXk +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -75318,26 +75318,26 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -75387,30 +75387,30 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -izn -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +vwY +wJf xFZ -huU +sIb aao aao aao @@ -75423,10 +75423,10 @@ aao aao aao aao -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf aao aao aao @@ -75436,8 +75436,8 @@ aao aao aob aob -txA -cez +qDj +xrb aob aob aob @@ -75455,39 +75455,39 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -75496,27 +75496,27 @@ aao aao aao aao -njM -njM -njM -njM -oBz -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kHS +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -75536,23 +75536,23 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -pBf -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +aLN +xxO +xxO aao aao aao @@ -75604,28 +75604,28 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -75639,11 +75639,11 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -75652,10 +75652,10 @@ aao aao aob aob -fGs -cWq -uTo -wUN +dCu +eTF +gSF +vDx aob aob aao @@ -75664,74 +75664,74 @@ aao aao aob aob -rwN -wrV +tzr +kGS aob aob aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao aao aao -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO aao aao aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -75753,22 +75753,22 @@ aao aao aao aao -qFZ -qFZ -pBf -qFZ -qFZ -iDA -iDA -qFZ -pBf -qFZ -scu -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +aLN +xxO +xxO +gCz +gCz +xxO +aLN +xxO +wJp +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -75821,22 +75821,22 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf aao aao aao @@ -75856,11 +75856,11 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -75868,76 +75868,76 @@ aao aao aob aob -jqI -chL -xAP -kso -ccy -cEX +bTM +naD +fDi +oOP +nxW +nFC aob aob aao aao aob aob -pGt -urs -jIJ -dhX +bLv +vRB +mMr +hFw aob aob aao aao aao -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO +xxO aao aao aao @@ -75971,19 +75971,19 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -iDA -iDA -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +gCz +gCz +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -76038,21 +76038,21 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -76067,93 +76067,93 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao aob aob -dMJ -chL -gsB -gBh -iFh -kNT -ccy -pLq +ivh +naD +mIt +rya +fUm +gvm +nxW +npg aob aob aob aob -kTP -nNV -qHT -dyR -qQV -dDA +mYt +kUh +uYn +uAV +nnI +tqU aob aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM -njM -fTm -qFZ -qFZ +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk +xxO +xxO aao aao aao @@ -76189,16 +76189,16 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -76255,21 +76255,21 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -76283,59 +76283,59 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aob -xci -fDy -eDy -gBh -kZQ -nNL -omZ -pIg -iqL -fbV -uyH -iFW -fbV -qUa -bXG -tue -hMy -iEB -uzf +wjn +ueP +kQn +rya +dre +lqE +qoW +lNr +hDy +sFA +bOO +pjC +sFA +nlD +izX +pKU +ilw +rli +bsf aob aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -76343,32 +76343,32 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -fTm +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +dXk aao aao aao @@ -76408,11 +76408,11 @@ aao aao aao aao -qFZ -qFZ -qFZ -qFZ -qFZ +xxO +xxO +xxO +xxO +xxO aao aao aao @@ -76472,20 +76472,20 @@ aao aao aao aao -vbA -vbA -vbA -och -vbA -vbA -uwp -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +izO +wJf +wJf +mSz +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -76500,56 +76500,56 @@ aao aao aao aao -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf aao aao aao aob -vzt -tbx -rjr -djl -xIB -sOF -mMw -tjk -pMw -rkB -eiN -lxi -rkB -fwt -wfS -ncx -xIB -iEB -xxj +eqh +pQC +dBV +wjq +rzM +cCO +pEq +hUK +psS +cVg +rWE +myH +cVg +wzs +izR +saX +rzM +rli +rsz aob aao aao -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -76564,26 +76564,26 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA aao aao aao @@ -76689,20 +76689,20 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -76717,56 +76717,56 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aob aob -tDE -sDG -fnN -iGI -xbR -frY -pys -iUx +thd +hqX +pSb +nGO +shg +bKG +off +dHs aob aob aob aob -haK -hOb -ooQ -rLM -cMk -wos +ubN +gcu +soH +mOp +qsa +jWi aob aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -76782,23 +76782,23 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -76906,20 +76906,20 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf aao aao aao @@ -76934,57 +76934,57 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao aob aob -iTh -sDG -pwd -sls -pys -bVZ +fvQ +hqX +ekT +unF +off +skz aob aob aao aao aob aob -gob -uwo -igC -mLQ +lxA +ukr +wer +pRH aob aob aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -77003,11 +77003,11 @@ aao aao aao aao -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -77123,19 +77123,19 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -77151,19 +77151,19 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -77171,10 +77171,10 @@ aao aao aob aob -mao -oHM -eIG -wsd +vum +nDM +nyz +uUZ aob aob aao @@ -77183,25 +77183,25 @@ aao aao aob aob -aoC -lmy +wki +vNQ aob aob aao aao -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -77340,19 +77340,19 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -77368,22 +77368,22 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -77401,24 +77401,24 @@ aao aao aob aob -cSp -cSp -vbA -vbA -vbA -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +qSU +qSU +wJf +wJf +wJf +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -77557,19 +77557,19 @@ aao aao aao aao -vbA -vbA -och -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +izO +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -77585,57 +77585,57 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +wJf +wJf +wJf +wJf +wJf +wJf +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -77774,18 +77774,18 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf aao aao aao @@ -77803,57 +77803,57 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -njM -njM -dSb -njM -njM -njM -njM -njM -njM -njM -njM -dSb -njM -njM +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +kPA +kPA +vdB +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +vdB +kPA +kPA aao aab aab @@ -77991,17 +77991,17 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -78021,56 +78021,56 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aab aaa @@ -78209,16 +78209,16 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao @@ -78239,61 +78239,61 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf aao aao aao aao aao aao -vbA -vbA -och -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -njM -njM +wJf +wJf +izO +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +kPA +kPA aao -njM -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aab aaa aaa aaa -btP +cQf aaa aaa aaa @@ -78426,9 +78426,9 @@ aao aao aao aao -vbA -vbA -vbA +wJf +wJf +wJf aao aao aao @@ -78457,9 +78457,9 @@ aao aao aao aao -vbA -vbA -vbA +wJf +wJf +wJf aao aao aao @@ -78468,49 +78468,49 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -och -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +izO +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao aao aao -njM -njM -njM -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA +kPA aao aao aab aaa aaa aaa -btP +cQf aaa aaa aaa @@ -78686,40 +78686,40 @@ aao aao aao aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao -vbA -vbA -vbA -vbA -vbA -vbA -vbA +wJf +wJf +wJf +wJf +wJf +wJf +wJf aao aao -vbA -vbA +wJf +wJf aao aao aao aao aao -njM -njM -njM -dSb -njM -njM -njM -njM +kPA +kPA +kPA +vdB +kPA +kPA +kPA +kPA aao aao aao @@ -78729,7 +78729,7 @@ aaa aaa aaa aaa -btP +cQf aaa aaa aaa @@ -78906,12 +78906,12 @@ aao aao aao aao -vbA -vbA -vbA +wJf +wJf +wJf aao -vbA -vbA +wJf +wJf aao aao aao @@ -78930,12 +78930,12 @@ aao aao aao aao -njM -njM -njM -njM -njM -njM +kPA +kPA +kPA +kPA +kPA +kPA aao aao aao @@ -78946,15 +78946,15 @@ aaa aaa aaa aaa -btP +cQf aaa aaa aaa aaa aaa -btP -btP -btP +cQf +cQf +cQf aaa aaa aaa @@ -79149,10 +79149,10 @@ aao aao aao aao -njM -njM -njM -njM +kPA +kPA +kPA +kPA aao aao aao @@ -79169,9 +79169,9 @@ aaa aaa aaa aaa -btP -btP -btP +cQf +cQf +cQf aaa aaa aaa diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm index 594ea13ac5..7f8a0f8d92 100644 --- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm +++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm @@ -70,6 +70,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, /area/bigredv2/outside/marshal_office) +"cD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "cE" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/landmark/crap_item, @@ -132,91 +138,117 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"dn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Armory" +"dH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/obj/item/ammo_casing/shell, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dM" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"eB" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"fj" = ( +/obj/structure/bed, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"dy" = ( +"fx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "door_locked"; name = "\improper Marshal Office Prison" }, /turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"dA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/item/ammo_casing/shell, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"fc" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ff" = ( +"fK" = ( /obj/structure/surface/table, /obj/item/ore/diamond, /obj/item/ore/uranium, /turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"fl" = ( -/obj/structure/machinery/light{ - dir = 4 +"gl" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"gm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"fn" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, +"gp" = ( +/obj/item/shard, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"hC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + icon_state = "door_locked"; + name = "\improper Marshal Office Holding Cell" + }, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"ft" = ( -/turf/open/floor/freezerfloor, +"ie" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"gh" = ( -/obj/structure/bed/chair{ +"ih" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"gM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"jx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Holding Cell" }, -/turf/open/floor/redfull/northwest, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jP" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/n) +"kj" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"hy" = ( +"kV" = ( /obj/structure/surface/table, /obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"hJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, +"li" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"iZ" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"jp" = ( -/obj/structure/pipes/vents/pump, +"lw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/shell, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) -"jr" = ( +"mp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"mw" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; icon_state = "door_locked"; @@ -224,991 +256,959 @@ }, /turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"js" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"mA" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"nl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"kk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, +"nG" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"nH" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"kr" = ( +"oG" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"oN" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/item/ammo_casing/shell, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"kE" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/n) -"kV" = ( +"pd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; dir = 1; - icon_state = "door_locked"; - name = "\improper Marshal Office Holding Cell" + icon_state = "door_open"; + name = "\improper Marshal Office Armory" }, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"mv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/dark, +"ps" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"mD" = ( +"pI" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"pM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/red/west, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"pW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"nk" = ( +"qc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/redcorner, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"nn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, +"qj" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/n) +"qB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) -"nr" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/dark, +"qE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"nt" = ( +"qJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, /turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"nx" = ( -/obj/structure/machinery/light{ - dir = 8 +"qS" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"qZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Marshal Office" }, -/turf/open/floor/redfull/northwest, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"nC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_y = 24 - }, -/turf/open/floor/redcorner/east, +"rZ" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) -"nD" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"sb" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/redcorner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"nH" = ( +"tk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"nJ" = ( -/turf/open/floor/redcorner/east, +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"nY" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"oS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"ub" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Checkpoint" }, -/obj/item/ammo_casing/shell, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"um" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"pW" = ( +"uw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"pX" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"qf" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"uA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"qg" = ( +"uK" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/redcorner/east, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"ra" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/prisoner, +"uL" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"rd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/red/north, -/area/bigredv2/outside/marshal_office) -"rs" = ( -/obj/item/shard, +"uU" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"rD" = ( +"uX" = ( +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vi" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"rK" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"rN" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"st" = ( +"wE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"sv" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/n) -"sW" = ( -/obj/structure/surface/table, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"tg" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_y = 24 + }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"tj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"wV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/red/southeast, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"tx" = ( +"xs" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"yj" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"tP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor/dark, +"ym" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"yN" = ( +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"tV" = ( +"yO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/red/east, +/turf/open/floor/red, /area/bigredv2/outside/marshal_office) -"ud" = ( +"yU" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Aq" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/item/ammo_casing/shell, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"uH" = ( -/obj/structure/machinery/computer/secure_data, +"AB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"BR" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"BU" = ( /obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/camera/autoname, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"uJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Cf" = ( +/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"vm" = ( -/obj/structure/surface/rack, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"vD" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"vO" = ( +"Cg" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, /turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"wa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/red/northwest, -/area/bigredv2/outside/marshal_office) -"wo" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"xi" = ( +"Cv" = ( +/obj/item/shard, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"xG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/obj/item/weapon/shield/riot, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"xV" = ( +"CL" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"ye" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"CP" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Prison" }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"yr" = ( -/obj/item/shard, -/turf/open/floor/dark, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"yA" = ( -/turf/open/floor/redcorner, +"Du" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"yY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"DA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - icon_state = "door_locked"; - name = "\improper Marshal Office Armory" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"zo" = ( -/obj/structure/surface/table, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"Ao" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"AF" = ( -/turf/open/floor/bcircuit, +"Eb" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"AK" = ( +"Ef" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"Be" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Bl" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"Bv" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"Bx" = ( -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"Dt" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/vault2/west, +"Ei" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"DN" = ( +"Eu" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"DO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"DV" = ( +"EO" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ET" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"Er" = ( -/obj/structure/machinery/camera/autoname, +"EV" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/n) +"Fc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/obj/item/weapon/shield/riot, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Fk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"FI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; + icon_state = "SE-out"; + pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/red/northeast, +/turf/open/floor/red/northwest, /area/bigredv2/outside/marshal_office) -"Ez" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"FR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/redcorner, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"EO" = ( +"Go" = ( /obj/structure/surface/rack, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor/dark, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"Fm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +"GU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/red/southwest, /area/bigredv2/outside/marshal_office) -"Ft" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/dark, +"GV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"FF" = ( +"JE" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/screwdriver, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Gj" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/dark, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"He" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"Kc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Hh" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"HK" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/item/tool/soap/deluxe, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"HN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"HX" = ( +"KI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/knife, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"IT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor/vault2/west, +/obj/item/tool/screwdriver, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"Jv" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, +"Lf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"JF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/redcorner, +"Ly" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"Mi" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"JZ" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/beret/sec/warden, +"Mx" = ( /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"Kt" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, +"MH" = ( /turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"Ky" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/redcorner, +"Nd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"KQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" +"Nk" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Ns" = ( +/obj/structure/sink{ + pixel_y = 32 }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"Ml" = ( +"Nv" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"NF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/black_vest, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"NT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"MO" = ( +"Ob" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"MX" = ( -/obj/structure/closet/secure_closet/brig, +"OR" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"OS" = ( +/obj/structure/closet/secure_closet/marshal, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"Na" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +"Qd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "\improper Marshal Office Checkpoint" + name = "\improper Marshal Office Prison Toilet" }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"NF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/dark, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"NG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, +"QE" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"NH" = ( -/obj/structure/machinery/deployable/barrier, +"QF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/southright, /turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"NN" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"Oa" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Oi" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"QL" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Marshal Office Prison" }, /turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"Ou" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"Py" = ( -/obj/structure/bed, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"PF" = ( -/obj/effect/landmark/corpsespawner/prison_security, +"Rh" = ( +/obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"PK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"Rl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/red, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"Qn" = ( +"Rz" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"RE" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"Qo" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"QM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) -"QP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"QR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/red/southwest, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"RK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Prison" +"RZ" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/whitegreenfull/northeast, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"RY" = ( -/obj/structure/machinery/power/apc/power/south, -/obj/structure/machinery/camera/autoname{ +"Sj" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/dark, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"Sc" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" +"Sq" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"Ss" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Sw" = ( /obj/structure/surface/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/dark, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"SD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/red/west, +"ST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"SK" = ( +"To" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"TH" = ( -/obj/structure/surface/table, -/turf/open/floor/white, +"Ty" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"TJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig" +"TX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/delivery, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"UA" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 +"Ua" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Uc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/redfull/northwest, +/turf/open/floor/red/north, +/area/bigredv2/outside/marshal_office) +"Up" = ( +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "UH" = ( -/obj/structure/sink{ - pixel_y = 32 +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 }, +/obj/item/tool/soap/deluxe, /turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"Vp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +"UO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"Ve" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; + icon_state = "door_locked"; name = "\improper Marshal Office Prison" }, /turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"VA" = ( +"Vh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Vl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"Wk" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" + icon_state = "door_locked"; + name = "\improper Marshal Office Armory" }, -/turf/open/floor/delivery, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"WU" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/n) -"WZ" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/redcorner/east, +"Vp" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"XJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 +"Vv" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"VG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"VH" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Wx" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"YD" = ( +"Xg" = ( +/obj/structure/machinery/computer/secure_data, /obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/bcircuit, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"Za" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, +"Xl" = ( +/obj/structure/surface/table, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"XD" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"XI" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"Zh" = ( +"XM" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, /turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"Zk" = ( +"Yv" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/marshal_office) -"Zm" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"Zq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/shell, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/redcorner/west, +"Zw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) -"Zr" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 +"ZB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/vault2/west, +/turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) -"Zv" = ( +"ZN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, +/obj/effect/landmark/good_item, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) (1,1,1) = {" -SK -xV -xV -Vp -xV -xV -jr -tx +qc +yN +yN +QL +yN +yN +mw +yj aY -Hh +kj ah -AF -Kt -AF -AF +MH +TX +MH +MH at -pW -SD +Rl +qZ ah ah ah dj "} (2,1,1) = {" -xV -SK -SK +yN +qc +qc at -Bx -Bx +uX +uX ah -Zv +JE aY -yA +Up ah -AF -xi -xi -xi +MH +Mx +Mx +Mx at -VA -yA +ps +Up bG -xi -MX +Mx +Mi dj "} (3,1,1) = {" -TH -SK -Jv +mA +qc +Wx at at at ah -Zv +JE aY -yA -ah -vO -xi -xi -xi -Wk -VA -Ez -tP -xi -fc +Up +ah +Cg +Mx +Mx +Mx +AB +ps +Kc +jx +Mx +Ua dj "} (4,1,1) = {" -TH -SK -SK +mA +qc +qc at -XJ -hy +FR +kV ah -Zv +JE aZ -yA +Up ah -ff -YD -zo -Zm +fK +nH +Sw +Vv at -VA -HX +ps +To bG -xi -Py +Mx +fj dj "} (5,1,1) = {" -ra -hJ -Za -Oi -Za -Za -dy -nn +Lf +uL +EO +fx +EO +EO +Ve +uU ba -AK +Ef ah at at at at at -nC -Zh +wE +nl ah ah ah dj "} (6,1,1) = {" -gh -xV -xV +sb +yN +yN at -Bx -Bx +uX +uX ah -nJ +Nk bb -Zh -ah -wa -uJ -mD -QR -xi -VA -Zh +nl +ah +FI +GV +DA +GU +Mx +ps +nl bG -xi -MX +Mx +Mi dj "} (7,1,1) = {" -TH -xV -SK +mA +yN +qc at at at ah -nJ +Nk bb -nk -ah -rd -AF -tg -PK -xi -ye -Zh -kV -xi -fc +ZN +ah +Uc +MH +Ei +yO +Mx +wV +nl +hC +Mx +Ua dj "} (8,1,1) = {" -NN -xV -xV +CL +yN +yN at -XJ -hy +FR +kV ah -nJ +Nk bc -Zh -ah -rd -AF -AF -PK -xi -js -JF +nl +ah +Uc +MH +MH +yO +Mx +uw +oG bL -xi -Py +Mx +fj dj "} (9,1,1) = {" -SK -SK -SK -Vp -xV -xV -RK -nJ +qc +qc +qc +QL +yN +yN +CP +Nk bc -Bv +dM ah -Er -tV -tV -tj -xi -js -yA +Nv +ZB +ZB +VG +Mx +uw +Up ah ah ah dj "} (10,1,1) = {" -Zk -QM -QM +Yv +Fk +Fk at -Bx -Bx +uX +uX ah -nJ +Nk bb -Hh -ah -xi -xi -xi -xi -xi -js -yA +kj +ah +Mx +Mx +Mx +Mx +Mx +uw +Up bG -xi -MX +Mx +Mi dj "} (11,1,1) = {" ah -UH -ft +Ns +xs at at at ah -nJ +Nk bb -Zh -TJ -Qo -nH -nH -Zq -rN +nl +pW +ym +qB +qB +lw +rZ bb -yA -tP -xi -fc +Up +jx +Mx +Ua dj "} (12,1,1) = {" ah -HK -Fm -KQ -fl -DO +UH +gm +Qd +pI +RZ ah -nJ +Nk bd -HN -kk -Ml -HN -HN -nt +qJ +Nd +mp +qJ +qJ +XM cs cE -nD +pM bG -fn -Py +Rh +fj dj "} (13,1,1) = {" @@ -1224,12 +1224,12 @@ ah ah ah bG -IT +ie bG ah -WZ +gl cF -Ky +Sq ah ah ah @@ -1238,94 +1238,94 @@ dj (14,1,1) = {" ai ai -Ou -nY -ah -rK -NH -NH -NH -ah -Gj -xi -xi -Ss +Rz +nG +ah +Eb +Ty +Ty +Ty +ah +OS +Mx +Mx +ET bG -Zv +JE bc -yA +Up bL -xi -MX +Mx +Mi dj "} (15,1,1) = {" aj aj aj -iZ +qS ah -Bl -xi -xi -xi +Sj +Mx +Mx +Mx ah -vD -xi -xi -Ss +uA +Mx +Mx +ET bG -QP +QE bc -JF -kV -xi -fc +oG +hC +Mx +Ua dj "} (16,1,1) = {" aj aj aj -iZ +qS ah -pX -xi -EO -xi -ah -vD -xi -Be -xi -Dt -Zv +Du +Mx +NF +Mx +ah +uA +Mx +uK +Mx +QF +JE bb -Zh +nl bG -xi -Py +Mx +fj dj "} (17,1,1) = {" aj aj -kE -iZ -ah -pX -Be -Oa -xi -ah -nr -dA -MO -Ft +qj +qS +ah +Du +uK +XI +Mx +ah +BU +oN +Ob +VH co -qg +li bb -Zh +nl ah ah ah @@ -1334,118 +1334,118 @@ dj (18,1,1) = {" aj aj -WU +jP ai ah -vm -Be -qf -RY +vi +uK +Vh +Cf ah -JZ -FF -NF -Ft +eB +KI +ST +VH cp -rs +gp cF -Zh -Na -UA -nx -Sc +nl +ub +OR +UO +Ly "} (19,1,1) = {" aj -kE -Ao +qj +BR ai ah -rD -Be -DN -fc +Go +uK +Eu +Ua ah -ud -Be -kr -yr +Aq +uK +pd +Cv bL -nJ +Nk bb -Zh +nl bG -sW -gM -Sc +Xl +Zw +Ly "} (20,1,1) = {" -kE -Ao +qj +BR ai ai ah -wo -Be -jp -DV -dn -DV -DV -oS -He -dn -nn +yU +uK +XD +um +pl +um +um +dH +NT +pl +uU cK -Zh +nl ah bG bG dj "} (21,1,1) = {" -sv +EV ai ai ai ah -Zr -xi -Be -xi +RE +Mx +uK +Mx ah -uH -PF -st -mv +Xg +Vp +ih +tk ah -nJ +Nk cL -NG +qE cX dd dd dk "} (22,1,1) = {" -iZ +qS ah ah ah ah ah ah -xG +Fc ah ah ah bL -yY +Vl bG ah -Qn +cD cM -Zh +nl cY cY di diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm index ac01a7d1f4..9ae1d2f713 100644 --- a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm +++ b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm @@ -1,169 +1,91 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ao" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz2_south_cas) -"au" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/shield/riot, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"az" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"ae" = ( /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"bu" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cj" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/bigredv2/outside/lz2_south_cas) +"aC" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_sw) +"be" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_sw) +"bP" = ( +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"bW" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_sw) +"cC" = ( +/obj/item/shard{ + pixel_x = 11; + pixel_y = 8 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"cH" = ( +/obj/structure/machinery/door/poddoor/two_tile{ + name = "\improper Eta Tunnel Lockdown" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) "cR" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "dx" = ( /turf/open/mars_cave, /area/bigredv2/caves_research) -"fo" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz2_south_cas) -"fK" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"fQ" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz2_south_cas) -"gQ" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_sw) -"ie" = ( -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"ii" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_sw) -"ik" = ( -/turf/open/mars_cave/mars_cave_13, +"eu" = ( +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) -"io" = ( -/turf/open/mars_cave/mars_cave_6, +"ff" = ( +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) -"iF" = ( -/obj/structure/surface/table/reinforced/prison, +"fH" = ( /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/item/shard{ - pixel_x = -8; - pixel_y = 7 + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jj" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"ki" = ( -/obj/structure/machinery/light/double{ - dir = 4 - }, +"iv" = ( /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/slug/baton{ - dir = 1; - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/explosive/grenade/slug/baton{ - dir = 4; - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/explosive/grenade/high_explosive/airburst/hornet_shell{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/explosive/grenade/high_explosive/airburst{ - pixel_y = 8 - }, -/obj/item/storage/box/packet/baton_slug{ - pixel_x = -7; - pixel_y = -3 +"iE" = ( +/obj/structure/machinery/light/double{ + dir = 4 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kS" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_sw) -"lQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_sw) -"mT" = ( -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/plating/burnt_platingdmg3/west, -/area/bigredv2/caves/mining) -"nx" = ( +"iY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) -"pn" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_sw) -"qm" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"qW" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_sw) -"sJ" = ( -/obj/item/clothing/suit/storage/CMB, -/obj/structure/closet/secure_closet/marshal, -/obj/structure/machinery/light/double, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sV" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"uJ" = ( -/obj/item/shard{ - pixel_x = 11; - pixel_y = 8 +"jf" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 11 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vX" = ( -/turf/open/mars_cave/mars_dirt_5, +"jF" = ( +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_sw) -"wn" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz2_south_cas) -"wJ" = ( -/turf/open/floor/asteroidfloor/north, +"jO" = ( +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz2_south_cas) -"wK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wW" = ( +"kV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"ls" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/helmetgarb/riot_shield{ pixel_y = -15 @@ -182,7 +104,49 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xS" = ( +"lB" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz2_south_cas) +"mg" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_sw) +"mk" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"ml" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"nP" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz2_south_cas) +"nU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/shield/riot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pd" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_sw) +"pE" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6"; + pixel_y = 20 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bundle, +/obj/item/restraint/handcuffs{ + pixel_y = -3 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rJ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz2_south_cas) +"sy" = ( /obj/item/trash/cigbutt, /obj/item/shard{ pixel_x = 9; @@ -190,45 +154,79 @@ }, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) -"yw" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"zB" = ( +"tG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) -"zP" = ( -/turf/open/mars_cave/mars_cave_20, +"vl" = ( +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz2_south_cas) -"AD" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6"; - pixel_y = 20 +"vs" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vy" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_research) +"wo" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_sw) +"xY" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"ye" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) +"yj" = ( +/obj/item/clothing/suit/storage/CMB, +/obj/structure/closet/secure_closet/marshal, +/obj/structure/machinery/light/double, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"yw" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"zf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/device/flashlight/lamp/on{ + pixel_x = -5; + pixel_y = 17 }, +/obj/item/clothing/mask/cigarette/cigar/havana, +/obj/item/shard, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Be" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshals Mining Security Post" +"Ce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window{ + dir = 1 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Bm" = ( -/turf/open/mars_cave/mars_cave_14, +"Ch" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"CX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) -"Bz" = ( +"Dp" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"BO" = ( +"Dw" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"ET" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) -"BY" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_research) -"En" = ( +"EV" = ( /obj/structure/window_frame/solaris/reinforced, /obj/item/shard{ pixel_x = -9; @@ -241,112 +239,106 @@ /obj/item/shard, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Et" = ( -/turf/open/mars_cave/mars_cave_10, +"Fm" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Gy" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_research) -"Fp" = ( -/turf/open/mars_cave/mars_cave_19, +"GS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_sw) -"FB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/under/marine/ua_riot, +"GV" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_sw) +"Ie" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"FW" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz2_south_cas) -"Jm" = ( +"Ik" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshals Mining Security Post" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"IT" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) -"Jy" = ( +"Jd" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/device/flashlight/lamp/on{ - pixel_x = -5; - pixel_y = 17 +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/item/clothing/mask/cigarette/cigar/havana, -/obj/item/shard, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"Jg" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_sw) +"JC" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) "JV" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) -"JW" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"KI" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, +"Ke" = ( +/turf/open/floor/plating/burnt_platingdmg3/west, /area/bigredv2/caves/mining) -"Le" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"MN" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" +"Ma" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"MT" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Nu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"OV" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_y = 11 +"Ni" = ( +/obj/item/shard{ + icon_state = "small" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"OY" = ( -/turf/open/mars_cave/mars_cave_14, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) -"Qn" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/item/shard, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"QO" = ( +"Ns" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"QS" = ( -/obj/structure/machinery/door/poddoor/two_tile{ - name = "\improper Eta Tunnel Lockdown" - }, -/turf/open/floor/asteroidfloor/north, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz2_south_cas) -"QV" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_sw) -"Rm" = ( +"Od" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_y = 3 + }, +/obj/item/newspaper, /obj/item/shard{ - icon_state = "small" + pixel_x = -8; + pixel_y = 7 }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"PS" = ( /turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"Sy" = ( +/area/bigredv2/caves_sw) +"Qh" = ( /obj/item/weapon/broken_bottle, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Tm" = ( +"Qo" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; @@ -356,63 +348,71 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Ue" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bundle, -/obj/item/restraint/handcuffs{ - pixel_y = -3 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Uh" = ( +"QT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_sw) -"UG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) -"UX" = ( +"Si" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"TS" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_sw) +"UB" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"UZ" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) "VR" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"Wy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"WV" = ( -/turf/open/mars_cave/mars_dirt_6, +"VV" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_research) +"XA" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) -"Xl" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz2_south_cas) -"Xm" = ( +"Ya" = ( +/obj/item/clothing/head/helmet/riot, /turf/open/floor/plating/burnt_platingdmg3/west, /area/bigredv2/caves/mining) -"XE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, +"Zg" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/shard, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"XV" = ( +"Zl" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz2_south_cas) +"Zu" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window{ - dir = 1 +/obj/item/explosive/grenade/slug/baton{ + dir = 1; + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/explosive/grenade/slug/baton{ + dir = 4; + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/explosive/grenade/high_explosive/airburst/hornet_shell{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/explosive/grenade/high_explosive/airburst{ + pixel_y = 8 + }, +/obj/item/storage/box/packet/baton_slug{ + pixel_x = -7; + pixel_y = -3 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Yt" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz2_south_cas) -"Zk" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_sw) -"Zz" = ( /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) @@ -423,16 +423,16 @@ cR cR cR JV -fK -wn -ik -JW +IT +Ns +ye +UB VR -Ue -XE -MN -Tm -sJ +rA +Jd +Qo +fH +yj VR cR cR @@ -444,17 +444,17 @@ cR cR cR cR -qm -fo -jj -jj -ie -En -iF -wK -Bz -AD -bu +ae +nP +Dw +Dw +bP +EV +Od +MT +Dp +pE +Fm VR cR cR @@ -462,84 +462,84 @@ cR "} (3,1,1) = {" cR -Xl -zP +eu +Zl cR yw -qm -fo -fQ -Xl -xS -Qn -Jy -uJ -Sy -mT -OV +ae +nP +JC +eu +sy +Zg +zf +cC +Qh +Ya +jf VR cR cR cR "} (4,1,1) = {" -ao -Xl -Xl +jO +eu +eu yw yw yw -OY -Xl -nx -Rm -XV -cj -KI -Zz -Xm -FB +vl +eu +iY +Ni +Ce +Ie +Ch +iv +Ke +Si VR cR cR cR "} (5,1,1) = {" -fo -jj -jj -QS -wJ -QS -jj -fQ -Xl -BO -Wy -ki -Zz -kq -wW -au +nP +Dw +Dw +cH +Ma +cH +Dw +JC +eu +ET +vs +iE +iv +Zu +ls +nU VR cR cR cR "} (6,1,1) = {" -fo -jj -jj -wJ -wJ -wJ -jj -jj -jj -BO +nP +Dw +Dw +Ma +Ma +Ma +Dw +Dw +Dw +ET VR VR -Be +Ik VR VR VR @@ -549,19 +549,19 @@ cR cR "} (7,1,1) = {" -qm -Yt -Yt +ae +rJ +rJ yw yw yw -Zk -gQ -UX -pn -zB -zB -zB +GV +wo +UZ +PS +xY +xY +xY cR cR cR @@ -571,20 +571,20 @@ cR cR "} (8,1,1) = {" -FW -Jm -Jm +lB +ml +ml cR yw cR cR -zB -Zk -zB -zB -zB -zB -zB +xY +GV +xY +xY +xY +xY +xY cR cR cR @@ -593,21 +593,21 @@ cR cR "} (9,1,1) = {" -BO -qm +ET +ae cR cR cR cR cR -zB -zB -Nu -zB -zB -zB -zB -qW +xY +xY +QT +xY +xY +xY +xY +Jg cR cR cR @@ -615,21 +615,21 @@ cR cR "} (10,1,1) = {" -BO -qm -qm +ET +ae +ae cR cR cR cR cR -zB -sV -sV -sV -sV -ii -UX +xY +XA +XA +XA +XA +mg +UZ cR cR cR @@ -637,66 +637,66 @@ cR cR "} (11,1,1) = {" -BO -qm -qm -Jm -Jm +ET +ae +ae +ml +ml cR cR cR cR -sV -sV -sV -sV -Uh -UX -vX +XA +XA +XA +XA +GS +UZ +aC cR cR cR cR "} (12,1,1) = {" -qm -ik -ik -qm -Jm -qm +ae +ye +ye +ae +ml +ae cR cR cR cR cR -sV -sV -ii -vX -vX +XA +XA +mg +aC +aC cR cR cR cR "} (13,1,1) = {" -fo -jj -Xl -BO -ik -ik +nP +Dw +eu +ET +ye +ye cR cR cR cR cR cR -zB -ii -vX -vX +xY +mg +aC +aC cR cR cR @@ -706,19 +706,19 @@ cR cR cR cR -OY -jj -jj -BO +vl +Dw +Dw +ET cR cR cR cR cR -zB -ii -UX -vX +xY +mg +UZ +aC cR cR cR @@ -728,19 +728,19 @@ cR cR cR cR -UX -kS -kS -pn +UZ +pd +pd +PS cR cR cR cR -zB -zB -ii -kS -UX +xY +xY +mg +pd +UZ cR cR cR @@ -751,18 +751,18 @@ cR cR cR cR -UX -UX -pn -zB +UZ +UZ +PS +xY cR cR cR -zB -zB -Uh -UX -kS +xY +xY +GS +UZ +pd cR cR cR @@ -773,17 +773,17 @@ cR cR cR cR -UX -Fp -zB -zB -zB +UZ +jF +xY +xY +xY cR cR -zB -zB -ii -UX +xY +xY +mg +UZ cR cR cR @@ -791,21 +791,21 @@ cR cR "} (18,1,1) = {" -zB +xY cR cR -WV -UX -pn -zB -zB +TS +UZ +PS +xY +xY cR cR cR -zB -zB -zB -Zk +xY +xY +xY +GV cR cR cR @@ -813,21 +813,21 @@ cR cR "} (19,1,1) = {" -zB +xY cR cR cR -Fp -zB -zB -zB +jF +xY +xY +xY cR cR cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -835,21 +835,21 @@ cR cR "} (20,1,1) = {" -zB -zB -zB -zB -zB -qW -qW +xY +xY +xY +xY +xY +Jg +Jg cR cR cR -zB -zB -Nu -zB -zB +xY +xY +QT +xY +xY cR cR cR @@ -857,21 +857,21 @@ cR cR "} (21,1,1) = {" -pn -zB -zB -qW -Bm -UX -UX +PS +xY +xY +Jg +bW +UZ +UZ cR cR cR -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR cR @@ -879,21 +879,21 @@ cR cR "} (22,1,1) = {" -pn -zB -ii -UX -UX -vX -vX +PS +xY +mg +UZ +UZ +aC +aC cR cR cR -UG -UG -UG -UG -UG +tG +tG +tG +tG +tG cR cR cR @@ -901,21 +901,21 @@ cR cR "} (23,1,1) = {" -QV -qW -Bm -UX -kS -UX -vX +be +Jg +bW +UZ +pd +UZ +aC cR cR cR cR -zB -zB -zB -qW +xY +xY +xY +Jg cR cR cR @@ -923,21 +923,21 @@ cR cR "} (24,1,1) = {" -UX -UX -UX -kS -Fp -gQ -UX -UX +UZ +UZ +UZ +pd +jF +wo +UZ +UZ cR cR cR -zB -zB -ii -kS +xY +xY +mg +pd cR cR cR @@ -945,54 +945,54 @@ cR cR "} (25,1,1) = {" -UX -UX -kS -UX -pn -ii -kS -UX +UZ +UZ +pd +UZ +PS +mg +pd +UZ cR cR cR -zB -qW -qW -kS -kS +xY +Jg +Jg +pd +pd cR cR cR cR "} (26,1,1) = {" -Fp -Zk -Zk -Zk -zB +jF +GV +GV +GV +xY cR -UX -UX +UZ +UZ cR cR cR cR -UX -lQ -kS -kS +UZ +CX +pd +pd cR cR cR cR "} (27,1,1) = {" -pn -zB -zB -zB +PS +xY +xY +xY cR cR cR @@ -1001,20 +1001,20 @@ cR cR cR cR -UX -kS -kS -UX +UZ +pd +pd +UZ cR cR cR cR "} (28,1,1) = {" -pn -zB -zB -zB +PS +xY +xY +xY cR cR cR @@ -1023,21 +1023,21 @@ cR cR cR cR -gQ -UX -UX -Fp -zB +wo +UZ +UZ +jF +xY cR cR cR "} (29,1,1) = {" -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR cR @@ -1045,21 +1045,21 @@ cR cR cR cR -zB -Zk -Zk -zB -zB +xY +GV +GV +xY +xY cR cR cR "} (30,1,1) = {" -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR cR @@ -1068,20 +1068,20 @@ cR cR cR cR -zB -Nu -zB -zB +xY +QT +xY +xY cR cR cR "} (31,1,1) = {" cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -1090,18 +1090,18 @@ cR cR cR cR -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR "} (32,1,1) = {" cR cR -zB +xY cR cR cR @@ -1112,11 +1112,11 @@ cR cR cR cR -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR "} @@ -1134,10 +1134,10 @@ cR cR cR cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -1156,10 +1156,10 @@ cR cR cR cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -1179,9 +1179,9 @@ cR cR cR cR -UG -UG -UG +tG +tG +tG cR cR cR @@ -1201,10 +1201,10 @@ cR cR cR cR -Le -Le -Le -Le +ff +ff +ff +ff cR cR "} @@ -1222,13 +1222,13 @@ cR cR cR cR -Le -Le -az -Le -Le -Le -Le +ff +ff +kV +ff +ff +ff +ff "} (38,1,1) = {" cR @@ -1243,14 +1243,14 @@ cR cR cR cR -Le -Le -Le -Le -Le -Le -Le -Le +ff +ff +ff +ff +ff +ff +ff +ff "} (39,1,1) = {" cR @@ -1265,14 +1265,14 @@ cR cR cR cR -Le -Le -Le -Le -Le -Le -Le -az +ff +ff +ff +ff +ff +ff +ff +kV "} (40,1,1) = {" cR @@ -1287,13 +1287,13 @@ cR cR cR cR -Le -Le -Le -Le -Le -io -Le +ff +ff +ff +ff +ff +mk +ff dx "} (41,1,1) = {" @@ -1308,15 +1308,15 @@ cR cR cR cR -Le -Le -Le -QO -Le -Le -Le -Le -Le +ff +ff +ff +Gy +ff +ff +ff +ff +ff "} (42,1,1) = {" yw @@ -1329,14 +1329,14 @@ cR cR cR cR -Le -Le -Le -Et -az -Le -Le +ff +ff +ff +VV +kV +ff +ff dx -BY +vy cR "} diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index be8eb57beb..d3f429217f 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -491,15 +491,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"aeh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) "aei" = ( /obj/structure/bed, /obj/structure/machinery/light{ @@ -548,10 +539,6 @@ /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/hangar/arrivals) -"aeK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/airlock/control) "aeM" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/office) @@ -966,20 +953,9 @@ "akz" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/hangar) -"akA" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/clonepod, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) "akB" = ( /turf/closed/wall/biodome, /area/corsat/theta/airlock/east) -"akO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) "akS" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -1008,24 +984,6 @@ /obj/item/device/camera/oldcamera, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"alg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"alm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"alo" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"alq" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) "alr" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, @@ -1521,12 +1479,6 @@ "arN" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/laundry) -"arS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/control) "arT" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -1578,12 +1530,6 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) -"asl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/medbay/morgue) "asm" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/showers) @@ -1887,6 +1833,13 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/south/engineering) +"auT" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaN"; + name = "Omega Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) "auU" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/corsat, @@ -1905,6 +1858,11 @@ "avj" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/checkpoint) +"avk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) "avm" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/south/offices) @@ -1914,15 +1872,6 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/hangar/checkpoint) -"avw" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"avC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplecorner, -/area/corsat/gamma/biodome/complex) "avD" = ( /obj/structure/surface/table/woodentable, /obj/item/paper, @@ -2006,6 +1955,13 @@ "azX" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/biodome) +"aAn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) "aAo" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -2013,6 +1969,18 @@ }, /turf/open/space, /area/space) +"aBd" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"aBN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) "aCa" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/corsat, @@ -2041,6 +2009,10 @@ }, /turf/open/floor/wood, /area/corsat/sigma/cafe) +"aDW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) "aDY" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" @@ -2087,11 +2059,6 @@ "aEy" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/hangar) -"aEI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) "aEP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/ice, @@ -2114,12 +2081,6 @@ /obj/effect/alien/weeds/node, /turf/open/ice, /area/corsat/gamma/biodome) -"aFa" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) "aFd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/alien/weeds/node, @@ -2227,6 +2188,12 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) +"aFQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/sigma/dorms) "aFR" = ( /obj/structure/bed, /obj/item/pizzabox/margherita, @@ -2274,11 +2241,6 @@ }, /turf/open/floor/plating, /area/corsat/gamma/administration) -"aGZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/hangar/flightcontrol) "aHg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Quarters"; @@ -2289,12 +2251,6 @@ }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"aHl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security/cells) "aHL" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/hangar/security) @@ -2377,12 +2333,6 @@ /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/theta/airlock/control) -"aKd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) "aKg" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, @@ -2470,6 +2420,9 @@ }, /turf/open/floor/plating, /area/corsat/theta/airlock/east/id) +"aMe" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/airlocknorth) "aMP" = ( /obj/structure/bed{ icon_state = "psychbed" @@ -2512,12 +2465,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/corsat/sigma/biodome) -"aOO" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) "aOQ" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 @@ -2648,10 +2595,6 @@ }, /turf/open/floor/corsat, /area/corsat/emergency_access) -"aRi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) "aRl" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/light{ @@ -2697,9 +2640,6 @@ /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/corsat/gamma/medbay/chemistry) -"aSK" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/south) "aSV" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 4; @@ -2738,6 +2678,12 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) +"aTI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) "aTL" = ( /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, @@ -2887,22 +2833,28 @@ }, /turf/open/floor/plating, /area/corsat/gamma/hangar/monorail/railcart) -"aWg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) +"aVR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) "aWm" = ( /obj/item/paper_bin, /obj/item/tool/pen, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/corsat/gamma/administration) -"aWE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/omega/control) "aWK" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, @@ -2913,14 +2865,14 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"aXf" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) "aXw" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/southeast/datalab) +"aXK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) "aXU" = ( /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) @@ -2931,6 +2883,11 @@ "aYR" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/theta/biodome) +"aYU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/airlock/east/id) "aZa" = ( /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, @@ -3009,6 +2966,15 @@ }, /turf/open/floor/plating, /area/corsat/omega/airlocknorth) +"baV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"baW" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/security) "bba" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -3076,9 +3042,8 @@ /turf/open/floor/plating, /area/corsat/gamma/biodome/toxins) "bch" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) "bci" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -3469,14 +3434,6 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/corsat/theta/biodome) -"beC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/checkpoint) "beD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/flora/jungle/vines/light_1, @@ -3937,12 +3894,15 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"bhG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"bij" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/dorms) +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"bit" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/west/id) "bjm" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -3960,21 +3920,10 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"bkn" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) "bky" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/hangar/monorail) -"bkz" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/sigma/dorms) "bkE" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -3983,12 +3932,12 @@ }, /turf/open/floor/plating, /area/corsat/sigma/airlock/south/id) -"bkG" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"bkI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) "bkJ" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -4011,9 +3960,12 @@ /obj/structure/window/framed/corsat/cell/security, /turf/open/floor/plating, /area/corsat/gamma/security/cells) -"bkQ" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) +"blv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) "blB" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar/arrivals) @@ -4049,14 +4001,10 @@ }, /turf/open/space, /area/space) -"bmf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo/lobby) +"bmg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar) "bmj" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -4092,9 +4040,8 @@ /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/monorail/control) "bmR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/sigma/south/complex) "bmS" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, @@ -4124,6 +4071,15 @@ /obj/structure/sign/safety/galley, /turf/closed/wall/biodome, /area/corsat/gamma/canteen) +"bnu" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Hall Maintainence"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) "bnw" = ( /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, @@ -4156,13 +4112,6 @@ /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/biodome) -"bnT" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) "bnU" = ( /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, @@ -4175,10 +4124,12 @@ /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/id) -"bob" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) +"boa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "boe" = ( /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, @@ -4234,26 +4185,28 @@ /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) "boC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/scrapyard) "boJ" = ( /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, /area/corsat/omega/hangar) -"bpm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"bpu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bpx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarE"; + name = "Checkpoint Control"; + pixel_x = 7; + use_power = 0 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) +/obj/structure/machinery/door_control{ + id = "OmegaHangarW"; + name = "Checkpoint Control"; + pixel_x = -7; + use_power = 0 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) "bpU" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -4284,52 +4237,56 @@ }, /turf/open/floor/wood, /area/corsat/gamma/biodome/complex) -"bqt" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +"bqv" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"bqB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay) -"bqu" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"bqH" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/checkpoint) +"bqF" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"bre" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "17" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) "bro" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) +"brp" = ( +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) "brt" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/corsat/sigma/cafe) +"brG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) "brM" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/hallwaysouth) -"brV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/security) -"bsc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"bst" = ( -/obj/structure/machinery/autodispenser{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"bsu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/south/id) "bsL" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/wood, @@ -4340,6 +4297,20 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"btp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"bty" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) "btI" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/wood, @@ -4392,13 +4363,6 @@ }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"buv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) "buB" = ( /obj/structure/sign/safety/distribution_pipes{ desc = "A sign that denotes the proximity of a life support system." @@ -4421,9 +4385,6 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/corsat/sigma/south/robotics) -"bve" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) "bvj" = ( /turf/open/floor/mech_bay_recharge_floor, /area/corsat/sigma/south/robotics) @@ -4433,22 +4394,17 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/corsat/sigma/south/robotics) -"bvu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome) -"bvv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/airlock/control) "bvx" = ( /obj/structure/bed, /obj/effect/landmark/survivor_spawner, /obj/item/bedsheet/brown, /turf/open/floor/wood, /area/corsat/sigma/dorms) +"bvA" = ( +/obj/structure/bed, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security/cells) "bvJ" = ( /obj/structure/bed, /obj/structure/machinery/light{ @@ -4485,11 +4441,16 @@ /obj/item/bedsheet/brown, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"bwv" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) +"bwd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_y = 30 + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"bwL" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/checkpoint) "bwP" = ( /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) @@ -4497,10 +4458,6 @@ /obj/structure/machinery/light, /turf/closed/wall/biodome, /area/corsat/sigma/south/engineering) -"bxl" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) "bxB" = ( /obj/structure/girder/displaced, /turf/open/floor/corsat, @@ -4553,29 +4510,19 @@ }, /turf/closed/wall/biodome, /area/corsat/omega/complex) -"bzh" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Class Room"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) "bzm" = ( /obj/structure/window/framed/corsat/hull/research, /turf/open/floor/plating, /area/corsat/inaccessible) +"bzO" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) "bBa" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bBv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/monorail) "bBO" = ( /obj/structure/window/reinforced{ dir = 8 @@ -4628,6 +4575,12 @@ /obj/item/book/manual/engineering_hacking, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) +"bCt" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) "bCI" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -4636,12 +4589,6 @@ }, /turf/open/floor/plating, /area/corsat/gamma/security) -"bCP" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) "bCS" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -4650,11 +4597,25 @@ }, /turf/open/floor/plating, /area/corsat/omega/checkpoint) +"bCT" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) "bCU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) +/obj/structure/pipes/trinary/mixer{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/airlock/control) "bCV" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -4673,14 +4634,6 @@ }, /turf/open/floor/plating, /area/corsat/gamma/airlock/south) -"bDi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/west/id) "bDn" = ( /obj/structure/machinery/light{ dir = 4 @@ -4695,6 +4648,10 @@ }, /turf/open/floor/plating, /area/corsat/omega/security) +"bDB" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) "bDH" = ( /obj/structure/window/framed/corsat/cell/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -4711,15 +4668,6 @@ }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bDW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"bEB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/airlock/east/id) "bEF" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, @@ -4734,211 +4682,155 @@ /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/wood, /area/corsat/gamma/administration) +"bEL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/monorail/control) "bET" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/corsat/gamma/administration) +"bFa" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) "bFc" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"bGk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/control) "bGm" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/disposal) -"bGx" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"bGF" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/administration) -"bHo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"bHt" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"bHD" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"bHE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, /turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"bHM" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod/floor0, -/area/corsat/theta/biodome/complex) +/area/corsat/gamma/cargo) +"bGD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"bGS" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"bHm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth/id) +"bHp" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) "bHR" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"bId" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) +"bIl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) "bIm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"bIp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Sigma Dome Control" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"bIA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/structure/window/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"bIq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, /turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) -"bIu" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"bIH" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar) -"bII" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaA"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 +"bIB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/device/flashlight/lamp{ - pixel_x = 8; - pixel_y = 3 +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"bIF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Control Room"; + req_access_txt = "103" }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"bIN" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"bJd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" + name = "\improper Showers" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"bIO" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"bIQ" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) -"bIS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/monkeycubes/farwacubes, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"bIV" = ( -/obj/structure/platform, -/obj/structure/platform{ +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"bJt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"bJo" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"bKO" = ( -/obj/structure/bed/chair, -/obj/structure/platform{ - dir = 4; - layer = 2 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"bJy" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"bLe" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"bMs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"bJE" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"bML" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"bMV" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Decontamination Chamber"; - req_one_access_txt = "103" +/turf/open/mars, +/area/corsat/sigma/biodome) +"bLJ" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/south) +"bMl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Viro"; - name = "Virology Lockdown" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"bMr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"bMt" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"bMF" = ( +/turf/open/mars/mars_dirt_8, +/area/corsat/sigma/biodome) +"bMJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"bMW" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"bNf" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, +/obj/item/ashtray/bronze, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"bMZ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/hangar/flightcontrol) -"bOk" = ( -/turf/open/shuttle/dropship/light_grey_middle, -/area/prison/hangar_storage/research/shuttle) -"bOz" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"bOO" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"bPF" = ( -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/administration) +/area/corsat/gamma/hangar/cargo) +"bPA" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/virology) "bQt" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/corsat, @@ -4958,12 +4850,6 @@ /obj/structure/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bQI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) "bQN" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, @@ -4980,45 +4866,20 @@ }, /turf/open/floor/plating, /area/corsat/omega/security) -"bRl" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"bRm" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"bRB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"bRL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"bRD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) "bRN" = ( -/obj/structure/machinery/light, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"bRS" = ( /obj/structure/platform{ density = 0; dir = 1; icon_state = "platform_deco" }, /turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) +/area/corsat/gamma/residential/east) "bRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -5029,47 +4890,46 @@ /obj/structure/window/framed/corsat/cell/security, /turf/open/floor/plating, /area/corsat/omega/checkpoint) -"bSJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Electronics"; - req_one_access_txt = "102" +"bSs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/purple/east, +/area/corsat/gamma/biodome/complex) +"bSC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"bSL" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/chemimp, -/obj/item/storage/box/trackimp, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"bSP" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hallwaysouth) -"bST" = ( -/turf/open/floor/corsat/brown/southeast, -/area/corsat/gamma/cargo) -"bTf" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) "bTk" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/theta/airlock/west/id) -"bTF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bTK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"bUf" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/item/paper_bin, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"bTY" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"bUj" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "bUm" = ( /obj/structure/machinery/power/smes, /turf/open/floor/corsat, @@ -5077,16 +4937,13 @@ "bUn" = ( /turf/open/floor/corsat, /area/corsat/omega/complex) +"bUq" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) "bUC" = ( /obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bUG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) "bUJ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/planttop1, @@ -5103,26 +4960,12 @@ }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bVa" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"bVp" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"bVt" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/machinery/light{ +"bVA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"bVz" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/researcher) "bVE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -5158,38 +5001,38 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"bWa" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail/control) -"bWF" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/arrivals) "bXi" = ( -/obj/structure/machinery/door_control{ - id = "SigmaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"bXJ" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bXR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"bXT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"bXX" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) "bYd" = ( /obj/structure/pipes/vents/pump/siphon/on{ id_tag = "nit_gamma_out" }, /turf/open/floor/corsat, /area/corsat/inaccessible) +"bYe" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/device/lightreplacer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"bYg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) "bYm" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 4; @@ -5197,15 +5040,6 @@ }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bYn" = ( -/obj/structure/machinery/door_control{ - id = "GammaCargo"; - name = "Cargo Door"; - pixel_x = 24; - use_power = 0 - }, -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) "bYw" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 4; @@ -5213,12 +5047,6 @@ }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bYH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) "bYI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -5264,628 +5092,815 @@ /obj/effect/spawner/random/tool, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"bZG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"bZJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap/deluxe, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/residential/maint) "bZL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/surface/table, +/obj/item/folder/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"bZU" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"caS" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"cac" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/gamma/airlock/control) -"cat" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"cbb" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" +/turf/open/floor/plating, +/area/corsat/sigma/biodome/testgrounds) +"cba" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/airlock/east) +"cbe" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"cbv" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 1 +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"cbu" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"cbz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Kitchen" }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/theta/airlock/control) -"cbM" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) -"cbP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cbT" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/airlocknorth) +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"cbA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"cbE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"cbH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) "cbW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"cca" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) +"ccd" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"cci" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/rnr) +"cco" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) "ccq" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"cct" = ( -/obj/structure/machinery/door/window/eastright, -/obj/effect/alien/weeds/node, +"ccu" = ( +/obj/structure/machinery/disease2/diseaseanalyser, /turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"ccw" = ( +/area/corsat/gamma/biodome/virology) +"ccz" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"ccD" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/sigma/south/complex) +"ccH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"ccK" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"ccB" = ( -/obj/item/stack/sheet/metal, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"ccP" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/canteen) -"cdf" = ( +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"ccY" = ( /obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, +/obj/structure/machinery/door_control{ + id = "GammaSouthN"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSouthS"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSouthAirlockC"; + name = "Security Shutters"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"cdc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"cdh" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"cdm" = ( +/area/corsat/theta/biodome/complex) +"cdk" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/virology) -"cdG" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Oxygen Supply Console" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"cdw" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"cdC" = ( +/obj/structure/surface/rack, +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"cdD" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"cdE" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/checkpoint) +"cdF" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"cdH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"cdN" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"cdX" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Remote Complex"; - req_one_access_txt = "103" +/obj/item/tool/pen/red, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"cdK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"cdM" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"ceb" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"ceh" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south) -"cen" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ +/area/corsat/gamma/biodome/virology) +"ceC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/offices) +"ceO" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"ceQ" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) "ceR" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"ceV" = ( -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"cfs" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"cfE" = ( -/obj/structure/pipes/vents/pump{ +"ceS" = ( +/obj/item/paper, +/obj/item/tool/pen/red, +/obj/item/tool/stamp/rd, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"ceW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Access Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"cfK" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/south) -"cfQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, +/area/corsat/omega/checkpoint) +"cfr" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"cgc" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"cgi" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/emergency_access) +"cfu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) -"cgm" = ( -/obj/structure/bed/chair/office/light{ +"cfy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"cfD" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"cfM" = ( +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"cfQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 1 }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"cfT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cfY" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cga" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"cgb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) -"cgI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"cgL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") +"cgg" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/south) -"cgO" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaSouthN"; - name = "Gamma South Airlock" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"cgA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Robotics Storage"; + req_one_access_txt = "102" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"cgP" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"cgV" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/corsat/omega/hangar) -"cgW" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"chh" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"cgX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) "chn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaSouthS"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"chx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"chz" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"chA" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/morgue) +"chH" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"chM" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"chQ" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ - id = "SigmaSouthN"; + id = "GammaA"; name = "Airlock Control"; pixel_x = -5; + pixel_y = 6; use_power = 0 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"chy" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" +/obj/item/device/flashlight/lamp{ + pixel_x = 8; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"chR" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"chV" = ( -/turf/open/floor/corsat/purple/east, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"cic" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"cim" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + reason = "Visitor" + }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "cio" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"cis" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"cip" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/hangar/flightcontrol) -"ciE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome/scrapyard) +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"ciG" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) "ciM" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"cjd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"ciX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mmi/radio_enabled, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"ciY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"cjh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"cjn" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cjo" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"cjq" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "cjs" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hallwaysouth) -"cjC" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"cjM" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"cjP" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"ckd" = ( -/turf/open/floor/corsat/greencorner/north, -/area/corsat/gamma/hallwaysouth) -"ckk" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"ckm" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 1 +"cjt" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/flightcontrol) +"cjx" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"cjD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"cjO" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"cjQ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"cjR" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth) +"cjU" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"cjV" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"ckw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"ckC" = ( +/area/corsat/gamma/biodome/complex) +"cjY" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"clf" = ( -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome) -"cll" = ( -/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"clq" = ( +/area/corsat/gamma/security) +"cka" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purple/southwest, +/area/corsat/omega/complex) +"ckb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hangar/security) -"cls" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) -"cly" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"clB" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"clQ" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/corsat/gamma/hangar) -"clS" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar/security) -"cmf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo/lobby) +"ckd" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"cmh" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/control) -"cnd" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"cke" = ( +/obj/structure/closet/secure_closet/brig{ + id = "CORSAT Sec 2" }, -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"cnm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/brig_cell{ + id = "CORSAT Sec 2"; + name = "Cell 2"; + pixel_x = 32 }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/airlock/north/id) -"cnn" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"cko" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"cks" = ( /obj/structure/bed/chair/office/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"cnz" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"ckG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"ckL" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"cnT" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/clothing/glasses/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"coc" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar) -"coo" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"cor" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/corsat/sigma/hangar) -"coA" = ( +/area/corsat/omega/security) +"clf" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering/lobby) +"clD" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/hangar/flightcontrol) -"coD" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"coF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential/east) -"coM" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"cmG" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"cmK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/core) -"coO" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/medbay/morgue) -"coQ" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cmR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"cnh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"cnq" = ( /obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"coT" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"cnK" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"cor" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo) +"cot" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"coA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"coE" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/southeast) +"coF" = ( +/turf/open/floor/corsat/red/east, /area/corsat/sigma/dorms) -"coX" = ( +"coP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 8 }, /turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"coQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) -"cpn" = ( +"coY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"cpo" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"cpL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/bluecorner, -/area/corsat/omega/control) -"cpO" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"cqe" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/hangar/monorail/control) -"cqg" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"cqj" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/hangar) -"cqn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/corsat/gamma/residential) +"cpd" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"cpg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Theta Dome Control"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"cqu" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"cpp" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 10 +/obj/item/clothing/shoes/sandal, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cpq" = ( +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/engineering) -"cqw" = ( -/obj/structure/machinery/light{ - dir = 1 +"cpx" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"cpy" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 1; + layer = 2.8 }, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"cqz" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/residential) -"cqF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"cra" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) -"crh" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"cpC" = ( /obj/structure/machinery/camera/autoname{ dir = 4; - network = list("omega") + network = list("gamma") }, -/turf/open/floor/corsat/red/west, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"cpR" = ( +/turf/open/floor/corsat/blue/north, /area/corsat/omega/hallways) -"crz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"crD" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +"cqd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"crU" = ( +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"cql" = ( +/obj/item/device/analyzer/plant_analyzer, /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"cqo" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"cqq" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"cqs" = ( /turf/open/floor/corsat/yellowcorner/north, -/area/corsat/theta/airlock/control) -"csd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south) -"csl" = ( +/area/corsat/sigma/south/engineering) +"cqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"cqL" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/cargo) +"cqO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/theta/airlock/east) +"crc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"cry" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"csn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"csJ" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"ctj" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"crz" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"crF" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"crM" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/residential) +"crO" = ( +/obj/structure/cargo_container/trijent/left, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"crV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"crY" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"ctn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ +/area/corsat/gamma/hallwaysouth) +"csg" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"csh" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"csC" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/monorail/control) +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"csK" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"cti" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"ctj" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/stairs, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"ctt" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/sigma/south) +"ctC" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"ctM" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) "ctR" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/north/id) +"ctS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/residential/lounge) +"cuc" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 1 + }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"cub" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/gamma/engineering/atmos) +"cud" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar/security) -"cul" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"cuz" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"cuM" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"cuB" = ( +/turf/open/floor/corsat/green/southeast, +/area/corsat/gamma/medbay/morgue) +"cuG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"cuJ" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"cuT" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"cuU" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/omega/control) +/obj/structure/machinery/door_control{ + id = "SigmaResC"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/checkpoint) "cvi" = ( /obj/structure/closet/crate/science, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"cvp" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"cvq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) "cvv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cvx" = ( -/turf/open/floor/corsat/darkgreencorner/west, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) -"cvK" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) +"cvC" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"cvD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) "cvO" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5893,445 +5908,488 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"cwe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"cwh" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/cargo/disposal) -"cwi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaWestD"; - name = "Entrance Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"cwk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay) +"cwc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"cww" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) "cwF" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/mars, /area/corsat/sigma/biodome) -"cwS" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/hallways) -"cwV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"cwR" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthN"; + name = "Gamma South Airlock" }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"cwS" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/hangar/office) +"cwU" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) "cwW" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/corsat/sigma/biodome/testgrounds) -"cwZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/southeast/datalab) -"cxe" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/surgery) -"cxk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"cxm" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"cxn" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"cxr" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/cargo) -"cyg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" }, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/foyer) -"cyh" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"cyp" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"cyr" = ( -/turf/open/mars_cave/mars_cave_19, -/area/corsat/sigma/biodome/scrapyard) -"cyu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"cyH" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"czd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/complex) -"czr" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/security) -"czC" = ( +/area/corsat/omega/offices) +"cxy" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"cxB" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"czW" = ( -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"cAa" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"cAi" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"cAt" = ( -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"cAu" = ( -/obj/item/tool/pen, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/turf/open/floor/corsat/purple/northeast, +/area/corsat/sigma/south) +"cxI" = ( +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"cxJ" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"cyi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"cyj" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"cAv" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"cyn" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"cAy" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"cAK" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"cAM" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"cAT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"cBh" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydroeast) -"cBn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"cyx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"cBx" = ( -/obj/effect/decal/cleanable/cobweb{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"cyA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"cyD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"cyF" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"cBI" = ( -/turf/open/mars/mars_dirt_12, -/area/corsat/sigma/biodome) -"cCk" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"cyJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"cCD" = ( -/obj/structure/closet/radiation, /turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) -"cDd" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"cyO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) -"cDo" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"cDs" = ( -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome/gunrange) -"cDG" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"cyS" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"czL" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar) -"cDX" = ( +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"czW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"cDY" = ( -/turf/open/floor/corsat/darkgreencorner, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hallwaysouth) +"cAi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"cAp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"cAA" = ( +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) -"cEf" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar) -"cEi" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/rods{ - amount = 25 +"cAG" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/sigma/dorms) +"cAO" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cBl" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/control) +"cBp" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"cBt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"cEJ" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/airlocknorth) -"cEZ" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"cCi" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80 }, -/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, /turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) -"cFh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"cFk" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"cFK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" +"cCp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"cCt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) -"cFP" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/dorms) -"cFQ" = ( -/obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"cFS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/corsat/sigma/airlock/control) +"cCC" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"cCV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"cFW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"cCZ" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"cDk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"cGs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/corsat/omega/hallways) +"cDY" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"cEb" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/gunrange) +"cEp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"cGu" = ( +/obj/structure/sink{ + pixel_y = 25 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"cEr" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/obj/structure/prop/almayer/missile_tube{ + color = "grey"; + desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; + icon_state = "missiletubesouth"; + name = "\improper genetic LINAC system"; + pixel_x = -15 + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"cEs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/airlock/north) +"cEB" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"cEN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"cFc" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/residential/maint) +"cFp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"cGv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cFB" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/theta/airlock/control) +"cFD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"cFM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"cFN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"cFY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"cGw" = ( +/area/corsat/omega/hangar/security) +"cGa" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"cGc" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"cGp" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"cGy" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"cGt" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) "cGF" = ( /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/arrivals) -"cGN" = ( +"cGM" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"cGU" = ( -/obj/structure/machinery/light{ +/area/corsat/omega/maint) +"cGN" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"cGY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"cGS" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda{ + dir = 8; + pixel_x = 15 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"cHw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/obj/item/reagent_container/food/drinks/shaker, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"cGX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/canteen) +"cHa" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"cHf" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"cHm" = ( +/obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/gamma/hangar) -"cHz" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"cHA" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"cHZ" = ( -/turf/open/mars/mars_dirt_14, -/area/corsat/sigma/biodome) -"cIq" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaIDEC2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/east/id) -"cIJ" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/east/id) +"cHo" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"cIM" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/item/cell, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"cHs" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/east/id) -"cIW" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"cJc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"cHy" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/monorail/control) -"cJd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"cJi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"cJk" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"cHD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"cJv" = ( -/obj/structure/sink{ - pixel_y = 25 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"cJE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"cHP" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"cJJ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/lobby) -"cJY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"cIk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hangar/monorail) +"cIo" = ( +/obj/structure/surface/rack, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"cIq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"cIG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Omega Dome Control" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"cII" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/residential) +"cIN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"cIO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"cIQ" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/residential) +"cIX" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/south) +"cJl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"cJp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"cJq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cJz" = ( +/obj/structure/machinery/bot/medbot/mysterious, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"cJL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"cJP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"cJY" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"cKg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) "cKi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -6341,902 +6399,1042 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"cKy" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/airlocknorth/id) -"cKC" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_y = -25; - use_power = 0 +"cKH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"cKO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/security) -"cKI" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"cKL" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/inaccessible) -"cKM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cKW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bar Rear" }, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"cKO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"cKX" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"cLi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south/id) +"cLM" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - name = "Teleportation Lab"; - req_one_access_txt = "103" + name = "Sigma RnD"; + req_one_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) -"cLt" = ( +"cLN" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"cLW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/control) +/area/corsat/gamma/hangar) "cMa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"cMq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"cMH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/colony_floodlight_switch{ - desc = "This switch controls the floodlights around the biodome. It only functions when there is power." - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/theta/airlock/control) -"cMI" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ +"cMu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - name = "Administration"; - req_access_txt = "106" + name = "Virology Lab"; + req_one_access_txt = "103" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" }, /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"cMB" = ( +/obj/structure/tunnel{ + id = "hole0" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"cME" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, /turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) +/area/corsat/gamma/hangar/flightcontrol) +"cMJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) "cMM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) "cMO" = ( -/obj/structure/surface/rack, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"cMS" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = 32 + }, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"cNa" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"cNw" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 +/area/corsat/theta/biodome/hydrowest) +"cNd" = ( +/obj/item/xeno_egg, +/obj/item/xeno_egg, +/obj/item/xeno_egg, +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"cNs" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south) "cNy" = ( -/obj/structure/barricade/handrail{ +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"cNE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"cNL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"cOb" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = 32 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"cOh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"cNA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"cNB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"cND" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"cOp" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"cOy" = ( /obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"cNH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) +"cOA" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"cNM" = ( -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"cNQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/airlock/south) -"cNS" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"cOk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"cOG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"cOJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Administration Desk"; + req_access_txt = "101" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"cOl" = ( -/obj/structure/machinery/computer/general_air_control, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"cOz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Theta Dome Control"; - req_one_access_txt = "102" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"cOR" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_theta"; + name = "Theta Emergency Access"; + use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"cOX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/yellow, -/area/corsat/theta/airlock/control) -"cOC" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/hallwaysouth) -"cPa" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/medic, -/turf/open/floor/corsat/yellow/east, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/administration) +"cOY" = ( +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/robotics) -"cPc" = ( -/turf/open/floor/corsat/brown, -/area/corsat/gamma/hallwaysouth) "cPi" = ( /obj/structure/monorail{ dir = 8 }, /turf/open/space/transit/east/shuttlespace_ew10, /area/space) -"cPj" = ( -/obj/structure/barricade/handrail{ +"cPu" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cPx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"cPt" = ( -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/east/id) -"cPy" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) "cPA" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"cPO" = ( -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/sigma/south) -"cPX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"cQa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"cPU" = ( +/obj/structure/machinery/door_control{ + id = "SigmaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) +/obj/structure/machinery/door_control{ + id = "SigmaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/airlock/east) "cQf" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"cQm" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"cQB" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/control) -"cQm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"cQo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"cQU" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"cQZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"cQr" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"cQD" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) -"cQG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"cQP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"cQS" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/engineering) -"cRe" = ( -/obj/structure/machinery/light, +"cRb" = ( /obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"cRx" = ( +/obj/item/cell/crap, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"cRA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/researcher) -"cRj" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"cRL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"cRS" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"cSe" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "16" }, /turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) -"cRk" = ( -/obj/structure/bed/chair/office/light{ +"cSt" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"cSQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"cRx" = ( -/obj/item/cell/crap, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"cRz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"cRE" = ( -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/core) -"cRI" = ( -/obj/structure/closet/crate/medical, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"cSX" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/theta/airlock/east) +"cSZ" = ( +/obj/structure/bed/nest, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"cTb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/item/storage/fancy/vials/random, /turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) -"cRL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"cRN" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/lobby) -"cRS" = ( -/obj/structure/bed/chair{ +"cTg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"cRY" = ( -/obj/vehicle/train/cargo/trolley, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"cRZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"cSe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"cSm" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/virology) -"cSv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"cSB" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"cSF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"cSK" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/omega/maint) -"cTd" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"cTg" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"cTl" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/southeast/generator) -"cTm" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/hangar/arrivals) -"cTn" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"cTw" = ( -/obj/structure/surface/table/almayer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"cTD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"cTn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "CORSAT Armory"; + req_access_txt = "101" }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"cTI" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"cTT" = ( -/obj/structure/safe, -/obj/item/device/locator, -/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/security/armory) +"cTv" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"cTG" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/scrapyard) +"cTQ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleportation Chamber"; + req_one_access_txt = "103" + }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) -"cTV" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"cTX" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) "cTY" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential) +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"cTZ" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) "cUa" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) "cUc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/mars, /area/corsat/sigma/biodome) -"cUf" = ( +"cUj" = ( /turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) +/area/corsat/sigma/cargo) "cUx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"cUy" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) +/area/corsat/sigma/hangar/monorail/control) +"cUz" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/east) +"cUM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) "cUQ" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/checkpoint) -"cVD" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"cVG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaSouthS"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "SigmaSouthN"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, /turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) -"cVI" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/toxins) +"cUW" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/south) +"cVe" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hallways) +"cVo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"cVr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Flight Control" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"cVs" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/monorail/control) +"cVL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) "cVR" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"cWb" = ( +"cVT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"cVZ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"cWe" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"cWm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"cWz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"cWB" = ( /obj/structure/machinery/light, -/obj/structure/bed/chair/comfy{ +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"cWQ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/residential) +"cWZ" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "CO2 Control" + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) +"cXC" = ( +/obj/item/tool/weldingtool/experimental, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cXD" = ( +/obj/structure/machinery/computer/emails{ dir = 8 }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/administration) +"cXH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"cXM" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/sigma/dorms) +"cXV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/syringe_case/regular, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"cYd" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"cWc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/area/corsat/gamma/airlock/control) +"cYh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/evidencebag, +/obj/item/evidencebag, +/obj/item/evidencebag, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/cells) +"cYk" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"cYt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"cWi" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay) -"cWs" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC-S"; + name = "Security Shutters" }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cWN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"cYB" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/scrapyard) +"cYD" = ( +/obj/structure/cargo_container/trijent/mid, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"cYH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"cYK" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"cWW" = ( +/area/corsat/omega/control) +"cYW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"cWY" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/gamma/biodome/complex) -"cXf" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west/id) -"cXz" = ( -/obj/item/paper_bin, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"cZs" = ( +/obj/item/folder/black_random, +/obj/item/clothing/mask/cigarette/cigar/havana, /obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/residential/lounge) -"cXH" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"cZu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"cXI" = ( +/turf/open/mars, +/area/corsat/sigma/biodome) +"cZv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Theta Dome Control"; + req_one_access_txt = "102" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/yellowcorner/west, +/turf/open/floor/corsat/yellow, /area/corsat/theta/airlock/control) -"cXM" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 +"cZz" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline{ + pixel_x = 7 }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"cXQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south) -"cXR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"cYb" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/item/storage/pill_bottle/dexalin, +/obj/item/storage/pill_bottle/antitox{ + pixel_x = -5 }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential) -"cYk" = ( -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"cYn" = ( -/obj/item/folder/black_random, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/chemistry) +"cZB" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"cZN" = ( +/obj/structure/lamarr, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"cYt" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"cYy" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/ce, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"cYN" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"cZP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "CORSAT Academy"; + req_one_access = null }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"cZR" = ( +/obj/structure/computerframe, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"cYV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"cZb" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/checkpoint) -"cZf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/area/corsat/emergency_access) +"cZV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"cZk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/control) -"cZr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"cZt" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"cZu" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"cZX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars, -/area/corsat/sigma/biodome) -"cZy" = ( -/turf/open/floor/corsat/bluegreycorner, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) -"das" = ( -/obj/structure/machinery/light{ +"daa" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar) -"daU" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential/east) +"dae" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "14" }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/airlock/north) -"dbf" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"dbl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"daf" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"dak" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "3" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"dbB" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/omega/hallways) -"dcb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) -"dck" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/lobby) -"dcm" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"dap" = ( +/obj/structure/surface/rack, +/obj/item/frame/bucket_sensor, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"day" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/airlock/control) -"dcs" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar) -"dct" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/airlock/south/id) -"dcx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite, +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"daA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"daF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"daJ" = ( +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) -"dcB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaIDEC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/east/id) -"dcD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaSouthN"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaSouthS"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 +"daN" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"daQ" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south) +"daV" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"dbb" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"dbc" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "GammaSouthAirlockC"; - name = "Security Shutters"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 +/obj/structure/barricade/handrail{ + layer = 3 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"dbq" = ( /obj/structure/machinery/camera/autoname{ - network = list("omega") + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south) -"dcJ" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo/disposal) +"dby" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"dcN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"dcU" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"dbB" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/hallwaysouth) +"dbK" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"dck" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"dcn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"dct" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/airlock/south/id) +"dcu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"dcF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dcM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"dcU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"ddl" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Sigma Landing Zone" - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"ddw" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"ddK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"ddm" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"ddr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"ddE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"ddF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"ddT" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/west) -"dec" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"ddY" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"ddZ" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"deb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"ded" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"dej" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) "dem" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/east) +"der" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"deB" = ( +/obj/item/tool/stamp/hop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) "deH" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/cargo) -"deN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"deQ" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"deK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"dfb" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"deL" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/hallwaysouth) +"deQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"deX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) "dfg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"dfp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"dfj" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"dfq" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"dfk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Data Maintainence"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"dfs" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/circuit_imprinter, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"dfs" = ( -/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"dfu" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/foyer) -"dfz" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "SigmaEastW"; - name = "Sigma East Airlock" +/area/corsat/sigma/south/engineering) +"dfC" = ( +/obj/structure/machinery/shower, +/obj/structure/machinery/door/window/southleft{ + opacity = 1 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"dga" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/east/id) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"dfH" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/north) +"dfI" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"dfJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/office) +"dfL" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"dfQ" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) "dgb" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Cells"; + req_access_txt = "101" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"dgg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"dgI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/canteen) +"dgK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"dgQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/lobby) -"dgj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"dgX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"dhb" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"dhd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"dhj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"dhk" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"dgt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Hydroponics Lab"; - req_access_txt = "103" +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"dht" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"dhx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"dhA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"dgL" = ( -/obj/item/folder/black, -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"dgS" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dhD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/checkpoint) -"dgY" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"dhH" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) -"dhd" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"dhm" = ( -/obj/structure/pipes/vents/pump{ +"dhJ" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"dhr" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"dhK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"dht" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/control) +"dhL" = ( /obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"dhD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/igniter, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"dhI" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/hydrowest) +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) "dhM" = ( -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"dhS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "4" }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"dhT" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"dhO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/whitetan/southeast, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"dhX" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleportation Lab"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"dif" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) -"dii" = ( -/turf/open/floor/corsat/darkgreen/southwest, -/area/corsat/gamma/rnr) -"dit" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/airlocknorth) +"dir" = ( +/obj/structure/safe, +/obj/item/device/yautja_teleporter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) "diD" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green{ @@ -7244,569 +7442,495 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"diH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"diM" = ( -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"diX" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"diY" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/south) -"diZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/door/window/southright, +"diG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) -"dji" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"diT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"djg" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) "djp" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "delta_omega"; - name = "Omega Checkpoint"; - use_power = 0 +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/south) +"dju" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"djD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/hangar/cargo) "djF" = ( /turf/open/floor/corsat, /area/corsat/gamma/residential/researcher) -"djH" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"djW" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"dkc" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/south/id) -"dkd" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south) -"dkk" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"dkt" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/south/security) -"dkz" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hallwaysouth) -"dkC" = ( +"djG" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"dkQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Data Office"; - req_access_txt = "102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"djI" = ( +/turf/open/floor/carpet9_4/west, +/area/corsat/omega/offices) +"djP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/hyper/empty, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"djZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"dka" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"dkx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"dkG" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/security) +"dlj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) "dlp" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"dlr" = ( -/obj/structure/largecrate/lisa, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"dlu" = ( -/obj/structure/machinery/light{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"dlC" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"dlN" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"dlY" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"dlS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarN"; + name = "Checkpoint Control"; + use_power = 0 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"dmi" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"dlX" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) "dmm" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"dmq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"dmw" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"dmL" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"dmq" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"dmN" = ( -/obj/structure/closet/emcloset, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"dmy" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"dmS" = ( +/obj/structure/machinery/light, /turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"dnp" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"dnv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/corsat/omega/complex) +"dmV" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"dni" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"dnr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"dnx" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"dny" = ( -/obj/structure/machinery/light{ +/area/corsat/gamma/cargo) +"dnu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"dnI" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"dnL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"dnw" = ( +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/researcher) -"dnM" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"dnN" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"dnR" = ( -/obj/structure/machinery/light{ - dir = 8 +"dny" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Data Laboratory"; + req_access_txt = "106;102;103" }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/skills{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"dnY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/red, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"dod" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydrowest) -"dol" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"dot" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"dnz" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar) +"dnK" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"doD" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"dnS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"dnU" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 1 }, -/turf/open/floor/corsat/purplewhite/west, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) -"doU" = ( +"dnW" = ( /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"dpf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"dpg" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"dps" = ( -/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"dpw" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"dnY" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"dpy" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"doP" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/foyer) +"dpk" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"dpA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"dpp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"dpG" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"dpz" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/control) -"dpJ" = ( -/obj/structure/disposaloutlet, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo/disposal) -"dpQ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"dqm" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"dqo" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"dpO" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"dqn" = ( +/obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"dqy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"drc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/security) -"drf" = ( -/obj/effect/landmark/yautja_teleport, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"drz" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/control) +"drA" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"drH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"drQ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"drr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/brown/southwest, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"dsb" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) -"drE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"drY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"drZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("theta") - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/west) -"dsh" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"dsi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"dsy" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"dsV" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west) -"dtx" = ( +"dst" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"dsG" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/id) -"dtG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"dtO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"dtS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ +/area/corsat/gamma/airlock/control) +"dsT" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/cargo) +"dtq" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dtr" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south/id) -"duh" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"dun" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"duo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"duv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/hallwaysouth) -"duE" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"duF" = ( -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome) -"duN" = ( -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"dvb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"dty" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"dtD" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, /turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"dvc" = ( -/obj/item/clothing/gloves/latex, -/obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"dve" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/sigma/south/complex) +"dtI" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"dvo" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"dvN" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"dtK" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/engineering) -"dvO" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/east) -"dvQ" = ( +/obj/item/storage/photo_album, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"dtM" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/prison/hangar_storage/research/shuttle) +"dtT" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"dub" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"dum" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome) +"duq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"dvW" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"dwj" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"dwq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"duw" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/hallways) +"duD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"dvo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"dws" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/sigma/south/complex) +"dvs" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"dvt" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"dvw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"dvy" = ( /turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"dww" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/south/engineering) +"dvz" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"dvK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"dvP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"dwy" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"dvY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/hallways) -"dwB" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"dwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/corsat/gamma/hangar) +"dwj" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/security) +"dwK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"dwU" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") }, -/obj/structure/surface/table/reinforced, -/obj/item/tool/crowbar, -/obj/item/tool/screwdriver, -/obj/item/tool/wrench, -/obj/item/stack/nanopaste, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) "dwW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"dxd" = ( -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome/gunrange) +"dxh" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Sigma Landing Zone" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) "dxq" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"dxr" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/southeast) +"dxv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Laundry Unit" + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"dxt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"dxz" = ( -/obj/structure/lamarr, -/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"dxD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) +"dxF" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/control) +"dxI" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/cargo) +"dxJ" = ( +/obj/structure/bookcase, /turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"dxO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome) -"dyp" = ( -/obj/structure/pipes/vents/pump{ +/area/corsat/gamma/rnr/library) +"dxT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"dxW" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hangar/monorail) +"dyc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, /turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/disposal) -"dyt" = ( +/area/corsat/theta/airlock/control) +"dyh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/emcloset, /turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) +/area/corsat/sigma/south/complex) +"dyo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydroeast) "dyu" = ( -/turf/open/floor/corsat/whitecorner, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"dyK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"dyV" = ( +/turf/open/floor/corsat/red/west, /area/corsat/sigma/dorms) -"dyw" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"dyE" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/butler, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"dyK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"dyL" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/checkpoint) -"dyV" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar) "dyW" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"dza" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"dzR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/west/id) +"dzz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) "dzU" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) "dzV" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -7814,426 +7938,425 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"dAd" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) "dAg" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hallways) -"dAh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"dAr" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"dAA" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"dAG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/airlock/control) -"dAI" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"dAL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"dAN" = ( -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"dAO" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/area/corsat/omega/hallways) +"dAJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"dBh" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/office) +"dBj" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Flight Control" }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential/east) -"dAR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"dBc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"dBg" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/bluegrey, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) -"dCl" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"dCm" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dBs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"dCx" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hallwaysouth) +"dBI" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"dBP" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"dCb" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/hangar) +"dCi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"dCn" = ( +/obj/item/tool/wet_sign, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security/cells) -"dCF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"dCY" = ( -/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/datamaint) +"dCp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"dDo" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"dDr" = ( +/area/corsat/gamma/airlock/south/id) +"dCt" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/airlock/control) -"dDv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"dDW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"dCu" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"dDZ" = ( -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"dEb" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"dEg" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"dCy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/tritium{ + amount = 10 }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"dEi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"dED" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"dCz" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"dCT" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"dCW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"dFf" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"dFg" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/hallwaysouth) -"dFj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/structure/window/reinforced/toughened{ - dir = 1 +/area/corsat/gamma/freezer) +"dDb" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/south/offices) +"dDF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"dDI" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"dDU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/theta/airlock/control) +"dDV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"dDZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"dFo" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"dFw" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite/north, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"dEf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"dEr" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/south) +"dEs" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) -"dFD" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"dFE" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) +"dEA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"dFb" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"dFj" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"dFu" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"dFK" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/residential) "dFL" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"dFN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"dFV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Sigma Remote Complex"; + req_access_txt = "103" }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"dFR" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"dFS" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"dGw" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/clipboard, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"dGy" = ( +/area/corsat/gamma/sigmaremote) +"dFZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"dGr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/hangar/id) -"dGG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"dGv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"dGN" = ( +/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/complex) -"dGM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"dHq" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/dorms) -"dHA" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, +/area/corsat/sigma/southeast/datamaint) +"dGR" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"dGU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"dHe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"dIg" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"dIi" = ( -/obj/structure/surface/table/woodentable, +/area/corsat/gamma/engineering/core) +"dHg" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + dir = 1; + locked = 1; + name = "\improper Decontamination Chamber"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"dHo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/biodome/complex) +"dHr" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"dHx" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south/security) +"dHz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"dHA" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"dHK" = ( +/obj/structure/prop/almayer/particle_cannon/corsat, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"dHO" = ( +/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) -"dIj" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"dIw" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/airlock/control) "dID" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"dIK" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/paper, +/obj/item/explosive/grenade/custom/antiweed, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"dIW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"dIM" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"dJa" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 +/obj/item/circuitboard/robot_module/engineering, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"dJc" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"dJq" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"dIQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"dJM" = ( +/obj/structure/fence, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"dJO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"dJP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"dIV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_8, -/area/corsat/sigma/biodome) -"dJq" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/arrivals) +/area/corsat/gamma/hallwaysouth) +"dJU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/theta/airlock/control) "dJV" = ( /turf/closed/shuttle/ert{ icon_state = "wy16" }, /area/prison/hangar_storage/research/shuttle) -"dKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dJY" = ( +/obj/structure/sink, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"dKb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Armory"; + req_access_txt = "101" }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/cargo) +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) "dKn" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"dKy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) "dKE" = ( /obj/structure/grille, /turf/open/floor/plating, /area/corsat/gamma/hangar/monorail) -"dKO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"dKR" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "3" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"dKT" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/omega/maint) -"dKU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/security) -"dLb" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"dLi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"dLq" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/residential) -"dLr" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/north) -"dLs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"dKF" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/north) +"dKJ" = ( +/obj/structure/machinery/computer/area_atmos/area, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering/atmos) +"dLd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"dLt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"dLM" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"dLR" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/administration) -"dLU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/corsat/omega/hangar/security) +"dLh" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"dLV" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/security/cells) -"dMC" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering/core) -"dMZ" = ( -/obj/structure/powerloader_wreckage, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"dNg" = ( -/turf/open/floor/corsat/redcorner/east, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"dLu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/southwest, /area/corsat/gamma/airlock/control) -"dNy" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"dNJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"dNM" = ( -/obj/structure/bed/chair/office/light{ +"dLB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"dLC" = ( +/obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"dNT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/lobby) +"dLG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"dNV" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/residential) +"dLH" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"dNY" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"dMk" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"dMn" = ( +/obj/structure/machinery/m56d_hmg{ dir = 1 }, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"dMp" = ( /turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"dNZ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/south/id) -"dOf" = ( +/area/corsat/sigma/southeast) +"dMB" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/foyer) +"dMJ" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/residential) +"dMX" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"dNe" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "Firing Range"; @@ -8242,276 +8365,322 @@ }, /turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) -"dOn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") +"dNN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"dNO" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"dOm" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/airlocknorth) +/turf/open/floor/corsat/spiralwoodalt, +/area/corsat/gamma/residential/lounge) "dOo" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"dOT" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"dPc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"dPm" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/west) -"dPu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"dPC" = ( +"dOr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"dPJ" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"dOD" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"dOE" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east/id) +"dOG" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"dOH" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hallwaysouth) +"dPc" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"dPn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"dPo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"dPN" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 +/area/corsat/gamma/hallwaysouth) +"dPv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"dPC" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/hallways) +"dPF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/maint) +"dPM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) "dQa" = ( -/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "CMO Office"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) -"dQx" = ( -/turf/open/mars_cave/mars_cave_19, -/area/corsat/sigma/biodome/gunrange) -"dQz" = ( -/obj/structure/pipes/vents/pump{ +"dQj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/hallways) -"dQG" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"dQl" = ( +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/morgue) +"dQq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/plate, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"dQu" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/canteen) +"dQC" = ( +/turf/open/floor/corsat/red, /area/corsat/sigma/south) "dQN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, /turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"dQO" = ( -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) +/area/corsat/theta/airlock/control) "dQQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"dQT" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) -"dRc" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/hangar/monorail/control) -"dRv" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/theta/airlock/east) -"dRF" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"dRM" = ( -/obj/structure/surface/rack, -/obj/item/alienjar, -/obj/structure/window/reinforced/toughened{ +"dQV" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"dQY" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"dRb" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"dRO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box, -/obj/item/storage/box{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"dRg" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"dRm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"dSj" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"dSt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"dSx" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"dRs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/east/id) +"dRu" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"dRN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/hallwaysouth) -"dSy" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"dSJ" = ( -/obj/effect/alien/weeds/node, -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"dSK" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"dRP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"dSS" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/corsat/omega/control) +"dRU" = ( +/obj/structure/surface/rack, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"dSp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"dTh" = ( -/turf/open/floor/carpet9_4/west, -/area/corsat/omega/offices) -"dTn" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Hangar Office" +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"dSA" = ( +/obj/structure/stairs{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"dTr" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"dTG" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"dSP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"dTt" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"dTJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"dTY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhite, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"dTw" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"dTA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) -"dUe" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") +"dTH" = ( +/obj/structure/machinery/light, +/obj/item/clothing/mask/gas, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"dTI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/filingcabinet/filingcabinet, /turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south/id) -"dUf" = ( -/obj/structure/curtain/shower, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"dUg" = ( +/area/corsat/gamma/hangar) +"dTO" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/skills{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar) -"dUm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"dTT" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"dUo" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/barricade/handrail{ + dir = 4 }, -/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"dUs" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, /area/corsat/sigma/south) -"dUw" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"dUz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"dTW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"dUf" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo/lobby) +"dUo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"dUv" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, +/obj/item/pamphlet/skill/powerloader, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"dUP" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"dUC" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/sigma/south/robotics) +"dUZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Dehydration Chamber"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"dVs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"dVy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"dVz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"dVE" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"dVk" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome/scrapyard) +"dVq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"dVF" = ( /obj/structure/machinery/door/poddoor/almayer{ id = "OmegaCargo"; name = "Omega Cargo Bay"; @@ -8519,512 +8688,576 @@ }, /turf/open/floor/corsat/marked, /area/corsat/omega/cargo) -"dVK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"dWd" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CMO Office"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"dWh" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/obj/item/evidencebag, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"dWt" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"dWu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"dWy" = ( -/obj/structure/pipes/trinary/mixer, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/theta/airlock/control) -"dWz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"dWD" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydrowest) -"dWH" = ( +"dVR" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"dWM" = ( -/turf/open/floor/carpet10_8/west, -/area/corsat/gamma/administration) -"dWU" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"dWa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"dWx" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/gamma/hangar) -"dXx" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"dXT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"dWF" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"dXY" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; +/obj/item/tool/pen, +/obj/item/tool/stamp, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/lobby) +"dXf" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/gunrange) +"dXj" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"dYq" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/airlock/north/id) -"dYr" = ( -/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"dXk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"dYR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"dXs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"dXw" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/spiralplate, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/arrivals) +"dYc" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/south) -"dZk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +"dYj" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar) +"dYC" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/corsat/brown/west, +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"dYO" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"dYU" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) -"dZy" = ( -/obj/structure/machinery/light{ - dir = 1 +"dYV" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"dYW" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/airlocknorth) +"dZf" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaEastW"; + name = "Theta East Airlock" }, -/obj/structure/machinery/computer/cameras{ - network = list("theta") +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "map_lockdown"; + name = "Theta Lockdown"; + use_power = 0 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"dZA" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/gamma/hangar/flightcontrol) -"dZF" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"dZS" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "dZW" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"dZY" = ( -/obj/structure/machinery/light{ +"eaj" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hallways) -"ean" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"eas" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "SigmaSouthN"; + name = "Sigma South Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"eat" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"eaF" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/airlock/north) +"eaI" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) "eaN" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"eaP" = ( -/obj/structure/filingcabinet/filingcabinet, +"eaO" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"eaY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/omega/control) +"ebc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"ebg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/landmark/corpsespawner/wysec, /turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"ebf" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/corsat/sigma/hangar/security) +"ebj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") }, /turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"ebo" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/corsat/omega, /area/corsat/omega/hallways) -"ebj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"ebr" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"ebk" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/turf/open/floor/corsat/squares, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) -"ebz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/prop/gripper, -/turf/open/floor/corsat/retrosquareslight, +"ebu" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/greencorner/east, +/area/corsat/gamma/medbay/morgue) +"ebD" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"ebI" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/south) +"ebR" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) -"ebA" = ( -/turf/open/floor/corsat/brown/east, +"ebW" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"ecc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) -"ebY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/hangar/office) -"ecr" = ( -/obj/structure/bed/chair{ +"ece" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"ecs" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"ecK" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/atmos) -"ecL" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hangar/office) -"ecN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/virology) -"ecO" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"ecf" = ( +/obj/effect/decal/mecha_wreckage/hoverpod, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"ech" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"ecm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"ecv" = ( +/obj/structure/machinery/vending/shared_vending, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) "ecU" = ( -/obj/item/paper, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/residential/lounge) +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) "ecX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"edj" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"edm" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"edu" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"edE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/id) -"edF" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"edG" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/south/offices) -"edL" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar/office) -"edR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, +"edg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"eec" = ( +/area/corsat/gamma/hallwaysouth) +"edh" = ( +/obj/structure/surface/rack, +/obj/item/device/assembly/signaller, +/obj/item/device/assembly/signaller, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/prox_sensor, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"edp" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"edq" = ( /obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"eee" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"eex" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/communications{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"edV" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"edX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"eeb" = ( +/obj/structure/window/framed/corsat/hull/security, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"eeI" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/omega/hangar/office) +"eek" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"efc" = ( -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"efr" = ( +/area/corsat/gamma/cargo) +"eez" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"eft" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"efv" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) +"eeV" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/complex) -"efx" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/corsat/omega/hangar) -"efB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"eeX" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Research Hallway"; + req_one_access = null }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"efH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat/officesquares, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"efs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) +"efB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"efP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"efV" = ( -/obj/structure/machinery/vending/coffee, +"efS" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"efU" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"efW" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, /turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) -"efY" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/corsat/gamma/hangar/monorail/railcart) "egd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"egy" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/hallways) -"ehc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"ehd" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/core) +"egm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"egz" = ( +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"egO" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"egU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"eha" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) "ehg" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"ehz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, +"eho" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"ehG" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar) -"ehV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/corsat/gamma/engineering/atmos) +"ehB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ehD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoS"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"ehQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Armory"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) "eii" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"eip" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/southeast/generator) -"eiy" = ( -/obj/structure/closet/emcloset, +"eiu" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"eiz" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 +/area/corsat/gamma/biodome/toxins) +"eiB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("gamma") }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"eiD" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/sigma/south/complex) "eiG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"eiN" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth/id) -"eja" = ( +"eiL" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"eiP" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"eiU" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"eiW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"eiX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"eiZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"ejc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"ejh" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) "ejl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/mars, /area/corsat/sigma/biodome) -"ejx" = ( +"ejF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"ejK" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar/arrivals) -"ejU" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"eka" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/datamaint) -"eko" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoN"; - name = "Hangar Lockdown"; - use_power = 0 +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"ejV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"ekh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"ekn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"ekt" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/canteen) +"ekv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) "eky" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Teleporter Power Room"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) "ekz" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"ekW" = ( -/obj/structure/machinery/light{ +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"ekJ" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"elf" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ekV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"ekZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"elk" = ( -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/researcher) -"elp" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/structure/surface/table/almayer, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"elf" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8 }, /turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"elu" = ( +/area/corsat/sigma/cafe) +"elj" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"ell" = ( /obj/structure/bed/chair/office/light{ - dir = 8 + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"elw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ely" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay) -"elA" = ( -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"elL" = ( /turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) +/area/corsat/gamma/biodome/toxins) +"elD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"elO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) "elR" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/simple/hidden/green{ @@ -9033,194 +9266,162 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "elS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hangar/security) -"elZ" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"emi" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail/control) -"emn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"emg" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"eml" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) +"emm" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/gamma/residential) +"emy" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, /obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, /turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"emr" = ( +/area/corsat/gamma/residential/lounge) +"emL" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"emv" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"emM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"emB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"emD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"emI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"emV" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"ene" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"eng" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"emR" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/residential) -"emX" = ( /obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"emZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"enh" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"eni" = ( +/turf/open/mars_cave/mars_cave_20, +/area/corsat/sigma/biodome/scrapyard) +"enj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 4; network = list("sigma") }, /turf/open/floor/corsat/red/west, -/area/corsat/sigma/dorms) -"enm" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/area/corsat/sigma/south/security) +"enn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"enp" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"enq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"eno" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) "ent" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"enw" = ( -/obj/structure/bed/chair{ +/obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/omega/cargo) -"enD" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/heart, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"enM" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"eny" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"enP" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"enR" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"enV" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"enW" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaEastW"; - name = "Theta East Airlock" + dir = 4 }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "map_lockdown"; - name = "Theta Lockdown"; - use_power = 0 +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"enA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"enY" = ( -/turf/open/floor/carpet10_8/west, -/area/corsat/omega/offices) -"eod" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"enF" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat/lightplate, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) -"eof" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"enH" = ( +/obj/structure/bed, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"enQ" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"eoe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"eoj" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/northwest, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) -"eok" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) -"eom" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaIDSC2"; - name = "Security Shutters"; - use_power = 0 +"eof" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/south/id) -"eoo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"eoP" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"eog" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"eoj" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"eom" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"eoY" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"eoq" = ( +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"epd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) +/area/corsat/gamma/residential/showers) +"eox" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"eoM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) "epq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -9228,46 +9429,91 @@ /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) "epx" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/checkpoint) +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"epD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaWestE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "ThetaWestW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/west) "epI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/airlock/south/id) +"epQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) "epZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Theta Dome Control"; - req_one_access_txt = "102" +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"eqf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/security) "eql" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"eqo" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/omega/control) -"eqq" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/administration) -"eqv" = ( +"eqm" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"eqp" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"eqs" = ( /obj/structure/bed/chair/office/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/omega/control) +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/airlock/south) "eqz" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/engineering/atmos) -"eqV" = ( -/obj/item/storage/box/masks, +"eqC" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/complex) +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"eqE" = ( +/obj/item/tool/pen, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"eqO" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security/armory) +"eqQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) "erc" = ( /obj/structure/bed/chair/office/dark, /obj/structure/pipes/vents/pump{ @@ -9275,203 +9521,189 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"ers" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/southeast/datalab) -"erz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"erG" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") +"err" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"ert" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"erN" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"eru" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"erK" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"esk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"erS" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"esp" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"erT" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"esZ" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"esG" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"esI" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/southeast/generator) +"esK" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"eth" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"esU" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/theta/airlock/control) -"etl" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/airlock/control) +"esX" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthS"; + name = "Gamma South Airlock" }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"esY" = ( /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"etK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"etO" = ( +/area/corsat/theta/biodome/hydrowest) +"etn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"etr" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"etu" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"etN" = ( +/obj/item/tool/minihoe, /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"etS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"etT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"etU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"eua" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering) -"eui" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"etQ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"eue" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"euf" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/security) +"eul" = ( /obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"eur" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"euD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast/datalab) -"euX" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"evb" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"eve" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"evh" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Sigma RnD"; - req_one_access_txt = "101" + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"evn" = ( +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/dorms) +"euo" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"euq" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"euB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security/armory) +"euW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/canteen) +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/south/offices) +"evf" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) "evq" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"evy" = ( +"evJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"evZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"evI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"evP" = ( -/obj/structure/machinery/light, -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"ewo" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"ews" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"evW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"ewl" = ( -/obj/structure/largecrate/random/barrel, /turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"ewm" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"ewx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"ewA" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/south) -"ewI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"ewK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) -"ewQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/xeno_restraints, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) +"eww" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"ewA" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/omega/maint) +"ewE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) +"ewJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) "ewW" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, @@ -9484,69 +9716,46 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"exe" = ( -/obj/structure/machinery/light{ +"exG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/hallwaysouth) -"exj" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/brain, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar) +"exX" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security/armory) +"eyb" = ( +/obj/structure/janitorialcart, /turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"exv" = ( +/area/corsat/gamma/biodome/complex) +"eyj" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"eyt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/security) -"exB" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) -"eyi" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"eyn" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/residential/lounge) -"eyo" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/corsat/sigma/biodome/gunrange) -"eyq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo/disposal) -"eyu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/checkpoint) -"eyx" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"eyw" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 4 }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/southeast) -"eyy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) "eyA" = ( /obj/structure/bed{ icon_state = "psychbed" @@ -9555,510 +9764,403 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "eyC" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"eyF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) "eyK" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/gamma/freezer) -"eyP" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hallwaysouth) -"eyV" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"eyX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"eyQ" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) -"eyY" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"eyV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"eza" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast) +"ezd" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/cargo) +"eze" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"ezq" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"ezl" = ( /obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"ezA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"ezE" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) -"ezI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/greenwhite/west, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"ezr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"ezu" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) +"ezv" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south) +"ezD" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) "ezR" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"ezS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/hangar/office) -"ezX" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"eAa" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/lobby) -"eAh" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"eAr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, +"eAn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"eAs" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"eAw" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/north) -"eAx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar) -"eAy" = ( -/obj/structure/janitorialcart, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hangar) +"eAC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) "eAD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/south, /area/corsat/theta/biodome) -"eAJ" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/tank/air, -/turf/open/floor/corsat/purplewhite, +"eAK" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/office) +"eAR" = ( +/obj/structure/surface/rack, +/obj/item/implanter/neurostim, +/obj/item/implanter/neurostim, +/obj/item/implanter/adrenalin, +/obj/item/implanter/adrenalin, +/obj/item/implanter/loyalty, +/obj/item/implanter/loyalty, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) -"eAM" = ( -/obj/structure/machinery/light{ +"eAW" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"eAP" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/arrivals) -"eAS" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"eAX" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "GammaEastW"; + name = "Gamma East Airlock" }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/hangar) -"eAY" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/lobby) -"eBe" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"eBi" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"eBw" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo/lobby) -"eBF" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"eBo" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo/disposal) +"eBt" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/checkpoint) +"eBI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"eBV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar/monorail) -"eBU" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar/checkpoint) -"eBZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/science, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"eCi" = ( -/turf/open/floor/plating/warnplate, -/area/prison/hangar_storage/research/shuttle) -"eCm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"eCo" = ( -/obj/structure/barricade/handrail{ - layer = 3 +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eCj" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"eCk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"eCl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"eCw" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) "eCx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"eCB" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/office) -"eCL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"eCT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/airlock/south/id) -"eDi" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/hangar) -"eDv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"eCD" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/obj/item/storage/firstaid/o2, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"eCK" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/cargo) +"eCN" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/dataoffice) -"eDw" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/omega/hallways) -"eDy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"eDL" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/security) +"eCO" = ( +/turf/open/floor/corsat/theta, +/area/corsat/omega/checkpoint) +"eCZ" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"eDI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) "eDM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"eDN" = ( -/obj/structure/window/reinforced, -/obj/structure/platform, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"eEi" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - use_power = 0 +"eDX" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"eEs" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"eEi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"eEv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/purple/southwest, +/area/corsat/sigma/south) +"eEw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"eEA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) +"eEB" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hallways) +"eEL" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail, /turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"eEC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Control Room"; - req_access_txt = "103" +/area/corsat/gamma/hallwaysouth) +"eFy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"eEH" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"eEV" = ( -/obj/structure/surface/rack, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"eEY" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"eFl" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/monorail/control) -"eFn" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/control) -"eFu" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"eFA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) +/area/corsat/gamma/security) +"eFC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) "eFF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_y = 30 +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"eFH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail) -"eFQ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"eGI" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Surgery Room"; - req_one_access = null +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"eFO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/surgery) -"eGU" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"eHa" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "ThetaNorthS"; - name = "Theta North Airlock" +/area/corsat/gamma/medbay) +"eFQ" = ( +/obj/item/folder/black, +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"eGr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "22" }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"eHc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"eGK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"eHE" = ( -/obj/structure/surface/table/almayer, -/obj/item/handset, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/datalab) -"eHH" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGateO"; - name = "Gate Shutters"; - use_power = 0 +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"eGS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) +"eHk" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/sigmaremote) -"eHM" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/virology) -"eHV" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"eHG" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"eHJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/sigma, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) -"eIj" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"eIk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/omega/offices) +"eIl" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/gunrange) "eIq" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat, /area/corsat/sigma/cargo) -"eID" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "2" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) +"eIv" = ( +/obj/structure/surface/rack, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"eIx" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) "eIL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) -"eIM" = ( -/obj/structure/morgue, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/medbay/morgue) -"eIZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +"eIU" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"eIZ" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/omega/cargo) +"eJC" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/hangar) +"eJV" = ( /turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"eJc" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/squares, +"eKp" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"eKr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) -"eJk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eKt" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"eKQ" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr/bar) +"eKX" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"eJn" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"eJx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"eJI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"eLe" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"eLi" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"eJJ" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/west/id) -"eJK" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"eLo" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/arrivals) +"eLx" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "18" }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"eJL" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"eLG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Food Storage"; - req_one_access = null +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"eKb" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south/security) -"eKC" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar) -"eLk" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/dorms) -"eLn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"eLu" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"eLK" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"eMf" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/sigma/south/complex) -"eMn" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential) -"eMt" = ( +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"eLL" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") + network = list("gamma") }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth) -"eMv" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/south) +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"eLN" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Nitrogen Control Console" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"eMk" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"eMl" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"eMs" = ( +/obj/item/paper, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) "eMB" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -10066,19 +10168,6 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"eMF" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/south/offices) -"eMG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) "eMI" = ( /obj/structure/showcase{ icon_state = "processor"; @@ -10086,890 +10175,969 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"eNo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 8 +"eMR" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"eNx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"eMU" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"eNp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"eNq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-theta-control" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"eNy" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) +"eND" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) "eNM" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"eNY" = ( +"eNP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"eNV" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"eOb" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"eOa" = ( -/obj/structure/machinery/power/apc/upgraded/power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/armory) +/obj/item/storage/box/monkeycubes, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) "eOe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"eOg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"eOh" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"eOi" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) +"eOn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"eOx" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) "eOJ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/control) -"eOV" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"eOX" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"eON" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"eOQ" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/hangar) +"eOT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/whitecorner/west, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "eOZ" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"ePt" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"ePW" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"eQb" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"eQn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"eQq" = ( +"ePm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"eQC" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"eQD" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"eQI" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"ePx" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"eQM" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/southeast, -/area/corsat/gamma/rnr) -"eRo" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/evidencebag, -/obj/item/evidencebag, -/obj/item/evidencebag, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/cells) -"eRp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"eRr" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ePA" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"ePC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"eRz" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/airlock/control) +"ePE" = ( +/obj/structure/disposaloutlet, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo/disposal) +"ePF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"ePP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/airlock/north) +"ePS" = ( /obj/structure/barricade/handrail{ - dir = 8 + dir = 4 }, /obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"eRA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/corsat/gamma/hallwaysouth) +"ePT" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"ePW" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"eQc" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"eRJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) -"eRW" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"eSm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/window/reinforced/toughened, +/obj/structure/window/reinforced/toughened{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"eQk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarNE"; + name = "Checkpoint Control"; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/security) +"eQw" = ( +/obj/structure/machinery/door_control{ + id = "GammaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"eQA" = ( +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"eSp" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/biodome/complex) -"eSF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/corsat/gamma/medbay) +"eQI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"eQN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"eQT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"eSH" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"eRa" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"eRe" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/hallwaysouth) +"eRq" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"eRv" = ( +/obj/structure/machinery/pipedispenser, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) -"eTa" = ( -/obj/structure/pipes/vents/pump{ +"eSo" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"eSF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"eST" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"eSX" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eTc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) "eTj" = ( /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) +"eTn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) "eTp" = ( -/obj/item/cell/crap, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"eTy" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/north) -"eTB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Pool" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"eTE" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - dir = 1; - icon_state = "door_open"; - name = "Containment Cell 5"; - req_one_access_txt = "103" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"eTq" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaNorthN"; + name = "Gamma North Airlock" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"eTN" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"eTr" = ( +/obj/item/storage/fancy/cigar, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"eTs" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = -30 + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"eTz" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") + network = list("gamma") }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"eTS" = ( -/obj/structure/stairs{ - dir = 4 +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"eTJ" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"eTX" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/theta, +/area/corsat/sigma/south) +"eTO" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/complex) +"eUd" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security) +"eUh" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"eUL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "ThetaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"eTY" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, /turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"eUM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) -"eTZ" = ( -/turf/open/floor/corsat/arrow_north, -/area/corsat/sigma/southeast/generator) -"eUa" = ( -/obj/structure/machinery/shower{ - dir = 4 +"eVd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"eVf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"eVh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/machinery/light/small, -/obj/structure/machinery/door/window/southleft{ - dir = 4; - layer = 2.8 +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"eVn" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"eVt" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eVF" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eVU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"eWb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"eUo" = ( -/obj/item/paper, -/obj/item/tool/pen/red, -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"eUq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"eUv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/masks, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/complex) -"eUJ" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"eUO" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"eUQ" = ( +/area/corsat/sigma/dorms) +"eWe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"eWs" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/rnr) +"eWH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"eUW" = ( -/obj/item/paper/crumpled, -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/airlock/south/id) +"eWP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"eVc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"eVo" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"eVu" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "3" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"eVN" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"eVR" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/id) -"eVY" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/hangar/office) -"eVZ" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/gamma/cargo) -"eWe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"eXd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"eWi" = ( +/area/corsat/theta/biodome/complex) +"eXh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hangar) +"eXk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eXG" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"eXK" = ( /obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, /turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"eWo" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"eWp" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/engineering) -"eWu" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"eWB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/signaller, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"eWP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"eWU" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"eXh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"eXv" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/area/corsat/sigma/hangar/monorail/control) +"eXQ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"eXF" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"eXU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"eXL" = ( -/obj/structure/pipes/standard/simple/hidden/universal, /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"eYt" = ( +/area/corsat/sigma/checkpoint) +"eXV" = ( +/obj/structure/bed, /obj/structure/window/reinforced, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"eYC" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security/cells) +"eYf" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"eYw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"eZb" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaOffice"; - name = "Privacy Shutters" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"eZf" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/tool/mop, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"eYN" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"eZp" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/pmc, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"eZg" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"eZm" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/toxins) +/area/corsat/omega/biodome) "eZK" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaCargo"; + name = "Sigma Cargo Bay"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/cargo) +"eZL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) "eZQ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"eZW" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"fae" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"fam" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"fav" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/chemistry) -"faJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) -"faS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"faW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/security) -"fbb" = ( -/obj/structure/machinery/computer/secure_data, +"eZR" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security) -"fbc" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"eZS" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"fau" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"faC" = ( +/obj/structure/surface/rack, +/obj/item/holder/drone, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"faP" = ( /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"fbl" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/residential) -"fbr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"fbx" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"faS" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"fbE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/airlock/control) -"fbM" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"fbO" = ( -/obj/structure/stairs, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"fbR" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("omega") + }, /turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"fbT" = ( -/obj/structure/machinery/mech_bay_recharge_port, +/area/corsat/omega/security) +"fbd" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/control) +"fbi" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"fbl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"fbp" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/security) +"fbx" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"fbG" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"fbY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"fca" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"fcg" = ( +/obj/structure/window/reinforced, +/obj/structure/platform, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"fcu" = ( -/obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"fcE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/igniter, +/area/corsat/sigma/north) +"fcl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"fcA" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"fcB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"fcQ" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"fcL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/containment) +"fcY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access_txt = "100" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/south) -"fdb" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/disposal) +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) "fdc" = ( /obj/structure/machinery/light/small, /turf/open/floor/corsat, /area/corsat/gamma/residential/researcher) -"fde" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) "fdh" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/gamma/biodome/complex) -"fdk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Theta Dome Control" - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) +"fdo" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) "fdr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"fdt" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"fdH" = ( /obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin/super, -/obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"fdI" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"fdN" = ( -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/omega/hallways) -"fdO" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/prison/hangar_storage/research/shuttle) -"fdT" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"fdW" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"fds" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/omega/offices) +"fdt" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"fea" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"fef" = ( -/obj/item/implant/death_alarm, -/obj/item/implant/death_alarm, -/obj/item/implant/tracking, -/obj/item/implant/tracking, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"feh" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"fej" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"fen" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/corsat/gamma/engineering/core) +"fdB" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"fdW" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"fei" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"fep" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south) +"feB" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) "feC" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"feG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/yellow/north, +"feE" = ( +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) -"feI" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) +"feG" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) "feM" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"feO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/north, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) -"feT" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"ffg" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"fft" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"feU" = ( +/obj/structure/closet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"feX" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"fff" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"ffi" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"ffr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) "ffF" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"ffX" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" +"ffL" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/datamaint) +"ffS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"ffU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"fgf" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"fgm" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/biodome) -"fgv" = ( -/obj/structure/bed/chair/office/light{ +/area/corsat/omega/airlocknorth/id) +"ffW" = ( +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"fgE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"fgR" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/area/corsat/gamma/hallwaysouth) +"ffZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 }, -/obj/structure/window/reinforced, /turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"fgS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"fgV" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" +/area/corsat/gamma/airlock/north) +"fgb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"fhj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"fgr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"fhr" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"fgv" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar) +"fgw" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south) -"fhA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"fhF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"fhP" = ( -/obj/item/tool/weldingtool/experimental, -/obj/structure/surface/table/almayer, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"fhZ" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"fif" = ( -/obj/structure/disposaloutlet{ - dir = 4 +/area/corsat/gamma/airlock/control) +"fgD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/monorail/control) +"fgK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"fgL" = ( +/obj/structure/machinery/light{ dir = 8 }, +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"fgQ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "9" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"fhg" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"fhs" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"fhv" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"fhP" = ( +/obj/structure/machinery/door_control{ + id = "SigmaGate"; + name = "Gate Shutters"; + pixel_y = 24; + use_power = 0 + }, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"fii" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth/id) +/area/corsat/sigma/south/complex) +"fib" = ( +/obj/structure/machinery/door_control{ + id = "GammaBioAtmos"; + name = "Access Shutters"; + pixel_y = -24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"fik" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth) "fip" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"fir" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"fiA" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"fix" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/residential) -"fiO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/sigmaremote) -"fjc" = ( -/turf/open/floor/carpet5_1/west, -/area/corsat/omega/offices) +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"fiG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"fiR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"fja" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) "fjd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration Office" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"fje" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"fjf" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/airlocknorth) -"fjn" = ( -/turf/open/floor/corsat/red/southeast, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"fjh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"fjj" = ( +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/hallways) "fjp" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"fjy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"fjB" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "oxy_corsat_out" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"fjH" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) -"fjL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Testing Grounds"; - req_access_txt = "106"; - use_power = 0 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"fjN" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"fjT" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"fjX" = ( +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/paper, -/obj/item/tool/pen, -/obj/structure/pipes/vents/pump{ +/obj/item/tool/pen/red, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"fjq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"fki" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"fkq" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"fjD" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"fjH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"fjN" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"fjW" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/theta, +/area/corsat/theta/biodome/complex) +"fkh" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/thermal, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/dorms) -"fkE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced/toughened, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"fkt" = ( +/obj/structure/disposaloutlet{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"fkL" = ( -/turf/open/mars/mars_dirt_10, -/area/corsat/sigma/biodome) -"fkW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"fkY" = ( -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/lobby) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"fkM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) "flo" = ( /obj/structure/window/reinforced{ dir = 8 @@ -10981,136 +11149,129 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/foyer) -"flw" = ( -/obj/structure/machinery/pipedispenser, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) +"flr" = ( +/turf/open/floor/corsat/darkgreen/southwest, +/area/corsat/gamma/rnr) "flB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"flZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"flO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"fmi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar) +"flU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"flV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) -"fmj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay) -"fmp" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 1 +"fml" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/foyer) "fmq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"fmv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"fmG" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering/core) -"fmH" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/southeast/generator) -"fmS" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +"fmy" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/shuttle/escapepod/floor4, +/area/corsat/theta/biodome/complex) +"fmA" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/hangar/flightcontrol) +"fmE" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/omega/hallways) +"fmO" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"fmV" = ( -/turf/open/floor/corsat/arrow_south, -/area/corsat/sigma/hangar) -"fnn" = ( -/turf/open/mars_cave/mars_cave_20, -/area/corsat/sigma/biodome/gunrange) -"fnq" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"fnJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) +"fng" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 4 }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"fno" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"foH" = ( -/obj/structure/platform{ +/area/corsat/gamma/medbay/chemistry) +"fnv" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/security) +"fny" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"fnE" = ( +/obj/structure/pipes/binary/pump/high_power/on{ dir = 8 }, -/turf/open/floor/corsat/white/west, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"fnI" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"fnM" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"fnS" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) +"foi" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"foz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/omega/control) "foQ" = ( /obj/structure/tunnel{ id = "hole2" }, /turf/open/ice, /area/corsat/gamma/biodome) -"foY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"fpr" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"fpt" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"fpA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"fpG" = ( -/obj/structure/machinery/light{ +"foR" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"fpn" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) "fpI" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -11118,21 +11279,15 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"fpJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"fpZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +"fpM" = ( /turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"fqg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) +/area/corsat/sigma/airlock/south/id) +"fpQ" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/generator) "fqp" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -11142,540 +11297,488 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"fqt" = ( +"fqy" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) +"fqA" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar) -"fqu" = ( -/obj/structure/machinery/door_control{ - id = "GammaBioAtmos"; - name = "Access Shutters"; - pixel_y = -24 +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"fqE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"fqF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"fqw" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"fqG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/purple/southwest, -/area/corsat/sigma/south) -"fqC" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 8 +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"fqI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"fqL" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/corsat/yellowcorner/north, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) -"fqL" = ( -/obj/structure/machinery/light{ - dir = 1 +"fqM" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"fqO" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"fri" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"fqN" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"frD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"fqS" = ( -/obj/item/trash/chips, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"fqW" = ( -/obj/structure/bed/chair, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"frf" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/southeast/dataoffice) -"fri" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"frm" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/engineering) +"frI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Auditorium" + }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"frF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"fsg" = ( +"frU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"fsl" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth) -"fsv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"fsc" = ( +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"fsh" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"fsp" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/security) +/area/corsat/sigma/south) +"fsw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south) "fsx" = ( /turf/open/auto_turf/snow/layer4, /area/corsat/gamma/biodome) -"fsy" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"fsB" = ( -/obj/structure/bed/chair/office/light{ +"fsI" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"fsF" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"fsG" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) "fsL" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"ftg" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"fti" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydrowest) -"fto" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"ftz" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"ftB" = ( +"fsT" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/airlock/control) +"fsU" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/generator) +"ftf" = ( /obj/structure/surface/table/woodentable, -/obj/item/toy/dice, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"ftG" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"ftn" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"ftH" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"ftt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"ftz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ftF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) "fuc" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Baths" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/showers) "fue" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/closed/gm/dense, /area/corsat/theta/biodome) -"fug" = ( -/obj/structure/machinery/light{ +"fup" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"fuh" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/canteen) -"fux" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"fuz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"fuI" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"fus" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/hangar/monorail/control) +"fuB" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, /turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) +/area/corsat/omega/offices) "fuJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"fuL" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"fve" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/sigma/hangar/security) +"fuL" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"fuR" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/spiralplate, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "fvh" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"fvx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"fvG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"fvi" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/datalab) -"fvM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"fwf" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"fvx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"fvW" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast) +"fwd" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) +"fwi" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"fwo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) +/area/corsat/gamma/residential/east) "fwp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) +/mob/living/simple_animal/hostile/carp{ + color = "orange"; + faction = "neutral"; + harm_intent_damage = 0; + melee_damage_lower = 0; + melee_damage_upper = 0 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) "fwq" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"fww" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"fwA" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"fwC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"fwL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"fwI" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering/lobby) -"fwT" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"fwZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south) -"fwU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"fwX" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"fxa" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"fxe" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) "fxf" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/residential/east) -"fxm" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"fxs" = ( +"fxi" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"fxD" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" +/obj/item/paper_bin, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/lobby) +"fxk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"fxU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"fxx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"fyc" = ( -/obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay) -"fyl" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"fyo" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar) -"fys" = ( -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/researcher) -"fyt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"fyu" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/corsat/omega/checkpoint) +"fxT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Genetics Lab"; + req_one_access_txt = "103" }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"fyH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"fyT" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"fzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"fzi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/corsat/theta/biodome/complex) +"fxU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"fzj" = ( -/obj/structure/machinery/light, /turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) -"fzp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" +"fyl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"fyr" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/chemistry) +"fys" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security/cells) +"fyw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/southeast/datalab) +"fyx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"fzw" = ( -/obj/structure/closet/crate/science, -/obj/item/ore/diamond, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"fzz" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/dorms) +"fyz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/theta/airlock/control) -"fzH" = ( +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/airlock/north) +"fyK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"fyN" = ( +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"fzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"fzs" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/whitetan, -/area/corsat/sigma/dorms) -"fzO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"fzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"fzv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"fzR" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/omega/hallways) -"fAm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"fzz" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"fAo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"fAs" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security/armory) -"fAt" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"fzD" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"fAu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"fAz" = ( -/turf/open/floor/corsat/whitetancorner/east, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"fzL" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) -"fAC" = ( -/obj/structure/machinery/light, +"fzP" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"fzR" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"fAQ" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"fBl" = ( -/obj/structure/bed/chair{ +/area/corsat/gamma/hangar/arrivals) +"fAe" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"fBp" = ( -/obj/structure/bed/nest, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"fBq" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/residential/maint) -"fBw" = ( -/obj/structure/surface/table, -/obj/item/folder/black, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"fBy" = ( -/obj/structure/machinery/light{ +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/residential/lounge) +"fAu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"fAv" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/prop/almayer/computers/mapping_computer, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"fBA" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) -"fBF" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"fBL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/corsat/sigma/south/complex) +"fAx" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"fBN" = ( -/obj/structure/surface/table, +/area/corsat/theta/airlock/control) +"fAA" = ( /obj/structure/platform{ - dir = 4; - layer = 2 + dir = 1 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"fBQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/checkpoint) -"fBX" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo) -"fCa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"fCd" = ( -/obj/structure/bed/chair, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"fAE" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar) +"fAV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fAZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"fBj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"fBI" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"fBJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"fCe" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/sigma/hangar) +"fBV" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"fCf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/red, -/area/corsat/omega/airlocknorth) -"fCn" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"fCp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"fCq" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"fCE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) "fCK" = ( /obj/structure/barricade/handrail{ layer = 3 @@ -11685,530 +11788,510 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"fDD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"fDT" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"fDU" = ( -/obj/structure/stairs{ - dir = 1 +"fCV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"fCY" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"fDk" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "17" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"fEB" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"fDn" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"fFa" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"fDo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"fDs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) -"fFb" = ( +"fDE" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "11" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"fDI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/containment) -"fFe" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"fFl" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"fFo" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"fDL" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/theta/biodome/complex) +"fDS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arrivals" }, -/turf/open/floor/corsat/red, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) -"fFt" = ( +"fDU" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"fEn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"fFH" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"fFN" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"fFP" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"fFQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hallwaysouth) -"fGl" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/spiralwoodalt, -/area/corsat/gamma/residential/lounge) -"fGq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"fGt" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/corsat/sigma/cargo) +"fEE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/squares, /area/corsat/omega/complex) -"fGH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/toxins) -"fHb" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/monorail) -"fHf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"fHi" = ( +"fEQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"fER" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/sigma/hangar) +"fEX" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/engineering) +"fFa" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"fFe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) -"fHr" = ( -/obj/structure/machinery/door/window/brigdoor/southleft{ - id = "CORSAT Sec 1"; - name = "Cell 1" +"fFy" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"fFB" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 8 }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"fFC" = ( +/obj/structure/bed/chair/comfy/beige, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"fHs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaIDSC"; - name = "Security Shutters"; - use_power = 0 +/area/corsat/gamma/security) +"fFR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/south/id) -"fHv" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/gamma/hallwaysouth) -"fHK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"fHO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar) -"fHU" = ( -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"fIj" = ( /obj/structure/machinery/camera/autoname{ dir = 1; - network = list("theta") + network = list("gamma") }, -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"fIy" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"fFW" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"fGd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"fGj" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Security"; + dir = 1; + name = "ID Checkpoint"; req_access_txt = "101" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"fIN" = ( -/obj/structure/surface/rack, -/obj/item/frame/bucket_sensor, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"fJa" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"fJk" = ( +/area/corsat/sigma/airlock/east/id) +"fGk" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/southeast/datalab) +"fGw" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/foyer) -"fJm" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"fJC" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "4" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"fGy" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"fGz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"fGA" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"fGG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"fJF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"fHe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"fJU" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/main/max, -/obj/item/circuitboard/exosuit/peripherals/max/targeting, -/obj/item/circuitboard/exosuit/peripherals/max, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"fKj" = ( -/obj/structure/surface/rack{ - name = "Acid Resistant Rack"; - unacidable = 1 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"fHj" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/dorms) +"fHn" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"fHr" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"fHK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/item/xenos_claw, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"fKw" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"fHO" = ( +/obj/structure/largecrate/random, /turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"fLg" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"fLi" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/sigma/hangar) +"fIh" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"fIm" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"fLq" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"fIB" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"fLE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"fIE" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Cafe"; req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"fLH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"fIM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"fLI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"fIO" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"fLU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"fLX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"fIT" = ( /turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) -"fMC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/area/corsat/sigma/hangar/office) +"fJb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fJg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"fJm" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"fKs" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - name = "\improper Dressing room" + name = "Administration"; + req_access_txt = "106" }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"fKw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"fMF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"fKD" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/medbay/morgue) +"fKG" = ( +/obj/item/implant/loyalty, +/obj/item/implant/loyalty, +/obj/item/implant/compressed, +/obj/item/implant/compressed, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"fKS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"fLc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"fMI" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"fMQ" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"fLf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"fLg" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/northwest, +/area/corsat/gamma/medbay/morgue) +"fLi" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"fMT" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"fMV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"fLk" = ( +/obj/effect/landmark/xeno_spawn, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"fNc" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/corsat/plate, /area/corsat/omega/biodome) -"fNd" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) +"fLq" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west) +"fLG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"fLQ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"fLX" = ( +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"fMj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"fMZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"fNa" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) "fNf" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"fNg" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/area/corsat/sigma/cargo) +"fNj" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/airlocknorth) +"fNw" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"fNA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"fNB" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Hazardous Materials Lab"; + req_one_access_txt = "101" }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/monorail) -"fNr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) "fNI" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) -"fNJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access_txt = "102" +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/rnr) +"fNN" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"fNU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) "fNV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) "fOd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"fOk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arrivals" - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"fOn" = ( +"fOq" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/southeast/datalab) +"fOw" = ( +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"fOL" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"fOr" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"fOP" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"fOQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"fOt" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null + dir = 6 }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"fOT" = ( +/obj/structure/machinery/conveyor, /turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"fOC" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/area/corsat/sigma/cargo) +"fPq" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"fPU" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"fOF" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"fOG" = ( +/area/corsat/inaccessible) +"fPW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"fOI" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"fON" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"fOP" = ( -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome) -"fPc" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/north) -"fPf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"fPw" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Weapons Development"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"fPG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/foyer) -"fPS" = ( -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome) +/area/corsat/sigma/southeast) "fQe" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"fQf" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"fQh" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"fQA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Construction Yard"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/security) -"fQs" = ( -/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"fQF" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/lobby) -"fQt" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "23" + dir = 4 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"fQu" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"fQY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/south) +"fRc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome) -"fQx" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/sigma/cargo) -"fQN" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"fRp" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"fQO" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"fQW" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"fRt" = ( +/obj/structure/machinery/computer/crew, /turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) -"fRb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"fRh" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/maint) -"fRk" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "24" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"fRz" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/toxins) -"fRA" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"fRC" = ( -/obj/structure/bed/stool, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/chemistry) -"fRK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"fRP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"fRT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control Office"; - req_access_txt = "102" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"fSk" = ( +"fRu" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/south/id) +"fRO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/east/id) -"fSl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Construction Yard"; - req_one_access_txt = "102" +/obj/structure/window/reinforced, +/obj/structure/platform, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"fSa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"fSm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) "fSo" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/green{ @@ -12216,398 +12299,475 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) +"fSp" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/omega/hangar) +"fSq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"fSv" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "fSA" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) -"fSF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "CORSAT Library"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fSH" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"fSN" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/morgue) +"fSP" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaO"; + name = "Omega Lockdown" }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"fSM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) +/turf/open/floor/corsat/marked, +/area/corsat/omega/biodome) +"fSQ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/toxins) "fSX" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, /turf/open/floor/plating, /area/prison/hangar_storage/research/shuttle) -"fTb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/autopsy_scanner, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"fTo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fTf" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"fTg" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fTl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"fTt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) "fTG" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/omega/control) -"fTP" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/south/offices) -"fTR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"fTU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"fUa" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"fTW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"fTX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"fTZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"fUk" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"fUa" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"fUm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"fUD" = ( -/turf/open/shuttle/dropship/dark_grey_bottom, -/area/prison/hangar_storage/research/shuttle) -"fUG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"fUM" = ( -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"fUP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) -"fUV" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"fVa" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/control) -"fVd" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"fVl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"fUs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"fVp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Reception Desk"; - req_one_access_txt = "102" +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/administration) +"fUw" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"fUx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"fUQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/lobby) -"fVK" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 + dir = 6 }, -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"fVO" = ( -/obj/item/bananapeel, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"fVc" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, /turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"fVU" = ( -/obj/structure/platform{ +/area/corsat/gamma/residential/west) +"fVh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"fVl" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"fWn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/zippo, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/ice, +/area/corsat/gamma/biodome) +"fVB" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"fVD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/officesquares, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"fVF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) -"fWr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"fWv" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) +"fVG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/airlock/south) "fWx" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"fWA" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"fWD" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hallways) -"fWJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) +"fWL" = ( +/obj/structure/closet/wardrobe/genetics_white, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) "fWM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/ice, /area/corsat/gamma/biodome) -"fXm" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"fXn" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo) -"fXp" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/hangar/office) +"fWQ" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"fWS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"fXb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/complex) +"fXq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) "fXu" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"fXN" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"fXv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"fXV" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east) -"fYk" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/airlocknorth) -"fYw" = ( +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"fXW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"fXX" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"fYj" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"fYB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"fYw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_omega"; + name = "Checkpoint Omega"; + pixel_x = -5; + use_power = 0 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) +/obj/structure/machinery/door_control{ + id = "delta_theta"; + name = "Theta Emergency Access"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) "fYL" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"fZd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) +"fYP" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/flashbang, +/obj/item/explosive/grenade/flashbang, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"fYV" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"fYW" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/surgery) "fZe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"fZl" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"fZu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"fZD" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"fZO" = ( -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/administration) -"gaa" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"gae" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/south) -"gah" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"fZg" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"gan" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/carpet13_5/west, +/area/corsat/omega/offices) +"fZm" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"gaD" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hallways) -"gaJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"gaS" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda{ - dir = 8; - pixel_x = 15 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"fZs" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"fZy" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"fZU" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "delta_gamma2"; + name = "Gamma Checkpoint"; + use_power = 0 }, -/obj/item/reagent_container/food/drinks/shaker, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"gbl" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"fZZ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"gac" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/botanydisk, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"gbL" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"gbW" = ( -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"gbY" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/storage/donut_box, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"gaj" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/rnr) -"gcm" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast) -"gcp" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/hallwaysouth) -"gcw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"gcH" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/arrivals) -"gcK" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"gaz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"gbb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/prop/almayer/missile_tube{ - color = "grey"; - desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; - icon_state = "missiletubesouth"; - name = "\improper genetic LINAC system"; - pixel_x = -15 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"gbg" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"gbp" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"gbB" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"gdN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"gbC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"gdS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"gbE" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"gdW" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/airlock/east) -"gev" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/area/corsat/sigma/north) +"gbX" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/office) +"gbY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "SigmaBioAtmos"; - name = "Access Shutter" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"gcd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/airlock/east/id) +"gch" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"gcp" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"gcu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"gcQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"gdi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"geE" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"geN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"geR" = ( -/obj/structure/window/reinforced, -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) +"gdk" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"gdl" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/north) +"gdB" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"geZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"gfd" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/security/armory) -"gfq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/form_printer, -/obj/item/tool/pen/red, +/area/corsat/sigma/southeast/datalab) +"gdQ" = ( /turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) +/area/corsat/gamma/biodome/virology) +"gdY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"gea" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"geh" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"geB" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"geC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"geN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"gff" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"gfm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/theta/airlock/control) +"gfz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/monorail/control) +"gfK" = ( +/obj/item/cell/crap, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) "gfL" = ( /obj/structure/machinery/camera/autoname{ dir = 4; @@ -12615,215 +12775,204 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"gfR" = ( -/obj/structure/machinery/power/apc/upgraded/power/north, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/west) -"gfT" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"gfX" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"gge" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"ggi" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/hallways) -"ggl" = ( -/obj/structure/showcase{ - icon_state = "broadcast receiver"; - name = "Subspace Receiver" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"ggw" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"ggA" = ( +"gfP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"ggS" = ( -/obj/structure/bed/chair, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"gfZ" = ( +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"gga" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"ggl" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/checkpoint) +"ggr" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"gha" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"ghb" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ +/area/corsat/gamma/biodome/toxins) +"ggC" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ dir = 1 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"ghc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/theta/airlock/control) -"ghp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"ghv" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/southeast/dataoffice) -"ghF" = ( -/obj/structure/machinery/door_control{ - id = "Viro"; - name = "Lab Lockdown"; - pixel_x = 24; - use_power = 0 +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) -"ghT" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail) -"ghV" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/obj/item/weapon/gun/revolver/m44, +/obj/item/weapon/gun/revolver/m44, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"ggD" = ( +/turf/open/floor/corsat/greencorner, +/area/corsat/gamma/hallwaysouth) +"ggE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"ghW" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"gig" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"ggN" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"ggQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"gip" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"ghc" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "10" }, -/turf/open/floor/corsat/blue/west, -/area/corsat/omega/control) -"giF" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ghl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"ghm" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/south) +"ghn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Reception Desk"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"giH" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"ghp" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "GammaEastE"; + name = "Gamma East Airlock" }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) -"giO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"gja" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"ghI" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"ghM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"gjd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"gjl" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"giG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"giH" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/hangar/monorail) +"giK" = ( +/obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"gjr" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"giO" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"giS" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/dorms) +"gjg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) +/area/corsat/gamma/hangar/checkpoint) +"gjr" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/checkpoint) "gjt" = ( /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/plating, /area/prison/hangar_storage/research/shuttle) -"gjG" = ( -/obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"gjI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/omega/control) -"gjL" = ( +"gjz" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 9 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"gjU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"gjP" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"gjT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) "gjX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/checkpoint) -"gkf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"gkh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" +"gkm" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"gkq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"gkw" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) "gkx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) +"gky" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/datalab) "gkB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"gkD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"gkK" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"gkF" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) "gkU" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -12833,84 +12982,85 @@ }, /turf/open/floor/plating, /area/corsat/gamma/airlock/south/id) -"glg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hangar/cargo) +"gln" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) "glr" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"gls" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"glu" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"glw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 +"glv" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Administration"; + req_access_txt = "106" }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"glD" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"glX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"gmb" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/airlock/east/id) +"gmn" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"gms" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo) -"glJ" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/northeast, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) -"glM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gmw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail/control) +"gmO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"glV" = ( -/obj/item/alien_embryo, -/obj/item/alien_embryo, -/obj/item/alien_embryo, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"gmU" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"gmk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"gmI" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/rnr) +"gnc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"gni" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"gmT" = ( +"gny" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/medical_pod/sleeper{ + flags_atom = 18 + }, /turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"gnc" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"gnq" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) +/area/corsat/gamma/residential/east) +"gnG" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) "gnH" = ( -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/cargo) "gnR" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/green{ @@ -12918,83 +13068,101 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"goc" = ( -/obj/structure/machinery/shower, -/obj/structure/machinery/door/window/southleft{ - opacity = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"goh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"gnW" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/squares, +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"goc" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/inaccessible) +"god" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) -"gor" = ( +"gog" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"goj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"gow" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"goB" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"goG" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar) +"goF" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"goN" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) "goY" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/airlock/south) -"gpb" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"gpc" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/foyer) -"gpe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"gpi" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"gpl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"gpA" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"gpO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) "gpP" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"gpV" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay/surgery) -"gqp" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"gqI" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"gqT" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, +"gpR" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering/atmos) +"gpW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"gqc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"gqy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"gqI" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"gqN" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"gqT" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) @@ -13002,78 +13170,86 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"gqW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) +"gqX" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) "gre" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/river, /area/corsat/theta/biodome) -"grl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/sigma/south/complex) +"grB" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) "grD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"grG" = ( -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"grH" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"grI" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) +"grE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) "grR" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"grT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"grV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"grW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/window/southright, /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"grU" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purple/southwest, -/area/corsat/omega/complex) +/area/corsat/sigma/southeast/datalab) "gsm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"gsQ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"gsn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"gsq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"gsC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/monorail) -"gsS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"gsH" = ( +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"gsQ" = ( +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"gtb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Hazardous Materials Storage"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) "gtc" = ( /obj/structure/barricade/handrail{ layer = 3 @@ -13082,228 +13258,257 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"gtg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/cargo) -"gtj" = ( -/obj/structure/bed/chair{ +"gte" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"gti" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"gto" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"gtF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"gtL" = ( +/obj/structure/bed/stool{ + pixel_y = 15 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"gtm" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/residential/maint) -"gtB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"gtO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome) -"gtG" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south) +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"gtS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) "gtX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"guc" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"gug" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) "gui" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"guC" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +"gur" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"guF" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/checkpoint) -"guY" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"guZ" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/residential) -"gvm" = ( -/obj/structure/platform{ +/obj/structure/machinery/microwave, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"gus" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"guw" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"guC" = ( +/obj/structure/powerloader_wreckage, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"guV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/keycard_auth/lockdown/corsat, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"guW" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"gva" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"gvd" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/dice/d20, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"gvf" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hallways) +"gvq" = ( +/obj/structure/machinery/light, +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) "gvs" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"gvy" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/crowbar, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/cargo) -"gvz" = ( -/obj/structure/machinery/door_control{ - id = "SigmaWestW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 +"gvI" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaWestE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"gvB" = ( +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"gvM" = ( +/obj/structure/machinery/light, /obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"gvC" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"gvP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Gamma Dome Control" }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security) -"gvE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/robotics) -"gvW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"gvY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"gwh" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"gwk" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"gwm" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/foyer) -"gwC" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"gwK" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"gvT" = ( +/obj/item/broken_device, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"gwn" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/sigmaremote) -"gwU" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hallwaysouth) +"gwt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"gwH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Hypersleep Chamber"; + req_access_txt = "100" }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) +/area/corsat/gamma/residential/east) "gwY" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"gxj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaWestE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 +"gwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"gxe" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome) +"gxm" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "ThetaWestW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"gxz" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"gxS" = ( +/obj/structure/machinery/computer/emails, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/west) -"gxA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"gxW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) -"gxB" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"gxZ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/gunrange) +"gye" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Atmospherics"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hallways) -"gxO" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"gym" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Implantation Chamber"; + name = "Research Complex"; req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"gxS" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/hallwaysouth) -"gyb" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/administration) -"gyF" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "SigmaGate"; - name = "Gate Shutters"; +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"gyN" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"gyV" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; use_power = 0 }, /turf/open/floor/corsat/marked, -/area/corsat/sigma/south/complex) -"gyV" = ( -/obj/structure/largecrate/supply/ammo/pistol/half, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"gzb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Data Maintainence"; - req_one_access = null +/area/corsat/omega/checkpoint) +"gyY" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"gzc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) "gzf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; @@ -13311,227 +13516,217 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/cargo) -"gzE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) +"gzo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"gzs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"gzt" = ( +/obj/structure/surface/rack, +/obj/item/evidencebag, +/obj/item/evidencebag, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"gzD" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/hangar/monorail/control) "gzG" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/north) +"gzR" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"gzU" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"gAc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"gAk" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"gAq" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"gzK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/corsat/sigma/airlock/control) +"gAO" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar) +"gAS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"gAX" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar) +"gBc" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"gBh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"gBl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/complex) -"gzS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "OmegaA"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 +/area/corsat/gamma/engineering) +"gBx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"gzU" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Nitrogen Control Console" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"gzV" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"gBA" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"gzY" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"gAj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"gAl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1 }, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"gBC" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Hangar Security"; req_access_txt = "101" }, /turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) -"gAo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"gBG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"gBU" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"gAw" = ( -/obj/structure/closet/toolcloset, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"gCa" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, /turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/hangar/monorail/control) -"gAD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/corsat/gamma/engineering/atmos) +"gCh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"gCl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"gAE" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast) -"gAI" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/control) -"gAK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"gAP" = ( -/obj/item/bodybag, +/area/corsat/sigma/south) +"gCm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"gCn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/computer/station_alert, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"gBb" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/sigma/southeast) -"gBe" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"gBh" = ( +/area/corsat/omega/airlocknorth/id) +"gCz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"gBx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"gBy" = ( -/turf/open/floor/corsat/purple/west, -/area/corsat/gamma/residential) -"gBz" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"gBM" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"gCP" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"gBT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"gBW" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"gCe" = ( -/turf/open/floor/corsat/white/north, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) -"gCp" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"gCH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"gCP" = ( +"gCQ" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, /obj/structure/window/reinforced{ dir = 8; health = 250 }, +/obj/item/ashtray/bronze, /turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"gCR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) +/area/corsat/gamma/hangar/flightcontrol) "gCS" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/lobby) -"gDg" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/omega/control) -"gDk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"gCZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/corsat/redcorner/north, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"gDb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"gDd" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) +"gDw" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"gDR" = ( +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/checkpoint) -"gDI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal{ - amount = 30 +"gDV" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"gEe" = ( +/obj/structure/prop/almayer/cannon_cables{ + color = "#55BBFF"; + name = "\improper Cables" }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"gDS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"gEl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"gEi" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar) -"gEp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/sigma/south) +"gEx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"gEu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Interrogation" }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/scrapyard) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) "gEy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -13539,10 +13734,29 @@ }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"gEN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) +"gEC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/lobby) +"gED" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/east) +"gEG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"gEL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) "gEU" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -13550,6 +13764,32 @@ }, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) +"gEX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hallwaysouth) +"gEZ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"gFa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"gFb" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"gFg" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) "gFh" = ( /obj/structure/flora/jungle/alienplant1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -13557,37 +13797,32 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"gFq" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"gFr" = ( -/turf/open/floor/corsat/purple, -/area/corsat/sigma/south) -"gFt" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) -"gFv" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, +"gFB" = ( +/obj/structure/pipes/standard/simple/hidden/universal, /turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"gFx" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south) -"gFy" = ( +/area/corsat/gamma/engineering/atmos) +"gGp" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth/id) +"gGw" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/office) +"gGz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Data Office"; + req_access_txt = "102;103" + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"gFz" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"gFM" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"gGB" = ( +/obj/structure/prop/mech/parts/durand_torso, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/robotics) +"gGH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; name = "Maintainance"; @@ -13600,144 +13835,67 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) -"gFQ" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - req_one_access_txt = "19;106;104" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"gFY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south/id) -"gGn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"gGs" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"gGv" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"gHi" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"gHm" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"gHr" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"gHw" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"gGx" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/hangar/monorail/control) -"gGU" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"gGY" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south) -"gHs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"gHt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering/lobby) -"gHy" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) +/area/corsat/gamma/security/cells) "gHz" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"gHC" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"gHL" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/airlock/south) -"gHQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"gHY" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) "gIb" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/office) +"gIg" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/hangar/monorail) -"gIg" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"gIi" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"gIw" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "1" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"gIM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"gIS" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south) +"gIV" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"gJg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) -"gIJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleportation Chamber"; - req_one_access_txt = "103" - }, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"gIK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"gIL" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"gJd" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/dorms) "gJo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/control) +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) "gJz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -13745,95 +13903,85 @@ }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"gJJ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"gJK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_omega"; - name = "Checkpoint Omega"; - pixel_x = -5; - use_power = 0 +"gJN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "delta_theta"; - name = "Theta Emergency Access"; - pixel_x = 5; - use_power = 0 +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"gJO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Chemistry"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"gJM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security) -"gJR" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"gJT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) "gJX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/west/id) -"gJY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"gKi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"gKq" = ( -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/southeast/datalab) -"gKs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"gKk" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/hallwaysouth) +"gKl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"gKS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Hangar Office" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"gKs" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"gKv" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red, -/area/corsat/sigma/checkpoint) -"gKZ" = ( +/obj/structure/machinery/computer/cameras{ + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"gKP" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"gLc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"gLd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"gLe" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr/bar) +/area/corsat/gamma/cargo) +"gLk" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"gLm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) "gLs" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/inaccessible) -"gLu" = ( -/obj/structure/stairs{ - dir = 8 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"gLw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/east/id) "gLM" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green{ @@ -13842,284 +13990,289 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "gLQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"gMc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"gMa" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"gMd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"gMf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"gMp" = ( +/obj/structure/machinery/door_control{ + id = "GammaAdmin"; + name = "Security Shutters"; + pixel_x = 24; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ dir = 8 }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"gMN" = ( /turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"gMe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"gMw" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/corsat/sigma/north) +"gNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"gNn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"gNp" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"gNB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/hangar/monorail) -"gMR" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"gMS" = ( -/obj/structure/computerframe, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"gNl" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"gNz" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"gNH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/whitetan, /area/corsat/sigma/dorms) -"gNK" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "SigmaSouthN"; - name = "Sigma South Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"gNL" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"gNC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"gNN" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/sigma/hangar/monorail) -"gNO" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"gNW" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"gNZ" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"gNO" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"gNS" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar) +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"gNX" = ( +/obj/vehicle/train/cargo/trolley, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"gOc" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) "gOk" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"gOB" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"gOD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Baths" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"gOV" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/sigma/south/complex) -"gPg" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"gPm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"gOm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/lightplate, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"gOS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) -"gPq" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Flight Control" +"gOT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"gPl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Storage"; + req_one_access_txt = "102" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"gPn" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"gPD" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"gPE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"gPv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"gPx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/arrivals) -"gPE" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/hydrowest) -"gPF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"gPI" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) -"gPG" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/north) +/obj/item/organ/eyes, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) "gPL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"gPW" = ( -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome/scrapyard) -"gQc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"gQd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/checkpoint) -"gQf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/corsat/gamma/residential) +"gPR" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"gPT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"gQg" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast) +"gPY" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleportation Chamber"; + req_one_access_txt = "101;103" }, -/obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"gQa" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Sigma Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) "gQj" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/corsat, /area/corsat/gamma/airlock/south/id) -"gQp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"gQx" = ( -/obj/structure/machinery/light{ +"gQt" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"gQA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"gQQ" = ( +/obj/structure/machinery/r_n_d/bioprinter, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"gQR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"gQW" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"gQK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/theta, +/area/corsat/theta/biodome/complex) +"gRn" = ( +/obj/structure/showcase{ + icon_state = "relay"; + name = "Telecommunication Relay" }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"gQO" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"gQU" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"gRq" = ( /obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"gQW" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"gRa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"gRJ" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "ThetaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/rnr) -"gRk" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"gRs" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"gRA" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "CO2 Control" +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"gRM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/yellow/southwest, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/hallways) +"gRO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) -"gRG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"gRI" = ( +"gRU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"gSd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"gRO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"gRV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"gSb" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"gSe" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"gSc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) "gSj" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/omega/offices) -"gSs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/north) +"gSl" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) "gSt" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"gSv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/omega/control) -"gSA" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/rnr) +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"gSw" = ( +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) "gSC" = ( /obj/structure/largecrate/random/barrel, /obj/structure/machinery/light/small{ @@ -14127,193 +14280,210 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) -"gSR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"gSU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Autopsy Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"gSY" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar) -"gTb" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"gTg" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"gTl" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"gTo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/lobby) -"gTO" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/xeno_restraints, -/obj/item/xeno_restraints, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"gTZ" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/hallwaysouth) -"gUh" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Atmospherics"; - req_one_access_txt = "102" - }, +"gST" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"gUm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/corsat/gamma/biodome/complex) +"gSU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoN"; + name = "Hangar Lockdown"; + use_power = 0 }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"gTf" = ( +/obj/structure/machinery/smartfridge/secure/virology{ + req_access_txt = "103" }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"gUo" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"gUq" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/west, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/virology) -"gUx" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"gUA" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "SigmaEastE"; - name = "Sigma East Airlock" +"gTC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"gUE" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"gTM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"gUK" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"gVr" = ( +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"gTN" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/administration) +"gTW" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"gTY" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"gTZ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"gUm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"gUu" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"gUE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"gUZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"gVa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp/cmo, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"gVb" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"gVc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Research Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Research Desk" + }, +/obj/structure/machinery/bot/medbot, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"gVg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"gVr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"gVy" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) -"gVA" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar/monorail) -"gVF" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" +"gVs" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south) +"gVz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"gVI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"gVL" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"gVK" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" +/area/corsat/gamma/engineering) +"gVP" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + req_access_txt = "101" }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"gVL" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"gVO" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/south) -"gVU" = ( +/area/corsat/gamma/airlock/north/id) +"gVS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/scrapyard) +"gVT" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/south/offices) -"gWx" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"gWQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access = null; - req_one_access_txt = "106;104" +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"gWi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/cargo) +"gWm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/theta/airlock/control) +"gWE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) "gWT" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Forensics" }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/control) -"gXe" = ( -/obj/structure/prop/dam/crane/cargo, -/turf/open/floor/almayer/plating_striped/north, -/area/corsat/gamma/sigmaremote) -"gXw" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"gWW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"gXC" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"gXb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"gXk" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/residential/lounge) +"gXw" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"gXy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"gXE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) "gXN" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump{ @@ -14321,239 +14491,291 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"gXV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"gXW" = ( +"gYh" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/hangar/office) +"gYl" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; + dir = 8; network = list("sigma") }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/southeast/generator) -"gYl" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"gYv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) -"gYo" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"gYx" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"gYy" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/monorail/control) -"gYs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/east/id) "gYz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"gYH" = ( -/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"gYM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/corsat/omega/airlocknorth) +"gYC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) -"gZf" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"gZl" = ( -/obj/structure/bed/chair{ +"gYR" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth/id) +"gZy" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/office) -"gZA" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"gZD" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"gZD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) "gZF" = ( /obj/structure/bed, /obj/item/bedsheet/brown, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"gZS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"gZK" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"gZR" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"gZW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"gZZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"gZX" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"hac" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"haS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"haZ" = ( -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"hbn" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"hbz" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"hab" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) -"hbD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"hac" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"hbG" = ( -/obj/structure/surface/table/reinforced, +/turf/open/shuttle/escapepod/floor12, +/area/corsat/theta/biodome/complex) +"hag" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"hah" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/almayer/research/containment/corner/north, /area/corsat/sigma/south/complex) -"hbR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"har" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"haF" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/biodome/complex) +"haK" = ( /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"hbW" = ( +/area/corsat/sigma/airlock/east) +"haN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"haW" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"hbm" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"hbw" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/atmos) +"hby" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"hbY" = ( -/obj/structure/machinery/light/small{ +/area/corsat/gamma/hallwaysouth) +"hbz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Omega Research Storage"; + req_access_txt = "103"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"hbN" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) -"hcc" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" +"hck" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security/armory) -"hcs" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"hcy" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"hcn" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"hcI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"hcO" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"hcS" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hcv" = ( +/obj/structure/bed/chair, /obj/structure/machinery/camera/autoname{ - dir = 1; + dir = 8; network = list("sigma") }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/sigma/south/complex) -"hcX" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"hcy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"hcC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"hdg" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/office) +"hcK" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"hdq" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"hcL" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, /turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"hdr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/area/corsat/inaccessible) +"hcV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar) +"hcW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"hcX" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/researcher) +/area/corsat/gamma/hallwaysouth) +"hdb" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/west) +"hdA" = ( +/obj/structure/surface/table, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) "hdB" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"hdC" = ( -/obj/structure/sign/safety/laser{ - pixel_x = 32 +"hdD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"hdI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"hdO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) +"hdQ" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) "hed" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/cargo) -"hek" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"heq" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaEastE"; - name = "Theta East Airlock" +"heD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"heA" = ( -/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"heI" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/toxins) +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"heK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) "heL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -14561,286 +14783,140 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"heM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle_control/monorail{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/monorail/control) -"heX" = ( -/obj/structure/surface/table/reinforced, +"heN" = ( +/obj/structure/closet/crate/science, /obj/item/cell/hyper/empty, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/sigma/south/complex) "hff" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"hfs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"hfz" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"hfF" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"hfN" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hallwaysouth) -"hfQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"hfV" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "6" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"hfW" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/theta/airlock/control) -"hgd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"hgn" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"hgq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) -"hgu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoS"; - name = "Checkpoint Control"; - pixel_y = 7; +"hfh" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHCargoW"; + name = "Gamma Cargo Checkpoint"; use_power = 0 }, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoN"; - name = "Checkpoint Control"; - pixel_x = -5; - use_power = 0 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoC"; - name = "Security Shutters"; - pixel_x = 5; - use_power = 0 +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"hfs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/id) -"hgy" = ( -/turf/open/floor/corsat/blue/west, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"hft" = ( +/turf/open/floor/corsat/red/west, /area/corsat/omega/hallways) -"hgC" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"hgF" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red, -/area/corsat/omega/control) -"hgI" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"hgJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"hgM" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" +"hfH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay) -"hgR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"hgT" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"hgU" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/office) -"hgX" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"hhw" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/dorms) -"hhx" = ( +/area/corsat/gamma/hallwaysouth) +"hfN" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) -"hhy" = ( -/obj/structure/bed/sofa/vert/grey/bot, +"hfP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"hfS" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"hhC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light{ - dir = 8 - }, +/area/corsat/sigma/airlock/south) +"hgj" = ( +/turf/open/floor/corsat/blue, +/area/corsat/omega/hallways) +"hgm" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"hgF" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"hhZ" = ( -/obj/structure/closet/crate, -/obj/item/organ/brain/prosthetic, -/obj/item/organ/eyes/prosthetic, -/obj/item/organ/heart/prosthetic, -/obj/item/organ/kidneys/prosthetic, -/obj/item/organ/liver/prosthetic, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"hia" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"hie" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/area/corsat/gamma/hangar/arrivals) +"hgV" = ( +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/residential/lounge) +"hht" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar/arrivals) +"hhQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Storage"; + req_one_access_txt = "102" }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"hih" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/corsat/cargo, /area/corsat/sigma/south/engineering) -"hio" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) +"hhY" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"hia" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) "hiw" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"hiB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"hiF" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"hiH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"hiP" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo/lobby) -"hiU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/cargo) "hiV" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar) +"hja" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"hjd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"hjl" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar/monorail) -"hjy" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Monorail Control"; - req_access_txt = "101" +/area/corsat/gamma/residential/east) +"hjj" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"hju" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) "hjB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"hjK" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering/atmos) +"hjM" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"hka" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"hkg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/wrench, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/sigmaremote) -"hkl" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/robotics) -"hkm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"hkh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) "hkn" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -14854,248 +14930,225 @@ }, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"hkt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"hlg" = ( +"hkF" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - use_power = 0 +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/id) +"hkL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat/red, -/area/corsat/omega/control) -"hlj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"hls" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"hlV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Arcade" +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"hkN" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/sigma/south/complex) +"hkW" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/residential) +"hkY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"hlg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"hlX" = ( -/obj/structure/platform{ +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"hls" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"hlB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"hlH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"hlK" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/gamma/hangar) +"hlP" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/id) +"hlQ" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/mech_bay_recharge_port{ - pixel_x = 8 - }, -/turf/open/floor/corsat/lightplate, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"hlR" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"hmx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) -"hmg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"hmk" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"hmn" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) "hmy" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "16" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"hmG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"hmD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"hmJ" = ( +/obj/structure/bed, +/obj/item/bedsheet, /turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"hmK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"hnb" = ( +/area/corsat/gamma/medbay) +"hmN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"hmS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"hmU" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/gunrange) +"hmX" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"hnh" = ( -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/west) -"hnm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"hnw" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/plate, /area/corsat/omega/complex) -"hnz" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, +"hnj" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar) +"hns" = ( +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydroeast) -"hnB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"hnH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"hnG" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"hnL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"hnI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"hnM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"hnP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"hnO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/lobby) "hnR" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"hnX" = ( -/obj/structure/machinery/computer/area_atmos/area, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering/atmos) -"hnY" = ( +"hod" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/morgue) +"hon" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/ashtray/plastic{ - pixel_x = 4 +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"hov" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"hoZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"hpb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, -/obj/item/handset{ - pixel_x = -4; - pixel_y = 4 +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"hpd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"hoc" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 4; - layer = 2 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"hoj" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"hpf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/lobby) -"hol" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"hoo" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/west/id) -"hoS" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome) -"hoU" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"hpa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/control) -"hpi" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"hpz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"hpA" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/blue/north, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/red/west, /area/corsat/omega/control) -"hpW" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/sigma/dorms) -"hqh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"hqr" = ( +"hpj" = ( /obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"hpl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"hpL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/knife, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"hqI" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/hydroeast) -"hqO" = ( -/obj/structure/closet/emcloset, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"hpV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"hqg" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"hqs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/north/id) +"hqG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"hqJ" = ( +/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) -"hqP" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) +"hqL" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/core) "hqU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -15105,149 +15158,108 @@ "hqX" = ( /turf/open/floor/corsat, /area/corsat/inaccessible) -"hrd" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"hrj" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"hrm" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"hrx" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"hrA" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential) -"hrL" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/theta/airlock/control) -"hrO" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"hrP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"hsf" = ( -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"hsi" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +"hrb" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar) +"hrl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"hso" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/hangar) -"hss" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/canteen) -"hsH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"hrE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"hsT" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/southeast) -"hsV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"hrS" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/containment) +"hrW" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/hangar/monorail/control) +"hsc" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/gamma/airlock/control) -"hsX" = ( -/obj/structure/machinery/computer/skills{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"hss" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"hsz" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"hsB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"hsC" = ( +/obj/item/handset, +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/biodome/complex) -"htK" = ( -/obj/structure/machinery/camera/autoname{ +"hsL" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - network = list("gamma") + id = "OmegaCargoN"; + name = "Omega Cargo Room"; + use_power = 0 }, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hallwaysouth) -"htO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"hts" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo) +"htu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"htQ" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"htB" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) "htS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/landing/console) -"htW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"hud" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"hue" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast/datamaint) -"huk" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"htV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"hul" = ( -/turf/open/floor/corsat/blue/southwest, -/area/corsat/omega/hallways) +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) "huu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) "huD" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"huF" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/west/id) +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) "huQ" = ( /obj/structure/bed/chair/wood/wings{ dir = 8 @@ -15258,160 +15270,136 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"huS" = ( -/obj/structure/machinery/light{ - dir = 8 +"hvd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/administration) -"huU" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast) -"hvh" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"hvr" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"hvC" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"hvK" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/gamma/airlock/control) -"hvN" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 12; - pixel_y = 2 +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/security) +"hvW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/surgery) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) "hvZ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"hwr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/airlocknorth) -"hwy" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"hwS" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"hwX" = ( -/obj/structure/machinery/light{ +"hwb" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"hwc" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"hxf" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"hxi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"hxm" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"hwl" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"hxv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"hwU" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"hxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"hxM" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"hxS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"hxU" = ( +/turf/open/floor/corsat, +/area/corsat/theta/airlock/west/id) +"hxg" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"hxo" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"hxX" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"hxC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"hxT" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"hxU" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"hxV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"hxZ" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/sigma/south/complex) +"hxY" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay/morgue) +"hya" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"hyu" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "Gate Shutters"; + use_power = 0 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"hyb" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) -"hye" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite, +/turf/open/floor/corsat/marked, /area/corsat/sigma/south/complex) -"hyh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"hyv" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"hyB" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) "hyE" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"hyI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"hyT" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"hza" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"hyS" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/hangar/office) "hze" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/ice, /area/corsat/gamma/biodome) +"hzg" = ( +/obj/item/folder/white, +/obj/item/tool/stamp/rd, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"hzh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) "hzm" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -15424,134 +15412,165 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"hzP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"hzQ" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/south/robotics) -"hAp" = ( -/obj/structure/machinery/light{ +"hzr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"hzV" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/checkpoint) +"hzY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"hAq" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/airlock/control) -"hAu" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"hAA" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"hAF" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"hAH" = ( -/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"hAN" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"hAW" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) -"hAX" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"hBc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ +"hAs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"hAP" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/south/id) -"hBs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"hBw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/corsat/purplewhite/west, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"hBa" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"hBk" = ( +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/omega/complex) -"hBI" = ( -/obj/structure/machinery/light{ +"hBt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"hBv" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo) -"hBM" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"hBz" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"hBS" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"hBX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/plate, -/area/corsat/omega/control) -"hCi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/implantcase, -/obj/item/implantcase, -/obj/item/implantcase, -/obj/item/implantpad, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"hCE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"hCO" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"hCR" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/foyer) -"hCT" = ( -/turf/open/mars_cave/mars_cave_4, -/area/corsat/sigma/biodome/scrapyard) -"hCW" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"hBC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"hBE" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"hBJ" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"hBK" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; network = list("gamma") }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"hBM" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"hBP" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security/armory) +"hBT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast) +"hBU" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"hBW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/office) +"hBY" = ( +/obj/structure/machinery/light/small, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) +/area/corsat/gamma/freezer) +"hCb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"hCe" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/omega/offices) +"hCj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/armory) +"hCo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"hCs" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/residential) +"hCu" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8; + pixel_x = 15 + }, +/obj/item/reagent_container/food/drinks/drinkingglass, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"hCK" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/airlock/control) +"hCM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"hCQ" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) "hCY" = ( /obj/structure/safe, /obj/item/stack/sheet/mineral/diamond{ @@ -15562,28 +15581,32 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"hDp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) +"hDf" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hDg" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"hDh" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security/armory) +"hDt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"hDx" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) "hDF" = ( /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) -"hDG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - req_one_access_txt = "201;104" - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"hDI" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast/datalab) "hDO" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -15591,56 +15614,62 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"hDZ" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) "hEb" = ( /obj/structure/closet/cabinet, /obj/item/device/camera, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"hEr" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"hEu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/office) +"hEd" = ( +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"hEg" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"hEo" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) "hEy" = ( -/obj/structure/machinery/computer/teleporter_console/corsat{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"hEB" = ( -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/rnr/bar) "hEE" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/clipboard, +/obj/item/tool/pen, +/obj/item/tool/stamp{ + name = "Quartermaster's stamp" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"hEM" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"hFe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"hEF" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/cargo) +"hEI" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail) +"hEY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"hFg" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/material, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) "hFh" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -15650,90 +15679,102 @@ }, /turf/open/floor/plating, /area/corsat/omega/security) +"hFj" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) "hFm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"hFn" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"hFq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"hFv" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"hFA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"hFF" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"hFG" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"hFJ" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"hFx" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"hFK" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/airlock/south) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"hFL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) "hFQ" = ( /obj/structure/surface/table/reinforced, /obj/item/device/binoculars, /turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) -"hFS" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"hGc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) "hGf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) -"hGh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"hGn" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"hGo" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"hGu" = ( +"hGj" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/southeast/datamaint) -"hGv" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/biodome/complex) -"hGK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar/arrivals) -"hGM" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"hGP" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"hGT" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"hGG" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) "hGU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/east, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) +"hGX" = ( +/obj/structure/machinery/door_control{ + id = "SigmaBioAtmos"; + name = "Access Shutters"; + pixel_y = 24 + }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) +"hHa" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"hHr" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/arrivals) "hHy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -15742,114 +15783,144 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) +"hHz" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"hHC" = ( +/obj/structure/prop/mech/parts/durand_head, +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/south/robotics) "hHR" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = -32 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"hHT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"hHU" = ( -/obj/item/folder/black_random, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"hHV" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"hIc" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"hIf" = ( +/obj/structure/machinery/door_control{ + id = "GammaDSC2"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/north/id) +"hIi" = ( /obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"hIt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/timer, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"hIu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"hII" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"hIg" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"hIJ" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"hIS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"hJe" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaDSC"; - name = "Security Shutters" +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"hJh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north/id) -"hIm" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth) -"hIA" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"hJm" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"hIU" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"hIX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) "hJw" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"hJJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/hangar/office) -"hJO" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"hJT" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"hJY" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"hKa" = ( -/obj/structure/bed/chair{ - dir = 1 +"hJA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"hJC" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/obj/structure/surface/table/almayer, +/obj/item/tool/minihoe, +/obj/item/tool/hatchet, +/obj/item/tool/shovel/spade, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"hJR" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"hJS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "Administration Office" }, -/obj/structure/platform{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - layer = 2 + id = "OmegaOffice"; + name = "Privacy Shutters" }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"hKj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHCargoW"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"hKe" = ( +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"hKf" = ( +/obj/item/storage/belt/gun/m4a3/vp78{ + desc = "The M276 is the standard load-bearing equipment of the TGMC. It consists of a modular belt with various clips. This version has a holster assembly that allows one to carry the VP78 comfortably secure. It also contains side pouches that can store XX magazines."; + name = "M276 pattern VP78 holster rig" }, -/turf/open/floor/corsat/marked, +/obj/structure/closet/secure_closet/detective{ + name = "Head of Security's Cabinet" + }, +/obj/item/device/flash, +/obj/item/device/hailer, +/obj/item/device/megaphone, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"hKn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/cargo) -"hKq" = ( -/obj/structure/cargo_container/trijent/right, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) +"hKo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/handset, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) "hKt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -15867,86 +15938,145 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"hKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) -"hKQ" = ( +"hKK" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo/disposal) +"hKP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"hKY" = ( -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/southeast/datalab) -"hLd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"hKS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"hLw" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"hLD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/morgue) -"hLT" = ( -/obj/structure/machinery/juicer, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"hLY" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hMp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"hNa" = ( -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome/gunrange) -"hNo" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/east) -"hNr" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"hNv" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"hKT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pool" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"hKY" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/redcorner/east, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"hLb" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"hLg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"hLt" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/hangar/flightcontrol) +"hLx" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"hLz" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"hLG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"hLP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Food Storage"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"hMe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"hMl" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"hMr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"hMw" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"hMU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"hMZ" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/dorms) -"hNx" = ( -/turf/open/floor/corsat/darkgreen/north, +"hNb" = ( +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"hNf" = ( +/turf/open/floor/plating/warnplate/southeast, /area/corsat/gamma/hangar) -"hNB" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"hNr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"hNt" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/sigma/cargo) +"hND" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"hNG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) "hNI" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/tunnel{ @@ -15954,490 +16084,495 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"hNS" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ +"hNK" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"hNM" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ dir = 2; - name = "Secure Racks"; - req_access_txt = "103" + name = "Identification Desk" }, -/obj/item/oldresearch/Blood, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"hNU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"hNV" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"hNP" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo) +"hNQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"hNY" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"hOa" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" }, -/turf/open/floor/corsat/browncorner, -/area/corsat/omega/cargo) +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) "hOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/airlock/south) -"hOc" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/surgery) -"hOe" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/cargo) "hOp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/residential) -"hOs" = ( -/obj/structure/surface/table, -/obj/item/folder, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/omega/offices) +"hOA" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"hOB" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"hOL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"hOI" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"hOW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"hPq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"hPM" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/sigma/cargo) -"hPu" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/east) -"hPB" = ( -/obj/structure/surface/table/almayer, -/obj/item/evidencebag, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"hPP" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"hQr" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"hQx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"hPQ" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"hPU" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"hQL" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"hQU" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"hQW" = ( +/obj/structure/prop/dam/crane/cargo, +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"hRe" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"hQk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar) -"hQq" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"hRl" = ( +/turf/open/floor/corsat/greencorner/west, +/area/corsat/gamma/hallwaysouth) +"hRo" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"hRq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) -"hQs" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat/omega, -/area/corsat/omega/hallways) -"hQw" = ( -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) -"hQT" = ( -/obj/structure/surface/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"hQY" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/residential) -"hRc" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"hRJ" = ( -/obj/structure/machinery/light{ - dir = 1 +"hRw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"hRO" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/area/corsat/omega/hangar/security) +"hRz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"hSa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"hSm" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = 32 +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"hRF" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydrowest) -"hSF" = ( -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"hSG" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"hSI" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"hRJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"hSR" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/complex) -"hSV" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/officesquares, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/foyer) +"hRL" = ( +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/administration) -"hSX" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 +"hRS" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar) +"hRZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"hSl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/airlock/control) -"hTn" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/chemistry) -"hTo" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/monorail/control) -"hTt" = ( -/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplecorner, +/area/corsat/gamma/biodome/complex) +"hSB" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) -"hTv" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = -32 +"hTa" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"hTO" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"hUq" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"hTg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/core) -"hUJ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"hUK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"hTh" = ( +/obj/structure/disposaloutlet{ + dir = 4 }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-N"; - name = "Security Shutters" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"hTz" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"hTH" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"hTZ" = ( +/obj/item/tool/wet_sign, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"hUP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" +/area/corsat/gamma/biodome/complex) +"hUl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"hUQ" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"hUm" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"hUo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"hUU" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) +/area/corsat/gamma/biodome/toxins) +"hUw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"hUx" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"hUA" = ( +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"hUB" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"hUH" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) "hUW" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential) -"hVc" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/control) -"hVf" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"hUX" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"hVn" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/datalab) +"hUZ" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering/atmos) +"hVd" = ( /turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"hVr" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"hVs" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"hVA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/corsat/gamma/cargo) +"hVe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("omega") }, -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"hVS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"hVK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"hVT" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"hWj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/corsat/gamma/medbay) +"hWk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"hWl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"hWo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"hWq" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/theta/airlock/east) "hWx" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"hWy" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) -"hWC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) +"hWB" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) "hWD" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/gunrange) "hWM" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west/id) -"hXo" = ( -/obj/structure/stairs{ - dir = 4 +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"hWN" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome/gunrange) +"hWR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"hXm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"hXp" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "CO2 Control" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"hXo" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hangar/monorail) "hXy" = ( -/obj/structure/closet/secure_closet/security, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/core) +"hXB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) "hXE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"hXM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/hangar) -"hXT" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"hXZ" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/southeast/datalab) +"hXQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/checkpoint) +"hYl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"hYm" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"hYw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"hYD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/voice, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"hYG" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; dir = 1 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"hYe" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"hYp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"hYr" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"hYx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"hYF" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"hYL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"hYV" = ( /obj/structure/surface/rack, -/obj/item/clothing/glasses/material, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/stack/sheet/mineral/silver{ + amount = 10 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"hYT" = ( -/obj/structure/machinery/vending/hydronutrients, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"hZh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"hZn" = ( +/area/corsat/sigma/south/engineering) +"hYW" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"hZs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"hYX" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"hZk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hangar) -"hZw" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"hZz" = ( -/obj/structure/reagent_dispensers/water_cooler, +/area/corsat/gamma/hydroponics) +"hZq" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"hZx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"hZL" = ( +/obj/structure/stairs, /obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" + dir = 4; + layer = 2.7 }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/hallwaysouth) -"hZR" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"iae" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) -"iao" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hZW" = ( +/obj/structure/machinery/recycler, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo/disposal) +"iaa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"iaB" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/complex) -"iaX" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/omega/hallways) -"iaZ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) +/area/corsat/omega/complex) +"iax" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"iaO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"iaT" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"iaY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) "ibb" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hallways) -"ibg" = ( -/obj/structure/showcase{ - icon_state = "comm_server"; - name = "Communications Server" +/turf/open/shuttle/dropship/light_grey_top_left, +/area/prison/hangar_storage/research/shuttle) +"ibk" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"ibo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"ibr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"ibp" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hallwaysouth) +"ibq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) +/area/corsat/sigma/southeast) "ibz" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -16448,410 +16583,247 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"ibJ" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"ibK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"ibP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +"ibC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "Bathroom" + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"ibR" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"ibW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"ibQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/hangar/arrivals) +"ibS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"ibY" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "ibZ" = ( -/obj/structure/machinery/door/window/brigdoor/southleft{ - id = "CORSAT Sec 2"; - name = "Cell 2" +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"icd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"icl" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/datamaint) -"icm" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) "icq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"icz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"icN" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"icV" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/north, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"icB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/flightcontrol) +"idn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) -"idd" = ( -/obj/structure/machinery/light{ - dir = 8 +"idv" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"idz" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"idk" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"ido" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"idH" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"idt" = ( -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"idF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"idQ" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar) +"idK" = ( +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) "idU" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"idY" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"ied" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) "iem" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, /turf/open/floor/plating, /area/corsat/gamma/hangar) -"iew" = ( -/obj/structure/surface/table, -/obj/item/book, -/obj/structure/machinery/light{ - dir = 8 +"ien" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/generator) +"ieq" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) "iex" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/sign/safety/airlock{ + pixel_x = -32 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"iey" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/airlocknorth) -"ieS" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"ieT" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"ieC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"ieM" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleporter Power Room"; + name = "Implantation Chamber"; req_one_access_txt = "103" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"ifk" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/control) -"ifn" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"ifo" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"ifs" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"ifz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"ieO" = ( +/obj/structure/machinery/computer/teleporter_console/corsat{ + dir = 8 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"ifA" = ( -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"ifD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"ieW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"ifF" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/security) -"ifJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast/datamaint) +"ifq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"ifO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/corsat/gamma/airlock/control) +"ifu" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"ifT" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "11" }, -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) "ifX" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/airlock/south/id) -"ifZ" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 - }, +"igq" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/core) -"igb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) +/area/corsat/sigma/south/robotics) "igv" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"igB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"igD" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"igW" = ( -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/scrapyard) -"ihc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"ihl" = ( +/area/corsat/sigma/airlock/control) +"igL" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"igU" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"ihy" = ( -/obj/structure/surface/rack, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"ihG" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/complex) -"ihM" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"ihT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"igY" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar) +"ihf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; - name = "Secondary Generators"; - req_one_access_txt = "102" + name = "Maintainance"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"ihX" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"ihZ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"iic" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/corsat/sigma/south/complex) -"iin" = ( -/obj/structure/machinery/door_control{ - id = "Toxins"; - name = "Toxins Lockdown"; - pixel_y = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "Viro"; - name = "Virology Lockdown"; - pixel_y = 8; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaLab"; - name = "Privacy Shutters"; - pixel_y = 1; - use_power = 0 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/biodome/complex) -"iiD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Hypersleep Chamber"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/corsat/gamma/hangar/monorail/control) +"ihl" = ( /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) +/area/corsat/sigma/south/security) "iiI" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"iiJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"iiP" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"iiK" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar) -"iiL" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"ije" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) "ijf" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"ijs" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"ijh" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"iju" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/voice, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"ijy" = ( -/obj/structure/machinery/pipedispenser, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"ijj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) "ijA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"ijB" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"ijD" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) +"ijF" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/hangar/monorail) +"ijI" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydroeast) "ijK" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/canteen) -"ikh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"iki" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"ikt" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/omega/cargo) -"ikI" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/omega/hallways) +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"ijR" = ( +/obj/structure/surface/table/almayer, +/obj/item/evidencebag, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"ikd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/hangar/office) +"ikA" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) "ikQ" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -16860,543 +16832,559 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"ila" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/mars_cave/mars_cave_7, -/area/corsat/sigma/biodome/scrapyard) -"ilz" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light{ +"ilh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"ilC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Sigma Remote Complex"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"ilD" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"ilH" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"ilA" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/sigma/hangar/monorail) +"ilK" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"imm" = ( -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/purple/northeast, +/area/corsat/gamma/biodome/complex) +"imo" = ( +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/south/robotics) "ims" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/scientist, /turf/open/ice, /area/corsat/gamma/biodome) -"imu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp/cmo, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"imw" = ( -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) "imz" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"imA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"imG" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) +"imB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/security) "imM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"imP" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/monorail) -"imR" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/disposal) -"inf" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"ind" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"ine" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"inf" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ink" = ( +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential) +"ins" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/red, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) "int" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"inw" = ( +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"iny" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar/monorail) +"inQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"iol" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"inz" = ( -/obj/vehicle/train/cargo/trolley, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"inC" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/greencorner/east, -/area/corsat/gamma/medbay/morgue) -"iod" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"iok" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"iop" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"ion" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"iou" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/south/id) +"ioO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"ioy" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"ioP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/sigma/hangar) -"ipa" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"ipc" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/hangar) -"ipf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Cybernetics Lab"; - req_one_access_txt = "102" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"ioR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ioV" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/north) +"ioZ" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"ipz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"ipo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"ipH" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/checkpoint) -"ipt" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential/east) -"ipx" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/greenwhite/east, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"ipK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"ipN" = ( +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay) -"ipz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"ipR" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"ipW" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"iqk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"ipD" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/hangar) -"ipJ" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"ipY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"iqc" = ( +/area/corsat/gamma/hydroponics) +"iqo" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"iqu" = ( /obj/structure/surface/rack, /obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"iqG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"iqH" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"iqf" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"iqW" = ( +/obj/structure/machinery/door_control{ + id = "SigmaWestW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaWestE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) -"iqj" = ( +"iqZ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/residential/lounge) +"irc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"irh" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"iru" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/chips, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"irv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"iqm" = ( -/obj/structure/machinery/medical_pod/sleeper{ - flags_atom = 18 +"irA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"iqo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/robotics) +"isa" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"isq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Reactor Core"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"isu" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay) -"iqr" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ +"isw" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"isQ" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"itd" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"iry" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"irR" = ( +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"itm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"itr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/generator) +"itz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"itB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"isb" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"itQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"itW" = ( /turf/open/floor/corsat/redcorner, -/area/corsat/theta/airlock/east/id) -"isc" = ( -/obj/structure/bed/chair/office/light{ +/area/corsat/sigma/airlock/control) +"itY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/west/id) -"isg" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"isj" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/security) -"isp" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydroeast) -"iss" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/administration) -"isF" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"isI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/control) -"isN" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"isT" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"isZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"iti" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"itt" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"itv" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/omega/hangar) -"itF" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"itQ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"iud" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 1 }, +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/residential/lounge) +"iuf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"iuF" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"iuH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"itW" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ +/area/corsat/sigma/cargo) +"iuL" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"itX" = ( +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/residential) +"iuN" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail/control) +"iuS" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/hallwaysouth) +"iuU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"itY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"iup" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"iuH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/airlock/east/id) -"iuM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"iuN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"ivC" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"ivE" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/lobby) -"ivp" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"ivq" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"ivX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"iwe" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/southeast/dataoffice) -"ivQ" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"iwu" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, /turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail) -"iwF" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"iwJ" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"iwL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"ixe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Office"; - req_access_txt = "101" +/area/corsat/gamma/engineering/atmos) +"iwh" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"iwo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"ixo" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/southeast/generator) -"ixv" = ( -/turf/open/mars_cave/mars_cave_14, -/area/corsat/sigma/biodome/gunrange) -"ixF" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"ixV" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/area/corsat/omega/cargo) +"iwr" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"iya" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"iws" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"iyg" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "GammaCargo"; - name = "Gamma Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/cargo) -"iyz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/corsat/sigma/hangar/security) +"iwI" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"iyI" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"iwW" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "\improper Mentor's Guide Bookcase" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"iyX" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar) -"iyZ" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"iwX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; + dir = 2; + name = "Maintainance"; req_one_access = null }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "GammaBioAtmos"; - name = "Access Shutter" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"ixh" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"ixj" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/southeast/dataoffice) +"ixp" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) -"izj" = ( +"ixr" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/control) +"ixx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/checkpoint) +"ixJ" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"iyb" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/hangar) +"iyL" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "20" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"iyR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"izu" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/corsat/gamma/biodome/toxins) +"izC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/airlock/control) -"izz" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"izE" = ( -/obj/structure/surface/table, +"izD" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"izI" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"izJ" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome/scrapyard) "izL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"izO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/flightcontrol) +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) "izP" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/complex) +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) "izU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) "iAe" = ( -/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"iAi" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/popcorn, -/turf/open/floor/corsat/brown, -/area/corsat/omega/cargo) -"iAg" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"iAm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/folder/black, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"iAv" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"iAA" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"iAJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"iAu" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "103" +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"iAK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"iAS" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"iAB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/southeast/datamaint) -"iAG" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"iAW" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"iAS" = ( -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo) -"iBc" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) +"iBe" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) "iBg" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green{ @@ -17404,16 +17392,18 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"iBh" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"iBl" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +"iBi" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"iBp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) "iBs" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, @@ -17421,252 +17411,259 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"iBC" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +"iBH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"iBQ" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ dir = 2; - id = "Viro"; - name = "Virology Lockdown" + name = "Identification Desk" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"iBE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaIDSC"; + name = "Security Shutters" }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hallwaysouth) -"iBM" = ( -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"iBP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"iBQ" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/airlock/south/id) +"iBV" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) +"iCe" = ( +/obj/structure/pipes/binary/pump/on{ dir = 8 }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/airlock/control) +"iCl" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"iCu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/prop/gripper, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"iCx" = ( /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"iBT" = ( +/area/corsat/sigma/south/security) +"iCF" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/rnr) +"iCX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"iCZ" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"iDd" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"iDg" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"iDt" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/purplewhite/west, +/turf/open/floor/corsat/purple/west, /area/corsat/gamma/biodome/complex) -"iBV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +"iDy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"iBX" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = 32 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"iDG" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"iDT" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"iDY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"iEp" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/obj/item/oldresearch/Blood, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"iCg" = ( +/area/corsat/omega/complex) +"iEs" = ( +/turf/open/floor/corsat/purple/northwest, +/area/corsat/omega/hallways) +"iEC" = ( +/obj/structure/machinery/conveyor, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/sigma/dorms) -"iCl" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"iCn" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"iEG" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Containment Unit"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"iCz" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"iEH" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"iCG" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"iCH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/residential/maint) -"iCJ" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "106" +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"iEI" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"iEZ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/office) -"iDa" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"iDh" = ( -/obj/structure/bed/chair{ +/area/corsat/gamma/hangar/arrivals) +"iFb" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"iFf" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/theta/airlock/control) +"iFl" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"iDm" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"iDu" = ( -/obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"iDv" = ( -/obj/structure/bed/chair{ +/area/corsat/emergency_access) +"iFo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"iDW" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"iFx" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"iEm" = ( +/area/corsat/sigma/south/engineering) +"iFB" = ( +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential) +"iFG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat/greenwhite/north, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"iFH" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"iFM" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"iFR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"iGg" = ( +/turf/open/floor/corsat/greencorner, /area/corsat/gamma/medbay/morgue) -"iEu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +"iGj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"iGn" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south) +"iGp" = ( +/obj/structure/machinery/pipedispenser, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"iGq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"iGv" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - health = 80 + network = list("sigma") }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"iEx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/sparker, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"iEz" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"iGx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"iGB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Chief Engineer's Office"; + req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"iGI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"iEH" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"iEJ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"iFe" = ( -/obj/structure/surface/table/reinforced, +/area/corsat/sigma/dorms) +"iGP" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/cargo) +"iHa" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ - id = "SigmaCheckpointC"; + id = "OmegaAccessC"; name = "Security Shutters"; - pixel_x = 7; + pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"iFq" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"iFw" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential) -"iFK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"iFO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/corsat/sigma/south/complex) -"iGc" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth) -"iGm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"iGn" = ( -/obj/structure/surface/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/datamaint) -"iGt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"iGv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/checkpoint) -"iGI" = ( -/obj/structure/machinery/vending/security, /turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security) -"iGL" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"iGN" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "7" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"iHf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hangar) +/area/corsat/omega/checkpoint) "iHo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17674,191 +17671,247 @@ /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) "iHq" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"iHy" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/southeast/dataoffice) -"iHP" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) -"iHR" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"iHT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"iHs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"iHV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/corsat/sigma/cargo) +"iHz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"iIa" = ( -/obj/structure/machinery/door_control{ - id = "SigmaSecC"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 +/area/corsat/sigma/hangar/security) +"iHR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"iIb" = ( -/obj/structure/machinery/light{ +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"iIi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) "iIm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"iIr" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/residential/maint) +"iIC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/robotics) -"iIA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"iIY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) -"iIJ" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/northeast, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/sigma/south/complex) -"iIP" = ( -/obj/item/trash/candy, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"iIS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"iIZ" = ( +"iJc" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"iJj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"iJr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"iJG" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"iJJ" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/biodome) +"iJM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"iJX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"iJA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"iJF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"iKk" = ( +/obj/item/bananapeel, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"iKo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"iJQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) -"iKg" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" +"iKp" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"iKy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/maint) +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"iKF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/omega/cargo) "iKJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"iKK" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south) +"iKV" = ( +/obj/structure/machinery/shower, +/obj/structure/machinery/door/window/southleft{ + opacity = 1 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"iKL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "Administration Office" +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaOffice"; - name = "Privacy Shutters" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"iLe" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/canteen) +"iLk" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"iLo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, /turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"iKT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"iKU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"iLa" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"iLc" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/control) -"iLu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"iLG" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/sigma/southeast/datalab) +"iLp" = ( +/obj/structure/sign/safety/laser{ + pixel_x = 32 }, -/obj/structure/pipes/vents/pump{ +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"iLx" = ( +/obj/structure/bed/chair/comfy/black{ dir = 4 }, +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"iLJ" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/security) -"iLO" = ( +/area/corsat/gamma/hangar/monorail/control) +"iLE" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 1 }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"iLM" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"iMg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"iMn" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/cargo) -"iMG" = ( -/obj/structure/pipes/vents/pump{ +/area/corsat/gamma/hangar) +"iLQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"iML" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/gamma/hangar/arrivals) -"iNd" = ( -/obj/item/trash/burger, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"iNh" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/security) -"iNi" = ( -/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"iLR" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/checkpoint) +"iLW" = ( +/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) +/area/corsat/gamma/hangar/monorail/control) +"iMl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/hangar) +"iMP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"iMV" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"iMY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"iNc" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"iNe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"iNf" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"iNj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) "iNk" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/east, @@ -17867,319 +17920,335 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) -"iNr" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/foyer) -"iNu" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"iNn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"iNx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/airlock/south) -"iOl" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"iNz" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/hallways) +"iNA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"iNB" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/north) +"iNK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"iOj" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west) -"iOw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"iOl" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"iOm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"iON" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"iPm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"iOs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"iOz" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/east/id) +"iOG" = ( +/obj/structure/machinery/disposal, /turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) +/area/corsat/gamma/hydroponics) +"iOK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"iOV" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"iPa" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"iPe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/datamaint) +"iPg" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"iPk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/southeast/datamaint) +"iPl" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) "iPo" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) -"iPB" = ( -/obj/structure/machinery/light{ +"iPs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"iPD" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/security) +"iPR" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar) -"iPF" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"iPT" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/toxins) -"iPN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"iPW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"iQf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/airlock/control) -"iQg" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) "iQh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"iQk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) -"iQo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"iQt" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"iQw" = ( -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) "iQH" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"iQM" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"iQS" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"iQX" = ( -/obj/structure/closet/firecloset, +"iQJ" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"iRa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"iRc" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hangar/security) +/area/corsat/gamma/medbay/surgery) +"iQZ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"iRe" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) "iRf" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"iRg" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security) "iRj" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/residential/lounge) -"iRk" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) "iRo" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"iRG" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"iRH" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"iRJ" = ( -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/hallwaysouth) -"iRW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 +/area/corsat/omega/checkpoint) +"iRz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"iSe" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"iRU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) +/area/corsat/sigma/south/security) +"iSb" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth) +"iSv" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"iSw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"iSx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bananapeel{ + name = "tactical banana peel" + }, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) "iSB" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/hangar/arrivals) +"iSL" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/north) "iSM" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Research Complex"; + req_one_access_txt = "101" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"iSU" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "RemoteGate"; + name = "Gate Shutters"; + use_power = 0 }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"iSQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/marked, /area/corsat/gamma/sigmaremote) -"iST" = ( +"iSV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/residential/east) +"iSY" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoS"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"iTq" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"iTy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"iTH" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"iTa" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"iTf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"iTz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"iTI" = ( -/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo/disposal) +"iTV" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"iTO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"iTQ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/airlock/control) "iTW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) -"iUa" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"iUe" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/airlock/east/id) -"iUf" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"iUo" = ( -/obj/structure/machinery/light{ - dir = 8 +"iTY" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/arrivals) +"iUn" = ( +/obj/structure/closet/secure_closet/security_empty{ + icon_broken = "hossecurebroken"; + icon_closed = "hossecure"; + icon_locked = "hossecure1"; + icon_off = "hossecureoff"; + icon_opened = "hossecureopen"; + icon_state = "hossecure1"; + name = "Head of Security's Locker" }, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo) -"iUA" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/device/binoculars, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security) +"iUx" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"iUy" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"iUH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"iUW" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/south/offices) -"iVa" = ( -/turf/open/mars_cave/mars_cave_20, -/area/corsat/sigma/biodome/scrapyard) -"iVh" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 2"; - name = "Containment Cell 4"; - req_one_access_txt = "103" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south) +"iUz" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/hallwaysouth) +"iUI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"iUP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"iVj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/corsat/gamma/biodome/complex) +"iVu" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential) +"iVw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) -"iVE" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"iVT" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/control) +"iVx" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"iVR" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/monorail) +"iWf" = ( /turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/canteen) -"iWs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/corsat/gamma/residential/west) +"iWm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) "iWA" = ( /obj/structure/surface/table/woodentable, /obj/item/paper, @@ -18187,124 +18256,94 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"iWM" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/cargo) -"iWV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"iXa" = ( -/obj/effect/decal/cleanable/cobweb{ +"iXt" = ( +/obj/structure/machinery/light{ dir = 1 }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"iXj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) -"iXt" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) +/area/corsat/sigma/dorms) "iXv" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "17" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/monorail) "iXB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoS"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"iXZ" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"iYf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"iYn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"iYl" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"iYp" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) "iYt" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/southeast) +"iYU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC"; - name = "Security Shutters" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"iYZ" = ( +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"iZc" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"iZe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east/id) -"iYu" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/sigma/south/complex) +"iZh" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ - id = "ThetaEastE"; - name = "Airlock Control"; - pixel_x = 5; + id = "SigmaHCargoS"; + name = "Checkpoint Control"; + pixel_y = 7; use_power = 0 }, /obj/structure/machinery/door_control{ - id = "ThetaEastW"; - name = "Airlock Control"; + id = "SigmaHCargoN"; + name = "Checkpoint Control"; pixel_x = -5; use_power = 0 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"iZi" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "SigmaHCargoC"; + name = "Security Shutters"; + pixel_x = 5; + use_power = 0 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"iZk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/id) +"iZr" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"iZy" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south) -"iZt" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) "iZz" = ( /obj/structure/closet/cabinet, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"iZI" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"iZJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) "iZQ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; @@ -18313,686 +18352,713 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"iZS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"iZV" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) +"iZW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) "jad" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"jaf" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"jam" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"jau" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 - }, -/obj/item/storage/pill_bottle/dexalin, -/obj/item/storage/pill_bottle/antitox{ - pixel_x = -5 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/chemistry) -"jaM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"jaN" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/omega/control) +"jav" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"jaO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"jaF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-S"; + name = "Security Shutters"; + use_power = 0 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) "jaS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Gamma"; - req_access_txt = "103" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) "jba" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"jbh" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purple, -/area/corsat/gamma/biodome/complex) -"jbk" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"jbm" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/southeast, +"jbi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) -"jbn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) -"jbs" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"jbD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"jbv" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitebluefull/southwest, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) +"jbx" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/airlock/control) +"jbC" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "jbF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) +/obj/structure/safe{ + spawnkey = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) "jbG" = ( +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo) +"jbM" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) +/area/corsat/gamma/residential) "jbN" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/hangar/checkpoint) -"jbV" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/administration) -"jch" = ( +"jbP" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"jcZ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"jdc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"jdk" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"jbW" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"jds" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/structure/platform{ - dir = 8; - layer = 2.8 +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"jci" = ( +/obj/structure/machinery/shower, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"jcm" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"jcs" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"jdt" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck/uno, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"jdD" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"jcz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Research Complex Omega"; + req_access_txt = "103" }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"jdE" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"jcC" = ( +/obj/structure/machinery/door_control{ + id = "Toxins"; + name = "Lab Lockdown"; + pixel_y = 24; + use_power = 0 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"jdL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"jef" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/toxins) +"jcO" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"jen" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/window/reinforced, /turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"jev" = ( -/turf/open/floor/corsat/red/east, /area/corsat/omega/hallways) -"jez" = ( -/turf/open/floor/corsat/bluecorner, +"jcP" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/north) +"jcQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"jcS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) -"jeN" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/sandal, +"jcU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"jcV" = ( +/turf/open/floor/corsat/purple/southwest, +/area/corsat/omega/hallways) +"jcX" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"jcY" = ( +/obj/structure/machinery/autolathe, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"jeP" = ( -/obj/structure/safe, -/obj/item/xeno_egg, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"jeQ" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"jdb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "OmegaCargo"; + name = "Omega Cargo Bay"; + use_power = 0 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"jeR" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/dorms) -"jfe" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"jfn" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"jfp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/theta/airlock/east) -"jfr" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"jfs" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"jfx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"jdd" = ( +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome/gunrange) +"jdk" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/lobby) -"jfF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"jfP" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/rnr) -"jfR" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"jfU" = ( +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"jdn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"jdp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"jfW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"jgq" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"jgJ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"jgQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"jgZ" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"jdr" = ( /obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"jhA" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"jdt" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck/uno, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"jdC" = ( +/obj/structure/closet/crate, +/obj/item/organ/brain/prosthetic, +/obj/item/organ/eyes/prosthetic, +/obj/item/organ/heart/prosthetic, +/obj/item/organ/kidneys/prosthetic, +/obj/item/organ/liver/prosthetic, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"jdJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"jef" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/sigma/north) +"jes" = ( +/obj/structure/closet/toolcloset, /obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"jhT" = ( -/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"jew" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"jih" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"jip" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) -"jiL" = ( -/obj/structure/bed, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"jiT" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"jeQ" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/sigma/hangar) +"jeZ" = ( /obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"jji" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, +/obj/structure/machinery/computer/secure_data, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"jjq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Center"; - req_access_txt = "101" +/area/corsat/sigma/hangar/checkpoint) +"jfd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"jfu" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"jjF" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/greenwhite/west, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) +"jfx" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jfB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay) -"jjQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"jfC" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"jfP" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/rnr) +"jfS" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"jjZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"jkp" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"jkK" = ( +/area/corsat/sigma/south/robotics) +"jfV" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ - id = "ThetaNorthS"; - name = "Airlock Control"; - pixel_y = -2; + id = "GammaHCargoN"; + name = "Checkpoint Control"; + pixel_x = -5; + pixel_y = 6; use_power = 0 }, /obj/structure/machinery/door_control{ - id = "ThetaNorthN"; - name = "Airlock Control"; - pixel_y = 5; + id = "GammaHCargoW"; + name = "Checkpoint Control"; + pixel_x = -5; + pixel_y = -3; use_power = 0 }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"jkV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"jkX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"jlh" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"jlo" = ( +/obj/structure/machinery/door_control{ + id = "GammaHangarCargoC"; + name = "Security Shutters"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"jga" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"jgi" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat{ + pixel_y = 8 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"jgj" = ( /obj/structure/surface/table, /obj/structure/platform{ dir = 4; layer = 2 }, -/obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"jls" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"jlu" = ( -/obj/structure/machinery/light, +"jgm" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, /turf/open/floor/corsat/red, -/area/corsat/theta/airlock/west) -"jlv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"jlD" = ( +/area/corsat/sigma/checkpoint) +"jgr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/east/id) -"jlH" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jgv" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"jgw" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"jgA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"jgH" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/control) +"jhc" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"jhk" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"jhw" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"jhF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"jhJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"jlL" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"jlR" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) -"jlU" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") +"jhK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"jhU" = ( +/obj/structure/machinery/light, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"jhX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"jlY" = ( +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"jih" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"jiB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"jiN" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/hangar/office) +"jiV" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"jiZ" = ( +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/morgue) +"jjD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/canteen) +"jjT" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/microwave, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"jmb" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"jmf" = ( -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome/scrapyard) -"jmA" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering) -"jmH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"jmJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"jjX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"jmM" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"jkg" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/checkpoint) +"jkk" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"jkl" = ( +/obj/structure/machinery/door_control{ + id = "ThetaIDEC"; + name = "Privacy Shutters"; + pixel_y = -24; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = 10; + pixel_y = -24; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"jko" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"jkt" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"jkN" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/weapon/gun/smg/mp5, +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"jkO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"jkT" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south) +"jkV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /obj/structure/platform{ - dir = 4; - layer = 2 + dir = 8; + layer = 2.8 }, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) -"jmP" = ( -/obj/structure/machinery/light{ +"jlq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"jlL" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"jlM" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"jlT" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"jlU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"jmc" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"jmh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"jmn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/chemistry) +"jmr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/lobby) +"jmw" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/theta/biodome/complex) +"jmR" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"jmS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) "jmU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"jne" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/south) -"jni" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Workshop"; - req_one_access_txt = "102" +"jmX" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/gunrange) +"jnh" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"jnq" = ( +/turf/open/floor/corsat/greencorner/east, +/area/corsat/gamma/hallwaysouth) "jnA" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"jnG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) "jnI" = ( /obj/structure/xenoautopsy/tank, /turf/open/floor/corsat, /area/corsat/omega/complex) -"jnM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"jnN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"jnV" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat/arrow_east, -/area/corsat/gamma/cargo) -"joa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"jow" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"joF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 +"jnS" = ( +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"joM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/obj/item/clothing/head/beret/sec/warden, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"jnT" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast/datalab) +"jov" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/control) -"joW" = ( -/turf/open/floor/corsat/white/north, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) -"joX" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"jpc" = ( +"joC" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"jpa" = ( /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"jpd" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) +/area/corsat/omega/hallways) +"jpg" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/hangar) "jpk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"jpt" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/alice, +/obj/item/circuitboard/exosuit/main/alice, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"jpl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/southeast/dataoffice) "jpv" = ( -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"jpC" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/machinery/disposal, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"jpM" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"jpN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"jqi" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"jqm" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) +/area/corsat/sigma/north) +"jpz" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"jpZ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) +"jqb" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"jqj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"jqn" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo/lobby) "jqo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/west) -"jqu" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/southeast) +"jqv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/hangar) "jqz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"jqB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"jqG" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"jqZ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"jre" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"jrj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"jro" = ( +"jqI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "jrt" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"jru" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hallways) -"jrW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"jrx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/machinery/computer/emails{ - dir = 1 +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"jrR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"jrU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"jrY" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) "jsp" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") @@ -19000,56 +19066,52 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"jss" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"jsC" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat/purplewhitecorner, +"jsz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) -"jsH" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"jtc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"jtd" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jsD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_10, +/area/corsat/sigma/biodome) +"jtb" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) +/obj/structure/bed/nest, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"jte" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/airlock/north) "jtj" = ( -/obj/structure/machinery/door_control{ - id = "GammaAdmin"; - name = "Security Shutters"; - pixel_x = 24; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"jtr" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"jtL" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"jtm" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/sigma/dorms) +"jtX" = ( +/obj/structure/bed/chair, +/obj/item/bananapeel, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) -"jtp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"jud" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/platform{ + dir = 4; + layer = 2.8 }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/complex) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) "juf" = ( /obj/structure/closet/cabinet, /obj/structure/machinery/light{ @@ -19058,336 +19120,336 @@ /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"juj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/control) -"jul" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"juo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/red, -/obj/structure/window/reinforced{ - dir = 4 +"juv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"jur" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"juH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - id = "OmegaA"; - name = "Xenobiology"; - req_access_txt = "103" +/area/corsat/sigma/south/robotics) +"juC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaIDSC2"; + name = "Security Shutters"; + use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"juJ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/arrivals) "juQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/lobby) -"juS" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) "juW" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/chemistry) -"jvc" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/hangar/monorail/control) -"jvq" = ( -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"jvL" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/organ/liver, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/sigma/south/complex) +"jvy" = ( +/obj/structure/surface/rack, +/obj/item/device/toner, +/obj/item/device/toner, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"jvB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) "jvO" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/south) -"jvW" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/omega/offices) -"jwf" = ( -/obj/structure/machinery/light{ +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"jvQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"jwl" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"jwp" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/gamma/hangar) +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) "jwu" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) -"jwN" = ( -/obj/structure/machinery/computer/secure_data{ +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "14" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"jwC" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/east/id) -"jwS" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"jxe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"jwG" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south) +"jwT" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"jwW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/omega/maint) -"jxo" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"jxu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHCargoN"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"jxH" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"jxf" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/white/southwest, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Nitrogen Control Console" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"jxg" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jxC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, /area/corsat/gamma/hallwaysouth) +"jxF" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"jxL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"jxM" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"jxP" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) "jxR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"jxZ" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) "jyc" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"jyh" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"jyi" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"jyq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"jyu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"jyC" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"jyF" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/southwest, +/area/corsat/gamma/medbay/morgue) +"jyV" = ( +/turf/open/floor/plating/warnplate, +/area/prison/hangar_storage/research/shuttle) +"jyW" = ( /obj/structure/machinery/door_control{ - id = "OmegaCargoN"; + id = "GammaCargo"; name = "Cargo Door"; pixel_x = 24; use_power = 0 }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/omega/cargo) -"jyg" = ( -/obj/structure/showcase{ - icon_state = "relay"; - name = "Telecommunication Relay" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"jyA" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/hangar) -"jyC" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave/mars_cave_16, -/area/corsat/sigma/biodome/gunrange) -"jyD" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"jyU" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"jzc" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"jze" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/theta/airlock/east/id) +"jzF" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/airlocknorth/id) -"jyW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"jzG" = ( /turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"jyY" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"jzf" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"jzq" = ( +/area/corsat/omega/hangar/office) +"jAf" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"jAh" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/arrivals) +"jAi" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"jzu" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"jzD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ashtray/plastic{ + pixel_x = 4 }, -/turf/open/floor/corsat/spiralplate, +/obj/item/handset{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) -"jzQ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"jzU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"jAv" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"jAf" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar) -"jAu" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/gamma/airlock/north) +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/west) +"jAB" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) "jAI" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen, -/obj/item/tool/stamp{ - name = "Quartermaster's stamp" - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"jAN" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) "jAO" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"jAU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/theta/airlock/west/id) -"jBh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) +"jAR" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) "jBj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"jBl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"jBo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"jBr" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"jBw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) "jBC" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) "jBD" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"jBF" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar) -"jBI" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/airlock/east) -"jCe" = ( -/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"jCi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo) -"jCw" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"jCG" = ( +/area/corsat/sigma/cargo) +"jBL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"jBS" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"jBZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/south/offices) +"jCa" = ( +/obj/structure/bed/chair, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"jCb" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/hangar/monorail/control) +"jCp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"jCq" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"jCt" = ( +/obj/structure/machinery/door_control{ + id = "Toxins"; + name = "Toxins Lockdown"; + pixel_y = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "Viro"; + name = "Virology Lockdown"; + pixel_y = 8; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaLab"; + name = "Privacy Shutters"; + pixel_y = 1; + use_power = 0 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/biodome/complex) +"jCv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/sigma/dorms) "jCI" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) "jCO" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -19398,535 +19460,477 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"jCP" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/hallwaysouth) -"jCW" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"jCX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jDg" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"jDk" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"jDq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/lobby) -"jDc" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/area/corsat/omega/hangar/security) +"jDx" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"jDg" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"jDJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Teachers' Office"; - req_one_access = null - }, +/area/corsat/sigma/cargo) +"jDD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"jDW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoN"; - name = "Hangar Lockdown"; - use_power = 0 +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"jDK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"jDM" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"jEz" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/security) -"jEC" = ( -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/morgue) -"jEO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"jEU" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"jDP" = ( +/obj/structure/machinery/door_control{ + id = "OmegaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"jEW" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"jEY" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/checkpoint) -"jEZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) -"jFa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"jFd" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"jFe" = ( +"jDW" = ( +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"jEy" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"jEE" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast) +"jFe" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"jFw" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/south/security) +"jFz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"jFi" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"jFo" = ( -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/hallwaysouth) -"jFI" = ( -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hangar/cargo) +"jFA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"jFB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) "jFP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"jFR" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/cargo) -"jGM" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"jGN" = ( +"jFX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/theta/airlock/control) +"jGb" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"jGA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/corsat/red/north, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"jGB" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) -"jHc" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/hangar/arrivals) -"jHi" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"jHo" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"jHq" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, +"jGD" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/hallways) +"jGG" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"jHy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/corsat/emergency_access) +"jGN" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"jHf" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/gamma/biodome/complex) +"jHl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"jHo" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "13" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"jHA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"jHz" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHCargoW"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"jHD" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"jHC" = ( -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"jHE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaDSC2"; - name = "Security Shutters"; - use_power = 0 +/area/corsat/gamma/hangar/cargo) +"jIf" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/north/id) -"jHG" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/southeast/generator) -"jHJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/west) -"jHS" = ( -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/gamma/rnr/bar) -"jIe" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/south) -"jIk" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/omega/offices) +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) "jIm" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"jIn" = ( +"jIo" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"jIV" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"jIp" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"jJn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"jIq" = ( -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay/morgue) -"jIr" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"jIx" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"jIV" = ( -/obj/structure/bed/chair{ +/area/corsat/sigma/hangar/security) +"jJw" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"jIW" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"jJc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"jJH" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 8; + layer = 2.8 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"jJd" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "101" +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"jJe" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"jJi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"jJz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/form_printer, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"jJA" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/hangar/monorail) -"jJX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "ThetaNorthD"; - name = "Entrance Airlock Control"; - pixel_y = 5; - use_power = 0 +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"jJO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/southeast, +/area/corsat/gamma/rnr) +"jJR" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"jJZ" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "ThetaNorthN"; + name = "Theta North Airlock" }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) -"jKc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) "jKj" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/corsat/gamma/hangar) -"jKm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"jKD" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security) -"jKV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"jKp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"jKr" = ( +/obj/structure/showcase{ + icon_state = "broadcast receiver"; + name = "Subspace Receiver" + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"jKS" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) "jKW" = ( -/obj/structure/machinery/power/apc/no_power/north, /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/airlock/control) "jLa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"jLo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Omega"; - req_access_txt = "103" +"jLb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/gamma/sigmaremote) +"jLk" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar) +"jLq" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) "jLw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"jLA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"jLD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"jLG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) "jLK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) +"jLQ" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) "jLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"jMb" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "17" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"jMt" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/southeast/datamaint) -"jMx" = ( -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) -"jMz" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/theta/biodome/complex) -"jMC" = ( +"jLW" = ( +/obj/item/paper, +/obj/item/tool/pen/red, +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"jMc" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"jMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/southeast, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"jMI" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"jMN" = ( +/obj/structure/bed, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"jMP" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) -"jMQ" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"jMT" = ( +"jMS" = ( +/obj/item/device/binoculars, /obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"jNd" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"jNp" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "SigmaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"jNw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"jNc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"jNx" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"jNd" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/atmos) +"jNf" = ( +/obj/structure/machinery/lapvend, /turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"jNA" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) -"jNB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/rnr) -"jND" = ( +/area/corsat/sigma/south/offices) +"jNm" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"jNr" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/plate, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"jNv" = ( +/obj/structure/machinery/door_control{ + id = "SigmaGrounds"; + name = "Testing Grounds"; + pixel_x = 24 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"jNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) -"jNR" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/south) +"jNH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/cargo) +"jNQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/office) "jNX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential) "jOh" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/airlock/south) -"jOz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"jOB" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"jOK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" +"jOo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/airlock/south/id) +"jOC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"jOG" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/southeast/datalab) +"jOT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"jOZ" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"jOY" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"jPr" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner/west, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"jPw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"jPB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"jPH" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) -"jPb" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/residential) -"jPj" = ( +"jPR" = ( /obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"jPp" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential/researcher) -"jPs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/foyer) -"jPy" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/omega, -/area/corsat/omega/hallways) -"jPA" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"jPG" = ( -/turf/open/floor/corsat/redcorner/north, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/sigma/dorms) -"jPT" = ( -/obj/structure/reagent_dispensers/water_cooler, +"jQc" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"jQg" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"jQh" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"jPZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"jQr" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"jQz" = ( -/obj/structure/stairs{ +/area/corsat/sigma/north) +"jQs" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"jQu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/zippo, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"jQM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"jQC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/greenwhitecorner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) -"jQU" = ( -/obj/structure/bed/chair{ - dir = 8 +"jQJ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "19" }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"jQX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"jQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"jRe" = ( +/turf/open/mars_cave/mars_cave_8, +/area/corsat/sigma/biodome/scrapyard) +"jRk" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Chemistry"; + req_one_access_txt = "103" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) "jRl" = ( /obj/structure/pipes/vents/pump, /turf/open/gm/dirt, @@ -19935,937 +19939,1038 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"jRz" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/hangar) -"jRI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +"jRx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"jRD" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/cargo) +"jRH" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) +"jRJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/corsat/purple, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/south) +"jRK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) "jRL" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/hallways) -"jSp" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"jSB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"jSL" = ( +"jRS" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"jSi" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/airlock/south/id) -"jSS" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "GammaCargo"; - name = "Gamma Cargo Bay"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/cargo) -"jST" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"jSV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"jTk" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"jTo" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "8" +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) +"jSk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"jTv" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Forensics" +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"jSx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"jSy" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"jSC" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"jSD" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"jTh" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"jTU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"jUo" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"jUv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"jUO" = ( -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/biodome/complex) -"jUV" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome/gunrange) -"jUW" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 +/area/corsat/gamma/medbay/lobby) +"jTC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"jTH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/omega/maint) -"jUZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"jTZ" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/core) +"jUc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"jVm" = ( -/obj/structure/curtain, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"jVx" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"jVB" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south) -"jVF" = ( -/obj/structure/surface/rack, -/obj/structure/prop/mech/drill, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"jVU" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"jWi" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/residential) -"jWm" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"jUq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/checkpoint) +"jUr" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/canteen) -"jWs" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/south/id) -"jWG" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating/platingdmg3/west, -/area/corsat/sigma/biodome/testgrounds) -"jWK" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"jVD" = ( /obj/structure/platform{ - dir = 4; + dir = 1; layer = 2.7 }, -/obj/structure/stairs, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential/east) -"jWM" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"jVI" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"jVL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"jWc" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"jWQ" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south) -"jWX" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod/floor4, +/area/corsat/sigma/hangar/monorail/control) +"jWg" = ( +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) -"jWY" = ( -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome) -"jXl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"jWn" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"jWD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"jXm" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/south, -/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"jWH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"jWQ" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"jXx" = ( +/area/corsat/sigma/airlock/east) +"jWU" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"jXi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/security) +"jXB" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"jXL" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"jXT" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"jXW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"jXH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/obj/effect/alien/weeds/node, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"jYj" = ( -/obj/effect/decal/cleanable/blood/splatter, +/area/corsat/omega/hallways) +"jYd" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/south/offices) +"jYe" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"jYi" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"jYm" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/hangar/monorail) +"jYn" = ( /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"jYv" = ( +/area/corsat/theta/airlock/east) +"jYF" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"jYI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"jYJ" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"jYP" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"jZc" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "OmegaHangarNE"; - name = "Landing Bay Omega" +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/hallwaysouth) +"jYT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"jZd" = ( -/obj/structure/machinery/door_control{ - id = "SigmaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"jYV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "SigmaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"jZa" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/main/max, +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/item/circuitboard/exosuit/peripherals/max, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"jZe" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/engineering/core) +"jZf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/airlock/east) +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/southeast/dataoffice) "jZk" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer1, /area/corsat/gamma/biodome) -"jZo" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/sigma/cargo) -"jZq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south) -"jZs" = ( -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"jZx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) -"jZW" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/airlocknorth/id) -"kai" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"kaD" = ( +"jZt" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"kaR" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"kbs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"kbA" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, /turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) -"kbL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Mech Assembly"; - req_one_access_txt = "102" +"jZu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"kbQ" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"kbX" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/airlock/control) -"kcm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"kcL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"kcO" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"kdi" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/hangar/flightcontrol) -"kdr" = ( -/turf/open/floor/corsat/whitetan, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) -"kdu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"kdB" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/north) -"kdF" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"kdP" = ( -/obj/structure/cargo_container/trijent/left, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"kdT" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/administration) -"kdW" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"kec" = ( +"jZw" = ( +/obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/north) -"kef" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"kej" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"keB" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hallways) -"keE" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"keK" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"jZB" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap/deluxe, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"jZL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"kah" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/checkpoint) +"kam" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/monorail/control) -"keQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) +"kaq" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/bookcase/manuals/engineering, /turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) -"keT" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"keW" = ( -/obj/structure/machinery/light{ - dir = 4 +"kaW" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Reception Desk"; + req_one_access_txt = "100" }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"kfd" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"kff" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/optable, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"kfj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"kaX" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"kbb" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"kbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"kfk" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"kbr" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"kbt" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail/control) +"kby" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"kbF" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/southeast/datalab) -"kfm" = ( -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"kfB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"kfK" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"kbJ" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"kfY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"kbT" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"kgf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"kck" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/sigma/dorms) -"kgo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"kcD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arcade" }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"kcJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"kgV" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/airlock/control) +"kcS" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/monorail) +"kcZ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/omega, -/area/corsat/omega/airlocknorth) -"kgY" = ( -/obj/structure/curtain/open/medical, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"kdc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"kdD" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"kdR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"kea" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"khp" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/airlock/south) +"keb" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"key" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/dorms) +"keE" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"keH" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"keY" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/surface/rack, -/obj/item/device/reagent_scanner, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/complex) -"khz" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"kfa" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "2" }, -/turf/open/floor/asteroidwarning, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"kfh" = ( +/obj/structure/stairs, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"kfm" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/airlock/east/id) +"kfp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_8, /area/corsat/sigma/biodome) -"khN" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/researcher) -"khQ" = ( -/turf/open/floor/corsat/greencorner/east, -/area/corsat/gamma/hallwaysouth) -"khS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") +"kfv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"khZ" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"kia" = ( -/turf/open/floor/corsat/purplecorner, -/area/corsat/sigma/south) -"kik" = ( -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"kfH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome) -"kiE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"kiJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"kiQ" = ( -/obj/structure/bed/chair{ - dir = 1 +"kfI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"kja" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/sigma/south/complex) +"kgc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"kjq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/corsat/gamma/airlock/control) +"kgq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"kjF" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"kgI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"kgJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/complex) -"kjR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; +/obj/structure/machinery/camera/autoname{ + dir = 4; network = list("gamma") }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"kkc" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"kko" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"kgU" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"kkS" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"khh" = ( +/obj/structure/machinery/atm{ + pixel_x = -30 }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"khE" = ( /turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"kkX" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" +/area/corsat/gamma/residential) +"khK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"khS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/item/restraint/handcuffs, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"klv" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"khX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"khZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"kid" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Decontamination Chamber"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"klw" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 + id = "Viro"; + name = "Virology Lockdown" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Containment"; - req_access_txt = "103" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"klx" = ( /turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"kly" = ( +/area/corsat/gamma/biodome/virology) +"kir" = ( +/obj/item/tool/wet_sign, /obj/structure/machinery/light, -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"kis" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/administration) -"klG" = ( -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay/lobby) -"klN" = ( -/obj/structure/machinery/disposal, /turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"klQ" = ( -/turf/open/floor/corsat/brown/southeast, -/area/corsat/omega/cargo) -"klT" = ( -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"kmg" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"kmh" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/biodome/virology) +"kiz" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"kmo" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/west, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"kiA" = ( +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/hangar/checkpoint) -"kmF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 +"kiD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"knf" = ( -/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"kiJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"kiK" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"kni" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/corsat/gamma/hangar/monorail/railcart) -"knj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"knp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Cafe"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"knw" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/airlocknorth) +"kiM" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"kiW" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, +/obj/structure/machinery/computer/emails, /turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"knM" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/sigma/south/offices) +"kiY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"kjf" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"knP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"kow" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"koC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/residential/maint) +"kjv" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"koE" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"koX" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "\improper Mentor's Guide Bookcase" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"kpk" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, +/obj/structure/surface/table/reinforced, +/obj/item/tool/crowbar, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/obj/item/stack/nanopaste, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"kjx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/green/north, /area/corsat/gamma/hallwaysouth) -"kpI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/omega/control) -"kpL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"kpN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/medical_pod/sleeper{ - flags_atom = 18 - }, +"kjJ" = ( +/obj/effect/landmark/hunter_secondary, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"kpT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/freezer) +"kjK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"kpZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 4; + layer = 2 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"kjR" = ( +/obj/structure/prop/mech/parts/durand_left_leg, +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/south/robotics) +"kks" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"kkO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"kkP" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"kqa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"kqn" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"kkQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"kkS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"kqr" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/scrapyard) -"kqt" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, -/area/prison/hangar_storage/research/shuttle) -"kqI" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"klb" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"klf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydrowest) -"kqP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/corsat/sigma/south/complex) +"klh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"klr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "12" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"kqV" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"krF" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"krO" = ( -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/gamma/hangar/arrivals) -"krS" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"ksi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"klv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/omega/control) +"klV" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"klY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"ksB" = ( +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"kma" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/purple/northeast, -/area/corsat/sigma/south) -"ksC" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"ksH" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-highsec" +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/checkpoint) -"ksM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"kmq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/southeast/datalab) +"kmW" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) +"kmY" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "Toxins Lab"; - req_one_access_txt = "103" +/obj/item/organ/kidneys, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"knc" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"knf" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/flightcontrol) +"knj" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"knw" = ( +/obj/structure/closet/crate/medical, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"ksS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"ksU" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/spiralplate, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"knO" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"knP" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"kog" = ( +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/airlock/south) -"ktd" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Administration"; - req_access_txt = "106" +"kok" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"kom" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"kop" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"kow" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"koy" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"kte" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) +"koz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"koF" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"koM" = ( +/obj/structure/sign/safety/biolab, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hallwaysouth) +"koT" = ( +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"koW" = ( +/obj/structure/surface/rack, +/obj/item/alienjar, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"kpe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"kpk" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"kpq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"kpr" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/north) +"kpy" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"kpC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"kpR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"kqh" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"kqj" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"kql" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"kqt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"kqF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"kqG" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"kqI" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/chemistry) +"kqJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"ktg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"ktq" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/airlock/north) -"kts" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - dir = 1; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null +/area/corsat/theta/airlock/west) +"kqY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"ktw" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/sigma/dorms) -"kty" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/southeast/datalab) -"ktL" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"ktM" = ( -/obj/structure/barricade/handrail{ - layer = 3 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthID"; + name = "Security Shutters" }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"ktO" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"ktW" = ( +/area/corsat/gamma/airlock/south/id) +"kri" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"krj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"krl" = ( /obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"krH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"krS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south/id) +"krX" = ( +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"krZ" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"ksf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/mech/tesla_energy_relay, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) -"kuj" = ( -/obj/structure/machinery/light/small{ +"ksl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"ksy" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"ksH" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-highsec" + }, +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/checkpoint) +"ksP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"ksV" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/nest, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/corsat/inaccessible) -"kuk" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/hallwaysouth) -"kuo" = ( /turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"ksZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"ktb" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"ktd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"ktn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"kty" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 2"; + name = "Containment Cell 4"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"ktz" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"ktB" = ( +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) +"ktE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"ktH" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"ktU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"kur" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"kuz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) "kuC" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -20873,617 +20978,490 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"kuE" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/omega/hallways) "kuI" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/omega/cargo) -"kuJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"kuP" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/sigma/dorms) -"kuQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"kvj" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") + network = list("omega") }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"kuS" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hangar) -"kvc" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) +"kvF" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"kvq" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"kvY" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"kvv" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/corsat/omega/hallways) +"kwo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"kvy" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"kvA" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/control) -"kvH" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/corsat/inaccessible) -"kvR" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) "kws" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) "kwt" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/dataoffice) -"kwE" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/prison/hangar_storage/research/shuttle) +"kwz" = ( /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"kxb" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/hallways) -"kxp" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/stairs, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential/east) -"kxr" = ( -/obj/effect/decal/mecha_wreckage/hoverpod, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"kxx" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/omega/cargo) -"kxz" = ( +/area/corsat/gamma/hangar/cargo) +"kxh" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/foyer) -"kxD" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"kxq" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"kxP" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"kxG" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hallwaysouth) -"kxS" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"kyk" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/omega/control) -"kyo" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"kyq" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/engineering/core) -"kyy" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"kyI" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"kye" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"kyh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"kyw" = ( /obj/structure/surface/table/reinforced, -/obj/item/paper, -/turf/open/floor/corsat/retrosquareslight, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/airlock/control) +"kyy" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"kyC" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) +"kyE" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"kyH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security/cells) +"kyK" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) "kyQ" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/maint) -"kyR" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) "kza" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"kzj" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail/control) -"kzk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"kzh" = ( +/obj/structure/fence, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) +/area/corsat/gamma/hangar/checkpoint) "kzn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"kzz" = ( -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) "kzA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) +"kzB" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) "kzQ" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "19" +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"kzT" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/researcher) -"kAd" = ( -/obj/structure/machinery/light, -/obj/structure/janitorialcart, -/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"kAe" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"kAg" = ( -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/morgue) -"kAz" = ( -/obj/structure/platform{ - density = 0; +/area/corsat/sigma/dorms) +"kAf" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"kAA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "platform_deco" + id = "GammaSecC"; + name = "Security Shutters" }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"kAC" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/drinkingglass, +/area/corsat/gamma/hangar/security) +"kAR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"kAE" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"kBq" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - health = 80 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"kAF" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"kAK" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"kAO" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"kAU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + id = "RemoteGateO"; + name = "Gate Shutters"; + use_power = 0 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"kBe" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/sigmaremote) +"kBy" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"kBu" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"kBw" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/north) -"kBx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit"; - req_access_txt = "100"; - req_one_access_txt = "0" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"kBJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"kBz" = ( /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"kBD" = ( -/obj/structure/surface/rack, -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"kBK" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/biodome/complex) -"kBY" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/west) -"kCc" = ( +/area/corsat/omega/hangar/security) +"kBQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"kBT" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"kCg" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"kCh" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"kCj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"kCl" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "kCm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"kCy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"kCD" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"kCR" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"kCS" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"kCW" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"kDb" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"kDi" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Subject den"; - req_one_access_txt = "103" +"kCG" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/hallwaysouth) +"kCL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"kCO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"kDj" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/hangar) -"kDr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) +/area/corsat/gamma/biodome/complex) +"kCV" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/datamaint) "kDt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) -"kDu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"kDA" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_y = -30 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"kDx" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"kDG" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"kDA" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/hangar) -"kDB" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"kDF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") + dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) "kDL" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"kDV" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) +"kDO" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"kDX" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) "kDY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"kEb" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south) +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) "kEg" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/meter, /turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"kEm" = ( +/area/corsat/sigma/airlock/control) +"kEh" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/slime, -/obj/item/device/flashlight/slime{ - pixel_y = 8 - }, -/obj/item/device/flashlight/slime{ - pixel_x = -10 - }, -/obj/item/device/flashlight/slime{ - pixel_x = 10 +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"kEn" = ( -/obj/structure/toilet{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"kEw" = ( +/obj/structure/surface/rack, +/obj/item/oldresearch/Resin, +/obj/structure/window/reinforced/toughened{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"kEv" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering/atmos) -"kEx" = ( -/turf/open/shuttle/dropship/light_grey_top_right, -/area/prison/hangar_storage/research/shuttle) -"kEA" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"kEE" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) -"kEM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"kES" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) "kET" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/robotics) -"kEV" = ( -/obj/structure/pipes/vents/pump, +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/corsat/plate, -/area/corsat/gamma/security/cells) -"kFf" = ( -/turf/open/mars_cave/mars_cave_18, +/area/corsat/gamma/residential/researcher) +"kEX" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"kEZ" = ( +/turf/open/floor/asteroidwarning/northeast, /area/corsat/sigma/biodome/gunrange) -"kFi" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/night, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" +"kFc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"kFj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) "kFo" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"kFu" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"kFx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, +"kFy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) -"kFG" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"kFX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) +"kFC" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security/armory) "kFZ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"kGf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") +"kGq" = ( +/obj/structure/machinery/door_control{ + id = "OmegaCargoN"; + name = "Cargo Door"; + pixel_x = 24; + use_power = 0 }, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/gamma/airlock/control) -"kGs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"kGz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/cargo) +"kGv" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Cargo Desk" }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"kGA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Cargo Desk"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/lobby) +"kGD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"kGE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"kGG" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/hallways) +"kGR" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"kGS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"kGT" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) +/area/corsat/theta/biodome/complex) +"kHa" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/north) "kHe" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"kHn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"kHx" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat{ - pixel_y = 8 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"kHB" = ( -/obj/structure/bed/chair{ - dir = 1 +"kHr" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/north) +"kHs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaNorthN"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"kHF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/machinery/door_control{ + id = "GammaNorthS"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/airlock/north) +"kHu" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) "kHP" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"kHQ" = ( -/obj/structure/sign/safety/high_voltage, -/obj/structure/platform{ - dir = 8 +"kHS" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"kHW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaDSC"; + name = "Security Shutters"; + use_power = 0 }, -/obj/item/stack/sheet/metal{ - pixel_x = 1 +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/north/id) +"kIg" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"kIo" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"kHR" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"kHS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"kHU" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"kIt" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"kHY" = ( -/obj/structure/machinery/light{ +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"kIe" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar) -"kIg" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) -"kIJ" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"kIP" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"kIw" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"kIH" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"kIL" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"kIT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) "kIW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer0, @@ -21497,259 +21475,262 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"kJf" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"kJh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"kJe" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"kJl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"kJJ" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"kJn" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/foyer) +"kJq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"kJx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"kJM" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"kJB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"kJN" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"kJJ" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/closet/firecloset, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-theta-control" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"kJP" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet14_10/west, -/area/corsat/omega/offices) -"kJS" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering/atmos) -"kJW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/northeast, +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) -"kKk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/airlocknorth/id) -"kKt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"kKa" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"kKv" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/security/armory) -"kKx" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/west/id) +"kKh" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/airlock/north/id) -"kKC" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, -/area/prison/hangar_storage/research/shuttle) -"kKH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"kKP" = ( -/turf/open/floor/almayer/research/containment/corner/north, -/area/corsat/inaccessible) -"kKW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + network = list("omega") }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"kLc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Research Desk" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"kKn" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Research Desk" +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"kKq" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"kKD" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "oxy_corsat_out" }, -/obj/structure/machinery/bot/medbot, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"kLm" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/omega/hallways) -"kLp" = ( -/obj/structure/closet/jcloset, /turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"kKZ" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/east) +"kLh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) -"kLt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"kLv" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) +"kLn" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/control) +"kLr" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) "kLw" = ( -/obj/structure/bed/chair, -/obj/structure/platform{ - dir = 8; - layer = 2.8 +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"kLA" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) +"kLJ" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"kLU" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"kMi" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/south/offices) +"kMl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"kMm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"kLx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" +/area/corsat/sigma/hangar/checkpoint) +"kMn" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/airlock/control) +"kMA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"kLS" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"kMi" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"kME" = ( -/turf/open/floor/corsat/blue/northeast, -/area/corsat/gamma/hallwaysouth) -"kML" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"kMR" = ( +/area/corsat/sigma/south/engineering) +"kMG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"kMI" = ( /obj/structure/surface/rack, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"kNe" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"kML" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"kMV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"kNm" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"kNJ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/purplewhite/southwest, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"kMX" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"kNg" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"kNv" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) +"kNz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/engineering) "kNL" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"kNM" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"kNP" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"kNS" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"kNV" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydroeast) +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) "kNY" = ( +/obj/structure/machinery/r_n_d/organic_analyzer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"kOl" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"kOm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"kOC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"kOE" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/rnr) +"kOq" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"kOx" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) "kON" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"kOS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, /turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"kOU" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security/cells) +"kOV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) -"kPf" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"kPs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"kPt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"kPw" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"kPx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"kOX" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"kPh" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/chemimp, +/obj/item/storage/box/trackimp, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"kPm" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/sigma/cargo) -"kPy" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/southeast) -"kPF" = ( -/turf/open/floor/corsat/purplewhitecorner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"kPA" = ( +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) -"kPY" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/north) +"kPE" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"kPL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"kPN" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"kPU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/south) "kQb" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green{ @@ -21757,694 +21738,713 @@ }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"kQi" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/north) -"kQk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/engineering) -"kQn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kQh" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"kQp" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"kQr" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"kQB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"kQD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"kQN" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/residential/maint) -"kQO" = ( -/obj/structure/machinery/light{ +/area/corsat/omega/airlocknorth) +"kQw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"kQW" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"kQX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ dir = 1 }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/hallways) -"kRv" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;106;102" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"kRz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"kRK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"kRQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/gamma/airlock/control) +"kRe" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) -"kSe" = ( +"kRl" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"kRn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"kSh" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"kSn" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"kSr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"kSU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) -"kTj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"kTq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"kTt" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +"kRo" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"kTD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"kRt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"kTI" = ( -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"kTN" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"kRI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"kTV" = ( -/obj/structure/machinery/atm{ - pixel_y = -30 - }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"kTW" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"kUk" = ( +/area/corsat/gamma/rnr) +"kRV" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"kRW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"kSm" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"kUm" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"kUq" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/engineering) -"kUB" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"kUJ" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 10 +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/control) +"kSP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"kSW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"kUN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) -"kVe" = ( +"kSZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"kTi" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"kTA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"kTG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"kTM" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap/deluxe, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"kTU" = ( +/obj/structure/machinery/vending/cigarette/colony, /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"kUg" = ( +/turf/open/floor/corsat/green/northeast, +/area/corsat/gamma/hallwaysouth) +"kUi" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"kVi" = ( -/obj/structure/machinery/recycler, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/gamma/cargo/disposal) -"kVv" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"kUj" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/airlocknorth) -"kVw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"kUz" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"kUA" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"kUH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"kVB" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/cargo) +"kVa" = ( +/obj/item/storage/box/gloves, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"kVb" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"kVo" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"kVu" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) +/area/corsat/sigma/south/robotics) +"kVC" = ( +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/scrapyard) "kVE" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/checkpoint) +"kVF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) "kVI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"kVK" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"kVM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"kVL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"kVO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"kVU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"kVY" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = 5 + }, +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"kVS" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; + dir = 4; network = list("gamma") }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/chemistry) "kWq" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"kWs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"kWw" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/monorail/control) +"kWx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"kWy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/east/id) -"kWH" = ( -/obj/item/ashtray/bronze, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) "kWI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"kWU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"kXe" = ( -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "106" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) +/obj/structure/machinery/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"kWM" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/canteen) +"kWX" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"kXc" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/hallways) +"kXf" = ( +/obj/structure/bed/nest, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) "kXj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"kXB" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"kXC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/southeast/generator) -"kXE" = ( +"kXo" = ( +/obj/structure/prop/mech/parts/durand_right_arm, +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/south/robotics) +"kYj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Interrogation" + dir = 5 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"kXT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/corsat/sigma/south/robotics) +"kYB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"kYi" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"kYq" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"kYF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south/id) +"kYW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"kZc" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) +"kZf" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/obj/structure/machinery/shower{ +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"kZv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"kZB" = ( +/obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"kYL" = ( -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/control) -"kZc" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"kZe" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Autopsy"; - req_one_access_txt = "103" - }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"kZN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/cargo) +"kZZ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/security) +"lac" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/west) +"lah" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/checkpoint) +"laj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/morgue) -"kZt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"kZv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"laq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/control) -"kZA" = ( -/obj/structure/sink{ +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - pixel_x = 11 + id = "SigmaHangarC-N"; + name = "Security Shutters" }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"kZI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"lau" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"kZO" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"lax" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "OmegaHangarW"; + name = "Landing Bay Omega" }, -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/corsat/red/northwest, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) -"kZS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"lac" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/west) -"lah" = ( -/obj/structure/surface/table/almayer, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"laz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +"laA" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"laC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/security) -"laD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar/monorail) +/area/corsat/sigma/southeast/generator) +"laB" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) "laE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"laF" = ( +"laG" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/cargo) +"laP" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"laQ" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential) -"laR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Chief Engineer's Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/computer/emails{ dir = 4 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"lbh" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"lbi" = ( /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"laS" = ( -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"lbe" = ( -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/datalab) -"lbV" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"lcu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"lcM" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/surgery) -"lcP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"lcV" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/hangar) -"ldA" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/obj/item/tool/screwdriver, -/obj/item/tool/wrench, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"ldL" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/east/id) -"ldM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/corsat/omega/security) +"lbj" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"lbk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"ldO" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/dorms) +"lbm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lbs" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"lbV" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/lobby) +"lcp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ldP" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"lcG" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"lcT" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/residential) +"ldF" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"ldJ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Storage"; + name = "Engineering"; req_one_access_txt = "102" }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"ldM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"ldO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/ce, /turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) -"ler" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) -"lev" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/checkpoint) -"ley" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"ldQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Head of Security Office"; + req_access_txt = "101" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"leB" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/foyer) -"lfb" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaHOS"; + name = "Privacy Shutters" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"lfk" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/control) -"lft" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"lfE" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"lfN" = ( -/obj/structure/bed/chair/comfy, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"lga" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"lep" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/south) +"leZ" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/mars_cave/mars_cave_14, -/area/corsat/sigma/biodome) -"lgf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"lgi" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"lft" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"lgm" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"lfx" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/security) -"lgw" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"lgz" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar) -"lgD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"lfz" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"lfZ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"lga" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"lgE" = ( -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/canteen) -"lgL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"lgc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"lgV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/theta, -/area/corsat/sigma/south) -"lgW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/empgrenade, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"lhp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"lgh" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/gunrange) +"lgm" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/biodome/complex) +"lgn" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"lgy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Research Complex Gamma"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"lgR" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"lgU" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"lgV" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"lhC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"lhD" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/east, /area/corsat/gamma/hangar) -"lhF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/checkpoint) -"lhG" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"lhK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"lhc" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"liu" = ( +/area/corsat/gamma/airlock/control) +"lhq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"lhA" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"lhB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"liE" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo/lobby) -"liG" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"liK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lhF" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"lhH" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"lhW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaHangarCargoC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"lhX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/landing/console) +"lif" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) -"liM" = ( -/turf/open/floor/corsat/browncorner/east, +"lii" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lio" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"liu" = ( +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"liL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"liU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) -"liO" = ( -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome/scrapyard) -"liY" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/north/id) -"ljb" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"ljn" = ( -/obj/structure/machinery/power/apc/no_power/north, +"liX" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/south) +"ljd" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"ljs" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"ljf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ljl" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/east) +"ljm" = ( +/obj/structure/pipes/standard/simple/visible, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"ljT" = ( -/obj/structure/closet/firecloset, +/area/corsat/gamma/engineering/atmos) +"ljM" = ( /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"ljV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +/area/corsat/gamma/residential/researcher) +"ljO" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - health = 80 + network = list("sigma") }, -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/machinery/camera/autoname{ - network = list("omega") +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"ljR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"ljY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/morgue) +"lkc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) "lkd" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -22458,329 +22458,252 @@ }, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"lkG" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/airlock/control) -"lkY" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 8; - id_tag = "mix_sigma_out" +"lkA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"lkW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Theta" }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) "llc" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"lld" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"llf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 8; + network = list("gamma") }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) "lli" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"llq" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/sigma/south) "llr" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"llt" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/residential/lounge) "llx" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"llK" = ( -/obj/structure/platform{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 + network = list("sigma") }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/south) +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/airlock/control) "llL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"llN" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"llX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"lma" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/flashbang, -/obj/item/explosive/grenade/flashbang, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"lmi" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "SigmaSouthS"; - name = "Sigma South Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"lmk" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) -"lml" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"lms" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"lmz" = ( -/obj/structure/machinery/computer/emails{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet10_8/west, -/area/corsat/gamma/administration) -"lmP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/theta/biodome/complex) -"lmQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west) -"lmS" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"lmT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"lmX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/airlock/control) -"lnb" = ( -/obj/structure/machinery/light/small, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"llT" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"lnh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"lnm" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ +/area/corsat/gamma/hangar/arrivals) +"lmF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast/datamaint) +"lmG" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/security) +"lmK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - network = list("gamma") + name = "Class Room"; + req_one_access = null }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lmX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"lnp" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) "lnQ" = ( /obj/structure/window_frame/corsat, /turf/open/floor/plating, /area/corsat/gamma/biodome/complex) -"lnV" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential/east) -"lox" = ( +"lnS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"lod" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"loe" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"loQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"lpy" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"lpO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Storage"; - req_one_access_txt = "102" +/obj/structure/surface/rack, +/obj/item/cell/secborg, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"lon" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"lqh" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"lqj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"lqn" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"lqy" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, +/area/corsat/gamma/engineering/atmos) +"loq" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"lqD" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"loy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"lqH" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "OmegaHangarE"; - name = "Landing Bay Omega" +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"lqN" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"lqS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Warden's Office"; - req_access_txt = "101" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"loC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaWarden"; - name = "Privacy Shutters" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"loN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"lqT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/east) -"lqW" = ( +/area/corsat/omega/hangar/security) +"lpa" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"lpc" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"lph" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"lpm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"lrg" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"lpu" = ( +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/core) +"lpx" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/foyer) +"lpI" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"lrk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/hallwaysouth) +"lpP" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"lrl" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/cargo) +"lqa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"lrE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Head of Security Office"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaHOS"; - name = "Privacy Shutters" +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"lqk" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"lsd" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/corsat/gamma/engineering) +"lqN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"lqO" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" }, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"lse" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"lrj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purple, +/area/corsat/gamma/biodome/complex) +"lrl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"lrt" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/administration) +"lrN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"lsj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"lsq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) +/area/corsat/gamma/engineering/core) +"lss" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) "lsu" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/corsat, /area/corsat/gamma/freezer) "lsv" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"lsx" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) "lsB" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -22794,1104 +22717,1215 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"lsQ" = ( +"lsI" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"lsT" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"lsU" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/airlock/north) -"lsV" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 4 +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"lta" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"ltb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"lts" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo/lobby) +"ltB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"ltF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"lte" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"ltg" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"lti" = ( -/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/biodome) +"ltI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/shuttle_control/monorail{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"ltU" = ( +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/cargo) -"ltm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/robotanalyzer, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"ltt" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"ltu" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/gamma/residential) -"ltN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +"ltZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south) +"lub" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/airlock/north/id) -"ltV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"luf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Office"; + req_access_txt = "101" }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"luc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"luv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"luk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; +/turf/open/floor/corsat/red/west, +/area/corsat/omega/control) +"luB" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"lus" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"lut" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hallwaysouth) -"luP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"luD" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"luH" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"luJ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"luU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoS"; - name = "Hangar Lockdown"; - use_power = 0 +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"lvd" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hangar) +"lvl" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"lvn" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"lva" = ( -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"lvw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"lvx" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"lvA" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) "lvE" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"lvN" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"lvS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"lvV" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"lvX" = ( +"lvH" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"lvK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"lwb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/area/corsat/gamma/sigmaremote) +"lvL" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar) +"lvS" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"lvW" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"lwg" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/cargo) -"lws" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"lwu" = ( -/turf/open/floor/corsat, /area/corsat/sigma/hangar) -"lwz" = ( -/obj/structure/stairs{ +"lwa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lwb" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/armory) +"lwh" = ( +/obj/structure/morgue, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"lwB" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"lxl" = ( -/obj/structure/bed/chair{ +/area/corsat/gamma/medbay/morgue) +"lwu" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/hangar) +"lww" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/biodome/complex) -"lxp" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"lwA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"lwF" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) -"lxs" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/chips, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"lxF" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/lobby) -"lxI" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"lxK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"lyf" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/airlocknorth) -"lyX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"lyZ" = ( -/obj/structure/closet/secure_closet/security, +"lwK" = ( +/obj/structure/machinery/disposal, /turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"lzb" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar/arrivals) -"lzj" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Data Laboratory"; - req_access_txt = "106;102;103" +/area/corsat/gamma/security) +"lwX" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"lxe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"lxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"lzq" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/airlocknorth) -"lzz" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/south/offices) -"lzB" = ( -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) -"lzE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south) -"lzG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"lzH" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/sigma/cargo) -"lzK" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"lxq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"lxw" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"lxK" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat/blue, -/area/corsat/omega/control) -"lzY" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/southeast, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"lxQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) -"lAe" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" +"lym" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/south/security) +"lyr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"lyC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics Lab"; + req_access_txt = "103" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"lAi" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"lAj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"lyJ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"lBd" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"lyR" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"lyX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"lzk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/generator) +"lzq" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"lBe" = ( -/obj/structure/bed/chair/comfy/beige{ +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"lzr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/residential/lounge) -"lBf" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/security) -"lBg" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"lzt" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "West Hydroponics Wing"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"lzJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) +"lzO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"lBo" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"lBv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"lBB" = ( -/obj/structure/bed/chair/comfy/black, /turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) -"lBG" = ( -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"lBM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ +"lzV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/voice, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"lAN" = ( +/turf/open/floor/corsat/greencorner/north, +/area/corsat/gamma/hallwaysouth) +"lAP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"lAY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"lBh" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"lBk" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"lBq" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/airlock/north) -"lBN" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"lBt" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/south/robotics) +"lBv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/scrapyard) +"lBR" = ( +/obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"lBV" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, /turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/checkpoint) -"lBZ" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/checkpoint) -"lCc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) -"lCf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"lCt" = ( +/area/corsat/gamma/hangar/security) +"lCb" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"lCg" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"lCs" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "2" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"lCx" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/monorail) "lCA" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"lCI" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"lCJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"lCM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) "lCO" = ( -/obj/structure/surface/table/almayer, +/obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/virology) -"lDi" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/sigma/cargo) -"lDs" = ( -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"lDD" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"lDG" = ( -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) -"lDR" = ( +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/airlock/north) +"lCX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"lDU" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"lDg" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"lEo" = ( +/area/corsat/gamma/canteen) +"lDD" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"lDH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"lDU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"lEA" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"lEU" = ( -/turf/open/floor/corsat/purplecorner, -/area/corsat/theta/biodome/complex) -"lFh" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" +/area/corsat/omega/cargo) +"lEa" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo) +"lEd" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"lEe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/hangar/office) +"lEk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"lEJ" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"lEV" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, /turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"lFt" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"lFH" = ( +/area/corsat/gamma/biodome/toxins) +"lEZ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"lFc" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"lFB" = ( /obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"lGn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"lGC" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"lGI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" +/area/corsat/gamma/medbay/chemistry) +"lFK" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"lGO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/hangar/flightcontrol) +/area/corsat/omega/offices) +"lFS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"lFT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) "lGP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"lGU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/residential/maint) -"lHc" = ( -/turf/open/shuttle/dropship/light_grey_top, -/area/prison/hangar_storage/research/shuttle) -"lHe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"lHp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"lHu" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/chemistry) -"lHE" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"lHJ" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, +"lHa" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"lIe" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"lHg" = ( +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Gate Shutters"; + pixel_x = 24; + use_power = 0 + }, +/obj/structure/closet/crate/science, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"lHh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-N"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"lHj" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"lIk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"lHm" = ( +/obj/item/toy/deck, +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"lHz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"lHE" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"lHW" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"lIs" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/platform{ +/obj/structure/machinery/light/small, +/obj/structure/machinery/door/window/southleft{ dir = 4; layer = 2.8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"lIt" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/hangar/office) -"lIw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"lIb" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydrowest) +"lIg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"lIi" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"lIy" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"lIz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"lIA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"lIk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"lIs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"lIG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"lII" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"lIM" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"lJk" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/virology) -"lJA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/area/corsat/omega/hangar) +"lIL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/corsat/gamma/sigmaremote) -"lJJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"lJa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) -"lJQ" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"lKg" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + req_one_access_txt = "106;103"; use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) +"lJb" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"lJg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"lKh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"lKl" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/obj/structure/closet/wardrobe/engineering_yellow, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"lKm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/south/engineering) +"lJM" = ( +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential/researcher) -"lKr" = ( -/obj/structure/machinery/light{ +"lJW" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/red/east, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/airlock/control) -"lKs" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat/squareswood/north, +"lKe" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"lKu" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"lKg" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"lKl" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west) -"lKv" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"lKo" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"lKt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/sigma/dorms) "lKy" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"lKz" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, +"lKF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"lLg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"lKK" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/omega/hangar) +"lKO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"lKR" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"lKV" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"lLk" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"lKZ" = ( +/obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"lLl" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"lLd" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"lLf" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"lLg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"lLp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"lLu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/FixOVein, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"lLV" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"lMc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) -"lLn" = ( -/turf/open/floor/plating/warnplate/east, -/area/corsat/omega/hangar) -"lLp" = ( +"lMd" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"lLs" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"lLz" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"lMn" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"lMs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/north, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) -"lLC" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "19" +"lMt" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"lMM" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar) +"lMV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"lLT" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"lMa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/handset, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"lMl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"lMm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"lME" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"lMX" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"lNg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"lNe" = ( +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"lNj" = ( -/obj/structure/closet/l3closet/janitor, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/omega/maint) -"lNq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"lNn" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"lNA" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"lNE" = ( -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) -"lNP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/southeast/generator) +"lNH" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"lNR" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar) -"lOi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"lNX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"lNZ" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "OmegaHangarW"; - name = "Landing Bay Omega" + id = "SigmaEastW"; + name = "Sigma East Airlock" }, /turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) +/area/corsat/sigma/airlock/east) +"lOo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"lOw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"lOB" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/checkpoint) +"lOL" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/hangar) "lPb" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/hangar/arrivals) "lPh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/control) -"lPm" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"lPs" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"lPx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) +"lPw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/morgue) "lPy" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +/obj/structure/machinery/door/window/brigdoor/southleft{ + id = "CORSAT Sec 1"; + name = "Cell 1" }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/security) -"lPN" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"lPZ" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"lQc" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"lQb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaCSC"; - name = "Security Shutters" + name = "Engineering Storage"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/control) -"lQo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"lQc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"lQd" = ( +/turf/open/floor/corsat/green, +/area/corsat/gamma/hallwaysouth) +"lQm" = ( +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/morgue) "lQu" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"lQy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"lQz" = ( -/obj/item/device/analyzer/plant_analyzer, +"lQv" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"lQD" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"lQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/form_printer, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"lQG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) "lQI" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/gamma/hangar/arrivals) -"lQM" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/airlock/south) +"lQO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/airlock/control) +"lQP" = ( +/obj/structure/powerloader_wreckage, +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/scrapyard) +"lQQ" = ( /obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"lQR" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/south/offices) -"lRn" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"lRx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"lRP" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"lRU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintenance Closet"; + req_one_access = null }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/sigmaremote) +"lSt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_access_txt = "101" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHCargoC"; - name = "Security Shutters" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"lSE" = ( +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"lSG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintenance Closet"; + req_one_access = null }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"lRB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"lRG" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"lRK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"lSH" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/office) -"lRR" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"lRT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC"; - name = "Security Shutters" - }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"lSd" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) -"lSi" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" +/area/corsat/gamma/hangar/arrivals) +"lTd" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering/core) +"lTE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"lSw" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"lSZ" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"lTg" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"lTj" = ( +/area/corsat/theta/airlock/control) +"lTL" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, /turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"lTo" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/south) -"lTx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/area/corsat/omega/offices) +"lTR" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/monorail) +"lTS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"lUd" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"lUp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"lTG" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"lUq" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +/obj/item/device/taperecorder, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"lUG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"lUJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"lUK" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"lUL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaHangarCargoC"; - name = "Security Shutters" +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"lUO" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"lTZ" = ( -/obj/structure/closet, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/morgue) -"lUk" = ( -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"lUl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"lUz" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"lUA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"lUH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential) -"lVa" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"lUS" = ( +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/hallwaysouth) +"lUY" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"lVq" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) "lVu" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) +/obj/structure/machinery/light, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) "lVF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"lWa" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" +"lVN" = ( +/obj/structure/bed/chair, +/obj/structure/platform{ + dir = 8; + layer = 2.8 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Virology Wing"; - req_access_txt = "103" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"lVO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"lVR" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"lVX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"lWj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"lWx" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lWE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"lWW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/hangar) +"lXc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"lWq" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"lXd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"lXg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"lWs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/southeast/datalab) -"lXm" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"lXt" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"lXj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"lXl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"lXv" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/cells) -"lXu" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"lXz" = ( +/obj/structure/surface/rack{ + name = "Acid Resistant Rack"; + unacidable = 1 }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/control) -"lXU" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/obj/item/weed_extract, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"lXB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"lXM" = ( +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Gate Shutters"; + pixel_y = 24; + use_power = 0 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"lXY" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"lXX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"lXZ" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/inaccessible) "lYc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"lYn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth/id) -"lYr" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/hangar/flightcontrol) -"lYB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Xenobiology"; - req_access_txt = "103" - }, +"lYh" = ( +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) +"lYy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"lYF" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"lYI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"lYI" = ( -/obj/structure/closet/wardrobe, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"lYJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"lYW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"lYU" = ( -/obj/structure/closet/crate/trashcart, /turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) +/area/corsat/theta/airlock/control) "lYX" = ( /obj/structure/ice/ice_rock/cornerOverlay{ icon_state = "single" }, /turf/closed/ice_rock/corners, /area/corsat/gamma/biodome) -"lZh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"lZj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) "lZm" = ( /turf/open/floor/wood, /area/corsat/omega/offices) -"lZn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/theta/airlock/control) "lZp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -23902,1849 +23936,1877 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"lZr" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"lZC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering) -"lZR" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hallways) -"lZX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, +"lZq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"mae" = ( -/obj/structure/machinery/door/window/southleft, -/obj/structure/machinery/door/window/northleft, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"mag" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"map" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"maw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"maD" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"maK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/researcher) -"maM" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"maT" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaWestE"; - name = "Theta West Airlock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"mbb" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purple, -/area/corsat/sigma/south) -"mbq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar) -"mcj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"mcn" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/gamma/sigmaremote) -"mcq" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/dorms) -"mcs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"mct" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"mcu" = ( +/area/corsat/theta/biodome/complex) +"lZy" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"mcy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south) -"mcE" = ( -/obj/effect/decal/cleanable/blood/splatter, +/obj/item/paper, /obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/south) -"mcP" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 1 + dir = 4; + layer = 2 }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"mds" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lZC" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"lZP" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"lZW" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"lZZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"mdx" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/corsat/gamma/biodome/virology) +"mag" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"mal" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/crowbar, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/cargo) +"mam" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/hangar/office) -"mdy" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"man" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/complex) -"mdI" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light/small{ +"map" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/south) +"maF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"mdL" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/residential) -"mea" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"meo" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"meY" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"mff" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/south) -"mfi" = ( -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/corsat/inaccessible) -"mfk" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"mfG" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"maG" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/theta/airlock/control) -"mfK" = ( -/obj/structure/machinery/computer3, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"mfN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"mfR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/control) -"mfV" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"maM" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"maO" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - name = "Chemistry"; - req_one_access_txt = "103" + name = "Research Complex"; + req_one_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"mfX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"mgo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"mgy" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"mgC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"mgF" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "SigmaCargo"; - name = "Sigma Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/cargo) -"mgJ" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"mgT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"mhd" = ( +/area/corsat/gamma/biodome/complex) +"maY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"mba" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"mhi" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/inaccessible) -"mhA" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"mhD" = ( -/obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"mhS" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"mbe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"mbR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/south) -"mhU" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "9" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"mhZ" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"mbS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/raisins, +/obj/effect/spawner/random/tool, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"mia" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 +/area/corsat/gamma/engineering) +"mbV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"mbX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/redcorner/east, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) -"mid" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar) -"min" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"mcj" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/brown, -/area/corsat/omega/cargo) -"mio" = ( -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"mit" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"miw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"miA" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mcq" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"miR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"miZ" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/south) -"mja" = ( -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome/scrapyard) -"mjo" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security) -"mjp" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"mjs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/corsat/gamma/sigmaremote) +"mcx" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"mcA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"mcD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"mjB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"mjY" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"mcE" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"mcG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"mcR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - req_access_txt = "201" +/obj/item/form_printer, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"mcU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/control) -"mkk" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) -"mko" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"mcV" = ( /obj/structure/bed/chair/office/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"mkt" = ( -/obj/item/cell/crap, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"mkv" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "14" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"mdr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "4" }, /turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"mkF" = ( +/area/corsat/sigma/south/complex/teleporter) +"mdH" = ( +/obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/omega/hallways) -"mll" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"mdI" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/hallwaysouth) -"mlr" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"mlR" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"mdN" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/core) -"mlT" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") - }, +/obj/structure/closet/radiation, /turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"mlV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/complex) +"mdP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"mea" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mes" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"meM" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"meZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, /area/corsat/omega/security) -"mlZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/skills, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/administration) -"mmc" = ( +"mfq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"mft" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"mfv" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"mfK" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/security) -"mmf" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"mmC" = ( -/obj/structure/pipes/vents/pump{ +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"mfN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mfX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"mmU" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"mnK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"mge" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"mgm" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/east, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"mgz" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/hangar/office) +"mgS" = ( +/obj/structure/safe, +/obj/item/xeno_egg, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) -"mnL" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"mgX" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"mhc" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"mhd" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"mhl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"mhu" = ( +/obj/structure/machinery/door/window/southleft, +/obj/structure/machinery/door/window/northleft, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"mhG" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydrowest) +"mhO" = ( +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) -"mnW" = ( -/obj/structure/machinery/light{ - dir = 1 +"miq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Access Checkpoint"; + req_access_txt = "101" }, -/obj/structure/prop/almayer/computers/mapping_computer, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"miu" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"miH" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/rack, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"mob" = ( -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/medbay/morgue) -"moe" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ +/area/corsat/omega/complex) +"miS" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"mof" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/corsat/gamma/residential/east) +"mje" = ( +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east) -"moq" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/tool/mop, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"mou" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/control) -"mpb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"mjg" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"mjj" = ( +/obj/structure/bed/stool{ + pixel_y = 15 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/lobby) -"mpf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"mpn" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"mpo" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential) -"mpA" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering/atmos) -"mpP" = ( -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay/morgue) -"mqi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south/id) -"mqn" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"mjq" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 1 }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"mqs" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/virology) -"mqt" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/datalab) -"mqU" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"mjr" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) +"mjz" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"mkb" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"mkj" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"mks" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"mrb" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"mkJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"mkT" = ( +/obj/structure/machinery/light, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) +"mkV" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"mli" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"mlr" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"mrq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +"mlB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"mlI" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"mlQ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "19" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"mmm" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" + network = list("theta") }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"mrM" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"mrQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"mse" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"mmn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"msf" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"mmL" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"msl" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Hall Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) -"msw" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"msA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat/green/northeast, -/area/corsat/gamma/medbay/morgue) -"msB" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"msI" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"mmN" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"msK" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"msP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"msX" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaHangarN"; - name = "Landing Bay Omega" +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"mmS" = ( +/obj/structure/surface/rack, +/obj/item/storage/wallet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"mmY" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "ThetaNorthS"; + name = "Theta North Airlock" }, /turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"mtd" = ( -/obj/structure/machinery/light{ +/area/corsat/theta/airlock/control) +"mnb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"mnr" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"mnz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"mtf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"mth" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/hangar/flightcontrol) -"mti" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"mtm" = ( -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/canteen) -"mtt" = ( -/obj/structure/morgue/crematorium{ - id = "CORSAT Crema" - }, -/obj/structure/machinery/crema_switch{ - id = "CORSAT Crema"; - pixel_x = 28; - pixel_y = 28; - req_one_access_txt = "2;8;19" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mnR" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/medbay/morgue) -"mtG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"mtL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"mnS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("omega") }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"mua" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 1"; - req_one_access_txt = "103" +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/control) +"mnZ" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Engineering Desk" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"mue" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/south) -"mun" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Engineering Desk"; + req_access_txt = "13" }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"muv" = ( +/area/corsat/gamma/engineering/lobby) +"moa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"mos" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"moR" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"moT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"muA" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security) -"muF" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"muX" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"muZ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"mvc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"mvg" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"moV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/control) +"moY" = ( /obj/structure/platform{ density = 0; + dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat/whitecorner, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/south) -"mvq" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"mvC" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"mvI" = ( -/obj/structure/machinery/light{ - dir = 8 +"mph" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"mvJ" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"mvL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars, -/area/corsat/sigma/biodome) -"mvP" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"mvU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"mvZ" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"mwg" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 +/area/corsat/sigma/hangar) +"mpr" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "GammaCargo"; + name = "Gamma Cargo Bay"; + use_power = 0 }, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"mwi" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/random, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/cargo) +"mpu" = ( +/obj/structure/machinery/light, /turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) -"mwq" = ( -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) -"mws" = ( -/obj/structure/cargo_container/watatsumi/rightmid, +"mpB" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"mpM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"mwu" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"mww" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"mwC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/emergency_access) -"mwD" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"mwN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"mwX" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"mxj" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar) -"mxv" = ( -/turf/open/mars/mars_dirt_8, /area/corsat/sigma/biodome) -"mxJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"myi" = ( +"mpR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/checkpoint) +"mqf" = ( +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/lobby) +"mqm" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"myl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"myn" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"mqn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"mys" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"myE" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"myK" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/complex) -"myM" = ( -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"mqA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/purple/east, -/area/corsat/gamma/biodome/complex) -"myS" = ( -/turf/open/floor/corsat/yellowcorner/north, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) -"mzh" = ( -/obj/structure/surface/rack, -/obj/item/device/binoculars, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"mzt" = ( -/obj/structure/machinery/light{ - dir = 4 +"mqQ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaGrounds"; + name = "Testing Grounds" }, -/obj/structure/bed/chair{ +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/biodome/testgrounds) +"mqU" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"mzx" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"mzE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mra" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"mzI" = ( +/area/corsat/sigma/south) +"mrb" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"mre" = ( +/obj/structure/largecrate/lisa, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"mrg" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "106" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/office) +"mrh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"mru" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"mrH" = ( +/obj/structure/closet/jcloset, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"mzK" = ( +/area/corsat/sigma/hangar/monorail/control) +"mrQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"mrR" = ( /obj/structure/surface/rack, -/obj/item/tool/soap, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"mzY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/spawner/random/tool, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"mrW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"mAg" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"mrZ" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"msf" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"msk" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"mst" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Robotics"; + req_one_access_txt = "102" }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"mAx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"msB" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"msC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"msP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"msS" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ dir = 1 }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"mAC" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"msU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"mte" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"mti" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering) -"mAD" = ( -/obj/structure/fence, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"mAG" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/hallwaysouth) -"mAP" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/engineering, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"mAU" = ( +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"mts" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"mtw" = ( +/obj/item/trash/buritto, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"mtG" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"mtI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"mtL" = ( +/obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 9 }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"mAX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"mBh" = ( -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"mBj" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"mBl" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"mBv" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"mtZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"mBy" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"mBC" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/vending/cigarette/colony, +/area/corsat/omega/maint) +"mua" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"mBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, +/area/corsat/sigma/cargo) +"mud" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat{ + name = "Acid Resistant Hemostat"; + unacidable = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"muk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west) +"mux" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Gamma"; + req_access_txt = "103" + }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"mCb" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/omega/complex) +"muL" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"muR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"muT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"muU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaNorthS"; + name = "Airlock Control"; + pixel_y = -2; + use_power = 0 }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/hallwaysouth) -"mCr" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"mCF" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "15" +/obj/structure/machinery/door_control{ + id = "ThetaNorthN"; + name = "Airlock Control"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"mCL" = ( -/turf/open/floor/corsat/brown, -/area/corsat/gamma/foyer) -"mCO" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"muW" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"mCP" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"mCY" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"mDn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/hydroponics) +"muZ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"mDt" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/wirecutters, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/residential/maint) -"mDE" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"mvc" = ( /obj/structure/largecrate/random, /turf/open/floor/corsat/cargo, -/area/corsat/omega/hangar) -"mDN" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"mDP" = ( -/obj/structure/bed/sofa, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"mEU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) -"mFc" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/area/corsat/gamma/freezer) +"mve" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"mvn" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) -"mFd" = ( +/area/corsat/sigma/south/engineering) +"mvs" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"mvu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"mFl" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/east/id) -"mFz" = ( -/turf/open/floor/corsat/purplewhite/north, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"mvL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars, +/area/corsat/sigma/biodome) +"mvO" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/foyer) +"mvR" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"mvZ" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/dorms) +"mwm" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydrowest) -"mFA" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" +"mwq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"mwx" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/security) +"mwC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/emergency_access) +"mwI" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/hallwaysouth) +"mxe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"mxl" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaWestE"; + name = "Theta West Airlock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"mxn" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/tool/stamp/hos, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"mxw" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"mxG" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"myc" = ( +/obj/item/folder/blue, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"myf" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"myl" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"mFB" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) -"mFC" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"mFD" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"mGs" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"mGK" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"mGO" = ( +"mym" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"myo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"myq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"mGT" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"myr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"mHe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"myw" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"myy" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"mHg" = ( -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"myM" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/engineering) +"myN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"myU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"mzl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") }, -/obj/item/clothing/head/beret/sec/warden, /turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/office) -"mHy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) -"mHA" = ( -/obj/structure/bed/chair/office/light{ +"mzx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"mzA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"mzG" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/monorail) +"mzL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/surgery) +"mzO" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"mzW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Hypersleep Chamber"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"mHD" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"mAf" = ( +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"mAk" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/airlock/control) +"mAv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + use_power = 0 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"mAx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"mAA" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, /turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"mHI" = ( +/area/corsat/gamma/hangar/flightcontrol) +"mAH" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/arrivals) +"mAJ" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"mAM" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/west/id) -"mHL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"mHR" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar/office) -"mHX" = ( -/turf/open/mars_cave/mars_cave_8, -/area/corsat/sigma/biodome/gunrange) -"mIm" = ( -/obj/structure/surface/table/reinforced, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mAP" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras{ dir = 8; - network = list("sigma") + network = list("gamma") }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"mIo" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/control) -"mIp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"mIq" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/checkpoint) -"mIG" = ( -/turf/open/floor/corsat/darkgreen, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"mAQ" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome/scrapyard) +"mAT" = ( +/obj/structure/bed/sofa, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"mAZ" = ( +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) -"mIO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mBn" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"mBz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"mIY" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"mIZ" = ( -/turf/open/floor/almayer/plating_striped/north, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/corsat/gamma/sigmaremote) -"mJx" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"mJB" = ( +"mBL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) +"mBO" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south) +"mBP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"mBQ" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/scrapyard) +"mCa" = ( +/obj/structure/surface/table, /turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"mJU" = ( -/obj/structure/prop/mech/parts/durand_left_leg, -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/south/robotics) -"mKj" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/airlock/south) -"mKu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Sigma Dome Control" +/area/corsat/gamma/residential/west) +"mCt" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, +/turf/open/floor/corsat/purplecorner, +/area/corsat/omega/airlocknorth) +"mCP" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"mCR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"mCW" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"mKE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"mCX" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"mLe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/security) -"mLv" = ( -/obj/structure/surface/table, +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"mDO" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"mEh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"mEj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"mLH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"mEn" = ( +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/medbay/morgue) +"mEp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"mEu" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar) +"mEH" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestE"; + name = "Sigma West Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"mEK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/biodome/testgrounds) +"mEM" = ( +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/structure/closet/crate/freezer, /turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"mLN" = ( +/area/corsat/gamma/freezer) +"mEV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"mEW" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"mFa" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/monorail) +"mFo" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/gamma/biodome/complex) +"mFq" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"mFy" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"mFO" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"mMj" = ( -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome/gunrange) -"mMm" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"mGB" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"mMp" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"mGQ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"mGV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"mHz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"mMq" = ( -/obj/structure/machinery/light{ +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"mHF" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"mIf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"mIt" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"mIG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"mMy" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Virology Lab"; - req_one_access_txt = "103" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"mIY" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"mME" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"mJi" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/sigma/dorms) -"mMG" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 + icon_state = "pottedplant_22" }, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"mNs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"mNw" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) +"mJl" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"mND" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "5" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"mNE" = ( -/obj/structure/machinery/disposal, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"mOo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/control) -"mOv" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/omega/hangar/security) +"mJp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/residential) -"mOA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay) +"mJx" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mJB" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/canteen) +"mJM" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome/scrapyard) +"mJO" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydroeast) +"mJS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"mKa" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"mKf" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/engineering) +"mKt" = ( +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"mKF" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"mOD" = ( -/obj/structure/platform{ - dir = 8 +/area/corsat/sigma/hangar/arrivals) +"mKU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/item/storage/toolbox/electrical, /turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) -"mOH" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"mOI" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"mOJ" = ( -/turf/open/floor/corsat/yellow, +"mLh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/theta/airlock/control) -"mOX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"mLt" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"mLD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/complex) -"mPe" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"mLQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"mMa" = ( +/obj/structure/machinery/door_control{ + id = "SigmaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"mPj" = ( +/area/corsat/sigma/cargo) +"mMb" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south) +"mMq" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/west, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/north) -"mPk" = ( -/obj/structure/bed/chair/office/light{ +"mMw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"mMz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arrivals" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"mME" = ( +/obj/structure/surface/table/reinforced, +/obj/item/implantcase, +/obj/item/implantcase, +/obj/item/implantcase, +/obj/item/implantpad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"mMG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"mMR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"mMZ" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar) +"mNa" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"mNj" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"mNr" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"mNt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"mNC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Laundry" + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"mPl" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"mNI" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"mNM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"mNU" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"mOi" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light/small, -/obj/structure/machinery/door/window/southleft{ - dir = 4; - layer = 2.8 +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/hallways) +"mOv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control Office"; + req_access_txt = "102" }, -/obj/item/tool/soap, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"mPr" = ( -/obj/structure/bed/chair/comfy/beige{ +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"mOO" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet13_5/west, -/area/corsat/omega/offices) -"mPD" = ( +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"mPb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"mPX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"mQf" = ( -/obj/structure/platform{ +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"mPj" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - layer = 2.7 + name = "Data Laboratory"; + req_access_txt = "106;102;103" }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"mPy" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"mPE" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/medbay/morgue) +"mPX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/sigma/south) -"mQt" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"mQe" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"mQz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"mQf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/checkpoint) +"mQi" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"mQD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"mQX" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/computer/station_alert{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"mQN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"mQO" = ( -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/airlock/control) -"mRe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Firing Range"; - req_one_access_txt = "106;102;103"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"mRr" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"mRa" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"mRA" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/gamma/hangar/flightcontrol) +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"mRo" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) "mRC" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/corsat/omega/biodome) -"mRH" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) "mRK" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"mSg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) "mSo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"mSw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mSI" = ( +/obj/structure/machinery/atm{ + pixel_y = -30 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"mSD" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"mSJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"mSS" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"mST" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"mSU" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mSV" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"mSW" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"mSK" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"mSZ" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) "mTa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/mars, /area/corsat/sigma/biodome) -"mTf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/spiralplate, +"mTd" = ( +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"mTu" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"mTC" = ( +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/airlock/south) -"mTh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"mTL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"mTj" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar/arrivals) -"mTH" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/peripherals/alice, -/obj/item/circuitboard/exosuit/main/alice, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"mTJ" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"mTP" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"mUd" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"mUr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"mUs" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"mUz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"mUL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/bluegrey/west, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"mVp" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"mVq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"mVx" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast/generator) +"mVH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"mWb" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) -"mTR" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"mWd" = ( +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"mWi" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; + name = "Warden's Office"; req_access_txt = "101" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"mTW" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"mTX" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"mUy" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"mWp" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"mUI" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/dorms) +"mWt" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = 25; + use_power = 0 }, /turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"mUS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/hallwaysouth) -"mVe" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"mVq" = ( +/area/corsat/gamma/hangar/security) +"mWF" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 5 }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"mVu" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"mWQ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/obj/structure/machinery/disposal, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-gamma-control" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"mWS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"mWU" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"mXA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"mVx" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Hazardous Materials Lab"; - req_one_access_txt = "101" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"mXF" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/purple/east, +/area/corsat/gamma/biodome/complex) +"mXN" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"mYg" = ( +/obj/structure/surface/rack{ + name = "Acid Resistant Rack"; + unacidable = 1 }, -/turf/open/floor/corsat/retrosquareslight, +/obj/item/xenos_claw, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) -"mVy" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/sigma/south) -"mVF" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) -"mVG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"mWh" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/north) -"mWy" = ( -/obj/structure/machinery/light{ - dir = 8 +"mYt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/hallways) -"mWz" = ( -/obj/structure/filingcabinet/filingcabinet, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"mWD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/red, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"mXg" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/gamma/biodome/virology) +"mYu" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/theta/airlock/east) -"mXu" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"mYx" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "7" }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"mYA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/red/west, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) -"mXy" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) -"mXH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"mXN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mYH" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/southeast/datalab) +"mYI" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"mXP" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"mXX" = ( +/area/corsat/gamma/medbay/morgue) +"mYX" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/residential) +"mZb" = ( /obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) -"mYr" = ( -/obj/structure/machinery/light{ - dir = 8 +"mZk" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/control) +"mZE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat/purple/west, -/area/corsat/gamma/biodome/complex) -"mYK" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - name = "\improper Containment Chambers"; - req_access_txt = "103" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/east/id) +"mZP" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"mYN" = ( -/obj/effect/landmark/corpsespawner/pmc, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"nac" = ( /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) -"mZy" = ( +/area/corsat/sigma/airlock/east/id) +"nae" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"mZF" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/east, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"nak" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/west) +"nar" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/omega/maint) -"mZJ" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "22" +"nay" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security/cells) +"naB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security/cells) +"naE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"mZY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/FixOVein, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/surgery) -"naa" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access_txt = "102" +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"naJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"nap" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"nax" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"naB" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast) +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"naN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"naU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) "naW" = ( -/obj/structure/closet/crate/freezer, -/obj/item/organ/heart, -/obj/item/organ/kidneys, -/obj/item/organ/kidneys, -/obj/item/organ/liver, -/obj/item/organ/lungs, -/obj/item/organ/brain, -/obj/item/organ/eyes, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay) -"naZ" = ( -/obj/item/device/assembly/voice, +/obj/structure/machinery/light, /obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"nbb" = ( +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"naZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential/researcher) -"nbh" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) "nbl" = ( /turf/closed/shuttle/ert{ icon_state = "wy18" }, /area/prison/hangar_storage/research/shuttle) +"nbv" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"nbx" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/gamma/hallwaysouth) +"nbC" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) "nbD" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"nbM" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/metal{ + amount = 30 }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) "nbN" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"nbR" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) "nbS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -25755,15 +25817,12 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/corsat/theta/biodome) -"nbY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ +"nch" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) "nck" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/flora/jungle/vines/light_1, @@ -25772,319 +25831,335 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"nct" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"ncB" = ( -/obj/structure/machinery/light{ +"ncq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"ncE" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"ndB" = ( -/turf/open/floor/corsat/marked, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security/cells) +"ncu" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"ncS" = ( +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/airlock/control) -"ndJ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"ndP" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/dorms) -"ndQ" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/sigma/dorms) -"nea" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("omega") +"ndb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/omega/control) -"neb" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/theta/airlock/east) -"nee" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"ndn" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"nei" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"nem" = ( -/obj/item/toy/deck, -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"ner" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"ndv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/control) +"nee" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"neq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"nes" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = -32 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"nev" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) "nex" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) "neL" = ( -/obj/structure/surface/rack, -/obj/item/device/chameleon, -/turf/open/floor/corsat/purplewhite/north, +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/empgrenade, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) -"neU" = ( -/obj/structure/prop/mech/parts/durand_torso, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/robotics) -"neV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ +"neN" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"neW" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/monorail) "neY" = ( /turf/closed/shuttle/ert{ icon_state = "wy19" }, /area/prison/hangar_storage/research/shuttle) -"nfi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_10, -/area/corsat/sigma/biodome) -"nfw" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +"nfh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) "nfz" = ( /turf/closed/wall/resin/membrane, /area/corsat/gamma/biodome) -"nfF" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"nfU" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/security) -"nfV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Omega Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/control) -"ngr" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"ngG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"ngO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"ngS" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 +"nfM" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"nfQ" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"nfW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) -"ngU" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/sigma/cargo) -"nhm" = ( -/obj/structure/largecrate/supply/ammo/m39/half, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"nhx" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/monorail) -"nhA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential) -"nhJ" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/administration) -"nhM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/theta/airlock/control) -"nhX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"ngm" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + dir = 1; + icon_state = "door_open"; + name = "Containment Cell 5"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/retrosquares, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"ngt" = ( +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/hallwaysouth) -"nic" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"ngw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"nim" = ( -/turf/open/floor/corsat/blue/southwest, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"ngL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"ngR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"ngZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, /area/corsat/sigma/south) -"nin" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/omega/offices) -"nip" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"nis" = ( -/obj/item/folder/yellow, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"nit" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential) -"niI" = ( -/turf/open/floor/corsat/greenwhitecorner, +"nhh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"nhm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) -"niX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"nji" = ( +"nhp" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"nhy" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/theta/airlock/control) +"nhD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"nhY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"njj" = ( -/obj/structure/closet/secure_closet/brig{ - id = "CORSAT Sec 2" - }, -/obj/structure/machinery/brig_cell{ - id = "CORSAT Sec 2"; - name = "Cell 2"; - pixel_x = 32 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) -"njl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/area/corsat/gamma/rnr) +"nib" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; - name = "Engineering"; - req_one_access_txt = "102" + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"njs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"nii" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"nju" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"nio" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"nit" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/south/id) -"njH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Hub"; - req_access_txt = "101" +/area/corsat/sigma/north) +"niu" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"niB" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth/id) +"niI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaEastID"; + name = "Security Shutters"; + use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"njS" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/east/id) +"niW" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"niX" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"njT" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/airlock/south/id) -"nkc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/scrapyard) -"nke" = ( -/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"njo" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"njq" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"njt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"nju" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/biodome/complex) +"njx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"njz" = ( +/obj/structure/machinery/light, /turf/open/floor/corsat/red, -/area/corsat/omega/security) -"nkp" = ( +/area/corsat/omega/hangar/security) +"njA" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"njB" = ( /obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/robotics) -"nkq" = ( -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"nks" = ( +/obj/item/evidencebag, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"njM" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"njO" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"njY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Outer Gate Shutters"; + pixel_x = 5; + pixel_y = 24; + use_power = 0 + }, /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "RemoteGate"; + name = "Gate Shutters"; + pixel_x = -5; + pixel_y = 24; + use_power = 0 }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"nkv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Medical Bay"; - req_one_access = null +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"nkq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"nkx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "Toxins Lab"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"nkZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) "nla" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/foyer) -"nlj" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("theta") }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"nlf" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) "nlm" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/simple/hidden/green, @@ -26097,72 +26172,77 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"nlw" = ( +"nlt" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/office) +"nlM" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"nlB" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Teleportation Lab"; - req_one_access_txt = "103" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"nlT" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"nmc" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"nmd" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"nlG" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"nlK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"nlM" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"nmo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"nmi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"nmu" = ( +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"nmz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/theta/airlock/control) "nmE" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"nmL" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"nmX" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"nnq" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/theta/airlock/control) -"nnt" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"nmP" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/south/offices) +"nmY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr/bar) "nny" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"nnB" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) "nnC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -26171,62 +26251,106 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) -"nnL" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/core) -"nnR" = ( -/obj/structure/bed/chair, +"nnT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"nou" = ( +/area/corsat/sigma/cargo) +"nnU" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"nnV" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"nov" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/sigma/hangar/monorail) -"noA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"noC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"nob" = ( +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"noc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/sigma/south/complex) +"nou" = ( +/obj/effect/decal/cleanable/blood/xtracks, /turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) -"noG" = ( +/area/corsat/omega/hallways) +"nov" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaIDEC2"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/east/id) +"noI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"noI" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/arrivals) +"noL" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"noV" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south/id) -"noQ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"npj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Office"; - req_access_txt = "101" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"noX" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"npa" = ( +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"npb" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"npk" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/robotics) +"npe" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/prison/hangar_storage/research/shuttle) +"nph" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/researcher) +"npi" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"npj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaWestD"; + name = "Entrance Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) "npm" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -26236,148 +26360,113 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/hangar/monorail) -"npp" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/sigma/south/complex) -"npv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"npJ" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/turf/open/floor/corsat/officesquares, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) -"npC" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) +"npM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) "npN" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"npT" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"npV" = ( +"npP" = ( /obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"nqa" = ( -/turf/open/floor/corsat/retrosquareslight, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"npS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) -"nqk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"nqg" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"nqs" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/hallwaysouth) +"nqP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"nqn" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"nqQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"nqq" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"nqN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "delta_gamma2"; - name = "Checkpoint Gamma"; - pixel_x = 5; - use_power = 0 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"nqU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"nqT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"nqV" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/containment) -"nqX" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/theta/airlock/east) -"nra" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/control) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"nrb" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) "nri" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/ice, /area/corsat/gamma/biodome) -"nrw" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"nrF" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) -"nrL" = ( +"nrv" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/sigma/hangar) -"nrV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"nsa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/sigma/south/complex) -"nsq" = ( -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/administration) -"nsv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"nrB" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"nsx" = ( +/area/corsat/omega/complex) +"nrI" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/dataoffice) +"nsb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"nss" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "10" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"nsD" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/airlock/north) +"nsK" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"nsI" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"nsU" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"nte" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar/security) -"nti" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) "ntn" = ( /turf/closed/shuttle/ert{ icon_state = "wy13" @@ -26388,1498 +26477,1649 @@ /obj/item/tool/extinguisher, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"ntz" = ( +"ntw" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/residential/lounge) +"ntG" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"ntH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"ntJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"ntM" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"ntS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/foyer) +"ntT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"nue" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"nuw" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"nuN" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "OmegaHangarNE"; + name = "Landing Bay Omega" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"nuS" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"nuX" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/omega/offices) +"nvc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"nvd" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/hangar/monorail) +"nvf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"nvh" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/north) +"nvi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Hangar Office" + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"ntF" = ( +/area/corsat/gamma/administration) +"nvm" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/vents/pump{ +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"nvr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"nvv" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/hangar/arrivals) +"nvH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"nvO" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"nvQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"nvS" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"nwj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"nwm" = ( +/obj/structure/fence, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"nwt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"nww" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"nwO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"nxm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"nxn" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"nxx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"ntH" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome/scrapyard) -"ntM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"ntO" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"ntQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"ntR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"ntU" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/checkpoint) -"ntZ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/area/corsat/gamma/airlock/south) +"nxy" = ( +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"nxz" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/monorail) +"nxG" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/cargo) +"nxO" = ( +/obj/structure/platform{ + density = 0; dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 + icon_state = "platform_deco" }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/arrivals) -"nuc" = ( -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/lobby) -"nug" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/dorms) +"nyf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"nyj" = ( /turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"nun" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "delta_gamma2"; - name = "Gamma Checkpoint"; +/area/corsat/gamma/hallwaysouth) +"nyB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"nyJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"nyO" = ( +/obj/effect/alien/weeds/node, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"nzv" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"nzU" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "GammaCargo"; + name = "Gamma Cargo Bay"; use_power = 0 }, /turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"nuo" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/airlock/control) -"nur" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"nuA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"nuG" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/rnr) -"nuS" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"nvf" = ( -/obj/structure/bed/chair{ +/area/corsat/gamma/cargo) +"nAl" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/freezer) +"nAn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"nAt" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"nvB" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"nvH" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/administration) -"nvJ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"nvR" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/monorail) -"nvS" = ( +/area/corsat/gamma/security) +"nAB" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"nwb" = ( -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/airlock/control) -"nwc" = ( -/obj/structure/morgue, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/medbay/morgue) -"nwj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"nwt" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/southeast/datamaint) -"nwz" = ( -/turf/open/floor/corsat/redcorner, /area/corsat/omega/security) -"nwJ" = ( -/obj/structure/bed/chair{ - dir = 1 +"nAJ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"nAW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"nBb" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/inaccessible) +"nBf" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"nBr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration Office" }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"nxn" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"nBA" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" + dir = 1 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"nxz" = ( -/turf/open/floor/carpet7_3/west, -/area/corsat/omega/offices) -"nxX" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"nBP" = ( +/obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"nyd" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/lobby) -"nyi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"nBT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"nCa" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"nyY" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"nCt" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"nCA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"nyZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"nza" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/lobby) -"nzx" = ( -/obj/structure/machinery/power/apc/no_power/north, +/area/corsat/sigma/north) +"nCC" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"nCJ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo/disposal) -"nzM" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"nzQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"nDi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Arcade" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"nAf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"nAl" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/freezer) -"nAt" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"nDj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; + dir = 2; + name = "Maintainance"; req_one_access = null }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"nAy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"nAD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/monorail/control) -"nAW" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "12" +/area/corsat/gamma/freezer) +"nDl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"nDH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"nDL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"nDR" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"nDZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"nAX" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"nAZ" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"nEg" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"nEh" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; - name = "Research Desk" + name = "Robotics"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"nBj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"nEm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"nEs" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"nEJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"nEX" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"nFb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"nFc" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"nFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/sigma/south/complex) +"nFE" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security) +"nFO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"nGb" = ( /obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/flashlight, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"nBC" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/south/complex) +"nGc" = ( +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"nGk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"nBU" = ( +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"nGR" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"nCt" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering/atmos) -"nCv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"nGV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"nCy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"nCz" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/foyer) -"nCD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/monorail/control) -"nCS" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"nDa" = ( -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"nDh" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth/id) +"nHd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"nDm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"nHr" = ( +/obj/structure/platform{ dir = 1; - name = "Hangar Office"; - req_access_txt = "106" + layer = 2.7 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/office) -"nDn" = ( -/obj/structure/machinery/light/small{ +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/south) +"nHu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"nHy" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"nDw" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/camera/autoname{ +/area/corsat/sigma/southeast/datamaint) +"nHJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"nHR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/southeast/datamaint) +"nHU" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"nIa" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/cargo) +"nIb" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4; - network = list("gamma") + layer = 2 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"nDz" = ( -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"nDA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"nDL" = ( -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"nDY" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 8 +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/south) +"nIc" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"nIy" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"nIJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"nEd" = ( -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"nIK" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"nIM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"nEn" = ( +/turf/open/floor/corsat/green, +/area/corsat/gamma/hallwaysouth) +"nIN" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/rnr) +"nIQ" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/atmos) +"nJd" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"nEs" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "OmegaCargo"; - name = "Omega Cargo Bay"; - use_power = 0 +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"nJs" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"nJu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Hydroponics"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"nJz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/corsat/omega/cargo) -"nEt" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"nEu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/area/corsat/omega/checkpoint) +"nJE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/brown/east, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"nJJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/north) -"nEz" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nJL" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, /turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) -"nEC" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, +"nJX" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"nJZ" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"nEI" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"nEM" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"nKg" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar) +"nKk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"nKq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"nKA" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"nKD" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"nKI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"nKL" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"nKM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"nKP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) -"nEX" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"nFa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +"nKY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/tool/weldingtool, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"nLj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"nFb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"nLt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"nLF" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"nLG" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"nLR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"nLU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"nMd" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"nMg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, /area/corsat/gamma/sigmaremote) -"nFc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1/weedable, +"nMh" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"nMk" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"nFl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"nFn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") +"nMn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security) -"nFC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"nMq" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"nMB" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"nME" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"nMJ" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"nFD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"nFK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"nFL" = ( -/obj/structure/bed/chair/comfy/black{ +/area/corsat/gamma/medbay) +"nMO" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"nGI" = ( -/turf/open/floor/corsat/purplecorner/east, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/residential) -"nGK" = ( +"nMT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/sigma/dorms) -"nGZ" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/checkpoint) -"nHc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"nHf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"nHu" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"nMX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"nHG" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/botany{ - name = "hydroponics tray" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"nNs" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"nHK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Computer Room"; - req_one_access = null +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"nNu" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"nND" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/south) +"nNH" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"nNO" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"nHO" = ( +/area/corsat/sigma/dorms) +"nNX" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"nNZ" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/north/id) -"nHU" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"nOa" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"nOf" = ( /obj/structure/surface/rack, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"nHZ" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/security) +"nOw" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/complex) -"nId" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"nOI" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"nIu" = ( -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"nIw" = ( +/obj/item/weapon/gun/pistol/vp70, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"nOV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/hunter_primary, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"nIx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/area/corsat/sigma/hangar/security) +"nOZ" = ( +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"nPs" = ( +/obj/item/storage/box/monkeycubes, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/control) -"nIy" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"nIN" = ( -/obj/structure/closet/jcloset, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/containment) +"nPt" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/east/id) +"nPC" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/airlock/control) +"nPF" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"nPI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"nIR" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/structure/platform{ - dir = 4; - layer = 2 +/area/corsat/gamma/hangar) +"nPY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/item/tool/pen/blue, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"nIT" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/airlocknorth) -"nIU" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"nIX" = ( -/obj/structure/machinery/light{ +"nQc" = ( +/obj/item/folder/black_random, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"nQm" = ( +/obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/armory) -"nJa" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/corsat/gamma/airlock/south/id) +"nQo" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Subject den"; + req_one_access_txt = "103" }, -/obj/structure/machinery/botany{ - name = "hydroponics tray" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"nJg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"nJk" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) -"nJm" = ( +"nQv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"nQy" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"nJr" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +/obj/structure/barricade/handrail{ + layer = 3 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"nJB" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"nQF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"nJI" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"nQL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"nQN" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"nJY" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"nKx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"nKB" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/hallways) -"nKF" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, -/turf/open/floor/corsat/red, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/security) -"nKP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"nLa" = ( -/turf/open/floor/corsat/green/northeast, -/area/corsat/gamma/hallwaysouth) -"nLg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen, +"nQW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"nLi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome) -"nLv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"nLx" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" +/area/corsat/gamma/engineering) +"nRe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Reactor Core"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"nLE" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/checkpoint) -"nLI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"nRi" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/security) -"nLR" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"nLS" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"nMb" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"nMf" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/west/id) -"nMk" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"nMp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/scrapyard) +"nRl" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar) +"nRr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "12" }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/corsat/gamma/sigmaremote) -"nMH" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"nRs" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"nRv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"nRC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"nRD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"nMK" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"nMQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"nMZ" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"nRQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"nNi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"nNk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"nSj" = ( +/obj/structure/closet/bodybag, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar) -"nNv" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"nNy" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, +/area/corsat/omega/hangar) +"nSk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) -"nNA" = ( -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"nOk" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" +"nSq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"nOF" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"nSr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control Office"; + req_access_txt = "102" }, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/gamma/sigmaremote) -"nOM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar/cargo) -"nOX" = ( -/obj/structure/pipes/binary/pump/high_power/on{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"nSt" = ( +/obj/structure/bed/chair/comfy/lime{ dir = 1 }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/theta/airlock/control) -"nOZ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"nSu" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"nPh" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/optable, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"nSw" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"nPr" = ( -/turf/open/floor/corsat/blue/west, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) -"nPw" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"nPA" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"nPG" = ( +"nSB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, +/obj/effect/alien/weeds/node, /turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) -"nPT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/virology) -"nQk" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"nQq" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"nQr" = ( -/obj/structure/machinery/light{ - dir = 1 +"nSF" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth) +"nSH" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hallways) -"nQx" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/security/cells) -"nQA" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"nSS" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaHCargoN"; - name = "Checkpoint Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaHCargoW"; - name = "Checkpoint Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaHangarCargoC"; - name = "Security Shutters"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"nSW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"nTi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"nQD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"nQQ" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"nQS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/corsat/gamma/security) +"nTq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"nQT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/sigma/dorms) -"nQX" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/security) -"nRa" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"nRc" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/tool/stamp/hos, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"nRd" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) -"nRs" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"nRv" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"nRw" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"nRU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/theta/airlock/control) -"nRX" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hangar/security) -"nSd" = ( -/turf/open/floor/corsat/theta, -/area/corsat/omega/checkpoint) -"nSj" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/control) -"nSn" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/toxins) -"nSK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/goat, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"nTh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"nTn" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering/atmos) -"nTr" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast) "nTx" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"nTE" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +"nTA" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/turf/open/floor/plating, -/area/corsat/sigma/biodome/testgrounds) -"nTJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome/scrapyard) -"nTQ" = ( -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/hallways) -"nUp" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth/id) -"nUx" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security) -"nUA" = ( -/obj/structure/sink{ +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"nUw" = ( +/obj/structure/machinery/door/window/southleft{ dir = 8; - pixel_x = -11 + layer = 2.8 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"nUP" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"nUV" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/welding/superior, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"nUO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"nUW" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Atmospherics"; - req_one_access_txt = "102" +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"nUT" = ( +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"nVb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"nUZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; +/area/corsat/omega/checkpoint) +"nVv" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"nVx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "CORSAT Library"; req_one_access = null }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"nVh" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) -"nVl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Disposals"; - req_one_access_txt = "102;101" - }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/disposal) -"nVm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"nVE" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"nVJ" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/inaccessible) +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) "nVP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/northeast, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"nVS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) +"nWb" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) "nWh" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/snack_bowl, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"nWk" = ( -/obj/structure/surface/table, -/obj/item/folder, -/obj/structure/platform{ - dir = 4; - layer = 2 +"nWp" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/sigma/cargo) +"nWv" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"nWz" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"nWZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"nWs" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"nXb" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/security) +"nXe" = ( /obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"nXh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"nWL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/datamaint) -"nXa" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"nXb" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"nXx" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"nXA" = ( -/obj/structure/platform{ +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"nXm" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/security) +"nXw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 4; - layer = 2 + network = list("theta") }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/blue/northwest, +/area/corsat/theta/airlock/control) "nXB" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/theta/airlock/east) +"nXP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"nXS" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"nYk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"nYq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/airlock/north) +"nYx" = ( +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"nYz" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"nYK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"nYQ" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar) +"nZa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"nZb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"nZq" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"nZG" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/security) +"nZR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"nZT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"oao" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) +"oav" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"oaK" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"oaM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"oaO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"oaZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/south) -"nXP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/hangar/office) -"nYk" = ( -/turf/open/floor/carpet11_12/west, +"obg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Medical Lobby"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"obp" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"obE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHCargoN"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"obJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"nYm" = ( +"obK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"obS" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/omega/control) +"obZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"ocd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/id) +"ocj" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"ocB" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaEastE"; + name = "Theta East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"ocI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"ocO" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"ocR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"nYv" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" +/area/corsat/sigma/cargo) +"ocS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"ocV" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/corsat/sigma/biodome/gunrange) +"ocW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"nYG" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/office) -"nZo" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"ocX" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/datamaint) +"odk" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"nZp" = ( /turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"nZz" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"nZF" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/sigma/south/complex) +"odp" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"odB" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "3" }, -/obj/structure/flora/pottedplant, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"odJ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Teleport Control"; + req_one_access_txt = "101" }, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/administration) -"nZK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"nZR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"odX" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "101" }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"oad" = ( -/obj/structure/sign/safety/biolab, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hallwaysouth) -"oau" = ( -/turf/open/floor/corsat/brown, -/area/corsat/omega/cargo) -"oaS" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"obc" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhite/north, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) -"obe" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/north) -"obv" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"obI" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4 +"odY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/yellow/southeast, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) -"obL" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/sigma/hangar) -"obO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east) -"ocd" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"ocg" = ( -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ocN" = ( -/obj/structure/surface/table, -/obj/item/folder, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"odo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail/control) -"odp" = ( +"oeb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"odA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/gamma/administration) -"odK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"oek" = ( +/obj/structure/platform{ + density = 0; dir = 1; - name = "CORSAT Armory"; - req_access_txt = "101" + icon_state = "platform_deco" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/armory) -"odP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"odR" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/south/robotics) -"odU" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"odZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarNE"; - name = "Checkpoint Control"; - use_power = 0 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"oeA" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar/security) -"oes" = ( -/obj/structure/machinery/camera/autoname{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - network = list("sigma") + name = "Identification Desk"; + req_access_txt = "104" }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"oev" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"oeG" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Airlock Control" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaIDSC"; + name = "Security Shutters" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"oeJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"oeE" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oeF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"oeI" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"oeL" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"ofa" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"oeR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/biodome/complex) -"oeU" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/hallwaysouth) -"oeX" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"ofi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"ofl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"ofg" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "25" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"ofp" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/southeast/dataoffice) +"ofz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"ofv" = ( -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome/scrapyard) -"ofC" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"ofV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ofA" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ - dir = 4 + dir = 8; + health = 80 + }, +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/obj/item/storage/donut_box, /turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) +/area/corsat/omega/offices) +"ofG" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"ofV" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"oga" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Baths" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) "oge" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"ogi" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/control) -"ogl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"ogv" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +"ogn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"ogz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/surface/rack, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"ogC" = ( +/obj/structure/window/reinforced, /turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"ogN" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) -"ogy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"ogV" = ( -/obj/structure/bed/chair/office/light{ +"ogW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"ogZ" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"ohd" = ( -/obj/structure/machinery/m56d_hmg{ - dir = 1 - }, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"ohb" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/gunrange) -"ohj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/foyer) +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"ohc" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/theta/airlock/east) +"ohu" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) "ohy" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Containment Cell"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, +/obj/structure/sign/safety/biohazard, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) -"oic" = ( -/obj/structure/machinery/light{ +"ohB" = ( +/obj/structure/pipes/binary/pump/on{ dir = 1 }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"oid" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/theta/airlock/control) +"ohD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"ohH" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/north) +"ohY" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"oib" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Oxygen Supply Console" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"oii" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"oik" = ( -/turf/open/floor/corsat/yellowcorner/west, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/airlock/control) -"oir" = ( +"oij" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"oin" = ( /obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"oit" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/checkpoint) "oiu" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/corsat, /area/corsat/sigma/south/engineering) -"oiC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/pump{ +"oiK" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"oiG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"oiO" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) "oiQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"oiV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/airlock/south) "oiW" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed/right{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "\improper coolant feed" - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"oiX" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"ojb" = ( -/obj/structure/machinery/computer/rdservercontrol, +/turf/open/floor/carpet6_2/west, +/area/corsat/omega/offices) +"ojC" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"okg" = ( +/obj/structure/filingcabinet/filingcabinet, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"ojg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, +/area/corsat/gamma/biodome/complex) +"okw" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/id) +"okF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"ojz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"ojC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/south) -"ojJ" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/hangar/office) -"ojV" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/hallwaysouth) -"oki" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/hangar) -"okm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) +/area/corsat/sigma/south/security) +"okM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) "okT" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -27887,121 +28127,134 @@ }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"olj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"oll" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/vents/pump{ - dir = 1 +"okZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"olU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"olq" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"olw" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) "olY" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/xeno_spawn, /turf/open/floor/almayer/research/containment/floor2, /area/corsat/inaccessible) -"omk" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"omv" = ( -/turf/open/mars_cave/mars_cave_14, -/area/corsat/sigma/biodome/scrapyard) -"omJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") +"omf" = ( +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"omM" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"omY" = ( +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"omt" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaDSC"; - name = "Security Shutters"; - use_power = 0 +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"omF" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/north/id) -"ona" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 6 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"omG" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"omX" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/dorms) +"onf" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) "ong" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) +"onj" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"onn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) "onp" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south/id) -"onD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"onw" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"onP" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"ooi" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaWestW"; - name = "Theta West Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"oom" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/hangar/monorail) -"ooJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"onC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"onT" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/residential) +"ooc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"ood" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"ooq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"ooL" = ( -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) -"ooM" = ( -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/administration) -"ooN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) +"oot" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) "ooX" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -28009,1186 +28262,1232 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"opc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +"opm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; - name = "Maintenance Closet"; - req_one_access = null + name = "Robotics Workshop"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/sigmaremote) -"opg" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/device/multitool, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/datamaint) -"opk" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) -"opr" = ( -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential) -"opu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"opv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/corsat/sigma/south/robotics) +"opn" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"opC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/structure/machinery/computer/atmos_alert{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"opF" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"opN" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"opQ" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;106;102" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) "opW" = ( /obj/effect/landmark/hunter_secondary, /turf/open/mars, /area/corsat/sigma/biodome) +"oqb" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"oqh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) "oqj" = ( -/obj/structure/tunnel{ - id = "hole0" +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"oql" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) "oqo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"oqO" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/sigma/south) -"oqP" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"oqQ" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) -"oqZ" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/north/id) -"orj" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"ork" = ( -/obj/item/handset, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/biodome/complex) -"orm" = ( -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) -"orv" = ( -/obj/structure/machinery/optable, -/obj/item/robot_parts/robot_suit, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"orA" = ( /obj/structure/machinery/light{ dir = 1 }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + req_access_txt = "201" + }, /turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth/id) -"orI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"orL" = ( -/turf/open/mars_cave/mars_cave_16, -/area/corsat/sigma/biodome/gunrange) -"orV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") +/area/corsat/gamma/airlock/control) +"oqE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south/id) -"orW" = ( -/obj/structure/machinery/door_control{ - id = "GammaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south) +"oqL" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"oqN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) -"osa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Hypersleep Chamber"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"ose" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"osk" = ( -/turf/open/floor/plating/warnplate, -/area/corsat/omega/hangar) -"oss" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"osz" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"oqR" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"osC" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"osL" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"ore" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/gunrange) +"orl" = ( /turf/open/floor/corsat/brown/east, -/area/corsat/gamma/cargo) -"osR" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"osS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"osU" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/area/corsat/omega/hallways) +"oro" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/foyer) -"osX" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"orp" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"osY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"otc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"oto" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) -"otu" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"orE" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"otL" = ( +/area/corsat/sigma/south/robotics) +"orG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"orI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"orS" = ( /obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"oub" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/sigma/south/complex) -"ouc" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"ouq" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"orV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - dir = 4 +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/landing/console2) -"ous" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"ouH" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"ouN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"osj" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/hangar/arrivals) +"osp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"ouR" = ( -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"osr" = ( +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/scrapyard) +"osA" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"ovb" = ( -/obj/structure/machinery/vending/dinnerware, +/obj/item/organ/heart, +/obj/item/organ/kidneys, +/obj/item/organ/kidneys, +/obj/item/organ/liver, +/obj/item/organ/lungs, +/obj/item/organ/brain, +/obj/item/organ/eyes, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"osB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"osC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"osD" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"ovf" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "20" + dir = 1 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"ovh" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/monorail) +"osQ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"osY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"otd" = ( /turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"ovo" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"ovr" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"ovt" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/area/corsat/omega/security) +"otk" = ( +/obj/structure/sink{ + pixel_y = 24 }, /turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"ovH" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/dorms) -"ovN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/area/corsat/gamma/residential/lavatory) +"ott" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"ovZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"otv" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"owh" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"owq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/east) -"owr" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/corsat/gamma/engineering) +"otA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"owv" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"otT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/omega/control) +"oue" = ( +/obj/structure/showcase{ + icon_state = "comm_server"; + name = "Communications Server" }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"owG" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/checkpoint) -"owN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"owQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/theta/airlock/east) -"owY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"oxd" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"oxq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"ouF" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"ouG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"ouQ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/east/id) -"oxs" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"oxw" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"oxB" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"oxC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"ova" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/west/id) +"ovg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"oxH" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"ovn" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" }, +/obj/item/clothing/head/beret/sec/warden, +/obj/item/clothing/mask/fakemoustache, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"ovr" = ( +/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"oxN" = ( +/area/corsat/omega/checkpoint) +"ovB" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/generator) -"oxO" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"ovG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"ovU" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"owh" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"owj" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"owv" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "24" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"owy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"owN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Bar" + }, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"oxQ" = ( -/obj/structure/surface/rack, -/obj/item/device/assembly/signaller, -/obj/item/device/assembly/signaller, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/prox_sensor, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"oxS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/rnr/bar) +"owR" = ( +/obj/structure/surface/table, +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"oxU" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"oyc" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/residential/maint) -"oyi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/corsat/gamma/residential/west) +"owS" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"oyk" = ( -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/omega/offices) -"oyD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Senior Engineer's Office"; - req_one_access_txt = "102" +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"oxb" = ( +/obj/item/trash/burger, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"oxd" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Administration Desk" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Administration Desk"; + req_access_txt = "104" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"oyM" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, /turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"oyX" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/gamma/administration) -"ozt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"oxg" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"ozu" = ( -/turf/open/floor/corsat/brown/northeast, -/area/corsat/omega/cargo) -"ozK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"oxi" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"oxG" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/chemistry) +"oxM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"oyD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"oyE" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"oyP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"ozh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"ozr" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"ozs" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/southeast/datalab) +"ozC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"ozF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) "ozR" = ( /turf/open/space/transit/east/shuttlespace_ew10, /area/corsat/sigma/hangar/monorail/railcart_transit) -"ozT" = ( -/obj/structure/closet/crate, -/obj/item/robot_parts/robot_component/actuator, -/obj/item/robot_parts/robot_component/armour, -/obj/item/robot_parts/robot_component/camera, -/obj/item/robot_parts/robot_component/diagnosis_unit, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"oAi" = ( -/obj/structure/machinery/light{ - dir = 1 +"ozW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"ozX" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"oAj" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/gamma/biodome/complex) +"oAl" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, /turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) -"oAw" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/hangar) -"oAO" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"oAW" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"oAm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Omega Dome Control" }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"oAY" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"oBv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"oBy" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"oBz" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/arrivals) -"oBD" = ( +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"oAs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "SigmaBioAtmos"; + name = "Access Shutter" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"oBM" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"oCd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Armory"; - req_access_txt = "101" +/area/corsat/sigma/airlock/control) +"oAt" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"oCf" = ( -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"oCG" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/containment) -"oCM" = ( -/obj/structure/janitorialcart, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"oAS" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"oBb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"oBi" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"oBm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/alien/weeds/node, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"oCW" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"oCZ" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) -"oDc" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"oDd" = ( -/obj/structure/closet/wardrobe/engineering_yellow, +/area/corsat/omega/hangar/security) +"oBv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/gamma/sigmaremote) +"oBG" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"oBK" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"oBP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/rnr) +"oBR" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"oCi" = ( +/obj/structure/closet/jcloset, /turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) -"oDf" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/hallwaysouth) -"oDr" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"oDv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/complex) -"oDF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"oDP" = ( -/obj/structure/machinery/computer/teleporter_console/corsat{ +"oCv" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"oCD" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"oCE" = ( /obj/structure/surface/table/reinforced, +/obj/item/tool/pen/red, /turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) -"oDW" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/omega/offices) -"oEk" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" +"oCI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"oEB" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/arrivals) +"oCK" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"oDj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security/cells) +"oDk" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/control) +"oDo" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"oDv" = ( /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) +/area/corsat/gamma/hangar/checkpoint) +"oDz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"oDH" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/control) +"oDO" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/obj/item/weapon/gun/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"oDT" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/airlock/control) +"oDX" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"oEr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"oEx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"oEA" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo) +"oEG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/generator) "oEK" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"oEM" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"oER" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"oET" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"oFa" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"oEV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"oEX" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"oFk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/checkpoint) -"oFw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"oFp" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential/researcher) -"oFJ" = ( -/turf/open/floor/corsat/green, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/hallwaysouth) +"oFs" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"oFH" = ( +/obj/item/paper, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"oFI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"oFP" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) +"oFQ" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/residential/lounge) +"oFR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay) +"oFS" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) "oFU" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/corsat, /area/corsat/sigma/cargo) -"oFX" = ( -/obj/structure/machinery/door_control{ - id = "SigmaBioAtmos"; - name = "Access Shutters"; - pixel_y = 24 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"oGc" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"oGi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"oGs" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) "oGz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"oGD" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) "oGI" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) -"oGQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"oGW" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/control) -"oGX" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" +"oGK" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/generator) +"oGN" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydrowest) +"oGT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/shuttle/escapepod/floor2, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) "oHc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"oHg" = ( -/turf/open/floor/corsat/brown, -/area/corsat/sigma/north) +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) "oHs" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/cargo) -"oHC" = ( -/obj/structure/machinery/light{ - dir = 4 +"oHx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/flightcontrol) -"oHJ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"oIn" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"oHM" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "23" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"oHQ" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"oIk" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) "oIu" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/disposal) -"oIw" = ( -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/biodome/complex) -"oIy" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) -"oIT" = ( -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"oIV" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, /turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) -"oJg" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/armory) -"oJh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Warden's Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oII" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"oIP" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"oIW" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"oIX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"oJl" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) +/area/corsat/sigma/airlock/control) +"oJc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) "oJn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/ice, /area/corsat/gamma/biodome) -"oJw" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/south) -"oJL" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"oJN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) -"oJO" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/theta/airlock/control) -"oJX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"oJY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, +"oJo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/atmos) +"oJv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"oKf" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/area/corsat/omega/control) +"oJC" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaWestW"; + name = "Theta West Airlock" }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/south) -"oKP" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"oJK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - health = 80 + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"oKS" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"oJS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"oJU" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/hangar) "oLe" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) +"oLf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) "oLg" = ( /obj/effect/alien/weeds/node, /turf/open/floor/almayer/research/containment/floor2, /area/corsat/inaccessible) -"oLn" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"oLj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) "oLr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"oLu" = ( /obj/structure/surface/table/reinforced, -/obj/item/tool/lighter/random, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"oLE" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"oLG" = ( +/obj/structure/bed/chair, /turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"oLx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_14, -/area/corsat/sigma/biodome) -"oLD" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"oLR" = ( +/area/corsat/sigma/south/security) +"oLI" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"oLJ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "21" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"oLK" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"oLM" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"oLW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/obj/item/clothing/gloves/latex, +/obj/item/clothing/suit/chef/classic, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"oMg" = ( -/obj/structure/bed/chair/office/light{ +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"oLW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"oMm" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"oMn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"oMq" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/hallwaysouth) "oMw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 4 +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/airlock/north) -"oMM" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/cryofeed/right{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "\improper coolant feed" }, -/obj/structure/machinery/camera/autoname{ +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"oMF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ dir = 1; - network = list("gamma") + name = "Quartermaster's Office"; + req_one_access_txt = "100" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"oMU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"oNb" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering/core) -"oNf" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"oMJ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/theta/biodome/complex) +"oMM" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"oMU" = ( +/obj/effect/landmark/yautja_teleport, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/sigma/dorms) -"oNl" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/airlocknorth/id) -"oNw" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"oMW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"oNM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"oOh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHCargoC"; + name = "Security Shutters" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"oOQ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar) -"oOR" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/monorail/control) -"oPl" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) +/area/corsat/sigma/hangar/id) +"oNt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"oNu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/security) +"oNC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"oNJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"oNN" = ( +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"oOI" = ( +/obj/structure/bed/chair/comfy, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"oOT" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/foyer) +"oOY" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"oPi" = ( +/obj/structure/surface/rack, +/obj/item/device/transfer_valve, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"oPj" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/west) "oPq" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/sigma/dorms) -"oPr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/southeast/datalab) -"oPt" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"oPx" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/residential) -"oPA" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/residential/lounge) +"oPE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) "oPI" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"oPM" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/dorms) +"oPT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"oQp" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"oQs" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/surface/table/woodentable, /turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) -"oPV" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/rnr) -"oQb" = ( -/obj/structure/powerloader_wreckage, -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome/scrapyard) -"oQc" = ( +"oQC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"oQD" = ( /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"oQg" = ( -/obj/structure/machinery/light{ +/area/corsat/gamma/hangar/checkpoint) +"oQF" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"oQH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaCheckpointC"; + name = "Security Shutters"; + pixel_x = 7; + use_power = 0 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/canteen) -"oQi" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"oQJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"oQN" = ( +/turf/open/floor/corsat/darkgreen/northeast, +/area/corsat/gamma/hangar/arrivals) +"oQW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"oRe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"oRv" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"oRx" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/north/id) +"oRA" = ( +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"oRE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/control) +"oRL" = ( +/turf/open/floor/carpet11_12/west, +/area/corsat/omega/offices) +"oRM" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"oRN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"oRT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"oRZ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"oSa" = ( +/obj/item/device/taperecorder, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"oSw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"oSy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"oSA" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"oSU" = ( +/obj/structure/machinery/computer/rdservercontrol, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"oSV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"oTn" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"oTp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"oTC" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"oTH" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/biodome/complex) -"oQo" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"oTL" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"oTO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"oTS" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"oTT" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"oQt" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"oQB" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"oQF" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"oQH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"oRb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black_random, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"oRi" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"oRk" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"oUa" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"oUd" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"oRm" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security/armory) -"oRp" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"oRs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"oRM" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/peripherals/work_loader, -/obj/item/circuitboard/exosuit/peripherals/work_loader, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"oRX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/dorms) -"oSh" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/almayer/plating_striped, -/area/corsat/gamma/sigmaremote) -"oSl" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"oUq" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/east/id) -"oSo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"oSu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"oSC" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/theta/airlock/east) -"oSQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/hallwaysouth) -"oSY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_12, -/area/corsat/sigma/biodome) -"oTL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_south, -/area/corsat/sigma/hangar) -"oTQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"oTR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Telecommunications"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + network = list("omega") }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/generator) -"oTV" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"oUk" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"oUG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) "oUJ" = ( /obj/structure/flora/jungle/vines/light_1, /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"oUQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/hallwaysouth) -"oUT" = ( -/obj/structure/machinery/light{ +"oUX" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"oUX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"oUY" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"oVi" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"oUY" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"oVl" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/corsat/theta/biodome/hydrowest) +"oVt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Auditorium" }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential/east) -"oVn" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"oVD" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) "oVF" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/simple/hidden/green{ @@ -29196,173 +29495,227 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"oVZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential/east) +"oVW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) "oWb" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"oWf" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/southeast) +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/engineering) +"oWe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) "oWk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"oWo" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"oWu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"oWx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oWX" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"oWp" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/cargo, +/area/corsat/omega/airlocknorth/id) +"oWY" = ( +/turf/open/floor/corsat/brown/northwest, /area/corsat/omega/cargo) -"oWt" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") +"oXc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oXd" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"oXs" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"oWx" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"oXu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"oXB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/hallwaysouth) -"oWF" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"oWN" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/datamaint) -"oWV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Xenobiology"; + req_access_txt = "103" }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/airlock/south/id) -"oXa" = ( -/turf/open/floor/corsat/brown/southwest, -/area/corsat/sigma/cargo) -"oXh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"oXr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"oXw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"oXx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"oXG" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/scrapyard) +"oXP" = ( +/turf/open/mars_cave/mars_cave_4, +/area/corsat/sigma/biodome/gunrange) +"oXW" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/checkpoint) -"oXI" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) "oYb" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"oYg" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"oYi" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"oYj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"oYl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 +/obj/structure/window/reinforced, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"oYk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"oYu" = ( -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) -"oYD" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Administration Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "104" +"oYm" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"oYs" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "23" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"oYy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"oYz" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"oYA" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"oYB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/corsat/spiralplate, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/administration) -"oZz" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) -"oZG" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/hangar/office) -"oZI" = ( +"oYD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"oYI" = ( +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"oYJ" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"oZg" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"oZk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"oZO" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"oZP" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hallways) +"oZT" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) "oZW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"pae" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +"oZY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Hangar Office" }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"pah" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"pal" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"paa" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"paf" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "6" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"pan" = ( +/obj/item/paper/crumpled, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"par" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"pat" = ( +/obj/structure/largecrate/supply/ammo/m39/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"pav" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) "paH" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -29370,597 +29723,675 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"pbq" = ( +"paM" = ( +/obj/structure/safe, +/obj/item/device/locator, /turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"pbu" = ( +/area/corsat/gamma/sigmaremote) +"paU" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"pbj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"pbk" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"pbq" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"pbu" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/residential) +"pbH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) "pbK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"pbQ" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"pbW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"pbL" = ( +/obj/vehicle/train/cargo/trolley, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"pbP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"pbY" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/theta/airlock/control) +"pbT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"pci" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"pcj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"pcv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) -"pcL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"pcf" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"pcr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"pcx" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/administration) +"pcy" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/generator) +"pcE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Atmospherics"; + req_one_access_txt = "102" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"pcS" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/engineering/atmos) +"pcL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Food Storage"; + req_one_access = null }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"pda" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "GammaEastW"; - name = "Gamma East Airlock" +/area/corsat/gamma/hydroponics) +"pcV" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"pdf" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) "pdg" = ( /turf/open/space/transit/east/shuttlespace_ew10, /area/space) -"pdl" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/south/offices) -"pdq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"pdr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"pdD" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Xenobiology Reception Desk"; + req_one_access_txt = "103" }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"pdv" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"pdH" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"pdx" = ( -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"pdN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"pdI" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/southeast) +"pdT" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) "pdX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"peb" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"pef" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"pei" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo) -"pem" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/south/offices) -"pew" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"peJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"peL" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"pfC" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/sigma/dorms) -"pfE" = ( +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"pee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"pej" = ( /obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"pek" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/theta/airlock/control) +"pem" = ( +/obj/structure/bed/chair/comfy/black, /turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/armory) -"pfT" = ( -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"pfZ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"pgd" = ( -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo) -"pgs" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ +/area/corsat/gamma/hangar/checkpoint) +"per" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) +"pet" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"pex" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/revolver/m44, -/obj/item/weapon/gun/revolver/m44, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"pgt" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/southeast/datalab) +"peC" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydroeast) +"peD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"pfb" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"pgw" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/security) +"pff" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "7" + index = "24" }, /turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) -"pgy" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Teleporter Power Room"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"pgO" = ( -/obj/structure/flora/jungle/vines/heavy, +"pfo" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck/uno, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"pfp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/atmos) +"pfy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"pgP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/lobby) -"pgR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "CORSAT Library" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"pfC" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"pfE" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/gunrange) +"pfJ" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"pfR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"phb" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"pfY" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) -"pho" = ( /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west/id) -"php" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/corsat/theta/biodome/complex) +"pgI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"phA" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"pgO" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"pgS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaEastID2"; + name = "Security Shutters"; + use_power = 0 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"phD" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/east/id) +"pgW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"phL" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/checkpoint) -"phU" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/hangar/monorail) -"pig" = ( -/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"pha" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"phc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"phe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"phh" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/south) -"pii" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"pin" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"phj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) -"pip" = ( -/obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"piJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/corsat/gamma/hangar/security) +"phw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"phB" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"phE" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/airlock/north) +"pih" = ( +/obj/structure/surface/table/almayer, +/obj/item/robot_parts/robot_component/radio, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"pij" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/biodome/complex) +"pim" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/southeast/dataoffice) +"pis" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/clipboard, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"piA" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) "piZ" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/gamma/residential/researcher) -"pjh" = ( -/turf/open/floor/corsat/whitetan/southeast, +"pje" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"pjp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"pjj" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker, +"pju" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"pjA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"pjC" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"pjs" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/north) -"pjx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"pjL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"pjV" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/corsat/omega/complex) +"pjF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"pjG" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hangar/monorail) +/obj/structure/window/reinforced, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"pjY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) "pkc" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "pkg" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"pkX" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/corsat/squares, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"pkM" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"pkU" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) -"plm" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Toxins Lab"; - req_one_access_txt = "103" +"pla" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"plb" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"pli" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"plw" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/complex) +"plm" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"plp" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/biodome/complex) "plz" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) "plI" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/airlock/north) -"plN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential) +"plL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) "plV" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"pmp" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"pmx" = ( +"pmq" = ( /obj/structure/surface/table, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"pmC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"pmF" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"pmL" = ( +/obj/item/folder, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"pmQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"pmN" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/complex) +"png" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"pnq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/flightcontrol) "pnt" = ( /obj/structure/xenoautopsy/tank/alien, /turf/open/floor/corsat, /area/corsat/omega/complex) -"pnI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaE"; - name = "Airlock Control"; - pixel_x = 8; - pixel_y = 3; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaN"; - name = "Airlock Control"; - pixel_x = -2; - pixel_y = 8; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaS"; - name = "Airlock Control"; - pixel_x = -2; - use_power = 0 +"pnJ" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/airlocknorth) -"pnO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) "pnQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"pnY" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda/beer{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"poy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"pnS" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"poA" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar) -"poI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/mech/tesla_energy_relay, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"poN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/airlock/south) -"ppm" = ( -/obj/structure/machinery/light{ +"pnT" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) -"ppB" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/omega/cargo) +"pnV" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"poc" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"poi" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 1 + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"pol" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"poD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Teleporter Power Room"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"poF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"ppI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"poN" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"poP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"poW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"ppg" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/hallwaysouth) +"ppl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) +"ppo" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/south) +"ppJ" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = -32 }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/sigma/dorms) -"ppO" = ( -/obj/item/implant/loyalty, -/obj/item/implant/loyalty, -/obj/item/implant/compressed, -/obj/item/implant/compressed, -/obj/structure/surface/rack, /turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) +/area/corsat/theta/biodome/hydroeast) "ppP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/corsat/gamma/biodome) -"pqd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"pqz" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 +"ppU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaSouthID"; + name = "Security Shutters"; + use_power = 0 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"pqC" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/id) -"pqE" = ( -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome/gunrange) -"pqN" = ( -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"pqU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"prr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/corsat/gamma/airlock/south/id) +"pqr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"pqu" = ( +/obj/item/cell/crap, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"pqz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"prz" = ( -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"prD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/corsat/gamma/airlock/control) +"pqF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"pro" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"prp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"prE" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) "prI" = ( /obj/structure/pipes/vents/pump/on, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"psa" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome) -"psd" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_theta"; - name = "Theta Emergency Access"; - use_power = 0 +"prP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"prZ" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/omega/hallways) +"psj" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "SigmaSouthS"; + name = "Sigma South Airlock" }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"psu" = ( -/obj/structure/bed/chair, -/obj/item/bananapeel, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"psC" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/sigma/airlock/south) +"psq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"psw" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"psx" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"psJ" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"psy" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"psS" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/core) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"psM" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"psT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) "psV" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/camera/autoname{ @@ -29968,138 +30399,75 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"psX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/hallways) "pta" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "101" - }, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"ptd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"ptf" = ( -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"ptl" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "18" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"pto" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"pty" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, +/obj/structure/machinery/computer/rdconsole, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"ptJ" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar/office) -"ptK" = ( -/obj/structure/surface/rack, -/obj/item/oldresearch/Resin, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"ptP" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"ptR" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"ptV" = ( +/area/corsat/sigma/south/complex) +"ptc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"pui" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"pti" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"ptk" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"ptv" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/hallwaysouth) +"ptw" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; + dir = 1; network = list("theta") }, -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/theta/biodome/complex) -"pus" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "24" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"pty" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/residential) +"ptM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Telecommunications"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"puv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"puz" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/north/id) -"puG" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) -"puH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"puJ" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/core) -"puM" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"puP" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"puR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"pvl" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/telecomm) +"pub" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"pul" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"puo" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"puE" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"pvc" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/sigmaremote) -"pvs" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/armory) +"pvz" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"pvv" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"pvy" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/hangar/monorail) +/obj/item/paper_bin, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/sigma/cargo) "pvA" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -30107,520 +30475,528 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"pvO" = ( -/obj/structure/closet/secure_closet/brig{ - id = "CORSAT Sec 1" - }, -/obj/structure/machinery/brig_cell{ - id = "CORSAT Sec 1"; - name = "Cell 1"; - pixel_x = -32 +"pvE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"pvW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"pvQ" = ( +/obj/structure/machinery/bioprinter{ + req_access_txt = "100" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"pvX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/arrivals) -"pwa" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/office) +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) "pwe" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 8; - layer = 2.8 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/machinery/shower{ - dir = 1 +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) +"pwf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/item/tool/soap, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/airlock/north/id) "pwp" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 1; icon_state = "single_ends" }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"pwD" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/southeast/datalab) -"pwJ" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hangar) -"pwN" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"pwP" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/security/armory) -"pwZ" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"pxd" = ( -/obj/structure/filingcabinet/filingcabinet, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"pwF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"pwH" = ( +/turf/open/floor/corsat/darkgreen/northeast, +/area/corsat/gamma/hangar/monorail) +"pwS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/southeast/generator) +"pwU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"pxm" = ( +/turf/open/mars_cave/mars_cave_19, +/area/corsat/sigma/biodome/scrapyard) +"pxs" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Weapons Development"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"pxE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"pxG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"pxJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"pxK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/complex) +"pxR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"pya" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"pyg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"pyk" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"pyq" = ( +/obj/structure/machinery/door/window/brigdoor/southleft{ + id = "CORSAT Sec 2"; + name = "Cell 2" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"pyv" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, /turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"pxg" = ( +/area/corsat/gamma/biodome/complex) +"pyA" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/residential) -"pxh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"pxq" = ( -/obj/structure/toilet{ - dir = 8 + dir = 4; + network = list("sigma") }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"pyG" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/hallwaysouth) +"pyI" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"pxr" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"pyW" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"pxK" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"pzb" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; + dir = 1; + name = "Omega Dome Control"; req_one_access_txt = "102" }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"pxM" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar/monorail) -"pxX" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"pya" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"pyf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"pyk" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"pym" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"pzd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"pyq" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"pyG" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"pzw" = ( +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"pzy" = ( +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) +"pzU" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hallways) -"pyO" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/sigma/south) -"pyR" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"pAe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"pAx" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"pyT" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"pAy" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"pAE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"pAZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"pBe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"pyU" = ( +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"pBg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"pBj" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"pyY" = ( +/area/corsat/omega/hangar/security) +"pBs" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - reason = "Visitor" - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"pyZ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"pzn" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/obj/item/device/analyzer, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"pBB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/checkpoint) +"pBC" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo) +"pBF" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/residential) +"pBM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/red/east, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south/security) -"pzs" = ( -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"pAA" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/canteen) -"pAF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) -"pAG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/hallwaysouth) -"pAQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ +"pBY" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 1 }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"pAX" = ( -/obj/structure/machinery/shower{ +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"pCm" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"pBd" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"pCy" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, +/obj/item/storage/firstaid/fire, /obj/structure/machinery/camera/autoname{ - network = list("gamma") + dir = 1; + network = list("omega") }, -/turf/open/floor/corsat/bluegrey/north, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"pCA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"pCE" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"pCJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) -"pBp" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/omega/maint) -"pBA" = ( -/obj/structure/bed/chair{ +"pCK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"pBP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"pBS" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"pCR" = ( /obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/clonescanner, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"pCf" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"pCm" = ( -/obj/item/paper, -/obj/item/tool/pen/red, -/obj/item/tool/stamp/rd, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"pCC" = ( -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/east) -"pCG" = ( -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"pCH" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"pDa" = ( -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"pDj" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/dice/d20, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"pDk" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"pCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) "pDm" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"pDo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainance"; + name = "Maintainence"; req_one_access = null }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/offices) -"pDx" = ( -/obj/structure/machinery/light, +/area/corsat/gamma/residential/researcher) +"pDp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"pDv" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"pDD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, /turf/open/floor/corsat/blue, -/area/corsat/gamma/hallwaysouth) -"pDC" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) +/area/corsat/omega/control) +"pDJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"pDM" = ( +/obj/structure/machinery/computer/skills{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"pDQ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Airlock Control" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) "pDR" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/biodome) -"pEt" = ( -/obj/effect/decal/cleanable/blood/splatter, +"pDZ" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"pEa" = ( /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"pEN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"pFb" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/inaccessible) -"pFc" = ( +/area/corsat/gamma/hangar/arrivals) +"pEi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"pEn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"pEu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras{ - dir = 4; + dir = 8; network = list("omega") }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"pFj" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/hangar/monorail/control) -"pFk" = ( -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/administration) -"pFs" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat/purplecorner, -/area/corsat/omega/airlocknorth) -"pFt" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"pEN" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"pFz" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"pFR" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"pFS" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"pGd" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/southeast/datalab) -"pGe" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"pGg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"pGm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"pEU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"pEV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"pGz" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"pFE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/airlocknorth) +"pFF" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth/id) -"pGA" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"pGI" = ( -/obj/structure/flora/pottedplant, +"pFJ" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) +"pFS" = ( +/obj/structure/showcase{ + icon_state = "broadcast receiver"; + name = "Subspace Receiver" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"pFV" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; + dir = 1; network = list("sigma") }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"pGQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"pGY" = ( -/obj/structure/machinery/light, -/obj/item/clothing/mask/gas, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"pHJ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/engineering) -"pHR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"pFY" = ( +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"pGB" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"pGU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"pHY" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"pHr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"pHX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar) "pIc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"pIg" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"pIh" = ( +/obj/structure/bed/chair/comfy, /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") + network = list("gamma") }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast) -"pIi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) "pIj" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"pIn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) "pIo" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"pIr" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"pIG" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"pIJ" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"pIL" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Containment Unit"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +"pIF" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"pIJ" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"pIN" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) "pIR" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Teleport Control"; - req_one_access_txt = "101" +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"pJb" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast) +"pJc" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"pJd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"pJg" = ( +/obj/structure/curtain/shower, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"pJi" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"pJp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"pJB" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"pJC" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"pJE" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/checkpoint) +"pJP" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"pIV" = ( -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/hallwaysouth) -"pIY" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/airlock/north) -"pJh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential/east) -"pJl" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"pJw" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south) -"pJy" = ( -/obj/structure/surface/rack, -/obj/item/cell/potato{ - charge = 1000; - maxcharge = 3000; - name = "overpowered potato" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"pJI" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"pKj" = ( /obj/structure/machinery/door/window/southleft{ dir = 1; layer = 2.8 @@ -30631,94 +31007,48 @@ /obj/item/tool/soap, /turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) -"pJP" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"pJU" = ( +"pKw" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"pKy" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"pKI" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"pKM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Medical Bay"; + req_one_access = null }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"pJV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"pKs" = ( -/obj/item/clothing/head/beret/sec/warden, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"pKx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"pKz" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"pKD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/surgery) -"pKN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"pKP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"pKU" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) -"pKT" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/shuttle/escapepod/floor12, -/area/corsat/theta/biodome/complex) +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) "pKW" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"pKZ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"pLb" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/mousetrap, -/obj/item/device/assembly/mousetrap, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"pLq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"pLD" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) +/area/corsat/sigma/southeast/datalab) +"pKZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/flashbang/cluster, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"pLh" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/hallwaysouth) +"pLw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) "pLO" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -30728,626 +31058,596 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar/security) +"pLP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) "pMf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("sigma") +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"pMx" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"pMz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/gamma/sigmaremote) +"pMO" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/hangar/flightcontrol) +"pMV" = ( /turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/id) -"pMj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"pMo" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"pMq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/t_scanner, +/area/corsat/theta/airlock/control) +"pNe" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"pNo" = ( /turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"pMs" = ( -/turf/open/floor/plating/warnplate/west, -/area/corsat/omega/hangar) -"pMC" = ( +/area/corsat/sigma/southeast) +"pNs" = ( +/obj/structure/bed/chair/comfy/black, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"pMM" = ( -/obj/structure/bed/chair/comfy/black{ +/area/corsat/theta/airlock/control) +"pNB" = ( +/obj/structure/machinery/light{ dir = 8 }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"pNG" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"pNN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/rd, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"pNR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"pNc" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"pNh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail/control) -"pNi" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mmi/radio_enabled, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"pNo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Robotics Storage"; - req_one_access_txt = "102" +/area/corsat/sigma/hangar) +"pNU" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"pNY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"pOc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"pOe" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/id) +"pOm" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"pNG" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"pOn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/hallways) -"pNN" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/residential/lounge) -"pNO" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"pNP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast) -"pNW" = ( -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome/scrapyard) -"pOp" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) "pOs" = ( /obj/structure/machinery/colony_floodlight{ dir = 4 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"pOG" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"pOK" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"pPa" = ( -/obj/structure/barricade/handrail{ - layer = 3 +"pON" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"pOR" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"pOV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/autopsy_scanner, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) "pPf" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"pPv" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"pPo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"pPr" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) "pPN" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"pPP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pPS" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"pQm" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"pPT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/chemistry) +"pQb" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "7" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"pQi" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) "pQo" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"pQp" = ( -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"pQv" = ( -/obj/item/tool/soap, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"pQD" = ( +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/dorms) +"pQy" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"pQI" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail/control) -"pQS" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/security) -"pRk" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"pQN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"pQU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"pQX" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"pRc" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"pRf" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "9" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) "pRl" = ( /turf/open/floor/corsat, /area/corsat/omega/maint) +"pRo" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"pRH" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/heart, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"pRI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"pRL" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/omega/maint) +"pRM" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) "pRN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"pRR" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar/security) -"pSe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Laundry" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"pSj" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"pRR" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet14_10/west, +/turf/open/floor/carpet6_2/west, /area/corsat/gamma/residential/lounge) +"pRU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"pSf" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "25" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"pSn" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) "pSo" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"pSy" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Nitrogen Control Console" +"pSs" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/theta/airlock/control) +"pSw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) "pSE" = ( -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/sigma/hangar/monorail) +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/south/id) +"pSH" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/southeast) +"pSK" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/residential) +"pSM" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/cargo) +"pSS" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"pSX" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"pSY" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) "pSZ" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"pTl" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"pTn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) "pTp" = ( /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"pTq" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"pTs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"pTv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/complex) -"pTu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"pTB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; + pixel_x = -5; + use_power = 0 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"pTw" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, +/obj/structure/machinery/door_control{ + id = "delta_gamma2"; + name = "Checkpoint Gamma"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) -"pTx" = ( -/obj/structure/machinery/light{ - dir = 1 +"pTF" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaHangarN"; + name = "Landing Bay Omega" }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast/datalab) -"pTz" = ( -/turf/open/floor/corsat/green, -/area/corsat/gamma/medbay/morgue) -"pTB" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"pTO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/platform{ +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"pTX" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"pTH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"pTT" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"pTU" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/core) -"pTW" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - name = "\improper Xeno Autopsy"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"pUf" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/gunrange) -"pUl" = ( -/obj/item/xeno_egg, -/obj/item/xeno_egg, -/obj/item/xeno_egg, -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"pUn" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"pUw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"pUS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"pUU" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/checkpoint) +"pVe" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"pVi" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/airlocknorth) +"pVl" = ( +/obj/item/implant/death_alarm, +/obj/item/implant/death_alarm, +/obj/item/implant/tracking, +/obj/item/implant/tracking, /obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security/armory) -"pUq" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"pVy" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"pUC" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"pUH" = ( -/turf/open/floor/corsat/greencorner, -/area/corsat/gamma/medbay/morgue) -"pUR" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar) +"pVE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"pUT" = ( -/turf/open/floor/carpet10_8/west, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"pVH" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/rnr) +"pVI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"pWe" = ( +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) -"pUV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"pVn" = ( -/obj/structure/bed/chair{ - dir = 4 +"pWp" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 3"; + req_one_access_txt = "103" }, -/obj/structure/barricade/handrail{ - layer = 3 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"pWz" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/airlock/control) +"pWB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"pVs" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/residential/west) -"pVw" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/dorms) -"pVz" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) -"pVY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"pWi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pWD" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" }, -/turf/open/floor/corsat/whitetan, -/area/corsat/sigma/dorms) -"pWP" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) "pWR" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) "pWU" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome/gunrange) +"pXe" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"pXf" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast) -"pXl" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/monorail) "pXp" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"pXq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"pXs" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) +"pXv" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast) "pXx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"pXD" = ( -/obj/item/tool/minihoe, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) +"pXA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"pXE" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/hangar) +"pXI" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/core) +"pXK" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) "pXM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"pXP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "\improper Bar Rear" + name = "\improper Canteen" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"pXT" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"pYb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-S"; - name = "Security Shutters"; - use_power = 0 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"pZe" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/omega/hallways) -"pZA" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"pZB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"pZE" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"pXS" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"pYe" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"pZF" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Engineering Desk" +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/southeast/dataoffice) +"pYg" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"pYj" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/north) +"pYm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Engineering Desk"; - req_access_txt = "13" + name = "Identification Desk" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/lobby) -"pZL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/omega/control) -"pZN" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/disposal) -"qap" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaEastD"; - name = "Entrance Airlock Control"; - pixel_x = 5; - use_power = 0 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC"; + name = "Security Shutters" }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"qax" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/cargo) -"qay" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"qaA" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/east) -"qaM" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"qaW" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" +/area/corsat/sigma/hangar/checkpoint) +"pYt" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"qbk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Custodial Closet"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"qbl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/corsat/emergency_access) +"pYP" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/flasher{ + pixel_y = 24 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"qbx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"pYT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"qbI" = ( -/obj/structure/bed/chair/comfy/black, /turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"qbK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/checkpoint) -"qbL" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/area/corsat/omega/hangar/security) +"pZb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"qbU" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"qbV" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-E"; - name = "Security Shutters" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"pZn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) -"qco" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, +/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"qcx" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/biodome/virology) +"pZo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"qcy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"qcz" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"pZq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"qcJ" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/platform, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/hallwaysouth) -"qcN" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/theta/airlock/west/id) +"pZs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"pZx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/checkpoint) -"qdi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"qdt" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"qdz" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) +"pZS" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -31363,94 +31663,171 @@ }, /turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) -"qdJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"pZU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"pZZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/omega/offices) +"qag" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"qao" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"qaF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"qaL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner, +/area/corsat/theta/airlock/control) +"qaT" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "15" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"qbd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"qbf" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"qbL" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"qbV" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC-E"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"qci" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"qcm" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/sigma/cargo) +"qcr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"qdN" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"qdP" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"qcx" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"qcz" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"qcQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"qdU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"qed" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"qef" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Dehydration Chamber"; - req_one_access_txt = "103" +/area/corsat/gamma/engineering) +"qdd" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"qdh" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"qdl" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"qdm" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"qdw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"qdV" = ( +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) +"qdY" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) "qel" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) -"qep" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/south/id) +/obj/structure/surface/rack, +/obj/item/toy/plush/farwa, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) "qer" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"qeG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"qeH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"qeP" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) -"qeU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/door/airlock/almayer/research{ + name = "\improper Xeno Autopsy"; + req_access_txt = "103" }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-E"; - name = "Security Shutters"; - use_power = 0 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qeI" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"qeK" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"qfi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"qeO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/omega/control) +"qff" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/browncorner, -/area/corsat/omega/cargo) +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) "qfp" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -31460,590 +31837,496 @@ }, /turf/open/floor/plating, /area/corsat/omega/offices) -"qfw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +"qfu" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"qfN" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/hallwaysouth) +"qfX" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "6" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"qgf" = ( +/obj/structure/closet/emcloset, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"qfD" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/checkpoint) -"qfT" = ( -/obj/effect/alien/weeds/node, +/area/corsat/gamma/airlock/control) +"qgi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_13, +/area/corsat/sigma/biodome) +"qgC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" + }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"qfX" = ( -/obj/structure/surface/table, +/area/corsat/omega/complex) +"qgG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"qgv" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"qgH" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/administration) +"qgJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/hallwaysouth) -"qha" = ( -/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"qgO" = ( +/obj/item/stool, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"qgT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"qhg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"qhw" = ( +/area/corsat/omega/hangar/security) +"qhi" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"qhn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qhp" = ( +/obj/structure/machinery/light, /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) "qhG" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/residential/maint) -"qhP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hallways) -"qhR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/east, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/security) -"qia" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +"qhQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"qhS" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"qia" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) "qig" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"qih" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"qii" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"qim" = ( +"qiq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"qit" = ( +/obj/structure/machinery/light, /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"qip" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"qiv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay) -"qix" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south) +/obj/item/storage/belt/utility/full, +/obj/item/device/multitool, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/datamaint) "qiy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"qiH" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south) -"qiN" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHCargoN"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"qiP" = ( -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/canteen) -"qiR" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/omega/maint) -"qjk" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "8" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"qjm" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential/east) +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/hangar/flightcontrol) +"qiz" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) "qjn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"qju" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"qjw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/obj/structure/surface/rack, +/obj/item/evidencebag, +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/east/id) +"qjr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"qjx" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth) +"qjC" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"qjT" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) +/area/corsat/omega/hangar/office) +"qjO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) "qjZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"qkf" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"qkk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) "qkt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/ice, /area/corsat/gamma/biodome) -"qkF" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/cargo) -"qkM" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hallways) -"qkN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"qkP" = ( -/obj/structure/largecrate/chick, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"qkU" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"qlb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"qlc" = ( +"qld" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"qli" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"qlq" = ( -/obj/structure/machinery/light{ - dir = 1 + dir = 9 }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) "qlx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"qlL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"qlR" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"qlW" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet10_8/west, -/area/corsat/gamma/residential/lounge) -"qma" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"qmp" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" +"qlA" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"qlK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"qmK" = ( -/obj/item/storage/toolbox/mechanical, -/obj/structure/surface/rack, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"qmS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"qmW" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"qnl" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"qmk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"qmm" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"qmH" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/residential) +"qmL" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/biodome/complex) +"qmN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"qno" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/hangar/office) +"qmO" = ( +/obj/structure/bed/nest, +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"qmU" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"qmY" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/omega/hangar) "qnr" = ( -/turf/open/floor/corsat/purple/southeast, -/area/corsat/omega/complex) -"qnK" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/paper, -/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"qnu" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) +/area/corsat/gamma/administration) +"qnC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/checkpoint) +"qnM" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "21" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) "qnU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"qoe" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"qof" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/cargo) +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"qnY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"qnZ" = ( +/turf/open/floor/corsat/purple, +/area/corsat/omega/complex) "qoh" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/corsat/theta/biodome) "qoo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) "qoq" = ( /obj/structure/coatrack, /turf/open/floor/wood, /area/corsat/gamma/administration) -"qos" = ( -/obj/structure/machinery/light{ - dir = 4 +"qoy" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security) +"qoz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/bed/chair/comfy/black{ +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"qpg" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"qow" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/dorms) -"qoH" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"qpj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/administration) -"qoQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/complex) +"qpD" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"qpO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"qoW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/airlock/north) -"qoX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qpS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"qpd" = ( -/obj/structure/machinery/power/apc/no_power/north, +/area/corsat/gamma/airlock/control) +"qpU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"qpW" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 + }, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"qqe" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"qpm" = ( -/obj/item/stool, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"qpz" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"qqi" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"qqj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"qpA" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"qpD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Medical Bay"; - req_one_access = null - }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"qqt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"qpI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"qqu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"qqb" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/north) -"qqw" = ( -/turf/open/mars/mars_dirt_9, -/area/corsat/sigma/biodome) -"qqB" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/canteen) +"qqJ" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"qqC" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) "qqK" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/omega/airlocknorth) -"qqN" = ( +"qqL" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/dorms) +"qqT" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"qqU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"qqP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/corsat/gamma/hangar/monorail/railcart) -"qrc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"qrk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"qri" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/hangar) "qro" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hallwaysouth) -"qrs" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"qrx" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"qrH" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar) -"qrI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"qrC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"qrD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/pipes/vents/pump{ +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"qrP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/theta/airlock/east) +"qrT" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/control) +"qsb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Senior Engineer's Office"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"qrX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) "qsj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"qsm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"qsn" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/north) -"qsx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"qsF" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/south) -"qsJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/north) -"qsM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"qsO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"qsS" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/dorms) -"qsZ" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) -"qtd" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"qsl" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/obj/item/xeno_restraints, -/turf/open/floor/corsat/red/west, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"qsF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"qsN" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"qsQ" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/corsat/yellow, /area/corsat/omega/control) +"qsX" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) "qtf" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"qtr" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"qts" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Theta"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"qtL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"qtN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"qtP" = ( -/obj/structure/surface/rack, -/obj/item/implanter/neurostim, -/obj/item/implanter/neurostim, -/obj/item/implanter/adrenalin, -/obj/item/implanter/adrenalin, -/obj/item/implanter/loyalty, -/obj/item/implanter/loyalty, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"qtQ" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"qtV" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/south) -"qtY" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/hangar/flightcontrol) -"quh" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, +"qtS" = ( +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) -"qux" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1 +"qtT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/white/north, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/south) -"quE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - dir = 4 +"qtW" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"qtX" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"que" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"quf" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/omega/hangar) +"qug" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"qum" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/office) +"quD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) "quG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -32051,52 +32334,44 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"quL" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar) -"qvb" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"qvj" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"qvo" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/hangar/office) -"qvK" = ( +"quP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"qvP" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/hangar/arrivals) -"qvR" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"qvf" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/dorms) +"qvi" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) -"qwA" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/cargo) -"qwC" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "101" +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"qvk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"qwG" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"qvs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"qvE" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qvN" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; name = "Research Complex"; @@ -32105,303 +32380,309 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) -"qxo" = ( +"qvO" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"qvV" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"qwb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + req_one_access_txt = "201;104" + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"qwz" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"qwE" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"qwN" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"qwQ" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"qxa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"qxf" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/biodome/complex) +"qxm" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - layer = 2.7 + name = "Reception Desk"; + req_one_access_txt = "103" }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"qxp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) -"qxq" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar/arrivals) "qxr" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"qxu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo) +"qxL" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"qyc" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_y = 24 + }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) -"qxv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/monorail/control) -"qxF" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"qxK" = ( -/turf/open/floor/corsat/bluegreycorner/west, +"qyf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/south/offices) -"qxM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"qyv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"qyy" = ( +/obj/structure/machinery/door_control{ + id = "ThetaBioAtmos"; + name = "Access Shutters"; + pixel_x = 24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"qyA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"qyG" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"qyM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/barricade/handrail{ dir = 8 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"qyN" = ( /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"qyq" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/monorail) -"qyw" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"qyB" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/north) -"qyF" = ( -/obj/structure/bed/chair/office/light{ +/area/corsat/theta/airlock/west/id) +"qyQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"qyR" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"qyZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"qza" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"qzf" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/mech_bay_recharge_port{ + pixel_x = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"qzg" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"qyY" = ( -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo) -"qyZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"qzl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarN"; - name = "Checkpoint Control"; - use_power = 0 +/obj/structure/machinery/computer/cameras{ + network = list("theta") }, +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"qzn" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"qzw" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"qzx" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/hangar/arrivals) -"qzz" = ( -/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/control) -"qzJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) +"qzt" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"qzz" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"qzB" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/omega/hangar) +"qzU" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) "qzV" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/hangar/monorail) -"qzW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/residential) +/obj/structure/bed/chair, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) "qAb" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"qAe" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth/id) +"qAf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"qAj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) +/area/corsat/gamma/foyer) "qAl" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/biodome) -"qAt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"qAD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar) -"qAN" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/chemistry) -"qAW" = ( +"qAn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"qAK" = ( /obj/structure/bed/chair/office/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"qAX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"qAU" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydrowest) +"qBb" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/tritium{ - amount = 10 +/obj/item/device/lightreplacer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"qBA" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"qBP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"qAY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"qBd" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"qBh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/cargo) -"qBS" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"qBU" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"qCa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"qBW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/office) -"qCb" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) +/area/corsat/gamma/biodome/virology) "qCg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"qCs" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"qCw" = ( /turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"qCx" = ( -/obj/item/tool/wet_sign, +/area/corsat/sigma/dorms) +"qCL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"qCR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 10 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/southeast/datamaint) -"qCI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"qDd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"qDr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 5 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"qCX" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/southeast/datalab) -"qCZ" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"qDl" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/airlock/control) -"qDm" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/cargo) -"qDs" = ( -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) "qDx" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"qDH" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"qDQ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"qDZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"qEl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluecorner, -/area/corsat/theta/airlock/control) -"qEm" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar) -"qEr" = ( +"qDR" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"qDW" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/airlock/control) -"qEC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"qEC" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/core) "qEE" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) "qEG" = ( /obj/structure/machinery/camera/autoname{ dir = 8; @@ -32409,197 +32690,210 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"qEJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"qEK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south) -"qEP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 4"; - req_one_access_txt = "103" +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"qEQ" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"qES" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/toxins) +"qEL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"qEV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"qEX" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/wirecutters, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) "qFb" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/showers) -"qFj" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qFi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) "qFq" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"qFr" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/hallwaysouth) -"qFu" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydrowest) -"qFw" = ( +"qFs" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"qFx" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"qFB" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"qFD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"qFG" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/morgue) -"qFz" = ( -/turf/open/floor/almayer/research/containment/entrance/west, -/area/corsat/inaccessible) -"qFI" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"qFL" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"qGc" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"qGm" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"qGq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) -"qFY" = ( -/turf/open/floor/corsat/blue, -/area/corsat/omega/hallways) -"qGg" = ( -/obj/structure/machinery/light{ - dir = 8 +"qGs" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"qGj" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/morgue) -"qGq" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) "qGz" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"qGB" = ( -/obj/structure/bed/chair, +"qGN" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"qHb" = ( +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"qHl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qHz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"qGI" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"qHa" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"qHk" = ( -/obj/structure/bed/chair/office/light{ +/area/corsat/gamma/engineering/lobby) +"qHA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/theta/airlock/east/id) -"qHm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"qHD" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"qHo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"qHE" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/north) +"qHO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"qHq" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGate"; - name = "Gate Shutters"; - use_power = 0 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/administration) +"qHR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/sigmaremote) -"qHt" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"qHB" = ( -/obj/structure/showcase{ - icon_state = "broadcast receiver"; - name = "Subspace Receiver" +/area/corsat/gamma/residential/maint) +"qHU" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/bot/cleanbot, /turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"qIa" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) +/area/corsat/theta/biodome/hydrowest) +"qHY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) "qIt" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"qIu" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + id = "OmegaA"; + name = "Xenobiology"; + req_access_txt = "103" }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/core) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qIu" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/hallwaysouth) +"qIx" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"qIA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "qIU" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/inaccessible) -"qIW" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "ThetaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) "qJf" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"qJk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/hangar/office) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) "qJl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32607,503 +32901,442 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"qJz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - req_one_access_txt = "106;103"; - use_power = 0 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/omega/control) -"qJD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +"qJn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"qJK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"qJE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"qJW" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"qJX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) "qJZ" = ( /obj/structure/xenoautopsy/tank/broken, /turf/open/floor/corsat, /area/corsat/omega/complex) +"qKa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) "qKc" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"qKj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"qKp" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/north) -"qKx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaSouthID"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/south/id) -"qKA" = ( +"qKl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"qKL" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/security) +"qKG" = ( +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"qKO" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/control) +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"qKK" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"qKW" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) "qKX" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"qLk" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"qLp" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/arrivals) +"qLc" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar/security) -"qLv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"qLw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"qLp" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/inaccessible) +"qLr" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"qLu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"qLv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) "qLz" = ( /obj/structure/prop/mech/tesla_energy_relay, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) -"qLG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Hazardous Materials Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"qLJ" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"qLM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/sigma/cargo) -"qLV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"qMa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/monorail) -"qMe" = ( -/obj/structure/closet, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"qMf" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +"qLH" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"qLL" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Administration"; + req_access_txt = "106" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"qLR" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"qLT" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"qMc" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) +/area/corsat/theta/airlock/east) "qMh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/omega/offices) -"qMn" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/bed/sofa/vert/white/top, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) +"qMu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) "qMx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"qMA" = ( -/obj/structure/surface/table/almayer, -/obj/item/handset, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/southeast/datalab) -"qMG" = ( -/obj/structure/pipes/binary/pump/high_power/on{ +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"qMX" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/airlock/control) -"qMO" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"qMZ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "18" }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/south) -"qMR" = ( -/obj/structure/closet/firecloset, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"qNg" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/south, +/obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"qNn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/corsat/gamma/hangar/monorail) +"qNh" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Containment Cell"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"qNM" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"qNN" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"qNZ" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"qNp" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"qNz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control{ + id = "OmegaOffice"; + name = "Privacy Shutters"; + pixel_y = 1; + use_power = 0 }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"qOc" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"qOd" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"qNE" = ( +/obj/structure/bedsheetbin, /obj/structure/machinery/camera/autoname{ + dir = 1; network = list("gamma") }, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/administration) -"qOh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"qOl" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar) -"qOt" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"qNI" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/monorail) +"qNL" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" + dir = 8 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"qOz" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo/lobby) -"qOH" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/virology) +"qNM" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) "qOI" = ( -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/canteen) -"qOM" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"qOX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"qOL" = ( +/obj/structure/bed/chair, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"qOY" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/cargo) -"qPr" = ( -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"qPs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/corsat/sigma/hangar/security) +"qPa" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/sigma/south/complex) -"qPu" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"qPe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"qPw" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"qPC" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/hydroeast) -"qPR" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/gamma/engineering/core) -"qPT" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"qPY" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/obj/structure/surface/table/almayer, -/obj/item/tool/minihoe, -/obj/item/tool/hatchet, -/obj/item/tool/shovel/spade, -/turf/open/floor/corsat/purplewhite/southeast, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"qPp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) -"qPZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"qPt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/omega/control) +"qPz" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"qPG" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) "qQg" = ( /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"qQj" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) +"qQk" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/checkpoint) "qQl" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential/east) -"qQo" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"qQx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Hub"; + req_access_txt = "101" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"qQD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Sigma"; - req_access_txt = "103" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"qQN" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestW"; - name = "Sigma West Airlock" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"qQm" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/sigma/south) +"qQr" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"qQt" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"qQx" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"qQR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"qQT" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/south) +"qQC" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"qRd" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"qRl" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"qRt" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"qRy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"qQE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/surgery) +"qQL" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"qQQ" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"qRB" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"qRK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"qRL" = ( -/turf/open/floor/corsat/green/southeast, -/area/corsat/gamma/medbay/morgue) -"qRT" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"qSi" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/airlock/east/id) -"qSn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"qSB" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/hallwaysouth) -"qSI" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"qSJ" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"qSL" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) -"qTg" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/checkpoint) -"qTk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qRl" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"qRm" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"qRw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"qRF" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/hangar/office) +"qRP" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"qRU" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar) +"qSb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"qTt" = ( -/obj/structure/barricade/handrail{ - layer = 3 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Containment"; + req_access_txt = "103" }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"qTI" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qSf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/white/north, +/turf/open/floor/corsat/white/northeast, /area/corsat/sigma/dorms) -"qTW" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"qUR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +"qSi" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/airlock/east/id) +"qSv" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"qSw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"qSO" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"qUS" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"qVi" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"qSQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, /turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) -"qVp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"qTa" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"qTc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"qTf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"qVq" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"qTv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qTD" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/biodome/complex) +"qTH" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qUa" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/east/id) +"qUz" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/biodome/testgrounds) +"qUE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"qUJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qUZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"qVc" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/omega/hangar) +"qVm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) "qVs" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -33112,351 +33345,321 @@ /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) "qVt" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaSouthS"; - name = "Gamma South Airlock" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"qVy" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydrowest) -"qVG" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"qVK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/obj/item/tool/weedkiller/triclopyr, -/obj/item/tool/weedkiller/lindane, -/obj/item/tool/weedkiller/D24, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"qVP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHCargoN"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"qVU" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"qWb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"qVV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"qWh" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"qVX" = ( /obj/structure/platform{ dir = 4; layer = 2 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"qWc" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) "qWr" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential) -"qWF" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/suit/chef/classic, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"qWL" = ( +"qWx" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"qWE" = ( /obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"qWS" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/residential) -"qWW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"qXg" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/airlock/control) -"qXp" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"qXy" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"qXB" = ( -/turf/open/floor/corsat/blue, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) -"qXK" = ( -/obj/structure/machinery/light{ +"qWY" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"qXa" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"qXc" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hallwaysouth) -"qXM" = ( -/turf/open/floor/corsat/darkgreencorner/east, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"qXf" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"qXn" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qXE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black_random, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"qXG" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate, /area/corsat/sigma/hangar) -"qXR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) +"qXU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit"; + req_access_txt = "100"; + req_one_access_txt = "0" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"qYf" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) "qYm" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"qYR" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"qYt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"qZy" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Office"; - req_access_txt = "101" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"qYD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"qYO" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/researcher) +"qYS" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "OmegaHangarE"; + name = "Landing Bay Omega" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"qYT" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"qZK" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/sigma/north) -"qZP" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"qZZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/area/corsat/omega/maint) +"qYU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"raf" = ( -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"rai" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/area/corsat/sigma/dorms) +"qYV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"rap" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/hallways) -"rat" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hallwaysouth) -"raD" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"raP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"raY" = ( -/obj/item/broken_device, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"raZ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"rbk" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"qZy" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"rbp" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/sigma/hangar) -"rbD" = ( +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"qZC" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"rbQ" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"rbX" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"rbY" = ( /obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/tcomms, +/obj/structure/window/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"qZE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"qZL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"qZQ" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/foyer) +"qZR" = ( +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/datalab) -"rbZ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" +"qZS" = ( +/obj/structure/machinery/computer/shuttle_control/monorail{ + dir = 8 }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"raf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"rcb" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/robotics) +"rax" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/obj/structure/surface/rack, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"raz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"raN" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"raS" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"rbf" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"rbi" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar/security) +"rbp" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"rbA" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"rbE" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"rbX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) "rcg" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"rcl" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +"rcq" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/airlock/control) -"rcy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"rdh" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "8" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"rcB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_south, -/area/corsat/gamma/hangar) -"rcH" = ( -/obj/structure/closet/crate/internals, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"rcO" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/control) -"rcV" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"rdo" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"rde" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"rdk" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"rdB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"rdE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/item/ashtray/plastic, /turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/disposal) -"rdG" = ( +/area/corsat/omega/maint) +"rdB" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) -"rdY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"ree" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/almayer/plating_striped, -/area/corsat/gamma/sigmaremote) -"ref" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Omega Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"rdH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") }, -/turf/open/floor/corsat/blue, -/area/corsat/omega/control) -"reo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"rex" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"reF" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"reI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/airlocknorth) +"rdO" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"reM" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHCargoW"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"rdQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/monorail) +"rdR" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"rdV" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"rdY" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"ree" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"rel" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/hallways) +"rew" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/monorail) +"reA" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"reG" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/sigma/hangar) "reN" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; @@ -33466,424 +33669,373 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"rfe" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"rfr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 +"reP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"rfy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"rfF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"rfO" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"rfP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/airlock/north) -"rgf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"rgn" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"rgu" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"rgz" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"rgC" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/residential) -"rgK" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control{ - id = "OmegaOffice"; - name = "Privacy Shutters"; - pixel_y = 1; - use_power = 0 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"rgQ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"rhc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"rhg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"rhG" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/corsat/omega/hangar) -"rhJ" = ( +/area/corsat/sigma/hangar/monorail/control) +"reW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"rfk" = ( /obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/north) +"rfn" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential) +"rfu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"rij" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"rip" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/southeast/generator) -"riq" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"rfx" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/researcher) -"riw" = ( -/obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"rfT" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/hallways) +"rfX" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"rgb" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"rgd" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay/lobby) +"rgw" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "CO2 Control" }, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/theta/airlock/control) +"rgF" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/omega/offices) +"rgK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) -"rix" = ( +"rgP" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"rgR" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"riz" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"riL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat{ - name = "Acid Resistant Hemostat"; - unacidable = 1 + dir = 1 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"riQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars/mars_dirt_11, -/area/corsat/sigma/biodome) -"riY" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"rjl" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/south) -"rjm" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"rjp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"rhb" = ( +/obj/structure/machinery/medical_pod/sleeper{ + flags_atom = 18 }, -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"rhc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"rjs" = ( +/area/corsat/omega/complex) +"rhj" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"rhn" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/gamma/hangar) +"rhq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/southeast/datalab) +"rhs" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"rhw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper/Toxin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"rhC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"rhU" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"rib" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"rju" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"rjy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 +/area/corsat/gamma/residential) +"rid" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/control) +"rig" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"rir" = ( +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "106" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"rjB" = ( -/obj/structure/machinery/light{ +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"riK" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"rjF" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"riM" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"riO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"rjk" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"rjG" = ( -/obj/structure/machinery/light, /turf/open/floor/corsat/red, -/area/corsat/gamma/hangar) +/area/corsat/omega/security) +"rjp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/green/northeast, +/area/corsat/gamma/medbay/morgue) +"rjr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"rjy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) "rjP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) "rjT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"rkc" = ( -/obj/structure/machinery/light{ +"rkn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"rkz" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"rkM" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/omega/control) +"rkS" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"rkH" = ( -/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small, +/obj/structure/machinery/door/window/southleft{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"rkX" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"rlc" = ( +/obj/structure/machinery/r_n_d/server, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"rkJ" = ( +/area/corsat/sigma/south/complex) +"rlK" = ( /obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/capsaicin, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/toxins) -"rkT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/chemistry) -"rkW" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/hangar) -"rkZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/taperecorder, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"rle" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"rlR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"rlt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"rlu" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"rlF" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"rlL" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/north) +"rlS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome) -"rmb" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"rlX" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/hangar/flightcontrol) +"rmf" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"rmg" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"rmi" = ( -/turf/open/mars_cave/mars_cave_4, -/area/corsat/sigma/biodome/gunrange) -"rms" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) "rmD" = ( -/obj/structure/bed/chair{ +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"rmF" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"rmZ" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar) +"rnp" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"rmO" = ( -/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"rnq" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"rnG" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"rmW" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"rnr" = ( -/obj/structure/machinery/light/small{ +/obj/item/clothing/glasses/meson, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"rnL" = ( +/obj/structure/pipes/binary/pump/on{ dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/inaccessible) -"rny" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"rnS" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"rnH" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"rnZ" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat/green/northwest, -/area/corsat/gamma/medbay/morgue) -"rou" = ( -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"rnX" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/hangar/office) +"rog" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"rpd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/researcher) +"rpp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"roG" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"rpt" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo/disposal) +"rpw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"roH" = ( -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"roJ" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/theta/airlock/control) -"roM" = ( -/obj/structure/closet/wardrobe/robotics_black, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"roP" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/complex) -"roR" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"rpa" = ( /turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"rpg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/area/corsat/sigma/hangar/checkpoint) +"rpC" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/office) +"rpG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"rpm" = ( +/area/corsat/sigma/airlock/control) +"rpU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"rpn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"rpW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/security) -"rpt" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"rpz" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"rpD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/west/id) -"rpE" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"rpM" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) "rpY" = ( -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/southeast/datalab) "rpZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -33891,1149 +34043,1082 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"rqc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) "rqg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"rql" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"rqp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"rqz" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"rqH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"rqN" = ( +"rqr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast/datalab) -"rqR" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"rqV" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"rqs" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"rqB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"rrl" = ( -/turf/open/floor/corsat/purple, -/area/corsat/omega/complex) -"rrm" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"rrD" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/north) -"rrO" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, +/area/corsat/omega/control) +"rqG" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/device/camera, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"rqK" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"rqQ" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/containment) +"rqV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/hangar/office) +"rrc" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/obj/item/handset, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"rsp" = ( -/obj/structure/surface/rack, -/obj/item/storage/photo_album, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"rsq" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/complex) -"rsy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"rsG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/southeast, +/turf/open/floor/carpet9_4/west, /area/corsat/gamma/administration) -"rsK" = ( -/turf/open/floor/corsat/brown/west, +"rre" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"rrj" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"rrw" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/theta/airlock/east/id) +"rrA" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"rrL" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) -"rsO" = ( +"rso" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"rss" = ( +/obj/item/clothing/head/beret/sec/warden, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"rsv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"rsA" = ( /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"rsW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/area/corsat/omega/airlocknorth) +"rsQ" = ( +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/control) +"rsT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hallwaysouth) -"rsZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"rte" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/theta/airlock/control) +"rtg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/slime, +/obj/item/device/flashlight/slime{ + pixel_y = 8 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"rtd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaEastID"; - name = "Security Shutters"; - use_power = 0 +/obj/item/device/flashlight/slime{ + pixel_x = -10 }, -/obj/structure/machinery/light{ +/obj/item/device/flashlight/slime{ + pixel_x = 10 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"rtG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/east/id) -"rtg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"rtj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/mech/armor_booster, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"rtm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"rtA" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/airlocknorth) -"rtP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) "rtV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"rud" = ( -/turf/open/floor/corsat/blue, -/area/corsat/gamma/hallwaysouth) -"ruj" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"rua" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Storage"; - req_one_access_txt = "102" + name = "Disposals"; + req_one_access_txt = "102;101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"ruo" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"rus" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega") +/area/corsat/gamma/cargo/disposal) +"rui" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/surface/table/reinforced, /turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth) -"ruF" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "GammaWestD"; - name = "Gamma Dome Airlock" +/area/corsat/omega/hallways) +"ruA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "map_lockdown"; - name = "Gamma Lockdown"; - use_power = 0 +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"ruC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/signaller, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"ruO" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"ruG" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/datalab) -"ruT" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"ruU" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ruV" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) "ruZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Research Hallway"; +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Custorial Closet"; req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"rvl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"rvx" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"rvw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/cargo) +/turf/open/floor/corsat/white/northwest, +/area/corsat/sigma/dorms) "rvy" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/airlock/control) -"rvG" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"rvH" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/hydroeast) -"rvI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"rvK" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"rvP" = ( +/obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"rvQ" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/south) +"rvR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"rwa" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"rvV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"rwc" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"rwe" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"rwh" = ( +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"rwm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/omega/cargo) +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) "rwo" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"rwz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Access Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"rwI" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +"rwr" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/lobby) +"rwx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"rwJ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"rwP" = ( /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"rwQ" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south/id) -"rxg" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/engineering) -"rxo" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/corsat/gamma/medbay/lobby) +"rwH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/colony_floodlight_switch{ + desc = "This switch controls the floodlights around the biodome. It only functions when there is power." }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"rxp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/theta/airlock/control) +"rwM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"rxq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"rwO" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/mirror{ - pixel_y = 24 +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"rwQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"rwY" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin/super, +/obj/item/stock_parts/capacitor/super, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"rxg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Secondary Generators"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"rxv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"rxz" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"rxG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"rxK" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Gamma Landing Zone" - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) +/area/corsat/sigma/southeast/generator) +"rxl" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) "rxL" = ( -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/medbay/morgue) -"rxM" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/east/id) -"rxN" = ( -/obj/structure/bed, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security/cells) -"rxP" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"rxW" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"ryb" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) +/area/corsat/gamma/cargo) +"rxQ" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/hallwaysouth) +"rxU" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/chemistry) "ryd" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"ryj" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security) -"ryw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"ryz" = ( -/turf/open/floor/corsat/darkgreen/northeast, -/area/corsat/gamma/hangar/monorail) -"ryM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"ryN" = ( /obj/structure/surface/table/reinforced, -/obj/item/newspaper, -/turf/open/floor/corsat/red, -/area/corsat/sigma/checkpoint) -"ryU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"ryV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"ryW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"ryk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/mech/armor_booster, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"ryx" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"ryy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"ryz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/office) +"ryA" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ryH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Omega Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/control) +"ryO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"ryQ" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) "ryZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/purple/northeast, -/area/corsat/gamma/biodome/complex) -"rzj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/southeast/datalab) +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"rzg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"rzm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"rzo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"rzu" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) "rzy" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"rzZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_9, -/area/corsat/sigma/biodome) -"rAp" = ( -/obj/structure/prop/almayer/particle_cannon/corsat, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"rAt" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"rAD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/lobby) -"rAG" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast/datalab) -"rAK" = ( -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"rAT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, +"rzB" = ( +/obj/item/pamphlet/skill/powerloader, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"rAW" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaS"; - name = "Omega Airlock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"rBh" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") +/area/corsat/sigma/cargo) +"rzV" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"rAi" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"rBj" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"rAo" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"rAq" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"rBk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/corsat/sigma/airlock/control) +"rAt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"rBv" = ( +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"rAD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/airlock/control) +"rAI" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"rBa" = ( /obj/structure/machinery/light, /obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/scalpel, /obj/item/reagent_container/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 12; pixel_y = 2 }, +/obj/item/tool/surgery/bonegel, /turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/surgery) -"rBA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"rBO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rBn" = ( +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay) +"rBt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"rBw" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar) -"rBR" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"rCq" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"rCv" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/theta/airlock/east) -"rCx" = ( -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"rBJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"rCi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "OmegaWarden"; - name = "Privacy Shutters"; - pixel_y = -3; - use_power = 0 +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"rCv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "101" }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"rCD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"rCB" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"rCC" = ( +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"rCT" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"rCM" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"rCU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/airlock/south) +"rDf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"rCY" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"rDa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"rDc" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 3"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"rDe" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"rDt" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"rDP" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Outer Gate Shutters"; - pixel_x = 5; - pixel_y = 24; - use_power = 0 + dir = 8 }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"rDT" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"rDV" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "RemoteGate"; - name = "Gate Shutters"; - pixel_x = -5; - pixel_y = 24; - use_power = 0 +/obj/item/explosive/grenade/custom/metal_foam, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"rEi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"rDi" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/north, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) -"rDk" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"rDx" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"rDI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"rDK" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +"rEm" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"rEp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"rEi" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"rEx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/omega/control) -"rEP" = ( -/obj/structure/barricade/handrail{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/dorms) -"rEW" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/monorail/control) -"rFa" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"rEt" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"rFc" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"rFd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"rFq" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 10 +/area/corsat/gamma/canteen) +"rEF" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/airlock/control) +"rEZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"rFe" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" }, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/engineering) -"rFz" = ( -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome/scrapyard) -"rFA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"rFi" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"rFI" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"rGf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/helmet/augment, -/obj/item/tool/pen/paralysis, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"rGh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" +/area/corsat/gamma/biodome/virology) +"rFp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"rFs" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"rGg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"rGj" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"rGl" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"rGx" = ( -/obj/structure/cargo_container/trijent/mid, -/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) -"rGA" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"rGL" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/hangar/office) -"rGV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"rGW" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"rHj" = ( +"rGp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar) -"rHl" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/security) -"rHs" = ( -/obj/effect/landmark/crap_item, +"rGr" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"rGM" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) +"rHd" = ( +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/datalab) +"rHg" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"rHj" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/control) +"rHl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"rHm" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/airlock/control) +"rHo" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, /obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"rHv" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) +"rHO" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"rHP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/east) +"rIi" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/corsat/inaccessible) +"rIk" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"rIs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, /turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) -"rHt" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"rHL" = ( -/obj/structure/platform{ - dir = 8 +"rIt" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"rHQ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"rHZ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"rIp" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"rIw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"rIx" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, /turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"rID" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" +/area/corsat/theta/biodome/hydrowest) +"rIu" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"rII" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/scrapyard) +"rIL" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "rIN" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"rIV" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"rJb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"rJe" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"rIS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"rIV" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"rJj" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/clothing/glasses/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) "rJl" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) "rJo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"rJs" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"rJz" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ +"rJA" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"rJN" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"rJQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"rKc" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"rJS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"rKr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) "rKz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Gamma" +/obj/structure/surface/table/almayer, +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"rKA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/checkpoint) +"rLc" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"rLl" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"rKC" = ( -/obj/item/clothing/mask/gas, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"rKK" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"rKS" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"rKX" = ( -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/door/window/southleft, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"rLa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"rLx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"rLA" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"rLf" = ( -/obj/structure/filingcabinet/filingcabinet, /turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"rLr" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) +/area/corsat/theta/airlock/west/id) "rLB" = ( -/obj/structure/bed, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) -"rLO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +/obj/structure/closet/wardrobe/atmospherics_yellow, /turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) -"rMi" = ( -/obj/structure/bed/chair{ +"rLG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"rLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"rLI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"rLM" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"rLN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/researcher) +"rLO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"rMh" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/residential) "rMq" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/ice, /area/corsat/gamma/biodome) -"rMH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics Workshop"; - req_one_access_txt = "102" +"rMr" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/hangar/flightcontrol) +"rMx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Surgery Room"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"rMT" = ( -/turf/open/floor/corsat/brown/northeast, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/surgery) +"rMS" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hallwaysouth) "rMU" = ( /obj/structure/foamed_metal, /turf/open/floor/corsat, /area/corsat/sigma/dorms) -"rMZ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "West Hydroponics Wing"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"rNr" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"rNs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rMY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"rNi" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"rNn" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) +"rNP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"rNx" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo) -"rNz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"rNP" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"rOl" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"rOr" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"rOt" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"rNY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"rOw" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 8; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"rOB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/corsat/gamma/residential) +"rOD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/southeast/dataoffice) +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) "rOO" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"rOR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"rOZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"rPB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"rPL" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"rOY" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"rPN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"rOZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"rPf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar) -"rPO" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"rPR" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"rQc" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 4 +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"rPm" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydrowest) +"rPo" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"rPx" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"rPQ" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"rPR" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/north/id) -"rQi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Armory"; - req_access_txt = "101" +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"rPS" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"rQc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"rQk" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"rQl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"rQm" = ( +/obj/structure/platform{ dir = 1; - name = "Food Storage"; - req_one_access = null + layer = 2.7 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"rQo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"rQx" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"rQy" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"rQL" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/generator) -"rQO" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/foyer) -"rQU" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"rRa" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/white/northwest, +/area/corsat/sigma/south) +"rQu" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"rRe" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"rQC" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/atmos) +"rQP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/camera/autoname{ dir = 4; - network = list("sigma") + network = list("gamma") }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"rRj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/hangar) +"rRg" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"rRv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"rRw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"rRk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"rRC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaIDEC"; + name = "Security Shutters"; + use_power = 0 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/office) -"rRl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/east/id) +"rRL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"rRy" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/foyer) +"rRN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"rRC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/datalab) -"rRH" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/monorail) -"rRO" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck/uno, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"rRP" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) +/area/corsat/gamma/hangar/checkpoint) "rRR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) -"rRS" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"rSb" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"rSp" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"rSt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"rRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/id) +"rSg" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"rSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"rSn" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/showers) +"rSo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/gamma/sigmaremote) +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"rSs" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"rSv" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) "rSG" = ( /obj/structure/machinery/computer/cameras{ network = list("gamma"); @@ -35041,50 +35126,17 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"rSH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/westleft{ - name = "Medical Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Medical Desk" +"rSL" = ( +/obj/item/folder/black_random, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"rTc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/lobby) -"rSI" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"rSJ" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"rSO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"rSS" = ( -/obj/structure/machinery/smartfridge/secure/virology{ - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/virology) -"rSY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) +/area/corsat/gamma/hallwaysouth) "rTj" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -35093,29 +35145,53 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "rTt" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"rTv" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"rTy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"rTA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) "rTD" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/residential/showers) -"rTF" = ( +"rTN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"rUe" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"rUg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"rUo" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/monorail) -"rTR" = ( -/obj/structure/bed/chair, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, /area/corsat/sigma/south) "rUq" = ( @@ -35125,18 +35201,13 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"rUs" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/airlock/control) "rUt" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/device/lightreplacer, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/omega/maint) +"rUD" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) "rUH" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -35144,339 +35215,258 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"rUL" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced/toughened{ +"rVt" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/window/reinforced/toughened{ +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"rWb" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/window/reinforced/toughened{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"rUM" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/corsat/sigma/hangar) -"rVm" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "12" +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"rWj" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"rWF" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"rWI" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"rVn" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"rWT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"rWX" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/virology) +"rXk" = ( +/obj/item/folder/yellow, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"rXq" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"rVq" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/airlock/control) -"rVC" = ( -/obj/structure/platform{ +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"rXt" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"rVZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-N"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"rWn" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda{ - dir = 8 + network = list("gamma") }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"rWq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"rWy" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"rXw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"rWI" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CORSAT Academy"; - req_one_access = null +/area/corsat/sigma/airlock/control) +"rXL" = ( +/obj/structure/machinery/door_control{ + id = "GammaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"rWR" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"rXN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"rXS" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"rXX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"rXZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/canteen) +"rYc" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" + network = list("sigma") }, -/turf/open/floor/corsat/lightplate, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"rYe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"rYs" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydrowest) +"rYG" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"rYI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"rYL" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) -"rWS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaNorthN"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 +"rYT" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"rZb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "GammaNorthS"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"rZc" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar) +"rZg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"rZl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/card, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/security) +"rZq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"rZs" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar) +"rZx" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 8; + id_tag = "mix_sigma_out" }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/airlock/north) -"rWT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"rZO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"rXa" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"rXb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"rZP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"rXc" = ( -/obj/item/folder/black_random, -/obj/item/clothing/mask/cigarette/cigar/havana, -/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) -"rXd" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/chemistry) -"rXf" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/chemistry) -"rXr" = ( -/obj/item/folder/white, -/obj/item/tool/stamp/rd, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/hangar/cargo) +"rZV" = ( +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) -"rXw" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"rXA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/sigma/dorms) -"rXV" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/arrivals) -"rXY" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/foyer) -"rYl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"rYn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"rYx" = ( -/obj/structure/pipes/vents/pump{ +"rZX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"rYE" = ( +/obj/structure/flora/pottedplant, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/surgery) -"rYW" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast) -"rYY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"rZb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"rZu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"rZB" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "4" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"saj" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/administration) +"sah" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/office) "sap" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) -"say" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"saz" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +"sas" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"sax" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"saG" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/corsat/red, -/area/corsat/omega/airlocknorth) -"saH" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"saN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"saT" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/corsat/sigma/southeast/datalab) +"saQ" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/canteen) +"saU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"saY" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"sbe" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/red/west, /area/corsat/omega/airlocknorth) -"sbn" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 10 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"sbt" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"sbA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/theta/biodome/complex) -"sbR" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"sbZ" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"sca" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/south/id) -"sch" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"scx" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"saX" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/complex) +"saY" = ( +/obj/structure/machinery/door_control{ + id = "SigmaSecC"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"scI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"sbz" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/hallwaysouth) +"scm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"sdo" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"sdp" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"scL" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "1" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"sdl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 9 }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"sdq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/omega/control) +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/residential/maint) "sdu" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer/emails{ @@ -35484,539 +35474,506 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"sdN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"sdO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"sdQ" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"sed" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"sef" = ( -/obj/structure/machinery/light{ - dir = 4 +"sdB" = ( +/turf/open/shuttle/dropship/dark_grey_bottom, +/area/prison/hangar_storage/research/shuttle) +"sdG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"sdH" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"sel" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/theta/airlock/east) "sem" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) -"sex" = ( -/obj/structure/machinery/light{ - dir = 4 +"seq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"seD" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar/arrivals) -"seF" = ( -/obj/structure/surface/rack, -/obj/item/device/toner, -/obj/item/device/toner, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/residential/maint) -"seR" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"seO" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"seY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control Office"; - req_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/south) -"sfd" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"sfh" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"sfi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, +/obj/item/device/t_scanner, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"seW" = ( +/obj/structure/machinery/power/apc/upgraded/power/north, /turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"sfo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/south/offices) -"sfq" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"sfr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/corsat/gamma/security/armory) +"seZ" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"sfl" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Monorail Control"; + req_access_txt = "101" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) +/area/corsat/gamma/hangar/monorail/control) +"sfm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) "sfx" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"sfy" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "10" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"sfO" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "22" +"sfP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) "sfS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"sgb" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sgc" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) +/area/corsat/sigma/southeast/datalab) "sgd" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"sgj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"sgh" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/cargo) -"sgP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/northwest, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"sgp" = ( +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) -"sgR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"sgs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"sgG" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/north/id) +"sgU" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"sgY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"sgZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"shc" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"shj" = ( -/obj/structure/machinery/smartfridge/chemistry/virology{ - req_access_txt = "103"; - req_one_access = null +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"shf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"shv" = ( -/obj/item/implant/neurostim, -/obj/item/implant/neurostim, -/obj/item/implant/adrenalin, -/obj/item/implant/adrenalin, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"shF" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"shm" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"shP" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/residential) +"sib" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"sic" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"sik" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"sil" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"shN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/rnr) -"sib" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/security) -"sim" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"sin" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"sit" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) "siu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/east, /area/corsat/theta/biodome) -"siB" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/flightcontrol) -"sjf" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"sjk" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) +"siw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"siz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"siN" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"siQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"siT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"sjl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"sjo" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"sjp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) "sjr" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"sjI" = ( +"sjF" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security/armory) +"sjO" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"sjV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ski" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/blue/north, -/area/corsat/theta/airlock/control) -"sjS" = ( -/obj/structure/surface/table/almayer, +/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"sjZ" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/south/engineering) +"skl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"skF" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west/id) -"skd" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/rnr) -"skq" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/sigma/north) -"skH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaEastID2"; - name = "Security Shutters"; - use_power = 0 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"skG" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/hangar/arrivals) +"skO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/east/id) +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) "skP" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth) -"skR" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/office) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) "skS" = ( /obj/item/toy/spinningtoy{ desc = "It echoed loudly within him because he was hollow at the core." }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"sla" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/rnr) -"slc" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"sli" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "11" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"slm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"slv" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/checkpoint) -"slK" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/red, -/area/corsat/omega/hallways) -"slM" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/southeast, +"skU" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) -"slW" = ( +"skZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/robotics) -"slY" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"sle" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"slh" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"slu" = ( +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"slZ" = ( +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"slv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Kitchen" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"smg" = ( -/obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"sml" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"smm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1; + name = "Research Complex Gamma" }, -/obj/structure/window/reinforced, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) +/area/corsat/gamma/biodome/complex) +"slw" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"slZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/janitor, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"smc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/device/reagent_scanner, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/complex) +"sme" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) "smn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/armor/laserproof, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"smo" = ( -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) +/area/corsat/gamma/biodome/complex) +"smq" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) "smz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"smD" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"smA" = ( -/obj/structure/machinery/door_control{ - id = "GammaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 +/obj/structure/machinery/disposal, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-gamma-control" }, -/turf/open/floor/corsat/blue/north, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) -"smC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"smH" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) +"smK" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"smM" = ( +/obj/item/ashtray/bronze, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) "smP" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"smT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"smV" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/north) -"sna" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential/east) -"snh" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "ThetaNorthD"; - name = "Theta Dome Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "map_lockdown"; - name = "Theta Lockdown"; - use_power = 0 +"smZ" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/turf/open/floor/corsat/marked, +/obj/structure/platform, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/hallwaysouth) +"snd" = ( +/turf/open/floor/corsat/yellow/southeast, /area/corsat/theta/airlock/control) -"snm" = ( -/obj/structure/stairs{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"snp" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/voice, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"snz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"snB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"snH" = ( -/obj/structure/machinery/light{ +"snq" = ( +/obj/structure/machinery/computer/teleporter_console/corsat{ dir = 1 }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/hangar/monorail) -"snK" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"snv" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"snw" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) +/area/corsat/sigma/south/complex) +"snJ" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Forensics" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"snK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) "snS" = ( /mob/living/carbon/human/yiren, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"snV" = ( -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"sog" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"soh" = ( +"snT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"son" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"sow" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"soz" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"soj" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/southeast/generator) -"soq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/monorail) +"soW" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"soY" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/omega/hallways) +"spa" = ( +/obj/structure/machinery/optable, +/obj/item/robot_parts/robot_suit, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"spd" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"sph" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; + dir = 8; network = list("sigma") }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"soK" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/checkpoint) -"soR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"soV" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"soW" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"sph" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - dir = 1 +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"spp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south/security) +"spu" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/cargo) -"spn" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/security) -"spt" = ( +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/administration) +"spM" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"spx" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"spC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"spI" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) "spU" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"spW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"spV" = ( +/obj/structure/tunnel{ + id = "hole1" }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"sqa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) +/area/corsat/omega/biodome) "sqn" = ( /obj/structure/machinery/colony_floodlight{ dir = 4 @@ -36027,119 +35984,117 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"sqR" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"sqQ" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/corsat/inaccessible) -"srd" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/southeast/datalab) -"srk" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/north) -"srn" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"srp" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"srr" = ( -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"srw" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/ripley_build_and_repair, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"srx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"srz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"srK" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"ssc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"srj" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"ssp" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"ssv" = ( +/area/corsat/theta/biodome/hydroeast) +"srl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/control) +"srE" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, /turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) +"srH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"ssc" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"ssl" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"ssq" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/west) "ssw" = ( /obj/structure/bed/sofa/south/white/left, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "ssB" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"ssQ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"ssS" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/airlock/control) -"stb" = ( -/obj/structure/pipes/standard/simple/visible{ +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/lobby) +"ssI" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/sigma/dorms) +"ssV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"ste" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"stl" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"str" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hallways) +"std" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"sty" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"stG" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"stH" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/monorail) +"sth" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/west/id) +"stn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hallways) +"sts" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"stx" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"stT" = ( -/obj/structure/pipes/vents/pump{ +/area/corsat/gamma/residential/researcher) +"stU" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"stY" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_y = -25; + use_power = 0 + }, +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/security) "stZ" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/airlock/control) +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) "suf" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/green{ @@ -36147,264 +36102,183 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"suk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"sui" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Office"; + req_access_txt = "101" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"suv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) "sux" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"suQ" = ( +/obj/item/trash/chips, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"suB" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"suS" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"svm" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"svz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) +"suE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"suT" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"svC" = ( /obj/structure/bed/chair/office/light{ - dir = 4 + dir = 8 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"svL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"svN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/residential/lounge) -"svT" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"svW" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"swg" = ( -/obj/structure/machinery/light{ +/area/corsat/gamma/security) +"svb" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"svi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"swk" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"swo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell"; - req_access_txt = "101" - }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"swt" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/corsat/gamma/hangar) -"swv" = ( -/obj/structure/sink, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"swC" = ( -/turf/open/floor/almayer/tcomms, -/area/corsat/gamma/sigmaremote) -"swI" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"swK" = ( -/turf/open/floor/corsat/blue/southwest, -/area/corsat/theta/airlock/control) -"sxe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"sxk" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/west) -"sxn" = ( -/obj/structure/machinery/light{ +/area/corsat/gamma/hangar/security) +"svr" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"svy" = ( +/obj/structure/surface/table, +/obj/item/folder, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"svI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"svQ" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/surface/rack, -/obj/item/cell/secborg, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"sxz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/generator) -"sxA" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"svS" = ( +/obj/structure/machinery/photocopier, /obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"sxE" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"sxT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSouthID"; - name = "Security Shutters" +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"swv" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"syb" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/checkpoint) -"syA" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"syC" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"swy" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"swA" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"swD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"swN" = ( /obj/structure/machinery/light{ dir = 1 }, +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"swQ" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"swV" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"sxf" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/omega/cargo) +"sxj" = ( +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"sxq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"sxs" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"sxw" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"sxT" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"sxY" = ( +/obj/structure/machinery/light, /obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"syD" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"syE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/flashbang/cluster, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"syN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"syS" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/sigma/airlock/control) +"syf" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) +"syw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/bluecorner, -/area/corsat/gamma/airlock/control) -"syY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) "sza" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"szd" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"szq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) -"szr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"szv" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"szz" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"szD" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"szf" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome/gunrange) +"szj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"szE" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"szF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"szr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"szz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"sAd" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"szL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"szV" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"szY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"sAc" = ( -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay/lobby) +/area/corsat/gamma/hydroponics) "sAj" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -36412,61 +36286,90 @@ }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"sAl" = ( -/obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"sAy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"sAS" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) +"sAt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"sAv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"sAz" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"sAM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/hangar/office) "sAU" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar/arrivals) -"sAW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"sBa" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/omega/complex) -"sAY" = ( +"sBh" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/purplewhite, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"sBn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/complex) -"sBl" = ( +"sBA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Hangar Office" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"sBy" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"sBK" = ( +/obj/item/implant/neurostim, +/obj/item/implant/neurostim, +/obj/item/implant/adrenalin, +/obj/item/implant/adrenalin, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"sBL" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"sBE" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "9" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"sBU" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"sCe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"sCa" = ( -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome/gunrange) -"sCm" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"sCg" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"sCh" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) "sCv" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -36477,630 +36380,513 @@ /turf/open/floor/plating, /area/corsat/gamma/airlock/south/id) "sCw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"sCy" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"sCE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"sCM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"sDi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars, -/area/corsat/sigma/biodome) -"sDp" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) +"sCC" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/airlocknorth) -"sDB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"sDD" = ( -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/residential/lounge) -"sDF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"sDX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"sEG" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"sFn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"sFF" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/ice, -/area/corsat/gamma/biodome) -"sFR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"sGB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"sGK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/security) -"sGO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"sCE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Head Office"; + req_one_access_txt = "102" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/administration) -"sGQ" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"sGT" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/hallwaysouth) -"sGW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"sHd" = ( +/area/corsat/sigma/south/engineering) +"sCJ" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"sHj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"sHm" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"sHz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"sHC" = ( -/obj/structure/machinery/door_control{ - id = "SigmaGate"; - name = "Gate Shutters"; - pixel_y = 24; - use_power = 0 +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"sCP" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"sHD" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Reception Desk"; - req_one_access_txt = "103" +/area/corsat/gamma/biodome/virology) +"sCQ" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"sCR" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestW"; + name = "Sigma West Airlock" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"sHG" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"sHH" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"sDi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars, +/area/corsat/sigma/biodome) +"sDl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"sHK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"sHO" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/corsat/sigma/biodome/gunrange) -"sIa" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"sIt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"sDw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"sIy" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"sIO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"sDB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"sIW" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"sEq" = ( /obj/structure/bed/chair, /turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential) -"sIZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"sJg" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy17" - }, -/area/prison/hangar_storage/research/shuttle) -"sJl" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "1" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"sJE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"sJT" = ( +"sEt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"sEv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"sEG" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"sEZ" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/airlock/south) +"sFc" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, /turf/open/floor/corsat/omega, /area/corsat/omega/hallways) -"sJV" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"sKb" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/monorail) -"sKk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west/id) -"sKt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"sKv" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"sKy" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"sFt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"sFw" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"sFy" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/hangar/monorail/control) -"sKF" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"sKK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"sKR" = ( -/obj/structure/machinery/door_control{ - id = "ThetaBioAtmos"; - name = "Access Shutters"; - pixel_x = 24 +"sFF" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/ice, +/area/corsat/gamma/biodome) +"sFX" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"sGa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"sKV" = ( +/area/corsat/gamma/hangar) +"sGd" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"sLd" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"sGn" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"sGs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/virology) -"sLe" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"sGB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"sGG" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"sGJ" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"sLh" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"sGO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"sGQ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"sGW" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"sLj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"sLq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"sGY" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) -"sLs" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"sLu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control"; - req_access_txt = "102" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"sLy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"sHu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"sLK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) -"sLM" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/checkpoint) -"sLQ" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"sHw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"sLX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/cargo) +"sHx" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/checkpoint) +"sHD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"sLY" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"sMa" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"sHW" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/arrivals) +"sHY" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "20" + index = "5" }, /turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) -"sMc" = ( -/obj/structure/machinery/light{ - dir = 1 +"sIa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"sIf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"sIO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"sIT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"sIZ" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/dorms) +"sJg" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy17" }, -/turf/open/floor/corsat/whitetan/north, +/area/prison/hangar_storage/research/shuttle) +"sJy" = ( +/turf/open/floor/corsat/whitecorner/north, /area/corsat/sigma/dorms) -"sMn" = ( -/turf/open/floor/plating/warnplate/north, -/area/corsat/omega/hangar) -"sMy" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/hallways) -"sNd" = ( -/obj/structure/barricade/handrail{ - layer = 3 +"sJz" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"sJL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"sNi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"sNA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/maint) -"sNK" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Administration"; - req_access_txt = "106" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"sKe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"sNN" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"sNS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"sNW" = ( -/obj/structure/safe, -/obj/item/device/yautja_teleporter, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"sOb" = ( -/obj/structure/bed/chair{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"sKm" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"sOc" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/airlocknorth) -"sOf" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/rnr) +"sKn" = ( +/obj/structure/machinery/power/apc/upgraded/power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/west) +"sKs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"sKu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"sOw" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"sOF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo/lobby) +"sKy" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"sOK" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"sKM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/datalab) -"sPl" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"sLx" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"sLO" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"sLV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"sMa" = ( +/obj/structure/platform{ dir = 1 }, /turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential) -"sPo" = ( +/area/corsat/sigma/south) +"sNg" = ( /obj/structure/bed/chair{ dir = 1 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"sPq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"sNp" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/north) +"sOp" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"sOD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/airlock/south) +"sOF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"sOS" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"sOV" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth) +"sOW" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"sPr" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"sPw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Office"; + req_access_txt = "101" }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"sPC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"sPS" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast/datalab) -"sPU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"sQd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"sQw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/analyzer, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"sQC" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"sPD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"sPH" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/north) +"sPP" = ( +/obj/structure/sign/safety/high_voltage, +/obj/structure/platform{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"sQE" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" +/obj/item/stack/sheet/metal{ + pixel_x = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"sQK" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"sQL" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"sPR" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/south) +"sQd" = ( /obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/surgeon, -/turf/open/floor/corsat/yellow/east, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) -"sQN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"sQP" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"sQg" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"sQh" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth/id) +"sQs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"sQC" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaNorthS"; + name = "Gamma North Airlock" }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"sQT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "map_lockdown"; + name = "Gamma Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"sQW" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"sQE" = ( +/obj/item/bodybag, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"sQJ" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"sQO" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"sRb" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Secondary Generators"; - req_one_access_txt = "102" - }, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/hangar/flightcontrol) +"sRr" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"sRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"sRj" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"sRH" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "GammaCheckpointS"; - name = "Gamma Checkpoint"; - unacidable = 1 - }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"sRy" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"sRM" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"sRP" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"sRT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/checkpoint) -"sRJ" = ( +/area/corsat/gamma/airlock/south) +"sRV" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"sSa" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south) +"sSe" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"sSf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"sSL" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"sRM" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"sRW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"sSr" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"sSN" = ( +/obj/structure/surface/table, +/obj/item/folder/black, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sSV" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/gamma/hangar) +"sTa" = ( /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"sSt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"sSH" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) +/area/corsat/gamma/hangar) "sTj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"sTk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"sTm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) "sTq" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"sTs" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"sTu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/complex) -"sTw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"sTC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar/checkpoint) +"sTA" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/stairs, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) +"sTB" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar) "sTD" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/blue, @@ -37108,51 +36894,82 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "sTE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/surface/rack, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"sTI" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"sTX" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"sTF" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"sUk" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, /area/corsat/theta/airlock/control) -"sUm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) "sUn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/control) +"sUo" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"sUq" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"sUL" = ( +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"sUT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaE"; + name = "Airlock Control"; + pixel_x = 8; + pixel_y = 3; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaN"; + name = "Airlock Control"; + pixel_x = -2; + pixel_y = 8; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaS"; + name = "Airlock Control"; + pixel_x = -2; + use_power = 0 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/airlocknorth) +"sVh" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"sUQ" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"sUX" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"sVe" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"sVg" = ( -/turf/open/floor/corsat/purple/northwest, -/area/corsat/gamma/biodome/complex) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) "sVk" = ( /turf/open/floor/corsat, /area/corsat/sigma/south/engineering) @@ -37160,68 +36977,87 @@ /obj/structure/machinery/mech_bay_recharge_port, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) -"sVr" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaGrounds"; - name = "Testing Grounds" +"sVq" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"sVv" = ( +/obj/structure/surface/table/almayer, +/obj/item/handset, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/southeast/datalab) +"sVx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/biodome/testgrounds) -"sWb" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"sWj" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail) -"sWm" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"sVH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/east) -"sWv" = ( -/obj/structure/bed/chair/comfy/black{ +/area/corsat/sigma/north) +"sVT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"sVZ" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"sWc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/lobby) -"sWC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hallwaysouth) +"sWu" = ( +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar) -"sWD" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "OmegaWarden"; + name = "Privacy Shutters"; + pixel_y = -3; + use_power = 0 }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"sWB" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) +/area/corsat/sigma/southeast/generator) "sWJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/southeast/datamaint) "sWP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/corsat/omega/biodome) -"sWY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"sWQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south) +"sWV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"sWW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) "sXf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; @@ -37229,600 +37065,741 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar/security) +"sXj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) "sXl" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/airlocknorth/id) -"sXo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Theta" - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) +"sXs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) "sXt" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) -"sXF" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) "sXH" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"sXT" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"sXX" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "101" + }, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"sYb" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/omega/control) -"sXK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) -"sXY" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"sYi" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) "sYp" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 8 +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar) +"sYK" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/airlock/control) -"sYu" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) -"sYv" = ( +"sYT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"sYV" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat/blue/west, -/area/corsat/omega/control) -"sYy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"sYC" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"sYO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"sYP" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"sYW" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) -"sZf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("theta") }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) "sZg" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"sZs" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +"sZv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) +"sZR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"sZX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"sZF" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/administration) -"sZG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"sZH" = ( -/turf/open/shuttle/dropship/light_grey_top_left, -/area/prison/hangar_storage/research/shuttle) -"sZI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"sZY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/east/id) -"sZL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"sZQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"tah" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"taj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"sZS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/hangar/checkpoint) +"tak" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"sZW" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"tam" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"taq" = ( /obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_guide, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"tat" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"taB" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/doctor, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"tax" = ( +/area/corsat/omega/biodome) +"tbo" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"tbq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"tbx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"tbG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"tbN" = ( +/turf/open/mars/mars_dirt_14, +/area/corsat/sigma/biodome) +"tbX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"tcf" = ( /obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"taK" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaControl"; - name = "Observation Shutters"; - pixel_y = 5; +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"tcq" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"tcM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Security"; + req_access_txt = "101" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; use_power = 0 }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"taP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"tcO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box, +/obj/item/storage/box{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"tbt" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"tdo" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"tdr" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"tdu" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"tdK" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"tdX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, /turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"tbv" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "GammaEastE"; - name = "Gamma East Airlock" - }, -/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) -"tbE" = ( -/obj/structure/machinery/computer/emails{ - dir = 1 +"tel" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Center"; + req_access_txt = "101" }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"tbG" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/airlock/control) -"tbT" = ( -/obj/structure/filingcabinet/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"teo" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"ter" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/cargo) +"tey" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 4"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"teD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/lobby) +"teF" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south) -"tbZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/sigma/south) -"tce" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"tcu" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive, -/obj/item/explosive/grenade/high_explosive, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"tcE" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"tcN" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"teQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"teT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/westleft{ + name = "Medical Desk" }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/machinery/door/window/eastright{ + name = "Medical Desk" }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/lobby) +"tff" = ( +/obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"tcX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/stamp/rd, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"tdO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/southeast/datalab) -"tdS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"tdV" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/area/corsat/gamma/sigmaremote) +"tfm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Mech Assembly"; + req_one_access_txt = "102" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"tdW" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"tea" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"tes" = ( -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"tfc" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/sigma/south/robotics) +"tfp" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("omega") }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/foyer) -"tfn" = ( -/obj/structure/bed/chair/comfy/black, +/obj/structure/surface/table/reinforced, /turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/east/id) -"tfp" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/omega/checkpoint) +"tfr" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 1"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) "tfu" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"tgI" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast) -"thu" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"thE" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"thF" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar/monorail) -"thL" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"thM" = ( +"tfD" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/bed/chair{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"tfE" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"tfR" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"tgb" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"tge" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"thT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"tgp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"tgs" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security) +"tgw" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"tgQ" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, /turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) -"thW" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 +"tgU" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"tgZ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "CORSAT Sec 1" }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security) -"tic" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"tid" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" +/obj/structure/machinery/brig_cell{ + id = "CORSAT Sec 1"; + name = "Cell 1"; + pixel_x = -32 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"tha" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"tht" = ( /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west/id) -"tij" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"til" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"tip" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"tiR" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/syringe_case/regular, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"tje" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"tjt" = ( -/obj/structure/pipes/vents/pump, +/area/corsat/gamma/airlock/south) +"thx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"thC" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail/control) -"tjC" = ( +/area/corsat/sigma/southeast/generator) +"thN" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/south/offices) +"thO" = ( +/obj/structure/machinery/autolathe, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/sigma/south) -"tjE" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"thR" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"tjP" = ( -/turf/open/floor/corsat/arrow_north, -/area/corsat/sigma/cargo) -"tke" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"tkF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CORSAT Academy"; - req_one_access = null +/area/corsat/sigma/south/security) +"thT" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/capsaicin, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"thZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"tkG" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"tie" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"tio" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"tip" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/item/device/flashlight, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/control) -"tkO" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"tkY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo) +"tiG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/gamma/hangar/arrivals) -"tle" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"tjj" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"tjH" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"tjI" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"tjN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"tkc" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/checkpoint) +"tkf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"tkk" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/armory) -"tlg" = ( +/obj/item/powerloader_clamp, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"tkm" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"tll" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/platform{ + dir = 8; + layer = 2.8 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"tlp" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"tkv" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"tkz" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar/monorail) -"tls" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"tkN" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) +"tkO" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"tkP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"tkS" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"tkX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"tlc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"tlf" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"tlu" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"tlv" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/toxins) "tlx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/ice, /area/corsat/gamma/biodome) -"tlN" = ( -/obj/structure/bed/chair{ - dir = 1 +"tlB" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"tlG" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"tlM" = ( +/obj/structure/surface/table, +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"tlS" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"tlV" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"tma" = ( +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"tlU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"tmk" = ( -/obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"tmn" = ( -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"tmj" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth) +"tmC" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"tmL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaEastD"; + name = "Entrance Airlock Control"; + pixel_x = 5; + use_power = 0 }, -/obj/item/clothing/head/beret/sec/warden, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"tmu" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"tmN" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydroeast) +"tnh" = ( +/obj/structure/closet, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/morgue) +"tnr" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"tny" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"tnD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"tnO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, /turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"tmM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/area/corsat/sigma/airlock/south) +"tnX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"tmN" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +/area/corsat/sigma/hangar) +"tom" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"too" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"toA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"toB" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"tmP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"tmS" = ( -/obj/structure/machinery/light, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"tnn" = ( -/turf/open/floor/corsat/tcomms/southwest, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"toO" = ( +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) -"tnI" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"tnU" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "5" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"tnV" = ( +"toW" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"toY" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tpc" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/datamaint) +"tpd" = ( /obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"tof" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"tpe" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/trash/popcorn, +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"tpj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"tpq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/south/offices) -"top" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"toq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"toA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"toI" = ( -/obj/structure/bed/chair/comfy/black, /turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"toO" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"toP" = ( -/obj/structure/safe, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"toQ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/area/corsat/sigma/airlock/control) +"tpt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) "tpu" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"tpB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SigmaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) "tpF" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"tpP" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"tpX" = ( +"tpN" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 5 +/obj/item/circuitboard/robot_module/medic, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"tpX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) "tqb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; @@ -37831,257 +37808,252 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/hangar/monorail) -"tqc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"tqf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"tqh" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"tqz" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"tqC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plating_striped/north, +"tqj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/goat, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) -"tqE" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"tqJ" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" +"tql" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"tqq" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"tqu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/east/id) +"tqy" = ( +/obj/structure/closet/wardrobe/robotics_black, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"tqA" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"tqL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"tqM" = ( +/obj/structure/machinery/light{ + dir = 4 }, /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaEastID"; - name = "Security Shutters" +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"tqS" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east/id) -"tqR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Omega Research Storage"; - req_access_txt = "103"; - req_one_access = null +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"tqX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"trA" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"trR" = ( +/obj/item/tool/soap, /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"tso" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, /turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"tqS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"tqT" = ( -/obj/structure/fence, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"trb" = ( -/obj/item/storage/box/masks, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"trf" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"tri" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat/green/southwest, -/area/corsat/gamma/medbay/morgue) -"trn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/south/id) -"trK" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"trW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/corsat/sigma/north) +"tsF" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"tsH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"trX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, /turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"tsw" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/gamma/biodome/complex) -"tsx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"tsz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"tsE" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) +/area/corsat/gamma/hangar/flightcontrol) "tsI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/theta/airlock/control) -"tsN" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"tsQ" = ( -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"tsT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"tsP" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "23" + index = "20" }, /turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) -"tsX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"ttp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"ttt" = ( +"tsU" = ( +/obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"ttu" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ttF" = ( +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"ttn" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"tub" = ( -/obj/structure/barricade/handrail{ - layer = 3 +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"ttL" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/north) +"ttO" = ( +/turf/open/floor/corsat/blue/northeast, +/area/corsat/gamma/hallwaysouth) +"ttZ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/hallwaysouth) "tud" = ( -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome/scrapyard) -"tus" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"tuf" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"tuq" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hallwaysouth) +"tuy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) "tuB" = ( /obj/structure/surface/rack, /obj/item/folder/red, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"tuQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) +"tuC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"tuE" = ( +/obj/structure/machinery/juicer, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"tuH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"tuL" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"tuM" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"tvb" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"tvd" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/scrapyard) "tvf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"tvq" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/checkpoint) -"tvD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_access_txt = "101" +"tvn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"tvu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Teleportation Lab"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"tvT" = ( -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"tvX" = ( -/obj/item/storage/fancy/cigar, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"twh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/researcher) -"twv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"tvv" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"tvD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"tvU" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) +"twd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"twj" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"twA" = ( -/turf/open/floor/corsat/purplewhitecorner, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) -"twK" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"twN" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"twO" = ( -/obj/structure/machinery/light{ - dir = 8 +"twl" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/hangar) +"twr" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/containment) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"tww" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hallways) +"twB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) "twS" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/vents/pump/on, @@ -38091,130 +38063,143 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/hydroponics) -"twZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Telecommunications"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"txa" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"txm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Theta Dome Control" }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/telecomm) +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) "txs" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/camera/autoname{ dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"txD" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"txF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null + network = list("sigma") }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"txw" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"txH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"txL" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"txA" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/airlock/east) +"txT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) +"txW" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"tyj" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) "tyt" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"tyx" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"tyA" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/hallwaysouth) -"tyF" = ( -/obj/effect/landmark/survivor_spawner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"tyy" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"tyB" = ( /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) +/area/corsat/gamma/engineering/atmos) "tyH" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth/id) -"tyI" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/southeast/generator) +"tyM" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"tyT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"tyU" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaDSC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north/id) +"tze" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"tzl" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/restraint/handcuffs/zip, /turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"tyM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"tyZ" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"tzg" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/sigma/south/security) +"tzC" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"tzp" = ( -/turf/open/floor/corsat/bluegreycorner/east, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) -"tzx" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"tzN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/east) -"tzQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"tzW" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "21" +"tzD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"tzO" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) "tzY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"tAb" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hallways) "tAc" = ( -/turf/open/mars/mars_dirt_11, -/area/corsat/sigma/biodome) +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/east/id) +"tAs" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) "tAF" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -38222,284 +38207,217 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"tAI" = ( -/obj/structure/machinery/light{ - dir = 8 +"tAT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/north) -"tAL" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitecorner, -/area/corsat/sigma/dorms) -"tBg" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"tAU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/southeast/dataoffice) +"tAY" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) -"tBk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"tBp" = ( +"tBg" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"tBx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null + dir = 5 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/window/southright, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"tBF" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/theta/biodome/complex) -"tBM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/area/corsat/sigma/southeast/datalab) +"tBk" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"tBq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/structure/mirror{ - pixel_y = 24 +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"tBu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/whitebluefull/southwest, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) -"tBQ" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"tBS" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"tCb" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"tCt" = ( -/obj/structure/platform{ - dir = 8 +"tBJ" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/item/stack/sheet/metal{ - pixel_x = 3 +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"tBY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"tCg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"tCl" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/complex) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) "tCu" = ( /turf/closed/shuttle/ert{ icon_state = "wy15" }, /area/prison/hangar_storage/research/shuttle) -"tCC" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast) -"tCE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +"tCD" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "ThetaNorthD"; + name = "Theta Dome Airlock" }, -/turf/open/floor/corsat/blue/northeast, +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "map_lockdown"; + name = "Theta Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) -"tCK" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"tCW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaGrounds"; - name = "Testing Grounds" +"tCG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/biodome/testgrounds) -"tCZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"tDq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"tDe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"tDy" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/gunrange) -"tDi" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/southeast/datalab) -"tDk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"tDE" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/turf/open/mars/mars_dirt_9, -/area/corsat/sigma/biodome) -"tDD" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"tDI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south) +/area/corsat/sigma/hangar/id) "tDK" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"tDL" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) -"tDS" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering) -"tEt" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo/disposal) -"tEv" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"tEx" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Hydroponics"; - req_one_access = null +"tDN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"tEC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"tEN" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/complex) +"tDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"tEQ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"tFc" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"tEb" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"tFj" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"tEn" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"tEo" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"tEx" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"tER" = ( /obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/southeast, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) -"tFn" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"tFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"tFE" = ( -/obj/structure/bed/chair/office/light, +"tEV" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) +/area/corsat/gamma/engineering/core) +"tEW" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) "tFG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"tFO" = ( +"tFV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"tFQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"tFR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/obj/item/folder/black_random, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"tGi" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"tGm" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tGp" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) "tGq" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/corsat, /area/corsat/omega/maint) -"tGz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"tGD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) "tGV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) -"tHc" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Xenobiology Reception Desk"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"tHq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Chemistry"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"tHs" = ( +"tHb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/hallwaysouth) -"tHx" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"tHr" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"tHs" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"tHv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) "tHy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump{ @@ -38507,1293 +38425,1223 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"tHI" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"tHP" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/biodome/complex) -"tIb" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/scrapyard) -"tIj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +"tIg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) "tIk" = ( /turf/closed/wall/resin/membrane, /area/corsat/sigma/biodome) -"tIB" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"tIG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"tIY" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/checkpoint) -"tJb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"tJc" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"tJf" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"tJj" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"tJu" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/east) -"tJy" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Custorial Closet"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"tJA" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"tJM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +"tIu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" }, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; + id = "GammaAdmin"; name = "Security Shutters" }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"tJO" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"tJS" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = -32 - }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"tKb" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/syringe/antiviral, -/obj/item/reagent_container/syringe/antiviral, -/obj/item/reagent_container/glass/beaker/vial, -/obj/item/reagent_container/glass/beaker/vial, -/obj/item/reagent_container/glass/beaker/vial, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"tKc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"tKe" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"tKh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"tIy" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"tKi" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"tIz" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"tKw" = ( -/obj/structure/closet/secure_closet/security_empty{ - icon_broken = "hossecurebroken"; - icon_closed = "hossecure"; - icon_locked = "hossecure1"; - icon_off = "hossecureoff"; - icon_opened = "hossecureopen"; - icon_state = "hossecure1"; - name = "Head of Security's Locker" +/obj/item/ashtray/plastic, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/device/binoculars, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security) -"tKx" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"tIF" = ( /obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/checkpoint) -"tKF" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/red/east, /area/corsat/omega/security) -"tKL" = ( +"tIW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/researcher) +"tIX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"tJf" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"tJr" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"tJA" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"tJJ" = ( +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"tJL" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/control) +"tKp" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"tKr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"tKs" = ( +/turf/open/floor/corsat/purple/northwest, +/area/corsat/gamma/biodome/complex) +"tKv" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar) -"tKN" = ( -/obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("gamma") + dir = 8; + network = list("omega") }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"tKU" = ( -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"tKV" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"tKM" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) "tKY" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) "tLb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"tLe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"tLK" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/chips, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"tLn" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/obj/structure/machinery/door_control{ + id = "ThetaNorthD"; + name = "Entrance Airlock Control"; + pixel_y = 5; + use_power = 0 }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"tLt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"tLM" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"tLw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/omega/control) -"tLO" = ( -/obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"tLN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "tLV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/gamma/sigmaremote) -"tLW" = ( -/obj/structure/prop/almayer/cannon_cables{ - color = "#55BBFF"; - name = "\improper Cables" +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"tLY" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/hallwaysouth) +"tMa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"tMs" = ( +/obj/structure/machinery/light, +/obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"tMw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"tMy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/corsat/gamma/hangar/monorail) +"tMu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tMI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "CORSAT Library" }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"tME" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/id) -"tMH" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"tMU" = ( +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"tMW" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/control) -"tMP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Baths" + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/showers) -"tMT" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"tNg" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "13" +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"tMZ" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/sigma/hangar) +"tNi" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"tNm" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) "tNp" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/vents/pump, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"tNr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"tNt" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hangar/office) -"tNB" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"tNF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south) +"tNz" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"tNC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) "tNH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"tNK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"tNM" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/south) "tNU" = ( -/obj/structure/bed/nest, -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome) -"tOj" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light{ dir = 8 }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) +/area/corsat/gamma/rnr/library) +"tOf" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) "tOl" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"tOt" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"tOm" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"tOy" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Toxins Lab"; + req_one_access_txt = "103" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"tOH" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"tOI" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"tON" = ( -/obj/structure/bed/chair{ +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"tOO" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/barricade/handrail{ - layer = 3 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"tOR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"tPj" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydroeast) -"tPl" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"tPK" = ( -/obj/structure/machinery/light{ +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/north/id) +"tOU" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"tPe" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/southeast, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"tPv" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) +"tPB" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/id) +"tPO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"tPQ" = ( +/obj/structure/janitorialcart, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) "tPV" = ( /turf/closed/wall/biodome, /area/corsat/sigma/hangar/security) -"tQc" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) +"tQa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) "tQd" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) +"tQg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"tQj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) "tQk" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) +"tQm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"tQu" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) "tQv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hallways) -"tQy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat/purple/west, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"tQB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "OmegaA"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) -"tQz" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/sigma/dorms) -"tRf" = ( +"tQJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"tRl" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"tRm" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"tRq" = ( +/area/corsat/gamma/hangar/cargo) +"tQU" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"tRd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"tRF" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"tRk" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") + network = list("omega") }, -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"tRG" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"tRy" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/hangar/office) -"tRN" = ( -/obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/residential/east) -"tRR" = ( -/obj/structure/closet/crate/science, -/obj/item/cell/hyper/empty, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"tSc" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"tSh" = ( -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"tSn" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"tSq" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"tSs" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"tSt" = ( -/obj/structure/machinery/light, +/area/corsat/omega/cargo) +"tRI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"tRS" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"tRW" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hallwaysouth) +"tRZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"tSi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"tSj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/airlock/control) -"tSx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/gamma/airlock/north) -"tSR" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, /turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"tSW" = ( +/area/corsat/sigma/southeast/datalab) +"tSm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"tSs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"tSY" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"tSZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"tTd" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"tTo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"tTV" = ( -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome/scrapyard) -"tTW" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/rack, -/obj/item/powerloader_clamp, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"tUn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaResC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/checkpoint) -"tUv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"tUE" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) -"tUI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"tUM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar) +"tSI" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"tSN" = ( +/turf/open/floor/carpet7_3/west, +/area/corsat/omega/offices) +"tSP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/toxins) -"tUV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"tVa" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"tSS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"tTb" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) +"tTd" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"tTi" = ( /obj/structure/machinery/camera/autoname{ dir = 8; - network = list("gamma") + network = list("sigma") }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/security/cells) -"tVc" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"tVo" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/checkpoint) -"tVp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"tVC" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/monorail) -"tVE" = ( -/obj/structure/machinery/light{ +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"tTr" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"tTD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/foyer) -"tVF" = ( -/obj/structure/bookcase, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"tVI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"tVM" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"tTN" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/sigma/south) +"tUj" = ( +/obj/structure/dispenser/phoron, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"tUA" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/monorail/control) -"tVX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/newspaper, +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"tUB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"tUC" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential) +"tUD" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/morgue) +"tUH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"tWj" = ( -/obj/structure/window/reinforced{ +/area/corsat/sigma/dorms) +"tUN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"tUS" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"tWk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"tVs" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"tVB" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar) +"tVC" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"tVI" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/south) +"tVU" = ( +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"tWl" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/north/id) +"tVY" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) +"tWg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"tWp" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"tWq" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/west/id) +"tWx" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) "tWy" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/ice, /area/corsat/gamma/biodome) -"tWA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) "tWO" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar/arrivals) -"tWQ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control"; + req_access_txt = "102" }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"tWT" = ( -/obj/effect/alien/weeds/node, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"tXc" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"tXe" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"tXj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, /turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) -"tXv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) "tXx" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"tXG" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"tXL" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/security) -"tXM" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"tXy" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/hallwaysouth) +"tXF" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south) "tXN" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) "tXQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"tYa" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/monorail) +"tXS" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"tXU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"tXV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Medbay"; + req_one_access = null }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"tYb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"tYl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"tYa" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"tYm" = ( -/obj/structure/surface/table, -/obj/item/folder/blue, -/turf/open/floor/corsat/tan/north, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"tYu" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) +"tYA" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) "tYF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/administration) -"tYW" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Head Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tYV" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"tZd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"tZf" = ( -/obj/structure/bed/stool{ - pixel_y = 15 +/obj/item/stack/sheet/metal{ + pixel_x = 3 }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"tZa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"tZh" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tZb" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) +/area/corsat/sigma/south/robotics) "tZl" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/datamaint) -"tZB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"tZM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"tZP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Canteen" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"tZE" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"uah" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) -"uam" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/east/id) -"uat" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"uau" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"tZZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"uab" = ( +/obj/effect/decal/cleanable/blood/splatter, /obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"uaK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"uaT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"uai" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"uao" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/lobby) +"uar" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"uaG" = ( +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"uaJ" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar) +"uaQ" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"uaU" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) "uaY" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"ubl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"ube" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Reactor Core"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"ubg" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"ubE" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"ubM" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/corsat/sigma/hangar/checkpoint) +"ubs" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 30 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"ucc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"ubC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/hangar/monorail) -"ucf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"ucL" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"ucM" = ( -/turf/open/floor/corsat/squares, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) -"ucR" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "11" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"ucS" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"ucX" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ubH" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"ubI" = ( +/turf/open/mars_cave/mars_cave_8, +/area/corsat/sigma/biodome/gunrange) +"uch" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"ucY" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"ucl" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"ucy" = ( /obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"uda" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/obj/item/stack/sheet/mineral/platinum{ + amount = 10 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"udd" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"ucB" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"udp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"ucF" = ( +/obj/structure/machinery/computer3, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"ucK" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/gunrange) +"ucS" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/south) +"udd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"udq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) "udr" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/sigmaremote) -"udA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) -"udF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Laundry Unit" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"udI" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/control) -"udU" = ( -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"ueb" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"uej" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"uek" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"ues" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar) -"ueA" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"ueL" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"uds" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"udt" = ( /turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail/control) -"ueR" = ( -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"ueS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/area/corsat/sigma/south) +"udJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - name = "Monorail Control"; - req_access_txt = "101" + name = "Food Storage"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"ufe" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/area/corsat/gamma/freezer) +"udO" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"uec" = ( +/obj/structure/bed/chair, /turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"ufp" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hangar/monorail) -"ufq" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" +/area/corsat/sigma/hangar/checkpoint) +"uem" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/airlock/control) -"ufD" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"uen" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/control) +"ueq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"ufX" = ( -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/gamma/residential) -"ugh" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/area/corsat/omega/cargo) +"ueu" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"ugm" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"uev" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"ugs" = ( +/area/corsat/gamma/hangar/security) +"uew" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/omega/cargo) +"ueF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"ugz" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"ueQ" = ( +/obj/item/paper_bin, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/residential/lounge) +"ueR" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv, +/obj/item/folder/black_random, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"ufH" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaS"; + name = "Omega Airlock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"ufK" = ( +/obj/structure/surface/table, +/obj/item/corncob, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"ufS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"uga" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) +/area/corsat/gamma/biodome/complex) +"ugd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) "ugB" = ( /turf/closed/shuttle/ert{ icon_state = "wy12" }, /area/prison/hangar_storage/research/shuttle) -"ugT" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hallways) +"ugF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"ugI" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/theta/airlock/east) "ugW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) "uhc" = ( -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/morgue) -"uhi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"uhk" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"uhw" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"uhf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "106" }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"uhI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/theta/airlock/east) -"uhN" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) -"uhS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/office) +"uhh" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"uht" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/mirror{ + pixel_y = 24 }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"uhv" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/rnr) +"uhA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"uhC" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"uhZ" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/omega/offices) -"uic" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"uif" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar) -"uih" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"uii" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"uin" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "18" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"uiv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_11, -/area/corsat/sigma/biodome) -"uiy" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestD"; - name = "Sigma Dome Airlock" +/area/corsat/gamma/engineering) +"uhD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"uhH" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"uiA" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"uhI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"uiH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/biodome/complex) -"ujb" = ( -/obj/item/trash/buritto, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"ujf" = ( -/obj/structure/largecrate/random/barrel/yellow, +/area/corsat/omega/checkpoint) +"uhO" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"uhU" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"ujB" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/corsat/omega/biodome) +"uij" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/complex) +"uil" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"uiD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/purplewhite/north, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"uiX" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) -"ujH" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/containment) -"ujK" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/scrapyard) -"ujL" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ujY" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) +"ujc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security/cells) +"ujn" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"ujJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"ujM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) "ukb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"uks" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 +"ukw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"ukx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/airlocknorth/id) -"ukF" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/hangar/flightcontrol) -"ukJ" = ( -/obj/structure/surface/rack, -/obj/item/oldresearch/Chitin, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"ukE" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar) +"ukH" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"ukR" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydrowest) "ukV" = ( /obj/structure/window_frame/corsat, /turf/open/floor/plating, /area/corsat/gamma/biodome/toxins) -"ulc" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "SigmaCargo"; - name = "Sigma Cargo Bay"; - use_power = 0 +"ukW" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/cargo) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"ula" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) "uli" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"ull" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Showers" +"uls" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "16" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"uln" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"ulo" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"ulu" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"ulD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) +"ulv" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"ulx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"ulP" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/omega/hangar) +"umd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) -"ulI" = ( +"umf" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"umr" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"umy" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/omega/offices) +"umB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"umG" = ( /obj/structure/surface/table/almayer, +/obj/item/paper, /obj/structure/window/reinforced{ dir = 8; - health = 80 + health = 250 }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"ulK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"umY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"ulT" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"umh" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"umm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"ump" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential) -"umv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"unb" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"unn" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"umO" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"umZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"unt" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/cargo/disposal) -"unz" = ( -/obj/structure/fence, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"unG" = ( -/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"uoc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"uok" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/corsat/sigma/hangar/monorail/control) +"unR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/rnr) -"uol" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"uom" = ( -/turf/open/floor/corsat/purplecorner/north, +"uob" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/north) +"uoe" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) -"uop" = ( -/obj/item/storage/box/gloves, -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) "uor" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) "uov" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) +"uow" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/handset, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"uoz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"uoF" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"uoN" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/south) +"uoV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) "uoW" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/platform, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) "upe" = ( /obj/structure/machinery/computer/cameras{ network = list("sigma"); @@ -39808,107 +39656,107 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"upi" = ( -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" +"uph" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"upi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"upm" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) "upr" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"upx" = ( -/obj/structure/machinery/light{ - dir = 4 +"upv" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"upx" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) -"uqj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"upz" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"uqr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"uqo" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/id) -"uqv" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"uqM" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar) +"uqt" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) -"uqV" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = 25; - use_power = 0 +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/monorail) +"uqE" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"uqF" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"uqM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Virology Lab"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/security) -"urm" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"urh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"uro" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"urB" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) -"urM" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"urV" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/theta/airlock/control) -"usb" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"usn" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/checkpoint) +"urs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"urR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) -"uss" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "2" +"usd" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/dorms) +"usC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"usI" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) "usK" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/dirtgrassborder/south, @@ -39923,818 +39771,851 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"usU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/card, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/security) -"usX" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"utg" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Quartermaster's Office"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"utj" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/east/id) -"utl" = ( -/obj/structure/barricade/handrail{ +"utd" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"utm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"uti" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"utr" = ( -/obj/structure/machinery/computer/emails{ +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/hallwaysouth) +"utv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Atmospherics"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet6_2/west, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"utB" = ( +/obj/structure/pipes/trinary/mixer, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/theta/airlock/control) +"utK" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"utO" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/administration) -"utu" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"utw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"utH" = ( -/obj/structure/machinery/light{ +"utT" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"utY" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/north) +"utZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"uub" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"uuf" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"uui" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"uum" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/butler, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"uuq" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"uue" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south/id) -"uuj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/area/corsat/gamma/residential/east) +"uuy" = ( +/obj/structure/surface/table/almayer, +/obj/item/handset, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/datalab) +"uuz" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"uuk" = ( -/obj/structure/bed, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security/cells) -"uuo" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ +/area/corsat/sigma/hangar/security) +"uuG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "Data Laboratory"; - req_access_txt = "106;102;103" + name = "Security Office"; + req_access_txt = "101" }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"uur" = ( +/area/corsat/sigma/hangar/id) +"uuY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/bonesetter, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) -"uuw" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"uuF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"uuI" = ( +/obj/structure/machinery/keycard_auth/lockdown/corsat, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"uuZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"uvi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"uuL" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/dorms) -"uuX" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"uvg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"uvh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"uvt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/form_printer, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"uvu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) +/area/corsat/sigma/hangar/arrivals) "uvw" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/dorms) -"uvz" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"uvU" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"uvx" = ( /obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"uvC" = ( +/obj/structure/closet/wardrobe, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"uvQ" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/dorms) +"uvW" = ( +/obj/structure/machinery/door/window/eastright, +/obj/effect/alien/weeds/node, /turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) -"uvX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/omega/hangar) -"uwH" = ( +"uwf" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/north) -"uwL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"uwg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"uxa" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"uwz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"uxw" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/residential/maint) -"uxy" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"uwD" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/arrivals) +"uwF" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) -"uyi" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/hallwaysouth) -"uyo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"uyu" = ( +"uwG" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 +/obj/item/storage/donut_box, +/obj/structure/machinery/light, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"uwO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"uwT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"uwW" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/control) -"uyy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"uxa" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) -"uyB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/chemistry) +"uxi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"uyJ" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"uzb" = ( -/obj/item/storage/belt/gun/m4a3/vp78{ - desc = "The M276 is the standard load-bearing equipment of the TGMC. It consists of a modular belt with various clips. This version has a holster assembly that allows one to carry the VP78 comfortably secure. It also contains side pouches that can store XX magazines."; - name = "M276 pattern VP78 holster rig" - }, -/obj/structure/closet/secure_closet/detective{ - name = "Head of Security's Cabinet" - }, -/obj/item/device/flash, -/obj/item/device/hailer, -/obj/item/device/megaphone, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"uzA" = ( -/obj/structure/machinery/disposal, +/area/corsat/omega/checkpoint) +"uxm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/botanydisk, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"uxp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"uxM" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"uAa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/southeast/datalab) +"uxX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"uyc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/security/cells) -"uAm" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/airlock/control) -"uAn" = ( -/obj/structure/machinery/atm{ - pixel_x = -30 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"uAA" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"uyf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential/east) -"uAD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/wirecutters, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/robotics) -"uAL" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"uyh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"uyn" = ( /obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, +/obj/item/folder/red, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"uyE" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"uAQ" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/area/corsat/gamma/sigmaremote) +"uyQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"uza" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"uBa" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo) +"uzc" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"uzr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"uzD" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"uzG" = ( +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"uzH" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"uzJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"uzT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"uAn" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"uAH" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/checkpoint) "uBj" = ( /obj/structure/window/framed/corsat/hull/research, /turf/open/floor/plating, /area/corsat/omega/hallways) -"uBt" = ( -/obj/structure/platform{ - dir = 8 +"uBn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"uBo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"uBs" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uBu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Virology Wing"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"uBv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"uBz" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome) +"uBA" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/scalpel, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/surgery) "uBH" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) -"uBS" = ( -/obj/structure/machinery/light{ - dir = 4 +"uBX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("omega") }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"uBU" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"uBZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"uBW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/complex) -"uCc" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"uCf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"uCe" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"uCj" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/hangar) +"uCm" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/containment) "uCn" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"uCr" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"uCG" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "10" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"uCY" = ( -/obj/structure/machinery/camera/autoname{ +"uCv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/sparker, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"uCE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"uCH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 8; - network = list("gamma") + health = 80 }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar) +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"uCL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"uCT" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) "uDk" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/control) -"uDv" = ( -/turf/open/mars_cave/mars_cave_8, -/area/corsat/sigma/biodome/scrapyard) -"uDF" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"uDN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"uDp" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/airlock/east) +"uDD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"uDE" = ( +/obj/structure/machinery/smartfridge/chemistry/virology{ + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"uDT" = ( +/obj/structure/tunnel{ + id = "hole4" + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) "uDW" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) +"uDY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"uEj" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/gunrange) +"uEA" = ( +/turf/open/floor/corsat/theta, +/area/corsat/gamma/hallwaysouth) "uEC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"uEF" = ( +"uEV" = ( +/turf/open/mars_cave/mars_cave_20, +/area/corsat/sigma/biodome/gunrange) +"uFc" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/omega/control) +"uFs" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"uFw" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"uEG" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"uEH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"uEL" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"uEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"uFB" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"uER" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"uFh" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential) -"uFp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/researcher) -"uFt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Omega Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/rnr) +"uFO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Teachers' Office"; + req_one_access = null }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"uFx" = ( -/obj/structure/bed/chair/office/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"uFI" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/north) -"uFR" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) "uFW" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/airlocknorth) -"uGq" = ( /obj/structure/surface/rack, -/obj/item/device/flashlight, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/datamaint) +"uGc" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) +/area/corsat/gamma/foyer) +"uGi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) "uGu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"uGE" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"uGO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"uGR" = ( +/obj/structure/platform{ dir = 1; - name = "Omega Dome Control"; - req_one_access_txt = "102" + layer = 2.7 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/control) -"uGE" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"uHd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"uHe" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) "uHm" = ( /turf/closed/shuttle/ert{ icon_state = "wy14" }, /area/prison/hangar_storage/research/shuttle) +"uHo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) "uHr" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/south/engineering) -"uHA" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "OmegaCargoN"; - name = "Omega Cargo Room"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/cargo) -"uHR" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/redcorner/west, +"uHG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) -"uHS" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"uHY" = ( -/turf/open/floor/corsat/purple/southwest, -/area/corsat/omega/hallways) -"uIe" = ( -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) +"uHI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel/laser{ + pixel_y = 10 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"uHX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"uIg" = ( +/obj/structure/curtain, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) "uIh" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) -"uIi" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/security) -"uIj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/obj/item/weapon/gun/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"uIB" = ( +"uIn" = ( +/obj/structure/machinery/bot/cleanbot, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"uIp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "GammaBioAtmos"; + name = "Access Shutter" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/generator) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uIr" = ( +/turf/open/shuttle/dropship/light_grey_middle, +/area/prison/hangar_storage/research/shuttle) +"uIz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) "uIJ" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"uIK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"uJc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"uJf" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"uJj" = ( +"uJb" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"uJQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"uKd" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"uKf" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hallwaysouth) +"uKm" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"uKL" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"uLa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/obj/item/clothing/head/beret/sec/warden, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"uJn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"uLd" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo) -"uJw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"uJx" = ( -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome) -"uJP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"uLe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"uLf" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + req_one_access_txt = "19;106;104" }, -/obj/structure/barricade/handrail{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"uJR" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"uJS" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/dorms) -"uJT" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"uKa" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"uKe" = ( -/obj/structure/machinery/bioprinter{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"uKi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/checkpoint) -"uKm" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"uKn" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"uLm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"uKp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"uLp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/purplewhite/northeast, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) -"uKC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"uKD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uLs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"uLE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"uKF" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/security) -"uKH" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"uKP" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/surgery) -"uKU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/corsat/omega/airlocknorth/id) +"uMp" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"uKZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"uLj" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"uMs" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"uMu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"uMC" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"uME" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo/lobby) -"uLw" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/airlock/control) -"uLC" = ( -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"uLG" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"uMR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) -"uLK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"uNb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uNc" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"uNd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"uNe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"uMa" = ( -/turf/open/floor/almayer/plating_striped, -/area/corsat/gamma/sigmaremote) -"uMp" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 1 +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"uNs" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"uNC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"uMW" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"uNx" = ( +/area/corsat/sigma/airlock/east/id) +"uNM" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/sink{ - pixel_y = 25 - }, +/obj/structure/filingcabinet/filingcabinet, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"uNL" = ( -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"uNV" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"uOd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"uOg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"uOp" = ( -/turf/open/floor/corsat/purple/west, /area/corsat/gamma/biodome/complex) -"uOq" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"uOy" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Reception Desk"; - req_one_access_txt = "100" +"uNQ" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"uOf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"uOs" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleporter Power Room"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/lobby) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"uOt" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"uOu" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/scrapyard) "uOB" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"uOD" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"uOF" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"uON" = ( +/turf/open/shuttle/dropship/light_grey_top, +/area/prison/hangar_storage/research/shuttle) "uOU" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/complex) +"uPb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) -"uOV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"uPi" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"uPa" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/omega/hallways) -"uPd" = ( -/obj/structure/machinery/light{ +/area/corsat/omega/security) +"uPk" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/airlocknorth) +"uPs" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/hangar) +"uPt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"uPr" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/southeast/dataoffice) -"uPu" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hangar) +/turf/open/mars/mars_dirt_8, +/area/corsat/sigma/biodome) "uPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -40742,73 +40623,76 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"uPA" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"uPM" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"uPQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"uQs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/officesquares, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"uQu" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"uQx" = ( +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/omega/offices) -"uQn" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"uQC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/sigma/airlock/control) +"uQD" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"uQE" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) "uQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"uQG" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"uQL" = ( +/obj/item/cell/super/empty, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"uQS" = ( +/obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") + dir = 8; + network = list("omega") }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"uQI" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/weapon/gun/smg/mp5, -/obj/structure/surface/rack, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/armory) -"uQR" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"uQU" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"uRc" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/airlock/control) +"uRf" = ( +/obj/structure/machinery/vending/hydronutrients, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"uQZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"uRe" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;106;102" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) +/area/corsat/gamma/hydroponics) "uRA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"uRV" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast) +"uRP" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"uRY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) "uSk" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -40818,39 +40702,19 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar/security) -"uSx" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"uSC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"uSD" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"uSF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/omega/cargo) "uSJ" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/obj/item/organ/kidneys, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"uSS" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) "uST" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer/emails{ @@ -40859,45 +40723,34 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"uSW" = ( +"uTb" = ( /obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue, -/area/corsat/omega/control) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) "uTf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) -"uTn" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/north) -"uTF" = ( -/obj/structure/machinery/vending/coffee, +"uTx" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, /obj/structure/platform{ - dir = 1; - layer = 2.7 + dir = 8; + layer = 2.8 }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/hallwaysouth) -"uTL" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"uTN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"uTO" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"uTC" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/north) +"uTE" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) "uTU" = ( /obj/structure/closet/crate/trashcart, /obj/structure/machinery/light/small{ @@ -40906,6 +40759,29 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) +"uTX" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"uUf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"uUi" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uUj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) "uUk" = ( /obj/structure/cryofeed{ color = "silver"; @@ -40920,158 +40796,116 @@ /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) "uUr" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"uUy" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/lobby) -"uUH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/hangar/cargo) -"uUI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Gamma Dome Control" +/obj/structure/flora/pottedplant, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"uUs" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestD"; + name = "Sigma Dome Airlock" }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"uUM" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"uUE" = ( +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"uUU" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"uVn" = ( +/obj/structure/safe, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"uVz" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/south) -"uUP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/corsat/sigma/south/complex) -"uUQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) -"uUT" = ( -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome) -"uUV" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"uVb" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"uVd" = ( -/obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"uVj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"uVs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/southeast/dataoffice) -"uVv" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 + health = 80 }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"uVC" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/omega/hangar) -"uVG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 1; + layer = 2 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"uVG" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/chemistry) "uVK" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/southeast/datamaint) -"uVL" = ( -/obj/structure/machinery/door_control{ - id = "OmegaAccessC2"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"uVU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 4 }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/landing/console2) +"uVY" = ( /turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"uVN" = ( -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome) +/area/corsat/omega/airlocknorth/id) "uWl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"uWm" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"uWB" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"uWC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_access_txt = "101" }, -/turf/open/floor/corsat/theta, -/area/corsat/sigma/south) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uWG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) "uWJ" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/rnr/arcade) -"uWT" = ( +"uWM" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"uWR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"uWV" = ( /obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"uWX" = ( -/obj/structure/machinery/door_control{ - id = "OmegaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"uXj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"uXh" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/north) "uXk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -41079,206 +40913,172 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"uXp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/checkpoint) "uXq" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"uXu" = ( -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"uXy" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"uXI" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"uXN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security) +"uXK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) +"uXQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) "uXU" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/ice, /area/corsat/gamma/biodome) -"uYd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, +"uXY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"uXZ" = ( /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"uYl" = ( -/obj/item/device/camera, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"uYr" = ( +/area/corsat/sigma/airlock/control) +"uYd" = ( +/obj/structure/surface/table/woodentable, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, /area/corsat/gamma/residential) -"uYB" = ( +"uYl" = ( /obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"uYD" = ( -/obj/structure/machinery/computer/shuttle_control/monorail{ - dir = 8 + network = list("gamma") }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) -"uYK" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"uYW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar) +"uYt" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"uZi" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"uZl" = ( -/obj/structure/noticeboard{ - pixel_y = 30 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"uYD" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"uZq" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"uZw" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/biodome/complex) -"uZy" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/wardrobe/atmospherics_yellow, /turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"uZP" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 +/area/corsat/sigma/airlock/control) +"uYK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"uYO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/organ/lungs, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"vak" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"vaq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"uZs" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/south) +"uZR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) +/area/corsat/omega/hangar/security) +"vah" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) "var" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"vaD" = ( +"vas" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"vaz" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/biodome/testgrounds) +"vaH" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) "vaI" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"vbe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" +"vaL" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"vaW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"vbh" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) "vbj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"vbo" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, +/obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/security) -"vbl" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/theta/airlock/east) -"vbn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"vbu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"vbz" = ( /turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"vbw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"vbM" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vbV" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/west) +/area/corsat/omega/hangar/security) +"vbG" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"vbI" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"vbK" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"vbR" = ( +/turf/open/mars_cave/mars_cave_4, +/area/corsat/sigma/biodome/scrapyard) "vce" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"vck" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"vco" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "East Hydroponics Wing"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"vcq" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) "vcx" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/vents/pump, @@ -41291,816 +41091,844 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"vcA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"vcF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"vcH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"vcO" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/chips, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) "vcR" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/omega/hallways) +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) "vcV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"vcX" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) "vda" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/residential/west) -"vde" = ( +"vdj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"vdq" = ( +/obj/structure/bed, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"vdB" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/security) +"vdC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/gamma/sigmaremote) +"vdH" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"vdR" = ( /obj/structure/bed/chair/office/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/airlock/control) -"vdP" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"vdQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/corsat/yellow, -/area/corsat/theta/airlock/control) -"vdS" = ( -/mob/living/simple_animal/hostile/carp{ - color = "orange"; - faction = "neutral"; - harm_intent_damage = 0; - melee_damage_lower = 0; - melee_damage_upper = 0 +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vea" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"ven" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"veo" = ( +/turf/open/mars/mars_dirt_10, +/area/corsat/sigma/biodome) +"vev" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Secondary Generators"; + req_one_access_txt = "102" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"vex" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, /turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) -"vev" = ( -/obj/structure/machinery/light{ - dir = 4 +"veD" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"veG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/engineering) -"vex" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/sigma/hangar/arrivals) -"veL" = ( -/obj/structure/machinery/vending/shared_vending, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"vfo" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Cargo Desk" +/turf/open/floor/corsat/blue/northeast, +/area/corsat/gamma/airlock/control) +"veR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"vfe" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Cargo Desk"; - req_access_txt = "101" +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"vfm" = ( +/obj/structure/sink{ + pixel_y = 25 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"vfw" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/prison/hangar_storage/research/shuttle) +"vfx" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"vfJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/lobby) -"vfq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"vfz" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/virology) -"vfB" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"vfH" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) +/area/corsat/sigma/south/robotics) +"vfM" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/core) "vfQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) "vfR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) -"vfX" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"vgD" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"vgP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"vfY" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"vhb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"vgh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"vgm" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"vhn" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/southeast) -"vhr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"vgs" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"vgu" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth) +"vgv" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vhs" = ( -/obj/structure/pipes/vents/pump{ +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"vgz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, /area/corsat/omega/cargo) -"vhy" = ( -/obj/structure/bed/chair/comfy/black{ +"vgF" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"vhD" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"vgM" = ( +/obj/structure/closet/wardrobe, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"vgN" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/theta/airlock/control) +"vhb" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/residential) +"vhh" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Hangar Office" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"vhi" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/robotics) +"vhj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/datalab) -"vhL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"vhP" = ( +/area/corsat/sigma/south/robotics) +"vhl" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"vhr" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"vhA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"vhG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Theta"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vhY" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"vhT" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaEastID"; + name = "Security Shutters" + }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) +/area/corsat/sigma/airlock/east/id) "vhZ" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) +"vif" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"vih" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"vik" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) "vim" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/corsat, /area/corsat/omega/maint) -"viB" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"viM" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/hangar/monorail/control) -"viO" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"vjf" = ( +"vir" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"vjg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"vji" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"vjo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/south) -"vjs" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"viF" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; + dir = 4; network = list("gamma") }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"vju" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"viP" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"vjh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/monorail/control) +"vjp" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) "vjx" = ( -/obj/structure/bed/chair/office/light, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"vjy" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "25" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"vjC" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south) +"vjD" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"vjH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"vkh" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"vkg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/corsat/gamma/hangar/monorail/control) +"vkx" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"vkI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"vkw" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"vky" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/residential) -"vkL" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_y = -30 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"vkU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay) -"vkQ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"vll" = ( -/obj/structure/cargo_container/wy/mid, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"vle" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/flightcontrol) +"vlk" = ( +/obj/structure/cargo_container/wy/left, /turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) -"vlF" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"vlP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ +"vlE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "Genetics Lab"; - req_one_access_txt = "103" + name = "Monorail Control"; + req_access_txt = "101" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"vlG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"vmd" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) -"vmg" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"vmj" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"vmk" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"vmv" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/corsat/theta/biodome/hydroeast) +"vmn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"vmo" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"vmx" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"vmE" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "5" }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"vmD" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"vmO" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"vmU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"vmY" = ( +/obj/structure/closet/crate/trashcart, /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"vmK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") + dir = 8 }, -/turf/open/floor/corsat/browncorner, -/area/corsat/omega/cargo) +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo/disposal) "vnc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/beachcorner/south_west, /area/corsat/theta/biodome) -"vnf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Reactor Core"; - req_one_access_txt = "102" +"vnr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"vnt" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"vnu" = ( +/obj/effect/alien/weeds/node, +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"vnx" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/virology) +"vnQ" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar) +"vnS" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/theta/airlock/control) +"vod" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) -"vnr" = ( -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"vns" = ( +"voq" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"voD" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; + dir = 8; network = list("gamma") }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"vnt" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"voN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/residential/maint) +"voQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar) +"voS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"vpV" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"vnu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"vnw" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"vnx" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"vnX" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/area/corsat/sigma/south/security) +"vqe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/hallwaysouth) -"vnZ" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-E"; + name = "Security Shutters"; + use_power = 0 }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/generator) -"vob" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"vok" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Forensics" +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"vqg" = ( +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"vqk" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/corsat/sigma/biodome/testgrounds) +"vql" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"vot" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"vqq" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"vov" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/airlocknorth) +"vqv" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"vow" = ( -/obj/structure/machinery/light{ +/area/corsat/gamma/foyer) +"vqQ" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"vqX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar) -"voD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"voT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"vpm" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Office"; - req_access_txt = "101" +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/dataoffice) +"vry" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/igniter, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"vrF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"vqc" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vrH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"vqf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"vqj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/thermal, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"vqm" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vrJ" = ( +/obj/structure/machinery/light, /turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"vqz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"vqH" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south) -"vqK" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"vrf" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"vru" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"vry" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"vsa" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/janitor, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/robotics) -"vsD" = ( -/obj/item/folder/blue, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, /area/corsat/gamma/administration) -"vsR" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, +"vrM" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"vrX" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"vsb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"vse" = ( /turf/open/floor/corsat/plate, /area/corsat/omega/biodome) -"vsS" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/sigma/south) -"vsV" = ( -/obj/structure/bed/chair/dropship/passenger{ +"vsw" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"vsW" = ( -/obj/structure/machinery/shower, -/obj/structure/machinery/door/window/southleft{ - opacity = 1 - }, -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"vsz" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/omega/hangar) +"vsF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/cargo) +"vsV" = ( +/obj/structure/closet/crate, +/obj/item/robot_parts/robot_component/actuator, +/obj/item/robot_parts/robot_component/armour, +/obj/item/robot_parts/robot_component/camera, +/obj/item/robot_parts/robot_component/diagnosis_unit, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"vsX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("theta") }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/west) "vtd" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"vtw" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/north) -"vtD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/box/drinkingglasses, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"vte" = ( /turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"vtN" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"vtW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light{ +/area/corsat/gamma/rnr/bar) +"vtj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"vtY" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"vtz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/southeast/datalab) +"vtL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/office) -"vtZ" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"vtM" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/omega/hallways) +"vtW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/mousetrap, +/obj/item/device/assembly/mousetrap, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) "vuc" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"vug" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/purple/east, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"vui" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) "vuj" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/hallwaysouth) -"vuk" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/control) -"vum" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"vum" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast) +"vuo" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) "vuq" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"vuw" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 4 +"vuI" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/airlock/control) +"vuU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/omega/offices) +"vvh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"vvp" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"vuz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/window/southleft{ + dir = 1; + layer = 2.8 }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"vuN" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/engineering) -"vuP" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"vvt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"vvH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/robotanalyzer, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"vvJ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"vvL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"vvn" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "6" +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"vwf" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"vwq" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"vvv" = ( -/turf/open/floor/corsat/whitetancorner/north, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"vwT" = ( +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/canteen) -"vvA" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) -"vvE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr/bar) -"vwk" = ( +"vxl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"vxw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"vwt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"vwC" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"vwD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential) -"vwH" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/corsat/theta/airlock/control) +"vxA" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"vwL" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"vxH" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/carpet13_5/west, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) -"vwN" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"vwO" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +"vxM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/warnplate/north, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) -"vwT" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"vxa" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/hydrowest) -"vxm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"vxx" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"vxy" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"vxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"vxR" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"vxS" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"vxW" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"vxX" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"vye" = ( -/obj/structure/surface/table, -/obj/item/corncob, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"vyj" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security) -"vyo" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "15" +"vxQ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"vys" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) "vyv" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Autopsy"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"vyy" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/office) "vyB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/mars, /area/corsat/sigma/biodome) -"vyG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"vyL" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/gamma/sigmaremote) -"vyT" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/hallways) +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"vyV" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) "vyX" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) "vza" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/vents/pump, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"vzg" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/checkpoint) -"vzK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"vzO" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/administration) -"vzU" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/generator) -"vzZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"vAl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"vAy" = ( -/obj/structure/bed/chair{ - dir = 8 +"vze" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"vzs" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"vAC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Auditorium" +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"vzu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Telecommunications"; + req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vAF" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/plate, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/generator) +"vzz" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"vzK" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"vzO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"vzR" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"vzW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/form_printer, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"vzY" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"vAs" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) "vAP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -42108,1102 +41936,1196 @@ /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) "vAS" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"vBm" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) -"vBr" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Sigma Dome Control"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"vBe" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"vBv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"vBB" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"vBE" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"vBL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"vBO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) "vBX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/researcher) "vBZ" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"vCh" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"vCi" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/airlock/south) -"vCm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"vCp" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) "vCx" = ( /turf/closed/wall/resin/membrane, /area/corsat/omega/biodome) -"vCP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/north) -"vCT" = ( +"vCB" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"vCF" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/arrivals) +"vCL" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/lobby) +"vCN" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/southeast, -/area/corsat/gamma/residential) -"vCW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"vDf" = ( -/obj/structure/machinery/door_control{ - id = "ThetaIDEC"; - name = "Privacy Shutters"; - pixel_y = -24; - use_power = 0 +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"vDe" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Computer Room"; + req_one_access = null }, -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = 10; - pixel_y = -24; - use_power = 0 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vDk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/chemistry) +"vDr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"vDD" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"vDP" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/corsat/red, /area/corsat/gamma/security) -"vEc" = ( -/obj/structure/machinery/light{ +"vDW" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/dorms) +"vDY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"vEa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/turf/open/floor/corsat/purplewhite/southeast, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) -"vEk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ +"vEf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/canteen) +"vEh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"vEj" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"vEl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"vEA" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"vEn" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"vEu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"vEE" = ( -/turf/open/floor/corsat/arrow_south, -/area/corsat/gamma/hangar) +/area/corsat/gamma/hangar/monorail/control) +"vEv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"vEx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"vEy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"vEI" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) "vEK" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"vEU" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"vFp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"vEV" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "GammaCheckpointS"; + name = "Gamma Checkpoint"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) +"vEW" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/south/offices) +"vFq" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + layer = 3 }, -/obj/effect/alien/weeds/node, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"vFu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/corsat/sigma/dorms) +"vFC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential/east) +"vFF" = ( +/obj/structure/showcase{ + icon_state = "hub"; + name = "Telecommunication Hub" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"vFG" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar) "vFJ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/mars, /area/corsat/sigma/biodome) -"vFK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"vGc" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"vGp" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/sigma/south) -"vGy" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"vGF" = ( +"vFX" = ( /obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"vGG" = ( +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"vFZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"vGQ" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth/id) -"vGV" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"vGY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"vHg" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"vHn" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Hydroponics"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/gamma/airlock/south/id) +"vGc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"vHv" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/red/northeast, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"vGm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) -"vIg" = ( +"vGo" = ( /obj/structure/surface/rack, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"vIv" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/control) -"vID" = ( +/area/corsat/gamma/sigmaremote) +"vGp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"vGv" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"vGC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/southeast/datalab) +"vGG" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"vII" = ( -/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/rnr) -"vIM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") +"vGQ" = ( +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"vGX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/cargo) +"vHd" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar) +"vHe" = ( +/obj/structure/largecrate/chick, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"vIQ" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"vHg" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/cargo) +"vHj" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"vHm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"vJd" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar) -"vJg" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential/east) +"vHA" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/south/id) +"vHS" = ( +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"vHZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"vIa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"vJB" = ( -/obj/structure/platform{ +/area/corsat/theta/airlock/control) +"vIe" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"vIq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential) -"vJK" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/dorms) -"vJM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south) +"vIr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"vJR" = ( -/obj/structure/flora/pottedplant, +/area/corsat/sigma/hangar/monorail/control) +"vJa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"vJU" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, +"vJb" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/south) +"vJe" = ( /turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south/id) -"vKf" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"vKg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"vKn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"vKr" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) -"vKA" = ( -/obj/structure/machinery/light/small{ +/area/corsat/sigma/southeast) +"vJn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"vKB" = ( -/obj/structure/disposaloutlet{ +/area/corsat/gamma/residential/east) +"vJC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"vJH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"vJI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"vKj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"vKq" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/hallwaysouth) +"vKA" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential) "vKH" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"vKI" = ( -/turf/open/mars/mars_dirt_13, -/area/corsat/sigma/biodome) -"vKY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/id) -"vLl" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/administration) -"vLv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vKM" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"vKW" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"vLx" = ( /turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"vLG" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/complex) -"vLI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"vLJ" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/area/corsat/sigma/south/robotics) +"vLd" = ( +/obj/structure/machinery/light, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"vLe" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/engineering/core) +"vLp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"vLT" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"vMb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"vMG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential/east) -"vMa" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"vMo" = ( -/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"vMq" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"vNa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"vMr" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security/cells) -"vMF" = ( -/obj/structure/barricade/handrail{ - dir = 4 +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/id) +"vNd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast/datalab) +"vNt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"vMJ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"vNF" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/skills{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/complex) -"vMN" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"vMS" = ( +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"vNJ" = ( /obj/structure/surface/table/reinforced, -/obj/item/bananapeel{ - name = "tactical banana peel" - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"vMU" = ( -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential) -"vNc" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"vNj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"vNp" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/platinum{ - amount = 10 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/engineering) -"vNq" = ( -/obj/item/storage/box/masks, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/bonesetter, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"vNX" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"vNx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"vNB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"vNH" = ( +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"vOb" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"vOg" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential) -"vNL" = ( -/obj/structure/machinery/light{ - dir = 4 + icon_state = "pottedplant_10" }, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"vOi" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"vNO" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"vOc" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"vOn" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"vOj" = ( -/obj/structure/bed/nest, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"vOp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/retrosquareslight, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) -"vOv" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor/corsat/whitetan/east, +"vOr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"vOx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"vOL" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"vOP" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"vOQ" = ( +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/west) -"vOD" = ( -/obj/structure/surface/rack, -/obj/item/toy/plush/farwa, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/security) -"vOI" = ( -/turf/open/floor/corsat/purple/northwest, -/area/corsat/omega/hallways) -"vOY" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"vOZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"vPm" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Access Checkpoint"; - req_access_txt = "101" +"vOS" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"vOX" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/north) +"vOY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"vPB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/turf/open/floor/corsat/arrow_west, +/area/corsat/omega/hangar) +"vPb" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/sigma/south) +"vPr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"vPt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"vPy" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"vPG" = ( +/obj/item/device/assembly/voice, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"vPN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/hangar) -"vPV" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/containment) +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth) +"vPP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) "vQg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"vQk" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/residential) -"vQu" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"vQY" = ( +"vQi" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/monorail) +"vQo" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"vRe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"vRf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"vQH" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"vQN" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"vQO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"vRg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"vRb" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"vRG" = ( +/area/corsat/sigma/hangar/security) +"vRh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"vRm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/hallwaysouth) +"vRn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"vRo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"vRq" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/shuttle/escapepod/floor2, +/area/corsat/theta/biodome/complex) +"vRI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/omega/maint) +"vRJ" = ( /obj/structure/machinery/light, /obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"vRI" = ( -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/canteen) -"vSd" = ( -/obj/item/paper, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"vSf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_access_txt = "101" +/obj/structure/machinery/computer/guestpass{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"vSu" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"vSy" = ( -/obj/structure/machinery/light, /turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"vSD" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"vSY" = ( +/area/corsat/gamma/hangar/cargo) +"vSm" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"vTb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) +"vSA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"vSQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"vTd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"vTh" = ( -/turf/open/floor/corsat/purplecorner, -/area/corsat/omega/hallways) -"vTs" = ( -/obj/structure/machinery/light/small{ +/area/corsat/gamma/hangar/security) +"vSS" = ( +/obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"vSU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"vTa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"vTf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo) +"vTk" = ( +/obj/structure/machinery/conveyor, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"vTz" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"vTJ" = ( +/area/corsat/gamma/cargo) +"vTt" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"vTu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"vTE" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo) +"vTG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, /turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"vTM" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"vTP" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/flasher{ - pixel_y = 24 +/area/corsat/theta/biodome/complex) +"vTL" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaCSC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) "vTR" = ( -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/south) "vTT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood, /area/corsat/gamma/administration) +"vUa" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/gamma/sigmaremote) "vUk" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics"; - req_one_access_txt = "102" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"vUp" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"vUJ" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"vUq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo) -"vUK" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/security) -"vUR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"vUY" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/id) +"vUt" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/omega/hangar) +"vUu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/airlocknorth/id) -"vVb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Gamma"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"vVd" = ( -/obj/item/cell/super/empty, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"vVh" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hallwaysouth) -"vVn" = ( -/obj/structure/machinery/bot/medbot/mysterious, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"vVD" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/hallwaysouth) -"vVK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"vUW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"vWn" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/corsat/sigma/hangar) -"vWq" = ( -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"vWD" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/sigma/south) +"vUX" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"vUY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"vWH" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/hallways) -"vWS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"vVj" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/checkpoint) -"vWV" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/landmark/corpsespawner/wysec, /turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"vXC" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"vXH" = ( -/obj/structure/surface/table/almayer, -/obj/item/robot_parts/robot_component/radio, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"vXR" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/corsat/gamma/security/cells) +"vVy" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"vVN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"vYe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"vVP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"vWg" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"vYi" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"vYv" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/area/corsat/gamma/residential/west) +"vWo" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar) +"vWx" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"vWF" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/hallways) +"vWG" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/south/offices) +"vWK" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" + icon_state = "pottedplant_22" }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) -"vYF" = ( +"vXg" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"vYG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"vYT" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "25" +/area/corsat/omega/security) +"vXv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_14, +/area/corsat/sigma/biodome) +"vXB" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"vZj" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"vXC" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "East Hydroponics Wing"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"vZl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vXM" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"vZn" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/airlocknorth/id) -"vZs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +/area/corsat/gamma/engineering/atmos) +"vXR" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-S"; - name = "Security Shutters" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"vXZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"vYc" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"vYe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"vYp" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"vYy" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"vYG" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"vYO" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/omega/hallways) +"vYX" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, /turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"vZC" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/monorail) +/area/corsat/sigma/south/security) +"vZv" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/north) +"vZz" = ( +/obj/structure/machinery/door_control{ + id = "Viro"; + name = "Lab Lockdown"; + pixel_x = 24; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"vZI" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) "vZJ" = ( /obj/effect/alien/weeds/node, /turf/closed/wall/resin/membrane, /area/corsat/omega/biodome) -"vZL" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/foyer) +"vZK" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/cargo) "vZO" = ( -/obj/structure/surface/rack, -/obj/item/holder/drone, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"waa" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"wau" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"way" = ( -/turf/open/floor/corsat/greencorner/west, -/area/corsat/gamma/hallwaysouth) -"waD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"wap" = ( +/obj/structure/closet/firecloset, /turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"waM" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/east/id) -"waO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("theta") +/area/corsat/gamma/hallwaysouth) +"wax" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"waA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) "waR" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "ThetaNorthN"; - name = "Theta North Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"wbd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"waU" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) "wbf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/beachcorner/south_east, /area/corsat/theta/biodome) -"wbg" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +"wbo" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"wbz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/dorms) -"wbv" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/southeast/generator) +"wbA" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"wbY" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/inaccessible) -"wcb" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/blue/northeast, +/area/corsat/theta/airlock/control) +"wbR" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar) -"wcd" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat/purplewhite, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) -"wcf" = ( +"wbY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, /turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) -"wcp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) +/area/corsat/gamma/airlock/control) +"wct" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"wcu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/wrench, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) "wcw" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"wcy" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"wcR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Teleporter Power Room"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"wcT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"wcV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"wcW" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"wdz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, +"wcA" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"wdF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"wdO" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"wdW" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Virology Lab"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"wel" = ( -/obj/structure/dispenser/phoron, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"wem" = ( +/area/corsat/omega/hangar/security) +"wcC" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"wcJ" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"wcM" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"wcS" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"weq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"weC" = ( -/turf/open/floor/corsat/greencorner, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hallwaysouth) -"weD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"wcU" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"wcY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"wfe" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"wcZ" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"wdv" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/arrivals) +"wdw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Firing Range"; + req_one_access_txt = "106;102;103"; + use_power = 0 }, -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/hallways) -"wfm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) -"wfp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"wfr" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"wft" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"wfC" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"wdy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"wfG" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"wfJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"wdE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/airlocknorth) +"wdG" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast/datalab) -"wfN" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"wdO" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"wdR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"wgh" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"wdZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"wgl" = ( -/obj/structure/sink{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"wec" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/lungs, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"wee" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"wei" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ dir = 4; - pixel_x = 11 + network = list("sigma") }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) -"wgM" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"weG" = ( /obj/structure/machinery/light, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"weJ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/datalab) -"wgW" = ( -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Gate Shutters"; - pixel_x = 24; - use_power = 0 +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"weY" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/prison/hangar_storage/research/shuttle) +"wfc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"wfA" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Warden's Office"; + req_access_txt = "101" }, -/obj/structure/closet/crate/science, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaWarden"; + name = "Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"wfI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"wfN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/corsat/sigma/south/complex) +"wgh" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) +"wgp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) +"wgs" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"wgI" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"wgL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"wgU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/atmos) +"wgX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/monorail/control) "wgY" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -43213,163 +43135,215 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hangar/monorail) -"wha" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestE"; - name = "Sigma West Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"whf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"whh" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"whg" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) "whm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintenance Closet"; - req_one_access = null +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"whp" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) +"whr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) -"whp" = ( +"whv" = ( /obj/structure/surface/table/almayer, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"whI" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"whT" = ( -/turf/open/mars_cave/mars_cave_16, -/area/corsat/sigma/biodome/scrapyard) -"whU" = ( -/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, /turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"wih" = ( -/obj/structure/machinery/conveyor, +/area/corsat/gamma/hangar/flightcontrol) +"whF" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"wii" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar/monorail) -"wik" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"whJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"wiy" = ( -/turf/open/floor/corsat/arrow_south, -/area/corsat/gamma/cargo) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"whY" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"wic" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/robotics) +"wil" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"wip" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"wir" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"wit" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) "wiF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/ice, /area/corsat/gamma/biodome) -"wiG" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/omega/control) "wiJ" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"wja" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) +"wiN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"wiS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) "wjf" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"wjl" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/engineering) -"wjo" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Sigma"; + req_access_txt = "103" }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/checkpoint) -"wjq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"wjt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/medbay/morgue) -"wjY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"wkm" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"wkA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"wjy" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"wjB" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/airlock/north) +"wjC" = ( +/obj/structure/bedsheetbin, /turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"wkQ" = ( +/area/corsat/sigma/laundry) +"wjE" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"wjF" = ( /obj/structure/machinery/light, -/obj/structure/machinery/computer/emails{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"wkS" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"wjG" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"wjT" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"wjX" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"wld" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"wlw" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/corsat/gamma/biodome/virology) +"wka" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/residential) +"wkb" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"wkm" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"wkt" = ( +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"wkC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"wkH" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"wkJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"wlf" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/checkpoint) +"wlm" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/omega/offices) +"wlr" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/omega/hallways) +"wlv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"wlD" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"wlN" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"wlH" = ( +/obj/item/clothing/mask/gas, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"wlW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaIDSC"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/south/id) "wlY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"wmb" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) +"wmd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/complex) "wmf" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/wood, @@ -43378,45 +43352,86 @@ /obj/structure/largecrate/random/barrel, /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"wmy" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"wmA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential) +"wmB" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) "wmF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) "wmK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/surgery) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar/arrivals) "wmP" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"wmZ" = ( +/obj/item/organ/brain, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"wmR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"wmT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"wnb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/complex) -"wnd" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue/west, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"wni" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"wnn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"wnA" = ( +/obj/item/alien_embryo{ + color = "#00ff80"; + name = "corrupted alien embryo" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"wnC" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) -"wnk" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) +"wnE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) "wnO" = ( /obj/structure/bed/chair{ dir = 8 @@ -43426,133 +43441,173 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"wnW" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"woa" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"woh" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"wom" = ( +"wnP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"wnV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) -"woK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"woS" = ( +"wnY" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/theta/airlock/control) +"woc" = ( +/obj/item/trash/candy, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"woe" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) +"wof" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"woi" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/researcher) +"woj" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"won" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"woq" = ( +/obj/item/alien_embryo, +/obj/item/alien_embryo, +/obj/item/alien_embryo, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"woV" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"wpc" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"woy" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"woB" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/core) +"woK" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"woU" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/north) +"wpb" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"wpo" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) "wpq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/handrail{ + layer = 3 }, -/turf/open/mars/mars_dirt_12, -/area/corsat/sigma/biodome) +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) "wpr" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("theta") + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"wpx" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"wpM" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"wpT" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/robotics) +"wpw" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 + }, +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"wpF" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/theta/airlock/control) +"wpG" = ( +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome/scrapyard) +"wpK" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Gamma Landing Zone" + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) "wpV" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"wqb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"wqk" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaN"; - name = "Omega Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"wql" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purple, -/area/corsat/gamma/biodome/complex) +"wqg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/control) +"wqi" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) "wqs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars/mars_dirt_8, -/area/corsat/sigma/biodome) -"wqt" = ( -/turf/open/floor/corsat/darkgreen/northeast, -/area/corsat/gamma/hangar/arrivals) -"wqM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"wqO" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/omega/control) -"wra" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/north) -"wrc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/airlock/control) +"wqF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/hangar/office) -"wri" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/timer, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"wqG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"wqO" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) +"wqV" = ( +/obj/structure/closet/firecloset, /turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) -"wrr" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) +"wrq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/east/id) +"wrw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"wrx" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/airlock/control) "wrC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump{ @@ -43560,65 +43615,53 @@ }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"wrZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = 5 - }, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +"wrK" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"wrQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/chemistry) +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"wrS" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) "wsp" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/residential) -"wsu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"wsC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"wsD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"wsA" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/chemistry) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) "wsJ" = ( /turf/open/floor/corsat, /area/corsat/sigma/hangar/checkpoint) -"wsY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"wtn" = ( -/obj/structure/surface/rack, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"wto" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"wtE" = ( +"wsP" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"wtH" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/item/circuitboard/machine/clonepod, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"wtp" = ( +/obj/structure/stairs{ + dir = 8 }, -/turf/open/floor/corsat/green, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) -"wtJ" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) +"wtx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) "wtM" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -43626,347 +43669,356 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"wtO" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/hangar/office) -"wuB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"wtQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"wtZ" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;106;102" }, -/turf/open/floor/almayer/research/containment/floor2/north, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"wus" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) -"wuG" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" +"wuy" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/theta/airlock/control) -"wuM" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"wuQ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "wuS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) +"wuT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/gamma/sigmaremote) "wuU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar/arrivals) -"wvf" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) "wvj" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/south) -"wvm" = ( +/obj/structure/surface/table, +/obj/item/book, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"wvp" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"wvn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) +/obj/item/stock_parts/capacitor/super, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"wvq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/west/id) +"wvF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) "wvG" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) +"wvI" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"wvJ" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome/gunrange) "wvK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"wvL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"wvY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) "wvZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"wwc" = ( -/obj/structure/machinery/light{ - dir = 4 +"wwg" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/hangar) +"wwh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"wwq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"wwu" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"wwK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Medical Bay"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"wwd" = ( /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"wwg" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay) -"wwj" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, +"wwP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"wwI" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/sigma/north) -"wwK" = ( -/obj/structure/machinery/light, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"wwN" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) +/area/corsat/gamma/engineering) "wwT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"wxf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"wxg" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) +"wxc" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"wxh" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) "wxi" = ( /mob/living/carbon/human/yiren, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"wxA" = ( +"wxk" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"wxN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"wyf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"wyn" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/complex) -"wxI" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/checkpoint) -"wxT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/airlock/control) -"wyj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"wyl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/security) -"wyr" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, +"wyq" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"wyG" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome/scrapyard) +"wyP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"wyQ" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"wyD" = ( -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay/morgue) -"wyF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"wyR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"wyU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"wza" = ( -/turf/open/floor/corsat/sigma, /area/corsat/sigma/hangar/id) -"wzo" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaNorthN"; - name = "Gamma North Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"wzq" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/robotics) -"wzv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"wyT" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"wyV" = ( +/obj/structure/surface/rack, +/obj/item/device/chameleon, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"wzi" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) +"wzj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"wzn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"wzt" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) "wzA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/southeast/datalab) +"wzG" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"wzH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" + name = "Maintainance"; + req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"wzC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/security) -"wzR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential/east) -"wAc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"wAe" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"wAf" = ( +/area/corsat/omega/maint) +"wzJ" = ( +/obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, /turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) +/area/corsat/sigma/south/engineering) "wAi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"wAl" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/residential) -"wAo" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hallways) -"wAu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Remote Complex"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"wAx" = ( -/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"wAl" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"wAy" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"wAJ" = ( +/area/corsat/gamma/medbay/morgue) +"wAn" = ( +/obj/item/device/camera, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"wAw" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"wAK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"wAM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth/id) -"wAP" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/airlock/north/id) +"wAN" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/sigma/hangar) +"wAX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/disposal) +"wBl" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/monorail) +"wBp" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/cargo) -"wAY" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"wBd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"wBh" = ( -/obj/structure/bed/chair/comfy/beige{ +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"wBv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/biodome/complex) -"wBr" = ( -/obj/item/storage/box/monkeycubes, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"wBy" = ( /obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/gamma/airlock/control) +"wBB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/containment) -"wBy" = ( -/obj/structure/window/reinforced{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"wBz" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"wBS" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"wBD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/south/offices) +"wBE" = ( +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"wCc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"wCd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"wCo" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"wCt" = ( -/obj/structure/bed, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"wCu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"wCD" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"wCv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/arrivals) +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"wCx" = ( +/obj/structure/surface/rack, +/obj/structure/prop/mech/drill, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"wCB" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/north/id) +"wCG" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/hangar/arrivals) "wCI" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -43974,696 +44026,647 @@ }, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"wCO" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"wCX" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"wDe" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"wDg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"wDh" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"wDk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"wCW" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"wDm" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaCargo"; + name = "Sigma Cargo Bay"; + use_power = 0 }, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/cargo) +"wDo" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) "wDp" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/arrivals) +"wDq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"wDN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"wDP" = ( +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) -"wDS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Medical Lobby"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"wEa" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 1 - }, -/turf/open/shuttle/escapepod/floor1, +"wDZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/monkeycubes/farwacubes, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) -"wEc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"wEb" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"wEw" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/airlock/control) -"wEz" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"wEC" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/checkpoint) -"wFI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south) -"wFK" = ( -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Gate Shutters"; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"wFO" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 5; - icon_state = "single_part" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"wFP" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/timer, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"wGc" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"wEl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"wGk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/hallways) -"wGl" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"wEp" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"wGn" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/west) -"wGo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"wGu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/computer/skills{ dir = 8 }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"wGx" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"wGy" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"wGK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"wGV" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/biodome/testgrounds) -"wHr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/complex) +"wEr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"wEP" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"wER" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) -"wHx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"wFb" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/surgeon, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"wFd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Observation Chamber"; + req_access_txt = "103" }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"wHy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"wId" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" +/area/corsat/omega/complex) +"wFH" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"wFO" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "single_part" }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"wIf" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/datalab) -"wIs" = ( -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome/gunrange) -"wIF" = ( +/turf/open/ice, +/area/corsat/gamma/biodome) +"wGt" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"wGF" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"wGO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, /turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"wIX" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/corsat/gamma/foyer) +"wGV" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"wHh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/security) +"wHm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"wHu" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"wHv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"wHy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"wJm" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"wHC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"wHG" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"wIe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"wIf" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/igniter, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/hallways) -"wJo" = ( -/obj/structure/prop/mech/parts/durand_right_arm, -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/south/robotics) -"wJt" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"wIm" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/obj/effect/landmark/railgun_camera_pos, /turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"wJB" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"wJV" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"wKe" = ( -/obj/structure/bed/chair{ +/area/corsat/sigma/south/engineering) +"wIG" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"wKg" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"wIQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"wKp" = ( -/obj/structure/machinery/shower, -/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"wJh" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/omega/complex) -"wKs" = ( -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome/gunrange) -"wKx" = ( -/obj/structure/machinery/light{ - dir = 1 +"wJl" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"wJo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) -"wKz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"wKB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"wJs" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "SigmaEastE"; + name = "Sigma East Airlock" }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"wKC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"wKG" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/control) -"wKS" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/hallwaysouth) -"wKX" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"wJx" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") }, -/turf/open/floor/corsat/blue/east, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"wJD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/control) -"wKY" = ( +"wJJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"wJR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"wKi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"wKj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"wLj" = ( -/obj/item/tool/wet_sign, -/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"wKH" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/dorms) +"wKI" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"wKO" = ( +/obj/structure/surface/rack, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"wLn" = ( -/turf/open/floor/corsat/brown/northwest, -/area/corsat/omega/cargo) -"wLK" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/south/robotics) +"wKS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/engineering) +"wLo" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"wMf" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/control) -"wMm" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"wLt" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/southeast) +"wLu" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"wLA" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"wLG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"wMC" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"wLO" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"wMG" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/stack/sheet/wood{ + amount = 10 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"wML" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"wLX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"wMR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"wLY" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"wMh" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/researcher) -"wMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"wMi" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"wMI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/theta, +/area/corsat/sigma/south) +"wML" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/gamma/sigmaremote) -"wNk" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/omega/checkpoint) -"wNt" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"wMT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"wNh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 2"; + name = "ID Checkpoint"; req_access_txt = "101" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHolding2"; - name = "Holding Cell 2" - }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"wNx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"wNC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/corsat/theta/airlock/west/id) +"wNB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"wNI" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) "wNJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/morgue/crematorium{ + id = "CORSAT Crema" }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"wNR" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/crema_switch{ + id = "CORSAT Crema"; + pixel_x = 28; + pixel_y = 28; + req_one_access_txt = "2;8;19" }, +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/medbay/morgue) +"wNQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, /turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"wNW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"wNY" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/omega/hallways) -"wOm" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/dorms) +/area/corsat/gamma/security) +"wNT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"wOd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/helmet/augment, +/obj/item/tool/pen/paralysis, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) "wOu" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/rnr) -"wOK" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"wOB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/southeast, +/area/corsat/gamma/residential) "wOQ" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/fancy/cigarettes/arcturian_ace, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"wOW" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"wPi" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +"wOR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell"; + req_access_txt = "101" }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"wPp" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/checkpoint) -"wPL" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - dir = 1; - locked = 1; - name = "\improper Decontamination Chamber"; - req_access_txt = "103" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"wOS" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar/office) +"wPx" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"wPy" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"wPO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"wQv" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" }, -/obj/item/pamphlet/skill/powerloader, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"wQx" = ( -/obj/structure/machinery/door_control{ - id = "SigmaGrounds"; - name = "Testing Grounds"; - pixel_x = 24 +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"wPC" = ( +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/door/window/southleft, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"wPH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"wQC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/foyer) -"wQI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"wQL" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/sigma/south/complex) -"wQR" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"wQU" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/north) -"wQX" = ( +/area/corsat/sigma/biodome/gunrange) +"wPI" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/checkpoint) -"wRh" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/obj/item/device/assembly/timer, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"wPL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"wRk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"wRD" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/cargo) -"wRF" = ( -/obj/structure/machinery/light, +/area/corsat/sigma/south/complex) +"wPO" = ( +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"wPR" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"wQb" = ( /obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat/purplewhite, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) -"wRI" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar/arrivals) -"wRN" = ( +"wQe" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"wRP" = ( -/obj/structure/machinery/light{ +/area/corsat/sigma/south/robotics) +"wQv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"wQC" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/biodome/complex) +"wQI" = ( +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"wQO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"wQX" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, /turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"wRU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Flight Control" +/area/corsat/gamma/airlock/control) +"wQY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"wRn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"wSa" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"wRL" = ( +/obj/item/stack/sheet/metal, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"wRZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) "wSb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"wSf" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) "wSg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/west, /area/corsat/theta/biodome) -"wSo" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ +"wSi" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"wSy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - layer = 2 + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"wSr" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"wSA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, -/obj/item/tool/weldingtool, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"wSL" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/foyer) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"wSI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) "wSN" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome/gunrange) -"wTl" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"wSS" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/raisins, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"wTL" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"wTP" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"wTR" = ( +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"wSU" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"wTa" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo) -"wUb" = ( -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"wUC" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/hallways) +"wTm" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"wUH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/research/containment/floor2/west, +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"wTq" = ( +/turf/open/floor/corsat/purple/southeast, +/area/corsat/omega/complex) +"wTN" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"wTU" = ( +/obj/structure/closet/crate/science, +/obj/item/ore/diamond, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/sigma/south/complex) -"wUI" = ( -/obj/structure/bed/chair{ - dir = 4 +"wUe" = ( +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/canteen) +"wUj" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/administration) -"wUM" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"wUo" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"wUO" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"wUQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"wUR" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"wUN" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"wUZ" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"wVi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/corsat/gamma/sigmaremote) +"wVc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"wVl" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"wVm" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"wVf" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"wVo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"wVy" = ( +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome) +"wVq" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "ID Checkpoint"; @@ -44671,279 +44674,283 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) +/area/corsat/sigma/airlock/south/id) +"wVv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/checkpoint) +"wVy" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar) "wVz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"wVJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"wVL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"wVM" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/id) -"wVN" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/prison/hangar_storage/research/shuttle) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) "wVX" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"wWi" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"wWk" = ( -/turf/open/floor/corsat/red/west, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"wVY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "wWn" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/monorail) -"wWy" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"wWq" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"wWv" = ( +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/hallwaysouth) -"wWJ" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast) -"wWT" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"wWU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"wXa" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/morgue) -"wXr" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/sigma/cargo) +"wWM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) "wXE" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat, /area/corsat/sigma/dorms) -"wXG" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"wXH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south/id) -"wXM" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"wXL" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "13" }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"wXV" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) "wYh" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("omega") +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"wYk" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"wYv" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"wYC" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"wYG" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" - }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"wYJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"wYL" = ( +/area/corsat/omega/hangar/office) +"wYs" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) -"wYN" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"wYF" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/airlock/control) +"wYM" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"wZa" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"wZf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tank/air, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "wZg" = ( /obj/structure/cryofeed/right{ name = "\improper coolant feed" }, /turf/open/floor/corsat, /area/corsat/sigma/south/complex) +"wZi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/generator) +"wZk" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) "wZu" = ( /obj/structure/pipes/vents/pump, /turf/open/ice, /area/corsat/gamma/biodome) -"wZF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"wZx" = ( +/obj/structure/machinery/autodispenser{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"wZO" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"wZS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"xaa" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"xav" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"xaz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/airlock/control) -"xaA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"wZz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"xaZ" = ( +/area/corsat/theta/airlock/east) +"wZI" = ( /obj/structure/platform{ dir = 1; layer = 2.7 }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) -"xbz" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/south/security) -"xbE" = ( +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"wZT" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/engineering) +"wZZ" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/biodome/complex) +"xad" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"xaq" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"xbK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Food Storage"; +/area/corsat/gamma/security) +"xas" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + dir = 1; + name = "\improper Emergency Access"; + req_access_txt = "100"; req_one_access = null }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"xaT" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"xbj" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/sigma/south) +"xbl" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"xbp" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"xbz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"xbF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"xbH" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"xbK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) +/area/corsat/sigma/south/robotics) "xbW" = ( /obj/structure/safe, /obj/item/storage/fancy/vials/random, /turf/open/floor/wood, /area/corsat/gamma/administration) -"xca" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) -"xcf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Medbay"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ +"xcc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo/lobby) +"xch" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"xck" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/corsat/gamma/sigmaremote) -"xcl" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/corsat/omega/hangar) -"xcx" = ( -/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/sigma/dorms) -"xcJ" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xcw" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"xcL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"xcy" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "15" }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"xcz" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"xcH" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"xcL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"xcN" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"xcQ" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/inaccessible) +"xda" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSecC"; - name = "Security Shutters" + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) -"xcP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"xdh" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/hangar/office) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) "xdi" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -44951,67 +44958,81 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"xdk" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/dorms) "xdl" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"xdL" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/tank/air, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"xdx" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/inaccessible) +"xdy" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetancorner/east, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"xdE" = ( +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) -"xdM" = ( -/obj/structure/machinery/light{ - dir = 4 +"xdL" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"xdW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"xea" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"xdZ" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"xed" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"xee" = ( +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) +"xef" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"xec" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"xex" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"xfb" = ( -/obj/structure/showcase{ - icon_state = "hub"; - name = "Telecommunication Hub" + dir = 8 }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"xfm" = ( -/turf/open/mars_cave/mars_cave_7, -/area/corsat/sigma/biodome/gunrange) -"xfr" = ( -/obj/item/alien_embryo{ - color = "#00ff80"; - name = "corrupted alien embryo" +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"xeC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast) +"xfi" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"xfw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/inaccessible) -"xfy" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"xfB" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) "xfC" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -45024,342 +45045,185 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"xfQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"xfU" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"xfV" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"xgv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"xgy" = ( -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/hallwaysouth) -"xgC" = ( -/turf/open/mars_cave/mars_cave_7, -/area/corsat/sigma/biodome/scrapyard) -"xgK" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"xgP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"xgW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +"xfH" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/west) +"xfI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/red, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar) -"xha" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/ice, -/area/corsat/gamma/biodome) -"xhb" = ( -/obj/structure/surface/rack, -/obj/item/device/transfer_valve, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"xhe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Observation Chamber"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xgd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Autopsy Storage"; + req_access_txt = "103"; + req_one_access = null }, /turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) -"xhh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"xhi" = ( +"xgk" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome/gunrange) +"xgr" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/datalab) -"xhl" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/monorail) -"xhp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight, /turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"xhq" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaO"; - name = "Omega Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/biodome) -"xhu" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) -"xhw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/airlocknorth) -"xhG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/theta/airlock/east) -"xhM" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) -"xhS" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/researcher) -"xhY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Atmospherics"; - req_one_access_txt = "102" +/area/corsat/sigma/south/engineering) +"xgA" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"xie" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"xih" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) -"xij" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"xil" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"xim" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/cargo) -"xiq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/corsat/sigma/south) +"xgB" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) -"xiz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/airlock/control) -"xiE" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"xiK" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper/Toxin, -/obj/item/tool/pen/blue, +"xgO" = ( +/obj/structure/closet/emcloset, /turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"xiN" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "21" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"xiO" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"xiZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/gamma/hangar/office) -"xjc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/west) -"xjh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/airlock/control) -"xjl" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, +/area/corsat/sigma/south/complex) +"xgR" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/containment) +"xha" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/ice, +/area/corsat/gamma/biodome) +"xhh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, /turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"xjr" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"xjB" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"xjH" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"xjK" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating/warnplate, /area/corsat/gamma/hangar) -"xjO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/gamma/residential) -"xjR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"xjW" = ( -/obj/structure/bed/chair{ - dir = 1 +"xhj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"xho" = ( +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"xkh" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/north) -"xkm" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 +/area/corsat/gamma/biodome/complex) +"xhM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"xkK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Auditorium" +/area/corsat/sigma/south/engineering) +"xhV" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"xkV" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"xib" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"xic" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south) +"xik" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/turf/open/floor/corsat/greenwhite/west, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) -"xlc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"xlf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"xli" = ( -/obj/structure/machinery/light{ - dir = 1 +"xis" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/security) -"xlu" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"xiF" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) +"xiX" = ( +/obj/structure/surface/rack, +/obj/item/cell/potato{ + charge = 1000; + maxcharge = 3000; + name = "overpowered potato" }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"xjc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"xlx" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xlz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"xjj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"xjk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"xjt" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/scrapyard) +"xjv" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"xjN" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; req_access_txt = "103" }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"xjP" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"xjR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"xkb" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/hangar/arrivals) +"xkR" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/omega/hangar) +"xkV" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"xlA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/area/corsat/gamma/medbay/lobby) +"xlj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/airlock/east) -"xlB" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/security) -"xlC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"xlm" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"xls" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "xlF" = ( /obj/structure/machinery/light{ dir = 4 @@ -45369,652 +45233,585 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/south/complex) -"xlI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"xlQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/pipes/standard/manifold/hidden/green{ +"xlJ" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"xlS" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"xlN" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"xlW" = ( +/obj/structure/largecrate/supply/ammo/pistol/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"xma" = ( +/obj/structure/fence, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) "xmh" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"xmp" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/hangar/office) -"xmx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"xmB" = ( -/obj/structure/machinery/light{ - dir = 1 +"xmk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Custodial Closet"; + req_one_access = null }, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"xmD" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) -"xmJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"xmn" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/flightcontrol) +"xmz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"xmG" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"xmN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) -"xnr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) -"xnA" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "1" +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"xnb" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "8" }, /turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"xnO" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"xnY" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"xog" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/north) -"xoi" = ( +/area/corsat/gamma/sigmaremote/teleporter) +"xnw" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"xny" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"xnF" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"xoe" = ( +/obj/structure/bed/chair, /turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) +/area/corsat/sigma/hangar/security) "xoj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/mars, /area/corsat/sigma/biodome) -"xol" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"xov" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) "xoy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"xoA" = ( +"xoz" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"xoS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"xpn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"xoY" = ( +/area/corsat/gamma/biodome/complex) +"xps" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Electronics"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"xpz" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/southeast/datalab) +"xpC" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"xpa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"xpY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"xpe" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"xpZ" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/sigma/dorms) +"xqg" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"xqm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/omega/offices) +"xqA" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"xpj" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hangar/office) -"xpr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"xqD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"xpC" = ( -/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) -"xpJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"xqG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security/cells) -"xpM" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/corsat/sigma/hangar) -"xpN" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/sigma/cargo) -"xpR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"xqK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/researcher) -"xqa" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/airlock/south) -"xqc" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hallways) -"xqd" = ( -/turf/open/floor/carpet6_2/west, -/area/corsat/omega/offices) -"xqm" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"xqn" = ( -/obj/item/tool/stamp/hop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"xqt" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"xqu" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"xqM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"xqO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"xqQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"xqS" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/northwest, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"xra" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"xrs" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/south) -"xrv" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"xrw" = ( -/obj/structure/pipes/binary/pump/on{ +"xrj" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"xrx" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay/chemistry) -"xrG" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south/security) -"xsc" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"xrD" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"xrH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) -"xsl" = ( -/obj/structure/machinery/light{ +"xrI" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"xsq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"xrL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"xsd" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/hangar/office) +"xsk" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) +"xst" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/control) +"xsG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) "xsU" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"xsV" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/atmos) "xsZ" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) +"xta" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/liver, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"xtb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) "xth" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"xti" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"xtn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"xty" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) "xtF" = ( /obj/structure/machinery/camera/autoname{ network = list("theta") }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"xtG" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda/beer{ - dir = 8; - pixel_x = 15 +"xtK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"xtM" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome/gunrange) -"xtQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"xtT" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/security) -"xtV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Bar" + dir = 10 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr/bar) -"xud" = ( -/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"xtN" = ( /turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"xul" = ( +/area/corsat/gamma/biodome/complex) +"xuh" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xuj" = ( +/obj/structure/closet/emcloset, /turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"xux" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) -"xuD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tank/air, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"xuS" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/airlock/control) -"xuU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar) -"xvi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"xvu" = ( -/obj/structure/machinery/computer/rdconsole, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"xvL" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaNorthS"; - name = "Gamma North Airlock" +"xuy" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "map_lockdown"; - name = "Gamma Lockdown"; - use_power = 0 +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"xuC" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/control) +"xuJ" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/hallways) +"xuS" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"xvM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/chemistry) +"xuY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dressing room" }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"xvO" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/sigmaremote) -"xvX" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"xvg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"xwn" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"xwq" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/security) -"xwt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"xwz" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"xwC" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"xvl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/hallwaysouth) +"xvs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"xvC" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"xvO" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/machinery/juicer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"xvS" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "22" }, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"xwL" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/foyer) -"xwT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Cells"; - req_access_txt = "101" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"xvX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"xxc" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"xwk" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"xwn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"xwQ" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"xwS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast) +"xwV" = ( +/turf/open/mars_cave/mars_cave_19, +/area/corsat/sigma/biodome/gunrange) +"xwZ" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/robotics) +"xxd" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/control) "xxe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"xxq" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/foyer) +"xxf" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/theta/airlock/east) +"xxk" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"xxl" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"xxy" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"xxm" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"xxp" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"xxz" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/rnr) +"xxJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/skills, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/administration) "xxO" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"xxW" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, +"xyf" = ( +/turf/open/floor/corsat/green, +/area/corsat/gamma/medbay/morgue) +"xyh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"xyi" = ( -/obj/structure/machinery/light{ - dir = 4 +"xyk" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"xyA" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"xyB" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/south/offices) -"xyD" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/complex) -"xyJ" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/gamma/residential) -"xyQ" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"xze" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"xzu" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"xyq" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/east/id) +"xyx" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold{ + amount = 10 }, /turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"xzv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_13, -/area/corsat/sigma/biodome) -"xzz" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/airlock/control) -"xzB" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/hangar/arrivals) -"xzL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) -"xzQ" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/airlock/east/id) +"xzp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"xzq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) +"xzr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"xzB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"xzJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/west) +"xzK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"xzT" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/airlock/control) "xzW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/mars, /area/corsat/sigma/biodome) -"xAe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarE"; - name = "Checkpoint Control"; - pixel_x = 7; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaHangarW"; - name = "Checkpoint Control"; - pixel_x = -7; - use_power = 0 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/security) -"xAi" = ( -/obj/structure/pipes/vents/pump{ +"xzY" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydroeast) +"xAc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"xAk" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/south) -"xAv" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"xAe" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"xAn" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/foyer) "xAx" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, +/obj/structure/bed/chair, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/lobby) +"xAA" = ( /turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"xAy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"xAD" = ( -/obj/structure/sign/safety/biohazard, +/area/corsat/gamma/hangar) +"xAF" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/complex) +"xAV" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/sigma/cargo) +"xBu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"xAG" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/datalab) -"xAI" = ( -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"xAK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"xAL" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"xBg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"xBx" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) -"xBB" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hallways) -"xBE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/machinery/microwave, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"xBy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"xBI" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) "xBK" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"xBM" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/biodome/complex) -"xBX" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/canteen) -"xCm" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/omega/control) +"xCk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Cybernetics Lab"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) "xCy" = ( /obj/structure/bed/nest, /turf/open/ice, /area/corsat/gamma/biodome) -"xCB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"xCI" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"xCM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xCS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"xCX" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"xDb" = ( -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome/gunrange) -"xDc" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south) -"xDd" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/theta/airlock/control) -"xDk" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"xDq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, +"xCG" = ( /turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) +/area/corsat/gamma/residential) "xDs" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"xDx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaGrounds"; - name = "Testing Grounds" +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/clonescanner, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"xDv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/biodome/testgrounds) -"xDz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) "xDC" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46024,55 +45821,108 @@ /turf/open/floor/plating, /area/corsat/sigma/airlock/east/id) "xDD" = ( -/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Administration Desk"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"xDE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/monorail) +"xDF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, /turf/open/floor/corsat/plate, -/area/corsat/omega/control) -"xDN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/area/corsat/omega/airlocknorth/id) +"xDG" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"xDU" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"xEe" = ( -/obj/structure/bed/chair/office/light, /turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"xEj" = ( -/obj/structure/pipes/vents/pump{ +/area/corsat/omega/hangar/security) +"xDN" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"xDQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "CORSAT Academy"; + req_one_access = null + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xDX" = ( +/obj/structure/bed/stool, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/chemistry) +"xEf" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hallways) +"xEn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"xEH" = ( -/turf/open/floor/corsat/yellow/east, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"xEB" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security) +"xEM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"xEO" = ( +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hallwaysouth) +"xEV" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Hydroponics"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) "xEY" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"xFd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"xFs" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"xFu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"xFz" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"xFx" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) "xFK" = ( /obj/structure/window/framed/corsat/research, /obj/structure/disposalpipe/segment{ @@ -46080,178 +45930,168 @@ }, /turf/open/floor/plating, /area/corsat/theta/biodome/complex) +"xFL" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) "xFN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/mars, /area/corsat/sigma/biodome) -"xFP" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"xFV" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/toxins) "xGg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"xGv" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo/disposal) -"xGB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) -"xGS" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"xGT" = ( -/turf/open/floor/corsat/theta, -/area/corsat/gamma/hallwaysouth) -"xHa" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"xHq" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"xHv" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/checkpoint) -"xHw" = ( +/area/corsat/omega/hangar/security) +"xGi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"xHL" = ( -/obj/structure/stairs{ - dir = 8 +/area/corsat/gamma/cargo/lobby) +"xGq" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"xGt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome) +"xGE" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/id) +"xGM" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"xGN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"xGQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"xHS" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"xHH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat/sigma, +/turf/open/floor/corsat/white/northwest, /area/corsat/sigma/dorms) -"xIg" = ( -/obj/structure/machinery/light{ - dir = 1 +"xHZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"xIa" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/south) -"xIn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"xIt" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/residential) +"xIL" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"xIr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"xIY" = ( +/obj/structure/cargo_container/trijent/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"xJj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/airlock/control) -"xIG" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"xIN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/datamaint) -"xIS" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"xIX" = ( -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"xIZ" = ( -/obj/effect/decal/cleanable/cobweb{ +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"xJo" = ( +/obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"xJd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"xJg" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"xJn" = ( -/obj/structure/prop/mech/parts/durand_head, -/turf/open/floor/corsat/arrow_north, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) "xJp" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"xJJ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/security) -"xJQ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"xJS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/biodome/complex) +"xJt" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"xJC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"xJF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"xJY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"xJZ" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/generator) +"xKa" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) "xKe" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/residential) +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"xKl" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) "xKn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"xKq" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) +/obj/structure/machinery/optable, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) "xKu" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/airlock/east) -"xKv" = ( +"xKw" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/disposal) +"xKz" = ( +/obj/structure/window/reinforced, +/obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/airlocknorth) +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) "xKA" = ( /obj/structure/window/reinforced{ dir = 8 @@ -46263,53 +46103,75 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/hallwaysouth) -"xKW" = ( -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"xLd" = ( -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"xLi" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = -30 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"xLk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"xLz" = ( +"xKI" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"xKJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"xLB" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "14" +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/airlock/control) +"xLj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"xLk" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoN"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"xLL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"xLr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"xLQ" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"xMx" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/checkpoint) +"xLG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xLU" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"xMe" = ( +/obj/structure/machinery/door_control{ + id = "OmegaAccessC2"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 + }, +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"xMh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Armory"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"xMo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/gamma/sigmaremote) "xMJ" = ( /turf/closed/wall/biodome, /area/corsat/omega/hallways) @@ -46322,684 +46184,771 @@ }, /turf/open/floor/corsat, /area/corsat/emergency_access) +"xMZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) "xNa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/ice, /area/corsat/gamma/biodome) -"xNq" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) +"xNe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/datamaint) "xNu" = ( -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay/lobby) -"xNJ" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"xNA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"xND" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"xNM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SigmaBioAtmos"; - name = "Access Shutter" +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"xNE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Testing Grounds"; + req_access_txt = "106"; + use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xNU" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"xNY" = ( -/obj/structure/machinery/light{ +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"xNG" = ( +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"xNI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"xNP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/theta/airlock/east) -"xOh" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/omega/hallways) -"xOj" = ( -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/gunrange) +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"xNS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_south, +/area/corsat/sigma/hangar) +"xNT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"xNV" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/hallwaysouth) +"xNW" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"xOg" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) "xOk" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"xOo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"xOB" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) "xOL" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "13" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"xOO" = ( -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"xOS" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"xOZ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/cargo) -"xPd" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"xPo" = ( -/turf/open/floor/corsat/bluegreycorner/west, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/omega/offices) -"xPp" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"xPt" = ( -/obj/structure/machinery/light{ - dir = 4 +"xPa" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/administration) +"xPf" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"xPh" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat/purplewhite/east, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"xPC" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome/gunrange) +"xPI" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) -"xPH" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleportation Chamber"; - req_one_access_txt = "101;103" +"xPV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"xPN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"xPU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/corsat/sigma/cargo) +"xQj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/sigma/hangar) "xQk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"xQw" = ( -/obj/structure/surface/rack{ - name = "Acid Resistant Rack"; - unacidable = 1 +"xQn" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/obj/item/weed_extract, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"xQz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"xQC" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) "xQF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/corsat/omega/control) -"xQJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"xQP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"xQR" = ( +"xQG" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"xQV" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"xQZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"xRd" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/hangar/flightcontrol) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"xQQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"xRe" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/platingdmg3/west, +/area/corsat/sigma/biodome/testgrounds) "xRh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"xRi" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"xRm" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/sigma/south/complex) -"xRj" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"xRn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) "xRq" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) "xRw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"xRB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arcade" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"xRI" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) "xRK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"xRV" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"xSi" = ( -/obj/effect/decal/cleanable/dirt, +/area/corsat/gamma/engineering) +"xRZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, -/area/corsat/emergency_access) +/area/corsat/sigma/hangar/id) +"xSa" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/night, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/obj/structure/window/reinforced/toughened, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) "xSj" = ( /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, /area/corsat/omega/security) -"xSu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel/laser{ - pixel_y = 10 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) "xSD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"xSG" = ( -/turf/open/floor/corsat/bluegrey/east, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) -"xSQ" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"xSZ" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"xTd" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/sigma/dorms) -"xTg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"xSI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"xTi" = ( -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay) -"xTA" = ( -/obj/structure/machinery/door_control{ - id = "Toxins"; - name = "Lab Lockdown"; - pixel_y = 24; - use_power = 0 +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"xSZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"xTb" = ( +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/administration) +"xTj" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + name = "\improper Containment Chambers"; + req_access_txt = "103" }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"xTl" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"xTv" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"xTw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) "xTC" = ( -/obj/structure/toilet{ +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"xTH" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"xTP" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"xTR" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"xTV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"xTD" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/sandal, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"xTG" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"xTY" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"xUc" = ( +/obj/structure/closet/wardrobe/science_white, /turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"xTI" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/airlocknorth) -"xTO" = ( -/obj/structure/machinery/light{ +/area/corsat/gamma/sigmaremote) +"xUu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"xUv" = ( +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"xUw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"xUl" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/east) -"xUu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"xUz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"xUB" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"xUK" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"xUA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/corsat/gamma/biodome/complex) +"xVc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"xUM" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"xUZ" = ( -/obj/structure/fence, /turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"xVv" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/canteen) -"xVx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"xVB" = ( +/area/corsat/sigma/south) +"xVf" = ( /obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"xVF" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap/deluxe, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"xVK" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"xVl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("theta") }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/east, +/turf/open/floor/corsat/purplecorner/west, /area/corsat/theta/biodome/complex) +"xVm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"xVs" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/core) "xVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"xVV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"xWd" = ( /turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"xWg" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"xWj" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/checkpoint) -"xWt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arrivals" +/area/corsat/omega/cargo) +"xWk" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"xWy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"xWt" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/control) +"xWu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"xWD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/containment) +"xWP" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) "xWS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"xWV" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) +"xWX" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/omega/checkpoint) "xXb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"xXl" = ( +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/east, +/obj/item/clipboard, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"xXk" = ( +"xXy" = ( /obj/structure/surface/table/almayer, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay) -"xXs" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 4 +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/turf/open/floor/corsat/yellow/southwest, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) -"xXD" = ( -/obj/structure/pipes/vents/pump{ +"xXA" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"xXC" = ( +/obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"xXF" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/area/corsat/sigma/southeast/generator) +"xXO" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"xXT" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"xYs" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"xYv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"xYy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"xXU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"xYE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/obj/item/storage/box/beakers, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"xYJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"xXV" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"xYO" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/airlocknorth) -"xYR" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"xYo" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/shuttle/escapepod/floor0, +/area/corsat/theta/biodome/complex) +"xYq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"xYs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"xYA" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"xZd" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/gamma/residential) +"xZe" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/syringe/antiviral, +/obj/item/reagent_container/syringe/antiviral, +/obj/item/reagent_container/glass/beaker/vial, +/obj/item/reagent_container/glass/beaker/vial, +/obj/item/reagent_container/glass/beaker/vial, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"xZg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"xZq" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"xZA" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"xZp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"xZv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) "xZB" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/south/complex) -"xZI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xZD" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/office) +"xZE" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome) -"yab" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"xZH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Workshop"; + req_one_access_txt = "102" }, -/obj/item/stack/sheet/glass{ - amount = 30 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"xZK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"xZS" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"yac" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"xZY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"yae" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome) +"yao" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) "yau" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"yaF" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/airlock/control) -"yaL" = ( -/obj/structure/machinery/light{ +"yaz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"yaH" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"yaI" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"yaY" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/corsat/gamma/hangar) -"ybs" = ( -/obj/structure/bed/stool{ - pixel_y = 15 +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/control) +"yaL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"ybD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"ybk" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "delta_omega"; + name = "Omega Checkpoint"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"ybo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 2"; + req_access_txt = "101" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHolding2"; + name = "Holding Cell 2" }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"ycb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"yck" = ( -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"ycy" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"yby" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/biodome/complex) +"ybM" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"ycx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"ycB" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"ycH" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"ycQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"yde" = ( +/obj/item/clothing/gloves/latex, +/obj/structure/surface/table/reinforced, +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"ydg" = ( +/obj/structure/surface/rack, +/obj/item/oldresearch/Chitin, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"ycz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/cargo) -"ycV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" }, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"ydm" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"ydg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"ydy" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"ydp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"ydt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"ydz" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"ydE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hallways) -"yeg" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"ydv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/control) +"ydz" = ( +/obj/structure/bed/chair, /turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"yeF" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/north) -"yeP" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"yeV" = ( -/obj/structure/pipes/vents/pump{ +/area/corsat/sigma/south/complex) +"ydN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"ydT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/omega/maint) +"yeg" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"yeh" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"yel" = ( +/obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"yeZ" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"yfh" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/cargo) -"yfj" = ( +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"yew" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"yfr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"yfs" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"yft" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/theta/airlock/control) -"yfC" = ( +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"yeA" = ( +/turf/open/mars/mars_dirt_13, +/area/corsat/sigma/biodome) +"yeH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"yeQ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"yeU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast/datalab) -"yfD" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/obj/structure/machinery/camera/autoname{ - network = list("omega") +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"yfh" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/cargo) +"yfj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"yfl" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) "yfH" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"yfK" = ( -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/residential/lounge) -"yfM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) +"yfN" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "yfO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -47007,35 +46956,37 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"yfP" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"ygb" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west) -"ygg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"yfT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential) -"ygl" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"yfU" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"ygf" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ygq" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"ygu" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"ygA" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"ygB" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) -"ygv" = ( -/obj/structure/surface/rack, -/obj/item/storage/wallet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"ygE" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) "ygF" = ( /obj/structure/machinery/computer/cameras{ network = list("theta"); @@ -47043,99 +46994,120 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"ygH" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"ygL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/control) -"yha" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"yhv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"yhH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"yhI" = ( +"ygG" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"yhL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"yhO" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/sigmaremote) -"yhP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"ygM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) -"yiq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"yhm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/item/paper, +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"yhv" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"yhI" = ( /turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) -"yir" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) +"yii" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"yij" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"yil" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) "yis" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"yiF" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/administration) +"yiu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access = null; + req_one_access_txt = "106;104" }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"yiG" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"yiv" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"yiA" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"yiM" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"yiD" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"yiH" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "GammaWestD"; + name = "Gamma Dome Airlock" }, -/obj/item/organ/eyes, +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "map_lockdown"; + name = "Gamma Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"yiR" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, /turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"yiN" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"yiS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) +"yiT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"yjc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) "yjr" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"yjs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"yju" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydroeast) "yjw" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green{ @@ -47143,56 +47115,93 @@ }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"yjx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) "yjJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast) -"yjQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"yjM" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"yjX" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/item/storage/toolbox/electrical, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"yjS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Storage"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"ykk" = ( -/turf/open/floor/corsat/purplewhitecorner/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"yjX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) -"ykx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"yky" = ( -/obj/structure/bed/chair/office/light{ +"yjZ" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ dir = 8 }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"ykG" = ( -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"ykY" = ( +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/obj/item/tool/weedkiller/triclopyr, +/obj/item/tool/weedkiller/lindane, +/obj/item/tool/weedkiller/D24, /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"ykb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"ykl" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"ykH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south) +/turf/open/floor/corsat/bluecorner, +/area/corsat/omega/control) +"ykJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"ykK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ykT" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"ykY" = ( +/obj/structure/surface/table, +/obj/item/folder, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ylb" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/theta/airlock/control) "yle" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirtgrassborder/south, @@ -47200,31 +47209,22 @@ "ylo" = ( /turf/open/space, /area/space) -"ylv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"ylE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"ylR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"ylY" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"ymd" = ( -/obj/effect/landmark/hunter_primary, +"ylB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"ylW" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) +/area/corsat/gamma/hydroponics) +"ylZ" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"ymc" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) (1,1,1) = {" ylo @@ -47521,13 +47521,13 @@ ylo ylo ylo aer -yfr -yha -yha -eyi -yha -yha -yfr +vBZ +fXW +fXW +tOO +fXW +fXW +vBZ aer ylo ylo @@ -47766,13 +47766,13 @@ ylo aer aer aer -fGl +dOm adn adn adn adn adn -ndJ +mam aer aer aer @@ -48009,17 +48009,17 @@ ylo ylo ylo aer -vtd -xKW -ndJ +bqv +vqg +mam adn -llt -cXz -iRj +pRR +ueQ +iud adn -ndJ -xLd -vtd +mam +xUv +bqv acN anf anf @@ -48254,39 +48254,39 @@ abG abG abG aer -iTI +gxS adj adn adn -eyn -sDD -oPA +ntw +lYh +fAe adn adn aly -wkQ +emy acN aFM abN abJ abH abP -pqz +eMR abP eTj abN ank abP -gpi -dED -kYq +qMX +nmo +cpy adV ylo ylo adV -gpi -dED -kYq +qMX +nmo +cpy adV ylo ylo @@ -48492,45 +48492,45 @@ abL abN eTj adV -gpi -dED -ibP +qMX +nmo +jZu abN acH exb acN -cAu +eqE adn llr adn -pSj -ecU -oPA +gXk +eMs +fAe adn llr adn -vtd +bqv acN acu lsH abN ank abP -swv -ibP +dJY +jZu abN lsH asQ abP abP -pBP +pEV abP adV abG abG adV abP -pBP +pEV abP adV ylo @@ -48612,19 +48612,19 @@ ylo ylo ylo ahA -bpm -eIZ -thL -eIZ -pKW +gni +mMw +iDY +mMw +gzo ahA ylo ylo ylo ahA -lBd -eIZ -hEM +wQY +mMw +nwt ahA ylo ylo @@ -48737,31 +48737,31 @@ abM abN eTj abP -pwe +jJH abP abP adE abN abJ acN -vtd +bqv adj dQQ kHe -pSj -svN -pNN +gXk +per +ctS adn dQQ aly -tbE +egz acN abL oGz abN abO abP -rOw +nUw abP acz oGz @@ -48771,8 +48771,8 @@ acc abN acz abP -lva -lQy +fyN +kIT abP acz abN @@ -48857,19 +48857,19 @@ ylo ahA ahA arV -eFA -xAy -qFj -xAy -oWF +dCt +idH +eJV +idH +xXl arV arV arV arV arV -ulo -xAy -qkN +vJa +idH +lVu arV ahA ahA @@ -48916,10 +48916,10 @@ sWP sWP sWP sWP -vLx -vLx -vLx -vLx +vse +vse +vse +vse sWP sWP sWP @@ -48989,17 +48989,17 @@ fFa lsH aFn acN -vSd +oFH adn dQQ adn -qlW -yfK -lBe +oFQ +hgV +iqZ adn dQQ adn -xKW +vqg acN eTj oGz @@ -49016,8 +49016,8 @@ aqb rcg pkc apo -dnL -voD +fDs +hoZ apo pkc aIj @@ -49051,18 +49051,18 @@ bfc oJn bfc aIt -qkk -iDW +dby +ccz aIt -efv -eUJ -mDN -dAh -iST -dAh -mDN -eUJ -khp +fXb +qGN +xZE +gZW +pZo +gZW +xZE +qGN +smc aIt bfc aER @@ -49100,23 +49100,23 @@ ylo ylo ylo ahA -tOt -ido -oyk -ucS -ucS -ucS -ucS -ucS -nin +obJ +nCJ +fLX +cTv +cTv +cTv +cTv +cTv +vuU aiL -gSj -ucS -ucS -ucS -ucS -ucS -nin +nEX +cTv +cTv +cTv +cTv +cTv +vuU ahA ylo ylo @@ -49157,18 +49157,18 @@ azX sWP sWP sWP -vLx -uUr -vLx -vLx -vLx -vLx -uUr -vLx -vLx -vLx -vLx -vLx +vse +kEX +vse +vse +vse +vse +kEX +vse +vse +vse +vse +vse sWP sWP sWP @@ -49226,15 +49226,15 @@ abF adE oGz abN -ibP -dED +jZu +nmo abP abP adE qJl acc acN -iTI +gxS adj xQk pIo @@ -49244,25 +49244,25 @@ pIo pIo oEK aly -wkQ +emy acN juf oGz abP -pqz -pJI +eMR +pKj abP -fys -klT -tRq -kdr +dnw +iFH +gtF +oYm abP uST aGb abO abP -xpR -khN +tIW +vBX abP abL aMP @@ -49296,18 +49296,18 @@ bfc oJn aIt aIt -oxs -oxs +cjV +cjV aIt -cFk -oEM -kko -oEM -oEM -oEM -kko -oEM -oaS +teQ +bIm +dRb +bIm +bIm +bIm +dRb +bIm +jtj aIt aIt oJn @@ -49345,23 +49345,23 @@ ylo ylo ylo ahA -dSt -tmu -vlF -iUf -gZA -iUf -iUf -iUf -vkw +sSf +dAJ +goY +knP +hBz +knP +knP +knP +fxa aiQ -vlF -iUf -iUf -iUf -iUf -iUf -vkw +goY +knP +knP +knP +knP +knP +fxa ahA ylo ylo @@ -49400,22 +49400,22 @@ azX azX sWP sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -uUr +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX sWP sWP azX @@ -49449,65 +49449,65 @@ ylo ylo abF abF -dww -qay -qay -qay -qay -qay -rYY +lwA +eCZ +eCZ +eCZ +eCZ +eCZ +kzn abF abF abF -sfd -hCE -stG +gEZ +fXN +xBy abf -uIK -vTJ -yjx -fir +ozh +fSq +gDb +ujn aax abO oGz iZz abP -kEn -pAX +pkg +vvp abP abO oGz acz acN -tnV -qDs +mft +uUE dQQ adn -jzQ -iVE -dlp +sZR +tgp +fAZ adn dQQ -vtd -vtd +bqv +bqv acN acz oGz -ibP -wmP +jZu +wVL abP abP -oic -vSu -tRq -kdr +cyF +isa +gtF +oYm abP abP abP abP abP -lKm -kdr +gCm +oYm abP abP abP @@ -49540,20 +49540,20 @@ bfc bfc oJn aIt -grH -sgR -rju +hTZ +hbN +pPf aIt -bst -oEM -dFR -qqB -cMq -nBU -dFR -oEM -gwk -lhC +wZx +bIm +wSS +hQU +sCg +poP +wSS +bIm +pWe +gSe aIt oJn bfc @@ -49590,23 +49590,23 @@ ylo ylo ylo ahA -etO -bIm -vlF -iUf -uaK -iUf -iUf -iUf -vkw +dIW +qZC +goY +knP +sRu +knP +knP +knP +fxa aiQ -vlF -iUf -srp -tHI -evI -iUf -whU +goY +knP +wAw +rIk +nQv +knP +uzc ahA ylo ylo @@ -49644,24 +49644,24 @@ azX sWP sWP sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -dqm -dqm -dqm -dqm -vLx -vLx -uUr -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +uhU +uhU +uhU +uhU +vse +vse +kEX +vse +vse +vse +vse sWP sWP sWP @@ -49693,25 +49693,25 @@ ylo ylo ylo abF -qBd -erT -nYv -nYv -nYv -nYv -nYv -ykk -gTb +kbT +hIJ +pdH +pdH +pdH +pdH +pdH +xiF +lwX abf -wvm -erT -ogV -fgS +qLr +hIJ +wUR +xls abf -jmb -rwP -rwP -uyJ +hQr +xcH +xcH +mts aax abP acv @@ -49741,22 +49741,22 @@ acv abP abP abP -fys -klT -vSu -tRq -sXt -lQy -lva -nxn -lva -lQy -uSC -cRe +dnw +iFH +isa +gtF +wGF +kIT +fyN +sVh +fyN +kIT +fAu +lub abP -gpi -dED -kYq +qMX +nmo +cpy adV ylo ylo @@ -49785,20 +49785,20 @@ qkt wiF xNa aIt -oCM -qxr -dTJ +eyb +gPE +qLc aIt -fQe -oEM -ehV -ugW -pTn -oEM -oEM -oEM -gwk -wfp +jUr +bIm +xXU +smn +kCO +bIm +bIm +bIm +pWe +xDN aIt nri wiF @@ -49835,23 +49835,23 @@ ylo ylo ylo ahA -flZ -gYz -vlF -gmI -pQo -lBd -dNM -iUf -msK +gCh +xyh +goY +qrx +jav +wQY +oqh +knP +kWI aiL -cgP -iUf -hEM -qFj -xWg -iUf -whU +pEN +knP +nwt +eJV +toY +knP +uzc ahA ylo ylo @@ -49887,28 +49887,28 @@ azX azX sWP sWP -fBp -vLx -vLx -vLx -uUr -vLx -vLx +kXf +vse +vse +vse +kEX +vse +vse sWP vCx vCx -dtG -dtG +ltF +ltF vCx vCx sWP -vLx -vLx -vLx -vLx -vLx -uUr -fBp +vse +vse +vse +vse +vse +kEX +kXf sWP sWP azX @@ -49938,69 +49938,69 @@ ylo ylo abF abF -vxS -rwP -rwP -rwP -rwP -rwP -rwP -rwP -gwK +qFL +xcH +xcH +xcH +xcH +xcH +xcH +xcH +fnS abf -omM -rwP -rwP -wGy +pOR +xcH +xcH +fSv abf -hCi -rwP -vMo -shv +mME +xcH +skF +sBK aax -jbF -xJd -sLK -rsy -rsy -xQz -rsy -hkt -mgT -iVj -rsy -cJY -hkt -vYi -voD -sLK -rsy -hkt -voD -vYi -sLK -rsy -rsy -wGu -mgT -sLK -rsy -xQz -hkt -qUS -voD -rFc -vSu -vSu -vSu -vSu -vSu -vSu -tRq -kdr +jdn +vtL +uLe +dcn +dcn +xvX +dcn +rXN +oLW +ykb +dcn +wLG +rXN +nqg +hoZ +uLe +dcn +rXN +hoZ +nqg +uLe +dcn +dcn +rZb +oLW +uLe +dcn +xvX +rXN +qag +hoZ +vir +isa +isa +isa +isa +isa +isa +gtF +oYm abP abP -pBP +pEV abP adV ylo @@ -50030,20 +50030,20 @@ uXU bfc xCy aIt -eZf -qxr -kLp +wPx +gPE +ygB aIt -qSn -oEM -fkE -roP -ekW -uAQ -vmj -qco -nHZ -eod +okg +bIm +xpn +gyN +fQF +xhV +mnr +enF +man +ngR aIt bfe bfc @@ -50080,23 +50080,23 @@ ylo ylo ylo ahA -huk -tmu -vlF -gmI -pJU -bpm -dNM -iUf -xPo -fjd -jIk -iUf -qFj -qFj -qFj -iUf -vkw +vLp +dAJ +goY +qrx +xxk +gni +oqh +knP +uQx +nBr +hOp +knP +eJV +eJV +eJV +knP +fxa ahA ylo ylo @@ -50131,30 +50131,30 @@ azX azX sWP sWP -uSx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +eaO +vse +vse +vse +vse +vse +vse +vse vCx -wYN -fBp -vLx -vLx -wOW -fBp +taB +kXf +vse +vse +eZp +kXf vCx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -fBp +vse +vse +vse +vse +vse +vse +vse +kXf sWP sWP azX @@ -50182,67 +50182,67 @@ ylo ylo ylo aar -sNW -jgq -rwP -qcy -fri -vMo -tKN -ulD -rwP -rwP -eEC -rwP -rwP -vMo -qdU +dir +toO +xcH +xzr +iBe +skF +eiB +ohD +xcH +xcH +bIF +xcH +xcH +skF +qUZ abf -qtP -rwP -wHy -ppO +eAR +xcH +vEa +fKG aax -cxm -tRq -khN -jHC -elk -tRq -khN -lqj -elk -tRq -khN -lqj -elk -tRq -khN -elk -vSu -khN -elk -twh -khN -lqj -elk -twh -khN -lqj -elk -tRq -khN -elk -vSu -xJd -voD -voD -drE -lME -vOZ -voD -rFc -pDk +dnY +gtF +vBX +fNN +woi +gtF +vBX +cQB +woi +gtF +vBX +cQB +woi +gtF +vBX +woi +isa +vBX +woi +bVA +vBX +cQB +woi +bVA +vBX +cQB +woi +gtF +vBX +woi +isa +vtL +hoZ +hoZ +eww +lrN +uMu +hoZ +vir +ecm abP acc abN @@ -50276,12 +50276,12 @@ xCy bfg aIt aIt -uEQ +hzY aIt aIt aII -oEM -tHq +bIm +gJO aII aIt aIt @@ -50325,23 +50325,23 @@ ylo ylo ylo ahA -etO -qFj -vlF -gmI -lgD -jgZ -keT -kDY -eIk -sPC -qMh -kDY -dxt -dxt -dxt -uPQ -vkw +dIW +eJV +goY +qrx +fuB +tMu +cGp +eVf +pZZ +kVU +xqm +eVf +efB +efB +efB +sDl +fxa ahA ylo ylo @@ -50351,15 +50351,15 @@ ylo ylo ylo sXl -uQR -uQR -uQR -uQR +pFF +pFF +pFF +pFF anT -sbe -sbe -dgb -dgb +gyY +gyY +nvO +nvO auL ylo ylo @@ -50375,32 +50375,32 @@ ylo azX sWP sWP -fBp -vLx -vLx -vLx -uUr -vLx -vLx -vLx -dqm +kXf +vse +vse +vse +kEX +vse +vse +vse +uhU vCx -fBp -igv -dqm -dqm -dqm -fBp +kXf +fLk +uhU +uhU +uhU +kXf vCx -dqm -vLx -vLx -vLx -vLx -vLx -vLx -vLx -wOW +uhU +vse +vse +vse +vse +vse +vse +vse +eZp sWP sWP azX @@ -50427,30 +50427,30 @@ ylo ylo ylo aar -cTT -jgq -rwP -yfM -ogV -sHj -hnM -pZB -qih -qih -qih -qih -qih -uyo -qsM +paM +toO +xcH +gQA +wUR +qMu +flV +cWz +uYK +uYK +uYK +uYK +uYK +kgI +cyD abf -bSL -pvl -wHy -fef +kPh +iFb +vEa +pVl aax -mJB -tRq -kdr +iaT +gtF +oYm abP abP acv @@ -50464,7 +50464,7 @@ abP acv abP abP -nAt +pDm abP abP acv @@ -50477,17 +50477,17 @@ abP abP acv abP -wMR -elk -oxS -vSu -vSu -vSu -vSu -vSu -vSu -xJd -voD +rpd +woi +tUB +isa +isa +isa +isa +isa +isa +vtL +hoZ apo pkc uDW @@ -50510,9 +50510,9 @@ bfc oJn aIm aIm -sgZ -cQa -lCO +vbo +dnu +vgs aIm aIm pwp @@ -50520,20 +50520,20 @@ bgk bfg aIt aIt -iGL -vjf -sTu -iBT -rsq -oEM -fkE -fhF +dTW +uga +dka +qyA +saX +bIm +xpn +tBk aIt -vAS -elp -elp -mAg -hsX +fdW +pyv +pyv +eTp +pDM aIt aIt bfd @@ -50542,9 +50542,9 @@ aEZ bfc aUG aUG -txH -uqj -xze +dhx +riO +oZg aUG aUG bfD @@ -50570,23 +50570,23 @@ ylo ylo ylo arV -evW -tmu -vlF -gmI -ucX -evI -dNM -iUf -msK +tZa +dAJ +goY +qrx +tFV +nQv +oqh +knP +kWI aiL -cgP -iUf -lBd -qFj -geZ -uaK -msK +pEN +knP +wQY +eJV +xqS +sRu +kWI arV ylo ylo @@ -50596,15 +50596,15 @@ ylo sXl sXl sXl -vGQ -nUp -nUp -cKy +lNH +gYR +gYR +uVY anT -fsl -hIm -hIm -sDp +qjx +nSF +nSF +fik auL auL auL @@ -50619,34 +50619,34 @@ ylo azX azX sWP -fBp -vLx -uUr -vLx -vLx -vLx -vLx -vLx -vLx -dqm -dtG -vLx -dqm -dqm -dqm -dqm -vLx -dtG -dqm -vLx -vLx -vLx -vLx -vLx -dtG -dtG -uUr -fBp +kXf +vse +kEX +vse +vse +vse +vse +vse +vse +uhU +ltF +vse +uhU +uhU +uhU +uhU +vse +ltF +uhU +vse +vse +vse +vse +vse +ltF +ltF +kEX +kXf sWP azX azX @@ -50673,29 +50673,29 @@ ylo ylo abF abF -wTP -rwP -rwP -rwP -rwP -rwP -rwP -rwP -twA +gPR +xcH +xcH +xcH +xcH +xcH +xcH +xcH +eml abf -xvO -rwP -wHy -gfq +ozX +xcH +vEa +uvt abf abf abf -gxO +ieM abf aax -mJB -tRq -kdr +iaT +gtF +oYm abP eTj oGz @@ -50709,7 +50709,7 @@ adE oGz eTj abP -enR +ljM abP abJ oGz @@ -50723,16 +50723,16 @@ abO oGz abP abP -mJB -oxS -khN -rqp -jHC -qOt -jHC -rqp -xpR -khN +iaT +tUB +vBX +gRU +fNN +wCo +fNN +gRU +tIW +vBX abP abO aQG @@ -50754,43 +50754,43 @@ aFd wiF xNa aIm -ouc -lJk -vnu -ilD -jGM +cww +vnx +fGG +gdQ +vDY aIm aIm aIm aIt aIt -pTs -rsq -fkE -oEM -oEM -oEM -oEM -fkE -gwk +qpj +saX +xpn +bIm +bIm +bIm +bIm +xpn +pWe bbJ aIX aIX aIX aIX aIX -toP +uVn aIt aIt bfc bfc aUG aUG -tUM -dyt -wXM -dyt -heA +qEK +ksy +tqX +ksy +mkT aUG aUG bfd @@ -50815,23 +50815,23 @@ ylo ylo ylo arV -lBd -qFj -vlF -iUf -uaK -iUf -iUf -iUf -vkw +wQY +eJV +goY +knP +sRu +knP +knP +knP +fxa aiQ -vlF -iUf -eFA -srp -bpm -uaK -jpN +goY +knP +dCt +wAw +gni +sRu +eSF arV ylo ylo @@ -50839,19 +50839,19 @@ ylo ylo ylo sXl -tyH -nUp -oNl -wom -wom -vZn -lYn -nIT -rOO -rOO -uFW -hIm -cEJ +vvJ +gYR +sQh +gZR +gZR +gGp +qAb +cjR +rsA +rsA +iSb +nSF +vgu auL ylo ylo @@ -50864,34 +50864,34 @@ azX azX sWP sWP -vLx -vLx -vLx -vLx -vLx -vLx -woK -vLx -vLx -fNf -dtG -vLx -dqm -vsR -dqm -dqm -vLx -dtG -fNf -vLx -vLx -uUr -dtG -vLx -dtG -dtG -vLx -vLx +vse +vse +vse +vse +vse +vse +vJH +vse +vse +tuL +ltF +vse +uhU +wuU +uhU +uhU +vse +ltF +tuL +vse +vse +kEX +ltF +vse +ltF +ltF +vse +vse sWP sWP azX @@ -50918,29 +50918,29 @@ ylo ylo ylo abF -rpE -xvO -mRK -nZp -mRK -nZp -mRK -twA -kIg +qdm +ozX +nii +hOA +nii +hOA +nii +eml +osB abf -hrm -xvO -wHy -ykk +fjN +ozX +vEa +xiF abf -iDv -thM -wHy -szE +twj +pzd +vEa +wgp aax -mJB -xJd -riq +iaT +vtL +rCi abP avD mqn @@ -50954,7 +50954,7 @@ aFt erc acI abP -enR +ljM abP aFv fqp @@ -50968,16 +50968,16 @@ avD mqn lQu abP -mNw -rFc -kdr +jZw +vir +oYm abP abP abP abP abP -lKm -kdr +gCm +oYm abP abP abP @@ -50999,44 +50999,44 @@ bfc bfc bfe aIm -qES -wwd -wwd -eHM -vxy -kFx -sAS +kBT +tio +tio +rWX +xjv +cyn +tjN bbB -ryV -cNS -rsq -oEM -fkE -roP -hVf -vLG -oEM -fkE -myK +usC +tiG +saX +bIm +xpn +gyN +hYW +eTO +bIm +xpn +eUh bbJ aIX -oIw -xBM -jUO +lgm +wZZ +xJp aIX aIX -dxz +cZN aIt bfc bfc aUG -bkQ -tVI -kDB -kDB -qBS -szY -bkQ +ivC +nmE +eat +eat +sLx +hwc +ivC aUG bfg bfc @@ -51060,23 +51060,23 @@ aQz aQz aQz aQz -ljV -tmu -lBg -iUf -uaK -iUf -iUf -iUf -vkw +ofA +dAJ +kBy +knP +sRu +knP +knP +knP +fxa aiQ -vlF -iUf -iUf -iUf -iUf -uaK -vkw +goY +knP +knP +knP +knP +sRu +fxa arV aqr aky @@ -51084,19 +51084,19 @@ aky aqr aqr sXl -wAK -kKk -jyU -pGz -uks -pGz -pGz -hwr -toA -toA -icq -rOO -lyf +fOQ +bHm +tNK +iMY +gsC +iMY +iMY +pFE +ejF +ejF +ygM +rsA +cQf auL auL auL @@ -51108,36 +51108,36 @@ ylo azX sWP sWP -vLx -vLx -vLx -dtG -dtG -vLx -uUr -vLx -vLx -vLx -dqm +vse +vse +vse +ltF +ltF +vse +kEX +vse +vse +vse +uhU vCx -fBp -dqm -dqm -dqm -igv -uSx +kXf +uhU +uhU +uhU +fLk +eaO vCx -dqm -vLx -vLx -dtG -dtG -vLx -vLx -vLx -vLx -vLx -vLx +uhU +vse +vse +ltF +ltF +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -51164,28 +51164,28 @@ ylo abF abF abF -rDe -vEk -npV -oDP +njY +ngw +cIq +ieO hFQ -gdN -vEc +ryd +yeQ abF abF abF -jgq -sHj -qih -cdX -qih -irR -nFb -szE +toO +qMu +uYK +wAi +uYK +lvK +ijj +wgp aax -mJB -tRq -kdr +iaT +gtF +oYm abP abH abM @@ -51213,20 +51213,20 @@ abH abM eTj abP -mJB -tRq -kdr +iaT +gtF +oYm abP -gpi -jbD -pJI +qMX +sKs +pKj abP -hVK -cRe +tUN +lub abP -gpi -dED -kYq +qMX +nmo +cpy adV ylo ylo @@ -51244,44 +51244,44 @@ bfc bfc bfd aIm -uSD -kDr -kGG -qsm -wwd -wwd -wwd -lWa -oEM -oEM -oEM -oEM -fkE -gHy +hab +fGw +gNC +tNH +tio +tio +tio +uBu +bIm +bIm +bIm +bIm +xpn +kNS aIt -rkH -oEM -rtV -ugW +kLh +bIm +tpX +smn bbQ mrQ -hGv -ork -oeR +yby +hsC +dHo fdh aIX -jpv +wPO bbJ bfc bfc aUG -pKZ -jul -kDB -kDu -qBS -bId -pKZ +sFw +ogC +eat +fOL +sLx +bUq +sFw aUG bfc aEZ @@ -51300,50 +51300,50 @@ bfc bfu awY aQC -tNB -hdq +jGG +cfr aQO xMS aQC -srp -gBM -vlF -iUf -jdD -iUf -iUf -oDW -xxW +wAw +mEj +goY +knP +lFK +knP +knP +nuX +fds aiL -dYr -hmn -hmn -hmn -uhZ -uaK -rIN +tsU +rUD +rUD +rUD +hCe +sRu +dmV aiL -qkM -xBB -xBB -xqc +tAb +hft +hft +gvf jRL -fii -vUY -vZn +gcu +nGV +gGp anT anT anT anT anT -iGc -rOO -rOO -sTE -dEb -iey -cEJ -owh +gYz +rsA +rsA +kQr +ene +sOV +vgu +tlf auL aSa aSa @@ -51352,38 +51352,38 @@ aSa azX azX sWP -vLx -vLx -vLx -vLx -dtG -dtG -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +ltF +ltF +vse +vse +vse +vse +vse +vse vCx -fBp -uSx -vLx -vLx -lRG -fBp +kXf +eaO +vse +vse +klV +kXf vCx -vLx -vLx -vLx -vLx -vLx -vLx -uUr -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse +vse sWP azX azX @@ -51419,58 +51419,58 @@ aax abF abF abF -nlw -csn -cat +xfB +rzm +tER abf -xvO -wHy -rwP -uyJ +ozX +vEa +xcH +mts aax -mJB -tRq -kdr +iaT +gtF +oYm abP abP -pBP +pEV abP abP abP -pBP +pEV abP abP abP -pBP +pEV abP abP djF abP abP -pBP +pEV abP abP abP -pBP +pEV abP abP abP -pBP +pEV abP abP -mJB -tRq -kdr +iaT +gtF +oYm abP abP -pBP +pEV abP abP -lKm -kdr +gCm +oYm abP abP -pBP +pEV abP adV ylo @@ -51489,44 +51489,44 @@ bcf bcf aUH aUH -eUO -fzi -xlQ -ihX -dxq -dxq -dxq -iBC -ugW -ugW -ugW -ugW -vjf -mdy +nEJ +qoo +lhH +gFg +iuf +iuf +iuf +ofz +smn +smn +smn +smn +uga +ikA aIt -hAW -oEM -fkE -oEM +jhF +bIm +xpn +bIm bqr aIX -tHP -nNy -wBh +plp +wQC +haF aIX aIX -syD +ktH lnQ bfc bfc aUG -bkQ -qmp -kDB -svz -nAZ -bId -bkQ +ivC +gdk +eat +iol +nCa +bUq +ivC aUG bfc bfc @@ -51544,51 +51544,51 @@ bfc bfc bfc bfc -kts -hdq -hdq +xas +cfr +cfr aQO aQO aQC aQC aiL -vlF -iUf -iUf -iUf -iUf -vkw +goY +knP +knP +knP +knP +fxa aiL aiL aiL aiQ aiQ aiL -vlF -uaK -vkw +goY +sRu +fxa aiL -nQr -ebf -ebf -psX +rui +siT +siT +tHr jRL -orA -vqc -fCa -mrq -fCa -lFH -ewQ +sBL +tXj +oWX +wnV +oWX +uLE +ofi anT -rus -dNY -rOO -rOO -lgw -rOO -lyf -cgW +mGB +nBP +rsA +rsA +tvv +rsA +cQf +jwT auL aSa aSa @@ -51597,38 +51597,38 @@ aSa azX sWP sWP -vLx -vLx -uUr -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -uUr +vse +vse +kEX +vse +vse +vse +vse +vse +vse +vse +vse +kEX sWP vCx vCx -dtG -dtG +ltF +ltF vCx vCx sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -uUr -vLx -uUr +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX +vse +kEX sWP sWP azX @@ -51654,13 +51654,13 @@ ylo abF abF abF -tnn -tnn -tnn -tnn -tnn -tnn -tnn +wkt +wkt +wkt +wkt +wkt +wkt +wkt abF abF abF @@ -51668,51 +51668,51 @@ abf abf abf abf -krF -wHy -crz -uyJ +xUc +vEa +nmL +mts aax abS -ruZ +eeX abS abP -gpi -wmP -kYq +qMX +wVL +cpy abP -gpi -wmP -pJI +qMX +wVL +pKj abP -gpi -wmP -kYq +qMX +wVL +cpy abP -eWo +kET abP -gpi -wmP -kYq +qMX +wVL +cpy abP -gpi -wmP -pJI +qMX +wVL +pKj abP -gpi -wmP -kYq +qMX +wVL +cpy abP abS -ruZ +eeX abS abP acz abN abO abP -lKm -sXt +gCm +wGF abP acz abN @@ -51729,49 +51729,49 @@ bfc oJn aEZ aUH -rpM -kVI -gCR -sLd +gcp +qDW +lyr +hOB bbB -tsx -wwd -pcj -elL -mTW -puP -oBM +jRx +tio +qCa +pJc +iIm +iuU +vih bbB -cQo -hVf -vLG -oEM -qWb -oDv -pmL -uBW -ugW -vjf -roP +tBu +hYW +eTO +bIm +iUP +uGu +nDH +pxK +smn +uga +gyN bbJ aIX -pUT -ygl -iin +qTD +nju +jCt aIX aIX -xDs +wSi aIt aEZ bfc aUG -bkQ -dhS -kDB -svz -qBS -oKP -bkQ +ivC +cGN +eat +iol +sLx +lNR +ivC aUG bfe bfc @@ -51793,47 +51793,47 @@ aQC aQC aQO aQW -hdq -hdq -kts -qFj -vlF -iUf -iUf -iUf -iUf -fFl +cfr +cfr +xas +eJV +goY +knP +knP +knP +knP +nVP aiL -xqu -mTJ -hXT -qMx -qlb -jIk -uaK -vkw +vuj +fdr +kVI +rXX +nYK +hOp +sRu +fxa aiQ -dAg -fWv -wVl -rap +swy +pQX +kqj +mte jRL -eiN -qcz -jZW +kNg +qgJ +niB anT -fuz -tXc -qQx +gCn +wLu +xDF anT -pnI -xYO -rOO -xhw -rtA -xYO -lyf -dnx +sUT +dYW +rsA +vPN +tmj +dYW +cQf +hxC auL ylo ylo @@ -51841,40 +51841,40 @@ ylo ylo azX sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -oSo -dtG -uUr -vLx -vLx -vLx -vLx -dqm -fNf -dqm -dqm -vLx -vLx -vLx -vLx -uUr -dtG -dtG -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +vse +uyh +ltF +kEX +vse +vse +vse +vse +uhU +tuL +uhU +uhU +vse +vse +vse +vse +kEX +ltF +ltF +vse +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -51898,29 +51898,29 @@ ylo ylo ylo abF -tnn -xck -tLV -tLV -tLV -tLV -tLV -lJA -tnn +wkt +nMg +wuT +wuT +wuT +wuT +wuT +oBv +wkt aax auW auW asf ntt abf -sTk -eJk -iSQ -roG +lCg +jFA +eTc +ell aax -oFw -uFp -maK +vSA +nph +vOg abP abP abP @@ -51934,7 +51934,7 @@ abP abP abP abP -enR +ljM abP abP abP @@ -51948,16 +51948,16 @@ abP abP abP abP -hdr -uFp -maK +rLN +nph +vOg abP abH mfX pkc apo -sIt -voD +eCl +hoZ apo pkc kJa @@ -51974,48 +51974,48 @@ wiF xNa bfc aUH -mtd -odU -olU -ilD +qJE +lZZ +ygf +gdQ bbB -ecN -nMK -pcj -ilD -jGM +jTC +qWY +qCa +gdQ +vDY aIm aIm aIm aIt aIt -uKp -vLG -oEM -oEM -oEM -oEM -ruT -fkE -gwk +lXg +eTO +bIm +bIm +bIm +bIm +ddm +xpn +pWe bbJ aIX aIX aIX aIX aIX -vdP +uoe aIt aIt bfc bfc aUG aUG -oJN -vjs -svz -xFV -rkJ +rax +rCT +iol +pXS +thT aUG aUG bfd @@ -52038,47 +52038,47 @@ bfc aQC aPb aQO -hdq -xIZ +cfr +nTA aQC -vJR -nkq -uhZ -iUf -iUf -oDW -xxW +lKe +kWq +hCe +knP +knP +nuX +fds aiL -giO -xAy -qFj -xAy -tOt -iUf -uaK -vkw +nSW +idH +eJV +idH +obJ +knP +sRu +fxa aiQ -dAg -wKe -wKe -rap +swy +jcO +jcO +mte jRL anT -fzp +rvR anT anT aoa -qpI +ffU aoa aoA aac aac -fIy +tcM aoA aoA -skP -saz -gFz +pxJ +ent +oYA auL ylo ylo @@ -52086,40 +52086,40 @@ ylo ylo azX sWP -vLx -vLx -vLx -vLx -vLx -vLx -uUr -vLx -dtG -dtG -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -uUr -vLx -vLx -vLx -vLx -dtG -dtG -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +kEX +vse +ltF +ltF +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse +ltF +ltF +vse +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -52143,66 +52143,66 @@ ylo ylo ylo abF -nOF -wuB -sJl -hfV -sli -hmy -tzW -wMU -mcn +mFO +jLb +scL +qfX +ifT +uls +qnM +xMo +weG aax pTp -vhT -uuw +uyE +mcq pTp abf -erT -wHy -qcy -dcx +hIJ +vEa +xzr +nSS aax -nbb -uFp -xhS -nUZ -enR -enR -kHU +nKI +nph +tjI +jov +ljM +ljM +jbv djF djF djF -enR -lBv +ljM +stx piZ djF djF -enR -kHU -enR +ljM +jbv +ljM djF djF djF -mkt -enR +gfK +ljM djF piZ djF -kHU -lBv -lBv -nUZ -joW -uFp -kzT +jbv +stx +stx +jov +qYO +nph +sCC abP iWA aGj abN abP -wMR -rqp +rpd +gRU abP abO aRl @@ -52219,15 +52219,15 @@ bfc aUH aUH aUH -wPi -dVs -alq -qlR +sCP +hUx +gea +ykT aUH aUH -odP -pcj -iIS +rBJ +qCa +kFy aIm aIm aeo @@ -52235,20 +52235,20 @@ beO beO aIt aIt -cgi -nqq -nbR -pbQ -vLG -sjf -fkE -iwJ +jHl +wDo +kMX +iRz +eTO +nSk +xpn +cWB aIt -uYl -tvX -gDS -osz -kTW +wAn +eTr +qYV +vWx +kUA aIt aIt xCy @@ -52258,7 +52258,7 @@ xCy aUG aUG aJa -kDi +nQo aJa aUG aUG @@ -52289,41 +52289,41 @@ aQz arV aiL qfp -eZb -iKL +uXq +hJS qfp aiL aiL -lah -iUf -iUf -iUf -iUf -iUf -uaK -vkw +iIC +knP +knP +knP +knP +knP +sRu +fxa aiQ -dAg -sOw -sOw -ugT -crh -ibb -gUE -ugT -xBB -xBB -ibb -egy -wqk -lzq -rOO -xTI -fCe +swy +xcN +xcN +fjj +mzl +cVe +dAG +fjj +hft +hft +cVe +tHs +auT +aMe +rsA +hHa +pbk aoA -dOn -kVv -hyT +rdH +wdE +cJY auL ylo ylo @@ -52331,40 +52331,40 @@ ylo azX azX sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -fNc -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -uUr -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +hDx +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse +vse +vse +vse sWP azX azX @@ -52388,29 +52388,29 @@ ylo ylo ylo abF -tnn -wuB -uss -pgw -nAW -iXv -sfO -wMU -tnn +wkt +jLb +kfa +mYx +nRr +bre +eGr +xMo +wkt aax pTp -iPm -gGv +gkB +mdP fKw -ieT -qih -uyo -rwP -uyJ +uOs +uYK +kgI +xcH +mts aaz -jPp -uFp -xhS +lJM +nph +tjI abP abP abP @@ -52421,7 +52421,7 @@ abP abP abP abP -nAt +pDm abP abP abP @@ -52432,15 +52432,15 @@ abP abP abP abP -nAt +pDm abP abP abP abP abP -joW -uFp -xhS +qYO +nph +tjI apR apR apR @@ -52462,16 +52462,16 @@ bfc aER bfc aUH -rTt -uKm -lJk -dKy -wwd -eHM -mqs +fUa +lMd +vnx +jYI +tio +rWX +dpO aUH bnH -bMV +kid bnH aUH aeo @@ -52484,10 +52484,10 @@ aIt aIt aIt aIt -icV -oEM -tJb -nKP +eoM +bIm +dQj +uJQ aUI aUI aUI @@ -52502,9 +52502,9 @@ aEP nfz xCy aUG -qLV -svz -xfU +xTP +iol +hDg aUG bfc bfc @@ -52532,39 +52532,39 @@ ylo ylo ylo arV -eQC -eVo -eVo -eVo -eVo -rgK +sgd +lvA +lvA +lvA +lvA +qNz aiL -xfV -iUf -qsx -kDY -kDY -kDY -oQH -vkw +dtI +knP +pEU +eVf +eVf +eVf +pUw +fxa aiQ -eDw -uKH -fMV -uKH -uKH -uKH -gUE -uKH -uKH -uJR -uKH -uKH -fhZ -xTI -xTI -xTI -lyf +cpR +tgU +uQu +tgU +tgU +tgU +dAG +tgU +tgU +nou +tgU +tgU +lZP +hHa +hHa +hHa +cQf aoA aac qqK @@ -52576,40 +52576,40 @@ baU azX sWP sWP -vLx -uUr -vLx -vLx -vLx -vLx -vLx -vLx -vLx -uUr -vLx +vse +kEX +vse +vse +vse +vse +vse +vse +vse +kEX +vse sWP vCx -uSx -uSx -wOW -vLx -vLx -wYN -wOW -lRG +eaO +eaO +eZp +vse +vse +taB +eZp +klV vCx sWP -vLx -vLx -vLx -vLx -vLx -vLx -uUr -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse sWP sWP azX @@ -52633,67 +52633,67 @@ ylo ylo ylo abF -tnn -wuB -dKR -qjk -tNg -uin -fQt -wMU -tnn -pgy +wkt +jLb +dak +xnb +wXL +eLx +oHM +xMo +wkt +eky pTp -fmi -vhT +lUp +uyE nHU abf -xvO -wHy -rwP -ykk +ozX +vEa +xcH +xiF aaz -vcF -eoo -laQ -lUH +dLG +whr +tUC +pwe adJ adJ -qQo -wyF -lRB -fej -kyy -jYP -jYP -tKU -iew -exB +dht +xef +vjD +hjB +piA +nVv +nVv +gSw +wvj +kIw adJ adJ -ceV -fdt -tKU -vZj -tKU -fdt -tKU -jbn +jSC +jPH +gSw +mnR +gSw +jPH +gSw +pWB adJ adJ -gvW -mpo -iFw -eoo -wsp +jgA +eAC +dQV +whr +hCs apR -hJT -oyc +lUK +kjf apR -lGU -qRl -qRl -qhG +voN +cdD +cdD +cFc ahz ylo ylo @@ -52707,17 +52707,17 @@ bfc oJn aUH aUH -fBy -wwd -wwd -xHq -kZI -wwd -eHM +dQq +tio +tio +uOt +dRm +tio +rWX aIm -jur -xUz -kML +lgn +yjJ +oPT aUH aeo bgf @@ -52725,20 +52725,20 @@ bfb bgf aeo aII -pTs -cNS -mwX +qpj +tiG +xtN aII -rsq -oEM -fkE -myK +saX +bIm +xpn +eUh bbM -hsf -psC -ihZ -dyt -fGH +fsc +fvi +ykl +ksy +lsx aUG bfc bfc @@ -52747,9 +52747,9 @@ bfc bfc bfc bbM -vwT -svz -rnH +lhq +iol +vmO ukV bfc bfc @@ -52777,85 +52777,85 @@ ylo ylo ylo arV -jeP +mgS lZm lZm lZm lZm -lKs +fQh aiL -knw -iDa -qFj -iDa -gXC -iUf -uaK -vkw +rSl +pcf +eJV +pcf +grR +knP +sRu +fxa aiL -eDw -uKH -tBp -kKH -kKH -kKH -gFy -uKH -fMV -uKH -uKH -uKH -fhZ -xTI -xTI -xTI -uFW -eMt -hIm -nIT -kgV -rAW -gFz -lzq -gFz -xhq -dtG -dtG -vLx -vLx -vLx -vLx -vLx -uUr -vLx +cpR +tgU +xwn +cFp +cFp +cFp +pGU +tgU +uQu +tgU +tgU +tgU +lZP +hHa +hHa +hHa +iSb +saU +nSF +cjR +kiK +ufH +oYA +aMe +oYA +fSP +ltF +ltF +vse +vse +vse +vse +vse +kEX +vse sWP sWP -vLx -vLx +vse +vse sWP sWP sWP sWP sWP -dtG -dtG +ltF +ltF sWP sWP sWP sWP sWP -vLx -vLx +vse +vse sWP sWP -vLx -vLx -vLx -dtG -dtG -vLx -vLx -vLx +vse +vse +vse +ltF +ltF +vse +vse +vse sWP azX ylo @@ -52878,67 +52878,67 @@ ylo ylo ylo abF -tnn -wuB -fJC -sBE -mkv -kzQ -pus -wMU -tnn +wkt +jLb +dhM +pRf +dae +jQJ +pff +xMo +wkt aax -tEQ -vhT -vhT +lcG +uyE +uyE nHU abf -dFw -fft -qih -qih -ilC -tyM -ouN -tNr -eMn +tOU +iCX +uYK +uYK +dFV +cco +oib +syw +jNX adJ -gRO -laS -jef -oxw -oxw -oxw -jef -oxw -oxw -rms -pAQ +rQl +vOQ +nPY +kom +kom +kom +nPY +kom +kom +lii +dXj adJ -ceV -laS -qMn -uvz -rwI -uvz -rwI -uvz -kBY -jbn +jSC +vOQ +mJx +kbJ +hZL +kbJ +hZL +kbJ +ozr +pWB adJ -inf -gCe -onD -ouN -tyM -tJy -vYF -wLj +qdh +mCP +deQ +oib +cco +ruZ +rfx +kir apR -seF -jIx -jIx -jPA +jvy +fbG +fbG +wyq aqw ylo ylo @@ -52951,18 +52951,18 @@ nZR wiF xNa aUH -jGM -ntO -tGD -ghF -kHS -jNw -dxq -kfj -mMy -gdS -pxr -edm +vDY +wNI +sjV +vZz +qTc +cic +iuf +myr +cMu +uwg +fIM +vUX aUH beO bgg @@ -52970,20 +52970,20 @@ bfV bgg aeo aII -jEW -ehV -ugW -iao -ugW -gRI -fwC -ugW -plm -saN -saN -saN -gjU -srx +waR +xXU +smn +maO +smn +oWk +cfu +smn +tOy +uzJ +uzJ +uzJ +jOY +wiS aUG aEZ bfc @@ -52992,9 +52992,9 @@ bfc bfc aEZ ukV -wcV -svz -rnH +jZt +iol +vmO bbM bfc bfc @@ -53022,85 +53022,85 @@ ylo ylo ylo arV -eVo -xqd -nxz -nxz -fjc -eVo +lvA +oiW +tSN +tSN +umy +lvA aiL -nId -xXb -ryU -qUR -kUk -uhZ -uaK -vkw +xOL +vMG +bFa +hIS +pAy +hCe +sRu +fxa aiL -eDw -uKH -gUE -vTh -cwS -cwS -wfe -cwS -cwS -cwS -pNG -hQs -fhZ -lzq -xTI -xTI -xTI -xTI -xTI -xTI -xTI -fgE -xTI -xTI -xTI -fgm -dtG -dtG -vLx -vLx -vLx -oSo -dtG -vLx -vLx -vLx +cpR +tgU +dAG +prZ +kXc +kXc +wTa +kXc +kXc +kXc +mOi +ebo +lZP +aMe +hHa +hHa +hHa +hHa +hHa +hHa +hHa +fcB +hHa +hHa +hHa +iJJ +ltF +ltF +vse +vse +vse +uyh +ltF +vse +vse +vse sWP -dtG -dtG +ltF +ltF sWP sWP vCx -fBp +kXf vZJ -vLx -vLx +vse +vse vCx -fBp +kXf vCx sWP sWP -dtG -dtG +ltF +ltF sWP -vLx -uUr -vLx -vLx -dtG -dtG -vLx -uUr -vLx +vse +kEX +vse +vse +ltF +ltF +vse +kEX +vse sWP azX ylo @@ -53123,67 +53123,67 @@ ylo ylo ylo abF -nOF -wuB -tnU -sfy -vyo -sMa -vYT -wMU -mcn +mFO +jLb +sHY +nss +xcy +iyL +pSf +xMo +weG aax cvi -vhT -vhT +uyE +uyE pTp abf -pZE -wHy -rwP -rwP -rwP -oLD -oLD -eoo -eMn +mCX +vEa +xcH +xcH +xcH +sFX +sFX +whr +jNX adJ -bCP -cvv -cvv -oxw -oxw -emD -cvq -srz -srz -kpL -peb +tsF +uLm +uLm +kom +kom +lwa +dcF +jgr +jgr +ioR +gPn adJ -bCP -rms -ujL -edF -ujL -edF -ujL -wRh -oxw -uuF +tsF +lii +hDf +eVF +hDf +eVF +hDf +wuy +kom +dif adJ -jhT -gCe -eoo -oLD -guZ +uYd +mCP +whr +sFX +cIQ apR -xCX -bZJ +pcV +jZB apR -mDt -jIx -jIx -hQT +qEX +fbG +fbG +eIv aqw ylo ylo @@ -53198,16 +53198,16 @@ aUH aUH aIn aIn -wdW +uqM aIm -nPT -rRa -ivp -pcj +mQD +pZn +ydN +qCa aIm -vCm -hbz -wCX +sIf +qsj +vqQ aUH beO bgc @@ -53215,20 +53215,20 @@ bfR bgc beO aII -jEW -fkE -eUv +waR +xpn +yiv aII -czd -fkE -oEM -mOX +pli +xpn +bIm +dDZ bbM -cKI -cKI -pIr -svz -pGY +jCq +jCq +pIN +iol +dTH aUG bfc aUG @@ -53237,9 +53237,9 @@ bcg aUG bfc aUG -mWz -svz -bId +ltB +iol +bUq aUG bfu bfQ @@ -53267,26 +53267,26 @@ aiU ylo ylo ahA -eVo -kJP -eOi -oRb -mPr -eVo +lvA +wlm +lkA +qXE +fZg +lvA aiL aiL aiL aiQ aiQ aiL -vlF -uaK -xPo +goY +sRu +uQx aiQ -pZe -uKH -gUE -udU +rel +tgU +dAG +liu qIU qIU qIU @@ -53296,56 +53296,56 @@ qIU qIU qIU qIU -xKv -xTI -xTI -xTI -dit -xTI -sOc -xTI -fgE -xTI -xTI -xTI -fgm -dtG -ufe -vLx -vLx -vLx -dtG -dtG -vLx -hAX -vLx +vqq +hHa +hHa +hHa +hxg +hHa +ldF +hHa +fcB +hHa +hHa +hHa +iJJ +ltF +mvR +vse +vse +vse +ltF +ltF +vse +spV +vse sWP -vLx -vLx -vLx +vse +vse +vse mRC vCx -dtG +ltF vCx -vLx -vLx +vse +vse vCx -dtG +ltF vCx sWP -vLx -vLx -vLx +vse +vse +vse sWP -vLx -oqj -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +cMB +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -53368,67 +53368,67 @@ ylo ylo ylo abF -tnn -vyG -rSt -rSt -rSt -rSt -rSt -nMp -tnn +wkt +mBz +vdC +vdC +vdC +vdC +vdC +pMz +wkt aax eMI eMI pJP eMI abf -cMO -wHy -rwP -fiO +vGo +vEa +xcH +vPP aaz -nGI -oLD -eoo -eMn +emm +sFX +whr +jNX adJ -bVa -vbM -ujL -oxw -oxw -hLY -oxw -oxw -cvv -kbs -wwN +bXR +jxg +hDf +kom +kom +qTH +kom +kom +uLm +qhn +isQ adJ -bCP -rms -ujL -edF -kAO -edF -ujL -wRh -oxw -nDz +tsF +lii +hDf +eVF +jfx +eVF +hDf +wuy +kom +dCT adJ -wDh -gCe -eoo -oLD -cTY +daN +mCP +whr +sFX +rfn apR apR apR apR -fBq -kQp -jIx -sxA +sjo +hyB +fbG +gvM ahz aSa aSa @@ -53440,15 +53440,15 @@ bfc aER bfc aUH -hMp -jMT -lJk -pcj +vOr +rLH +vnx +qCa aIm aIm aIm aIm -pIL +iEG aIm aIm aIm @@ -53460,31 +53460,31 @@ bfg beO beO aIt -vgP -cGY -ckk +uNM +oQJ +lCI aIt aIt -fkE -jaS +xpn +lgy aIt aUG -ovN -bkQ -xZA -xfQ -rKC +lNX +ivC +xNA +ejc +wlH aUG aUG aUG -xiK -uqj +rhw +riO aUG aUG aUG -mWz -svz -bId +ltB +iol +bUq aUG aUG pwp @@ -53512,85 +53512,85 @@ aiU ylo ylo ahA -eVo -kJP -eCw -lMa -mPr -eVo +lvA +wlm +jAI +uow +fZg +lvA aiL -jvW -xFu -fpA -iTz -xex -jIk -tll -kDY -cMI -kKH -kKH -iLu -udU +dTw +nKL +jVL +sXT +feG +hOp +epQ +eVf +cwW +cFp +cFp +ewJ +liu qIU -mfi -kuj -kvH +rIi +jtb +lXZ qIU -mfi -sqR -kvH +rIi +vaL +lXZ qIU -fjf -sOc -xTI -pFs -fYk -fYk -cbT -lzq -fgE -gFz -lzq -gFz -fgm -dtG -dtG -vLx -uUr -vLx -vLx -vLx -uUr -vLx -vLx +pVi +ldF +hHa +mCt +fNj +fNj +uPk +aMe +fcB +oYA +aMe +oYA +iJJ +ltF +ltF +vse +kEX +vse +vse +vse +kEX +vse +vse sWP -vLx -vLx -uUr -vLx -vLx -vLx -vLx -uUr -vLx -vLx -vLx -vLx -uUr -vLx -vLx -uUr +vse +vse +kEX +vse +vse +vse +vse +kEX +vse +vse +vse +vse +kEX +vse +vse +kEX sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -53614,13 +53614,13 @@ ylo abF abF abF -tnn -tnn -tnn -tnn -tnn -tnn -tnn +wkt +wkt +wkt +wkt +wkt +wkt +wkt abF abF abF @@ -53628,52 +53628,52 @@ abf abf abf abf -cMO -wHy -twA -qrX +vGo +vEa +eml +oNt aax -cDX -oLD -eoo -eMn +hCo +sFX +whr +jNX adJ -nDL -rms -neV -oxw -rms -sUn -iNu -nsx -pOG -kbs -wwN +toW +lii +cfQ +kom +lii +xmN +esK +hAP +uhO +qhn +isQ adJ -rDx -rms -pVs -edF -ujL -edF -ocN -wRh -pVs -nDz +oAl +lii +gbp +eVF +hDf +eVF +svy +wuy +gbp +dCT adJ -ctj -gCe -eoo -oLD -nit +oDz +mCP +whr +sFX +iVu apR -cEi -yab -qRl -uxw -eRp -jIx -eWU +sTX +rkz +cdD +iIr +qHR +fbG +ycH aqw ylo ylo @@ -53685,19 +53685,19 @@ bfc oJn aUH aUH -gAo -wwd -tGD -xih +ekZ +tio +sjV +nmd aIm -mUy -xcP +rdO +rPo aIn -pcj -cdm -gUq +qCa +qNL +rbp aIm -mUy +rdO aUH aUH aeo @@ -53705,32 +53705,32 @@ aeo beO aIt aIt -jss -oEM -bII +pXM +bIm +chQ aII -uiH -mGO -fsG -wql +gtO +gST +oSV +lrj aUG -kHR -ylv -iRo -svz -fRz -ksM -dyt -mwN -dyt -wXM -tcE -sLs -ihl -nSn -svz -fRz -iPF +avk +qqU +poc +iol +tlv +nkq +ksy +oZk +ksy +tqX +rSg +luB +fgL +fSQ +iol +tlv +uXK aUG aUG aUG @@ -53757,38 +53757,38 @@ aiU aiU ylo ahA -eVo -kJP -ddw -pZA -mPr -eVo +lvA +wlm +cBp +xjk +fZg +lvA aiL -bxl -iUf -iUf -iUf -iUf -iUf -uaK -oDW +mWb +knP +knP +knP +knP +knP +sRu +nuX aiQ -fzR -uKH -gUE -pRN +wlr +tgU +dAG +kBQ qIU -xfr +wnA oLg -nVJ +lVq qIU -nVJ +lVq anL -nVJ +lVq qIU aoE -lPN -klw +oJK +qSb aoE aoE aoN @@ -53801,40 +53801,40 @@ baU azX sWP sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +vse sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -53859,13 +53859,13 @@ abF abF abF abF -qHq -qHq -qHq -qHq -qHq -qHq -qHq +iSU +iSU +iSU +iSU +iSU +iSU +iSU abF abF abF @@ -53874,51 +53874,51 @@ uUk uUk abf abf -nlB +tvu abf abf aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX adJ -taP -vOv -mLv -hxv -eLK -mBl +rgK +jyc +sSL +mNM +kKq +jrY adJ adJ adJ -jDJ +uFO adJ adJ -oAi -rms -ujL -urm -ujL -edF -ujL -wRh -jJe -msf +nww +lii +hDf +fMZ +hDf +eVF +hDf +wuy +ryA +fHK adJ -gvW -gCe -eoo -oLD -wsp +jgA +mCP +whr +sFX +hCs apR -jIx -jIx -jIx -jIx -eRp -jIx -lpy +fbG +fbG +fbG +fbG +qHR +fbG +ocO aqw ylo ylo @@ -53929,56 +53929,56 @@ bfe bfc oJn aUH -ciM -ntO -wwd -pcj -qvj +kis +wNI +tio +qCa +tgQ aIm -hxX -dxq -ohy -jNw -kfj -dxq -ohy -dxq -rJz +mqm +iuf +qNh +cic +myr +iuf +qNh +iuf +wjX aUH beO aeo beX aIt -wfp -kFu -oEM -iZi -cAy -uZw -mGO -fsG -jbh +xDN +lBq +bIm +dFu +umf +pha +gST +oSV +oAj aUI aUI aUI -cls -dsi -nQD -gkh -rfF -saN -saN -saN -saN -saN -gYM -saN -drY -kDB -uEG +pJB +pLP +jyu +xda +rpU +uzJ +uzJ +uzJ +uzJ +uzJ +iyR +uzJ +vSU +eat +gSl aUG -ssp -ssp +kWX +kWX aUG aUG bfc @@ -54002,43 +54002,43 @@ bfc aiU ylo ahA -eVo -kJP -eCw -tcX -mPr -eVo +lvA +wlm +jAI +pNN +fZg +lvA aiL -pmp -iUf -qsx -kDY -kDY -kDY -efH -mys +xqA +knP +pEU +eVf +eVf +eVf +uOB +wpo aiQ -eDw -uKH -gUE -udU +cpR +tgU +dAG +liu qIU -cKL -wbY +goc +xcQ anR qIU -cKL -wbY +goc +xcQ aos qIU -gVK -nqa -nqa +twr +cSt +cSt aoN -fZD -isg -isg -pBA +qjZ +mhO +mhO +xDv auG ylo ylo @@ -54046,19 +54046,19 @@ ylo azX azX sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse +vse sWP -vLx -vLx -vLx -vLx +vse +vse +vse +vse vCx vCx vCx @@ -54067,19 +54067,19 @@ vCx vCx vCx vCx -vLx -vLx -vLx -vLx +vse +vse +vse +vse sWP -vLx -vLx -uUr -vLx -vLx -vLx -vLx -vLx +vse +vse +kEX +vse +vse +vse +vse +vse sWP azX azX @@ -54104,29 +54104,29 @@ abF abF abF abF -uMa -xOO -swC -xOO -swC -xOO -mIZ +pzw +wQI +vUa +wQI +vUa +wQI +ijf abF abF abF -prz -qay -qay -ibK -erT -wHy -ykk -saY +daJ +eCZ +eCZ +tbx +hIJ +vEa +xiF +umd aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX adJ adJ adJ @@ -54136,34 +54136,34 @@ adJ adJ adJ adJ -nJm -kbs -kBY +kVO +qhn +ozr vda -laS -rms -ocN -qxo -ujL -edF -fBw -wRh -kAO -xol +vOQ +lii +svy +ryZ +hDf +eVF +sSN +wuy +jfx +fRp adJ -inf -gCe -sTj -tyM -tyM -tBx -pTH -pTH -pTH -pTH -iCH -iti -kQN +qdh +mCP +kgq +cco +cco +kPm +ooc +ooc +ooc +ooc +sdl +jSD +oBG ahz ylo ylo @@ -54174,57 +54174,57 @@ bfd aEP aEX bbB -fxD -qhw -dvW -bZL -rai +ijK +mYt +wiN +kWx +wHy aIm -vHg +tdK aIm aIm -jsH -pcj -opk +tfE +qCa +vvt aIn -xcP -jiL +rPo +jMN aUH beX aIk aeo aIt -cyh -wmZ -hlj -vMJ +vPy +maF +lHz +wEp aII -uZw -mGO -fsG -tsw +pha +gST +oSV +jHf aIt -rxq +uht aUI aUG aJa aJa aJa -nQq -kDB -eCx -qKX -kDB -kDB -pGm -kDB -kDB -kDB -pNc +vxA +eat +sPD +ccd +eat +eat +hjj +eat +eat +eat +qia aIY -ssp -gPg -ssp +kWX +eiu +kWX aUG bfc oJn @@ -54247,43 +54247,43 @@ bfc aiU ylo arV -eVo -enY -nYk -nYk -dTh -eVo +lvA +rgF +oRL +oRL +djI +lvA aiL -lyX -dpy -bOO -uuX -dpy -iUf -iUf -xPo +jOC +fTG +ntM +uMC +fTG +knP +knP +uQx aiQ -pZe -uKH -gUE -udU +rel +tgU +dAG +liu qIU avT -mua +tfr avT qIU avT -iVh +kty avT qIU -pty -nqa -nqa +kRe +cSt +cSt aoN -fnq -nqa -eTX -iYf +nrB +cSt +uMp +dwK auG ylo ylo @@ -54291,19 +54291,19 @@ ylo ylo azX sWP -vLx -vLx -vLx -vLx -vLx -dtG -dtG -vLx -dtG -vLx -uUr -vLx -vLx +vse +vse +vse +vse +vse +ltF +ltF +vse +ltF +vse +kEX +vse +vse vCx bcl bcl @@ -54312,19 +54312,19 @@ bcl bcl bcl vCx -vLx -vLx -vLx -vLx -dtG -vLx -vLx -dtG -dtG -vLx -vLx -vLx -uUr +vse +vse +vse +vse +ltF +vse +vse +ltF +ltF +vse +vse +vse +kEX sWP azX ylo @@ -54348,65 +54348,65 @@ ylo abF tJA aax -vck -uMa -xOO -swC -xOO -swC -xOO -mIZ -vck +qJX +pzw +wQI +vUa +wQI +vUa +wQI +ijf +qJX aax -sIZ -erT -rwP -rwP -rwP -rwP -wHy -rwP -szE +ssl +hIJ +xcH +xcH +xcH +xcH +vEa +xcH +wgp aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX adJ -pGA -jYP -vQu -hOs -tKU -tKU -iQw +wcZ +nVv +wEr +pmq +gSw +gSw +gfZ adJ -nDL -qTk -oxw -xkK -cvv -rms -ujL -qxo -pVs -edF -ujL -wRh -oxw -nDz +toW +kCj +kom +frI +uLm +lii +hDf +ryZ +gbp +eVF +hDf +wuy +kom +dCT adJ -wDh -gCe -eoo -xJg -guZ +daN +mCP +whr +dFj +cIQ apR -jIx -jIx -jIx -jIx -cNA +fbG +fbG +fbG +fbG +quD apR apR ahz @@ -54419,18 +54419,18 @@ nZR wiF xNa bbB -qtQ -ntO -eXh -wwd -xLi +tLV +wNI +uhA +tio +eTs aIm aIm aIm -kyR -ntO -rOZ -thT +xbl +wNI +ljf +fFR aIm aIm aIm @@ -54444,32 +54444,32 @@ aII aII aII aIt -eSp -mGO -fsG -fsG -kBx -hbY -gZf +xTv +gST +oSV +oSV +qXU +idn +iOj aUG -vqK -qOH +izP +cZB aJa -xTA -kDB -uTN -miR -kDB -kDB -kDB -kDB -kDB -kDB -fRz +jcC +eat +eqC +emL +eat +eat +eat +eat +eat +eat +tlv aIY -ssp -fjB -ygH +kWX +kKD +uIz aUG bfe oJn @@ -54492,43 +54492,43 @@ bfb aiU aiU arV -swI +xyk lZm lZm lZm lZm -pxd +kdD aiL -iUH -dpy -bOO -tyx -dpy -iUf -iUf -iUf -oEk -uKH -uKH -gUE -udU +hYL +fTG +ntM +wTm +fTG +knP +knP +knP +fKs +tgU +tgU +dAG +liu atF -gVy -mds -oCG -twO -ujH -mds -oCG -twO -ihG -nqa -nqa +fJg +hlR +hrS +xWD +uCm +hlR +hrS +xWD +oMM +cSt +cSt aoN -ujB -nqa -mct -kiQ +sNg +cSt +cyx +rJN auG ylo ylo @@ -54536,40 +54536,40 @@ ylo ylo azX sWP -vLx -vLx -vLx -vLx -vLx -dtG -dtG -uUr -dtG -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +ltF +ltF +kEX +ltF +vse +vse +vse +vse vCx bck -sXH -qJz -sYv -pZL +qPt +lJa +xMZ +ydv bck vCx -vLx -vLx -uUr -vLx -dtG -vLx -vLx -dtG -oSo -uUr -vLx -vLx -vLx +vse +vse +kEX +vse +ltF +vse +vse +ltF +uyh +kEX +vse +vse +vse sWP azX ylo @@ -54593,128 +54593,128 @@ ylo abF uTU aax -xsl -ree -xOO -swC -xOO -swC -xOO -mIZ -fWr +ovG +wpw +wQI +vUa +wQI +vUa +wQI +ijf +eVU aax -cMM -rwP -prz -qay -qay -qay -fuJ -rwP -qdU +fZs +xcH +daJ +eCZ +eCZ +eCZ +wKj +xcH +qUZ aax -kCW -oLD -eoo -eMn +iOV +sFX +whr +jNX vda -jpM -ujL -rms -ujL -oxw -pVs -msf +gAS +hDf +lii +hDf +kom +gbp +fHK vda -nDL -fYB -srz -srz -srz -jFa -qfX -gUm -ujL -edF -ujL -qHa -oxw -uuF +toW +mnz +jgr +jgr +jgr +jqI +niX +eBV +hDf +eVF +hDf +kOl +kom +dif adJ -uYr -gCe -eoo -oLD -nit +pRN +mCP +whr +sFX +iVu apR -vNc -lSw -oUT -hac -gtm +oYz +dEf +tpu +dBP +qXa apT -rfP -lsU -lsU -lBM -oMw +nYq +wjB +wjB +ffZ +fyz awY bfg oJn bfc bfc aUH -tKb -ntO -pjj -wwd -mwi +xZe +wNI +hjM +tio +htB aIm -xcP +rPo aIm aIm -cSm -pcj -eHM +bPA +qCa +rWX aIn -wAc -xcP +cdM +rPo aUH aeo iQh aIk aIt -iRf -sVg -uOp -uOp -mYr -uom -vUR -rxW -oMM +xUK +tKs +pij +pij +iDt +qxf +duq +dLB +uLp aIt aIt aIt aUG -wkS -ssp -nKx -kDB -kDB -kDB -kDB -kDB -cVI -wwc -bVp -kDB -kDB -fMQ -lhp -puv -xGg -ssp +cJL +kWX +nib +eat +eat +eat +eat +eat +wxc +kma +wPR +eat +eat +gYC +hUo +oEx +hnI +kWX aUG bfC aEX @@ -54737,43 +54737,43 @@ bfU bfT awY ewW -swI -eVo -emn -emn -eVo -pxd +xyk +lvA +fNA +fNA +lvA +kdD aiL -nyZ -mnK -hmn -hmn -hmn -hmn -mnK -xxW +hWo +lTL +rUD +rUD +rUD +rUD +lTL +fds aiQ -fzR -fMV -hnm -hsH +wlr +uQu +fkM +cKg atF -lSd -mds -mds -oHJ -mds -qLk -qLk -mds -nqa -jbs -nqa +lpa +hlR +hlR +ocj +hlR +fYV +fYV +hlR +cSt +hmX +cSt aoN -ujB -jbs -mct -kiQ +sNg +hmX +cyx +rJN auG aSa aSa @@ -54782,38 +54782,38 @@ aSa azX sWP sWP -uUr -vLx -vLx -vLx -vLx -vLx -vLx +kEX +vse +vse +vse +vse +vse +vse sWP -vLx -vLx -vLx +vse +vse +vse vCx vCx bck -hpA -fpZ -fpZ -lzK +wyP +uHX +uHX +pDD bck vCx vCx -vLx -vLx -vLx +vse +vse +vse sWP -vLx -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -54836,61 +54836,61 @@ ylo ylo ylo abF -jlh +tff aax -xOO -oSh -xOO -swC -xOO -swC -xOO -mIZ -xOO -gIJ -xvO -rwP -jgq -udr -ksS -yhO -kGz -rwP -xuD +wQI +ePT +wQI +vUa +wQI +vUa +wQI +ijf +wQI +cTQ +ozX +xcH +toO +jSi +yjX +tbo +boa +xcH +wZf aax -vMa -oLD -eoo -eMn +hkh +sFX +whr +jNX vda -jpM -tJc -wOK -ujL -oxw -xYv -nDz +gAS +rIL +iAS +hDf +kom +xLG +dCT vda -nDL -qLv -qVU +toW +irv +tVC vda -lBG -fUM -nJr -lDU -nJr -pae -nJr -pae -qVU -spt +kNM +iWf +xuh +pjp +xuh +qvE +xuh +qvE +tVC +nLj adJ -ctj -gCe -eoo -oLD -nit +oDz +mCP +whr +sFX +iVu apR apR apR @@ -54898,11 +54898,11 @@ apR apR apR apT -daU -hGT -hGT -fFP -hmg +ePP +mjg +mjg +uzH +lxe awY bfc oJn @@ -54910,55 +54910,55 @@ bfc bfe aUH aUH -mtd -wwd -wwd -nQk +qJE +tio +tio +mpu aIm -hxX -dxq -ohy -dxq -jNw -dxq -ohy -dxq -evP +mqm +iuf +qNh +iuf +cic +iuf +qNh +iuf +gvq aUH aeo iQh beO aIt -cSB -uZw -oxs -kBK -oxs -fsG -mGO -fsG -fsG -kBx -sFn -gZf +xho +pha +cjV +qmL +cjV +oSV +gST +oSV +oSV +qXU +bRD +iOj aUG -jfn -vCh +lEV +ggr aJa -pWP -dny -pIr -kDB -pCf -kSh +eOb +vbj +pIN +eat +udO +jmc aJa -kbA -hgn -kDB -wNC +gBc +qtX +eat +elw aUG -ssp -ssp +kWX +kWX aUG aUG bfd @@ -54998,27 +54998,27 @@ aiL aiL aiL aiL -eDw -uKH -gUE -udU +cpR +tgU +dAG +liu atF -yfD -mds -mds -mds -qfT -mds -mds -qLk -nqa -tpP -nqa +xTC +hlR +hlR +hlR +ucl +hlR +hlR +fYV +cSt +kMl +cSt aoN -ujB -nqa -mct -clB +sNg +cSt +cyx +bXJ auG aSa aSa @@ -55027,38 +55027,38 @@ aSa azX azX sWP -vLx -vLx -vLx -uUr -vLx -vLx -vLx +vse +vse +vse +kEX +vse +vse +vse sWP -vLx -vLx -vLx +vse +vse +vse vCx aLh aLh -kpI -hbW -hbW -uSW +ffS +tWp +tWp +jJR aLh aLh vCx -vLx -vLx -vLx +vse +vse +vse sWP -uUr -vLx -vLx -vLx -vLx -vLx -vLx +kEX +vse +vse +vse +vse +vse +vse sWP azX azX @@ -55081,73 +55081,73 @@ ylo ylo ylo abF -vhT -opc -xOO -oSh -xOO -swC -uTL -swC -xOO -mIZ -xOO +uyE +lRU +wQI +ePT +wQI +vUa +cOG +vUa +wQI +ijf +wQI aax -lqD -rwP -jgq -sQw +kMG +xcH +toO +pBs abf -iju -gZS -rwP -eAJ +hYD +wus +xcH +xdl aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX vda -jpM -ujL -uFx -pVs -oxw -qVU -pjh +gAS +hDf +ibY +gbp +kom +tVC +kLr adJ -bCP -kbs -uuF +tsF +qhn +dif adJ adJ -hEB -xiO -lBG -vBr -lBG -xiO -lBG -spt +nOZ +meM +kNM +eRq +kNM +meM +kNM +nLj adJ adJ -gvW -gCe -eoo -oLD -wsp -uFh -uFh -uFh -oPx -sUX -jWi +jgA +mCP +whr +sFX +hCs +khE +khE +khE +shP +gPL +pty apT -pIY -dIg -hGT -cZy -tSx +eaF +gIV +mjg +jte +lCO awY bfc oJn @@ -55155,19 +55155,19 @@ bfc bfD bfL aUH -vfz -fcu -shj -rSS +jYF +ccu +uDE +gTf aIm -jiL -ecO +jMN +rFi aIn -cIJ -qer -xAD +nOw +jjT +ohy aIm -ecO +rFi aUH aUH beX @@ -55175,16 +55175,16 @@ jFP beX aIt aIt -ryZ -vuc -vuc -myM -cWY -mGO -fsG -avC +ilK +mXF +mXF +bSs +mFo +gST +oSV +hSl aIt -tBM +qyc aIt aUG aUG @@ -55192,15 +55192,15 @@ aUG aUG aUG aUG -iXj -vGy -nJk -eZm +cbE +qZy +flU +lzq aJa -kFX -nJk -vGy -lkY +jZL +flU +qZy +rZx aUG aUG aUG @@ -55227,43 +55227,43 @@ bfc bgc awY hOb -vjo -csd -gFx -gFx -cNQ +fQY +ltZ +gIS +gIS +rCU aiO -qkM -xBB -xBB -ibb -dNJ -wNY -hgy -hgy -hul +tAb +hft +hft +cVe +siQ +xuJ +jGD +jGD +vWF xMJ -eDw -uKH -gUE -udU +cpR +tgU +dAG +liu atF -fjH -mds -nqV -fFb -vPV -mds -nqV -wBr -cjP -nqa -nqa +wxN +hlR +rqQ +fcQ +xgR +hlR +rqQ +nPs +hNQ +cSt +cSt aoN -ujB -nqa -mct -etU +sNg +cSt +cyx +gnW auG ylo ylo @@ -55273,36 +55273,36 @@ ylo azX sWP sWP -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse sWP -vLx -uUr -vLx +vse +kEX +vse vCx bck -sdq -eqv -oWb -hkm -eqo -nea +eaY +dhK +vMb +toA +cBl +mnS bck vCx -vLx -vLx -vLx +vse +vse +vse sWP -vLx -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -55326,44 +55326,44 @@ ylo ylo ylo abF -lQD +rzo aax -xOO -uMa -xOO -swC -xOO -swC -xOO -mIZ -xOO +wQI +pzw +wQI +vUa +wQI +vUa +wQI +ijf +wQI aaz -qpm -rwP -jgq -hkg -vfB -nHc -uyJ -rwP -xuD +qgO +xcH +toO +wcu +mNj +qUE +mts +xcH +wZf aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX vda -jpM -oDc -uFx -ujL -oxw -qZZ +gAS +mSU +ibY +hDf +kom +cuG adJ adJ -nDL -kbs -nDz +toW +qhn +dCT adJ adJ adJ @@ -55377,21 +55377,21 @@ adJ adJ adJ adJ -gCe -sTj -tyM -tyM -tyM -tyM -tyM -tyM -pbY -tyM -oeG -osS -osS -oER -vTM +mCP +kgq +cco +cco +cco +cco +cco +cco +gbY +cco +pDQ +uDD +uDD +gbb +tXx arz awY bfQ @@ -55425,8 +55425,8 @@ aII aIt aIt aII -mGO -rKz +gST +slv aII aIt aIt @@ -55472,42 +55472,42 @@ aIk aIk awY hOb -cXQ -nVh -tUE -oZz -jZq +uBo +jXB +fDU +uWV +vIq aiO -dAg -tBp -kKH -kKH -gjr -kKH -kKH -kKW -qFY +swy +xwn +cFp +cFp +cJq +cFp +cFp +nSB +hgj xMJ -eDw -uKH -gUE -udU +cpR +tgU +dAG +liu qIU avT -qEP +tey avT qIU avT -rDc +pWp avT qIU auG -mYK +xTj auG auG aoE -nqa -xhe +cSt +wFd aoE auG auG @@ -55519,34 +55519,34 @@ azX azX sWP sWP -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse sWP -vLx -vLx -vLx +vse +vse +vse vCx bck -rEx -kyk -fTG -cpL -kyk -cuM +uFc +rkM +jad +ykH +rkM +foz bck vCx -vLx -vLx -uUr +vse +vse +kEX sWP -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse sWP sWP azX @@ -55573,70 +55573,70 @@ ylo abF ikQ aax -xOO -uMa -xOO -swC -xOO -swC -xOO -gXe -xOO +wQI +pzw +wQI +vUa +wQI +vUa +wQI +hQW +wQI aaz -qpm -rwP -ofC -lEA -lEA -lEA -sjk -rwP -jLK +qgO +xcH +pIg +wcM +wcM +wcM +oIk +xcH +cjq aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX adJ -nDL -oxw -kbs -oxw -oxw -kBY +toW +kom +qhn +kom +kom +ozr adJ -fej -laS -kbs -kBY -tKU -fej +hjB +vOQ +qhn +ozr +gSw +hjB adJ -tKU -hxZ -tKU -tKU -iBl -jkV -qCg -tKU -iQw +gSw +fMj +gSw +gSw +tYu +edX +nlM +gSw +gfZ adJ -gCe -eoo -oLD -opr -hUW -ewI -opr -hUW -eoo -xyJ +mCP +whr +sFX +ink +vjp +ivE +ink +vjp +whr +crM apT -ktq -hGT -hGT -dDW +phE +mjg +mjg +ocI arz awY bfe @@ -55717,58 +55717,58 @@ aIk aIk awY hOb -tbT -eEY -wxf -fZd -qEJ +lBR +tht +xty +moa +oqE aiO -dAg -lIk -vTh -nKB -jPy -vTh -nKB -gUE -wNY -hgy -pZe -uKH -lIk -udU +swy +jkO +prZ +rfT +sFc +prZ +rfT +dAG +xuJ +jGD +rel +tgU +jkO +liu qIU -mfi -qFz +rIi +brp anS qIU -mfi -qFz +rIi +brp aot qIU -wKp -nqa -rCY +jci +cSt +vYy auG -kjF -nqa -mct -rCY -lLp +vQo +cSt +cyx +vYy +dEA byM -xvi -tsN -kRK -tiR +dUo +uiX +vNF +cXV auG sWP sWP sWP -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse sWP sWP sWP @@ -55777,8 +55777,8 @@ sWP aLh aLh aLh -wqO -ref +egO +oAm aLh aLh aLh @@ -55787,11 +55787,11 @@ sWP sWP sWP sWP -vLx -vLx -vLx -vLx -vLx +vse +vse +vse +vse +vse sWP azX azX @@ -55818,70 +55818,70 @@ ylo abF pTp aax -nSK -uMa -xOO -swC -xOO -swC -xOO -mIZ -fWr +tqj +pzw +wQI +vUa +wQI +vUa +wQI +ijf +eVU aax -jgq -rwP -rwP -rwP -rwP -rwP -rwP -svC -dGM +toO +xcH +xcH +xcH +xcH +xcH +xcH +idz +woK aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX adJ -taP -fUM -iqj -srz -srz -srz -bzh -srz -srz -wGc -srz -srz -vhr -bzh -srz -cvq -cQD -qfX -uWT -ujL -vbM -oxw -nDz +rgK +iWf +dhA +jgr +jgr +jgr +lmK +jgr +jgr +diT +jgr +jgr +eXk +lmK +jgr +dcF +qXn +niX +uhH +hDf +jxg +kom +dCT adJ -gCe -eoo -oLD -eMn +mCP +whr +sFX +jNX acM acM acM -gCe -eoo -qXB +mCP +whr +rMh apT -daU -hGT -cRk -kjR +ePP +mjg +fQe +oLu arz bfF bfG @@ -55954,7 +55954,7 @@ aIk aIk aIk aIk -wJV +dFb aIk aIk aIk @@ -55962,80 +55962,80 @@ aIk fsx beO hOb -dcD -tUE -bch -tUE -oiV +ccY +fDU +mSS +fDU +sOD aiO -dAg -gUE -udU +swy +dAG +liu aqr aqr aqr -iae -hnm -kKH -kKH -kKH -kKH -iLu -pRN +nNH +fkM +cFp +cFp +cFp +cFp +ewJ +kBQ qIU -nVJ +lVq anP -pFb +iSv qIU -nVJ +lVq anL -nVJ +lVq qIU -uNx -jbs -nqa -wPL -nqa -nqa -mtL -tma -szL +cEp +hmX +cSt +dHg +cSt +cSt +fTW +dmm +pCy aoc -eqV -yeZ -gPm -lZh +wJh +vtd +msf +dID auG -uUr -vLx -dtG -vLx -vLx -vLx -vLx -vLx +kEX +vse +ltF +vse +vse +vse +vse +vse sWP aLh aLh aLh aLh aLh -gAI -gip -gDg -aWE -gip -xCm +jgH +suB +xxd +oRE +suB +qrT aLh aLh aLh aLh xQF sWP -vLx -vLx -uUr -vLx +vse +vse +kEX +vse sWP sWP azX @@ -56061,72 +56061,72 @@ ylo ylo ylo abF -vhT +uyE aax -wgW -uMa -xOO -swC -xOO -swC -xOO -tqC -xOO +lHg +pzw +wQI +vUa +wQI +vUa +wQI +rhs +wQI aax -pxX -nLR -nLR -qCZ -xjR -qCZ -mNs -vEk -tFj +kiJ +gpA +gpA +dEs +owj +dEs +oCE +ngw +pSw aax -gaa -oLD -eoo -eMn +uSS +sFX +whr +jNX adJ adJ -nmX -iNu -ilz -wUZ -eBi +uME +esK +jJw +wax +tom adJ -hxv -ifs -lBG -fUM -oxw -qbx +mNM +pgI +kNM +iWf +kom +hXB adJ adJ -fUM -rms -ujL -cjn -tYm -oxw -pVs -msf +iWf +lii +hDf +lWx +bZL +kom +gbp +fHK adJ -gCe -eoo -oLD -eMn +mCP +whr +sFX +jNX acM ylo acM -gCe -eoo -qXB +mCP +whr +rMh apT -jAu -qoW -rWS -tSx +nsD +cEs +kHs +lCO arz bfd beX @@ -56165,7 +56165,7 @@ aIk aIk bcW beO -qbL +bij aIk aIk aIk @@ -56207,79 +56207,79 @@ beX beO beO hOb -cgL -fhr -dkd -hFK -dnv +vJb +vjC +xic +cUW +nvQ aiO -dAg -gUE -udU +swy +dAG +liu aqr ylo aqr -iae -gUE -uKH -uKH -uKH -uKH -gUE -udU +nNH +dAG +tgU +tgU +tgU +tgU +dAG +liu qIU -mhi -rnr -kKP +xdx +qLp +nBb qIU -cKL -rnr -kKP +goc +qLp +nBb qIU -cJv -nqa -oGQ +vfm +cSt +pee auG -qjT -nqa -fyu -mtL -fyH -xlz -fyH -tma -sCy -mwD +ptk +cSt +eyF +fTW +hIu +uWG +hIu +dmm +nIc +ciY auG -vLx -vLx -dtG -vLx -vLx -vLx -uUr -vLx +vse +vse +ltF +vse +vse +vse +kEX +vse sWP aLh -cZk -qtd -eOJ +moV +hpf +uen aLh -rBh -rXw -hbW -ehz -rXw -fwX +tRk +drA +tWp +wOu +drA +rAI aLh -tLw -tkG -xCm +qeO +oDk +qrT abx -vLx -vLx -vLx -vLx +vse +vse +vse +vse sWP sWP azX @@ -56306,16 +56306,16 @@ ylo ylo ylo abF -jmJ +lCJ aax aax -eHH -eHH -eHH -eHH -eHH -eHH -eHH +kBq +kBq +kBq +kBq +kBq +kBq +kBq aRt aax aax @@ -56328,11 +56328,11 @@ aax aax aax aax -cDX -oLD -eoo -eMn -gvW +hCo +sFX +whr +jNX +jgA adJ adJ adJ @@ -56343,30 +56343,30 @@ adJ adJ adJ adJ -uOd -oxw -jOZ -iQw +lCA +kom +mRK +gfZ adJ -pto -rms -tJc -rms -ujL -oxw -xYv -nDz +hYX +lii +rIL +lii +hDf +kom +xLG +dCT adJ -gCe -eoo -oLD -eMn +mCP +whr +sFX +jNX aek ylo aek -gCe -eoo -jWi +mCP +whr +pty apT awb plI @@ -56456,22 +56456,22 @@ bCX bCX aiO bCX -ffX +nxx aiO -dAg -gUE -udU +swy +dAG +liu uBj ylo uBj -iae -lIk -vTh -wfe -nKB -uKH -gUE -nRs +nNH +jkO +prZ +wTa +rfT +tgU +dAG +sfS qIU qIU qIU @@ -56481,49 +56481,49 @@ qIU qIU qIU qIU -wKp -nqa -xHa +jci +cSt +hwb auG -uic -nqa -nqa -mct -nqa -nqa -nqa -iIZ -rCY +kbb +cSt +cSt +cyx +cSt +cSt +cSt +lxh +vYy aoE auG -dtG -dtG +ltF +ltF sWP sWP sWP sWP -vLx -vLx +vse +vse sWP aLh -dpA -vhy -hlg +oUq +lau +mAv bba -muF -oWb -saH -sqa -xDD -fwX +wyT +vMb +dRP +orG +eez +rAI aLh -rcO -hbW -fwX +drz +tWp +rAI abx -vLx -vLx -vLx +vse +vse +vse sWP sWP azX @@ -56551,73 +56551,73 @@ ylo ylo acM acM -sUX -wSf +gPL +fbi qWr -wFK -oLD -oLD -oLD -oLD -oLD -oLD -ltu -xjO -gBy -gBy -gBy -gBy -gBy -xjO -gBy -gBy -gBy -gBy -ufX -oLD -eoo -laQ -qRd -hPP -qRd -qRd -qRd -qRd -qRd -qRd -qRd -gnH +lXM +sFX +sFX +sFX +sFX +sFX +sFX +xZd +jbM +onT +onT +onT +onT +onT +jbM +onT +onT +onT +onT +pbu +sFX +whr +tUC +xCG +qVV +xCG +xCG +xCG +xCG +xCG +xCG +xCG +pzy adJ -hgI -lBG -vuz -uuF +rTA +kNM +cJp +dif adJ -nmX -uDF -eBi -uDF -wUZ -lBG -lBG -spt +uME +ezr +tom +ezr +wax +kNM +kNM +nLj adJ -gCe -eoo -oLD -eMn +mCP +whr +sFX +jNX aek ylo aek -gCe -eoo -sUX -wDe -wzo -xVV -qqb -xAL -xvL +mCP +whr +gPL +laB +eTq +pla +dKF +vhl +sQC aIk aIk iQh @@ -56696,53 +56696,53 @@ aIk aIk aIk aIk -cgO -lTo -tUE -qVt -vcR -gUE -ugT -ibb -gUE -udU +cwR +ebI +fDU +esX +kuE +dAG +fjj +cVe +dAG +liu uBj ylo uBj -iae -gUE -udU +nNH +dAG +liu xMJ -iae -uKH -gUE -udU +nNH +tgU +dAG +liu qIU -mfi -qFz -kvH +rIi +brp +lXZ avT -yeZ -riL -xSu +vtd +mud +uHI auG auG -pTW +qer auG auG -wdF -kPf -jbs -mct -bwv +gMf +nLG +hmX +cyx +svS aoc -emX -mct -nqa -jKc -nqa -nqa -nqa +lQv +cyx +cSt +qgC +cSt +cSt +cSt aoE pDR pDR @@ -56751,20 +56751,20 @@ sWP sWP sWP aLh -svT -hbW -hgF -lQc -muF -hbW -hbW -mIO -hBX -bkG +xjN +tWp +veD +vTL +wyT +tWp +tWp +rwm +sZv +xFL aLh -kYL -dDo -fwX +rsQ +cYK +rAI xQF sWP sWP @@ -56795,48 +56795,48 @@ ylo ylo ylo acM -icN -sUX -kAd +tAs +gPL +vLd qWr -oLD -oLD -oLD -oLD -oLD -oLD -oLD -dVy -kdF -oLD -onD -tyM -tyM -tyM -tyM -tyM -tyM -tyM -tyM -tyM -pbY -ouN -tyM -tyM -tyM -tyM -tyM -tyM -tyM -tyM -tyM -tNr -eMn +sFX +sFX +sFX +sFX +sFX +sFX +sFX +eru +lqN +sFX +deQ +cco +cco +cco +cco +cco +cco +cco +cco +cco +gbY +oib +cco +cco +cco +cco +cco +cco +cco +cco +cco +syw +jNX adJ adJ adJ -qAY -nDz +mcD +dCT adJ adJ vda @@ -56847,22 +56847,22 @@ vda adJ adJ adJ -gCe -sTj -tyM -ygg +mCP +kgq +cco +vKA acM ylo acM -gCe -sTj -tyM -tyM -cFh -nyi -reF -reF -cVD +mCP +kgq +cco +cco +cZX +pbj +hbm +hbm +slh aIk aIk iQh @@ -56941,54 +56941,54 @@ kIW kIW kIW kIW -gKs -fcL -eMv -tPl -uKH -gUE -uKH -uKH -gUE -udU +lpc +ceQ +jpZ +kxq +tgU +dAG +tgU +tgU +dAG +liu aqr ylo aqr -iae -gUE -udU +nNH +dAG +liu xMJ -iae -fMV -gUE -udU +nNH +uQu +dAG +liu qIU -nVJ +lVq olY -nVJ -eTE -yeZ -lUk -isg -isg -ihG -nqa -tXQ +lVq +ngm +vtd +qRm +mhO +mhO +oMM +cSt +pJp aoN -eyY -nqa -nqa -mct -sAY +oTH +cSt +cSt +cyx +ipK aoN -hzP -mnL -nqa -nqa -nqa -jbs -qrs -lus +gus +hsc +cSt +cSt +cSt +hmX +pjC +njx aoE pDR pDR @@ -56996,20 +56996,20 @@ azX sWP sWP aLh -svT -pqU -bGk +xjN +vkU +oSw aLh -sKK -rXw -hbW -mIO -hmk -hLw +oUd +drA +tWp +rwm +wUQ +fjp aLh -rcO -pqU -pci +drz +vkU +qsQ aLh sWP sWP @@ -57040,74 +57040,74 @@ ylo ylo ylo acM -xVF -ueA -jTU -whm -tyM -tyM -tyM -tyM -tyM -tyM -tyM -tyM -wvn -wvn -rHt -oLD -oLD -oLD -oLD -oLD -oLD -oLD -oLD -oLD -eoo -oLD -oLD -oLD -oLD -oLD -oLD -oLD -oLD -oLD -oLD -eoo -eMn -hhC +kTM +wvY +utZ +lSG +cco +cco +cco +cco +cco +cco +cco +cco +fvx +fvx +rig +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +whr +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +whr +jNX +coY vda -gKZ -fLI -kBY -tKU -tKU -tKU -tKU -tKU -tKU -tKU -jZx +lqa +uNe +ozr +gSw +gSw +gSw +gSw +gSw +gSw +gSw +vSS vda -hhC -gCe -eoo -oLD -eMn +coY +mCP +whr +sFX +jNX acM ylo acM -sPl -eoo -oLD -oLD -cVD -reF -reF -nAX -cFh +xAc +whr +sFX +sFX +slh +hbm +hbm +hJh +cZX kIW kIW egd @@ -57186,54 +57186,54 @@ aIk aIk aIk aIk -ryw -eMv -mff -epd -kKH -vtN -tmP -kKH -iLu -udU +sRT +jpZ +lss +oxM +cFp +cfT +irc +cFp +ewJ +liu aqr ylo aqr -iae -gUE -udU +nNH +dAG +liu xMJ -ngS -uKH -gUE -udU +gxm +tgU +dAG +liu qIU -cKL -rnr -kKP +goc +qLp +nBb avT -yeZ -eOV -gnq -jbs -nqa -qrs -fFe +vtd +tRS +jDK +hmX +cSt +pjC +cnh aoN -eOV -nqa -nqa -mct -ezq +tRS +cSt +cSt +cyx +mcR aoN -uWl -fyu -feM +cAp +eyF +rYL aoE -mit -nqa -nqa -mRr +plb +cSt +cSt +vzz aoE aoE aoE @@ -57241,20 +57241,20 @@ azX azX sWP aLh -mCY -mIO -uDk -joM -cmh -hbW -dDo -kWI -saH -gjI -nfV -gSv -tEN -lmS +eYN +rwm +tJL +luv +xst +tWp +cYK +rqB +dRP +otT +ryH +klv +oJv +jmh aLh sWP azX @@ -57285,74 +57285,74 @@ ylo ylo ylo acM -dht -sim -xOB +rOt +aBd +jGN qWr -osC -osC -osC -sef -osC -osC -osC -osC -hUW -kdF -eoo -opr -osC -osC -osC -osC -vtW -hUW -wDe -opr -tUI -hUW -wDe -opr -vtW -osC -osC -osC -osC -hUW -oLD -eoo -eMn -wDe +ciG +ciG +ciG +gCP +ciG +ciG +ciG +ciG +vjp +lqN +whr +ink +ciG +ciG +ciG +ciG +oTT +vjp +laB +ink +rIs +vjp +laB +ink +oTT +ciG +ciG +ciG +ciG +vjp +sFX +whr +jNX +laB vda -jPZ -kbs -oxw -pQp -ocg -oxw -oxw -pQp -ocg -oxw -peb +hNG +qhn +kom +qMh +wcJ +kom +kom +qMh +wcJ +kom +gPn vda -wDe -gCe -eoo -oLD -eMn +laB +mCP +whr +sFX +jNX aek ylo aek -gCe -eoo -sUX -wDe -cVD -xAL -qqb -nqk -cVD +mCP +whr +gPL +laB +slh +vhl +dKF +pTv +slh aIk aIk aIk @@ -57431,75 +57431,75 @@ aIk aIk aIk aIk -ryw -lTo -tUE -tPl -vcR -gUE -gaD -lZR -gUE -udU +sRT +ebI +fDU +kxq +kuE +dAG +yeh +oZP +dAG +liu uBj ylo uBj -iae -gUE -udU +nNH +dAG +liu xMJ -iae -uKH -gUE -udU +nNH +tgU +dAG +liu qIU qIU qIU qIU qIU aoE -eOV -nqa -nqa -nqa -sCy -jJz +tRS +cSt +cSt +cSt +nIc +vzW aoN -qXR -cdG -nqa -mct -ylE +tqA +kSZ +cSt +cyx +pjF aoc -eBZ -nqa -wAy +wqi +cSt +kLw aoE -eOV -nqa -nqa -nqa -ifD -nqa -qno +tRS +cSt +cSt +cSt +kop +cSt +oeI auG azX azX aGf -wKG -qKO -nra -nIx -mfR -saH -saH -sqa -hbW -wiG -uGu -vIv -mOo -uyu +ixr +rnp +lKO +pIc +srl +dRP +dRP +orG +tWp +obS +pzb +vQN +xJF +kSm aGf azX azX @@ -57542,56 +57542,56 @@ qWr qWr qWr qWr -gCe -kdF -wEc -eMn +mCP +lqN +lYI +jNX acM aek aek aek acM -sIW -rHs -qzW +sEq +fNw +iuL ald -sIW -plw -qzW +sEq +ftf +iuL acM aek aek aek acM -gCe -oLD -eoo -eMn -gvW +mCP +sFX +whr +jNX +jgA vda -ftG -vuz -oxw -oxw -oxw -oxw -oxw -oxw -oxw -qVU -slm +sCJ +cJp +kom +kom +kom +kom +kom +kom +kom +tVC +fTl vda -gvW -gCe -eoo -oLD -eMn +jgA +mCP +whr +sFX +jNX aek ylo aek -gCe -eoo -fiA +mCP +whr +mYX apu aga auc @@ -57678,55 +57678,55 @@ adX bon ifX sCv -sxT +kqY aja gkU -xjl +uSJ ifX -dAg -gUE -udU +swy +dAG +liu uBj ylo uBj -iae -lIk -uPa -cAv -fdN -uKH -gUE -uPa -uLC -uLC -uLC -uLC -uHY +nNH +jkO +vtM +nEm +soY +tgU +dAG +vtM +etu +etu +etu +etu +jcV aoE -xQw -fKj -nqa -uBS -kCD +lXz +mYg +cSt +lft +dFZ aoE aoE aoc aoc -nqa -juH +cSt +qIt aoc aoc -qVG -nqa -rhJ +yjZ +cSt +sUq aoE -wBy -pzs -tWj -tWj -tWj -cct -tWj +drQ +hUA +elD +elD +elD +uvW +elD auG ylo ylo @@ -57735,12 +57735,12 @@ aGf aGf aGf aGf -vuw -ecs -hbW -mIO -dnN -peJ +csh +myN +tWp +rwm +jcm +vCN aGf aGf aGf @@ -57783,14 +57783,14 @@ abD abD abb abD -iqm -mOI -iqm +rhb +vui +rhb abD -qaA -khZ -pbW -niX +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -57808,40 +57808,40 @@ ylo ylo ylo acM -sPl -oLD -eoo -laQ -qRd +xAc +sFX +whr +tUC +xCG adJ adJ -woS -srz -uat -cxk -lBG -lBG -fUM -oxw -ddT +eCx +jgr +wHC +xhj +kNM +kNM +iWf +kom +eiZ adJ adJ -qRd -iFw -wEc -oLD -eMn +xCG +dQV +lYI +sFX +jNX acM ylo acM -gCe -eoo -jPb +mCP +whr +dFK awx -rQc -omY -puz -kKx +tVU +kHW +wCB +wAM apu beO beO @@ -57922,48 +57922,48 @@ beX beO okT epI -qKx -noI -dtS -njT -rRj +ppU +nQm +krS +vHA +vFZ aja -dAg -gUE -udU +swy +dAG +liu aqr ylo aqr -iae -gUE -uKH -uKH -uKH -uKH -gUE -uKH -uKH -uKH -uKH -uKH -udU +nNH +dAG +tgU +tgU +tgU +tgU +dAG +tgU +tgU +tgU +tgU +tgU +liu aoE aoE aoE -gSU +xgd aoE aoE aoE -trb -nqa -tHc -nqa -mct -kiQ +miH +cSt +pdD +cSt +cyx +rJN aoc -hNS -nqa -rhJ +iEp +cSt +sUq aoE bBO bUn @@ -57982,8 +57982,8 @@ ylo aGf aGf lPh -xnY -uFt +dvw +cIG lPh aGf aGf @@ -58028,14 +58028,14 @@ ads abs abv abD -iqm -mhZ -iqm +rhb +fHn +rhb abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aal ylo ylo @@ -58053,40 +58053,40 @@ ylo ylo ylo aek -gCe -oLD -eoo -oLD -oLD -oLD -rWI -oxw -oxw -nDz -kbs -oxw -oxw -nDL -oxw -oxw -rWI -oLD -oLD -kdF -wEc -oLD -eMn +mCP +sFX +whr +sFX +sFX +sFX +xDQ +kom +kom +dCT +qhn +kom +kom +toW +kom +kom +xDQ +sFX +sFX +lqN +lYI +sFX +jNX acM acM acM -gCe -eoo -jPb -hIg -pMM -rjm -rjm -jHE +mCP +whr +dFK +tyU +tat +bMt +bMt +hHV apu beO beX @@ -58095,7 +58095,7 @@ aIk wcw aIk beX -qbL +bij beO bcW aIk @@ -58151,7 +58151,7 @@ iQh aIk beO beO -qbL +bij beO bfc bfQ @@ -58167,48 +58167,48 @@ aIk beO beO epI -rwQ -hwS -uAL -hwS -oWV +eNy +gPD +dCp +gPD +eWH aja -dAg -gUE -udU +swy +dAG +liu aqr aqr aqr -iae -hnm -kKH -kKH -kKH -kKH -qYR -kKH -kKH -kKH -kKH -nPG -pRN +nNH +fkM +cFp +cFp +cFp +cFp +cmK +cFp +cFp +cFp +cFp +cDk +kBQ aoE -jvL -klx -klx -klx -jvL +xta +oDX +oDX +oDX +xta aoE -dlu -nqa +kJJ +cSt aoc -wUM -nFC -kiQ +nUO +fvh +rJN aoc -ucY -nqa -ukJ +iqu +cSt +ydg aoE jnI bUn @@ -58226,10 +58226,10 @@ ylo ylo ylo aEf -sOw -uKH -gUE -sOw +xcN +tgU +dAG +xcN aEf ylo ylo @@ -58273,14 +58273,14 @@ aeX ong adR abD -kpN -lmT -iqm +gny +miS +rhb abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aal ylo ylo @@ -58298,40 +58298,40 @@ ylo ylo ylo aek -gCe -oLD -eoo -oLD -oLD -kVS +mCP +sFX +whr +sFX +sFX +ktb adJ -ttu -wmF -nDz -kbs -wSo -oxw -nDL -wmF -oxw +wWq +wWn +dCT +qhn +uVz +kom +toW +wWn +kom adJ -aFa -oLD -oLD -eoo -oLD -laQ -iFw -mvI -laQ -iFw -eoo -vQk +qdY +sFX +sFX +whr +sFX +tUC +dQV +lww +tUC +dQV +whr +hkW awx -rjm -otu -rjm -liY +bMt +qQC +bMt +oRx apu awY beO @@ -58387,7 +58387,7 @@ beO beX aIk iQh -wJV +dFb aIk aIk aIk @@ -58412,48 +58412,48 @@ aIk beO awY epI -onp -vSD -tsz -tSn -gFY +tWx +nWb +qHY +gdY +cLi aja -dAg -gUE -uPa -fdN -sJT -uPa -fdN -gUE -gaD -jev -jev -jev -jev -jev -jev -lZR -uKH -gUE -udU +swy +dAG +vtM +soY +ruA +vtM +soY +dAG +yeh +sRP +sRP +sRP +sRP +sRP +sRP +oZP +tgU +dAG +liu aoE -uZP -klx -klx -klx -yiM +wec +oDX +oDX +oDX +gPI aoE -gzS -fGt -rWR -jbs -mct -kiQ +tQB +ert +oeA +hmX +cyx +rJN aoc -dRM -wfr -ptK +koW +mSV +kEw aoE pnt bUn @@ -58471,10 +58471,10 @@ ylo ylo ylo aEf -egy -uKH -gUE -egy +tHs +tgU +dAG +tHs aEf ylo ylo @@ -58518,14 +58518,14 @@ adY mfN abb abD -iqm -dLt -iqm +rhb +hrE +rhb abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aal ylo ylo @@ -58543,40 +58543,40 @@ ylo ylo ylo aek -gCe -oLD -sTj -tyM -tyM -tyM -tkF -srz -wGc -gRV -wGc -srz -vhr -fNV -wGc -srz -tkF -tyM -tyM -tyM -ouN -tyM -pbY -tyM -tyM -tyM -tyM -ouN -tyM -rNz -nFl -cnm -oqZ -dYq +mCP +sFX +kgq +cco +cco +cco +cZP +jgr +diT +nvr +diT +jgr +eXk +fiG +diT +jgr +cZP +cco +cco +cco +oib +cco +gbY +cco +cco +cco +cco +oib +cco +gVP +pDp +pwf +ctR +sgG apu awY beO @@ -58657,44 +58657,44 @@ beO beO awY epI -dUe -hwS -hwS -dot -wXH +kvj +gPD +gPD +pRM +kYF aja -dAg -mHy -tmP -kKH -xpa -kKH -kKH -gFy -rap +swy +eYw +irc +cFp +gnc +cFp +cFp +pGU +mte ahQ ahQ ahQ ahQ ahQ ahQ -dAg -uKH -lIk -udU +swy +tgU +jkO +liu aoE -exj -enD -glV -pUl -uSJ +wmP +pRH +woq +cNd +kmY aoE -kJW -xvM +xbH +jbP aoN -nqa -mct -kiQ +cSt +cyx +rJN aoE aoE aoE @@ -58716,10 +58716,10 @@ ylo ylo ylo aEf -sOw -uKH -gUE -sOw +xcN +tgU +dAG +xcN aEf ylo ylo @@ -58763,14 +58763,14 @@ aaq mfN abv abD -iqm -dLt -iqm +rhb +hrE +rhb abD -qaA -khZ -pbW -niX +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -58788,38 +58788,38 @@ ylo ylo ylo acM -sPl -oLD -eoo -opr -osC +xAc +sFX +whr +ink +ciG adJ adJ -vru -oxw -kBY -tKU -tKU -xQP -laS -pyZ -bRm +cry +kom +ozr +gSw +gSw +qOI +vOQ +dtq +wYM adJ adJ -osC -hUW -oLD -oLD -eoo -xKe -rgC -rgC -cqz -sUX -vky +ciG +vjp +sFX +sFX +whr +lcT +pKy +pKy +dMJ +gPL +pBF apu -nHO -ltN +hqs +tOR aga aga aga @@ -58902,31 +58902,31 @@ beX beO awY epI -dNZ -uue -mqi -orV -jSL +bsu +fwd +ozF +dzz +fRu aja -keB -jev -jev -lZR -viB -gaD -jev -jev -fjn +tww +sRP +sRP +oZP +qxa +yeh +sRP +sRP +eEB ahQ -tBg -dvc -lvX -oir +oSa +yde +uFw +rqc ahQ -pyG -uKH -gUE -udU +lyJ +tgU +dAG +liu aoE aoE aoE @@ -58937,21 +58937,21 @@ aoE aoE aoE aoE -lPN -lYB +oJK +oXB aoE aoE -ogy -yeZ -wTL -rwa -jPj -yeZ -wTL -rwa -jPj -yeZ -pbK +gaz +vtd +hju +lsT +psx +vtd +hju +lsT +psx +vtd +uNs auG auG auG @@ -58961,10 +58961,10 @@ auG auG auG auG -nKB -fMV -gUE -wAo +rfT +uQu +dAG +hxT aHL aHL aQi @@ -59009,54 +59009,54 @@ abT abD abD abD -iiD +mzW abD abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aaj aal aal aal aaj -ipt -cfs -oVl +kZc +cpd +daa adF -ipt -cfs -oVl +kZc +cpd +daa aaj aal aal aal aaj -gCe -oLD -eoo -eMn -gvW +mCP +sFX +whr +jNX +jgA vda -gKZ -laS -oxw -oxw -oxw -oxw -kbs -oxw -oxw -kBY -jZx +lqa +vOQ +kom +kom +kom +kom +qhn +kom +kom +ozr +vSS vda -gvW -gCe -oLD -oLD -eoo -fbl +jgA +mCP +sFX +sFX +whr +vhb arW arW arW @@ -59148,7 +59148,7 @@ fsx awY epI aja -cPX +rjr aja aja aja @@ -59163,64 +59163,64 @@ hFh hFh ahQ ahQ -dRF -pWU -vok -eee +ofG +xZY +snJ +wdZ ahQ -dAg -uKH -gUE -uPa +swy +tgU +dAG +vtM aoN -isg -cnd -iiL -iiL -cnd -krS -nLv -qJf -ihG -nqa -mct -gIL +mhO +njt +vbK +vbK +njt +xaT +pyg +ycQ +oMM +cSt +cyx +pNY aoE -yfP -yeZ -wTL -sAW -jPj -yeZ -wTL -sAW -jPj -yeZ -yeZ +mEh +vtd +hju +npS +psx +vtd +hju +npS +psx +vtd +vtd aoc -jKV -sml -tQy -suS -fTb -wMG -grU +nfW +rPR +sBn +xKn +pOV +naN +cka aoc -iae -uKH -gUE -rap +nNH +tgU +dAG +mte aiB -elS -rpa -rpa -dLi -lBo -sCE -soh -rpa -tKc -mmc +mMG +kAf +kAf +xJj +rkX +pqF +pYT +kAf +oin +kZZ aHL ylo ylo @@ -59238,78 +59238,78 @@ ylo ylo ylo aal -gSs -eNo -eyy -coF -iHV -xCB -fAt -coF -iHV -xCB -lIw -coF -iHV -tZM -jpk -coF -iHV -tZM -xDq -coF -jro -wau -rYl -eyy -eyy -kJh -eyy -eyy -coF -wzR -tZM -wYJ -coF -wzR -tZM -eyy -eyy -eyy -eyy -eyy -nhA -tyM -rHt -eMn -wDe +hMr +oGT +ngL +fSa +vJn +fLG +cHD +fSa +vJn +fLG +xlj +fSa +vJn +glX +kgU +fSa +vJn +glX +duD +fSa +uPb +niW +vug +ngL +ngL +uCL +ngL +ngL +fSa +vFC +glX +kgJ +fSa +vFC +glX +ngL +ngL +ngL +ngL +ngL +thx +cco +rig +jNX +laB vda -pIG -oxw -oxw -pQp -ocg -oxw -kbs -pQp -ocg -oxw -peb +mCa +kom +kom +qMh +wcJ +kom +qhn +qMh +wcJ +kom +gPn vda -wDe -gCe -oLD -oLD -eoo -fbl +laB +mCP +sFX +sFX +whr +vhb arW -ueb -qHo -nzM -nzM -nzM -qHo -eoY +mcx +obZ +ind +ind +ind +obZ +vnt ahs ylo ylo @@ -59329,7 +59329,7 @@ iQh aIk uIJ beO -qbL +bij aeo aeo bfc @@ -59341,7 +59341,7 @@ aIk aIk aIk aIk -qbL +bij beO beX aIk @@ -59392,80 +59392,80 @@ beO beO awY epI -hwS +gPD dct gQj dct -hwS -cfQ -vxx -nap -nap -xqt +gPD +cJP +qtS +otd +otd +qDR ahQ -kUN -qma -jzq -qGg -mkk -rRS -rRS -rRS -ifF +faS +iPa +pJd +tam +owy +lbi +lbi +lbi +fbp bDp -ibb -uKH -gUE -uKH -vVb -nqa -nqa -jbs -nqa -nqa -nqa -nqa -nqa -nqa -nqa -mct -nqa -ifD -nqa -nqa -nqa -jbs -nqa -nqa -nqa -nqa -xCS -fyH -fyH -tqR -gzK -xyD -xyD -xyD -xyD -xyD -rrl +cVe +tgU +dAG +tgU +mux +cSt +cSt +hmX +cSt +cSt +cSt +cSt +cSt +cSt +cSt +cyx +cSt +kop +cSt +cSt +cSt +hmX +cSt +cSt +cSt +cSt +hXm +hIu +hIu +hbz +fEE +xAF +xAF +xAF +xAF +xAF +qnZ aoc -tXN -kKH -iLu -slK +qYm +cFp +ewJ +hBU aQo -mWD -qAW -jcZ -jcZ -vZl -qAW -jcZ -jcZ -tFE -eja +uyn +uvw +kzB +kzB +kKh +uvw +kzB +kzB +wcA +pSn aQi ylo ylo @@ -59483,76 +59483,76 @@ ylo ylo ylo aal -dLt -grG -dnI -sna -piJ -fsg -ijs -sna -piJ -fsg -dnI -sna -mOI -grG -eXv -ugh -ugh -ugh -lnV -mOI -khZ -edR -fsg -dnI -sna -dLt -grG -dnI -sna -dLt -grG -nbY -sna -dLt -grG -eXv -ugh -ugh -ugh -lnV -sUX -oLD -eoo -eMn -smz +hrE +tjj +dZS +ymc +lcp +wni +qXc +ymc +lcp +wni +dZS +ymc +vui +tjj +yfN +jbC +jbC +jbC +fqy +vui +etQ +uch +wni +dZS +ymc +hrE +tjj +dZS +ymc +hrE +tjj +fUm +ymc +hrE +tjj +yfN +jbC +jbC +jbC +fqy +gPL +sFX +whr +jNX +rib vda -ftG -lBG -cPA -lBG -lBG -fUM -qbx -lBG -lBG -lBG -slm +sCJ +kNM +qTa +kNM +kNM +iWf +hXB +kNM +kNM +kNM +fTl vda -smz -vMU -osC -hUW -eoo -fbl +rib +iFB +ciG +vjp +whr +vhb arW arW arW -pOK -nzM -wBS +otk +ind +dYC arW arW ahs @@ -59643,74 +59643,74 @@ ifX ifX ifX ifX -osR -rRS -rRS -ifF -nap -uhN -rRS -rRS -rRS -rRS -rRS -rRS -vFu -eOg -fsv -kKH -kKH -vtN -kKH -fyH -fyH -fyH -fyH -fyH -fyH -fyH -kRQ -fyH -fyH -gMe -cOk -fyH -kRQ -fyH -fyH -fyH -fyH -fyH -fyH -fyH -fyH -nFC -jbs -vIM -aoc -hSR -hSR -hSR -hSR -hSR -hSR qnr +lbi +lbi +fbp +otd +cMO +lbi +lbi +lbi +lbi +lbi +lbi +kSW +nAB +stZ +cFp +cFp +cfT +cFp +hIu +hIu +hIu +hIu +hIu +hIu +hIu +rhc +hIu +hIu +lrl +iaa +hIu +rhc +hIu +hIu +hIu +hIu +hIu +hIu +hIu +hIu +fvh +hmX +kiY aoc -iae -uKH -gUE -rap +uOU +uOU +uOU +uOU +uOU +uOU +wTq +aoc +nNH +tgU +dAG +mte aQo -sfi -jcZ -ooL -ooL -jEO -ooL -ooL -ooL -jcZ -iuM +brG +kzB +cVZ +cVZ +omt +cVZ +cVZ +cVZ +kzB +yij aQi ylo ylo @@ -59746,11 +59746,11 @@ abD mqU mqU xfC -dAO -lnV -khZ -pbW -mBy +wZI +fqy +etQ +hzh +rgP abD abD abT @@ -59767,11 +59767,11 @@ abD mqU mqU xfC -dAO -cYb -oLD -eoo -eMn +wZI +swv +sFX +whr +jNX adJ adJ adJ @@ -59779,8 +59779,8 @@ adJ adJ adJ adJ -nDL -wfC +toW +hvd adJ adJ adJ @@ -59789,17 +59789,17 @@ adJ adJ adJ adJ -gCe -eoo -fbl +mCP +whr +vhb arW -ueb -qHo -nzM -nFK -nzM -qHo -oGs +mcx +obZ +ind +cRL +ind +obZ +cOA ahs ylo ylo @@ -59884,78 +59884,78 @@ ylo ylo ylo xSj -uJj -nap -tmN +ovn +otd +jxM bRg -osR -rRS -rRS -dKU -tKF -wyl -eOg -eOg -eOg -eOg -eOg -eOg -kMi -nwz +qnr +lbi +lbi +qKl +vGm +vEv +nAB +nAB +nAB +nAB +nAB +nAB +eZL +nZG bDp -fWD -uKH -gUE -vTh +xEf +tgU +dAG +prZ aoN -wfr -wfr -wfr -wfr -wfr -mit -mct -sCy -wfr -wfr -wfr -wfr -cqF -uej -lMl -htW -uvU -uHe -wfr -wfr -mit -mct -nqa -qzn +mSV +mSV +mSV +mSV +mSV +plb +cyx +nIc +mSV +mSV +mSV +mSV +jgv +gXb +pav +ven +jPw +rHO +mSV +mSV +plb +cyx +cSt +gSt aoc -fjp -fjp -fjp -fjp -fjp -fjp -fjp +vyV +vyV +vyV +vyV +vyV +vyV +vyV aoc -iae -uKH -gUE -ugT +nNH +tgU +dAG +fjj aiB -pRR -jcZ -ooL -ooL -hUQ -ooL -ooL -ooL -jcZ -umZ +baW +kzB +cVZ +cVZ +jSx +cVZ +cVZ +cVZ +kzB +njz aHL ylo ylo @@ -59992,10 +59992,10 @@ qFq qKc abs aFl -tzN -khZ -pbW -ydg +tVY +etQ +hzh +qJn abD adD mfN @@ -60013,36 +60013,36 @@ qFq qNM abs aFl -vJB -oLD -eoo -eMn +jkk +sFX +whr +jNX adJ -kNe -izE -wyF -xCI -xCI +fng +xGQ +xef +xXA +xXA adJ -dNT -jHJ -fej +sHD +dHz +hjB adJ -fej -tKU -hxZ -qyF -iQw +hjB +gSw +fMj +qxL +gfZ adJ -plN -eoo -fbl +pCm +whr +vhb arW arW arW -pOK -nzM -wBS +otk +ind +dYC arW arW ahs @@ -60129,29 +60129,29 @@ ylo ylo ylo xSj -mFD -rRS -nke +meZ +lbi +mEV bRg -osR -lZj -eOg -ghp +qnr +xpC +nAB +nLR ahQ -hNr -dAr -lte -quh -lSi -alo -czr -nwz -eyV +njB +tIF +rdR +ebr +nvS +qcz +ceO +nZG +rWF ahQ -dAg -uKH -gUE -udU +swy +tgU +dAG +liu aoc aoc aoN @@ -60159,7 +60159,7 @@ aoN aoN aoc aoc -mVx +fNB aoc aoc aoN @@ -60174,8 +60174,8 @@ aoc aoc aoc aoN -mct -jLo +cyx +jcz aoN aoc aoc @@ -60186,21 +60186,21 @@ aoc aoc aoc aoc -iae -uKH -hnm -kKH -xxe -emZ -sQT -vJM -jaM -rAT -jaM -uVj -ooL -jcZ -tke +nNH +tgU +fkM +cFp +xGg +npM +loN +phe +mos +quP +mos +hRw +cVZ +kzB +xRi aIv aIv aQj @@ -60237,10 +60237,10 @@ aFU aFU abs fCK -tzN -khZ -pbW -mBy +tVY +etQ +hzh +rgP abD adR mfN @@ -60258,38 +60258,38 @@ qKc qNM abs fCK -vJB -oLD -eoo -eMn +jkk +sFX +whr +jNX vda -wNW -jef -jef -cbP -srz -nHK -efB -fYB -srz -bzh -srz -kpL -pVs -xYv -nDz +iOs +nPY +nPY +vrF +jgr +vDe +fVc +mnz +jgr +lmK +jgr +ioR +gbp +xLG +dCT adJ -gCe -eoo -fbl +mCP +whr +vhb arW -ueb -qHo -nzM -gNW -nzM -qHo -eoY +mcx +obZ +ind +blv +ind +obZ +vnt ahs aSa aSa @@ -60374,14 +60374,14 @@ aSa asz asz asz -mFD -pUV -ifF +meZ +vXg +fbp ahQ -bqH -rRS -rRS -kpZ +wir +lbi +lbi +wQv ahQ ahQ ahQ @@ -60389,69 +60389,69 @@ ahQ ahQ ajf ahQ -erG -jyD +xRI +lli ahQ ahQ -dAg -uKH -gUE -udU +swy +tgU +dAG +liu aoc -rbD -hBw -isg -isg -isg -ihG -mct -rCY -isg -isg -isg -bHt -raf +fri +tah +mhO +mhO +mhO +oMM +cyx +vYy +mhO +mhO +mhO +kHu +hBk aoc -uCr -ujf -ujf +utK +tEo +tEo aoc -vOI -uLC -fdN -gUE -uKH -uPa -uLC -cAv -uLC -uLC -uLC -ldM -uLC -uLC -uLC -fdN -uKH -gUE -gaD +iEs +etu +soY +dAG +tgU +vtM +etu +nEm +etu +etu +etu +uQF +etu +etu +etu +soY +tgU +dAG +yeh aiB -clS -gZZ -hBS -otL -ooL -ooL -nLg -otL -jcZ -uHR +mwx +cFY +pBj +mJl +cVZ +cVZ +lUJ +mJl +kzB +euf aQm -mHg -nYG -nYG -hEu -qBW +lNe +ybM +ybM +cAi +dfJ aIv ylo ylo @@ -60482,10 +60482,10 @@ alb abs abs aFq -tzN -khZ -pbW -niX +tVY +etQ +hzh +xqQ abD aei sfx @@ -60503,36 +60503,36 @@ wnO aFU abs aFq -vJB -oLD -eoo -eMn +jkk +sFX +whr +jNX vda -njS -etT -etT -kbs -qVU +wDq +vWg +vWg +qhn +tVC adJ -fUM -qbx -hxv +iWf +hXB +mNM adJ -fUM -kbs -oxw -oxw -nDz +iWf +qhn +kom +kom +dCT vda -gCe -eoo -fbl +mCP +whr +vhb arW arW arW -pOK -uDN -wBS +otk +xOk +dYC arW arW ahs @@ -60575,7 +60575,7 @@ aIk aIk adX beO -qbL +bij beX aIk aIk @@ -60617,86 +60617,86 @@ aiU ylo ylo xSj -jVx -rCx -rXc -itQ -eOg -lqS -eOg -eOg -eOg -mLe +wTN +sWu +cZs +xtK +nAB +wfA +nAB +nAB +nAB +wHh ahQ -uih -pDC +tAY +bDB ahQ -jBj -igB -jpd -uhN -ifF -rIw +pOc +ogW +qRw +cMO +fbp +uui ahQ -dAg -uKH -gUE -udU +swy +tgU +dAG +liu aoc -wdF -ptR -xCS -cGw -otc -otc -xPt -otc -otc -lIz -fyH -tma -clB +gMf +cPA +hXm +vmn +gOS +gOS +dPM +gOS +gOS +oav +hIu +dmm +bXJ aoc -hnw -hnw -hnw +tKp +tKp +tKp aoc -iae -uKH -uKH -gUE -uKH -fMV -uKH -uKH -uKH -uKH -uKH -gUE -uKH -uKH -fMV -uKH -uKH -gUE -slK +nNH +tgU +tgU +dAG +tgU +uQu +tgU +tgU +tgU +tgU +tgU +dAG +tgU +tgU +uQu +tgU +tgU +dAG +hBU aiB -fsy -gZZ -jcZ -jcZ -jcZ -jcZ -vuP -emZ -emZ -emZ -jls -qRK -qRK -eNx -hvr -gXw +nXS +cFY +kzB +kzB +kzB +kzB +wrQ +npM +npM +npM +rCv +qjC +qjC +wYh +wee +wil aQj ylo ylo @@ -60726,11 +60726,11 @@ iZQ abs abs abs -kxp -vLJ -khZ -pbW -mBy +sTA +vzs +etQ +hzh +rgP abD alr abv @@ -60747,39 +60747,39 @@ abD abE abs abs -kxp -hrA -oLD -eoo -eMn +sTA +oCv +sFX +whr +jNX vda -wNW -elu -eyX -efB -uJc +iOs +eVt +cHP +fVc +ffr vda -nDL -wfC +toW +hvd adJ adJ -rDx -jtd -ujL -kAO -peb +oAl +bUj +hDf +jfx +gPn vda -gCe -eoo -fbl +mCP +whr +vhb arW -tRm -qHo -nzM -uDN -nzM -qHo -xTC +kKn +obZ +ind +xOk +ind +obZ +lvn ahs ylo ylo @@ -60862,86 +60862,86 @@ aiU ylo ylo xSj -osR -toI -spI -bHE -nwz +qnr +rTt +noL +ckL +nZG ahQ -uKF -rRS -rRS -rRS -oiG -hVn -ydz +qKW +lbi +lbi +lbi +xMh +lKR +cYk ahQ -efV -hVn -hVn -rRS -sHd -ydy +vxQ +lKR +lKR +lbi +qvi +oEr ahQ -nQr -uKH -gUE -pRN +rui +tgU +dAG +kBQ aoc -fUk -nqa -fyu -clB +iAi +cSt +eyF +bXJ qIU qIU qIU qIU qIU -eOV -nqa -fyu -xFs +tRS +cSt +eyF +sBa aoc -klx -klx -klx +oDX +oDX +oDX aoc -iae -uKH -tBp -gjr -kKH -kKH -kKH -kKH -kKH -kKH -kKH -gjr -kKH -kKH -kKH -kKH -kKH -iLu -ugT +nNH +tgU +xwn +cJq +cFp +cFp +cFp +cFp +cFp +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +ewJ +fjj aiB -bHD -gZZ -nRX -lgm -lPy -clS -gZZ -jcZ -nRX -sib +wUj +cFY +rbi +ulu +ppl +mwx +cFY +kzB +rbi +vik aQm -edL -jqm -pal -dnY -tij +gIb +lLf +vgm +ins +uWM aQj ylo ylo @@ -60971,11 +60971,11 @@ fxf abs abs abs -hNo -mOI -khZ -pbW -mBy +tTb +vui +etQ +hzh +rgP abD abD abD @@ -60992,37 +60992,37 @@ abD pSZ abs abs -hNo -sUX -oLD -eoo -eMn +tTb +gPL +sFX +whr +jNX vda -njS -etT -etT -qVU -umh +wDq +vWg +vWg +tVC +ldM vda -nDL -uKn +toW +whF adJ -rSp -laS -ldO -iRa -jef -pgt +hkL +vOQ +vdR +eSX +nPY +lgR vda -gCe -eoo -fbl +mCP +whr +vhb arW arW arW -pOK -uDN -wBS +otk +xOk +dYC arW arW ahs @@ -61107,86 +61107,86 @@ ylo ylo ylo xSj -vGc -alo -mlV -alo -jyW +xxm +qcz +xcw +qcz +gte ahQ -qPr -dhM -dhM -dhM +lSE +oYI +oYI +oYI ahQ -cbb -gTO +lvx +pro ahQ -vHv -alo -czr -rRS -ebk -pvs +wSN +qcz +ceO +lbi +uPi +rjk bDp -dAg -uKH -gUE -qSJ +swy +tgU +dAG +vYG aoc -hVT -nqa -nqa -clB +xPI +cSt +cSt +bXJ bzm hqX hqX hqX bzm -eOV -nqa -nqa -nqa -qLG -klx -klx -fAC +tRS +cSt +cSt +cSt +gtb +oDX +oDX +dmS aoc -wKx -uKH -gUE -gaD -jev -jev -jev -jev -jev -jru -jev -tQv -jev -jev -lZR -ggi -ggi -ydE -ggi +hon +tgU +dAG +yeh +sRP +sRP +sRP +sRP +sRP +tKM +sRP +hkY +sRP +sRP +oZP +jpa +jpa +ssV +jpa aiB aiB -ojg +dLd aiB aiB aiB aiB -fbr -kLx +iSw +uZR aiB aiB aQm -vtY -jqm -jqm -jqm -rSb +hcC +lLf +lLf +lLf +pNG aIv ylo ylo @@ -61216,11 +61216,11 @@ fxf abs abs abs -hNo -mOI -khZ -pbW -qSI +tTb +vui +etQ +hzh +sEt abD alH abD @@ -61237,39 +61237,39 @@ abD psV abs abs -hNo -sUX -oLD -sTj -ygg +tTb +gPL +sFX +kgq +vKA adJ -erS -yky -bVt -pjh +chx +upx +fca +kLr adJ adJ -bVa -wfC +bXR +hvd vda -frm -oxw -tJc -ujL -ujL -peb +hFv +kom +rIL +hDf +hDf +gPn vda -gCe -eoo -fbl +mCP +whr +vhb arW -ueb -qHo -omk -uDN -nzM -qHo -eoY +mcx +obZ +eyC +xOk +ind +obZ +vnt ahs ylo ylo @@ -61368,38 +61368,38 @@ ahQ ahQ ahQ ahQ -osR -rRS -fhA -pvs +qnr +lbi +mWS +rjk bDp -dAg -uKH -gUE -udU +swy +tgU +dAG +liu aoc -hVT -jbs -nqa -clB +xPI +hmX +cSt +bXJ bzm hqX skS hqX bzm -eOV -nqa -nqa -sCy +tRS +cSt +cSt +nIc aoc -klx -klx -bML +oDX +oDX +jxP aoc -iae -uKH -gUE -ugT +nNH +tgU +dAG +fjj aiB aiB aiB @@ -61411,27 +61411,27 @@ aiB aiB aiB aiB -nPA -nPA -hyh -lOi +vbz +vbz +krj +lax aiB -srK -gZZ -qCs +ktd +cFY +yii aiB -iRc -cub -gZZ -jcZ -clq -isj +sSe +pfb +cFY +kzB +eCN +nOf aQm -pwa -edL -mgy -xpj -mHR +sah +gIb +pIR +wOS +jzG aIv ylo ylo @@ -61461,11 +61461,11 @@ iZQ abs abs dem -jWK -lnV -khZ -pbW -mBy +ctj +fqy +etQ +hzh +rgP abD abs abs @@ -61482,36 +61482,36 @@ abD abE abs dem -jWK -cYb -oLD -eoo -eMn +ctj +swv +sFX +whr +jNX adJ adJ adJ adJ adJ adJ -xYy -laS -wfC +sjl +vOQ +hvd vda -frm -oxw -jef -jef -jef -pgt +hFv +kom +nPY +nPY +nPY +lgR vda -gCe -eoo -fbl +mCP +whr +vhb arW arW arW arW -cWc +eof arW arW arW @@ -61546,7 +61546,7 @@ pSo pSo pSo pSo -nJB +lUY nHu uCn kIW @@ -61555,10 +61555,10 @@ aIk aIk beO bcj -qDl -rdG -vju -cac +jKW +wYs +uNd +wBy bcj beO jFP @@ -61597,86 +61597,86 @@ aSa aSa arA arA -xim -xim -swg -oWp +xWd +xWd +qsl +rfX ahn -wLn -hxm -vfH -wSr -pNO +oWY +loq +gqX +vBe +yfT ahn -tic -fHU -xvX -enw +siw +gjP +dfj +pnT ahQ -kZS -alo -fdT -jQU +pKI +qcz +oxg +tbX ahQ -dAg -uKH -gUE -udU +swy +tgU +dAG +liu aoc -eno -wfr -wfr -rFI +eiU +mSV +mSV +hEg bzm hqX bBa hqX bzm -eno -lPb -lPb -xLQ +eiU +nhp +nhp +hgm aoc -oiX -klx -bML +jbF +oDX +jxP aoc -iae -fMV -gUE -uKH -msX -jcZ -hZn -jcZ -jcZ +nNH +uQu +dAG +tgU +pTF +kzB +ooq +kzB +kzB aQo -kZO -soh -dol -dol +vgv +pYT +cxy +cxy aiB -jcZ -ooL -xpr -jcZ +kzB +cVZ +coA +kzB aQo -iJA -gZZ -tke +kZv +cFY +xRi aiB -rsp -ooL -gZZ -jcZ -ooL -xgP +dtK +cVZ +cFY +kzB +cVZ +uHG aQm -wBz -rRk +eeb +ryz aQm -hgd -wBz +gLm +eeb aQj ylo ylo @@ -61707,10 +61707,10 @@ alb abs pXp aFl -tzN -khZ -pbW -niX +tVY +etQ +hzh +xqQ abD ibz ong @@ -61728,38 +61728,38 @@ mcj aFX pXp aFl -vJB -oLD -eoo -eMn +jkk +sFX +whr +jNX adJ -fLU -tKU -hxZ -tKU -tKU -ckC -oxw -wfC +gHr +gSw +fMj +gSw +gSw +hUw +kom +hvd vda -pIG -oxw -ujL -xYv -ujL -twK +mCa +kom +hDf +xLG +hDf +wbo adJ -gCe -eoo -mdL -fae -tKY -fae -skd -noG -nuG -dii -jSV +mCP +whr +cII +jrt +oXs +jrt +uhv +veR +fNI +flr +hqJ ass ylo ylo @@ -61800,10 +61800,10 @@ aIk aIk beO bcj -taK -nEM -ifo -bUf +oUY +lhc +hMl +xXy bcj beO jFP @@ -61841,32 +61841,32 @@ aSa aSa aSa arA -dlr -jEZ -nrw -pyk -oWp +mre +liU +uoF +lMn +rfX ahS -qax -kxx -kxx -kxx -myl -vGV -nvS -dFN -tes -iAe +jLw +sxf +sxf +sxf +lDU +ueq +lEk +svQ +hEd +tpe ahQ ahQ ahQ ahQ ahQ ahQ -dAg -uKH -gUE -udU +swy +tgU +dAG +liu aoc aoc aoc @@ -61886,42 +61886,42 @@ aoc aoc aoc aoc -iae -uKH -gUE -uKH -nPA -jcZ -ooL -ooL -jcZ +nNH +tgU +dAG +tgU +vbz +kzB +cVZ +cVZ +kzB aQo -qzl -ooL -oGi -jcZ +dlS +cVZ +kBJ +kzB aiB -kVB -jaM -oPt -jcZ -eyC -llN -eWe -tke +cVL +mos +qhg +kzB +xDG +tha +iaY +xRi aiB -ygv -ooL -eWe -jcZ -ooL -top +mmS +cVZ +iaY +kzB +cVZ +cdK aQm -ecL -ptJ +eAK +qum aQm -tNt -skR +nlt +xZD aQj ylo ylo @@ -61952,10 +61952,10 @@ aFX aFX abs fCK -tzN -khZ -pbW -mBy +tVY +etQ +hzh +rgP abD adx mfN @@ -61973,38 +61973,38 @@ qNM qKc abs gtc -vJB -oLD -eoo -eMn +jkk +sFX +whr +jNX adJ -hgI -fUM -oxw -kOm -uat -rGV -kuQ -wKY +rTA +iWf +kom +fny +wHC +pti +gjT +gWW adJ -nmX -lBG -yky -bVt -yky -dhT +uME +kNM +upx +fca +upx +khS adJ -plN -sTj -wvn -qAj -qAj -mtf -mtf -psJ -kHF -sla -hqO +pCm +kgq +fvx +seq +seq +xZv +xZv +lsv +skZ +xxz +jLG ass ylo ylo @@ -62045,10 +62045,10 @@ aIk aIk qDx bcj -cTX -vEA -vEA -xAI +lLV +hHz +hHz +snv bcj beO jLU @@ -62086,87 +62086,87 @@ ylo ylo ylo arA -mMq -wSr -nrw -wSr -oWp +naZ +vBe +uoF +vBe +rfX ahS -qax -nrw -nrw -nrw -qfi +jLw +uoF +uoF +uoF +xNP ahn -gkB -csJ -rMi -uSF +udq +dRu +pul +iKF ahn -dmN -dmN -mWy -ugT -xBB -ibb -uKH -gUE -uPa -uLC -uLC -uLC -cAv -uLC -uLC -uLC -uLC -uLC -ntF -uLC -uLC -uLC -uLC -uLC -cAv -uLC -uLC -uLC -fdN -uKH -hnm -kKH -lDR -emZ -jaM -vFp -jcZ -eyC -llN -ooL -gZZ -jcZ +mwq +mwq +oao +fjj +hft +cVe +tgU +dAG +vtM +etu +etu +etu +nEm +etu +etu +etu +etu +etu +lfx +etu +etu +etu +etu +etu +nEm +etu +etu +etu +soY +tgU +fkM +cFp +vEx +npM +mos +oBm +kzB +xDG +tha +cVZ +cFY +kzB aiB -jcZ -ooL -xpr -jcZ +kzB +cVZ +coA +kzB aQo -xAe -lgm -nte +bpx +ulu +nXm aiB -vOD -sib -sib -sib -sib -qLp +qel +vik +vik +vik +vik +lmG aQm -eCB -gZl +rpC +hBW aQm -gZl -mHR +hBW +jzG aIv ylo ylo @@ -62197,10 +62197,10 @@ sTD wOQ abs aFq -tzN -khZ -pbW -ydg +tVY +etQ +hzh +qJn abD aaq mfN @@ -62218,15 +62218,15 @@ sTD qNM abs aFq -vJB -oLD -eoo -eMn +jkk +sFX +whr +jNX adJ adJ vda -oxw -vAC +kom +oVt vda adJ adJ @@ -62239,16 +62239,16 @@ adJ adJ adJ adJ -gCe -wEc -hOp -vII -vII -vII -vII -oPV -noG -sla +mCP +lYI +wka +xRw +xRw +xRw +xRw +eWs +veR +xxz arN agI agI @@ -62290,10 +62290,10 @@ aIk lkd aIx aIx -eft -vEA -vEA -wfG +rLx +hHz +hHz +uwf aIx aIx beO @@ -62331,70 +62331,70 @@ ylo ylo ylo arA -jEZ -jEZ -nrw -nrw -ikt +liU +liU +uoF +uoF +eCK ahn -kuI -nrw -vhs -nrw -min +nxG +uoF +oUX +uoF +ech ahn ahn ahn ahn ahn ahn -nug -egy -kxb -uKH -uKH -uKH -fMV -gUE -uKH -uKH -uKH -uKH -uKH -uKH -uKH -fMV -uKH -uKH -gUE -uKH -uKH -fMV -uKH -uKH -uKH -uKH -uKH -uKH -uKH -uKH -gUE -uKH -nPA -jcZ -jcZ -gZZ -jcZ +ixh +tHs +qiz +tgU +tgU +tgU +uQu +dAG +tgU +tgU +tgU +tgU +tgU +tgU +tgU +uQu +tgU +tgU +dAG +tgU +tgU +uQu +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +dAG +tgU +vbz +kzB +kzB +cFY +kzB aQo -nLI -odZ -gZZ -jcZ +gEL +eQk +cFY +kzB aiB -nPA -nPA -hyh -lqH +vbz +vbz +krj +qYS aiB aiB aiB @@ -62441,11 +62441,11 @@ abD bpU bpU hzm -uAA -vLJ -khZ -pbW -mBy +uGR +vzs +etQ +hzh +rgP abD abD abT @@ -62462,44 +62462,44 @@ abD bpU bpU hzm -uAA -hrA -oLD -eoo -eMn +uGR +oCv +sFX +whr +jNX adJ -uZl -ckC -oxw -kbs -kBY -iQw +kOx +hUw +kom +qhn +ozr +gfZ adJ -vNH -qRd -qRd -qRd -qRd -alm -qRd -qRd -qRd -iFw -eoo -fbl -ggS -tXx -tXx -gBT -wOu -noG -kOE +fXq +xCG +xCG +xCG +xCG +qWE +xCG +xCG +xCG +dQV +whr +vhb +lVR +dvz +dvz +uFB +nIN +veR +iCF arN -geE -iCG -ffg -iCG -geE +eKt +eoj +hFJ +eoj +eKt aQz aQz aQz @@ -62529,17 +62529,17 @@ bfi bfc eOe aIx -elZ -sHH -elZ -pda +csg +hlg +csg +eAX aIx -tbG -stZ -vEA -vEA -hAq -hvK +wrx +vuI +hHz +hHz +mAk +dLu gLs gLs gLs @@ -62576,87 +62576,87 @@ aSa arA arA arA -xOZ -nrw -vhs -nrw -nrw -nOk -nrw -nrw -xHw -nrw -rwh -bkn -jQr -wmy -uWX -mmf +hcy +uoF +oUX +uoF +uoF +qsN +uoF +uoF +vgz +uoF +jNH +qlA +vaH +wZa +jDP +hYl ahn -kQW -nTQ -iaX -uKH -tBp -kKH -kKH -gjr -kKH -kKH -kKH -kKH -kKH -kKH -kKH -xpa -kKH -kKH -gjr -kKH -kKH -kKH -kKH -kKH -xpa -kKH -kKH -kKH -kKH -kKH -qii -gaD +pON +myw +iNz +tgU +xwn +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cFp +cFp +cFp +jXH +yeh aiB -nPA -nPA -hyh -jZc +vbz +vbz +krj +nuN aiB aiB aQo -ojg -rGh +dLd +jDq aiB -cqj -uVC -uvX -cqj +oJU +qmY +vOY +oJU boJ -wYC -eFu -llc -mCP -eFu -eFu -eFu -eFu -eFu -eFu -mCP -eFu -eFu -eFu -eFu -eFu +rbA +xEY +ebj +uXQ +xEY +xEY +xEY +xEY +xEY +xEY +uXQ +xEY +xEY +xEY +xEY +xEY aEy ylo ylo @@ -62668,88 +62668,88 @@ ylo ylo ylo aal -dLt -kJf -gpb -qjm -mQt -rvl -mXH -qjm -mQt -rvl -gpb -qjm -mOI -kJf -fOC -qAe -qAe -qAe -vLJ -mOI -khZ -edR -rvl -gpb -qjm -dLt -kJf -gpb -qjm -dLt -kJf -mSD -qjm -dLt -kJf -fOC -qAe -qAe -qAe -vLJ -sUX -oLD -eoo -eMn +hrE +tuf +tQU +mAJ +mCW +xFd +gZD +mAJ +mCW +xFd +tQU +mAJ +vui +tuf +bRN +tDE +tDE +tDE +vzs +vui +etQ +uch +xFd +tQU +mAJ +hrE +tuf +tQU +mAJ +hrE +tuf +rpW +mAJ +hrE +tuf +bRN +tDE +tDE +tDE +vzs +gPL +sFX +whr +jNX adJ -ifn -gLQ -cWs -iEz -cWs -nDz +ofa +ekJ +sgb +xch +sgb +dCT adJ -gCe -onD -tyM -tyM -tyM -ouN -tyM -tyM -tyM -tyM -fOr -fbl -ggS -tXx -tXx -gBT -wOu -noG -nuG +mCP +deQ +cco +cco +cco +oib +cco +cco +cco +cco +hvW +vhb +lVR +dvz +dvz +uFB +nIN +veR +fNI arN -geE -iCG -geE -iCG -geE +eKt +eoj +eKt +eoj +eKt aQC -fDT -hdq -cNa -iXa +opN +cfr +iRj +pYt aQC bfc bfc @@ -62774,17 +62774,17 @@ bfm bfc eOe aIx -vuk -xKn -vEA -vuk +fbd +qpS +hHz +fbd aIx -kkc -wRN -frF -vSY -wRN -sQK +eIx +nEs +ibS +ktU +nEs +rYe gLs hqX bQt @@ -62819,89 +62819,89 @@ ylo ylo ylo arA -wLn -fHU -kuI -nrw -lli -nvS -nvS -vGV -nvS -lIA -rWy -nvS -rWy -nvS -nvS -nvS -nvS -nvS -nEs -kKH -kKH -kKH -kKH -iLu -gaD -jev -jev -jev -jev -jev -jev -jev -jev -lZR -gUE -uKH -gaD -jev -kLm -uKH -dbB -vWH -kLm -gUE -dbB -vyT -vyT -vyT -wGk -jev -qhP +oWY +gjP +nxG +uoF +iwo +lEk +lEk +ueq +lEk +tKY +tRy +lEk +tRy +lEk +lEk +lEk +lEk +lEk +jdb +cFp +cFp +cFp +cFp +ewJ +yeh +sRP +sRP +sRP +sRP +sRP +sRP +sRP +sRP +oZP +dAG +tgU +yeh +sRP +vYO +tgU +fmE +mym +vYO +dAG +fmE +wpb +wpb +wpb +izL +sRP +stn boJ -cqj -uVC -uvX -cqj +oJU +qmY +vOY +oJU apg -iiK -ues -dIQ -sfS -sLe -sfS -sfS -dIQ -sfS -pwJ -iiK -iiK -iiK -iiK -iiK -iiK -quL -iiK -iiK -iiK -iiK -iiK -iiK -iiK -iiK -mxj +mEu +fgv +jDD +qGc +dtT +qGc +qGc +jDD +qGc +ukE +mEu +mEu +mEu +mEu +mEu +mEu +vFG +mEu +mEu +mEu +mEu +mEu +mEu +mEu +mEu +hiV aEy aEy aEy @@ -62913,89 +62913,89 @@ ylo ylo ylo aal -fUP -bMs -qju -oVZ -umv -imM -iSM -oVZ -umv -imM -vVK -oVZ -umv -ous -gIK -oVZ -umv -ous -qju -oVZ -jro -wau -eYC -qju -qju -vwt -qju -oVZ -szF -pJh -ous -kqa -oVZ -pJh -ous -qju -uvg -qxF -fXv -qju -wmA -tyM -rHt -eMn +vEy +qqj +tLN +efs +bJt +itY +wBB +efs +bJt +itY +yaL +efs +bJt +nRC +qIA +efs +bJt +nRC +tLN +efs +uPb +niW +qxr +tLN +tLN +gUm +tLN +efs +wgL +vHm +nRC +qVK +efs +vHm +nRC +tLN +sBA +wHv +hjd +tLN +myU +cco +rig +jNX adJ -vnx -fBN -nIR -qWh -fBN -usX +tBJ +jgj +lZy +onw +jgj +eyQ adJ -gCe -eoo -xKe -rgC -mOv -rgC -rgC -rgC -pxg -rgC -rgC -vCT -ggS -wRP -tXx -gBT -wOu -mxJ -mtf -pSe -ugs -ugs -rBk -iCG -vnw +mCP +whr +lcT +pKy +jOT +pKy +pKy +pKy +dJO +pKy +pKy +wOB +lVR +gmU +dvz +uFB +nIN +nhY +xZv +mNC +oaO +oaO +dnW +eoj +qtW aQC aQC aQO aQO -hdq -kts +cfr +xas bfc bfc bfc @@ -63019,17 +63019,17 @@ bff bfc jFP aIx -giH -lEo -vEA -wRN +fDn +snK +hHz +nEs aJc -kfB -wRN -vEA -xKn -wRN -fea +ujJ +nEs +hHz +qpS +nEs +nKP gLs hqX hqX @@ -63064,31 +63064,31 @@ ylo ylo ylo arA -qax -wSr -xim -jEZ -xim -jEZ -vmK +jLw +vBe +xWd +liU +xWd +liU +esk ahn -liM -xHw -xim -xim -xim -xim -xim -xim -xim -nrw -dVE -uKH -uKH -uKH -uKH -gUE -rap +pSM +vgz +xWd +xWd +xWd +xWd +xWd +xWd +xWd +uoF +dVF +tgU +tgU +tgU +tgU +dAG +mte ahQ ahQ ajf @@ -63097,17 +63097,17 @@ ajf ajf ahQ ahQ -dAg -gUE -uKH -rap +swy +dAG +tgU +mte kyQ aoY -qbk +xmk aoY aoY aoY -txF +jwW aoY aoY aoY @@ -63116,39 +63116,39 @@ aoY apg apg apg -fqt -sfS -uyB -deN -eex -deN -deN -sLy -deN -deN -deN -deN -mMp -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -qLJ -sfS -sfS -sfS -sfS -pwJ -mxj -eFu +voQ +qGc +lIG +osC +euo +osC +osC +oLr +osC +osC +osC +osC +qld +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +ukE +hiV +xEY aiD "} (66,1,1) = {" @@ -63174,45 +63174,45 @@ abT abD abD abD -osa +gwH abD abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aaj aal aal aal aaj -qQl -eJn -tRN +oCK +nJZ +iSV adF -qQl -tBQ -tRN +oCK +rdV +iSV aaj aal aal aal aaj -gCe -oLD -eoo -eMn +mCP +sFX +whr +jNX adJ -oAi -sLQ -cWs -fbc -cWs -uuF +nww +mAM +sgb +hcn +sgb +dif adJ -sPl -eoo -fbl +xAc +whr +vhb asm asm asm @@ -63226,20 +63226,20 @@ asm asm asm asm -wOu -noG -gWx -iCG -iCG -iCG -iCG -iCG -rTv +nIN +veR +eHG +eoj +eoj +eoj +eoj +eoj +qNE aQC -hdq +cfr aQO aQO -hdq +cfr aQC bfg bfc @@ -63264,17 +63264,17 @@ beO beO jFP aIx -wRN -vEA -eSF -dbl +nEs +hHz +mfq +xrI aJc -smA -xij -vEA -xKn -vjx -rfr +eQw +fgw +hHz +qpS +cYd +lpm gLs gLs gLs @@ -63309,91 +63309,91 @@ ylo ylo ylo arA -hiU -jEZ -xim -jEZ -xim -wSr -oau +sjp +liU +xWd +liU +xWd +vBe +wBE ahS -qax -xHw -xim -xim -xim -xim -xim -xim -xim -nrw -dVE -uKH -uKH -uKH -uKH -gUE -rap +jLw +vgz +xWd +xWd +xWd +xWd +xWd +xWd +xWd +uoF +dVF +tgU +tgU +tgU +tgU +dAG +mte ahQ -wyr -uOB -pFc -ftg -iup -kON +nMq +rMY +uBX +nOI +qyG +oVD ahQ -nQr -gUE -uKH -rap +rui +dAG +tgU +mte kyQ -nNv -hRc -gJR +oCi +qYT +gQt aoY -vLI -iGt +iKJ +mtZ aoY -sLj -iNi -oMU -jUW +qjO +cFM +dkx +dPF apg -mDE -mDE -jBF -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -qLJ -sfS -sfS -sfS -qLJ -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -fyo -eFu +iyb +iyb +vnQ +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +gAX +xEY aiD "} (67,1,1) = {" @@ -63418,14 +63418,14 @@ adG mfN aed abD -iqm -dLt -iqm +rhb +hrE +rhb abD -qaA -khZ -pbW -niX +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -63443,45 +63443,45 @@ ylo ylo ylo acM -sPl -oLD -eoo -eMn +xAc +sFX +whr +jNX adJ -vnx -nWk -jlo -riw -fBN -usX +tBJ +ykY +owR +tlM +jgj +eyQ adJ -gCe -eoo -fbl +mCP +whr +vhb asm -mPl +lHW asm -eUa +rkS asm -eUa +rkS asm -lYI -ovt -mXX -jeN -xTD +vgM +uvC +cKO +cpp +swD asm -skd -noG -gSA +uhv +veR +cci arN -eRW -uEH -vnw -iCG -iCG -kts -hdq +qIx +deb +qtW +eoj +eoj +xas +cfr aQW aQO aQC @@ -63509,22 +63509,22 @@ beX beX jFP aIx -vuk -vEA -xKn -vuk +fbd +hHz +qpS +fbd aIx -kGf -tfp -vEA -xKn -syS -hsV +veG +lQO +hHz +qpS +wqs +kQX gLs bYd buU -sYp -xXs +oii +wYF aIx eOe aeo @@ -63554,91 +63554,91 @@ ylo ylo ylo arA -qax -jEZ -xim -wSr -xim -jEZ -oau +jLw +liU +xWd +vBe +xWd +liU +wBE ahS -qax -xHw -nrw -nrw -nrw -nrw -nrw -nrw -nrw -nrw -dVE -uKH -fMV -uKH -uKH -gUE -ugT +jLw +vgz +uoF +uoF +uoF +uoF +uoF +uoF +uoF +uoF +dVF +tgU +uQu +tgU +tgU +dAG +fjj ajf -uhN -hVn -rql -hVn -hVn -ifF +cMO +lKR +jlT +lKR +lKR +fbp ajf -ibb -gUE -uKH -rap +cVe +dAG +tgU +mte kyQ -lNj -vot -fRh +rUt +ree +tgw aoY -tyt -eJI -qJD -cJd -hLd -uCe -qeP +ffi +mcG +wzH +gOT +cBt +nEg +xJC apg -itv -itv -jBF -sfS -eFu -eFu -sfS +ulP +ulP +vnQ +qGc +xEY +xEY +qGc apk apk apk -osk -sMn +qzB +vsz apk apk apk -osk -sMn +qzB +vsz apk apk apk apk apk -osk -sMn +qzB +vsz apk apk apk -osk -sMn +qzB +vsz apk apk apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (68,1,1) = {" @@ -63663,14 +63663,14 @@ abb mfN aaq abD -iqm -dLt -iqm +rhb +hrE +rhb abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aal ylo ylo @@ -63688,48 +63688,48 @@ ylo ylo ylo aek -gCe -oLD -eoo -eMn +mCP +sFX +whr +jNX adJ -nDL -oxw -oxw -oxw -oxw -nDz +toW +kom +kom +kom +kom +dCT adJ -gCe -eoo -fbl +mCP +whr +vhb asm -dUf +pJg asm -dUf +pJg asm -dUf +pJg asm -xKq -xKq -wML -xKq -xKq -gOD -gWx -noG -sla +cwU +cwU +evZ +cwU +cwU +oga +eHG +veR +xxz arN -iCG -uEH -lfb -iCG -iCG +eoj +deb +hsz +eoj +eoj aQC -sYC -hdq -hdq -xzu +icq +cfr +cfr +iFl aQz ylo aSa @@ -63754,22 +63754,22 @@ aIk aIk jFP aIx -elZ -elZ -sHH -tbv +csg +csg +hlg +ghp aIx aIx aIx -vEA -uUI +hHz +gvP aIx aIx gLs bQH bQN -rcl -sbR +esU +lJW aIx eOe bfc @@ -63789,7 +63789,7 @@ aeo bfZ bge aQC -kVM +hNr aQC aiU ylo @@ -63799,91 +63799,91 @@ ylo ylo ylo arA -ozu -jyc -nrw -nrw -nrw -hNY -klQ +eIZ +kGq +uoF +uoF +uoF +dVR +uew ahn -qax -xHw -hNY -pyf -kZc -deQ -pyf -pyf -fuc -mmU +jLw +vgz +dVR +peD +gDV +hMe +peD +peD +wgI +mSZ ahn -wJm -sMy -ikI -uKH -hnm -oUG -mTR -wGK -wGK -pGg -wGK -wGK -wGK -mTR -oUG -iLu -uKH -rap +gRM +orl +duw +tgU +fkM +hWR +jBL +dyW +dyW +eqQ +dyW +dyW +dyW +jBL +hWR +ewJ +tgU +mte kyQ aoY aoY aoY aoY -oDd -iGt +gDw +mtZ aoY -uBU -oRi -syA -iKg +lqO +rtV +iZr +tyM apg -eFu -eFu -jBF -sfS -eAh -eAh -sfS +xEY +xEY +vnQ +qGc +nSj +nSj +qGc apk -rhG -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -pMs -cgV +quf +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +xkR apk -qLJ -fyo -eFu +jhk +gAX +xEY aiD "} (69,1,1) = {" @@ -63908,14 +63908,14 @@ aei sfx aed abD -kpN -ipz -iqm +gny +fwo +rhb abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aal ylo ylo @@ -63933,37 +63933,37 @@ ylo ylo ylo aek -gCe -oLD -eoo -eMn +mCP +sFX +whr +jNX adJ -taP -fUM -kAO -pVs -qVU -spt +rgK +iWf +jfx +gbp +tVC +nLj adJ -gCe -eoo -fbl +mCP +whr +vhb asm -xKq -hIU -pUq -rpm -rpm -ull -lCf -pQv -lLl -rpm -rpm -rpm -mtf -fSM -sla +cwU +qwE +qdw +joC +joC +bJd +icd +trR +hHR +joC +joC +joC +xZv +eLe +xxz asp asp asp @@ -63999,22 +63999,22 @@ aIk aIk iQh aIx -gWT -vEA -xKn -vuk -hAq -yhP -stZ -vEA -xKn -hAq -oto +dxF +hHz +qpS +fbd +mAk +vVN +vuI +hHz +qpS +mAk +nfM gLs gLs gLs -dcm -ijB +xzT +jnh aIx oJn bfc @@ -64034,7 +64034,7 @@ bfg beP aQC aQC -hdq +cfr aUR aqs aqs @@ -64046,14 +64046,14 @@ arA arA ahn ahn -uHA -uHA -uHA +hsL +hsL +hsL ahn ahn ahn boq -cGv +iWm ahn ahS ahS @@ -64063,46 +64063,46 @@ ahS ahS ahn ahn -eiz -egy -dQz -uKH -gUE -gaD +kvY +tHs +pZx +tgU +dAG +yeh ajf -czr -hVn -fkW -mHA -hVn -nwz +ceO +lKR +rWT +eRa +lKR +nZG ajf -lZR -gUE -uKH -rap +oZP +dAG +tgU +mte kyQ -cSK -gQx -jHi -jHi -qiR -iGt +ydT +ksV +mli +mli +ewA +mtZ aoY aoY aoY aoY aoY apg -mDE -itv -jBF -qLJ -eAh -eAh -sfS +iyb +ulP +vnQ +jhk +nSj +nSj +qGc apk -sMn +vsz apk apk apk @@ -64124,11 +64124,11 @@ aiH apj ahW apk -osk +qzB apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (70,1,1) = {" @@ -64153,14 +64153,14 @@ abv abs aaq abD -iqm -tGi -iqm +rhb +uuq +rhb abD -qaA -khZ -pbW -mBy +pSY +etQ +hzh +rgP aal ylo ylo @@ -64178,48 +64178,48 @@ ylo ylo ylo aek -gCe -oLD -eoo -eMn +mCP +sFX +whr +jNX adJ adJ -hEB -rFd -yky -pjh +nOZ +cQZ +upx +kLr adJ adJ -sPl -eoo -fbl +xAc +whr +vhb asm -lYI -lYI -xlu -mzK -qbU +vgM +vgM +mZb +uaU +eze asm -wML -xKq -xKq -knM -qbU +evZ +cwU +cwU +eIU +eze asm -oPV -noG -sla +eWs +veR +xxz asp -oxC -rKc -oxC -fqN -rKc -hoU -rKc -koX -sQC -xRj +lFS +krX +lFS +ipH +krX +oTC +krX +iwW +tNU +tql akt akt aSa @@ -64244,22 +64244,22 @@ kIW kIW lGP aIx -syC -vEA -sUm -nFD -nFD -nFD -nFD -sOF -dUz -nFD -nFD -wzA -nFD -nFD -hcI -tSt +ePF +hHz +dGU +wdR +wdR +wdR +wdR +pgW +lOo +wdR +wdR +kgc +wdR +wdR +qgT +ueu aIx oJn bfc @@ -64279,101 +64279,101 @@ bfv bfz aQC axH -hdq +cfr aQO agZ -oLr -uEF -nCS -fRP +hFL +hVe +vfY +cmG agZ -dAg -xOh -dwy -iaX -ggi -ggi -ggi -xOh -nTQ -nTQ -iaX -gUE -xOh -nTQ -nTQ -nTQ -nTQ -nTQ -nTQ -nTQ -nTQ -nTQ -nTQ -mkF -uKH -gUE -psX +swy +dPC +enA +iNz +jpa +jpa +jpa +dPC +myw +myw +iNz +dAG +dPC +myw +myw +myw +myw +myw +myw +myw +myw +myw +myw +kGE +tgU +dAG +tHr ahQ -xlf -wcW -eur -kDF -haS -eyV +iBp +cqz +pAZ +tKv +xEM +rWF ahQ -dAg -gUE -uKH -rap +swy +dAG +tgU +mte kyQ -uER -uCe -uCe -uCe -uCe -iGt -pBp -ekz -knf -gzE -jxe +iRf +nEg +nEg +nEg +nEg +mtZ +vRI +qLH +jcY +eNP +nar apg -itv -mDE -jBF -sfS -eAh -eAh -sfS -lLn -sMn +ulP +iyb +vnQ +qGc +nSj +nSj +qGc +lKK +vsz apk apk apk aEe -szz -szz -szz -dhd -ujY -gwh -cJi -dhd -szz -szz -szz +pdf +pdf +pdf +cCZ +hBJ +fnI +pXA +cCZ +pdf +pdf +pdf aiw aie aie aie apm ahW -osk -lLn -sfS -fyo -eFu +qzB +lKK +qGc +gAX +xEY aiD "} (71,1,1) = {" @@ -64398,14 +64398,14 @@ abD abD aee abD -iqm -mOI -iqm +rhb +vui +rhb abD -qaA -khZ -pbW -niX +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -64423,21 +64423,21 @@ ylo ylo ylo acM -sPl -oLD -eoo -eMn -jzU +xAc +sFX +whr +jNX +sVx adJ adJ adJ adJ adJ adJ -jzU -gCe -eoo -fbl +sVx +mCP +whr +vhb asm asm asm @@ -64445,17 +64445,17 @@ asm asm asm asm -wML -xKq +evZ +cwU asm asm asm asm -gbY -jXl -sla +sKm +kRI +xxz asq -jXL +nMB jnA bCb bCe @@ -64465,7 +64465,7 @@ asy bCk bCo bCp -hXZ +grE akt akt aSa @@ -64489,23 +64489,23 @@ aIk aIk beX aIx -eiy -vEA -vEA -vEA -vEA -vEA -vEA -xKn -vEA -vEA -vEA -rID -vEA -vEA -gGn -sUm -gFM +qgf +hHz +hHz +hHz +hHz +hHz +hHz +qpS +hHz +hHz +hHz +pqz +hHz +hHz +pyW +dGU +gGH xha bfc bfc @@ -64524,41 +64524,41 @@ beZ aiU aQC aQV -hdq +cfr baz agZ -vYG -rvK -gmT -xPd +yiS +uxi +gNO +wrK bCS -dAg -uKH -uKH -uKH -uKH -uKH -uKH -uKH -uKH -fMV -uKH -gUE -uKH -uKH -uKH -uKH -uKH -uKH -uKH -uKH -uKH -uKH -uKH -gUE -uKH -gUE -rap +swy +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +uQu +tgU +dAG +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +dAG +tgU +dAG +mte ahQ ahQ ajf @@ -64567,58 +64567,58 @@ ajf ajf ahQ ahQ -dAg -lIk -uKH -rap +swy +jkO +tgU +mte kyQ -fFN -uCe -nQQ -cJd -cJd -lNg -uCe -uCe -uCe -uCe -xhu +gkm +nEg +psT +gOT +gOT +kpR +nEg +nEg +nEg +nEg +jAB apg -eFu -eFu -jBF -sfS -eAh -eAh -sfS -pMs -sMn +xEY +xEY +vnQ +qGc +nSj +nSj +qGc +fSp +vsz apk aDY nbl aia -sZH -myE -pDm -pDm -pDm -pDm -dAI -pDm -pDm -pDm -kqt -szz -szz -szz -szz +ibb +cdw +kbr +kbr +kbr +kbr +oRv +kbr +kbr +kbr +dtM +pdf +pdf +pdf +pdf aiw apm -eCi -pMs -sfS -fyo -jSp +jyV +fSp +qGc +gAX +bYg aEy "} (72,1,1) = {" @@ -64647,60 +64647,60 @@ abi abi abi abi -gCe -oLD -eoo -eMn +mCP +sFX +whr +jNX acM aek aek aek acM -ump -iFq -vwD +whp +iVx +lkc ald -ump -rmb -vwD +whp +dYO +lkc acM aek aek aek acM -gCe -oLD -eoo -laQ -qRd -qRd -qRd -qRd -qRd -qRd -qRd -qRd -iFw -eoo -mdL -fae -fae -mPD -tKY -fae +mCP +sFX +whr +tUC +xCG +xCG +xCG +xCG +xCG +xCG +xCG +xCG +dQV +whr +cII +jrt +jrt +jYe +oXs +jrt asm -cGy -wML -xKq +phc +evZ +cwU asm -oJX -lbV +wVc +nMh asm -wOu -rqH -sla +nIN +oeb +xxz asq -jXL +nMB ffF bCb bCf @@ -64711,7 +64711,7 @@ bCm bCo bBZ bCb -oxC +lFS akt akt aSa @@ -64734,22 +64734,22 @@ aIk aIk aIk aIx -xIS -xIS -xIS -xIS -xIS -dNg -vuk -xKn -vEA -vuk -uAm +qzU +qzU +qzU +qzU +qzU +kLn +fbd +qpS +hHz +fbd +rHm aIx -jeQ -pSy -dDr -fqu +xWk +eLN +rAD +fib aIx bYI wiF @@ -64769,101 +64769,101 @@ aiU aiU mwC mwC -sZQ +sKe mwC agZ -kSr -gmT -gmT -xPd +nvf +gNO +gNO +wrK bCS -dAg -uKH -tBp -kKH -kKH -kKH -kKH -xpa -kKH -kKH -kKH -gjr -kKH -kKH -kKH -kKH -kKH -tmP -kKH -kKH -kKH -kKH -kKH -gjr -kKH -iLu -ugT -xBB -xBB -xBB -xBB -xBB -xBB -xBB -xBB -ibb -gUE -uKH -rap +swy +tgU +xwn +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +irc +cFp +cFp +cFp +cFp +cFp +cJq +cFp +ewJ +fjj +hft +hft +hft +hft +hft +hft +hft +hft +cVe +dAG +tgU +mte kyQ -wWT -uCe -uCe -gFv -vNj -lxI -gFv -uCe -uCe -uCe -lCc +wvp +nEg +nEg +cGM +ukx +rdo +cGM +nEg +nEg +nEg +oRT apg -mDE -itv -jBF -sfS -eAh -eAh -sfS +iyb +ulP +vnQ +qGc +nSj +nSj +qGc apk -sMn +vsz apk aEe -jih -ujY -wVN -vwN -vwN -vwN -vwN -vwN -vwN -vwN -vwN -vwN -lHc -pDm -pDm -pDm -myE -pDm +vFX +hBJ +weY +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +uON +kbr +kbr +kbr +cdw +kbr fSX -eCi +jyV apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (73,1,1) = {" @@ -64882,70 +64882,70 @@ ylo ylo ylo aap -coA -dAL -cNB -aGZ +icB +opC +suE +sQO abi -lGO -iAg -lVu -xNq +vle +mAA +lXl +ewo abi -dLq -oLD -eoo -laQ -qRd -qRd -qRd -qRd -ycy -iFw -wDe -laQ -mmC -iFw -wDe -laQ -ycy -qRd -qRd -qRd -qRd -iFw -oLD -fAu -oLD -onD -tyM -tyM -tyM -tyM -tyM -tyM -tyM -tyM -ouN -tyM -mtf -mtf -psJ -cFW -mtf -tMP -rpm -lLl -rpm -fMC -sPU -lbV +xIt +sFX +whr +tUC +xCG +xCG +xCG +xCG +mbR +dQV +laB +tUC +leZ +dQV +laB +tUC +mbR +xCG +xCG +xCG +xCG +dQV +sFX +qHA +sFX +deQ +cco +cco +cco +cco +cco +cco +cco +cco +oib +cco +xZv +xZv +lsv +nMX +xZv +fuc +joC +hHR +joC +xuY +oLj +nMh asm -wOu -noG -nuG +nIN +veR +fNI asp -syY +lDH asy asy bCe @@ -64957,7 +64957,7 @@ asy npN asy asy -dWz +cpC akt akt aSa @@ -64980,21 +64980,21 @@ aIk beX aIx aIK -tUV +kDY aIx aIx aIx -tMH -kaD -xKn -vEA -oPl -iok +iVw +gtS +qpS +hHz +tdX +fnM aIx aIx aIx aIx -cDo +lFT aIx oJn bfc @@ -65012,103 +65012,103 @@ aiU aiU ylo aqs -qZP -gMc -pRk -qZP +iRo +uRY +mVp +iRo agZ -lHJ -gmT -gmT -gQd +iwh +gNO +gNO +jMI agZ -ibb -fMV -gUE -gaD -tQv -jev -lZR -gUE -gxB -jev -jev -jev -jev -jev -dZY -jev -jev -tQv -jev -lZR -uKH -uKH -uKH -fMV -uKH -hnm -kKH -kKH -kKH -kKH -kKH -xpa -kKH -kKH -kKH -kKH -iLu -uKH -rap +cVe +uQu +dAG +yeh +hkY +sRP +oZP +dAG +kTA +sRP +sRP +sRP +sRP +sRP +hwl +sRP +sRP +hkY +sRP +oZP +tgU +tgU +tgU +uQu +tgU +fkM +cFp +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cFp +cFp +ewJ +tgU +mte kyQ -dKT -xTO -cgc -cQm -hPU -uPA -mZF -eec -xTO -oRp -sNA +pRL +fDI +cHo +nLU +rTN +vZI +sGd +llc +fDI +lKo +rnG apg -mDE -itv -jBF -sfS -eAh -eAh -sfS +iyb +ulP +vnQ +qGc +nSj +nSj +qGc apk -sMn +vsz aDY aia -dhd -dhd -wVN -szz -szz -szz -szz -szz -szz -szz -szz -szz -wVN -ujY -ujY -ujY -sTm +cCZ +cCZ +weY +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +weY +hBJ +hBJ +hBJ +lQQ aiA aQf -eCi +jyV apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (74,1,1) = {" @@ -65127,70 +65127,70 @@ ylo ylo ylo aap -rDi -lAj -xLk -dBg +ljd +shf +hJR +npJ abi -sLh -vFK -cyp -cyp -wRU -tyM -tyM -ouN -tyM -tyM -tyM -tyM -tyM -tyM -pbY -tyM -tyM -ouN -tyM -tyM -tyM -tyM -tyM -tyM -pbY -tyM -tyM -pbY -iWs -tyM -rHt -xKe -rgC -mOv -rgC -rgC -rgC -mOv -rgC -rgC -rgC -vII -vII -oPV -noG -gWx -qFb -xKq -xKq -fLi +rRw +gIM +qgG +qgG +cVr +cco +cco +oib +cco +cco +cco +cco +cco +cco +gbY +cco +cco +oib +cco +cco +cco +cco +cco +cco +gbY +cco +cco +gbY +szj +cco +rig +lcT +pKy +jOT +pKy +pKy +pKy +jOT +pKy +pKy +pKy +xRw +xRw +eWs +veR +eHG +rSn +cwU +cwU +xQG asm -wML -lbV +evZ +nMh asm -wOu -noG -gWx -pgR -xRj +nIN +veR +eHG +tMI +tql asy asy fsL @@ -65203,7 +65203,7 @@ asy asy fsL asy -xRj +tql akt akt aqK @@ -65224,24 +65224,24 @@ aLo aLo aIx aIx -iZJ -eZW +dsG +kzQ aIx -udI -ksC -oMg -qap -oyi -hxU -eUq -vde -ssS -rVq +xWt +dMX +yaI +tmL +ifq +ece +giG +eAW +rEF +oDT aIx -feO -vEA +wbY +hHz aIx -iyZ +uIp gLs gLs gLs @@ -65257,24 +65257,24 @@ aiU ylo ylo aqs -tdS -pRk -pRk -qZP +xYs +mVp +mVp +iRo agZ -kvy -pTw -oXx -oXx -rwz -kKH -kKH -iLu -rap +jyh +wKI +oRe +oRe +miq +cFp +cFp +ewJ +mte agZ agZ agZ -vPm +ceW agZ agZ bCV @@ -65286,26 +65286,26 @@ agZ agZ agZ aqs -dAg -uKH -uKH -uKH -uKH -uKH -gUE -uKH -uKH -uKH -uKH -uKH -gUE -uKH -uKH -uKH -uKH -gUE -uKH -rap +swy +tgU +tgU +tgU +tgU +tgU +dAG +tgU +tgU +tgU +tgU +tgU +dAG +tgU +tgU +tgU +tgU +dAG +tgU +mte kyQ kyQ kyQ @@ -65316,44 +65316,44 @@ kyQ kyQ kyQ kyQ -uda +naU kyQ apg apg apg -das -sfS -gAP -gAP -sfS +hcV +qGc +sQE +sQE +qGc apk -sMn +vsz aEc -mfK -dPN -pDm -bOk -pDm -pDm -pDm -pDm -pDm -pDm -pDm -pDm -pDm -fUD -pDm -pDm -pDm -pDm +ucF +dyu +kbr +uIr +kbr +kbr +kbr +kbr +kbr +kbr +kbr +kbr +kbr +sdB +kbr +kbr +kbr +kbr aQe ahW -eCi +jyV apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (75,1,1) = {" @@ -65372,43 +65372,43 @@ ylo aaE aaE aap -puH -kYi -kYi -ryM +rYI +owh +owh +whv abi -pBd -uKU -kYi -kYi -kYi -oLD -oLD -oLD -oLD -oLD -oLD -oLD -oLD -oLD -eoo -oLD -oLD -oLD -oLD -oLD -oLD -xJg -oLD -oLD -eoo -oLD -oLD -eoo -kdF -kdF -eoo -fbl +tlu +mrW +owh +owh +owh +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +whr +sFX +sFX +sFX +sFX +sFX +sFX +dFj +sFX +sFX +whr +sFX +sFX +whr +lqN +lqN +whr +vhb alI alI alK @@ -65420,22 +65420,22 @@ alI alI jfP jfP -skd -noG -shN +uhv +veR +pVH asm asm asm asm asm -eTB +hKT asm asm -gbY -mxJ -mtf -sSt -sSt +sKm +nhY +xZv +gCz +gCz cVR cVR gVr @@ -65449,14 +65449,14 @@ cVR qig asy asy -oxC +lFS akt -cpn -lRn -hYe -uTF -eQD -jxH +hLG +xTR +oQs +lpI +xOg +vRm aiU aiU aiU @@ -65464,29 +65464,29 @@ pwp bgk bfg aIx -mIo -ksC -ksC -yeP -uMW -eWi -ksC +wqg +dMX +dMX +wJl +nQL +pcr +dMX aIx -uLw -eUq -xaA -wGl -xKn -vEA -sjS -sjS -wGl -oik +rHj +giG +gVT +wQX +qpS +hHz +feM +feM +wQX +cbu aIx -kbX -vEA -dmL -moe +hCK +hHz +fwZ +uUi bQN hqX aCa @@ -65502,103 +65502,103 @@ ylo ylo ylo aqs -qjZ -pRk -pRk -qZP +ovr +mVp +mVp +iRo agZ -gNz -gmT -gmT -sLM +iKp +gNO +gNO +eBt agZ -lZR -uKH -gUE -rap +oZP +tgU +dAG +mte agZ -sdo -xWj -wik -dgS -hCO -rRP -rcV -hCO -uVL +gpl +pJE +eny +rJS +uqF +oqb +wER +uqF +xMe agZ -gqp -hCO -isN +vzR +uqF +oXW aqs -keB -dZY -jev -jev -jev -lZR -ydE -gaD -jev -lZR -sOw -uKH -lIk -sOw -gaD -jev -lZR -gUE -gaD -fjn -dvb -rxz +tww +hwl +sRP +sRP +sRP +oZP +ssV +yeh +sRP +oZP +xcN +tgU +jkO +xcN +yeh +sRP +oZP +dAG +yeh +eEB +tze +gmn pRl pRl -rxz -rxz +gmn +gmn pRl pRl pRl -rxz -rxz +gmn +gmn pRl tGq -ewm +vnr kyQ -jBF -sfS -gAP -gAP -sfS +vnQ +qGc +sQE +sQE +qGc apk -sMn +vsz aEd aii -dhd -dhd -fdO -vwN -vwN -vwN -vwN -vwN -vwN -vsV -vwN -vwN -wVN -ujY -ujY -fpJ -ujY +cCZ +cCZ +kwt +rOO +rOO +rOO +rOO +rOO +rOO +vyL +rOO +rOO +weY +hBJ +hBJ +mrR +hBJ aiw apm -eCi +jyV apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (76,1,1) = {" @@ -65615,72 +65615,72 @@ ylo ylo ylo aaE -eTY -kDx -puH -kYi -kYi -xJY +lIg +hWk +rYI +owh +owh +enn abi -dID -uKU -kYi -qtY +sBh +mrW +owh +rlX abi -hQY -hQY -hQY -qWS -emR -emR -emR -emR -wAl -eoo -vky -emR -emR -emR -emR -emR -emR -emR -nCz -ssc -oQc -wQC -fJk -fPG -stl -ssc -rXY +pSK +pSK +pSK +nMO +cWQ +cWQ +cWQ +cWQ +qmH +whr +pBF +cWQ +cWQ +cWQ +cWQ +cWQ +cWQ +cWQ +oOT +qAf +vrX +xxe +fml +ntS +xzp +qAf +raz alI btI gui aXU vAP -pXM -ntM -fwA -ntM -ntM -pXM -mtf -fSM -sla +cKW +nBT +xZS +nBT +nBT +cKW +xZv +eLe +xxz rTD -nNA -nNA -kVe -wcy -fvM -gtj +nob +nob +nvm +qvV +lMc +oFa rTD -wOu -noG -gSA +nIN +veR +cci asp -ihM +kcZ asy asy bCe @@ -65694,44 +65694,44 @@ sGB fmq bCo jnA -hXZ +grE akt -jIV -qPT -tON -gTZ -qPT -oeU -cpn -qXp +crY +wSI +dbc +cHy +wSI +qIu +hLG +sAU aiU aiU aiU bfu aIx -mjY -qkU -vEA -vEA -vEA -vEA -vEA -tvD -vEA -vEA -vEA -vEA -oyi -nFD -nFD -nFD -nFD -nFD -eEs -nFD -hxU -vEA -hSX +oqo +uBs +hHz +hHz +hHz +hHz +hHz +uWC +hHz +hHz +hHz +hHz +ifq +wdR +wdR +wdR +wdR +wdR +uNb +wdR +ece +hHz +jbx gLs hqX bYP @@ -65747,34 +65747,34 @@ ylo ylo ylo aqs -qZP -pRk -pRk -qZP +iRo +mVp +mVp +iRo agZ -uGq -gmT -gmT -xPd +ssc +gNO +gNO +wrK agZ -dAg -uKH -gUE -rap +swy +tgU +dAG +mte agZ -eaP -gmT -nAf -oXx -oXx -ikh -gmT -gmT -soK +mkV +gNO +qCR +oRe +oRe +nVb +gNO +gNO +fcA agZ -eyu -gmT -kkX +pBB +gNO +pkU aqs aoe aoe @@ -65782,68 +65782,68 @@ aoe aoe aoH aoH -tid +wNh aoH aoH aoe -wGn -mVF -noC -hnh +hdb +nOa +lIL +nak lac aoJ aoJ -cFK +kqJ aoJ aoJ kyQ -ewm +vnr vim tGq -rxz -rxz +gmn +gmn pRl vim pRl -rxz -rxz +gmn +gmn pRl vim -rxz -dvb -jBF -sfS -eFu -eFu -sfS +gmn +tze +vnQ +qGc +xEY +xEY +qGc apk -sMn +vsz apk aEe -ujY -mzh -wVN -szz -szz -szz -szz -szz -szz -szz -szz -szz -lHc -myE -pDm -pDm -pDm -pDm +hBJ +edV +weY +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +uON +cdw +kbr +kbr +kbr +kbr fSX -eCi +jyV apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (77,1,1) = {" @@ -65860,17 +65860,17 @@ ylo ylo ylo aaE -wAi -hFn -sKF -kYi -kYi -bMZ -lrg -cip -uKU -kYi -sLY +vaW +seD +eNV +owh +owh +pnq +wIG +knf +mrW +owh +yhI aNK aNK aNK @@ -65881,7 +65881,7 @@ auq auq auq auq -njH +qQl auq auq auq @@ -65890,42 +65890,42 @@ auq auq auq auq -jYv -ssc -oQc -vmv +oPI +qAf +vrX +pjG acd -kPw -stl -kJM -oQc -xtV +vVP +xzp +wLX +vrX +owN aXU aXU aXU wtM alI -tHx -tWk -tHx -cND +vte +iTq +vte +daV alI -oPV -noG -sla +eWs +veR +xxz rTD -nNA -nNA -nNA -wcy -xKq -tqc +nob +nob +nob +qvV +cwU +uxp rTD -wOu -noG -sla +nIN +veR +xxz asq -jXL +nMB jnA bCb bCg @@ -65939,44 +65939,44 @@ bCb fmq bCo ffF -fde +qZE akt -llL -qPT -qPT -gcp -qPT -oeU -ssv -jIV +qhQ +wSI +wSI +jzc +wSI +qIu +nyj +crY anw ylo aiU aiU aoW -oGW -lqh -qaM -aeK -whh -nFD -nFD -vSf -nFD -nFD -nFD -nFD -hcI -vEA -vEA -vEA -vEA -vEA -rID -vEA -vEA -vEA -vfX +hcK +vJC +iuF +rid +ixp +wdR +wdR +lSt +wdR +wdR +wdR +wdR +qgT +hHz +hHz +hHz +hHz +hHz +pqz +hHz +hHz +hHz +olq buU bYN hqX @@ -65992,55 +65992,55 @@ ylo ylo ylo aqs -hGn -hGn -hGn -eEi +bzO +bzO +bzO +gyV aqs -cen -gmT -gmT -yiN +lKl +gNO +gNO +heI aqs -hGn -hGn -pPP -djp +bzO +bzO +fqF +ybk ksH -xWj -gmT -gmT -fwf -gmT -gmT -gmT -gmT -gmT -oCd -gmT -gmT -xPd -pqd -sXF -jAU -dFS -luk -huF -hoo -sKk -eJJ -nMf +pJE +gNO +gNO +mmn +gNO +gNO +gNO +gNO +gNO +dKb +gNO +gNO +wrK +nIJ +rSs +hwU +vvh +fUx +bit +sth +pZq +ova +tWq bTk -tyZ -tyZ -qKA -ooi +nfQ +nfQ +xjc +oJC atH -gfR -sxk -wAf -vbV -dPm +sKn +oPj +fLi +ssq +xfH avQ avQ avQ @@ -66056,39 +66056,39 @@ avQ avQ avQ aEy -jBF -sfS -sfS -sfS -sfS -lLn -sMn +vnQ +qGc +qGc +qGc +qGc +lKK +vsz apk aEd neY aii -kEx -pDm -pDm -myE -pDm -pDm -pDm -pDm -pDm -pDm -kKC -vwN -vwN -vwN -vwN +npe +kbr +kbr +cdw +kbr +kbr +kbr +kbr +kbr +kbr +vfw +rOO +rOO +rOO +rOO aiA aQf -eCi -lLn -sfS -fyo -jSp +jyV +lKK +qGc +gAX +bYg aEy "} (78,1,1) = {" @@ -66105,72 +66105,72 @@ ylo ylo ylo aaE -sKV -cAi -sKF -kYi -kYi -kYi -cAi -kYi -uKU -kYi -cEZ +pCJ +hZq +eNV +owh +owh +owh +hZq +owh +mrW +owh +uCH aNK -pUn -nIX -hcc +euB +pvc +hBP aNK -muA -nsI -czC -nsI -thW -kte -mFA +eMl +eOJ +xFx +eOJ +vOL +ePm +giO auq -boC -rkZ -kHY -fbb -gvC +mfK +lUq +xaq +tgb +tgs auq -vak -ssc -oQc -trf +niu +qAf +vrX +slw acA -gRs -stl -fOG -qmS -vvE +haW +xzp +gEG +sIO +nmY awy awy awy pPN bHR -tHx -tHx -tHx -tHx +vte +vte +vte +vte alI -wOu -noG -sla +nIN +veR +xxz rTD -nNA -nNA -cIW -wcy -xKq -tqc +nob +nob +xrD +qvV +cwU +uxp rTD -wOu -noG -sla +nIN +veR +xxz asq -jXL +nMB ffF bCb bCe @@ -66184,16 +66184,16 @@ bCb fmq bCo jnA -hXZ +grE akt -wuQ -qPT -qPT -gcp -qPT -oeU -ssv -wWy +xKl +wSI +wSI +jzc +wSI +qIu +nyj +oFP aqK ylo ylo @@ -66202,26 +66202,26 @@ aoW aoW aoW aoW -hpa -lKr -hGP -hGP +vNX +sZX +luH +luH aIx -dNg -wRN -wRN -vuk -xKn -vEA -vuk -wRN -wRN -uAm +kLn +nEs +nEs +fbd +qpS +hHz +fbd +nEs +nEs +rHm aIx -jLA -ppB -dws -nuo +yiT +iAJ +xth +kMn qIU qIU qIU @@ -66237,55 +66237,55 @@ ylo ylo ylo aqs -wNk -pRk -pRk -wNk +xWX +mVp +mVp +xWX bCS -nqN -eJc -gmT -gJK +pTB +lKg +gNO +fYw bCS -dyL -pRk -lcu -dyL +jkg +mVp +uhI +jkg bCS -gmT -gmT -sLM +gNO +gNO +eBt agZ -pkX +fxk bSk agZ -pkX +fxk bSk agZ -nrF -iQk -vBX +iZc +lEZ +mSg aqs bTk bTk bTk bTk -isc -pho -oQt -pho -mHI -vJg -ygb -mVF -xBE -ygb +kKa +qyN +kQh +qyN +rLA +hGG +fLq +nOa +hxo +fLq aoJ -gxj -mYN -lKu -jip -jlu +epD +riM +muk +pSX +jAv aoR ylo aSa @@ -66301,39 +66301,39 @@ ylo ylo ylo aEy -das -sfS -sfS -sfS -sfS -pMs -sMn +hcV +qGc +qGc +qGc +qGc +fSp +vsz apk apk apk aEe -vwN -vwN -vwN -dhd -eNY -ujY -ujY -dhd -vwN -vwN -vwN +rOO +rOO +rOO +cCZ +fCY +hBJ +hBJ +cCZ +rOO +rOO +rOO aiA aiq aiq aiq aQf ahW -osk -pMs -sfS -fyo -eFu +qzB +fSp +qGc +gAX +xEY aiD "} (79,1,1) = {" @@ -66350,95 +66350,95 @@ ylo ylo ylo aaE -cKM -cAi -sKF -kYi -ryb -kYi -cAi -kYi -uKU -xLk -jrW +gCQ +hZq +eNV +owh +luD +owh +hZq +owh +mrW +hJR +cCi aNK -tle -oRm -kKv +gRq +kFC +hDh aNK -nUx -stH -stH -stH -stH -kte -nKF +jtr +oXd +oXd +oXd +oXd +ePm +qLT aPP -sfq -pyT -jTv -nFn -isF +keY +suT +gWT +nQN +vCp bCI -vak -ssc -oQc -ylR +niu +qAf +vrX +rjP aev -hNV -oQc -ssc -hCR +oHx +vrX +qAf +xAn alI bsL aXU aXU fSo axV -tHx -xtG -gaS -vUp +vte +hCu +cGS +pPr alI -gbY -noG -sla +sKm +veR +xxz rTD -nNA -nNA -qqN -wcy -xKq -esZ +nob +nob +ogz +qvV +cwU +eoq rTD -wOu -noG -sla +nIN +veR +xxz asp -oxC -xNJ -oxC -koX -xNJ -hoU -xNJ -tVF -wDp -xRj -xRj -rny -xRj -xRj -oxC +lFS +xqK +lFS +iwW +xqK +oTC +xqK +dxJ +hUm +tql +tql +xZg +tql +tql +lFS akt -mzx -xBx -pew -mll -qPT -oeU -ssv -wWy +nSw +tZE +xQn +hcX +wSI +qIu +nyj +oFP aqK ylo ylo @@ -66452,16 +66452,16 @@ aoW aoW aoW aoW -ygL -loQ -rvQ -dNg -xKn -vEA -uAm -mVu -bqu -wEw +uwO +mxe +mrZ +kLn +qpS +hHz +rHm +smD +uNc +nPC aoW aoW aoW @@ -66482,30 +66482,30 @@ ylo ylo ylo aqs -qZP -pRk -pRk -qZP +iRo +mVp +mVp +iRo bCS -khS -pdv -sNN -wYh +mPX +mkJ +crF +tfp bCS -qZP -pRk -lcu -qZP +iRo +mVp +uhI +iRo bCS -qTg -gmT -xPd +kVE +gNO +wrK agZ -qZP -jdE +iRo +tnr agZ -qZP -jdE +iRo +tnr aqs aqs aqs @@ -66515,22 +66515,22 @@ ylo ylo ylo bTk -rpD -hWM -sjZ -cXf -bDi +wvq +uQS +fqG +jNm +dza aoH -hnh -eok -mVF -hnh +nak +cMM +nOa +nak aoJ -drZ -iOl -lmQ -dsV -xjc +vsX +vgF +gNn +hFG +xzJ aoR ylo aSa @@ -66546,13 +66546,13 @@ ylo ylo ylo aEy -uif -dcs -qLJ -sfS -sfS +rZs +wVy +jhk +qGc +qGc apk -sMn +vsz apk apk apk @@ -66574,11 +66574,11 @@ aiI aQg ahW apk -osk +qzB apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (80,1,1) = {" @@ -66595,59 +66595,59 @@ ylo ylo ylo aaE -qQR -hFn -sKF -kYi -kYi -qtY -izO -kdi -uKU -kYi -qVi +rvy +seD +eNV +owh +owh +rlX +pvE +fmA +mrW +owh +cbH aNK -eOa -oRm -oJg -odK -kja -kja -kja -iKT -lTg -gIg -xtT +seW +kFC +hCj +cTn +xJt +xJt +xJt +sIT +lCM +jvB +nFE aPP -vob -nUx -kja -kja -isF +lwK +jtr +xJt +xJt +vCp bCI -vak -ssc -oQc -bve -wSL -pFR -oQc -ssc -kTV +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +mSI alI aXU aXU aXU fSo aTj -tHx +vte alI alI alI alI -wOu -noG -sla +nIN +veR +xxz asm rTD rTD @@ -66656,9 +66656,9 @@ asm rTD rTD asm -wOu -noG -sla +nIN +veR +xxz asp asp asp @@ -66671,19 +66671,19 @@ asp asp asq asq -fSF +nVx asq asq asp akt -kJJ -kJJ -kJJ -uyi -qPT -oeU -ssv -iwL +mkj +mkj +mkj +uti +wSI +qIu +nyj +pwF anw anw anw @@ -66700,10 +66700,10 @@ aoW aoW aoW aoW -elZ -sHH -elZ -ruF +csg +hlg +csg +yiH aoW aoW aoW @@ -66727,30 +66727,30 @@ ylo ylo ylo aqs -qZP -pRk -pRk -qZP +iRo +mVp +mVp +iRo bCS -uJw -dAd -dAd -iIA +qVm +fLQ +fLQ +btp bCS -qZP -pRk -lcu -qZP +iRo +mVp +uhI +iRo bCS -oYl -jpt -cbM +iHa +wqF +bch bDn -qZP -jdE +iRo +tnr agZ -qZP -jdE +iRo +tnr aqs ylo ylo @@ -66766,10 +66766,10 @@ gJX gJX gJX bTk -wcp -kCg -wcp -maT +xjj +iTy +xjj +mxl atH jqo jqo @@ -66792,38 +66792,38 @@ ylo ylo aEy aEy -jBF -sfS -sfS -sfS +vnQ +qGc +qGc +qGc apk -xcl -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -lLn -efx +qVc +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +vUt apk -qLJ -fyo -eFu +jhk +gAX +xEY aiD "} (81,1,1) = {" @@ -66840,45 +66840,45 @@ ylo ylo ylo aaE -qoo -fve -sKF -kYi -kYi -sLY +fKS +rEi +eNV +owh +owh +yhI abi -dTr -uKU -xLk -jrW +fuR +mrW +hJR +cCi aNK -uQI -oRm -gfd +jkN +kFC +eqO aNK -mia -stH -wwj -sIa -stH -sdN -lTg -xhp -pKN -lTg -lhK -kja -vns +xEB +oXd +vQH +cjY +oXd +eFC +lCM +cLN +hRo +lCM +nTi +xJt +hBC auq -vak -ssc -oQc -bve -dCl -pFR -oQc -ssc -jbk +niu +qAf +vrX +oUa +pfJ +jDg +vrX +qAf +jBj alI awA aXU @@ -66887,68 +66887,68 @@ fSo aFE alI alI -jHS -gLe -gLe -skd -noG -nuG -fae -utm -cTV -wYv -wYv -eui -utm -fae -skd -noG -nuG -fae -fae -fae -fae -fae -xMx -fae -fae -fae -fae -fae -skd -noG -nuG -fae -lut -qPT -qPT -qPT -qPT -qPT -qPT -vVD -eQD -eQD -kuk -qPT -oIV -qPT -qPT -qPT -qPT -qPT -oIV -qPT -jIV +hEy +eKQ +eKQ +uhv +veR +fNI +jrt +cYH +swA +gln +gln +feX +cYH +jrt +uhv +veR +fNI +jrt +jrt +jrt +jrt +jrt +fBI +jrt +jrt +jrt +jrt +jrt +uhv +veR +fNI +jrt +wWv +wSI +wSI +wSI +wSI +wSI +wSI +ppg +xOg +xOg +oMq +wSI +fCE +wSI +wSI +wSI +wSI +wSI +fCE +wSI +crY aqK ylo aSa ylo aqK -ssv -qlc -vcX -ssv +nyj +nTq +gVb +nyj aqK ylo aSa @@ -66972,23 +66972,23 @@ aqK aqK ylo aqs -qZP -pRk -pRk -qZP +iRo +mVp +mVp +iRo aqs bCV -sPq -tJM +aVR +rkn bCV aqs -qZP -pRk -lcu -qZP +iRo +mVp +uhI +iRo agZ -omJ -rjy +pEu +jiB aqs aqs aqs @@ -67037,38 +67037,38 @@ ylo ylo ylo aEy -jBF -sfS -sfS -sfS +vnQ +qGc +qGc +qGc apk apk apk -osk -sMn +qzB +vsz apk apk apk -osk -sMn +qzB +vsz apk apk apk apk apk -osk -sMn +qzB +vsz apk apk apk -osk -sMn +qzB +vsz apk apk apk -sfS -fyo -eFu +qGc +gAX +xEY aiD "} (82,1,1) = {" @@ -67087,43 +67087,43 @@ ylo aaE aaE aap -rsZ -kYi -kYi -sLY +xIa +owh +owh +yhI abi -dTr -uKU -kYi -ksi +fuR +mrW +owh +qoz aNK -fAs -pfE -pwP +exX +lwb +sjF aNK -iGI -hcy -qmK -gnc -lBf -kte -uIi +wzi +kTU +mkb +maM +iRg +ePm +eUd aPP -lBf -dFf -kja -kja -isF +iRg +iCl +xJt +xJt +vCp bCI -vak -ssc -oQc -bve -xwn -pFR -oQc -ssc -bve +niu +qAf +vrX +oUa +lCb +jDg +vrX +qAf +oUa alK bhx bhx @@ -67132,105 +67132,105 @@ xVS bhx bhx alK -wOu -gWx -gWx -gWx -noG -pEt -pEt -gWx -gWx -gWx -gWx -nzQ -mtf -mtf -mtf -psJ -cFW -mtf -mtf -mtf -mtf -mtf -mtf -mtf -mtf -mtf -cFW -mtf -mtf -psJ -mtf -cFW -bsc -bsc -tVX -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -gjL -qPT -wWy +nIN +eHG +eHG +eHG +veR +vGG +vGG +eHG +eHG +eHG +eHG +jIV +xZv +xZv +xZv +lsv +nMX +xZv +xZv +xZv +xZv +xZv +xZv +xZv +xZv +xZv +nMX +xZv +xZv +lsv +xZv +nMX +luU +luU +vEl +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +nee +wSI +oFP aqK ylo aSa ylo aqK -vys -qlc -vcX -vys +sRM +nTq +gVb +sRM aqK ylo aSa ylo aqK -qPT -lRn -fpG -sPo -qPT +wSI +xTR +hlQ +lXv +wSI aqK ylo ylo ylo aqK -qPT -lRn -fpG -rRy -qPT +wSI +xTR +hlQ +rTc +wSI aqK ylo aqs -qZP -pRk -pRk -pRk -hGn -fbR -hCO -hCO -uVb -hGn -pRk -pRk -lcu -qZP +iRo +mVp +mVp +mVp +bzO +ioZ +uqF +uqF +daf +bzO +mVp +mVp +uhI +iRo aqs aqs aqs @@ -67282,38 +67282,38 @@ ylo ylo ylo aEy -uif -vJd -vJd -dcs -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -qLJ -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -fyo -eFu +rZs +kLA +kLA +wVy +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +gAX +xEY aiD "} (83,1,1) = {" @@ -67332,15 +67332,15 @@ ylo ylo ylo aap -ycV -uVd -kYi -xRd -str -mth -uKU -xLk -jrW +tsH +rAt +owh +xmn +fYj +cjt +mrW +hJR +cCi aNK aNK aNK @@ -67350,25 +67350,25 @@ auq auq auq auq -tKV -kte -isF +kES +ePm +vCp aPP -tKV -stH -rqz -emr -oRk +kES +oXd +dQY +wNQ +vDP bCI -vak -ssc -oQc -bve -wSL -pFR -oQc -ssc -bve +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +oUa alK axV axV @@ -67377,105 +67377,105 @@ mag axV bHR alK -wOu -nzQ -mtf -mtf -psJ -mtf -uok -qAj -qAj -cFW -mtf -dPJ -gSA -scI -oPV -gWx -noG -gSA -scI -vII -vII -vII -vII -scI -oPV -gWx -noG -gSA -scI -vII -vII -lse -hfN -vcX -qlc -weC -xgy -xgy -xgy -xgy -xgy -xgy -xgy -xgy -xgy -xgy -xgy -xgy -khQ -vcX -qlc -qPT -iwL +nIN +jIV +xZv +xZv +lsv +xZv +bSC +seq +seq +nMX +xZv +hQx +cci +pej +eWs +eHG +veR +cci +pej +xRw +xRw +xRw +xRw +pej +eWs +eHG +veR +cci +pej +xRw +xRw +rLG +tRW +gVb +nTq +ggD +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +jnq +gVb +nTq +wSI +pwF aqK ylo aSa ylo aqK -ssv -qlc -vcX -ssv +nyj +nTq +gVb +nyj aqK ylo aSa ylo anw -qPT -lRn -wWy -rRy -qPT +wSI +xTR +oFP +rTc +wSI anw anw ylo anw anw -qPT -lRn -wWy -rRy -qPT +wSI +xTR +oFP +rTc +wSI anw ylo aqs -fqL -wVi -tqf -tqf -vxI -qiy -uaT -uaT -pJV -vxI -tqf -tqf -wHr -tXv +fxx +tlc +nDL +nDL +nJz +kql +eKr +eKr +kAR +nJz +nDL +nDL +pOm +xBI aqs ylo ylo @@ -67528,37 +67528,37 @@ aSa aQz aQz aQC -kVM +hNr aQC -das -sfS -sfS -sfS -sfS -qLJ -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -sfS -qLJ -sfS -sfS -sfS -sfS -sfS -kuS -gEi -eFu +hcV +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +sYp +igY +xEY aiD "} (84,1,1) = {" @@ -67577,43 +67577,43 @@ ylo ylo ylo aap -bRB -xwt -kYi -kYi -sDX -cyp -dPu -kYi -iEu +wmF +eUM +owh +owh +iOK +qgG +mzx +owh +vTa aNP -uuk -wCt -pip +eXV +enH +fCq bkP -pvO -jLD -aHl +tgZ +dgQ +kyH aNP -jKD -kte -rbk +elj +ePm +vbG auq -gJM -ulT -oeX -uEL -fQf +tzO +rOZ +naE +cnq +uXI auq -vak -ssc -oQc -vmv +niu +qAf +vrX +pjG acd -pFR -oQc -ssc -bve +jDg +vrX +qAf +oUa alK bjD bjD @@ -67622,42 +67622,42 @@ xVS bjD bjD alK -wOu -noG -gSA -vII -scI -oPV -noG -gSA -vII -wIX -vII -rGW -eQM +nIN +veR +cci +xRw +pej +eWs +veR +cci +xRw +hGj +xRw +ugW +jJO asc aRn -vnr -slZ +mKt +cbz aRn asc -dfs -gQW +txW +ulv asC bnr asC aRv -pIJ -tZP +lvl +pXP aRv asC bnr asC -vov -vVh -vcX -qlc -oFJ +hKY +wcC +gVb +nTq +lQd aqN aqN aqN @@ -67670,57 +67670,57 @@ aqN aqN aqN aqN -oWx -vcX -qlc -qPT -jPT +eXQ +gVb +nTq +wSI +mIf anw anw aSa anw anw -oPI -qlc -vcX -ssv +ffW +nTq +gVb +nyj anw anw aSa anw anw -gan -qPT -vys -qPT -qGI -ssv +oIu +wSI +sRM +wSI +ott +nyj anw anw anw -ssv -qGI -qPT -vys -qPT -quE +nyj +ott +wSI +sRM +wSI +dJP anw ylo aqs -qZP -lcu -pRk -pRk -hGn -sfh -qZP -qZP -xPd -hGn -pRk -pRk -pRk -qZP +iRo +uhI +mVp +mVp +bzO +bZU +iRo +iRo +wrK +bzO +mVp +mVp +mVp +iRo aqs ylo ylo @@ -67771,37 +67771,37 @@ aSa aSa aSa aQz -fDT -hdq -hdq +opN +cfr +cfr aQC -uif -bIH -vJd -vJd -vJd -vJd -vJd -vJd -vJd -vJd -vJd -wcb -vJd -vJd -vJd -bIH -vJd -vJd -vJd -vJd -wcb -vJd -vJd -vJd -vJd -vJd -gEi +rZs +eEA +kLA +kLA +kLA +kLA +kLA +kLA +kLA +kLA +kLA +gug +kLA +kLA +kLA +eEA +kLA +kLA +kLA +kLA +gug +kLA +kLA +kLA +kLA +kLA +igY aEy aEy aEy @@ -67822,27 +67822,27 @@ ylo aaE aaE aap -ubM -kYi -kYi -kYi -cAi -kYi -uKU -xLk -jrW +qdd +owh +owh +owh +hZq +owh +mrW +hJR +cCi aNP -lXt -kEV -wYk -fHr -wYk -wYk -dCx +vVj +gHw +ouG +lPy +ouG +ouG +oDj aPO -tKV -kte -lnm +kES +ePm +sYK auq auq auq @@ -67850,15 +67850,15 @@ auq auq auq auq -wlw -tBk -oQc -eYt +jVI +xsG +vrX +lio acA -pFR -oQc -ssc -jbk +jDg +vrX +qAf +jBj alI cKi aXU @@ -67867,13 +67867,13 @@ xVS aXU gwY alI -gbY -noG -sla -jNB +sKm +veR +xxz +oBP arx arx -xbK +hLP bnf arx arx @@ -67881,91 +67881,91 @@ arx arx asc asc -vnr -vnr -dmw -vnr +mKt +mKt +pBe +mKt asc asc asc asC -ccP -evn -vvv -pIJ -qLw -hss -evn -xVv +vEf +jjD +saQ +lvl +pAE +kWM +jjD +cGX asC asC -vVh -vcX -qlc -wtH +wcC +gVb +nTq +nIM aqN -rnZ -nwc -nwc -coO -nwc -nwc -coO -nwc -nwc -tri +fLg +mPE +mPE +fKD +mPE +mPE +fKD +mPE +mPE +jyF aqN -iRJ -vcX -qlc -qPT -ssv -qXp +gsH +gVb +nTq +wSI +nyj +sAU anw anw anw -vys -qPT -qlc -vcX -qPT -vys +sRM +wSI +nTq +gVb +wSI +sRM anw anw anw -bRS -dlY -eTS -eTS -eTS -qcJ -vMF -pmF -lsV -pmF -gUK -vuj -eTS -eTS -eTS -dlY +pnJ +rQu +mve +mve +mve +smZ +ePS +ryQ +ePx +ryQ +eEL +deL +mve +mve +mve +rQu anw aqs aqs -qZP -lcu -pRk -pRk -hGn -xnO -dAd -dAd -cbM -hGn -pRk -pRk -pRk -qZP +iRo +uhI +mVp +mVp +bzO +rGM +fLQ +fLQ +bch +bzO +mVp +mVp +mVp +iRo aqs ylo ylo @@ -68016,21 +68016,21 @@ aqL ylo ylo aQz -hdq +cfr aQO bgx aQz aEy aEy aEy -eFu -eFu -eFu -eFu -eFu -eFu -eFu -eFu +xEY +xEY +xEY +xEY +xEY +xEY +xEY +xEY aEy aEy aEy @@ -68041,12 +68041,12 @@ aEy aEy aEy aEy -eFu -eFu -eFu -eFu -eFu -eFu +xEY +xEY +xEY +xEY +xEY +xEY aEy ylo ylo @@ -68065,45 +68065,45 @@ ylo ylo ylo aaE -fsF -oyM -sKF -kYi -kYi -ukF -oHC -lYr -uKU -kYi -aeh +xoz +tHb +eNV +owh +owh +qiy +dpp +hLt +mrW +owh +rIS aNP -rxN -rLB -ler +bvA +vdq +dPn bkP -dLV -rtm -nQx +kOU +pQN +naB aPO -nUx -kte -qAt +jtr +ePm +sil auq -vyj -jMQ -pQD -uzb -tKw +jqj +vYp +eFy +hKf +iUn auq -vak -ssc -oQc -ylR +niu +qAf +vrX +rjP aev -pFR -oQc -ssc -bve +jDg +vrX +qAf +oUa alK bhx bhx @@ -68112,105 +68112,105 @@ xVS bhx bhx alK -wOu -noG -sla +nIN +veR +xxz arx arx -cGN -vLv -cTn -wtn -jow -uUV +evf +jMl +sTE +cIo +rqr +vCB arx -qpd -vnr -tsQ -oXI -dmw -vnr -lJQ -ovb +lHj +mKt +vHS +fCV +pBe +mKt +iAA +esp asc -qOI -vvv -pIJ -pIJ -pIJ -qLw -pIJ -pIJ -hss -mtm +iLe +saQ +lvl +lvl +lvl +pAE +lvl +lvl +kWM +vwT asC -fFQ -vcX -qlc -oFJ +wcS +gVb +nTq +lQd aqN -rxL -hWy -hWy -hWy -hWy -hWy -hWy -hWy -hWy -pTz +mEn +ycB +ycB +ycB +ycB +ycB +ycB +ycB +ycB +xyf aqN -iRJ -vcX -qlc -qPT -qPT -qPT -qPT -rix -qPT -qPT -qPT -qlc -vcX -qPT -qPT -qPT -oIV -qPT -qPT -qPT -vcX -vcX -vcX -eOX -dlY -dlY -dlY -dlY -dlY -uyi -vcX -vcX -vcX -qPT -qPT -nun -wNk -qZP -lcu -pRk -qZP +gsH +gVb +nTq +wSI +wSI +wSI +wSI +mQX +wSI +wSI +wSI +nTq +gVb +wSI +wSI +wSI +fCE +wSI +wSI +wSI +gVb +gVb +gVb +oFp +rQu +rQu +rQu +rQu +rQu +uti +gVb +gVb +gVb +wSI +wSI +fZU +xWX +iRo +uhI +mVp +iRo aqs aZa aZa aZa aZa aqs -qZP -pRk -pRk -qZP +iRo +mVp +mVp +iRo aqs ylo ylo @@ -68261,7 +68261,7 @@ aqL aqL aqL aQz -hdq +cfr aQW aQz aQz @@ -68310,45 +68310,45 @@ ylo ylo ylo aaE -wAi -hFn -sKF -kYi -kYi -cTd +vaW +seD +eNV +owh +owh +njo abi -dID -uKU -xLk -jrW +sBh +mrW +hJR +cCi aNP aNP aNP aNP aNP -eRo -nIw -vIQ -xwT -lTg -gIg -xtT +cYh +nuw +iDy +dgb +lCM +jvB +nFE bkM -nUx -gfX -sSH -ckm -vDf +jtr +uor +pDv +nSt +jkl auq -vak -ssc -oQc -bve -wSL -pFR -oQc -ssc -bve +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +oUa alK axV bHR @@ -68357,105 +68357,105 @@ xVS axV axV alK -wOu -noG -sla +nIN +veR +xxz arx -vAl -kOC -jUv -gBe -cGN -cGN -cGN +mvc +dvK +qpD +kjJ +evf +evf +evf arx -jCI -vnr -efr -rNY -hqr -oXI -vnr -vnr -vhP -qiP -utu -qyw -sOb -oEV -tJj -vye -sOb -utu -dFD +tSI +mKt +xvO +mUd +iFo +fCV +mKt +mKt +fqM +rDT +ifu +wLY +lDg +oXu +jLQ +ufK +lDg +ifu +iRe aRv -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -rxL -eIM -eIM -hWy -eIM -eIM -hWy -eIM -eIM -pTz +mEn +lwh +lwh +ycB +lwh +lwh +ycB +lwh +lwh +xyf aqN -iRJ -vcX -qlc -vcX -vcX -vcX -vcX -qlc -vcX -vcX -vcX -qlc -vcX -vcX -dAN -kcm -dAN -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -hGn -pRk -pRk -lcu -pRk -qZP +gsH +gVb +nTq +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +nTq +gVb +gVb +god +keH +god +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +bzO +mVp +mVp +uhI +mVp +iRo aZa ylo ylo ylo ylo aZa -qZP -pRk -pRk -qZP +iRo +mVp +mVp +iRo aqs ylo ylo @@ -68506,7 +68506,7 @@ bdQ bdQ aYR aQC -hdq +cfr baz aQz ylo @@ -68555,45 +68555,45 @@ ylo ylo ylo aaE -ofV -cAi -sKF -kYi -xLk -iRW +cEN +hZq +eNV +owh +hJR +qSQ abi -wqM -uKU -kYi -xwC +wsp +mrW +owh +xUu aNP -uuk -wCt -cAM +eXV +enH +xqg bkP -vMr -nIw -uAa +nay +nuw +ncq aPO -lBf -sdN -lTg -lrE -lTg -isT -oll -kja -nRc +iRg +eFC +lCM +ldQ +lCM +fFC +nAt +xJt +mxn auq -vak -ssc -oQc -bve -fyT -pFR -oQc -ssc -bve +niu +qAf +vrX +oUa +guc +jDg +vrX +qAf +oUa alK bjD huQ @@ -68602,105 +68602,105 @@ xVS bjD bjD alK -wOu -noG -sla +nIN +veR +xxz arx -qkP -ouR -vLv -kyo -gMR -kNm -cGN +vHe +mEM +jMl +wEP +dvs +raN +evf bnf -fdI -vnr -kRz -coQ -qWF -xti -lLg -vnr -vhP -qiP -psu -nfF -sOb -pIJ -qGB -qyw -sOb -utu -dFD +uGO +mKt +wMh +qRl +oLM +aDW +xqO +mKt +fqM +rDT +jtX +sEG +lDg +lvl +tPe +wLY +lDg +ifu +iRe aRv -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -rxL -hWy -hWy -hWy -hWy -hWy -hWy -hWy -hWy -pTz +mEn +ycB +ycB +ycB +ycB +ycB +ycB +ycB +ycB +xyf aqN -iRJ -vcX -dLU -bsc -bsc -bsc -bsc -vID -bsc -bsc -bsc -vID -tVX -jam -jam -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -tVX -bsc -bsc -vxI -tqf -tqf -wHr -pRk -qZP +gsH +gVb +jcS +luU +luU +luU +luU +gOm +luU +luU +luU +gOm +vEl +ccH +ccH +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +vEl +luU +luU +nJz +nDL +nDL +pOm +mVp +iRo aZa ylo ylo ylo ylo aZa -qZP -pRk -pRk -qZP +iRo +mVp +mVp +iRo aqs ylo aqL @@ -68751,7 +68751,7 @@ bdQ bdQ bdQ aQC -kVM +hNr aQC aQz ylo @@ -68800,152 +68800,152 @@ ylo ylo ylo aaE -cKM -cAi -sKF -kYi -nqn -qQT +gCQ +hZq +eNV +owh +gac +qKG abi -vmD -uKU -xLk -jrW +swN +mrW +hJR +cCi aNP -lXt -kEV -wYk -ibZ -wYk -wYk -xpJ +vVj +gHw +ouG +pyq +ouG +ouG +ujc aPO -tKV -kte -uIi +kES +ePm +eUd bkM -lBf -stH -sSH -stH -pKs +iRg +oXd +pDv +oXd +rss auq -hgC -ssc -oQc -bve -jFd -pFR -oQc -ssc -bve +hBK +qAf +vrX +oUa +mNU +jDg +vrX +qAf +oUa arL arL arL arL -hlV +nDi arL arL alI -wOu -noG -sla +nIN +veR +xxz arx -cAt -npC -hNU -isZ -ckw -hSI -isZ -rQk -xti -xti -xti -txs -ipY -vnr -vnr -djH -vhP -qiP -pIJ -pIJ -pIJ -lcP -qLw -pIJ -pIJ -pIJ -fmv +uaG +mNr +wwq +vjH +khX +sts +vjH +udJ +aDW +aDW +aDW +eLG +frU +mKt +mKt +mFq +fqM +rDT +lvl +lvl +lvl +iOl +pAE +lvl +lvl +lvl +jyi asC -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -mtt -hWy -udp -hWy -eIM -eIM -hWy -eIM -eIM -pTz +wNJ +ycB +fIB +ycB +lwh +lwh +ycB +lwh +lwh +xyf aqN -nLa -khQ -qlc -weC -xgy -xgy -xgy -xgy -xgy -xgy -khQ -vcX -bpu -jez -rat -rat -rat -rat -rat -rat -rat -iBE -rat -rat -rat -rat -rat -rat -rat -rat -oIn -vcX -qlc -qPT -qPT -hGn -wNk -qZP -yhI -qZP -qZP +kUg +jnq +nTq +ggD +lUS +lUS +lUS +lUS +lUS +lUS +jnq +gVb +cPx +ptv +tuq +tuq +tuq +tuq +tuq +tuq +tuq +gEX +tuq +tuq +tuq +tuq +tuq +tuq +tuq +tuq +pyG +gVb +nTq +wSI +wSI +bzO +xWX +iRo +fff +iRo +iRo aZa ylo ylo ylo ylo aZa -nSd -pRk -pRk -nSd +eCO +mVp +mVp +eCO aqs aqL aqL @@ -68983,9 +68983,9 @@ bea beg aJZ aKK -smg -gQg -smg +uIn +qHU +uIn aKK bdS bcN @@ -69045,62 +69045,62 @@ ylo ylo ylo aaE -wAi -hFn -sKF -kYi -kYi -ryM +vaW +seD +eNV +owh +owh +whv abi -kNL -uKU -kYi -yiq +orV +mrW +owh +iKy aNP -rxN -rLB -ler +bvA +vdq +dPn bkP -njj -hio -tVa +cke +nsK +fys aNP -ryj -kte -sRj +brM +ePm +hmS auq -mjo -gHY -xmx -gHY -sYu +tvU +lJb +mbX +lJb +qoy auq -vak -ssc -oQc -bve -wSL -pFR -oQc -ssc -bve +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +oUa arL -fOI -tZf -lqn -fUa -uAn +qXf +mjj +dst +tIX +khh arL -utm -skd -noG -sla +cYH +uhv +veR +xxz arx -uIe -pUC -vLv +rCC +rPS +jMl arx -myn +nhh arx arx arx @@ -69109,40 +69109,40 @@ asc asc asc asc -qdz -jlY -fbx +pZS +gur +oot asc -jtm -utu -hqP -sOb -pIJ -qGB -hqP -sOb -utu -dFo +eLL +ifu +tOm +lDg +lvl +tPe +tOm +lDg +ifu +wLA aRv -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -msA -inC -xGB -pUH -wjq -mob -asl -mob -mob -qRL +rjp +ebu +tSP +iGg +voD +nUT +czL +nUT +nUT +cuB aqN aqO bnM -qpD +wwK aqO arf arf @@ -69150,11 +69150,11 @@ arf arf arf arf -iRJ -vcX -bpu -rud -cpn +gsH +gVb +cPx +qfN +hLG arp arp arp @@ -69169,11 +69169,11 @@ arp arp arp arp -cpn -kxG -vcX -qlc -qPT +hLG +xEO +gVb +nTq +wSI anw aqs aqs @@ -69187,10 +69187,10 @@ aSa aSa aSa aqs -ste -ste -ste -psd +sxq +sxq +sxq +cOR gjX aqL bdQ @@ -69228,9 +69228,9 @@ aJZ aJZ aJZ aKK -eza -wnW -wnW +geC +esY +esY aKK bdS beo @@ -69290,17 +69290,17 @@ ylo ylo ylo aaE -rhg -ttt -sKF -kYi -xLk -iRW +dvt +rWb +eNV +owh +hJR +qSQ abi -puH -uKU -xLk -jrW +rYI +mrW +hJR +cCi aNP aNP aNP @@ -69311,7 +69311,7 @@ aNP aNP aNP auq -njH +qQl auq auq auq @@ -69320,63 +69320,63 @@ auq auq auq auq -wJB -ssc -oQc -vmv +iPg +qAf +vrX +pjG acd -kPw -oQc -ssc -bve +vVP +vrX +qAf +oUa arL -fOI -ybs -wnk -fUa -wnk -xRB -gWx -gWx -noG -gRa +qXf +gtL +cGt +tIX +cGt +kcD +eHG +eHG +veR +unR ary ary ary -vHn +nJu ary -tbt -nDh +eue +uub eyK lsu nAl -iBM -lnb +ovU +hBY asc asc asc asc asc asc -fuh -utu -hqP -sOb -pIJ -qGB -nfF -sOb -utu -dFD +tWg +ifu +tOm +lDg +lvl +tPe +sEG +lDg +ifu +iRe aRv -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN aqN aqN -eRJ +upz aqN aqN aqN @@ -69386,19 +69386,19 @@ aqO aqO aqO aqO -pvv -rJb -gpV +jKp +hVS +fYW aSp -mhd -fhj -rde -wmK +rsv +krl +xuy +mzL arf -iRJ -dAN -bpu -rud +gsH +god +cPx +qfN arp arp ahB @@ -69406,19 +69406,19 @@ aTG ahB qoq arp -uHS -iTQ +lbh +fVF arp -mlZ -fgR -gSR -bXX +xxJ +vxH +mbe +gsq arp arp -kxG -vcX -qlc -qPT +xEO +gVb +nTq +wSI aqK ylo ylo @@ -69432,10 +69432,10 @@ ylo ylo ylo aqs -tdS -pRk -pRk -qZP +xYs +mVp +mVp +iRo agZ bdQ bdQ @@ -69474,7 +69474,7 @@ aKs aKs aKK aKK -lwb +mwm aKK aKK aKs @@ -69537,58 +69537,58 @@ ylo aaE aaE aap -sKF -kYi -tSR -tdW +eNV +owh +cME +xVf abi -puH -uKU -kYi -xRd +rYI +mrW +owh +xmn abA -lJJ -urB -urB -dQT -urB -lJJ -urB -chh -iLJ -ifJ -laC +tbG +lod +lod +phj +lod +tbG +lod +lBV +iPD +vSQ +eqf abA -vNO -kmo -dmi -kmo -cUQ +rGr +ukw +eTn +ukw +kiA adb -vak -ssc -oQc -trf +niu +qAf +vrX +slw acA -kUB -oQc -ssc -bve +tdr +vrX +qAf +oUa arL -fOI -ybs -wnk -tOj -wnk -wnk -gWx -gWx -noG -sla +qXf +gtL +cGt +kck +cGt +cGt +eHG +eHG +veR +xxz ary -jVU -nUA -wZF +wXV +iOm +fjq ary ary ary @@ -69596,74 +69596,74 @@ ary ary ary ary -tbt -fzO -cGN -nDn -huD -huD +eue +nDj +evf +rLM +enQ +enQ arx -jWm -pIn -pIJ -bTf -pIJ -fVO -pIJ -pIJ -pIJ -fmv +lvH +luJ +lvl +rEt +lvl +iKk +lvl +lvl +lvl +jyi asC -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -hLD -jIq -sJE -wyD -kAg +hod +tUD +laj +chA +jiZ aqN -fmj -jjF -imu -mBh -lQo +qpU +ntG +gVa +mWd +mJp aSm -qIt -pHY -lGC -eGI -rYE -hOc -lcM -rBv +wzG +ltb +ryO +rMx +qQE +fja +syf +uBA arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp bnY -bPF -vsD -fZO +err +myc +lrt ahB arp -csl -uQn +jew +oHQ arp -juo -sdQ -rRl -nhJ -oyX +cdF +mcE +uBv +gTN +fXu arp -kxG -vcX -qlc -qPT +xEO +gVb +nTq +wSI aqK ylo ylo @@ -69677,10 +69677,10 @@ ylo ylo ylo aqs -qjZ -pRk -mSK -qZP +ovr +mVp +hdD +iRo agZ bdQ bdQ @@ -69714,17 +69714,17 @@ aKn aJZ aKs aKs -qli -qli -nHG +rIt +rIt +kZf aKK -vxa -xyQ -fti +rYs +nDR +ukR aKK -nJa -qli -qli +kVK +rIt +rIt aKs aKs rTj @@ -69782,133 +69782,133 @@ ylo ylo ylo aap -sKF -kYi -kYi -bMZ -lrg -cip -emB -cyp -cyp -rpn -oXh -oXh -oXh -oXh -oXh -ozt -oXh -oXh -oXh -cjd -oXh -hxi -dCF -dCF -dCF -ley -fFo +eNV +owh +owh +pnq +wIG +knf +wBv +qgG +qgG +oNu +ujM +ujM +ujM +ujM +ujM +svi +ujM +ujM +ujM +qYt +ujM +xTV +jFB +jFB +jFB +pPo +upv adb -jYv -ssc -oQc -ylR +oPI +qAf +vrX +rjP aev -hNV -oQc -ssc -bve +oHx +vrX +qAf +oUa arL -fOI -ybs -wnk -wnk -wnk +qXf +gtL +cGt +cGt +cGt arL -rle -oPV -noG -sla +otA +eWs +veR +xxz ary -hYT -cUf -wZF -gVF -sQE -sQE -sQE -sQE -gVF +uRf +nRs +fjq +qvO +qEE +qEE +qEE +qEE +qvO ary ary ary -rHQ -cGN -cGN -cTn +pEi +evf +evf +sTE arx -qiP -utu -cFQ -phA -bTf -qGB -nfF -sOb -utu -tJO +rDT +ifu +hdA +kyh +rEt +tPe +sEG +lDg +ifu +vHj aRv -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -iEm -vMN -sJE -mGs -iHP +bXi +mYI +laj +itQ +rqG aqN -ifA -hbn -sHz -yhL -jZs +vIe +dOG +hpl +nlT +ggN aSm -cWi -rJb -niI +qNp +hVS +dPc aSp -wgl -plz -pcv -cxe +eyj +jiV +wkJ +kYW arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp aUr -nsq -pCm -sGO +ciM +ceS +eSo tYF bye -fUG -jdc +ehB +mVH arr -mAX -qEQ -oAO -qEQ -uhk +elO +rZV +qnu +rZV +wZk arp -kxG -vcX -qlc -qPT +xEO +gVb +nTq +wSI aqK ylo ylo @@ -69923,7 +69923,7 @@ ylo ylo aQz aQC -kVM +hNr aQC aQC aYR @@ -69958,19 +69958,19 @@ aKi bdb aJZ aKs -qli -fVd -xoY -hxI -qwG -lHp -vkg -lHp -qwG -hxI -cqn -fVd -qli +rIt +lZC +qFi +oVi +qvN +nhD +cOh +nhD +qvN +oVi +uOf +lZC +rIt aKs usS iEH @@ -70027,133 +70027,133 @@ ylo ylo ylo aap -sKF -kYi -kYi -kYi -vFK -cyp -npv -kYi -qtY +eNV +owh +owh +owh +gIM +qgG +uBZ +owh +rlX abA -sGK -qJW -qJW -xnr -qJW -pin -xnr -qJW -qJW -xnr -xlB +hvC +qFx +qFx +uev +qFx +pPS +uev +qFx +qFx +uev +nXb abA -xHv -qQj -qQj -muv -tVo +hzV +oQD +oQD +wdy +bwL jbN -vZL -ssc -oQc -cyg -dfu -ohj -oQc -ssc -jbk +qZQ +qAf +vrX +vRn +kqt +rRL +vrX +qAf +jBj arL arL -wnk -xil -rRO -wnk +cGt +ula +pfo +cGt arL arL -gbY -noG -sla +sKm +veR +xxz ary -dSj -ixF -xJS -qyZ -qyZ -qyZ -qyZ -qyZ -qyZ -qyZ -qyZ -eJL -isZ -iPN -kGS -cTn +jSy +ylW +hZk +sAd +sAd +sAd +sAd +sAd +sAd +sAd +sAd +pcL +vjH +psy +dCW +sTE arx -qiP -utu -nfF -sOb -sUQ -tJj -qyw -sOb -utu -dFD +rDT +ifu +sEG +lDg +tEx +jLQ +wLY +lDg +ifu +iRe aRv -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -jch -pbq -sJE -pbq -mwq +lVO +fuL +laj +fuL +cHa aqN -dvQ -sHz -eVN -rVn -uOU -dWd -lGC -jkX -lms +sZY +hpl +muT +jQC +xvs +dQa +ryO +nhm +pUS arf arf arf arf arf arf -iRJ -vcX -qlc -pDx +gsH +gVb +nTq +xvl arp rSG -nvH -aXf -gyb +utO +fqO +oYB ahB arr -eqq -eUQ +wzt +cKH arr arr -qEQ -uOq -jFe -hsi +rZV +cyS +fxU +lKV arp -qlq -vcX -qlc -qPT +czW +gVb +nTq +wSI anw anw anw @@ -70168,7 +70168,7 @@ ylo ylo aQz aQO -cNa +iRj bcx aQC bdQ @@ -70204,17 +70204,17 @@ aKo bdJ aKs aKs -qli -qli -nHG +rIt +rIt +kZf aKK -gPE -eQq -dWD +oGN +uUf +mhG aKK -nJa -qli -qli +kVK +rIt +rIt aKs aKs rTj @@ -70272,136 +70272,136 @@ ylo ylo ylo aap -dZA -siB -siB -kdi -uKU -qtY -siB -siB -mRA +pMO +gTY +gTY +fmA +mrW +rlX +gTY +gTY +rMr abA -usU -faW -uqV -wzC -faW -uqV -wzC -faW -uqV -wzC -cKC +rZl +kTi +mWt +eiP +kTi +mWt +eiP +kTi +mWt +eiP +stY abA -sTC -qQj -qQj -muv -qQj -xWt -oQc -ssc -oQc -oQc -oQc -oQc -oQc -ssc -bve +jUq +oQD +oQD +wdy +oQD +fDS +vrX +qAf +vrX +vrX +vrX +vrX +vrX +qAf +oUa uWJ -umO -wnk -pDj -xil -wnk -tCb +ylB +cGt +gvd +ula +cGt +xHZ uWJ -wOu -noG -sla +nIN +veR +xxz ary -pKz -cUf -cUf -cUf -cUf -cUf -cUf -cUf -cUf -cUf -pPf +kVb +nRs +nRs +nRs +nRs +nRs +nRs +nRs +nRs +nRs +iqk ary -iLa -vLv -lgi -vAl +pSS +jMl +fdB +mvc arx -vRI -iVT -pIJ -pIJ -pIJ -qLw -pIJ -pIJ -xBX -lgE +wUe +ekt +lvl +lvl +lvl +pAE +lvl +lvl +mJB +dQu asC -fFQ -vcX -qlc -oFJ +wcS +gVb +nTq +lQd aqN -qMe -dWu -kqP -uXy -dzR +feU +xTl +vPr +tCG +rXt aqN -ifA -lXm -lXm -lXm -lXm +vIe +rzu +rzu +rzu +rzu aqO -hgM -rJb -lzB +oFR +hVS +qFs aSp -mhd -dqo -rde -wmK +rsv +fCf +xuy +mzL arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB -lmz -sZF -pFk +cXD +pMx +xTb ahB arr -uYK -xLL -fUG -gWQ -fUG -ooN -qEQ -kvv +sib +gkq +ehB +yiu +ehB +wzn +rZV +dlX arp -kxG -vcX -qlc -qPT -qPT -oIV -goh +xEO +gVb +nTq +wSI +wSI +fCE +fDo anw ylo ylo @@ -70413,7 +70413,7 @@ ylo ylo aQz aPb -hdq +cfr aQO aQC bdQ @@ -70453,9 +70453,9 @@ aKs aKs aKs aKK -hSm -eQq -hHR +cMS +uUf +nes aKK aKs aKs @@ -70521,109 +70521,109 @@ abi btN btN abi -gPq +dBj abi btN btN abi abA alV -xcL +kAA abA alV -xcL +kAA abA alV -xcL +kAA abA alV -xcL +kAA abA -eBU -qQj -qQj -nMZ -dCF -dCF -qmS -xea -qmS -qmS -qmS -qmS -qmS -tBk -bve +mQf +oQD +oQD +mXA +jFB +jFB +sIO +rNP +sIO +sIO +sIO +sIO +sIO +xsG +oUa uWJ -dun -iIb -oZI -sty -iIb -ftB +vsb +tfD +fzs +tEW +tfD +drH uWJ -wOu -noG -sla +nIN +veR +xxz ary ary -ugm -nct -sQE -sQE -hCW -xxq -sQE -sQE -cUf -pXD +qyv +iOG +qEE +qEE +muW +vXR +qEE +qEE +nRs +etN ary arx -xbK +hLP arx arx arx asC -ijK -oQg -iVT -pIJ -qLw -xBX -oQg -pAA +dgI +qqu +ekt +lvl +pAE +mJB +qqu +rXZ asC asC -vVh -vcX -qlc -oFJ +wcC +gVb +nTq +lQd aqN -qMe -pbq -sJE -qHm -pAF +feU +fuL +laj +jcX +fZe aqN -ifA -lXm -lXm -lXm -niI +vIe +rzu +rzu +rzu +dPc bnJ -bOz -pHY -lGC -eGI -rYE -hOc -uKP -hvN +xnw +ltb +ryO +rMx +qQE +fja +iQJ +rBa arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB ahB @@ -70631,22 +70631,22 @@ aTH ahB ahB arr -tje -eUQ -qEQ -qEQ -qEQ -sdQ -fWn -mQz +eZS +cKH +rZV +rZV +rZV +mcE +jQu +siz arp -kxG -vcX -nhX -bsc -gjL -vcX -qPT +xEO +gVb +xSI +luU +nee +gVb +wSI anw ylo ylo @@ -70658,7 +70658,7 @@ ylo ylo aQz aQC -kVM +hNr aQC aQC bdQ @@ -70698,9 +70698,9 @@ aJZ aJZ aJZ aKK -qVy -eQq -viO +lRP +uUf +ptw aKK bem aJZ @@ -70749,56 +70749,56 @@ ylo (97,1,1) = {" aab aab -sRJ -ktL -xul -xul -ktL -xul -tkY -qxq -qxq -qxq -qxq -qxq +iHq +vOP +llT +llT +vOP +llT +ibQ +hht +hht +hht +hht +hht blK -ejK -ejK -ejK -cTm -nyY -qvP -ejK -ejK -ejK +pFJ +pFJ +pFJ +osj +sgj +xkb +pFJ +pFJ +pFJ blB -dJq -dJq -dJq -dJq -dJq -dJq -dJq -dJq -dJq -dJq -dJq +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX adb -fBQ -qQj -rFa -muv -tvq +mpR +oQD +uoV +wdy +oit jbN -xwL -xwL -xwL -tVE -gpc -nCz -oQc -ssc -bve +wjG +wjG +wjG +nZq +obp +oOT +vrX +qAf +oUa arL arL arL @@ -70807,10 +70807,10 @@ arL arL arL arL -wOu -noG -sla -jNB +nIN +veR +xxz +oBP ary ary ary @@ -70820,55 +70820,55 @@ ary ary twW twW -tEx +xEV ary ary -qro -qlc -mIG -sCM -qMR +gKi +nTq +ibp +qWx +wap asC bnr asC aRv -pIJ -tZP +lvl +pXP aRv asC bnr asC -qXp -vVh -vcX -qlc -oFJ +sAU +wcC +gVb +nTq +lQd aqN -lTZ -qGj -sJE -mpP -uhc +tnh +fSN +laj +hxY +dQl aqN -fto -wjf -rjF -ipx -qiv +isu +eqp +dmq +qEV +pdX aqO -mXP -rJb -niI +xdL +hVS +dPc aSp -wgl -plz -uur -pKD +eyj +jiV +vNJ +nJd arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp arp arp @@ -70876,22 +70876,22 @@ arp arp arp arp -rCM -eUQ -dLR +kVo +cKH +qgH arr -qNN -qNN -qNN -odA +hRL +hRL +hRL +fUs arp -kxG -vcX -vcX -vcX -qlc -vcX -qPT +xEO +gVb +gVb +gVb +nTq +gVb +wSI aqK ylo ylo @@ -70943,9 +70943,9 @@ aJZ bdZ aJZ aKK -dod -fMF -iDm +jWU +imM +wjF aKK aJZ bdZ @@ -70993,105 +70993,105 @@ ylo "} (98,1,1) = {" aab -iTa -xul -meY -sbt -sbt -meY -xul -bWF -gfT -oUY -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -nyY -gfT -gfT -gfT -gfT -gzV -gfT -gfT -gfT -gfT -fZu -gfT -gfT -gfT -gfT -gfT -gfT -xUZ -qQj -rFa -rFa -muv -iGv +kdc +llT +hgF +xfi +xfi +hgF +llT +eLo +pEa +hdI +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +sgj +pEa +pEa +pEa +pEa +hTH +pEa +pEa +pEa +pEa +uKd +pEa +pEa +pEa +pEa +pEa +pEa +dJM +oQD +uoV +uoV +wdy +vzY adb adb adr adr adb adb -vak -oQc -ssc -nla -leB -leB -jPs -leB -leB -jPs -leB -leB -iNr -ssc -nla -leB -dkz -qXK -dkz -dkz -dkz -rsW -dkz -dkz -lut -vcX -oad -dkz -lut -qlc -bSP -dkz -dkz -dkz -dkz -qXK -lut -vcX -qlc -bSP -qXK -dkz -dkz -dkz -lut -vcX -qlc -oFJ +niu +vrX +qAf +kLJ +epZ +epZ +rGg +epZ +epZ +rGg +epZ +epZ +kJn +qAf +kLJ +epZ +rhU +jSk +rhU +rhU +rhU +gmO +rhU +rhU +wWv +gVb +koM +rhU +wWv +nTq +rMS +rhU +rhU +rhU +rhU +jSk +wWv +gVb +nTq +rMS +jSk +rhU +rhU +rhU +wWv +gVb +nTq +lQd aqN aqN aqN -fnJ +bMJ aqN aqN aqN @@ -71101,19 +71101,19 @@ aqO aqO aqO aqO -ifA -rJb -dTY +vIe +hVS +cud arf arf arf arf arf arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB ahB @@ -71121,22 +71121,22 @@ aTG ahB ahB arr -uYK -eUQ -nhJ +sib +cKH +gTN arr arr arp arp arp arp -kME -rat -rat -oIn -qlc -vcX -qPT +ttO +tuq +tuq +pyG +nTq +gVb +wSI aqK ylo ylo @@ -71188,9 +71188,9 @@ aKs aKs aKs aKK -mFz -eQq -gNl +tjH +uUf +iDd aKK aKs aKs @@ -71238,150 +71238,150 @@ ylo "} (99,1,1) = {" aab -xsc -krO -qxq -mTj -qxq -qxq -qxq -tWO -oUY -hnG -gfT -gfT -gfT -gfT -gfT -gfT -oUY -oUY -dji -mVG -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -rFa -rFa -rFa -qQj -muv -tVo +fzR +skG +hht +wmK +hht +hht +hht +mAH +hdI +paa +pEa +pEa +pEa +pEa +pEa +pEa +hdI +hdI +iIi +iEZ +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +uoV +uoV +uoV +oQD +wdy +bwL adb -gBz -vNO -vNO -tKx +sOW +rGr +rGr +uAH adb -vak -oQc -ssc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -ssc -oQc -oQc -vcX -dAN -dAN -dAN -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -oFJ +niu +vrX +qAf +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +qAf +vrX +vrX +gVb +god +god +god +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +lQd aqN -jEC -jIq -sJE +lQm +tUD +laj aqN -naW -mBh -cRI -rcH -fyc +osA +mWd +knw +tkv +rBn aqO -uZq -jyY -ifA -rJb -lzB +oIP +fIm +vIe +hVS +qFs aSp -mhd -fhj -rde -wmK +rsv +krl +xuy +mzL arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB -dzU -dgL -fZO +cEB +eFQ +lrt ahB arr -uYK -xLL -sFR -kDb -kDb -twv -qEQ -qEQ +sib +gkq +iLE +ykK +ykK +tIu +rZV +rZV arp arr arr arp -kxG -qlc -vcX -qPT +xEO +nTq +gVb +wSI aqK ylo ylo @@ -71429,17 +71429,17 @@ aKi aKn aKs aKs -qli -qli -nHG +rIt +rIt +kZf aKK -dhI -eQq -kqI +qAU +uUf +lIb aKK -nJa -qli -qli +kVK +rIt +rIt aKs aKs bdP @@ -71483,150 +71483,150 @@ ylo "} (100,1,1) = {" aab -gls -wqt -gcH -gcH -oBz -pvX -gcH -lzb -gfT -wVJ -sYO -sYO -sYO -ibr -ibr -ibr -ibr -sYO -fJF -rcy -sYO -sYO -sYO -sYO -sYO -sYO -rcy -sYO -sYO -sYO -sYO -sYO -gPL -ibr -ibr -wMm -dCF -dCF -dCF -vjg -dCF -mFc -jCG -xmJ -vvA -jEY +xlm +oQN +oAS +oAS +kUz +dVq +oAS +hHr +pEa +xrH +mJS +mJS +mJS +dNN +dNN +dNN +dNN +mJS +tuH +oRN +mJS +mJS +mJS +mJS +mJS +mJS +oRN +mJS +mJS +mJS +mJS +mJS +tSS +dNN +dNN +lUG +jFB +jFB +jFB +gjg +jFB +ibC +bIl +oeF +oDv +dJq adb -vak -oQc -ssc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -ssc -oQc -oQc -vcX -vcX -vcX -dAN -ncE -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -oFJ +niu +vrX +qAf +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +qAf +vrX +vrX +gVb +gVb +gVb +god +edg +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +lQd aqN -mTX -vgD -sJE +pQy +uRP +laj aqN -uKe -lXm -lXm -lXm -jZs +pvQ +rzu +rzu +rzu +ggN aqO -qVq -tRl -ifA -pHY -lGC -eGI -rYE -hOc -lcM -rBv +lBk +lBh +vIe +ltb +ryO +rMx +qQE +fja +syf +uBA arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp aNk -nvH -qpz -gyb +utO +uzr +oYB ahB arr -kdT -eUQ -riz -qEQ -qEQ -lGI -kDb -qEQ -huS -wbd -wUI +pcx +cKH +inf +rZV +rZV +fzv +ykK +rZV +cOX +jKj +oql arp -kxG -qlc -vcX -qPT +xEO +nTq +gVb +wSI anw aSa aSa @@ -71673,19 +71673,19 @@ aKi aKi aKn aKs -qli -fVd -xoY -hxI -qwG -lHp -kSn -lHp -qwG -hxI -cqn -fVd -qli +rIt +lZC +qFi +oVi +qvN +nhD +pol +nhD +qvN +oVi +uOf +lZC +rIt aKs bdR bdR @@ -71728,150 +71728,150 @@ ylo "} (101,1,1) = {" aab -gEN -xul -ktL -xul -xul -ktL -xul -bWF -gfT -nyY -gfT -gfT -gfT -oUY -gfT -gfT -gfT -gfT -wVJ -oOh -gfT -gfT -gfT -sZW -gfT -gfT -nyY -gfT -gfT -gfT -gfT -oUY -dji -gfT -gfT -xUZ -qQj -qQj -qQj -qQj -tvq +lSH +llT +vOP +llT +llT +vOP +llT +eLo +pEa +sgj +pEa +pEa +pEa +hdI +pEa +pEa +pEa +pEa +xrH +nqP +pEa +pEa +pEa +igU +pEa +pEa +sgj +pEa +pEa +pEa +pEa +hdI +iIi +pEa +pEa +dJM +oQD +oQD +oQD +oQD +oit adb -nDA -uek -wpc -ipo +lxK +xrL +pem +qnC adb -jYv -oQc -ssc -oQc -jen +oPI +vrX +qAf +vrX +xGN flo flo flo ahv -uxa -xwn -wSL -xwn -xTg +ecc +lCb +doP +lCb +oqN flo flo xKA ahy -spW -ssv -vys -ssv -mse +vWK +nyj +sRM +nyj +hWl xKA xKA xKA ahy -spW -ssv -uUQ -ssv -mse +vWK +nyj +tlU +nyj +hWl xKA xKA xKA ahy -spW -ssv -uUQ -ssv -mse +vWK +nyj +tlU +nyj +hWl xKA xKA xKA ahy -vcX -qlc -wtH +gVb +nTq +nIM aqN -uNL -nmi -rfe +tJr +wAl +qAn aqN -kWU -lXm -ugz -vxm -etK +fcY +rzu +tHv +eCD +gsn aqO -uZq -tRl -ifA -rJb -niI +oIP +lBh +vIe +hVS +dPc aSp -wgl -plz -pcv -mZY +eyj +jiV +wkJ +lLu arf -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp aUs -dWM -jbV -vLl +yis +toB +rrc tYF byn -fUG -wyj -dLR +ehB +uBn +qgH arr arr arp arp -qoH -kDb -qEQ -nhJ +tCl +ykK +rZV +gTN arp -cOC -bpu -vcX -qPT +mwI +cPx +gVb +wSI anw aSa aSa @@ -71919,17 +71919,17 @@ aKi aKn aKs aKs -qli -qli -nHG +rIt +rIt +kZf aKK -gPE -eQq -qFu +oGN +uUf +rPm aKK -nJa -qli -qli +kVK +rIt +rIt aKs aKs bdP @@ -71974,126 +71974,126 @@ ylo (102,1,1) = {" aab aab -rjs -meY -xul -xul -meY -xul -bWF -gfT -nyY -xzB -gcH -gcH +vEh +hgF +llT +llT +hgF +llT +eLo +pEa +sgj +wCG +oAS +oAS blK -ovr -obv -ovr -iML -nyY -lQI -ovr -jUo -jCw +puE +mGQ +puE +lPb +sgj +nvv +puE +oTO +ktn blB -ovr -mDP -nPh -mDP -gbL -iML -gfT -gfT -nyY -gfT -gPx +puE +mAT +hWM +mAT +dhj +lPb +pEa +pEa +sgj +pEa +oCI adb -ePt -ePt -ePt -ePt -owG +foi +foi +foi +foi +hXQ adb adb adr -mOA +rRN adb adb -vak -stl -ssc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -oQc -ssc -oQc -oQc -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -bpu -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -vcX -vcX -vcX -vcX -vcX -vcX -vcX -qlc -oFJ +niu +xzp +qAf +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +qAf +vrX +vrX +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +cPx +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +lQd aqN -wXa -qFw -sJE +lPw +ljY +laj aqN -fON -lXm -sQW -itY -mXy +ndn +rzu +dTA +pKU +kIH aqO -lqy -xkV -xTi -kpT -cPy +lUO +gTW +vrM +xEn +jpz arh arh arh arh arh arh -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp bnY ahB @@ -72101,22 +72101,22 @@ aTH ahB qoq arp -vzO -eUQ -nhJ +iBV +cKH +gTN arr -lxK -dnR +guV +dTO aGx -uYK -qEQ -cZt -kDb -hSV -dAN -qlc -vcX -qPT +sib +rZV +ejh +ykK +ruO +god +nTq +gVb +wSI aqK ylo ylo @@ -72168,9 +72168,9 @@ aKs aKs aKs aKK -hSm -eQq -hHR +cMS +uUf +nes aKK aKs aKs @@ -72225,18 +72225,18 @@ ajD ajD ajD ajD -fHb -hrd -wAu -bJo -pMC -uzA +sCw +jQc +eOn +mQi +vVy +nlf abg abg abg abg aae -dTn +vhh aae abg abg @@ -72248,97 +72248,97 @@ bmS bmS blB blB -tqT -gfT -nyY -tqT +xma +pEa +sgj +xma blB adb -unz -unz -unz -unz -unz +kzh +kzh +kzh +kzh +kzh adb -weD -lMX -lMX -lMX +taj +emg +emg +emg baJ -vak -oQc -fOG -qmS -qmS -cWW -qmS -qmS -qmS -qmS -cWW -qmS -qmS -xea -qmS -qmS -bsc -bsc -bsc -bsc -tVX -bsc -bsc -bsc -bsc -tVX -bsc -bsc -bsc -vID -tVX -bsc -bsc -bsc -bsc -bsc -bsc -bsc -vID -bsc -bsc -bsc -bsc -tVX -jam -jam -iBP -oFJ +niu +vrX +gEG +sIO +sIO +fbY +sIO +sIO +sIO +sIO +fbY +sIO +sIO +rNP +sIO +sIO +luU +luU +luU +luU +vEl +luU +luU +luU +luU +vEl +luU +luU +luU +gOm +vEl +luU +luU +luU +luU +luU +luU +luU +gOm +luU +luU +luU +luU +vEl +ccH +ccH +kSP +lQd aqN aqN aqN -kZe +vyv aqN -mjp -lXm -iqo -lGC -tNH -rZu -tNH -lGC -tNH -jkX -hza +hRF +rzu +kVL +ryO +qvs +yjS +qvs +ryO +qvs +nhm +rEZ arh -wsA -jau -wrZ -rkT +kqI +cZz +kVY +vDk arh -oWx -vcX -qlc -rud +eXQ +gVb +nTq +qfN arp arp arp @@ -72346,22 +72346,22 @@ arp arp arp arp -ipa -eUQ -qEQ -qwC -qEQ -lBB -oYD -uYK -qEQ -tqE -qEQ +iAe +cKH +rZV +cOJ +rZV +uCT +oxd +sib +rZV +nNX +rZV arp -ssv -qlc -vcX -qPT +nyj +nTq +gVb +wSI aqK ylo ylo @@ -72413,9 +72413,9 @@ aJZ aJZ beo aKK -mFz -eQq -gNl +tjH +uUf +iDd aKK bdP bdS @@ -72464,126 +72464,126 @@ ylo (104,1,1) = {" aad aad -waa -hUJ -eGU -ggw -rgu +iLW +sFy +msk +hya +jqb ajD -snH -hrd -wAu -bJo -pMC -pMC +cIk +jQc +eOn +mQi +vVy +vVy abg -nXP -xfy -faJ -ojJ -wNx -qvo -lCt -qel +jNQ +oro +dRg +gGw +myq +gbX +lWj +rog blM -wuU -hGK -ejK -ejK -ejK -ejK -cTm -gfT -gfT -nyY -gfT -eAP -vNO -vNO -vNO -vNO -vNO -vNO -wLK -rLa -vNO -vNO -vNO -sRH -vZL -oQc -pUR -oQc -rQO -kxz -ebA -ebA -tfc -oQc -ssc -rQO -ebA -osU -ebA -ebA -mCb -gxS -gxS -qFr -qlc -sGT -gxS -gxS -qFr -jWM -vyX -xEH -xEH -qSB -bpu -vyX -xEH -xEH -xEH -exe -xEH -xEH -pAG -xEH -exe -xEH -xEH -oSQ -qSB -dAN -qlc -oFJ +mBL +cUa +pFJ +pFJ +pFJ +pFJ +osj +pEa +pEa +sgj +pEa +wdv +rGr +rGr +rGr +rGr +rGr +rGr +tYa +nRD +rGr +rGr +rGr +vEV +qZQ +vrX +pju +vrX +mvO +rFp +ouF +ouF +hRJ +vrX +qAf +mvO +ouF +oYJ +ouF +ouF +vKq +ngt +ngt +sbz +nTq +tXy +ngt +ngt +sbz +oJS +nqs +hFj +hFj +iUz +cPx +nqs +hFj +hFj +hFj +tkf +hFj +hFj +sKM +hFj +tkf +hFj +hFj +tnD +iUz +god +nTq +lQd aqO -wwg -xXk -rJb +xLU +jwC +hVS aqO -iHR -mww -lXm -dQa -lXm -lXm -lXm -dQa -lXm -rJb -fQW +mzO +ezu +rzu +nMJ +rzu +rzu +rzu +nMJ +rzu +hVS +fhv aSq -rXf -rXa -rXa -rmO +fyr +sGn +sGn +hNK arh -duv -bsc -iBP -pDx +kjx +luU +kSP +xvl arp arp arp @@ -72591,22 +72591,22 @@ arp arp arp arp -jKW -xLL -fUG -jnM -jdc -lBB -oYD -uYK -qEQ -igb -fzj +okM +gkq +ehB +xDD +mVH +uCT +oxd +sib +rZV +mPb +vrJ arp -oPI -dLU -bsc -tzQ +ffW +jcS +luU +onp aqK ylo ylo @@ -72658,9 +72658,9 @@ bdS aJZ aJZ aKK -mFz -eQq -gNl +tjH +uUf +iDd aKK bdP bdP @@ -72671,11 +72671,11 @@ bem bdZ bdQ aKt -efc -qtr -qtr -qtr -tvT +qmU +mST +mST +mST +wjy aKt bdZ aJZ @@ -72708,64 +72708,64 @@ ylo "} (105,1,1) = {" aad -pNh -uiA -iHT -tjt -uPd -sKy -tmM -qOh -qOh -eWP -bJo -hxM -hhy +vkh +vEu +mGV +gmw +tkz +cvD +ihf +egU +egU +tyT +mQi +sxT +mNa abg -lRK -cAa -cAa -cAa -wNx -cAa -lwB -cAa -ntz -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -gfT -nyY -gfT -gfT -qQj -qQj -qQj -qQj -qQj -qQj -qQj -muv -qQj -qQj -qQj -mIq -oQc -oQc -ssc -stl -mCL -ulK +vyy +gMa +gMa +gMa +myq +gMa +mKa +gMa +oZY +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +sgj +pEa +pEa +oQD +oQD +oQD +oQD +oQD +oQD +oQD +wdy +oQD +oQD +oQD +vEI +vrX +vrX +qAf +xzp +dMB +vqv agK bcP agK -oWo -kQn +rxL +iJX agK aEq agK @@ -72773,21 +72773,21 @@ ann ann ann ann -ssv -jCP -qlc -cPc -qXp +nyj +tLY +nTq +pLh +sAU aqi aqi aqi aqi aqi -veL -nEt -qlc -oDf -qXp +ecv +mAZ +nTq +iuS +sAU aqy aqy aqy @@ -72798,37 +72798,37 @@ aqi aqi aqi aqi -sWD -nEt -dAN -bpu -oFJ +uDk +mAZ +god +cPx +lQd aSm -ifA -bGx -rJb +vIe +lyR +hVS bnJ -pEN -elA -mFC -mFC -mFC +dnS +kza +hmy +hmy +hmy bnM -kxS -elA -ely -rJb -lLT +yew +kza +ipN +hVS +skU aSq -qAN -rXa -rXa -hGh +oxG +sGn +sGn +dcM aSq -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp xbW ahB @@ -72836,22 +72836,22 @@ aTG ahB qoq arp -qOd -eUQ -dLR +xPa +cKH +qgH arr -nmE -jtj +uuY +gMp aGx -uYK -qPZ -nic -fUG -lAe -bsc -iBP -vcX -qPT +sib +rQc +yeU +ehB +pWD +luU +kSP +gVb +wSI aqK ylo ylo @@ -72904,7 +72904,7 @@ aKt aKt aKt aKu -rMZ +lzt aKu aKt aKt @@ -72916,11 +72916,11 @@ aKt aKt aKt aKt -fug -vdS -vdS -vdS -maM +tQj +fwp +fwp +fwp +dpz aKt aJZ bdS @@ -72960,98 +72960,98 @@ ajD ajD ajD ajD -qzV -hrd -wAu -bJo -pMC -pMC +nvd +jQc +eOn +mQi +vVy +vVy abg -hgU -vcV -cAa -bmR -uLK -syN -mPk -syN -syN -sYO -sYO -sYO -rcy -sYO -sYO -bZG -sYO -sYO -ooJ -sYO -bZG -dCF -dCF -dCF -dCF -dCF -dCF -dCF -vjg -dCF -dCF -dCF -qbK -qmS -qmS -xea -kuJ -mCL +dBh +dhJ +gMa +msU +jTH +xny +qAK +xny +xny +mJS +mJS +mJS +oRN +mJS +mJS +tQa +mJS +mJS +dRN +mJS +tQa +jFB +jFB +jFB +jFB +jFB +jFB +jFB +gjg +jFB +jFB +jFB +oJc +sIO +sIO +rNP +wGO +dMB agK agK -bRl -mhD -dpQ -lnh -iUo -rsK -pgd +oWe +hTg +pQi +bGm +vTE +oHc +hts ann -eBw -bmf +xcc +ckb ann ann -jCP -qlc -cPc +tLY +nTq +pLh aqi aqi -eua -sBy -ssB +dni +bTK +sas aqi aqi -nEt -bpu -oDf +mAZ +cPx +iuS aqy aqy -fQs -gHt +hnP +fxi aqy -mAC -cJk -xDN -kej -fbM +uwW +nch +bty +nLF +rre aqi aqi -nEt -vcX -bpu -oFJ +mAZ +gVb +cPx +lQd aSm -ifA -pxh -jkX +vIe +tLb +nhm aqO aqO aSm @@ -73059,44 +73059,44 @@ aSm aSm aqO aqO -gHz -bGx -vVn -rJb -lzB +tCg +lyR +cJz +hVS +qFs arh -xrx -meo -rXa -kCl +pPT +lFB +sGn +yjr aSq -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp aUy -bPF -rXr -bGF +err +hzg +qHO tYF byo -fUG -wyj -nhJ +ehB +uBn +gTN arr arr arp arp -kdT -eUQ -qEQ -dLR +pcx +cKH +rZV +qgH arp -oIn -qlc -vcX -qPT +pyG +nTq +gVb +wSI anw aSa aSa @@ -73143,29 +73143,29 @@ aKi aKp bdK aKt -jWX -mcP -pqN -pqN +fmy +dnU +pFY +pFY aKt -dcb -rdY -lUz +etn +ljR +sGG aKt -kza -xBg -pqN -tLn -oiW -oiW -pKT -kTj +fsh +cqd +pFY +sOS +oMw +oMw +hac +gYv aKt -ijf -lII -rbX -izP -kCR +djg +wcU +hff +uqE +pdT aKt aKt aKt @@ -73198,34 +73198,34 @@ ylo "} (107,1,1) = {" adq -pFj -keK -hTo -nCD -keK -hTo +hrW +eeV +uhc +viF +eeV +uhc adq -qyq -hrd -qRy -dKO -hnB -jXm +vQi +jQc +rso +vRh +gff +qNg abg -xiZ -htS -ent -sin -tFc -dPc -dUm -iQM +jiN +lhX +bMl +cHs +djG +kri +mAP +kkQ blM -iML -gfT -gfT -nyY -gfT +lPb +pEa +pEa +sgj +pEa aTL blB blB @@ -73234,121 +73234,121 @@ blB blB blB adb -ePt -ePt -ePt -ePt -ePt -uOg -ePt -kTq -ePt -ePt -mIq -nCz -oQc -oQc -ssc -mCL +foi +foi +foi +foi +foi +mgm +foi +lld +foi +foi +vEI +oOT +vrX +vrX +qAf +dMB agK -qyY -fXn -nti -dpQ -lnh -wdO -kIJ -tSh +jbG +hhY +mHF +pQi +bGm +uNQ +vBB +iNf ann -hoj -liE -uLj +tDy +dUf +sKu aEr -jCP -qlc -cPc +tLY +nTq +pLh aqi -sgP -ngr -cYy -mgC -ssB +whm +xXO +ldO +dcu +sas aqi -nRd -qlc -oDf +iQZ +nTq +iuS aPW -iuN -fwI -gCS +gEC +clf +sKy aqy -feG -wTl -kBz -kdu -uZi -maD +sYi +mbS +feE +cnK +igL +rRv aqi -fYw -vcX -qlc -way +wVf +gVb +nTq +hRl bnM -xTi -bGx -rJb -wDk -ezI -jdL -vNq -uop -tWl -qVp -mBh -mBh -xTi -pHY -lGC -mfV -sRW -fdr -rXa -xYE +vrM +lyR +hVS +iGq +tMW +wmB +wUO +kVa +gXE +cTb +mWd +mWd +vrM +ltb +ryO +jRk +fno +fyK +sGn +ohb aSq -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ygF -nvH -gHQ -gyb +utO +wLo +oYB ahB arr -eqq -xLL -fUG -fUG -fUG -iQo -fUG -fUG -nZF -cnz -rsG +wzt +gkq +ehB +ehB +ehB +nvi +ehB +ehB +rZX +jYV +spu arp -kxG -qlc -vcX -qPT +xEO +nTq +gVb +wSI anw aSa aSa aqo -isI -gJo -wMf +tRZ +qSO +sUk aJW beh cvO @@ -73388,32 +73388,32 @@ aKi aKn xsU aKt -bHM -wEa -jwf -kzz -dGG -rbX -hnb -avw +xYo +poi +qyQ +tJJ +wmd +hff +ekv +qdV aKt -fVU -kzz -kzz -gcK -wYG -wYG -oGX -uJT +fAA +tJJ +tJJ +cEr +gvI +gvI +vRq +hLb aKt aKu aKu -jJd +odX aKu aKu aKt -idd -dbf +hMU +pJi aKt rTj bdP @@ -73443,19 +73443,19 @@ ylo "} (108,1,1) = {" adq -cJc -gYo -iHT -bWa -sKy -sKy -hjy -qOh -qOh -eWP -bJo -pMC -pMC +gfz +cVs +mGV +iLx +cvD +cvD +sfl +egU +egU +tyT +mQi +vVy +vVy blM blM adL @@ -73467,10 +73467,10 @@ adL adL blM acF -uVv -uVv -lKg -uVv +rOD +rOD +gNN +rOD acF ajZ ajZ @@ -73490,110 +73490,110 @@ acF acF acF acF -jYv -oQc -stl -ssc -gwm +oPI +vrX +xzp +qAf +lpx agK -dlN -kIJ -wiy -dpQ -lnh -wdO -kIJ -tSh +sQg +vBB +dxI +pQi +bGm +uNQ +vBB +iNf ann -eAY -juQ -hiP -vfo -jCP -qlc -oUQ +stU +uQG +jqn +kGv +tLY +nTq +jxC aqi -kPt -kBz -fjX -sed -dXx +sGO +feE +fZm +qFb +jIo aqi -fYw -qlc -oDf -pZF -sWv -mpb -uUy +wVf +nTq +iuS +mnZ +dLC +pxG +njM aqy -eVc -oWk -dhm -kBz -kBz -pah +uhC +lta +gVI +feE +feE +xRh aqi -nEt -vcX -dLU -bsc -nkv -lGC -lGC -hnL -tMy -lGC -lGC -lGC -lGC -tMy -lGC -lGC -lGC -tMy -wld -vkL +mAZ +gVb +jcS +luU +pKM +ryO +ryO +eFO +cFN +ryO +ryO +ryO +ryO +cFN +ryO +ryO +ryO +cFN +qjr +kDA arh -lHu -rXa -rXa -qPu +uVG +sGn +sGn +lfZ arh -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB -lmz -sZF -pFk +cXD +pMx +xTb ahB arr -uYK -xLL -sFR -qEQ -qEQ -lGI -qEQ -qEQ +sib +gkq +iLE +rZV +rZV +fzv +rZV +rZV arp arr arr arp -kxG -qlc -vcX -qPT +xEO +nTq +gVb +wSI aqK ylo ylo aqo -eky -fsB -hSF +nGR +dLH +iPl bcp aJZ eiG @@ -73638,27 +73638,27 @@ aKt aKt aKt aKt -lII -hnb -jhA +wcU +ekv +mmm aKt -hlX -xTG -rHL -mOD -tCt -kHQ -hdC -rou +qzf +noV +bCt +yjM +tYV +sPP +iLp +mje aKt -efc -bIQ -rbX -iaB -qtr -qtr -sQP -uQZ +qmU +qug +hff +uij +mST +mST +vTG +eEw aKu eiG beg @@ -73689,33 +73689,33 @@ ylo (109,1,1) = {" aad aad -ctn -cra -uYD -fwp -tDL +wgX +mUz +qZS +mcA +gkF adq -rRH -hrd -wAu -bJo -hxM -tmS +rew +jQc +eOn +mQi +sxT +tMs acF -kDA -cEf -cEf -cEf -hQk -cEf -cEf -cEf -cEf +jpg +jLk +jLk +jLk +hrb +jLk +jLk +jLk +jLk acF -uPu -rkW -hXM -uPu +lvd +dCb +uCf +lvd aUn acF acF @@ -73724,91 +73724,91 @@ acF acF acF acF -rHj -rHj -rHj -rHj -rHj -gNZ -oOQ -lgz +xAA +xAA +xAA +xAA +xAA +cLW +fAE +hnj acF ajZ acF -vak -oQc -oQc -ssc -mCL +niu +vrX +vrX +qAf +dMB agK -dlN -hZR -hZR -dpQ -lnh -inz -kIJ -fqg +sQg +hVd +hVd +pQi +bGm +pbL +vBB +hfN ann -cJJ -jfx -qOz +sUo +xGi +lts aEr -jCP -qlc -cPc +tLY +nTq +pLh aqi -pta -muX -lYJ -tDS -urM +sXX +ohu +xRK +moR +enp aqi -nEt -qlc -oDf +mAZ +nTq +iuS aPW -cRN -jCX -nza +dWF +qHz +tZZ aqy -mzt -vAy -lYJ -tDS -wQI -nip +heD +kVF +xRK +moR +kRn +otv aqi -nEt -vcX -qlc -weC +mAZ +gVb +nTq +ggD aqO -cwk -lXm -lXm -rJb -niI -joF -ely -lXm -rJb -jQM -joF -ely -ied -lXm -vOY +jfB +rzu +rzu +hVS +dPc +wWM +ipN +rzu +hVS +nQF +wWM +ipN +cRb +rzu +fRt arh -hTn -fav -fRC -rXd +jmn +xuS +xDX +rxU arh -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB ahB @@ -73816,29 +73816,29 @@ aTH ahB ahB arr -uYK -eUQ -dLR +sib +cKH +qgH arr arr arp arp arp arp -ojV -nPr -nPr -cOC -qlc -vcX -qPT +rxQ +dOH +dOH +mwI +nTq +gVb +wSI aqK ylo aqo aqo -cjC -smo -hSF +mTu +mUs +iPl bcp aJZ fip @@ -73878,32 +73878,32 @@ aKi aKn aJZ aKt -jMz +mSW aKt -jMz +mSW aKt -rKS -hGo -hnb -avw +fqI +hLz +ekv +qdV aKt -rLr -hGo -iMg -rbX -avw +nPF +hLz +faP +hff +qdV aKt aKt aKt aKt -hGo -pmQ -ogl -ogl -xbE -rbX -onP -hjB +hLz +nae +lZq +lZq +sGW +hff +eaj +kNv aKu eiG aJZ @@ -73940,120 +73940,120 @@ adq adq aad aad -fHb -hrd -wAu -bJo -pMC -pMC +sCw +jQc +eOn +mQi +vVy +vVy acF -iHf -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -eeI -kCy -kCy -trW -kCy -kCy -eeI -kCy -kCy -rgf -kCy -eeI -kCy -kCy -kCy -kCy -kCy -kCy -kCy -tGz -dyV +eXh +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +htS +iLM +iLM +dvY +iLM +iLM +htS +iLM +iLM +rQP +iLM +htS +iLM +iLM +iLM +iLM +iLM +iLM +iLM +xhh +nYQ acF ajZ acF -hgC -oQc -oQc -ssc -mCL +hBK +vrX +vrX +qAf +dMB aEq -dlN -jqi -wiy -dpQ -lnh -jnV -eVZ -tSh +sQg +mNI +dxI +pQi +bGm +nIa +iGP +iNf ann ann -uOy +kaW ann ann bcP -kQn +iJX agK aqi aqi aPT -laR +iGB aPT aqi aqi aqi -kgo +rEp aqi aqy aqy -fVp +ghn aqy aqy aqi aqi -oyD +qsb aqi aqi aqi aqi -mOH -vcX -qlc -oFJ +xjR +gVb +nTq +lQd aqO aqO -iRG -iRG -kgY +ohY +ohY +eQA aqO aqY aqY -svm -xcf +paU +tXV aqY aqY -ifA -lXm -lXm -lms +vIe +rzu +rzu +pUS arh arh aSq -juW +uxa arh arh -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp arp arp @@ -74061,29 +74061,29 @@ arp arp arp arp -nee -eUQ -nhJ +cis +cKH +gTN arr ahB aUr aWK aWK arp -kxG -vcX -vcX -vcX -qlc -vcX -qPT +xEO +gVb +gVb +gVb +nTq +gVb +wSI aqK ylo aqo -eFn -cQf -smo -rLf +wHm +vUk +mUs +djZ aJW xsU aJZ @@ -74123,32 +74123,32 @@ bel aKn bdZ aKt -tBF +dLh aKt -tBF +dLh aKt -bIO -hGo -hnb -avw +dAg +hLz +ekv +qdV aKt aKt -hGo -hnb -rbX -pFS +hLz +ekv +hff +gLQ aKt -sdp -snK -uwL -szq -wxA -xVK -mlT -sxE -sxE -ccw -jBl +vOn +cyi +iJM +oyD +naJ +fIO +wJx +jWg +jWg +xpY +mSJ aKt tzY cMa @@ -74185,120 +74185,120 @@ dKE dKE dKE aak -fHb -hrd -wAu -lft +sCw +jQc +eOn +mhl acF acF acF -hZs -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -jHA -dyV +eAn +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +sGa +nYQ acF ajZ acF -sQd -qmS -qmS -tBk -mCL +uGc +sIO +sIO +xsG +dMB aEq -dlN -hZR -hZR -dpQ -lnh -hZR -hZR -fBX -uJn -nti -lnh -fBX -glD -nti -lnh -fBX +sQg +hVd +hVd +pQi +bGm +hVd +hVd +pBC +sLV +mHF +bGm +pBC +vRo +mHF +bGm +pBC aqi -kej -itF -lYJ -uZi -kej -pdq -itF -lYJ -uPM +nLF +fzP +xRK +igL +nLF +rDP +fzP +xRK +nyB aqi -nXa -lYJ -xFz -kCS -nDw -rwJ -lYJ -alg -dTG -nJI +xgB +xRK +cbA +lnp +jes +fUw +xRK +xzB +oiK +oPE aqi -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO -htO -lXm -lXm -rJb -nqT +xik +rzu +rzu +hVS +gwZ aqY -hPQ -svm -qBU -fAo +whY +paU +cjh +deX aqY -iCn -lqW -tEC -bqt +eFF +nGk +eog +yel aqY -lxF -nuc -nuc -dck +teD +mqf +mqf +uao aqY -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB ahB @@ -74306,29 +74306,29 @@ aTG ahB ahB arr -uYK -eUQ -qEQ -owN +sib +cKH +rZV +lzO ahB -bPF -mio -fZO +err +uzG +lrt arp -kxG -vcX -iWV -bsc -bUG -vcX -qPT +xEO +gVb +dPo +luU +sGs +gVb +wSI anw ylo aqo -dZy -nbM -smo -tnI +qzg +iKo +mUs +vhr aJW aJW aJW @@ -74368,26 +74368,26 @@ aKi qVs aKq aKt -lmP +hnH aKt -lmP +hnH aKt aKt -fug -hnb -iaB -kNJ +tQj +ekv +uij +oBK aKt aKu -hnb -vlP +ekv +fxT aKu aKt -iYn -izP -sxE -sxE -kCR +oQW +uqE +jWg +jWg +pdT aKt aKt aKu @@ -74430,15 +74430,15 @@ asA asA aPL bky -fHb -hrd -wAu -ufp +sCw +jQc +eOn +dxW acF -idQ -iPB -rBO -fLg +vHd +uqo +tSs +hEo aaG aaG aaG @@ -74464,128 +74464,128 @@ aaG aaG aaG aaG -fLg -jHA -rjG +hEo +sGa +bmg acF acF acF -vak -oQc -oQc -ssc -mCL +niu +vrX +vrX +qAf +dMB agK -dlN -kIJ -wiy -dpQ -lgL -usn -usn -usn -cUx -usn -vTb -usn -usn -usn -vTb -usn -chy -hgT -hgT -nCv -hgT -hgT -hgT -hgT -uuj -uZi +sQg +vBB +dxI +pQi +wJR +iFR +iFR +iFR +pHr +iFR +dnr +iFR +iFR +iFR +dnr +iFR +iNe +gBl +gBl +qTv +gBl +gBl +gBl +gBl +kJq +igL aqi -lvV -lYJ -kBz -kBz -kBz -kBz -lYJ -kBz -kBz -sCw +uAn +xRK +feE +feE +feE +feE +xRK +feE +feE +yeH aqi -mUS -vcX -qlc -oFJ +sWc +gVb +nTq +lQd aqO -lPs -dQa -pxh -jkX -rJl +iMV +nMJ +tLb +nhm +hmJ aqY -xec -svm -qBU -jfs +qqe +paU +cjh +viP bnO -rSH +teT aSn aSn -rSH +teT bnO -pCG -svm -svm -dGw +sVq +paU +paU +pis aqY -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp ahB -utr -eUo -fZO +sxj +jLW +lrt ahB arr -uYK -xLL -fUG -fUG +sib +gkq +ehB +ehB hKA -iss -xqn -vwL +dCz +deB +bTY arp -kxG -vcX -qlc -qPT -qPT -itX -goh +xEO +gVb +nTq +wSI +wSI +hfH +fDo anw ylo aqo -kLv -iJQ -smo -vry -pyU +tXN +vxw +mUs +uCE +lHE aKa -cjC -rhc -qrc -tJS -waR -vWq -iLG -fxm -vWq -eHa +mTu +jzF +tmC +iex +jJZ +mDO +lYW +cWe +mDO +mmY aKi aKi aKi @@ -74613,23 +74613,23 @@ aKi aKo aKh aKu -qxp -oQi -ucM -pui +xXb +fjW +fjD +xVl aKt -bIQ -hnb -rbX -iaB -hgq -bIQ -hnb -rbX -iaB -hgq -fen -avw +qug +ekv +hff +uij +qPp +qug +ekv +hff +uij +qPp +wVX +qdV aKt aKt aKt @@ -74670,167 +74670,167 @@ ylo aak aak arc -lfN -efY -hpi +oOI +jRH +mOO arc bky -fHb -hrd -wAu -hrd -tsX -fLg -fLg -jHA -fLg +sCw +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG aaG aaZ abd hBM -enm -hIX +fzz +cUx abd hBM abt aaZ abd -fVK -yjX +cTg +eDX aaZ abd hBM abt aaZ -dWU -ygE +yiA +nJs abt aaZ aaG aaG -fLg -jHA -dyV +hEo +sGa +nYQ acF ajZ acF -jYv -oQc -oQc -ssc -gwm +oPI +vrX +vrX +qAf +lpx agK -dlN -hZR -hZR -dpQ -lnh -dpQ -dpQ -dpQ -jgQ -dpQ -dpQ -dpQ -deH -osL -osL -osL +sQg +hVd +hVd +pQi +bGm +pQi +pQi +pQi +eKX +pQi +pQi +pQi +oEA +lEa +lEa +lEa aqi -qCb -qCb -wQI -iZt -iZt -iZt -muX -sZG -hgT -hgT -hgT -cWN -faS -faS -rLO -faS -wft -rLO -hgT -hgT -chy -bsc -bsc -mzY -oFJ +tny +tny +kRn +sgp +sgp +sgp +ohu +nyf +gBl +gBl +gBl +tge +tZl +tZl +wwP +tZl +frD +wwP +gBl +gBl +iNe +luU +luU +eyt +lQd aqO -xyA -dQa -bGx -rJb -rJl +smq +nMJ +lyR +hVS +hmJ bnK -iZS -svm -qBU -sAc -nuc -nuc -nuc -nuc -nuc -nuc -xNu -svm -oqP -bIq +hpV +paU +cjh +lbV +mqf +mqf +mqf +mqf +mqf +mqf +rwr +paU +jTh +jdr aSn -iRJ -vcX -qlc -pDx +gsH +gVb +nTq +xvl arp upe -nvH -nis -gyb +utO +rXk +oYB ahB arr -kdT -eUQ +pcx +cKH arr arr ijA -iss -kWH -kly +dCz +smM +qhp arp -qlq -vcX -qlc -qPT +czW +gVb +nTq +wSI anw anw anw anw ylo aqo -mou -lZn -hrL -fVa -xJp -lFh -cjC -smo -sch -dpf -cdH -dpf -qFI -smo -smo -cHA +sUn +pbP +wnY +mZk +pNs +hNM +mTu +mUs +lTE +fAx +ixJ +fAx +jyq +mUs +mUs +rYG aKi aKi aKi @@ -74857,24 +74857,24 @@ aKi aKi aKi aKi -sXo -rlt -sfr -ucM -ucM -qts -rbX -qoQ -oUX -ogl -ogl -vOp -eSm -rPB -ogl -ogl -gZD -eJx +lkW +hlH +pfY +fjD +fjD +vhG +hff +ubC +lXB +lZq +lZq +vex +vrH +xqG +lZq +lZq +fAV +rDt aKu bdZ aJZ @@ -74915,70 +74915,70 @@ ylo aak dKE arc -lfN -efY -hpi +oOI +jRH +mOO arc aak -eBF -hrd -qRy -qOh -iEJ -kCy -kCy -eCL -fLg +rdQ +jQc +rso +egU +ueF +iLM +iLM +uWR +hEo aaG aaI -swt -gbW -gbW -gbW -gbW -gbW -gbW -gbW -gbW -gbW -gbW -jxZ -gbW -gbW -gbW -gbW -gbW -gbW -gbW -gbW -clQ +hlK +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +xcz +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +rhn acn aaG -fLg -jHA -dyV +hEo +sGa +nYQ acF ajZ acF -vak -oQc -oQc -ssc -mCL +niu +vrX +vrX +qAf +dMB agK -dlN -jqi -wiy -dpQ -lnh -hfF -kIJ -qIa -sNS -kIJ -kIJ -dpQ -tSh +sQg +mNI +dxI +pQi +bGm +fPq +vBB +pIF +qCg +vBB +vBB +pQi +iNf apI apI apI @@ -74989,71 +74989,71 @@ apI apI apI apI -fki -lYJ -kBz -kBz -kBz -kBz -fyl -fyl -rJs -fQN -fyl -oXr -kBz -tDS +iLk +xRK +feE +feE +feE +feE +woj +woj +gVL +xNT +woj +nQW +feE +moR aPT -qSB -vcX -qlc -oFJ +iUz +gVb +nTq +lQd aqO -itW -lXm -mGK -rJb -fBF +iAv +rzu +eND +hVS +knc aqY -szv -svm -hGc -jfF -puR -puR -puR -ebj -kQB -kQB -kQB -cyu -svm -dVK +cmR +paU +rwx +kWs +xkV +xkV +xkV +cYW +vDr +vDr +vDr +oMn +paU +jPB aSn -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp aUC -nsq -uTO -sGO +ciM +lxw +eSo tYF byp -fUG -qCI +ehB +ftz arr bEF ijA -iss -kXe -vwL +dCz +rir +bTY arp -kxG -vcX -qlc -qPT +xEO +gVb +nTq +wSI aqK ylo ylo @@ -75061,21 +75061,21 @@ ylo aqo aqo aJW -xov -jOK +sza +ndv aJW aJW aJW -cjC -smo -iJQ -smo -cHA -smo -smo -sch -dpf -cdH +mTu +mUs +vxw +mUs +rYG +mUs +mUs +lTE +fAx +ixJ rwo rwo rwo @@ -75102,24 +75102,24 @@ rwo rwo btk rwo -hQq -qeH -mPX -hQq -hQq -ogl -ogl -wRk -uJT -rbX -rbX -rbX -rbX -hnb -rbX -rbX -hnb -eJx +kGT +lYy +eXd +kGT +kGT +lZq +lZq +jcQ +hLb +hff +hff +hff +hff +ekv +hff +hff +ekv +rDt aKu aJZ bdS @@ -75160,23 +75160,23 @@ ylo aak dKE arc -duN -efY -duN -mMG -kqn -hrd -hrd -wAu -hrd -tsX -fLg -fLg -jHA -fLg +hNb +jRH +hNb +qpW +uQE +jQc +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG aaJ -rAK +dYV aaG aaX aaG @@ -75196,131 +75196,131 @@ aaG aaG aaX aaG -ykG +fau aco aaG -fLg -jHA -dyV +hEo +sGa +nYQ acF ajZ aUn -vak -oQc -oQc -ssc -mCL +niu +vrX +vrX +qAf +dMB agK -iAS -osL -iWM -dpQ -lnh -lDG -qha -qha -qha -qha -qha -dpQ -tSh +wqO +lEa +dbK +pQi +bGm +etr +vTk +vTk +vTk +vTk +vTk +pQi +iNf apI -psS -coM -nnL -nnL -nnL -nnL -coM -fmG +qEC +hXy +jTZ +jTZ +jTZ +jTZ +hXy +woB apI -fki -lYJ -tDS +iLk +xRK +moR aqi -muX -kBz -kdu -kBz -kBz -kBz -kBz -lYJ -kBz -oQB +ohu +feE +cnK +feE +feE +feE +feE +xRK +feE +ezl aPT -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO -lPs -tsE -jXT -rJb -rJl +iMV +jFe +tlG +hVS +hmJ aqY -eFF -svm -qBU -svm -svm -svm -hEr -kLt -svm -svm -svm -wKg -svm -jvq +bwd +paU +cjh +paU +paU +paU +mnb +nAn +paU +paU +paU +ucB +paU +pDZ aqY -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp hCY -dWM -sZF -pFk +yis +pMx +xTb ahB arp -lTj -qNN +kws +hRL arp bEG vTT -dWM -ooM -pFk +yis +fOw +xTb arp -eyP -vcX -qlc -qPT +gwn +gVb +nTq +wSI aqK ylo ylo ylo aqo -uCj -cLt -kZv -ifk -cLt -nSj +wMi +gHm +ioO +xuC +gHm +pMV aJW -cjC -smo -iJQ -vWq -cHA -vWq -fxm -fOn -vWq -cHA +mTu +mUs +vxw +mDO +rYG +mDO +cWe +vIa +mDO +rYG jlU aKi aKi @@ -75348,23 +75348,23 @@ aKi rRR aKj aKu -sbA -lxl -lEU -chV +oMJ +gQW +jmw +fDL aKt -lII -hnb -rbX -izP -ruU -lII -rbX -hnb -izP -ruU -uuI -avw +wcU +ekv +hff +uqE +cyJ +wcU +hff +ekv +uqE +cyJ +ocS +qdV aKt aKt aKt @@ -75405,23 +75405,23 @@ ylo aak aak arc -lfN -efY -hpi +oOI +jRH +mOO arc aak -thF -eQb -wAu -hrd -tsX -fLg -fLg -jHA -fLg +iXv +tSm +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG -hAu -rAK +nbv +dYV aaG aaG aaG @@ -75441,89 +75441,89 @@ aaG aaG aaG aaG -ykG -cNH +fau +jga aaG -fLg -igD +hEo +qwQ acF adI adI adI -hKj -hKj -hKj -reM -hKj +jHz +jHz +jHz +hfh +jHz agL agL agL -hBI -dpQ -lnh -hZR -kIJ -mBj -kIJ -sNS -kIJ -dpQ -tSh +iBH +pQi +bGm +hVd +vBB +qmm +vBB +qCg +vBB +pQi +iNf apI -uhw -hUq -yis -qIu -qIu -qIu -xQJ -oNb +hYG +kZB +mbV +cTY +cTY +cTY +fdt +lTd bnl -itF -lYJ -wAe +fzP +xRK +fHr aqi -ssQ -ltV -hAp -gha -gha -npT -kBz -lYJ -lZC -kiJ +pzU +kkS +cyO +gva +gva +rPQ +feE +xRK +uds +kkO aqi -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO -lPs -lXm -lXm -rJb -rJl +iMV +rzu +rzu +hVS +hmJ aqY -toq -svm -qBU -klG -gTo -eAa -svm -qBU -klG -gTo -pgP -pgP -pgP -dgg +heK +paU +cjh +rgd +qVt +vCL +paU +cjh +rgd +qVt +hJe +hJe +hJe +jmr aqY -iRJ -vcX -qlc -rud +gsH +gVb +nTq +qfN arp arp ahB @@ -75531,8 +75531,8 @@ aTH ahB qoq arp -jJi -iTQ +oxi +fVF arp bEH bEH @@ -75540,26 +75540,26 @@ aWm bET arp arp -kxG -vcX -qlc -qPT +xEO +gVb +nTq +wSI aqK ylo ylo ylo aqo -tZd -fxm -iJQ -smo -cuz -hSF +qGq +cWe +vxw +mUs +yiR +iPl aJW -cjC -smo -iJQ -hfW +mTu +mUs +vxw +iFf aJW aJW aKg @@ -75595,24 +75595,24 @@ aKq aKt aKt aKu -kLc +gVc aKu aKt -fug -hnb -izP -rDk +tQj +ekv +uqE +udd aKt aKu -rbX -qef +hff +dUZ aKu aKt -iYn -iaB -dec -qtr -tvT +oQW +uij +fwL +mST +wjy aKt aKt aKu @@ -75650,23 +75650,23 @@ ylo ylo bky asA -lfN -efY -hpi +oOI +jRH +mOO asA bky -wWn -hrd -dfq -gMw +rNn +jQc +ghM +giH aUn -iyX -nYm -jHA -fLg +lMM +sTa +sGa +hEo aaG -pfZ -rAK +fGy +dYV aaG aaG aaG @@ -75686,47 +75686,47 @@ aaG aaG aaG aaG -ykG -wGx +fau +lzr aaG -fLg -jHA -uPu -uFR -lsq -qiN -cQr -cQr -cQr -nZK -cQr -iyg -dpQ -orW -dpQ -dpQ -lnh -lDG -qha -qha -qha -qha -qha -dpQ -tSh +hEo +sGa +lvd +mWQ +qeK +qVP +eiX +eiX +eiX +fNU +eiX +nzU +pQi +rXL +pQi +pQi +bGm +etr +vTk +vTk +vTk +vTk +vTk +pQi +iNf apI -gkK -yis -yis -kyq -kyq -kyq -qoX -yis -ube -kBz -lYJ -dXx +dmy +mbV +mbV +vLe +vLe +vLe +lsj +mbV +nRe +feE +xRK +jIo aqi aqi aqi @@ -75734,30 +75734,30 @@ aqi aqi aPT aPT -cTD -kgo +qcQ +rEp aPT aPT aqi -fYw -vcX -qlc -oFJ +wVf +gVb +nTq +lQd aqO aqO -iRG -iRG -kgY +ohY +ohY +eQA aqO aqY -qia -svm -qBU -lzG +eHk +paU +cjh +cIN aqY bnO -svm -wDS +paU +obg bnO aqY aSn @@ -75765,11 +75765,11 @@ aSn aSn aqY aqY -iRJ -vcX -qlc -rud -cpn +gsH +gVb +nTq +qfN +hLG arp arp arp @@ -75784,33 +75784,33 @@ arp arp arp arp -cpn -kxG -vcX -qlc -qPT +hLG +xEO +gVb +nTq +wSI anw aqK aqK aqK aqo -kJN -fxm -iJQ -smo -fHK -ogi -arS -qzz -smo -iJQ -fIj +eNq +cWe +vxw +mUs +rwe +oDH +wBp +feB +mUs +vxw +day aJW -waO -jkK -fDD -kLS -swK +nXw +muU +hOW +oYb +vgN aJW bcq bcq @@ -75838,32 +75838,32 @@ aJZ rTj bdP aKt -fQO -pyY -doD -tZB +jsz +cim +pZb +qmk aKu -snz -hnb -avw +gUZ +ekv +qdV aKt aKt -hGo -rbX -hnb -bIS +hLz +hff +ekv +wDZ aKt -cQP -fRK -fRK -oTQ -jtp -hgq -wpr -nou -kEm -tpX -yfs +xdy +szz +szz +rLO +tDN +qPp +nla +ozW +rtg +rhC +cuT aKt bdQ bdZ @@ -75895,23 +75895,23 @@ ylo ylo bky asA -lfN -efY -hpi +oOI +jRH +mOO asA bky -wWn -hrd -dfq -lLk +rNn +jQc +ghM +kJx acF -hNx -nYm -jHA -fLg +sTB +sTa +sGa +hEo aaG aaI -rAK +dYV aaG aaG aaG @@ -75931,135 +75931,135 @@ aaG aaG aaG aaG -ykG +fau acn aaG -fLg -jHA -vEE -uFR -cQr -qiN -cQr -fOF -fOF -qOX -cQr -iyg -dpQ -lDG -dpQ -dpQ -lnh -hfF -kIJ -sNS -kIJ -sNS -sNS -dpQ -tSh +hEo +sGa +twl +mWQ +eiX +qVP +eiX +kwz +kwz +gzc +eiX +nzU +pQi +etr +pQi +pQi +bGm +fPq +vBB +qCg +vBB +qCg +qCg +pQi +iNf apI -lsd -yis -yis -qIu -qIu -qIu -eoP -qrk -vnf -hgT -uuj -uZi +iAW +mbV +mbV +cTY +cTY +cTY +nRQ +vod +isq +gBl +kJq +igL aqi -iCl -unG -unG +swV +mCR +mCR aqi -lPm -vwC -kBz -lYJ -pLb -spC +xnF +bJy +feE +xRK +vtW +qFG aqi -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO -htO -lXm -lXm -rJb -uHd +xik +rzu +rzu +hVS +qLv aqY -lml -svm -qBU -lzG +jAf +paU +cjh +cIN aqY -iRJ -vcX -qlc -way -wKS -jFo -jFo -jFo -tHs -jFo -ckd -vcX -qlc -mAG -nPr -nPr -nPr -nPr -nPr -nPr -nPr -htK -nPr -nPr -nPr -nPr -nPr -nPr -nPr -nPr -cOC -vcX -qlc -qPT -oIV -ssv -xGT -ssv -snh -qzz -vWq -iJQ -smo -hdg -jJX -pXl -vWq -smo -iJQ -uXu +gsH +gVb +nTq +hRl +fxe +xee +xee +xee +woe +xee +lAN +gVb +nTq +xNV +dOH +dOH +dOH +dOH +dOH +dOH +dOH +dBs +dOH +dOH +dOH +dOH +dOH +dOH +dOH +dOH +mwI +gVb +nTq +wSI +fCE +nyj +uEA +nyj +tCD +feB +mDO +vxw +mUs +wJD +tLK +dyc +mDO +mUs +vxw +oqj aJW -sjI -wsu -fxm -fxm -yft -dUC -idk -qIW -urV +jFX +iJj +cWe +cWe +rte +vas +lZW +gRJ +gfm bcr bdW aKi @@ -76083,32 +76083,32 @@ bdP rTj aJZ aKu -hGo -uJT -uJT -iaB +hLz +hLb +hLb +uij aKu -dcb -hnb -avw +etn +ekv +qdV aKt -coo -bIQ -rbX -hnb -sWb +rnq +qug +hff +ekv +pkM aKt aKt aKt aKt -hGo -jHy -ogl -ogl -xbE -rbX -rbX -avw +hLz +mKU +lZq +lZq +sGW +hff +hff +qdV aKu aJZ laE @@ -76140,23 +76140,23 @@ ylo ylo aak arc -lfN -efY -hpi +oOI +jRH +mOO arc aak -fNg -eQb -wAu -saT +pIh +tSm +eOn +iwr acF -qrH -nYm -dPC -fLg +uYl +sTa +dju +hEo aaG aaJ -rAK +dYV aaG aaG aaG @@ -76166,7 +76166,7 @@ aaG aaG aaG aaG -rxK +wpK aaG aaG aaG @@ -76176,135 +76176,135 @@ aaG aaG aaG aaG -ykG +fau aco aaG -fLg -rYn -rcB -lZX -wsY -jxu -wsY -duo -glg -whf -wsY -jSS -usn -udA -usn -usn -tZh -jNd -dpQ -dpQ -dpQ -dpQ -dpQ -dpQ -tSh +hEo +wqG +iMl +udr +sEv +obE +sEv +vmU +jFz +lLg +sEv +mpr +iFR +uuZ +iFR +iFR +urR +vmo +pQi +pQi +pQi +pQi +pQi +pQi +iNf apI -uhw -hUq -yis -kyq -kyq -kyq -qoX -dMC +hYG +kZB +mbV +vLe +vLe +vLe +lsj +vfM apI -muX -sZG -hgT -ldP -hgT -jlv -hgT -ldP -hgT -hgT -hgT -uuj -kBz -rSI +ohu +nyf +gBl +lQb +gBl +dxT +gBl +lQb +gBl +gBl +gBl +kJq +feE +wGt aPT -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO -lPs -lXm -pxh -wld -rJl +iMV +rzu +tLb +qjr +hmJ aqY -lml -svm -qBU -lzG +jAf +paU +cjh +cIN aSn -iRJ -vcX -dLU -bsc -bsc -bsc -jam -tVX -bsc -bsc -bsc -tVX -vID -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -vID -bsc -bsc -bsc -bsc -bsc -cdH -dpf -dpf -wyR -koC -dpf -koC -dpf -dpf -dpf -fGq -yft -fdk -roJ -smo -smo -smo -smo -smo -smo -iaZ -ntQ +gsH +gVb +jcS +luU +luU +luU +ccH +vEl +luU +luU +luU +vEl +gOm +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +gOm +luU +luU +luU +luU +luU +ixJ +fAx +fAx +mqA +coP +fAx +coP +fAx +fAx +fAx +uhh +rte +txm +ylb +mUs +mUs +mUs +mUs +mUs +mUs +mWU +hpj bcr aKk bdU @@ -76328,32 +76328,32 @@ bdP eiG bdZ aKu -obc -mQN -ogl -ogl -sHD -ogl -gZD -avw +cdh +fJb +lZq +lZq +qxm +lZq +fAV +qdV aKu -dpg -rbX -mQN -gZD -avw +vPt +hff +fJb +fAV +qdV aKu -xud -tvT +iZW +wjy aKt -vfQ -eLu -rbX -jsC -cYV -sxE -sxE -kCR +pjA +pmN +hff +nev +xUw +jWg +jWg +pdT aKu beo eiG @@ -76385,23 +76385,23 @@ ylo ylo bky asA -lfN -efY -hpi +oOI +jRH +mOO asA bky -wWn -pwZ -wAu -lLk +rNn +rzV +eOn +kJx acF -hNx -nYm -jHA -fLg +sTB +sTa +sGa +hEo aaG aaR -rAK +dYV aaG aaG aaG @@ -76421,135 +76421,135 @@ aaG aaG aaG aaG -jwp +vif acr aaG -fLg -jHA -vEE -uFR -cQr -qiN -cQr -fOF -qOX -fOF -cQr -iyg -dpQ -lDG -dpQ -dpQ -lnh -dpQ -deH -osL -gtg -osL -osL -osL -tPK +hEo +sGa +twl +mWQ +eiX +qVP +eiX +kwz +gzc +kwz +eiX +nzU +pQi +etr +pQi +pQi +bGm +pQi +oEA +lEa +uza +lEa +lEa +lEa +qxu apI -kTt -yis -yis -yis -hZw -ose -qoX -ehd +mZP +mbV +mbV +mbV +qLR +nFb +lsj +pXI apI -oNw -lYJ -tDS +eTz +xRK +moR aqi -gkD -lYJ -jmA +tpd +xRK +jxF aqi -gSb -kBz -kDV -lYJ -kBz -dXx +wHG +feE +gXy +xRK +feE +jIo aPT -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO -lPs -lXm -bGx -lXm -rJl +iMV +rzu +lyR +rzu +hmJ aqY -tYl -svm -wKg -hmG +oBb +paU +ucB +bIA aSn -iRJ -vcX -qlc -vcX -vcX -vcX -vcX -qlc -dAN -dAN -vcX -qlc -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -vcX -cHA -smo -smo -smo -iJQ -smo -doU -smo -smo -smo -xUA -qEl -vRe -ghc -dpf -dpf -stT -smo -smo -smo -ner -cRz +gsH +gVb +nTq +gVb +gVb +gVb +gVb +nTq +god +god +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +rYG +mUs +mUs +mUs +vxw +mUs +hpL +mUs +mUs +mUs +xZp +qaL +qZL +dDU +fAx +fAx +tAT +mUs +mUs +mUs +cks +eOx bcr bdY bed @@ -76573,32 +76573,32 @@ bdQ diD aJZ aKu -hGo -uJT -uJT -izP +hLz +hLb +hLb +uqE aKu -llX -hnb -avw +hZx +ekv +qdV aKu -bLe -kaR -rbX -jHy -wqb -rKX -hHT -maM +sWV +pwU +hff +mKU +hRq +wPC +kfv +dpz aKt xFK aKt -rbX +hff aKt xFK aKt -kff -xlI +nSu +erK aKt aJZ eiG @@ -76630,23 +76630,23 @@ ylo ylo bky asA -lfN -kni -hpi +oOI +iNj +mOO asA bky -wWn -hrd -wAu -pjV +rNn +jQc +eOn +hXo aUn -coc -nYm -jHA -fLg +gAO +sTa +sGa +hEo aaG -wmb -rAK +yil +dYV aaG aaG aaG @@ -76666,28 +76666,28 @@ aaG aaG aaG aaG -ykG -szD +fau +jlM aaG -fLg -jHA -uPu -uFR -vKA -qiN -cQr -cQr -pVY -cQr -cQr -iyg -eAs -bYn -dpQ -dpQ -lnh -dpQ -tSh +hEo +sGa +lvd +mWQ +oQC +qVP +eiX +eiX +kPE +eiX +eiX +nzU +kON +jyW +pQi +pQi +bGm +pQi +iNf agK agK aEq @@ -76695,106 +76695,106 @@ aEq aEq agK apI -swk -yis -yis -iBc -umm -yis -qoX -ehd +nCC +mbV +mbV +tEV +ydp +mbV +lsj +pXI apI -hcX -lYJ -wAe +tak +xRK +fHr aqi -uol -lYJ -mfk +klY +xRK +sgY aqi -ijy -kBz -lvN -bHo -kBz -wAe +eRv +feE +cjx +nqQ +feE +fHr aqi -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO -itW -lXm -mGK -lXm -fBF +iAv +rzu +eND +rzu +knc aqY -lml -svm -svm -lzG +jAf +paU +paU +cIN aSn -iRJ -vcX -qlc -qPT -qPT -qPT -qPT -utH -qPT -qPT -mJx -bpu -vcX -qPT -qPT -qPT -itX -qPT -qPT -qPT -vcX -vcX -vcX -qgv -tSY -tSY -tSY -tSY -tSY -tyA -vcX -vcX -vcX -qPT -qPT -ssv -xGT -ssv -cHA -xDd -vWq -smo -iJQ -jqG -cuz -msI -vWq -smo -iJQ -uXu +gsH +gVb +nTq +wSI +wSI +wSI +wSI +hby +wSI +wSI +sle +cPx +gVb +wSI +wSI +wSI +hfH +wSI +wSI +wSI +gVb +gVb +gVb +kCG +eiL +eiL +eiL +eiL +eiL +qsX +gVb +gVb +gVb +wSI +wSI +nyj +uEA +nyj +rYG +cFB +mDO +mUs +vxw +muR +yiR +kuI +mDO +mUs +vxw +oqj aJW -sjI -ner -fxm -fxm -hfW -wKX -oss -tIj -mfG +jFX +cks +cWe +cWe +iFf +ddF +jKS +izI +gWm bcr bdS gqV @@ -76818,29 +76818,29 @@ bdQ rTj bdP aKt -iDu -rPR -cCD -ylY +fWL +jYT +dfI +spd aKu -snz -hnb -avw +gUZ +ekv +qdV aKt -raD -ruU -diX -diX -nkx +gNa +cyJ +wrS +wrS +hmx aKu -mXN -eJx +fjd +rDt aKt -fif +fkt aKu -rbX +hff aKu -vKB +hTh aKt aKt aKt @@ -76875,23 +76875,23 @@ ylo aak aak arc -lfN -qqP -hpi +oOI +txT +mOO arc aak -pxM -hrd -wAu -hrd -tsX -fLg -fLg -jHA -fLg +mFa +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG -kcO -rAK +nKD +dYV aaG aaG aaG @@ -76911,131 +76911,131 @@ aaG aaG aaG aaG -ykG -jNp +fau +wwu aaG -fLg -igD +hEo +qwQ acF adI adI adI ael -lTG +lhW ael -lTG +lhW ael agL agL agL -wAP -dpQ -lnh -dpQ -tSh +eST +pQi +bGm +pQi +iNf agK -jCi -rsK -rsK -rsK -vUJ +tip +oHc +oHc +oHc +vTf apI -uhw -hUq -yis -qPR -qPR -qPR -qoX -oNb +hYG +kZB +mbV +jZe +jZe +jZe +lsj +lTd apI -itF -lYJ -dXx +fzP +xRK +jIo aqi -cAK -lYJ -cXM +wLO +xRK +txw aqi -flw -kBz -rex -hEE -kBz -dXx +iGp +feE +mRa +tIz +feE +jIo aqi -vaD -vcX -qlc -oFJ +eLi +gVb +nTq +lQd aqO -lPs -lXm -jXT -dWt -rJl +iMV +rzu +tlG +rUe +hmJ aqY -lml -svm -svm -lzG +jAf +paU +paU +cIN aSn -iRJ -vcX -qlc -qPT -ssv -qXp +gsH +gVb +nTq +wSI +nyj +sAU anw anw anw -fHv -qPT -qlc -dAN -qPT -fHv +nbx +wSI +nTq +god +wSI +nbx anw anw anw -rDK -nXA -jQz -jQz -jQz -cNw -ilH -cNy -xYR -cNy -mgJ -rcb -jQz -jQz -jQz -tSY +whg +eCj +wtp +wtp +wtp +gKk +kyK +srE +dXk +srE +tEn +dbB +wtp +wtp +wtp +eiL anw aqK aqK aqK aqo -nBC -fxm -smo -iJQ -sTF -eth -fEB -xOS -xDd -nhM -nnq +tEb +cWe +mUs +vxw +keb +mLh +okZ +vEj +cFB +gdi +snd aJW -tCE -hfs -xgv -nRw -nRU +wbA +ibo +wnn +fIh +nmz aJW bcq bcq @@ -77068,9 +77068,9 @@ aKt aKt aKt aKt -hGo -sxe -yeg +hLz +eom +crz aKt aKt aKt @@ -77078,14 +77078,14 @@ aKt aKt aKu aKt -iAu +gym aKu aKt -fug -ftz -rbX -ftz -maM +tQj +fTg +hff +fTg +dpz aKt bdS bdP @@ -77120,23 +77120,23 @@ ylo aak dKE arc -duN -qqP -lUA -mMG -kqn -hrd -hrd -wAu -hrd -tsX -fLg -fLg -jHA -fLg +hNb +txT +fZy +qpW +uQE +jQc +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG aaJ -rAK +dYV aaG aaX aaG @@ -77156,124 +77156,124 @@ aaG aaG aaX aaG -ykG +fau aco aaG -fLg -jHA -dyV +hEo +sGa +nYQ adI blN adI -uUH -jOB -nQA -qbI -qBh +djD +eQT +jfV +jDk +gWi agL -qyY -rsK -nti -hhx -lnh -dpQ -fBX +jbG +oHc +mHF +rGl +bGm +pQi +pBC agK -rNx -dpQ -cfE -nvf -xOk +gcQ +pQi +wnb +eek +vOx apI -sDB -yis -yis -ifZ -ifZ -ifZ -eoP -qrk -vnf -hgT -uuj -dXx +dpk +mbV +mbV +bCT +bCT +bCT +nRQ +vod +isq +gBl +kJq +jIo aqi -pTT -xiq -roR +hBa +bkI +dhL aqi -xhb -kBz -gAj -gzG -kBz -dXx +oPi +feE +wgs +ugd +feE +jIo aqi -nEt -vcX -qlc -wtH +mAZ +gVb +nTq +nIM aqO -rSJ -elA -elA -elA -slM +pyk +kza +kza +kza +dOD aqY -nyd -fkY -fkY -rAD +xAx +nxy +nxy +ssB aqY -oWx -vcX -qlc -qPT -chR +eXQ +gVb +nTq +wSI +cHf anw anw aSa anw anw -oPI -qlc -dAN -ssv +ffW +nTq +god +nyj anw anw aSa anw anw -vYv -qPT -vys -qPT -dSK -ssv +xbp +wSI +sRM +wSI +ctC +nyj anw anw anw -ssv -qPT -qPT -vys -qPT -uJP +nyj +wSI +wSI +sRM +wSI +rUg anw ylo ylo ylo aqo -uZy -fxm -smo -iJQ -nAy -mOJ +nsb +cWe +mUs +vxw +kGD +tdo aJW aJW -epZ -cOz +cpg +cZv gLs gLs gLs @@ -77308,14 +77308,14 @@ bcL dzV aKt aKt -hVr -hwX -dsy -dwj +ibk +nrv +dfL +psw aKu -snz -hnb -jhA +gUZ +ekv +mmm aKt gvs jRw @@ -77326,11 +77326,11 @@ aKi gtX aKi aKt -ijf -mae -sxE -mae -kCR +djg +mhu +jWg +mhu +pdT aKt beg rUq @@ -77365,99 +77365,99 @@ ylo aak dKE arc -lfN -efY -hpi +oOI +jRH +mOO arc aak -tlp -hrd -poy -qOh -iEJ -kCy -kCy -eCL -fLg +osD +jQc +vTu +egU +ueF +iLM +iLM +uWR +hEo aaG aaR -jKj -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -lhD -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -dDZ -yaY +sSV +knj +knj +knj +knj +knj +knj +knj +knj +knj +knj +ryx +knj +knj +knj +knj +knj +knj +knj +knj +hNf acr aaG -fLg -jHA -dyV +hEo +sGa +nYQ adI blN adI -nOM -cQr -oWt -cQr -sph +kZN +eiX +mru +eiX +vRJ agL -tSq -dpQ -dpQ -lGn -vTb -usn -usn -bIN -usn -usn -tZh -lxs -wQv +jhc +pQi +pQi +qro +dnr +iFR +iFR +guW +iFR +iFR +urR +iru +dUv apI -uqv -yis -yis -qPR -qPR -qPR -qoX -yis -ube -kBz -lYJ -dXx +izD +mbV +mbV +jZe +jZe +jZe +lsj +mbV +nRe +feE +xRK +jIo aqi -oxQ -kBz -roR +edh +feE +dhL aqi -oxB -kBz -kBz -kBz -kBz -dXx +yeg +feE +feE +feE +feE +jIo aqi -nEt -vcX -qlc -oFJ +mAZ +gVb +nTq +lQd aqO aqO aSm @@ -77470,55 +77470,55 @@ aSn aSn aqY aqY -iRJ -vcX -qlc -qPT -jIV +gsH +gVb +nTq +wSI +crY aqK ylo aSa ylo aqK -ssv -qlc -vcX -ssv +nyj +nTq +gVb +nyj aqK ylo aSa ylo anw -qPT -lRn -hwy -rRy -qPT +wSI +xTR +mXN +rTc +wSI anw anw ylo anw anw -qPT -lRn -hwy -rRy -qPT +wSI +xTR +mXN +rTc +wSI anw ylo ylo ylo aqo -oJO -xOS -xDd -nhM -xOS -nnq +vnS +vEj +cFB +gdi +vEj +snd aJW -hXp -myS -vdQ +rgw +wpF +obK gLs bUC bYS @@ -77552,15 +77552,15 @@ aKi aKn eiG aKu -gbl -bIQ -uJT -uJT -iaB +uxm +qug +hLb +hLb +uij aKu -dcb -hnb -iaB +etn +ekv +uij aKt qQg qQg @@ -77610,145 +77610,145 @@ ylo aak aak arc -lfN -efY -hpi +oOI +jRH +mOO arc bky -fHb -hrd -hrd -hrd -tsX -fLg -fLg -jHA -fLg +sCw +jQc +jQc +jQc +omG +hEo +hEo +sGa +hEo aaG aaG abc abh iem -sYP -uaY +vBE +tNm abh iem abu abc abh -xjK -sJV +nSH +lNn abc abh iem abu abc -cHw -vwO +wct +csC abu abc aaG aaG -fLg -jHA -dyV +hEo +sGa +nYQ adI blN adI -qwA -ycz -xEY -qof -cxr +ter +vGX +gqy +ezd +vHg agL -uor -iQS -kIJ -dKa -kIJ -dIj -qDm +nBA +tPv +vBB +sHw +vBB +rhj +cor agK -wRD -tip -lnh -tuQ -seR +uhD +sCQ +bGm +fdo +kGR apI -uhw -hUq -yis -ifZ -ifZ -ifZ -uOV -dMC +hYG +kZB +mbV +bCT +bCT +bCT +cMJ +vfM bnl -muX -lYJ -dXx +ohu +xRK +jIo aqi -rAt -kBz -dcJ +ttn +feE +rOY aqi -fcE -eSH -kBz -kBz -eSH -pFz +wIf +lqk +feE +feE +lqk +jDW aqi -nEt -vcX -qlc -way -jFo -jFo -jFo -jFo -jFo -jFo -jFo -jFo -jFo -jFo -jFo -jFo -ckd -vcX -qlc -qPT -wuQ +mAZ +gVb +nTq +hRl +xee +xee +xee +xee +xee +xee +xee +xee +xee +xee +xee +xee +lAN +gVb +nTq +wSI +xKl aqK ylo aSa ylo aqK -fHv -qlc -dAN -fHv +nbx +nTq +god +nbx aqK ylo aSa ylo aqK -qPT -lRn -nOZ -rRy -qPT +wSI +xTR +rSo +rTc +wSI aqK ylo ylo ylo aqK -qPT -lRn -nOZ -rRy -qPT +wSI +xTR +rSo +rTc +wSI aqK ylo ylo @@ -77756,14 +77756,14 @@ ylo aqo aqo aJW -epZ -cOz +cpg +cZv aJW aJW aJW -idY -smo -vdQ +xXV +mUs +obK gLs bQN bQv @@ -77797,15 +77797,15 @@ aKp bdK eiG aKu -ieS -rbX -rbX -rbX -rbX -dgt -rbX -sxe -ogl +qhS +hff +hff +hff +hff +lyC +hff +eom +lZq reN nTx hkn @@ -77860,15 +77860,15 @@ asA asA aVo bky -ryz -nhx -nhx -nhx +pwH +wBl +wBl +wBl acF -qOl -vow -rPN -fLg +uaJ +gow +pVy +hEo aaG aaG aaG @@ -77894,86 +77894,86 @@ aaG aaG aaG aaG -fLg -jHA -rjG +hEo +sGa +bmg adI adI adI adI adI -oJY +tQJ adI adI agL -dlN -rNr -iQS -jfU -kIJ -wVX -tSh +sQg +jQs +tPv +vUu +vBB +qQr +iNf agK -noA -dpQ -lnh -lIy -nbD +upi +pQi +bGm +gKP +fpn apI -cRE -mlR -pTU -pTU -pTU -pTU -mlR -puJ +lpu +dHe +hqL +hqL +hqL +hqL +dHe +xVs apI -fki -lYJ -wAe +iLk +xRK +fHr aqi -vGF -iZt -tMw +qci +sgp +ycx aqi -rgn -wFP -duE -duE -cTw -fjy +dMk +hIt +deH +deH +mmN +prp aqi -brM -vcX -nhX -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bsc -bUG -qPT -iwL +uKf +gVb +xSI +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +sGs +wSI +pwF aqK ylo aSa ylo aqK -ssv -qlc -vcX -ssv +nyj +nTq +gVb +nyj aqK ylo aSa @@ -78000,18 +78000,18 @@ ylo ylo ylo aqo -cMH -myS -cXI -hAF -qim +rwH +wpF +dJU +kpk +eQN aJW -crU -nEI -tsI -duh -nur -dWy +pek +ofV +dQN +kNP +qeI +utB buU bVT bQt @@ -78042,15 +78042,15 @@ ccq jqz iBg aKu -iQt -rbX -mQN -ogl -ogl -ogl -ogl -gZD -izP +svb +hff +fJb +lZq +lZq +lZq +lZq +fAV +uqE aKt qQg dFL @@ -78105,65 +78105,65 @@ wgY wgY wgY aak -xie -xie -xie -cWb +xXT +xXT +xXT +wnE aan aan aan -jGN -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -fLg -jHA -qEm +exG +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +sGa +dYj adI -qOc -ovh -mvC -rvw -nZK -gvy -jFR +hKn +dXs +kDO +rZP +fNU +mal +laG agL -dlN -kIJ -rNr -jfU -kIJ -grR -tSh +sQg +vBB +jQs +vUu +vBB +gzR +iNf agK -wTR -iWM -lnh -deH -tPK +hdO +dbK +bGm +oEA +qxu agU agU agU @@ -78174,9 +78174,9 @@ apI apI apI apI -fki -lYJ -dXx +iLk +xRK +jIo aqi aqi qIU @@ -78189,36 +78189,36 @@ qIU qIU qIU qIU -qPT -qPT -qPT -qPT -qPT -qPT -qPT -pIV -enP -enP -dFg -qPT -qPT -qPT -qPT -qPT -qPT -qPT -qPT -qPT -cpn +wSI +wSI +wSI +wSI +wSI +wSI +wSI +eRe +wFH +wFH +yfl +wSI +wSI +wSI +wSI +wSI +wSI +wSI +wSI +wSI +hLG anw aoX aoX aoX aoX -ndB -pym -ndB -uiy +jQg +uvi +jQg +uUs aoX aoX aoX @@ -78245,18 +78245,18 @@ ylo ylo ylo aqo -nnt -smo -iJQ -smo -smo -rpg -sKR -sch -fzz -dkk -dyw -nOX +png +mUs +vxw +mUs +mUs +pbH +qyy +lTE +uUj +xwQ +eYf +pSs buU bYT hqX @@ -78287,15 +78287,15 @@ bdQ bdQ bdP aKu -tLO -lII -uJT -uJT -izP +gQQ +wcU +hLb +hLb +uqE aKu -llX -hnb -avw +hZx +ekv +qdV aKt jBC jRw @@ -78357,56 +78357,56 @@ bky aak ylo aan -lNP -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -kCy -trW -kCy -qZy -wsY -wsY -wsY -qNn -pLq -cQr -sgh +dTI +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +dvY +iLM +luf +sEv +sEv +sEv +cJl +gjz +eiX +tcf agL -dlN -kIJ -kdP -jfU -kIJ -vrf -xZq +sQg +vBB +crO +vUu +vBB +vlk +tGp ang ang ang -nVl +rua ang ang ang @@ -78419,11 +78419,11 @@ cRx gSC hDF ang -itF -lYJ -dXx -qPw -qPw +fzP +xRK +jIo +rLB +rLB qIU bQt hqX @@ -78434,16 +78434,16 @@ qIU bQV hqX qIU -tCZ +sDB cjs -tSY -tSY -tSY -hZz -qPT -oeU -ssv -jIV +eiL +eiL +eiL +nkZ +wSI +qIu +nyj +crY anw anw anw @@ -78457,16 +78457,16 @@ aoX aoX aoX aoX -eoj -xux -dve -lkG -uKD -xlx -iLc -kCc -icz -ljb +rgb +mRo +eHJ +ncS +fcl +uXZ +woy +eoe +rZq +sRr aoX aoX aoX @@ -78490,14 +78490,14 @@ ylo ylo ylo aqo -xlc -smo -doU -kai +iPT +mUs +hpL +inQ aJW aJW aJW -fLE +lXc aJW aJW aaa @@ -78533,14 +78533,14 @@ bdQ bdP aKt aKt -fAQ -shF -lQz -qPY +eMk +uzT +cql +hJC aKu -snz -rdY -lUz +gUZ +ljR +sGG aKt aKt aKu @@ -78602,73 +78602,73 @@ ylo ylo ylo aan -gSY -xuU -kIe -kIe -kIe -kIe -kIe -kIe -kIe -uCY -kIe -kIe -kIe -kIe -kIe -kIe -kIe -kIe -uCY -kIe -kIe -kIe -kIe -kIe -kIe -kIe -kIe -xuU -kIe -kIe +vWo +jaS +jLK +jLK +jLK +jLK +jLK +jLK +jLK +fTt +jLK +jLK +jLK +jLK +jLK +jLK +jLK +jLK +fTt +jLK +jLK +jLK +jLK +jLK +jLK +jLK +jLK +jaS +jLK +jLK adI -qOY -cQr -nvJ -pVY -pnO -eIj -hOe +cqL +eiX +jHD +kPE +bNf +gNp +gLk agL -tSq -kIJ -rGx -jfU -kIJ -vll -tSh +jhc +vBB +cYD +vUu +vBB +sOp +iNf ang -nzx -eyq -rdE -tEt -xGv +iTH +dbq +fHe +rpt +vmY ang -oIu -oIu -oIu -oIu -oIu -oIu -oIu -oIu -pZN -kBz -lYJ -dXx -fyl -fyl +snT +snT +snT +snT +snT +snT +snT +snT +pbq +feE +xRK +jIo +woj +woj qIU bQt hqX @@ -78681,14 +78681,14 @@ hqX qIU bQy cjs -vnt -cDd -miA -gcp -qPT -oeU -ssv -kpk +kIt +qPG +rLl +jzc +wSI +qIu +nyj +psM aqK ylo ylo @@ -78697,26 +78697,26 @@ qIU qIU qIU qIU -ufq -sAy -osX -qEr +vOS +gRO +qqJ +oLf aIA -oxU -cpO -cpO -kvA -uKD -xlx -kvA -cpO -cpO -iLc +xvC +nWz +nWz +eaI +fcl +uXZ +eaI +nWz +nWz +woy aIA -lyZ -lyZ -gsS -xQZ +hCQ +hCQ +wei +rVt aoX aoX aoX @@ -78735,11 +78735,11 @@ ylo ylo ylo aqo -wuG -qnl -cbv -eXL -grT +nhy +ddY +ohB +rFs +rDf bVE bVX bVH @@ -78784,7 +78784,7 @@ aKt aKt aKt aKu -vco +vXC aKu aKt bdP @@ -78850,57 +78850,57 @@ aan aan aan aan -dUo -nYm -nYm -qkf +nPI +sTa +sTa +jGB aan aan aan aan aan -rjB -nYm -nYm -nBj +vxM +sTa +sTa +naW aan aan aan aan aan -dUo -nYm -nYm -qkf +nPI +sTa +sTa +jGB aan aan aan aan aan aeb -lwg -ltg -qeG -mko -vRg -mko -cxr +vsF +sTj +fyl +ftt +uWm +ftt +vHg agL -uor -kIJ -hKq -jfU -kIJ -hDZ -wEz +nBA +vBB +xIY +vUu +vBB +foR +rrL ang -fdb -bGm -dyp -bGm -bGm -pZN -oIu +wAX +gga +jfC +gga +gga +pbq +snT hDF fJm aqt @@ -78909,11 +78909,11 @@ aqt aqt aqt aqt -muX -lYJ -rkc -kSU -itt +ohu +xRK +nMn +nAW +tkX qIU aTv bYm @@ -78924,16 +78924,16 @@ qIU bqo hqX qIU -hYr +pEn cjs -wWy -qPT -qPT -gcp -qPT -oeU -ssv -gJJ +oFP +wSI +wSI +jzc +wSI +qIu +nyj +nBf aqK ylo ajq @@ -78942,29 +78942,29 @@ qIU hqX bqp buU -txD -xlx -xlx -qXg -fNJ -lkG -xlx -xlx -xlx -coX -rWq -rWq -rWq -rWq -rWq -ljs -rWq -rWq -rqV -hVc -tlV -xAx -rlF +coQ +uXZ +uXZ +mjr +vAS +ncS +uXZ +uXZ +uXZ +qEL +lAP +lAP +lAP +lAP +lAP +wSy +lAP +lAP +wQO +nKk +wUo +fOP +nME aoX ajq ajq @@ -79028,9 +79028,9 @@ bei bdP bdP aKL -nlG -mSw -hol +reA +qYD +mIt aKL bdP bdZ @@ -79095,28 +79095,28 @@ ylo aSa ylo aan -cll -nYm -nYm -vfq +kRW +sTa +sTa +twd aan ylo aSa ylo aan -lKl -nYm -nYm -mhA +lgV +sTa +sTa +nJX aan ylo aSa ylo aan -cll -nYm -nYm -vfq +kRW +sTa +sTa +twd aan ylo ylo @@ -79131,31 +79131,31 @@ bmZ aeb aeb aet -tSq -dpQ -dpQ -jgQ -dpQ -dpQ -xZq +jhc +pQi +pQi +eKX +pQi +pQi +tGp ang -imR -bGm -oIu -bGm -unt +xKw +gga +snT +gga +hKK afa afa afa afa aht -tGm -kVw -hud -eEV +pfp +itz +gJo +kMI aqt buB -gUh +utv aqt aqt aqt @@ -79169,16 +79169,16 @@ qIU bQv bQN qIU -drf +oMU cjs -owr -qPT -qPT -gTZ -qPT -oeU -ssv -iwL +eOT +wSI +wSI +cHy +wSI +qIu +nyj +pwF ajq ajq ajq @@ -79187,29 +79187,29 @@ gLs aSW hqX gLs -fqC -xlx -wxT -xiz -naa -wjY -rWq -rWq -rWq -ngO -xlx -xlx -xlx -xlx -xlx -vRf -xlx -xlx -xlx -xlx -xlx -trK -lXu +iCe +uXZ +gpW +xKJ +gQa +wsC +lAP +lAP +lAP +oIX +uXZ +uXZ +uXZ +uXZ +uXZ +tpq +uXZ +uXZ +uXZ +uXZ +uXZ +krZ +twB aIA bhn ajq @@ -79273,9 +79273,9 @@ bdP bdP bdS aKL -nlG -mSw -hol +reA +qYD +mIt aKL bdS bdS @@ -79376,54 +79376,54 @@ ylo ylo ylo aet -pei -osL -osL -osL -osL -osL -bST +prE +lEa +lEa +lEa +lEa +lEa +hNP ang -dpJ -cwh -cwh -cwh -kVi +ePE +eBo +eBo +eBo +hZW afa ylo aSa ylo aht -jNX -cCk -xdl -jpc -xhY -jpc -hxS -hnX -cOl -qmW -jnG -nDY -efW -gzU -tXM -cYk -oid -wgh -mpA +iNA +lon +gFB +vXM +pcE +vXM +eho +dKJ +irh +ibZ +efU +fnE +ftn +jxf +pRc +cfM +cdk +gCa +nIQ eqz -ssv +nyj cjs -iwL -qPT -pVn -vnX -enP -dSx -cpn -qXp +pwF +wSI +qvk +ttZ +wFH +jYJ +hLG +sAU ajq bhn bhn @@ -79432,29 +79432,29 @@ gLs aCa hqX bQN -dgY -xCM -xlx -vXC +cyj +jWH +uXZ +edp aIA -oxU -wUC -soR -wAJ -uKD -xlx -wAJ -soR -glu -yaF +xvC +gAq +laP +lmX +fcl +uXZ +lmX +laP +pfC +itW aIA -cYt -hHU -hGU -raZ -cYt -cYt -juj +cjQ +nQc +vxl +hAs +cjQ +cjQ +pZs aIA bhn bhn @@ -79518,9 +79518,9 @@ aKy aKy aKy aKL -iBX -mSw -hTv +cOb +qYD +ppJ aKL aKy aKy @@ -79639,31 +79639,31 @@ aSa aSa aSa aht -rKr -xrw -djW -nTn +wKi +rnL +tyB +oJo aqt -nCt -maw -jpc -jpc -xdl -lDs -hie -kUJ -uMp -hie -djW -djW -djW -koE -nfw +hjK +osp +vXM +vXM +gFB +ljm +fFy +pyI +cuc +fFy +tyB +tyB +tyB +fwi +wgU bQy anw -cpn -lRn -wWy +hLG +xTR +oFP anw ajq ajq @@ -79671,30 +79671,30 @@ ajq ajq ajq bhn -cNM -kik +wit +rEm gLs gLs gLs gLs -gev +oAs aIA -oFX -rtg +hGX +eBI aIA -mQO -pJl -pyR -glu -coX -wBd -cwi -rUs -cYt -lfk +koT +dfQ +jCI +pfC +qEL +odY +npj +ePC +cjQ +ojC aIA -sux -mun +cot +gIg aIA aIA bco @@ -79759,17 +79759,17 @@ aJZ bdP aKy aKy -nLx -nLx -hmK +gZX +gZX +hMw aKL -rvH -mSw -tPj +peC +qYD +dyo aKL -hia -nLx -nLx +gNS +gZX +gZX aKy aKy bdy @@ -79884,25 +79884,25 @@ ylo ylo ylo aht -gYl -stb -jre -hrx +xGq +ieq +vbh +kLU aqt -uqM -vum -dIM -xJQ -pQm -djW -kEv -bnT -pQm -djW -kEv -lSZ -jre -nvB +lQc +ekh +kEh +kok +gpR +tyB +rQC +ocW +gpR +tyB +rQC +fNa +vbh +rlK eqz cjs cjs @@ -79911,43 +79911,43 @@ cjs cjs qAl qAl -kik -clf -kik -kik -kik -kik -kik -kik -kik -kik -kik -odp +rEm +umr +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +pCZ aIA -lgf +uLa aIA aIA aIA aIA -ttp -kiE -dfb -xlx -rfy -dpG +lMV +sWW +cCt +uXZ +cNy +gDd aIA aIA aIA -eEv +uLs aJO aIA -hiF -cBI -cBI -cBI -cBI -hiF -hiF +ncu +idK +idK +idK +idK +ncu +ncu bhn bhn bhn @@ -80003,19 +80003,19 @@ bdP bdP bdP aKy -nLx -pyq -hZh -tqS -hnz -gpe -wto -gpe -hnz -tqS -bQI -pyq -nLx +gZX +seZ +lOw +wtQ +iSM +vlG +oyE +vlG +iSM +wtQ +hBv +seZ +gZX aKy beg uRA @@ -80139,63 +80139,63 @@ aht aqt aqt aqt -nUW +gye aqt aqt aqt -nUW +gye aqt aqt aOT -kVM +hNr aQC -cBx +pBY aQC qAl qAl qAl qAl -kik -kik -kik -kik -kik -kik -kik -duF -kik -ptf -kik -kik -odp +rEm +rEm +rEm +rEm +rEm +rEm +rEm +yae +rEm +tYA +rEm +rEm +pCZ aIA -xlx -xaz -kkS -gRA +uXZ +tkN +kIo +cWZ aIA -oxU -kvA -uKD -xlx -kvA -iLc -tlV -tlV -tlV -tlV -tlV +xvC +eaI +fcl +uXZ +eaI +woy +wUo +wUo +wUo +wUo +wUo aIA -orm +tMU aen aen aen aen -cHZ -cBI -cBI -cBI -hiF +tbN +idK +idK +idK +ncu bhn bhn bhn @@ -80249,17 +80249,17 @@ aJZ aJZ aKy aKy -nLx -nLx -hmK +gZX +gZX +hMw aKL -qPC -mSw -isp +yju +qYD +xzY aKL -hia -nLx -nLx +gNS +gZX +gZX aKy aKy aJZ @@ -80381,68 +80381,68 @@ qIU ylo ylo aht -xsV -ecK -kJS -djW -czW +hbw +jNd +hUZ +tyB +vGQ aqt -wel -djW -koE +tUj +tyB +fwi aqt aQV aQO aQO -hdq +cfr aQC qAl qAl -kik -kik -kik -bhn -bhn -bhn -kik -cwV -olj -olj -olj -olj -olj -olj -cBn -xNM -yac -kXT -xlx -qXg -fNJ -lkG -xlx -uKD -thE -thE -xlx -tyF -xlx -xlx -xlx -iTf +rEm +rEm +rEm +bhn +bhn +bhn +rEm +jrx +lCX +lCX +lCX +lCX +lCX +lCX +wRn +tpB +nZT +rpG +uXZ +mjr +vAS +ncS +uXZ +fcl +iGj +iGj +uXZ +ktz +uXZ +uXZ +uXZ +xuj aIA -orm +tMU aen aen aen aen -xXF +bJE aen aen aen -cHZ -hiF -hiF +tbN +ncu +ncu bhn bhn bhn @@ -80498,9 +80498,9 @@ aKy aKy aKy aKL -nlG -mSw -hol +reA +qYD +mIt aKL aKy aKy @@ -80627,56 +80627,56 @@ ylo ylo aht aht -rCq -djW -djW -ruo +oTn +tyB +tyB +rwc aqt -gOB -djW -dsh +cKX +tyB +fei aqt aPb aQW aQO -hdq +cfr aQC qAl -kik -duF -kik +rEm +yae +rEm bhn bhn bhn bhn bhn -odp -kTI -kik -kik -kik -kik -kTI +pCZ +cGc +rEm +rEm +rEm +rEm +cGc bhn aIA -hWC -bvv -hYx -hYx -naa -wjY -rWq -reI -iAm -rWq -rWq -rWq -rWq -yac -xlx -rbQ +rgR +izC +hia +hia +gQa +wsC +lAP +rXw +igv +lAP +lAP +lAP +lAP +nZT +uXZ +sxY aIA -orm +tMU aen aen aen @@ -80686,12 +80686,12 @@ aen aen aen aen -cHZ -cBI -cBI -cBI -cBI -hiF +tbN +idK +idK +idK +idK +ncu ajq ajq ylo @@ -80743,9 +80743,9 @@ beo aJZ aJZ aKL -rmg -jaO -eof +kpy +loC +myy aKL bdS aJZ @@ -80872,56 +80872,56 @@ ylo ylo ylo aht -tpu -jST -rJe -pii +ePW +xPf +sCe +ebD aqt -oCZ -nTh -lHE +ddZ +iwe +fVB aht aQz aQz aQz -kVM +hNr aQC -kik -kik -kik +rEm +rEm +rEm bhn bhn bhn bhn bhn bhn -odp -kik -kik -duF -clf -kik +pCZ +rEm +rEm +yae +umr +rEm bhn bhn aIA -xjB -kFG +uYD +dhH gLs gLs gLs -mQO -jrt -xzz -lmX -jrt -dDv -xzz -kvA -uKD -xlx -eHV +koT +dxq +fsT +wyn +dxq +ljO +fsT +eaI +fcl +uXZ +fqL aIA -orm +tMU aen aen aen @@ -80936,8 +80936,8 @@ aen aen aen aen -cHZ -cBI +tbN +idK ajq ajq aSa @@ -80988,9 +80988,9 @@ aJZ bem bdS aKL -qYm -mSw -qjn +nWv +qYD +jlq aKL aJZ bdZ @@ -81129,44 +81129,44 @@ aht ylo ylo ajq -kik -kik -fOP -kik +rEm +rEm +uBz +rEm bhn bhn bhn bhn bhn bhn -kik -odp -kik -kik -kik -kik +rEm +pCZ +rEm +rEm +rEm +rEm bhn bhn bhn aIA -iqf -dmm +rIN +kEg bQN bUC gLs aIA aIA -lqN -mKu +kNL +bIp aIA aIA aIA -ndB -pym -ndB -qQN +jQg +uvi +jQg +sCR aIA -orm +tMU xzW cZu cZu @@ -81233,9 +81233,9 @@ aKy aKy aKy aKL -iBX -mSw -hTv +cOb +qYD +ppJ aKL aKy aKy @@ -81374,60 +81374,60 @@ ylo ylo ajq ajq -kik -kik -kik -kik +rEm +rEm +rEm +rEm bhn bhn bhn bhn -kik -kik -kik -odp -kik -kik +rEm +rEm +rEm +pCZ +rEm +rEm bhn bhn bhn bhn bhn aIA -qMG -obI +fFB +bCU buU bVN gLs -uQC -xIr -dIw -dAA -xIr -iQf +kyw +iTV +pWz +kcJ +iTV +llx aIA -kvA -uKD -xlx -kvA +eaI +fcl +uXZ +eaI aIA -orm +tMU mTa -vKI -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -mxv +yeA +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +bMF mTa aen ajq @@ -81474,17 +81474,17 @@ aKn aJZ aKy aKy -nLx -nLx -hmK +gZX +gZX +hMw aKL -rvH -mSw -cBh +peC +qYD +ijI aKL -hia -nLx -nLx +gNS +gZX +gZX aKy aKy bdS @@ -81618,20 +81618,20 @@ ylo ylo ajq ajq -kik -kik -kik -kik +rEm +rEm +rEm +rEm bhn bhn bhn -clf -duF -kik -cwV -olj -vqz -kik +umr +yae +rEm +jrx +lCX +iHR +rEm bhn bhn bhn @@ -81644,35 +81644,35 @@ bQv gLs gLs gLs -gLc -fgv -xlx -uKD -xEe -gvz +ugF +nLt +uXZ +fcl +xjP +iqW aJl -cAT -tRf -xlx -cpO +rAq +hEY +uXZ +nWz aIA -orm +tMU mTa -fkL +veo bgB bgB -ntH -ntH -ntH -ntH +dVk +dVk +dVk +dVk bgB -ntH -ntH -ntH -ntH +dVk +dVk +dVk +dVk bgB bgB -orm +tMU mTa aen aen @@ -81718,19 +81718,19 @@ aKi aKn bdZ aKy -nLx -pyq -hZh -tqS -hnz -gpe -prD -gpe -hnz -tqS -bQI -pyq -nLx +gZX +seZ +lOw +wtQ +iSM +vlG +jWD +vlG +iSM +wtQ +hBv +seZ +gZX aKy bdP rTj @@ -81862,21 +81862,21 @@ ylo ylo ajq ajq -kik -kik -clf -kik -kik +rEm +rEm +umr +rEm +rEm bhn bhn bhn -kik -kik -ktg -rBA -kik -kik -kik +rEm +rEm +lxq +wip +rEm +rEm +rEm bhn bhn bhn @@ -81889,39 +81889,39 @@ bUW hqX hqX gLs -iBV -cpO -xlx -uKD -cpO -gPv +hRz +nWz +uXZ +fcl +nWz +npP aJl -cpO -xlx -pMj -iqr +nWz +uXZ +qKa +giK aIA -orm +tMU mTa -fkL +veo bgB -cyr -whT -whT -whT -whT -whT -whT -whT -whT -whT -rFz +pxm +boC +boC +boC +boC +boC +boC +boC +boC +boC +wyG bgB -orm +tMU mTa aen aen -fkL +veo ajq ajq aSa @@ -81964,17 +81964,17 @@ aKo bdJ aKy aKy -nLx -nLx -hmK +gZX +gZX +hMw aKL -hqI -wlD -kNV +tmN +hns +mJO aKL -hia -nLx -nLx +gNS +gZX +gZX aKy aKy aJZ @@ -82106,68 +82106,68 @@ ylo ylo ylo ajq -kik -kik -kik -kik -kik +rEm +rEm +rEm +rEm +rEm bhn bhn bhn bhn bhn -kik -kik -odp -kik -duF -kik +rEm +rEm +pCZ +rEm +yae +rEm bhn bhn bhn bhn bhn -hiF +ncu gLs hqX bQt bQt hqX gLs -qDQ -cpO -wxT -tRf -cpO -mvP +gYx +nWz +gpW +hEY +nWz +mgX aIA -kvA -xlx -uKD -kvA +eaI +uXZ +fcl +eaI aIA -orm +tMU mTa -fkL -ntH -igW -ccB -rpY -rpY -rpY -ccB -rpY -tud -jLw -dMZ -tTV -ntH -orm +veo +dVk +osr +wRL +oIW +oIW +oIW +wRL +oIW +uOu +hRZ +guC +cTG +dVk +tMU mTa aen aen -fkL -hiF +veo +ncu ajq aSa aSa @@ -82214,7 +82214,7 @@ aKy aKy aKL aKL -fOt +xfw aKL aKL aKy @@ -82351,68 +82351,68 @@ ylo ylo ajq ajq -cNM -kik -kik -duF -kik +wit +rEm +rEm +yae +rEm bhn bhn bhn bhn bhn -kik -kik -odp -kik -kik +rEm +rEm +pCZ +rEm +rEm bhn bhn bhn bhn bhn -hiF -hiF +ncu +ncu gLs gLs gLs gLs gLs gLs -xjh -xzz -xlx -xlx -xuS -nwb +qLu +fsT +uXZ +uXZ +uRc +oRA aIA -ndB -ndB -pym -wha +jQg +jQg +uvi +mEH aIA -orm +tMU mTa -fkL -ntH -igW -rpY -tud -rpY -raY -rpY -dLM -rpY -jmf -rpY -tTV -ntH -orm +veo +dVk +osr +oIW +uOu +oIW +gvT +oIW +raS +oIW +mJM +oIW +cTG +dVk +tMU mTa aen aen -fkL -hiF +veo +ncu ajq ajq aSa @@ -82458,9 +82458,9 @@ xsU aJZ aJZ aKL -nIN -ibR -moq +tvb +gnG +eON aKL bdP bdP @@ -82595,70 +82595,70 @@ ylo ylo ajq ajq -kik -kik -duF -kik -kik -kik +rEm +rEm +yae +rEm +rEm +rEm bhn bhn bhn bhn -kik -kik -kTI -odp +rEm +rEm +cGc +pCZ bhn bhn bhn bhn bhn bhn -hiF -hiF -hiF -hiF -cBI -cBI -cBI -hiF +ncu +ncu +ncu +ncu +idK +idK +idK +ncu aIA aIA -dNV -xlx -xlx -tFn +khZ +uXZ +uXZ +myo aIA aIA -uYB -dUw -glM -dUw +ipW +iDg +scm +iDg boe -orm +tMU mTa -fkL -ntH -igW -rpY -dMZ -rpY -rpY -hCT -rpY -rpY -dLM -rpY -tTV -ntH -orm +veo +dVk +osr +oIW +guC +oIW +oIW +vbR +oIW +oIW +raS +oIW +cTG +dVk +tMU cUc cZu -xzv -qDZ -qDZ -mAU +qgi +fqE +fqE +bIB ajq ajq aSa @@ -82703,9 +82703,9 @@ aJZ bdZ beo aKL -eAy -kSe -gQU +tPQ +srj +sQJ aKL bdP aJZ @@ -82839,72 +82839,72 @@ ylo ylo ylo ajq -kik -kik -yeV -kik -kik -clf -kik -kik +rEm +rEm +jjX +rEm +rEm +umr +rEm +rEm bhn bhn -kik -kik -kik -kik -odp +rEm +rEm +rEm +rEm +pCZ bhn bhn bhn bhn bhn -hiF -hiF -hiF -hiF -qqw +ncu +ncu +ncu +ncu +oNN aen aen aen -cHZ -hiF +tbN +ncu bcm -dNy -xlx -xlx -nrV +jcU +uXZ +uXZ +wkH bcm -cGs -dUw -dUw -glM -dUw -uUT -orm +mLD +iDg +iDg +scm +iDg +npa +tMU mTa -fkL +veo bgB -igW -jmf -rpY -ciE -eTp -rpY -ipJ -rpY -rpY -rpY -tTV +osr +mJM +oIW +lBv +pqu +oIW +uUU +oIW +oIW +oIW +cTG bgB -orm +tMU aen aen bhn -hiF -hiF -rxp -hiF +ncu +ncu +nXh +ncu ajq aSa aSa @@ -83084,72 +83084,72 @@ ylo ylo ajq ajq -kik -kik -vCW -kik -kik -kik -kik -kik -kik -kik -kik -kik -kik -kik -odp -kik -kik -bhn -bhn -kik -uVN -hiF -hiF -qqw +rEm +rEm +tTD +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +pCZ +rEm +rEm +bhn +bhn +rEm +dum +ncu +ncu +oNN aen aen aen aen aen -fkL +veo bcm -wtE -jIp -izu -ubg +gXw +geB +vYc +cgX bcm -dUw -dUw -dUw -mKE -knP -nLi -wfm +iDg +iDg +iDg +xRn +pCA +uwT +eQI xoj -fkL -ntH -igW -raY -rpY -rpY -rpY -rpY -lIM -kxr -gPW -rpY -tTV -ntH -orm +veo +dVk +osr +gvT +oIW +oIW +oIW +oIW +epx +ecf +mBQ +oIW +cTG +dVk +tMU aen bhn bhn bhn -hiF -rxp -hiF +ncu +nXh +ncu ajq ajq aSa @@ -83328,73 +83328,73 @@ ylo ylo ylo ajq -kik -kik -kik -wCu -olj -olj -olj -olj -vTd -uYW -olj -olj -olj -olj -olj -cBn -olj -olj -olj -uYW -gQp -fTR -qDZ -wfm +rEm +rEm +rEm +qza +lCX +lCX +lCX +lCX +mrh +qrD +lCX +lCX +lCX +lCX +lCX +wRn +lCX +lCX +lCX +qrD +dCi +bGD +fqE +eQI cZu cZu cZu cZu cZu nbS -fkL +veo bcm -fbE -iKU -elf -rvy +goj +lIk +jMS +jWn bcm -dUw -dUw -dUw -glM -dUw -uUT -orm +iDg +iDg +iDg +scm +iDg +npa +tMU aen -fkL -ntH -igW -rpY -rpY -rpY -rpY -rpY -lIM -ftH -rpY -eTp -tTV -ntH -orm +veo +dVk +osr +oIW +oIW +oIW +oIW +oIW +epx +tfR +oIW +pqu +cTG +dVk +tMU aen bhn bhn bhn -gvY -hWj -mAU +nKq +pbT +bIB bhn ajq aSa @@ -83573,74 +83573,74 @@ ylo ylo ajq ajq -kik -kik -kik -duF -kik -kik -kik -bhn -kik -odp -duF -kik -bhn -bhn -kik -kik -ptf -kik -kik -odp -kik -kik -bhn -orm +rEm +rEm +rEm +yae +rEm +rEm +rEm +bhn +rEm +pCZ +yae +rEm +bhn +bhn +rEm +rEm +tYA +rEm +rEm +pCZ +rEm +rEm +bhn +tMU aen aen aen aen aen mTa -fkL +veo bcn bcn bcn bcn bcn bcn -dUw -dUw -dUw -glM -dUw -uUT -orm -xXF -fkL -ntH -igW -rpY -rpY -dLM -rpY -tud -gTl -mws -rpY -ccB -tTV -ntH -orm +iDg +iDg +iDg +scm +iDg +npa +tMU +bJE +veo +dVk +osr +oIW +oIW +raS +oIW +uOu +ylZ +shm +oIW +wRL +cTG +dVk +tMU aen aen bhn bhn bhn -hiF -rxp -hiF +ncu +nXh +ncu ajq ajq aSa @@ -83817,75 +83817,75 @@ ylo ylo ylo ajq -kik -kik -kik -kik -duF -kik -kik -bhn -bhn -xDz -jQY -xDz +rEm +rEm +rEm +rEm +yae +rEm +rEm +bhn +bhn +mpM +tpj +mpM aOC bhn bhn bhn bhn -kik -kik -kik -odp -kik +rEm +rEm +rEm +pCZ +rEm bhn bhn -hiF -mxv +ncu +bMF aen opW aen -xXF +bJE mTa -cHZ -cBI -cBI -cBI -cBI -cBI -hiF -uJx -dUw -dUw -glM -dUw -uUT -hiF -tAc -hiF +tbN +idK +idK +idK +idK +idK +ncu +poN +iDg +iDg +scm +iDg +npa +ncu +cxI +ncu bgB -igW -rpY -ofv -rpY -ccB -rpY -rpY -pef -oQb -jmf -tTV +osr +oIW +izJ +oIW +wRL +oIW +oIW +wGV +lQP +mJM +cTG bgB -orm +tMU aen aen bhn bhn bhn -hiF -rxp -hiF +ncu +nXh +ncu bhn aQz aQz @@ -84062,33 +84062,33 @@ pdg pdg ajq ajq -kik -fOP -kik -kik -kik -kik +rEm +uBz +rEm +rEm +rEm +rEm bhn bhn bhn -kik -odp -kik +rEm +pCZ +rEm bhn bhn bhn bhn bhn -kik -kik -duF -xZI +rEm +rEm +yae +qMx bhn bhn bhn bhn -hiF -mxv +ncu +bMF aen aen aen @@ -84098,48 +84098,48 @@ aen aen aen aen -xXF -fkL -uJx -dUw -dUw -glM -dUw -dUw -psa -psa -psa -ujK -rpY -rpY -rpY -rpY -rpY -xQV -rpY -wKC -rpY -jLw -tTV -ntH -orm +bJE +veo +poN +iDg +iDg +scm +iDg +iDg +vuc +vuc +vuc +cYB +oIW +oIW +oIW +oIW +oIW +nnU +oIW +rjy +oIW +hRZ +cTG +dVk +tMU aen aen -fkL +veo bhn bhn bhn -rxp -hiF -hiF +nXh +ncu +ncu aQC -nLS -xSi +iNc +ekV aQJ aQV aRb aQC -kVM +hNr aYR bdR bdR @@ -84306,36 +84306,36 @@ pdg pdg pdg ajq -kik -kik -kik -kik -kik -kik +rEm +rEm +rEm +rEm +rEm +rEm bhn bhn bhn -kik -kik -odp -kik +rEm +rEm +pCZ +rEm bhn bhn bhn bhn bhn bhn -duF -kik -odp +yae +rEm +pCZ bhn bhn bhn bhn bhn -hiF -tAc -mxv +ncu +cxI +bMF aen cUc cZu @@ -84344,47 +84344,47 @@ cZu cZu ejl cZu -nfi -bvu -knP -knP -cgI -dUw -dUw -dUw -dUw -dUw -kqr -rpY -rpY -rpY -jLw -jLw -jmf -rpY -uDv -rpY -aOO -tTV -ntH -orm +jsD +nYk +pCA +pCA +maY +iDg +iDg +iDg +iDg +iDg +sTI +oIW +oIW +oIW +hRZ +hRZ +mJM +oIW +jRe +oIW +nNs +cTG +dVk +tMU aen aen -fkL -hiF -hiF -bhn -rxp -hiF -hiF -kts -xSi -xSi +veo +ncu +ncu +bhn +nXh +ncu +ncu +xas +ekV +ekV aQO aQW aQO -xSi -hdq +ekV +cfr aYR aYR aPN @@ -84551,28 +84551,28 @@ pdg pdg ajq ajq -kik -kik -kik -kik +rEm +rEm +rEm +rEm bhn bhn bhn bhn bhn -kik -tWT -odp -kik -kik +rEm +nyO +pCZ +rEm +rEm bhn bhn bhn bhn bhn -kik -duF -odp +rEm +yae +pCZ bhn bhn bhn @@ -84580,8 +84580,8 @@ bhn bhn bhn bhn -hiF -mxv +ncu +bMF aen aen aen @@ -84589,38 +84589,38 @@ aen aen mTa aen -fkL -uJx -dUw -dUw -mKE -knP -knP -knP -knP -knP -nkc -dtO -dtO -pXq -dtO -dtO -pdr -rpY -dMZ -xgC -rpY -tTV -ntH -orm +veo +poN +iDg +iDg +xRn +pCA +pCA +pCA +pCA +pCA +pfy +vgh +vgh +tXU +vgh +vgh +hsB +oIW +guC +kVC +oIW +cTG +dVk +tMU aen aen -cHZ -hiF -hiF -hiF -rxp -hiF +tbN +ncu +ncu +ncu +nXh +ncu bhn bhn aQz @@ -84628,8 +84628,8 @@ aQz aQJ aQO aQJ -hdq -jEU +cfr +oCD aYR aYR aYR @@ -84795,29 +84795,29 @@ pdg pdg pdg ajq -kik -cNM -kik -kik -kik +rEm +wit +rEm +rEm +rEm bhn bhn bhn bhn bhn -kik -kik -vCW -kik -kik +rEm +rEm +tTD +rEm +rEm bhn bhn bhn bhn bhn -kik -kik -odp +rEm +rEm +pCZ bhn bhn bhn @@ -84826,52 +84826,52 @@ bhn bhn bhn bhn -hiF -tAc -mxv +ncu +cxI +bMF aen aen aen mTa aen -fkL -uJx -dUw -dUw -glM -dUw -dUw -jWY -jWY -jWY -gEu -jLw -jLw -rpY -hCT -rpY -rpY -nTJ -rpY -rpY -rpY -tTV -ntH -orm +veo +poN +iDg +iDg +scm +iDg +iDg +xib +xib +xib +nRi +hRZ +hRZ +oIW +vbR +oIW +oIW +gVS +oIW +oIW +oIW +cTG +dVk +tMU aen aen aen bhn -hiF -hiF -rxp +ncu +ncu +nXh bhn bhn bhn bhn aQz -hdq -xSi +cfr +ekV aQC aQC aQC @@ -85040,30 +85040,30 @@ pdg pdg pdg ajq -kik -kik -kik -kik +rEm +rEm +rEm +rEm bhn bhn bhn bhn -tNU +qmO tIk -kik -kik -odp -kik -kik +rEm +rEm +pCZ +rEm +rEm tIk -gUx +vbI bhn bhn bhn bhn -kik -rNs -kik +rEm +hCb +rEm bhn bhn bhn @@ -85073,58 +85073,58 @@ bhn bhn bhn bhn -hiF -mxv +ncu +bMF aen aen mTa aen -fkL -uJx -dUw -dUw -glM -dUw -uUT -hiF -cBI -hiF +veo +poN +iDg +iDg +scm +iDg +npa +ncu +idK +ncu bgB -igW -liO -rpY -dMZ -rpY -jmf -rpY -uDv -rpY -hCT -tTV +osr +xjt +oIW +guC +oIW +mJM +oIW +jRe +oIW +vbR +cTG bgB -orm +tMU aen aen bhn bhn -hiF -hiF -rxp +ncu +ncu +nXh bhn bhn bhn bhn aQz -gHC -hdq +eyw +cfr aQC -gHL -oJL -jaN -tFR -oJL -oJL -jvO +lQI +onf +sAv +iaO +onf +onf +sPR aqL aqL aqL @@ -85167,10 +85167,10 @@ ylo ylo aEw aEw -tzx -uKZ -jzf -lxp +hYm +gQR +qiq +neN aEw aEw ylo @@ -85285,30 +85285,30 @@ pdg pdg ajq ajq -kik -kik -kik -kik +rEm +rEm +rEm +rEm bhn bhn bhn bhn -vOj -xDz -kik -kik -odp -kik -dSJ -xDz -vOj +cSZ +mpM +rEm +rEm +pCZ +rEm +vnu +mpM +cSZ bhn bhn bhn bhn -kik -odp -fPS +rEm +pCZ +gxe bhn bhn bhn @@ -85319,59 +85319,59 @@ bhn bhn bhn bhn -orm +tMU aen sDi mvL aen -fkL -uJx -dUw -dUw -glM -dUw -uUT -orm -xXF -fkL -ntH -igW -rpY -rpY -hgX -rpY -vVd -rpY -ccB -ila -rpY -tTV -ntH -orm +veo +poN +iDg +iDg +scm +iDg +npa +tMU +bJE +veo +dVk +osr +oIW +oIW +xKI +oIW +uQL +oIW +wRL +tvd +oIW +cTG +dVk +tMU aen aen bhn bhn -hiF -hiF -rxp -hiF -hiF +ncu +ncu +nXh +ncu +ncu bhn bhn aQz aQz -kVM +hNr aQC -qtV -xqa -sYW -sYW -sYW -goY -mKj -oJw -nlK +ghm +mTC +svr +svr +svr +kog +sEZ +djp +oQp aqL aqL aqL @@ -85402,7 +85402,7 @@ bdR bdP bdP aQC -kVM +hNr aQC aQz ylo @@ -85411,12 +85411,12 @@ ylo ylo ylo aEw -ptP -tzx -rEi -gLd -lxp -mNE +sIa +hYm +xgr +maG +neN +lXX aEw ylo ylo @@ -85529,32 +85529,32 @@ pdg pdg pdg ajq -kik -kik -kTI -kik -kik +rEm +rEm +cGc +rEm +rEm bhn bhn bhn bhn -eEH +gbg tIk -kik -tWT -odp -kik -kik +rEm +nyO +pCZ +rEm +rEm tIk -rqR +ubH bhn bhn bhn bhn -fPS -lga -hiF -hiF +gxe +wVo +ncu +ncu bhn bhn bhn @@ -85563,60 +85563,60 @@ bhn bhn bhn bhn -hiF -qqw +ncu +oNN aen aen mTa aen -fkL -uJx -dUw -dUw -glM -dUw -uUT -orm +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -fkL -ntH -tIb -rpY -hCT -coD -rpY -raY -rpY -dLM -rpY -rpY -tTV -ntH -orm +veo +dVk +rII +oIW +vbR +oFS +oIW +gvT +oIW +raS +oIW +oIW +cTG +dVk +tMU aen aen bhn bhn bhn -hiF -rxp -hiF -hiF -qqw +ncu +nXh +ncu +ncu +oNN bhn bhn ajq -kXB -kXB -qtV -xhM -fjT -qnK -lfE -qtV -wvj -cvK -erN +rXS +rXS +ghm +upm +gBU +ueR +nKM +ghm +jko +guw +cRA asD ylo aqL @@ -85647,7 +85647,7 @@ aqL aqL aQz aQC -xSi +ekV bcx aQz aEw @@ -85656,12 +85656,12 @@ aEw aEw aEw aEw -kzk -tzx -cnT -sTs -lxp -mBC +ski +hYm +rJj +koz +neN +fFW aEw aEw aEw @@ -85774,94 +85774,94 @@ pdg pdg pdg ajq -kik -kik -kik -duF +rEm +rEm +rEm +yae bhn bhn bhn bhn -vOj +cSZ tIk tIk -kik -kik -odp -kik -kik +rEm +rEm +pCZ +rEm +rEm tIk tIk bhn bhn bhn bhn -hiF -rxp -hiF -hiF -hiF +ncu +nXh +ncu +ncu +ncu bhn bhn bhn bhn bhn bhn -hiF -qqw +ncu +oNN aen aen aen mTa aen -fkL -uJx -dUw -dUw -glM -dUw -uUT -orm +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -fkL -ntH -igW -ccB -rpY -woh -mja -rpY -rpY -rpY -jmf -rpY -tTV -ntH -orm +veo +dVk +osr +wRL +oIW +uKL +mAQ +oIW +oIW +oIW +mJM +oIW +cTG +dVk +tMU aen aen bhn bhn bhn -hiF -rxp -cBI -qqw +ncu +nXh +idK +oNN aen aen bhn ajq -cTI -kXB -qtV -xhM -cVG +xGM +rXS +ghm +upm +uwG akq -kWq -qtV -wvj -xhM -cZr +rwO +ghm +jko +upm +ccK afd ylo ylo @@ -85891,25 +85891,25 @@ aqL aqL ylo aQz -fDT +opN aQW aQJ aQC -ejU -oAW +cAO +kiz uHr -kPs -dBc -oBy -oBy -oBy -oBy -map -oBy -txL +mtI +lTS +cvC +cvC +cvC +cvC +gxz +cvC +myM auH -fhP -nei +cXC +wxh aEw aEw aEw @@ -86019,94 +86019,94 @@ pdg pdg pdg ajq -clf -kik -kik -kik +umr +rEm +rEm +rEm bhn bhn bhn -tKe -xDz +njA +mpM tIk -duF -kik -fOP -rFA -gjl -kik +yae +rEm +uBz +tuy +hIi +rEm tIk -vOj +cSZ bhn bhn bhn bhn -hiF -rxp -hiF -cBI -cBI -hiF +ncu +nXh +ncu +idK +idK +ncu bhn bhn -hiF -hiF -cBI -qqw +ncu +ncu +idK +oNN aen aen aen aen mTa aen -fkL -uJx -dUw -dUw -glM -dUw -uUT -orm +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -fkL +veo bgB -iVa -pNW -pNW -pNW -pNW -pNW -pNW -pNW -pNW -pNW -omv +eni +oXG +oXG +oXG +oXG +oXG +oXG +oXG +oXG +oXG +wpG bgB -orm +tMU aen aen aen bhn bhn bhn -tDk +hag aen aen aen aen aen ajq -lsQ -sgd -qtV -xhM -uNV -ehc -mTf -qtV -wvj -xhM -gCP +uvx +orS +ghm +upm +npi +sic +uxX +ghm +jko +upm +umG afd ylo ylo @@ -86115,16 +86115,16 @@ ylo ylo ylo atA -jfp -owQ +hWq +qQL auh auh auh atA -fvh -fvh -fxU -enW +kyy +kyy +cCp +dZf aLV auj auj @@ -86136,28 +86136,28 @@ ylo ylo ylo aQz -gMS +cZR aQO -xSi -kts -ejU +ekV +xas +cAO sVk -fvx -xAv -xAv -dAR -tFu -tFu -wNJ -tFu -uoc -eWp +dPv +kur +kur +wJo +gwt +gwt +ovg +gwt +mWF +fEX auS -oBy -oBy -gDI -whp -fdH +cvC +cvC +nbD +jNw +rwY aEw aEw ylo @@ -86264,38 +86264,38 @@ pdg pdg pdg ajq -kik -kik -kik -kik +rEm +rEm +rEm +rEm bhn bhn bhn tIk -dSJ -cwV -olj -olj -olj -ihc -kik -ptf -xDz -eEH +vnu +jrx +lCX +lCX +lCX +ndb +rEm +tYA +mpM +gbg bhn bhn bhn -hiF -hiF -wpq -qqw +ncu +ncu +nex +oNN aen aen -cHZ -hiF -hiF -hiF -qqw +tbN +ncu +ncu +ncu +oNN aen aen aen @@ -86304,30 +86304,30 @@ aen aen mTa aen -fkL -uJx -dUw -dUw -glM -dUw -uUT -orm +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -fkL +veo bgB bgB -ntH -ntH -ntH -ntH +dVk +dVk +dVk +dVk bgB -ntH -ntH -ntH -ntH +dVk +dVk +dVk +dVk bgB bgB -orm +tMU aen aen aen @@ -86341,17 +86341,17 @@ aen aen aen ajq -nlK -iZI -qtV -mKj -oJL -wKz -fHf -iNx -poN -lmk -erN +oQp +eZR +ghm +sEZ +onf +bMr +dhd +fVG +hJA +rcq +cRA afd ylo ylo @@ -86360,20 +86360,20 @@ ylo ylo ylo anD -dRv -rCv -vbl -mXg -xOo +nXB +xxf +ohc +iBi +ykJ aui -iXZ -szV -pvW -iMG +gTZ +jYn +cVo +hUW aLU -cIq -gLw -rxM +nov +tAc +qjn aNw ylo ylo @@ -86387,23 +86387,23 @@ aQz aQz oiu sVk -fvx -xAv -xAv -jIn -xAv -xAv -vhL -xAv -jSB -tFu -jni -tFu -tFu -qWL -cFS -xAv -taq +dPv +kur +kur +wIm +kur +kur +qJf +kur +iLQ +gwt +xZH +gwt +gwt +xhM +kJe +kur +vwf aEw ylo ylo @@ -86509,37 +86509,37 @@ pdg pdg ajq ajq -kik -kik -kik -kik +rEm +rEm +rEm +rEm bhn bhn -vOj +cSZ tIk -kik -odp -kik -tWT -kik -kik -kik -tWT +rEm +pCZ +rEm +nyO +rEm +rEm +rEm +nyO tIk -vOj +cSZ bhn bhn bhn -hiF -orm +ncu +tMU vyB cZu cZu cZu cZu -oLx -oSY -rzZ +vXv +ewE +qaF cZu cZu cZu @@ -86549,30 +86549,30 @@ cZu cZu xFN cZu -nfi -bvu -knP -knP -cgI -dUw -uUT -orm +jsD +nYk +pCA +pCA +maY +iDg +npa +tMU aen -cHZ -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -qqw +tbN +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +oNN aen aen aen @@ -86588,15 +86588,15 @@ aen ajq asD asD -qtV -wvj -wvj -wvj -wvj -wvj -wvj -sXK -nlK +ghm +jko +jko +jko +jko +jko +jko +srH +oQp asD ylo ylo @@ -86605,20 +86605,20 @@ ylo ylo ylo anD -dRv -xUM -vqm -wrr -oHc +nXB +tcq +xYq +klh +sYV aui -pCC -szV -szV -pCC +cUz +jYn +jYn +cUz aLU -kWy -cIM -cPt +tqu +rbX +tie aNw ylo ylo @@ -86631,24 +86631,24 @@ ylo ylo aEw sVk -ejU +cAO uHr -xNU -eQn -jIn -vev -pMq -dZF -tKi -ybD -rxg +gog +pAe +wIm +uYO +seO +rdB +jbi +lUL +cpq auS -oGc -xAv -kGs -xAv -xFP -snp +tTr +kur +mvn +kur +qzt +lzV auQ ylo ylo @@ -86753,30 +86753,30 @@ pdg pdg pdg ajq -kik -kik -kik -kik -ptf +rEm +rEm +rEm +rEm +tYA bhn bhn -vOj -xDz -kik -odp -kTI -kik -kik -clf -kik -kik +cSZ +mpM +rEm +pCZ +cGc +rEm +rEm +umr +rEm +rEm bhn bhn bhn bhn bhn bhn -orm +tMU mTa aen aen @@ -86793,15 +86793,15 @@ aen aen aen aen -xXF -fkL -uJx -dUw -dUw -glM -dUw -uUT -orm +bJE +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen aen aen @@ -86820,7 +86820,7 @@ aen aen aen aen -xXF +bJE aen aen aen @@ -86832,16 +86832,16 @@ aen aen aen jOh -chn -vCi -sYW -gFt -fLX -oLn -sYW -sYW -jMC -cTI +cUQ +eqs +svr +gqN +uDY +pnS +svr +svr +kea +xGM asD asD asD @@ -86850,20 +86850,20 @@ atA atA atA atA -neb -xUM -nqX -xNY -iYu +ugI +tcq +cSX +cqO +eUL aui -kEM -liu -szV -iXZ +qMc +eVh +jYn +gTZ aLU -utj -isb -ldL +iOz +jze +dRs aLV ylo avm @@ -86875,25 +86875,25 @@ avm auE auE aEw -ejU -ejU +cAO +cAO auH auH auH -tYW +sCE auH auH auH -jQX -mDn -fRA +mge +gJN +rWj auH -iZV -gQO -kQO -oGc -xAv -wSa +hND +urh +tXe +tTr +kur +cfY auQ ylo ylo @@ -86998,22 +86998,22 @@ pdg pdg pdg ajq -kik -kik -kik -kik -kik -kik -bhn -tKe +rEm +rEm +rEm +rEm +rEm +rEm +bhn +njA tIk -kik -odp -kik -kik +rEm +pCZ +rEm +rEm bhn aOC -xDz +mpM aOC bhn bhn @@ -87021,123 +87021,123 @@ bhn bhn bhn bhn -orm +tMU mTa -vKI -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -hiF -uJx -dUw -dUw -glM -dUw -uUT -hiF -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -riQ -tAc -tAc -tAc -tAc -tAc -tAc +yeA +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +ncu +poN +iDg +iDg +scm +iDg +npa +ncu +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +jhX +cxI +cxI +cxI +cxI +cxI +cxI jOh -yhv -mIm -ksU -geR -glw -ezA -eFQ -kXB -dYR -kXB -efP +tnO +fBj +kiM +xKz +nio +dvP +jMP +rXS +cSQ +rXS +nWZ aCu aCK -wAY -iXZ +dYc +gTZ aCO aCX -mzE -xUM -ifz -vmd +wZz +tcq +hTa +tdu auh auh atA -fvh -fxU -fvh -heq +kyy +cCp +kyy +ocB aLV -mFl -dga +gYy +aAn aNq aNq aNq aNq -mcs -jfW +jvQ +wkC avm avm avm -dqy -jfW +pCR +wkC aNq -pDo +ceC aNq auB -pHJ -cQS -jIn -wjl -txL +kNz +cqs +wIm +wKS +myM auH -yiF -mDn -fRA +nJL +gJN +rWj auH auH auH auH auH -ruj +hhQ bwS aEw ylo @@ -87243,84 +87243,84 @@ pdg pdg pdg ajq -kik -fOP -kik -kik -kik -kik +rEm +uBz +rEm +rEm +rEm +rEm bhn aOC aOC -xDz -jQY -xDz +mpM +tpj +mpM bhn bhn bhn -sXY +uDT bhn bhn bhn bhn bhn bhn -hiF -orm +ncu +tMU mTa -fkL +veo aJm aJm -jUV -jUV +wvJ +wvJ aJm aJm -jUV -jUV +wvJ +wvJ aJm aJm -psa -psa -psa -psa -psa -psa -dUw -dUw -dUw -glM -dUw -dUw -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -psa -gtB -psa -psa -psa -psa -psa -fQu +vuc +vuc +vuc +vuc +vuc +vuc +iDg +iDg +iDg +scm +iDg +iDg +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +rTy +vuc +vuc +vuc +vuc +vuc +pNU asD ajm ajm @@ -87329,8 +87329,8 @@ asD ajm ajm akq -wvj -seY +jko +nSr akq akq akq @@ -87340,50 +87340,50 @@ akB akB akB akB -oSC -mHe -rCv -xhG -sQN +sel +hmN +xxf +jNr +que akB -uWB -uvh -fZe -lgV -sZI -jlD -oxq +eTJ +iqG +xbF +wMI +kam +eGS +kPL aNq -sfo -nuA -qzw -cnn -hTt -ozK -pbu -dnM -hTt -cnn -qzw -qzw -gVU +jBZ +ukH +kaX +qcr +lXj +jCp +ulx +jxL +lXj +qcr +kaX +kaX +dDb auB -rHZ -ejU -nWs -qfw -nxX +lwF +cAO +mdH +cPu +qQQ auH -jND -mDn -sza +lJg +gJN +ouQ auH -dvN -yjQ -qAX -cQS -xAv -kUq +oWb +mks +dCy +cqs +kur +hFA auQ ylo ylo @@ -87488,18 +87488,18 @@ pdg pdg pdg ajq -kik -kik -kik -kik -kik -kik -kik -kik -kik -kTI -odp -kik +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +cGc +pCZ +rEm bhn bhn bhn @@ -87509,126 +87509,126 @@ bhn bhn bhn bhn -hiF -hiF -qqw +ncu +ncu +oNN mTa -fkL +veo aJm -eyo -pUf -pUf -pUf -pUf -pUf -pUf -pUf +ocV +uEj +uEj +uEj +uEj +uEj +uEj +uEj aJm -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -dUw -dUw -gNK -lrl -gVO -soV -lmi -slc -cfK -mhS -mCr -fRb -cfK -jIe -uUM -jIe -jIe -jIe -jIe -nim +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +eas +jPr +map +hfS +psj +tNi +tNM +qtT +pet +rtG +tNM +dEr +kPU +dEr +dEr +dEr +dEr +bLJ akB -uhI -mHe -xUM -phb -cjo +qrP +hmN +tcq +vuo +hLx aui -xAk -fRb -mCr -qsF -iYt -qHk -cPt +uoN +rtG +pet +tVI +dOE +rrw +tie aNq -qnU -tof -yir -yir -fTP -xjH -xjH -xjH -xyB -yir -yir -fTP -cul +kiW +rmD +vKM +vKM +vWG +jMc +jMc +jMc +cpx +vKM +vKM +vWG +ebc auB -keQ -cXR -fCd -qoe -gFq +kaq +iFx +wzJ +rBt +vXZ auH -hUU -mDn -fRA +yaH +gJN +rWj auH -enV -xAv -xAv -xAv -xAv -hih +xqM +kur +kur +kur +kur +rWI auQ ylo ylo @@ -87733,18 +87733,18 @@ pdg pdg pdg ajq -kik -kik -kik -duF -kik -kik -kik -kik -kik -kik -odp -cNM +rEm +rEm +rEm +yae +rEm +rEm +rEm +rEm +rEm +rEm +pCZ +wit bhn bhn bhn @@ -87754,126 +87754,126 @@ bhn bhn bhn bhn -hiF -qqw +ncu +oNN aen mTa -fkL -jUV -xDb -fHi -wzv -sHK -sHK -vhb -sHK -sHK -mRe -knP -knP -gah -knP -knP -knP -knP -knP -gah -pTu -knP -knP -knP -knP -knP -knP -knP -knP -knP -xra -knP -knP -knP -knP -knP -knP -gah -knP -knP -knP -knP -knP -knP -knP -knP -pTu -knP -gah -knP -knP -knP -knP -wfN -jne -jNR -jNR -pdx -mCr -mCr -mCr -mCr -uvh -fZe -fZe -ryW -fZe -fZe -fZe -suk -miZ +veo +wvJ +szf +opn +pVE +oWx +oWx +wPH +oWx +oWx +wdw +pCA +pCA +hKP +pCA +pCA +pCA +pCA +pCA +hKP +yfj +pCA +pCA +pCA +pCA +pCA +pCA +pCA +pCA +pCA +ipz +pCA +pCA +pCA +pCA +pCA +pCA +hKP +pCA +pCA +pCA +pCA +pCA +pCA +pCA +pCA +yfj +pCA +hKP +pCA +pCA +pCA +pCA +qnY +uyf +oMm +oMm +vfQ +pet +pet +pet +pet +iqG +xbF +xbF +htu +xbF +xbF +xbF +xVc +ucS akB -uhI -mHe -xUM -upx -tSZ +qrP +hmN +tcq +tqM +vfe aui -diY -fRb -mCr -gae +uZs +rtG +pet +dQC aLY -fSk -dcB +wrq +rRC aNq -mpf -wxg -toO -toO -qAb -twN -xjH -xjH -wxg -toO -toO -qAb -rKK +kOX +uQD +efS +efS +wdO +fXX +jMc +jMc +uQD +efS +efS +wdO +mEW auB -kEE -imG -imG -imG -vuN +lEd +dvy +dvy +dvy +wZT auH -hUU -mDn -eWp +yaH +gJN +fEX auH -vNp -cqu -sbn -xAv -xAv -rFq +ucy +xyx +hYV +kur +kur +iYp aEw ylo ylo @@ -87978,130 +87978,130 @@ pdg pdg pdg ajq -kik -kik -cNM -kik -bhn -kik -kik -kik -ptf -kik -odp -fPS +rEm +rEm +wit +rEm +bhn +rEm +rEm +rEm +tYA +rEm +pCZ +gxe bhn -hiF +ncu bhn bhn bhn bhn bhn bhn -hiF -qqw +ncu +oNN aen sDi mvL -fkL -jUV -xDb -fHi -jjZ -fHi -fHi -eQI -fHi -fHi +veo +wvJ +szf +opn +xvg +opn +opn +fFe +opn +opn aJm -dUw -dUw -glM -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -dUw -dUw -dUw -rJQ -rJQ -rJQ -rJQ -dUw -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -pdx -jNR -jNR -ojC -wfN -fZe -fZe -fZe -fZe -vGY -mCr -mCr -mCr -mCr -mCr -mCr -fRb -miZ +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +cwc +cwc +cwc +cwc +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +vfQ +oMm +oMm +tQv +qnY +xbF +xbF +xbF +xbF +lAY +pet +pet +pet +pet +pet +pet +rtG +ucS akB akB -mHe -fRT +hmN +mOv akB akB akB -xIg -fRb -mCr -tNF +nND +rtG +pet +ngZ auj auj auj aNq -oev -wxg -qKL -nZo -rYx -riY +lXd +uQD +rmf +iJc +pTO +hzr auB -sNi -eXF -fxs -gcw -qAb -qRt +uTE +nxm +tyt +uoz +wdO +oTp auB auH auH @@ -88110,14 +88110,14 @@ auH auH auH auH -kQk -tFu -lpO -tFu -tFu -uXj -imG -imG +der +gwt +gPl +gwt +gwt +hRe +dvy +dvy aEw aEw ylo @@ -88223,144 +88223,144 @@ pdg pdg pdg ajq -kik -kik +rEm +rEm bhn bhn bhn bhn -kik -kik -kik -kik -ycb -hiF -hiF -hiF -cBI -cBI +rEm +rEm +rEm +rEm +dGr +ncu +ncu +ncu +idK +idK bhn bhn -cBI -cBI -qqw +idK +idK +oNN aen aen aen mTa -fkL -jUV -xDb -fHi -jjZ -hYp -fHi -fHi -fHi -fHi -dOf -rJQ -dUw -glM -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -dUw -dUw -rQx -rJQ -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -dUw -glM -dUw -dUw -dUw -dUw -pdx -soV -gVO -aKd -pdx -mCO -qsF -gGY -mCr -fRb -kia -mVy -mVy -mVy -oqO -mCr -fRb -cfK -jIe -rjl -fRb -mCr -cfK -jIe -jIe -rjl -fRb -mCr -xrs -jVB -qix -slc +veo +wvJ +szf +opn +xvg +oXc +opn +opn +opn +opn +dNe +cwc +iDg +scm +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +tqq +cwc +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +vfQ +hfS +map +iPR +vfQ +owS +tVI +mMb +pet +rtG +xbj +ctt +ctt +ctt +qQm +pet +rtG +tNM +dEr +ppo +rtG +pet +tNM +dEr +dEr +ppo +rtG +pet +cIX +iGn +daQ +tNi aNq -oev -wxg -cdN -nEC -xtQ -rpt +lXd +uQD +jYi +rxl +nXP +eXG auB -hFx -tSW -nZo -qKL -qAb -qRt +jNf +dOr +iJc +rmf +wdO +oTp auB -pJy -xAv -lws -pcL -tFu -tFu -bSJ -xzL -rxg +xiX +kur +thZ +kMA +gwt +gwt +xps +sFt +cpq auH -srn -xAv -qSL +qBb +kur +ePA aEw aEw aEw @@ -88468,20 +88468,20 @@ pdg pdg pdg ajq -kik -kik +rEm +rEm bhn bhn bhn bhn -kik -kik -cwV -olj -iOw -qDZ -pdX -rzZ +rEm +rEm +jrx +lCX +wCv +fqE +qFD +qaF cZu cZu cZu @@ -88493,59 +88493,59 @@ cZu cZu cZu xoj -fkL -jUV -xDb -fHi -gQK -fHi -fHi -fHi -fHi -fHi +veo +wvJ +szf +opn +aBN +opn +opn +opn +opn +opn aJm -dUw -rJQ -glM -dUw -dUw -dUw -jWY -jWY -rlL -jWY -jWY -jWY -jWY -jWY -jWY -rJQ -dUw -dUw -dUw -dUw -jWY -jWY -jWY -jWY -jWY -jWY -rlL -jWY -jWY -jWY -jWY -jWY -jWY -jWY -jWY -jWY -jWY -rlL -jWY -jWY -jWY -qEC +iDg +cwc +scm +iDg +iDg +iDg +xib +xib +hII +xib +xib +xib +xib +xib +xib +cwc +iDg +iDg +iDg +iDg +xib +xib +xib +xib +xib +xib +hII +xib +xib +xib +xib +xib +xib +xib +xib +xib +xib +hII +xib +xib +xib +qSw asH azV azV @@ -88553,59 +88553,59 @@ azV asH amv amv -jWQ -mCr -fRb -gFr -kia -mVy -oqO -vsS -mCr -kTN -fZe -jXW -fZe -ryW -fZe -fZe -fZe -fZe -fZe -ryW -fZe -fZe -fZe -suk -mue +jkT +pet +rtG +nmu +xbj +ctt +qQm +vPb +pet +nJE +xbF +ufS +xbF +htu +xbF +xbF +xbF +xbF +xbF +htu +xbF +xbF +xbF +xVc +liX auB -mpf -wxg -toO -toO -mFd -cSe -pXT -wKB -kKt -toO -oXw -qAb -rKK +kOX +uQD +efS +efS +baV +pqr +rXq +uXY +kTG +efS +wmT +wdO +mEW auB -sIy -xAv -xPN -nEz -pBS -rxg +fWQ +kur +pVI +dfs +xDs +cpq auH -ybD -fRA +lUL +rWj auH -hAN -xAv -wpM +vfx +kur +rqK aEw ylo ylo @@ -88713,19 +88713,19 @@ pdg pdg pdg ajq -kik -kik -kik +rEm +rEm +rEm bhn bhn -kik -kik -duF -odp -kik +rEm +rEm +yae +pCZ +rEm bhn -hiF -tDk +ncu +hag aen aen aen @@ -88738,119 +88738,119 @@ aen aen aen aen -fkL +veo aJm -fHi -fHi -uQF +opn +opn +gfP bgr bgr bgr bgr bgr aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -cBI -wpq -cBI -cBI -cBI -cBI -cBI -hiF -uJx -dUw -dUw -dUw -uUT -hiF -cBI -cBI -cBI -cBI -cBI -wpq -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -wpq -cBI -cBI -cBI -cBI +iDg +iDg +scm +iDg +iDg +npa +ncu +idK +nex +idK +idK +idK +idK +idK +ncu +poN +iDg +iDg +iDg +npa +ncu +idK +idK +idK +idK +idK +nex +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +nex +idK +idK +idK +idK amv -eCT -eom -jWs -trn -hBc +jOo +juC +qSv +tyy +pSE bkE -jWQ -mCr -fRb -gFr -gFr -rUL -vsS -vsS -mCr -mCr -mCr -fRb -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -utw -mCr -mCr -fRb -miZ +jkT +pet +rtG +nmu +nmu +eQc +vPb +vPb +pet +pet +pet +rtG +pet +pet +pet +pet +pet +pet +pet +pet +skP +pet +pet +rtG +ucS auB -qnU -eMF -qzw -qzw -lQR -xjH -xjH -iex -qxK -eBe -nRv -pdl -gig +kiW +euW +kaX +kaX +thN +jMc +jMc +kQw +vEW +hSB +miu +jYd +xdW auB -xAK -xAv -xAv -vhL -xAv -fRA +eCk +kur +kur +qJf +kur +rWj auS -mDn -fRA +gJN +rWj auH -uah -xQR -jbm +dCu +wML +mKf aEw ylo ylo @@ -88958,64 +88958,64 @@ pdg pdg pdg ajq -kik -duF -kik +rEm +yae +rEm bhn -kik -fOP -kik -kik -odp +rEm +uBz +rEm +rEm +pCZ bhn bhn bhn mTa -vKI -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -tAc -hiF +yeA +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +ncu aJm -fHi -fHi -jjZ -diM -diM -nhm -gyV -euX +opn +opn +xvg +hKe +hKe +pat +xlW +mFy aJm -dUw -dUw -glM -dUw -dUw -uUT -orm +iDg +iDg +scm +iDg +iDg +npa +tMU aen vFJ aen aen aen aen -xXF -fkL -uJx -dUw -dUw -dUw -uUT -orm -xXF +bJE +veo +poN +iDg +iDg +iDg +npa +tMU +bJE aen aen aen @@ -89037,61 +89037,61 @@ aen aen aen amv -nju -fmS -uxy -uxy -sca -vJU -jWQ -mCr -fRb -gFr -pyO -qzJ -cPO -ksB -mVy -mVy -oqO -fRb -kia -tjC -qsF -pig -pig -pig -pig -pig -pig -gGY -mCr -fRb -miZ +vzO +oqL +fpM +fpM +iou +iBQ +jkT +pet +rtG +nmu +tTN +rHl +llq +cxB +ctt +ctt +qQm +rtG +xbj +gEl +tVI +fZZ +fZZ +fZZ +fZZ +fZZ +fZZ +mMb +pet +rtG +ucS auB -edG -pKP -puG -puG -lzz -xjH -miw -hiH -iUW -puG -puG -ppm -pem +nmP +rBw +bGS +bGS +kMi +jMc +cjD +pfR +uFs +bGS +bGS +qyf +wBD auB -hyb -akA -dHA -xyi -dHA -vuN +kqG +wsP +lEJ +eng +lEJ +wZT auS -mDn -fRA +gJN +rWj auH auH auH @@ -89204,48 +89204,48 @@ pdg pdg ajq ajq -kik -kik -kik -cwV -olj -olj -olj -ihc +rEm +rEm +rEm +jrx +lCX +lCX +lCX +ndb bhn bhn bhn mTa -fkL +veo aJm -jUV -jUV +wvJ +wvJ aJm -jUV -jUV +wvJ +wvJ aJm -jUV -jUV +wvJ +wvJ aJm -jUV -jUV +wvJ +wvJ aJm -fHi -hYp -jjZ -diM -diM -diM -diM -diM +opn +oXc +xvg +hKe +hKe +hKe +hKe +hKe aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu aen aen aen @@ -89253,13 +89253,13 @@ aen aen aen aen -fkL -uJx -dUw -dUw -dUw -uUT -orm +veo +poN +iDg +iDg +iDg +npa +tMU aen aen aen @@ -89282,16 +89282,16 @@ aen aen ajq asH -dkc -uxy -kTD -uxy -fHs +too +fpM +wsD +fpM +wlW bkE -qix -mCr -fRb -gFr +daQ +pet +rtG +nmu qIU qIU qIU @@ -89299,7 +89299,7 @@ qIU qIU ajX akd -guC +xIL akd ajX anE @@ -89309,19 +89309,19 @@ anE anE anE anE -jWQ -mCr -fRb -miZ +jkT +pet +rtG +ucS auB auB auB auB auB auB -sNK +glv auB -ktd +qLL auB auB auB @@ -89335,15 +89335,15 @@ auH auH auH auH -uhS -pxK +umB +ldJ auH -vbe -hgJ -qaW +oVW +vfJ +juv auJ -imm -imm +igq +igq aEx aEx ylo @@ -89449,77 +89449,77 @@ pdg pdg pdg ajq -kik -kik -kik -odp -kik -kik -kik +rEm +rEm +rEm +pCZ +rEm +rEm +rEm bhn bhn bhn aen mTa -fkL -jUV -dQx -orL -jyC -orL -orL -orL -orL -orL -orL -orL -sCa -tDe -fHi -hYp -jjZ -diM -diM -rPL -ezX -xPp +veo +wvJ +xwV +gxZ +pfE +gxZ +gxZ +gxZ +gxZ +gxZ +gxZ +gxZ +pWU +fCp +opn +oXc +xvg +hKe +hKe +nDl +eqm +tbq aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -tAc -tAc -tAc -tAc -tAc -tAc -tAc -hiF -uJx -dUw -dUw -dUw -uUT -hiF -tAc -tAc -tAc -tAc -tAc -tAc -tAc -mxv +iDg +iDg +scm +iDg +iDg +npa +ncu +cxI +cxI +cxI +cxI +cxI +cxI +cxI +ncu +poN +iDg +iDg +iDg +npa +ncu +cxI +cxI +cxI +cxI +cxI +cxI +cxI +bMF aen aen aen aen -vKI -tAc -mxv +yeA +cxI +bMF aen mTa aen @@ -89527,69 +89527,69 @@ aen aen ajq asH -qep -jaf -wVm -xoi -xoi -qjw -fZe -fZe -vGY -gFr +sgs +gYl +eWP +uwF +uwF +wVq +xbF +xbF +lAY +nmu qIU -nZz -tLW -mMm +hcL +gEe +fPU bzm -fzw -npp -luc -sRM -okm +wTU +hkN +hxV +vah +yfU anE -hQw -xRV -vWD -xRV -nRa +qHb +dbb +rAo +dbb +vwq anE -jWQ -mCr -fRb -cfK -jIe -jIe -jIe -jIe -jIe -rjl -mCr -iBQ -fRb -cfK -jIe -jIe -jIe -jIe -oVn -fwT -oVn -oVn +jkT +pet +rtG +tNM +dEr +dEr +dEr +dEr +dEr +ppo +pet +mra +rtG +tNM +dEr +dEr +dEr +dEr +fep +iUy +fep +fep auK -kuo -tWQ -kuo -slW -dQN -lXU -kuo -kuo -kuo -tWQ -kuo -dyW -vwH +rLc +hCM +rLc +raf +uKm +pyA +rLc +rLc +rLc +hCM +rLc +yao +vKW auR ylo ylo @@ -89694,79 +89694,79 @@ pdg pdg pdg ajq -kik -kik -duF -odp -kik -kik +rEm +rEm +yae +pCZ +rEm +rEm bhn bhn bhn aen aen mTa -fkL -jUV -jMx -lNE -lNE -lNE -lNE -lNE -lNE -pqE -lNE -tQc -wIs -tDe -fHi -rpz -jjZ -diM -diM +veo +wvJ +vjx +dHr +dHr +dHr +dHr +dHr +dHr +cEb +dHr +hOI +eIl +fCp +opn +oeE +xvg +hKe +hKe bgr bgr bgr aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ bgZ bgZ -lhG -lhG -lhG +ygu +ygu +ygu bgZ bgZ -fjL -fjL +xNE +xNE bgZ -fjL -fjL +xNE +xNE bgZ bgZ -lhG -lhG -lhG +ygu +ygu +ygu bgZ bgZ bgZ -orm +tMU aen aen aen -vKI -hiF +yeA +ncu bhn -hiF -tAc -wqs +ncu +cxI +uPt aen aen aen @@ -89778,63 +89778,63 @@ asH asH asH asH -lzE -mCr -fRb -gFr +fsw +pet +rtG +nmu qIU -qHB -srr -rAp +jKr +nGc +dHK bzm -woa -edu -luc -edu -hSa +dzU +ipR +hxV +ipR +xNI anE -uIj -sKv -sKv -sKv -xiE +oDO +ihl +ihl +ihl +dGR anE -jWQ -mCr -kTN -jrj -jrj -fZe -fZe -fZe -jXW -fZe -fZe -fZe -ryW -jXW -fZe -jXW -fZe -fZe -fZe -fZe -fZe -fZe -nVm -dwB -dwB -dwB -rXb -dwB -lrk -fjN -fjN -fjN -fjN -fjN -oLR -cqg +jkT +pet +nJE +xbz +xbz +xbF +xbF +xbF +ufS +xbF +xbF +xbF +htu +ufS +xbF +ufS +xbF +xbF +xbF +xbF +xbF +xbF +dSP +gqc +gqc +gqc +vhj +gqc +kYj +ktB +ktB +ktB +ktB +ktB +rYT +oaM auR ylo ylo @@ -89939,80 +89939,80 @@ pdg pdg pdg ajq -kik -kik -kik -odp -kik -clf +rEm +rEm +rEm +pCZ +rEm +umr bhn bhn bhn aen aen mTa -fkL -jUV -jMx -lNE -pqE -lNE -tQc -lNE -lNE -lNE -kFf -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM -diM -mrM -lma +veo +wvJ +vjx +dHr +cEb +dHr +hOI +dHr +dHr +dHr +hWN +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +nnV +fYP aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -eRr -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -uJf -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -eRr +nxn +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +eMU +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +nxn bgZ -orm +tMU aen -vKI +yeA bhn bhn bhn bhn bhn -hiF -rxp -mxv +ncu +nXh +bMF aen aen ajq @@ -90023,63 +90023,63 @@ ylo ylo ylo arJ -mFB -mCr -fRb -gFr +sSa +pet +rtG +nmu qIU -nZz -tLW -mMm +hcL +gEe +fPU bzm -woa -edu -xoA -hBs -jad +dzU +ipR +wIQ +lhB +kDX anE -rfO -sKv -sKv -sKv -xiE +voS +ihl +ihl +ihl +dGR anE -jWQ -mCr -mCr -mCr -mCr -utw -mCr -mCr -fRb -mCr -mCr -mCr -mCr -fRb -mCr -fRb -mCr -mCr -mCr -mCr -mCr -mCr -njl -fjN -fjN -nCy -hFS -fjN -gQf -lLs -fjN -fjN -fjN -fjN -gkf -jIW +jkT +pet +pet +pet +pet +skP +pet +pet +rtG +pet +pet +pet +pet +rtG +pet +rtG +pet +pet +pet +pet +pet +pet +pRo +ktB +ktB +cgb +tZb +ktB +xbK +dUP +ktB +ktB +ktB +ktB +sQd +xZK auR ylo ylo @@ -90184,11 +90184,11 @@ pdg pdg pdg ajq -cNM -kik -mvc -cHz -kik +wit +rEm +kfH +psq +rEm bhn bhn bhn @@ -90196,59 +90196,59 @@ bhn bhn aen mTa -fkL -jUV -jMx -lNE -lNE -lNE -lNE -lNE -lNE -lNE -lNE -lNE -wIs +veo +wvJ +vjx +dHr +dHr +dHr +dHr +dHr +dHr +dHr +dHr +dHr +eIl aJm -fHi -fHi -jjZ -diM -diM -diM -diM -diM +opn +opn +xvg +hKe +hKe +hKe +hKe +hKe aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -jDc -tBS -tBS +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tTi +tyj +tyj bgZ -hiF -tAc +ncu +cxI bhn bhn bhn @@ -90256,9 +90256,9 @@ bhn bhn bhn bhn -rxp -hiF -mxv +nXh +ncu +bMF aen ajq ylo @@ -90268,63 +90268,63 @@ ylo ylo ylo arJ -jWQ -mCr -fRb -gFr +jkT +pet +rtG +nmu qIU -qHB -srr -rAp +jKr +nGc +dHK bzm -qWW -gCH -eMf -luc -nnB +dTt +onC +bmR +hxV +rJA anE -gNO -eKb -sKv -dkt -tMT +wHu +dHx +ihl +jFw +oDo anE -vqH -pig -pig -mcy -pig -pig -pig -gGY -fRb -qsF -pig -wFI -pig -iZk -gGY -fRb -mCr -ceh -kEb -ykY -kEb -kEb +gVs +fZZ +fZZ +lIs +fZZ +fZZ +fZZ +mMb +rtG +tVI +fZZ +sph +fZZ +hLg +mMb +rtG +pet +tXF +udt +sWQ +udt +udt auK -xlS -xlS -xlS -pjL -fjN -gQf -wzq -xlS -xlS -mLN -xlS -mpn -wGo +kHS +kHS +kHS +dlj +ktB +xbK +cOY +kHS +kHS +eGK +kHS +qlK +ktE auR ylo ylo @@ -90430,70 +90430,70 @@ pdg pdg ajq ajq -kik -kik -odp -kik +rEm +rEm +pCZ +rEm bhn bhn bhn bhn -orm +tMU aen mTa -fkL -jUV -jMx -kFf -lNE -mMj -lNE -lNE -tQc -lNE -lNE -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM -diM -eWu -gGs +veo +wvJ +vjx +hWN +dHr +ucK +dHr +dHr +hOI +dHr +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +rSv +vTt aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bgZ bgZ bgZ bgZ -wQx -tBS -tBS -tBS -tBS +jNv +tyj +tyj +tyj +tyj bgZ bgZ bgZ bgZ bgZ -tBS -tBS -lhG -hiF -hiF +tyj +tyj +ygu +ncu +ncu bhn bhn bhn @@ -90501,9 +90501,9 @@ bhn bhn bhn bhn -rxp -hiF -hiF +nXh +ncu +ncu ajq ajq ylo @@ -90513,10 +90513,10 @@ ylo arJ arJ arJ -qix -mCr -fRb -gFr +daQ +pet +rtG +nmu qIU qIU qIU @@ -90524,13 +90524,13 @@ qIU qIU ajX ajX -woa -luc -nnB +dzU +hxV +rJA anE anE anE -rQi +ehQ anE anE anE @@ -90542,16 +90542,16 @@ anE bkJ bkJ anE -jjq +tel anE anE anE anE -sSr -jWQ -fRb -mCr -pJw +vsw +jkT +rtG +pet +mBO auJ auJ auJ @@ -90560,15 +90560,15 @@ auJ auJ auJ auJ -roM -hFS -gQf -whI -fbT -fbT +tqy +tZb +xbK +mvs +ygA +ygA auJ -imm -imm +igq +igq aEx aEx ylo @@ -90675,80 +90675,80 @@ pdg pdg pdg ajq -kik -kik -odp -kik +rEm +rEm +pCZ +rEm bhn bhn bhn bhn -orm +tMU aen mTa -fkL -jUV -fNI -lNE -lNE -lNE -lNE -lNE -lNE -lNE -cDs -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM +veo +wvJ +bHp +dHr +dHr +dHr +dHr +dHr +dHr +dHr +hmU +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe bgr bgr bgr aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bhl bhl bgZ bgZ -sVr -sVr -sVr +vaz +vaz +vaz bgZ bgZ bhl bhl bhl bgZ -tBS -tBS -lhG -hiF -hiF +tyj +tyj +ygu +ncu +ncu bhn bhn bhn bhn bhn bhn -hiF -rxp -hiF -hiF +ncu +nXh +ncu +ncu ajq ylo ylo @@ -90756,59 +90756,59 @@ ylo agD agD arJ -snB -gvm -xRK -mCr -fRb -gFr +nwO +sMa +cOp +pet +rtG +nmu ajX ajX -vqj -hYF -kFi -nUV +fkh +hFg +xSa +xKa ajX -woa -luc -nnB -iQX +dzU +hxV +rJA +wqV anE -pMo -sKv -xbz -xRV -fXu -jUZ -iKJ -owv -mXu -xRV -xRV -xRV -iIa -tYb -xbz -hka -lDD +ecU +ihl +lym +dbb +emV +enj +uWl +kye +dhb +dbb +dbb +dbb +saY +okF +lym +sax +kCh anE anE -jWQ -fRb -mCr -pJw +jkT +rtG +pet +mBO auJ -gvE -rtj -rtj -gor -kuo -ihy +sxs +ryk +ryk +jrU +rLc +dRU auK -roM -fjN -gQf -whI +tqy +ktB +xbK +mvs bvj bvj aEx @@ -90920,50 +90920,50 @@ pdg pdg pdg ajq -kik -kik -rNs -kik +rEm +rEm +hCb +rEm bhn bhn bhn -roH -hiF -mxv +oFs +ncu +bMF mTa -fkL -jUV -jMx -lNE -lNE -lNE -tQc -lNE -lNE -lNE -lNE -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM -dFj -sOf -pgs +veo +wvJ +vjx +dHr +dHr +dHr +hOI +dHr +dHr +dHr +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +qGs +lIi +ggC aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ @@ -90979,83 +90979,83 @@ bgZ bgZ bhl bgZ -tBS -tBS -lhG -hiF -cBI -cBI +tyj +tyj +ygu +ncu +idK +idK bhn bhn bhn -hiF +ncu bhn -hiF -wpq -cBI -hiF +ncu +nex +idK +ncu ajq ylo ylo ylo agD -xRK -vyv -qTt -gvm -xRK -mCr -fRb -gFr +cOp +rvP +xgA +sMa +cOp +pet +rtG +nmu ajX -tRR -wtJ -wtJ -wtJ -wUb +heN +sBU +sBU +sBU +koF akd -woa -luc -nnB -fPf +dzU +hxV +rJA +xgO anE -gYH -sKv -sKv -fNr -jmH -jmH -jmH -jmH -rQo -jmH -jmH -jmH -jmH -hrP -rjP -sKv -hVs -kwE +phw +ihl +ihl +waA +kpe +kpe +kpe +kpe +gFa +kpe +kpe +kpe +kpe +iRU +qsF +ihl +jRS +vYX anE -jWQ -fRb -mCr -pJw +jkT +rtG +pet +mBO auJ -mjB -fjN -nax -fjN -fjN -jVF +oRZ +ktB +fTX +ktB +ktB +wCx auK -hJO -fjN -gQf -whI -fbT -fbT +sRV +ktB +xbK +mvs +ygA +ygA aEx ylo ylo @@ -91166,53 +91166,53 @@ pdg pdg ajq ajq -kik -odp -kik -kik -bhn -cNM -roH -hiF -orm +rEm +pCZ +rEm +rEm +bhn +wit +oFs +ncu +tMU mTa -fkL +veo aJm -htQ -oqQ +wjT +mfv aJm -oqQ -oqQ +mfv +mfv aJm -oqQ -oqQ +mfv +mfv aJm -oqQ -wSN +mfv +jmX aJm -fHi -uKC -yjr -diM -diM -diM -diM -diM +opn +pLw +wyf +hKe +hKe +hKe +hKe +hKe aJm -uYB -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +ipW +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ -nTE +caS bhg bhg bhg @@ -91220,22 +91220,22 @@ bhg bhg bhg bhg -nTE +caS bgZ bhl bgZ -tBS -tBS -lhG -orm +tyj +tyj +ygu +tMU aen aen -fkL +veo bhn bhn -hiF -cBI -qqw +ncu +idK +oNN mTa aen ajq @@ -91244,61 +91244,61 @@ ylo ylo ylo agD -dQG -dQG -xRK -jfr -mCr -mCr -fRb -gFr +fVh +fVh +cOp +vLT +pet +pet +rtG +nmu akd -kbQ -edu -kEA -ebz -nnB +gOc +ipR +vDD +iCu +rJA akd -woa -iiJ -wRF +dzU +nvc +ebR ajX anE -fUV -hXy -eKb -tYb -dkt -wja -wja -eKb -tYb -dkt -wja -kws -eKb -rOR -rQo -kOS -hVs -xIG +wCW +iiP +dHx +okF +jFw +oYi +oYi +dHx +okF +jFw +oYi +kOV +dHx +mYA +gFa +kiD +jRS +fBV anE -jWQ -fRb -mCr -pJw +jkT +rtG +pet +mBO auJ -poI -imm -wJo -hzQ -fjN -wMC +ksf +igq +kXo +imo +ktB +xmG auJ -hkl -fjN -gQf -whI +xwZ +ktB +xbK +mvs bvk bvj aEx @@ -91411,56 +91411,56 @@ pdg pdg pdg ajq -kik -wCu -olj -olj -olj -olj -olj -dxO -wfm +rEm +qza +lCX +lCX +lCX +lCX +lCX +xGt +eQI mvL -fkL -jUV -jMx -lNE -wKs -lNE -lNE -lNE -lNE -lNE -vBm -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM -qyR -lWq -iqc +veo +wvJ +vjx +dHr +xgk +dHr +dHr +dHr +dHr +dHr +xNu +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +oRM +wPy +dHA aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -tBS -tBS +tyj +tyj bgZ bgZ bgZ bhg bhg -cwW -cwW +vqk +vqk bhg bhg bhg @@ -91469,16 +91469,16 @@ bhg bgZ bgZ bgZ -tBS -tBS +tyj +tyj bgZ -hiF -mxv +ncu +bMF aen -cHZ +tbN bhn -hiF -qqw +ncu +oNN aen cwF mTa @@ -91489,61 +91489,61 @@ ylo ylo ylo arJ -tDD -kvq -slc -jfr -mCr -mCr -fRb -gFr +rUo +kyE +tNi +vLT +pet +pet +rtG +nmu akd -woa -edu -smn -heX -nnB +dzU +ipR +gBG +djP +rJA akd -woa -luc -nnB -klN +dzU +hxV +rJA +nvH anE anE anE anE -oJh +mWi anE anE anE bDH -wNt +ybo bDH anE anE -xpe -xrG -tYb -dkt -sDF -dWh +pBM +spp +okF +jFw +crV +gzt anE -jWQ -fRb -mCr -dUs +jkT +rtG +pet +iKK auJ -iop -xJn -neU -kET -rtP -dwB -kbL -dwB -dwB -reo -qqC +uQs +hHC +gGB +vhi +kVu +gqc +tfm +gqc +gqc +wfc +cQU auJ auJ aEx @@ -91657,72 +91657,72 @@ pdg pdg ajq ajq -kik -kik -ptf -kik -kik -clf -kik +rEm +rEm +tYA +rEm +rEm +umr +rEm bhn mTa -fkL -jUV -jMx -lNE -lNE -lNE -vBm -lNE -lNE -lNE -lNE -lNE -wIs -ohd -fHi -fHi -jjZ -diM -diM +veo +wvJ +vjx +dHr +dHr +dHr +xNu +dHr +dHr +dHr +dHr +dHr +eIl +dMn +opn +opn +xvg +hKe +hKe bgr bgr bgr aJm -dUw -dUw -glM -dUw -dUw -uUT +iDg +iDg +scm +iDg +iDg +npa bgZ bgZ -tBS -tBS -tBS +tyj +tyj +tyj bgZ bhg bhg bhg -cwW -cwW -cwW -cwW -cwW -cwW +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg bgZ -tBS -tBS -tBS +tyj +tyj +tyj bgZ bgZ -orm +tMU xzW cZu -nfi -wfm +jsD +eQI cZu cZu xFN @@ -91734,65 +91734,65 @@ ylo ylo ylo agD -dSS -dSS -xRK -jfr -mCr -mCr -fRb -gFr +ofl +ofl +cOp +vLT +pet +pet +rtG +nmu akd -neL -edu -kEA -rGf -nnB +wyV +ipR +vDD +wOd +rJA akd -woa -luc -nnB -rIx +dzU +hxV +rJA +gKs anE anE -vKr -hff -wZS -hVs +isw +mQe +kJB +jRS anE -uOF -eLn -tYb -xbz -woV +oLG +tvn +okF +lym +oij anE anE anE -jjq +tel anE anE anE anE -jWQ -fRb -mCr -pJw +jkT +rtG +pet +mBO auJ -lLz -imm -odR -mJU -nax -nkp +int +igq +lBt +kjR +fTX +wic auJ -mvJ -fjN -gQf -qqC +rCB +ktB +xbK +cQU auJ -uAD -dwU -wSA +qrC +kjv +nKY aEx aEx ylo @@ -91902,74 +91902,74 @@ ylo ylo ylo ajq -kik -kik -kik -kik -kik +rEm +rEm +rEm +rEm +rEm bhn bhn bhn mTa -fkL -jUV -jMx -vBm -lNE -lNE -lNE -kFf -lNE -mHX -lNE -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM -diM -tcu -nbh +veo +wvJ +vjx +xNu +dHr +dHr +dHr +hWN +dHr +ubI +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +sxw +unb aJm -dUw -dUw -glM -dUw -dUw -uUT +iDg +iDg +scm +iDg +iDg +npa bgZ -qXy -tBS -tBS -tBS -wGV +vmx +tyj +tyj +tyj +mEK bhg bhg -cwW -cwW -cwW -cwW -cwW -cwW -cwW +vqk +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg -tCW -tBS -tBS -tBS -qXy +mqQ +tyj +tyj +tyj +vmx bgZ -orm +tMU mTa aen -fkL +veo bhn -tAc -mxv +cxI +bMF aen aen ajq @@ -91979,66 +91979,66 @@ ylo ylo ylo agD -xRK -rZb -qTt -llK -mcE -mCr -fRb -gFr +cOp +tUS +xgA +nHr +fLc +pet +rtG +nmu ajX -naZ -xYs -yhH -edu -fZl +vPG +ogN +uem +ipR +xmz ajX -npp -luc -nnB -nMb +hkN +hxV +rJA +dej anE anE -iwF -eTa -cYn -rIp +kFj +hPM +rSL +uMs anE -vTP -pXs -xXD -ocd -iAG +pYP +pCE +vpV +iCx +kFc anE -pdN -gBW -tYb -xbz -eOh -lVa +daA +lbj +okF +lym +vEn +uGi anE -jWQ -fRb -mCr -pJw +jkT +rtG +pet +mBO auJ -tce -cgm -fjN -fjN -fjN -kMR +uoW +ftF +ktB +ktB +ktB +wKO auK -hJO -fjN -gQf -whI +sRV +ktB +xbK +mvs auK -hJO -fjN -dQN -vXH +sRV +ktB +uKm +pih aEx ylo ylo @@ -92148,74 +92148,74 @@ ylo ylo ajq ajq -kik -kik +rEm +rEm bhn bhn bhn bhn bhn mTa -fkL -jUV -jMx -lNE -lNE -lNE -lNE -lNE -lNE -lNE -xfm -lNE -wIs +veo +wvJ +vjx +dHr +dHr +dHr +dHr +dHr +dHr +dHr +hWD +dHr +eIl aJm -fHi -fHi -jjZ -diM -diM -diM -diM -diM +opn +opn +xvg +hKe +hKe +hKe +hKe +hKe aJm -dUw -dUw -glM -dUw -dUw -uUT +iDg +iDg +scm +iDg +iDg +npa bgZ -qXy -tBS -tBS -tBS -wGV +vmx +tyj +tyj +tyj +mEK bhg bhg bhg -cwW -cwW -jWG -cwW -cwW -cwW +vqk +vqk +xRe +vqk +vqk +vqk bhg bhg -tCW -tBS -tBS -tBS -qXy +mqQ +tyj +tyj +tyj +vmx bgZ -orm +tMU mTa -vKI +yeA bhn bhn bhn -hiF -tAc +ncu +cxI ajq ajq ylo @@ -92226,64 +92226,64 @@ ylo agD agD arJ -hcO -sNd -gvm -mCr -fRb -mbb +lFc +wpq +sMa +pet +rtG +kkP ajX -ghb -edu -iiJ -izj -izj -evh -izj -tTo -nnB -rIV +thO +ipR +nvc +fNV +fNV +cLM +fNV +vhA +rJA +oaK anE anE -tmn -wja -qos -xth +jnS +oYi +uyc +xxp anE -pCH -wja -keW -wja -tlg +lMt +oYi +qTf +oYi +dhk anE -tSs -sKv -xXD -ouH -hVs -szr +crc +ihl +vpV +thR +jRS +tzl anE -jWQ -fRb -mCr -pJw +jkT +rtG +pet +mBO auJ -ldA -srw -hSG -vNL -xlS -ovZ +sYT +rKz +hWB +lMs +kHS +kIg auK -hJO -fjN -gQf -whI +sRV +ktB +xbK +mvs auK -hJO -orv -fjN -gSc +sRV +spa +ktB +qqi auR ylo ylo @@ -92393,74 +92393,74 @@ ylo ylo ylo ajq -kik -kik -kik +rEm +rEm +rEm bhn bhn bhn -orm +tMU mTa -fkL -jUV -jMx -lNE -rmi -lNE -lNE -lNE -vBm -lNE -lNE -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM -diM -xWV -xWV +veo +wvJ +vjx +dHr +oXP +dHr +dHr +dHr +xNu +dHr +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +wmR +wmR aJm -dUw -dUw -glM -dUw -dUw -uUT +iDg +iDg +scm +iDg +iDg +npa bgZ -qXy -tBS -tBS -tBS -wGV +vmx +tyj +tyj +tyj +mEK bhg bhg -cwW -cwW -cwW -cwW -cwW -cwW -cwW +vqk +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg -tCW -tBS -tBS -tBS -qXy +mqQ +tyj +tyj +tyj +vmx bgZ -orm +tMU mTa -cHZ +tbN bhn bhn -hiF -hiF -hiF +ncu +ncu +ncu ajq ylo ylo @@ -92472,21 +92472,21 @@ ylo ylo arJ arJ -tub -pTB -mCr -fRb -gFr +fhg +oaZ +pet +rtG +nmu ajX -mVe -edu -hbG -kyI -hcS +rlc +ipR +hKS +oWu +dSp ajX -eMf -luc -jad +bmR +hxV +kDX ajX anE anE @@ -92501,17 +92501,17 @@ anE anE anE anE -xmB -sKv -svW -rxG -tOl +ksP +ihl +ebW +hfP +gTC anE anE -jWQ -fRb -mCr -pJw +jkT +rtG +pet +mBO auJ auJ auJ @@ -92520,15 +92520,15 @@ auJ buZ auJ auJ -par -fjN -eRA -klv +uJb +ktB +iAK +pTX auJ -hkl -gJY -fjN -ltm +xwZ +eha +ktB +vvH auR ylo ylo @@ -92639,72 +92639,72 @@ ylo ylo ajq ajq -kik -kik +rEm +rEm bhn bhn -hiF -qqw +ncu +oNN mTa -fkL -jUV -jNA -lNE -lNE -lNE -hNa -lNE -lNE -lNE -kFf -lNE -wIs -tDe -fHi -fHi -jjZ -diM -diM +veo +wvJ +njO +dHr +dHr +dHr +xPC +dHr +dHr +dHr +hWN +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe bgr bgr bgr aJm -dUw -dUw -glM -dUw -dUw -uUT +iDg +iDg +scm +iDg +iDg +npa bgZ bgZ -tBS -tBS -tBS +tyj +tyj +tyj bgZ bhg bhg -cwW -cwW -cwW -cwW -cwW -cwW +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg bhg bgZ -tBS -tBS -tBS +tyj +tyj +tyj bgZ bgZ -orm +tMU mTa aen -cHZ +tbN bhn -hiF -hiF +ncu +ncu ajq ajq ylo @@ -92717,63 +92717,63 @@ ylo ylo ylo agD -tub -gvm -mCr -fRb -gFr +fhg +sMa +pet +rtG +nmu akd -ojb -edu -rjp -kEA -nnB +oSU +ipR +pOn +vDD +rJA akd -woa -luc -sRM -wtJ -wtJ -wtJ -wtJ -wtJ +dzU +hxV +vah +sBU +sBU +sBU +sBU +sBU ajX -aWg -wtJ -hxf -uBa -sUL -pTq -owY +wvF +sBU +snw +xBu +tPO +nZa +njq anE -usb -wja -pzn -cUa -tlg +gAc +oYi +hcv +lLd +dhk anE -hcO -vsS -fRb -mCr -pJw +lFc +vPb +rtG +pet +mBO auK -vsa -dyE -qtL -tWQ -kuo -kuo +slZ +uum +kCL +hCM +rLc +rLc auJ -hkl -fjN -eRA -dwB -ipf -dwB -scx -wzq -pNi +xwZ +ktB +iAK +gqc +xCk +gqc +mtL +cOY +ciX aEx ylo ylo @@ -92884,72 +92884,72 @@ ylo ylo ylo ajq -clf -kik -fPS +umr +rEm +gxe bhn -orm +tMU aen mTa -fkL -jUV -fnn -dxd -dxd -dxd -dxd -dxd -dxd -dxd -dxd -xtM -ixv -tDe -fHi -fHi -jjZ -diM -diM -diM -nEd -pfT +veo +wvJ +uEV +ore +ore +ore +ore +ore +ore +ore +ore +dXf +jdd +fCp +opn +opn +xvg +hKe +hKe +hKe +slu +omf aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -tBS -tBS +tyj +tyj bgZ bgZ bgZ bhg bhg bhg -cwW -cwW +vqk +vqk bhg -cwW +vqk bhg bhg bgZ bgZ bgZ -tBS -tBS +tyj +tyj bgZ -hiF -qqw +ncu +oNN mTa aen aen -cHZ -hiF -hiF +tbN +ncu +ncu ajq ylo ylo @@ -92962,34 +92962,34 @@ ylo ylo ylo agD -tub -gvm -mCr -ggA -gFr +fhg +sMa +pet +vtj +nmu akd -xvu -edu -luc -edu -nnB +pta +ipR +hxV +ipR +rJA akd -woa -luc -edu -edu -edu -edu -edu -edu -qQD -edu -edu -edu -edu -edu -edu -nnB +dzU +hxV +ipR +ipR +ipR +ipR +ipR +ipR +wjf +ipR +ipR +ipR +ipR +ipR +ipR +rJA anE anE anE @@ -92997,27 +92997,27 @@ anE anE anE anE -bYH -vsS -fRb -mCr -pJw +gpO +vPb +rtG +pet +mBO auK -hJO -fjN -fjN -fjN -wdz -dwB -rMH -dwB -dwB -rXb -lrk +sRV +ktB +ktB +ktB +irA +gqc +opm +gqc +gqc +vhj +kYj auJ -xgK -rdB -npk +wSU +kvF +ubs aEx aEx ylo @@ -93130,49 +93130,49 @@ ylo ylo ajq ajq -roH -hiF -hiF -orm +oFs +ncu +ncu +tMU aen mTa -fkL +veo aJm -jUV -jUV +wvJ +wvJ aJm -jUV -jUV +wvJ +wvJ aJm -jUV -jUV +wvJ +wvJ aJm -jUV -jUV +wvJ +wvJ aJm -fHi -fHi -jjZ -diM -diM -diM -diM -diM +opn +opn +xvg +hKe +hKe +hKe +hKe +hKe aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ -nTE +caS bhg bhg bhg @@ -93180,20 +93180,20 @@ bhg bhg bhg bhg -nTE +caS bgZ bhl bgZ -tBS -tBS -lhG -orm +tyj +tyj +ygu +tMU aen mTa aen aen aen -fkL +veo ajq ajq ylo @@ -93207,58 +93207,58 @@ ylo ylo ylo agD -tub -gvm -mCr -fRb -gFr +fhg +sMa +pet +rtG +nmu akd -sAl -edu -luc -gOV -iBh +kNY +ipR +hxV +kqh +vze akd -woa -xoA -izj -izj -izj -izj -izj -izj -mBF -izj -izj -izj -hBs -edu -edu -sRM -wtJ -wtJ -wtJ -jmP -wtJ -wtJ +dzU +wIQ +fNV +fNV +fNV +fNV +fNV +fNV +tuC +fNV +fNV +fNV +lhB +ipR +ipR +vah +sBU +sBU +sBU +utd +sBU +sBU akd -oIT -cPO -fRb -mCr -gtG +mes +llq +rtG +pet +ezv auJ -hkl -fjN -fjN -fjN -vwk -iIm +xwZ +ktB +ktB +ktB +nqU +wpr auJ auJ auJ auJ -pNo +cgA auJ auJ auJ @@ -93376,44 +93376,44 @@ ylo ylo ajq ajq -hiF -hiF -qqw +ncu +ncu +oNN aen mTa -cHZ -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -cBI -hiF +tbN +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +ncu aJm -fHi -fHi -jjZ -diM -diM -diM -nEd -pfT +opn +opn +xvg +hKe +hKe +hKe +slu +omf aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ @@ -93429,10 +93429,10 @@ bgZ bgZ bhl bgZ -tBS -tBS -lhG -orm +tyj +tyj +ygu +tMU aen mTa aen @@ -93452,61 +93452,61 @@ ylo ylo arJ arJ -tub -gvm -mCr -fRb -gFr +fhg +sMa +pet +rtG +nmu ajX -gwC -tIG -tTo -vRG +vcV +mcU +vhA +hFF ajX ajX -nVP -vMq -qed -qed -qed -vMq -vMq +uab +jcs +tuM +tuM +tuM +jcs +jcs ajX ajX -eMf -edu -edu -luc -edu -edu -edu -edu -edu -edu -fpt -edu -edu -qQD -mCr -mCr -uvh -fZe -fZe -ntR -dwB -dwB -oBv -yfj -reo -jqZ -kZt -smT +bmR +ipR +ipR +hxV +ipR +ipR +ipR +ipR +ipR +ipR +jkt +ipR +ipR +wjf +pet +pet +iqG +xbF +xbF +nEh +gqc +gqc +hov +neq +wfc +mzA +uHo +tOI auJ -tTW -gQf -tmk -kuo -kBD +tkk +xbK +tKr +rLc +cdC auR ylo ylo @@ -93621,8 +93621,8 @@ ylo ylo ylo ajq -hiF -qqw +ncu +oNN aen aen vyB @@ -93638,46 +93638,46 @@ cZu cZu cZu nbS -fkL +veo aJm -fHi -fHi -uQF +opn +opn +gfP bgr bgr bgr bgr bgr aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bhl bhl bgZ bgZ -xDx -xDx -xDx +qUz +qUz +qUz bgZ bgZ bhl bhl bhl bgZ -tBS -tBS -lhG -orm +tyj +tyj +ygu +tMU aen mTa aen @@ -93696,62 +93696,62 @@ ylo agD agD arJ -hcO -eCo -qux -mCr -fRb -jRI +lFc +dTT +jRJ +pet +rtG +mhd ajX -iGm -luc -eUW -dmq +wCc +hxV +pan +gUE ajX -pTl -uLG -bIV -lwz -lwz -lwz -uBt -uLG -tcN +lfz +sCh +gms +dWx +dWx +dWx +ydm +sCh +ews ajX -kbQ -edu -edu -iiJ -kQD -izj -wcT -izj -izj -izj -izj -xsq -xsq -xsq -jrj -fZe -vGY -mCr -mCr -vUk -fjN -fjN -mPe -xRw -ktW -hFS -gmk -gSc +gOc +ipR +ipR +nvc +nVS +fNV +sik +fNV +fNV +fNV +fNV +lbm +lbm +lbm +xbz +xbF +lAY +pet +pet +mst +ktB +ktB +hYw +qHD +orE +tZb +jfS +qqi auJ -vZO -etS -gQc -fjN -fIN +faC +umY +xRm +ktB +dap auR ylo ylo @@ -93874,55 +93874,55 @@ mTa aen aen aen -vKI -tAc -tAc -mxv +yeA +cxI +cxI +bMF aen aen aen -xXF +bJE mTa -fkL -jUV -xDb -fHi -jjZ -fHi -fHi -fHi -fHi -fHi +veo +wvJ +szf +opn +xvg +opn +opn +opn +opn +opn aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -lhG -tBS -tBS +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bgZ bgZ bgZ bgZ -tBS -tBS -tBS -tBS -tBS +tyj +tyj +tyj +tyj +tyj bgZ bgZ bgZ bgZ bgZ -tBS -tBS -lhG -orm +tyj +tyj +ygu +tMU aen mTa aen @@ -93939,64 +93939,64 @@ ylo ylo ylo agD -xRK -vyv -qTt -mQf -qMO -mCr -fRb -gFr +cOp +rvP +xgA +rQm +vTR +pet +rtG +nmu ajX -dOT -luc -kPF -orj +ion +hxV +rmF +pVe ajX -lKv -hvh -oEX -oEX -oEX -oEX -oEX -oEX -jpC +dtD +esG +sXH +sXH +sXH +sXH +sXH +sXH +tIy ajX -iIJ -eMf -kPF -bTF -lXY -edu -oub -qed -qed -qed -qed -qed -qed +cjO +bmR +rmF +fTZ +ccD +ipR +vcH +tuM +tuM +tuM +tuM +tuM +tuM akd -mVy -oqO -fRb -mCr -xDc +ctt +qQm +rtG +pet +jwG auJ -mvJ -fjN -fjN -fjN -fjN -wZO -fjN -kEg +rCB +ktB +ktB +ktB +ktB +npb +ktB +chz auJ auJ -sxn -fjN -fjN -oRM +loe +ktB +ktB +jEy auR ylo ylo @@ -94117,57 +94117,57 @@ aen aen vFJ aen -vKI -tAc -hiF +yeA +cxI +ncu bhn bhn -hiF -tAc -mxv +ncu +cxI +bMF aen aen mTa -fkL -jUV -xDb -fHi -jjZ -fHi -fHi -fHi -fHi -fHi -dOf -dUw -dUw -glM -dUw -dUw -uUT -hiF +veo +wvJ +szf +opn +xvg +opn +opn +opn +opn +opn +dNe +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -tBS -tBS -oLW -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS +tyj +tyj +sDw +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj bgZ -ifO +yhm cZu xoj aen @@ -94184,18 +94184,18 @@ ylo ylo ylo agD -dQG -dQG -xRK -jfr -mCr -mCr -fRb -gFr +fVh +fVh +cOp +vLT +pet +pet +rtG +nmu ajX -dOT -luc -wcd +ion +hxV +cxJ xZB xZB xZB @@ -94209,12 +94209,12 @@ wZg xZB xZB xZB -woa -qdN -jBh -vKg -edu -fAm +dzU +ydz +wPL +deK +ipR +lyX ajX ajX akd @@ -94222,25 +94222,25 @@ akd akd ajX ajX -bYH -vsS -fRb -mCr -pJw +gpO +vPb +rtG +pet +mBO auK -hJO -fjN -fjN -fjN -fjN -fjN -fjN -whI -mTH +sRV +ktB +ktB +ktB +ktB +ktB +ktB +mvs +jpk auJ -vNx -hhZ -ozT +kks +jdC +vsV aEx aEx ylo @@ -94362,66 +94362,66 @@ ajq aen aen aen -fkL +veo bhn bhn bhn bhn bhn bhn -hiF -tAc -mxv +ncu +cxI +bMF mTa -fkL -jUV -xDb -fHi -jjZ -fHi -fHi -xEj -fHi -fHi +veo +wvJ +szf +opn +xvg +opn +opn +sfP +opn +opn aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -eRr -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -tBS -eRr +nxn +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +nxn bgZ -gxA +gTM aen aen ajq ajq apV apV -uKa -hpW -qsZ +qzV +cAG +pYg apV apV ylo @@ -94429,17 +94429,17 @@ ylo ylo ylo arJ -tDD -vmk -slc -jfr -mCr -mCr -fRb -gFr +rUo +ghI +tNi +vLT +pet +pet +rtG +nmu ajX ajX -pIR +odJ ajX xZB xZB @@ -94454,34 +94454,34 @@ akv xZB xZB xZB -woa -qdN -oiC -vKg -edu -fAm +dzU +ydz +odk +deK +ipR +lyX ajX -wem -wtJ -wtJ -wtJ -bRN +gCS +sBU +sBU +sBU +jhU ajX -hcO -vsS -fRb -mCr -pJw +lFc +vPb +rtG +pet +mBO auK -mAP -cPa -sQL -kxD -fjN -wzq -xlS -qOM -fJU +dJa +tpN +wFb +pDJ +ktB +cOY +kHS +fGA +jZa aEx auR auR @@ -94606,9 +94606,9 @@ ylo ajq ajq aen -vKI -hiF -hiF +yeA +ncu +ncu bhn bhn bhn @@ -94616,113 +94616,113 @@ bhn bhn bhn bhn -orm +tMU mTa -fkL -jUV -xDb -fHi -rWT -sHK -sHK -ptd -sHK -sHK -mRe -knP -knP -cgI -dUw -dUw -uUT -hiF +veo +wvJ +szf +opn +xoS +oWx +oWx +dGv +oWx +oWx +wdw +pCA +pCA +maY +iDg +iDg +npa +ncu bgZ bgZ bgZ -lhG -lhG -lhG -lhG +ygu +ygu +ygu +ygu bgZ bgZ -imw -upi -pGe +vZO +nYx +gch bgZ bgZ -lhG -lhG -lhG -lhG +ygu +ygu +ygu +ygu bgZ bgZ bgZ -gxA +gTM aen ajq ajq apV apV -fyt -cxn -edj -iCz -gPF +spM +idv +teo +dck +iJr apV apV ylo ylo ylo agD -dSS -dSS -xRK -jfr -mCr -mCr -fRb -gFr +ofl +ofl +cOp +vLT +pet +pet +rtG +nmu ajX -ttF -luc -nnB +kyC +hxV +rJA xZB xZB xZB -snV -snV -snV -vQY -snV -snV -snV +mAf +mAf +mAf +iIY +mAf +mAf +mAf xZB xZB xZB -noQ -qNZ -aEI -nUP -eMf -fAm +dDF +bqF +kqF +lhF +bmR +lyX akd -gRk -edu -edu -edu -hye +oYy +ipR +ipR +ipR +lxQ ajX ajX -vsS -fRb -mCr -pJw +vPb +rtG +pet +mBO auJ auJ auK auK auJ -fSl +fQA auJ auK auK @@ -94851,127 +94851,127 @@ ylo ylo ajq ajq -hiF -hiF -hiF -hiF +ncu +ncu +ncu +ncu bhn bhn bhn bhn bhn bhn -orm +tMU mTa -fkL +veo aJm -sHO -xOj -xOj -xOj -xOj -xOj -xOj -xOj +kEZ +lgh +lgh +lgh +lgh +lgh +lgh +lgh aJm -dUw -dUw -glM -dUw -dUw -uUT -hiF -cBI -cBI -cBI -cBI -cBI -cBI -cBI -hiF +iDg +iDg +scm +iDg +iDg +npa +ncu +idK +idK +idK +idK +idK +idK +idK +ncu bgZ bgZ bgZ bgZ bgZ -eDL -oSY -oSY -oSY -qDZ -qDZ -qDZ -qDZ -mZy +cCV +ewE +ewE +ewE +fqE +fqE +fqE +fqE +mHz ajq ajq apV apV -iPW -pDa -uOD -uOD -uOD -xwz -ibW +pNB +qKK +vea +vea +vea +nIK +fsI apV apV ylo ylo agD -xRK -rZb -qTt -gvm -tCK -mCr -fRb -mbb +cOp +tUS +xgA +sMa +pRI +pet +rtG +kkP ajX -nsv -luc -sRM -hek +skO +hxV +vah +nyJ akv -snV -iFO -wUH -wUH -wUH -wUH -wUH -uUP -snV +mAf +wfN +noc +noc +noc +noc +noc +kfI +mAf akv ajX ajX ajX ajX ajX -woa -fAm +dzU +lyX akd -woa -edu -rij -edu -lKh -nks +dzU +ipR +rDV +ipR +nzv +fWS akd -vsS -fRb -mCr -qiH -kuo -kuo -kuo -kuo -hkl -fjN -dQN -kuo -kuo -pwN +vPb +rtG +pet +cNs +rLc +rLc +rLc +rLc +xwZ +ktB +uKm +rLc +rLc +xTH aEx ylo ylo @@ -95097,126 +95097,126 @@ ylo ylo ajq ajq -hiF -hiF -hiF -hiF +ncu +ncu +ncu +ncu bhn bhn bhn bhn -hiF -qqw +ncu +oNN mTa -fkL +veo aJm aJm -jUV -jUV +wvJ +wvJ aJm aJm -jUV -jUV +wvJ +wvJ aJm aJm -dUw -dUw -glM -dUw -dUw -uUT -orm -xXF +iDg +iDg +scm +iDg +iDg +npa +tMU +bJE aen aen aen aen aen aen -cHZ -cBI -cBI -cBI -cBI -cBI -tDk +tbN +idK +idK +idK +idK +idK +hag aen aen aen -fkL -hiF -hiF -hiF +veo +ncu +ncu +ncu ajq ajq ylo aki -rmD -vji -uOD -uOD -hIf -uOD -uOD -ojz -qvR +pIJ +dnK +vea +vea +cga +vea +vea +jPR +qCL aki ylo ylo agD agD arJ -snB -gvm -xRK -mCr -fRb -gFr +nwO +sMa +cOp +pet +rtG +nmu ajX -cdf -luc -wAx -dgj +sXs +hxV +cCC +pCK akd -snV -grl -xnA -vvn -ucR -cRj -xiN -xRh -snV +mAf +nFd +gIw +paf +fDE +cSe +oLJ +dvo +mAf akv -kBe -wtJ -uhi -qdt +rFe +sBU +dyh +jRK akd -npp -fAm +hkN +lyX akd -woa -edu -kcL -edu -kPF -vMS +dzU +ipR +hFq +ipR +rmF +iSx akd -vsS -fRb -mCr -xRK -fjN -fjN -wzq -muZ -xlS -xlS -xlS -xlS -mvJ -whI +vPb +rtG +pet +cOp +ktB +ktB +cOY +jdJ +kHS +kHS +kHS +kHS +rCB +mvs aEx aEx ylo @@ -95343,41 +95343,41 @@ ylo ylo ajq ajq -hiF -hiF -hiF -hiF -hiF -bhn -hiF -qqw +ncu +ncu +ncu +ncu +ncu +bhn +ncu +oNN aen mTa -cHZ -cBI -cBI -cBI -hiF -hiF -cBI -cBI -cBI -cBI -hiF -uJx -dUw -mKE -knP -knP -nLi -wfm +tbN +idK +idK +idK +ncu +ncu +idK +idK +idK +idK +ncu +poN +iDg +xRn +pCA +pCA +uwT +eQI cZu cZu -xzv -uiv -uiv -uiv -dIV +qgi +sQs +sQs +sQs +kfp cZu cZu ejl @@ -95385,9 +95385,9 @@ cZu cZu cZu xoj -vKI -tAc -tAc +yeA +cxI +cxI bhn bhn bhn @@ -95396,15 +95396,15 @@ ajq ylo ylo aki -xTd -mcu -uOD -uOD -lQF -uOD -lAi -mcu -gNH +wkb +mlB +vea +vea +hBt +vea +nNO +mlB +daF aki ylo ylo @@ -95413,56 +95413,56 @@ ylo arJ arJ arJ -ewA -mCr -fRb -gFr +tOH +pet +rtG +nmu ajX -tWA -hDp -ltt -gjG +uMR +tDS +kPA +hPq akd -snV -grl -eID -iGN -rVm -jMb -mZJ -xRh -snV +mAf +nFd +lCs +pQb +klr +fDk +xvS +dvo +mAf akv -wQL -tIG -izj -izj -cKO -izj -evb +eiD +mcU +fNV +fNV +dhX +fNV +klf ajX -npp -edu -lgW -edu -nnB +hkN +ipR +neL +ipR +rJA ajX ajX -vsS -fRb -mCr -ceh -xlS -mvJ -dLb -imm -imm -imm -imm -imm -hJO -jnN -qRT +vPb +rtG +pet +tXF +kHS +rCB +szr +igq +igq +igq +igq +igq +sRV +ded +fGd auR ylo ylo @@ -95590,11 +95590,11 @@ ylo ajq ajq ajq -hiF -hiF -hiF -cBI -qqw +ncu +ncu +ncu +idK +oNN opW aen vyB @@ -95602,35 +95602,35 @@ cZu cZu cZu cZu -nfi -wfm +jsD +eQI cZu cZu cZu cZu -nfi -bvu -knP -cgI -dUw -dUw -uUT -orm +jsD +nYk +pCA +maY +iDg +iDg +npa +tMU aen -vKI +yeA bhn -hiF +ncu bhn bhn -hiF -mxv +ncu +bMF aen mTa aen aen -vKI -tAc -hiF +yeA +cxI +ncu bhn bhn bhn @@ -95641,15 +95641,15 @@ ylo ylo ylo aki -xTd -mcu -uOD -uOD -sIO -uOD -uOD -mcu -gNH +wkb +mlB +vea +vea +jdp +vea +vea +mlB +daF aki ylo ylo @@ -95658,56 +95658,56 @@ ylo ylo ylo arJ -kqV -mCr -fRb -gFr +rHg +pet +rtG +nmu ajX -sHC -luc -wAx -hEy +fhP +hxV +cCC +snq akd -snV -grl -eVu -jTo -xOL -ptl -tsT -xRh -snV -xPH -edu -luc -edu -kPF +mAf +nFd +odB +rdh +jHo +qMZ +oYs +dvo +mAf +gPY +ipR +hxV +ipR +rmF akd -eMf -xoA -fPw -izj -izj -sZf -edu -lKh -nks +bmR +wIQ +pxs +fNV +fNV +mjq +ipR +nzv +fWS akd -vsS -fRb -mCr -pJw +vPb +rtG +pet +mBO auJ -hJO -til -imm +sRV +uar +igq wvG oGI bwP -imm -hJO -jnN -qRT +igq +sRV +ded +fGd auR ylo ylo @@ -95836,8 +95836,8 @@ ylo ylo ajq ajq -hiF -orm +ncu +tMU aen aen aen @@ -95845,35 +95845,35 @@ aen vFJ aen aen -vKI -tAc +yeA +cxI bhn -hiF -mxv +ncu +bMF aen aen aen -fkL -uJx -dUw -glM -dUw -dUw -uUT -hiF -tAc +veo +poN +iDg +scm +iDg +iDg +npa +ncu +cxI bhn bhn bhn bhn bhn bhn -hiF -mxv +ncu +bMF vFJ aen aen -fkL +veo bhn bhn bhn @@ -95886,15 +95886,15 @@ ylo ylo ylo aki -ktw -suQ -mHL -fAz -sIO -kuP -fMT -suQ -pfC +jtL +kxP +iGv +cTZ +jdp +wgh +klb +kxP +aFQ aki ylo ylo @@ -95903,56 +95903,56 @@ ylo ylo ylo arJ -kqV -mCr -fRb -gFr +rHg +pet +rtG +nmu ajX -ewK -hVA -ltt -oDF +fgK +wQb +kPA +itm akd -snV -grl -rZB -mhU -xLB -lLC -fRk -xRh -snV +mAf +nFd +mdr +fgQ +jwu +mlQ +owv +dvo +mAf akv -eMf -hNB -edu -vBZ +bmR +kUi +ipR +knO ajX ajX ajX ajX -eMf -edu -eWB -edu -kPF -syE +bmR +ipR +ruC +ipR +rmF +pKZ akd -vsS -fRb -mCr -dUs +vPb +rtG +pet +iKK auJ -iop -whI -imm +uQs +mvs +igq bxB iPo bxB -imm -hJO -whI -qRT +igq +sRV +mvs +fGd auR ylo ylo @@ -96089,35 +96089,35 @@ aen aen aen aen -vKI +yeA bhn bhn bhn bhn -hiF -mxv +ncu +bMF aen -xXF -fkL -uJx -dUw -glM -dUw -dUw -uUT -hiF -cBI -hiF +bJE +veo +poN +iDg +scm +iDg +iDg +npa +ncu +idK +ncu bhn bhn bhn bhn bhn bhn -hiF -mxv +ncu +bMF aen -vKI +yeA bhn bhn bhn @@ -96134,9 +96134,9 @@ apV akl akl akl -pDa -sIO -xwz +qKK +jdp +nIK akl akl akl @@ -96148,55 +96148,55 @@ agD agD arJ arJ -aSK -mCr -fRb -gFr +lep +pet +rtG +nmu ajX -jiT -edu -wAx -wbv +tkP +ipR +cCC +egm akd -snV -grl -mND -uCG -mCF -ovf -ofg -xRh -snV +mAf +nFd +vmE +ghc +qaT +tsP +vjy +dvo +mAf akv -woa -edu -fpt -sRM +dzU +ipR +jkt +vah ajX bUm bUm ajX -vIg -edu -pjx -edu -nnB +cRS +ipR +hlB +ipR +rJA ajX ajX -vsS -fRb -mCr -pJw +vPb +rtG +pet +mBO auJ -hJO -whI -imm +sRV +mvs +igq sVo bxB sVo -bDW -hJO -oCW +eVd +sRV +gti aEx aEx ylo @@ -96334,35 +96334,35 @@ aen aen aen aen -fkL -hiF +veo +ncu bhn bhn bhn bhn -orm +tMU aen aen -fkL -uJx -dUw -glM -dUw -dUw -uUT -orm +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen -cHZ -hiF +tbN +ncu bhn bhn bhn bhn -hiF -hiF -orm +ncu +ncu +tMU aen -fkL +veo bhn ajq ajq @@ -96370,78 +96370,78 @@ ajq aSa aSa apJ -nsU -nsU -nsU -nsU -nsU -guY -uOD -coT -uOD -uOD -sIO -uOD -uOD -coT -uOD -fDU -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -fRb -gFr +gMN +gMN +gMN +gMN +gMN +fzL +vea +jhJ +vea +vea +jdp +vea +vea +jhJ +vea +sGY +pet +pet +pet +pet +pet +pet +pet +pet +pet +rtG +nmu ajX -mnW -edu -kPF -nJg +fAv +ipR +rmF +xWu akv -cqw -nsa -qPs -qPs -qPs -qPs -qPs -iic -qRB +itd +iZe +juW +juW +juW +juW +juW +hah +nue akv -vEU -eMf -edu -edu -wcR -oEX -qdi +plz +bmR +ipR +ipR +poD +sXH +nGb ajX -ogv -edu -wri -edu -lKh -nks +qfu +ipR +wPI +ipR +nzv +fWS akd -vsS -fRb -mCr -qiH -kuo -hkl -whI -imm +vPb +rtG +pet +cNs +rLc +xwZ +mvs +igq bwP iPo wvG -imm -hJO -whI +igq +sRV +mvs aEx ylo ylo @@ -96578,35 +96578,35 @@ ajq ajq ajq aen -vKI -hiF -hiF -hiF -hiF -bhn -hiF -qqw +yeA +ncu +ncu +ncu +ncu +bhn +ncu +oNN aen aen -fkL -uJx -dUw -glM -dUw -dUw -uUT -orm +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen aen -fkL -hiF -hiF -bhn -hiF -hiF -hiF -hiF -tAc +veo +ncu +ncu +bhn +ncu +ncu +ncu +ncu +cxI ajq ajq ajq @@ -96615,78 +96615,78 @@ ylo aSa apJ apJ -nsU -cRZ -ptV -ptV -ptV -fbO -jlR -jlR -jlR -nMQ -kAU -nMQ -jlR -jlR -jlR -wUN -fZe -fZe -iyI -fZe -fZe -fZe -fZe -fZe -fZe -vGY -gFr +gMN +fUQ +bXT +bXT +bXT +kfh +reW +reW +reW +lVX +oYk +lVX +reW +reW +reW +dtr +xbF +xbF +kDG +xbF +xbF +xbF +xbF +xbF +xbF +lAY +nmu ajX -vmg -qed -iBh +cGa +tuM +vze xZB xZB xZB -snV -snV -snV -snV -snV -snV -snV +mAf +mAf +mAf +mAf +mAf +mAf +mAf xZB xZB xZB -woa -edu -kPF +dzU +ipR +rmF ajX -xxy -oEX +eKp +sXH ajX -woa -edu -edu -edu -kPF -iEx +dzU +ipR +ipR +ipR +rmF +uCv akd -vsS -fRb -mCr -ceh -xlS -mvJ -whI -imm +vPb +rtG +pet +tXF +kHS +rCB +mvs +igq qLz iPo qLz -imm -hJO -oes +igq +sRV +pFV aEx ylo ylo @@ -96824,32 +96824,32 @@ ylo ajq ajq ajq -hiF -hiF -hiF -hiF -hiF -qqw +ncu +ncu +ncu +ncu +ncu +oNN aen aen aen -fkL -uJx -dUw -glM -dUw -dUw -uUT -orm +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen aen -cHZ -hiF -hiF -hiF -hiF -hiF -hiF +tbN +ncu +ncu +ncu +ncu +ncu +ncu ajq ajq ajq @@ -96860,19 +96860,19 @@ apJ apJ apJ arG -nsU -wIF +gMN +sVH akl akl akl akl akl akl -dwq -opv -uOD -ppI -dwq +ine +sHu +vea +vSm +ine akl akl akl @@ -96883,55 +96883,55 @@ apV arJ arJ arJ -xRK -mCr -fRb -gFr +cOp +pet +rtG +nmu ajX ajX -nex -nex +wbR +wbR xZB xZB xZB -gyF -gyF -gyF -gyF -gyF -gyF -gyF +hyu +hyu +hyu +hyu +hyu +hyu +hyu xZB xZB xZB -glJ -fLq -lzY +hQL +mdN +oLK ajX bUm bUm ajX -myi -jfR -kZA -dhD -feI +hJm +kOq +mUr +vry +hyv ajX ajX -vsS -fRb -mCr -pJw +vPb +rtG +pet +mBO auJ -hJO -xDU -imm +sRV +uTX +igq oGI bxB iPo -bDW -hJO -oCW +eVd +sRV +gti aEx aEx ylo @@ -97072,26 +97072,26 @@ ajq ajq ajq ajq -hiF -orm +ncu +tMU aen aen aen aen -fkL -uJx -dUw -glM -dUw -dUw -uUT -orm +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen aen aen -fkL -hiF -hiF +veo +ncu +ncu ajq ajq ajq @@ -97101,12 +97101,12 @@ ylo aSa apJ apJ -nsU -cRZ -ptV -ptV -ptV -xPU +gMN +fUQ +bXT +bXT +bXT +cvv akl bjm aVg @@ -97114,9 +97114,9 @@ gZF amw akl akl -nGK -uOD -pWi +hfs +vea +qYU akl akl amw @@ -97128,24 +97128,24 @@ aki ylo ylo arJ -xRK -mCr -fRb -pyO -fqw +cOp +pet +rtG +tTN +eEi ajX ajX ajX xZB xZB bow -oqO -mCr -mCr -mCr -mCr -mCr -kia +qQm +pet +pet +pet +pet +pet +xbj xZB xZB xZB @@ -97162,22 +97162,22 @@ ajX ajX ajX ajX -kjq -vsS -fRb -mCr -dUs +xPh +vPb +rtG +pet +iKK auJ -iop -whI -imm +uQs +mvs +igq buY oGI buY -imm -hJO -whI -qRT +igq +sRV +mvs +fGd auR ylo ylo @@ -97323,15 +97323,15 @@ ajq ajq ajq aen -fkL -hoS -dUw -glM -dUw -dUw -khz -orm -xXF +veo +txs +iDg +scm +iDg +iDg +ekz +tMU +bJE ajq ajq ajq @@ -97346,12 +97346,12 @@ apJ apJ apJ arG -nsU -wIF -nsU -nsU -yiG -nsU +gMN +sVH +gMN +gMN +kMV +gMN akl amk xBK @@ -97359,9 +97359,9 @@ hvZ gBh dfg akl -nGK -uOD -bkz +hfs +vea +kxh akl wvZ gBh @@ -97373,56 +97373,56 @@ aki ylo ylo arJ -xRK -mCr -fRb -mCr -tbZ -oIT -oIT -jbG -oIT -oIT -oIT -cPO -mCr -mCr -mCr -mCr -mCr -pyO -oIT -oIT -oIT -oIT -jbG -oIT -oIT -oIT -oIT -tRF -oIT -oIT -oIT -oIT -jbG -oIT -tLt -cPO -fRb -mCr -pJw +cOp +pet +rtG +pet +vUW +mes +mes +nfh +mes +mes +mes +llq +pet +pet +pet +pet +pet +tTN +mes +mes +mes +mes +nfh +mes +mes +mes +mes +sAt +mes +mes +mes +mes +nfh +mes +cUM +llq +rtG +pet +mBO auJ -hJO -whI -imm +sRV +mvs +igq bwP oGI bwP -imm -hJO -whI -qRT +igq +sRV +mvs +fGd auR ylo ylo @@ -97570,10 +97570,10 @@ qSi atJ atJ qSi -kfm -sZS -kfm -dfz +lvS +smz +lvS +lNZ aph xKu xKu @@ -97587,12 +97587,12 @@ aSa ylo ylo apJ -cRZ -ptV -ptV -ejx -ptV -vKn +fUQ +bXT +bXT +rJl +bXT +lnS ajB ajB ajB @@ -97604,9 +97604,9 @@ amE akl aHg akl -vGG -uOD -ddK +fVD +vea +sVT akl aHg akl @@ -97618,56 +97618,56 @@ apV ylo ylo arJ -xRK -xRK -kTN -fZe -ryW -fZe -fZe -fZe -fZe -fZe -fZe -fZe -jXW -fZe -fZe -fZe -fZe -fZe -fZe -jrj -jrj -fZe -fZe -fZe -fZe -fZe -fZe -fZe -fZe -fZe -fZe -jrj -fZe -fZe -ryW -fZe -nMH -mCr -qiH -kuo -hkl -whI -imm -imm -imm -imm -imm -hJO -whI -qRT +cOp +cOp +nJE +xbF +htu +xbF +xbF +xbF +xbF +xbF +xbF +xbF +ufS +xbF +xbF +xbF +xbF +xbF +xbF +xbz +xbz +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbz +xbF +xbF +htu +xbF +gCl +pet +cNs +rLc +xwZ +mvs +igq +igq +igq +igq +igq +sRV +mvs +fGd auR ylo ylo @@ -97811,17 +97811,17 @@ aSa ylo ylo qSi -bEB -oSl -skH +aYU +mZE +pgS ayc -obO -owq -xUl -fXV +vdj +jUc +haK +jWQ atI -jZd -lqT +cPU +rHP aph aph aph @@ -97832,28 +97832,28 @@ apl ylo ylo apJ -wIF -nsU -nsU -yiG -nsU -wIF +sVH +gMN +gMN +kMV +gMN +sVH ajB -sdO -pFt -sdO +loy +xtb +loy ajB akl akl akl akl -liK -jlR -qsO -uOD -liK -jlR -qsO +iNK +reW +uil +vea +iNK +reW +uil akl akl akl @@ -97864,54 +97864,54 @@ ylo ylo arJ arJ -xRK -xRK -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -fRb -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -mCr -xRK -fjN -fjN -dQN -kuo -kuo -kuo -kuo -kuo -hkl -whI +cOp +cOp +pet +pet +pet +pet +pet +pet +pet +pet +pet +rtG +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +cOp +ktB +ktB +uKm +rLc +rLc +rLc +rLc +rLc +xwZ +mvs aEx aEx ylo @@ -98056,37 +98056,37 @@ aSa ylo ylo qSi -waM -xkm -uam +qUa +uNC +nPt ayc -dvO -xUl -xUl -dvO +gED +haK +haK +gED atI -fLH -xlA -tJu -tJu -hPu +gKv +uDp +kKZ +kKZ +ljl apl -cSv -vtZ +wIe +uuf apl apl apJ apJ -wIF -nsU +sVH +gMN ajB ajB ajB -pHR +hrl ajB -rBR -wyU -nVE +iUI +cNE +tQu ajB amq aUE @@ -98094,9 +98094,9 @@ amH akl aHg akl -opv -uOD -ppI +sHu +vea +vSm akl aHg akl @@ -98110,53 +98110,53 @@ ylo aSa arJ arJ -xRK -xRK -xRK -xRK -xRK -xRK -xRK -xRK -xRK -xRK -fRb -mCr -xRK -xRK -xRK -xRK -xRK -xRK -xRK -utw -mCr -mCr -mvg -gGU -gGU -gGU -hoc -gGU -oKf -mCr -mCr -mCr -xRK -xRK -xRK -rZb -ceh -xlS -xlS -xlS -xlS -xlS -xlS -xlS -xlS -xlS -qOM +cOp +cOp +cOp +cOp +cOp +cOp +cOp +cOp +cOp +cOp +rtG +pet +cOp +cOp +cOp +cOp +cOp +cOp +cOp +skP +pet +pet +qQx +qVX +qVX +qVX +wrw +qVX +moY +pet +pet +pet +cOp +cOp +cOp +tUS +tXF +kHS +kHS +kHS +kHS +kHS +kHS +kHS +kHS +kHS +fGA aEx ylo ylo @@ -98301,37 +98301,37 @@ aog aiJ aiJ qSi -waM -hTO -uam +qUa +nac +nPt ayc -fXV -xUl -sWm -mof +jWQ +haK +cfy +oII atI -cZf -jNx -jNx -jNx -iQg +sYb +tVs +tVs +tVs +rZg apl -sEG -vtZ -sbZ +swQ +uuf +wjC ajy -xog -nsU -wIF -nsU +gdl +gMN +sVH +gMN ajB -vsW -jVm -lHe -iTO -iTO -wkA -nVE +dfC +uIg +fgb +fLf +fLf +kbl +tQu ajB amr amk @@ -98339,9 +98339,9 @@ hvZ gBh xWS akl -sMc -uOD -pWi +hpd +vea +qYU akl hKt gBh @@ -98356,39 +98356,39 @@ aSa ylo arJ arJ -eCm -iFK +txa +qbf arJ arJ arJ arJ arJ -bYH -xRK -fRb -mCr -xRK -suv +gpO +cOp +rtG +pet +cOp +phh arJ arJ arJ -gGU -gGU -gLu -gLu -gLu -vGp -eRz -iRH -iRH -iRH -utl -llK -gLu -gLu -gLu -hiV -hiV +qVX +qVX +xQC +xQC +xQC +nIb +wvI +qyZ +qyZ +qyZ +myl +nHr +xQC +xQC +xQC +xUB +xUB arJ arJ arJ @@ -98396,9 +98396,9 @@ aEx aEx aEx aEx -sTw -rSO -gvB +xWP +wQe +pZU aEx aEx aEx @@ -98525,58 +98525,58 @@ ylo ylo alx alx -ucL -ucL -iIP -ucL +rbf +rbf +woc +rbf alx alx alx -ucL -ucL -ujb -ucL +rbf +rbf +mtw +rbf alx aog aog -wxI -wEC -wEC -wjo -wEC -wEC +gDR +pNe +pNe +rpw +pNe +pNe qSi -xzQ -hTO -uam +gmb +nac +nPt qSi -kfm -kfm -sZS -gUA +lvS +lvS +smz +wJs aph -soW -jNx -mTh -xAi -saj +oYg +tVs +urs +mmL +wzj apl -sEG -vtZ -sbZ +swQ +uuf +wjC ajy -xog -nsU -wIF -uwH +gdl +gMN +sVH +woU ajB ajB ajB -nVE +tQu ajB -fTU +juQ ajB -fTU +juQ ajB ams bvQ @@ -98584,9 +98584,9 @@ amw bvx akl akl -nGK -uOD -pWi +hfs +vea +qYU akl akl amw @@ -98609,31 +98609,31 @@ ylo ylo arJ asJ -naB -cmf -jTk -naB +dMp +sJL +mLt +dMp asJ arJ ylo arJ -fWA -uau -xRK -slc -xRK -uau -hcO +gqI +fsp +cOp +tNi +cOp +fsp +lFc arJ agD arJ -hcO -uau -xRK -slc -xRK -uau -fWA +lFc +fsp +cOp +tNi +cOp +fsp +gqI arJ ylo ylo @@ -98769,70 +98769,70 @@ ylo ylo ylo alx -shc -ucL -nJY -qpA -ucL -wWU +ygq +rbf +siN +hss +rbf +grV afJ -kUm -ucL -nJY -qpA -ucL -jBD +tqL +rbf +siN +hss +rbf +vGv avj -epx -gDk -xUu -xUu -jOz -xUu -xUu -wVy -lMm -prr -uam +qQk +wVv +rzg +rzg +ubl +rzg +rzg +fGj +ptc +nMT +nPt xDC -xSZ -nsU -wIF -slY +olw +gMN +sVH +rAi aud -mwg -kmF -fTo -jNx -xIn +hpb +pQU +tQm +tVs +liL ahw -fmp -cJE -vtZ +qnU +geh +uuf ajy -kBw -nsU -wIF -mWh +iSL +gMN +sVH +iNB ajB -goc -jVm -nVE +iKV +uIg +tQu ajB -pxq +oAt ajB -pxq +oAt ajB akl akl akl akl akl -sLq -nGK -uOD -pWi -wPO +ntH +hfs +vea +qYU +lYF akl akl akl @@ -98854,30 +98854,30 @@ ylo ylo ylo atd -wWJ -cmf -jTk -wWJ +vJe +sJL +mLt +vJe atd ylo ylo arJ arJ -juS -rTR -vmk -cYN -vxW +lbs +kPN +ghI +tsI +kbF arJ arJ ylo arJ arJ -juS -rTR -vmk -eMG -vxW +lbs +kPN +ghI +sow +kbF arJ arJ ylo @@ -99014,51 +99014,51 @@ ylo ylo ylo alx -say -ucL -fqS -ucL -ucL -eZK +hdQ +rbf +sux +rbf +rbf +huD iSB -say -ucL -iNd -ucL -ucL -eZK +hdQ +rbf +oxb +rbf +rbf +huD avj -vWS -qJK -nEn -oUk -fdW -oUk -uXp +dxD +qGm +jeZ +oLE +ogZ +oLE +hcW qSi -iUe -iLO -tfn -tqJ -yeF -nsU -wIF -srk +gcd +qpg +xyq +vhY +sNp +gMN +sVH +sPH atI -uln -cyH -fTo -jNx -kfd +xzK +qff +tQm +tVs +oSA ahw -sEG -oqo -hpz -udF -ptV -ptV -vKn -mWh +swQ +qPe +tBY +dxv +bXT +bXT +lnS +iNB ajB ajB ajB @@ -99068,16 +99068,16 @@ ajB ajB ajB ajB -lYU -nXx +pMf +nmc wXE -oYu -hXE -uOD -nGK -uOD -pWi -uOD +xdE +iwX +vea +hfs +vea +qYU +vea akl rMU rMU @@ -99099,30 +99099,30 @@ ylo ylo ylo atd -wWJ -cmf -jTk -wWJ +vJe +sJL +mLt +vJe atd ylo ylo ylo agD -xRK -rTR -jDg -cYN -xRK +cOp +kPN +qBA +tsI +cOp agD ylo ylo ylo agD -xRK -rTR -nXB -cYN -xRK +cOp +kPN +jrR +tsI +cOp agD ylo ylo @@ -99259,51 +99259,51 @@ ylo ylo ylo alx -pmC -ucL -nJY -qpA -ucL -sHG +xND +rbf +siN +hss +rbf +jLq iSB -nEX -ucL -nJY -qpA -ucL -wwK +rOr +rbf +siN +hss +rbf +pxE avj -guF -qJK -uKi -nFL -iFe -nFL -oFk +xzq +qGm +kUj +eox +oQH +eox +bqB qSi -iuH -rtd -jwN +kfm +niI +cHm xDC -ivQ -nsU -wIF -qyB +son +gMN +sVH +vZv atI -trX -jNx -fTo -jNx -gAK +xTw +tVs +tQm +tVs +rRg ahw -sEG -nFa -vtZ +swQ +skl +uuf ahw -pjs -nsU -wIF -mWh +jcP +gMN +sVH +iNB add brt aUo @@ -99318,11 +99318,11 @@ akl akl akl akl -sLq -nGK -jBo -pWi -hJY +ntH +hfs +gzs +qYU +hUH akl akl akl @@ -99344,10 +99344,10 @@ ylo ylo ylo atd -wWJ -cmf -jTk -wWJ +vJe +sJL +mLt +vJe atd ylo ylo @@ -99504,51 +99504,51 @@ ylo ylo ylo alx -say -ucL -oxO -ucL -ucL -eZK +hdQ +rbf +dqn +rbf +rbf +huD iSB -say -ucL -jxo -ucL -ucL -eZK +hdQ +rbf +tLM +rbf +rbf +huD avj avj -knj +nDZ ajL -lRT +pYm ajL -lRT +pYm ajL qSi atJ atJ atJ atJ -gCp -nsU -wIF -qyB +muZ +gMN +sVH +vZv aud -jBI -gdW -fTo -jNx -mRH +txA +cba +tQm +tVs +qRP ahw ahw ahw ahw ahw -rxP -nsU -wIF -mWh +jpv +gMN +sVH +iNB adt bun qlx @@ -99564,9 +99564,9 @@ amI amM akl akl -nGK -jBo -pWi +hfs +gzs +qYU akl akl amA @@ -99589,10 +99589,10 @@ ylo ylo asJ asJ -nTr -cmf -jTk -tCC +fvW +sJL +mLt +xeC atG atG ylo @@ -99738,10 +99738,10 @@ bmB aSa aSa akj -goB -qTW -dIi -fgf +tkS +iJG +usI +wMT akj alx aex @@ -99749,51 +99749,51 @@ aex aex alx alx -uXq -ucL -dVz -qpA -jYj -sHG +fbx +rbf +xVm +hss +wjE +jLq iSB -nEX -ucL -dVz -qpA -ucL -sHG +rOr +rbf +xVm +hss +rbf +jLq avj -syb -qJK -slv -wEC -wEC -wEC -wEC -wEC -wEC -lBN -lBZ +vce +qGm +wlf +pNe +pNe +pNe +pNe +pNe +pNe +ovB +tkc avj -tFQ -nsU -wIF -qyB +nit +gMN +sVH +vZv aud aud aud -fTo -sLu +tQm +tWO aud ajj -kdB -mPj -wQU +rfk +jfd +oOY ajj -uFI -nsU -wIF -mWh +kHr +gMN +sVH +iNB adt buo uov @@ -99809,9 +99809,9 @@ hvZ gBh dfg akl -sMc -jBo -fzH +hpd +gzs +gNB akl wvZ gBh @@ -99824,21 +99824,21 @@ ylo ylo aSa asK -uPr -mGT -jwl -eDv +ofp +iFG +gZK +vqX asK asK asK asK asJ -vhn -uRV -cmf -jTk -naB -tZl +dxr +pJb +sJL +mLt +dMp +ocX atG atG atG @@ -99983,62 +99983,62 @@ bmB aSa ylo akj -goB -dIi -dIi -fgf +tkS +usI +usI +wMT akj -dCY -cQG -ijD -iod -hAH +smK +mKF +grB +lph +jvO alx -say -ucL -tzg -tXG -ucL -eZK +hdQ +rbf +ekn +wxk +rbf +huD afJ -say -ucL -inw -jYj -ucL -vex -mAD -cZb -qJK -uQU -uQU -uQU -uQU -uQU -uQU -eDy -oUk -slv +hdQ +rbf +uvu +wjE +rbf +uwD +nwm +gjr +qGm +xed +xed +xed +xed +xed +xed +hja +oLE +wlf agx -qsn -nsU -wIF -gPG -eAw -eAw -tAI -wIF -nsU -qyB +kpr +gMN +sVH +uXh +uob +uob +rlR +sVH +gMN +vZv ajj -pVz -hKJ -aRi -msl -ptV -ptV -vKn -mWh +ntJ +jGA +oFI +bnu +bXT +bXT +lnS +iNB adt bup uov @@ -100054,9 +100054,9 @@ bjm akl aHg akl -svL -jBo -ddK +moT +gzs +sVT akl aHg akl @@ -100069,26 +100069,26 @@ ylo ylo asK asK -wYL -jXx -hIc -rOB -pGI -mHD -kwt +yiD +rPx +pJC +jZf +uUr +ydt +nrI atk -gBb -huU -hsT -qvK -pKx -pKx -hue -gzb -opu -nWL -qCx -jMt +wLt +pXv +iYt +vBL +cFD +cFD +lmF +dfk +cWm +iPe +dCn +sWJ atG aSa ylo @@ -100228,82 +100228,82 @@ blY ylo ylo akj -pSE -nvR -bBv -bBv -vZC -rXV -rXV -rXV -rXV -rXV -rXV -wRI -ucL -inw -ucL -ucL -vex -rXV -wRI -ucL -inw -ucL -jYj -jYj -gge -gge -rxv -gge -gge -gge -gge -xGS -rvG -gge -gge -gge -fOk -nsU -nsU -wIF -nsU -nsU -nsU -nsU -wIF -nsU -qyB +ilA +qzz +fiR +fiR +rNi +wDp +wDp +wDp +wDp +wDp +wDp +iTY +rbf +uvu +rbf +rbf +uwD +wDp +iTY +rbf +uvu +rbf +wjE +wjE +gto +gto +oyP +gto +gto +gto +gto +tRI +uGE +gto +gto +gto +mMz +gMN +gMN +sVH +gMN +gMN +gMN +gMN +sVH +gMN +vZv ajj -rUt -mEU -kPY +bYe +tMa +kHa ajj -xkh -nsU -wIF -cvx +utY +gMN +sVH +nvh add -bob +oYD uov adN -eZg -peL -qrI -peL +gAk +sjO +teF +sjO add akl akl akl akl -liK -jlR -gqW -uOD -liK -jlR -qsO +iNK +reW +iGI +vea +iNK +reW +uil akl akl akl @@ -100313,27 +100313,27 @@ ylo ylo ylo atg -eve -jwu -hIc -hIc -hIc -hIc -rxo -qDH +gHz +cjU +pJC +pJC +pJC +pJC +iXB +pKw atk -uRV -jTk -sWY -enM -jTk -oWf -oWN +pJb +mLt +pBg +mNt +mLt +pdI +kCV atB -hGu -szd -kGA -opg +ieW +oTL +ckG +qit atG aSa ylo @@ -100473,70 +100473,70 @@ blY ylo ylo akj -wCO -tqz -gYs -joa -joa -cwe -cwe -cwe -cwe -cwe -cwe -cwe -cwe -hyI -cwe -cwe -cwe -cwe -cwe -cwe -hyI -uVG -cwe -cwe -xhh -xhh -nHf -xhh -xhh -xhh -gAD -xhh -xhh -xhh -xhh -xhh -xhh -ptV -gRG -vce -ptV -ptV -ptV -ptV -vce -kzn -qyB +uai +phB +vkI +wJJ +wJJ +kdR +kdR +kdR +kdR +kdR +kdR +kdR +kdR +gbC +kdR +kdR +kdR +kdR +kdR +kdR +gbC +sXj +kdR +kdR +haN +haN +oSy +haN +haN +haN +mUL +haN +haN +haN +haN +haN +haN +bXT +sgU +vBO +bXT +bXT +bXT +bXT +vBO +qDr +vZv ajj -wra -kec -uTn +ohH +mMq +dfH ajj -wcf -nsU -wIF -nsU +vkx +gMN +sVH +gMN aDy adN rqg cXH -kAC -sZL -qdJ -uXN +plL +lKF +gxW +ggE add bjq aUJ @@ -100544,9 +100544,9 @@ amB akl aHg akl -xdL -uOD -ppI +eNp +vea +vSm akl aHg akl @@ -100558,27 +100558,27 @@ apV ylo ylo atg -tFO -xxc -hIc -liG -wHx -liG -hIc -hiB +weJ +tBq +pJC +cuJ +xad +cuJ +pJC +nZb atp -uRV -jTk -cmf -jTk -jTk -rYW -eka +pJb +mLt +sJL +mLt +mLt +jEE +xNe atB -uVK -szd -xVx -iGn +tpc +oTL +nHy +uFW atG aSa ylo @@ -100718,70 +100718,70 @@ bmB aSa ylo akj -wCO -iUa -rSY -tqz -tqz -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -ucL -inw -ucL -qzx -mAD -qfD -oUk -pLD -rdk -ecr -imA -pLD -rdk -ecr -oUk -lev +uai +cDY +ilh +phB +phB +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +uvu +rbf +vCF +nwm +cdE +oLE +uec +pje +pGB +kMm +uec +pje +pGB +oLE +rdY agx -qKp -qKp -qKp -qKp -qKp -qKp -yeF -nsU -wIF -qyB +vOX +vOX +vOX +vOX +vOX +vOX +sNp +gMN +sVH +vZv ajj ajj ajj ajj ajj -xca -cly -hbR -ptV +rsT +sOF +ksl +bXT cXH cXH pIj adN -eZg -rWn -pnY -fFt +gAk +qwz +elf +tRd add amw eaN @@ -100789,9 +100789,9 @@ hvZ gBh xWS akl -vGG -uOD -dCm +fVD +vea +jbW akl hKt gBh @@ -100803,27 +100803,27 @@ aki ylo ylo atg -fje -jwu -hIc -qsj -cpo -liG -jIr -jJc +kpq +cjU +pJC +dgX +ggQ +cuJ +euq +lvw atp -uRV -jTk -cmf -jqu -yjJ -rYW -xIN +pJb +mLt +sJL +pSH +eyV +jEE +dGN atB -nwt -icl -oWN -iAB +nHR +ffL +kCV +iPk atG aSa ylo @@ -100963,42 +100963,42 @@ bmB aSa aSa akj -wCO -tqz -rSY -cDY -hjl -sAU -sAU -sex -sAU -sAU -sAU -sAU -sAU -sAU -sAU -sAU -sAU -sex -jHc -ucL -ucL -inw -ucL -eZK +uai +phB +ilh +neW +nxz +jAh +jAh +dXw +jAh +jAh +jAh +jAh +jAh +jAh +jAh +jAh +jAh +dXw +sHW +rbf +rbf +uvu +rbf +huD avj -phL -ncB -dlC -pmx -iki -eTN -wpx -oKS -iki -iya -nLE +pUU +xrj +nXe +kIL +poW +cgg +opF +nHJ +poW +nAJ +iLR agj agj agj @@ -101006,19 +101006,19 @@ agj agj agj agj -ivQ -nsU -wIF -gPG -eAw -kQi -dWH -smV -eTy -uFI -cly -wIF -fPc +son +gMN +sVH +uXh +uob +ioV +ruV +gzG +iUx +kHr +sOF +sVH +ttL add bFc uov @@ -101026,7 +101026,7 @@ aUt add add add -fFt +tRd add bjm aZq @@ -101034,9 +101034,9 @@ amJ amE akl akl -xHL -snm -xHL +ukW +sGJ +ukW akl akl amA @@ -101049,18 +101049,18 @@ ylo ylo asK asK -jwu -dnp -fpr -eAr -liG -hIc -izU +cjU +fjH +iqo +hUl +cuJ +pJC +uzD atp -uRV -jTk -cmf -gAE +pJb +mLt +sJL +xwS att att att @@ -101208,10 +101208,10 @@ bmB aSa ylo akj -wCO -tqz -rSY -tVC +uai +phB +ilh +mlI bmF afJ alx @@ -101227,10 +101227,10 @@ iSB afJ afJ afJ -ntZ -ntZ -wCD -ntZ +juJ +juJ +noI +juJ cGF avj aog @@ -101245,44 +101245,44 @@ agx aog aog agj -pqC -lsv -vXR -fJa -pMf +wyQ +rbE +dhD +rIu +ocd agj -ivQ -nsU -hbD -ptV -ptV -ptV -ptV -ptV -ptV -iON -iON -vKn -mWh +son +gMN +kwo +bXT +bXT +bXT +bXT +bXT +bXT +xtn +xtn +lnS +iNB adt bun uov bun add -hfz -peL -soq +oTS +sjO +qqt add akl akl akl akl akl -oJl -iyz -xrv -iyz -nDa +kRl +aTI +ezD +aTI +iYZ akl akl akl @@ -101294,28 +101294,28 @@ apV apV apV asK -ezE -hIc -hIc -sYy -rDI -hIc -gTg +ddE +pJC +pJC +ood +cQm +pJC +nNZ atk -uRV -jTk -cmf -kPy +pJb +mLt +sJL +coE att -hDI -yfC -wnd -lWs +uaQ +ntT +htV +kmq att -qCX -eHE -fvG -lbe +fyw +uuy +hUX +rHd auz auz ylo @@ -101453,115 +101453,115 @@ blY ylo ylo akj -wCO -tqz -rSY -imP +uai +phB +ilh +qYf bmF akz akz -rbp -ipD -ipD -ipD -vPB -oki -ipD -ipD -ipD -ipD +eOQ +mpB +mpB +mpB +wcY +nHd +mpB +mpB +mpB +mpB aeU -ipc -lcV -lcV -hso -lcV -ipc +dnz +lOL +lOL +lWW +lOL +dnz aeU -ehG -ehG -ehG -ehG -ehG -cDG -ehG -ehG -ehG -ehG -ehG +mMZ +mMZ +mMZ +mMZ +mMZ +pHX +mMZ +mMZ +mMZ +mMZ +mMZ agj -vKY -cvp -cvp -cvp -edE +tPB +jmR +jmR +jmR +rRX agj -qsn -nsU -wIF -nsU -nsU -nsU -nsU -nsU -nsU -nsU -nsU -wIF -mWh +kpr +gMN +sVH +gMN +gMN +gMN +gMN +gMN +gMN +gMN +gMN +sVH +iNB adt byu rjT buo add -hLT -peL -fFt +tuE +sjO +tRd add -mME -ndQ -uvw -wOm -tQz -uvw -iyz -xrv -iyz -tQz -uvw -wOm -tQz -nQT +xHH +xpZ +sJy +sme +cXM +sJy +aTI +ezD +aTI +cXM +sJy +sme +cXM +jCv alw -wNR -fXm -ktM -xaZ -uJS +uYt +rGj +lif +kRo +sIZ asK -ghv -uVs -hIc -sYy -frf -ivq -iHy +tAU +pYe +pJC +ood +ixj +pim +jpl atk -pXf -jTk -qvK -pKx -uuo -gjd -diZ -tdV -hnY +hBT +mLt +vBL +cFD +mPj +diG +tBg +emM +jAi att -rRC -dps -mvq -kty -wIf +ieC +iLo +qZR +fGk +gky auz ylo ylo @@ -101698,115 +101698,115 @@ npm npm npm akj -wCO -tqz -rSY -tVC +uai +phB +ilh +mlI akj akz -nrL -mbq -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -sGW -lvS -lvS -hGM -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -wJt -tSc -npj -cvp -cvp -cvp -cvp -cvp -vbn -nsU -cly -wIF -xjr -jmM -bKO -lIs -hKa -jmM -ixV -nsU -wIF -mWh +xQj +flO +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +vGp +mEp +mEp +qbd +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +eiW +rLI +uuG +jmR +jmR +jmR +jmR +jmR +tpt +gMN +sOF +sVH +tso +lLp +jCa +jud +kjK +lLp +goF +gMN +sVH +iNB adt bup adN bup add -rlu -peL -fFt +sVZ +sjO +tRd add -oJl -rCD -xLz -xLz -xLz -xLz -nQS -eHc -nQS -xLz -xLz -xLz -uCc -nDa +kRl +xis +xQQ +xQQ +xQQ +xQQ +gsm +gSd +gsm +xQQ +xQQ +xQQ +tUH +iYZ alw -rBj -uJS -uJS -kVE -uJS +iXt +sIZ +sIZ +mjz +sIZ atk atk atk -hIc -dkQ +pJC +gGz atk atk atk atk -uRV -jTk -cmf -jqu +pJb +mLt +sJL +pSH att -sPS -oBD -grI -uii +jnT +mMR +vAs +iYl atv -rRC -mvq -mqt -mvq -xAG +ieC +qZR +qwN +qZR +rrj aXw ylo ylo @@ -101943,115 +101943,115 @@ aRp aRp aRp bmj -wCO -tqz -rSY -nov +uai +phB +ilh +kcS bmF -poA -eKC -oEB -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -oEB -iRk +rmZ +qRU +fBJ +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +fBJ +rZc agj -llx -llx -eVR -cvp -tME +gHi +gHi +hlP +jmR +okw agj -yeF -cly -oeJ -eDN +sNp +sOF +nCA +fcg arB arM ash arM asI -rVC -nsU -wIF -obe +gbE +gMN +sVH +gSj add buq bur bus add -vtD -dfp -dLs +won +kRt +tud add -qTI -iyz -qsS -ndP -wbg -ndP -ndP -hNv -uJS -qsS -ndP -hhw -iyz -tea +lQG +aTI +qvf +coF +lbk +coF +coF +mWp +sIZ +qvf +coF +omX +aTI +rIV alw -oxH -rEP -cPj -oIy -uJS -cFP -pVw -hsT -jTk -cmf -kPy -huU -huU -huU -hsT -jTk -cmf -tgI +eWb +chn +nQy +jVD +sIZ +qqL +oPM +iYt +mLt +sJL +coE +pXv +pXv +pXv +iYt +mLt +sJL +vum atv -rAG -oBD -grI -uii +mTP +mMR +vAs +iYl atv -ruG -wpT -vhD -mvq -xAG +iDG +aXK +gdB +qZR +rrj aXw ylo ylo @@ -102188,115 +102188,115 @@ aRp aRp aRp bmj -wCO -oDr -rSY -tqz -qMa -tSc -tSc -oEB -tSc -tSc +uai +hUB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afi afv afC afC -rgz -hWD +dty +fix afv afC afL afS afv -gSt -jtc +iZy +hyE afS afv afC afL afS -nlj -oGD +qXG +wEb afL afS afi -tSc -oEB -xgW +rLI +fBJ +fSm agj agj agj -dtx -cvp -wVM +hkF +jmR +xGE agj -ivQ -nsU -hbR -uoW +son +gMN +ksl +fRO arC arT arC asn asL -rVC -nsU -wIF -mWh +gbE +gMN +sVH +iNB add add add add add add -knp +fIE add add -oJl -iyz -xdk +kRl +aTI +qCw amN amN amN amN amN -vpm +sui amN amN -dHq -iyz -nDa +fHj +aTI +iYZ alw -oNf -foH -foH -vJK -xrv -xrv -xrv -jTk -jTk -cmf -jTk -jTk -jTk -jTk -jTk -jTk -cmf -tgI +rvx +ssI +ssI +nxO +ezD +ezD +ezD +mLt +mLt +sJL +mLt +mLt +mLt +mLt +mLt +mLt +sJL +vum atv -rAG -oBD -grI -uii +mTP +mMR +vAs +iYl atv -ruG -mvq -jzD -mvq -xhi +iDG +qZR +mba +qZR +clD aXw ylo ylo @@ -102433,115 +102433,115 @@ aRp aRp aRp akj -laD -tqz -nji -joa -gsQ -lvS -lvS -ean -tSc -tSc +soz +phB +vNt +wJJ +xDE +mEp +mEp +pNR +rLI +rLI afk -rUM -oCf -oCf -oCf -oCf -oCf -oCf -oCf -oCf -oCf -oCf -jwS -oCf -oCf -oCf -oCf -oCf -oCf -oCf -oCf -cor +tMZ +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +jBS +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +reG ajT -tSc -oEB -fNd +rLI +fBJ +qqT agj atP agj -uqr -fww -hgu +vUq +gUu +iZh agj -ivQ -nsU -wIF -eDN +son +gMN +sVH +fcg arE arZ asi asi asM -rVC -nsU -wIF -cvx -dLr -dLr -dLr -dLr -dLr -kBw -wIF -cvx -dLr -uvw -iyz -xdk +gbE +gMN +sVH +nvh +uTC +uTC +uTC +uTC +uTC +iSL +sVH +nvh +uTC +sJy +aTI +qCw amN -tUn -wQX -wDN -qcN -tjE -nGZ +cuU +ixx +lOB +uro +wDP +lhA amN -dHq -iyz -tQz -ndQ -uvw -uJS -uJS -uJS -xrv -rCD -xLz -pKx -pKx -mjs -bCU -pKx -pKx -pKx -pKx -pKx -jfe -tgI +fHj +aTI +cXM +xpZ +sJy +sIZ +sIZ +sIZ +ezD +xis +xQQ +cFD +cFD +fPW +lgU +cFD +cFD +cFD +cFD +cFD +ibq +vum atv -rAG -smm -php -ulI +mTP +oYj +saG +onn att -sOK -mvq -hfQ -vkQ -wgM +osQ +qZR +tSj +cqq +voq auz ylo ylo @@ -102677,19 +102677,19 @@ aRp aRp aRp aRp -wXG -tqz -tqz -rSY -tqz -qMa -tSc -tSc -oEB -tSc -tSc +msS +phB +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afl -haZ +lsI afi aeN afi @@ -102709,84 +102709,84 @@ afi afi aeN afi -jFI +jgw ajU -tSc -oEB -fNd +rLI +fBJ +qqT agj atP agj atT -lRx +oMW atT agj -tFQ -nsU -wIF -ghV -wDg -kLw -jds -fwU -wDg -kAz -nsU -wIF -nsU -nsU -cly -cly -cly -nsU -nsU -wIF -nsU -nsU -xrv -iyz -xdk +nit +gMN +sVH +oek +jkV +lVN +uTx +tkm +jkV +jQh +gMN +sVH +gMN +gMN +sOF +sOF +sOF +gMN +gMN +sVH +gMN +gMN +ezD +aTI +qCw aNH -vzg -sLX -cGu -vaq -tjE -gKS +kah +oNJ +jmS +wNB +wDP +jgm aNH -dHq -iyz -xrv -xrv -xrv -xrv -xrv -xrv -xrv -iyz -uJS -oWf -gcm -pNP -gcm -pIc -gcm -gcm -gcm -eyx -cmf -tgI +fHj +aTI +ezD +ezD +ezD +ezD +ezD +ezD +ezD +aTI +sIZ +pdI +pNo +cZV +pNo +ozC +pNo +pNo +pNo +gPT +sJL +vum att -pTx -hnO -rNP -tax +lHa +grW +wRZ +mPy att -pGd -tzp -hfQ -qMA -srd +jOG +xpz +tSj +sVv +rhq auz ylo ylo @@ -102923,18 +102923,18 @@ aRp aRp aRp akj -jJA -tqz -rSY -tqz -qMa -tSc -tSc -oEB -tSc -tSc -xSQ -haZ +mzG +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI +jhw +lsI afi afi afi @@ -102954,62 +102954,62 @@ afi afi afi afi -jFI -kdW -tSc -pcS +jgw +mIG +rLI +uTb aeU agj agj agj -vcq -jlH -feT +sqQ +oNC +gzU bnZ -qsn -nsU -hbD -iON -ptV -ptV -ptV -ptV -ptV -ptV -ptV -vce -idF -ptV -ptV -ptV -iON -iON -ptV -vce -ptV -ptV -xLz -xav -xdk +kpr +gMN +kwo +xtn +bXT +bXT +bXT +bXT +bXT +bXT +bXT +vBO +iYU +bXT +bXT +bXT +xtn +xtn +bXT +vBO +bXT +bXT +xQQ +jhK +qCw aNH -vzg -evy -ibJ -jCe -phD -ryN +kah +eXU +lUd +nRv +izU +tUA aNH -dHq -bRL -xLz -xLz -xLz -xLz -xLz -xLz -xLz -xWy -uJS +fHj +lga +xQQ +xQQ +xQQ +xQQ +xQQ +xQQ +xQQ +fgr +sIZ atl atl atl @@ -103019,17 +103019,17 @@ atl bou atl atl -sRb +rxg atl atl -euD -smm -kAE -rrO +dgK +oYj +sgc +hKo att att att -lzj +dny att att auz @@ -103168,18 +103168,18 @@ aRp aRp aRp bmj -jAN -tqz -rSY -gIb +wof +phB +ilh +iVR bnw -qXM -icm -oEB -tSc -tSc -iHq -haZ +lvL +tVB +fBJ +rLI +rLI +fGz +lsI afi afi afi @@ -103199,84 +103199,84 @@ afi afi afi afi -jFI -ePW -tSc -oEB -ipc -vbu -weq -eko -tVc -dGy -tVc -iXB -nsU -nsU -wIF -nsU -nsU -nsU -nsU -nsU -nsU -nsU -nsU -nsU -wIF -skq -rrD -vCP -rrD -nEu -rrD -vCP -rrD -rrD -gJd -iyz -xdk +jgw +riK +rLI +fBJ +dnz +mhc +tDI +xLk +rrA +vNa +rrA +iSY +gMN +gMN +sVH +gMN +gMN +gMN +gMN +gMN +gMN +gMN +gMN +gMN +sVH +jef +vyX +koy +vyX +hGU +vyX +koy +vyX +vyX +usd +aTI +qCw amN -ntU -evy -tIY -lhF -beC -wPp +rKA +eXU +lah +sHx +xLr +ggl amN -dHq -iyz -dyu -qow -gJd -uJS -uJS -uJS -uJS -uJS -uJS +fHj +aTI +uvQ +giS +usd +sIZ +sIZ +sIZ +sIZ +sIZ +sIZ atl -vAF -eip -ixo -gXW -ixo -ixo -ixo -rip -ykx -vnZ +vdH +pwS +oGK +lzk +oGK +oGK +oGK +wbz +eDI +fsU atl -rAG -oBD -dFE -pwD -hDI -rqN -tDi -oBD -pwD -hKY +mTP +mMR +pKW +ozs +uaQ +xlJ +fOq +mMR +ozs +mYH auz ylo ylo @@ -103413,18 +103413,18 @@ aRp aRp aRp bmj -jAN -tqz -rSY -xhl +wof +phB +ilh +jDM bmF -tEv -icm -oEB -tSc -tSc +xKe +tVB +fBJ +rLI +rLI afk -haZ +lsI afi afi afi @@ -103444,32 +103444,32 @@ afi afi afi afi -jFI +jgw ajT -tSc -oEB -fmV -vbu -tVc -eko -cvp -qKj -cvp -iXB -nsU -nsU -wIF -skq -vCP -wwI -xcJ -skq -rrD -rrD -rrD -wwI -wIF -ueR +rLI +fBJ +jeQ +mhc +rrA +xLk +jmR +hmD +jmR +iSY +gMN +gMN +sVH +jef +koy +pYj +fqA +jef +vyX +vyX +vyX +pYj +sVH +mTd ajk ajk ajk @@ -103478,50 +103478,50 @@ ajk ajk ajk ajk -oJl -iyz -xdk +kRl +aTI +qCw amN amN -ixe +sPw amN amN amN amN amN -dHq -iyz -nDa +fHj +aTI +iYZ alw -fCn -ovH -ovH -uuL -oYu -ryd -tAL +fmO +mvZ +mvZ +hMZ +xdE +wtx +vDW atl -wlN -jHG -oxd -wlN -oxd -wlN -oxd -fMI -tKh -rQL +pnV +xJZ +thC +pnV +thC +pnV +thC +ivX +vUY +ien bou -tDi -oBD -grI -dFE -sog -grI -grI -oBD -grI -uii +fOq +mMR +vAs +pKW +oZT +vAs +vAs +mMR +vAs +iYl auz ylo ylo @@ -103658,18 +103658,18 @@ aRp aRp aRp akj -jzu -iUa -vqf -xhl +nYz +cDY +elS +jDM bmF -crD -icm -llf -tSc -tSc +sXt +tVB +tnX +rLI +rLI afl -haZ +lsI afi afi afi @@ -103679,7 +103679,7 @@ afi afi afi afi -ddl +dxh afi afi afi @@ -103689,22 +103689,22 @@ afi afi afi afi -jFI +jgw ajU -tSc -vNB -oTL -lKz -erz -jDW -vbw -akO -vbw -luP -ptV -ptV -vKn -oHg +rLI +mph +xNS +wjt +xRZ +gSU +ryy +mTL +ryy +ehD +bXT +bXT +lnS +gsQ ajk ajk ajk @@ -103713,60 +103713,60 @@ ajo ajk ajj ajj -rbZ +fEn bof ajo -wXr -pOp -jBr -dZk -dRO -drr +qcm +tNC +prP +pbK +tcO +pjY ajk -qTI -iyz -jeR -eLk -jPG -pPv -jeR -fkq -eLk -enh -eLk -jPG -iyz -tea +lQG +aTI +key +dyV +wKH +fyx +key +qBP +dyV +sJz +dyV +wKH +aTI +rIV alw -iDh -xHS -oQo -oIy -ryd -ryd -cRS +qyM +sAz +vFq +jVD +wtx +wtx +vXB atl -dXY -cTl -eTZ -wlN -eTZ -wlN -eTZ -fMI -oRs -cca -ihT -gjd -jji -jjQ -tdO -cwZ -ers -cwZ -rzj -oPr -kfk +tOl +fpQ +tyH +pnV +tyH +pnV +tyH +ivX +jNc +lWE +vev +diG +wEl +dhO +vGC +vtz +rpY +vtz +hXE +pex +uxM auz ylo ylo @@ -103903,18 +103903,18 @@ aRp aRp aRp bmj -jAN -tqz -wCd -xhl +wof +phB +whJ +jDM bmF -jqB -icm -oEB -tSc -tSc +svI +tVB +fBJ +rLI +rLI afq -haZ +lsI afi afi afi @@ -103934,84 +103934,84 @@ afi afi afi afi -obL +rqs akc -tSc -oEB -fmV -vbu -tVc -eko -cvp -cvp -cvp -iXB -nsU -nsU -wIF -oHg +rLI +fBJ +jeQ +mhc +rrA +xLk +jmR +jmR +jmR +iSY +gMN +gMN +sVH +gsQ ajk -qLM -yck -wWi -yck -kPx +pvz +qPz +wvL +qPz +mJi ajk -xpC -fBL -ueR +gkw +iuH +mTd ajo -xpC -iry -iSe -iSe -iry -ovo +gkw +oeL +cUj +cUj +oeL +vOi ajk -oJl -ucf -xLz -xLz -xLz -nQS -eHc -nQS -eHc -xLz -xLz -xLz -xWy -nDa +kRl +pRU +xQQ +xQQ +xQQ +gsm +gSd +gsm +gSd +xQQ +xQQ +xQQ +fgr +iYZ alw -rBj -oRX -uJS -kVE -oYu -oYu -nem +iXt +kAe +sIZ +mjz +xdE +xdE +lHm atl -tyI -jHG -kfK -wlN -oxd -wlN -kfK -jCW -ctR -soj +lgc +xJZ +hOa +pnV +thC +pnV +hOa +fSH +iGx +esI atl -wfJ -grI -oBD -vxX -hrj -wQR -hrj -wQR -hrj -rbY +vNd +vAs +mMR +wnC +mYu +uaY +mYu +uaY +mYu +tzC auz ylo ylo @@ -104148,18 +104148,18 @@ aRp aRp aRp bmj -jAN -tqz -rSY -gNL +wof +phB +ilh +tXQ bnw -eKC -icm -oEB -tSc -tSc -spx -haZ +qRU +tVB +fBJ +rLI +rLI +sRy +lsI afi afi afi @@ -104179,83 +104179,83 @@ afi afi afi afi -jFI -dEg -tSc -oEB -ipc -vbu -vTs -eko -tVc -wza -tVc -iXB -nsU -nsU -wIF -oHg +jgw +xwk +rLI +fBJ +dnz +mhc +gCZ +xLk +rrA +pOe +rrA +iSY +gMN +gMN +sVH +gsQ ajo -nPw -nIU -idt -xjW -lti +oZO +yhv +xNG +ocR +dsT ajo -xpN -fBL -nNi +hNt +iuH +ghl ajk -lox -tLb -cio -sCm -iry -joX +tDq +vcO +nnT +rpp +oeL +tlB ajk -bhG -qow -gJd -wOm -dyu -gJd -iyz -xrv -iyz -dyu -gJd -wOm -dyu -kgf +qSf +giS +usd +sme +uvQ +usd +aTI +ezD +aTI +uvQ +usd +sme +uvQ +pQo alw -cSF -fXm -pPa -mcq -qow -qow -goG +hck +rGj +rHo +jfu +giS +giS +eul atl -dXY -cTl -eTZ -wlN -eTZ -wlN -eTZ -fMI -feh -sxz +tOl +fpQ +tyH +pnV +tyH +pnV +tyH +ivX +laA +oEG atl -gKq -sPS -oBD -vxX -oTV -cGU -oTV -dQO -oTV +wzA +jnT +mMR +wnC +tNz +cio +tNz +sdH +tNz auz auz ylo @@ -104393,18 +104393,18 @@ aRp aRp aRp akj -wii -tqz -rSY -tqz -qMa -tSc -tSc -oEB -tSc -tSc -iXt -haZ +qNI +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI +qdl +lsI afi afi afi @@ -104424,50 +104424,50 @@ afi afi afi afi -jFI -emv -tSc -pcS +jgw +rwM +rLI +uTb aeU agj agj agj -fFH -dIK -fFH +kRV +pxR +kRV agj -yeF -nsU -wIF -qsJ +sNp +gMN +sVH +xNW ajo -jAI -iry -qtN -oSu -ubE -utg -ubE -lZr -ueR +hEE +oeL +iMP +omF +evJ +oMF +evJ +jBD +mTd ajo -tqh -xVB -cio -fBL -kAK -rmW +dsb +yjc +nnT +iuH +lDD +chM ajk akl akl akl akl akl -oJl -iyz -xrv -iyz -nDa +kRl +aTI +ezD +aTI +iYZ akl akl akl @@ -104481,20 +104481,20 @@ alw alw alw atl -lQM -jHG -kfK -wlN -kfK -wlN -kfK -fMI -fMI -uIB +xdZ +xJZ +hOa +pnV +hOa +pnV +hOa +ivX +ivX +itr atl box boy -twZ +ptM atz ato auz @@ -104637,19 +104637,19 @@ aRp aRp aRp aRp -wXG -tqz -tqz -rSY -tqz -qMa -tSc -tSc -oEB -tSc -tSc +msS +phB +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afl -haZ +lsI afi aeN afi @@ -104669,11 +104669,11 @@ afi afi aeN afi -jFI +jgw ajU -tSc -oEB -fNd +rLI +fBJ +qqT agj atP agj @@ -104681,27 +104681,27 @@ agj agj agj agj -tFQ -nsU -wIF -vtw +nit +gMN +sVH +gbB ajo -nPw -iry -rQU -vzZ -lDi +oZO +oeL +mua +gVg +nWp ajo -lzH -fBL -ueR +vZK +iuH +mTd ajo -fQx -kHx -kIP -fBL -lDi -fBA +mLQ +jgi +lpP +iuH +nWp +hxU ajk amn aZr @@ -104709,9 +104709,9 @@ amL amE akl akl -kmh -hXo -kmh +dSA +rnS +dSA akl akl amn @@ -104726,21 +104726,21 @@ auU avf asX ati -jHq -kXC -vzU -vzU -vzU -vzU -vzU -oxN -fmH -ykx +nKA +lNA +pcy +pcy +pcy +pcy +pcy +wZi +mVx +eDI atl -ggl -xIX -lNq -gzY +pFS +nNu +sit +har ato ylo ylo @@ -104883,42 +104883,42 @@ aRp aRp aRp akj -ucc -tqz -nji -joa -gsQ -lvS -lvS -ean -tSc -tSc +uqt +phB +vNt +wJJ +xDE +mEp +mEp +pNR +rLI +rLI afq -vWn -nIu -nIu -nIu -nIu -nIu -nIu -nIu -nIu -nIu -nIu -xaa -nIu -nIu -nIu -nIu -nIu -nIu -nIu -nIu -xpM +fER +onj +onj +onj +onj +onj +onj +onj +onj +onj +onj +xAe +onj +onj +onj +onj +onj +onj +onj +onj +wAN akc -tSc -oEB -fNd +rLI +fBJ +qqT agj atP atP @@ -104926,25 +104926,25 @@ atP atP atP agj -ivQ -nsU -wIF -oHg +son +gMN +sVH +gsQ ajk -ngU -xdM -rPO -bVz -uyy +eVn +ygG +nSq +ltU +uwz ajk -xpC -fBL -rQy +gkw +iuH +hqg ajk ajk ajk ajk -rbZ +fEn ajk ajk ajk @@ -104954,9 +104954,9 @@ hvZ gBh dfg akl -opv -uOD -xcx +sHu +vea +jIf akl wvZ gBh @@ -104964,28 +104964,28 @@ fWx amk amk alw -qlL -qlL -wlN -wlN -wlN -wlN +sWB +sWB +pnV +pnV +pnV +pnV atl atl atl atl -tUv +vQO ati atl atl atl atl -oTR +vzu atl -wvf -xIX -lNq -kmg +iFM +nNu +sit +qQt ato ylo ylo @@ -105128,42 +105128,42 @@ aRp aRp aRp bmj -wCO -tqz -rSY -tqz -qMa -tSc -tSc -oEB -tSc -tSc +uai +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afi afB afD afD -hRO -sHm +tqS +sfm afB afD afM afT afB -dhr -toQ +gZy +cbe afT afB afD afM afT -ioy -thu +uVK +noX afM afT afi -tSc -oEB -xgW +rLI +fBJ +fSm agb agb agb @@ -105171,10 +105171,10 @@ agb agb agb agb -ivQ -nsU -wIF -qZK +son +gMN +sVH +qHE ajk ajk ajk @@ -105182,16 +105182,16 @@ ajk ajk ajk ajk -jZo -fBL -lti -yck -dkC -yck -xpN -fBL -hOL -oXa +xAV +iuH +dsT +qPz +oqR +qPz +hNt +iuH +kUH +xsk ajk bvx aUF @@ -105199,9 +105199,9 @@ bjm akl aHg akl -vGG -uOD -ddK +fVD +vea +sVT akl aHg akl @@ -105209,28 +105209,28 @@ bjm bvQ atC alw -wlN +pnV asX auo sap atD -wlN -wlN -wlN -qip -wlN -wlN +pnV +pnV +pnV +xXC +pnV +pnV ato -kRv -xIX -gFQ -xIX -oNM -jBw -hKQ -jBw -gIi -ibg +opQ +nNu +uLf +nNu +tIg +eWe +uph +eWe +uiD +oue ato ylo ylo @@ -105373,109 +105373,109 @@ aRp aRp aRp bmj -wCO -tqz -rSY -cDY +uai +phB +ilh +neW bmF -kvR -qXM -oEB -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -tSc -oEB -fNd +hRS +lvL +fBJ +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +fBJ +qqT agb -nQX -wWk -lIe -wWk -nfU +fnv +kML +yjs +kML +dwj agb -ivQ -nsU -hbD -ptV -ulc -ubE -bXi -rRe -ubE -ubE -qEE -ubE -hFe -ubE -ubE -dEi -ubE -ubE -diH -iSe -jgJ +son +gMN +kwo +bXT +wDm +evJ +mMa +qao +evJ +evJ +pAx +evJ +wlv +evJ +evJ +gVz +evJ +evJ +iHs +cUj +cqo ajk akl akl akl akl -liK -jlR -qsO -uOD -liK -jlR -qsO +iNK +reW +uil +vea +iNK +reW +uil akl akl akl akl alw -wlN -wlN -wlN -wlN -wlN -wlN +pnV +pnV +pnV +pnV +pnV +pnV atD atD asX ask ask ato -uRe -xIX -xIX -xIX -xIX -xIX -iJF -xIX -xIX -fux +wtZ +nNu +nNu +nNu +nNu +nNu +gJg +nNu +nNu +xYA ato ylo ylo @@ -105618,70 +105618,70 @@ bmC bmC bmC akj -gXV -joa -tVp -tVC +gMd +wJJ +ogn +mlI bmF aeU -xSD -hqh -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -laz -lvS -lvS -uGE -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -lvS -dwN -cRL +tzD +vBv +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +fRc +mEp +mEp +xxl +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +vql +puo agb -dSy -fqW -dXT -etl -hcs +hBE +qOL +fzt +wdG +oBi agb -ivQ -nsU -wIF -nsU -mgF -iSe -iSe -iSe -iSe -iSe -iSe -bIu -mLH -gqI -mIp -qMf -mLH -gqI -mIp -iSe -ueR +son +gMN +sVH +gMN +eZK +cUj +cUj +cUj +cUj +cUj +cUj +jih +trA +lPZ +rvV +jDx +trA +lPZ +rvV +cUj +mTd ajk amA aUE @@ -105689,9 +105689,9 @@ amw akl aHg akl -opv -uOD -ppI +sHu +vea +vSm akl aHg akl @@ -105699,8 +105699,8 @@ amw bvT amC alw -wlN -wlN +pnV +pnV atl ati ati @@ -105712,14 +105712,14 @@ ati ati ato ato -jyg -fgV -xIX -xfb -xIX -wId -xIX -xfb +gRn +ctM +nNu +vFF +nNu +csK +nNu +vFF ato ato ylo @@ -105863,70 +105863,70 @@ bmD bmD ahE ahE -dvo -tqz -rSY -imP +wwh +phB +ilh +qYf bmF aeU aeU -kBu -kBu -kBu -kBu -kHn -yaL -kBu -kBu -kBu -kBu +gFb +gFb +gFb +gFb +mBP +cNL +gFb +gFb +gFb +gFb aeU -ipc -tSc -tSc -oEB -tSc -ipc +dnz +rLI +rLI +fBJ +rLI +dnz aeU -jAf -jAf -jAf -jAf -jAf -dUg -jAf -jAf -jAf -jAf -tls +iDT +iDT +iDT +iDT +iDT +fzD +iDT +iDT +iDT +iDT +lzJ agb -sZs -fqW -qHt -etl -hcs +iEI +qOL +msC +wdG +oBi agb -pGQ -nsU -wIF -nsU -mgF -iSe -iSe -iSe -iSe -iSe -iSe -iSe -izz -gqI -mIp -qMf -mIp -gqI -mLH -iSe -ueR +xSZ +gMN +sVH +gMN +eZK +cUj +cUj +cUj +cUj +cUj +cUj +cUj +sPr +lPZ +rvV +jDx +rvV +lPZ +trA +cUj +mTd ajk amB amk @@ -105934,9 +105934,9 @@ hvZ gBh xWS akl -sMc -uOD -fzH +hpd +vea +gNB akl hKt gBh @@ -106102,16 +106102,16 @@ ylo ylo ylo ahE -nAD -eFl -heM -oOR -tVM +fgD +tLe +ltI +eXK +bEL bmG -ghT -xqm -wCd -nov +hEI +qFB +whJ +kcS bmF bmF aeM @@ -106127,51 +106127,51 @@ afe aeM aeU aeU -lCA -lCA -sWC -lCA +xfI +xfI +nKg +xfI bnL agb agb uSk uSk -hUK +laq uSk agb pLO -vZs +cYt pLO pLO agb agb -nXb -vUK -ewx -tXL -ceb +fTf +dDI +cdc +mxw +nMd agb -jKm -nsU -wIF -skq +nJJ +gMN +sVH +jef hed -lzH -qkF -iSe -qkF -iSe -iSe -iSe -mIp -gqI -mLH -qMf -mLH -gqI -mIp -iSe -lTx +vZK +hEF +cUj +hEF +cUj +cUj +cUj +rvV +lPZ +trA +jDx +trA +lPZ +rvV +cUj +rYc ajk bjm bvQ @@ -106179,9 +106179,9 @@ amn amD akl akl -iCg -uOD -pWi +enq +vea +qYU akl akl ans @@ -106347,87 +106347,87 @@ ylo ylo ylo bmD -odo -dpw -fuL -gVL -qxv +ksZ +lKZ +xJo +tOf +vjh bmm -ghT -tqz -rSY -tqz -tqz -tqz +hEI +phB +ilh +phB +phB +phB afe -rgQ -jkp -sVe -sWJ -gEp -iUA -rgQ -buv -ouq -eVY +xSD +mBn +fbl +uyQ +ioP +iNn +xSD +ejV +uVU +gYh aeM -eDi -tSc -tSc -oEB -tSc -rGA +qri +rLI +rLI +fBJ +rLI +sLO agb -xwq -wWk -wWk -jHo -njs -lIe -hDG -nlM -wWk -wWk -vbj +imB +kML +kML +oBR +dlp +yjs +qwb +cIO +kML +kML +jXi bnU agb agg -kXE +gEx agg agb agb agb -mgo -gAl +gBC +rfu agb oHs -kvc -vxR -iSe -vxR -ymd -iSe -iSe -tjP -qvb -qvb -wih -qvb -qvb -iry -iSe -puM +gBA +oET +cUj +oET +dYU +cUj +cUj +gnH +fOT +fOT +iEC +fOT +fOT +oeL +cUj +dub ajk akl akl akl akl akl -rXA -vGG -jBo -pWi -hJY +lKt +fVD +gzs +qYU +hUH akl akl akl @@ -106592,95 +106592,95 @@ ylo ylo ylo bmD -emi -gVL -rvI -gVL -rEW +cfD +tOf +iwI +tOf +kWw bmm -sKb -tqz -nji -joa -joa -joa -nDm -sKt -ona -vTz -vTz -gsm -vTz -vTz -vTz -gsm -wrc +lCx +phB +vNt +wJJ +wJJ +wJJ +uhf +dWa +cti +jGb +jGb +nCt +jGb +jGb +jGb +nCt +lEe aeM -oAw -tSc -tSc -oEB -tSc -qAD +uPs +rLI +rLI +fBJ +rLI +nRl agb -iNh -ghW -ghW -kNY -rVZ -ghW -pYb -ghW -ghW -ghW -spn +wfI +goN +goN +uuz +lHh +goN +jaF +goN +goN +goN +dkG agb -wWk -jEz -mBv -pQS -ktO -lIe -jEz -ghW -mBv -hPB +kML +qhi +tvD +vdB +cyA +yjs +qhi +goN +tvD +ijR oHs -xpC -vxR -iSe -vxR -iSe -iSe -iSe -kAF -wuM -iSe -udd -iSe -iSe -iSe -iSe -ueR -waD -oYu +gkw +oET +cUj +oET +cUj +cUj +cUj +hqG +oLI +cUj +vJI +cUj +cUj +cUj +cUj +mTd +xPV +xdE oPq wXE -oYu -hXE -uOD -sIO -uOD -pWi -uOD -hXE -oYu +xdE +iwX +vea +jdp +vea +qYU +vea +iwX +xdE wXE atw -oYu -hXE -wlN -ewl +xdE +iwX +pnV +utT ati ylo ylo @@ -106837,87 +106837,87 @@ ylo ylo ylo ahE -pQI -eAM -qdP -fWJ -ije -ueS -joa -joa -tVp -tqz -mzI -oom +cko +soW +mvu +reP +tQg +vlE +wJJ +wJJ +ogn +phB +cAA +lTR aeM -vKf -kJl -rDa -ezS -qJk -tRG -qJk -ebY -sKt -sKt -sBl -lvS -lvS -lvS -ean -tSc -tSc -hUP -ghW -qbl -vcA -vcA -vcA -qxM -vcA -vcA -vcA -qxM -vcA -tus -vcA -vcA -brV -lPx -drc -hgR -vcA -vcA -rsO -raP +pXK +krH +xLj +sAM +iPs +kYB +iPs +ikd +dWa +dWa +gKl +mEp +mEp +mEp +pNR +rLI +rLI +qUJ +goN +jJn +fuJ +fuJ +fuJ +itB +fuJ +fuJ +fuJ +itB +fuJ +qpO +fuJ +fuJ +vvL +sdG +xcL +qHl +fuJ +fuJ +iHz +dDV oHs -xpC -vxR -iSe -cRY -iSe -iSe -iSe -iSe -lDi -bVz -bVz -bVz -bVz -smH -xdM -xmD +gkw +oET +cUj +gNX +cUj +cUj +cUj +cUj +nWp +ltU +ltU +ltU +ltU +myf +ygG +vcR ajk akl akl akl akl akl -dwq -opv -uOD -pWi -wPO +ine +sHu +vea +qYU +lYF akl akl akl @@ -107088,63 +107088,63 @@ bmG bmG bmG bmG -rTF -tqz -rSY -tqz -tqz -tqz -iCJ -vTz -vTz -vTz -fXp -gaJ -xYJ -fuI -oZG -vTz -vTz -vTz -tSc -tSc -tSc -vNB -lvS -lvS -tus -vcA -mvU -tXL -hAA -hAA -mUI -hAA -hAA -vUK -mBv -tXL +std +phB +ilh +phB +phB +phB +mrg +jGb +jGb +jGb +cwS +hDt +llL +yaz +rnX +jGb +jGb +jGb +rLI +rLI +rLI +mph +mEp +mEp +qpO +fuJ +wnP +mxw +mxG +mxG +rPf +mxG +mxG +dDI +tvD +mxw agb agb -swo +wOR agb agb -vWV -ghW -ghW -ghW -ghW -hcs +ebg +goN +goN +goN +goN +oBi oHs -rMT -bVz -bVz -bVz -bVz -bVz -bVz -bVz -vTR +iax +ltU +ltU +ltU +ltU +ltU +ltU +ltU +iCZ oHs gzf app @@ -107159,9 +107159,9 @@ amn amP akl akl -nGK -jBo -pWi +hfs +gzs +qYU akl akl amw @@ -107327,72 +107327,72 @@ ylo ylo ylo ahE -pIi -cqe -gGx -gAw -jvc +vIr +jCb +unn +tXS +gaj bmG -pvy -tqz -rSY -tqz -tqz -tqz +ijF +phB +ilh +phB +phB +phB afe -wtO -vTz -vTz -xdh -jkp -jkp -jkp -lIt -vTz -rGL +mgz +jGb +jGb +xsd +mBn +mBn +mBn +rqV +jGb +hyS aeM -kDj -tSc -izL -oEB -tSc -iRk +wwg +rLI +cVT +fBJ +rLI +rZc agb -xli -mBv -hcs +gJT +tvD +oBi tPV tPV tPV tPV tPV -dSy -mBv -vSy +hBE +tvD +dNO agb -rrm -kNY -fBl +nbC +uuz +uLd agb -sZs -nnR -xlC -bMW -tlN -hcs +iEI +xoe +kpC +pub +xTY +oBi oHs -iry -iMn -iry -iMn -iry -iMn -iry -iMn -iry +oeL +jRD +oeL +jRD +oeL +jRD +oeL +jRD +oeL oHs -iry -lUl +oeL +nrb app ylo ylo @@ -107404,9 +107404,9 @@ hvZ gBh dfg akl -sMc -gUo -bkz +hpd +qbL +kxh akl wvZ gBh @@ -107572,72 +107572,72 @@ ylo ylo ylo ahE -hRJ -viM -ufD -ije -ije -voT -joa -joa -vOc -mzI -phU -gVA +jWc +fus +cUy +tQg +tQg +gWE +wJJ +wJJ +fjh +cAA +jYm +iny aeM -hJJ -xSG -xSG -mdx -xSG -mdx -mdx -xSG -xSG -xmp +qmN +fIT +fIT +mcV +fIT +mcV +mcV +fIT +fIT +qRF aeM -eAS -jRz -jFi -gwU -nwJ -mid +jqv +eJC +plm +ijh +rOl +kmW agb -cjM -qhR -pQS -wWk -laF -oYb -laF -wWk -xJJ -exv -kef +khK +vHZ +vdB +kML +orp +rGp +orp +kML +ddr +rlS +vOb agb -rHl -giF -kHB +muL +vRb +vGc agb -msw -foY -oiO -int -hIA -ceb +qhG +ckd +wVY +fEQ +qPa +nMd oHs -iry -mLH -emI -mwu -iry -mLH -emI -mwu -tIB +oeL +trA +fNf +hTz +oeL +trA +fNf +hTz +rzB oHs -iry -lUl +oeL +nrb app ylo ylo @@ -107649,9 +107649,9 @@ bjm akl aHg akl -vGG -uOD -ddK +fVD +vea +sVT akl aHg akl @@ -107818,46 +107818,46 @@ ylo ylo ahE ahE -dRc -ueL -ueL -kzj +gzD +iuN +iuN +kbt bmG -eFH -iwu -iwu -sWj +rHv +waU +waU +cOy bmF bmF aeM aeM aeM -ljn -dcN -mvZ -xDk -tYa -cTg -ngG +nFO +edq +jyC +poF +iqH +dJc +wNT aeM aeM aeU -jyA -lFt -tKL -eAx +pXE +odp +chH +kuz aeU agb agb -kfY -vcA -vcA -vcA -gja -uYd -uYd -vcA -qeU +rwQ +fuJ +fuJ +fuJ +nOV +vKj +vKj +fuJ +vqe agb agb agb @@ -107881,8 +107881,8 @@ oHs oHs oHs oHs -iry -hrO +oeL +qDd app ylo ylo @@ -107892,13 +107892,13 @@ akl akl akl akl -liK -jlR -kAU -jlR -kAU -jlR -qsO +iNK +reW +oYk +reW +oYk +reW +uil akl akl akl @@ -108064,18 +108064,18 @@ ylo ylo ahE ahE -qGq -oAY -fam +mrH +tSi +kby bmG -ljT -mzI -mzI -mzI +dHO +cAA +cAA +cAA tqb lwu jAO -icm +tVB aeM aeM aeM @@ -108094,40 +108094,40 @@ aeU aeU nbN agb -gHs -lRR -hAA -pkg -hyE -hyE -hAA -tlS -smC +rZO +dBI +mxG +jAR +iws +iws +mxG +fhs +fup agb nbN nbN jAO -icm +tVB lwu wmi -icm -icm +tVB +tVB lwu lwu lwu -eJK +xqD yfh yfh yfh -iry -iry +oeL +oeL yfh yfh -iry +oeL eIq yfh -iry -iry +oeL +oeL app ylo ylo @@ -108319,23 +108319,23 @@ bmj akj akz akz -icm +tVB lwu -icm -icm +tVB +tVB lwu lwu -nNk +lvW lwu lwu -icm -icm +tVB +tVB lwu -icm -icm +tVB +tVB jAO lwu -icm +tVB lwu lwu agb @@ -108352,27 +108352,27 @@ agb lwu lwu lwu -icm +tVB lwu lwu -icm -icm +tVB +tVB lwu lwu lwu -lUl +nrb yfh yfh yfh -iry -iry +oeL +oeL oFU yfh -iry +oeL yfh yfh -iry -iry +oeL +oeL app ylo ylo @@ -108566,33 +108566,33 @@ ylo akz akz fHO -icm -icm +tVB +tVB lwu lwu -icm +tVB lwu lwu -icm -icm +tVB +tVB lwu -icm -icm +tVB +tVB lwu lwu -icm +tVB lwu lwu -uQU -uQU -uQU +xed +xed +xed wsJ wsJ -uQU +xed avs wsJ -uQU -uQU +xed +xed wsJ lwu lwu diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 9205a4cb31..4721518264 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -1490,13 +1490,17 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "anW" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) "aof" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) +"aog" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) "aoi" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -1506,14 +1510,10 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/lobby) -"aoo" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"aop" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_containment) +"aol" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) "aow" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) @@ -1557,9 +1557,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"apG" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/east_caves) "apL" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -1576,6 +1573,9 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/east_caves) +"apU" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/temple) "apW" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) @@ -1641,12 +1641,13 @@ "arL" = ( /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arP" = ( +"arN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) +/obj/item/trash/used_stasis_bag, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "arR" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/rock, @@ -1678,6 +1679,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) +"asi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) "asl" = ( /obj/structure/platform, /obj/structure/platform{ @@ -1999,8 +2004,11 @@ /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/detective) "axd" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/central_tunnel) +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "axj" = ( /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/valley/valley_crashsite) @@ -2075,10 +2083,18 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/office) -"ayc" = ( -/obj/item/alien_embryo, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) +"ayb" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"ayf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) "ayg" = ( /obj/structure/surface/table, /turf/open/floor/plating, @@ -2094,13 +2110,6 @@ /obj/item/tool/mop, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayq" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) "ayt" = ( /obj/structure/janitorialcart, /turf/open/floor/plating, @@ -2135,6 +2144,14 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"azL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Mess Hall" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cafeteria) "azN" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2469,6 +2486,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) +"aCq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) "aCr" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_RND) @@ -2607,10 +2628,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDj" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) "aDk" = ( /obj/item/stack/sheet/wood{ amount = 50 @@ -2737,6 +2754,10 @@ hull = 1 }, /area/shuttle/trijent_shuttle/omega) +"aDW" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) "aDZ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -3192,6 +3213,9 @@ /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"aHa" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_mining) "aHd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -3341,12 +3365,10 @@ /turf/closed/wall/r_wall/chigusa, /area/desert_dam/building/substation/northeast) "aIz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Cargo Bay" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) "aIE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 @@ -3494,6 +3516,9 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) +"aKr" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/building/substation/west) "aKu" = ( /obj/structure/platform{ dir = 8 @@ -3881,6 +3906,9 @@ "aOh" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) +"aOs" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/valley/valley_labs) "aOt" = ( /obj/structure/machinery/light, /turf/open/floor/prison, @@ -3964,9 +3992,6 @@ "aPD" = ( /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"aPH" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/deathrow) "aPJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -4150,6 +4175,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"aRG" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) "aRK" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt, @@ -4225,10 +4254,6 @@ "aSK" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"aSS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/garage) "aSV" = ( /obj/structure/desertdam/decals/road_stop{ dir = 1; @@ -4313,13 +4338,6 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/desert_dam/building/security/staffroom) -"aTT" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) "aTZ" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/courtroom) @@ -4470,13 +4488,16 @@ /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/hallway) +"aVq" = ( +/turf/open/floor/darkyellow2/southeast, +/area/desert_dam/building/substation/northeast) +"aVt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) "aVw" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/interrogation) -"aVx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) "aVB" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, @@ -4675,6 +4696,9 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/desert_dam/building/administration/office) +"aXx" = ( +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_one) "aXC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -4686,10 +4710,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) -"aXH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aXL" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -4736,15 +4756,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aYA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"aYB" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/control_room) "aYD" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, @@ -4800,6 +4811,10 @@ "aZC" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/archives) +"aZG" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/east_caves) "aZJ" = ( /obj/structure/machinery/computer/cameras/wooden_tv, /obj/structure/surface/table/woodentable/fancy, @@ -4857,14 +4872,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/administration/lobby) -"baB" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) "baL" = ( /obj/structure/machinery/light{ dir = 1 @@ -4889,6 +4896,14 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/holding) +"bbp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "bbq" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal2" @@ -4912,6 +4927,13 @@ "bbF" = ( /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) +"bbJ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Containment Lock"; + unacidable = 0 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "bbL" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_edge1, @@ -4958,15 +4980,34 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/hanger) -"bci" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_two) +"bcd" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"bch" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"bcl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) "bcy" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) +"bcG" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) "bcK" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -5023,22 +5064,20 @@ }, /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) +"bdo" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) "bdp" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) "bds" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"bdv" = ( -/obj/structure/pipes/standard/simple/hidden{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) "bdC" = ( /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) @@ -5093,10 +5132,6 @@ }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/detective) -"beb" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) "bej" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, @@ -5349,9 +5384,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"bgv" = ( -/turf/open/floor/whiteyellow/southwest, -/area/desert_dam/interior/dam_interior/break_room) "bgz" = ( /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) @@ -5396,6 +5428,9 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) +"bhd" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_wilderness) "bhi" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/north_valley_dam) @@ -5427,10 +5462,6 @@ }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/office) -"bhU" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/engine_east_wing) "bia" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/north_valley_dam) @@ -5537,6 +5568,15 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) +"biR" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) "biW" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -5551,10 +5591,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"bjg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) "bjh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5596,10 +5632,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"bjx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) "bjy" = ( /turf/closed/shuttle{ icon_state = "swall7" @@ -5685,10 +5717,15 @@ }, /area/desert_dam/interior/dam_interior/hanger) "bks" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) "bkw" = ( /obj/structure/flora/bush/desert/cactus, /turf/open/desert/dirt, @@ -5714,11 +5751,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"bkG" = ( -/obj/item/ammo_magazine/revolver/cmb, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) +"bkF" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) "bkH" = ( /obj/item/folder/red, /obj/structure/surface/table/woodentable/fancy, @@ -5737,6 +5773,15 @@ /obj/structure/machinery/light, /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) +"bkK" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/substation/northwest) +"bkQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_cargo) "bkS" = ( /obj/structure/shuttle/engine/heater, /turf/closed/shuttle{ @@ -5787,6 +5832,10 @@ /obj/structure/cargo_container/hd/mid, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) +"blo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) "blx" = ( /turf/closed/shuttle{ icon_state = "swall1" @@ -5801,6 +5850,12 @@ icon_state = "swall0" }, /area/desert_dam/interior/dam_interior/hanger) +"blA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) "blC" = ( /obj/structure/window/framed/bunker/reinforced, /turf/open/floor/plating, @@ -5876,6 +5931,10 @@ icon_state = "swall2" }, /area/desert_dam/interior/dam_interior/hanger) +"bmO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) "bmX" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -5891,6 +5950,9 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"bno" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_wilderness) "bnr" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -5953,20 +6015,9 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/north_valley_dam) -"boj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/mining/workshop) -"bok" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"boo" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bon" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/bar/bar) "boy" = ( /turf/closed/shuttle{ icon_state = "swall13" @@ -5992,6 +6043,10 @@ name = "reinforced metal wall" }, /area/desert_dam/building/warehouse/breakroom) +"boU" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) "boX" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -6035,15 +6090,11 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) -"bpZ" = ( -/turf/open/floor/whitebluecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"bqB" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"bqC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) +"bqF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/trackimp, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) "bqM" = ( /obj/structure/platform{ dir = 8 @@ -6053,6 +6104,12 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) +"bqT" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) "brc" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -6074,6 +6131,9 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"brJ" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) "brP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -6118,10 +6178,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel) -"bsI" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) "bsK" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -6134,20 +6190,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) -"bta" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) +"bsW" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/hallway) +"btb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/cult, +/area/desert_dam/building/church) "btc" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_main) -"btg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Containment" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) +"bte" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) "bty" = ( /turf/closed/wall/r_wall, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) @@ -6188,10 +6244,6 @@ "buj" = ( /turf/open/asphalt/cement, /area/desert_dam/exterior/valley/valley_wilderness) -"bup" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) "but" = ( /obj/structure/window/framed/wood/reinforced, /turf/open/floor/plating, @@ -6200,14 +6252,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"buH" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) "buI" = ( /obj/structure/machinery/door_control{ id = "hangar_dam_2"; @@ -6235,11 +6279,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"buV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) "bvp" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -6258,9 +6297,24 @@ name = "reinforced metal wall" }, /area/desert_dam/building/warehouse/warehouse) +"bvC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) "bvD" = ( /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) +"bvO" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "bwd" = ( /obj/structure/platform, /turf/open/asphalt/cement, @@ -6274,6 +6328,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/wood, /area/desert_dam/building/security/courtroom) +"bwN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) "bwQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Evidence" @@ -6318,14 +6376,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"byi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"byc" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_two/purification) "byn" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" @@ -6349,16 +6403,6 @@ /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_west_wing) -"byI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/north_valley_dam) -"byK" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_one) "byS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6436,12 +6480,18 @@ /obj/structure/bed/chair, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bAd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"bAe" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"bAg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"bAl" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_civilian) "bAm" = ( /obj/structure/window/framed/hangar, @@ -6478,6 +6528,14 @@ "bAK" = ( /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/engine_room) +"bAV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) "bBg" = ( /obj/structure/bed/chair, /obj/structure/disposalpipe/segment, @@ -6510,16 +6568,17 @@ /obj/structure/bed/stool, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bBA" = ( -/obj/structure/disposalpipe/segment{ +"bBB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"bBE" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bBK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) "bBL" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/deathrow) @@ -6528,6 +6587,12 @@ /obj/structure/window/reinforced, /turf/open/floor/interior/wood, /area/desert_dam/building/security/courtroom) +"bBT" = ( +/obj/item/reagent_container/food/drinks/flask/detflask, +/obj/item/clothing/head/det_hat, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) "bBV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6537,10 +6602,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bCa" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_east) "bCg" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement, @@ -6625,18 +6686,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/tech_storage) -"bDq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 2 - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) "bDx" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/atmos_storage) +"bDH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/east_caves) "bDJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6655,6 +6713,15 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) +"bDP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bDR" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -6740,6 +6807,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/smes_main) +"bEX" = ( +/turf/open/desert/excavation/component9/north, +/area/desert_dam/exterior/valley/valley_crashsite) "bFv" = ( /obj/structure/surface/table, /obj/item/evidencebag, @@ -6789,9 +6859,12 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) -"bGf" = ( -/turf/open/desert/excavation/component4/west, -/area/desert_dam/exterior/valley/valley_crashsite) +"bGq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) "bGv" = ( /obj/structure/surface/table, /obj/item/explosive/grenade/flashbang, @@ -6930,22 +7003,10 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) -"bHt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) "bHu" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bHA" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) "bHF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -7002,6 +7063,11 @@ /obj/structure/janitorialcart, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bIp" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/armory) "bIt" = ( /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_backup) @@ -7031,6 +7097,12 @@ "bIK" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) +"bIO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "bIV" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/good_item, @@ -7060,6 +7132,9 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bJy" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/smes_backup) "bJB" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, @@ -7172,12 +7247,6 @@ "bKN" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/southern_hallway) -"bKT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_northwest) "bKZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood, @@ -7255,15 +7324,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bMh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "bMw" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -7284,9 +7344,18 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) "bMR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) +"bMU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/bar_valley_dam) +"bMV" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/desert_dam/building/church) "bMY" = ( /obj/structure/machinery/light{ dir = 8 @@ -7357,6 +7426,15 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/armory) +"bNB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) "bNE" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/prison) @@ -7385,16 +7463,19 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bNV" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1{ +"bNR" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) "bNY" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/workshop) +"bOg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) "bOh" = ( /obj/structure/platform_decoration{ dir = 1 @@ -7428,9 +7509,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"bOy" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/control_room) "bOB" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -7487,19 +7565,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/CE_office) -"bPp" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bPr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) "bPv" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -7543,14 +7608,11 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"bQD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) +"bQw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) "bQG" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/prison, @@ -7562,9 +7624,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bQK" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_labs) "bQP" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/dam_interior/western_dam_cave) @@ -7664,12 +7723,12 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_backup) "bRP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Hydroponics" +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) "bSj" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ @@ -7692,6 +7751,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"bSE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "bSS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7702,14 +7766,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_north) -"bTg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_two/lobby) "bTi" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep/covered, @@ -7775,12 +7831,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bUn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/mining/workshop) "bUp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7852,17 +7902,18 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"bUL" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) "bUN" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "bUO" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" - }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) "bUW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cell 1" @@ -7893,6 +7944,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"bVv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) "bVz" = ( /obj/structure/platform{ dir = 8 @@ -7908,9 +7965,6 @@ /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) -"bVH" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) "bVS" = ( /obj/structure/stairs{ dir = 4 @@ -7949,12 +8003,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bWd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/bar_valley_dam) "bWf" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Warden" @@ -8022,13 +8070,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_central_north) -"bWy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) "bWA" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -8045,10 +8086,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bWC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/exterior/telecomm/lz1_south) "bWE" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -8063,12 +8100,8 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) "bWG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/deathrow) "bWK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -8081,6 +8114,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) +"bWQ" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "bWT" = ( /obj/structure/stairs{ dir = 4 @@ -8101,12 +8138,6 @@ /obj/structure/platform, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"bXb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_two) "bXc" = ( /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, @@ -8152,6 +8183,10 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_north) +"bXE" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) "bXF" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -8289,20 +8324,6 @@ /obj/item/ammo_magazine/pistol/holdout, /turf/open/floor/prison, /area/desert_dam/building/security/armory) -"bYq" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) "bYr" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, @@ -8533,14 +8554,6 @@ /obj/item/trash/syndi_cakes, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) -"caE" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "garage_dd"; - name = "\improper Garage" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) "caF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, @@ -8576,12 +8589,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"caV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hangar" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) "caW" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/interior/wood, @@ -8721,6 +8728,13 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/engine_room) +"ccr" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "ccw" = ( /turf/open/floor, /area/desert_dam/interior/dam_interior/western_dam_cave) @@ -8734,12 +8748,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"ccS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) +"ccW" = ( +/turf/open/desert/excavation/component3/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) "ccZ" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -8762,13 +8773,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"cde" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) "cdh" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/valley/valley_telecoms) @@ -8809,12 +8813,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cdM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Treatment Breakroom" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/breakroom) "cdR" = ( /obj/structure/platform{ dir = 1 @@ -8887,13 +8885,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"ces" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river_mouth/southern) "cet" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8949,6 +8940,9 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) +"cfi" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "cfj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -8964,12 +8958,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) -"cfu" = ( -/obj/structure/machinery/door/airlock/sandstone/runed{ - name = "Strange Temple" - }, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) "cfv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -9033,13 +9021,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river_mouth/southern) -"cfM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/south_valley_dam) -"cfO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) "cfP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -9061,6 +9042,10 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) +"cfU" = ( +/obj/structure/machinery/mill, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) "cfX" = ( /obj/structure/platform{ dir = 8 @@ -9127,6 +9112,9 @@ /obj/structure/machinery/power/smes/batteryrack/substation, /turf/open/floor/plating, /area/desert_dam/building/substation/west) +"cgx" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) "cgy" = ( /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) @@ -9177,12 +9165,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"cgP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_mining) "cgR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -9199,6 +9181,12 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) +"chf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) "chg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -9319,15 +9307,21 @@ /turf/open/asphalt, /area/desert_dam/building/water_treatment_one/garage) "chE" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) "chF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/temple) +"chI" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Containment Lock"; + unacidable = 0 + }, +/turf/open/floor/plating/platebot, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "chJ" = ( /obj/effect/decal/sand_overlay/sand2, /turf/open/asphalt/cement, @@ -9434,6 +9428,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"ciA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_wilderness) "ciC" = ( /obj/structure/machinery/light{ dir = 4 @@ -9496,9 +9496,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/medical/break_room) -"ciX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) "cjc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, @@ -9547,6 +9544,9 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, /turf/open/floor/prison, /area/desert_dam/building/substation/west) +"cjL" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) "cjR" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_corner, @@ -9565,12 +9565,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/prison, /area/desert_dam/building/medical/break_room) -"ckl" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) "ckq" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, @@ -9706,6 +9700,10 @@ /obj/structure/window/framed/bunker/reinforced, /turf/open/floor/plating, /area/desert_dam/building/substation/west) +"cmn" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_telecoms) "cmp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -9942,6 +9940,9 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) +"cpe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) "cpm" = ( /obj/structure/machinery/light{ dir = 8 @@ -9997,6 +9998,12 @@ }, /turf/open/floor/wood, /area/desert_dam/building/warehouse/breakroom) +"cqD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) "cqH" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -10008,18 +10015,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cqL" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating/warnplate, -/area/desert_dam/building/substation/west) -"cqP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) "cqQ" = ( /obj/structure/cargo_container/trijent/left/alt, /turf/open/floor/prison, @@ -10028,6 +10023,10 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) +"cqY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) "cra" = ( /obj/structure/platform{ dir = 8 @@ -10052,21 +10051,6 @@ }, /turf/open/floor/prison, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"crt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westright{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastleft{ - name = "Security Desk" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "cru" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, @@ -10121,10 +10105,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"crZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/west_wing_hallway) "csa" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, @@ -10137,21 +10117,6 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"csd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) "csg" = ( /obj/structure/platform{ dir = 4 @@ -10159,16 +10124,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) -"csk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) "csm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -10188,11 +10143,6 @@ /obj/structure/stairs, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"csv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) "csx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -10230,6 +10180,11 @@ "cto" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) +"cty" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "ctF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -10250,6 +10205,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"ctU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) "ctW" = ( /turf/closed/wall, /area/desert_dam/building/medical/primary_storage) @@ -10277,6 +10236,10 @@ "cuh" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/north_wing_hallway) +"cui" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) "cuz" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -10290,9 +10253,9 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/desert_dam/building/substation/west) -"cuC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) +"cuD" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) "cuJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -10395,9 +10358,6 @@ /obj/structure/cargo_container/trijent/mid/alt, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cwe" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_medical) "cwf" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -10410,14 +10370,6 @@ }, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) -"cwh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/loading) -"cwi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/virology_wing) "cwj" = ( /obj/structure/cargo_container/trijent/right/alt, /turf/open/floor/prison, @@ -10505,15 +10457,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) -"cxd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) "cxf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -10539,12 +10482,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) -"cxp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) "cxt" = ( /obj/structure/platform{ dir = 1 @@ -10578,9 +10515,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/surgury_observation) -"cxF" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/telecomm/lz1_south) "cxI" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, @@ -10596,13 +10530,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) -"cxM" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "cxP" = ( /obj/structure/platform{ dir = 1 @@ -10623,8 +10550,9 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "cxX" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/interior/caves/central_caves) +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) "cyk" = ( /turf/closed/wall, /area/desert_dam/building/medical/surgery_room_one) @@ -10642,6 +10570,12 @@ }, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) +"cyu" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) "cyv" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 @@ -10651,12 +10585,6 @@ "cyD" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cyK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) "cyN" = ( /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/desert/dirt, @@ -10679,6 +10607,15 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_south) +"czp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"czs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_mining) "czv" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, @@ -10725,11 +10662,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/substation/central) -"cAz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) "cAA" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, @@ -10737,9 +10669,17 @@ "cAB" = ( /turf/closed/wall, /area/desert_dam/building/medical/office1) +"cAC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "cAG" = ( /turf/closed/wall, /area/desert_dam/building/medical/office2) +"cAH" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_civilian) "cAL" = ( /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, @@ -10787,11 +10727,12 @@ /obj/structure/flora/bush/desert/cactus, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"cBv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) +"cBn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) "cBx" = ( /turf/open/floor/prison, /area/desert_dam/building/substation/central) @@ -10900,6 +10841,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"cCK" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/telecomm/lz1_south) "cDc" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, @@ -10930,10 +10874,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/office2) -"cDJ" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/chemistry) "cDN" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) @@ -10973,10 +10913,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/workshop) +"cEx" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/interior/caves/east_caves) "cEG" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/treatment_room) +"cEK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cEL" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "cET" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -11294,15 +11246,17 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"cIj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Chapel" + }, +/turf/open/floor/dark, +/area/desert_dam/building/church) "cIm" = ( -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/bonesetter, -/obj/item/tool/surgery/FixOVein, -/obj/item/stack/nanopaste, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) "cIo" = ( /obj/structure/machinery/door_control{ id = "cargo_hangar2"; @@ -11359,6 +11313,12 @@ name = "reinforced metal wall" }, /area/desert_dam/building/warehouse/loading) +"cJa" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) "cJc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -11376,17 +11336,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/church) -"cJf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) "cJh" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -11420,13 +11369,6 @@ /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) -"cJu" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) "cJw" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/plating, @@ -11517,12 +11459,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) -"cKm" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"cKo" = ( -/turf/open/desert/excavation/component6/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) "cKp" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -11568,17 +11504,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) -"cKN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) "cKP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -11592,6 +11517,15 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) +"cLb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) "cLc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -11605,6 +11539,10 @@ }, /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) +"cLf" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) "cLi" = ( /obj/structure/platform{ dir = 1 @@ -11649,6 +11587,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) +"cLN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "cLO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11662,6 +11611,15 @@ }, /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) +"cLZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) "cMd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -11676,22 +11634,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) -"cMh" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "cMj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) +"cMk" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) "cMm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11724,6 +11679,12 @@ }, /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) +"cMA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) "cME" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11813,11 +11774,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"cNJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/darkyellowcorners2/west, -/area/desert_dam/building/security/prison) "cNP" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_7" @@ -11828,10 +11784,6 @@ /obj/structure/flora/bush/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cNT" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) "cNW" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) @@ -11845,6 +11797,12 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) +"cOh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_medical) "cOi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, @@ -12095,6 +12053,15 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRe" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "cRm" = ( /turf/open/floor/plating, /area/desert_dam/building/substation/southwest) @@ -12111,9 +12078,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"cRu" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_civilian) "cRv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -12233,6 +12197,15 @@ /obj/structure/surface/table/reinforced, /turf/open/floor/prison, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/south_valley_dam) +"cSj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) "cSo" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/eastleft{ @@ -12284,36 +12257,31 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSN" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) "cSR" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "cST" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"cTb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "cTc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"cTe" = ( +/turf/open/desert/excavation/component4/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"cTf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) "cTh" = ( /obj/structure/flora/grass/desert/heavygrass_10, /turf/open/desert/dirt, @@ -12339,6 +12307,30 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) +"cTV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") + }, +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"cTW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cTY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) "cUb" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -12367,15 +12359,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cUp" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) "cUy" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -12437,22 +12420,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/west_tunnel) -"cVe" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/lobby) -"cVl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cVm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"cVt" = ( +"cVb" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"cVg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +/obj/item/stool, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) "cVA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" @@ -12460,9 +12438,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "cVB" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_one) +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) "cVC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -12477,9 +12457,10 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVW" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/western_dam_cave) +"cVZ" = ( +/obj/structure/toilet, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) "cWb" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -12493,10 +12474,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cWd" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_hydro) "cWe" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -12507,6 +12484,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"cWf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) "cWk" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -12516,6 +12497,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) +"cWt" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) "cWw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -12523,58 +12508,22 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"cWG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"cWI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/virology_isolation) -"cWJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/emergency_room) -"cWM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"cWY" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"cWZ" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) "cXh" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"cXi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "cXj" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) -"cXr" = ( -/obj/structure/pipes/vents/pump/on, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) "cXt" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -12603,31 +12552,35 @@ /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_storage) "cXG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/lobby) -"cXH" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) "cXK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cXO" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) +"cXP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"cXT" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/mining/workshop_foyer) "cXV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"cYb" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) "cYh" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/desert_shore1, @@ -12642,29 +12595,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cYm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"cYn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cYt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) "cYu" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -12694,15 +12624,15 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) +"cYE" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/chemistry) "cYJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cYM" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) "cYN" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -12739,10 +12669,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"cZk" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) "cZn" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/disposalpipe/segment{ @@ -12779,18 +12705,15 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"cZA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) "cZB" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/building/warehouse/loading) +"cZC" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) "cZD" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -12805,18 +12728,11 @@ /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"cZI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"cZN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) +"cZH" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) "cZP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/desertdam/decals/road_edge{ @@ -12835,6 +12751,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) +"dal" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "dam" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12848,6 +12771,13 @@ "dap" = ( /turf/closed/wall, /area/desert_dam/building/cafeteria/cold_room) +"daq" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_south) "das" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -12865,15 +12795,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"daA" = ( -/turf/open/floor/coagulation/icon7_7_2, -/area/desert_dam/building/water_treatment_two) "daD" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"daE" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) "daF" = ( /turf/closed/wall, /area/desert_dam/building/hydroponics/hydroponics) @@ -12985,18 +12916,31 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_storage) +"dcm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) "dcp" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating, /area/desert_dam/building/cafeteria/backroom) +"dct" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 31 + }, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_crashsite) "dcx" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) +"dcC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) "dcD" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -13041,14 +12985,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"dcX" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" +"dcU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) "dcY" = ( /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics_storage) @@ -13065,6 +13007,13 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_loading) +"ddk" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/west) "ddm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13116,6 +13065,13 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) +"ddD" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_south) "ddJ" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -13233,15 +13189,13 @@ }, /turf/open/floor/plating, /area/desert_dam/building/cafeteria/backroom) +"def" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) "deh" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) -"dei" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "dem" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -13293,11 +13247,11 @@ /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) "deL" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/administration/lobby) +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "deM" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -13323,16 +13277,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_south) -"dfd" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/desert_dam/interior/dam_interior/hanger) -"dfg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) "dfo" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -13348,6 +13292,20 @@ }, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) +"dfu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"dfF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) "dfG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /obj/effect/decal/cleanable/dirt, @@ -13360,6 +13318,14 @@ "dfI" = ( /turf/open/floor/prison, /area/desert_dam/building/warehouse/loading) +"dfQ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/communications, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) "dfS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -13374,9 +13340,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics) -"dfY" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) +"dfZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) "dge" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -13505,6 +13474,12 @@ /obj/structure/machinery/vending/hydroseeds, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics) +"dgR" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "dgT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -13526,16 +13501,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"dha" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) "dhg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -13554,26 +13519,33 @@ }, /turf/open/asphalt, /area/desert_dam/building/cafeteria/loading) +"dhk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"dhr" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/southern_hallway) "dhs" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/hallway) +"dht" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"dhy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) "dhA" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/purification) -"dhB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"dhE" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"dhS" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) "dhZ" = ( /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) @@ -13611,21 +13583,9 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"dis" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel) -"dix" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"diE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) +"diA" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/south_valley_dam) "diL" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt, @@ -13652,20 +13612,29 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"diU" = ( +"diV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"diY" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"diY" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"djc" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"diZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "djg" = ( /obj/item/paper_bin, /obj/item/tool/stamp, @@ -13680,6 +13649,12 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/desert_dam/building/administration/office) +"djj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) "djk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -13690,6 +13665,16 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) +"djp" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"djq" = ( +/obj/structure/surface/table, +/obj/item/tank/anesthetic, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) "dju" = ( /obj/structure/machinery/light, /turf/open/floor/prison, @@ -13714,9 +13699,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) -"djC" = ( -/turf/open/floor/filtrationside/northwest, -/area/desert_dam/exterior/valley/valley_hydro) +"djI" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"djK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"djT" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "djV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -13746,6 +13744,12 @@ }, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) +"dkf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) "dkh" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -13795,10 +13799,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"dkx" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_central_north) +"dks" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) "dkK" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, @@ -13808,22 +13813,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) -"dkX" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/exterior/valley/valley_wilderness) +"dkO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/southwest) "dkZ" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "dla" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) "dlb" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -13836,10 +13836,25 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"dlm" = ( +"dlh" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/church) +"dli" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/interior/dam_interior/break_room) +"dll" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"dlp" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"dlq" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/exterior/valley/valley_mining) "dlu" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -13848,19 +13863,27 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/cafeteria/loading) +"dlG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"dlH" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) "dlJ" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"dlL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +"dlK" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ + pixel_x = 32; + shuttleId = "trijentshuttle22" }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) "dlM" = ( /obj/structure/desertdam/decals/road_stop{ dir = 1; @@ -13868,38 +13891,18 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"dlW" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"dlX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Morgue" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) "dmj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"dmt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"dmw" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"dmp" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) +"dmv" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) "dmz" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/desertdam/decals/road_edge{ @@ -13907,12 +13910,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"dmD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "dmJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13932,39 +13929,17 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"dmM" = ( -/obj/structure/flora/pottedplant, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/building/administration/lobby) -"dmT" = ( -/obj/structure/pipes/portables_connector{ - dir = 4 - }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) +"dmV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) "dni" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Loading Bay" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"dnk" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/structure/stairs{ + dir = 4 }, +/obj/structure/platform, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"dnv" = ( -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/area/desert_dam/exterior/valley/valley_labs) "dnB" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -13984,43 +13959,37 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) -"dnF" = ( -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) -"dnX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/whiteyellow/northwest, -/area/desert_dam/building/water_treatment_one/breakroom) +"dnS" = ( +/turf/open/floor/filtrationside/southeast, +/area/desert_dam/exterior/valley/valley_mining) +"dnU" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) "dof" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/desert_dam/building/cafeteria/backroom) -"dog" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"dox" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +"doy" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_wilderness) +"doA" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"doD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) "doE" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"doF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "doH" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -14041,27 +14010,18 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"doU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"dpd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"dph" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"dpi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"doR" = ( +/turf/open/gm/river/red_pool, +/area/desert_dam/building/dorms/pool) +"dpm" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "dpw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14146,6 +14106,15 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"dpY" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"dqa" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) "dqd" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) @@ -14163,6 +14132,16 @@ "dqi" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/water_treatment_one/lobby) +"dql" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/garage) "dqm" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -14175,21 +14154,19 @@ "dqo" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) -"dqw" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"dqx" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dqA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"dqr" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"dqz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) "dqJ" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/barricade/wooden{ @@ -14197,12 +14174,6 @@ }, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) -"dqQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) "dqR" = ( /obj/structure/flora/pottedplant, /obj/structure/closet/hydrant{ @@ -14221,42 +14192,18 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/lobby) -"dqX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/hallway) "drh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"drm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"dro" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"drA" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_two/purification) -"drH" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_wilderness) +"drF" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"drK" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_civilian) "drL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -14275,14 +14222,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"drP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) "drT" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -14306,29 +14245,17 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/lobby) "dsd" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) "dsg" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_central_south) -"dsl" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dst" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"dsy" = ( -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/control_room) -"dsz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) "dsE" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, @@ -14342,42 +14269,22 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/garage) -"dsN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "dsR" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) -"dsX" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/warehouse/breakroom) -"dsY" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_northwest) -"dsZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"dtb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ +"dtg" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"dth" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/hallway) +"dtl" = ( +/obj/structure/surface/table/reinforced, +/obj/item/alienjar, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "dto" = ( /obj/structure/surface/table, /turf/open/floor/prison, @@ -14392,29 +14299,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) -"dtA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_northwest) -"dtC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"dtO" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"dtU" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" +"dtK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"dub" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"dtV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"dtZ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) "duc" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -14427,13 +14328,13 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"duj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"duk" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"dul" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "dus" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/hallway) @@ -14447,16 +14348,15 @@ "duC" = ( /turf/closed/wall, /area/desert_dam/building/dorms/hallway_northwing) -"duL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"duH" = ( +/turf/open/floor/whitegreencorner, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"duO" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "damtemple_intact" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) "duU" = ( /obj/structure/machinery/computer/med_data/laptop, /obj/structure/surface/table/woodentable/fancy, @@ -14477,24 +14377,17 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "dvc" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"dvi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_east_wing) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) "dvo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"dvq" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/southwest) "dvt" = ( /obj/structure/machinery/computer/area_atmos, /turf/open/floor/prison, @@ -14506,30 +14399,30 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_south) -"dvI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"dvQ" = ( -/turf/open/floor/warning/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"dvS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/south_valley_dam) "dvZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"dwo" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) +"dwr" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/holdout, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) "dws" = ( /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) +"dwu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) "dwy" = ( /obj/structure/machinery/computer/turbine_computer, /turf/open/floor/prison, @@ -14557,44 +14450,39 @@ /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) "dwL" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/whitepurple/north, -/area/desert_dam/building/medical/chemistry) -"dwO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"dwT" = ( -/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"dxa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Containment Pen" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) +/area/desert_dam/exterior/valley/north_valley_dam) "dxe" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_one/floodgate_control) +"dxt" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) "dxu" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dxA" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/interior/caves/central_caves) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"dxF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"dxG" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "dxO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -14614,15 +14502,18 @@ }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/garage) +"dxZ" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_1"; + pixel_y = -16 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) "dyb" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_one/breakroom) -"dyc" = ( -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_civilian) "dyj" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/floodgate_control) @@ -14632,22 +14523,19 @@ }, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"dyy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"dyD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"dyE" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, +"dyu" = ( +/obj/item/seeds/riceseed, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) +/area/desert_dam/building/hydroponics/hydroponics) +"dyv" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"dyP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/warehouse) "dzd" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, @@ -14660,6 +14548,13 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/filtration_a) +"dzp" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "dzr" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -14673,10 +14568,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) -"dzu" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/smes_backup) "dzv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -14712,19 +14603,20 @@ /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"dzR" = ( +"dzI" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"dzS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"dzL" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"dzQ" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "dzU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -14741,23 +14633,19 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river_mouth/southern) -"dAp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"dAw" = ( +"dAs" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/north_wing_hallway) +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) "dAx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"dAy" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_northwest) "dAA" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_2"; @@ -14766,15 +14654,23 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/filtration_a) -"dAC" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"dAE" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/telecomm/lz2_containers) "dAK" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) +"dAP" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"dBa" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) "dBh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -14795,9 +14691,6 @@ "dBy" = ( /turf/closed/wall, /area/desert_dam/building/dorms/restroom) -"dBE" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_crashsite) "dBK" = ( /obj/structure/disposalpipe/segment, /obj/structure/surface/table/woodentable/fancy, @@ -14815,26 +14708,9 @@ "dCb" = ( /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"dCh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dCm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hangar_storage) "dCr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) "dCz" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -14851,36 +14727,30 @@ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_one/equipment) -"dDc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) +"dDg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) "dDi" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, /turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"dDC" = ( -/obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside/north, -/area/desert_dam/exterior/valley/valley_mining) -"dEd" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"dEg" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"dDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"dDo" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) "dEn" = ( /obj/structure/platform{ dir = 8 @@ -14898,15 +14768,14 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) -"dEG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"dER" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) +"dEJ" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/treatment_room) +"dEL" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) "dEW" = ( /obj/structure/platform{ dir = 1 @@ -14929,6 +14798,13 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/desert_dam/building/dorms/restroom) +"dFl" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/south_tunnel) +"dFm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) "dFn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -14943,13 +14819,14 @@ /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"dFx" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"dFz" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/south_tunnel) +"dFC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"dFK" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) "dFP" = ( /obj/structure/platform, /obj/structure/platform{ @@ -14973,10 +14850,24 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"dGn" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) +"dFT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"dGc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"dGp" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "dGu" = ( /obj/structure/platform{ dir = 1 @@ -15012,6 +14903,22 @@ /obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/desert_dam/exterior/landing_pad_one) +"dGW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Operating Theatre 2" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"dGX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "dHb" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, @@ -15068,10 +14975,6 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) -"dHZ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_telecoms) "dIi" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, @@ -15089,6 +14992,10 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics_storage) +"dIB" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/smes_backup) "dII" = ( /obj/structure/platform{ dir = 8 @@ -15096,27 +15003,31 @@ /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river_mouth/southern) -"dJb" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" +"dIP" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"dIU" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_medical) +"dJl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"dJc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/lobby) -"dJr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"dJz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_cargo) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"dJq" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"dJM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "dJR" = ( /obj/structure/lz_sign/dam_sign/damaged, /turf/open/desert/dirt, @@ -15159,10 +15070,22 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/administration/overseer_office) -"dKD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, +"dKj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"dKr" = ( +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/central_tunnel) +"dKC" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "dKQ" = ( /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/shore_edge1, @@ -15186,6 +15109,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) +"dLc" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) "dLi" = ( /obj/structure/platform{ dir = 8 @@ -15209,23 +15135,12 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"dLx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" - }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 +"dLy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/lobby) +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) "dLC" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_edge1, @@ -15237,6 +15152,10 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) +"dLG" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) "dLI" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, @@ -15312,6 +15231,11 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) +"dMc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) "dMf" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ @@ -15319,42 +15243,49 @@ }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/valley/valley_mining) +"dMl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_mining) "dMq" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"dMy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"dME" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/mining/workshop_foyer) +"dMF" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/red/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "dMN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"dMS" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"dMU" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, +"dMQ" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"dMR" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/drill, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "dMV" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/building/substation/southwest) +"dMW" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) "dMX" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, @@ -15365,10 +15296,15 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"dNd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) +"dNe" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/chapel/north, +/area/desert_dam/building/church) "dNr" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/floor/prison, @@ -15379,9 +15315,10 @@ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_one/purification) -"dNM" = ( -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/break_room) +"dNQ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) "dNR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -15404,6 +15341,9 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) +"dOb" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_telecoms) "dOc" = ( /obj/structure/disposalpipe/segment, /obj/structure/barricade/wooden, @@ -15489,11 +15429,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/desert_dam/building/medical/break_room) -"dOF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_hydro) "dOJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15517,6 +15452,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/desert_dam/building/medical/break_room) +"dON" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) "dOO" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/glass, @@ -15560,18 +15501,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"dPg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Research Workshop" +"dPw" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"dPA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "dPR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -15590,37 +15526,54 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"dQW" = ( -/obj/structure/bed/chair{ - dir = 4 +"dQN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"dQV" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"dRb" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"dRw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/lobby) -"dRx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"dSC" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "dTl" = ( /obj/structure/window/framed/colony, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/building/medical/virology_isolation) +"dTq" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northwest) "dTs" = ( /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) +"dTw" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "dTx" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"dTz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lab Maintenance" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) +"dTD" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "dTH" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -15635,6 +15588,10 @@ /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/desert_dam/building/cafeteria/cafeteria) +"dUk" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_civilian) "dUO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -15642,18 +15599,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"dUT" = ( -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"dVa" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) "dVb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -15668,6 +15613,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"dVi" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) "dVj" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -15780,17 +15729,13 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) -"dVW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/disposals) -"dWc" = ( -/obj/structure/platform{ +"dVX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) "dWf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -15832,11 +15777,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/floodgate_control) -"dWv" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) "dWz" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/cameras{ @@ -15883,10 +15823,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"dWX" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/excavation/component1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) "dWZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, @@ -15936,6 +15872,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"dXh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) "dXj" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -16053,56 +15993,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"dXU" = ( -/turf/open/floor/whitebluecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "dYb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"dYg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) "dYk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"dYr" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"dYH" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{ - pixel_y = 32 - }, -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/interior/dam_interior/hanger) "dYK" = ( /obj/item/trash/boonie, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) +"dYL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "dYM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"dYV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"dZg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "dZl" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -16129,25 +16044,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"dZA" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"dZB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"dZK" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"dZx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/telecomm/lz2_storage) "ead" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) +"eaf" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) "eak" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, @@ -16157,10 +16064,15 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"eam" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) +"eap" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) "eav" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -16172,11 +16084,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"eaR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "eaV" = ( /obj/structure/machinery/light{ dir = 1 @@ -16191,6 +16098,11 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) +"eaZ" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/substation/west) "ebb" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/syndi_cakes, @@ -16272,17 +16184,13 @@ }, /area/desert_dam/interior/dam_interior/control_room) "ebX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_wing) "ebZ" = ( /obj/structure/window/framed/hangar/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/garage) -"eca" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/holding) "ecy" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ @@ -16299,43 +16207,22 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/garage) "ecC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"ecT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_6, -/area/desert_dam/exterior/valley/valley_mining) -"ecW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"edb" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ecF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/central_tunnel) -"edd" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"edg" = ( -/turf/open/jungle/impenetrable, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"edk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"edn" = ( -/obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"ecP" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/hanger) +"edh" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) "edo" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -16343,36 +16230,39 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) "edu" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/interior/caves/east_caves) -"edv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Chapel" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/dark, -/area/desert_dam/building/church) +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office1) +"edy" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northeast) "edC" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 4 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"edE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) +"edF" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) "edO" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/hallway) +"edW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) "edY" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/purification) +"eeb" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) "eee" = ( /obj/structure/window/framed/hangar, /obj/structure/pipes/standard/simple/hidden/green, @@ -16384,6 +16274,24 @@ icon_state = "pwall" }, /area/desert_dam/exterior/river_mouth/southern) +"eem" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"een" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) "eeo" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -16401,21 +16309,21 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_south) -"eew" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"eey" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"eeB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) +"eeI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westright{ + name = "Security Desk" + }, +/obj/structure/machinery/door/window/eastleft{ + name = "Security Desk" + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "eeK" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "warehouse_dam_3"; @@ -16500,97 +16408,92 @@ }, /turf/closed/wall, /area/desert_dam/building/hydroponics/hydroponics_loading) -"efc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"eeZ" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) +/area/desert_dam/exterior/valley/valley_medical) +"efj" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"efk" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "eft" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"efu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"efv" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/interior/caves/central_caves) -"efB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/alienjar, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"efC" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/southern_hallway) "efD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"efI" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office2) -"efS" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"efG" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"efW" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"egb" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/building/water_treatment_two/purification) -"egd" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"egh" = ( +/turf/open/floor/carpet/edge/southwest, +/area/desert_dam/building/administration/meetingrooom) +"egi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "egj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"egm" = ( -/turf/open/floor/prison/yellow/west, -/area/desert_dam/building/hydroponics/hydroponics) -"egs" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/east_caves) -"egy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"egB" = ( -/obj/structure/platform{ +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river_mouth/southern) -"egL" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) +"egv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkblue2/northeast, +/area/desert_dam/building/administration/control_room) +"egw" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"egE" = ( +/turf/open/floor/warning/northeast, +/area/desert_dam/interior/dam_interior/engine_room) +"egJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"egM" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/dorms/pool) +"egQ" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_civilian) +"egR" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"egU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/interior/caves/central_caves) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) "ehc" = ( -/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "ehg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -16601,12 +16504,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"ehy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Xenoflora" +"ehn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/bar_valley_dam) +"eht" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) "ehz" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -16632,1300 +16539,1330 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_one/purification) -"eir" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"eit" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/telecomm/lz2_storage) -"eiC" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"eiP" = ( +"ehY" = ( +/turf/open/desert/excavation/component7/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"eij" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"eiT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"eiW" = ( +/area/desert_dam/exterior/valley/north_valley_dam) +"eiz" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"eiJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"eiX" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"eiY" = ( -/obj/item/trash/burger, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_labs) -"eje" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ejo" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/tile, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"eiR" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_two) +"ejc" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ejg" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"ejj" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/exterior/valley/valley_mining) +"ejk" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"ejs" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_hydro) -"ejp" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"ekt" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donut, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"eky" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ +"ejt" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"eju" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"ekA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"ekC" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/north_valley_dam) -"ekK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"ejv" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"ejB" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) -"eld" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"elo" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river_mouth/southern) +"ejQ" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"ekz" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"ekB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/candle, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"ekF" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"ekI" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"ekL" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"elp" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"elw" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/garage) -"elA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"ekT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"ekU" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"elO" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"ekZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engine Room" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"ele" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"elh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"elT" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"elj" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"emd" = ( -/turf/open/floor/carpet/edge/north, -/area/desert_dam/building/administration/meetingrooom) -"emn" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"ems" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"elm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"elp" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_1" }, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/bar/bar) -"emC" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"elv" = ( /obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/treatment_room) +"elA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"elB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"elG" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Colony Overseer's Office" + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/overseer_office) -"enJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"enN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"enV" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"elM" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/deathrow) +"elS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"elZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"eoa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ema" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"eoh" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"emb" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/north, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) -"eop" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkred2/northeast, -/area/desert_dam/building/administration/lobby) -"eos" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/smes_backup) -"eou" = ( -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/valley/valley_labs) -"eoC" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"eoF" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +"eme" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/security/prison) +"emq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"eoK" = ( -/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/riceseed, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"eoO" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/lobby) -"eoS" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"emv" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"emA" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"emS" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"eoW" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"eoX" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"epd" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"epI" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"enK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"epL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Emergency Room" - }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/emergency_room) -"epV" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 + dir = 1 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/staffroom) -"eqf" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"enN" = ( /obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"eqo" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"eqA" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_northwest) -"eqF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"eqM" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"enO" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eoo" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"eoI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"eqN" = ( -/obj/structure/surface/table/woodentable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"eqQ" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"erp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"err" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"erv" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"eoL" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform{ +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"eoO" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"eoV" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"erA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) -"erH" = ( -/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"erI" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/landing_pad_two) -"erM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/interior/dam_interior/lobby) +"eoW" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"eoZ" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"erW" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"esf" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"epj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/interior/caves/east_caves) -"esl" = ( -/obj/effect/decal/cleanable/blood, +/area/desert_dam/exterior/valley/valley_cargo) +"epp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"eps" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"epz" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating/warnplate, +/area/desert_dam/building/substation/west) +"epD" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"eqf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) -"eso" = ( +/area/desert_dam/interior/dam_interior/lobby) +"eqg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"eqo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"eqv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"eqw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"eqZ" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"eru" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"erA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"erD" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/telecomm/lz1_south) +"erR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"esp" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"erV" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "uppcrash" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"esu" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_hydro) +"erY" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"esA" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river_mouth/southern) +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"esE" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_south) "esG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"esY" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"eth" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"etq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) +"etf" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/valley/valley_labs) "ett" = ( /obj/structure/platform{ dir = 8 }, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_valley) -"etu" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_labs) -"etA" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"etM" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"etR" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" +"etD" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"etY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"etE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/exterior/valley/valley_hydro) +"etI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"eub" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"etJ" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"eud" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"euf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"euo" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/south_valley_dam) -"eur" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"eut" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, /turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"etM" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) +"eui" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"euj" = ( +/turf/open/floor/prison/darkbrown2/northwest, /area/desert_dam/interior/dam_interior/hanger) -"euw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"euD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) -"euY" = ( +"euu" = ( +/turf/open/floor/coagulation/icon7_7_2, +/area/desert_dam/building/water_treatment_two) +"euO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"evb" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"evN" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"evf" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/warehouse) +"evo" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"evs" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/holding) +"evB" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"evG" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) "evP" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"evX" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) -"ews" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/candle_box, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"ewQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"ewc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"ewk" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ewu" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ewG" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"ewT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"ewJ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"ewP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) "exe" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"exg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/structure/platform, /turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"exi" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/interior/caves/east_caves) -"exj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/interior/caves/central_caves) +"exl" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/building/substation/west) +"exu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"exA" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"exB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Filtration" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"exE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/east_caves) +"exM" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"exV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"exT" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/light{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"exW" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"exX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 8 }, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/building/administration/control_room) -"eyf" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/green/northeast, -/area/desert_dam/interior/dam_interior/atmos_storage) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "eyA" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"eyC" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/bar_valley_dam) -"eyK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 4 - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) "eyL" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/engi) -"eyX" = ( -/obj/item/trash/hotdog, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"ezb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, +"eyN" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"ezz" = ( -/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ezN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/breakroom) -"ezS" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"eyU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/dark, /area/desert_dam/building/security/observation) -"ezV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"ezb" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"ezf" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ezp" = ( +/obj/structure/closet/radiation, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"ezr" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"ezu" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"ezI" = ( +/turf/open/desert/excavation/component2/west, +/area/desert_dam/exterior/valley/valley_crashsite) "eAe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"eAf" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"eAk" = ( +/obj/structure/surface/table, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"eAm" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) "eAn" = ( -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"eAt" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/smes_backup) -"eAX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"eAo" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"eAZ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"eAq" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"eBd" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"eBe" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"eAv" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"eAx" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"eBp" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"eAO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/overseer_office) -"eBW" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/warehouse/loading) -"eBY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"eCb" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/west) -"eCn" = ( -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"eCK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"eCZ" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"eDi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/exterior/valley/valley_mining) +"eAP" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/staffroom) +"eAR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"eDj" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"eBj" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"eBu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) -"eDo" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/southern_hallway) -"eDC" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"eBy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"eBI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"eDQ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"eEd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"eEf" = ( -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/hangar_storage) -"eEn" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkbrown3/north, -/area/desert_dam/interior/dam_interior/disposals) -"eEq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"eFt" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"eGb" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"eBU" = ( +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"eCc" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"eCe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"eCi" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"eCj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/poddoor/shutters{ + dir = 2 + }, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"eGg" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +"eCm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"eGl" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"eCB" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"eCC" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/north_valley_dam) +"eCI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"eCK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"eGs" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/control_room) -"eGv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"eDe" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"eDs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"eGO" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/bar_valley_dam) -"eHg" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"eDt" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"eHB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"eHE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_medical) -"eHK" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"eDQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"eEb" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/caves/central_caves) +"eEc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Office" + }, /obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"eHM" = ( +/area/desert_dam/building/water_treatment_one/hallway) +"eEk" = ( /obj/structure/surface/table/reinforced, /obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"eHT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"eIm" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"eEm" = ( +/obj/structure/stairs{ + dir = 4 }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"eEq" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"eIs" = ( -/turf/open/desert/excavation/component1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"eIx" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"eIT" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"eJh" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"eJp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"eEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"eJH" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_one/purification) -"eKa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/desert_dam/interior/dam_interior/hanger) -"eKh" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_east) -"eKj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"eKm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"eKn" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"eEy" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"eEB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"eKq" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"eEE" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"eKx" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) -"eKC" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"eKG" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/south_valley_dam) -"eKS" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_civilian) -"eLc" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"eEU" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"eEZ" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"eFi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"eFm" = ( +/obj/structure/surface/table/reinforced, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/carpet/edge/west, -/area/desert_dam/building/administration/meetingrooom) -"eLm" = ( -/turf/open/floor/darkyellowcorners2, -/area/desert_dam/building/security/prison) -"eLq" = ( -/obj/structure/platform{ +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"eFq" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"eFx" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) -"eLs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eFE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eFR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"eLu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eGa" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) +"eGl" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/central_caves) +"eGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"eGA" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"eLv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/hanger) -"eLy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/southern_hallway) -"eMc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"eMr" = ( -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/dorms/pool) -"eMt" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_central_north) -"eMx" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"eML" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Lobby" +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eGV" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"eMZ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"eGW" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) +"eHd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"eHe" = ( +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel) -"eNl" = ( -/obj/structure/holohoop{ +"eHs" = ( +/turf/open/floor/coagulation/icon6_8_2, +/area/desert_dam/exterior/valley/valley_hydro) +"eHJ" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"eHQ" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/east_caves) +"eIr" = ( +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/substation/northwest) +"eIF" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/bar_valley_dam) +"eIH" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/warnwhite/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_south) +"eIL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) -"eNB" = ( -/obj/structure/machinery/light{ - dir = 4 +"eIN" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"eIO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"eIU" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"eIV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"eNE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"eNF" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eJh" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"eJk" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"eJJ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_south) +"eJZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/building/administration/hallway) -"eNK" = ( +"eKp" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"eLc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"eNM" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"eNR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"eNY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"eLk" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"eLl" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"eOg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/west) +"eLm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"eLr" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"eLv" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"eLA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"eOm" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_cargo) -"eOp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"eOx" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_one/purification) -"eOQ" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"ePf" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"ePh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"ePm" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/exterior/telecomm/lz1_valley) -"ePn" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"ePz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/area/desert_dam/building/administration/hallway) +"eLD" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"eLO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"eLQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"eMz" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"eMB" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"eMF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"ePE" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ePR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"eMH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"eQg" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"eNx" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"eNL" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/valley_labs) +"eNY" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/west_tunnel) -"eQi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"eQl" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"eQz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/south_valley_dam) +"eOh" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"eOk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/garage) +"eOm" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"eOs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"eOZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ - pixel_y = 32; - shuttleId = "trijentshuttle22" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"ePb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"ePd" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/exterior/valley/valley_medical) -"eQQ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/overseer_office) +"ePn" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"eQU" = ( -/obj/structure/filingcabinet, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"eRd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/desertdam/decals/road_stop, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"eRi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"eRk" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"ePo" = ( +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/bar/bar) +"ePy" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/north_wing_hallway) +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"ePJ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"ePP" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/treatment_room) +"ePS" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"eQj" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"eQp" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/central_tunnel) +"eQB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"eQI" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eQO" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"eQZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eRe" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"eRl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) "eRn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"eRC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"eRM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"eRq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"eRV" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"eRu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"eRy" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"eRE" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_0" }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"eRW" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/desert_dam/building/water_treatment_one/garage) -"eRX" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"eSh" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/warehouse/loading) -"eSk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"eRF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"eRK" = ( +/turf/open/floor/prison/redcorner/west, +/area/desert_dam/building/security/northern_hallway) +"eRZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/prison) +"eSx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"eSu" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"eSC" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"eSx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ +/area/desert_dam/exterior/valley/valley_mining) +"eSD" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"eSG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"eSI" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/lobby) -"eSz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"eSB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"eSE" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/virology_isolation) -"eSJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"eSK" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"eTk" = ( -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"eTF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/backroom) -"eTJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"eSO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"eTQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/desert_dam/exterior/valley/valley_crashsite) +"eSV" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"eTc" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"eTe" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"eTX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"eTi" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) -"eUi" = ( -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/lobby) -"eUD" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"eTo" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"eUE" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/lobby) +"eTz" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"eTE" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"eTM" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"eUZ" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/deathrow) -"eVi" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"eTO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"eTP" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"eTR" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"eTX" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"eUb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"eUf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"eUC" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"eUK" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_north) +"eUS" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) "eVk" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -17933,174 +17870,108 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"eVs" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "eVJ" = ( /obj/structure/window/framed/chigusa, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"eVL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"eVW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/west_wing_hallway) -"eVY" = ( -/obj/structure/surface/table, -/obj/item/device/encryptionkey, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/substation/west) -"eVZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"eWo" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"eWr" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"eWu" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"eWx" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"eWJ" = ( +"eVK" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"eWM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"eWO" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/lobby) -"eWQ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"eVW" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"eWT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"eWW" = ( +/area/desert_dam/exterior/valley/valley_wilderness) +"eWq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"eXc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/pillbottles, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"eXj" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"eXn" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"eXt" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"eWy" = ( +/obj/structure/pipes/portables_connector{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"eXA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"eWR" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"eXu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"eXK" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean2/southwest, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) +"eXG" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) "eXM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"eXO" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"eXT" = ( -/obj/structure/machinery/power/apc/no_power/east, +"eXU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/bar_valley_dam) +"eYn" = ( /turf/open/floor/prison/darkred2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"eYb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"eYu" = ( -/obj/structure/machinery/light{ +/area/desert_dam/building/security/prison) +"eYr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"eYD" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/interior/caves/central_caves) +"eYI" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) -"eYF" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/interior/caves/temple) -"eYN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_labs) -"eZn" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"eZx" = ( -/obj/structure/platform_decoration{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"eYR" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"eZA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) +/obj/structure/surface/table, +/obj/item/tool/surgery/retractor, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"eYV" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"eZc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) "eZE" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -18110,186 +17981,203 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"eZJ" = ( -/turf/open/floor/whitebluecorner, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"eZR" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/east_wing_hallway) -"fag" = ( -/obj/item/trash/cheesie, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"fak" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_telecoms) -"fan" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"faz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"faB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"faE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +"eZV" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"fat" = ( +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/south_tunnel) +"fav" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/mining/workshop) +"faE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"faO" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "faV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/obj/structure/stairs{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) -"faX" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"faZ" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"faW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"fbe" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"fbf" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"fbl" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/office) -"fbp" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"fbr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"fba" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/coagulation/icon8_4, -/area/desert_dam/exterior/valley/valley_mining) -"fbt" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/workshop) +"fbk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"fbq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"fbB" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"fbI" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) "fbK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"fct" = ( +"fbL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"fcw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"fbP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"fbQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"fbZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fcm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/landing_pad_one) "fcD" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/landing_pad_two) +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "fcE" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"fcT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"fcW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"fda" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/south_valley_dam) -"fdj" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" +"fcO" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_1" }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"fde" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) "fdk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"fdm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) +"fdo" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"fdq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"fdF" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_north) "fec" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/north_valley_dam) +"fel" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/interior/caves/central_caves) +"fet" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_one) +"fev" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"few" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/south_valley_dam) +"feB" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/surgery_room_one) +"feH" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"feQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"ffe" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/loading) +"fff" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"ffg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"ffn" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/building/water_treatment_two/purification) +"ffq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"ffx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/weapon/broken_bottle, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"feh" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/interior/dam_interior/control_room) -"feS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"feX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"ffm" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"ffN" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"ffF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"ffK" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"ffQ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ffZ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/mining/workshop) -"fgl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Emergency Room" +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/emergency_room) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"ffS" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) "fgo" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -18297,19 +18185,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"fgr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"fgp" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"fgz" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"fgy" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"fgJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"fgL" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) "fgS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"fgT" = ( +/obj/structure/machinery/computer/cameras/wooden_tv, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/overseer_office) "fgU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -18318,221 +18230,271 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"fgX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"fhq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"fhG" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"fhM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"fhP" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/landing/console2) -"fhR" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"fhS" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" +"fgV" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/holding) +"fhd" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"fhU" = ( -/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"fhg" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"fif" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_cargo) -"fiD" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_0" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"fiJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"fiV" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"fiW" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 +/turf/open/floor/prison/darkbrown3/northwest, +/area/desert_dam/interior/dam_interior/disposals) +"fhD" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/temple) -"fiY" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"fji" = ( +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"fhE" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"fjy" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_south) -"fjB" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"fjC" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"fjE" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"fjJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"fjN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"fjO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"fjR" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"fic" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"fkg" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"fid" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"fko" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/valley/valley_labs) -"fkp" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/caves/central_caves) +"fit" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"fiE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"fkB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/dam_interior/south_tunnel) +"fiW" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/temple) +"fiY" = ( /obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"fkD" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/security/execution_chamber) +"fjh" = ( +/obj/structure/bed/chair{ dir = 4 }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"fjG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"fkW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 8 +/area/desert_dam/interior/caves/east_caves) +"fjM" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"fkg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"flb" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/east_wing_hallway) -"flQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"fkk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/office) +"fkl" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"fmp" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"fkA" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/central_caves) +"fkK" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"fkM" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"fkP" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Archives" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/archives) +"fkS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lab Maintenance" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"fkY" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/west, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/exterior/valley/valley_wilderness) -"fmz" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"fmP" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) -"fmW" = ( +"flg" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/substation/west) +"fln" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/mining/workshop) +"flp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"fnr" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"fny" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"fnK" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"foe" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"fog" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/interior/dam_interior/central_tunnel) +"fly" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"flz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"flF" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"flG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"flN" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"fme" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"fmi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"fmt" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"fmw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"fmJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"fmL" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/holding) +"fmP" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"fmS" = ( /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"fok" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/telecomm/lz2_storage) +/area/desert_dam/interior/dam_interior/workshop) +"fmV" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"fng" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"fnn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"fnr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"fnE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"fnJ" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"fnM" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"foh" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) "foq" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -18540,81 +18502,80 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"for" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"fow" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) "foA" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_civilian) +/turf/open/desert/excavation/component4/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"foF" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_mining) +"foH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) "foJ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"foN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Tool Storage" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"foM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"foO" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/engine_west_wing) -"foY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"fpi" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"fpj" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) -"fpk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"foO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_telecoms) +"foR" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/exterior/valley/valley_medical) -"fpv" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/west) -"fpB" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"fpI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"fpf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"fph" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"fpl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/window/southleft{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"fpq" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"fpw" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/landing_pad_one) +"fpx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Restroom" }, -/turf/open/floor/dark, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +/obj/structure/disposalpipe/segment, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) "fpJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18622,351 +18583,340 @@ /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) "fpL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"fpS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) -"fpS" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/exterior/valley/valley_wilderness) -"fpU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Control Room" +"fqi" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"fqr" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"fqx" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"fra" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_one) +"frh" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_cargo) +"frl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/administration/control_room) -"fqf" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"frw" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) +"frx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"frC" = ( /obj/structure/machinery/sentry_holder/colony{ pixel_y = 26 }, -/turf/open/asphalt/cement/cement2, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"fqh" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"fqi" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_one) -"fqj" = ( +"frI" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"fqJ" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"fqS" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"frU" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"frY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northeast) -"fqW" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river_mouth/southern) -"fqY" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"fsv" = ( +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/bonesetter, +/obj/item/tool/surgery/FixOVein, +/obj/item/stack/nanopaste, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"fsE" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fsI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, /obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" + dir = 8 }, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/west_wing_hallway) -"frc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/yellow/west, -/area/desert_dam/building/hydroponics/hydroponics) -"fre" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"frg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"frC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"frO" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"fsW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"fsj" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"ftf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/blue{ + pixel_x = -3 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_northwest) -"fsF" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"ftm" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_one/lobby) -"ftA" = ( -/obj/structure/platform{ - dir = 8 +/obj/item/tool/stamp, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ftx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"fun" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"ftZ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"fub" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"fuc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"fuM" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"fuW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"ful" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"fva" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"fuv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"fve" = ( -/turf/open/floor/warning/west, -/area/desert_dam/interior/dam_interior/engine_room) -"fvf" = ( -/obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) +/area/desert_dam/building/dorms/restroom) +"fuw" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"fuH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"fuS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/north_valley_dam) "fvo" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"fvC" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/building/security/lobby) -"fvF" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"fvU" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"fvq" = ( +/turf/open/floor/warnwhite, +/area/desert_dam/exterior/valley/valley_telecoms) +"fvI" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/treatment_room) -"fvY" = ( -/turf/open/floor/coagulation/icon7_7, -/area/desert_dam/building/water_treatment_two) -"fwd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"fvR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 1" }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) -"fwn" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +"fvX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"fwo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) "fww" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"fwB" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"fwK" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_0" }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"fwE" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fwH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"fwL" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"fxe" = ( +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"fwQ" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"fxa" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) "fxs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"fxt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) "fxy" = ( -/turf/open/desert/excavation/component7/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"fxS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"fxT" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"fxW" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fxY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"fya" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"fyh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"fyj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"fyy" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"fyk" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"fyz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"fyE" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"fyv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"fyG" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/darkred2/north, -/area/desert_dam/building/administration/lobby) -"fyH" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"fyM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"fyR" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"fyY" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"fzb" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"fyZ" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fzc" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_northwest) +"fzd" = ( +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"fze" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"fzC" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) "fzS" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"fAc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"fAz" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/west_wing_hallway) -"fAB" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/office1) +"fAb" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"fAJ" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fAT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"fAU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fAW" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_medical) -"fAY" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_northwest) -"fAZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"fBh" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"fAf" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_medical) -"fBm" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"fBp" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/administration/office) -"fBv" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"fBz" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"fAv" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"fAE" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"fBc" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/staffroom) +"fBE" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) "fBF" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -18976,63 +18926,47 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"fBH" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"fBN" = ( -/obj/item/tool/hatchet, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"fBR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Atmospheric Storage" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"fBV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ +"fBZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"fBW" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_wilderness) -"fCh" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/interior/caves/central_caves) -"fCm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"fCw" = ( -/obj/structure/stairs, +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"fCp" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/valley/valley_telecoms) +"fCq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"fCu" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"fCv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "fCB" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"fCG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"fCQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"fCZ" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/warehouse) +"fCP" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"fCV" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/office1) "fDh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19041,52 +18975,42 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"fDi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside/north, -/area/desert_dam/exterior/valley/valley_mining) -"fDj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_hydro) -"fDz" = ( -/turf/open/desert/excavation/component2/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"fDA" = ( -/turf/open/floor/coagulation/icon7_7_2, -/area/desert_dam/exterior/valley/valley_hydro) -"fDM" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"fDT" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/warehouse) -"fDY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/warning_cone, +"fDr" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"fDu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/west, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"fDx" = ( +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) -"fEb" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"fEx" = ( +"fDB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"fDL" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) -"fEB" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"fEL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) +"fEo" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"fEq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"fEu" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_two) "fEQ" = ( /obj/structure/desertdam/decals/road_stop{ dir = 4; @@ -19096,698 +19020,598 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"fER" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplecorners2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"fEX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"fFk" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"fFn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") +"fFe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison/red/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"fFx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"fFK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/desert_dam/building/security/prison) -"fFR" = ( -/turf/open/floor/plating/warnplate/north, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"fFq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"fFT" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +"fFt" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/hammer, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"fFJ" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_medical) +"fGb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_wilderness) +"fGk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"fFV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"fGf" = ( +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"fGn" = ( +/obj/item/clothing/head/welding, +/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"fGj" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"fGp" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"fGu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/area/desert_dam/interior/dam_interior/smes_main) +"fGo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Loading" }, -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"fGA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"fGr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_labs) +"fGs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) "fGB" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"fGM" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"fGS" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/rock3, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) -"fGT" = ( -/obj/structure/surface/table, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"fHn" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 +"fGU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"fGV" = ( +/obj/effect/blocker/toxic_water/Group_1/delay, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"fHb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) "fHo" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northwest) +"fHF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"fHA" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"fHW" = ( +/turf/open/floor/prison/yellow/southeast, +/area/desert_dam/building/hydroponics/hydroponics) +"fIj" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"fHE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"fHI" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"fIk" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"fHK" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"fIz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"fIN" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"fIY" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/temple) +"fJb" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/east_caves) +"fJd" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"fHM" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/central_tunnel) -"fHO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars/mars_dirt_10, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"fHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"fJe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"fJj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"fJn" = ( /obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/control_room) -"fIm" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"fJv" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"fJx" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"fJA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"fJN" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"fIp" = ( +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"fKe" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"fIv" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" - }, -/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_labs) +"fKC" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"fIU" = ( -/obj/structure/closet, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"fIW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"fJo" = ( -/obj/structure/bed, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"fJw" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/desert_dam/building/substation/northwest) -"fKm" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +"fKU" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_medical) +"fLc" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"fLs" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"fKu" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"fKx" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"fKD" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"fLX" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"fMe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Containment Pen" }, -/turf/open/floor/prison/whitegreen/west, +/turf/open/floor/freezerfloor, /area/desert_dam/building/medical/virology_wing) -"fKJ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"fKV" = ( +"fMh" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"fLg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/sovietsoda, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"fLk" = ( -/obj/structure/platform{ - dir = 4 +/area/desert_dam/building/water_treatment_one/hallway) +"fMj" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"fLs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"fMl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"fLu" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_civilian) -"fLx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"fMn" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"fLE" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"fLO" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"fMX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"fMZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"fLW" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"fNv" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"fNy" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"fMe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"fMl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"fND" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"fMn" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_civilian) -"fME" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"fMN" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"fMS" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fNH" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"fNJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"fNS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"fNU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"fMU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"fMV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/lobby) -"fMW" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"fNo" = ( -/turf/open/floor/warning/east, -/area/desert_dam/interior/dam_interior/engine_room) -"fNp" = ( -/obj/structure/bed/chair/office/dark{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"fNZ" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"fOg" = ( +/obj/effect/blocker/toxic_water, +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_mining) +"fOl" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"fOo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"fNr" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"fNs" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/building/mining/workshop) -"fNF" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northeast) -"fNV" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"fOs" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_central_north) -"fOB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"fOI" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/exterior/valley/valley_hydro) -"fOL" = ( +"fOu" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"fOW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"fOX" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fOH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fOT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/lobby) "fPc" = ( /turf/closed/wall/r_wall/bunker{ acided_hole_dir = 4 }, /area/desert_dam/interior/dam_interior/garage) -"fPm" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/interior/caves/central_caves) -"fPs" = ( -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/warden) -"fPu" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +"fPz" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"fPw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"fPC" = ( +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"fPD" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"fPN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"fPX" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/substation/west) +"fQt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"fQK" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"fQT" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"fRr" = ( +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fRs" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"fRz" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"fSo" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"fSp" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"fSu" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"fSL" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"fSR" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_catwalk" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"fSU" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"fTc" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"fPC" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/dam_interior/south_tunnel) -"fPG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"fPQ" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"fQu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"fQz" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"fQD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop" +"fTr" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/hanger) +"fUp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Operating Theatre 1" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"fUH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"fUK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"fQF" = ( -/turf/open/desert/excavation/component1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"fQH" = ( -/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/bar/bar) +"fUM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/interior/dam_interior/break_room) +"fUS" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"fVi" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_medical) +"fVs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"fQV" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fQY" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"fRf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/north, -/area/desert_dam/building/administration/lobby) -"fRg" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/substation/northeast) -"fRi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"fVO" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"fWa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"fWh" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/delivery, +/area/desert_dam/exterior/telecomm/lz1_south) +"fWp" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"fWH" = ( +/obj/structure/machinery/computer/crew, /turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/treatment_room) -"fRj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" +"fWI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"fRl" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river_mouth/southern) -"fRn" = ( -/turf/open/floor/plating/warnplate/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"fRp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/staffroom) -"fRu" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"fRA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"fRK" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"fRT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fXl" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/central_caves) +"fXA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"fRX" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"fSn" = ( -/obj/structure/closet/l3closet/security, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"fXK" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"fXM" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"fSs" = ( -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"fXO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"fSt" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/blue/east, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) -"fSv" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/warehouse/loading) -"fSy" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/workshop) -"fSF" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_wilderness) -"fSQ" = ( -/obj/structure/platform{ +"fXW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_south) -"fTe" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) -"fTg" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"fTh" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"fXX" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"fTi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"fTu" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"fTD" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/exterior/valley/valley_wilderness) -"fTM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_two) -"fTT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"fUa" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"fYe" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"fUh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"fUv" = ( -/turf/open/floor/warnwhite/northwest, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"fYm" = ( +/obj/structure/target, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate, /area/desert_dam/exterior/valley/valley_telecoms) -"fUB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"fUI" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_south) -"fUQ" = ( -/turf/open/floor/darkyellow2/southwest, -/area/desert_dam/building/security/prison) -"fVc" = ( +"fYq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"fVT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/warehouse/breakroom) -"fVX" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"fWa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +"fYJ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"fWi" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/exterior/valley/valley_hydro) -"fWs" = ( +/area/desert_dam/exterior/valley/valley_medical) +"fYL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/security/prison) +"fYU" = ( +/obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"fWS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fYW" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"fWW" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"fXH" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) -"fXJ" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/smes_main) -"fXU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc/no_power/east, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"fYi" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/north_valley_dam) -"fYm" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"fYz" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"fYF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside/northwest, -/area/desert_dam/exterior/valley/valley_medical) -"fYM" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/warden) -"fYV" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"fYY" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_one) -"fZh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/dam_interior/south_tunnel) +"fZk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/blue/southeast, +/area/desert_dam/building/administration/control_room) +"fZu" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"fZN" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/loading) +"fZY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 8; @@ -19795,404 +19619,421 @@ }, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) -"fZn" = ( -/turf/open/desert/excavation/component6/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"fZy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/bar/bar) -"fZF" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"fZG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"fZH" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/item/clothing/head/soft/ferret, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_south) -"fZO" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"fZW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/tool/surgery/retractor, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "gab" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_lobby) -"gai" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"gat" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"gaz" = ( +"gaw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"gaK" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +"gay" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"gaD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"gaH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"gaJ" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"gaP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gbc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"gaU" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gbq" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"gba" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_central_south) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) "gbr" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"gbw" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"gbx" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/north_valley_dam) +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/temple) +"gbu" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"gbJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gbO" = ( +/obj/item/shard/shrapnel, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) "gca" = ( /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"gci" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"gcn" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_hydro) -"gcj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, +"gcu" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"gcw" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"gcA" = ( +/area/desert_dam/building/administration/control_room) +"gcC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Hallway" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"gcM" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"gcS" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"gdf" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/armory) +"gds" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"gdx" = ( +/obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"gdC" = ( +/obj/structure/pipes/standard/simple/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/security/prison) -"gcH" = ( -/obj/structure/machinery/computer/turbine_computer, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"gcI" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"gdE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/loading) -"gcL" = ( -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"gcV" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/hammer, /turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"gdG" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"gdJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/central) +"gej" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_crashsite) -"gcZ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"gdb" = ( +"gen" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"geq" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform{ - dir = 4 + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"ges" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/caves/east_caves) +"geC" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"gdo" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"gdx" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"gdy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"gdI" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/telecomm/lz1_south) -"gdS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_civilian) -"geb" = ( -/turf/open/floor/darkyellow2, -/area/desert_dam/building/substation/northwest) -"gee" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/control_room) -"gek" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/staffroom) -"gel" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"gfc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/valley_crashsite) +"gfo" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, +/obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"gfC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"gfI" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/area/desert_dam/exterior/valley/valley_hydro) +"gfF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) +/obj/structure/disposalpipe/segment, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) "gfQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"gfX" = ( -/turf/open/floor/warnwhite, -/area/desert_dam/exterior/valley/valley_telecoms) -"ggh" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/building/warehouse/warehouse) -"ggD" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northwest) -"ggJ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"ggL" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"ggR" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"ghb" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"ghe" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ggv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ggw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"ghj" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, +/area/desert_dam/building/security/northern_hallway) +"ggG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/disposals) -"ghy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) -"ghY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +"ggL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"ggO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) -"giu" = ( +"ghh" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/administration/office) +"ghl" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/west_wing_hallway) -"giC" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"giG" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/north_valley_dam) -"giP" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"ghp" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/interior/caves/east_caves) +"ghs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/meetingrooom) -"giR" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"giW" = ( -/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"gjm" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/temple) -"gjs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/building/medical/north_wing_hallway) +"ghy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"gjI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"gjZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"gkc" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"gkd" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"gkk" = ( -/obj/structure/surface/table, -/obj/item/tool/weedkiller/D24, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"gks" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/west_tunnel) -"gkx" = ( +"ghI" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/interior/dam_interior/break_room) +"ghR" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/dam_interior/south_tunnel) +"gij" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) -"gky" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"gil" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/chips, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"giA" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"giM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"gkC" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/light{ +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"giT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/red/northeast, -/area/desert_dam/building/security/lobby) -"glh" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"gjc" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_two) +"gjj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"gjn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/telecomm/lz1_valley) -"glo" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/medical/garage) +"gjt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"gjw" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"gjU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/dorms/hallway_northwing) -"glx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/north_wing_hallway) +"gjZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"gkj" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_south) +"gkm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"gkA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Controlroom" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"gkH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"glI" = ( -/turf/open/floor/darkyellow2/southeast, -/area/desert_dam/building/substation/northeast) -"glO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"glZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gkR" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"gmd" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"gkY" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"glj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) -"gmS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2; - icon_state = "pipe-u" +"gll" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"glp" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"glx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"glK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"glO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"glQ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"glR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"glS" = ( +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/bonesetter, +/obj/item/tool/surgery/FixOVein, +/obj/item/stack/nanopaste, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"gml" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"gmL" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_isolation) +"gmM" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"gmT" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"gmW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 2 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) "gmZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "warehouse_dam_3"; @@ -20204,167 +20045,234 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) +"gnc" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"gne" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) "gnt" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"gny" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) "gnB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"gnF" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/north_wing_hallway) -"gnP" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"gnW" = ( -/obj/structure/showcase{ - color = "#880808"; - desc = "A large red statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "The Titan" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1; - icon_state = "halfarmor7_ebony" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gnI" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"gnN" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"goa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1; - icon_state = "y-boots4_ebony" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gog" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - icon_state = "pred_mask12_ebony"; - unacidable = 0 +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"gop" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/desert_dam/interior/caves/temple) -"gnY" = ( -/obj/structure/toilet, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_northwest) +"gor" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"goc" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"gom" = ( -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"got" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"gou" = ( -/obj/structure/machinery/door/window/northright{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/disposals) -"goz" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"goZ" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"gou" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"gpg" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"gow" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"goA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"goB" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"goG" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"goI" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"goN" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/west_wing_hallway) +"goP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"gpe" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "gpi" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"gpn" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"gpx" = ( -/turf/open/floor/prison/green/north, +"gpz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"gpC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) "gpG" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_south) -"gpN" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/filingcabinet, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/building/water_treatment_two/lobby) +"gpH" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Detectives Office" }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) -"gqc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_one) -"gqh" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/detective) +"gpL" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - id = null; - name = "\improper Elevator Lock" + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"gpP" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"gpV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"gqg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gqp" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/cell_stripe/east, -/area/shuttle/trijent_shuttle/lz2) -"gqr" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_south) -"gqt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"gqM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"grd" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gqE" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating/warnplate, +/area/desert_dam/building/substation/northwest) +"gqW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"gra" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"gru" = ( +/turf/open/gm/river/pool, +/area/desert_dam/building/dorms/pool) +"grJ" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"grL" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"grw" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"grB" = ( -/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"grN" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"grD" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) +/area/desert_dam/interior/dam_interior/central_tunnel) "grQ" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics) -"grU" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"gse" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"gsh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +"gsc" = ( +/turf/open/floor/coagulation/icon8_6, +/area/desert_dam/exterior/valley/valley_hydro) +"gsn" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) +"gso" = ( +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_two) +"gsp" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) "gsr" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -20372,400 +20280,368 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"gss" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"gst" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"gsy" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_central_south) -"gsA" = ( -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"gsC" = ( -/obj/structure/platform{ +"gsD" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"gsL" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/warehouse/warehouse) +"gsM" = ( +/obj/structure/stairs{ dir = 8 }, /obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) "gsW" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"gsZ" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_south) -"gtu" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/dam_interior/south_tunnel) -"gtC" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered/north, -/area/desert_dam/exterior/river/riverside_east) -"gtG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Checkpoint" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"gtJ" = ( -/turf/open/desert/excavation/component5/west, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) -"gtN" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_central_north) -"gtT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"gsX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"gtU" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"gtV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/area/desert_dam/building/water_treatment_one/hallway) +"gtl" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"gto" = ( +/obj/structure/sink, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"gtO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_northwest) -"gua" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gtQ" = ( +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"gui" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"gut" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"guL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"guQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"guS" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/warden) +"guT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"guk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"gvf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"gum" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/armory) -"gus" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_wilderness) -"guF" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"guM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gvr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) -"guN" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"gva" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"gvn" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/east, +"gvs" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_south) -"gvw" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_two) -"gvI" = ( -/obj/structure/machinery/light{ - dir = 4 +"gvz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop" }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office2) -"gvM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"gvV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"gwi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/exterior/valley/valley_hydro) -"gwu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"gvH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"gvS" = ( +/obj/item/trash/burger, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_labs) +"gvZ" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"gwC" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"gwN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/ears/earmuffs, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"gwX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"gwt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"gwu" = ( /turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"gxb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"gxi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/building/water_treatment_two/equipment) +"gwx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/courtroom) +"gwA" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"gwE" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_westwing) +"gwP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"gxs" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"gxC" = ( -/turf/open/floor/filtrationside/east, -/area/desert_dam/exterior/valley/valley_hydro) -"gxE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"gxS" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"gwR" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"gyv" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"gyF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Tool Storage" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"gwW" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"gxd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/mining/workshop) +"gxh" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"gyL" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_wilderness) -"gyN" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/landing_pad_one) -"gyR" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"gxy" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/northwest) +"gxE" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/east_caves) +"gxM" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"gxO" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"gxZ" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"gyT" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"gza" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 31 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"gye" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" }, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_crashsite) -"gzb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"gyn" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_hydro) +"gyx" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"gyC" = ( +/obj/structure/barricade/sandbags{ dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"gzw" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/south_valley_dam) -"gAa" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/barricade/sandbags{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"gza" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"gAC" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"gzj" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/temple) +"gzr" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"gzv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"gzO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"gzV" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) -"gAK" = ( -/obj/structure/largecrate/random/secure, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"gAO" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"gAP" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"gAS" = ( -/obj/structure/toilet, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"gAU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +"gAc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"gAm" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "purple-new-bridge" }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"gAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"gBc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/area/desert_dam/exterior/valley/valley_hydro) +"gAp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"gBq" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/desert_dam/building/water_treatment_one/breakroom) +"gAw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"gBy" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"gBY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"gAx" = ( +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) -"gBZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"gAz" = ( +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"gAA" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"gAI" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/substation/northeast) +"gAO" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"gAR" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"gBb" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gBi" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gBm" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gBr" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"gBv" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"gBw" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"gBz" = ( +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/control_room) +"gBD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"gBJ" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) -"gCd" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_east) -"gCf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical" - }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) "gCg" = ( /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics_loading) -"gCh" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"gCz" = ( -/obj/structure/surface/table/reinforced, +"gCn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_labs) +"gCv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"gCC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/break_room) -"gCI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) -"gCK" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/interior/caves/central_caves) -"gCR" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/northern_hallway) +"gCH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"gCR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) "gCS" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -20773,50 +20649,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"gCU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bluecorner, -/area/desert_dam/building/administration/control_room) -"gCX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"gCW" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"gDf" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"gDg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"gDl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"gCZ" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/mining/workshop_foyer) +"gDh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_mining) "gDn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"gDy" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"gDP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"gDI" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"gDT" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) "gEj" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -20824,241 +20687,190 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"gEk" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"gEo" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"gEH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"gEl" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/interior/dam_interior/break_room) +"gEq" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/bar_valley_dam) -"gFe" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) -"gFy" = ( +"gEC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"gED" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"gFB" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"gFM" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_east) -"gFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"gEF" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/green/northeast, +/area/desert_dam/interior/dam_interior/atmos_storage) +"gFa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"gFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"gFQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"gFz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"gGa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"gFJ" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/staffroom) "gGe" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) -"gGh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"gGn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"gGu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs, +/turf/open/mars_cave/mars_dirt_6, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"gGo" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"gGv" = ( /obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"gGv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"gGz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"gGB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) "gGC" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/desert_dam/interior/caves/temple) -"gGF" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river/darkred_pool, -/area/desert_dam/building/dorms/pool) -"gGH" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_north) -"gGS" = ( -/turf/open/desert/excavation/component8/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"gGX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +"gGW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/exterior/valley/valley_mining) -"gHb" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"gHk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"gHv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"gHy" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gHf" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gHq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"gHr" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"gHs" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/interior/caves/central_caves) +"gHA" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_two/purification) +"gHB" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"gHF" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) "gHN" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"gIq" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_northwest) +"gIf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gIk" = ( +/obj/structure/machinery/light, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"gIu" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"gIv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) +/area/desert_dam/building/warehouse/loading) +"gIs" = ( +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "gIR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"gJe" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"gJl" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"gJp" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"gJu" = ( +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gJx" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/caves/temple) +"gJB" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"gJR" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gJZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/CE_office) +"gKq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/hallway_westwing) -"gIT" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"gIX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/warehouse/warehouse) -"gJg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"gJo" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/desert_dam/building/warehouse/loading) +"gKr" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_hydro) +"gKv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/disposals) -"gJC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/hanger) -"gJF" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/south_tunnel) -"gJJ" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/surgery_room_two) -"gJN" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"gJO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"gKa" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"gKi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"gKk" = ( -/turf/open/desert/excavation/component2/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"gKy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_telecoms) -"gKC" = ( +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/CE_office) +"gKU" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/dam_interior/engine_room) +"gLc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"gKJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"gKM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/south_valley_dam) +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) "gLl" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -21067,375 +20879,373 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"gLn" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"gLo" = ( -/turf/open/floor/coagulation/icon0_8, -/area/desert_dam/building/water_treatment_one/purification) -"gLp" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"gLG" = ( -/obj/structure/machinery/light{ - dir = 8 +"gLq" = ( +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"gLv" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"gLx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"gLz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/excavation/component1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"gLH" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/temple) +"gLL" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"gLW" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gMd" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"gLO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_mining) -"gMi" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"gMf" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"gMl" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"gMm" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"gMv" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"gMq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_mining) -"gMw" = ( -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/exterior/valley/valley_mining) -"gMA" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"gMB" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"gME" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner, +/turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) -"gMG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/bar_valley_dam) -"gMI" = ( +"gMJ" = ( +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"gMU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/backroom) +"gNa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gNh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"gNi" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"gMX" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"gNe" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"gNl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"gNt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/desert_dam/building/water_treatment_two/hallway) +"gNj" = ( +/turf/open/desert/excavation/component5/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"gNu" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"gND" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"gNH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"gNy" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"gNO" = ( -/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"gNV" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"gNQ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gNX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gNZ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue/southeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"gOb" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/holding) +"gOl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"gOk" = ( -/turf/open/desert/excavation/component8/west, +"gOq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_crashsite) -"gOm" = ( -/turf/open/floor/prison/darkyellowcorners2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "gOt" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"gOw" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) "gOy" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_northwest) +"gOC" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/surgery_room_one) +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) "gOE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"gOH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"gPf" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"gPn" = ( +"gOG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"gPp" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"gOY" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"gPs" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"gPC" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"gPP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"gPc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"gPd" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Containment Lock"; + unacidable = 0 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"gPV" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/caves/temple) -"gQf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"gQd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"gQg" = ( -/obj/structure/machinery/chem_dispenser, -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"gQI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gQM" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"gQQ" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"gQw" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"gQT" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/weapon/broken_bottle, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"gRc" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"gRh" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/staffroom) +"gRF" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"gQH" = ( -/obj/structure/cargo_container/trijent/right/alt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"gSg" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"gSQ" = ( +/obj/structure/largecrate/random/secure, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"gQS" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"gQU" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"gRt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/desert_dam/exterior/valley/valley_hydro) +"gSR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"gRH" = ( -/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"gSU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gTa" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"gTc" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"gSq" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) -"gSr" = ( -/obj/structure/window/reinforced/tinted{ +"gTf" = ( +/turf/open/floor/prison/darkbrown3/northwest, +/area/desert_dam/interior/dam_interior/hanger) +"gTo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"gTB" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gTD" = ( +/obj/item/tool/wrench, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"gTQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table/reinforced, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"gSO" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gTT" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"gTU" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/temple) +"gUb" = ( +/turf/open/desert/excavation/component7/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"gUo" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/treatment_room) +"gUq" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"gUD" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"gUO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"gSV" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/mining/workshop_foyer) -"gTc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"gUS" = ( +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hanger) +"gUU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) -"gTd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"gTv" = ( -/turf/open/floor/carpet/edge/northeast, -/area/desert_dam/building/administration/meetingrooom) -"gTy" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"gTD" = ( -/obj/item/tool/wrench, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"gTJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/southern_hallway) -"gTO" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Office" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"gTQ" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/building/substation/west) -"gTV" = ( -/turf/open/floor/prison/darkpurplecorners2, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"gUu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"gUV" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"gUx" = ( -/obj/effect/decal/sand_overlay/sand2, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) -"gUA" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +"gVh" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_crashsite) -"gUE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/west_wing_hallway) -"gUT" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_one) "gVm" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"gVu" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_hydro) -"gVw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +"gVF" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_medical) +"gWp" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"gVK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Restroom" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"gVN" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/interior/caves/central_caves) -"gVU" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/west) -"gWg" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/smes_backup) -"gWh" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"gWk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/interior/dam_interior/tech_storage) +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) "gWq" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Examination Room" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) "gWu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) +"gWC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/bluecorner, +/area/desert_dam/interior/dam_interior/tech_storage) "gWH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -21443,536 +21253,508 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"gWM" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"gWR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"gXt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gXw" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"gWS" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "garage_dd"; - name = "\improper Garage" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"gXx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"gXB" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"gXF" = ( +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/hallway) +"gXH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"gXf" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"gXI" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security" }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"gXK" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"gXO" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) "gXT" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/telecomm/lz2_storage) -"gYd" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/west_wing_hallway) -"gYs" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_east) -"gYx" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"gXU" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"gXZ" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/exterior/valley/valley_wilderness) -"gYz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"gYm" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) +"gYp" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"gYE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"gYO" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/red/northeast, +/area/desert_dam/building/water_treatment_one/lobby) "gYP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"gYZ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/green/southeast, -/area/desert_dam/interior/dam_interior/atmos_storage) -"gZc" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"gZg" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_northwest) -"gZi" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"gZv" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/surgery_room_two) -"gZP" = ( -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"hae" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"haG" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"haJ" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/interior/caves/central_caves) -"haK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"haN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" +"gZw" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"hbo" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/surgery_room_one) +"gZx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"hbC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"hbN" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"gZB" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"hbR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"hbZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 8; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"hcp" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"hcy" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/red, -/area/desert_dam/building/water_treatment_two/lobby) -"hcG" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"gZD" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"gZF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Backup SMES" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"hcK" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/exterior/telecomm/lz1_valley) -"hcT" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"hdj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"hdt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"hdO" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/area/desert_dam/interior/dam_interior/smes_backup) +"gZH" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"hdQ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/CE_office) +"gZO" = ( +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gZX" = ( +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"gZY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"hdT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"hdU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/exterior/valley/valley_medical) +"gZZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"heg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"hac" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"hek" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"ham" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/landing_pad_one) -"hem" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"hep" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"heB" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"haG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"heC" = ( +/obj/structure/largecrate/random, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"haL" = ( +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hbc" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"hbq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 1" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"hbs" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"heI" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"hbu" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"hbv" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"hbw" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"heK" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/west_tunnel) -"heS" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"hbW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/southern_hallway) -"hfc" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"hfo" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"hbZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_wilderness) +"hcB" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/control_room) +"hcK" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"hfB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"hfJ" = ( +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/desert_dam/interior/dam_interior/disposals) +"hcO" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"hdd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Floodgate Control" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"hdZ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"hed" = ( +/turf/open/floor/coagulation/icon7_7, +/area/desert_dam/building/water_treatment_two) +"hek" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"het" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) -"hfK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"heB" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"hfe" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"hfJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_north) +"hfV" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"hfR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2, -/area/desert_dam/building/warehouse/warehouse) -"hfU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop Foyer" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"hfW" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Examination Room" +/turf/open/floor/chapel/east, +/area/desert_dam/building/church) +"hgd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office2) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"hgg" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_one/lobby) "hgh" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/exterior/valley/valley_wilderness) -"hgk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/warehouse/warehouse) -"hgl" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) -"hgB" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"hgC" = ( -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"hgF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"hgV" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/telecomm/lz2_storage) +/area/desert_dam/exterior/valley/valley_hydro) +"hgp" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_one) +"hgG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_northwest"; + name = "Checkpoint Lockdown" + }, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hgR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/lightreplacer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "hhi" = ( -/obj/structure/stairs{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/desert_dam/interior/dam_interior/disposals) "hhl" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"hhr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/excavation/component6/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"hhq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"hhs" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"hhy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) +/area/desert_dam/building/water_treatment_one/control_room) "hhB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) "hhF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_cargo) +"hhM" = ( +/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"hhS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"hir" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/exterior/landing_pad_one) +"hhU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_dam_1"; + name = "\improper Hangar Shutters" }, /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"him" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_labs) +"hiw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"hiz" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"hiG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/holding) "hiH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"hiL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"hjm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"hjp" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel) -"hjx" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/red/northeast, -/area/desert_dam/building/water_treatment_one/lobby) -"hjB" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"hjQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) -"hkn" = ( -/obj/structure/cargo_container/trijent/left/alt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"hkE" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/north_valley_dam) -"hkG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ + pixel_y = 32; + shuttleId = "trijentshuttle22" }, -/turf/open/asphalt/tile, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/exterior/valley/valley_medical) -"hkL" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/exterior/valley/valley_hydro) -"hkX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"hla" = ( -/turf/open/floor/prison/yellow/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"hlf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 +"hiO" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"hiV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"hll" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"hiZ" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"hlB" = ( -/obj/structure/sink, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"hlK" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"hjb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"hlS" = ( -/obj/structure/platform_decoration{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"hlT" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"hlY" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"hmh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"hjk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/armory) +"hjm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"hmq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"hjp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"hjw" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/warehouse/breakroom) +"hjD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"hmK" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"hmL" = ( -/obj/structure/sink{ +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = 11 + icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"hmO" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_labs) -"hmR" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"hjI" = ( +/obj/structure/platform{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"hnd" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/area/desert_dam/exterior/valley/valley_northwest) +"hjO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/central) -"hnf" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_two) -"hng" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/area/desert_dam/exterior/valley/valley_crashsite) +"hkx" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/administration/office) +"hkS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"hkU" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"hlL" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"hlM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/warden) +"hlN" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"hlU" = ( +/turf/open/desert/excavation/component3/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"hmj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hmp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"hmV" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hnt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) "hnJ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 @@ -21980,79 +21762,75 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"hnM" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - pixel_y = 30 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/control_room) -"hoa" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +"hnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"hnY" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"hob" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) "hoc" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"hon" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/staffroom) +"hol" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) "hot" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"hoK" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"hoN" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"hps" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/prison/whitered/southeast, +/area/desert_dam/building/medical/primary_storage) +"hoI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engineering Hallway" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"hoQ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"hpy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"hpB" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"hpC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkyellowcorners2/north, -/area/desert_dam/building/security/prison) -"hpI" = ( +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"hoZ" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"hpg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"hph" = ( +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"hpr" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hpF" = ( +/turf/open/desert/cave/cave_shore/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) "hpL" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 @@ -22060,291 +21838,296 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"hpW" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/north_tunnel) -"hpZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hpX" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"hqJ" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"hqN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"hrl" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"hrm" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/landing_pad_two) -"hrn" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_north) -"hro" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"hrq" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"hrs" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/interior/dam_interior/garage) +"hpZ" = ( +/obj/structure/pipes/portables_connector{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"hrw" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/caves/east_caves) -"hrx" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"hry" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"hsl" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"hst" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"hsy" = ( -/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"hqq" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"hqr" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/lobby) +"hqt" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"hsA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/desert_dam/exterior/valley/valley_mining) +"hqw" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"hqy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"hsV" = ( -/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"hqG" = ( +/obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"hsX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"htk" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_two) -"htK" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"htM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"hul" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"huo" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/east_wing_hallway) -"huw" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 +"hqO" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"hqS" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Administration Office" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/office) +"hra" = ( +/obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"huF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"hva" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"hvt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" +"hrm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Checkpoint" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"hvF" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/south_valley_dam) -"hvZ" = ( -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"hwd" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) -"hwh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) -"hwt" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"hwB" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"hwQ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/telecomm/lz2_storage) -"hwU" = ( -/obj/structure/machinery/door_control{ - id = "garage_dd"; - name = "Garage Lockdown"; - pixel_y = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, +/area/desert_dam/building/security/northern_hallway) +"hrr" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hsk" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/treatment_room) +"hss" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"hsG" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"hwZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"hxl" = ( +/area/desert_dam/interior/dam_interior/engine_west_wing) +"hsL" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"htu" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 6 + dir = 8 }, /turf/open/asphalt/tile, -/area/desert_dam/interior/caves/east_caves) -"hxN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"hxO" = ( +/area/desert_dam/exterior/valley/south_valley_dam) +"htE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"htL" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"hxR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/tool/weedkiller/D24, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"htW" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"huh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"hup" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"huN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"hvd" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hvm" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hvo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Emergency Room" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"hvp" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"hvq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"hvu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"hvN" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark2, -/area/desert_dam/interior/dam_interior/CE_office) -"hyt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Rec Yard" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"hvX" = ( +/turf/open/floor/coagulation/icon1_7, +/area/desert_dam/building/water_treatment_two) +"hwb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/church) +"hwd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/south_valley_dam) +"hwh" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"hwv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"hwK" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/red, +/area/desert_dam/building/water_treatment_two/lobby) +"hwM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"hyA" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hwX" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"hxm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/north_valley_dam) +"hxp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hxV" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/east_caves) +"hxX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hyi" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"hyt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/bar/bar) +"hyD" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/mining/workshop) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) "hyH" = ( /obj/structure/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"hyM" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"hza" = ( +"hyV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"hyX" = ( /obj/effect/decal/sand_overlay/sand2{ - dir = 8 + dir = 4 }, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"hzj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"hzl" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"hzo" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"hzq" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteyellow/northeast, -/area/desert_dam/building/water_treatment_one/breakroom) -"hzu" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +"hza" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/warden) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"hzt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) "hzC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"hzI" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/chapel/east, -/area/desert_dam/building/church) -"hzP" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"hzX" = ( +"hzF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/garage) -"hAe" = ( -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/treatment_room) -"hAj" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"hzN" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"hzO" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"hzR" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hAm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) "hAv" = ( /obj/item/stack/sheet/mineral/sandstone{ amount = 50 @@ -22362,141 +22145,158 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"hAV" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"hBh" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/chemistry) -"hBl" = ( -/obj/structure/dispenser, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/dam_interior/tech_storage) -"hBx" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"hBA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/medical/garage) -"hBI" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"hBP" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/north_valley_dam) -"hBQ" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"hBS" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"hBT" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ +"hAZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"hBV" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"hBd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"hBq" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"hBx" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/disposals) +"hBz" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"hCb" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"hBW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"hCd" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) "hCf" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/south_valley_dam) +"hCj" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"hCl" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/chemistry) "hCo" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"hCs" = ( -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"hCu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hCp" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"hCt" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"hCC" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"hCI" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"hCJ" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"hCz" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/exterior/valley/valley_hydro) +"hCK" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"hCX" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Armoury" +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"hDe" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"hDn" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "hDo" = ( -/obj/structure/bed/chair{ +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"hDr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_telecoms) +"hDs" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hDw" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hDE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_mining) +"hDL" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) "hDT" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"hEA" = ( -/obj/structure/machinery/light{ - dir = 4 +"hEa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"hEi" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"hEJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"hEq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"hEy" = ( +/obj/structure/filtration/machine_64x128{ + icon_state = "filtration_1" }, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/office) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"hEC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"hEF" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "hEU" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/barricade/wooden{ @@ -22504,106 +22304,100 @@ }, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) -"hFs" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"hFu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"hGv" = ( +"hEX" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/staffroom) +"hEZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"hFb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"hGB" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Research Director Office" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"hFt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hFJ" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"hFV" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"hGP" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"hGR" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"hGS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder, -/obj/item/device/assembly/signaller, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/bar/bar) +"hGa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"hGd" = ( +/obj/structure/machinery/vending/dinnerware, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"hGW" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"hHa" = ( -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"hHi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"hHk" = ( -/turf/open/floor/coagulation/icon0_8, -/area/desert_dam/exterior/valley/valley_hydro) -"hHu" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_backup) -"hHy" = ( -/turf/open/floor/coagulation/icon7_8, -/area/desert_dam/exterior/valley/valley_mining) -"hHG" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"hHK" = ( +/area/desert_dam/building/cafeteria/cafeteria) +"hGm" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"hGr" = ( /turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/caves/temple) -"hHU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hGx" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/armory) +"hHc" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"hHw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"hIf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"hHz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"hIq" = ( -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"hIC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"hHG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Kitchen" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hHI" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"hHM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"hIG" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"hHN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"hIJ" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hIL" = ( /obj/structure/platform{ dir = 1 }, @@ -22617,179 +22411,228 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"hIW" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"hJk" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/valley/valley_labs) -"hJo" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" +"hIT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/north_valley_dam) +"hJg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"hJp" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Containment Lock"; + unacidable = 0 }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hJr" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) "hJy" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"hJB" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"hJz" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"hJA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"hJG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"hJD" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"hJH" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"hKe" = ( -/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"hJS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters{ + dir = 2 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hKg" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_mining) +"hKk" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/administration/lobby) -"hKm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/central) -"hKy" = ( -/turf/open/floor/prison/redcorner/west, -/area/desert_dam/building/security/northern_hallway) -"hLa" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"hKl" = ( +/turf/open/desert/excavation/component8/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"hKw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"hKH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"hLk" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"hLx" = ( -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"hLE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"hKR" = ( +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"hKT" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"hLa" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"hLi" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/lobby) +"hLk" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) +"hLl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_crashsite) +"hLr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"hLI" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "hLN" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/telecomm/lz1_south) -"hLR" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"hLT" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/northeast, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"hMk" = ( +/obj/structure/machinery/chem_dispenser, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hMt" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hMC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"hME" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/item/reagent_container/food/snacks/cheesewedge, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hMN" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_south) -"hLV" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"hMa" = ( -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"hMd" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_hydro) -"hMh" = ( -/obj/structure/bed/chair{ - dir = 4 +"hMT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/security/lobby) -"hMi" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_mining) +"hNc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/staffroom) +"hNn" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"hNt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"hMG" = ( -/turf/open/desert/dirt/rock1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"hMM" = ( -/turf/open/floor/whiteyellowcorner, -/area/desert_dam/building/water_treatment_one/breakroom) -"hMN" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecalbottomleft" +"hNu" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"hNG" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/virology_wing) +"hNY" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/desert_dam/building/mining/workshop) +"hOa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_hydro) +"hOb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/east_wing_hallway) -"hMU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"hOl" = ( +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"hMX" = ( +/area/desert_dam/building/warehouse/loading) +"hOF" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"hOJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/telecomm/lz1_south) +"hPv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"hNa" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/lobby) -"hNn" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/holding) -"hNp" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/lobby) -"hOs" = ( -/obj/structure/machinery/centrifuge, -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"hOw" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/workshop) -"hOC" = ( -/turf/open/floor/prison/darkbrowncorners3/north, -/area/desert_dam/interior/dam_interior/hanger) -"hOR" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_east) -"hPg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"hPA" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) "hPB" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -22797,430 +22640,550 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"hPD" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "hPH" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 +/obj/structure/surface/rack, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"hPN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/interior/dam_interior/west_tunnel) -"hPU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/turf/open/floor/prison/red/west, +/turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"hQc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"hQd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"hPR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) -"hQu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper SMES" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"hQG" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"hQK" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, +"hQj" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hQw" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"hQP" = ( +/obj/structure/tunnel, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"hQS" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"hQV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) +/turf/open/floor/prison/red/northeast, +/area/desert_dam/building/security/lobby) +"hQT" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) "hQZ" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/exterior/telecomm/lz2_containers) +"hRb" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"hRf" = ( /obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"hRm" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"hRu" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"hSb" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"hRq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"hSn" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"hSo" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"hRx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"hSP" = ( -/obj/structure/machinery/computer/secure_data, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hRF" = ( /obj/structure/surface/table, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) -"hSX" = ( -/turf/open/floor/darkyellow2, -/area/desert_dam/building/substation/northeast) -"hTa" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"hTb" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"hTc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"hTm" = ( -/obj/structure/machinery/light, -/turf/open/floor/whiteyellowcorner, -/area/desert_dam/building/water_treatment_one/breakroom) -"hTD" = ( -/obj/structure/toilet, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"hTG" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/mining/workshop) +"hRG" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-j2" + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"hRK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Isolation Chamber" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"hTK" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteyellow, -/area/desert_dam/building/water_treatment_one/breakroom) -"hTM" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hRV" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hRW" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hSc" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"hUi" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"hUl" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"hUr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"hUv" = ( -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"hUX" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"hSd" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/central_caves) +"hSh" = ( +/obj/structure/platform{ + dir = 4 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"hSs" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"hVi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"hVo" = ( -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/southern_hallway) +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"hSt" = ( +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northeast) +"hSx" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"hSB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/CE_office) +"hSF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"hSI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_wilderness) +"hSQ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"hST" = ( +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"hSX" = ( +/turf/open/desert/excavation/component1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"hTd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"hTh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"hTi" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hTG" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"hTJ" = ( +/turf/open/mars/mars_dirt_14, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hTK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"hTM" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_north) +"hTN" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hTS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"hTW" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hTZ" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hUe" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"hUo" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hUN" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/substation/southwest) +"hUT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"hVk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"hVq" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) "hVs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"hVE" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison/yellowfull, -/area/desert_dam/building/hydroponics/hydroponics) -"hVX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/central) -"hWe" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 +"hVv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) -"hWk" = ( -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/west_tunnel) +"hVw" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"hVN" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/dorms/pool) +"hVR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/building/mining/workshop_foyer) -"hWl" = ( -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hangar_storage) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"hWb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"hWe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"hWg" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"hWp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"hWu" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"hWG" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) "hWH" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/bar_valley_dam) +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) "hWI" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hWU" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"hWO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/bar_valley_dam) +"hXh" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"hXB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hXK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"hXN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" + }, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"hXO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"hWP" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/substation/northwest) +"hYe" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"hYf" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"hYo" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"hXb" = ( -/obj/structure/surface/table/reinforced, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"hYv" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"hYF" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"hYN" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"hYZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/bot/north, +/area/desert_dam/building/water_treatment_one/garage) +"hZg" = ( +/obj/structure/machinery/light, /turf/open/floor/prison/darkred2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"hXl" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/building/substation/west) -"hXy" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/bar_valley_dam) -"hXF" = ( +/area/desert_dam/building/security/holding) +"hZl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"hXL" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_north) -"hXT" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"hXU" = ( -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"hYb" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_two) -"hYh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/emergency_room) -"hYn" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hZq" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river_mouth/southern) +"hZt" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"hZz" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"hYo" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river_mouth/southern) -"hYx" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/sterile_white, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"hZI" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"hZK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"hZL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"hYz" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"hYQ" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/interior/caves/central_caves) -"hYT" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" +"hZN" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"hZa" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"hZX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"iae" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"hZd" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"hZq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Observation" +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"iag" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"iaj" = ( +/obj/structure/closet/crate, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"iam" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"hZA" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/southwest) -"hZH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"hZT" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) -"iaa" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"iac" = ( -/turf/open/floor/prison/whitegreen/north, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"iaA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) -"iaf" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/prison/green/east, -/area/desert_dam/interior/dam_interior/atmos_storage) -"iao" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"iaD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +"iaB" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"iaI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"iba" = ( -/turf/open/floor/coagulation/icon7_8_2, -/area/desert_dam/exterior/valley/valley_mining) -"ibi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"iaE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_northwest) +"iaQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/bar_valley_dam) "ibl" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/asphalt/cement, /area/desert_dam/exterior/telecomm/lz1_south) +"ibm" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/security/prison) "ibn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"ibr" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ibv" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"ibq" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"ibB" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) "ibE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"ibG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 +"ibL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"ibO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_labs) +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) "ibT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"ibW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"icb" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"ich" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) "ick" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"ics" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) -"ict" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"icI" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"icK" = ( +"ico" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 2 +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/hallway) +"ict" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"icw" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"icC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/exterior/telecomm/lz1_south) +"icE" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"icL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) "icM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -23229,133 +23192,97 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"idf" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/landing_pad_one) +"idb" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) "idg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"idh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"idp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"idr" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"idt" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/north_tunnel) -"idz" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_east) -"idP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"idT" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/building/dorms/pool) +"idW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_mining) +"idY" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_storage) "iem" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/holding) -"ieo" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"iet" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/desert_dam/building/administration/lobby) +"iep" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_two) -"iez" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_telecoms) +"iev" = ( +/obj/structure/bed, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"ieB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"ieG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"ieS" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"ifb" = ( +/obj/structure/toilet, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"ife" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_telecoms) +"iff" = ( /obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy/tank{ - icon_state = "jarshelf_7" +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_northeast"; + name = "Checkpoint Lockdown" }, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "ifk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" + }, /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) -"ifl" = ( -/obj/structure/closet/toolcloset, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"ifq" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/workshop) +"ifr" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"ifs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"ifx" = ( -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"ifD" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_central_north) -"ifE" = ( -/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"ifu" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"ifM" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) -"ifH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"ifW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics Breakroom" }, -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) -"ifV" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"iga" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) +/area/desert_dam/interior/lab_northeast/east_lab_containment) "igf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -23365,327 +23292,350 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"igg" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"ign" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"igt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"igA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment Hallway" +"igq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Lobby" }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"igG" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/deathrow) -"ihi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"ihl" = ( -/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ihs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) -"ihD" = ( -/turf/open/desert/excavation/component8/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"ihE" = ( +/area/desert_dam/building/administration/lobby) +"igz" = ( +/obj/structure/stairs, /obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"igB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Surgery" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river_mouth/southern) -"ihW" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"iim" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"iiq" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"iiy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/smes_backup) -"iiI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"iiT" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"igD" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"iiU" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"igH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"iiW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_civilian) -"iiZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"igL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"ijl" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"ijm" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkyellow2/northwest, -/area/desert_dam/building/security/prison) -"ijs" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"igM" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"igS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"ijw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/lobby) -"ijX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Restroom" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) -"ikc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"igW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"igZ" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"ihf" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ihj" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"ihK" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"ihP" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ihS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"ikk" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"ikq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"ikr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ihX" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"ikG" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_northwest) -"ikO" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/armory) -"ikT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Mess Hall" - }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"ill" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"ilo" = ( +/area/desert_dam/interior/dam_interior/workshop) +"iih" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"iik" = ( +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"iio" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"iiH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"iiJ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"ilB" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"iiP" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"ilK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Kitchen" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"ilL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"ilW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"imm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"imt" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, +/area/desert_dam/building/water_treatment_one/hallway) +"iiY" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/holding) +"iiZ" = ( +/obj/item/toy/inflatable_duck, +/turf/open/gm/river/red_pool, +/area/desert_dam/building/dorms/pool) +"ija" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"ijg" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"ijl" = ( +/obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"imx" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/desert_dam/building/substation/northwest) -"imI" = ( -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/building/water_treatment_two/purification) -"imJ" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 +/area/desert_dam/exterior/valley/valley_civilian) +"ijx" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/south_tunnel) -"imP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/west_wing_hallway) -"ine" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "green-new-bridge" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) +"ijy" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/gm/river/darkred_pool, +/area/desert_dam/building/dorms/pool) +"ijB" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"ijF" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_north) +"ijK" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ijN" = ( +/obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"ino" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/area/desert_dam/exterior/river/riverside_south) +"ikn" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"inM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"ikx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/emergency_room) +"ikH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"ikP" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"ilM" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"imb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"inQ" = ( -/obj/structure/platform_decoration{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"imf" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"imw" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"imA" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river_mouth/southern) +"imG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"imT" = ( +/obj/item/clothing/head/welding, +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"ind" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"inf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/meetingrooom) +"ink" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_crashsite) +"inD" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"inF" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) "inS" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/northeast) -"ioc" = ( +/turf/open/floor/whitebluecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"inZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"ioq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"iof" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"ioh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"ioo" = ( +/obj/structure/cargo_container/kelland/right, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) +/area/desert_dam/exterior/valley/valley_labs) +"iot" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) +"iou" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) "ioA" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/temple) -"ioC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +"ioB" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ioJ" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ioR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/area/desert_dam/building/administration/hallway) +"ioL" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ioP" = ( +/obj/structure/platform{ + dir = 1 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"ioV" = ( -/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_northwest) -"ipi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"ipc" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"ipq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ipE" = ( +/turf/open/desert/excavation/component1/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"ipH" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/office) +"ipL" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "ipO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/telecomm/lz1_valley) "ipP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Decontamination" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) +/obj/structure/surface/table, +/obj/item/clothing/head/soft/ferret, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) "ipQ" = ( /obj/docking_port/stationary/trijent_elevator/empty{ id = "trijent_omega"; @@ -23696,23 +23646,34 @@ }, /turf/open/gm/empty, /area/shuttle/trijent_shuttle/omega) -"iqj" = ( -/turf/open/floor/prison/red, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"ipY" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river_mouth/southern) +"iqk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"iql" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) "iqs" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/liquidfood, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"iqA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"iqC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dam/truck/damaged, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) +"iqu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) "iqK" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ @@ -23720,133 +23681,104 @@ }, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"iqR" = ( -/obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"iqU" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"iqW" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/armory) -"irA" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"irY" = ( -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/administration/office) -"isq" = ( +"iqX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"isU" = ( -/obj/structure/stairs{ +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"iro" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"isV" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/warehouse/breakroom) -"itb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"ito" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"itp" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"itx" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"itK" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"itM" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"irJ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, /turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"itP" = ( -/obj/structure/machinery/light, +/area/desert_dam/exterior/valley/valley_wilderness) +"irM" = ( /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"itV" = ( +/area/desert_dam/building/medical/west_wing_hallway) +"irY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/smes_main) +"ise" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitebluecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"iul" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"isi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"isk" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"iss" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"isx" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"iuo" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"iuz" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/caves/east_caves) +"isD" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"isN" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/north_tunnel) +"itv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"itx" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"itP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" }, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"iuE" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"iuH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"iuh" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) -"iuU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/exterior/valley/valley_wilderness) -"iva" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"iup" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_hydro) +"iuq" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"iuR" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"iuT" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) "ivd" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -23854,9 +23786,13 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"ivj" = ( -/turf/open/floor/prison/greencorner/north, -/area/desert_dam/building/dorms/hallway_westwing) +"ivk" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "ivr" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -23865,145 +23801,164 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "ivt" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"ivG" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"ivR" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"iwc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Medical Storage" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"iwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"iwE" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"iwJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_telecoms) -"iwK" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"ixd" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/caves/east_caves) -"ixf" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ixg" = ( -/turf/open/desert/excavation/component7/east, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_crashsite) -"ixp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"ixr" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"ixs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"ivw" = ( +/turf/open/desert/excavation/component3/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"ivJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Observation" }, -/turf/open/floor/prison/bright_clean/southwest, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"iwd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"iwl" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iwp" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iws" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/engine_east_wing) -"ixu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +"iwz" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iwG" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"iwU" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"ixv" = ( -/obj/structure/machinery/light{ - dir = 1 +"iwX" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"iwZ" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/armory) -"ixI" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) -"ixR" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"ixT" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"iyq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/building/dorms/restroom) +"ixi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"ixk" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"ixU" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"iyB" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"iyh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"iyJ" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"izh" = ( +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"iyy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"iyz" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"iyH" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"izk" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"iyK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"iyR" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iyW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/lobby) +"izb" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 1 + dir = 4 }, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/lobby) -"izm" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"izg" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/welding{ + pixel_x = -7; + pixel_y = -2 }, -/turf/open/floor/prison/sterile_white, +/obj/item/device/radio{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/tool/lighter/random{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/garage) +"izj" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"izV" = ( -/turf/open/floor/prison/red, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"izY" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) +"izE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"izO" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_south) "iAf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24011,617 +23966,683 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"iAg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"iAr" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_two/purification) -"iAx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/excavation/component6/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"iAB" = ( -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"iAL" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"iAT" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"iBc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iAz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"iAZ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"iBk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"iBr" = ( +/turf/open/floor/coagulation/icon1_1, +/area/desert_dam/building/water_treatment_two) +"iBF" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"iBe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"iBf" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"iBk" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/building/water_treatment_one/breakroom) -"iBq" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"iBI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"iBM" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"iBN" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"iBO" = ( /obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/northeast) -"iCb" = ( -/obj/structure/stairs{ - dir = 1 +/obj/item/ashtray/bronze, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"iBP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"iBT" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"iCh" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/shuttle/trijent_shuttle/engi) -"iCi" = ( -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"iCk" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"iCu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"iBX" = ( +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"iCy" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"iCB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"iCR" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"iCU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"iDf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) -"iCx" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"iCM" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"iCY" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_medical) -"iDp" = ( -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/hallway) -"iDq" = ( -/obj/structure/barricade/sandbags, -/obj/structure/barricade/sandbags{ +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) +/area/desert_dam/exterior/valley/valley_civilian) +"iDF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) "iDL" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/virology_wing) -"iDO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"iEh" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/substation/southwest) +"iEQ" = ( +/obj/structure/machinery/power/apc/no_power/west, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"iEk" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/temple) -"iEG" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"iEM" = ( -/obj/structure/prop/dam/drill, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"iER" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison/kitchen/southwest, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"iFu" = ( -/obj/structure/machinery/light{ - dir = 4 +"iET" = ( +/turf/open/floor/warnwhite/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"iEU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) +"iEZ" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"iFb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iFd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"iFj" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_northwest) +"iFv" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/warehouse/loading) +"iFy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iFD" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"iFM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) "iFO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/mining/workshop) -"iFT" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"iFW" = ( -/obj/structure/machinery/optable, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"iGe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"iGA" = ( +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"iGG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Containment Pen" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/southern_hallway) -"iGw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"iGz" = ( -/turf/open/floor/prison/darkbrowncorners3/north, -/area/desert_dam/interior/dam_interior/hangar_storage) -"iGD" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/soft/ferret, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"iGZ" = ( /turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"iGY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/interior/dam_interior/garage) +"iHc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Office" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"iHf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"iHa" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"iHd" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"iHh" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"iHi" = ( +/obj/item/trash/semki, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"iHt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"iHr" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"iHH" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"iHu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/lobby) +"iHS" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_catwalk" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"iHZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/lobby) +"iIf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment Hallway" + }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) -"iHP" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"iIc" = ( +"iIn" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engine Room" + name = "\improper Decontamination" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"iIs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"iIm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"iIE" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"iIL" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"iIv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_one/lobby) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/telecomm/lz2_storage) +"iIH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) "iIN" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"iIP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_central_south) -"iIY" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"iJa" = ( -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" - }, -/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/primary_storage) +"iJc" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"iJf" = ( +/obj/structure/closet/cabinet, /turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) +/area/desert_dam/building/dorms/hallway_westwing) "iJt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"iJw" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 150 +/obj/structure/fence, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"iJC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"iJy" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"iJB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Hallway" +/turf/open/floor/chapel/west, +/area/desert_dam/building/church) +"iJK" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"iJM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"iKa" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"iJN" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/dorms/pool) +"iKB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"iKE" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"iKH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/warehouse/breakroom) +"iLa" = ( +/obj/structure/platform, /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) -"iKb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"iLc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"iKx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/landing_pad_one) +"iLd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"iKF" = ( -/turf/open/floor/warnwhite/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"iLq" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) -"iLt" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"iLw" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/emergency_room) -"iLA" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/warden) -"iLB" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"iLk" = ( /obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/north, -/area/desert_dam/interior/dam_interior/disposals) -"iLC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"iLG" = ( -/obj/item/reagent_container/hypospray, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"iLV" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"iLn" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"iLo" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/central_tunnel) +"iLp" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/central_tunnel) +"iLt" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"iMA" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"iMF" = ( -/obj/structure/toilet, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"iMI" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"iNb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) -"iNh" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"iNl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/folder/black, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"iLv" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"iLA" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_south) +"iLN" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"iMm" = ( +/obj/structure/machinery/computer/WYresearch, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"iNn" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/bar_valley_dam) -"iNy" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"iMr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"iMu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_telecoms) +"iMx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/CE_office) +"iME" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"iMG" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"iMW" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"iMX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/tile, +/area/desert_dam/interior/caves/east_caves) +"iNp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"iNt" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"iNE" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) "iNF" = ( /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/interior/caves/temple) -"iNG" = ( -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"iNU" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) "iOa" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"iOF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"iOZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"iPd" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/security/prison) -"iPf" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"iPm" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"iPq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"iPM" = ( -/obj/structure/pipes/vents/pump{ +"iOn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"iOp" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"iOx" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"iPZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"iOA" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/lobby) +"iOH" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_south) +"iPa" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iPi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"iQi" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" - }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_one/purification) -"iQr" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iPA" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"iPM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"iQu" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"iQA" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"iPQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iPW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"iQB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"iQJ" = ( -/obj/structure/disposalpipe/segment, +/area/desert_dam/building/medical/virology_wing) +"iPZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"iQS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"iQZ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"iQg" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"iRb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"iQn" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"iQo" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"iQp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_labs) -"iRf" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"iQt" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"iRt" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgury_observation) -"iRB" = ( -/obj/structure/largecrate/random/barrel/blue, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/garage) -"iRH" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"iQy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/armory) +"iQG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"iQK" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_south) -"iRY" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) -"iSi" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river_mouth/southern) -"iSo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"iQT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/security/prison) +"iQX" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"iRg" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"iSu" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/armory) -"iSI" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"iSQ" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"iRi" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"iRw" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_one/purification) +"iRx" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/emergency_room) -"iTj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/garage) -"iTm" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"iTn" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_central_north) -"iTt" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"iRL" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"iRT" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"iRV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal3" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"iTB" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"iSd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"iSh" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"iSC" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"iSN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"iTI" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"iTN" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"iTT" = ( +/area/desert_dam/interior/dam_interior/control_room) +"iSZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/coagulation/icon8_6, +/area/desert_dam/exterior/valley/valley_mining) +"iTy" = ( +/obj/item/reagent_container/hypospray, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"iTA" = ( +/obj/item/frame/table, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"iTE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) "iTX" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"iUs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +"iUf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"iUu" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"iUN" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"iUS" = ( -/turf/open/floor/freezerfloor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"iUW" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"iVE" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) +"iUn" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/workshop) +"iUq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"iUv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 + }, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/west_tunnel) +"iUO" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/interior/caves/central_caves) +"iUS" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"iUT" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river_mouth/southern) +"iVb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"iVe" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/interior/caves/central_caves) +"iVs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/loading) +"iVv" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"iVy" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/breakroom) +"iVG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/interior/caves/central_caves) "iVN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"iVU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) "iVZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -24629,102 +24650,101 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"iWa" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_south) -"iWc" = ( -/obj/structure/platform{ - dir = 1 +"iWm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"iWo" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"iWM" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"iWC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/interior/dam_interior/south_tunnel) +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) "iWR" = ( -/obj/structure/closet, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/office2) -"iXa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"iXd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/building/church) -"iYh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"iXg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"iXj" = ( +/obj/structure/machinery/optable, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"iXn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"iYm" = ( -/obj/structure/desertdam/decals/road_edge, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"iXs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_cargo) +"iXA" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"iXF" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"iYQ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement/cement4, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) -"iYS" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"iYV" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_two) -"iZc" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2{ +"iXQ" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"iXZ" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_north) +"iYb" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_medical) +"iYc" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"iYk" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Containment Lock"; + unacidable = 0 + }, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"iYs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"iZd" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"iZh" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"iZl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"iYG" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"iZt" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"jac" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_east) -"jad" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper CE Office" +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"iZg" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 150 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"iZh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -24732,34 +24752,10 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"jag" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/darkred2/southwest, -/area/desert_dam/building/administration/lobby) -"jah" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"jal" = ( -/obj/structure/closet/crate, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"jao" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/shuttle/trijent_shuttle/omega) -"jar" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"jau" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"iZp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -24767,127 +24763,218 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"jaB" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"iZE" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"jaF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"iZF" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iZR" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hangar_storage) +"iZZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/obj/item/oldresearch/Blood, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jac" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"jaK" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_northwest) -"jaN" = ( -/turf/open/floor/prison/darkpurplecorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"jaZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"jbi" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/delivery, -/area/desert_dam/exterior/telecomm/lz1_south) -"jbA" = ( -/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"jah" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"jaj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jal" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jao" = ( +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hangar_storage) -"jbD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"jbE" = ( -/obj/structure/machinery/light{ +"jap" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/west_wing_hallway) -"jbI" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/south_valley_dam) -"jbJ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"jca" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"jcg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"jcl" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 15 +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"jaw" = ( +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_one/purification) +"jaM" = ( +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northwest) +"jaO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"jcp" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_labs) -"jcu" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"jba" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"jcB" = ( -/obj/structure/machinery/medical_pod/sleeper, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"jbb" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/building/warehouse/warehouse) +"jbc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jbf" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"jbk" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"jbD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"jbF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jbH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"jcm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"jcF" = ( -/obj/structure/dispenser, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/dam_interior/tech_storage) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"jcC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/straight_jacket, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"jcG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Treatment Controlroom" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) "jcK" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/telecomm/lz2_storage) -"jcO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 8 +"jcL" = ( +/turf/open/desert/desert_shore/shore_corner1/north, +/area/desert_dam/interior/caves/temple) +"jcW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"jdb" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"jdh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"jcX" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jdg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"jdx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"jdK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/garage) +"jdX" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"jee" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"jen" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Hallway" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"jeq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Observation" + }, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"jeC" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"jeP" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"jeW" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jdp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"jfg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"jfm" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"jdA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"jdB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jfn" = ( /obj/structure/stairs/perspective{ color = "#b29082"; dir = 5; @@ -24895,517 +24982,457 @@ }, /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) -"jdG" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_central_south) -"jdK" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"jdL" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/warning/north, -/area/desert_dam/interior/dam_interior/engine_room) -"jdR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"jdV" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"jec" = ( -/obj/structure/platform_decoration{ - dir = 1 +"jfq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"jfs" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_1" }, -/turf/open/asphalt/cement/cement4, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"jfy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"jee" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"jeh" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"jeo" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteyellow/northeast, -/area/desert_dam/interior/dam_interior/break_room) -"jet" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon7_0, +"jfA" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"jfL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) -"jeE" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +"jfR" = ( +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/east_caves) +"jfU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"jfV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_two) -"jeG" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"jeP" = ( -/obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"jeZ" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/treatment_room) -"jfk" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"jgg" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"jfm" = ( -/turf/open/desert/excavation/component3/north, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"jgD" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/north_valley_dam) +"jgK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) -"jfp" = ( +"jgO" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; - name = "\improper Loading" + name = "\improper Treatment Showers" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"jgZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Breakroom" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/meetingrooom) +"jhb" = ( +/turf/open/floor/prison/yellow/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"jhl" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"jho" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"jfq" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"jfr" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/obj/structure/surface/table, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/lobby) -"jfA" = ( +/area/desert_dam/building/warehouse/breakroom) +"jhr" = ( +/turf/open/floor/warnwhite/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"jht" = ( /obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) +"jhv" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"jhx" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"jhG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"jhJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"jhV" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/interior/caves/central_caves) +"jhX" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"jia" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) -"jfX" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_mining) -"jgz" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"jgE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Garage" +"jie" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"jiw" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"jgM" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"jhb" = ( +/area/desert_dam/building/hydroponics/hydroponics) +"jiC" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"jiH" = ( /obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jiO" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"jiS" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"jiY" = ( +/turf/open/floor/prison/darkbrowncorners3/east, +/area/desert_dam/interior/dam_interior/hanger) +"jja" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"jjo" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/landing_pad_two) +"jjt" = ( +/obj/structure/showcase, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jjD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Administration Control Room" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"jjH" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"jkf" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel) +"jko" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"jkq" = ( +/obj/structure/machinery/sentry_holder/colony{ dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"jhj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2 + pixel_x = -24 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jkN" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_wing) -"jhn" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/dorms/hallway_northwing) -"jhp" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"jhZ" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) -"jia" = ( +"jkR" = ( /obj/structure/surface/rack, /obj/item/device/multitool, /obj/item/storage/belt/utility/full, /turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"jil" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/control_room) -"jir" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"jls" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/interior/caves/central_caves) +"jlD" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"jiI" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jlE" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Containment Lock"; + unacidable = 0 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"jiJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jlJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jlL" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"jlP" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jlU" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/warden) +"jlY" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"jmc" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_telecoms) +"jmd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jmf" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Archives" }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"jiP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"jiT" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"jiV" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/valley/valley_labs) -"jiZ" = ( +/area/desert_dam/building/administration/archives) +"jmg" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"jmm" = ( /turf/open/floor/prison/darkred2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"jje" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/central_tunnel) -"jjh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Visitation" - }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/southern_hallway) -"jjj" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/green/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"jjk" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/central) -"jjl" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) -"jjq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Workshop" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"jjv" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) -"jjE" = ( -/obj/structure/disposalpipe/segment{ +"jmn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"jko" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"jkw" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"jkz" = ( -/turf/open/floor/coagulation/icon7_1, -/area/desert_dam/building/water_treatment_two) -"jkD" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"jkO" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/building/substation/southwest) -"jkQ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"jkY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"jlj" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"jmv" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/warden) -"jlt" = ( -/turf/open/floor/prison/bluecorner, -/area/desert_dam/building/administration/lobby) -"jlI" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"jmK" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/prison/red/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"jmR" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/valley/valley_labs) +"jne" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_two) +"jnk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/armory) +"jnI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) -"jlL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"jnL" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"jnM" = ( +/obj/effect/decal/sand_overlay/sand2, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"jlP" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jmd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jmi" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/overseer_office) -"jmj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/interior/dam_interior/central_tunnel) +"jnS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_north) +"jop" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"jmk" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) -"jmz" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"joB" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 4 }, /obj/structure/platform_decoration{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) -"jmC" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"jmE" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"jmK" = ( -/obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"jmS" = ( +"joW" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"jpj" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"jpk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_hydro) -"jnf" = ( -/obj/effect/decal/sand_overlay/sand1{ +"jpx" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"jni" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/break_room) -"jnr" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"jnA" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"jnF" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean/southwest, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"jpy" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) -"jnI" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"jnM" = ( +"jqi" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"jql" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_wilderness) -"jnS" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"jqH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) -"jnY" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"joG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"joL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"joZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"jpm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"jpr" = ( +"jqL" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"jqU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"jrd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/hallway) -"jps" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"jrn" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/building/substation/northwest) +"jrw" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"jpF" = ( -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"jpG" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"jqR" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_isolation) -"jqZ" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"jrA" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"jrf" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jrF" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/interior/dam_interior/south_tunnel) -"jrk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "jrO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"jrQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"jrU" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_labs) +/obj/structure/machinery/computer/guestpass, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/office) "jrV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_south) -"jrW" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"jsm" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"jsz" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"jsa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"jsE" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"jsF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"jsI" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"jsg" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"jsi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/interior/dam_interior/tech_storage) +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/virology_wing) +"jsz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"jsM" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/east_caves) "jsN" = ( /obj/structure/platform{ dir = 1 @@ -25419,4441 +25446,3608 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"jtb" = ( -/obj/structure/bed/chair{ - dir = 4 +"jtg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"jtx" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jtl" = ( +/obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"jtC" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"juj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Packaging" + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"jtK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/holdout, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/area/desert_dam/building/hydroponics/hydroponics_storage) +"jun" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"juy" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"juD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"juH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"jtR" = ( -/turf/open/desert/dirt/rock1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"juh" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) -"juq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"juD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "juO" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"jvf" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"jvt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/office) -"jvb" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"jvd" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jvn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"jvq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"jvG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"jvW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/east_caves) -"jvs" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"jwh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"jvt" = ( -/obj/structure/closet/secure_closet/injection, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"jvy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"jwc" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/CE_office) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) "jwn" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/building/medical/garage) +"jwC" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/workshop) "jwI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/interior/caves/east_caves) "jwL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"jwO" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"jxb" = ( -/turf/open/desert/excavation/component3/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"jxg" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"jxh" = ( -/obj/structure/platform{ +/obj/structure/machinery/computer/med_data, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_south) -"jxp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"jwQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"jxz" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"jxI" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) -"jyt" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"jxH" = ( +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"jxV" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"jxX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"jya" = ( +/turf/open/desert/excavation/component2/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"jyd" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/exterior/valley/valley_mining) +"jyx" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) "jyF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"jyK" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" + dir = 4; + id = null; + name = "\improper Elevator Lock" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"jyG" = ( -/obj/structure/platform{ +/turf/open/floor/prison/cell_stripe/east, +/area/shuttle/trijent_shuttle/lz1) +"jzd" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"jzf" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"jzm" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_hydro) +"jzu" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"jyJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/north_wing_hallway) -"jzs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"jzz" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_cargo) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) "jzB" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"jzC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"jzE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"jAc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"jzF" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"jzI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"jzJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"jzO" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) +/area/desert_dam/building/warehouse/warehouse) +"jAf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) "jAj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_10, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"jAv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"jAw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"jAB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"jAF" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/north_valley_dam) +"jAK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/red/west, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"jAT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"jBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"jAZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"jBj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_mining) -"jBn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) "jBu" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"jBB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"jBN" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_south) -"jBS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"jBW" = ( -/turf/open/floor/whiteyellowcorner/west, -/area/desert_dam/building/water_treatment_one/breakroom) -"jCm" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" }, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"jCq" = ( -/obj/structure/pipes/standard/manifold/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) -"jCr" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"jCB" = ( +"jBB" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"jCH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jBJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/office) +"jBW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"jBZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"jCt" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_northwest) +"jCy" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) "jCJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall, /area/desert_dam/building/dorms/hallway_northwing) -"jCP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"jCQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"jDm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +"jCO" = ( +/obj/structure/stairs{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jDq" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) "jDv" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/interior/caves/temple) -"jDx" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) +/area/desert_dam/exterior/valley/valley_labs) "jDG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"jDU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"jEe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"jEg" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/dorms/pool) -"jEt" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"jDK" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"jDM" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jDN" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/exterior/valley/valley_hydro) +"jEd" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jEx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, /turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"jEv" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"jEG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/seeds/riceseed, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "jEQ" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"jES" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"jET" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/east_caves) +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/mining/workshop) "jFf" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"jFi" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/south_valley_dam) -"jFm" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"jFu" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"jFG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"jFo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_hydro) +"jFp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jFq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"jFs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) +/area/desert_dam/building/warehouse/warehouse) +"jFA" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) "jFI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"jFP" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"jGc" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) -"jFZ" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"jGq" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jGC" = ( -/obj/structure/cargo_container/hd/right/alt, +"jGe" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"jGf" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"jGE" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_hydro) -"jGH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/interior/dam_interior/engine_east_wing) +"jGg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"jGI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Restroom" +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"jGz" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"jGP" = ( -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/bar/bar) -"jGS" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel) +"jGD" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) "jGT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"jHo" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_northwest) +"jHs" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jHB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"jHG" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_south) +"jHK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder, +/obj/item/device/assembly/signaller, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"jHM" = ( -/turf/open/floor/prison/yellowcorner/north, -/area/desert_dam/building/hydroponics/hydroponics) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "jHR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"jHS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"jHV" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"jId" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 1 +"jHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/warden) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"jHZ" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"jIe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"jIh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "jIj" = ( -/turf/open/floor/filtrationside/west, -/area/desert_dam/exterior/valley/valley_mining) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) "jIz" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) +/obj/structure/machinery/optable, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"jIC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) "jIH" = ( /obj/structure/window/framed/colony, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_storage) +"jII" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"jIJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jIP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"jIS" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "jJa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"jJb" = ( -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"jJd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +"jJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"jJe" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_wilderness) -"jJr" = ( -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/substation/northwest) -"jJK" = ( -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"jJL" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"jJM" = ( -/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) -"jJO" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"jJS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"jKe" = ( -/obj/structure/platform, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/telecomm/lz1_valley) -"jKp" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/virology_wing) -"jKu" = ( -/turf/open/floor/prison/darkbrowncorners3/west, -/area/desert_dam/interior/dam_interior/hanger) -"jKD" = ( +"jJE" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"jJF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"jKE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/CE_office) -"jKJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"jKK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"jJH" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/tile, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"jJJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"jJS" = ( +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_labs) -"jKN" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +"jJV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"jJX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/chapel/west, -/area/desert_dam/building/church) -"jKS" = ( -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/church) -"jLn" = ( -/obj/structure/cargo_container/hd/right, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"jLW" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"jLY" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"jMg" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"jMH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Emergency Room" - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"jKb" = ( +/turf/open/floor/coagulation/icon6_8_2, +/area/desert_dam/exterior/valley/valley_mining) +"jKo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) -"jMT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/disposalpipe/segment{ +"jKE" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"jKL" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jNe" = ( -/obj/structure/toilet{ - dir = 8 +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"jKQ" = ( +/turf/open/desert/excavation/component1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"jKT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"jNf" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"jNi" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"jNq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"jNs" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_central_north) -"jNA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/darkred2, -/area/desert_dam/building/administration/lobby) -"jNB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"jNL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"jNR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"jNV" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"jNW" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"jOq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"jKU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "\improper Operating Theatre 1" + name = "\improper Security Checkpoint" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"jPa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"jPb" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"jPf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"jPz" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/interior/caves/central_caves) -"jPK" = ( -/turf/open/desert/excavation/component9/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"jPT" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/light{ - dir = 1 - }, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"jLb" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jLp" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"jLr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/northwest, -/area/desert_dam/interior/dam_interior/disposals) -"jPW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"jQb" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"jQc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"jQi" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"jLt" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"jLz" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/workshop) +"jLB" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"jQk" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/emergency_room) -"jQs" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) -"jRe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Floodgate Controlroom" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"jRf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"jRC" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"jRP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"jRV" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"jLD" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"jLR" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"jMc" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"jRY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"jMk" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"jSF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"jMr" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"jMK" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jMM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) -"jSG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 1" +"jMP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/whiteyellowfull/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) -"jSH" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"jSS" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"jMT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"jTa" = ( +"jMW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"jMZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/west_wing_hallway) -"jTw" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_central_south) -"jTC" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"jTK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet/edge/north, -/area/desert_dam/building/administration/meetingrooom) -"jTN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"jUe" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"jUm" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"jUr" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"jUw" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/item/paper_bundle, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"jUH" = ( -/obj/structure/cargo_container/trijent/right/alt, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/telecomm/lz2_containers) -"jUR" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river_mouth/southern) -"jVe" = ( +"jNi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"jVu" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"jVv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"jVF" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"jVN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) -"jWc" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"jWe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"jNB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"jNC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"jWl" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"jNH" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"jNJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jWw" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"jNU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/surface/table, -/turf/open/floor/darkred2/northwest, -/area/desert_dam/building/administration/lobby) -"jWC" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"jNZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"jWE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"jWQ" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"jOf" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/interior/dam_interior/atmos_storage) +"jOj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"jOq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/substation/west) +"jOw" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"jOz" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"jOB" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"jXa" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/workshop) -"jXi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"jXp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"jXv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"jOE" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"jOF" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"jXE" = ( -/turf/open/floor/wood, -/area/desert_dam/building/security/southern_hallway) -"jXL" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jPb" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"jPh" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jYa" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/river/pool, -/area/desert_dam/building/dorms/pool) -"jYc" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"jYj" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_mining) -"jYp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Observation" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgury_observation) -"jYG" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) -"jYP" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/warehouse) -"jYW" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"jPm" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform{ - dir = 4 + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"jPr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"jPK" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_cargo) +"jPP" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/darkbrowncorners3/west, +/area/desert_dam/interior/dam_interior/hanger) +"jPQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"jPW" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"jZe" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"jZi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jPX" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" + }, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"jQi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"jZr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"jQj" = ( +/obj/structure/closet/athletic_mixed, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"jZt" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"jZN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/telecomm/lz2_storage) -"jZO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"kal" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"kay" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"jQk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"jQm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engineering Hallway" + name = "\improper Filtration" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"kaz" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"jQq" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"kaE" = ( -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/bonegel, -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"jQt" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"jQu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"kbb" = ( -/obj/structure/platform_decoration{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"jQv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/tile, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"jQD" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_northwest) -"kbo" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kbv" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/emergency_room) -"kbx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"jQJ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"kbH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"kbI" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"kbM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/desert_dam/exterior/valley/valley_crashsite) +"jQL" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"kcf" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/east_caves) -"kcj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_two) +"jRf" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_1" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"kcu" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/mining/workshop) -"kcv" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"kcH" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/exterior/telecomm/lz2_containers) -"kcM" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 25 +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"jRh" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"jRK" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"kcT" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/north_valley_dam) -"kcU" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"kdg" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/communications, +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"jRO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"jRP" = ( +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"jRS" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/lobby) +"jRW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"jRY" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jSa" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"kdG" = ( -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"keP" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) -"keX" = ( +"jSg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"keY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/central_tunnel) -"kfb" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kff" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"kfk" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"kfp" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) -"kfu" = ( -/turf/open/floor/prison/whitegreen/east, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/west_wing_hallway) -"kfy" = ( +"jSG" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_crashsite) +"jSM" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"jSN" = ( /turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/lobby) -"kfz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/area/desert_dam/building/medical/east_wing_hallway) +"jSR" = ( +/turf/open/desert/excavation/component8/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"jSS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jTf" = ( +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"jTg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"kfC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/turf/open/floor/whitepurplecorner/east, -/area/desert_dam/building/medical/chemistry) -"kfD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"jTi" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"kgf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"jTp" = ( +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_hydro) +"jTr" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 + }, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"jTx" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"jTH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"jTL" = ( +/obj/effect/blocker/toxic_water/Group_2, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"kgo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/area/desert_dam/building/water_treatment_two/purification) +"jTW" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"jTZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"jUb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"jUj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/telecomm/lz2_storage) +"jUv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"jUx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"jUC" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"jUW" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"kgs" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/interior/dam_interior/lobby) +"jUY" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"jVq" = ( +/obj/structure/bed/chair{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"jVv" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"kgu" = ( +"jVF" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"jVI" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_north) +"jVO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"kgG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached6, -/area/desert_dam/exterior/telecomm/lz2_storage) -"khf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jVQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"jWh" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"jWv" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_0" +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"jXa" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, -/turf/open/floor/coagulation/icon2_0, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_two/purification) -"khw" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitered, -/area/desert_dam/building/medical/primary_storage) -"khy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/landmark/nightmare{ - insert_tag = "minievac_westresearch" +"jXc" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"jXg" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/east_wing_hallway) +"jXj" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"jXp" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"khH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"kii" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"jXs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"kiJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"kiP" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) -"kiR" = ( -/obj/structure/bed/chair{ - dir = 4 +"jXv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/wood, -/area/desert_dam/building/security/southern_hallway) -"kiY" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"kjb" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"jXx" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"kjk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"kjl" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 1; - pixel_y = 31 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"jXA" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/temple) -"kjs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet15_15/west, /area/desert_dam/building/bar/bar) -"kjB" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/landing_pad_one) -"kjM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"kjQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"kjT" = ( -/obj/structure/bed, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/deathrow) -"kjY" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/central_tunnel) -"kkd" = ( -/turf/open/floor/coagulation/icon0_8, +"jXD" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"jXO" = ( +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_mining) -"kko" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/straight_jacket, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"kkA" = ( -/obj/structure/platform{ - dir = 4 +"jXQ" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"jYh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) -"kkP" = ( -/obj/structure/sink, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"kkS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_telecoms) -"klb" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/surgery_room_one) -"kln" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement2, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"jYl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_south) +"jYB" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement7, /area/desert_dam/exterior/valley/valley_wilderness) -"klJ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"jYH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"klL" = ( -/obj/item/restraint/handcuffs, -/obj/item/weapon/baton, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"klN" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"jYJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"jYP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/central) +"jZj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"kmh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"jZm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"jZp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"jZw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"jZG" = ( +/turf/open/floor/coagulation/icon7_8, /area/desert_dam/exterior/valley/valley_hydro) -"kmq" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) -"kmr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"kms" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"kmu" = ( -/obj/effect/decal/sand_overlay/sand2{ +"kah" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"kmE" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/substation/west) -"kmN" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"kmU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"kno" = ( -/obj/structure/target, -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"knu" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"kaz" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"kaD" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) -"kny" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"knH" = ( -/obj/structure/platform, +/turf/open/floor/whiteblue, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"kaU" = ( /obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"knN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/telecomm/lz2_storage) -"kog" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"kok" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kbe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/darkpurplecorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kbi" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"kox" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"koH" = ( -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"koS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/building/water_treatment_two/purification) -"koY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"kpr" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"kpv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"kpK" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"kqb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/poddoor/shutters{ - dir = 2 +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"kbj" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"kqe" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_hydro) -"kqg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"kqq" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/northeast, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"kqr" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"kbo" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kbw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"kqH" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"kci" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"kqJ" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"kqO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"kck" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/cheesewedge, -/turf/open/floor/prison/sterile_white, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kcq" = ( +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"kqQ" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/control_room) -"krg" = ( -/obj/structure/platform{ +"kcz" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"krk" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/treatment_room) -"kry" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"krC" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"krF" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/whitered/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel) +"kcD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"kcH" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/exterior/telecomm/lz2_containers) +"kcJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/warehouse) +"kcL" = ( +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_two) -"krG" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"krO" = ( +"kcY" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/building/security/lobby) +"kdg" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"kdk" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/lobby) +"kdo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"krR" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"kdq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"krX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"kdr" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_mining) +"kdJ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"kdK" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"ksb" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"ksf" = ( -/turf/open/desert/excavation/component8/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"ksk" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_labs) -"ksl" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/exterior/valley/valley_mining) -"ksr" = ( +/area/desert_dam/exterior/valley/north_valley_dam) +"kec" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"ken" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"keI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kft" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kfN" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_isolation) -"kst" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/virology_wing) -"ksY" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"ktb" = ( -/obj/structure/computerframe, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"ktk" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"kfQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 3" }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"ktm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellow/southeast, -/area/desert_dam/interior/dam_interior/break_room) -"kts" = ( -/turf/open/floor/whiteyellow/southeast, -/area/desert_dam/building/water_treatment_one/breakroom) -"ktt" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"kfR" = ( +/obj/structure/safe, +/obj/item/weapon/sword/katana/replica, +/obj/item/reagent_container/food/drinks/bottle/absinthe, /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"kfU" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"ktw" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_south) -"kty" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"ktD" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ktJ" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/temple) -"kue" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"kuo" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_northwest) -"kuO" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"kgn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_two/purification) +"kgA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_two) -"kvr" = ( -/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kgD" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_civilian) +"kgF" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/armory) +"kgK" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"khf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/tile, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"khk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) -"kvz" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"kvA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_north) -"kvL" = ( -/obj/structure/disposalpipe/segment{ +"khs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"khE" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/north_valley_dam) -"kvU" = ( -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"kwq" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"khS" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"khT" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"khZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"kxj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"kxH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"kib" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kiq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"kxK" = ( -/turf/open/floor/prison/greencorner/north, -/area/desert_dam/building/substation/west) -"kxS" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_crashsite) -"kxU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/prison/darkpurple2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"kyp" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/warehouse) +"kiz" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"kyy" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/folder/black_random, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"kyQ" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"kiA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"kyV" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"kzd" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kiD" = ( +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/church) +"kiE" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 8; pixel_x = 24 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/west_tunnel) -"kze" = ( -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/staffroom) -"kzx" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) -"kzy" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"kzQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"kzT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/largecrate/random/secure, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) -"kAf" = ( -/turf/open/floor/coagulation/icon0_4, -/area/desert_dam/exterior/valley/valley_mining) -"kAq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"kAV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"kBd" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"kiF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/garage) -"kBD" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"kiP" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"kiY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) -"kCr" = ( -/obj/structure/platform{ +"kjb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) -"kCt" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"kjc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"kCv" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"kCK" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/smes_backup) -"kDM" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/north_tunnel) -"kDU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"kjl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"kju" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_mining) +"kjC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"kjL" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"kDV" = ( -/turf/open/desert/desert_shore/desert_shore1/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_labs) -"kEi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"kEn" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/telecomm/lz1_south) -"kEB" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_central_south) -"kEL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"kFa" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"kFb" = ( -/obj/structure/machinery/light{ +"kjR" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/security/prison) +"kka" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"kkb" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/CE_office) -"kFc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"kFg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"kFo" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/water_treatment_one/hallway) +"kkl" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"kkr" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) -"kFr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"kFA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Filtration" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"kku" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"kFD" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/interior/dam_interior/smes_backup) -"kFI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Surgery" - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"kky" = ( +/obj/structure/machinery/light, /turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"kGa" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"kGc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"kGf" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/building/medical/lobby) +"kkD" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kkJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/armory) -"kGt" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"klg" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_civilian) -"kGv" = ( -/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) -"kGV" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_central_south) -"kHj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"kHk" = ( -/obj/structure/kitchenspike, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"kHl" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"kHs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"kHx" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/treatment_room) -"kHL" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_isolation) -"kHX" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"kIb" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"kIf" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/southern_hallway) -"kIo" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_telecoms) -"kIy" = ( -/obj/structure/disposalpipe/segment{ +"kli" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"kIC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"kIP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"kIR" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_labs) -"kJD" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"klj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"kJK" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/telecomm/lz1_valley) -"kJP" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"klA" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"klG" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal7" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"kJX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/landing_pad_two) +"klQ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"klS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"kJZ" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Archives" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/archives) -"kKf" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"kKh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"kKl" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_catwalk" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"kmb" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"kmo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Chemistry" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"kKu" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"kmr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"kmK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"kKy" = ( -/obj/structure/platform_decoration{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"kmU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"kmX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/north_tunnel) -"kKK" = ( -/obj/structure/pipes/vents/pump/on, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"knf" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"kKX" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"kLk" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"kLn" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/telecomm/lz2_storage) -"kLu" = ( +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/disposals) +"kni" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"kLw" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"kLT" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) -"kLZ" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"kMf" = ( -/turf/open/desert/excavation/component6/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"kMg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper CMO's Officer" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kMo" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"kMr" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/west_wing_hallway) -"kMB" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_civilian) -"kMI" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/CMO) +"knj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"kMK" = ( -/turf/open/desert/excavation/component5/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"kNp" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"kNt" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"knG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"knO" = ( +/obj/structure/platform, /turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/landing_pad_one) -"kOd" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 +/area/desert_dam/exterior/telecomm/lz1_valley) +"knQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/obj/item/storage/pill_bottle/dexalin, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/interior/dam_interior/garage) +"knT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"kOr" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"knW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"kOR" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"kOX" = ( -/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"kPb" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"kPs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"kPA" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"knZ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"kQx" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"kQB" = ( -/turf/open/floor/coagulation/icon8_7_2, -/area/desert_dam/building/water_treatment_two/purification) -"kQD" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_labs) -"kQF" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"kQT" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/lobby) -"kQZ" = ( -/turf/open/mars/mars_dirt_12, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"kRz" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"koa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"koc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"kod" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"kRK" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_northwest) +"kor" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/excavation/component7/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"koy" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ - icon_state = "2,1" + icon_state = "3,7" }, /turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"kRN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"kSc" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"kSi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/exterior/river/filtration_a) +"koM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"koO" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security Office Space" + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"kSt" = ( -/turf/open/floor/filtrationside/northwest, -/area/desert_dam/exterior/valley/valley_mining) -"kSC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"kSJ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/security/office) +"koS" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/chemistry) +"koU" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"kTf" = ( -/obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/workshop) -"kTj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"koX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/garage) +"kpo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreen/east, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/west_wing_hallway) -"kTl" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, +"kpD" = ( +/turf/open/desert/excavation/component3/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"kpH" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"kpR" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"kqa" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"kqd" = ( +/turf/open/floor/coagulation/icon8_4, /area/desert_dam/exterior/valley/valley_hydro) -"kTn" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/chapel, -/area/desert_dam/building/church) -"kTt" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/temple) -"kTv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"kTN" = ( -/obj/structure/bed/chair{ - dir = 4 +"kqj" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"kqk" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/interior/caves/central_caves) +"kqn" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"kTQ" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"kTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"kqq" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kqs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kqt" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/workshop) -"kUe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"kUl" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"kqv" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_one) +"kqB" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"kqD" = ( +/turf/open/floor/coagulation/icon1_7, +/area/desert_dam/exterior/valley/valley_hydro) +"kqL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/interior/dam_interior/west_tunnel) -"kUs" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"kUI" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"kUV" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"kVB" = ( -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/administration/overseer_office) -"kVC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"kVF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"kqO" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"kqR" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"krg" = ( +/turf/open/floor/dark, +/area/desert_dam/building/church) +"kry" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"kVH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +/area/desert_dam/exterior/valley/bar_valley_dam) +"krK" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"kVI" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle/red, -/area/desert_dam/interior/caves/temple) -"kVV" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/virology_isolation) -"kVZ" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"kWa" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"kWc" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"kWe" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"kWh" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kWG" = ( -/obj/structure/surface/table, -/obj/item/device/autopsy_scanner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"kWN" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"kWV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"kWX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"kXb" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/interior/dam_interior/hanger) -"kXg" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"kXt" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/area/desert_dam/building/water_treatment_one/hallway) +"krR" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/west_tunnel) -"kXy" = ( -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"kXA" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office2) -"kXK" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"krW" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"krY" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_central_north) -"kXV" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"kYu" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"kYA" = ( -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"kYT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"kZt" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"kZM" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"kZO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"kZV" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"kZX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"kZZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Breakroom" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/meetingrooom) -"lac" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +"ksa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"lar" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"ksk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, -/obj/structure/surface/rack, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"las" = ( +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ksw" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"laC" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/prison) -"laJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"laO" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"laR" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"laT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"ksx" = ( +/obj/structure/platform{ dir = 1 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"ksy" = ( +/obj/structure/closet/secure_closet/injection, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"ksW" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"ksY" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"ktb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"lbr" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/central_caves) -"lbu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Checkpoint" - }, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"lbI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"ktE" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_mining) +"ktJ" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/temple) +"kuj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"kup" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"kuz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"lcj" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/lz1) -"lck" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"kuH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"kuO" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"lcl" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/exterior/valley/valley_wilderness) -"lcy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"kuR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"kvc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"kvh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/trash/kepler, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/chunk, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"lcD" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"kvB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"lcE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"lcH" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"lcL" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"lcQ" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"lcX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"ldq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"kvU" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/central_caves) +"kvX" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kvY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_north"; + name = "Checkpoint Lockdown" }, +/turf/open/floor/prison/red/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"kwa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"ldr" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"ldy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/medical/garage) -"ldQ" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"ldR" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"kwp" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"led" = ( -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"lek" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river_mouth/southern) +"kwt" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"kwS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"kwT" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kwU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"lep" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"kwV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/south_valley_dam) +"kyb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"leN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Evidence" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"kyc" = ( +/obj/structure/stairs{ + dir = 8 }, /turf/open/floor/dark, -/area/desert_dam/building/security/evidence) -"leW" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"leZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/area/desert_dam/building/church) +"kyk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/staffroom) +"kyq" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) -"lfb" = ( -/obj/item/frame/table, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"lfp" = ( -/obj/structure/machinery/light{ +"kyu" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/security/prison) -"lfC" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"lfK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"lfM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"lfQ" = ( -/obj/effect/decal/cleanable/blood, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_south) +"kyy" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"kyD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) -"lgb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kyT" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"kyW" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/central_caves) +"kyX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"kyZ" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"lgl" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"kza" = ( +/obj/structure/stairs{ dir = 8 }, +/obj/structure/platform, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"lgy" = ( +/area/desert_dam/exterior/valley/valley_wilderness) +"kzw" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"kzD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"lgC" = ( -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel/manager, -/obj/structure/surface/table/reinforced, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"kzM" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"lhl" = ( -/obj/structure/surface/table, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) -"lhm" = ( -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"lht" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"lhx" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/southern_hallway) -"lhy" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"lhD" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"lhV" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/exterior/valley/valley_mining) -"lhX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/central_tunnel) -"lij" = ( -/obj/structure/machinery/light{ +"kzQ" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"liC" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"kzV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/staffroom) -"liI" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"kAq" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kAs" = ( +/turf/open/floor/warnwhite/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"kAx" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"liL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"kAH" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"kAM" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/east_caves) +"kAR" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"liW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"liZ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/hanger) -"ljb" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/hanger) -"ljg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) -"ljh" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"ljq" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kAV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"kBe" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kBq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"kBP" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"kBZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) -"ljw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/substation/southwest) -"ljy" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_central_south) -"ljA" = ( -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"ljE" = ( -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/east_caves) -"ljN" = ( -/obj/structure/platform{ +"kCk" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/south_tunnel) -"ljO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dam/van{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"ljP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kCE" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/smes_backup) +"kDd" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"ljW" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"lkf" = ( +/area/desert_dam/exterior/valley/north_valley_dam) +"kDK" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"kDS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"kEb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"kEw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Containment" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"kEA" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"lki" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"lkk" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_main) -"lkl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/desert_dam/building/medical/chemistry) +"kEF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"lkq" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"lks" = ( -/obj/structure/bed/chair{ - dir = 4 + dir = 10 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/lobby) -"lku" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"lkx" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"kEL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"kFa" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_cargo) -"lky" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"lkC" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river_mouth/southern) -"lkD" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"kFb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"kFf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"kFi" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"kFj" = ( +/turf/open/floor/prison/darkbrowncorners3/west, +/area/desert_dam/interior/dam_interior/hanger) +"kFq" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"lkM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"llh" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"lll" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"llq" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"kFt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"llt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_5, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"llS" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"llZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"lmc" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"lmk" = ( /turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"lmy" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"lmM" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_hydro) -"lmN" = ( -/obj/structure/platform_decoration{ - dir = 4 +/area/desert_dam/interior/dam_interior/engine_room) +"kFu" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"lnh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"kFI" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/armory) +"kFT" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"lnC" = ( -/turf/open/desert/desert_shore/shore_corner1/north, -/area/desert_dam/interior/caves/temple) -"lnK" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"lom" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"lop" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/area/desert_dam/interior/dam_interior/smes_backup) +"kGy" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"kGR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"lox" = ( -/obj/structure/urinal{ - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"loB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/building/warehouse/warehouse) -"loG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"kGS" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"loJ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/lobby) +"kHa" = ( +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"kHc" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"kHq" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"kHy" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_civilian) -"loK" = ( -/obj/structure/platform{ - dir = 1 +"kHE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"loN" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kHF" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kHI" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/prison/yellowfull, -/area/desert_dam/building/hydroponics/hydroponics) -"loQ" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_hydro) -"lpe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Restroom" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"kIc" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"kIr" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"kIs" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"kIu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"lpk" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_hydro) -"lpn" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"lpI" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"kIP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) -"lpO" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"lpS" = ( +"kJe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/telecomm/lz2_storage) -"lpV" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"kJl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_cargo) -"lqi" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northeast) -"lql" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/south_tunnel) -"lqv" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"lqx" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"lqH" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/emergency_room) -"lrm" = ( -/turf/open/desert/excavation/component1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"lrx" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/surface/table, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"lrF" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"kJt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"lrL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"kJP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"kKf" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"kKw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/warehouse) +"kLb" = ( +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/bar/bar) +"kLj" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/dorms/pool) -"lrO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"kLx" = ( /obj/structure/surface/table, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/water_treatment_one/lobby) -"lrS" = ( -/turf/open/floor/darkredcorners2/east, -/area/desert_dam/building/administration/lobby) -"lrY" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"lsh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"lsi" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"kMc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kMl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"kMG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"kMH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kMJ" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/prison) +"kMQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"lsR" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"lsY" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/administration/control_room) -"ltf" = ( +/area/desert_dam/building/cafeteria/cafeteria) +"kMS" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"kMY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/telecomm/lz1_south) -"ltj" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"kNj" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"lto" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt/desert_transition_edge1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"kNu" = ( +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) -"ltx" = ( -/obj/structure/machinery/light{ +"kNz" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"kNU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"ltE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"ltN" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"kOa" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"kOc" = ( +/obj/structure/closet/l3closet/virology, /turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"ltQ" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"luf" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/overseer_office) -"luq" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"lux" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) -"luB" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/desert_dam/building/medical/virology_wing) +"kOr" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"luD" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"luG" = ( -/obj/structure/pipes/vents/pump{ +/area/desert_dam/building/water_treatment_one/hallway) +"kOx" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"kOC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"luQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"luT" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"lvr" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"lvx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"lvW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"kOI" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river_mouth/southern) -"lvX" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"lvZ" = ( -/obj/structure/platform{ +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"kOR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"kPc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/staffroom) +"kPj" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"kPk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"kPo" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/telecomm/lz1_south) +"kPr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/primary_storage) +"kPs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"kPG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/desert/dirt/dirt2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) -"lwE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Surgery" +"kPN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"kPO" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kPR" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"kPT" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"kQc" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) +"kQz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Workshop" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"kQD" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/south_tunnel) +"kQM" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"kQS" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"kRa" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_south) +"kRB" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"lxa" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"kRC" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/warden) +"kRF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"lxg" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/north_valley_dam) -"lxl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"lxn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"lxq" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"kSd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"kSl" = ( /obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"lxA" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") + }, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"kSp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"lxE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"kSu" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"kSH" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 10 }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"kSI" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"lxL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"kST" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/donkpocket, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"lyh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"lyp" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kSV" = ( +/obj/structure/floodgate, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"kTf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/mining/workshop_foyer) +"kTm" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"kTr" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"lyq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Containment Pen" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kUv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/southern_hallway) +"kUw" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"kUB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hangar" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/medical/virology_wing) -"lyt" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/treatment_room) -"lyw" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kUS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lyB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"lyI" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"kVp" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kVQ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/telecomm/lz2_storage) -"lzc" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_east) -"lzq" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"lzv" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"lzw" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"kVS" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"lzN" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_one/lobby) -"lAc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"lAv" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_hydro) -"lAy" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"kWh" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kWn" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"lAL" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"lAN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"kWA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) -"lAO" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"kWB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"lAP" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_mining) -"lBb" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"kWE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"lBe" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"lBg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"lBj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"lBG" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/southwest) -"lBP" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"lCa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"lCq" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/bluecorner, -/area/desert_dam/interior/dam_interior/tech_storage) -"lCy" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/emergency_room) -"lCE" = ( -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"lCJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"lCP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Breakroom" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"kWI" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"kWW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"kXt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kXA" = ( +/obj/structure/machinery/light, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"lDa" = ( -/turf/open/floor/prison/darkbrowncorners2/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"lDi" = ( -/obj/structure/stairs{ - dir = 1 +/area/desert_dam/interior/dam_interior/north_tunnel) +"kXK" = ( +/obj/item/storage/fancy/vials/random, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"kYe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"kYk" = ( +/obj/structure/prop/dam/boulder/boulder2{ + desc = "A large rock. It looks very hard to get around." }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"lDw" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"lDR" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/desert/desert_shore/shore_edge1/east, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) -"lDS" = ( -/turf/open/floor/filtrationside/east, -/area/desert_dam/exterior/valley/valley_mining) -"lDT" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lEk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"lEo" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"lEC" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"lEK" = ( -/obj/structure/machinery/light{ +"kYl" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"kYm" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"lEN" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"lEV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, /turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) -"lEW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"lFc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/desert_dam/exterior/valley/valley_wilderness) +"kYr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"lFA" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/security/prison) +"kYu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_east) -"lFK" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/cheesie, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"lFM" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"lFR" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"lGf" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"lGn" = ( -/obj/structure/bed/chair{ +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"kYA" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kYI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ dir = 4 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"lGu" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/blue/southeast, -/area/desert_dam/building/administration/control_room) -"lGJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"kZe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"kZj" = ( +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/hanger) -"lGK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"kZm" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"kZw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Secure Tech Storage" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"lGL" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"lHb" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"lHd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"lHp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"lHF" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurple2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"lHG" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/east_caves) -"lHP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"lHR" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"lHS" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"lHV" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"lHY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Mess Hall" - }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"kZC" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"kZH" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"kZL" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"kZN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cafeteria) -"lId" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/excavation/component6/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"lIu" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"lIw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"lIE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Garage Breakroom" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/southeast, -/area/desert_dam/interior/dam_interior/garage) -"lIL" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"laa" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/spawner/random/tool, /turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/warehouse/breakroom) -"lIR" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"lJg" = ( +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lad" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/central_caves) +"lag" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"lJp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Observation" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgury_observation) -"lJv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/building/water_treatment_one/breakroom) +"lan" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/desert_dam/building/mining/workshop_foyer) +"laH" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"laI" = ( +/obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"lJz" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"lJA" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"laS" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"lbb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"lJS" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"lbf" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/warehouse/breakroom) +"lbj" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"lbm" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river_mouth/southern) +"lbt" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"lbw" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"lby" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/red/southeast, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"lKf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/warehouse/warehouse) -"lKm" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"lbU" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"lKn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"lKs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/machinery/door/window/southleft{ - dir = 1 +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"lbZ" = ( +/obj/structure/machinery/centrifuge, +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"lcb" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"lcj" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/turf/open/floor/dark, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"lKu" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"lKx" = ( -/obj/structure/platform{ - dir = 1 +/area/shuttle/trijent_shuttle/lz1) +"lcp" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/obj/structure/platform{ +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"lcy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/chunk, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"lcE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/south_valley_dam) -"lKI" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"lKW" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lcL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Tool Storage" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lLj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"lcS" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 4 }, -/turf/open/asphalt/tile, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/interior/caves/east_caves) +"ldk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"ldD" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"ldI" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ldT" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"ldY" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ldZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) -"lLk" = ( -/obj/structure/disposalpipe/segment{ +"leh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"lel" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/warehouse/breakroom) +"lev" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"lez" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"lLK" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/south_valley_dam) -"lMc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"lMd" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"lMi" = ( -/obj/structure/platform{ - dir = 8 +"leV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river_mouth/southern) -"lMx" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"leZ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"lML" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"lMR" = ( -/obj/structure/bed/chair/comfy/beige{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"lfk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"lfz" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/overseer_office) -"lNc" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"lNm" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"lfD" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"lfM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"lfQ" = ( +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lgh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"lgk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/edge/northwest, +/area/desert_dam/building/administration/meetingrooom) +"lgl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"lgr" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"lNr" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"lgJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"lNu" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lNx" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"lNO" = ( -/turf/open/desert/excavation/component3/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"lNR" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/disposals) +"lgK" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"lOi" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"lOn" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/interior/caves/central_caves) -"lOo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" - }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"lOq" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"lhb" = ( +/obj/structure/barricade/sandbags{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/south_valley_dam) -"lOt" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"lhh" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"lOy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"lOC" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"lhi" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/east_wing_hallway) +"lhn" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"lhu" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"lhC" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"lhE" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/east_caves) +"lhM" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lic" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office1) +"lie" = ( +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_two/purification) +"lif" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"lii" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_north) -"lOK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"lOL" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"lOM" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"lOV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"lij" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"lil" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) -"lOY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"lPj" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"lPo" = ( +"lim" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/window/framed/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lin" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"liw" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_two) +"lix" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_civilian) +"liC" = ( +/obj/item/seeds/soyaseed, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"ljb" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/dorms/pool) +"ljr" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"ljD" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office1) +"ljF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"ljH" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"ljJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"lPJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/building/hydroponics/hydroponics) +"ljK" = ( +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_mining) +"ljO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/van{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"ljT" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"lkc" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/control_room) +"lkd" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"lkn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"lPU" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/item/seeds/soyaseed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"lkx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) -"lQa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"lQB" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"lRu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"lRG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"lRJ" = ( -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"lRT" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"lkz" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"lkR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"lSa" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"lSd" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/landing_pad_one) -"lSh" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"llb" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"lSk" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"lSo" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/telecomm/lz2_storage) -"lSp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"llf" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"lSu" = ( -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"lSx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/surgery_room_one) +"llj" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"lTC" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"lTJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_civilian) +"lls" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Hallway" }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"llu" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"llM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"llO" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"llY" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"lTZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lmk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_telecoms) +"lmr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"lUf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/primary_storage) -"lUi" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/holding) -"lUm" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/smes_backup) +"lmB" = ( +/turf/open/floor/carpet/edge/northeast, +/area/desert_dam/building/administration/meetingrooom) +"lmP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"lmS" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"lna" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"lnf" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"lUv" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/desert_dam/building/water_treatment_one/breakroom) +"lng" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"lnr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"lnt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"lnB" = ( +/turf/open/floor/prison/darkyellowcorners2/southwest, +/area/desert_dam/building/substation/west) +"lnE" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"lUP" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"lnF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"lnN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"loa" = ( /obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"log" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/north_valley_dam) +"loh" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"lVc" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/central_caves) -"lVd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"lom" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"loo" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"lop" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"lVk" = ( -/obj/structure/platform_decoration{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"low" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/desert/dirt/dirt2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"loz" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) -"lVy" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"lVW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"lVZ" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "sedimentation_A_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"lWa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2; - icon_state = "pipe-u" +"lpb" = ( +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"lWb" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_x = 3; +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; pixel_y = 2 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"lWl" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"lWn" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/warehouse/breakroom) -"lWr" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"lWs" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) -"lWH" = ( -/obj/structure/stairs{ - dir = 1 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"lWM" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"lWZ" = ( -/obj/structure/machinery/gibber, /turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) -"lXn" = ( -/obj/structure/platform{ - dir = 8 +"lpc" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_labs) -"lXT" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/holding) -"lXU" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"lpe" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lpi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"lYa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_east) -"lYb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"lYh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"lYi" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"lYk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"lpr" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/mining/workshop) +"lpu" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lpR" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"lqg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"lYm" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"lqn" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_hydro) -"lYv" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"lYw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"lqx" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"lqz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"lYy" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"lqF" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"lYH" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lqK" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river_mouth/southern) +"lqS" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"lrb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"lYM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"lYP" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/mining/workshop) -"lYX" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/medical/break_room) -"lZe" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_labs) +"lrf" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"lZk" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_south) -"lZP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"lZR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"mab" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"lrr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Loading Bay" }, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/interior/caves/central_caves) -"maf" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) -"mai" = ( -/turf/open/floor/prison/darkbrown3, -/area/desert_dam/interior/dam_interior/hangar_storage) -"maI" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_1" - }, +"lrR" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"maL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"lrY" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"lrZ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_mining) -"maQ" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northeast) -"mbi" = ( -/obj/structure/stairs{ - dir = 8 +"lsr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"lsy" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"lsC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"lsG" = ( /obj/structure/platform{ - dir = 1 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) -"mbl" = ( -/obj/structure/surface/table, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river_mouth/southern) +"lta" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ltb" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"mbn" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"mbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"mbt" = ( -/obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"lth" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"mbz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/church) -"mbF" = ( -/obj/structure/surface/table, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"mbH" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_northwest) -"mbY" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"mcp" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/north_tunnel) -"mcz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"mcC" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"mcH" = ( +"ltB" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_cargo) -"mcK" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"mcP" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/primary_storage) -"mcQ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"mdf" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"mdM" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"mdP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"mdT" = ( -/obj/structure/surface/table, +/area/desert_dam/exterior/telecomm/lz1_valley) +"ltE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"ltK" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"lua" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/smes_main) -"mdW" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_two) -"mei" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"luc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"mel" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"mew" = ( +/area/desert_dam/exterior/valley/valley_wilderness) +"lug" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"luh" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"lui" = ( /obj/structure/machinery/light{ dir = 1 }, @@ -29862,7315 +29056,6973 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/greencorner/east, /area/desert_dam/building/dorms/hallway_northwing) -"meM" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"meN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"meV" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"meX" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"mfy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"luy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/west_wing_hallway) -"mfR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/desert_dam/interior/dam_interior/hanger) -"mgi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/valley/valley_labs) -"mgr" = ( -/obj/structure/prop/dam/boulder/boulder2{ - desc = "A large rock. It looks very hard to get around." - }, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"mgw" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"mgy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"mgB" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/substation/northeast) -"mgC" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/north_tunnel) -"mgD" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"luR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mgF" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"mgH" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_two) +"luZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached6, +/area/desert_dam/exterior/telecomm/lz2_storage) +"lva" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"lvE" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"lvH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) -"mgJ" = ( +"lvL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"lvM" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_one) +"lwj" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"lws" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Holding" + name = "\improper Security Armoury" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/holding) -"mgP" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/northwest) -"mgU" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"mhr" = ( -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"mhE" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"mhI" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_isolation) -"mhO" = ( +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"lwC" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/administration/overseer_office) +"lwG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"lwP" = ( /obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Delivery" + dir = 2; + name = "\improper Toilet Unit" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"lwY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/desert_dam/building/cafeteria/loading) -"mhR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"mhV" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/medical/virology_wing) -"mhX" = ( +/area/desert_dam/building/warehouse/warehouse) +"lxf" = ( +/obj/structure/target, +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"lxq" = ( /obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"lxw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"lxz" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"lxS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) -"miK" = ( -/obj/structure/bed/chair/office/light{ +"lxW" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"miM" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"mjf" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"mjl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Courtroom" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/courtroom) -"mjq" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkred2/northwest, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"lxZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"lyn" = ( +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/armory) -"mjt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"mkp" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"mky" = ( -/obj/structure/machinery/computer/arcade, +"lyr" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) -"mkA" = ( -/turf/open/floor/prison/greencorner, +"lyu" = ( +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/building/substation/west) -"mkB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"lyw" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" }, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/west_wing_hallway) -"mkJ" = ( -/obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"mkU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ +"lyB" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"mlb" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"mlm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"mlo" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"mls" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"mlH" = ( -/obj/structure/platform{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"lyM" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"lyR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) -"mlP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"mlQ" = ( -/obj/item/trash/c_tube, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"mlR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"mlU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/bar/bar) -"mlZ" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_hydro) -"mmh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Xenoflora" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"lyU" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"mmi" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/north_valley_dam) -"mmF" = ( -/obj/effect/decal/cleanable/vomit, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"mmJ" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"mmK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"mmL" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"mmZ" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/northeast, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) -"mnl" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/lobby) -"mnq" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"mnr" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/break_room) -"mnI" = ( -/obj/structure/cargo_container/hd/left, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"mnX" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"mnZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"moe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lyZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/bar/bar_restroom) -"moh" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"mor" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"mos" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"moJ" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_wilderness) -"moR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"moX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"mpr" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"lzk" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"mpI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"mpM" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mpN" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/valley/valley_labs) -"mpQ" = ( +/turf/open/floor/carpet/edge/west, +/area/desert_dam/building/administration/meetingrooom) +"lzm" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"lzp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"mqf" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"lzr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"lzu" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"lzy" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"lzB" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"lzF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"lAg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"lAD" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/south_valley_dam) -"mqv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"mqA" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river_mouth/southern) -"mqG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"lAN" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/obj/structure/mirror{ - pixel_x = -28 +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lBs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"mqJ" = ( -/obj/structure/machinery/light, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"mqK" = ( -/obj/structure/largecrate/random/case/double, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lBA" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"lCc" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_two) +"lCz" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"lCG" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"lCI" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"mqM" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"mqP" = ( +/area/desert_dam/building/cafeteria/cafeteria) +"lCN" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/hallway) +"lCZ" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/green/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"lDa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cookie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"lDk" = ( +/obj/item/trash/USCMtray, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"lDH" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/staffroom) -"mrg" = ( -/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"mrs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"mrt" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"mru" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/exterior/telecomm/lz2_containers) -"mrJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/floor/cult, +/area/desert_dam/building/church) +"lDR" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"lDT" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lEM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"lEU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_wilderness) -"mrO" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"mrQ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"msm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"lFc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) -"msn" = ( -/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"msq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"lFy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"lFS" = ( +/obj/structure/holohoop{ + dir = 4 + }, +/turf/open/floor/warnwhite/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"lFU" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/emergency_room) +"lFX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southeast, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"lFZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/west_wing_hallway) -"mss" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/southwest) -"msA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lGz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"lGD" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/exterior/valley/valley_hydro) +"lGY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 2" + }, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"lHq" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"lHx" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"lHK" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"lHO" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"msK" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"msM" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/coagulation/icon0_5, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"lHR" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_hydro) -"mtc" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mtd" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +"lHY" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"lIt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"lIx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"mtt" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"mtz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/whitepurple, -/area/desert_dam/building/medical/chemistry) -"mtF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"lIB" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"lJc" = ( +/turf/open/gm/river/darkred_pool, +/area/desert_dam/building/dorms/pool) +"lJn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"lJt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "\improper Administration Hallway" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"mtO" = ( -/obj/structure/platform{ - dir = 1 + name = "\improper Marshals Office" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"muj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"muJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"mvk" = ( -/obj/structure/machinery/reagentgrinder, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/marshals_office) +"lJJ" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"mvz" = ( -/obj/structure/reagent_dispensers/fueltank, +/obj/item/clothing/glasses/welding, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"mvE" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"mvF" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/west) -"mvL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"mvR" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/armory) -"mvS" = ( +"lJL" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_medical) -"mvW" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"mwd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"mwf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"lJR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"lKd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"lKe" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"lKn" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"lKo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"lKA" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"mwj" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mwr" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"lKJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"mwY" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lKS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"lKW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lLh" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"lLk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"lLt" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mxf" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"lLy" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lLC" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"lLP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"lLU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"lMc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"lMv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/excavation/component6/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"lMA" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lMM" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/floodgate_control) -"mxg" = ( -/obj/item/seeds/riceseed, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"mxh" = ( -/turf/open/floor/prison/whitegreen/west, +"lMO" = ( +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/west_wing_hallway) -"mxi" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 +"lMP" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"lMV" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "green-new-bridge" }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"mxB" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"lNf" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"mxD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"mxH" = ( -/turf/open/floor/coagulation/icon8_7_2, -/area/desert_dam/exterior/valley/valley_mining) -"mxL" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"mxT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"mxY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"myp" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"myI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lNl" = ( +/obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"myJ" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/area/desert_dam/exterior/valley/valley_telecoms) +"lNu" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lND" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river_mouth/southern) +"lNL" = ( +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/bonegel, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"myK" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"lNS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"lOl" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"lOo" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) +"lOx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"myL" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"myO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"lOy" = ( +/obj/structure/sink/kitchen, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"mzf" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lOE" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"lOF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"lOM" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lOY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"lPi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"mzo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"mzv" = ( +"lPk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) -"mzy" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"mzI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" +/area/desert_dam/interior/dam_interior/lobby) +"lPm" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"lPo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"mAm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"mAr" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mAD" = ( -/obj/structure/toilet, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"mAI" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"lPE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"lPK" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_hydro) -"mAL" = ( -/obj/structure/toilet, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"mAN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"lPU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"mAS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"mAZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"mBa" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"mBd" = ( -/obj/structure/platform{ +/area/desert_dam/building/security/northern_hallway) +"lQa" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lQk" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"lQn" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"lQr" = ( +/obj/structure/stairs{ dir = 1 }, /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/obj/effect/landmark/nightmare{ - insert_tag = "purple-center-bridge" - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"mBj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"lQA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/bar/bar) -"mBt" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"mBx" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"lQC" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"lRi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/west_tunnel) -"mBB" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_central_south) -"mBQ" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"mBU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/lobby) -"mCj" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river_mouth/southern) -"mCk" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"mCr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"lRk" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"lRC" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"lRI" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"lRK" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"lRM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"lRO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_isolation) -"mCA" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"mCF" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/north_wing_hallway) -"mCW" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_north) -"mCZ" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"lSp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"mDb" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"mDc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"mDe" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/exterior/valley/bar_valley_dam) +"lSv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"lSG" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"mDh" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/south_valley_dam) -"mDj" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"mDm" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"mDo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"lSJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"lSM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Breakroom" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"mDt" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/building/warehouse/warehouse) -"mDw" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"lSP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lSR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"lTg" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"lTl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/south_valley_dam) +"lUe" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"lUq" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) +"lUA" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) -"mDA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"lUD" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"lUL" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"mDY" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"mEj" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"lUP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mEm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"lUR" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lUT" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) -"mEA" = ( +"lVm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"lVw" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 + dir = 9 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"mEB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"mFm" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"mFu" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/telecomm/lz2_containers) -"mFz" = ( -/turf/open/floor/filtrationside/southwest, -/area/desert_dam/exterior/valley/valley_mining) -"mFI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/exterior/valley/south_valley_dam) +"lVF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"mFP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/chemistry) -"mFS" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/lobby) -"mFY" = ( -/turf/open/desert/excavation/component4/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"mGa" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/mining/workshop_foyer) +"lVW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"mGg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"mGH" = ( -/turf/open/floor/filtrationside/west, -/area/desert_dam/exterior/valley/valley_medical) -"mGO" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"lWe" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/west_tunnel) +"lWk" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/obj/effect/landmark/railgun_camera_pos, -/turf/open/asphalt, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_one) -"mGP" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"lWr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"lWA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mGZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_cargo) +"lWC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_isolation) +"lWM" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/dorms/pool) +"lWV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"lXi" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"mHD" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/desert_dam/exterior/valley/valley_northwest) +"lXn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"mHW" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/smes_main) -"mIe" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"mIB" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"mIR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"mIU" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/loading) -"mJc" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/caves/east_caves) -"mJe" = ( -/turf/open/floor/prison/whitegreen, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"lXo" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"lXs" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"lXu" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) -"mJi" = ( +"lXv" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/telecomm/lz2_containers) +"lXx" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/mining/workshop_foyer) +"lXy" = ( +/obj/structure/largecrate, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"lXA" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"lXN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mJu" = ( -/obj/effect/decal/sand_overlay/sand2, +/turf/open/mars_cave/mars_dirt_5, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"lXQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"lYe" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"lYm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"lYv" = ( +/obj/structure/flora/grass/desert/lightgrass_4, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"mJC" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"mJJ" = ( -/obj/structure/bed/stool, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"mJO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"mJT" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_northwest) -"mJU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"lYx" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"lYA" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"lYG" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"lYN" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"lYX" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"lZp" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"mJX" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mJY" = ( +/turf/open/floor/darkred2/west, +/area/desert_dam/building/administration/lobby) +"lZr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"mKn" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/warehouse) -"mKs" = ( -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/valley/valley_telecoms) -"mKt" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"mKx" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/south_valley_dam) -"mKA" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"lZA" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ +/obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"mKB" = ( -/obj/structure/window/framed/colony, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"mKM" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"mKO" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"mLm" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_east) -"mLp" = ( -/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/workshop) +"lZB" = ( +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) -"mLE" = ( +"maa" = ( /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_south) -"mMn" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"mMt" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/interior/caves/temple) -"mNd" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"mNi" = ( +/obj/structure/platform, /obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"maj" = ( +/obj/structure/barricade/sandbags{ dir = 1 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"mNj" = ( -/obj/structure/largecrate/random, +/obj/structure/barricade/sandbags{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"map" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"maB" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"maR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"maV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) -"mNk" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mNl" = ( +"mbb" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mbc" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"mbl" = ( /obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"mNq" = ( -/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"mbt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"mNv" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) -"mNG" = ( -/turf/open/desert/rock/deep/rock3, +/turf/open/floor/prison/yellowcorner, +/area/desert_dam/building/hydroponics/hydroponics) +"mbD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"mbN" = ( +/turf/open/desert/cave/cave_shore/southeast, /area/desert_dam/interior/dam_interior/western_dam_cave) -"mNX" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"mOe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"mOj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/red/southeast, -/area/desert_dam/building/water_treatment_two/lobby) -"mOl" = ( -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"mOu" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_1"; - pixel_y = -16 +"mbO" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"mbP" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mbY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"mOG" = ( -/obj/effect/decal/sand_overlay/sand1, +/area/desert_dam/building/medical/treatment_room) +"mcb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"mco" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"mOR" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/disposals) -"mOS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"mOV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"mOZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/area/desert_dam/exterior/valley/valley_labs) +"mcD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"mPd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/medical/break_room) -"mPw" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/dam_interior/central_tunnel) -"mPy" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"mcI" = ( /turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_wilderness) -"mPO" = ( -/turf/open/floor/coagulation/icon0_4, /area/desert_dam/exterior/valley/valley_hydro) -"mPS" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"mQw" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"mQz" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/south_valley_dam) -"mQB" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/red/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"mQE" = ( -/obj/structure/disposalpipe/segment{ +"mcQ" = ( +/obj/structure/platform{ dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"mdq" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"mQN" = ( +/area/desert_dam/building/medical/chemistry) +"mdB" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"mdP" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" + icon_state = "road_edge_decal9" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"mQR" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/blue, -/area/desert_dam/interior/dam_interior/tech_storage) -"mQW" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 +/area/desert_dam/exterior/valley/south_valley_dam) +"mdU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/temple) -"mRd" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"mRf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/exterior/valley/valley_hydro) -"mRj" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"mRn" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/south_tunnel) -"mRE" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +"mem" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"mer" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"mRL" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"meA" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_cargo) -"mRM" = ( -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"mRW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"mSo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"mSv" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +"meG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engine Room" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"mSF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"mSK" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"mSO" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"mTf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"meN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"mTn" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"meZ" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/loading) +"mfw" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"mTt" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) -"mTv" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"mTx" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_cargo) -"mTH" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/control_room) +"mfD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"mfH" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" }, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"mTP" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"mTU" = ( +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"mfL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"mfS" = ( /obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/mining/workshop) -"mTV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"mTY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"mTZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"mUi" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) -"mUy" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"mga" = ( +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"mgw" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"mgy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Medical Storage" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"mgB" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"mUP" = ( -/obj/structure/platform{ +/area/desert_dam/building/security/lobby) +"mgR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"mhl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"mUS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) -"mVk" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"mVm" = ( -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"mVp" = ( -/obj/effect/decal/cleanable/blood/gibs/body, +"mhm" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mhB" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"mVy" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"mVI" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/staffroom) -"mWa" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"mWe" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mhD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"mhR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northeast) -"mWi" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"mig" = ( /obj/structure/surface/table, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"mWn" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 }, -/obj/item/trash/used_stasis_bag, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"mWr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/item/storage/pill_bottle/dexalin, +/obj/item/storage/pill_bottle/inaprovaline{ + pixel_x = 7 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"miF" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"miP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"mWz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/northern_hallway) -"mXd" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"mXu" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/substation/southwest) -"mXv" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"mXM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"mYe" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"mYi" = ( -/obj/structure/stairs{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"mjh" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/church) +"mji" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/telecomm/lz1_south) +"mjw" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"mjA" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"mjI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mYs" = ( -/obj/structure/flora/grass/desert/heavygrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"mYw" = ( -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel/manager, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +"mjJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"mjM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"mjU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"mjX" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/green/southeast, +/area/desert_dam/interior/dam_interior/atmos_storage) +"mkg" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/interior/caves/temple) +"mkD" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"mYA" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "garage_dd"; - name = "\improper Garage" +/turf/open/floor/chapel/north, +/area/desert_dam/building/church) +"mkJ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mkK" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"mkU" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"mYD" = ( -/obj/item/storage/fancy/vials/random, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"mYJ" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"mYV" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"mkY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"mZe" = ( -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/substation/northwest) -"mZr" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"mZs" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen/north, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) -"mZx" = ( +"mkZ" = ( /obj/structure/platform_decoration{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"mZR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mlf" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-j2" + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"mZV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"nan" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"mlY" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"nao" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"mmd" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/exterior/valley/valley_mining) +"mme" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"nar" = ( -/obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) -"naE" = ( +"mmr" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mmx" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"naH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"naT" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_cargo) -"naU" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/prison) -"naX" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"nbh" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"nby" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"mmz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"mmK" = ( +/obj/structure/bed/stool, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) -"nbK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_south) -"nbQ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"nbV" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"ncd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/popcorn, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"ncg" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ncl" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"mmU" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"mnG" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"mnP" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"ncm" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"nco" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mnS" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mnZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"mod" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"ncp" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mor" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"moz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"moH" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ncq" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"ncs" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"ncC" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"ncD" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/interior/caves/central_caves) -"ncF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"ncI" = ( -/obj/structure/machinery/light{ +/obj/effect/blocker/toxic_water/Group_2, +/obj/item/clothing/head/soft/ferret, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"moT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"moV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ncJ" = ( -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/north_tunnel) -"ncL" = ( -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"ncR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"ndd" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"mpa" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"mpf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"mpg" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"mpn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"mpr" = ( +/obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"ndH" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/substation/northwest) -"ndP" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mpE" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mpZ" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"neo" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"mqp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"net" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"mqq" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"neA" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"mqw" = ( +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/east_wing_hallway) -"neF" = ( +"mqL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"mqM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"mqW" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"mrf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"mri" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mrl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"neQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"mrv" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/structure/machinery/light, -/obj/item/trash/kepler, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"neU" = ( +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"mrW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) -"nfc" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +"mss" = ( +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"msG" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"msH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/surgery_room_one) -"nfg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"nfh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"msI" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"msV" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/staffroom) +"mtb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"mtc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_northwest) -"nfu" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"mtd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"nfx" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"mtj" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_two) +"mtk" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mtr" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"mtH" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/control_room) +"mtJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"mub" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) -"ngf" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"ngo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/turf/open/asphalt, +"mum" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"muq" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"muw" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"muL" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) -"ngr" = ( +"muM" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"muP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Packaging" + dir = 2; + name = "\improper Foremans Office" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"ngx" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"ngz" = ( -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/lobby) -"ngH" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"ngZ" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/southwest) -"nhf" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"mvx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"mvG" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"mvO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"mvU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/truck/damaged, /turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) -"nhN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"mwc" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"mwe" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"mwE" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"mwG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"nhO" = ( -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"nhU" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mwM" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mwN" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"mxc" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 1 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"nik" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/area/desert_dam/exterior/landing_pad_one) +"mxf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 1 }, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"nio" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/dark, +/area/desert_dam/building/security/warden) +"mxp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"mxu" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mxB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"nis" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"niF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"niT" = ( -/obj/item/trash/semki, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/treatment_room) -"njd" = ( +/area/desert_dam/exterior/valley/valley_medical) +"mxC" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"myr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/security/northern_hallway) -"nje" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_civilian) -"njg" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison/yellowcorner, -/area/desert_dam/building/hydroponics/hydroponics) -"njo" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"njp" = ( -/turf/open/floor/filtrationside/north, -/area/desert_dam/exterior/valley/valley_hydro) -"nju" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"njx" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"njA" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/mining/workshop_foyer) -"njE" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"myy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) -"njS" = ( -/obj/structure/bed/chair{ - dir = 4 +"myQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_civilian) +"myY" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"mzh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"njU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"mzj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating/asteroidfloor/north, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"mzn" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) -"njV" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"nku" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"nkx" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/caves/central_caves) -"nkE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"nkF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"nkH" = ( -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"nkY" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"mzo" = ( /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"nla" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mzS" = ( +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/lobby) +"mzT" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_medical) +"mzY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"nli" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"nln" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"nlz" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"nlF" = ( -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) -"nlH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"nlI" = ( -/turf/open/desert/desert_shore/shore_edge1/west, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"mAe" = ( +/turf/open/desert/excavation/component5/east, /area/desert_dam/exterior/valley/valley_crashsite) -"nlK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"nml" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/office) -"nmq" = ( +"mAm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"nmv" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"mAr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitepurple, -/area/desert_dam/building/medical/chemistry) -"nmx" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science{ - req_one_access = null +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mAu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor/prison/darkpurple2/west, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mAy" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"mAT" = ( +/turf/open/floor/prison/blue, /area/desert_dam/interior/lab_northeast/east_lab_RND) -"nmK" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"nmM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_mining) -"nmP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"nmS" = ( -/obj/structure/machinery/light{ - dir = 8 +"mAZ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/mining/workshop) -"nmU" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"nnb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mBd" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"nnu" = ( /obj/structure/platform{ dir = 8 }, -/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, +/obj/effect/landmark/nightmare{ + insert_tag = "purple-center-bridge" + }, +/turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"nnC" = ( +"mBh" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/control_room) +"mBr" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/loading) +"mBP" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" + }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mBQ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/caves/east_caves) +"mBS" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"mBW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"nnD" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"nnK" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"nnN" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"nnZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"noi" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/west_wing_hallway) +"mCd" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/bar/bar) +"mCs" = ( +/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"noB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"noH" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/desert_dam/exterior/landing_pad_one) +"mCv" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"mCx" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"mCF" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"noK" = ( -/turf/open/floor/whitegreencorner, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"noR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mCL" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"mCM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"noU" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"mDd" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_south) +"mDg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"noZ" = ( -/obj/structure/machinery/light{ +/obj/structure/largecrate/random/secure, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"mDA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"npq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"nps" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) -"npz" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"npK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"mDQ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"mEe" = ( +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel/manager, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"mEm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"mEo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/north, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/loading) -"npO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"npX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mEy" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mEW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/warning, -/area/desert_dam/interior/dam_interior/engine_room) -"nqf" = ( -/obj/effect/blocker/toxic_water/Group_2/delay, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"nqy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"mEY" = ( +/obj/structure/filtration/flacculation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"mFg" = ( +/turf/open/floor/prison/darkredcorners2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mFz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"nqH" = ( -/obj/structure/machinery/light{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"mFD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"nqI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"nqN" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"nqW" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"nrm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"nrp" = ( -/obj/effect/decal/sand_overlay/sand1{ +"mFL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mFX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"mGb" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"mGc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"nrs" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"nry" = ( -/turf/open/floor/warning/southeast, -/area/desert_dam/interior/dam_interior/engine_room) -"nrB" = ( +/area/desert_dam/exterior/valley/valley_cargo) +"mGm" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"mGA" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"nrD" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_south) +"mGB" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ dir = 8 }, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"mGD" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"mGG" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, /turf/open/shuttle/can_surgery/red, /area/desert_dam/interior/dam_interior/hanger) -"nrF" = ( -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) -"nrS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mGR" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"mHe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/administration/overseer_office) +"mHA" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"nrZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/desert_dam/exterior/valley/valley_civilian) +"mHH" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"mIe" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/break_room) -"nsd" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"nsf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mIj" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"mIl" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"mIq" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"mIz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/folder/black, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"nsh" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"mJc" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"mJp" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/substation/northeast) +"mJq" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"mJB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"mJH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"nsp" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mJR" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/lobby) +"mJU" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"mJW" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mKk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"mKl" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mKr" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ - icon_state = "1,5" + icon_state = "2,7" }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"nsq" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"mKs" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/valley/valley_telecoms) +"mKx" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/whiteblue/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"nst" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"nsE" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"mKC" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_isolation) +"mKI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"nsJ" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"mKJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"ntb" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/effect/landmark/nightmare{ + insert_tag = "shipgone_northlz" }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mKT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"ntd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/area/desert_dam/exterior/valley/valley_crashsite) +"mLW" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/interior/caves/east_caves) +"mMf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"mMg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"mMh" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper CE Office" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"nte" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"ntr" = ( -/turf/open/floor/coagulation/icon5_8, -/area/desert_dam/exterior/valley/valley_hydro) -"ntx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"ntF" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"ntK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"nud" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) -"nug" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"mMu" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"mMI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"nui" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/north_wing_hallway) +"mMU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"mMX" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"nup" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) -"nux" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"nuz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"nuM" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"nuO" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/mining/workshop) -"nuZ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"nvh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/southern_hallway) -"nvo" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) -"nvr" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"nvE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"nvN" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"nvO" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"nwa" = ( -/obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) -"nwn" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, +"mMY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"mNk" = ( +/turf/closed/wall/r_wall, /area/desert_dam/exterior/valley/bar_valley_dam) -"nwo" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/west_tunnel) -"nws" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ - pixel_x = -32 - }, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"nwJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"mOc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"mOe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"nwR" = ( -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"nwW" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"nwY" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_isolation) +"mOg" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"mOm" = ( /obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"nwZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"nxr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"nxP" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/exterior/valley/valley_medical) -"nxT" = ( +"mOo" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_wing) -"nxY" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"mOq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"mOr" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"mOu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/exterior/valley/valley_mining) -"nye" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"mOy" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mOB" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"nyr" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_civilian) -"nyv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/hallway) -"nyF" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"mOS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"mOT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"nyO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"nyZ" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"mOU" = ( +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mPb" = ( +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"mPv" = ( /obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) -"nzb" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whiteblue/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"nzd" = ( -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/dorms/hallway_northwing) -"nzw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform_decoration{ - dir = 1 +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"mPz" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"mPO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"mPX" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"nzB" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"nzE" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" +/area/desert_dam/exterior/river_mouth/southern) +"mQd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"mQk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"nzJ" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_northwest) -"nzY" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"mQm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) -"nAh" = ( +"mQL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"mQV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"mRm" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"mRA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"mRO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"nAm" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"nAH" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mRY" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"mSo" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/interior/caves/east_caves) -"nAP" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"nAR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/interior/caves/central_caves) -"nBs" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) -"nBH" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_one/purification) -"nBN" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement14, +"mSs" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_wilderness) -"nBQ" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/landing_pad_two) -"nCi" = ( -/obj/item/stack/medical/advanced/ointment/predator, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"nCj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"nCr" = ( +"mSE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"nDb" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/prop/dam/truck/cargo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"nDf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" - }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, -/area/desert_dam/building/water_treatment_one/lobby) -"nDm" = ( -/turf/open/floor/prison/darkyellowcorners2/southwest, -/area/desert_dam/building/substation/west) -"nDu" = ( -/obj/item/toy/inflatable_duck, -/turf/open/gm/river/red_pool, -/area/desert_dam/building/dorms/pool) -"nDB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Backup SMES" +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"mSN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Engine Room" }, -/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"nDZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"nEa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/area/desert_dam/interior/dam_interior/engine_room) +"mTf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"nEb" = ( -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"nEi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Workshop" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"nEM" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"mTy" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/shuttle/trijent_shuttle/lz2) -"nEP" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"nFf" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"nFh" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"nFp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"nFu" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_south) -"nFw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N" }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"mTB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mTC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"nFU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/chapel/east, +/area/desert_dam/building/church) +"mTG" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"mTY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"mUd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"nFV" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mUo" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"mUp" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mUs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/north_valley_dam) +"mUC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"mUL" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mUX" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/east_caves) +"mVa" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/southwest) +"mVk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"nGy" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/interior/dam_interior/break_room) -"nHb" = ( -/obj/structure/bed/chair{ +"mVs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/whiteblue, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"nHl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northwest) -"nHw" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"mVv" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mVy" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"mWe" = ( +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"mWi" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"mWn" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"mWq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"nHx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"mWu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"nHy" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"nHN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"mWy" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_south) +"mWA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/loading) -"nHR" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/valley/valley_labs) -"nHU" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"nIc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"mWH" = ( +/turf/open/desert/excavation/component9/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"mWL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/item/clothing/glasses/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"nIx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"nIG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"nIZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"nJb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"nJe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"mWM" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"mWX" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"mXa" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement/cement9, +/area/desert_dam/exterior/valley/valley_wilderness) +"mXc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"nJf" = ( -/obj/structure/machinery/cryo_cell, -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"mXe" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"nJy" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"mXs" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"mXy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"nJA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"nJD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"mXV" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"nJR" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mYa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mYg" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"nJU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Patient Room 1" +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"mYr" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mYt" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"nKi" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"mYV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"mYZ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science{ + req_one_access = null }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"nKj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"mZf" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/exterior/valley/valley_wilderness) +"mZi" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"nKM" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"mZl" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"mZn" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"mZt" = ( +/obj/structure/sink, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"mZv" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/prison/greencorner/north, -/area/desert_dam/building/dorms/hallway_northwing) -"nKW" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 +/obj/structure/platform{ + dir = 4 }, /turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"nKY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Research Substation" +/area/desert_dam/interior/dam_interior/central_tunnel) +"mZz" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mZR" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/substation/northeast) -"nLN" = ( -/obj/structure/surface/table/reinforced, +/obj/structure/surface/table, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/lobby) +"naa" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison/darkpurple2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"nLP" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/mining/workshop) +"nag" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/disk/nuclear, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nak" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"naF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"naH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/building/security/northern_hallway) -"nLT" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"naN" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"nbf" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_medical) +"nbl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"nMg" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nbA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"nbH" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_one/lobby) +"nbN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"nbZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/landing_pad_one) +"ncc" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ncd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"nMh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"ncj" = ( +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/building/water_treatment_one/breakroom) +"ncm" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"nct" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"nMr" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/central) -"nMB" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"ncy" = ( +/obj/structure/morgue, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"ncW" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/warehouse/breakroom) +"ncZ" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"ndb" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_mining) +"ndh" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"nMI" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"nNm" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/desert_dam/building/substation/northwest) -"nNF" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"nNI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_telecoms) -"nNQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"ndm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"nNT" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ndo" = ( +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"ndB" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"ndK" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ndP" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"ndQ" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) -"nNV" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_hydro) -"nOS" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"nPj" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/loading) -"nPs" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/hanger) -"nPx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"nPF" = ( -/obj/structure/flora/bush/desert, +"ndR" = ( /turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_cargo) -"nPQ" = ( +/area/desert_dam/interior/caves/central_caves) +"ndS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment Foyer" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"ndU" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"nee" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"nQb" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"neC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) -"nQc" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/medical/break_room) -"nQp" = ( -/obj/structure/surface/rack, +"neG" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"neQ" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"nQy" = ( +/area/desert_dam/interior/dam_interior/engine_west_wing) +"nfb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/bar_valley_dam) -"nQM" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_mining) +"nfh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) -"nQX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"nfv" = ( +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hangar_storage) +"nfB" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"nfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"nRe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop" +/area/desert_dam/exterior/valley/valley_hydro) +"nfR" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"nRF" = ( -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/security/prison) -"nRN" = ( -/turf/open/floor/prison/darkbrown3/north, -/area/desert_dam/interior/dam_interior/hangar_storage) -"nRO" = ( -/obj/structure/platform{ +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"nfS" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) -"nRQ" = ( /obj/structure/platform_decoration{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"nfU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"nRV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"nfZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ngg" = ( +/obj/structure/largecrate/random/barrel/blue, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/garage) +"ngo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" + }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"nRY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Breakroom" +/area/desert_dam/exterior/valley/south_valley_dam) +"ngt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"ngw" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"ngE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"ngL" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/breakroom) -"nRZ" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) -"nSl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ngO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"ngQ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"ngS" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"ngT" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ngY" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"nSu" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"nSw" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"nSC" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"nSF" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/warehouse/loading) -"nSZ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"nTk" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"nhl" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"nTp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/security/prison) +"nhr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"nTt" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"nTT" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/central_tunnel) -"nTV" = ( -/obj/structure/platform{ +/obj/structure/barricade/wooden{ dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"nhA" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"nUt" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/mining/workshop) -"nUx" = ( -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_mining) -"nUB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Disposals" + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"nUE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"nUM" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire{ + pixel_x = 3 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"nUO" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"nUR" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"nUX" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"nVj" = ( -/obj/structure/machinery/sleep_console, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"nVy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Hallway" +/obj/item/tool/extinguisher{ + pixel_x = -10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"nVH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"nhC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_one) -"nWd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"nWn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/structure/machinery/light, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"nWq" = ( -/turf/open/floor/filtrationside/northeast, -/area/desert_dam/exterior/valley/valley_hydro) -"nWr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"nWv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"nWw" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill, -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/temple) -"nWV" = ( -/turf/open/gm/river/pool, -/area/desert_dam/building/dorms/pool) -"nXg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/administration/overseer_office) -"nXi" = ( -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"nXu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, +/area/desert_dam/interior/dam_interior/control_room) +"nhD" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 5 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"nXA" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"nXE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"nhH" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"nhK" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"nhN" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_hydro) +"nii" = ( +/obj/structure/barricade/sandbags, +/obj/structure/barricade/sandbags{ dir = 4 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"nXT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/area/desert_dam/exterior/valley/valley_telecoms) +"nin" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/garage) +"niX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_two) -"nXY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) -"nYa" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"nYd" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/dorms/pool) -"nYf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"nYh" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight/lantern, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"nYn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/primary_storage) -"nYx" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/substation/west) -"nYK" = ( -/turf/open/desert/excavation/component9/southeast, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) -"nYX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"nYY" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"nZo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +"njb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"njc" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/medical/break_room) +"njh" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/dorms/pool) +"njv" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/building/water_treatment_two/purification) +"njA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"nZt" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"nZu" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/north_valley_dam) -"nZS" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"njE" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_labs) -"oah" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_main) -"oak" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/east_caves) -"oao" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/exterior/valley/valley_wilderness) -"oaE" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/warden) -"oaH" = ( -/obj/structure/bed/chair{ - dir = 4 +"njG" = ( +/obj/structure/machinery/chem_master, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"oaJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"njP" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/security/northern_hallway) -"oaS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"obf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"njT" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"obl" = ( +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"njY" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"njZ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_medical) -"obu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"nkc" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"nkd" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/lobby) -"obv" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" + dir = 1 }, -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon" +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"nkf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"obA" = ( -/obj/item/seeds/soyaseed, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nkv" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"nkU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"obC" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"obK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"ocd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"ocp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"nle" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nlm" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, /turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/hanger) -"ocA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"ocM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/desert_dam/interior/dam_interior/engine_east_wing) +"nlq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"nlE" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/turf/open/floor/plating, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) -"ocO" = ( -/obj/effect/landmark/monkey_spawn, +"nlH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"nlO" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_isolation) -"odb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"nlW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"nmd" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"odf" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"nmg" = ( +/obj/structure/surface/rack, /turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/hallway) -"odp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"odv" = ( -/obj/structure/disposalpipe/junction, +/area/desert_dam/interior/dam_interior/tech_storage) +"nmm" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/workshop) -"oet" = ( -/obj/structure/platform, +"nmJ" = ( +/obj/structure/stairs, /obj/structure/platform{ - dir = 8 + dir = 4 }, -/obj/structure/platform_decoration{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"nmL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"oex" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"nmP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"oez" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/chapel, -/area/desert_dam/building/church) -"oeP" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_wilderness) -"oeR" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/medical/break_room) -"oeS" = ( -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"oeV" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/desert_dam/building/warehouse/loading) -"oeW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"nmU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/east_wing_hallway) -"oeX" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/southeast, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) -"ofb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/desert/dirt/dirt2, +"nmY" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"nmZ" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_northwest) +"nnj" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/excavation/component7/northeast, /area/desert_dam/exterior/valley/valley_crashsite) -"ofh" = ( -/obj/structure/platform, +"nnl" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nnp" = ( /turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/valley/valley_labs) -"ofk" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ofq" = ( +/area/desert_dam/interior/caves/central_caves) +"nnw" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"nnT" = ( +/turf/open/floor/coagulation/icon5_8, +/area/desert_dam/exterior/valley/valley_hydro) +"nog" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowfull/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"noh" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river_mouth/southern) -"oft" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"ofu" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"noq" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/office) +"noy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/lobby) -"ofB" = ( +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"noR" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"noT" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"noV" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"noZ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"npm" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"npo" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_central_north) +"npp" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"npv" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"ofF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"ofU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"ogb" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"ogc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"npD" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"npS" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"npY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) -"ogD" = ( +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"nqk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"nqn" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"ogO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Mess Hall" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"ogZ" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"nqB" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"ohd" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"ohe" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"nqY" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ohg" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nra" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"nrb" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"nre" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"nrm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"nrH" = ( +/obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"ohi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"nrK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/smes_main) +"nrL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/north_wing_hallway) +"nrU" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_south) +"nrZ" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ohm" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/landing_pad_one) -"oho" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"ohz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"ohT" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/warehouse/warehouse) +"nsc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"oii" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/west_wing_hallway) -"oij" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"nsf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/smes_main) -"oin" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"nsg" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"nsl" = ( +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"nsm" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"oiK" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"nsN" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"oiL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"oiN" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/dark, +/area/desert_dam/building/church) +"nsW" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/interior/caves/central_caves) +"nti" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_telecoms) +"ntt" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/deathrow) -"oiQ" = ( -/turf/open/floor/coagulation/icon0_8, -/area/desert_dam/building/water_treatment_two/purification) -"oiR" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ntv" = ( /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"oiS" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"oiV" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/area/desert_dam/building/medical/office1) +"ntB" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"ntD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ntJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"ojg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"ntO" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) -"ojh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"ntT" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"ntV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/west_wing_hallway) -"oji" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"nuD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"ojk" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/bot/north, -/area/desert_dam/building/water_treatment_one/garage) -"ojD" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"nuJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nvd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"nve" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"nvr" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nvx" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"nvA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_one) -"ojG" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"ojH" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"ojV" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_labs) -"ojY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) -"oka" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"okf" = ( -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/administration/control_room) -"okh" = ( -/turf/open/floor/prison/green/east, +/area/desert_dam/building/water_treatment_two/hallway) +"nvD" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"nvF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"nvH" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) -"okp" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"okq" = ( -/obj/structure/disposalpipe/segment{ +"nvI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"nvK" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"okN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"okO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"okR" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nvM" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_south) +"nvP" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_north) +"nvV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"olB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"nwi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"olF" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"nwC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"nwE" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nwI" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"olG" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"nxd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nxy" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"nxI" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"nxU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"nxW" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"olL" = ( -/obj/structure/barricade/wooden{ +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/west) +"nye" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"olY" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"nyl" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/lobby) -"oma" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +"nyH" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Patient Room 3" + icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"omb" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"one" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"onr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, +/area/desert_dam/building/medical/north_wing_hallway) +"nyY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"nzd" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_one/purification) +"nzh" = ( +/obj/structure/cargo_container/kelland/right, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"onw" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"onz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"nzr" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"onH" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"onQ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nzB" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"nzD" = ( +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"nzG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"nzI" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"ooi" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"ool" = ( -/obj/structure/surface/table, -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"oom" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"nzP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"nzR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"nAm" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"nAx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Administration Control Room" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_one) -"oou" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/landing_pad_one) -"oov" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/administration/control_room) +"nAE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"ooC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"nAK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"ooJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"ooK" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"ooQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"opn" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/south_tunnel) +"nAM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"nAS" = ( +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"nAT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"nAX" = ( +/obj/structure/stairs, /obj/structure/platform{ - dir = 8 + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"opy" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_civilian) -"opA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"opD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"nBv" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_mining) +"nBF" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"nBL" = ( +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"nCi" = ( +/obj/item/stack/medical/advanced/ointment/predator, +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"nCj" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/caves/east_caves) -"opK" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"opO" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"nCk" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_one) -"oqc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nCt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/largecrate/random, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) -"oqy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"oqE" = ( -/turf/open/floor/coagulation/icon0_4, -/area/desert_dam/building/water_treatment_two/purification) -"oqF" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/hanger) -"ora" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"orf" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"orh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"orH" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/valley/valley_labs) -"orO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"nCF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"nCX" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"nDj" = ( +/obj/structure/platform{ + dir = 4 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"osb" = ( -/obj/structure/window/reinforced, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"nDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nDz" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"nDC" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"ose" = ( -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"osi" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"osl" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"osm" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nDD" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/overseer_office) +"nDM" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 4 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"osu" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"nDR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"osZ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nDT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_wilderness) +"nEk" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"oti" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"otn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"nEx" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"otA" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/breakroom) -"otC" = ( -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"otD" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkred2, -/area/desert_dam/building/administration/lobby) -"otM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"ouc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"nEy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"nEA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/bar/bar) +"nED" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"nEK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/east_wing_hallway) +"nEM" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"ouk" = ( +/area/shuttle/trijent_shuttle/lz2) +"nEZ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"oum" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/south_valley_dam) -"oun" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"nFh" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"nFm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Administration Hallway" }, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) -"ous" = ( -/obj/effect/decal/cleanable/dirt, +"nFo" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"nFA" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nFN" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"nFY" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced, +/obj/item/device/radio, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"out" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/holding) -"ouu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nGc" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"ouC" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"nGr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/dam_interior/tech_storage) +"nGA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"nGK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"nGR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"ouD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"nGS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"ouE" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"ouJ" = ( +/area/desert_dam/building/mining/workshop_foyer) +"nHH" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"nHR" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"nIb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"ova" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/coagulation/icon0_5, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"nIK" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"nJf" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"nJg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"nJm" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/substation/northwest) +"nJo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"nJs" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"nJx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) -"ovh" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"ovn" = ( +"nJC" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nJR" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"nKt" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/southern_hallway) -"ovv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_mining) -"ovz" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"nKA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"nKK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_one) -"ovD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"nKW" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"owc" = ( -/turf/open/floor/filtrationside/southwest, -/area/desert_dam/exterior/valley/valley_medical) -"owd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 }, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"ows" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"owx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"nLd" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_0" }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"owW" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_two/lobby) -"owX" = ( -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/church) -"owY" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"oxd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"oxo" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"nLk" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar1"; + name = "\improper Cargo Bay Hangar" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"nLt" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"oxq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"oxs" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"nLu" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/caves/central_caves) +"nLO" = ( +/turf/open/floor/whitegreencorner/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"nLU" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"nMe" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"oxw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_labs) -"oxR" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"oxS" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"oye" = ( +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"nMs" = ( +/obj/structure/toilet, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"oyf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, +/area/desert_dam/building/warehouse/breakroom) +"nMz" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"oyi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +"nMC" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"oyl" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"nML" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,6" }, /turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"oyp" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"oyv" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/desert_dam/exterior/river/filtration_a) +"nMS" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"nMT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"oyG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nNo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"nNp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"oyH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment" +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nOb" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"oyQ" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"nOg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"oza" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"nOG" = ( +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nON" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"nOU" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"nPr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"nPD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"nPR" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/north_wing_hallway) +"nQa" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/telecomm/lz1_valley) +"nQe" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/north_valley_dam) +"nQf" = ( +/obj/structure/prop/dam/drill, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"nQh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"nQB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office2) +"nQD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"nQN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"ozk" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"ozm" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"ozn" = ( -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/substation/west) -"ozo" = ( -/turf/open/floor/warning/northwest, -/area/desert_dam/interior/dam_interior/engine_room) -"ozu" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ozJ" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/hallway) -"oAf" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"nQQ" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"nQS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/whiteyellow, -/area/desert_dam/building/water_treatment_one/breakroom) -"oAM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"nRc" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nRf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"oAU" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"oBh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"oBi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 2" +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nRk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"oBj" = ( -/obj/item/tool/pen, -/obj/item/paper_bundle, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"oBk" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 5 }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"oBl" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"oBs" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"oBM" = ( -/turf/open/desert/excavation/component7/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"oBR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"oBS" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_medical) -"oBX" = ( -/obj/structure/platform{ - dir = 4 +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"oCg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_wilderness) -"oCj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/primary_storage) +"nRt" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/item/storage/donut_box, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"oCn" = ( -/turf/open/floor/whiteblue/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"oCp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/treatment_room) -"oCu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"nRw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Restroom" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"oCE" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) -"oCQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"nRz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_two) -"oCZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_two) -"oDg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"oDh" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/area/desert_dam/exterior/valley/valley_hydro) +"nRD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nRI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"oDo" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"oDp" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"oDs" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"oDU" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/workshop) -"oEo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) -"oEw" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/northern_hallway) -"oEA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/hardpoint/locomotion/van_wheels{ + unacidable = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/garage) +"nRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"oEG" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" - }, -/turf/open/floor/filtrationside/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"oEI" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/medical/garage) -"oEL" = ( -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"oFj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nSb" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nSu" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"oFG" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/effect/landmark/railgun_camera_pos, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"nSU" = ( +/obj/item/alien_embryo, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"nTd" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"nTh" = ( +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"oFV" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/southwest, -/area/desert_dam/building/substation/northeast) -"oGg" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"oGt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"oGM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/area/desert_dam/interior/dam_interior/north_tunnel) +"nTp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"nTr" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "uppcrash-supply" + }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"oHh" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_hydro) -"oHk" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"oHs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"nTu" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"nTy" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nTC" = ( +/obj/structure/machinery/computer/area_atmos, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"oHA" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/area/desert_dam/building/water_treatment_two/control_room) +"nTD" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"nTO" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"nUf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"nUw" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"nUy" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"nUU" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"oHJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"oHK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Break Room" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/building/warehouse/warehouse) +"nUY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"nVq" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"nVu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"oHQ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"nVJ" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"nVU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_cargo) -"oHW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/lobby) +"nWu" = ( +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/dorms/hallway_westwing) +"nWw" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"nWx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"oHX" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"oIe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Tool Storage" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"nWO" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/east_caves) +"nXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"nXt" = ( +/turf/open/desert/excavation/component8/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"nXu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"oIf" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/landing_pad_two) -"oIg" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"oIz" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"oIC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"oID" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"nXI" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"oIE" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oIM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"nXN" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nXR" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nYf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"nYh" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lantern, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"nYq" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"nYr" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/building/water_treatment_one/purification) +"nYJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"oJa" = ( +"nZi" = ( /turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/south_tunnel) -"oJg" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/area/desert_dam/interior/dam_interior/western_dam_cave) +"nZk" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) -"oJp" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"oJt" = ( /obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"oJu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"nZw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Break Room" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"oJD" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"nZy" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"nZE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"nZO" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"oJF" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"nZP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"oJT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hangar_storage) -"oKc" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"oKD" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"oKF" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"oKG" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"nZX" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_cargo) +"oaw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Decontamination" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"oKL" = ( -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"oKV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"oaF" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"oKW" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"oLf" = ( -/obj/structure/platform{ +/area/desert_dam/exterior/landing_pad_one) +"oaH" = ( +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hanger) +"oaV" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"obd" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/landing_pad_one) +"obs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"obv" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"oLi" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_mining) -"oLI" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"oLN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"oLR" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_two) -"oLX" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_east) -"oLY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"oMe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner/west, -/area/desert_dam/building/hydroponics/hydroponics) -"oMf" = ( -/turf/open/floor/coagulation/icon8_6, -/area/desert_dam/exterior/valley/valley_hydro) -"oMk" = ( +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"obD" = ( /obj/structure/platform, /turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"oMs" = ( -/obj/structure/platform{ +/area/desert_dam/exterior/river/riverside_east) +"obJ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"obK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"obM" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"obS" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_south) -"oMz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office1) -"oMC" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"ocG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/virology_wing) +"odz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"oMW" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"odB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"odE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"odI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Courtroom" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_east) -"oMX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/courtroom) +"odU" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_wilderness) +"odZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"oNh" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/lobby) -"oNF" = ( -/obj/structure/bed/chair{ +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"oee" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"oNP" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/turf/open/floor/prison/red/north, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) -"oOf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"oOg" = ( +"oef" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"oeJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"oOm" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/lattice{ - layer = 2.9 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"oeR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Mess Hall" }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"oOu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"oeT" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_hydro) +"ofi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop Foyer" }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"ofj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"oOz" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"ofB" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"oOE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/primary_storage) -"oOG" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"oPm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"ogc" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"ogq" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"oPr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"ogC" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"ohb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_mining) -"oPs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"ohd" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/landing_pad_one) -"oPt" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"ohe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/yellowcorner/west, -/area/desert_dam/building/hydroponics/hydroponics) -"oPC" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"oPG" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"ohh" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"ohk" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"oht" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"ohB" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"ohL" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_medical) -"oPS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ohU" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"oih" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"oiC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/yellow/west, -/area/desert_dam/building/hydroponics/hydroponics) -"oQd" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oQe" = ( -/obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_south) -"oQf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"oQi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" - }, -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"oQm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_medical) -"oQu" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"oQF" = ( -/obj/structure/bed/chair/office/light{ +/area/desert_dam/exterior/valley/valley_northwest) +"oiR" = ( +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_mining) +"ojc" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/darkpurplecorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"oQL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"ojp" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"oRa" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"oRc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/hallway) -"oRo" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"oRu" = ( -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/armory) -"oRB" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_cargo) -"oRE" = ( -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"oRH" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_labs) -"oRP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"oSd" = ( +"ojq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ojW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"oSf" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_northwest) -"oSh" = ( -/obj/structure/surface/table, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/church) +"ojX" = ( +/obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"oSv" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"okg" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/southwest) +"okr" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"oSw" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"oSA" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"oSC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"oSO" = ( -/obj/structure/largecrate/random/secure, -/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"okA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) -"oSU" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +"okB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/interior/dam_interior/control_room) -"oTe" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/item/stack/sheet/glass{ + amount = 30 }, +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"okC" = ( /turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"oTi" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"oTr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Hallway" +/area/desert_dam/exterior/valley/valley_telecoms) +"okQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"oTz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"oTD" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal3" - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"oTO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"oTU" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/caves/east_caves) -"oUc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"oUm" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar1"; - name = "\improper Cargo Bay Hangar" +/area/desert_dam/building/medical/virology_wing) +"okR" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"olb" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/valley/valley_labs) +"olm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"oUr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"oUA" = ( -/obj/structure/surface/table, -/obj/item/tool/wirecutters, +/obj/item/tool/warning_cone, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"oUI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/garage) -"oUN" = ( -/obj/structure/window/framed/chigusa, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"oUT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"oln" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"oVE" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"olu" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"olx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"oVO" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"olL" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"oVZ" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/lobby) -"oWa" = ( -/obj/structure/surface/rack, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/dam_interior/tech_storage) -"oWi" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"oWk" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/staffroom) -"oWn" = ( -/turf/open/desert/excavation/component9/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"oWv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"oWy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"oWA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"oWH" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) -"oWK" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"olU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"oWO" = ( -/obj/structure/barricade/sandbags, -/obj/structure/barricade/sandbags{ +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"olX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"oWS" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"oWU" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"oXi" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"oXC" = ( -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"oXH" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"oXK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"oXM" = ( -/obj/structure/closet/secure_closet/personal, +"ome" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/north, +/area/desert_dam/building/administration/lobby) +"omj" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river_mouth/southern) +"omn" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"omo" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"omG" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, /turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"oXR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"omU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"oXX" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"onb" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"oYa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"oYf" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"onj" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"oYi" = ( +/obj/structure/machinery/light, +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"ono" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"onp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"onx" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"oYt" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_south) +"oob" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"ooe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_hydro) -"oYI" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"oYW" = ( +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"ooQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"ooY" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/valley/valley_labs) +"ooZ" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"opg" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"oph" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"opl" = ( +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"oYX" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"oYZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +"ops" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"opz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"opB" = ( +/obj/structure/showcase{ + icon_state = "mechfab1" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_labs) -"oZi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"oZm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"oZs" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_south) -"oZt" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"opF" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/exterior/valley/valley_hydro) +"opP" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"oqe" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"oZA" = ( -/turf/open/floor/darkyellowcorners2, -/area/desert_dam/building/substation/northwest) -"oZG" = ( -/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/exterior/valley/valley_northwest) +"oqf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) -"oZH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"oql" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"oqy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engine Room" +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"oqD" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"oqF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"oZS" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/area/desert_dam/interior/dam_interior/control_room) +"oqI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"oZU" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"oqP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"orh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"pal" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"paB" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_east) -"paF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"orl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"orM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/northeast, +/area/desert_dam/building/administration/lobby) +"orP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"paH" = ( -/turf/open/floor/prison/whitegreen, +/area/desert_dam/exterior/landing_pad_two) +"orR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"orT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/mining/workshop_foyer) +"osg" = ( +/obj/structure/machinery/cryo_cell, +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) -"paJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"oss" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"pba" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"pbc" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"pbe" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/landing_pad_one) -"pbk" = ( -/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"pbq" = ( -/obj/structure/platform_decoration{ - dir = 4 +/area/desert_dam/interior/dam_interior/control_room) +"osx" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"osz" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_wing) +"osN" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"pbr" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"osZ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"otb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy/tank{ + icon_state = "jar_sample" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"pbx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/window/framed/colony, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"pbC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"oti" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"otn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"pbJ" = ( -/turf/open/floor/warnwhite/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"pbW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"pcf" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"pch" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"pci" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"pcl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/area/desert_dam/exterior/valley/valley_labs) +"oto" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"otE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"otR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"otV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"oub" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"oue" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"pdn" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"oum" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ouw" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"ouH" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"pdy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"pdC" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"ouT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"ouZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/south_valley_dam) +"ovo" = ( +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"ovp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden{ - dir = 9 +/turf/open/floor/prison/yellowcorner, +/area/desert_dam/building/hydroponics/hydroponics) +"ovr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"pdG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_hydro) +"ovt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"pdI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ovA" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ovC" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison/whitegreencorner/east, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"ovG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/west_wing_hallway) -"pdK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_central_north) -"pdV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Backroom" +"ovP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"peb" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"ovT" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_east) -"pee" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"pef" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/desert_dam/building/security/prison) -"peg" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_one/purification) -"pes" = ( -/obj/item/clothing/under/shorts/red, -/obj/structure/surface/rack, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"owg" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"owu" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"peu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"pez" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_east) -"peK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"pfa" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"pfo" = ( -/obj/item/trash/USCMtray, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) -"pfw" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"owA" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_isolation) +"owH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"pfz" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"owU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"oxh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"pfN" = ( -/turf/open/floor/prison/greencorner/west, -/area/desert_dam/interior/dam_interior/atmos_storage) -"pfT" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"pgk" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_two/lobby) -"pgv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"pgB" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oxo" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"pgC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"pgX" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/southwest, -/area/desert_dam/building/security/prison) -"phm" = ( /obj/structure/platform{ - dir = 1 + dir = 4; + layer = 2.7 }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"phB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/overseer_office) -"phY" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"oxt" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"pia" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge/northwest, -/area/desert_dam/building/administration/meetingrooom) -"pif" = ( -/obj/docking_port/stationary/trijent_elevator/empty{ - id = "trijent_engineering"; - name = "Engineering Elevator"; - airlock_exit = "east"; - airlock_area = /area/shuttle/trijent_shuttle/engi; - elevator_network = "A" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"oxz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/chemistry) +"oxC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"oxE" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/south_valley_dam) +"oxJ" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/smes_main) +"oxW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 4 }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/engi) -"pip" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/caves/east_caves) -"pit" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"piy" = ( -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/dorms/pool) -"piG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/lobby) +"oxX" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/administration/control_room) +"oyd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"oyf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"oyq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"oyu" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/darkpurple2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"piK" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"pjh" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"pjj" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"oyA" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"oyN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"oyV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" + }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"pjr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Workshop" +/area/desert_dam/building/cafeteria/cafeteria) +"oyW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"pjw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"ozs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ozu" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ozv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"pjG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ozC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/north_wing_hallway) -"pjI" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ozD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"pke" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"pkm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_northwest"; - name = "Checkpoint Lockdown" +/area/desert_dam/building/water_treatment_one/hallway) +"ozO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_hydro) +"oAr" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"oAz" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Examination Room" }, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"pkO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"pkV" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"oAL" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/garage) +"oAM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/structure/platform{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"oAP" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/water_treatment_one/lobby) +"oBv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"oBE" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"oBF" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) -"pla" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) -"plg" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/warden) -"plo" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"plw" = ( +"oBP" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/loading) +"oBR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"oBS" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/obj/item/folder/black_random{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/folder/black_random, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"oCb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Showers" + }, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/pool) +"oCn" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, /turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"plz" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" +"oCu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"plO" = ( -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/platform, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"oCC" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"oCE" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 8 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"plU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/staffroom) -"plZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/landing_pad_one) +"oCN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"pme" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/warehouse/breakroom) -"pmu" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river_mouth/southern) -"pmw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"pmC" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze{ - pixel_x = -7 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/west_wing_hallway) +"oDa" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"oDn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"oDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/whiteyellow/northwest, -/area/desert_dam/interior/dam_interior/garage) -"pmJ" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/caves/east_caves) -"pmM" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/workshop) -"pmN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"oDt" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"oDu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"oDy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/loading) +"oDK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/north_tunnel) +"oDS" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"oDV" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"pmT" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"pmX" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"pnh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) -"pns" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_0" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"pnw" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/lobby) -"pnI" = ( -/obj/effect/landmark/xeno_spawn, +"oEh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"pnS" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/excavation/component8/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"pnZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"poi" = ( -/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"oEr" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"oEH" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"pok" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"oEV" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"oEW" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"oFd" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"oFu" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"oFw" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_northwest) -"pox" = ( -/turf/open/floor/prison/yellowcorner/west, -/area/desert_dam/building/hydroponics/hydroponics) -"poG" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"oFz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"poH" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"ppD" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"ppQ" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"pqe" = ( -/obj/structure/platform_decoration{ - dir = 1 + name = "\improper Treatment Garage" }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) -"pqi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_central_north) -"pqu" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/interior/caves/central_caves) -"pqE" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/courtroom) -"pqP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/desert_dam/building/water_treatment_one/garage) +"oFA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"oFB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"pre" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"prg" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"prU" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/building/water_treatment_one/breakroom) -"psa" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_east) -"psi" = ( -/obj/structure/machinery/power/apc/no_power/east, /obj/structure/disposalpipe/junction{ - dir = 1; + dir = 8; icon_state = "pipe-j2" }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/emergency_room) -"pss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"psA" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"psU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"ptb" = ( -/obj/structure/safe, -/obj/item/weapon/sword/katana/replica, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"oFO" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"oGs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/dam_interior/tech_storage) -"ptl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"pto" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"ptv" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"oGX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"oHa" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/turf/open/floor/prison/whitered/southeast, -/area/desert_dam/building/medical/primary_storage) -"ptM" = ( -/obj/structure/platform_decoration, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) -"ptW" = ( -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/administration/office) -"puk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"pus" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"puD" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/interior/caves/temple) -"puM" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"oHf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"puV" = ( -/obj/structure/filtration/collector_pipes, -/turf/open/floor/filtrationside/west, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"oHq" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"pva" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"oHA" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"oHK" = ( +/turf/open/floor/filtrationside/southeast, /area/desert_dam/exterior/valley/valley_hydro) -"pvm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"pvD" = ( -/turf/open/floor/whitegreencorner/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"pvH" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"pvP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/interior/caves/central_caves) -"pvU" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"pwn" = ( -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"pwt" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/hanger) -"pwF" = ( +"oHQ" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"oIb" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"oIf" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"oIg" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river_mouth/southern) +"oIh" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"oIx" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/telecomm/lz2_containers) +"oIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"oIS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"pxf" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"pxt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"pxw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"pxC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/item/handset, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"pxT" = ( -/obj/item/clothing/head/welding, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"pya" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshals Office" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"oJn" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/medical/virology_wing) +"oJH" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"oJO" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"oJQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"oJS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/marshals_office) -"pyi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/warning/north, -/area/desert_dam/interior/dam_interior/engine_room) -"pyw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"oJV" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 1 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) -"pyL" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/control_room) -"pyU" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"pzm" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"pzv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +"oKG" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"pzx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"pzL" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"pzQ" = ( -/obj/structure/machinery/light{ +"oKK" = ( +/turf/open/floor/prison/yellow/northeast, +/area/desert_dam/building/hydroponics/hydroponics) +"oKM" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river_mouth/southern) +"oKN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"oKP" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"pzS" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"pAc" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "sedimentation_A_1"; - pixel_y = -16 +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river_mouth/southern) +"oLd" = ( +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"oLj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"pAf" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/briefcase, -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/administration/overseer_office) -"pAl" = ( -/obj/structure/filtration/machine_96x96/filtration, -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/building/water_treatment_two/purification) -"pAF" = ( -/turf/open/floor/whitegreencorner/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"pAL" = ( -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"pAQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet10_8/west, -/area/desert_dam/building/church) -"pAV" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"pAX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"oLu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"oLv" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"oLC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"oLM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 + dir = 2; + name = "\improper Water Treatment" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"pBi" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"pBn" = ( -/turf/open/floor/coagulation/icon8_0, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) -"pBu" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cookie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"pBv" = ( -/obj/structure/machinery/power/apc/no_power/west, -/obj/effect/decal/cleanable/dirt, +"oMe" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"oMi" = ( +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"oMk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"oMq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"pBy" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"pBC" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hanger) +"oMv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"pBI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"pBP" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"oMx" = ( /obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"pBX" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_medical) -"pCk" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"pCz" = ( -/obj/structure/platform{ +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"oMA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"oMB" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/valley/valley_labs) -"pCO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/control_room) -"pDs" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 + }, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"oMC" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"pDt" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_civilian) -"pDv" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"oMK" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/hanger) +"oMT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Floodgate Controlroom" }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"pDz" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"pDB" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/floodgate_control) -"pDM" = ( -/turf/open/mars/mars_dirt_14, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"pDO" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"pEh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"oMV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oNb" = ( +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"oNm" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/treatment_room) +"oNN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"pEn" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"oNP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"pEx" = ( -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/dorms/hallway_westwing) -"pEB" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oOc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"pEG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"pEY" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"pFb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"oOe" = ( +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"oOg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"oOh" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"oOR" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"oPh" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_two/purification) +"oPj" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"oPn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"pFc" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/caves/temple) -"pFi" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_medical) -"pFk" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/interior/caves/east_caves) -"pFq" = ( -/turf/open/floor/coagulation/icon5_8, -/area/desert_dam/exterior/valley/valley_mining) -"pFx" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"pFB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/area/desert_dam/exterior/valley/valley_civilian) +"oPu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/floor/coagulation/icon8_0, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/east_wing_hallway) +"oPU" = ( +/turf/open/desert/excavation/component3/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"oPZ" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/virology_wing) +"oQr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"oQD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"oQL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_mining) -"pFL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"oQT" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/telecomm/lz2_containers) +"oQY" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cafeteria) +"oRq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Xenoflora" + }, +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"oRv" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"oRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"oSa" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/overseer_office) +"oSr" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"oSu" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"oSJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"pFP" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"pFT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"pGn" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"pGD" = ( +"oSR" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/surgery_room_one) +"oSY" = ( +/turf/open/desert/excavation/component6/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"oTb" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"oTe" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"oTf" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/control_room) -"pGF" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/garage) -"pGG" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"pGS" = ( +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"oTu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"oTI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"oUa" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"oUi" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"pGT" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/area/desert_dam/building/water_treatment_one/equipment) +"oUm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oUr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"oUC" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/north_valley_dam) -"pGW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"pHi" = ( -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_two/purification) -"pHm" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/loading) -"pHx" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) -"pHB" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"pHV" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/west) -"pIb" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"pIc" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"oUE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"oUH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/turf/open/asphalt/tile, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"oUN" = ( +/obj/structure/window/framed/chigusa, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"oUP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_wilderness) -"pIe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"oVc" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"oVj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"oVq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"pIs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"oVA" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"oVM" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"pIH" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/temple) -"pIK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"pIO" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"oWj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_medical) +"oWq" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cavein_engineering" }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"pIQ" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) -"pIY" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"oWA" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"pJl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/hanger) -"pJy" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"oWD" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"pJF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"pJG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"pJH" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"pJQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/smes_backup) -"pJW" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"pKl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"pKs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"pKw" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/exterior/valley/valley_mining) -"pKA" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_two/purification) -"pKX" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"pLg" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"pLn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"oWE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engineering Hallway" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"pLs" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"pLD" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_hydro) -"pLI" = ( -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"pLK" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"pLP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"pLX" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"pMd" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) -"pMj" = ( -/obj/effect/decal/cleanable/dirt, +"oWI" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"pMl" = ( -/obj/structure/machinery/chem_master, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"pMu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, +/area/desert_dam/interior/dam_interior/hanger) +"oXc" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/dam_interior/tech_storage) +"oXk" = ( +/turf/open/desert/cave/cave_shore/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"oXp" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_northwest) +"oXy" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"pMC" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"pMD" = ( +/area/desert_dam/building/hydroponics/hydroponics) +"oXF" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"pMF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon7_0, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"oXJ" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/southwest) +"oXK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"oXQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_mining) -"pMZ" = ( +"oYa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"oYc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"oYy" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) -"pNj" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/warehouse/breakroom) -"pNq" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_two) -"pNs" = ( -/obj/structure/platform{ +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"oYA" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"oYE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_east) -"pNw" = ( -/obj/structure/surface/table, -/obj/structure/machinery/filtration_button{ - id = "filter 2" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"pNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/healthanalyzer, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/lobby) -"pNK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"pNO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/area/desert_dam/building/security/northern_hallway) +"oYM" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_westwing) +"oYN" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"oYP" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_northwest) +"oYV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"oZe" = ( +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hangar_storage) +"oZf" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"pNS" = ( -/obj/structure/machinery/light{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) +"oZk" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/good_item, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/garage) -"pNT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"oZs" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_one) +"oZt" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"pOl" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"oZu" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/southwest) +"oZE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"oZZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"pah" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"pal" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"paq" = ( +/turf/open/floor/coagulation/icon8_7, +/area/desert_dam/exterior/valley/valley_hydro) +"paD" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"paT" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"paW" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"paX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"pba" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"pbt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"pOq" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/mining/workshop) -"pOu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"pOA" = ( -/obj/item/shard/shrapnel, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"pOI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"pOX" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"pPa" = ( -/obj/structure/morgue, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"pPl" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"pPz" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/valley/valley_labs) -"pPC" = ( -/obj/structure/surface/table, -/obj/item/tank/anesthetic, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"pPG" = ( /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"pPH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/east_wing_hallway) -"pPI" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/CE_office) +"pbx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Mess Hall" }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"pQo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/north_tunnel) -"pQE" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"pbz" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/medical/break_room) +"pbB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"pQJ" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"pQT" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"pRF" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"pbC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"pRT" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/south_valley_dam) -"pSo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/welding, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"pSv" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"pSB" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pbE" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"pSQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"pbG" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"pbS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_mining) +"pcF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"pcO" = ( +/obj/structure/platform{ dir = 4 }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river_mouth/southern) +"pdg" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"pdl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) -"pTk" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal4" - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"pTs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"pTz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" - }, -/obj/structure/machinery/door/window/brigdoor/westright{ +"pdq" = ( +/obj/structure/machinery/sentry_holder/colony{ dir = 4; - name = "Security Desk" + pixel_x = -24 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"pdC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/dark2, -/area/desert_dam/building/water_treatment_two/lobby) -"pUa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"pdF" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/south_tunnel) +"pdG" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"pef" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_wing) +"peg" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"pem" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"pUk" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/red/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"pUq" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"pen" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"peI" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"peO" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"peW" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"pfs" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"pfR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_mining) +"pgi" = ( +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"pgB" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_1" }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"pUB" = ( -/turf/open/desert/excavation/component1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"pUO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"pgG" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"pUP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"pgL" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"pgM" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"pUR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"pUT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"pgT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"phe" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"pUX" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/substation/southwest) -"pVd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"pVm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/warehouse/breakroom) -"pVC" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"phl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"pVI" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/east_caves) -"pVM" = ( -/obj/structure/filingcabinet/security, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"phy" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"pVX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"pVZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"pWc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"pWe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/building/security/detective) +"phD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"phG" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"phJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Visitation" + }, +/turf/open/floor/dark2, +/area/desert_dam/building/security/southern_hallway) +"pif" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_engineering"; + name = "Engineering Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/engi; + elevator_network = "A" }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/engi) +"pii" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"piu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"pWg" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"pWo" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pix" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"pWw" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"pWC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"piM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"pjc" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"pjg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"pjj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"pWE" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "uppcrash-supply" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"pjE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"pWK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"pjF" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"pWL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/darkpurplecorners2/east, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"pjY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"pkd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"pXa" = ( +"pke" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"pkw" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/valley/valley_labs) +"pkA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"pkK" = ( +/obj/structure/toilet, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whiteblue/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"pXe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/northwest) -"pXq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"pXM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"pXY" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/kitchen/southwest, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"pYW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"pYX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ +"pkP" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"pkR" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"plo" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"plp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"pZi" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"pZm" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river_mouth/southern) -"pZo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"pZr" = ( -/obj/structure/filtration/coagulation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"pZK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"pZN" = ( -/turf/open/floor/coagulation/icon1_7, -/area/desert_dam/building/water_treatment_two) -"qad" = ( -/obj/structure/stairs{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"qag" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"qaz" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/north_wing_hallway) +"plw" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/holding) +"plz" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"plB" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"plD" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"plU" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/holding) +"plX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pmg" = ( /turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/west_wing_hallway) -"qbd" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"qbr" = ( +/area/desert_dam/building/medical/virology_wing) +"pml" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/southern_hallway) -"qbu" = ( -/obj/structure/toilet{ - dir = 1 +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"pmm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" }, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"qbC" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"qbE" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/treatment_room) -"qbI" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"qbJ" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"qbL" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"qbW" = ( -/obj/structure/desertdam/decals/road_edge, +/turf/open/floor/dark2, +/area/desert_dam/building/water_treatment_two/lobby) +"pmv" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"pmO" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pmU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qce" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"qcj" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"qck" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"pnb" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"pnj" = ( +/obj/structure/bedsheetbin, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"qcv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"pno" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"qcF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"pnG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Research Hallway" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"pnV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"poa" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_labs) +"pof" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"poi" = ( +/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"qcS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/exterior/valley/valley_medical) +"pow" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"poD" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"qcX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"qcZ" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"qdb" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"qdi" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/interior/caves/central_caves) -"qdw" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"qdy" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/staffroom) -"qdz" = ( -/turf/open/desert/rock/deep/transition/southwest, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/west_tunnel) -"qdR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"qef" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Isolation Chamber" +"poE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"qer" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"qez" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"poH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"qfi" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"qfA" = ( -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) -"qfI" = ( -/obj/structure/flora/bush/desert, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"qfL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/exterior/valley/valley_labs) +"poP" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/interior/caves/central_caves) +"poS" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_one) +"ppu" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"qfY" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"ppC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"qgw" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"qgD" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_medical) -"qhc" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"ppF" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" }, -/turf/open/floor/prison/green/east, -/area/desert_dam/interior/dam_interior/atmos_storage) -"qhh" = ( -/turf/open/floor/coagulation/icon7_1, -/area/desert_dam/exterior/valley/valley_hydro) -"qhE" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"ppH" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"ppQ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"ppU" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_cargo) -"qhG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"pqb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"pqd" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"pqg" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"pqk" = ( +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/bar/bar) +"pqq" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"pqF" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/north_valley_dam) +"pqM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"pqS" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_northwest) +"pqT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"pqZ" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"prs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"prL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"prT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_telecoms) -"qin" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +"psm" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/caves/east_caves) +"psp" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"psF" = ( +/turf/open/floor/coagulation/icon6_8, +/area/desert_dam/exterior/valley/valley_mining) +"psO" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"qiU" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"psX" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pta" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"qje" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"qjl" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_central_north) -"qjt" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"qjI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"qjJ" = ( -/obj/effect/decal/sand_overlay/sand2, +/area/desert_dam/building/administration/control_room) +"ptA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"qjK" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"ptH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ptT" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"puf" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"puy" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"puA" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ + pixel_x = -32 + }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) -"qjM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"puM" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"puR" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/south_valley_dam) +"pva" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"pvK" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"pvL" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/substation/west) +"pvW" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northeast) +"pvX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 2 + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"pwA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"qjU" = ( -/obj/structure/platform{ - dir = 4 +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pwG" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pxc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"pxs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"qjV" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/south_valley_dam) -"qkc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"pxP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"pyJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"pyX" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"pzh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"qkq" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"qkH" = ( -/turf/open/floor/filtrationside/southeast, -/area/desert_dam/exterior/valley/valley_hydro) -"qkJ" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/lobby) +"pzk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"pzv" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" + icon_state = "road_edge_decal5" }, -/obj/item/stack/sheet/wood/medium_stack, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qkR" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"qlm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/west_tunnel) -"qls" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/whiteyellow, +/area/desert_dam/exterior/valley/valley_hydro) +"pzw" = ( +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/lobby) -"qlv" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"qlC" = ( +"pzy" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/dorms/pool) +"pzO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"pzR" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/northern_hallway) +"pzT" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/east, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_south) -"qlE" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_north) -"qlG" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"qlO" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"qlT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"qlV" = ( +"pAy" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/control_room) +"pAD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"qmd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"pAI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"qms" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"qmy" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"pAY" = ( /obj/structure/surface/rack, -/turf/open/floor/sandstone/runed, +/obj/item/tool/pickaxe/drill, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/temple) -"qmP" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_telecoms) -"qmQ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"qmV" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"qmZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +"pBb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"pBv" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_labs) +"pBz" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 4 }, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_two) -"qna" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"pBE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"pBO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/south_valley_dam) -"qnc" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"qnp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"pBZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"pCk" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/interior/dam_interior/west_tunnel) -"qnC" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river_mouth/southern) -"qnV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"pCm" = ( +/obj/structure/toilet, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"pCD" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"pCF" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"pCK" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pCQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Rec Yard" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"qob" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/hanger) -"qod" = ( -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"qot" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"pCU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"pDq" = ( +/obj/structure/filtration/flacculation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"pDv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"qoy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"qoC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"pDA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"pDB" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/north_valley_dam) -"qoD" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"pDE" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"pDN" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"pDQ" = ( +/obj/structure/toilet{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) -"qoF" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"pDT" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"pEa" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"qoN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper East Filtration" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_south) +"pEc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"qoP" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"pEh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -37178,11223 +36030,12338 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/west_wing_hallway) -"qoQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"pEF" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"pEI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"qpe" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/item/storage/donut_box, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"pES" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pEV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"pFp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/building/water_treatment_one/breakroom) +"pFx" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/telecomm/lz1_valley) -"qpf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"qpz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/temple) -"qpA" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"qqd" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"pFP" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/north_wing_hallway) +"pFU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"qqf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"qqr" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"pGj" = ( +/turf/open/desert/excavation/component9/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"pGn" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pGp" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"qqG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"pGF" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/garage) +"pHk" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/control_room) +"pHt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"pHA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"qqI" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pHY" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"qqK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"qqR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"pIb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"pIe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"qqY" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"qqZ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"pIk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Evidence" }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"qrc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners3/north, -/area/desert_dam/interior/dam_interior/hanger) -"qrf" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"qrl" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/dark, +/area/desert_dam/building/security/evidence) +"pIn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"pIo" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"pIq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"pIy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"pIC" = ( +/turf/open/desert/excavation/component1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"pIG" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"qry" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"pIR" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"pIV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"qrK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"qrP" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"pIX" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"qrV" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"pJv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"qsf" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"qsm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) -"qso" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"qsr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"qsx" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_medical) -"qsz" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"pJH" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pJI" = ( +/turf/open/floor/whiteyellow/southwest, +/area/desert_dam/interior/dam_interior/break_room) +"pJW" = ( +/obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"qsR" = ( -/obj/structure/stairs{ - dir = 1 +/area/desert_dam/exterior/valley/valley_telecoms) +"pKh" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/hallway) +"pKk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Research Workshop" }, -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"pKv" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"pKy" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"qsT" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/treatment_room) -"qsZ" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_one/lobby) +"pKE" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"qtd" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"qth" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"qtk" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_northwest) -"qts" = ( -/turf/open/floor/prison/darkyellowcorners2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"pKT" = ( +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/control_room) -"qtt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/mining/workshop) -"qtE" = ( +"pLf" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office2) +"pLj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, /obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_cargo) -"qtH" = ( -/obj/structure/holohoop{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"pLq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/warnwhite/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"qtM" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"pLA" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"pLF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"pLN" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pLQ" = ( /obj/structure/surface/table, -/obj/item/folder/yellow, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/west) -"quA" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_medical) -"quI" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/desert_dam/building/water_treatment_one/garage) +"pMb" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"pMr" = ( +/obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"pMy" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"pMC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"pMG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_labs) +"pMO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"pMX" = ( +/obj/structure/machinery/light, /turf/open/shuttle/can_surgery/red, /area/desert_dam/interior/dam_interior/hanger) -"qvb" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/office) -"qvo" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +"pMZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"pNg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"qvt" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/substation/west) -"qvu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"qvG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/lobby) -"qvK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"pNh" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/lobby) -"qvN" = ( -/turf/open/desert/excavation/component6/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"qvQ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"qvZ" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/disposalpipe/segment{ - dir = 4 +"pNi" = ( +/obj/structure/closet, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/office2) +"pNj" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"qwm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pNK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"pNL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"qwn" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"qwv" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river_mouth/southern) -"qwz" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_civilian) -"qwH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"qwI" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/east_caves) -"qwS" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"pNW" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/interior/caves/temple) +"pOe" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"pOs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/pillbottles, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/central_tunnel) -"qxi" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qxq" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_mining) -"qxv" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"qxy" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"qxD" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"pOy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/building/administration/overseer_office) -"qxF" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"qxQ" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"qyo" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"pOD" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pOO" = ( /obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"qyr" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"pPe" = ( +/turf/open/floor/coagulation/icon7_1, +/area/desert_dam/building/water_treatment_two) +"pPg" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"qyH" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"pPo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"pPt" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"pPv" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"qyJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"qyO" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_hydro) +"pPI" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"pPO" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/building/bar/bar) -"qyY" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/west_wing_hallway) -"qzA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"pPZ" = ( +/turf/open/desert/excavation/component2/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"pQc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"pQo" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/green/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pQt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"qzZ" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"pQR" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_mining) -"qAj" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/prison/yellowfull, -/area/desert_dam/building/hydroponics/hydroponics) -"qAG" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"qAM" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/security/prison) +"pQT" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"qAN" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"qAX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"pQU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_one) -"qBb" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"qBc" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/landing_pad_two) -"qBd" = ( -/turf/open/desert/excavation/component2/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"qBl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/south_valley_dam) +"pRb" = ( +/obj/structure/showcase{ + color = "#880808"; + desc = "A large red statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "The Titan" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1; + icon_state = "halfarmor7_ebony" + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1; + icon_state = "y-boots4_ebony" + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + icon_state = "pred_mask12_ebony"; + unacidable = 0 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/desert_dam/interior/caves/temple) +"pRk" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_two/purification) +"pRm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/obj/structure/pipes/standard/simple/hidden{ + dir = 9 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"pRo" = ( /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"qBK" = ( -/obj/structure/machinery/light, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"qCi" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qCp" = ( -/obj/structure/disposalpipe/segment, +"pRs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"pRt" = ( +/obj/structure/surface/table/woodentable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"qCI" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"qCL" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"pRx" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"pRS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"qDg" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"qDl" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/medical/garage) -"qDm" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"qDv" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"qDD" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/building/dorms/hallway_northwing) +"pSg" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_one/purification) +"pSh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"qDE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"qDF" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"qEw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"pSn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"qEI" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"pSr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"pSt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"pSO" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"pSX" = ( +/obj/structure/cargo_container/grant/right, /turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"pTe" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"pTj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_two) +"pTF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"pTT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"pUk" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) -"qEJ" = ( -/obj/structure/desertdam/decals/road_edge, +"pUp" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pUA" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"pUG" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 2 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pUO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"pUR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"qEP" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"pVe" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"pVf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"pVj" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"pVA" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pVU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office1) -"qEQ" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/treatment_room) -"qFh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/north_valley_dam) -"qFu" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"pVX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"pVY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"pWp" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"pWq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pWB" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"pWP" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"qFx" = ( +/area/desert_dam/building/water_treatment_two/hallway) +"pWS" = ( +/turf/open/floor/darkredcorners2/east, +/area/desert_dam/building/administration/lobby) +"pXB" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"pXF" = ( /obj/structure/surface/table, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"qFz" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"qFB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"qFW" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_northwest) -"qFX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_east) -"qGc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/west_wing_hallway) -"qGd" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"qGi" = ( -/obj/structure/bedsheetbin, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"pXX" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/caves/central_caves) +"pYf" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{ + pixel_y = 32 }, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"qGp" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"qGq" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river_mouth/southern) -"qGr" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/north_wing_hallway) -"qGy" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"qGB" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"qGJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"qGK" = ( -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/dorms/pool) -"qGL" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"pYo" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"pYr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"pZc" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pZg" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/control_room) +"pZl" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"pZr" = ( +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) -"qGV" = ( -/obj/structure/bed/chair{ - dir = 4 +"pZz" = ( +/obj/structure/surface/table, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"pZQ" = ( +/obj/structure/machinery/door/window/northright{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"qal" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/security/lobby) -"qHg" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qap" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"qat" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"qaX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qaY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"qbb" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"qHj" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_one) -"qHE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/mining/workshop) -"qHF" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qHY" = ( +"qbc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"qbk" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"qbq" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qbC" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"qbG" = ( +/obj/structure/floodgate, /obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"qbM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Surgery" }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"qIb" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"qbW" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qbX" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qcj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"qIc" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"qcw" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"qcB" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"qcE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"qcN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"qIi" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"qIU" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"qcS" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/treatment_room) +"qcT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"qcW" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office2) +"qcY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"qdD" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"qJe" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_central_north) -"qJh" = ( -/obj/structure/bed/chair{ +/obj/effect/landmark/good_item, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"qdI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"qdP" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/north_valley_dam) +"qem" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"qew" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"qJj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/church) +"qeC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"qeP" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"qJn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Office Space" +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qfm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/office) -"qJo" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"qft" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"qJr" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"qfv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"qfz" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"qfI" = ( +/obj/structure/flora/bush/desert, /turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"qJt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_hydro) -"qJT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +"qfR" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"qfV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"qKm" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_labs) -"qKu" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"qge" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"qKz" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/exterior/telecomm/lz1_south) -"qKF" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"qKL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"qKY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"qLh" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"qLo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper SMES" - }, -/turf/open/floor/dark2, -/area/desert_dam/interior/dam_interior/smes_main) -"qLJ" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_civilian) -"qLM" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"qgm" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"qgr" = ( /obj/structure/desertdam/decals/road_edge, /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"qMc" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"qMe" = ( -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"qNk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"qNt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/substation/west) -"qNu" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/central_tunnel) -"qNC" = ( -/obj/structure/barricade/wooden{ +/area/desert_dam/interior/dam_interior/south_tunnel) +"qgw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"qND" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"qNU" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"qNY" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"qOf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"qOj" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"qOK" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison/cell_stripe/east, -/area/shuttle/trijent_shuttle/lz1) -"qOR" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"qOY" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"qPb" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"qgz" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/substation/northwest) +"qgF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"qPd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qhi" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qhl" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"qPe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"qPh" = ( -/obj/structure/bed, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"qPn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_two/lobby) -"qPs" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"qPS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"qPW" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qhn" = ( /obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"qho" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Hallway" + }, /turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"qQg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/north_valley_dam) -"qQm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"qhv" = ( +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/engine_west_wing) -"qQo" = ( +"qhC" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/desert_dam/interior/dam_interior/hanger) -"qQD" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"qQH" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"qQK" = ( -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/bar/bar) -"qQT" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_hydro) -"qQZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Foremans Office" +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"qhG" = ( +/obj/structure/bed, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"qhK" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"qhO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"qij" = ( /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) -"qRh" = ( -/obj/structure/machinery/power/apc/no_power/east, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"qiA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"qiK" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/desert_dam/interior/caves/temple) +"qiO" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"qRk" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"qiY" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"qRl" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/red/northwest, +/area/desert_dam/building/water_treatment_one/lobby) +"qjl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"qjp" = ( /obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"qRr" = ( -/obj/structure/pipes/vents/pump{ +/area/desert_dam/exterior/valley/north_valley_dam) +"qjs" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"qjw" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qjC" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"qjG" = ( +/turf/open/floor/prison/yellow/northwest, +/area/desert_dam/building/hydroponics/hydroponics) +"qjH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) +"qjJ" = ( +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"qjQ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"qkk" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/temple) +"qkz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"qRH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/desert_dam/building/administration/hallway) +"qkE" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) +"qkJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qkO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"qkQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"qRX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"qkU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"qlc" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/warden) +"qlf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"qSi" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"qlg" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"qlh" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/hanger) +"qlz" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"qlG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"qlH" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/workshop) +"qlK" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"qSt" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"qSx" = ( -/obj/structure/largecrate, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"qSz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_south) +"qlM" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/northeast) +"qlN" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"qlP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/desert/excavation/component7/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"qmd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qmg" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"qms" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/interior/caves/temple) +"qmy" = ( +/obj/structure/surface/rack, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"qmH" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/darkred2/west, +/area/desert_dam/building/administration/lobby) +"qmI" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_two) +"qmL" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"qmQ" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"qSC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) -"qSW" = ( -/obj/effect/decal/sand_overlay/sand2{ +/area/desert_dam/interior/dam_interior/smes_main) +"qmX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_mining) +"qnc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"qne" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"qng" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"qnw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"qnL" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"qnO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"qnV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qnX" = ( +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"qnY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"qnZ" = ( +/turf/open/floor/warnwhite/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"qof" = ( +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/building/water_treatment_one/breakroom) +"qog" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/lobby) +"qoq" = ( +/obj/structure/stairs, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"qTd" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"qTf" = ( +/area/desert_dam/exterior/valley/valley_telecoms) +"qoD" = ( +/obj/structure/stairs, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"qoR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"qpp" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"qpB" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"qpM" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 1; pixel_y = -10 }, /turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/south_tunnel) -"qTt" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_wilderness) -"qTC" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qTU" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"qUs" = ( -/obj/structure/bed/chair{ +"qpN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2 + }, +/obj/structure/machinery/door/window/southleft{ dir = 1 }, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"qUQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/central) -"qUW" = ( -/turf/open/floor/warnwhite/southeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"qUY" = ( -/turf/open/desert/excavation/component4/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"qVg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"qVw" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/platform_decoration{ +/turf/open/floor/dark, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"qpO" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"qVJ" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"qVN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"qpR" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/surgery_room_two) +"qqj" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/control_room) +"qqx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"qVO" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"qVT" = ( -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/armory) -"qWn" = ( -/turf/open/floor/plating/warnplate/southwest, +/obj/structure/machinery/door/window/southleft{ + dir = 1 + }, +/turf/open/floor/dark, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"qqF" = ( +/turf/open/jungle/impenetrable, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"qWs" = ( -/obj/structure/machinery/light{ - dir = 8 +"qqG" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"qqO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"qqR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/medical/break_room) -"qWD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qqW" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_isolation) +"qrm" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"qrr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/primary_storage) +"qsj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"qsv" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_wilderness) -"qXb" = ( -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_one) -"qXg" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt/rock1, +"qsA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/south_valley_dam) +"qtf" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"qth" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"qtj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_wilderness) +"qtq" = ( +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/exterior/valley/valley_hydro) -"qXj" = ( +"qtt" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qtJ" = ( +/obj/structure/machinery/door_control{ + id = "garage_dd"; + name = "Garage Lockdown"; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"qtL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"qtQ" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"quk" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"quo" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Operating Theatre 2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"qur" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"quu" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"quG" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/caves/east_caves) +"quK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"qvf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"qvA" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2; + icon_state = "pipe-u" + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"qvC" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"qwc" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qwg" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"qwk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"qwl" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"qwz" = ( +/turf/open/desert/excavation/component7/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"qwA" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"qXq" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"qXr" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"qXs" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"qwD" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"qwQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"qwU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_labs) +"qxh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"qxk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) -"qXv" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) -"qXI" = ( -/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/exterior/landing_pad_one) +"qxu" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"qxv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"qxF" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"qxH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) -"qXP" = ( +"qxT" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"qxV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"qxY" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/prison/darkred2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"qXW" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"qyb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"qyp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"qyx" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"qyJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"qyT" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"qzb" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/control_room) +"qzq" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/office2) +"qzr" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"qzw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"qAe" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"qAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"qAp" = ( +/obj/structure/cargo_container/trijent/left/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"qAu" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"qAw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) -"qXZ" = ( +"qAM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Garage Breakroom" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/interior/dam_interior/garage) +"qAO" = ( +/obj/structure/lz_sign/dam_sign, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"qAQ" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"qAR" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"qYc" = ( -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/church) -"qYh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/item/storage/donut_box, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"qAT" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/southwest) +"qBg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"qBt" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"qBy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"qBz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qBH" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/administration/office) +"qBP" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/valley/valley_labs) +"qBV" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_civilian) +"qBX" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"qCg" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/central) +"qCu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"qCz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/hallway_westwing) +"qCH" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"qYn" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/warden) -"qYq" = ( -/obj/structure/pipes/standard/simple/hidden{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"qCQ" = ( +/turf/open/desert/excavation/component4/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"qCX" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"qDg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"qDm" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"qDn" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"qDt" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"qDv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Cargo Bay" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"qDx" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"qDA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"qDF" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) -"qYt" = ( +"qDP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"qDR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"qDW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) +"qEa" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"qEb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"qEh" = ( +/turf/open/desert/excavation/component2/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"qEA" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"qEB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"qEE" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"qEJ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"qFi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"qFn" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/security/prison) +"qFr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"qFt" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"qFF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"qFU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qGd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"qYu" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" +"qGh" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_civilian) +"qGi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"qYw" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_two/lobby) -"qYI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"qGl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"qYJ" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"qGm" = ( +/obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"qGr" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"qGv" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell{ - pixel_x = 5 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"qGy" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"qGE" = ( +/turf/open/desert/excavation/component1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"qGP" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"qGT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"qGY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/effect/spawner/random/tool{ - pixel_x = -6 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"qYV" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/bar/bar) -"qZs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"qHa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"qZw" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"qHl" = ( /turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/central_caves) -"qZx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/bible, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"qHr" = ( +/obj/structure/closet/lasertag/blue, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"qZP" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"qZQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_labs) -"rat" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"ray" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"qHt" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"raB" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"raD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/cell_stripe/west, +/area/shuttle/trijent_shuttle/omega) +"qHz" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"qHA" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"qHF" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qHI" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/hanger) +"qHK" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"qIa" = ( +/turf/open/floor/coagulation/icon7_7_2, +/area/desert_dam/exterior/valley/valley_hydro) +"qIc" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"qIm" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"qIo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"raH" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"qIG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" + icon_state = "W" }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"raT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) -"rbE" = ( -/obj/item/stool, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"rbJ" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"rbR" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) -"rbV" = ( +"qIO" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_two) +"qIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qIW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qJf" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"qJq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"qJv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"qJy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"qJG" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"qJT" = ( +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"qKc" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"qKf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"qKg" = ( /obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"qKo" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qKs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"qKv" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"qKU" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"qKV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/west_tunnel) -"rcn" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"rcw" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"rcA" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/dam_interior/smes_main) +"qLf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"qLs" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"qLz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"qLJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"qLW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qMq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"qMr" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"qMv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"qMC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_telecoms) -"rcI" = ( -/obj/structure/machinery/fuelcell_recycler/full, +"qMM" = ( +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_one/purification) +"qMP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qNa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, /turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"rcP" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_north) -"rcR" = ( +/area/desert_dam/building/mining/workshop) +"qNh" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/virology_wing) +"qNk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"qNn" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"qNw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"rcW" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - name = "\improper Containment Lock"; - unacidable = 0 +/area/desert_dam/building/water_treatment_one/hallway) +"qNK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/plating/platebot, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"rdw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"rdW" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"reM" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"reZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/substation/west) -"rfd" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"rfm" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"qOg" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"rfo" = ( -/turf/open/floor/prison/yellow/northwest, -/area/desert_dam/building/hydroponics/hydroponics) -"rfU" = ( +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/interior/dam_interior/break_room) +"qOh" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"qOx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qOy" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"qOL" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"qON" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qOR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qOS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"qPt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/primary_storage) +"qPA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qPC" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"qPQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"qPR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"qPY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"rgA" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_northwest) -"rgD" = ( -/obj/structure/stairs, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"rgN" = ( -/obj/structure/platform{ +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"qQs" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"qQt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"rhi" = ( -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"rhu" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qQv" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"qQy" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"qQD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qQM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"qQW" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"qQZ" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qRe" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/coagulation/icon8_7, -/area/desert_dam/exterior/valley/valley_mining) -"rhA" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qRk" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/substation/west) +"qRl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_hydro) -"rhG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"ria" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"rid" = ( -/obj/structure/platform{ +"qRr" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) +"qRH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"qRK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"qRT" = ( +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel/manager, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"rie" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"qSi" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "sedimentation_A_1"; + pixel_y = -16 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"qSw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"qSX" = ( +/obj/structure/pipes/standard/simple/hidden{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"qTm" = ( +/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/chapel/north, -/area/desert_dam/building/church) -"rif" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"riq" = ( -/turf/open/floor/whitebluecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"riy" = ( -/turf/open/desert/rock/deep/transition/west, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/hanger) -"riC" = ( -/obj/effect/decal/cleanable/blood, +"qTq" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"qTt" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qTv" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/staffroom) +"qTz" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"qTF" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"qTH" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_civilian) +"qUh" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"riI" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"riX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/disposals) +"qUA" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"qUF" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_northwing) +"qUP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"rjJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/floor/wood, -/area/desert_dam/building/security/southern_hallway) -"rkj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"rks" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"rkY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"rlf" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"rlk" = ( -/turf/open/desert/dirt/rock1, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"qUQ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_northwest) +"qVb" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_hydro) -"rln" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"rlF" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"rlI" = ( -/turf/open/floor/prison/redcorner, -/area/desert_dam/building/security/northern_hallway) -"rlL" = ( +"qVp" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"qVA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/mining/workshop) -"rlU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"rmi" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"rmj" = ( +"qVI" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"rml" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"rmx" = ( -/turf/open/floor/coagulation/icon8_7_2, -/area/desert_dam/exterior/valley/valley_hydro) -"rmA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"rmB" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"rmI" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"rmX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"rnD" = ( -/obj/effect/decal/sand_overlay/sand2, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/interior/caves/central_caves) -"rnI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"qVK" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt/dirt2, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) -"rnV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"rnW" = ( -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/dorms/hallway_westwing) -"rob" = ( +"qVN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"roc" = ( -/obj/structure/machinery/light{ +/area/desert_dam/exterior/valley/valley_medical) +"qVZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"roj" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"ron" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"roo" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"rou" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/multitool, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"roy" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_hydro) -"roA" = ( -/obj/structure/flora/pottedplant, +/obj/structure/machinery/light, +/obj/item/trash/kepler, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"qWc" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"qWe" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"roX" = ( -/obj/structure/surface/table, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"qWo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"rpt" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"rpw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Checkpoint" + name = "\improper Restroom" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"rpD" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/bar/bar_restroom) +"qWR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, /obj/structure/disposalpipe/junction{ - dir = 8 + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"rpH" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"rpM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"qWW" = ( /obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"qXk" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 + }, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"qXq" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"rpP" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_wilderness) -"rpQ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"rpW" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"qXX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"qXZ" = ( /obj/structure/surface/table, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"rqh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"rqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"rqC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/mining/workshop_foyer) -"rqG" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"rqQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"rqZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"rrh" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"qYc" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/item/seeds/soyaseed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"rrn" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/filtrationside/east, -/area/desert_dam/exterior/valley/valley_hydro) -"rrv" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"rrF" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"rrJ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/darkred2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"rrX" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_hydro) -"rse" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"rsh" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"rsA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_labs) -"rsE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"rsG" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"rsJ" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/lobby) +"qYo" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"rtu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Engineering Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"rtA" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"rtF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"rtH" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) -"rub" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/office) +"qYw" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"qYA" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/control_room) +"qYG" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"rud" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/whitegreen/northwest, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_wing) -"ruz" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ruF" = ( -/obj/structure/cargo_container/hd/mid, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"ruS" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"rvd" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"rvx" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"rvy" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"rvz" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Archives" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/archives) -"rvK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/desert_dam/building/security/prison) -"rvM" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitepurplecorner/east, -/area/desert_dam/building/medical/chemistry) -"rvV" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"rvZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +"qYJ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northeast) -"rwh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"qYL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"rwm" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"rwn" = ( -/turf/open/floor/coagulation/icon1_1, -/area/desert_dam/exterior/valley/valley_hydro) -"rwo" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"rww" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"qYO" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"rwy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Lobby" +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/warehouse/breakroom) +"qYP" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/northeast) +"qYV" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_telecoms) +"qYX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) -"rwL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Research Hallway" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"rwY" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"rxh" = ( +/area/desert_dam/building/administration/hallway) +"qZc" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_mining) +"qZq" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"rxm" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"rxv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"rxQ" = ( -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"rxS" = ( -/obj/docking_port/stationary/trijent_elevator/occupied{ - id = "trijent_lz1"; - name = "Lz1 Elevator"; - elevator_network = "A"; - airlock_area = /area/shuttle/trijent_shuttle/lz1; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/A - }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) -"rya" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/desert_dam/interior/dam_interior/north_tunnel) +"qZD" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qZO" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"rah" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ryp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/desert_dam/building/mining/workshop) -"ryv" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 +"rai" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"rak" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"rao" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"ryO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ras" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"ray" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"rzU" = ( -/obj/structure/closet/secure_closet/scientist, +"raz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"raE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"rbh" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"rbi" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"rAf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"rAo" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"rAq" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"rbE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"rbT" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rcj" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"rcn" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"rcI" = ( +/obj/structure/machinery/chem_master, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) -"rAt" = ( -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"rAw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"rAI" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"rAJ" = ( +"rdC" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"rAP" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/exterior/landing_pad_two) +"rdE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"rdQ" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"rdW" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"rei" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"rAQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"rAU" = ( -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"rBf" = ( -/turf/open/desert/excavation/component8/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"rBg" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_south) -"rBE" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/building/water_treatment_one/garage) +"rej" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"rCg" = ( +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"reo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"reB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"rff" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"rfj" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_two) +"rfm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squareswood/north, +/obj/effect/decal/remains/human, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) -"rCm" = ( +"rfq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"rfr" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rfJ" = ( +/turf/open/floor/darkyellow2/southeast, +/area/desert_dam/building/substation/northwest) +"rfU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"rga" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rgb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"rgf" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"rgi" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar1"; + name = "\improper Cargo Bay Hangar" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"rCp" = ( -/obj/structure/platform/mineral/sandstone/runed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rCr" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"rgk" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"rCB" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"rgv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"rgL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"rCQ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_crashsite) -"rCR" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"rDd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"rDg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"rDq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/mining/workshop) -"rDt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/area/desert_dam/building/security/northern_hallway) +"rhg" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"rhq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"rDw" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/hanger) +"rip" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"rDA" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"rDB" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"riz" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"riL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Delivery" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"rDG" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"rDP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"rDT" = ( -/obj/structure/platform{ +/turf/open/floor/dark, +/area/desert_dam/building/cafeteria/loading) +"rjv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) -"rEa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"rEk" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"rEq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +"rjz" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"rjS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"rEs" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rEt" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"rEu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greencorner/west, -/area/desert_dam/building/dorms/hallway_northwing) -"rEA" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_cargo) -"rFd" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"rjV" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/medical/garage) +"rkd" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/mining/workshop_foyer) +"rkj" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"rFi" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz2) -"rFl" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/prison/blue, -/area/desert_dam/building/dorms/pool) -"rFv" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"rFy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Water Treatment" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"rkm" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"rFB" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"rkA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"rFH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_hydro) -"rFU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/desert_dam/interior/dam_interior/workshop) +"rkC" = ( +/obj/structure/machinery/light, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/workshop) +"rkE" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/warden) +"rkF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rGg" = ( -/turf/open/desert/excavation/component3/west, +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rkJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"rkK" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rkQ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/south_valley_dam) +"rkW" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) -"rGx" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"rGO" = ( +"rlb" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/telecomm/lz2_containers) +"rli" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"rHh" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"rHn" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"rHr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rHw" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"rHx" = ( -/obj/structure/stairs, +/area/desert_dam/exterior/valley/valley_wilderness) +"rlq" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"rlF" = ( +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"rlJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"rlL" = ( +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"rlM" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) -"rIC" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/building/substation/west) -"rIR" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_medical) -"rJj" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"rlR" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"rlU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"rmj" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"rmk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"rmw" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"rmz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"rmU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"rns" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/warehouse/breakroom) +"rnu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"rny" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"rnH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"rnI" = ( +/obj/structure/cargo_container/grant/rightmid, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"rJp" = ( -/obj/structure/pipes/vents/pump, +/area/desert_dam/exterior/valley/valley_mining) +"rnP" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"rnR" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/valley/valley_labs) +"rnY" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"roa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"rJw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/area/desert_dam/building/hydroponics/hydroponics) +"rob" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"rJK" = ( -/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rJM" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"rJT" = ( +/area/desert_dam/exterior/valley/valley_labs) +"roh" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"roq" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"rou" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"roC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"roD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/lobby) -"rJV" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"roJ" = ( /obj/structure/toilet{ dir = 8 }, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"rKi" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/dorms/pool) -"rKk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Filtration" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"rKt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"rKD" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"roP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"rpa" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/north_valley_dam) +"rph" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"rpo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/central) +"rpB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"rLd" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"rLl" = ( -/turf/open/floor/prison/bluecorner, -/area/desert_dam/building/administration/hallway) -"rLY" = ( +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rpF" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"rpH" = ( +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/security/prison) +"rpQ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_hydro) +"rpT" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt/dirt2, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/valley/valley_labs) -"rMe" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"rMu" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"rMw" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"rMA" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"rMZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"rNd" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"rNt" = ( -/obj/structure/stairs{ +"rqg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"rND" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"rOA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"rqt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"rPc" = ( -/obj/structure/platform{ - dir = 4 +/area/desert_dam/building/warehouse/loading) +"rqu" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"rqv" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) -"rPn" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"rPp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"rPt" = ( +"rqA" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"rqH" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"rqW" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/northeast) +"rrc" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/desert_dam/exterior/valley/valley_mining) +"rre" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/church) -"rPE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"rPV" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/building/medical/garage) -"rQp" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"rrk" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/landing_pad_one) +"rrl" = ( /turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"rQr" = ( +/area/desert_dam/interior/dam_interior/north_tunnel) +"rrz" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" + }, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"rrB" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"rrF" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/substation/west) +"rrI" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"rrL" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"rQC" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"rQQ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ +/area/desert_dam/interior/dam_interior/control_room) +"rrO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_one) +"rrW" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"rso" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rQR" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"rQT" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/holding) -"rRn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"rRC" = ( -/obj/structure/machinery/optable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"rsp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/light, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"rRI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"rup" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ruF" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"rRM" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"rRV" = ( -/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitegreen/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"ruP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"ruS" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"ruT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"rva" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Marshal Office" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"rvd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"rvg" = ( /obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"rRX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"rSp" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/device/encryptionkey, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/substation/west) +"rvl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"rSF" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) -"rSV" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/north_valley_dam) -"rSX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/area/desert_dam/interior/dam_interior/engine_west_wing) +"rvo" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"rvJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"rvN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/interior/caves/east_caves) -"rTe" = ( -/turf/open/floor/prison/red/north, -/area/desert_dam/building/security/northern_hallway) -"rTp" = ( -/obj/structure/machinery/computer/aifixer, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"rTw" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"rTC" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rwi" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"rwp" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"rTD" = ( -/obj/structure/bed/chair{ +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"rwH" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"rTR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/security/prison) -"rTT" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"rTV" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"rxa" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"rxg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"rxn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"rxp" = ( +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"rxy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/exterior/rock) -"rUb" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/rack, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rxD" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_mining) +"rxJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/hardpoint/locomotion/van_wheels{ - unacidable = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"rxS" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz1"; + name = "Lz1 Elevator"; + elevator_network = "A"; + airlock_area = /area/shuttle/trijent_shuttle/lz1; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/A }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/garage) -"rUf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"ryB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/turf/open/floor/prison/red/north, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"ryJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"ryL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"ryM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" + }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"rUp" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northwest) -"rUu" = ( +"ryW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/south_valley_dam) +"ryY" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_hydro) +"rzc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"rzf" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"rzy" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_one/purification) +"rzM" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"rzO" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"rzX" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"rAd" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel) +"rAm" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/workshop) -"rUK" = ( -/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"rAo" = ( +/obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rUO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/interior/caves/central_caves) +"rAp" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, /turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"rUS" = ( -/turf/open/floor/coagulation/icon1_1, -/area/desert_dam/building/water_treatment_two) -"rUW" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/warden) -"rVl" = ( -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/administration/hallway) -"rVo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"rVs" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/north_wing_hallway) -"rVt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"rVu" = ( +"rAG" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge/west, -/area/desert_dam/building/administration/meetingrooom) -"rVz" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/mining/workshop_foyer) -"rVA" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_labs) -"rVN" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"rWn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"rWq" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/desert_dam/building/mining/workshop_foyer) -"rWy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rAP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"rAS" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"rAV" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"rBi" = ( +/obj/structure/platform_decoration, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"rBn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"rWF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"rWN" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"rBt" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"rBF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"rXa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Controlroom" +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"rBH" = ( +/turf/open/floor/coagulation/icon7_1, +/area/desert_dam/exterior/valley/valley_hydro) +"rBK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"rXd" = ( -/obj/structure/barricade/wooden{ +/area/desert_dam/interior/dam_interior/smes_backup) +"rBL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"rBX" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) -"rXp" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"rXv" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"rXI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rYc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"rBZ" = ( +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/substation/west) +"rCp" = ( +/obj/structure/platform/mineral/sandstone/runed, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet10_8/west, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"rCx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/carpet6_2/west, /area/desert_dam/building/administration/overseer_office) -"rYd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"rCz" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"rCU" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"rDc" = ( +/turf/open/desert/excavation/component3/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"rDq" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_crashsite) +"rDy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_wilderness) -"rYz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_civilian) -"rYJ" = ( -/obj/structure/stairs{ - dir = 1 +"rDC" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"rDH" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"rDS" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"rEa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rEn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"rEq" = ( +/obj/structure/machinery/r_n_d/protolathe, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"rEr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rEF" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"rZq" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"rZv" = ( -/obj/structure/closet/lasertag/blue, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"rEK" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"rEV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"rZw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"rZx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"rZG" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/caves/central_caves) -"rZH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rFi" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz2) +"rFj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"rZU" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"rFm" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"rFu" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"rFy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Restroom" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"sap" = ( -/turf/open/floor/prison/darkyellow2/west, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"rFC" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_labs) +"rFG" = ( +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/engine_west_wing) -"saD" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"saN" = ( -/obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"sbd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"rFP" = ( +/turf/open/floor/warning/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"rFU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"sbg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/telecomm/lz1_south) -"sbB" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"sbD" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rGs" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"rGD" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/sterile_white, +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"sbU" = ( +"rGH" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"scm" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"sco" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"scx" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "damtemple_intact" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"rGN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) -"scF" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"scL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) -"scM" = ( -/turf/open/floor/prison/whitegreen/northeast, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) -"scP" = ( +"rGO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"rGS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"sdr" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"sdH" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt/desert_transition_edge1/west, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"rHc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/telecomm/lz2_storage) +"rHn" = ( +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/valley/valley_labs) -"sdK" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"sdR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"rHp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2; + icon_state = "pipe-u" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"rHw" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"rHy" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_cargo) -"sdY" = ( -/obj/structure/barricade/sandbags{ - dir = 1 - }, -/obj/structure/barricade/sandbags{ - dir = 4 +"rHV" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"rHX" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"rIp" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rIy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"rIM" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/lobby) +"rIU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"rJc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"rJq" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/medical/break_room) +"rJv" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"rJK" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rJR" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 8 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"sea" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_east) -"seg" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"sen" = ( -/turf/open/gm/river/darkred_pool, -/area/desert_dam/building/dorms/pool) -"seq" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/caves/central_caves) -"sev" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"seC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"seM" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_cargo) -"seX" = ( -/obj/structure/machinery/light{ - dir = 1 +"rKh" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"sfa" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"sfh" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"rKr" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"rKu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_east) -"sfk" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"sfl" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"rKJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"rLe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"rLj" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"sfq" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"sfv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"sfX" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"sgk" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rLl" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"sgx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"rLv" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"sgy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"rLB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"sgI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"rLM" = ( /obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/prison/red/southwest, -/area/desert_dam/building/water_treatment_two/lobby) -"sgR" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"shi" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) -"shq" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/south_valley_dam) -"shs" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/exterior/valley/valley_wilderness) -"shz" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"shZ" = ( -/obj/structure/toilet{ - dir = 8 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"rMa" = ( +/turf/open/floor/cult, +/area/desert_dam/building/church) +"rMn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"sio" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_south) -"sip" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"siq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"rMw" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"siu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"siA" = ( +/area/desert_dam/exterior/valley/valley_medical) +"rMM" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"rMR" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"rMW" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"rMZ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"rNe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"rNk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_civilian) -"siD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Showers" +"rNo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"siH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"rNy" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"sjm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"sjn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_dam_1"; - name = "\improper Hangar Shutters" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"rNN" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/west) +"rNP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"rNQ" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel) +"rOb" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_mining) +"rOx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"sjq" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"sjx" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"rOT" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"sjA" = ( -/obj/structure/bed/chair/office/dark, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"rPf" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"rPn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Kitchen" + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"sjD" = ( +/area/desert_dam/building/cafeteria/cafeteria) +"rPp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"rPr" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rPF" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/exterior/telecomm/lz1_valley) +"rPJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"rPL" = ( +/obj/structure/filtration/coagulation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"rQc" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"skf" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"skk" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"skB" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_hydro) -"skE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"rQn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/dorms/hallway_northwing) +"rQs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"skM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"rQv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rQx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"rQK" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"rQN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"skQ" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) -"skS" = ( -/obj/effect/decal/sand_overlay/sand2{ +"rQQ" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"skU" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"slk" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/hanger) -"slN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"slX" = ( -/obj/structure/bed/alien{ - color = "#aba9a9" - }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"slY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +"rQX" = ( +/obj/structure/flora/pottedplant, +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"smd" = ( +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/building/administration/lobby) +"rQZ" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"rRx" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office1) -"sms" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"rRy" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rRG" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"smD" = ( -/obj/structure/closet/secure_closet/freezer/fridge, +/area/desert_dam/interior/dam_interior/south_tunnel) +"rRJ" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/southern_hallway) +"rSt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"rSv" = ( +/obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"rSA" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"rSB" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"rSK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"smG" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"smK" = ( -/obj/structure/machinery/light, +"rSN" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"smM" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"smO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/desert_dam/interior/dam_interior/central_tunnel) +"rTc" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"rTl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/telecomm/lz2_storage) +"rTs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"snD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"rTD" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_cargo) +"rTR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"snL" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"snO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" - }, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"snT" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"soa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"rTS" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_south) +"rTV" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"sos" = ( -/obj/structure/machinery/computer/cameras/wooden_tv, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/overseer_office) -"soF" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"soP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"soQ" = ( -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/building/security/lobby) -"soY" = ( -/obj/structure/platform{ - dir = 4 +/area/desert_dam/exterior/rock) +"rTX" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/central_caves) +"rUl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"rUo" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"rUB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"spv" = ( -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"spR" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_wing) -"sqd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"sqi" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"rUK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rVe" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"sqt" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"sqw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"sqB" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"rVn" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"sqE" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"sqZ" = ( -/turf/open/floor/filtrationside/southwest, -/area/desert_dam/exterior/valley/valley_hydro) -"sri" = ( -/obj/structure/stairs{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"sru" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/exterior/valley/valley_wilderness) -"srE" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/landing_pad_one) -"srH" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/security/warden) -"srV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"srY" = ( -/turf/open/floor/prison/darkpurplecorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"ssg" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_hydro) +"rVo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"rVH" = ( +/obj/structure/machinery/computer/aifixer, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"rVI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"rVU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ssq" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"rWb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"rWm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) +"rWB" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"rWD" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) -"ssy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"rWG" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"rXa" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rXp" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"rXv" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"rXI" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ssL" = ( +/area/desert_dam/exterior/valley/bar_valley_dam) +"rXO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"rXV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"rYk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"rYB" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"ssM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"stz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"rYG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"rYI" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"rYL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"stI" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/southern_hallway) +"rYP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"stN" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"suc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"suz" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/landmark/nightmare{ + insert_tag = "minievac_westresearch" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"rZa" = ( +/turf/open/floor/prison/darkpurplecorners2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"rZC" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"rZU" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"saf" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"saw" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"saU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) -"suK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"sbN" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"suO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + pixel_y = 30 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"svh" = ( -/turf/open/floor/prison/sterile_white, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/control_room) +"scd" = ( +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/west_tunnel) -"svp" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"svu" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) -"svy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"scm" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"svI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"svJ" = ( -/obj/structure/platform{ +/area/desert_dam/exterior/valley/valley_hydro) +"scr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_south) -"swt" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"sxI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"scz" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_0" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"sxL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"sdj" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"sdC" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/overseer_office) +"sdO" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"sdR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"sdU" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"seo" = ( +/obj/structure/machinery/door/airlock/almayer/generic, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"sxY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"seu" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"seB" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/armory) +"seF" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"seL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"sye" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"syl" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river_mouth/southern) -"syv" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_two) -"syL" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"syQ" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"syR" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/CE_office) -"szd" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"szx" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"seM" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"seS" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"sfk" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"szF" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"sfm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/central_tunnel) -"szO" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/central_caves) -"sAk" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"sfp" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"sfF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"sAl" = ( -/turf/open/floor/whiteblue/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"sAr" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/north_valley_dam) -"sAM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"sAN" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"sfG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Loading Bay" }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/warehouse/breakroom) -"sAR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/treatment_room) -"sAZ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"sfI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"sfU" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/armory) +"sgb" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"sgn" = ( +/turf/open/desert/excavation/component4/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"sgO" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "sedimentation_A_1" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"sgP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"sgR" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sgX" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"sgZ" = ( /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"sBf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"she" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/mining/workshop_foyer) +"shp" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"shu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"shN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"shW" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"sBw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"sCc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"sid" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Virology Lab Cell" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"sCi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"sit" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"siv" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/building/water_treatment_one/breakroom) +"siC" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"siP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"sjd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"sjL" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"sCl" = ( +"sjP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"sky" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"skz" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/chemistry) +"skB" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_hydro) +"skH" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/virology_wing) +"skV" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"slh" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/warehouse) +"sli" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"sCm" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"sCs" = ( -/turf/open/floor/dark2, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"slu" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/south_valley_dam) +"slv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"slw" = ( +/turf/open/floor/prison/red, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"sCt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"sly" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"slN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"sCS" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_civilian) -"sEd" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/north_tunnel) -"sEs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/desert_dam/exterior/valley/valley_medical) +"slX" = ( +/obj/structure/bed/alien{ + color = "#aba9a9" }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"sEv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"sEx" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"sEE" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"smf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sms" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"sFe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"sFf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/area/desert_dam/exterior/valley/valley_hydro) +"smC" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"sFs" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"sFL" = ( -/turf/open/floor/whitepurple, -/area/desert_dam/building/medical/chemistry) -"sFN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"sni" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"snl" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_labs) +"sno" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"snD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"sGj" = ( -/turf/open/floor/darkyellow2/southeast, -/area/desert_dam/building/substation/northwest) -"sGq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"snE" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"snK" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"sGy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"snM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"snQ" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/lobby) +"snS" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"snX" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"soo" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/control_room) -"sGF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"sHi" = ( -/obj/structure/machinery/light{ +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"soO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"soT" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"spa" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"spt" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_mining) +"spu" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"sHk" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sHv" = ( +/turf/open/floor/chapel/west, +/area/desert_dam/building/church) +"spD" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"spW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_labs) +"spY" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"sqk" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/mining/workshop) +"sqo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"sqv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "E" }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"sHA" = ( -/obj/structure/window/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"sqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/southern_hallway) +"sqD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"sqK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"sqZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/telecomm/lz2_storage) +"srq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"srR" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"srX" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"sHC" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_central_north) -"sHD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"sHN" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"sIK" = ( -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"sIY" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/exterior/valley/valley_wilderness) -"sJe" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_telecoms) -"sJs" = ( -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/building/water_treatment_two/purification) -"sJA" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ssb" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"ssj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"sJB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"sJK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"sJL" = ( -/obj/structure/surface/table, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/security/warden) -"sJR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Engine Room" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"sJV" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"sKf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"sKj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"sKn" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"ssk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"sKo" = ( -/obj/structure/machinery/chem_master, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ssu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"ssy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ssL" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"ssM" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/hallway) +"sta" = ( +/obj/structure/machinery/chem_dispenser, /turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_RND) -"sKM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"sKX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"sLb" = ( -/obj/structure/bed/chair{ +"stf" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whiteyellow, -/area/desert_dam/building/water_treatment_one/breakroom) -"sLc" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"stl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"stp" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/south_valley_dam) +"str" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/item/paper_bundle, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"stt" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/north_tunnel) -"sLg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"stw" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"stx" = ( +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"stA" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"sLr" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_two) -"sLt" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/caves/east_caves) -"sLx" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"stB" = ( +/obj/structure/lamarr, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"stD" = ( +/obj/structure/filtration/machine_96x96/filtration, +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_two/purification) +"stG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"stR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"sue" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"sLS" = ( -/obj/structure/window/framed/bunker/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"sLX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"suf" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"sug" = ( +/obj/item/frame/table, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"sut" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) -"sMh" = ( +"suu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"suw" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"suD" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/prison/blue/north, -/area/desert_dam/landing/console) -"sMi" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"sMj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"sMv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"sMD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"sMF" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/lobby) -"sML" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"svs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"sMW" = ( -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northwest) -"sNd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"svy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/west_wing_hallway) -"sNj" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"sNl" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"svz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"sNt" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"sNM" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/red, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"sNY" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/CE_office) -"sOa" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) +"svB" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Office" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_south) -"sOc" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"svK" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/lobby) +"swe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/desert/excavation/component7/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"sOB" = ( -/turf/open/desert/excavation/component9/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"sOC" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"sOP" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"swn" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/lobby) +"swo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"sPc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"sPd" = ( -/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"swp" = ( +/obj/structure/cargo_container/trijent/mid/alt, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"sPf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/turf/open/floor/whitepurplecorner/east, -/area/desert_dam/building/medical/chemistry) -"sPw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1 +/area/desert_dam/exterior/valley/valley_mining) +"swr" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"swF" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"swL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"swP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northwest) -"sPG" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"sPH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/north_valley_dam) -"sPN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"sPW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"sPX" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/north_tunnel) -"sQg" = ( +/area/desert_dam/interior/dam_interior/lobby) +"sxa" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"sQj" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"sxc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" }, -/obj/structure/surface/table, -/turf/open/floor/prison/red/northwest, -/area/desert_dam/building/water_treatment_one/lobby) -"sQn" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"sQB" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"sxE" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"sxJ" = ( +/turf/open/floor/filtrationside/northeast, +/area/desert_dam/exterior/valley/valley_mining) +"sxT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sxW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"syb" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"sye" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"syh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"sym" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"syA" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river_mouth/southern) +"syL" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/landing_pad_one) -"sQV" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"syT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"sRa" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/landing_pad_one) -"sRq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"sza" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"szi" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/west_wing_hallway) -"sRx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"sRy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Floodgate Control" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"sRA" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"sRG" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"sSk" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"sSq" = ( -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"sSt" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"sSF" = ( +/area/desert_dam/building/water_treatment_one/garage) +"szp" = ( /obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"szq" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/disposals) -"sSH" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"szC" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_south) +"szG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/west_tunnel) -"sSR" = ( -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/bonegel, -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"szH" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"sST" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/landing_pad_two) -"sSU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"szO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"sAa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/treatment_room) +"sAO" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"sTc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/dorms/pool) -"sTh" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_south) +"sAS" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"sBw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"sBB" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/exterior/valley/valley_mining) +"sBH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"sTu" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"sBM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"sTv" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/telecomm/lz2_containers) -"sTw" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"sTG" = ( +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"sBT" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"sBU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) -"sTH" = ( +"sBY" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/landing_pad_one) +"sCa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"sTU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"sTV" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"sUb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"sUg" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"sCl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/mining/workshop) +"sCv" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/exterior/telecomm/lz1_valley) +"sCz" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/east_caves) -"sUl" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) -"sUr" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"sUx" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/interior/dam_interior/west_tunnel) -"sUF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"sCD" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"sCE" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/virology_isolation) +"sDc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"sUN" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"sUO" = ( -/obj/structure/machinery/light{ +/area/desert_dam/building/medical/lobby) +"sDo" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"sUT" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"sUX" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"sDw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"sDz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/desert/desert_shore/shore_corner1/west, -/area/desert_dam/interior/caves/temple) -"sVo" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_cargo) +"sDK" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"sVs" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"sVu" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"sVx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/garage) -"sVz" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) -"sVE" = ( -/turf/open/floor/prison/whitepurple/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"sDX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"sEv" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"sWn" = ( +"sEy" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/exterior/landing_pad_two) +"sEE" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/east_caves) +"sEO" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_wilderness) +"sES" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"sWo" = ( -/turf/open/floor/prison/darkpurplecorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"sWx" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/exterior/valley/valley_hydro) -"sWF" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"sWH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"sWS" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"sET" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"sEU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"sXh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"sXy" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/office1) -"sXD" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"sEY" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) -"sXJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"sEZ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"sXM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sFe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sXP" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"sXR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"sYe" = ( +/area/desert_dam/exterior/valley/valley_medical) +"sFg" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"sFz" = ( /obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"sFV" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/north_tunnel) +"sFW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"sYp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"sGh" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"sGr" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"sGt" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sYw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"sGH" = ( +/turf/open/floor/prison/redcorner, +/area/desert_dam/building/security/northern_hallway) +"sHe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"sHk" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sHt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"sHB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) -"sYL" = ( +"sHP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/desert_dam/building/water_treatment_one/lobby) +"sHS" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"sHV" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"sYQ" = ( +/area/desert_dam/building/medical/CMO) +"sId" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"sIF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"sIG" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"sIJ" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"sIR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/south_valley_dam) -"sZk" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office1) -"sZl" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"sZC" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkbrown2, -/area/desert_dam/interior/dam_interior/disposals) -"sZD" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northwest) -"sZP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) -"taj" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"sJd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_two) -"tak" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle/can_surgery/red, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) -"tap" = ( +"sJA" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"sJC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"sJG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"sJM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"sJQ" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"sJS" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + name = "Strange Temple" + }, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"sJV" = ( /obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"tat" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"sKj" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"sKp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"tax" = ( -/turf/open/desert/rock/deep/transition/west, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/western_dam_cave) -"taG" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +"sKq" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"sKz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"sKA" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"taN" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"sKR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/dorms/pool) +"sKU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/north_tunnel) -"taV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"tba" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_cargo) -"tbb" = ( -/obj/structure/desertdam/decals/road_edge, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"sLk" = ( +/turf/open/floor/warnwhite/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"sLm" = ( +/obj/structure/bed, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"sLs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/central_tunnel) +"sLx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tbr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/area/desert_dam/exterior/valley/valley_hydro) +"sLE" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/telecomm/lz1_valley) +"sLH" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/south_valley_dam) -"tbz" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"tbE" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/office1) -"tbP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Virology Lab Cell" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"sLS" = ( +/obj/structure/window/framed/bunker/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"sMf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"tcz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"sMi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"sMk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"sMo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"sMu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"sMH" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"sMJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"sML" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"sMQ" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_east) +"sNe" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/telecomm/lz2_storage) +"sNw" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"sNx" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"sNy" = ( +/obj/structure/surface/rack, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"tcD" = ( -/turf/open/floor/filtrationside/north, -/area/desert_dam/exterior/valley/valley_mining) -"tcL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet/edge/southeast, -/area/desert_dam/building/administration/meetingrooom) -"tcV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/southern_hallway) -"tcW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/area/desert_dam/building/mining/workshop) +"sNA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"sND" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"tda" = ( -/turf/open/floor/prison/darkpurplecorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"tdz" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"tdY" = ( +/area/desert_dam/exterior/river/riverside_south) +"sNH" = ( +/obj/structure/stairs, /obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"tec" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"sNO" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"tee" = ( +/area/desert_dam/interior/dam_interior/garage) +"sNR" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"sOb" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"sOe" = ( /obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"teg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"tel" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"teJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/tool/stamp, +/turf/open/floor/darkred2/southwest, +/area/desert_dam/building/administration/lobby) +"sOj" = ( +/obj/structure/closet, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/office1) +"sOG" = ( +/obj/structure/platform{ dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"sPf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"teR" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 +/area/desert_dam/building/water_treatment_one/control_room) +"sPg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"teT" = ( -/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"sPh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"tfa" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tfb" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_one) -"tfe" = ( -/turf/open/floor/filtrationside/west, -/area/desert_dam/exterior/valley/valley_hydro) -"tfh" = ( -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"tfA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) -"tfU" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"tgg" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"tgh" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"sPB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Breakroom" }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"sPJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"sPQ" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"tgz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"sQV" = ( +/turf/open/floor/prison/darkyellowcorners2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"sRe" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"sRq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/evidencebag, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"sRt" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"sRv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tgI" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt/desert_transition_edge1/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"sRy" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_cargo) +"sRC" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "distribution" + }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"tgL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"tgS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, +"sRL" = ( +/obj/structure/closet/firecloset, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"tgT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/building/administration/control_room) +"sRN" = ( +/turf/open/desert/excavation/component9/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"sRS" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"tgZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"sRV" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_labs) +"sSg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Freezer" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"thp" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_south) -"thD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner, -/area/desert_dam/interior/dam_interior/break_room) -"thF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"thH" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"tid" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"sSo" = ( +/obj/effect/decal/sand_overlay/sand2, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tie" = ( -/obj/structure/surface/table/woodentable/fancy, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"sSN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"sTn" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"tig" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"sTt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"sTD" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northwest) +"sUi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Loading Bay" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"tii" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz2_storage) -"tix" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 + name = "\improper SMES" }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/substation/west) -"tiC" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"tiK" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/virology_isolation) -"tiY" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/desert_dam/interior/dam_interior/hanger) -"tjd" = ( -/obj/item/trash/semki, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"tjp" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"tjA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"tjI" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"tjX" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"tka" = ( -/turf/open/floor/coagulation/icon8_4, -/area/desert_dam/exterior/valley/valley_hydro) -"tkf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tky" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tkz" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"tkN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"tlx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/warehouse) -"tlD" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"tlG" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/interior/dam_interior/control_room) +"sUj" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"sUr" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"sUs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"sUt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"tlJ" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/prison/darkyellow2/west, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_east_wing) -"tlO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +"sUV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"tmk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"sVg" = ( +/obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"tmm" = ( -/turf/open/desert/cave/cave_shore/northeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"tmo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/desert/desert_shore/shore_corner1/west, +/area/desert_dam/interior/caves/temple) +"sVs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"sVt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"tmp" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/north_valley_dam) -"tmq" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/central) -"tmv" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"sVH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/north_valley_dam) -"tmw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper RnD" +/area/desert_dam/exterior/valley/valley_northwest) +"sVL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"tmx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/caves/central_caves) +"sVQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/northeast) +"sWb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"sWl" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"sWx" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 5 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"tmF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"tmJ" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"sWF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sWL" = ( /obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters{ - dir = 2 +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/security/prison) +"sWS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"sWZ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_south) +"sXb" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tmL" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_south) +"sXh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"sXn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"sXv" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"sXB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"sXE" = ( +/turf/open/desert/excavation/component8/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"sXH" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"tmO" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"tmP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"sXM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sXR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"sXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"sYa" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"sYc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"tmT" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"tnr" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"tnu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"sYp" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" + icon_state = "road_edge_decal9" }, /obj/effect/decal/sand_overlay/sand1{ - dir = 5 + dir = 9 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"tnO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"tnQ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"tnR" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"tnS" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/red/northwest, -/area/desert_dam/building/security/lobby) -"tnU" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"tnY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) -"toa" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_mining) -"toi" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/desert_dam/exterior/valley/bar_valley_dam) +"sYu" = ( +/obj/structure/surface/table, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"tom" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/computer/crew, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"toQ" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"toR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_cargo) -"tpi" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/east_wing_hallway) -"tpq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, +/turf/open/floor/darkred2/west, +/area/desert_dam/building/security/warden) +"sYw" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"tpU" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"sYG" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/desert/dirt/dirt2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"sYH" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"sYJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/north, /area/desert_dam/exterior/river/riverside_east) -"tqf" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"tqk" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"tqr" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"tqw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Armoury" +"sYZ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"tqJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"trh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/southwest) -"trk" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"trr" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +/area/desert_dam/interior/dam_interior/hanger) +"sZe" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"sZA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"trv" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_isolation) -"trD" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"trH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"trK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"sZW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"sZX" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_cargo) +"taf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"tan" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"taA" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/east_caves) +"taD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"taG" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 1; - name = "\improper Medical Hallway" + icon_state = "stop_decal5" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"trP" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"trZ" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"tsl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"taJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"tba" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"tbb" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"tsn" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"tsO" = ( +/area/desert_dam/exterior/valley/valley_labs) +"tbU" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"tbW" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"ttm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire{ - pixel_x = 3 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"tcb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/tool/extinguisher{ - pixel_x = -10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"ttn" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ttx" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"ttA" = ( -/obj/structure/showcase, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ttH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"ttL" = ( -/obj/structure/surface/table/reinforced, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ttN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/building/administration/hallway) +"tci" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Workshop" + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"tub" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/interior/caves/east_caves) -"tud" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, +/area/desert_dam/building/mining/workshop) +"tcj" = ( +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"tuf" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"tul" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"tup" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Lobby" +"tcr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"tuu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"tcD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"tuD" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"tuE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"tdd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ dir = 2; - name = "\improper Toilet Unit" + icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tuL" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tdZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"teb" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"teB" = ( +/turf/open/floor/prison/darkbrown3, +/area/desert_dam/interior/dam_interior/hangar_storage) +"teQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_one/lobby) -"tuS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"tuV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"tuW" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"teR" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/interior/dam_interior/south_tunnel) -"tuZ" = ( -/obj/structure/machinery/light, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"tvb" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"teS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"teZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tfc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") + }, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"tfo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) -"tvc" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"tvd" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform_decoration{ +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tfw" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"tfA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"tvl" = ( -/obj/structure/stairs{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"tfJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"tfM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_telecoms) +"tgd" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"tvx" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"tgr" = ( +/obj/structure/platform{ dir = 4 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"tgy" = ( +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"tgE" = ( /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"tvP" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"tvS" = ( -/turf/open/desert/excavation/component1/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"twb" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/central) -"twe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"tgI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"tgS" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"thp" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"thr" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/lobby) +"thP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"thR" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/southern_hallway) +"tii" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz2_storage) +"tir" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tiv" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"tws" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"twu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"twJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southeast, -/area/desert_dam/interior/dam_interior/disposals) -"twL" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"twP" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"twY" = ( +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tiJ" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"txg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"txl" = ( +/obj/effect/spawner/random/tech_supply, +/obj/item/handset, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tiP" = ( /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"txo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Detectives Office" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/detective) -"txr" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"txw" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Examination Room" - }, -/turf/open/floor/prison/sterile_white/west, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"tiU" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"tiX" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/office1) -"txy" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_east) -"txH" = ( +"tjf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"tjj" = ( +/obj/structure/surface/table, +/obj/item/tool/wirecutters, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"txV" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/lobby) -"tya" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/landing_pad_one) -"tyc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tyo" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"tyB" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"tjl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"tjR" = ( +/turf/open/floor/coagulation/icon6_8, +/area/desert_dam/exterior/valley/valley_hydro) +"tjX" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"tjZ" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"tkb" = ( +/obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"tzd" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"tzf" = ( -/obj/structure/stairs{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"tkf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"tkx" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"tzn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tzw" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_northwest) -"tzF" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/caves/east_caves) -"tzP" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ - pixel_x = 32; - shuttleId = "trijentshuttle22" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"tkz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/loading) -"tAb" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"tkO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/security/prison) +"tkU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 }, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"tln" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"tAt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tAy" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tAB" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/welding{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/device/radio{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/tool/lighter/random{ - pixel_x = -4; - pixel_y = 8 +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tlu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/north_valley_dam) +"tly" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/garage) -"tAC" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"tAV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"tlG" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/north_wing_hallway) +"tlK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tlW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"tBa" = ( +/obj/item/clothing/glasses/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tmj" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"tml" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"tmr" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"tBh" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"tBi" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"tBj" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) -"tBp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"tBA" = ( -/turf/open/floor/warning/northeast, -/area/desert_dam/interior/dam_interior/engine_room) -"tBD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tBM" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"tBP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"tmw" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_hydro) +"tmB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"tBQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/garage) -"tCd" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 2; - name = "\improper Research Office" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/landing_pad_one) +"tnu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"tCt" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/landing_pad_one) -"tCx" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"tnK" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"tnQ" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"tCF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"tCI" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/mining/workshop_foyer) -"tCS" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"tnZ" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/control_room) -"tDd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"tDq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"tDr" = ( -/turf/open/desert/excavation/component5/east, +/area/desert_dam/building/mining/workshop) +"toq" = ( +/turf/open/desert/excavation/component6/north, /area/desert_dam/exterior/valley/valley_crashsite) -"tDt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/telecomm/lz1_south) -"tDI" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) -"tEh" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"tEk" = ( +"toz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"toB" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"toF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"toN" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"tpb" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"tpf" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tpi" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"tpl" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"tEl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"tEs" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"tED" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/central) -"tEO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"tFf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) -"tFk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"tFx" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/church) -"tFB" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/southeast, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"tFP" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"tpR" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) -"tFS" = ( -/obj/effect/decal/remains/human, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"tFT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/warehouse/loading) -"tFV" = ( +/area/desert_dam/interior/dam_interior/lobby) +"tpS" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"tGc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"tGz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_mining) +"tqd" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"tHb" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"tHd" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/barricade/wooden, /turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_south) -"tHk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/CE_office) -"tHs" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office1) -"tHR" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"tIb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"tIr" = ( +/area/desert_dam/exterior/river/riverside_central_north) +"tqs" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"tIs" = ( -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"tIA" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/substation/southwest) -"tIN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"tIW" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river_mouth/southern) +"tqw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"tqB" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"tJa" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/lobby) -"tJd" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"tJj" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/building/water_treatment_one/purification) -"tJB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/virology_wing) -"tJE" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"tqD" = ( +/obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"tJU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"tqE" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"tJV" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tqI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"tJX" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office2) -"tKb" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"tKf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"tKp" = ( -/turf/open/floor/warning/north, -/area/desert_dam/interior/dam_interior/engine_room) -"tKq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"tKt" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"tKu" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"tKw" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"tKy" = ( -/obj/structure/platform{ +/area/desert_dam/building/cafeteria/cafeteria) +"tqO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"tKG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/mining/workshop) -"tKN" = ( -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"tKZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"tLf" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"tLg" = ( -/turf/open/floor/prison/darkbrowncorners2/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"tLs" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"tLv" = ( -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"tLx" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_northwest) -"tLX" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"tMc" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"tMi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"tMj" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"tqU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/whiteyellow/northeast, -/area/desert_dam/interior/dam_interior/garage) -"tMn" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"tMq" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_mining) -"tMy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"trk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/mining/workshop) -"tMJ" = ( -/obj/structure/stairs{ - dir = 8 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"tro" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"trr" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"trP" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"trV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_wilderness) -"tMR" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) -"tNj" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"tNl" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"tNp" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"tNu" = ( -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"tNv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"tNB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/area/desert_dam/interior/dam_interior/lobby) +"trZ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"tsb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/warehouse/breakroom) +"tso" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tss" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"tNT" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"tNV" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"tOk" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_south) -"tOl" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"tsD" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"tsG" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"tsN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"tOm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"tOv" = ( -/turf/open/floor/prison/red/east, -/area/desert_dam/building/security/lobby) -"tON" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/office2) -"tPh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"tPm" = ( -/turf/open/floor/prison/darkpurplecorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"tPr" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/interior/caves/east_caves) -"tPt" = ( +"ttj" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"ttn" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"ttr" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northeast) +"tty" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"ttE" = ( +/obj/structure/morgue{ dir = 8 }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"tPy" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"tPB" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"ttL" = ( +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ttP" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"tPC" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"ttR" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river_mouth/southern) +"ttW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"tup" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"tPL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"tuw" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 4 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"tPP" = ( -/obj/structure/platform, +/area/desert_dam/exterior/valley/north_valley_dam) +"tuy" = ( +/obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"tQg" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) -"tQi" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"tQs" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_cargo) -"tQH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"tQJ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"tQN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"tQR" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"tQY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) -"tRb" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/exterior/landing_pad_two) +"tuW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"tRh" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"tRm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"tRq" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/deathrow) -"tRH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"tuZ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"tRJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/loading) -"tRM" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_east) -"tRT" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "purple-new-bridge" +/obj/structure/mirror{ + pixel_x = -28 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"tRV" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tRW" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"tRZ" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"tva" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) -"tSc" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"tvk" = ( /obj/effect/decal/sand_overlay/sand2{ - dir = 1 + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"tSg" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"tSh" = ( -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"tSq" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_northwest) -"tSs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"tSE" = ( -/obj/structure/prop/dam/boulder/boulder3, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"tSK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"tTb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/interior/dam_interior/north_tunnel) +"tvy" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Research Director Office" }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"tTq" = ( -/turf/open/floor/prison/darkbrown3/northwest, -/area/desert_dam/interior/dam_interior/hanger) -"tTs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"tTt" = ( -/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tvC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"tvT" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"twj" = ( +/turf/open/floor/warning/southeast, +/area/desert_dam/interior/dam_interior/engine_room) +"tws" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tTv" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/west) -"tTD" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"tTM" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"twx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) -"tUs" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"tUD" = ( -/obj/structure/stairs, +"txk" = ( +/obj/structure/stairs{ + dir = 8 + }, /obj/structure/platform{ - dir = 4 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/south_valley_dam) -"tUK" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_mining) -"tUM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"tUY" = ( +/area/desert_dam/exterior/valley/valley_telecoms) +"txt" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"tVj" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/blue/southeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"tVp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"txu" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"txA" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_crashsite) -"tVy" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_mining) -"tVE" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"tVF" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"tVP" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"tWe" = ( -/obj/structure/machinery/mill, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"tWi" = ( -/obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"tWz" = ( -/turf/open/desert/dirt/dirt2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) -"tWV" = ( -/obj/structure/platform_decoration{ +"tyb" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"tyc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tyk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/desert/dirt/dirt2, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) -"tXn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ +"tyq" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"tyx" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tyD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"tyL" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"tzc" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"tze" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"tzm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"tXs" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"tzu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"tXt" = ( -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/bar/bar) -"tXB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"tXI" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"tXJ" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"tXO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/area/desert_dam/building/cafeteria/cafeteria) +"tzz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_hydro) -"tXQ" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"tXX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"tXY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/garage) -"tYb" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"tzQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"tYG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tAe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/interior/caves/east_caves) +"tAm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"tAn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/telecomm/lz2_storage) +"tAt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"tAy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tAF" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"tAH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_telecoms) +"tAM" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"tAR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_labs) +"tBt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"tYO" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"tBD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"tBK" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"tCa" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"tYQ" = ( +/area/desert_dam/building/dorms/restroom) +"tCf" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"tCl" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"tZe" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"tCv" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"tCz" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"tCS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"tCX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"tDe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"tDh" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_civilian) +"tDH" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"tZm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"tDJ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/security/lobby) +"tDO" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/administration/overseer_office) +"tEl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"tZz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/lightreplacer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"tZQ" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/rock) -"uan" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"uar" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"uau" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"uaw" = ( +"tEm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"tEu" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"uaI" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"tEH" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"uaK" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"uaW" = ( -/obj/structure/sink/kitchen, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/control_room) +"tFh" = ( /obj/structure/surface/table/reinforced, +/obj/structure/sink/kitchen, /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"uaY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_mining) -"ubc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) -"ubd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"ubo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"ubq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"tFy" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"tFF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"tFI" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"tFO" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"tFS" = ( +/obj/effect/decal/remains/human, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"tFU" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) -"ubH" = ( +"tGb" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) -"ucJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/break_room) -"ucV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_wilderness) -"ucW" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/treatment_room) -"ucX" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"ucZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/south_valley_dam) -"ude" = ( +/area/desert_dam/exterior/valley/valley_northwest) +"tGf" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"tGk" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"tGR" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) -"udp" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/prison/darkpurple2/north, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"udC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/kepler, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"udD" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"udK" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"udT" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, +"tGY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"udX" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"uec" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet/edge/north, -/area/desert_dam/building/administration/meetingrooom) -"uek" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"uen" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"tHc" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"uer" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" +/obj/structure/pipes/standard/simple/hidden{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"uex" = ( -/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"tHg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"uez" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/garage) -"ueI" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"tHj" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/warden) +"tHt" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"tHv" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"tHz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ueV" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"tHE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"ueW" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/desert_dam/building/security/prison) -"ueZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"tIq" = ( +/obj/item/trash/hotdog, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"tIE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Backroom" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ufb" = ( -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ufh" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/interior/caves/central_caves) -"ufW" = ( -/turf/closed/wall/mineral/sandstone/runed, -/area/desert_dam/exterior/rock) -"ufZ" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"tIH" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/raisins, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"ugn" = ( -/turf/open/desert/excavation/component3/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"ugr" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"ugL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"tIJ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"tIO" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"tIU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ugO" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"tJe" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_civilian) +"tJl" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"tJm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tJM" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"tJV" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"tJX" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"ugT" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tKe" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"tKf" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"tKi" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_hydro) -"ugU" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"uhb" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"uhp" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) -"uhB" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"tKt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_telecoms) +"tKv" = ( +/obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/desert_dam/building/security/prison) -"uhK" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"tKE" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze{ + pixel_x = -7 }, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) -"uhQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"uhU" = ( -/obj/structure/machinery/light{ +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/interior/dam_interior/garage) +"tKF" = ( +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/substation/northwest) +"tKK" = ( +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"tKM" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"tKO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/workshop) +"tLY" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/garage) -"uir" = ( -/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"tMa" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"tMd" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" + name = "\improper Filtration" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"tMi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"tMr" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uiE" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river_mouth/southern) -"uiH" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"uiM" = ( +/area/desert_dam/building/water_treatment_two/control_room) +"tMs" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"tMy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/mining/workshop) +"tMA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"tMI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"tMO" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"tMS" = ( +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"tMZ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"tNa" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/treatment_room) +"tNg" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"tNi" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"tNp" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) +"tNC" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/water_treatment_one/lobby) +"tNJ" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"uiP" = ( +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tNP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"tNR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"tNU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"uiY" = ( -/obj/item/clothing/head/welding, -/obj/structure/surface/rack, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"ujg" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"ujk" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/desert_dam/exterior/valley/valley_hydro) +"tOd" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/interior/caves/central_caves) +"tOi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"ujm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"ujp" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"ujD" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"tOl" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"tOm" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ujW" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"tOr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"ukl" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"uko" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"uks" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"ukJ" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) -"ulc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"tOu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"tOE" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) -"ult" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"tOW" = ( +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"tPl" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river_mouth/southern) +"tPq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"ulu" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"tPr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tPs" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"uly" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/interior/caves/central_caves) -"ulP" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/landing_pad_two) -"ulS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"ulV" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"tPP" = ( +/obj/structure/platform, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"tPW" = ( +/obj/effect/blocker/toxic_water, /obj/structure/platform_decoration{ - dir = 8 + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river_mouth/southern) +"tQa" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"ulW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Chemistry" +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/building/mining/workshop_foyer) +"tQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"uma" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"tQc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/bar_valley_dam) -"umh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"uml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"umm" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/bar_valley_dam) -"umr" = ( -/obj/structure/bed/chair, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"umG" = ( +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"tQs" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"umH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"tQu" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"tQw" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"tQC" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/desert_dam/building/water_treatment_one/breakroom) +"tQE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"tQR" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"tQT" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"tRd" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"tRp" = ( +/turf/open/desert/excavation/component6/southwest, /area/desert_dam/exterior/valley/valley_crashsite) -"umY" = ( -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"uno" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"unQ" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/interior/dam_interior/control_room) -"uov" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison/green/east, -/area/desert_dam/interior/dam_interior/atmos_storage) -"uoN" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/treatment_room) -"uoP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"tRv" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/hanger) +"tRR" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"tRV" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) -"uoZ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"upf" = ( +"tRX" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"upD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"upN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"upP" = ( -/obj/structure/barricade/sandbags{ - dir = 1 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tSd" = ( +/obj/item/tool/pen, +/obj/item/paper_bundle, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"tSK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/obj/structure/barricade/sandbags{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"tSU" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"uqi" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"tTa" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"tTe" = ( +/obj/structure/machinery/computer/turbine_computer, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"tTq" = ( +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/treatment_room) +"tTw" = ( +/obj/structure/machinery/medical_pod/sleeper, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"uqE" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/west_tunnel) -"uqG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"uqR" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"uqX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"urb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"urj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy/tank{ - icon_state = "jar_sample" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"tTA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Research Substation" }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"urx" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"urA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"urG" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"urH" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/substation/southwest) -"urO" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"usm" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"ust" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/whitered, -/area/desert_dam/building/medical/chemistry) -"usy" = ( +/area/desert_dam/building/substation/northeast) +"tTN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"usI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"usU" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"utb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"utc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"ute" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"tUb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"tUl" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"uty" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"tUq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"utT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"utX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"uuh" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"uuk" = ( -/obj/structure/filtration/coagulation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"uul" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"tUv" = ( +/obj/item/stool, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"uuA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/cell_stripe/east, -/area/desert_dam/interior/dam_interior/hanger) -"uuB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/area/desert_dam/building/warehouse/warehouse) +"tUx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/interior/dam_interior/south_tunnel) -"uuF" = ( -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/hanger) -"uuH" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/south_valley_dam) -"uvb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/healthanalyzer, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/treatment_room) -"uvd" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/virology_isolation) -"uvf" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"uvn" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/lobby) -"uvt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"uvL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"tUD" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"tVa" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"tVj" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"uvO" = ( -/turf/open/floor/coagulation/icon6_8_2, +/area/desert_dam/building/security/lobby) +"tVu" = ( +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) -"uvQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/platform_decoration{ +"tVx" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"uvS" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"uvV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/sink/kitchen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"uwg" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"uwr" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_wilderness) -"uwt" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hangar_storage) +"tVE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"uwH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"uwN" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"tVH" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"tVR" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, /turf/open/floor/darkyellow2/east, /area/desert_dam/building/substation/northwest) -"uwR" = ( +"tWe" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_central_south) +"tWq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"tWv" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"uwX" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/staffroom) +"tXw" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"tXz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_two/lobby) -"uxi" = ( -/turf/open/floor/cult, -/area/desert_dam/building/church) -"uxl" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"tXF" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_backup) +"tXM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"tYs" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"tYv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/mining/workshop) +"tYG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1 + name = "\improper Cell 3" }, -/turf/open/floor/dark2, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"uxn" = ( +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"tYZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/lobby) -"uxD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"uya" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uyc" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"uyh" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"uyn" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"uyw" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/west_tunnel) -"uyD" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +"tZc" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"uyE" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"uyJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"tZu" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"tZz" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) -"uyU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"uyV" = ( -/obj/structure/closet, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/office1) -"uzh" = ( +"tZE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"uzj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner/north, -/area/desert_dam/building/hydroponics/hydroponics) -"uzs" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_east) -"uzz" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/candle, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"uzE" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"tZQ" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/exterior/rock) +"tZV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"uzO" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"uAa" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/telecomm/lz1_valley) -"uAe" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"uAi" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"uAp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"uAs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"uag" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"uAu" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"uAD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"uap" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"uAE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"uAO" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/southern_hallway) -"uAP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"uaz" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/surgery_room_two) +"uaK" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"ubg" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ubr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"uAT" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/chapel, -/area/desert_dam/building/church) -"uAZ" = ( -/obj/item/reagent_container/food/drinks/flask/detflask, -/obj/item/clothing/head/det_hat, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"uBa" = ( +"ubL" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"uBP" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"uBT" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"uCj" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_crashsite) -"uCx" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"uCy" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/workshop) -"uCA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"uCD" = ( -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"uCM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) -"uCW" = ( -/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"ubU" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"ucc" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uDw" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/building/substation/northwest) -"uDC" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"uDF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"uco" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"uDO" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 3" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ucp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"ucO" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"ucP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"uDS" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"uEg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Kitchen" +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"ucQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engineering Hallway" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"uEo" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"udn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"udq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/central) -"uEv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/control_room) -"uEB" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/medical/break_room) -"uEC" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"udx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"udC" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"udI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"uEE" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"uEY" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/telecomm/lz1_south) -"uFc" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"uej" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"uet" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/yellowfull/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"uFd" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/platform{ + dir = 4 }, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/exterior/telecomm/lz1_south) -"uFf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"uFh" = ( -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"uFW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/exterior/valley/valley_mining) -"uFX" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"uGd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"uew" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/mining/workshop) +"uez" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/area/desert_dam/interior/dam_interior/garage) +"ueL" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"ueR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"ueT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"ueV" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ueZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"uGj" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/landing_pad_one) -"uGt" = ( -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"uGu" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/area/desert_dam/exterior/valley/south_valley_dam) +"ufi" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"ufs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"uGL" = ( -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"uGO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ufE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ufT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"uGX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"uHi" = ( -/obj/structure/machinery/computer/arcade, +/area/desert_dam/exterior/valley/south_valley_dam) +"ufW" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/desert_dam/exterior/rock) +"ufY" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) -"uHj" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"uHy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) -"uHz" = ( -/obj/structure/cargo_container/trijent/mid/alt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"uHK" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"uHM" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_medical) -"uHZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkpurplecorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"uIc" = ( +"ufZ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 4 }, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) -"uId" = ( -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/building/water_treatment_one/purification) -"uIC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"uIP" = ( +"ugf" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ugo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"ugt" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"ugu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"ugv" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/loading) +"ugL" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"uIU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"uJd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"uJm" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"uJM" = ( -/obj/structure/machinery/computer/area_atmos, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"uJN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_labs) -"uJO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/plasteel{ - amount = 10 +"ugT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"uKh" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uKo" = ( -/obj/structure/platform/mineral/sandstone/runed{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"uha" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/caves/temple) -"uKr" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"uKs" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"uKA" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"uKB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"uKL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uhn" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"uhL" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"uhO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uhP" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_medical) +"uhR" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"uKS" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" +/area/desert_dam/exterior/river/riverside_central_south) +"uid" = ( +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"uir" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"uKY" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"uiv" = ( +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/bonegel, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"uiH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ujH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"ujP" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"ujV" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"ukb" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"ukc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"ukf" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"uLi" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uki" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"ukp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"uLt" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"ukA" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"uLu" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) -"uLz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"uLB" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"uLO" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"uLU" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uMi" = ( -/obj/structure/platform, +/obj/structure/largecrate/random/barrel/green, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) -"uMo" = ( -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/bonesetter, -/obj/item/tool/surgery/FixOVein, -/obj/item/stack/nanopaste, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"uMr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +"ukH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"ukR" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"uMu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"ukZ" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ulJ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"uMw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"uMy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ulM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) -"uMz" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/desert_dam/building/warehouse/loading) -"uMM" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"ume" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) -"uMQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"uml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"uMX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"umn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"umB" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"umK" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/telecomm/lz2_storage) +"umQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/staffroom) +"umS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"umW" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"umX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/hanger) +"unr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 8 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) -"uNh" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office2) -"uNv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Lobby" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"uNF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"uNL" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"uOa" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/temple) -"uOe" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"uOp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"unB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"unJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"unK" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"uOC" = ( -/obj/structure/stairs{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"unY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"uoc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform{ +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"uof" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"uOE" = ( -/obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"uPh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"uop" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"uor" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"uot" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uoN" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"uoQ" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/building/substation/west) +"uoX" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"upd" = ( +/turf/open/floor/warning/northwest, +/area/desert_dam/interior/dam_interior/engine_room) +"upg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"uPn" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"uPy" = ( -/obj/structure/platform{ - dir = 1 - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"upl" = ( +/obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt/dirt2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/north_valley_dam) -"uPZ" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"uQc" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"uRc" = ( +"upA" = ( +/turf/open/floor/whitegreen/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"upD" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/emergency_room) +"upF" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"upG" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"uRz" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"uRF" = ( -/turf/open/floor/whitegreen/east, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"uRI" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/caves/central_caves) -"uRP" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"upS" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"uqg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) -"uSz" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"uSF" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_cargo) -"uSG" = ( -/obj/structure/machinery/light{ - dir = 4 +"uqo" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/valley/valley_telecoms) +"uqz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel) +"uqD" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"uqE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) -"uSH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"uqL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"uqN" = ( +/turf/open/desert/excavation/component5/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"uqS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"uSK" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"uSQ" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/area/desert_dam/exterior/valley/valley_wilderness) +"uqW" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uro" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uru" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"uSR" = ( -/turf/open/desert/excavation/component4/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"uSU" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"uTg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_mining) -"uTo" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"uTu" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_two) -"uTy" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"urF" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"urL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"uTF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"uTM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uTV" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"urP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"uUt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"uUw" = ( -/obj/item/weapon/gun/revolver/small, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"uUG" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_medical) -"uUH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"urU" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"usg" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"uss" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"uUK" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"uUM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"uUN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/lobby) -"uUS" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced, -/obj/item/device/radio, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uUT" = ( -/turf/open/floor/carpet/edge/east, -/area/desert_dam/building/administration/meetingrooom) -"uVp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"uVw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"uVx" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_east) -"uVD" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"ust" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"uVF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"usv" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"usI" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"usM" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/central) +"usR" = ( +/obj/structure/toilet, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) -"uVK" = ( -/obj/item/tool/pickaxe, -/obj/effect/decal/remains/human, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"uVX" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"utc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"ute" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"utw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"uty" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"utB" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"utE" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/emergency_room) +"utK" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"uuc" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"uuv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"uux" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"uuy" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"uWe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"uWf" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/west_wing_hallway) -"uWH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"uuE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_labs) +"uuF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"uuK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uuW" = ( +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/north_tunnel) +"uvf" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"uvi" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/control_room) +"uvp" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_labs) +"uvv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/edge/west, +/area/desert_dam/building/administration/meetingrooom) +"uvC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/plating, +/turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) -"uWK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"uWR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"uvJ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"uvL" = ( +/obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"uvT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"uWT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"uvU" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/medical/garage) +"uvY" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"uXb" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/treatment_room) -"uXd" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"uXn" = ( -/obj/item/stool, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"uXt" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"uwh" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/chapel/east, -/area/desert_dam/building/church) -"uXx" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uwD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"uXI" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_one/purification) -"uXK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/red/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"uwJ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"uwM" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"uwW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"uxn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"uxw" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"uXP" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"uYh" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"uYi" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"uYm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"uxH" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"uxS" = ( +/obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/tile, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"uxY" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uyc" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"uye" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"uym" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/substation/southwest) +"uyn" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"uyu" = ( +/obj/structure/prop/dam/boulder/boulder3, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"uyA" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) -"uYy" = ( -/obj/structure/disposalpipe/segment{ +"uyM" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"uze" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"uzh" = ( +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/hallway) +"uzo" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"uYA" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/substation/southwest) -"uYD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"uYG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"uzq" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"uzu" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"uzz" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"uAv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"uAL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"uYJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"uYT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"uAM" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"uAS" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/garage) +"uBs" = ( +/turf/open/mars/mars_dirt_12, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"uBy" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_cargo) +"uBE" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/telecomm/lz2_storage) +"uBF" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"uBI" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"uBP" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"uCa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"uYU" = ( -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"uZf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"uZE" = ( +/obj/item/clothing/glasses/meson, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"uCn" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"uCC" = ( +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 8 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"uZH" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/area/desert_dam/exterior/river/riverside_central_north) +"uCH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/emergency_room) +"uCT" = ( +/turf/open/floor/coagulation/icon5_8, +/area/desert_dam/exterior/valley/valley_mining) +"uDh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"uZY" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"uDk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"uDr" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"uDs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"uDt" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"uDE" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/central_caves) +"uDG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"uEa" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_one/lobby) +"uEq" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/smes_main) -"vag" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"uEw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/lobby) +"uEM" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"uEX" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"vat" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hangar_storage) +"uFm" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/warehouse/breakroom) +"uFr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"uFt" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"uFw" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"uFx" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"uFE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/deathrow) +"uFL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_civilian) -"vax" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/turf/open/floor/coagulation/icon0_0, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"uFO" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"uFX" = ( +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) -"vaz" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"vaJ" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"vaQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"vbf" = ( -/obj/structure/platform{ - dir = 1 +"uGC" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"uGL" = ( +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"uGN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/platform{ +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uGO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"uHr" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"vbg" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"vbp" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"vbx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"uHM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Tool Storage" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"vbH" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"vbL" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"vbP" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"uHU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"uHV" = ( +/obj/structure/platform{ + dir = 4 }, /turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"vbQ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/southwest, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"vbU" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"vch" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_wilderness) -"vcl" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/lobby) -"vcr" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"vcU" = ( +/area/desert_dam/exterior/river/riverside_central_north) +"uHW" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"uIl" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"vcV" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/staffroom) -"vdt" = ( -/obj/structure/closet/toolcloset, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"vdz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"vdG" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"uIm" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"uIq" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northwest) +"uIr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"uIt" = ( +/obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"vdU" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"vei" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"ves" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"vet" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/east_caves) -"veC" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/administration/overseer_office) -"veE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/hanger) -"veL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/CE_office) -"veM" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"veO" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"veQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Showers" - }, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/pool) -"veR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"uIB" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_telecoms) -"veS" = ( -/obj/effect/decal/sand_overlay/sand1, +/obj/structure/platform, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"vfa" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"vfi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/area/desert_dam/exterior/valley/valley_medical) +"uIP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"uIU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Office" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uJc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"vfx" = ( -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/northern_hallway) -"vfF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"vfG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"uJf" = ( /obj/structure/surface/table, -/obj/item/tool/pen, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"vfH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/turf/open/floor/prison/blue/north, +/area/desert_dam/landing/console) +"uJg" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"uJl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"uJm" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"uJB" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"uJC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Break Room" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"vfK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"vfT" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_civilian) -"vgd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/emergency_room) -"vgi" = ( -/turf/open/floor/coagulation/icon7_7, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"uJF" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_hydro) -"vgm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"uJO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uJT" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/mining/workshop) +"uKd" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"uKo" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 }, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/caves/temple) +"uKr" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"uKB" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/west) +"uKQ" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"vgn" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/barricade/wooden{ +/area/desert_dam/exterior/landing_pad_two) +"uKV" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"vgE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Treatment Controlroom" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_east) +"uLd" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/hanger) +"uLv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"uLA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"vgF" = ( -/obj/structure/tunnel, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/east_caves) -"vgJ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"vgN" = ( -/obj/structure/filtration/flacculation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"vgO" = ( -/obj/structure/bed/chair{ +/area/desert_dam/building/hydroponics/hydroponics) +"uLU" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/yautja_rope, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"uLW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/yellowfull/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"uLX" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"uLZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/warehouse/breakroom) -"vgW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"vgX" = ( -/turf/open/floor/coagulation/icon7_8_2, -/area/desert_dam/exterior/valley/valley_hydro) -"vht" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"uMr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"uMN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"uMP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"uNd" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_south) +"uNj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/pillbottles, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"uNk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) -"vhu" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/north_valley_dam) -"vhw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/sterile_white, +"uNl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"vhE" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"vhF" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_south) -"vhI" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" +"uNn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"uNr" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"vhQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"uNB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"vhR" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_telecoms) -"vhT" = ( +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"uNE" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"uNF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"uNI" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/lobby) +"uNK" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_isolation) +"uNO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"uNR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"vhW" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) -"vie" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"vii" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"uOa" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"uOc" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/landing/console2) +"uOi" = ( /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) -"viz" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) -"viD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"viH" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"viV" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"vje" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/north_wing_hallway) -"vjm" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"vjo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"vjB" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"vkg" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"vkl" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, +"uOm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_cargo) -"vkt" = ( -/obj/effect/decal/cleanable/dirt, +"uOu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/loading) -"vkB" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/lobby) +"uOw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper SMES" }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"vkF" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"vkK" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"vkM" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"uOF" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/sterile_white, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) -"vkQ" = ( -/obj/structure/stairs{ +"uOQ" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"uOS" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/surgery_room_two) +"uPe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"uPf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Tool Storage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"uPv" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) -"vlg" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1{ +"uPz" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"uPR" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"uPV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"vlt" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/caves/central_caves) -"vlv" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/disk/nuclear, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"vly" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"vlH" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "distribution" - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"vlV" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"uQe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) -"vme" = ( -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_one/purification) -"vmj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"uQg" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uQw" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"uQy" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"vmr" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_cargo) +"uQM" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"vmx" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_medical) -"vmA" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_two) -"vmE" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"vmJ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"vmT" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"vnf" = ( +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uRd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_telecoms) +"uRl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Morgue" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"uRu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"uRw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Workshop" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"uRz" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"vnA" = ( -/obj/structure/machinery/light{ +"uRD" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"uRE" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"vnC" = ( -/obj/structure/machinery/power/apc/no_power/east, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"vnE" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"vnG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"uRV" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"uSh" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/lobby) +"uSw" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"uSE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper RnD" + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"uSK" = ( +/turf/open/desert/excavation/component8/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"uTf" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uTi" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"uTo" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"vnH" = ( -/turf/open/floor/coagulation/icon6_8_2, +"uTA" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) -"vnM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"uTD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"vnS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"uTJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"uTP" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"uTT" = ( +/obj/structure/stairs{ dir = 8 }, -/obj/item/evidencebag, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"vnU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"voc" = ( -/obj/structure/filtration/flacculation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"vol" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"uUi" = ( +/turf/open/desert/excavation/component9/southeast, /area/desert_dam/exterior/valley/valley_crashsite) -"voz" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_civilian) -"voE" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison/whiteredcorner/west, -/area/desert_dam/building/medical/surgery_room_one) -"voL" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_labs) -"voU" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"vpf" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"vpl" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +"uUC" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"vpm" = ( -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"uUX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"uVs" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/south_valley_dam) -"vpy" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"uVx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell{ + pixel_x = 5 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -6 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"uVC" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"uVI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vpz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vpH" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"vpN" = ( -/obj/structure/platform_decoration{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"uVK" = ( +/obj/item/tool/pickaxe, +/obj/effect/decal/remains/human, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"uVN" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_south) -"vpP" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vpS" = ( -/obj/structure/surface/table, +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"uWc" = ( +/obj/structure/largecrate/random/barrel/white, /obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/desert_dam/building/administration/lobby) -"vpW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Hallway" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"uWg" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"uWh" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"uWx" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"vqf" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_mining) -"vqo" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"uWJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"vqt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vqR" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"uWT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"vqU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"vrb" = ( +"uWZ" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/building/water_treatment_two/purification) -"vrc" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"uXd" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_cargo) +"uXv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uXz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uXA" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"vrj" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"vrm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_hydro) -"vrs" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"vrF" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/valley/valley_labs) -"vrH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"vrM" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"uXH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/deathrow) -"vrO" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_hydro) -"vrV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uYd" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"uYD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"vsf" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"uYM" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/yellowcorner/north, -/area/desert_dam/building/hydroponics/hydroponics) -"vsp" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/machinery/light{ +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/chemistry) -"vsr" = ( -/turf/open/floor/prison/darkbrowncorners3/east, -/area/desert_dam/interior/dam_interior/hanger) -"vsy" = ( -/obj/structure/disposalpipe/segment, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"uYP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"vsA" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/water_treatment_one/lobby) -"vsJ" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/interior/caves/east_caves) -"vsR" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"uYS" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"uZe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"uZv" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/north_tunnel) +"uZw" = ( +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"uZI" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"vsT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"vte" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"vtm" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/office) -"vtK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"vtS" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/area/desert_dam/interior/dam_interior/north_tunnel) +"uZO" = ( +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_civilian) +"uZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement/cement15, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"uZY" = ( +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/exterior/valley/valley_wilderness) -"vtX" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"vtZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"vaz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"vub" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"vaO" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_civilian) +"vaZ" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"vuo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"vuu" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"vvc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_one) -"vvy" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"vbz" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"vbG" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"vvB" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"vvO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"vca" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"vcn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"vcG" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"vdf" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"vvT" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"vwg" = ( +/area/desert_dam/building/cafeteria/cafeteria) +"vdo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"vdt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/central_tunnel) -"vwp" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"vwy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"vdy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper SMES" + }, +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/smes_main) +"vdA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/exterior/valley/valley_wilderness) +"vdE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"vdK" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/exterior/valley/valley_hydro) +"vdL" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"vwL" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"vdN" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"vdQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"vdX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"vwO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper SMES" +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"veb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"vec" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/north_valley_dam) +"vei" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"vwY" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"vxb" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"vxc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"vej" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"vxq" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"vxv" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"vxw" = ( -/turf/open/desert/rock/deep/transition/northwest, +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/control_room) +"veu" = ( +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/south_tunnel) -"vxS" = ( -/turf/open/floor/warnwhite/southwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"vxX" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/armory) -"vyu" = ( -/obj/structure/pipes/standard/simple/hidden{ - dir = 4 +"veB" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"veE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"vyU" = ( -/turf/open/floor/prison/greencorner/west, -/area/desert_dam/building/substation/west) -"vyX" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"veF" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_north) +"veJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cheesie, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"veR" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"veV" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/lobby) +"veZ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/medical/break_room) +"vfA" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"vzd" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_south) -"vzm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"vzp" = ( +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/warden) +"vfE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Disposals" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"vfF" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hanger) +"vfH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/central_tunnel) +"vfY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"vgi" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"vgm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + icon_state = "N" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vzq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"vzw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/area/desert_dam/exterior/valley/south_valley_dam) +"vgp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vgx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"vgP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"vgV" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkyellow2/northwest, +/area/desert_dam/building/security/prison) +"vhj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vzB" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"vhL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"vzQ" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"vzT" = ( -/obj/structure/machinery/light, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"vAf" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"vhP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_labs) +"vhT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vhX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"vAl" = ( -/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"vAm" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) -"vAr" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"vAE" = ( -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"vAG" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/central) -"vAM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"vBd" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"vBg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) -"vBn" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"vhY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"vil" = ( +/obj/structure/bed/stool, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"viv" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel) +"viC" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/south_valley_dam) -"vBr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper CMO's Officer" + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/CMO) -"vBt" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/east_caves) -"vBz" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"viL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"vBH" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/staffroom) -"vBI" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/darkbrowncorners3/west, -/area/desert_dam/interior/dam_interior/hanger) -"vBJ" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vBT" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"vBV" = ( -/obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside/east, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"viP" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"viV" = ( +/obj/structure/fence, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"vBY" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"vCc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"vCs" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/office) -"vCu" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"vCS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +"vjd" = ( +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/exterior/valley/valley_mining) -"vDi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"vDD" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +"vjp" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vju" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"vDJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"vjy" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vke" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"vkf" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vDT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"vkg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"vkF" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/telecomm/lz1_south) +"vkM" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"vDW" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/central_caves) -"vEe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"vkO" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vlb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/administration/overseer_office) +"vle" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"vlk" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"vEG" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/building/administration/lobby) +"vln" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"vER" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/south_tunnel) -"vEX" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkpurplecorners2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"vlJ" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"vlK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/radio, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"vFg" = ( -/turf/open/floor/prison/greencorner/west, -/area/desert_dam/building/dorms/hallway_northwing) -"vFh" = ( -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/south_tunnel) -"vFu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"vFS" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vFU" = ( -/turf/open/desert/excavation/component3/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"vFZ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vlP" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/south_valley_dam) -"vGe" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating/warnplate, -/area/desert_dam/exterior/valley/valley_telecoms) -"vGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"vlV" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"vHj" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"vlY" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"vmg" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"vmn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"vmp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "E" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vHz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"vHF" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"vHG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/area/desert_dam/exterior/landing_pad_two) +"vmy" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"vHM" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"vmA" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"vmR" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/valley/valley_labs) +"vmU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/landing_pad_one) -"vHQ" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/omega) -"vHS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/west_wing_hallway) -"vIa" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"vIl" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_civilian) -"vIx" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"vnf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"vIK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"vIR" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"vJb" = ( -/obj/structure/machinery/light{ +"vng" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"vnm" = ( +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"vnn" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"vJd" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"vnL" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer/crew, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"vnS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"voj" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"voT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"vpc" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"vpk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"vJE" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar1"; - name = "\improper Cargo Bay Hangar" + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"vJF" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_two) -"vJG" = ( +/area/desert_dam/interior/dam_interior/south_tunnel) +"vpq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"vKx" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"vKC" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river_mouth/southern) -"vKI" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"vKS" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"vLd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"vpr" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"vLj" = ( -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"vLn" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"vLq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/exterior/landing_pad_one) +"vpz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vpF" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/lobby) +"vpS" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/desert/excavation/component8/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"vpW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"vLu" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/whiteblue, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"vLw" = ( -/obj/structure/window/shuttle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"vqb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"vqh" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/east_wing_hallway) +"vqk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/plating, -/area/desert_dam/interior/dam_interior/hanger) -"vLP" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"vqo" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/lobby) +"vqp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Atmospheric Storage" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"vLT" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"vLV" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"vMc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_two) -"vMg" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/interior/dam_interior/atmos_storage) +"vqt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"vMl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Freezer" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"vqE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/filtration_button{ + id = "filter 2" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"vqF" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"vqM" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + name = "\improper Entrance Gate Alpha"; + unacidable = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"vMp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"vqP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"vqQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"vqR" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"vMx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"vMS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"vNe" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/area/desert_dam/exterior/valley/valley_labs) +"vqT" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/lobby) +"vrp" = ( +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_hydro) +"vrF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"vrN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"vrR" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"vrT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vrW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"vsv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"vNn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"vsQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Overseer's Office" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"vNA" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/west_tunnel) -"vNK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"vNU" = ( +/area/desert_dam/building/administration/overseer_office) +"vsV" = ( /obj/structure/surface/table, -/turf/open/floor/prison/green/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"vOn" = ( +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"vta" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"vtb" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"vte" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"vtp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"vOv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"vOG" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_mining) -"vOH" = ( -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/south_tunnel) -"vOV" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_labs) -"vPb" = ( -/turf/open/floor/filtrationside/southeast, -/area/desert_dam/exterior/valley/valley_mining) -"vPj" = ( -/obj/structure/disposalpipe/segment{ +"vty" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vtG" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"vtS" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"vPl" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/pillbottles, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"vup" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/armory) +"vuq" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"vuu" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"vuH" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"vPs" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"vuS" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/dam_interior/smes_backup) +"vuT" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"vPw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_northwing) +"vva" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"vPA" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"vPB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"vPD" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"vPW" = ( -/obj/structure/lamarr, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"vQl" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"vQC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"vQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"vvm" = ( +/obj/structure/machinery/autolathe, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) -"vRd" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - name = "\improper Entrance Gate Alpha"; - unacidable = 1 +"vvo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"vRu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Office" +/area/desert_dam/interior/dam_interior/south_tunnel) +"vvu" = ( +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" }, -/turf/open/floor/prison/sterile_white/west, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"vvy" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"vvA" = ( +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"vvY" = ( +/obj/structure/kitchenspike, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"vwb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/whitepurplecorner/east, /area/desert_dam/building/medical/chemistry) -"vRG" = ( +"vwc" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"vRH" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) -"vRI" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"vwe" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/workshop) +"vwi" = ( /obj/structure/platform{ dir = 8 }, /turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"vRK" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vwp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"vxd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_telecoms) -"vRN" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/northwest, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"vRQ" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/building/mining/workshop_foyer) -"vSc" = ( -/obj/effect/decal/sand_overlay/sand2{ +"vxg" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/southwest) +"vxm" = ( +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"vxy" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vxB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"vxH" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vyd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"vye" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/red/northwest, +/area/desert_dam/building/security/lobby) +"vyj" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/warehouse/loading) +"vyl" = ( /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"vSk" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/desert_dam/building/administration/hallway) +"vyB" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/river/pool, +/area/desert_dam/building/dorms/pool) +"vyP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Hydroponics" }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"vSp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"vyX" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"vzg" = ( +/obj/structure/machinery/light, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"vzk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_labs) -"vSw" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"vSH" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"vST" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_northwest) -"vSX" = ( -/turf/open/floor/prison/darkredcorners2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"vTl" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"vzp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/exterior/landing_pad_two) -"vTs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"vTv" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"vTC" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/landing_pad_two) -"vTK" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"vTL" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/staffroom) -"vTN" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"vTR" = ( +"vzw" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" + icon_state = "road_edge_decal2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vUc" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"vUd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"vUl" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vUn" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"vUC" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"vUJ" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"vUN" = ( -/turf/open/floor/whitegreencorner/east, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"vUX" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"vUY" = ( -/obj/structure/machinery/light{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"vzy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"vzF" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"vzR" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"vzX" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"vAg" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vAp" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/CE_office) -"vVd" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"vAw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"vAE" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"vAH" = ( +/obj/structure/platform{ + dir = 4 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"vVg" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_north) +"vAU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"vVk" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/virology_wing) -"vVn" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"vVo" = ( -/turf/open/floor/prison/yellow, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_hydro) +"vAY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vBc" = ( +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/lobby) +"vBd" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"vBh" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"vBE" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal4" + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"vBG" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/yellowfull/southwest, /area/desert_dam/building/hydroponics/hydroponics) -"vVx" = ( -/obj/structure/platform_decoration{ +"vBJ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"vCF" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vCV" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) +"vDf" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") + }, +/obj/structure/surface/table, +/turf/open/floor/darkred2/northwest, +/area/desert_dam/building/administration/lobby) +"vDI" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"vVy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/monkey_spawn, +/obj/structure/surface/rack, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"vVJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"vVU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Control Room" +/area/desert_dam/building/warehouse/loading) +"vDJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"vVW" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"vVX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper East Filtration" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"vWy" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/north_valley_dam) -"vWA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"vWO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vDN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"vWP" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"vWS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"vWZ" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/workshop) -"vXb" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"vDX" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northwest) +"vEo" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"vXG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"vEp" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"vXQ" = ( -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"vXX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"vEv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"vYa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"vED" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"vYk" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"vFc" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/control_room) -"vYG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"vYP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"vZf" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office2) -"vZQ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/storage/pill_bottle/spaceacillin, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"vZU" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/south_tunnel) -"vZW" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"vFh" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_wing) +"vFv" = ( +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"vFQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"vFR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"vGe" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"vGo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"vZX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"wac" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"vGD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"vGE" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_hydro) +"vGN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"wae" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"waj" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river_mouth/southern) -"wak" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_cargo) -"wan" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vGQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"vHa" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"vHj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vHm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"vHz" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"vHQ" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/omega) +"vId" = ( +/obj/structure/machinery/light, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"wao" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"vIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/warden) +"vIx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"wav" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"waC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/area/desert_dam/exterior/valley/valley_hydro) +"vIP" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"vIY" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"vJa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"vJA" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/north_wing_hallway) +"vJG" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"vJO" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"waK" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"vJZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/substation/west) -"waY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" }, +/obj/structure/cargo_container/kelland/left, /turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"wbb" = ( +/area/desert_dam/interior/dam_interior/hanger) +"vKi" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"vKs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"vKv" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"vKC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"vKN" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"wbi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/garage) -"wbn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) -"wbG" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"wbK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vKU" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"vLc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"vLd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"vLg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"vLr" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"wbM" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"wbN" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"wbP" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"wcc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"vLw" = ( +/obj/structure/window/shuttle, +/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/plating, +/area/desert_dam/interior/dam_interior/hanger) +"vLM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"vLQ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vMo" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"vMp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"wcf" = ( -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hangar_storage) -"wcg" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"vMA" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"vMC" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"wch" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/cell_stripe/west, +/area/shuttle/trijent_shuttle/engi) +"vMK" = ( +/turf/open/floor/whitegreencorner/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"vMZ" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/south_tunnel) -"wcs" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"wcz" = ( -/obj/structure/machinery/vending/coffee, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"vNq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"vNr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"vNu" = ( +/obj/structure/machinery/photocopier, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"wcE" = ( -/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"vNP" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/building/substation/northwest) +"vOk" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) +"vOn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"vOp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"vOv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"vOz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vOH" = ( +/obj/structure/largecrate/random/secure, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"wcJ" = ( -/turf/open/floor/prison/whiteredcorner/east, -/area/desert_dam/building/medical/primary_storage) -"wde" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"wdl" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"wdz" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/dorms/pool) -"wdE" = ( +"vOV" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"vOX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"vPh" = ( +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/security/prison) +"vPu" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"vPy" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"wdN" = ( +"vPG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"vPS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/interior/caves/central_caves) +"vQK" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/medical/break_room) +"vQO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"vRi" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"wdS" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"wdU" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"wdW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"wdX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +"vRm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_labs) -"weh" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"vRt" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"vRw" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"vRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"wet" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vSH" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"vSK" = ( /obj/structure/surface/table/reinforced, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced{ - dir = 4; + dir = 8; health = 80 }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"weT" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"vSL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"weU" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"vSO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"vSQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"vTo" = ( +/obj/structure/surface/table, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"weZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vTr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/wooden{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"vTD" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_civilian) -"wfr" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/holding) -"wfJ" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_catwalk" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"wfQ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"wgd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"wgi" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"wgs" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"wgE" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/exterior/telecomm/lz2_containers) -"wgG" = ( -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/lobby) -"wgP" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"wgV" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"wgX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"vTK" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/west) +"vTR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"whd" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"whe" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/treatment_room) -"whi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hangar_storage) -"whr" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_telecoms) -"whL" = ( -/obj/structure/platform_decoration{ - dir = 4 +"vUa" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"vUc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vUg" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"vUl" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"whP" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"wib" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/green/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"wil" = ( -/obj/structure/platform_decoration{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"vUn" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"vUS" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"vUU" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/telecomm/lz2_storage) +"vUY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"vVa" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"wiR" = ( -/turf/open/desert/excavation/component2/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"wjb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"vVb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/south_valley_dam) +"vVd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/northwest) +"vVm" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"vVB" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"vVR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"vVT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"vWk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"vWm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"vWn" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"wjc" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"wjf" = ( -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"vWW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/valley/south_valley_dam) -"wjm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"wjs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/area/desert_dam/exterior/valley/valley_crashsite) +"vXn" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"wjv" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"vXC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"wjG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkblue2/northeast, -/area/desert_dam/building/administration/control_room) -"wjR" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"vXE" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"wjW" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"wjY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"wku" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"vXF" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whitegreen/east, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"wkQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"wkY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"vXO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/lobby) +"vXY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"vXZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Xenoflora" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"wkZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"vYh" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_hydro) +"vYm" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/surgery_room_two) +"vYr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/green/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"vYB" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"vYC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"vYK" = ( +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"wld" = ( -/obj/effect/decal/sand_overlay/sand1, +"vYL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"vZm" = ( /turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/east_caves) -"wlp" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/landing_pad_two) -"wlv" = ( -/obj/structure/stairs{ +/area/desert_dam/exterior/valley/north_valley_dam) +"vZu" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"vZv" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"vZy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"vZM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vZQ" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wag" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"wav" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"waB" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) -"wlz" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"waC" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"wlR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 + icon_state = "road_edge_decal11" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) -"wlT" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"wme" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"wmh" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"waP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Break Room" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_civilian) -"wmy" = ( -/obj/structure/machinery/light, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"wmP" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/warehouse/breakroom) +"wbi" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"wbx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/south_valley_dam) +"wbz" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"wbI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"wmR" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"wna" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"wnb" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"wng" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_hydro) -"wnh" = ( -/obj/structure/fence, -/turf/open/desert/dirt/rock1, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"wbO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) -"wnm" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"wnu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"wcc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"wny" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"wnT" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_east) -"woq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"woy" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/garage) -"woT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"woZ" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"wcf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river_mouth/southern) -"wpm" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"wcn" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_two/purification) -"wpx" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northeast) -"wpz" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"wpM" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"wcq" = ( /obj/structure/surface/table, -/obj/item/paper, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" + }, /turf/open/floor/dark2, /area/desert_dam/building/administration/archives) -"wpR" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/virology_isolation) -"wpW" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"wpX" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/north_valley_dam) -"wqb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"wqj" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"wqu" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/bar_valley_dam) -"wqG" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"wqM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +"wcr" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"wcs" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"wcv" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"wcQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"wdC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"wdQ" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/interior/caves/central_caves) +"web" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/south_valley_dam) +"wek" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river_mouth/southern) +"wel" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"weq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"weD" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"weY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Hallway" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"wfb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"wfg" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wfU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"wge" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"wgi" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"wrJ" = ( -/obj/structure/machinery/light{ +/area/desert_dam/exterior/valley/valley_hydro) +"wgD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"wrW" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"wsE" = ( -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"wsL" = ( -/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) -"wsO" = ( +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"wgH" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"wgY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) -"wtc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"wtv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"whd" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"whf" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"whl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"wtE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/interior/caves/central_caves) -"wtW" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"whn" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/floor/plating/warnplate, -/area/desert_dam/building/substation/northwest) -"wuh" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) +"whK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Treatment Breakroom" }, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/west) -"wuz" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/loading) -"wuC" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"wuQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"whR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"wib" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"wie" = ( +/turf/open/floor/warning/west, +/area/desert_dam/interior/dam_interior/engine_room) +"wii" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"wuS" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/valley/valley_labs) -"wvs" = ( -/turf/open/floor/coagulation/icon6_8, -/area/desert_dam/exterior/valley/valley_mining) -"wvz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"wvN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/east_caves) -"wvZ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"win" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"wio" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"wiN" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"wwc" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/north_valley_dam) +"wiP" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/platform{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"wiS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"wwe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"wjd" = ( +/obj/item/trash/cheesie, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"wjh" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/office) -"wwh" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"wji" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"wjA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/control_room) +"wjP" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/valley/valley_labs) -"wwi" = ( -/obj/structure/pipes/portables_connector{ +"wjU" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/emergency_room) -"wwj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"wwm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"wjZ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"wwt" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"wkh" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"wkp" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/primary_storage) +"wku" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"wkw" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"wkx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"wwH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"wkM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"wkT" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"wwW" = ( -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"wxM" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"wkX" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/mining/workshop) +"wle" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 8 }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/overseer_office) +"wlo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"wxO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Lobby" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"wlq" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_northwest) +"wlD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wlK" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"wxT" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/armory) -"wya" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"wlL" = ( +/turf/open/desert/excavation/component8/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"wlV" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"wyi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"wlW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"wlX" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/CE_office) +"wma" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"wyj" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"wmd" = ( +/turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_hydro) -"wyn" = ( -/turf/open/floor/darkyellow2, -/area/desert_dam/building/security/prison) -"wys" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/landing_pad_one) -"wyv" = ( +"wmi" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"wmK" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"wyF" = ( -/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"wyH" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"wyJ" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"wmP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"wnp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"wnt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"wnB" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"wnC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"wyK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"wyM" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wnN" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"wyR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"wnX" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"woe" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/building/dorms/hallway_northwing) +"woy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/garage) +"woH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"wzl" = ( /obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"woJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"wpt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"wzy" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"wpG" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"wpL" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_north) -"wzB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/whiteblue/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"wzJ" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whitepurple/north, -/area/desert_dam/building/medical/chemistry) -"wzU" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1/delaytwo{ +"wpO" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"wpU" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel) +"wpW" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"wqA" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"wqF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"wqM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"wro" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"wrs" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_medical) +"wrH" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Observation" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"wrS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"wrW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"wsa" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_two) +"wsi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"wsP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"wsS" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wtf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/interior/caves/east_caves) +"wtl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/deathrow) +"wtr" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) -"wAc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"wtM" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_civilian) +"wtP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"wAi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"wAl" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/interior/caves/central_caves) -"wAn" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_north) -"wAq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"wtY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"wuh" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stool, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) -"wAA" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_telecoms) -"wAC" = ( -/obj/effect/decal/sand_overlay/sand2{ +"wuj" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"wuq" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"wur" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"wAP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"wuC" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"wAQ" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"wAR" = ( +"wuJ" = ( +/obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"wuO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"wAT" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/south_valley_dam) -"wAV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"wAX" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_medical) -"wAZ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/virology_wing) -"wBg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_two/purification) -"wBn" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_medical) -"wBu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"wuP" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/exterior/valley/valley_mining) +"wuS" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"wuU" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"wuY" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"wBD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"wBE" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "uppcrash" - }, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_hydro) -"wBF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"wBG" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"wvr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) -"wBJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"wvu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"wBN" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"wvE" = ( +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wvG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"wvQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Lobby" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"wvW" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"wwd" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wwj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/warden) -"wBU" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"wwk" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"wBV" = ( -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"wCm" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"www" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"wCp" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"wCv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"wwA" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"wCH" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"wwD" = ( /obj/structure/bed/chair/office/light{ - dir = 1 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"wCI" = ( /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office1) -"wCU" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/desert_dam/building/medical/virology_wing) +"wwI" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/mining/workshop_foyer) +"wwK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"wwN" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"wwR" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"wwT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"wxj" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/substation/southwest) +"wxk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"wxy" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"wxH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 1; - icon_state = "pipe-c" + name = "\improper Administration Hallway" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"wDg" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"wxL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"wxP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"wDq" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_medical) -"wDs" = ( -/turf/open/floor/warning, -/area/desert_dam/interior/dam_interior/engine_room) -"wDt" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/bar_valley_dam) -"wDu" = ( -/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"wxT" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"wxX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"wDx" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"wDS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"wxY" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"wya" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"wEk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"wEp" = ( +"wyk" = ( /obj/structure/surface/table/reinforced, -/obj/item/tool/pen, -/obj/item/oldresearch/Blood, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"wEw" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"wEC" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"wyM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_labs) +"wyR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"wEE" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"wEQ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"wFb" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"wyU" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 8 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"wFe" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/mining/workshop) -"wFt" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/interior/caves/central_caves) -"wFu" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/area/desert_dam/exterior/valley/valley_crashsite) +"wyV" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"wFw" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"wzl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"wzW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"wFy" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"wAP" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" + icon_state = "road_edge_decal9" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"wFP" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"wFU" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, +/area/desert_dam/exterior/valley/valley_telecoms) +"wBk" = ( /obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"wGa" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/blue, -/area/desert_dam/building/dorms/pool) -"wGg" = ( -/obj/structure/platform_decoration{ +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wBs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"wGp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"wGt" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"wGv" = ( -/turf/open/floor/carpet10_8/west, -/area/desert_dam/building/bar/bar) -"wGy" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"wGz" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) -"wGB" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"wGK" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteyellow/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"wHh" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"wHm" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison/whiteredcorner/west, -/area/desert_dam/building/medical/surgery_room_two) -"wHr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"wHw" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"wHM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +"wBw" = ( +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"wCl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"wHX" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) -"wHY" = ( -/obj/structure/pipes/vents/pump{ +"wCr" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wCI" = ( +/turf/open/floor/prison/darkpurplecorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"wCK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"wCN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/kepler, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"wCP" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"wId" = ( +/turf/open/floor/coagulation/icon8_7, +/area/desert_dam/exterior/valley/valley_mining) +"wDa" = ( /obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/armory) +"wDd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"wIi" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"wIw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Break Room" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"wIX" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"wJi" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"wJq" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"wJu" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_south) -"wJy" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/lobby) +"wDz" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"wDO" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office2) +"wDY" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"wEe" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"wJE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"wJG" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"wEz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"wEN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"wEO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"wJO" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"wJR" = ( -/turf/open/desert/cave/cave_shore/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"wKq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/blue{ - pixel_x = -3 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/tool/stamp, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"wKE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Restroom" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"wET" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"wKM" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Patient Room 2" +/area/desert_dam/building/administration/hallway) +"wFb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"wKS" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/south_valley_dam) -"wKW" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/prison) -"wLa" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"wLb" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"wFF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_medical) +"wFK" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/telecomm/lz2_storage) +"wFU" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"wGa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"wGi" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"wGw" = ( +/obj/item/trash/c_tube, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"wGx" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wGH" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"wGU" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"wHb" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) -"wLd" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"wLe" = ( -/turf/open/floor/carpet/edge/southwest, -/area/desert_dam/building/administration/meetingrooom) -"wLk" = ( +"wHd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"wLq" = ( -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"wLz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"wHp" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_northwest) +"wHA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wHB" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"wLC" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"wLQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"wHD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"wHF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_cargo) -"wLT" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/mining/workshop_foyer) -"wMb" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/southwest) -"wMt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/northeast) -"wMI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) -"wMM" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_civilian) -"wMN" = ( -/turf/open/floor/filtrationside/northeast, -/area/desert_dam/exterior/valley/valley_mining) -"wMP" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"wNc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"wHX" = ( +/turf/open/floor/coagulation/icon7_8, +/area/desert_dam/exterior/valley/valley_mining) +"wIe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison/bright_clean2, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"wIi" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"wIA" = ( +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"wNj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ +"wJe" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"wJt" = ( +/obj/item/weapon/gun/revolver/small, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"wJM" = ( +/obj/effect/decal/medical_decals{ dir = 4; - icon_state = "gib6" + icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison/whitegreen/west, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/east_wing_hallway) -"wNr" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/interior/caves/central_caves) -"wNx" = ( +"wKf" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"wKH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"wKR" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/bar/bar) +"wLE" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/exterior/valley/valley_hydro) -"wND" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"wNP" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"wNQ" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"wLJ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"wOb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"wLU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"wOp" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/hanger) -"wOx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"wOy" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"wOL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"wLW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"wMa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wMk" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"wMo" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/workshop) +"wMq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/landmark/good_item, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"wOX" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/building/warehouse/warehouse) +"wMs" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"wMZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) -"wOZ" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wNb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"wNe" = ( +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"wNf" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"wNi" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"wPe" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/valley/valley_labs) -"wPs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 2 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/garage) -"wPD" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/telecomm/lz2_storage) -"wPE" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/virology_wing) -"wPT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"wQh" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/microwave, +"wNl" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"wNp" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"wNu" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"wQj" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"wQn" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"wQo" = ( -/obj/structure/toilet, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"wQq" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"wQz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"wNz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_telecoms) -"wQC" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"wQF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"wOd" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"wOx" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"wOO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Engineering Office" }, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"wQG" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"wOX" = ( +/turf/open/floor/carpet/edge/east, +/area/desert_dam/building/administration/meetingrooom) +"wPg" = ( +/turf/open/floor/whitebluecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"wPl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"wPt" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/lobby) +"wPz" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/office2) +"wPG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"wQH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_labs) -"wQI" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"wQi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/central_tunnel) -"wQW" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"wQk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper East Filtration" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"wQO" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"wQQ" = ( +/obj/structure/barricade/sandbags, +/obj/structure/barricade/sandbags{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "wQZ" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) +"wRa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"wRe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/telecomm/lz1_south) "wRi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"wRH" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) +"wRw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"wRO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/west_tunnel) "wRR" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) -"wSg" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/control_room) -"wSE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"wSM" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"wTd" = ( +"wSi" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) +"wSj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/mining/workshop_foyer) -"wTw" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"wTx" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) -"wTz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Office" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/treatment_room) -"wTC" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/whiteyellow, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) -"wTL" = ( -/turf/open/desert/excavation/component9/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"wUc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"wUo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/garage) -"wUs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark2, -/area/desert_dam/building/substation/northwest) -"wUC" = ( +"wSG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"wUE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"wUP" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/southern_hallway) +"wTf" = ( +/obj/structure/machinery/light, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"wTk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"wTu" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"wUV" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"wVi" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/central_tunnel) -"wVn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"wTz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"wTK" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river_mouth/southern) +"wTS" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"wVo" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) -"wVw" = ( -/turf/open/floor/coagulation/icon1_7, -/area/desert_dam/exterior/valley/valley_hydro) -"wVN" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_northwest) -"wVP" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/disposalpipe/segment, +"wTT" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/desert_dam/building/warehouse/loading) +"wUd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"wWu" = ( -/obj/effect/decal/sand_overlay/sand2{ +/area/desert_dam/interior/dam_interior/smes_main) +"wUf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"wUs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table, +/obj/item/storage/donut_box, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"wUt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"wUW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) -"wWz" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"wVg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Loading" + }, +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"wVh" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"wVw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/chemistry) +"wVG" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"wVI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"wWD" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"wWE" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) +"wVM" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_east) +"wVO" = ( /turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/west_tunnel) -"wWO" = ( -/obj/structure/bed/chair/office/dark{ +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"wVR" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/lobby) +"wVZ" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"wWi" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/east_caves) +"wWl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"wWp" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/north_valley_dam) +"wWE" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"wWQ" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_one/purification) +"wWX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) +"wXh" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) +"wXi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"wXw" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"wXM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"wXr" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 +/area/desert_dam/building/medical/virology_isolation) +"wXR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"wXy" = ( -/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"wXS" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/east_wing_hallway) +"wXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wXZ" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_medical) +"wYv" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/north_valley_dam) +"wYB" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) "wYK" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"wYN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) "wYO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"wYZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security" +"wYT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"wZH" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/dorms/pool) +/area/desert_dam/building/water_treatment_one/hallway) "xab" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/prison, /area/desert_dam/building/substation/west) -"xak" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"xam" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"xax" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/box/masks{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/prison/whiteredcorner/west, -/area/desert_dam/building/medical/primary_storage) +"xac" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/redcorner, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"xav" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"xay" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) "xaB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -48404,93 +48371,100 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"xaG" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) +"xaX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"xbc" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) "xbd" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"xbe" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/armory) -"xbi" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/chapel/west, -/area/desert_dam/building/church) +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) "xbj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"xbl" = ( -/obj/structure/disposalpipe/segment{ +"xbm" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"xbv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"xbq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"xbu" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) "xbx" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"xbC" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"xbF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) "xbM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/northwest, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"xbO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/CE_office) +"xbT" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_south) "xbV" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"xca" = ( -/turf/open/floor/coagulation/icon6_8, -/area/desert_dam/exterior/valley/valley_hydro) -"xcf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"xcn" = ( -/obj/structure/stairs{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"xcb" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"xci" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"xct" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"xcA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"xcu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"xcz" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) +/area/desert_dam/exterior/landing_pad_one) "xcG" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -48500,258 +48474,254 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"xcH" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"xcQ" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"xcW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"xcY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"xdg" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) +"xcO" = ( +/turf/open/floor/filtrationside/northeast, +/area/desert_dam/exterior/valley/valley_hydro) +"xcU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) "xdj" = ( /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"xdr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) +"xdk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkbrown2, +/area/desert_dam/interior/dam_interior/disposals) +"xdC" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"xdE" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"xdF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy/tank{ + icon_state = "jarshelf_7" + }, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "xdJ" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/chapel/north, -/area/desert_dam/building/church) -"xdR" = ( -/obj/structure/bed/chair{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"xdK" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison/red/east, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) -"xdU" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/west) -"xea" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) +"xdN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Filtration" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"xdY" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"xeb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "xec" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/structure/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"xey" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/dorms/pool) -"xeW" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"xeX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"xfd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/virology_wing) -"xfv" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/landing_pad_one) -"xfF" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/valley/valley_labs) -"xfH" = ( +"xej" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/CE_office) -"xfJ" = ( -/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/bar/bar) +"xeM" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"xfY" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) +"xeV" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"xfg" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"xfs" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"xfA" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_two) +"xfC" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"xfJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_medical) +"xfT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) "xfZ" = ( -/obj/structure/bed/chair/office/dark{ +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"xga" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xgb" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xge" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"xgf" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/west) +"xgg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"xgk" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xgp" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"xgc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"xgz" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_cargo) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"xgs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"xgu" = ( +/obj/effect/blocker/toxic_water/Group_2/delay, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"xgw" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_south) "xgA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"xgF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"xgI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"xgU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"xhb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Loading" - }, -/turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"xhe" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"xhh" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/office2) -"xho" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river_mouth/southern) +"xhf" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_northwest) +"xhp" = ( +/turf/open/floor/prison/whiteredcorner/east, +/area/desert_dam/building/medical/primary_storage) "xhv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_wilderness) -"xhC" = ( -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/dorms/hallway_northwing) -"xhD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"xhF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") + }, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"xhR" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt/desert_transition_corner1/north, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) -"xhK" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_civilian) -"xhU" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) +"xhV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) "xhZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"xir" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"xit" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"xiw" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"xix" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/landing_pad_one) -"xiy" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, +"xiE" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"xjc" = ( +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/valley/valley_labs) -"xiB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"xiG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +"xjg" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"xji" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) -"xiI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"xjp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_mining) -"xju" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) -"xjx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +"xjk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/southwest) +"xjl" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_hydro) -"xjy" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"xjV" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_northwest) +"xjJ" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"xjW" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/western_dam_cave) "xjY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -48759,139 +48729,213 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) +"xka" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) "xkh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall, /area/desert_dam/building/dorms/restroom) -"xks" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"xkn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"xko" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) -"xkC" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"xkI" = ( -/obj/structure/bed/stool, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"xkN" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"xkT" = ( -/obj/structure/platform{ +"xkr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/whitebluecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"xkx" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xkB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"xkJ" = ( +/obj/structure/cargo_container/ferret/left, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"xlj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"xlm" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/valley/valley_labs) -"xlG" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/substation/northeast) -"xlN" = ( -/turf/open/floor/prison/yellow/southeast, -/area/desert_dam/building/hydroponics/hydroponics) -"xlO" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"xmd" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"xme" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/green/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"xmh" = ( -/turf/open/floor/white, -/area/desert_dam/exterior/valley/valley_telecoms) -"xmr" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"xmz" = ( +/area/desert_dam/exterior/valley/valley_mining) +"xlg" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"xlj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_hydro) +"xln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"xlu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet/edge/southeast, +/area/desert_dam/building/administration/meetingrooom) +"xlL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"xlP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"xmg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) "xmA" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/redcorner, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"xmF" = ( -/obj/structure/lz_sign/dam_sign, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"xmW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) +"xmD" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/building/water_treatment_one/breakroom) +"xmJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"xne" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"xmL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/office) -"xni" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"xnt" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"xnL" = ( -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/building/security/northern_hallway) -"xnQ" = ( -/obj/structure/surface/table/reinforced, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"xna" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"xoi" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"xnd" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"xnf" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xnp" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 2; + name = "\improper Research Office" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"xol" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/deathrow) -"xoH" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xnu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"xnv" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"xnx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"xnA" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/medical/break_room) +"xnB" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"xnC" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"xnT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xnU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/southern_hallway) +"xnW" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) +"xoa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"xoc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 2" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"xoj" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xok" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"xoC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xoJ" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) "xoL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -48904,519 +48948,565 @@ name = "reinforced metal wall" }, /area/desert_dam/exterior/valley/valley_hydro) -"xoT" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowfull/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"xpc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) +"xoZ" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"xpa" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "xpj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"xpp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xpr" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) "xpx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"xpI" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"xpL" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"xpW" = ( -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"xpX" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_east) -"xqi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/south_valley_dam) +"xqg" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"xqw" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xqp" = ( +/turf/open/floor/coagulation/icon7_7, +/area/desert_dam/exterior/valley/valley_hydro) +"xqF" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"xqO" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) "xqQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) -"xqS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"xqU" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"xqY" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"xre" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "xrg" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_telecoms) -"xrp" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"xrh" = ( +/turf/open/floor/whitebluecorner, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"xrn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"xrX" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"xrz" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"xsf" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/central_caves) +"xsB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"xsC" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"xrC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/bar/bar) -"xrF" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"xsh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"xsv" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/south_valley_dam) -"xsH" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xsF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +/area/desert_dam/interior/dam_interior/hanger) +"xsG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "xsS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"xsT" = ( -/turf/open/floor/coagulation/icon7_8, -/area/desert_dam/exterior/valley/valley_hydro) -"xtb" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"xte" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/garage) -"xtv" = ( +"xsZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"xtn" = ( +/obj/item/tool/hatchet, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"xto" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/deathrow) +"xtz" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/central_caves) +"xtR" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2, -/area/desert_dam/building/warehouse/loading) -"xtJ" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"xtL" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"xtZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) "xud" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"xue" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"xuf" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"xut" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_two/purification) +"xuu" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"xuI" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"xuD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/deathrow) +"xuT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hangar_storage) +"xuU" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"xuY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"xuM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"xvj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_isolation) +"xuZ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/shuttle/trijent_shuttle/lz2) +"xve" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_labs) "xvs" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"xvy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) "xvF" = ( -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"xvM" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"xwi" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"xwl" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison/yellowfull/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"xwu" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) -"xww" = ( +"xvU" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"xvV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"xvY" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"xwb" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"xwc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"xwH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"xwe" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"xwf" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xwu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"xwv" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"xwA" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xwN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"xwU" = ( -/obj/structure/closet/radiation, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"xwV" = ( -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northeast) -"xwW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) "xwZ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/filtration/coagulation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"xxa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"xxf" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_0" +/area/desert_dam/building/dorms/restroom) +"xxc" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 1; + pixel_y = 31 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"xxg" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/interior/caves/central_caves) -"xxk" = ( -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"xxw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"xxC" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/temple) +"xxr" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/temple) +"xxu" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden{ - dir = 10 - }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/emergency_room) -"xyd" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"xyg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" + dir = 8 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"xyi" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/bar_valley_dam) -"xyk" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/smes_main) -"xyx" = ( -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/staffroom) -"xyJ" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/lobby) -"xyN" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"xxI" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"xxJ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"xya" = ( /turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/north_valley_dam) -"xzh" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/caves/central_caves) -"xzk" = ( -/turf/open/floor/dark, -/area/desert_dam/building/church) -"xzz" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xzS" = ( -/obj/structure/stairs, +/area/desert_dam/exterior/valley/valley_wilderness) +"xyp" = ( /obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"xyI" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"xAm" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_hydro) +"xyL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) -"xAE" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"xAI" = ( -/obj/structure/stairs, +"xzb" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"xzj" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xzn" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"xzp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/hallway) +"xzs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_labs) +"xzt" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/desert_dam/building/security/warden) +"xzE" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_labs) +"xzH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"xzK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xzT" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_northwest) -"xAK" = ( +"xAt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/warehouse/breakroom) +"xAD" = ( /obj/structure/surface/table, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/mining/workshop) -"xAS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"xAK" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"xAL" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"xBa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"xBk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/lobby) -"xBn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"xBs" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"xAN" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"xAP" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"xAQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"xAT" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"xBf" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/candle_box, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"xBo" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"xBC" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"xBQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"xBw" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"xBA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"xBF" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/building/water_treatment_two/purification) +"xBP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Emergency Room" }, +/turf/open/floor/white, +/area/desert_dam/building/medical/emergency_room) +"xBS" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"xBR" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_crashsite) +/area/desert_dam/building/security/northern_hallway) +"xCn" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"xCz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"xCH" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) "xCM" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) -"xCR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Break Room" +"xDc" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/mining/workshop) +"xDq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"xCU" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"xDA" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_one/purification) -"xDj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"xDm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_cargo) -"xDo" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/north_valley_dam) -"xDt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"xDv" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/building/administration/hallway) +"xDD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_hydro) +"xDS" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"xEg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Secure Tech Storage" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"xDT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"xDY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xEa" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xEb" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xEi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/loading) +"xEq" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "xEz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"xEG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"xEH" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +"xEA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"xEM" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"xEQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/nightmare{ - insert_tag = "shipgone_northlz" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"xET" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/area/desert_dam/exterior/valley/south_valley_dam) +"xEL" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/CE_office) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"xEX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "xEY" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"xFg" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"xFo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"xFb" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whiteyellow/northwest, -/area/desert_dam/interior/dam_interior/break_room) -"xFi" = ( -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_two) -"xFn" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"xFr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"xFy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"xFw" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) "xFA" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/disposalpipe/segment{ @@ -49425,229 +49515,168 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"xFG" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_south) -"xFJ" = ( -/obj/structure/bed/chair{ +"xFR" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/lobby) -"xFT" = ( -/obj/structure/platform{ +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_labs) +"xGy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"xFZ" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/surgery_room_two) -"xGa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_mining) -"xGf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"xGh" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"xGZ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) +/area/desert_dam/interior/dam_interior/engine_east_wing) "xHa" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz2_storage) -"xHd" = ( -/obj/structure/filingcabinet, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"xHe" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_central_south) -"xHl" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"xHr" = ( +"xHz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_telecoms) -"xHv" = ( -/turf/open/floor/coagulation/icon8_7, -/area/desert_dam/exterior/valley/valley_hydro) -"xIe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"xHH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/multitool, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xHL" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"xIb" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"xIz" = ( -/obj/structure/machinery/light{ +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"xIl" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xIs" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) "xIC" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz2_storage) -"xID" = ( -/obj/structure/platform{ - dir = 1 - }, +"xIO" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"xIE" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"xIQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/north_valley_dam) -"xIG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"xIO" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"xIV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon8_4, -/area/desert_dam/exterior/valley/valley_mining) -"xJb" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"xJe" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"xJn" = ( -/turf/open/gm/river/red_pool, -/area/desert_dam/building/dorms/pool) -"xJp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_mining) -"xJu" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/control_room) -"xJz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_cargo) -"xJA" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_hydro) -"xJC" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"xJT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) -"xKj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xJe" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"xJD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security Armoury" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "xKo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"xKr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/substation/northwest) +"xKq" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southwest, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"xKC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"xKu" = ( -/obj/structure/barricade/sandbags{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"xKH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"xKK" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/desert_dam/exterior/valley/valley_hydro) "xKN" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/south_tunnel) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) "xKS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"xLb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"xLa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"xLs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"xLI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/desert/excavation/component6/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"xLx" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"xLM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"xLB" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"xLG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/structure/machinery/computer/communications, -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"xLP" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"xLQ" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "xLS" = ( /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) "xLZ" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/disposals) +"xMp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"xMo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"xMq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) "xMr" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden{ @@ -49656,575 +49685,562 @@ /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) "xMu" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/substation/northwest) +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "xMv" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_wilderness) -"xMO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"xMP" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"xMU" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/substation/west) +"xMA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xMQ" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/substation/southwest) -"xNf" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/deathrow) -"xNk" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel) +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"xNa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"xNd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Emergency Room" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"xNg" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/church) +"xNl" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "xNA" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"xNG" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"xOa" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_north"; - name = "Checkpoint Lockdown" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"xNU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/red/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"xNW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"xOa" = ( +/turf/open/floor/whitegreencorner/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "xOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"xOj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +"xOe" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"xOp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"xOD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/church) +"xOt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xOw" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) "xOI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_hydro) +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_wing) "xOK" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/disposalpipe/segment, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"xON" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/trackimp, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"xOR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"xOU" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"xOV" = ( -/obj/structure/machinery/light{ - dir = 4 +"xOY" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"xOZ" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) +/area/desert_dam/exterior/valley/valley_crashsite) +"xPb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) "xPc" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xPo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Checkpoint" + }, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"xPf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"xPq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_northeast"; - name = "Checkpoint Lockdown" +/area/desert_dam/building/water_treatment_one/lobby) +"xPz" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_telecoms) "xPA" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"xPC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"xPD" = ( -/obj/structure/bed/chair{ +"xPQ" = ( +/turf/open/floor/whitebluecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"xPW" = ( +/obj/structure/platform{ dir = 8 }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"xPY" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"xQD" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"xQF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"xQL" = ( +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"xQV" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"xPE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xRa" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"xPP" = ( -/turf/open/desert/cave/cave_shore/southeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"xQa" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"xQg" = ( +/area/desert_dam/interior/dam_interior/workshop) +"xRe" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"xRl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"xRo" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xRJ" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"xRQ" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, /turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"xQu" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"xQK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment Foyer" +/area/desert_dam/building/security/prison) +"xRT" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"xQO" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/building/substation/northwest) -"xQZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"xRB" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"xRZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/central_caves) +"xSd" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_south) -"xRN" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_south) "xSg" = ( -/turf/open/floor/white, -/area/desert_dam/building/medical/emergency_room) -"xSl" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xSE" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/interior/caves/central_caves) +"xSi" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"xSo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"xSN" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cavein_engineering" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"xSO" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_civilian) -"xTi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"xSr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xSB" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"xSC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"xSS" = ( +/turf/open/floor/warning/east, +/area/desert_dam/interior/dam_interior/engine_room) +"xTc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"xTr" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "xTu" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"xTw" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"xUc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"xUu" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) -"xTO" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"xTQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_cargo) -"xUx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +"xUR" = ( +/obj/structure/surface/rack, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"xUz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/item/stack/sheet/plasteel{ + amount = 15 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"xUF" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"xVb" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xVc" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"xUX" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"xUZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"xVd" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/garage) -"xVh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xVs" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"xVl" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"xVP" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"xVU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/south_valley_dam) -"xVq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"xVs" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"xVY" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"xVB" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/telecomm/lz2_containers) -"xVD" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/hallway) -"xVN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"xVS" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"xVX" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/yautja_rope, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"xWa" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"xWl" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_medical) -"xWv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +"xWg" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/north_wing_hallway) +"xWo" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"xWr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"xWJ" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"xWK" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"xWS" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xWT" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"xWX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"xXi" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/south_valley_dam) -"xXs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"xWY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Administration Office" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/office) +"xXf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"xXp" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"xXv" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) "xXw" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"xXA" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/administration/lobby) -"xXA" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/interior/caves/east_caves) -"xYf" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"xYk" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"xXD" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"xXO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) "xYt" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"xYD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"xYE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics Breakroom" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"xYV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"xZa" = ( -/turf/open/floor/whitepurple/north, -/area/desert_dam/building/medical/chemistry) -"xZg" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/medical/garage) +"xZu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"xZo" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/north_valley_dam) -"xZG" = ( -/turf/open/desert/excavation/component8/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"xZN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"yac" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"yai" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/bar_valley_dam) +"xZy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"yaq" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"yas" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"yaE" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"yaK" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/blue, -/area/desert_dam/interior/dam_interior/tech_storage) -"yaQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"yaS" = ( -/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"xZM" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/caves/central_caves) +"xZW" = ( +/obj/structure/filtration/collector_pipes, +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_hydro) +"yaf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"yak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_1" + icon_state = "filtration_segment_B_0" }, -/turf/open/floor/coagulation/icon2_0, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) -"yaU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"yam" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"yap" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"yav" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/treatment_room) +"yaH" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"yaO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"ybi" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"ybq" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"yaR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"ybu" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"ybp" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/warehouse/warehouse) +"yby" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_labs) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) "ybA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ybE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"ycc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ycm" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ybG" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ybT" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"ycM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"yce" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"ycu" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ycP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"ycW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) "ycX" = ( -/turf/open/floor/prison/yellow/northeast, -/area/desert_dam/building/hydroponics/hydroponics) -"ydm" = ( -/obj/effect/blocker/toxic_water/Group_1/delay, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ydp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/prison/whitegreenfull/southwest, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/treatment_room) +"yds" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) "ydw" = ( /obj/structure/window/framed/hangar/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/desert_dam/building/mining/workshop) -"ydz" = ( -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"ydJ" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office1) -"ydM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"ydQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"ydW" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +"ydE" = ( +/turf/open/floor/coagulation/icon1_1, +/area/desert_dam/exterior/valley/valley_hydro) +"yel" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"yeo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"yea" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"yez" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Office" - }, -/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"yeI" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) +/area/desert_dam/interior/dam_interior/primary_tool_storage) "yeL" = ( /turf/closed/wall/r_wall/bunker, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"yeQ" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/window/reinforced{ - dir = 1 - }, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"yfe" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/briefcase, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/administration/overseer_office) +"yfj" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/caves/central_caves) +"yfk" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"yfk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) "yfq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -50232,189 +50248,184 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"yfE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"yfF" = ( +"yfx" = ( /obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"yfG" = ( -/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_one) -"yfN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/office) +"yfI" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"yfT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"yfP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ygf" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"yga" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"ygl" = ( +/obj/effect/blocker/toxic_water, +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_hydro) "ygn" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"ygv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"ygu" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ygy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Holding" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"ygx" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/holding) "ygz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"ygO" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"ygT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_hydro) +"ygY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"ygD" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_0" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"yhg" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"yhp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"ygJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"yhp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"yhA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/area/desert_dam/exterior/valley/valley_medical) +"yhs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/bar_valley_dam) -"yhG" = ( -/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"yih" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) -"yhY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"yie" = ( -/obj/structure/machinery/r_n_d/protolathe, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "yii" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/rock) -"yit" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"yiv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"yiz" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"yiJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"yio" = ( +/obj/structure/holohoop{ dir = 8 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_telecoms) -"yiT" = ( -/obj/structure/target, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating/warnplate, +/turf/open/floor/warnwhite/east, /area/desert_dam/exterior/valley/valley_telecoms) -"yjc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"yjo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/treatment_room) -"yjq" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/caves/central_caves) -"yjv" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"yjO" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 +"yiq" = ( +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/warden) +"yiu" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_one/purification) +"yiw" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_one) +"yiB" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"yjW" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"yjb" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"ykk" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"ykx" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"yjc" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"yjv" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_north) +"yjy" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"yjK" = ( +/obj/effect/landmark/static_comms/net_one, +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/telecomm/lz1_valley) +"yjM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper East Filtration" }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/lobby) -"ykH" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"yjR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"yle" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"yjY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"ykp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"ykw" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"ykz" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"ykH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) "ylf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -50435,42 +50446,31 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"ylm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"yls" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/mining/workshop) -"ylD" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"ylH" = ( -/obj/effect/landmark/static_comms/net_one, -/obj/structure/platform_decoration{ +"ylv" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/telecomm/lz1_valley) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) +"ylG" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"ylN" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) "ylO" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/interior/caves/central_caves) -"ymd" = ( -/obj/structure/stairs{ +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"ymc" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) (1,1,1) = {" acu @@ -51304,216 +51304,216 @@ dTs dTs dTs dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -acu -"} -(5,1,1) = {" -acu -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -bRH -bRH -bRH -bRH -bRH -bRH -bRH -bRH -bRH -hem -uBT +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +acu +"} +(5,1,1) = {" +acu +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +bRH +bRH +bRH +bRH +bRH +bRH +bRH +bRH +bRH +wuj +dla dTs dTs dTs @@ -51736,18 +51736,18 @@ dTs dTs dTs dTs -xFw +nVJ bRI bRH bRH -hem -xFw -xFw +wuj +nVJ +nVJ bRI bRH -hem -uBT -xPP +wuj +dla +mbN dTs dTs dTs @@ -51971,17 +51971,17 @@ dTs dTs dTs bQP -edd -xFw -xFw -uBT -xPP +xnd +nVJ +nVJ +dla +mbN dTs -edd -xFw -uBT -xPP -sUT +xnd +nVJ +dla +mbN +pqd dTs dTs dTs @@ -52205,17 +52205,17 @@ dTs dTs dTs dTs -tmm +oXk bQP bQP -xPP +mbN dTs dTs dTs -wJR -tmm +hpF +oXk bUg -nnD +xjW afD bPO bPO @@ -52238,22 +52238,22 @@ dTs dTs dTs dTs -oKL +mga dTs dTs dTs dTs dTs -oKL -oKL -oKL +mga +mga +mga dTs dTs dTs dTs dTs dTs -oKL +mga dTs dTs dTs @@ -52440,40 +52440,40 @@ dTs dTs dTs ahm -tmm +oXk bQP bUg -nnD +xjW dTs dTs ahm ahn ahm -sUT +pqd afD afD bPO bPO cdh cdh -jnI -oKL -oKL -oKL -oKL -oKL +lmS +mga +mga +mga +mga +mga dTs dTs dTs -oKL -oKL -oKL +mga +mga +mga dTs dTs -oKL -ves +mga +saf aRA -jnI +lmS dTs dTs dTs @@ -52486,9 +52486,9 @@ dTs dTs dTs dTs -ves +saf ceA -jnI +lmS dTs dTs dTs @@ -52520,10 +52520,10 @@ cpm cml cml cmm -xdU -iLt -xam -nYx +vTK +pyX +muw +eaZ cgm dTs dTs @@ -52532,7 +52532,7 @@ dTs dTs dTs dTs -jtR +nZX dTs dTs dTs @@ -52559,7 +52559,7 @@ dTs dTs dTs dTs -nBQ +gjc dTs dTs dTs @@ -52567,7 +52567,7 @@ dTs dTs dTs dTs -nBQ +gjc dTs dTs dTs @@ -52672,24 +52672,24 @@ dTs dTs dTs afD -iuo +qHl ahm ahm -wJR +hpF ahm -nnD -tax -tXQ +xjW +hlN +gOt ahm ahm ahm -nnD -tax -tXQ +xjW +hlN +gOt cbJ ccw cdl -vTK +pVj ceA ceA ceA @@ -52730,7 +52730,7 @@ cIe ceA ceA ceA -vRK +qCX beC dTs dTs @@ -52754,22 +52754,22 @@ cml crj cml cmm -eCb -waK -vyU -qtM +uGC +qRk +uoQ +rNN cgm cgm cgm -rAU +mWe dTs dTs -mRL -kNp -rAU -vkl -naT -qtE +uXd +kdJ +mWe +lUq +rHy +rTD dTs dTs dTs @@ -52791,18 +52791,18 @@ dTs dTs dTs dTs -erI -ulP -erI -ulP +rfj +qmI +rfj +qmI dTs dTs dTs -fcD -fcD -ulP -erI -ulP +fEu +fEu +qmI +rfj +qmI dTs dTs dTs @@ -52906,26 +52906,26 @@ dTs dTs dTs dTs -qkq +iBk bRL -mYe -mYe -vGJ -mYe -mYe -mYe -mYe -mYe -mYe -mYe -mYe -mYe -nfu -qGB -wQz -veR -nvN -nvN +uco +uco +myr +uco +uco +uco +uco +uco +uco +uco +uco +uco +fOl +wuq +iep +foO +vEv +vEv aQI aQI aQI @@ -52933,30 +52933,30 @@ aQI aQI aQI aQI -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN -nvN +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv +vEv aQI -oov +igW ceA cHV pJW @@ -52964,9 +52964,9 @@ cHY bRG ceA ceA -jnI -xrF -whr +lmS +mTG +jmc beC dTs dTs @@ -52978,9 +52978,9 @@ dTs dTs dTs cgm -fpv -fpv -wuh +xgf +xgf +eLl cgm cku cml @@ -52988,22 +52988,22 @@ cml cml cml cmm -tTv -ozn -vyU -eVY -wdS -hoN +mBS +flg +uoQ +rvg +pdg +hSQ cmm -vnG -naT -rAU -vkl +kHE +rHy +mWe +lUq doE doE doE doE -naT +rHy dTs dTs dTs @@ -53018,27 +53018,27 @@ dTs dTs dTs dTs -erI -fcD -ulP +rfj +fEu +qmI dTs dTs -erI -fcD -oIf -bci -oIf -bci -fcD -fcD -oIf -fgz -fgz -bci -oIf -bci -ulP -nBQ +rfj +fEu +eiR +inF +eiR +inF +fEu +fEu +eiR +fDr +fDr +inF +eiR +inF +qmI +gjc dTs dTs dTs @@ -53140,25 +53140,25 @@ dTs dTs dTs afD -iuo +qHl bRM aqn -tMn -nKW -nKW -nKW -nKW -nKW -nKW -nKW -nKW -nKW -ydW -xJe -xJe -gKy -hwZ -iQZ +jOE +eTM +eTM +eTM +eTM +eTM +eTM +eTM +eTM +eTM +jPh +nZi +nZi +uRd +bUO +rQc bam bam bam @@ -53168,29 +53168,29 @@ bam bam bbE cdk -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -eRi +rQc +rQc +rQc +rQc +rQc +rQc +rQc +rQc +rQc +koM aSK aSK -hwZ -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -iQZ -nHx +bUO +rQc +rQc +rQc +rQc +rQc +rQc +rQc +rQc +rQc +vxd cHC cHV pJW @@ -53200,9 +53200,9 @@ ceA ceA ceA ceA -jnI -xrF -whr +lmS +mTG +jmc dTs dTs dTs @@ -53222,58 +53222,58 @@ cpS cmm cgm cgm -pHV -ozn -vyU -vyU -vyU -vyU -reZ -jSF -oKV -oKV -oKV -oKV -oKV -oKV -oKV -xJz -oRB +trr +flg +uoQ +uoQ +uoQ +uoQ +jOq +epj +hyD +hyD +hyD +hyD +hyD +hyD +hyD +lWA +uBy dTs dTs dTs dTs dTs dTs -erI -fcD -ulP +rfj +fEu +qmI dTs dTs -erI -fcD -oIf -fgz -vTC -hrm -bci -oIf -fgz -fgz -fgz -gQS -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -hYb -fcD -ulP +rfj +fEu +eiR +fDr +qIO +liw +inF +eiR +fDr +fDr +fDr +rVe +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +wSi +fEu +qmI dTs dTs dTs @@ -53374,24 +53374,24 @@ dTs dTs dTs afD -iuo +qHl bRM -lRG -mTn -sUT -tNT -tNT -tNT -tNT -tNT -sTw +qcN +ugf +pqd +toN +toN +toN +toN +toN +rzX ahm ahm cbc cbM ccw -sfq -vTK +fCp +pVj ceA ceA ceA @@ -53400,8 +53400,8 @@ ceA ceA axk ceA -vZX -xKS +low +eIL ceA ceA ceA @@ -53411,10 +53411,10 @@ ceA ceA ceA ceA -kSJ -ryO -uIU -vTK +eyN +tXM +dFC +pVj ceA ceA ceA @@ -53429,14 +53429,14 @@ cHE cHX cIc cIg -gss -iPq -iPq -iPq -xIG +nGA +fXX +fXX +fXX +igL ceA ceA -vRK +qCX dTs dTs dTs @@ -53445,69 +53445,69 @@ dTs dTs dTs cgm -mvF -rIC +uKB +exl cih cih cgm -xam -qvt +muw +lyu cih -kmE -pbk -xam -qvt -ozn +pvL +ylN +muw +lyu +flg cuB -mkA -mkA -mkA -mkA -toR -eWT -eWT -eWT -eWT -eWT -qwn +fPX +fPX +fPX +fPX +mGc +vhj +vhj +vhj +vhj +vhj +wUt cZb -vLn -naT -dTs -dTs -dTs -dTs -nBQ -erI -oIf -fgz -bci -fcD -ulP -hrm -fgz -fgz -fgz -hYb -oIf -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -vTC +viP +rHy +dTs +dTs +dTs +dTs +gjc +rfj +eiR +fDr +inF +fEu +qmI +liw +fDr +fDr +fDr +wSi +eiR +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +qIO dTs dTs dTs @@ -53608,34 +53608,34 @@ dTs dTs dTs afD -iuo +qHl cEl -cVW -mTn -nnD +lDR +ugf +xjW afD dTs dTs afD afD afD -tNT -tNT -tNT +toN +toN +toN bPO bPO cdh cdh -lmc -lmc -iSI +gMm +gMm +vBd ceA ceA ceA axk ceA -vZX -xKS +low +eIL ceA acs acs @@ -53645,10 +53645,10 @@ aya aya acs acs -sfq -wAA -iNy -sfq +fCp +iMu +roP +fCp aTZ aUe aUe @@ -53663,86 +53663,86 @@ ceA ceA cId ceA -kSJ -fUv -qtH -vxS -nio -iPq -xIG -jnI -whr +eyN +jhr +lFS +iET +jYH +fXX +igL +lmS +jmc dTs dTs dTs dTs -oRa -oKL +cyu +mga cgm cgt -cqL +epz cih cih cjI cih -ozn -ozn -ozn -ozn -ozn -ozn -ozn +flg +flg +flg +flg +flg +flg +flg cih -mkA -nDm -xtb +fPX +lnB +iQn cmm -oYX +qYw doE doE doE doE doE -rJj -uwH -fow -vnG -oRB -dTs -dTs -fcD -fcD -oIf -fgz -fgz -fgz -fgz -bci -oIf -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -fgz -qmZ -iYm -iYm -eXt -fgz -fgz -bci -ulP +nee +jMM +lev +kHE +uBy +dTs +dTs +fEu +fEu +eiR +fDr +fDr +fDr +fDr +inF +eiR +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +fDr +ryL +esA +esA +oMk +fDr +fDr +inF +qmI dTs dTs dTs @@ -53755,17 +53755,17 @@ dTs dTs dTs dTs -tya +fet dTs dTs -tya -kNt -wys -lSd +fet +qRr +lvM +oZs dTs dTs dTs -wys +lvM dTs dTs dTs @@ -53785,9 +53785,9 @@ dTs dTs dTs dTs -lSd -tya -wys +oZs +fet +lvM dTs dTs dTs @@ -53842,18 +53842,18 @@ dTs dTs dTs bPO -tXQ +gOt cEl -lRG -qer -nnD +qcN +iMW +xjW dTs dTs dTs dTs -mNG -mNG -mNG +lYA +lYA +lYA afD dTs dTs @@ -53861,15 +53861,15 @@ dTs dTs cdh cdh -sJe -xrg +ife +dOb ceA ceA ceA axk ceA -vZX -xKS +low +eIL ceA hyH acs @@ -53880,8 +53880,8 @@ aWF aWF acs boO -xeW -egj +lYX +rva boO aTZ bdQ @@ -53897,15 +53897,15 @@ aTZ aTZ ceA ceA -kSJ -iKF -xmh -gfX -sfq -sfq -vTK +eyN +kAs +okC +fvq +fCp +fCp +pVj ceA -vRK +qCX dTs dTs dTs @@ -53913,71 +53913,71 @@ dTs kzQ ceA cgm -fpv -gTQ +xgf +aKr cih cih cih cih -kxK -kxK -kxK -kxK -kxK -kxK -kxK +rBZ +rBZ +rBZ +rBZ +rBZ +rBZ +rBZ cih -mkA -gVU +fPX +nxW cgm cgm dTs dTs -mTx -gai -fkD -fkD -qJT -lyp -qad -nQX +ibn +xnu +qjQ +qjQ +pMC +gCW +vbG +vRi dTs dTs -sST +jjo aKY -oCZ -sCi -sCi -sCi -sCi -sCi -sCi -sCi -sCi -sCi -sCi -sCi -sCi -oQL -sCi -sCi -sCi -sCi -sCi -sCi -sCi -sCi -oCZ -tZm -kVF +pBz +tgS +tgS +tgS +tgS +tgS +tgS +tgS +tgS +tgS +tgS +tgS +tgS +eTO +tgS +tgS +tgS +tgS +tgS +tgS +tgS +tgS +pBz +iBF +kJl dws dws -syQ -fgz -fgz -iIN -vTC -nBQ +fJx +fDr +fDr +vPy +qIO +gjc dTs dTs acu @@ -53988,25 +53988,25 @@ dTs dTs dTs dTs -lSd -sRa -jnS -ohm -vHM -osZ -fqi -wys -lSd -tya -idf -jnS -wys -lSd +oZs +hLk +qLs +xmA +bGq +mjI +eAm +lvM +oZs +fet +xnW +qLs +lvM +oZs dTs dTs dTs dTs -tya +fet dTs dTs dTs @@ -54018,14 +54018,14 @@ dTs dTs dTs dTs -tya -kNt -idf -xix -lSd +fet +qRr +xnW +fra +oZs dTs -kNt -wys +qRr +lvM dTs dTs dTs @@ -54076,11 +54076,11 @@ dTs dTs dTs bPO -nMB -wOb -lRG -qer -nnD +sKp +mUo +qcN +iMW +xjW dTs dTs dTs @@ -54096,14 +54096,14 @@ dTs dTs dTs dTs -kIo +qYV axk axk axk aPu ceA -vZX -xKS +low +eIL ceA ceA aya @@ -54113,10 +54113,10 @@ bbO aZp aWF aya -xnL -xeW -xeW -qod +pzR +lYX +lYX +jRP aUe bfz bwE @@ -54131,16 +54131,16 @@ bgz aTZ ceA ceA -kSJ -iKF -xmh -gfX -sfq -sfq -nrs +eyN +kAs +okC +fvq +fCp +fCp +nJf ceA -jnI -whr +lmS +jmc dTs dTs dTs @@ -54152,65 +54152,65 @@ chb ciC cih cgm -hXl +rrF cih -qNt -jnY -hUl -cYb -cYb -hXl +xMv +gRF +uyM +ejv +ejv +rrF cih -qNt -tix +xMv +ddk cgm dTs dTs dTs dTs dTs -ylm -lpV +eTi +hZN cAa -sdR -nyO +dqr +gMf cAa dTs dTs -oIf -sbU -oLR -vMc -imt -weh -fhG -mzf -imt -weh -fhG -mzf -imt -weh -pNq -taj -uTu -weh -fhG -mzf -imt -weh -fhG -kuO -oLR -sLr -mQN -imm -tsl -syQ -fgz -fgz -fgz -vTC +eiR +rdC +rQZ +ppu +uSw +kWn +oti +ogq +uSw +kWn +oti +ogq +uSw +kWn +nlE +rCU +fqi +kWn +oti +ogq +uSw +kWn +oti +qCH +rQZ +pTj +uvC +mvx +vmU +fJx +fDr +fDr +fDr +qIO dTs dTs dTs @@ -54220,30 +54220,30 @@ acu acu dTs dTs -lSd -lSd -tya -idf -hsV -vDD -gpn -gpn -osZ -byK -kNt -idf -dhE -dhE -jnS -wys -lSd +oZs +oZs +fet +xnW +mjA +jbD +glQ +glQ +mjI +ohU +qRr +xnW +ejk +ejk +qLs +lvM +oZs dTs dTs -tya -idf -jnS -kNt -wys +fet +xnW +qLs +qRr +lvM dTs dTs dTs @@ -54252,15 +54252,15 @@ dTs dTs dTs dTs -idf -fMN -wcE -jnS -wys -uGj -oou -jnS -wys +xnW +rMW +vHz +qLs +lvM +sBY +rrk +qLs +lvM dTs dTs dTs @@ -54310,34 +54310,34 @@ dTs dTs dTs bPO -oHX -jzC -lRG -qer +tGf +sPJ +qcN +iMW dTs dTs dTs dTs arF -wbi -iTj -tXY -sVx -iRB +oAL +rgb +lfz +vrF +ngg arF dTs dTs dTs dTs dTs -xrg +dOb ceA ceA ceA ceA ceA -vZX -xKS +low +eIL aUg ceA aya @@ -54346,11 +54346,11 @@ aZj bbO aZp aWF -qJn -nyF -nyF -nyF -hKy +koO +yjY +yjY +yjY +eRK aUe bfz bwF @@ -54360,25 +54360,25 @@ bfz bKf bKl bgz -nvO -tvl +oAr +uTT aTZ ceA ceA -kSJ -iKF -xmh -gfX -sfq -sfq -vTK +eyN +kAs +okC +fvq +fCp +fCp +pVj ceA ceA -jnI -xrF +lmS +mTG dTs dTs -kSJ +eyN kzQ ceA cgm @@ -54404,18 +54404,18 @@ dTs dTs dTs dTs -xaG +qmL cOj -hbZ -vLn +tRV +viP doE -naT +rHy dTs dTs -bXb -pIb +luR +uzq cDY -sjq +pbG cDY cDY cDY @@ -54424,7 +54424,7 @@ cDY cDY cDY cDY -sjq +pbG cDY cDY cDY @@ -54433,19 +54433,19 @@ cDY cDY cDY cDY -sjq +pbG cDY -iet -fgX -mQN +uEq +eSD +uvC dws dws -syQ -fgz -fgz -fgz -bci -ulP +fJx +fDr +fDr +fDr +inF +qmI dTs dTs acu @@ -54453,52 +54453,52 @@ acu (18,1,1) = {" acu dTs -tya -kNt -kNt -idf -dhE -dhE -vVg -huw -gpn -tdz -wcE -dhE -dhE -dhE -dhE -dhE -jnS -wys -tya -kNt -idf -dhE -xRN -dhE -jnS -kNt -wys -lSd -dTs -dTs -idf -xix -uGj -oou -dhE -fMN -dhE -jnS -kNt -idf -dhE -jnS -wys -lSd -tya -wys +fet +qRr +qRr +xnW +ejk +ejk +xMu +oue +glQ +qOS +vHz +ejk +ejk +ejk +ejk +ejk +qLs +lvM +fet +qRr +xnW +ejk +uFw +ejk +qLs +qRr +lvM +oZs +dTs +dTs +xnW +fra +sBY +rrk +ejk +rMW +ejk +qLs +qRr +xnW +ejk +qLs +lvM +oZs +fet +lvM dTs dTs dTs @@ -54545,19 +54545,19 @@ dTs dTs bNY bRj -moR -nEi +lmP +uRw bRj bNY bNY dTs dTs arF -fvF -aSS -aSS -elw -jeP +cjL +qFi +qFi +xwe +ncZ arF dTs dTs @@ -54569,9 +54569,9 @@ vvy oCu ceA aQc -nvN +vEv aSJ -xKS +eIL ceA ceA aya @@ -54581,11 +54581,11 @@ aZn aZp aWF aya -mWz -cxp -nyF -xeW -mjl +eqv +obS +yjY +lYX +odI bgz bgz bzW @@ -54594,25 +54594,25 @@ bgz bgz bKJ bgz -nvO -ose +oAr +nsl aTZ ceA ceA -kSJ -pbJ -eNl -qUW -kEL -sfq -vTK +eyN +qnZ +yio +sLk +elj +fCp +pVj ceA ceA ceA ceA dTs -iPq -fcT +fXX +tCl kzQ ceA ceA @@ -54620,34 +54620,34 @@ ceA ceA ceA ceA -kSJ -fak -vTK +eyN +tAH +pVj ceA ceA ceA ceA -kSJ -fak -vTK +eyN +tAH +pVj ceA -kSJ +eyN dTs dTs dTs dTs dTs dTs -vkl +lUq doE -hbZ -vLn +tRV +viP doE doE dTs dTs -bXb -uvS +luR +vUS cDY cDY cDY @@ -54669,71 +54669,71 @@ cDY cDY cDY cDY -jeE -fgX -mQN +jQL +eSD +uvC dws dws -syQ -fgz -xtJ -fgz -fgz -vTC -nBQ +fJx +fDr +xXw +fDr +fDr +qIO +gjc dTs acu "} (19,1,1) = {" acu dTs -sRa -dhE -xRN -dhE -dhE -buH -xud -wQn -vVg -iiU -hsV -dhE -dhE -dhE -buH -hsV -dhE -jnS -idf -dhE -dhE -dhE -dhE -dhE -dhE -buH -jnS -kNt -idf -dhE -dhE -jnS -kNt -idf -dhE -dhE -pHx -dhE -dhE -dhE -dhE -dhE -gUT -kNt -idf -jnS -kNt +hLk +ejk +uFw +ejk +ejk +sgb +hUe +jWh +xMu +nfU +mjA +ejk +ejk +ejk +sgb +mjA +ejk +qLs +xnW +ejk +ejk +ejk +ejk +ejk +ejk +sgb +qLs +qRr +xnW +ejk +ejk +qLs +qRr +xnW +ejk +ejk +qhK +ejk +ejk +ejk +ejk +ejk +ffK +qRr +xnW +qLs +qRr bht bht bht @@ -54754,8 +54754,8 @@ bht bht bht bht -riy -riy +oMK +oMK dTs dTs dTs @@ -54778,34 +54778,34 @@ dTs bNY bNY bNY -ogZ -moR -fGf -stN -kTf +jQv +lmP +iVb +ndU +rkC bNY dTs dTs arF -ttm -elw -elw -elw -iyJ +nhA +xwe +xwe +xwe +dEL arF dTs dTs -mvE -fiY +iJc +epD aPY aSu aSu aPR -fHA +jHB aSJ aSK aSK -rDG +rDC ceA ceA aya @@ -54815,11 +54815,11 @@ aZp aZp bkI aya -rTe -oyG -iwi -oIC -pqE +kyT +ggw +elA +czp +gwx biF biF biF @@ -54828,60 +54828,60 @@ biF biF bKZ bgz -nvO -kSC +oAr +flz aTZ ceA ceA -mEA -lCa -mjt -sfq -kEL -sfq -vTK +iBP +hLr +egi +fCp +elj +fCp +pVj ceA ceA ceA ceA -kSJ -sfq +eyN +fCp aIT aKb -nvN -nvN -nvN -nvN -nvN -nvN -sgk +vEv +vEv +vEv +vEv +vEv +vEv +tHE aSK -dyD -nvN -nvN -nvN -nvN -sgk +dkf +vEv +vEv +vEv +vEv +tHE aSK -kkS +nre aUh -kSJ -jCQ -tQs +eyN +lUL +sZX dTs dTs dTs -vkl +lUq doE -xDm +svz cBU cGH -xJz +lWA cSR dTs dTs -bXb -wLa +luR +nBF cDY cDY cDY @@ -54903,17 +54903,17 @@ cDY cDY cDY cDY -syv -vJF -mQN -imm -tsl -syQ -fgz -fgz -fgz -fgz -vTC +ygf +mub +uvC +mvx +vmU +fJx +fDr +fDr +fDr +fDr +qIO dTs dTs acu @@ -54921,76 +54921,76 @@ acu (20,1,1) = {" acu dTs -sRa -dhE -dhE +hLk +ejk +ejk aPA -wme -mJU -wme -wme -wme -wme -wme -wme -wme -wme -xUx -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -xUx -wme -wme -wme -wme -wme -wme -wme -wme -wme -wme -xUx -wme -wme -wme -wme -wme -wme -wme -wme -wme -sQB +qxk +hHz +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +pDA +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +pDA +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +pDA +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +qxk +obd bhu -gPC -gOt -nrF -kqr -rLd -nrF -rLd -rLd -uHy -rLd -rLd -nrF -rLd -kqr -nrF -rLd -rLd -nrF -fIm -eut +tJV +mVv +tFy +qng +qKv +tFy +qKv +qKv +jGg +qKv +qKv +tFy +qKv +qng +tFy +qKv +qKv +tFy +dtK +xgb ada -rRM +rbT dTs dTs byn @@ -55007,26 +55007,26 @@ byn byn byn bLU -vWZ -vWZ -vWZ -vWZ -pmM -vly -moR -fGf -stN -hOw -vWZ +qlH +qlH +qlH +qlH +vwe +bqT +lmP +iVb +ndU +jwC +qlH dTs dTs arF -fvF -gXK -heg -myO -heg -caE +cjL +sNO +fmi +ppC +fmi +qYJ wuC wuC wuC @@ -55035,24 +55035,24 @@ aTl aSu cvr aPR -ryO +tXM aSK aSK -uIU -vTK +dFC +pVj aUh acs acs -nml +jBJ aZp aZp aZp bkJ acs -rTe -mFI -xeW -rlI +kyT +wbI +lYX +sGH aUe bfz bwE @@ -55062,60 +55062,60 @@ bfz bKf bLe bgz -nvO -jNW +oAr +rMM aTZ ceA ceA ceA ceA -kSJ -kEL -kEL -xvj -xTi +eyN +elj +elj +rVI +jaO ceA ceA ceA ceA -kSJ -sfq +eyN +fCp csu aSK aSK cdk -iQZ -iQZ -iQZ -iQZ -eRi +rQc +rQc +rQc +rQc +koM aSK aSK -hwZ -iQZ -iQZ -iQZ -iQZ +bUO +rQc +rQc +rQc +rQc bbE -vEG -iPq -fcT +knW +fXX +tCl cxt -naT -uQc -vkl +rHy +wKf +lUq doE doE -xDm -siu -ghY -ghY -wdN -dJz -naT -dTs -bXb -kny +svz +egU +rzc +rzc +vng +sDz +rHy +dTs +luR +qIc cDY cDY cDY @@ -55139,14 +55139,14 @@ cDY cDY cNh djl -jZt +klG dws dws -syQ -fgz -fgz -scF -qBc +fJx +fDr +fDr +rlR +lCc dTs dTs dTs @@ -55155,10 +55155,10 @@ acu (21,1,1) = {" acu dTs -uGj -oou -dhE -qZs +sBY +rrk +ejk +mJB aQf aQU aQU @@ -55203,64 +55203,64 @@ aQU aQU aQU bbV -cZA -wsO -wsO -wsO -wsO -wsO -wsO -wsO -wsO -cZA -wsO -wsO -wsO -wsO -wsO -wsO -wsO -wsO -cZA -wOp -eut -rRM +fPN +gXT +gXT +gXT +gXT +gXT +gXT +gXT +gXT +fPN +gXT +gXT +gXT +gXT +gXT +gXT +gXT +gXT +fPN +qlh +xgb +rbT dTs dTs byo -eUE -ouk -ouk -lEC -miM -eUE -jbA -lEC -lEC -yeI -eVi +kTm +fCq +fCq +sAS +iCy +kTm +vrT +sAS +sAS +gne +mXV byo -nJb -wWu -wWu -wWu -wWu -wWu -lrF -wCp -fGf -nJb -wWu -wWu +oZt +dcU +dcU +dcU +dcU +dcU +rzM +rUo +iVb +oZt +dcU +dcU dTs dTs woy -fvF -gXK -kwq -ygn -eam -mYA +cjL +sNO +urL +xzn +uFr +hpX cvr aQC aQu @@ -55269,11 +55269,11 @@ aSX aUB aWf aXd -ryO +tXM aQt aSK -uIU -vTK +dFC +pVj ceA ceA aya @@ -55283,10 +55283,10 @@ bbO aZp aWF aya -rTe -mFI -nyF -qod +kyT +wbI +yjY +jRP aUe bfz bwE @@ -55303,44 +55303,44 @@ ceA ceA ceA ceA -kSJ -kEL -kEL -tnR +eyN +elj +elj +fhE ceA ceA -rcA -iSI +ngE +vBd ceA -kSJ -sfq -uyD -nHw +eyN +fCp +nmJ +kLj aSK -xKS +eIL chw ciF ciF ciF -fqj -eZx -xGh -xkT +wTu +lkd +rXp +ikn ciF ciF chv ceA -vZX +low aSK -ipO -tKu -wil -oKV -oKV -mcH -mcH -mcH -lAN +kFf +gsn +hza +hyD +hyD +uQy +uQy +uQy +hAm cIi cRM cRM @@ -55348,8 +55348,8 @@ cRM dFn doE doE -bXb -pLK +luR +hhB cDY cDY cDY @@ -55376,12 +55376,12 @@ dws dws dws dws -syQ -qxy -qJr -jaB -bci -ulP +fJx +gpP +umS +ojp +inF +qmI dTs dTs acu @@ -55390,9 +55390,9 @@ acu acu dTs dTs -uGj -oou -qZs +sBY +rrk +mJB aQg aQV aQV @@ -55436,65 +55436,65 @@ aQV aQV aQV aQV -sjn -snT -snT -vIK -vIK -snT -snT -snT -xSE +hhU +iFD +iFD +pcF +pcF +iFD +iFD +iFD +nVq bjk blx -snT -snT -vIK -snT -snT -snT -snT -snT -xEQ -nPs -iHa -nnK -riy +iFD +iFD +pcF +iFD +iFD +iFD +iFD +iFD +mKJ +tRv +jpy +vjp +oMK byr bhu -nTt -lEC -uan -eWr -gsW -kcv -lEC -lEC -lEC -eZn -eNR +yaH +sAS +fbB +eNx +vxH +wnB +sAS +sAS +sAS +lHK +tJl byo -fLE -wQG -fLE -tKb -fLE -xtL -fLE -wCp -fGf -fLE -fLE -qmQ +fmS +lZA +fmS +dqa +fmS +uux +fmS +rUo +iVb +fmS +fmS +eTX bLU dTs arF -nis -uIP -eam -eam -eam -gWS +lRk +oob +uFr +uFr +uFr +sfF cvr aQC aQC @@ -55503,11 +55503,11 @@ aSX aSu cvr aPR -ryO +tXM aSK aSK -uIU -vTK +dFC +pVj ceA ceA aya @@ -55517,16 +55517,16 @@ bbP bhx aWF aya -xnL -mFI -nyF -qod +pzR +wbI +yjY +jRP aTZ bdQ bwE bwE bBS -jBu +fub bfz bLf bfz @@ -55538,8 +55538,8 @@ bNE bNE bNE bNF -oKD -hyt +eTR +pCQ bNF bNE bNE @@ -55547,30 +55547,30 @@ bNE bNE bNE bNE -lCa -mjt -tdY -psU -xKS +hLr +egi +dpm +fJA +eIL cfC -sfq -sfq -sfq -sfq -uOC -fKx -sfq -sfq -sfq +fCp +fCp +fCp +fCp +txk +gsM +fCp +fCp +fCp kzQ ceA -vZX +low aSK aSK csu cZb cZb -lYh +fze cIi cRM cRM @@ -55582,8 +55582,8 @@ crx dFo doE doE -bXb -uvS +luR +vUS cDY cDY cDY @@ -55608,14 +55608,14 @@ cDY cNx dws dws -imm -tsl -syQ -ujg -qrf -uGX -jUe -vTC +mvx +vmU +fJx +sjL +tEl +lPi +tuy +qIO dTs dTs acu @@ -55625,8 +55625,8 @@ acu dTs dTs dTs -sRa -qZs +hLk +mJB aQg aQV aQV @@ -55670,65 +55670,65 @@ aQW aQV aQV aQV -sjn -snT -snT -snT -snT -snT -snT -xSE +hhU +iFD +iFD +iFD +iFD +iFD +iFD +nVq bkn bkS bly -snT -snT -snT -snT -snT -snT -xZg -snT -ilW -nPs -mvW -eut +iFD +iFD +iFD +iFD +iFD +iFD +mod +iFD +sJd +tRv +nsm +xgb ada ada bhu -jkY -lEC -lEC -lEC -jGC -fYz -lEC -lEC -lEC -rpt -lEC +xTc +sAS +sAS +sAS +xJe +eHJ +sAS +sAS +sAS +qBX +sAS bMw -fLE -wQG -fLE -tKb -fLE -ulu -pch -moR -fGf -fLE -fLE -fHE +fmS +lZA +fmS +dqa +fmS +oHa +pBZ +lmP +iVb +fmS +fmS +oXF bLU dTs arF -jHS -gXK -olB -vhT -eUD -caE +iwX +sNO +vyd +eiJ +pxs +qYJ ray fgU nmP @@ -55737,11 +55737,11 @@ aUw cvr cvr aPR -ilB +nNo aSK aSK -uIU -vTK +dFC +pVj ceA ceA aya @@ -55750,11 +55750,11 @@ aZp bbO aZp aWF -qJn -xeW -mFI -nyF -qod +koO +lYX +wbI +yjY +jRP aTZ aTZ aTZ @@ -55765,46 +55765,46 @@ bsp bGy bsp bKN -jXE -rjJ -jXE +pgi +lrf +pgi bNE -ijm -nRF -pef -xeX -xeX -ueW -pgX +vgV +qFn +eme +inZ +inZ +kjR +sWL bNE -eqM +ndh bNE -eqM +ndh bNE dTs -kSJ +eyN kzQ -vZX -xKS +low +eIL cfC -sfq -vhR -qhG -qhG -gsh -gsh -qhG -qmP -sfq -wkQ -iPq -jaF +fCp +nti +tKt +tKt +qKs +qKs +tKt +iFO +fCp +gkR +fXX +vhL aSK -gsh -uyD -jmz +qKs +nmJ +nfS cIv -lYh +fze cUl crx crx @@ -55816,8 +55816,8 @@ crx dFo doE doE -bXb -wLa +luR +nBF cDY cDY cDY @@ -55844,12 +55844,12 @@ dws dws dws dws -syQ -qJr -eBd -gCh -fgz -bci +fJx +umS +jQt +vrN +fDr +inF dTs dTs acu @@ -55859,8 +55859,8 @@ acu dTs dTs dTs -sRa -qZs +hLk +mJB aQg aQV aQV @@ -55904,11 +55904,11 @@ aQV aQV aQV aQV -sjn -snT -snT -snT -xSE +hhU +iFD +iFD +iFD +nVq bjk bjy bjC @@ -55916,52 +55916,52 @@ bjk bjk bjk blx -tak +lHq bmD -hYT -snT -xSE -dtU -snT -ilW -nPs -rLd -mvW -vXb -lXU +vLQ +iFD +nVq +pgG +iFD +sJd +tRv +qKv +nsm +qge +mnP bhu -lEC -lEC -tgL -gaU -lEC -lEC -lEC -lEC -lEC -lEC -lEC +sAS +sAS +ufE +rzO +sAS +sAS +sAS +sAS +sAS +sAS +sAS bMw -fLE -grB -fLE -tKb -fLE -ulu -pfw -hIC -fGf -fLE -sjA -xwi +fmS +iLv +fmS +dqa +fmS +oHa +uAM +jJF +iVb +fmS +tZz +ljr bLU dTs arF -qYJ -elw -aSS -aSS -hwU +uVx +xwe +qFi +qFi +qtJ uez aPT aQJ @@ -55971,11 +55971,11 @@ aTl aUB aWf aXd -ilB +nNo aQt aSK -uIU -vTK +dFC +pVj ceA ceA aya @@ -55985,60 +55985,60 @@ aWF aWF aWF aya -vfx -uXK -xeW -xgF +ndo +fNU +lYX +npY aUS -xIz -ezS -ezS -ezS +oJS +xQL +xQL +xQL aUS -rHn +nak bGz -fXH +uhL bsp -jXE -jXE -jXE +pgi +pgi +pgi bNE -qGi -oKD -oKD -xeX -xeX -oKD -cNJ +pnj +eTR +eTR +inZ +inZ +eTR +fYL bNE -rdw +goA bNE -rdw +goA bNE dTs -kSJ +eyN kzQ -vZX -xKS +low +eIL cfC -sfq -nNI -iGY -yaU -yaU -yaU -nMg -ryO -tKu -qth -ipO +fCp +prT +jAK +sVt +sVt +sVt +lPo +tXM +gsn +kNj +kFf aSK -uIU -sfq -sfq +dFC +fCp +fCp cxt -hbZ -lYh +tRV +fze cUl crx crx @@ -56050,8 +56050,8 @@ crx dFo cOj doE -bXb -kny +luR +qIc cDY cDY cDY @@ -56075,16 +56075,16 @@ cDY cDY cPW djk -rqG +pEc dws dws -syQ -stI -gCh -uCx -fgz -qBc -wlp +fJx +jNJ +vrN +doA +fDr +lCc +wsa dTs acu "} @@ -56093,8 +56093,8 @@ acu dTs dTs dTs -sRa -qZs +hLk +mJB aQg aQV aQV @@ -56138,64 +56138,64 @@ aQU aQV aQV aQV -sjn -dfd -snT -xZg -uKS -tuZ +hhU +jVF +iFD +mod +xdY +pMX bjz -quI -uLi -uLi -uLi -quI -uFh -uLi -mbn -hYT +lGz +jTx +jTx +jTx +lGz +gIs +jTx +mGG +vLQ bjB -snT -snT -mfR -nPs -tTq -rLd -rLd -jKu -ouE -hWl -hWl -hWl -whi -hWl -hWl -dCm -whi -whi -hWl -hWl +iFD +iFD +vHm +tRv +gTf +qKv +qKv +kFj +tUb +jao +jao +jao +xuT +jao +jao +tVx +xuT +xuT +jao +jao bMw -fLE -fLE -pfw -pfw -pfw -pfw -tXB -uyJ -fGf -fLE -fLE -fHE +fmS +fmS +uAM +uAM +uAM +uAM +fVs +gUD +iVb +fmS +fmS +oXF bLU dTs arF -iJw -elw -elw -elw -ill +iZg +xwe +xwe +xwe +pqZ uez aPY cvr @@ -56205,11 +56205,11 @@ aSX aQC cvr aXd -ilB +nNo aQt aSK -uIU -vTK +dFC +pVj ceA act act @@ -56219,60 +56219,60 @@ aoj aoj act bnF -oaJ -mFI -nyF -qod +sGh +wbI +yjY +jRP aUS -iyB -jtb -jtb -ezS -hZq -rHn +fjh +eyU +eyU +xQL +jeq +nak bGz -fXH -jjh -jXE -kiR -jXE +uhL +phJ +pgi +oVA +pgi bNE -fjC -oKD -rnV -xeX -xeX -oKD -oKD +aol +eTR +iFd +inZ +inZ +eTR +eTR cdt -fGB -fGB -fGB +hJr +hJr +hJr bNE dTs -fcT +tCl kzQ -vZX -xKS +low +eIL cfC -sfq -nNI -xyg -spv -sfk -eld -vnM -ryO +fCp +prT +kWW +njY +xOe +wmi +vAw +tXM csu aSK aSK aSK aSK -ipO -tKu -uvQ +kFf +gsn +joB cBU -lYh +fze dlb cMJ cMJ @@ -56284,8 +56284,8 @@ crx dFo doE doE -bXb -pLK +luR +hhB cDY cDY cDY @@ -56307,16 +56307,16 @@ cDY cDY cDY cDY -iet -upN -mQN -imm -tsl -syQ -scF -tHb -fgz -fgz +uEq +def +uvC +mvx +vmU +fJx +rlR +nTd +fDr +fDr dTs dTs dTs @@ -56327,8 +56327,8 @@ acu dTs dTs dTs -sRa -qZs +hLk +mJB aQg aQV aQV @@ -56372,64 +56372,64 @@ aQV aQV aQV aQV -sjn -snT -snT +hhU +iFD +iFD vLw -ktb -uFh -tak -uFh -uFh -uFh -uFh -uFh -uFh -uFh -uFh +kUw +gIs +lHq +gIs +gIs +gIs +gIs +gIs +gIs +gIs +gIs bnH boy -snT -snT -ilW -nPs -gZc -vLq -qoy -qoy -jyF -jVN -jVN -nWv -bWy -nWv -nWv -fLW -kFc -nWv -nWv -nWv -nRe -cST -cST -cST -lxl -lxl -cST -cST +iFD +iFD +sJd +tRv +oOh +hzt +jfq +jfq +kgA +vAY +vAY +gaD +jNi +gaD +gaD +pJv +xFy +gaD +gaD +gaD +gvz +wHd +wHd +wHd +ePy +ePy +wHd +wHd cFi cGj -fSy -fLE -mlm +wMo +fmS +wHD bLU dTs arF -xVd -wUo -rUb -xte -ill +uAS +nin +nRI +jdK +pqZ uez aPY aQC @@ -56439,74 +56439,74 @@ aSX aSu aSu aPR -ryO +tXM aQt aSK -uIU -vTK +dFC +pVj ceA act -tnS -hMh -qGV -hMh -hMh -fvC +vye +qfV +wjU +qfV +qfV +lCz bnG -xnL -mFI -nyF -qod +pzR +wbI +yjY +jRP aUS -xXv -xXv -xXv -xXv +nvx +nvx +nvx +nvx aUS -rHn +nak bGB -sZP +eqw bNE bNF -jWe +hnt bNF bNE -mky -oKD -xeX -xMo -xMo -xeX -yce +jLD +eTR +inZ +nye +nye +inZ +gou cdt -fGB -fGB -fGB +hJr +hJr +hJr bNE dTs -sfq +fCp kzQ -vZX -xKS +low +eIL cfC -sfq -nNI -xyg -spv -spv -spv -vnM -wAA -uyD -nHw -gsh +fCp +prT +kWW +njY +njY +njY +vAw +iMu +nmJ +kLj +qKs aSK aSK aSK -rgD +qoq cZb cZb -lYh +fze cIi cRM cRM @@ -56518,8 +56518,8 @@ crx dFo doE doE -bXb -uvS +luR +vUS cDY cDY cDY @@ -56541,17 +56541,17 @@ cDY cDY cDY cDY -jeE -fgX -mQN +jQL +eSD +uvC dws dws -syQ -jUe -scF -fgz -fgz -vTC +fJx +tuy +rlR +fDr +fDr +qIO dTs dTs acu @@ -56560,9 +56560,9 @@ acu acu dTs dTs -tya -idf -qZs +fet +xnW +mJB aQh aQW aQW @@ -56606,64 +56606,64 @@ aQV aQV aQV aQV -sjn -tiY -vIK -nhf -pto -tuZ +hhU +tNp +pcF +iVv +soo +pMX bjB -nrD -gBq -gBq -gBq -nrD -uFh -gBq -wEE -dtU +ntO +hqy +hqy +hqy +ntO +gIs +hqy +jgg +pgG bjz -snT -snT -uuA -nPs -rLd -lPo -vmE -vmE -fhR -xgc -xgc -xgc -ttN -ttN -xgc -xgc -oHs -xgc -xUX -xUX -xUX -xju -xju -xju -xju -xju -xju -xju +iFD +iFD +bMR +tRv +qKv +ovt +fDx +fDx +sYZ +bds +bds +bds +moT +moT +bds +bds +kZe +bds +ncc +ncc +ncc +xfs +xfs +xfs +xfs +xfs +xfs +xfs cEt cGk -qDg -eRM -xwZ +efj +fkg +xRa bLU dTs arF arF uez uez -elw -wPs +xwe +gmW uez lop fgU @@ -56673,74 +56673,74 @@ aUw aUM aWf aXd -ryO +tXM aQt aQt -uIU -nio -iPq +dFC +jYH +fXX aoj -soQ -qkR -qkR -fWs -fWs -ybq -iNb -tjA -vfK -nyF -qod +jRS +tVj +tVj +ctU +ctU +wfU +rLB +oto +rgL +yjY +jRP aVw bmx bmx bmx bmx aVw -sLg +fQt bGB -sZP +eqw bNF bOD bPG bQu bNE -jMg -oKD -xeX -mIB -mIB -xeX -oKD +tNR +eTR +inZ +qhn +qhn +inZ +eTR cdt -fGB -fGB +hJr +hJr bcM bNE dTs -sfq -jYW -ulV -net -plO -sfq -nNI -xyg -spv -spv -lWb -vnM -sfq -sfq -gdb -oyv -wAA -gsh -gsh -uyD -qrK +fCp +hCt +uWx +qem +maa +fCp +prT +kWW +njY +njY +hwh +vAw +fCp +fCp +uet +qKg +iMu +qKs +qKs +nmJ +lna cIv -lYh +fze cUl crx crx @@ -56752,10 +56752,10 @@ crx dFo doE cDc -bXb -nfx +luR +eCc cDY -sjq +pbG cDY cDY cDY @@ -56764,7 +56764,7 @@ cDY cDY cDY cDY -sjq +pbG cDY cDY cDY @@ -56773,19 +56773,19 @@ cDY cDY cDY cDY -sjq +pbG cDY -syv -fgX -mQN +ygf +eSD +uvC dws dws -syQ -qJr -jaB -fgz -fgz -vTC +fJx +umS +ojp +fDr +fDr +qIO dTs dTs acu @@ -56794,44 +56794,44 @@ acu acu dTs dTs -gyN -dhE -ygv -gtT -gqM -gqM -vvc +jht +ejk +ngO +pPo +gjj +gjj +jbH aSx aSY aQg aUi -gqc -fcw -gqM -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -gqM -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -gqM -fcw -vvc +dcm +ffF +gjj +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +gjj +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +gjj +ffF +jbH aQg aQV aQV @@ -56840,11 +56840,11 @@ aQV aQV aQV aQV -sjn -snT -snT -snT -nhf +hhU +iFD +iFD +iFD +iVv bjk bjC bjy @@ -56852,52 +56852,52 @@ bjk bjk bjk blx -tak +lHq bmD -dtU -snT -nhf -hYT -snT -ilW -nPs -hOC -lPo -vmE -uuF -nQM -wcf -wcf -wcf -wcf -oJT -wcf -iGz -oHs -xgc -eEf -wcf +pgG +iFD +iVv +vLQ +iFD +sJd +tRv +gUS +ovt +fDx +oaH +rrz +iZR +iZR +iZR +iZR +uEX +iZR +oZe +kZe +bds +nfv +iZR bMw -fLE -fLE -fLE -fLE -fLE -fLE -fLE -moR +fmS +fmS +fmS +fmS +fmS +fmS +fmS +lmP cGl -tBp -rks -vQM +nmm +lPm +dxF bLU dTs dTs arF -pmC -pNS -hzX -hzX +tKE +dql +koX +koX uez wAP aQJ @@ -56907,74 +56907,74 @@ aTl aQC aSu aPR -ryO +tXM aSK aQQ aSK -ipO -qmP -xBQ -fWs -fWs -ybq -fWs -ybq -ybq -nyF -xeW -qcS -nyF -qod +kFf +iFO +ifk +ctU +ctU +wfU +ctU +wfU +wfU +yjY +lYX +iUq +yjY +jRP aVw -hJy -pzm -pBP -xOR +mqq +tiU +qMr +rmw aVw -rHn +nak bGB -fXH +uhL bNF bOD bOD bOD bNE -lkM -yce -xeX -mIB -mIB -oKD -eLm +lyr +gou +inZ +qhn +qhn +eTR +vPh bNE -lox -fGB +nTu +hJr bcM bNE dTs -sfq -sfq -uOC -fKx -sfq -sfq -nNI -xyg -spv -spv -pWg -vnM -xvj -lCa -mjt -tdY -lCa -lCa -lCa -mjt +fCp +fCp +txk +gsM +fCp +fCp +prT +kWW +njY +njY +qwg +vAw +rVI +hLr +egi +dpm +hLr +hLr +hLr +egi cxt -hbZ -lYh +tRV +fze cUl crx crx @@ -56986,40 +56986,40 @@ crx dFo doE doE -sbU -oLR -oCQ -oji -mtd -vbU -kzy -oji -mtd -vbU -kzy -oji -mtd -hdO -gvw -htk -mtd -vbU -kzy -oji -mtd -vbU -elA -oLR -sLr -mQN -imm -tsl -syQ -qrf -uGX -jUe -fgz -vTC +rdC +rQZ +usg +iBN +wjZ +uvJ +xAP +iBN +wjZ +uvJ +xAP +iBN +wjZ +wLJ +cMk +fMj +wjZ +uvJ +xAP +iBN +wjZ +uvJ +vei +rQZ +pTj +uvC +mvx +vmU +fJx +tEl +lPi +tuy +fDr +qIO dTs dTs acu @@ -57028,44 +57028,44 @@ acu acu dTs dTs -sRa -dhE -dhE -eSB -oWH -jEv -tuS +hLk +ejk +ejk +mxc +jhv +rvo +nwC aSx aQV aQV aUi -wEQ -tfb -oWH -wgs -oZt -qvo -gCR -fZF -oZt -qvo -gCR -fZF -oZt -qAX -svu -wgs -oZt -qvo -gCR -fZF -oZt -qvo -gCR -ojD -oWH -wEQ -tfb +jqH +rrO +jhv +foR +kbj +psO +lOl +qDg +kbj +psO +lOl +qDg +kbj +qbb +lWk +foR +kbj +psO +lOl +qDg +kbj +psO +lOl +kiz +jhv +jqH +rrO aQg aQV aSY @@ -57074,64 +57074,64 @@ aQg aQV aQV aQV -sjn -snT -snT -vIK -snT -snT -snT -nhf +hhU +iFD +iFD +pcF +iFD +iFD +iFD +iVv bkn bkS bly -snT -snT -vIK -snT -snT -snT -nhf -snT -ilW -nPs -rLd -lPo -vmE -rLd +iFD +iFD +pcF +iFD +iFD +iFD +iVv +iFD +sJd +tRv +qKv +ovt +fDx +qKv bhu -pLX -pLX -sPG -sPG -sPG -sPG -nRN -oHs -xgc -mai -diE +ojq +ojq +mtk +mtk +mtk +mtk +mOU +kZe +bds +teB +yap bMw -gnt -fLE -fLE -qDv -fLE -tWe -fLE -moR +rnH +fmS +fmS +vvm +fmS +cfU +fmS +lmP cGm cEs -fSy -bBA -stN +wMo +mEW +ndU aLX dTs arF -tAB -rTD -pzx -pwn +izg +gxh +hHM +iGZ ebZ aPY aQC @@ -57141,74 +57141,74 @@ aSV aSu ylk xcG -ilB +nNo aQt aQt aQt aQQ -gqt -ybq -ybq -ybq -ybq -csd -vnS -neQ +qMC +wfU +wfU +wfU +wfU +oee +sRq +qVZ bnF -oEw -mFI -nyF -jKJ +knG +wbI +yjY +nxy aVw -tul -hMa -hMa -hMa -nKj -rHn +iwd +jTf +jTf +jTf +qpO +nak bGB -fXH +uhL bNE bNF bPH bNF bNE -ueV -oKD -ikc -tel -tel -iQJ -uhB +iKE +eTR +nvV +nJg +nJg +eEE +gBw bNE -odp -odp -fGB +xRQ +xRQ +hJr bNE dTs dTs -lCa -psU +hLr +fJA aSK -ipO -ipO -uIU -xyg -spv -spv -ujm -vnM -vTK +kFf +kFf +dFC +kWW +njY +njY +ieB +vAw +pVj ceA -kSJ +eyN kzQ aUh ceA ceA -kSJ +eyN cxt -hbZ -lYh +tRV +fze dlb cMJ cMJ @@ -57220,39 +57220,39 @@ crx dFo doE doE -qqG -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -vqU -mdW -vJF -mQN +cMA +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +kPN +jne +mub +uvC dws dws -syQ -stI -gCh -scF -qBc +fJx +jNJ +vrN +rlR +lCc dTs dTs dTs @@ -57262,22 +57262,22 @@ acu acu tZQ aad -idf -dhE -dhE -eSB -jEv -jEv -xfv +xnW +ejk +ejk +mxc +rvo +rvo +fcm aSx aQV aQV aUi -wEQ -kjM -jeh +jqH +gXx +uoX aWh -fYY +hgp aWh aWh aWh @@ -57286,7 +57286,7 @@ aWh aWh aWh aWh -fYY +hgp aWh aWh aWh @@ -57295,11 +57295,11 @@ aWh aWh aWh aWh -fYY +hgp aWh -nVH +uqL aVi -tfb +rrO aQg aQV aSY @@ -57308,64 +57308,64 @@ aQg aQV aQV aQV -sjn -snT -snT -snT -snT -snT -snT -snT -nhf +hhU +iFD +iFD +iFD +iFD +iFD +iFD +iFD +iVv bjk blx -snT -snT -snT -snT -snT -snT -snT -snT -ilW -nPs -rLd -lPo -vmE -lOy +iFD +iFD +iFD +iFD +iFD +iFD +iFD +iFD +sJd +tRv +qKv +ovt +fDx +oWI bhu -vKS -pLX -pLX -pLX -pLX -hHi -nRN -vfH -xgc -mai -wuQ +jKL +ojq +ojq +ojq +ojq +bBE +mOU +kqL +bds +teB +ltb byo -vdt -fLE -fLE -fLE -liI -fLE -fLE -moR +ldD +fmS +fmS +fmS +qAw +fmS +fmS +lmP cGn cEt -qDg -bBA -stN +efj +mEW +ndU aLX dTs arF -kBd -qUs -pwn -pwn +eOk +nkd +iGZ +iGZ pGF aPY cvr @@ -57375,45 +57375,45 @@ aTP aUM aWf aXd -ilB +nNo aSK aQQ aQt -uIU -sfq +dFC +fCp aoj -wgG -qkR -qkR -eVZ -tRW -tRW +vBc +tVj +tVj +qxY +htW +htW bnG -xnL -mFI -nyF -qod +pzR +wbI +yjY +jRP aWK aWK aWK aWK aWK aWK -rHn +nak bGB -iGe +sHe bNE -naU +eRZ bOD -laC +kMJ bNE -hpC -oKD -kIy -gfQ -xeX -xeX -wyn +iQT +eTR +oOg +ngY +inZ +inZ +jDK bNE bNE bNE @@ -57421,32 +57421,32 @@ bNE bNE dTs dTs -iSI -vZX +vBd +low cdk -iQZ -eRi -iNy -wLz -vuo -xUz -xUz -nFU -vTK +rQc +koM +roP +wgY +cXP +wrW +wrW +jBW +pVj ceA -kSJ +eyN kzQ ceA ceA -gss -fcT +nGA +tCl cxt -wLQ -eWT -qhE -scP -xdr -oHQ +njZ +vhj +hhF +tkf +fde +bkQ cUo crx crx @@ -57454,7 +57454,7 @@ crx cEa crw crw -jzF +wma djl djl djl @@ -57479,14 +57479,14 @@ djl djl djl djl -jZt +klG dws dws -syQ -scF -uCx -fgz -vTC +fJx +rlR +doA +fDr +qIO dTs dTs dTs @@ -57494,22 +57494,22 @@ acu "} (31,1,1) = {" acu -fFT -vRd -fFT -fFT -fFT -kPb -lSh -lSh -lSh -paF +pGp +vqM +pGp +pGp +pGp +dzp +vpr +vpr +vpr +pFU aSY aQg -jRf -lSh -kZt -uau +mXe +vpr +bIO +oYN aWh aWh aWh @@ -57531,9 +57531,9 @@ aWh aWh aWh aWh -oiV +mwe aVi -tfb +rrO aQg aQV aQV @@ -57541,32 +57541,32 @@ aQV aQV aQV aSY -oPs +tmB bhu -eLv -veE -veE -veE -veE -veE -veE -veE -veE -eLv -veE -veE -veE -veE -veE -veE -veE -veE -eLv -pwt -rLd -lPo -vmE -mKM +sMo +imG +imG +imG +imG +imG +imG +imG +imG +sMo +imG +imG +imG +imG +imG +imG +imG +imG +sMo +kZj +qKv +ovt +fDx +uWc bhu byo bMw @@ -57575,8 +57575,8 @@ bMw bMw byo bMw -oHs -aIz +kZe +qDv bMw byo byo @@ -57585,22 +57585,22 @@ bRj bRj bMb bMb -xYt -fLE -hIC +naF +fmS +jJF cGn cEt -fGf -bBA -stN +iVb +mEW +ndU aLX dTs arF -tMj -uhU -oUI -tBQ -lIE +knQ +mXc +eyA +rso +qAM aLY aOe aOe @@ -57609,31 +57609,31 @@ aPQ cvr cvr aXd -ryO +tXM aQQ aQQ aSK -uIU -sfq +dFC +fCp act -oNP -qkR -qkR -muj -uLz -tRW -gtG -xeW -mFI -xeW -qod +veV +tVj +tVj +wku +xdK +htW +hrm +lYX +wbI +lYX +jRP aWK -nXi -qOY -tgS -iqR +vvA +qPC +uoc +jVQ aWK -rHn +nak bGD bsT bNG @@ -57641,45 +57641,45 @@ bOG bOG bOG bNG -nqI -fwd -eXA -xeX -xeX -xeX -ueW -nRF -nRF -nRF -fUQ +pSh +foH +jMP +inZ +inZ +inZ +kjR +qFn +qFn +qFn +rpH bNE dTs -sJe -xrg -vZX -xKS +ife +dOb +low +eIL ceA -mEA -lCa +iBP +hLr yeL yeL yeL dTs dTs mKs -iSI -kSJ +vBd +eyN kzQ ceA -gss -fcT +nGA +tCl cxP cxQ doE doE doE -hbZ -vLn +tRV +viP cuO cuM crx @@ -57688,39 +57688,39 @@ crx crx crx crx -sxI +mWq dws dws -sxI +mWq dws dws -sxI -wdE -wdE -sxI +mWq +uKQ +uKQ +mWq dws dws -sxI -wdE -wdE -lbI +mWq +uKQ +uKQ +vmp dws dws -sxI +mWq dws dws -sxI +mWq dws dws -sxI +mWq dws -imm -tsl -syQ -fgz -xtJ -mBa -vTC +mvx +vmU +fJx +fDr +xXw +puy +qIO dTs dTs dTs @@ -57743,7 +57743,7 @@ aQV beT aQV aUi -rCR +fqr aWh aWh aWh @@ -57765,9 +57765,9 @@ aWh aWh aWh aWh -nlz -kjM -qHj +jpj +gXx +fbk aQg aQV aQV @@ -57775,58 +57775,58 @@ aQV aQV aQV aSY -tuS +nwC bKM -rLd -rLd -tLv -rLd -ppD +qKv +qKv +xXD +qKv +mbP bhu -rLd -rLd -tLv -rLd -rLd -tLv -rLd -rLd -tLv -rLd -ppD +qKv +qKv +xXD +qKv +qKv +xXD +qKv +qKv +xXD +qKv +mbP bhu -rLd -rLd -vsr -lPo -vmE -jKu +qKv +qKv +jiY +ovt +fDx +kFj bKM -sbD -pLg -pLg -pLg -pLg -sbD -pLg -oLN -guN -pLg -pLg -sbD -pLg -pLg -pLg -pLg +oTf +tMa +tMa +tMa +tMa +oTf +tMa +mQd +sJQ +tMa +tMa +oTf +tMa +tMa +tMa +tMa bRj -fLE -fLE -moR +fmS +fmS +lmP bSS cEt cEt -kTS -stN +tKO +ndU aLX dTs arF @@ -57837,37 +57837,37 @@ arF arF dTs dTs -mvE -fiY +iJc +epD aUA aSu aSu aPR -ryO +tXM aSK aQt aQt -uIU -sfq +dFC +fCp aoj -soQ -qkR -qkR -oCj -tRW -tRW +jRS +tVj +tVj +pEI +htW +htW bnG -vfx -uXK -xeW -qod +ndo +fNU +lYX +jRP aWK -fIU -nXi -nXi -nXi -leN -nux +qHK +vvA +vvA +vvA +pIk +wsP bGE bJa bNH @@ -57875,26 +57875,26 @@ bOI bOD bOD bNH -xeX -oKD -yce -xeX -xeX -xeX -xeX -rnV -xeX -xeX -rvK +inZ +eTR +gou +inZ +inZ +inZ +inZ +iFd +inZ +inZ +qkQ bNE dTs -sJe -xrg -vZX -xKS +ife +dOb +low +eIL aUh -rcA -lmc +ngE +gMm dTs dTs dTs @@ -57903,17 +57903,17 @@ dTs dTs dTs dTs -vcU -iSI -kSJ -xID +xPz +vBd +eyN +jap cxQ doE drL drO crv -hbZ -vLn +tRV +viP doE cuM crx @@ -57922,39 +57922,39 @@ crx crx crx crx -iva +orP dws dws -iva +orP dws dws -iva +orP dws -wdE -qcF -wdE -wdE -qcF -wdE +uKQ +kJt +uKQ +uKQ +kJt +uKQ dws -iva +orP dws dws -iva +orP dws dws -iva +orP dws dws -iva +orP dws dws dws -syQ -scF -fgz -fgz -vTC +fJx +rlR +fDr +fDr +qIO dTs dTs dTs @@ -57977,7 +57977,7 @@ aQV beT aQV aUi -okp +mCs aWh aWh aWh @@ -58009,58 +58009,58 @@ aQV aQV aQV aSY -tuS -gBc -vmE -vmE -ljq -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -jnF -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -lPo -vmE -vmE -caV -qND -qND -krO -krO -krO -qND -qND +nwC +xsF +fDx +fDx +kkD +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +xnf +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +ovt +fDx +fDx +kUB +tzc +tzc +hzF +hzF +hzF +tzc +tzc ccG bBm -qND -qND -krO -vrV -krO -krO -krO -fQD -mxY -mxY +tzc +tzc +hzF +ntt +hzF +hzF +hzF +xmL +vdE +vdE cEt cGm cEt cEs -cyK -stN +qYL +ndU aLX dTs dTs @@ -58072,62 +58072,62 @@ dTs dTs dTs dTs -fiY +epD aUA aUB aWC aXd -ryO +tXM aQt aSK aSK aSK -xHr -iZl -qkR -fWs -qkR -wet -nwZ -fLs +xMp +jsz +tVj +ctU +tVj +scr +eEk +ftx bnF -nLP -mFI -nyF -qod +gCv +wbI +yjY +jRP aWK -fIU -uYh -nXi -nXi +qHK +sgX +vvA +vvA aWK -nux +wsP bGE -hVo +thR bNF -wKW -wKW -wKW +eYn +eYn +eYn bNF -iPd -oKD -eLm -lfp -rTR -xeX -fFK -gcA -iPd -oKD -wyn +ibm +eTR +vPh +kYr +tkO +inZ +nhl +pQR +ibm +eTR +jDK bNE dTs dTs -ves -vZX -xKS +saf +low +eIL ceA -rcw +cmn dTs dTs dTs @@ -58139,15 +58139,15 @@ dTs dTs dTs dTs -kSJ -qAM -mTx +eyN +gDT +ibn doE dsE uTo drO -hbZ -vLn +tRV +viP doE cAV cuJ @@ -58156,18 +58156,18 @@ cuJ cuJ cuJ cuJ -ezb -vDi +frY +sMk djk djk djk djk djk djk -rqG +pEc dws -wdE -cYn +uKQ +mPO djk djk djk @@ -58178,16 +58178,16 @@ djk djk djk djk -wlz -ezb -ezb -ezb -ezb -ezb -dVa -fgz -fgz -fgz +rff +frY +frY +frY +frY +frY +kwU +fDr +fDr +fDr dTs dTs dTs @@ -58196,22 +58196,22 @@ acu "} (34,1,1) = {" acu -vkB -vkB -vkB -vkB -vkB -vkB -vkB -vkB -qNY -nZo +mOu +mOu +mOu +mOu +mOu +mOu +mOu +mOu +lLU +tro aSY aQg beT aQV aUi -qBb +wuU aWh aWh aWh @@ -58243,59 +58243,59 @@ aQV aQg aQV aSY -tuS -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -vmE -twe -jzJ -jzJ -jzJ -nte -rUO +nwC +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +fDx +mUd +kBZ +kBZ +kBZ +oDn +ngL bTF bVZ -rUO -rUO -rUO -jTN +ngL +ngL +ngL +kyb bCg bVZ -rUO -rUO +ngL +ngL bMd bCg -nte -nte -xpc -xpc -xpc -xpc -lEV -oEo +oDn +oDn +rkA +rkA +rkA +rkA +gOG +qap cHD -cyK -stN -hOw +qYL +ndU +jwC bXQ bXQ bXQ @@ -58306,63 +58306,63 @@ bXQ bXQ dTs dTs -fiY +epD aUx aWe aWD aYa -aVx +lNl bah bah bbA bah -jXp -wEk -wEk -ifV -ifV -dWv -kog -kog -lnh -bks -qKY -hVi -qod +wlW +mgB +mgB +rre +rre +lxz +vWk +vWk +pAI +gYE +lPU +xBS +jRP aWK -fIU -nXi -nXi -ggJ +qHK +vvA +vvA +oIh aWK -sLg +fQt bGE -fXH +uhL bNE bNF -fkW +wXR bNF bNE bNF -jSG +fvR bNF bNE bNF -oBi +lGY bNF bNE bNF -uDO +tYG bNF bNE dTs dTs dTs -hbZ -vLn +tRV +viP doE -naT -tQs +rHy +sZX dTs dTs dTs @@ -58375,20 +58375,20 @@ dTs dTs dTs dTs -xaG +qmL czv dsE uTo drN -hbZ -vLn +tRV +viP doE doE doE doE doE doE -fif +sRy dTs dTs bvA @@ -58398,29 +58398,29 @@ cNo cNo bvA cGN -oUm -oUm -vJE -oUm +nLk +nLk +rgi +nLk cNo -fGj -dni +muM +sfG cNo bvA -ofF -uvt -hnf -hnf -uWH -uyc -vTl -fgz -fgz -fgz -fgz -fgz -fgz -fgz +jYh +rTR +xfA +xfA +gFd +qxT +sEy +fDr +fDr +fDr +fDr +fDr +fDr +fDr dTs dTs dTs @@ -58433,19 +58433,19 @@ acu tZQ tZQ dTs -srE -oou -dhE -dhE -qqY -tCt +fpw +rrk +ejk +ejk +yel +iLc aSx aQV aQV aQV aQV aUi -uau +oYN aWh aWh aWh @@ -58477,59 +58477,59 @@ aQV aQg aQV aSY -tuS +nwC bKM -rLd -rLd -nrF -rLd -ppD +qKv +qKv +tFy +qKv +mbP bhu -rLd -rLd -nrF -rLd -rLd -nrF -rLd -udK -lux -rLd -ppD +qKv +qKv +tFy +qKv +qKv +tFy +qKv +jLp +eTc +qKv +mbP bhu -hDn -rLd -hOC -lPo -vmE -uuF +sfI +qKv +gUS +ovt +fDx +oaH bKM -xxw -pLg -lkl -guN -pLg -pLg -pLg -pLg +xLa +tMa +tqU +sJQ +tMa +tMa +tMa +tMa bHR bCh -pLg -pLg +tMa +tMa bHR bCh -pLg -pLg +tMa +tMa bRj -fLE -skf -fHo -fHo -qXW -ntx -odv -dAx -eDi +fmS +hUT +wUW +wUW +ihX +hjD +rSv +rKu +exV bXR bYx bYX @@ -58545,59 +58545,59 @@ aUA aSu cvr aPR -gny +bmO bam -iQZ +rQc bbE -mOV -lCa +xBA +hLr aoj -wgG -qkR -qkR -fWs -fWs -qkR -xeW -xeW -xXs -nyF -xgF +vBc +tVj +tVj +ctU +ctU +tVj +lYX +lYX +iLt +yjY +npY aWK -naX -nXi -rww -ggJ +hXK +vvA +qWe +oIh aWK -rHn +nak bGE -fXH +uhL bNF -iZh -hpB -tvc +tOl +eEB +qLJ bNE -oYf -jZe -fJo +hYF +hup +sLm bNE -oYf -jZe -fJo +hYF +hup +sLm bNE -oYf -hHa -fJo +hYF +qnX +sLm bNE dTs dTs -lKu -uoP -vLn +xWT +ggO +viP doE doE -naT -tQs +rHy +sZX dTs dTs dTs @@ -58609,52 +58609,52 @@ dTs dTs dTs dTs -xmF +qAO cxT duc drN cDc -hbZ -vLn +tRV +viP doE cSR doE doE doE -fif +sRy dTs dTs dTs bvA -loB -mNl -fhP -iPf +jbb +pDE +uOc +iio cNo -ncL +nBL cLQ cLG cLI cLH -itK -fGj -fGj -hzo +ksW +muM +muM +kdg bvA cDY -ocM -hnf -hnf -hdU -xUF -lom -fgz -fgz -fgz -fgz -fgz +uZU +xfA +xfA +nfh +gxO +qnL +fDr +fDr +fDr +fDr +fDr dTs -fgz +fDr dTs dTs dTs @@ -58668,18 +58668,18 @@ dTs dTs dTs dTs -uGj -oou -dhE -dhE -qZs +sBY +rrk +ejk +ejk +mJB aSx aQV aQV beT aQV aUi -rCR +fqr aWh aWh aWh @@ -58711,63 +58711,63 @@ aQV aQV aQV aSY -hek +nbZ bhu -cZA -wsO -wsO -wsO -wsO -wsO -wsO -wsO -wsO -cZA -wsO -wsO -wsO -wTx -ifH -wsO -wsO -wsO -cZA -slk -rLd -lPo -vmE -xAm +fPN +gXT +gXT +gXT +gXT +gXT +gXT +gXT +gXT +fPN +gXT +gXT +gXT +qTm +pSn +gXT +gXT +gXT +fPN +ecP +qKv +ovt +fDx +xWS bhu bzu -xre -lWl -guN -qGJ +xci +jzd +sJQ +dll bzu bFL -vRI -lmN -mZx -vRI -vRI -lmN -mZx -vRI -wPT +iQK +rAp +wNi +iQK +iQK +rAp +wNi +iQK +rGD bOP dTs dTs -jXa -uCy -vly -jau -qDg -pfw -fLE +ifq +iUn +bqT +jZj +efj +uAM +fmS bXS bYy bYY -tjd +iHi ccy cbe cbO @@ -58779,59 +58779,59 @@ aUA aUM aWE aPR -dHZ +lmk ceA ceA -vZX -xKS +low +eIL ceA act -gkC -xdR -xdR -xdR -xdR -tOv +hQS +tDJ +tDJ +tDJ +tDJ +kcY bnG -vfx -xXs -nyF -xgF +ndo +iLt +yjY +npY aWK aWK bwQ aWK aWK aWK -rHn +nak bGE -sZP +eqw bNF -hfo -osi -osi +kSl +iNE +iNE bNE -qFx -hHa -qFx +jPb +qnX +jPb bNE -qFx -hHa -qFx +jPb +qnX +jPb bNE -qFx -hHa -qFx +jPb +qnX +jPb bNE dTs dTs -nXE -uwH -vLn +juH +jMM +viP doE cNQ doE -oRB +uBy dTs dTs dTs @@ -58843,49 +58843,49 @@ dTs dTs dTs dTs -xaG +qmL doE doE cyQ doE -hbZ -vLn +tRV +viP doE doE doE doE doE -oRB +uBy dTs dTs dTs bvA -mDY +oMx cmP cmS cmS cqH -ncL +nBL cLQ cLI cLK cLO -itK -fGj -fGj -pvH +ksW +muM +muM +ttj bvA cDY -kii -hnf -hnf -xhU -xUF -lom -fgz -fgz -fgz -fgz +vlJ +xfA +xfA +mTy +gxO +qnL +fDr +fDr +fDr +fDr dTs dTs dTs @@ -58903,17 +58903,17 @@ dTs dTs dTs dTs -sRa -dhE -dhE -qZs +hLk +ejk +ejk +mJB aSx aSY aQg beT aQV aUi -okp +mCs aWh aWh aWh @@ -58946,39 +58946,39 @@ aQV aQV aQV aQV -oQi -snT -snT -snT -snT -snT -snT -vIK -vIK -snT -snT -snT -snT -snT -snT -snT -snT -snT -snT -ilW -nPs -rLd -lPo -vmE -ofU +vJZ +iFD +iFD +iFD +iFD +iFD +iFD +pcF +pcF +iFD +iFD +iFD +iFD +iFD +iFD +iFD +iFD +iFD +iFD +sJd +tRv +qKv +ovt +fDx +gMl bhu -kcU -pLg -lWl -guN -pLg -pLg -mRj +dTw +tMa +jzd +sJQ +tMa +tMa +uOQ bGU bzA bzA @@ -58987,25 +58987,25 @@ bGU bzA bzA bKq -nSw +siC bOP dTs dTs dTs -oDU -vly -gCX -fGf -pfw -fLE +jLz +bqT +eWq +iVb +uAM +fmS bXS -jPT -gJo -gJo -gJo -ghj -gou -kCt +fhg +wuY +wuY +wuY +nzI +pZQ +hhi bXQ dTs dTs @@ -59013,11 +59013,11 @@ aUA aSu aSu aPR -dHZ +lmk aPu ceA -vZX -xKS +low +eIL ceA awM awM @@ -59027,22 +59027,22 @@ aVB aVB awM awM -rTe -fZG -nyF -wId +kyT +woH +yjY +hHI aYd -rQT +gOb brY -lUi -lXT +iiY +plw aYd -pQT +oqP bGH -scL +jNC bNE bNF -mDm +kWI bNF bNE bTl @@ -59059,14 +59059,14 @@ bTl bNE dTs cxt -rJj -uwH -vLn +nee +jMM +viP doE doE doE -naT -tQs +rHy +sZX dTs dTs dTs @@ -59082,8 +59082,8 @@ aee aee aee doE -hbZ -vLn +tRV +viP doE aee aee @@ -59094,31 +59094,31 @@ dTs dTs dTs bvA -oKW +rHV cmS cnV cmS cNo -ncL +nBL cLQ cLI cLI cLO -oXX -fGj -fGj -sBw +eLc +muM +muM +oht aMI -fhS -kii -hnf -hnf -ouC -xlO -lom -fgz -fgz -fgz +xfC +vlJ +xfA +xfA +lbU +iWM +qnL +fDr +fDr +fDr dTs dTs dTs @@ -59137,17 +59137,17 @@ dTs dTs dTs dTs -uGj -oou -dhE -qZs +sBY +rrk +ejk +mJB aSx aQV aQV beT aQV aUi -qBb +wuU aWh aWh aWh @@ -59169,9 +59169,9 @@ aWh aWh aWh aWh -nVH -fcw -vvc +uqL +ffF +jbH aQg aQV aQV @@ -59180,39 +59180,39 @@ aQV aQV aQV aQV -snO -snT -snT -snT -snT -snT -uqi -snT -snT -snT -snT -vIK -snT -snT -snT -snT -snT -snT -snT -ilW -nPs -rLd -lPo -vmE -jHV +hXN +iFD +iFD +iFD +iFD +iFD +xyL +iFD +iFD +iFD +iFD +pcF +iFD +iFD +iFD +iFD +iFD +iFD +iFD +sJd +tRv +qKv +ovt +fDx +wQO bhu -dZK -pLg -lWl +nzh +tMa +jzd bBm -qND -eoF -vVx +tzc +igz +djT bGV bzB bzB @@ -59221,25 +59221,25 @@ bGV bzB bzB bKr -nSw +siC bOP dTs dTs dTs -rUu -vly -gCX -fGf -pfw -liI +fba +bqT +eWq +iVb +uAM +qAw bXS -iLB -vwL -vwL -gAY -gAY -gAY -sZC +knf +ful +ful +jcm +jcm +jcm +xdk bXQ dTs dTs @@ -59247,67 +59247,67 @@ aUA aSu aSu aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA ceA aVB aXE aZJ -uAZ +bBT bjI -sjx +tgd aVB -xnL -fZG -nyF -xgF +pzR +woH +yjY +npY bbo -rQT +gOb bwR brY -nps +kIc aYd -rHn +nak bGE -tcV -uKB -uKB -uKB -tKN +odB +pHt +pHt +pHt +iPA bsp -kIf +rRJ btX -lhx -vZQ -kIf +eZV +nwI +rRJ btX -lhx -vZQ -kIf +eZV +nwI +rRJ btX -fXH +uhL bsp -lKu -fMS -qJT -uwH -vLn +xWT +cLZ +pMC +jMM +viP doE doE doE doE -naT -uQc -uQc +rHy +wKf +wKf dTs dTs dTs dTs -uQc +wKf dTs dTs aee @@ -59316,8 +59316,8 @@ doE aee doE doE -hbZ -vLn +tRV +viP doE doE aee @@ -59333,15 +59333,15 @@ bvA bvA bvA bvA -uKY +bch cLQ cKM cLK cLO -gNl -fGj -fGj -nvE +jZp +muM +muM +eUb bvA bvA ddJ @@ -59350,8 +59350,8 @@ bvA ddJ bvA bvA -fgz -fgz +fDr +fDr dTs dTs dTs @@ -59372,16 +59372,16 @@ dTs dTs dTs dTs -sRa -qsz -qZs +hLk +vYB +mJB aSx aQV aQV -dMy -yaQ -iaD -uau +gZx +oQr +xeb +oYN aWh aWh aWh @@ -59403,9 +59403,9 @@ aWh aWh aWh aWh -oiV +mwe aVi -tfb +rrO aQg aQV aSY @@ -59414,39 +59414,39 @@ aQg aQV aQV aQV -raH -snT -vIK -snT -vIK -vIK -snT -snT -snT -vIK -vIK -snT -vIK -vIK -snT -snT -snT -snT -snT -ilW -nPs -vsr -lPo -vmE -vBI +sue +iFD +pcF +iFD +pcF +pcF +iFD +iFD +iFD +pcF +pcF +iFD +pcF +pcF +iFD +iFD +iFD +iFD +iFD +sJd +tRv +jiY +ovt +fDx +jPP bhu -kXV -pLg -lWl +jTi +tMa +jzd bBm -pOX +rTc bEh -itM +uOa bGV bzB bzB @@ -59455,37 +59455,37 @@ bGV bzB bzB bKr -nSw +siC bOQ bOQ bOQ bOQ bOQ bRj -gCX -nEi +eWq +uRw bRj bMb bXS -eEn -vwL -gAY -dVW -mOR -sSF -twJ +hBx +ful +jcm +lgJ +qUh +xLZ +hcK bXQ dTs -phm +noh aUA aUB aWf aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA ceA aVB @@ -59494,67 +59494,67 @@ aZK bdM aZL aXM -txo -xeW -xXs -nyF -hKy +gpH +lYX +iLt +yjY +eRK bbo -wfr +evs bza brY -nyZ +qAR aYd -rHn -uwt -heS -uKB -uKB -heS +nak +eSI +kUv +pHt +pHt +kUv bJa bLN btX -mVm -uKB -heS -uKB -rZw -tKN -hQc -uKB -heS -fXH +gLL +pHt +kUv +pHt +khZ +iPA +blo +pHt +kUv +uhL bLN -lKu -fCw -wde +xWT +qoD +rIU cZb cGH -oKV -oKV -oKV -oKV -mcH -mcH -mcH -lAN +hyD +hyD +hyD +hyD +uQy +uQy +uQy +hAm cIi cRM cTu cuz -naT -uQc -vkl +rHy +wKf +lUq doE -xDm -oKV -oKV -oKV +svz +hyD +hyD +hyD cBU cGH -oKV -oKV -xJz +hyD +hyD +lWA doE dTs dTs @@ -59564,25 +59564,25 @@ dTs dTs dTs bvA -kff +jqL coC coC -ncL +nBL cLQ cLI cLI cLO -oXX -hdT -fGj -hzo -lYw -vyX +eLc +jFs +muM +kdg +nXd +sMu ddK -lvx -eiW -tmL -wbM +vdQ +wuh +kFu +tKM bvA dTs dTs @@ -59606,18 +59606,18 @@ dTs dTs dTs dTs -uGj -oou -qZs +sBY +rrk +mJB aSx aSY aQg aUi -wEQ -fcw -ojG +jqH +ffF +gHq aWh -fYY +hgp aWh aWh aWh @@ -59626,7 +59626,7 @@ aWh aWh aWh aWh -fYY +hgp aWh aWh aWh @@ -59635,11 +59635,11 @@ aWh aWh aWh aWh -fYY +hgp aWh -nlz +jpj aVi -tfb +rrO aQg aQV aSY @@ -59648,39 +59648,39 @@ aQg aQV aQV aQV -raH -dfd -snT -vIK -dfd -snT -snT -dfd -snT -snT -dfd -snT -snT -qQo -uqi -vIK -qQo -snT -snT -mfR -nPs -rLd -lPo -vmE -sdr +sue +jVF +iFD +pcF +jVF +iFD +iFD +jVF +iFD +iFD +jVF +iFD +iFD +mWA +xyL +pcF +mWA +iFD +iFD +vHm +tRv +qKv +ovt +fDx +weD bhu -mqK -pLg -lWl -guN -pLg -pLg -mRj +xEY +tMa +jzd +sJQ +tMa +tMa +uOQ bGV bzB bzB @@ -59689,85 +59689,85 @@ bGV bzB bzB bKr -boo +ygu bOR -rmB -eIT -tUM +egR +aDW +szG bOR -svh -iCu -tUY -svh -ncI +mOy +ghy +wMZ +mOy +yaO bXS bXS -jsm -nUB +mpg +vfE bXS bTu bTu bTu bXQ dTs -phm +noh aUA aSu aSu aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA ceA aVB -tzd +fCP aZL -jjv +qkE bjR aXM aVB -vfx -xXs -xeW -xeW -mgJ +ndo +iLt +lYX +lYX +ygy brY bzb brY -aDj +hZg aYd -rHn -onz -jrO -okR -okR -jrO +nak +pNg +vVT +roD +roD +vVT bsT bsT bsT -eTQ -tJE -wMP -tJE -tJE -tJE -npq -tJE -vub -hhy +cXV +nqn +sli +nqn +nqn +nqn +whd +nqn +tcr +tXz btX -lKu -fCw -iAg -eWT -eWT -eWT -eWT -eWT -ikr +xWT +qoD +lxw +vhj +vhj +vhj +vhj +vhj +eAR cIi cRM cRM @@ -59780,15 +59780,15 @@ doE doE doE doE -hbZ +tRV cGx -eWT -eWT -eWT -eWT -eWT +vhj +vhj +vhj +vhj +vhj cIv -vLn +viP doE dTs dTs @@ -59798,25 +59798,25 @@ dTs dTs dTs bvA -ria +uop coW coW -ncL +nBL cLQ cLI cLI cLO -itK -hdT -fGj -hzo -exj -rbE +ksW +jFs +muM +kdg +wMq +tUv ddL -lvx -wAq -tmL -xAE +vdQ +cVg +kFu +qgm bvA dTs dTs @@ -59839,41 +59839,41 @@ dTs dTs dTs dTs -lSd -lSd -sRa -qZs +oZs +oZs +hLk +mJB aSx aQV aQV aUi -wEQ -tfb -oWH -oom -lBb -uGu -kWe -hro -lBb -uGu -kWe -hro -lBb -ovz -wzU -oom -lBb -uGu -kWe -hro -lBb -uGu -kWe -opO -oWH -wEQ -tfb +jqH +rrO +jhv +uvY +mKx +rkj +oaF +tly +mKx +rkj +oaF +tly +mKx +kSI +hJy +uvY +mKx +rkj +oaF +tly +mKx +rkj +oaF +kVQ +jhv +jqH +rrO aQg aQV aQV @@ -59882,39 +59882,39 @@ aQV aQV aQV aQV -raH -rLd -snT -vIK -snT -snT -snT -iqC -vIK -snT -vIK -snT -snT -snT -snT -vIK -uqi -vIK -snT -ilW -pJl -kKK -lGJ -vmE -lOy +sue +qKv +iFD +pcF +iFD +iFD +iFD +mvU +pcF +iFD +pcF +iFD +iFD +iFD +iFD +pcF +xyL +pcF +iFD +sJd +rhq +tMS +pEF +fDx +oWI bhu bzu -pLg +tMa bHR bCh -qGJ +dll bzu -mRj +uOQ bGV bHS bHS @@ -59923,37 +59923,37 @@ bGW bHS bHS bKr -nSw +siC bRk -xHd -rAt -obf +mIl +uZw +paW bRk -xQa +wCr bUp cOp -qoD -qjK -nUX -ncI -nwo -cfO -svh -qjK -svh -svh -ncI -svh -uqE +goa +bOg +wGx +yaO +scd +wMa +mOy +bOg +mOy +mOy +yaO +mOy +tqE cfl aSu cvr aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA ceA aVB @@ -59961,47 +59961,47 @@ aXV aZL bdU aZL -fnr +phy awM -oaJ -tGz -nyF -rlI +sGh +tqO +yjY +sGH bbo -eca +plU brY brY -sUl +gGo aYd -sLg -hYn -sZP -qbr -noH -pPl -pPl +fQt +kkr +eqw +sqC +pMZ +kZH +kZH bsp -nvh +lRO bNe -hVo -pPl -pPl -noH -pPl -oZi -eDo +thR +kZH +kZH +pMZ +kZH +sZW +mQV bGz -fXH +uhL bsp -lKu -loK -wjs -fif -mTx +xWT +pNh +gND +sRy +ibn doE doE doE -wak +eps cUl crx crx @@ -60014,15 +60014,15 @@ doE doE doE doE -xTQ -rSF +uVs +owU doE doE doE doE doE -hbZ -vLn +tRV +viP doE dTs dTs @@ -60032,25 +60032,25 @@ dTs dTs dTs bvA -gkd +paD coY coY -ncL +nBL cLQ cLI cLG cLH -itK -hdT -fGj -hzo -lYw -eoS +ksW +jFs +muM +kdg +nXd +mIq ddL -lvx -eJp -tmL -xAE +vdQ +frx +kFu +qgm bvA dTs dTs @@ -60072,42 +60072,42 @@ dTs dTs dTs dTs -lSd -lSd -tya -idf -qZs +oZs +oZs +fet +xnW +mJB aSx aQV aQV aUi -rsE -kjM -gqM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -gqM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -kjM -gqM -kjM -qHj +nJo +gXx +gjj +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gjj +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gXx +gjj +gXx +fbk aQg aQV aQV @@ -60116,39 +60116,39 @@ aQV aQV aQV akU -raH -tiY -snT -snT -eKa -snT -snT -tiY -snT -uqi -eKa -snT -vIK -tiY -snT -vIK -tiY -snT -snT -uuA -pJl -qrc -euY -hXF -liZ +sue +tNp +iFD +iFD +asi +iFD +iFD +tNp +iFD +xyL +asi +iFD +pcF +tNp +iFD +pcF +tNp +iFD +iFD +bMR +rhq +oMq +sFW +prs +vfF bhu -vRI -vRI +iQK +iQK bFN bJg -vRI -vRI -rPn +iQK +iQK +tSU bGV bzB bzB @@ -60157,37 +60157,37 @@ bzB bzB bzB bKr -nSw +siC bRk -oxR -ubo -dDc -rtu +jhx +sqK +tTN +wOO bTH cHG cOq cUW -sJB -sJB -sJB +sxT +sxT +sxT cOq dCz -xQa -sfv -sfv -sfv -xQa -lZe -whL +wCr +frl +frl +frl +wCr +mpr +nTy cfl bkk aWE aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA awM awM @@ -60197,20 +60197,20 @@ awM awM awM awM -rTe -tGz -nyF -qod +kyT +tqO +yjY +jRP aYd -iem +fgV bzc -out -hNn +hiG +fmL aYd -rHn -pjw -sZP -sZP +nak +wLU +eqw +eqw bJU bJV bJV @@ -60230,12 +60230,12 @@ bBL bBL dTs cwG -oRB -vUJ -mTx +uBy +meA +ibn doE doE -wak +eps cUl crx crx @@ -60248,15 +60248,15 @@ cMF doE cJd cJd -xzk -edv +krg +cIj cJd cJd doE doE doE -hbZ -vLn +tRV +viP dTs dTs dTs @@ -60266,25 +60266,25 @@ dTs dTs dTs bvA -mDt -mKn +gsL +lkz cmS -ncL +nBL cMd cLc cOc cQk -jir -hdT -fGj -hzo -hir -uDF -uDF -qzA -ogD -ogD -uDF +mzj +jFs +muM +kdg +tIU +sqv +sqv +uru +nUU +nUU +sqv bvA dTs dTs @@ -60310,38 +60310,38 @@ aOc aOc aOc aOc -jNL +qfv aSx aSY aQg -jRf -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh -lSh +mXe +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr +vpr aQg aQV aQV @@ -60350,36 +60350,36 @@ aQV aQV aQV aQV -raH -snT -snT -snT -vIK -vIK -snT -vIK -uqi -snT -snT -snT -snT -vIK -snT -snT -snT -snT -snT -ilW -nPs -rLd -euY -hXF -jBn -vmr +sue +iFD +iFD +iFD +pcF +pcF +iFD +pcF +xyL +iFD +iFD +iFD +iFD +pcF +iFD +iFD +iFD +iFD +iFD +sJd +tRv +qKv +sFW +prs +xnT +oMe bzA bzA -jhp -jhp +mAy +mAy bzA bzA bzA @@ -60391,85 +60391,85 @@ bzB bzB bzB bKr -nSw +siC bRk -haG -wHr -rAt +flF +jJV +uZw bRk -pBy -fuW -fuW +mmr +nFA +nFA cUX cOo -fuW -fuW -fuW -fuW -fuW -fuW -fuW -fuW -fuW -srV -yit +nFA +nFA +nFA +nFA +nFA +nFA +nFA +nFA +nFA +poD +mkZ cfl bkj aSu aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA bnv aVM -sXP +xBw aZM beo bjS aYE axF -njd -fZG -nyF -jKJ +sES +woH +yjY +nxy aYd bbo bzd bbo bbo aYd -rHn -pjw -sZP -fXH +nak +wLU +eqw +uhL bJV -oaE -sJL -srH -qYn +kRC +sYu +xzt +tHj bWt -ows +ekI bJU -oSh -oiN -vrM +spD +wtl +xuI bBL -aPH +elM ciL -tRq -umY +xto +mPb bBL dTs dTs -naT +rHy dTs dTs -mTx +ibn doE -wak +eps dlb cMJ cMJ @@ -60481,16 +60481,16 @@ dFo cAd czv cJd -vNK -xzk -fCQ -iHP +laH +krg +mMf +nsN cJd doE cBW doE -hbZ -vLn +tRV +viP dTs dTs dTs @@ -60501,7 +60501,7 @@ boP boP boP bvA -vPA +pUA cqK bvA cMd @@ -60509,16 +60509,16 @@ cLd cOy cRX aMu -fLg -hdT -lKf -jEt -eGl -eGl -nPx -gIX +nrZ +jFs +dyP +nEy +prL +prL +vfY +slh cXK -hzo +kdg bvA dTs dTs @@ -60544,7 +60544,7 @@ aPD byX iqK aOc -tuS +nwC aSx aQV aQV @@ -60584,36 +60584,36 @@ aQg aQV aQV aQV -raH -snT -snT -snT -snT -snT -snT -snT -vIK -snT -snT -vIK -snT -snT -snT -snT -snT -snT -snT -ilW -nPs -rLd -euY -hXF -vmE -fhR +sue +iFD +iFD +iFD +iFD +iFD +iFD +iFD +pcF +iFD +iFD +pcF +iFD +iFD +iFD +iFD +iFD +iFD +iFD +sJd +tRv +qKv +sFW +prs +fDx +sYZ bzB bAq -jhp -jhp +mAy +mAy bAq bzB bzB @@ -60625,76 +60625,76 @@ bzB bzB bzB bKr -nSw +siC bRk -lMd -eXn -qIU +teb +jJE +fyE bOR -svh -svh -svh -uMy -rFv -svh -sHi -svh -qjK -qjK -wJG -svh -qjK -svh -sHi -qsZ +mOy +mOy +mOy +pAD +lug +mOy +fyz +mOy +bOg +bOg +eEq +mOy +bOg +mOy +fyz +nwE cfl bkj aSu aPR -dHZ +lmk aPu ceA -vZX -xKS +low +eIL ceA ceA aVM -pVM +paT aZM bes -bkG +ffS bmX aVM -xnL -fZG -nyF -hKy +pzR +woH +yjY +eRK bsp -tKN -nJR -tKN -tKN -tKN -gTJ -pjw -sZP -fXH +iPA +pBb +iPA +iPA +iPA +wSG +wLU +eqw +uhL bJV -fYM +jlU bNJ bNi bNi bWt -kyV +vZv bJU -kqJ +kNz bYt bYt caY bYt ciL -tRq -tHR +xto +nLU bBL dTs dTs @@ -60703,7 +60703,7 @@ dTs dTs dTs doE -wak +eps cIi cRM cRM @@ -60715,16 +60715,16 @@ dFo cru doE cJd -xzk -fCQ -xzk -xzk +krg +mMf +krg +krg cJd doE doE doE -hbZ -vLn +tRV +viP dTs dTs dTs @@ -60735,16 +60735,16 @@ boP ckY clj bvA -hgk +kKw cmS -ncL +nBL cMd cLd cLI cLO -itK -fGj -hdT +ksW +muM +jFs cXK cYJ cYJ @@ -60752,7 +60752,7 @@ cXK deZ cXK cXK -pvH +ttj bvA dTs dTs @@ -60778,7 +60778,7 @@ aPD aPD iqK aau -tuS +nwC aSx aQV aQV @@ -60818,36 +60818,36 @@ aQg aQV aQV aQV -raH -snT -snT -snT -snT -snT -snT -snT -snT -snT -vIK -vIK -snT -snT -snT -snT -snT -snT -snT -ilW -pJl -jBn -euY -hXF -vmE -fhR +sue +iFD +iFD +iFD +iFD +iFD +iFD +iFD +iFD +iFD +pcF +pcF +iFD +iFD +iFD +iFD +iFD +iFD +iFD +sJd +rhq +xnT +sFW +prs +fDx +sYZ bpJ bAr -idt -idt +isN +isN bAr bpJ bpJ @@ -60859,7 +60859,7 @@ bpJ bpJ bzB bKr -boo +ygu bOR bRk bRk @@ -60867,68 +60867,68 @@ bRk bOR bTI bTI -svh +mOy bVS bWT -svh +mOy bTI -svh -svh -svh +mOy +mOy +mOy bTI -svh -svh -svh +mOy +mOy +mOy bTI -qsZ +nwE cfl bkk aWE aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA ceA aVM aYE aZM -klL +rlL bkH aYE -pya -xeW -uYG -kWV -kWV -eLy +lJt +lYX +oYE +fAf +fAf +rYL bsT -fUB -qce -qce -qce -qce -mZR -ovn -fXH +lkR +rBF +rBF +rBF +rBF +nKK +xnU +uhL bJV -wBN +hlM bNP bNi bNi bWt -hwt +oTb bJU -mAL -xNf -igG +cVZ +hqq +rZC bBL -eUZ +bWG ciL -tRq -umY +xto +mPb bBL dTs dTs @@ -60936,8 +60936,8 @@ dTs dTs dTs dTs -mTx -wak +ibn +eps cUl crx crx @@ -60950,15 +60950,15 @@ doE cJd cJd cJd -xzk -edv +krg +cIj cJd cJd cJd doE doE -hbZ -vLn +tRV +viP dTs dTs dTs @@ -60971,22 +60971,22 @@ clj cof cmS cmS -ncL +nBL cMd cLd cLI cLH -itK -hdT -hdT -hfR -fDT -tlx -fDT -fDT -jYP +ksW +jFs +jFs +kiq +evf +kcJ +evf +evf +lhC cXK -kUe +gBv bvA dTs dTs @@ -61007,43 +61007,43 @@ acu dTs dTs aOc -mgP -mgP -pXe -mgP +gxy +gxy +vVd +gxy aau -tuS -jJd -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -yaQ -nZo +nwC +jwQ +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +oQr +tro aQV aQV -dMy -yaQ -yaQ -yaQ -yaQ +gZx +oQr +oQr +oQr +oQr aQg aQV aQV @@ -61051,37 +61051,37 @@ aQV aQV aQV aSY -oPs +tmB buI -eLv -veE -veE -veE -veE -veE -veE -veE -veE -eLv -veE -veE -veE -veE -veE -veE -ocp -ocp -fDY -gJC -nWd -euY -hXF -rLd -vmr +sMo +imG +imG +imG +imG +imG +imG +imG +imG +sMo +imG +imG +imG +imG +imG +imG +jNU +jNU +olm +umX +eGx +sFW +prs +qKv +oMe bpK bpK -idt -idt +isN +isN bpK bpK bpK @@ -61093,37 +61093,37 @@ bLh bsC bMH bNj -mcp -nTV -ueI -ueI -ueI -ueI -nTV -ueI -ueI +qeP +xDS +vwi +vwi +vwi +vwi +xDS +vwi +vwi bVT bWU -ueI -nTV -ueI -ueI -ueI -nTV -ueI -ueI -ueI -nTV -rbV +vwi +xDS +vwi +vwi +vwi +xDS +vwi +vwi +vwi +xDS +gJR cfl bkj aSu aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL aUh ceA aVM @@ -61133,36 +61133,36 @@ aZM aZM aYE aVM -vfx -uIC -xeW -nyF -efC +ndo +hWp +lYX +yjY +dhr btX -pYW -oZi -oZi -oZi -oZi -pEn -qRH -fXH +oTu +sZW +sZW +sZW +sZW +sPh +fbP +uhL bJV bNi bNi bQG bNi bWA -oYI +pCD bJU bBL bBL bBL bBL -xol +uFE ciL -tRq -xue +xto +gds bBL dTs dTs @@ -61171,7 +61171,7 @@ dTs dTs dTs dTs -wak +eps cUl crx crx @@ -61182,17 +61182,17 @@ crx dFo doE cJe -xzk -qjt -fCQ -xzk -xzk -xzk +krg +gAR +mMf +krg +krg +krg cJe doE doE -hbZ -vLn +tRV +viP dTs dTs dTs @@ -61203,24 +61203,24 @@ boP clj clj bvA -jYP +lhC cmS -ncL +nBL cMd cMe cOA cLO -itK -hdT -hdT -rKt -skE -iyq -iyq -vdz -tQN +ksW +jFs +jFs +hJg +tzz +ntJ +ntJ +leV +cWf cXK -kUe +gBv bvA dTs dTs @@ -61241,43 +61241,43 @@ acu dTs dTs aOc -mZe -nHl -ggD -geb +tKF +unY +qvC +uIq aOc -rsE -gqM -gqM -gqM -gqM -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -fcw -gqM -gqM -fcw -fcw -gqM -gqM -gqM -gqM -gqM -vvc -wao -mGO -rDB -xgI -gqc -gqM -gqM -vvc +nJo +gjj +gjj +gjj +gjj +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +ffF +gjj +gjj +ffF +ffF +gjj +gjj +gjj +gjj +gjj +jbH +xAQ +nSu +jhX +hvq +dcm +gjj +gjj +jbH bfn aQW aQW @@ -61285,44 +61285,44 @@ aQW aQW aQW bgN -tuS +nwC bhu -gPC -ofU -bup -hbR -rLd -tLv -rLd -rLd -szx -rLd -rLd -tLv -rLd -hbR -tLv -rLd -jBn -xiB -hbR -rLd -vsr -euY -hXF -uuF +tJV +gMl +hHN +rga +qKv +xXD +qKv +qKv +uMN +qKv +qKv +xXD +qKv +rga +xXD +qKv +xnT +dhk +rga +qKv +jiY +sFW +prs +oaH bhu -xFT -xFT +tbW +tbW bBr bCj -xFT -xFT -xFT -xFT -xFT -xFT -sLc +tbW +tbW +tbW +tbW +tbW +tbW +jGz brQ bpJ bpJ @@ -61336,8 +61336,8 @@ bOU bOU bOU bOU -ybE -vNA +hVv +qjw bOU bOU bOU @@ -61353,11 +61353,11 @@ cwq bkj aSu aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA ceA axF @@ -61365,38 +61365,38 @@ aYN aYE aYE aYE -ntF +hRf axF -oaJ -xeW -xeW -rlI +sGh +lYX +lYX +sGH bsp -pPl -pPl -pPl -pPl -noH -uAO -hIf -uyU -sZP -jId +kZH +kZH +kZH +kZH +pMZ +kHq +mzY +fHb +eqw +mxf bNi bNi bQH bTw bWB -eSK +wio bJU -oSh -oiN -vrM +spD +wtl +xuI bBL -aPH +elM ciL -tRq -kko +xto +jcC bBL dTs dTs @@ -61405,7 +61405,7 @@ dTs dTs dTs dTs -wak +eps dlb cMJ cMJ @@ -61416,17 +61416,17 @@ crz dFo doE cJe -xdJ -xbi -iXd -tFx -xdJ -xbi +mkD +spu +xOp +xNg +mkD +spu cJe doE doE -hbZ -vLn +tRV +viP dTs dTs dTs @@ -61437,24 +61437,24 @@ bxF clj cmV bvA -vPA +pUA cqQ -ncL +nBL cLQ cMe cLI cLO -itK -hdT -dhB -hzo -lYw -jwn +ksW +jFs +fDu +kdg +nXd +gHB ddL -lvx -tQN +vdQ +cWf cXK -kUe +gBv bvA dTs dTs @@ -61475,60 +61475,60 @@ acu dTs dTs aOc -rUp -uDw -ggD -fJw +sTD +vNP +qvC +dTq aOc aau -ggD -sPw +qvC +oHf aau aOc -heI -jAT -jAT -jAT -jAT -kfz -sqB -jAT -yfG -iQS -hsX -wEQ -tfb -ulS -iQS -iQS -iQS -iQS -xVh -eRd -rDB -rDB -xgI -tuS -ulS -iQS -heI -mJO -mJO -mJO -mJO -mJO -mJO -mJO -yfG +kFa +jyx +jyx +jyx +jyx +rej +qlf +jyx +gPc +oCE +xcA +jqH +rrO +gLx +oCE +oCE +oCE +oCE +tty +dYL +jhX +jhX +hvq +nwC +gLx +oCE +kFa +pNK +pNK +pNK +pNK +pNK +pNK +pNK +gPc bht bht bht bht bht -oqF -rLd -rLd -qob +qHI +qKv +qKv +uLd bht bht bht @@ -61542,21 +61542,21 @@ bLz brF brF bLz -xwH -gyF +kwa +lcL bLz brF brF -lsi +nTh bBs bCk -rEt -rEt -rEt -rEt -ooi +hWI +hWI +hWI +hWI +kXA bJh -xWJ +mIe brQ bpJ bpJ @@ -61570,8 +61570,8 @@ bkj bRe bkj bkj -ybE -vNA +hVv +qjw bkj bRe bkj @@ -61587,11 +61587,11 @@ cws bkj aSu aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA axF axF @@ -61602,8 +61602,8 @@ aVM axF axF bnG -xeW -egj +lYX +rva bnG aNH aNH @@ -61611,26 +61611,26 @@ aNH aNH aNH aNH -rHn +nak bNe btX -fXH +uhL bJV -iLA -iLA -jlj -rUW +qlc +qlc +vIg +rkE bNi -ows +ekI bJU -kqJ +kNz bYt bYt caY bYt ciL -tRq -vjo +xto +mMY bBL dTs dTs @@ -61639,28 +61639,28 @@ dTs dTs dTs dTs -wLQ -qhE -onw -onw -oHQ +njZ +hhF +ymc +ymc +bkQ cUo crx crx dFo doE cJd -hzI -oez -qYc -jKS -uXt -uAT +hfV +kVS +kiD +mjh +mTC +onj cJd doE doE -hbZ -vLn +tRV +viP dTs dTs dTs @@ -61671,24 +61671,24 @@ bLR clj cmY bvA -vPA +pUA cvS -mnI +fqx cLQ cMe cLG cLO -itK -fTg -hdT -hzo -lYw -rbE +ksW +kjc +jFs +kdg +nXd +tUv ddL -lvx -vPA +vdQ +pUA cXK -hzo +kdg bvA dTs dTs @@ -61710,87 +61710,87 @@ dTs dTs aOc aUj -wtW -ggD -imx -jJr -nNm -nHl -nHl -fJw +gqE +qvC +xKo +vDX +bkK +unY +unY +dTq aOc -uSz -mYs -uSz -dhE -gAK -dhE -dhE -dhE -lcH -dhE -eSB -cWM -qHj -jdb -lcQ -dhE -dhE -dhE -qZs +llb +mxC +llb +ejk +vOH +ejk +ejk +ejk +hra +ejk +mxc +jTZ +fbk +hhM +hqG +ejk +ejk +ejk +mJB aSx aSY aQg aUi -tuS -jdb -dhE -pbe -oou -dhE -pbe -srE -oou -dhE -dhE -pbe +nwC +hhM +ejk +yiw +rrk +ejk +yiw +fpw +rrk +ejk +ejk +yiw dTs dTs dTs dTs lcj -dYH -ljb -ljb -kXb +pYf +fTr +fTr +euj bht dTs dTs dTs dTs bni -pci -oKF -qyo -err -plw -roX -qdb -xwH -tec -eiC -pRF +uHW +oCn +dGp +vhT +jEx +vTo +hRV +kwa +sXv +mWn +siP bLz -rEt -hpW -eKC -rEt -rEt -rEt -rEt -rEt -rEt -xWJ +hWI +ubg +xRo +hWI +hWI +hWI +hWI +hWI +hWI +mIe brQ bpJ bpJ @@ -61804,8 +61804,8 @@ bMI bRf bMI bMI -vwg -axd +gNX +dKr bMI bRf bMI @@ -61821,28 +61821,28 @@ cfR bMI aSu aPR -dHZ +lmk axk ceA -vZX -xKS +low +eIL ceA ceA -kSJ -uHj -uHj -uHj -uHj -sfq -sfq -sfq -vhR -qmP -sfq +eyN +noV +noV +noV +noV +fCp +fCp +fCp +nti +iFO +fCp aNH -vjm -eQQ -ncs +lwG +ntT +fPD aTR aNH byU @@ -61851,20 +61851,20 @@ bGJ byU aNH bJU -fPs -hzu -plg +yiq +vfA +guS bNi -ows +ekI bJU -mAL -kjT -igG +cVZ +qhG +rZC bBL -eUZ +bWG ciL -tRq -umY +xto +mPb bBL dTs dTs @@ -61876,7 +61876,7 @@ dTs dTs dTs dTs -mTx +ibn doE cuM crx @@ -61884,17 +61884,17 @@ crx dFo doE cJe -xdJ -xbi -rPt -jKS -xdJ -xbi +mkD +spu +hwb +mjh +mkD +spu cJe doE doE -hbZ -vLn +tRV +viP doE dTs dTs @@ -61902,27 +61902,27 @@ boP boP boP boP -dTz +fkS boP bvA -vPA +pUA cwj -ruF +jmg cLQ cLd cLI cLH -itK -ous -fGj -hzo -lYw -kRz +ksW +jAc +muM +kdg +nXd +fIk ddL -lvx -vPA +vdQ +pUA cXK -xEG +xaX bvA dTs dTs @@ -61943,18 +61943,18 @@ acu dTs dTs aOc -mgP -xQO -ggD -nHl -ggD -ggD -nHl -nHl -geb +gxy +jrn +qvC +unY +qvC +qvC +unY +unY +uIq aau -oou -uSz +rrk +llb aVI aVI aVI @@ -61964,67 +61964,67 @@ aVI aVI aVI aWM -lsY -fpU +oxX +nAx aWM aVI aVI aVI aiZ -nDb +waB apz aqg aqg asa -wUE -kGc -pbe -kjB -uGj -srE +aVt +mCM +yiw +poS +sBY +fpw dTs dTs -uGj -srE -srE +sBY +fpw +fpw dTs dTs dTs dTs lcj anJ -qOK -qOK -qOK -qOK +jyK +jyK +jyK +jyK anJ lcj dTs dTs dTs bni -kHl -fBH -qqf -qqf -fBH -fBH -fBH -xwH -jCP -jCP -tec -oIe -yaq +fpq +qDt +eBI +eBI +qDt +qDt +qDt +kwa +rpB +rpB +sXv +uHM +mUL bUm bpF -eHB -eHB -eHB -taN -rEt -rEt -xWJ +qnV +qnV +qnV +uqz +hWI +hWI +mIe brQ bpJ bpJ @@ -62038,8 +62038,8 @@ bOV bOV bOV bOV -vwg -axd +gNX +dKr bOV bOV bOV @@ -62055,35 +62055,35 @@ cwA bMI aSu aPR -dHZ +lmk axk ceA -vZX +low bfs -nvN -nvN -sgk -ipO -ipO -ipO -ipO -ipO -ipO -ipO +vEv +vEv +tHE +kFf +kFf +kFf +kFf +kFf +kFf +kFf aSK -uIU -sfq +dFC +fCp aNH -vjm -ncs -ncs +lwG +fPD +fPD aTR aNH -ixI +kZL bBV bvD -qdy -hon +gFJ +hEX bNw bNw bNw @@ -62109,8 +62109,8 @@ dTs dTs dTs dTs -mRL -vkl +uXd +lUq doE cuM cvJ @@ -62118,38 +62118,38 @@ crz dFo doE cJe -uXt -oez -rPt -jKS -uXt -kTn +mTC +kVS +hwb +mjh +mTC +eAf cJe doE doE -hbZ -vLn +tRV +viP doE dTs dTs boP -gAS -ino -diY -diY -luT +nMs +pzk +kDK +kDK +vke bvA -vPA +pUA coC -jLn +pmv cLQ cLd cLI cLO -oXX -hdT -fGj -pvH +eLc +jFs +muM +ttj bvA bvA ddM @@ -62177,49 +62177,49 @@ acu dTs dTs aOc -mZe -ggD -ggD -ggD -nHl -nHl -ggD -ggD -geb +tKF +qvC +qvC +qvC +unY +unY +qvC +qvC +uIq aau -uGj -oou +sBY +rrk aVI -exT -dsy -dsy -dsy -dsy -uEv -dsy -eGs -oSd -oSd -pyL -dsy -okf +sRL +mBh +mBh +mBh +mBh +tEH +mBh +pZg +sTt +sTt +lkc +mBh +gBz aVI aiZ -vAf +uMP apz aqg aqg asa -oti +hSx aiZ -xix -lSd +fra +oZs dTs dTs dTs dTs dTs -lSd +oZs dTs dTs dTs @@ -62237,66 +62237,66 @@ dTs dTs dTs bni -bMR -qqf -sVu -qqf -qqf -qqf -qqf -klN -jCP -jCP -tec -tec -kUI -tKf -kUI -tKf -kUI +gNu +eBI +dMQ +eBI +eBI +eBI +eBI +wii +rpB +rpB +sXv +sXv +uTP +kiF +uTP +kiF +uTP bpF -vOn -rEt -rEt -xWJ +iIH +hWI +hWI +mIe brQ bsC bMH bNj -sEd -jyG -jyG -jyG -jyG -jyG -sEE -jyG -jyG -nRQ -txr -jyG -jyG -jyG -jyG -jyG -sEE -jyG -jyG -jyG -rBE -fHM +rAd +uOF +uOF +uOF +uOF +uOF +lHO +uOF +uOF +qhl +wYK +uOF +uOF +uOF +uOF +uOF +lHO +uOF +uOF +uOF +keI +eQp cxc bMI aSu aPR -dHZ +lmk aPu ceA -iwJ -iQZ -iQZ -iQZ -eRi +tfM +rQc +rQc +rQc +koM aSK aSK aSK @@ -62304,27 +62304,27 @@ aSK aSK aSK aSK -gsh -iNy -sfq +qKs +roP +fCp aNH -vjm -ncs -ncs +lwG +fPD +fPD aTR aNH -viz +kuH bBV bHu bvD -plU +vgP bNw -mjq -xbe -iqW +bIp +kFI +hGx bRF -mvR -joG +vup +xOw bNw bZJ bZJ @@ -62343,7 +62343,7 @@ dTs dTs dTs dTs -ngf +pvK doE cNQ cuM @@ -62352,45 +62352,45 @@ crx dFo doE cJd -rie -xbi -qYc -mbz -xdJ -jKN +dNe +spu +kiD +ojW +mkD +iJC cJd doE doE -hbZ -vLn +tRV +viP doE dTs dTs boP boP boP -diY -diY -luT +kDK +kDK +vke bvA -vPA +pUA coW -ncL +nBL cLQ cLd cOF cLO -itK -hdT -fGj -hzo +ksW +jFs +muM +kdg bvA dbI deo dfb -mIU +fZN dfH -wuz +win cZB dTs dTs @@ -62411,40 +62411,40 @@ acu dTs dTs aOc -sZD -wBG -qfA -xMu -wUs -ndH -ndH -oZA -sGj +fHo +xvY +iik +qgz +hXO +nJm +nJm +eIr +rfJ aOc -lSd -uGj +oZs +sBY aVI -tEs -llh -llh -llh -oSd -lRT -iQr -llh -pWc -iQr -uTV -llh -xJu +sqD +rgf +rgf +rgf +sTt +nxI +tzm +rgf +sKA +tzm +vnn +rgf +pAy aWM aiZ -vAf +uMP apz aql ara ahx -tXI +xSi aim dTs dTs @@ -62471,33 +62471,33 @@ dTs dTs dTs bni -mlR -nsd -uRc -xjV -kIb -tTD -jFZ -xwH -ybi -tLg -nsd +lsr +ejg +pRs +mJU +iSh +ylG +hQj +kwa +lQC +qJT +ejg bLz -jzO -ivR -ivR -ivR -rmi -hpW -vOn -rEt -rEt -xWJ +lVm +tvk +tvk +tvk +vWn +ubg +iIH +hWI +hWI +mIe brQ bpJ bMI bNm -jkD +iLa cjH cjH cjH @@ -62505,62 +62505,62 @@ cjH cjH cjH cjH -lhy +iMG bVX bWX -rif -hza -hza -vNe +vsv +qIW +qIW +rph bOX bOX bOX bOX bOX cdR -nTT +xay cxc cfP aWE aPR -dHZ +lmk axk ceA ceA bft ceA ceA -kSJ -wAA -gsh -gsh -gsh -gsh -gsh -iNy -xvj -lCa +eyN +iMu +qKs +qKs +qKs +qKs +qKs +roP +rVI +hLr aNH aNH aNH -qPd +ham aNH aNH aNH -ixI +kZL bDJ bHF bvD -mVI +umQ bNw -kGf +jnk bRF bRF bRF -mvR -joG +vup +xOw bNw -qNU +fiY bZJ bZJ bZJ @@ -62576,8 +62576,8 @@ dTs dTs dTs dTs -mRL -vkl +uXd +lUq doE doE cuM @@ -62586,45 +62586,45 @@ crx dFo doE cJe -uXt -oez -qYc -jKS -uXt -oez +mTC +kVS +kiD +mjh +mTC +kVS cJe doE doE -hbZ -vLn +tRV +viP doE doE dTs boP -gAS -ino -wAc -diY -luT +nMs +pzk +rAm +kDK +vke bvA -ggh -fCZ -qOj +ybp +oSu +fGk cLQ cLd cLI cLO -itK -hdT -fGj -hzo +ksW +jFs +muM +kdg bvA dbT deo dfb -mIU +fZN dfH -wuz +win cZB cZB cZB @@ -62648,39 +62648,39 @@ aOc aOc aOc aOc -sMW -tfA -uwN -eTX -sGj +jaM +tWq +tVR +xkn +rfJ aOc aOc dTs dTs aVI -foY -llh -llh -llh -wFU -gSr -oex -oSd -oSd -fwB -gSr -klJ -xJu +pIn +rgf +rgf +rgf +pta +nfR +khE +sTt +sTt +nZO +nfR +rBX +pAy aWM aiZ -vAf +uMP apz aqg aqg ahj -oti +hSx aiZ -ikG +nmZ dTs dTs dTs @@ -62711,40 +62711,40 @@ blZ blZ blZ blZ -oAU -xwH -jCP -dAC +pDN +kwa +rpB +sni brF brF -dis -xNk -xNk -sPX -foe -hpW -vOn -ooi +mwG +jkf +jkf +sFV +iLn +ubg +iIH +kXA bJh -xWJ +mIe brQ bpJ bMI bNm -jkD +iLa cjH cqa cqa mOS -jbi -cxF +fWh +cCK cjH -lhy -iKa -nTT -vUC -mPw -qNu +iMG +hXB +xay +jnM +iLo +hGr dTs dTs dTs @@ -62752,36 +62752,36 @@ dTs dTs bOX cdS -nTT +xay cxc bMI aSu aPR -dHZ +lmk axk ceA ceA ceA ceA ceA -mEA -mjt -sfq -xvj -lCa -mjt -sfq -xvj -xTi +iBP +egi +fCp +rVI +hLr +egi +fCp +rVI +jaO ceA aNH -ltx -sbd -ncs +nZk +sKz +fPD aNH -vBH -epV -vcV +tWv +gRh +fBc bDM bvD bvD @@ -62791,8 +62791,8 @@ bRF bRF bRF bYo -mvR -eRV +vup +nKW bNw bZw caX @@ -62810,8 +62810,8 @@ dTs dTs dTs dTs -vUJ -mTx +meA +ibn doE doE cuM @@ -62820,17 +62820,17 @@ crz dFo doE cJe -xdJ -xbi -qYc -mbz -xdJ -xbi +mkD +spu +kiD +ojW +mkD +spu cJe doE doE -hbZ -vLn +tRV +viP doE doE dTs @@ -62838,31 +62838,31 @@ boP boP boP boP -dub +nAT boP bvA bvA bvA cIo -nbh -lYk -nug -vwp +hoQ +lwY +kdq +pjF cNo -fGj -dni +muM +sfG cNo bvA dbY dbY dfo -mIU +fZN dfH -eSh -fDM -eWo -eWo -fSv +ffe +vZu +qkU +qkU +vyj cZB dTs dTs @@ -62892,31 +62892,31 @@ dTs dTs dTs aVI -xVN -llh -oSd -llh -njx -xLM -mdf -oSd -iQr -njx -tnU -oDh -xJu +gjt +rgf +sTt +rgf +uNE +jRK +mpf +sTt +tzm +uNE +dfQ +pgL +pAy aVI aiZ -vAf +uMP apz aqg aqg asa -rvx +cXG acW aiZ -tSq -gZg +iaE +fzc dTs dTs dTs @@ -62938,45 +62938,45 @@ lcj dTs blZ blZ -uCA -oHk -xON -yiv -sRx -xOD +eCi +jqi +bqF +pMr +tAm +lin blZ -giR -klN -jCP -jxg +stG +wii +rpB +wlD brF dTs dTs dTs dTs -mgC -foe -pQo -vOn -rEt -rEt -xWJ +uZv +iLn +oDK +iIH +hWI +hWI +mIe brQ bsC bMJ bNm -fbt +fRs cjH cqa cqa ibl sye -sbg +hOJ cjH -vNe -wFw -wQI -qjJ +rph +nzr +wVI +hvm afR agO dTs @@ -62986,12 +62986,12 @@ dTs dTs bOX cdR -nTT +xay cxc bMI aSu aPR -dHZ +lmk axk ceA ceA @@ -62999,33 +62999,33 @@ ceA bfH ceA ceA -sdY -xKu -oWO +maj +lhb +nii ceA -upP -xKu -iDq +gyC +lhb +wQQ ceA ceA aNH -ncs -ncs -ncs -nan +fPD +fPD +fPD +dLy bvD bvD bvD bDU bvD bvD -kze +msV bNw -vxX -ikO +iQy +gdf bRF bYp -wxT +wDa bNw bNw bZJ @@ -63045,8 +63045,8 @@ dTs dTs dTs dTs -vUJ -mTx +meA +ibn doE cuM crx @@ -63054,49 +63054,49 @@ crx dFo cJd cJd -uXt -oez -qYc -mbz -uXt -oez +mTC +kVS +kiD +ojW +mTC +kVS cJd cJd doE -hbZ -vLn +tRV +viP cBW cuO doE doE doE boP -pBi -vaz -pme -sAN -vgO +wge +qij +hjw +rns +qYO boP -vLj +gtQ cjf cMj cOi bdP -pHm -gDf -gDf -eSh -fDM -fDM -fDM -fDM -eBW +meZ +loo +loo +ffe +vZu +vZu +vZu +vZu +mBr dfI dfI dfI dfI dfI -wuz +win cZB dTs dTs @@ -63126,31 +63126,31 @@ dTs dTs dTs aVI -sMh -dEG -qqd -hZH -tYO -miK -oSd -oSd -oSd -llh -nSC -llh -xJu +uJf +mzh +stt +qiO +eoZ +fXO +sTt +sTt +sTt +rgf +www +rgf +pAy aWM agq -vAf +uMP apz aql ara asa -oti +hSx aiZ aiZ amN -tSq +iaE dTs dTs dTs @@ -63171,46 +63171,46 @@ fmP lcj blZ blZ -mTZ -pDO -qwH -rAI -rAI -rAI -yaK +oKN +oDS +tZE +phG +phG +phG +nGr blZ -eSJ -klN -jCP -xcQ +elm +wii +rpB +hpr brF dTs dTs dTs dTs dTs -hcG -pQo -eKC -rEt -rEt -xWJ +kqt +oDK +xRo +hWI +hWI +mIe brQ bpJ bMI bNm -jkD +iLa cjH cqa cqa cqa cqa -cxF -tDt -vSc -iKa -nTT -qjJ +cCK +mGB +grN +hXB +xay +hvm afR agO dTs @@ -63220,12 +63220,12 @@ dTs dTs bOX cdR -nTT +xay cxc cfP aWE aPR -dHZ +lmk axk ceA ceA @@ -63233,34 +63233,34 @@ ceA ceA bny ceA -vdG -vUc -nbQ +rMZ +ueL +xpr ceA -sJV -vUc -nbQ +uzu +ueL +xpr ceA ceA aNH -ncs -ncs -ncs +fPD +fPD +fPD aNH -mqP +kPc bvD bAc bDV bHI bJI -gek +tdZ bNw -fSn -iSu +njT +lyn bRF -bYq -mvR -jtK +qlg +vup +dwr bNw bZM bZM @@ -63280,57 +63280,57 @@ dTs dTs dTs dTs -vkl +lUq doE cuM crx crx dFo cJe -xzk -fCQ -xzk -pAQ -owX -xzk -xzk -xzk +krg +mMf +krg +qew +dlh +krg +krg +krg cJe doE -hbZ -vLn +tRV +viP doE cOj doE doE doE bpY -pBi -vaz -vaz -wLb -fVT +wge +qij +qij +rLM +ncW bpY -vLj +gtQ cjf cMm cOV bdP -pHm -gDf -gDf -uMz -nPj -nPj -nPj -tRJ -tRJ -tRJ -tRJ -nPj -nPj -nPj -oeV +meZ +loo +loo +oBP +nhH +nhH +nhH +jeC +jeC +jeC +jeC +nhH +nhH +nhH +wTT cZB dTs dTs @@ -63360,32 +63360,32 @@ dTs dTs dTs aVI -ixr -llh -llh -oSd -rDg -wUC -iQr -oSd -tqr -llh -hZH -llh -xJu +eUf +rgf +rgf +sTt +qft +pLq +tzm +sTt +gcw +rgf +qiO +rgf +pAy aWM aiZ -vAf +uMP apz aqg aqg asa -oti +hSx aiZ anF bej aiZ -vST +oYP dTs dTs dTs @@ -63404,47 +63404,47 @@ fmP fmP lcj blZ -jcF -pDO -qwH +fmV +oDS +tZE bDe bDj bEy -qwH -yaK +tZE +nGr blZ -eSJ -xwH -jCP -saN +elm +kwa +rpB +mjw brF dTs dTs dTs dTs dTs -uZH -pQo -eKC -rEt -rEt -xWJ +uZI +oDK +xRo +hWI +hWI +mIe brQ bpJ bMI bNm -jkD +iLa cjH cqa cqa cqa gTD -cxF -uEY -vSc -iKa -wQI -rDw +cCK +fly +grN +hXB +wVI +fPz bYE bZe bZe @@ -63454,12 +63454,12 @@ bZe bZe cdm cdR -nTT +xay cxc bMI aSu aPR -dHZ +lmk axk ceA ceA @@ -63467,34 +63467,34 @@ ceA bmY ceA ceA -wBU +epp brr -vGe +uqo ceA -kno +lxf brr -vGe +uqo ceA ceA aNH -ncs -ncs -ncs +fPD +fPD +fPD aNH -gmS +qvA bxZ bBg bFv bHJ bJI -vTL +qJf bNw -jzB -iSu +lHx +lyn bRF bRF -mvR -jtK +vup +dwr bNw cao bZM @@ -63513,7 +63513,7 @@ dTs dTs dTs dTs -xaG +qmL doE doE cuM @@ -63521,46 +63521,46 @@ cvJ crz dFo cJe -lMx -xzk -xzk -xzk -usm -xzk -fCQ -xzk +hJH +krg +krg +krg +bMV +krg +mMf +krg cJe doE -hbZ -vLn +tRV +viP doE doE doE doE doE bpY -mEB -vaz -vaz -wLb -fVT +qdD +qij +qij +rLM +ncW bpY -vLj +gtQ cjf cMm cOW cUz -cwh -nsh -nsh -wuz -nsh -vLj -yhp -yhp -tJd -pHm -nsh +mEo +knj +knj +win +knj +gtQ +wcr +wcr +iwG +meZ +knj dgm dgv dgv @@ -63594,33 +63594,33 @@ dTs dTs dTs aVI -wjG -xxk -hfB -riI -jil -vPj -iuE -gCU -ayq -nsJ -fSt -kZV -lGu +egv +sKj +uQw +rQK +mfw +wpt +sId +vej +xvs +vNu +xAD +uDk +fZk aVI aiZ -vAf +uMP apz aqg aqg asa -oti +hSx aiZ beD beU bfp -tSq -gZg +iaE +fzc dTs dTs dTs @@ -63638,97 +63638,97 @@ fmP fmP lcj blZ -hBl -rAI -qwH +xwb +phG +tZE bnU bnU bnU -qwH -jsI +tZE +kMY blZ -qdb -hCu -tec -kbH +hRV +ewG +sXv +lva brF dTs dTs dTs -hjp -kDM -igg -pQo -vOn -rEt -rEt -xWJ +wpU +qbq +xIs +oDK +iIH +hWI +hWI +mIe brQ bsC bMJ bNm -jkD +iLa cjH -hLN -kEn -kEn -kEn -qKz -ltf -tSc -iKa -wQI -lhy +mji +kPo +kPo +kPo +vkF +uVC +rSN +hXB +wVI +iMG bYE -mAD -xiG -dER -drP -drP -dER +ifb +oqI +kup +flG +flG +kup bYE cdR -nTT +xay cxc aEk cvr aPR -dHZ +lmk axk -rcA -iSI +ngE +vBd ceA ceA ceA aUh -wBU +epp brr -yiT +fYm ceA -mCA +bte brr -vGe +uqo aUh ceA aNH -nuz +qKf aNH -nuz +qKf aNH -xLP +jhJ bvD bAc bFy bHK bJI -vTL +qJf bNw -jzB -iSu +lHx +lyn bRF bYr -mvR -nEP +vup +cZH bNw bZM bZM @@ -63747,7 +63747,7 @@ dTs dTs dTs dTs -vkl +lUq doE doE cuM @@ -63755,46 +63755,46 @@ dvo crx dFo cJe -xzk -mCZ -ews -fbf -fbf -fbf -mCZ -xzk +krg +kyc +xBf +ejQ +ejQ +ejQ +kyc +krg cJe doE -hbZ -vLn +tRV +viP doE doE doE doE doE bpY -lWa -otM -otM -wCU -pVm +rHp +hSF +hSF +jho +tsb bpY -vLj +gtQ cjf cMm cOW bdP -pHm -nsh -gDf -wuz -nsh -nsh -nsh -nsh -nsh -nsh -nsh +meZ +knj +loo +win +knj +knj +knj +knj +knj +knj +knj dgn cOi bQt @@ -63833,8 +63833,8 @@ aVI aVI aVI aWM -vNn -vVU +fXW +jjD aWM aVI aVI @@ -63843,20 +63843,20 @@ aVI aVI aVI dJR -vAf +uMP apz aql ara asa -oti +hSx aiZ apc beV beD apc -tSq -fAY -gZg +iaE +dAy +fzc dTs dTs dTs @@ -63872,102 +63872,102 @@ lcj lcj lcj blZ -ptb -rAI -cXr +kfR +phG +xKS bnT bnT bpA -mzo -gfC -xEg -fMe -gPP -npO -drm +kEb +qoR +kZw +tCX +wXT +unJ +gor brF brF brF brF -nwY -lOi -hcG -hpW -vOn -dog +lOF +fVO +kqt +ubg +iIH +qZq bJh -xWJ +mIe brQ bpJ bMI bNm -jkD +iLa cjH cjH -uFd -gdI -gdI -gdI -bWC -tSc -wFw -wQI -ixp +icC +erD +erD +erD +wRe +rSN +nzr +wVI +mVk bYE bYE bYE -dER -dER -ult -dER +kup +kup +iMr +kup bYE cdR -nTT +xay cxc cfP aEE aPR -yiJ +hDr aPu -rlF -qmV -iSI +vtG +spa +vBd ceA ceA ceA -wBU +epp brr -vGe +uqo ceA -mCA +bte brr -vGe +uqo ceA -rcA +ngE aNH -eky +roJ aNH -eky +roJ aNH -hSP +bdo bvD bAc bGv bHL bJI -vTL +qJf bNw bNw -ixv +hjk bRF bYQ -wxT +wDa bNw bNw bZw bZw bZw -jvt +ksy bZJ bZJ bZw @@ -63980,7 +63980,7 @@ dTs dTs dTs dTs -xaG +qmL doE cSR doE @@ -63990,45 +63990,45 @@ dvo dFo cJd cJd -uxi -uxi -mTP -uxi -uxi -uxi +rMa +rMa +btb +rMa +rMa +rMa cJd cJd doE -hbZ -fow -fkD -fkD -fkD -fkD -fkD +tRV +lev +qjQ +qjQ +qjQ +qjQ +qjQ boP -dsX -vaz -vaz -lcX -pNj +xAt +qij +qij +tBt +lel boP -vLj +gtQ cjf cMm cOW bdP -pHm -nsh -nsh -nHN -nsh -nmq -gbr -gbr -opA -pHm -gDf +meZ +knj +knj +kZN +knj +xhV +grL +grL +qqO +meZ +loo cjf bQt cOi @@ -64061,38 +64061,38 @@ dTs dTs dTs aVm -gvM +hEa aWq aWq aWq aVm -wBF -tmk -cXH -qDF +ict +sIR +wqA +uYS aWY -dmM -dQW -dQW -hKe +rQX +iHZ +iHZ +nVU bbC aiZ -vAf +uMP apz aqg aqg asa -hQd -lVd +uuv +jLB aiZ aiZ aFu aqz aiZ aiZ -tSq -fAY -fAY +iaE +dAy +dAy dTs dTs dTs @@ -64106,97 +64106,97 @@ dTs dTs dTs blZ -oWa -rAI -qwH +xUR +phG +tZE bnU bnU bnU -rAI -lCq +phG +gWC blZ -jFZ -rwh -jCP -cVt -vhE -pRF -vhE +hQj +dal +rpB +hZl +iQo +siP +iQo bLz -rEt -rEt -rEt -pQo -vOn -kxH -rEt -xWJ +hWI +hWI +hWI +oDK +iIH +faW +hWI +mIe brQ bpJ bMI bNm -jkD -lhy -jWC -vkM -vkM -vkM -vkM -hsl -nFV -qkc -szF -sHN +iLa +iMG +oFw +hyX +hyX +hyX +hyX +gBi +nXN +pjj +nxd +kaU bYE -mAD -xiG -iFu -dER -pWe -dER +ifb +oqI +mtd +kup +fpl +kup bYE mAZ -tXJ +tRR qqR bJE aEH che -iAT +veu dTs dTs beC -qmV -lmc -iSI +spa +gMm +vBd ceA -wBU +epp bud -vGe +uqo ceA -kno +lxf brr -yiT +fYm ceA -vRK +qCX aNH aNH aNH aNH aNH -iLq +cIm bvD bvD bvD bvD -kze -xyx +msV +eAP bNw -ixR -iSu +tJM +lyn bRF caO -mvR -nnN +vup +loa bNw dTs dTs @@ -64215,7 +64215,7 @@ dTs dTs dTs dTs -mTx +ibn doE doE cuM @@ -64224,45 +64224,45 @@ dVc dFo doE cJe -uxi -wSE -uxi -uxi -wSE -uxi +rMa +lDH +rMa +rMa +lDH +rMa cJe doE doE -hbZ +tRV cZb -wde -wde -wde -wde -tba -xCR -vaz -vaz -vaz -lcX -vaz -xCR -gDf +rIU +rIU +rIU +rIU +uOm +waP +qij +qij +qij +tBt +qij +waP +loo cJc cMn cPu cUD -gDf -gDf -nsh -nHN -nsh -nsh -gDf -gDf -gDf -gDf -nsh +loo +loo +knj +kZN +knj +knj +loo +loo +loo +loo +knj dgp cOi cOi @@ -64295,29 +64295,29 @@ dTs dTs dTs aVm -juO -wwe -fBp +qYo +fkk +qBH aWq aXL -ozJ -gFO -twu -xVD +bsW +tcb +vOz +pKh aZP -kQT -udX -udX -oNh +wVR +xuu +xuu +iOA ban -hiL -uJm +xfZ +glK apz aqg aqg asa -oyp -mOG +lXi +uuc aiZ aiZ aiZ @@ -64327,7 +64327,7 @@ aiZ aiZ aiZ aiZ -tSq +iaE dTs dTs dTs @@ -64340,97 +64340,97 @@ dTs dTs dTs blZ -jcl -gWk -qwH +hXh +sEU +tZE bnV bnV bnV -vvB -mQR +hYN +oXc blZ -twP -iXa -tec -jCP -jCP -jCP -jCP -foN -eHB -eHB -eHB +seM +iIs +sXv +rpB +rpB +rpB +rpB +uPf +qnV +qnV +qnV bUm bpF -yaq -dDi +mUL +jLt bKv -idt -idt -axd -axd +isN +isN +dKr +dKr bOh -lWH -oho -oho -oho -fjJ -fjJ -fjJ -fjJ +sXH +jRY +jRY +jRY +qaX +qaX +qaX +qaX dam -szF -lhy +nxd +iMG bYE bYE bYE bYE bYE -fRT +fwo bYE bYE mAZ -tXJ +tRR qqR aEI aEI che -iAT +veu dTs dTs dTs dTs beC dTs -iSI -rZH -qmd -mqv +vBd +vqQ +wdC +ulM ceA -bVH -qmd -mqv -rcA -rlF +tpb +wdC +ulM +ngE +vtG dTs dTs dTs aNH -evN -ixI +lsy +kZL bvD bvD bvD bvD -gek +tdZ aNH bNw -ixR -iSu +tJM +lyn bRF bRF -mvR -nnN +vup +loa bNw dTs dTs @@ -64450,7 +64450,7 @@ dTs dTs dTs dTs -mTx +ibn doE cuM crx @@ -64461,42 +64461,42 @@ cJd cJd cJd cJd -pdV +tIE cJd cJd cJd doE doE -xTQ -ghY -ghY -ghY -ghY -ghY -cuC -vaz -vaz -vaz -vht -tnO -uYJ -uYJ -pwF +uVs +rzc +rzc +rzc +rzc +rzc +lLP +qij +qij +qij +wyV +uNk +xkB +xkB +mrf cJn cMw cPy cUU -ghe -gDf -nsh -wuz -gDf -vLj -ukl -ukl -tJd -pHm -nsh +ucc +loo +knj +win +loo +gtQ +oDa +oDa +iwG +meZ +knj dgn cOi bQt @@ -64529,39 +64529,39 @@ dTs dTs dTs aVm -vtm -vCs -irY +ipH +noq +hkx aWq -fbl -cXH -gFO -hqN -twu -nVy -sTU -sTU -sTU -sTU -uNv -kuo -dth +hqS +wqA +tcb +qyb +vOz +lls +vlk +vlk +vlk +vlk +igq +fvX +saU apz aql ara asa -oyp -lgl -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL +lXi +rjv +xfZ +xfZ +xfZ +xfZ +xfZ +xfZ +xfZ +xfZ +xfZ +xfZ dTs dTs dTs @@ -64575,61 +64575,61 @@ dTs dTs blZ blZ -jko -gWk -qwH -qwH -qwH -sKX -mQR -blZ -ozk -uUM -tec -tec -jCP -jCP -tec -jCP tKf +sEU +tZE +tZE +tZE +xXO +oXc +blZ +dAP +rEV +sXv +sXv +rpB +rpB +sXv +rpB +kiF bUm bUm -tKf -tKf -kUI -gfI +kiF +kiF +uTP +eAq bBr -idt -idt -axd -axd +isN +isN +dKr +dKr bOi -erv -pQJ -qsr -qsr -qsr -qsr -qsr -qsr +mZv +tpf +qLW +qLW +qLW +qLW +qLW +qLW dam -wQI -lhy +wVI +iMG bYE -xFb -dNM -gCC -dNM -ucJ -bgv +dli +oOe +nbA +oOe +xmg +pJI bYE yll -tXJ +tRR qqR aEn cgz che -iAT +veu dTs dTs dTs @@ -64637,34 +64637,34 @@ dTs dTs dTs dTs -lmc -iSI +gMm +vBd ceA ceA ceA ceA -rcA -rlF +ngE +vtG dTs dTs dTs dTs aNH -evN -ixI +lsy +kZL bvD bvD bvD bvD -vTL -rJM +qJf +iBM bNw -ixR -qVT -gum -gum -oRu -nnN +tJM +sfU +kgF +kgF +seB +loa bNw dTs dTs @@ -64674,8 +64674,8 @@ dTs dTs dTs dTs -nNV -lmM +iup +nhN dNS dTs dTs @@ -64684,7 +64684,7 @@ dTs dTs dTs dTs -vkl +lUq doE cuM dvo @@ -64693,44 +64693,44 @@ dFo doE doE cJd -uzz -uxi -uxi -uxi +ekB +rMa +rMa +rMa cJd doE doE doE -rWy -nhU -nhU -nhU -nhU -huF -nhU +vJO +rJR +rJR +rJR +rJR +nxU +rJR boP -otA -vaz -lcX -vaz -isV +iVy +qij +tBt +qij +lbf boP -vLj +gtQ cjf cME cOi bdP -pHm -nsh -fiV -vkt -gDf -gDf -gDf -gDf -gDf -gDf -gDf +meZ +knj +gKq +kPk +loo +loo +loo +loo +loo +loo +loo dgq dgw dgy @@ -64763,40 +64763,40 @@ dTs dTs dTs aVm -qvb -hEJ -ptW +jrO +yfx +ghh dba aXL -iDp -gFO -twu -cXH -cXH -sTU -kHs -kHs -sTU -sTU -xiI -dth +ssM +tcb +vOz +wqA +wqA +vlk +jLr +jLr +vlk +vlk +ukc +saU apz aqg aqg asa -tQJ -uSK -uSK -rDT -rDT -rDT -rDT -rDT -rDT -rDT -rDT -rDT -fsj +kuj +tGb +tGb +xdC +xdC +xdC +xdC +xdC +xdC +xdC +xdC +xdC +xjl dTs dTs dTs @@ -64810,62 +64810,62 @@ dTs dTs blZ blZ -tom -vdU -lUP -rGx -oRE -tVj +vnL +pqq +uVN +nmg +hzO +gNZ blZ -qEw -nsd -nsd -sKf -tPy -tPy -nsd +llu +ejg +ejg +nzP +veB +veB +ejg bLz -rEt -hpW -eKC -rEt -kxH -kxH -rEt -xWJ +hWI +ubg +xRo +hWI +faW +faW +hWI +mIe brQ bpJ bMI bNm -jkD -lhy -heC -lhy -lhy -lhy -heC -lhy -lxA -mei -wQI -lhy +iLa +iMG +qMP +iMG +iMG +iMG +qMP +iMG +flp +wHF +wVI +iMG bTt -nGy -evP -jAZ -kTN -pOl -txg +ghI +nJR +ruT +jVq +qPQ +xji bTt mAZ -tXJ +tRR qqR bJE bJE che -vFh -oJa -oJa +iwl +dFl +dFl chJ dTs dTs @@ -64873,42 +64873,42 @@ dTs dTs dTs dTs -lmc -lmc +gMm +gMm dTs dTs -rlF +vtG beC dTs dTs dTs dTs aNH -xhe -ixI +umB +kZL bvD bBy bGw bBy -vTL -rJM +qJf +iBM bNw bNw bNw -rQC -rQC -rQC +aRG +aRG +aRG bNw bNw dTs dTs -lmM -qQT +nhN +tmw dTs dTs -nNV -lmM -gVu +iup +nhN +mcI dNS dNS dNS @@ -64918,7 +64918,7 @@ dTs dTs dTs dTs -mTx +ibn doE cuM dVb @@ -64927,10 +64927,10 @@ dFo doE doE cJd -qZx -uxi -uxi -qBK +suf +rMa +rMa +vzg cJd doE doE @@ -64940,35 +64940,35 @@ doE doE doE doE -bNV +uIt doE bpY -rrv -xuf -lcX -vaz -fVT +kaz +wHb +tBt +qij +ncW bpY -vLj +gtQ cjf cME cOi bdP cZB -gDf -lsR -vkt -mmL -nsh -tlD -ukl -fAc -nsh -nsh -msK -opA -ukl -jGS +loo +hOl +kPk +tIH +knj +jdg +oDa +aCq +knj +knj +dAs +qqO +oDa +gIk cZB dTs dTs @@ -64997,23 +64997,23 @@ dTs dTs dTs aVm -wfQ +dtV aWq aWq aWq aXL -lCE -gFO -twu -rLl +gJp +tcb +vOz +uzh aZR -eUi -udX -udX -jlt +hqr +xuu +xuu +mzS ban -nqy -hgF +oiC +qwD apz aqg aqg @@ -65059,19 +65059,19 @@ bLz brF brF brF -lsi +nTh bCW bEq -rEt -rEt -ooi +hWI +hWI +kXA bJh -xWJ +mIe brQ bsC bMJ bNm -fbt +fRs bPb bPb bRy @@ -65079,20 +65079,20 @@ bRy bRy bPb bPb -txl -oEA +lJR +pdl dgM -jje -wIw -ijs -vWS -fPG -kaz -lEo -jwO +vfH +nZw +pVf +hSs +jrw +qJG +nuD +ntB bTt mAZ -tXJ +tRR qqR bJE aEH @@ -65100,7 +65100,7 @@ aEK bJD bJD cfg -vLV +iuT dTs dTs dTs @@ -65118,14 +65118,14 @@ dTs dTs dTs aNH -led -fRp -oWk -oWk -oWk -liC -xyx -rJM +exM +kyk +qTv +qTv +qTv +hNc +eAP +iBM aNH dTs bNw @@ -65137,10 +65137,10 @@ dTs dTs dTs dNS -lAv -qQT -nNV -gVu +lqn +tmw +iup +mcI dNS cNs dNS @@ -65151,8 +65151,8 @@ dNS dTs dTs dTs -jtR -xaG +nZX +qmL doE cuM crx @@ -65161,10 +65161,10 @@ dFo cNQ doE cJd -uzz -yjv -uxi -uxi +ekB +iSC +rMa +rMa cJd doE doE @@ -65174,35 +65174,35 @@ doE doE doE doE -bNV +uIt doE bpY -nln -vaz -lcX -vaz -fVT +jAB +qij +tBt +qij +ncW bpY -mhX +kka cjf cME cOi bdP cZB -kVH -gDf -nHN -fiV -nsh -tlD -opA -opA -nsh -gDf -jQb -jQb -ukl -gDf +xRl +loo +kZN +gKq +knj +jdg +qqO +qqO +knj +loo +nEZ +nEZ +oDa +loo cZB dTs dTs @@ -65236,18 +65236,18 @@ aWq aWU aXo aVm -wBF -gFO -twu -qDF +ict +tcb +vOz +uYS aWY ban -dLx +iyW ban ban bbC aiZ -vAf +uMP apz aql ara @@ -65265,7 +65265,7 @@ aDb aqg aqg asa -dtA +gOy dTs dTs dTs @@ -65283,50 +65283,50 @@ dTs dTs dTs bqM -sQg -gMi -sQg -sQg -sQg -sQg -sQg -gMi -sQg -sQg -sQg +oMC +uIl +oMC +oMC +oMC +oMC +oMC +uIl +oMC +oMC +oMC bKv bxX -sQg -sQg -sQg -sQg -kKy +oMC +oMC +oMC +oMC +mri brQ bpJ bMI bNm -jkD +iLa bPb -xET -syR -tHk -tHk -pSB +gZH +wlX +iMx +iMx +dGc bPb -ixp -stz +mVk +bvC dgU -keY -vei -qyr -evP -jAZ -ibn -sYe -exA +gaP +xDT +iEU +nJR +ruT +biR +gvZ +omo bTt mAZ -tXJ +tRR qqR edo aEJ @@ -65334,7 +65334,7 @@ aEO aEH aEI che -vLV +iuT dTs dTs dTs @@ -65354,10 +65354,10 @@ dTs aNH aNH aNH -urO -urO -urO -urO +nDz +nDz +nDz +nDz aNH aNH aNH @@ -65372,8 +65372,8 @@ dTs dTs dTs cNs -lAv -gVu +lqn +mcI dNS dNS dNS @@ -65385,8 +65385,8 @@ dNS dTs dTs dTs -mRL -vkl +uXd +lUq doE cuM crx @@ -65408,35 +65408,35 @@ doE doE doE doE -bNV +uIt doE boP -myp -vaz -lcX -lWn -lIL +dmv +qij +tBt +uFm +iKH boP -maf +qcB cjf cME cOi bdP cZB -gDf -gDf -nHN -nsh -nsh -gDf -nsh -nsh -nsh -gDf -nsh -gDf -gDf -gDf +loo +loo +kZN +knj +knj +loo +knj +knj +knj +loo +knj +loo +loo +loo cZB cZB cZB @@ -65470,18 +65470,18 @@ aWq aWV djg aXL -lCE -gFO -twu -qDF +gJp +tcb +vOz +uYS aWY -jWw -xXw -deL -jag +vDf +qmH +lZp +sOe bbC aiZ -vAf +uMP apz aqg aqg @@ -65499,8 +65499,8 @@ aDc aqg aqg asa -oti -tSq +hSx +iaE dTs dTs dTs @@ -65515,8 +65515,8 @@ dTs dTs dTs dTs -mgC -kyQ +uZv +uzz brP bpI bpI @@ -65528,8 +65528,8 @@ bpI bpI bpI bpI -idt -idt +isN +isN bpI bpI bpI @@ -65539,28 +65539,28 @@ brR bpJ bMI bNm -jkD +iLa bRy -jKE -isq -tgT -isq -xfH +vUY +ljF +jQu +ljF +hSB bRy -ixp -pSQ +mVk +uha bQb -lhy +iMG bTt -oFj -liW -jAZ -iYh -qJh -oNF +joW +tDe +ruT +uss +vOX +tup bYE mAZ -tXJ +tRR qqR bJE aEI @@ -65568,7 +65568,7 @@ aEQ aFy bJE che -vLV +iuT dTs dTs dTs @@ -65618,8 +65618,8 @@ dNS dNS dTs dTs -jtR -xaG +nZX +qmL cMF doE cuM @@ -65642,43 +65642,43 @@ doE doE doE doE -pUP +qNK boP boP boP -vaz -qQZ +qij +muP boP boP boP -mhX +kka cjf cNj bQt bdP -pHm -gDf -nsh -tFT -jca -jca -uTy -jca -jca -jca -jca -jca -jca -fDM -fDM -fDM -fDM -oxo -fDM -cWY -fDM -oxo -nSF +meZ +loo +knj +xEi +kEL +kEL +kqn +kEL +kEL +kEL +kEL +kEL +kEL +vZu +vZu +vZu +vZu +iql +vZu +obJ +vZu +iql +iFv cZB acu "} @@ -65699,23 +65699,23 @@ dTs dTs dTs aVm -uzO +lxZ dba aWV djh aXL -ozJ -gFO -twu -qDF +bsW +tcb +vOz +uYS aZP -fRf -sTh -udX -vpS +iem +xRT +xuu +hTh bbC aiZ -vAf +uMP aIK auz auz @@ -65733,7 +65733,7 @@ aIJ aqg aqg asa -oti +hSx aiZ dTs dTs @@ -65749,8 +65749,8 @@ dTs dTs dTs dTs -mgC -kyQ +uZv +uzz brQ bpJ bpJ @@ -65762,8 +65762,8 @@ bpJ brS bpJ bpJ -idt -idt +isN +isN bpJ brS bpJ @@ -65773,28 +65773,28 @@ bpJ bsC bMJ bNm -jkD +iLa bRy -jwc -mnZ -iNl -uKs -xfH +ygO +mYV +mIz +obK +hSB bRy -lhy -pSQ +iMG +uha deJ -lhy +iMG bYE -nrZ -liW -jAZ -qJj -noR -oeS +viL +tDe +ruT +svs +kbi +gAz bTt mAZ -tXJ +tRR qqR bJE aEH @@ -65802,7 +65802,7 @@ chh aFy aFE che -vLV +iuT agd dTs dTs @@ -65853,7 +65853,7 @@ dTs dTs dTs dTs -prg +ewJ czv cuO cuM @@ -65872,11 +65872,11 @@ crw crw crw cKq -uSF +eGW doE cDc doE -rJj +nee boP bsg buc @@ -65885,34 +65885,34 @@ cnp coz cqv boP -mhX +kka cjf cNj bQt bdP -pHm -gDf -nsh -nsh -gDf -gDf -rKD -nsh -fiV -nsh -gDf -nsh -nsh -jtx -nsh -gDf -gDf -gDf -gDf -nsh -gDf -gDf -wuz +meZ +loo +knj +knj +loo +loo +ghl +knj +gKq +knj +loo +knj +knj +lxS +knj +loo +loo +loo +loo +knj +loo +loo +win cZB acu "} @@ -65937,39 +65937,39 @@ duU aWv aWX aXr -xne -rqQ -fre -iMI -uzh +xWY +lSR +wET +vGN +gut aZP -fyG -uOe -jiJ -otD +ome +hob +fgp +wDz bbC aiZ -kZX -gnB -gnB -gnB -gWR -uSK -uSK -uSK -ujp -ujp -ujp -ujp -lNR -qFW +pdC +ofj +ofj +ofj +oMA +tGb +tGb +tGb +xIO +xIO +xIO +xIO +jQD +gHN apz aql ara asa -oti -tzw -nzJ +hSx +oXp +jGT dTs dTs dTs @@ -65982,9 +65982,9 @@ dTs dTs dTs dTs -pcf -kDM -kyQ +rrl +qbq +uzz brQ bpJ btz @@ -65996,8 +65996,8 @@ btz bxo btz btz -hYz -hYz +vYK +vYK btz bxo btz @@ -66007,28 +66007,28 @@ btz btz btz buS -uek +lUR bRy -jwc -hrl -hDo -vBz -xfH +ygO +brJ +klj +uUX +hSB bRy -ixp -ubq +mVk +jVO deJ -lhy +iMG bYE -mnr -liW -xpL -dzS -evP -xqO +vmA +tDe +eTz +fGU +nJR +jPr bTt mAZ -tXJ +tRR qqR edo aEJ @@ -66036,7 +66036,7 @@ aER aEI bJE che -vLV +iuT agd dTs dTs @@ -66050,9 +66050,9 @@ dTs dTs dTs cQx -eiX +hWg cQx -eiX +hWg cQx dTs dTs @@ -66086,8 +66086,8 @@ dNS dNS dNS dTs -uQc -vkl +wKf +lUq doE doE cuM @@ -66110,43 +66110,43 @@ cBY drL drO czv -rJj +nee boP -utc +hiw buc cmG cnq cmG buc boP -vLj +gtQ cjf cNj cOi cUz -pHm -gDf -nsh -gDf -gDf -nsh -nsh -nsh -gDf -mUy -nsh -nsh -gDf -gDf -gDf -gDf -nsh -nsh -gDf -nsh -gDf -gDf -wuz +meZ +loo +knj +loo +loo +knj +knj +knj +loo +ldk +knj +knj +loo +loo +loo +loo +knj +knj +loo +knj +loo +loo +win cZB acu "} @@ -66172,39 +66172,39 @@ aWw aWq aWq aXL -iDp -eSk -xOj -uzh +ssM +jQi +jUb +gut aWY -eop -lrS -nhN -jNA +orM +pWS +mcD +oGs bbC aiZ aiZ aiZ aiZ aiZ -nwJ -rNd -rNd -rNd -rNd -rNd -rNd -rNd -suz -dth +nGc +lwj +lwj +lwj +lwj +lwj +lwj +lwj +hjI +saU apz aqg aqg asa -oti -tSq -fAY -gZg +hSx +iaE +dAy +fzc dTs dTs dTs @@ -66218,7 +66218,7 @@ dTs dTs bkU bpC -sOC +mFL brQ bpJ btz @@ -66230,8 +66230,8 @@ btC btC btC btC -hYz -hYz +vYK +vYK btC btC btC @@ -66241,28 +66241,28 @@ btC btC btC buU -uek +lUR bPb -kFb -sNY -hxR -veL -vUY +pbt +uYd +gKv +gJZ +xbO bPb -lhy -ubq +iMG +jVO deJ -lhy +iMG bYE -jni -evP -liW -dzS -liW -xqO +fyj +nJR +tDe +fGU +tDe +jPr bTt mAZ -tXJ +tRR qqR bJE aEI @@ -66270,7 +66270,7 @@ chh bJE aEI che -vLV +iuT dTs dTs dTs @@ -66284,9 +66284,9 @@ dTs dTs dTs cQx -xKr +fMZ cQx -xKr +fMZ cQx dTs dTs @@ -66307,7 +66307,7 @@ dTs dTs dTs dTs -gVu +mcI dNS dNS dNS @@ -66344,43 +66344,43 @@ drL uTo drT cDc -rJj +nee boP -sVs +sXn buc cmL cnu coA buc bpY -vLj +gtQ cjf cME cOi cUz -pHm -uMz -tRJ -tRJ -nPj -npK -nsh -gDf -xtv -tRJ -tRJ -nPj -nPj -nPj -nPj -nPj -tzP -nPj -tRJ -tRJ -tRJ -nPj -oeV +meZ +oBP +jeC +jeC +nhH +ugv +knj +loo +oDy +jeC +jeC +nhH +nhH +nhH +nhH +nhH +dlK +nhH +jeC +jeC +jeC +nhH +wTT cZB acu "} @@ -66401,19 +66401,19 @@ dTs dTs dTs aVm -wfQ +dtV aWq aWq aXs aVm -lCE -gFO -hqN -efD +gJp +tcb +qyb +pml aWY aWY aZP -ldq +kUS aZP aWY aWY @@ -66429,15 +66429,15 @@ bdg bdg bdg bdf -suz -dth +hjI +saU apz aqg aqg asa -oti +hSx aiZ -tzw +oXp dTs dTs dTs @@ -66452,51 +66452,51 @@ dTs dTs bkU bpF -eKC +xRo brQ bsC btA buS -rXv -hhB -hhB -oLf -hhB -hhB -hhB +tKe +wji +wji +uxw +wji +wji +wji bCZ bEu -hhB -hhB -hhB -oLf -hhB -hhB -hhB -hhB -oLf +wji +wji +wji +uxw +wji +wji +wji +wji +uxw bOj bPb bPb cbg -jad +mMh cbg bPb bPb -lhy -ubq +iMG +jVO deJ -lhy +iMG bYE -jeo -evP -dsz -qJo -thD -ktm +fUM +nJR +uYP +vTr +qOg +gEl bYE yll -tXJ +tRR qqR bJE aEI @@ -66504,8 +66504,8 @@ chg bIH bIH cfh -vLV -fPC +iuT +ghR dTs dTs dTs @@ -66518,9 +66518,9 @@ dTs dTs cQx cQx -ecC -dtO -dtO +hol +mJc +mJc cQx dTs dTs @@ -66551,10 +66551,10 @@ dNS dNS dNS dNS -loQ -hMd -hMd -mTx +qVb +jKE +jKE +ibn doE doE doE @@ -66578,7 +66578,7 @@ dsE uTo drT doE -rJj +nee boP buc buc @@ -66587,33 +66587,33 @@ cnz cmG buc bpY -vLj +gtQ cjf cME cOi cUz -cwh -wuz -nsh -gDf -gDf -mIU -gDf -gDf -wuz -kgo -gDf -lGf -gDf -kgo +mEo +win +knj +loo +loo +fZN +loo +loo +win +oTI +loo +mdB +loo +oTI cZB cZB nEM aNY -gqh -gqh -gqh -gqh +xuZ +xuZ +xuZ +xuZ aNY nEM acu @@ -66640,22 +66640,22 @@ aVm aVm aVm aVm -wBF -gFO -twu -nyv -pIQ -tnY -jpr -cxd -xVD -nlF -nlF -tnY -tnY -rVl +ict +tcb +vOz +xzp +ylO +eLm +ico +qYX +pKh +nsg +nsg +eLm +eLm +gXF bdf -oXM +iQG bdC bdC beE @@ -66663,15 +66663,15 @@ bdC dKe bfw bdf -suz -dth +hjI +saU apz aql ara asa -oti +hSx aiZ -vST +oYP dTs dTs dTs @@ -66686,21 +66686,21 @@ bkU bkU bkU avw -eKC +xRo brQ bpJ btz buS -knH +tHt bxq bxq bxq bxq bxq -oYW +xkx bDa bEv -oYW +xkx bGX bGX bGX @@ -66711,33 +66711,33 @@ bPx bHc bHc bHc -xYk -vLT -flQ -vLT -oJp +bvO +hMt +olX +hMt +jDM bPx -lhy -ubq +iMG +jVO deJ -lhy +iMG bYE bYE bTt -dsz -oHK +uYP +uJC bTt bYE bYE mAZ -tXJ +tRR qqR edo aEJ aFs -dFz -vZU -vZU +xPc +viv +viv chJ adt adt @@ -66751,10 +66751,10 @@ dTs dTs dTs cQx -kkP -dtO -dtO -itP +mZt +mJc +mJc +peW cQx dTs dTs @@ -66774,7 +66774,7 @@ dTs dTs dTs dTs -wBE +erV dNS cZw xgA @@ -66782,13 +66782,13 @@ lrY dNS dNS dNS -loQ -hMd -hMd -kTl +qVb +jKE +jKE +jja dTs dTs -nar +boU doE doE doE @@ -66812,7 +66812,7 @@ duc ebN drN doE -rJj +nee boP boP buc @@ -66821,25 +66821,25 @@ buc buc buc bpY -cNT +peI cjf cNj cOi cUz -cwh -nHN -gDf -gDf -gDf -mIU -gDf -gDf -wuz -jiT -gDf -jiT -gDf -jiT +mEo +kZN +loo +loo +loo +fZN +loo +loo +win +eCB +loo +eCB +loo +eCB cZB dTs nEM @@ -66873,103 +66873,103 @@ dTs dTs dTs aWY -oPC -lCE -cxd -twu -iPZ -hqN -hqN -twu -cxd -cXH -wrW -nnC -twu -twu -xVD +qGP +gJp +qYX +vOz +fmt +qyb +qyb +vOz +qYX +wqA +vRO +etI +vOz +vOz +pKh bdg bdC -qxD -sos -luf -veC +rCx +fgT +ePd +tDO bdC bfx bdg -suz -dth +hjI +saU apz aqg aqg asa -oti +hSx aiZ -ikG -jKe +nmZ +knO rTV rTV rTV dTs bkU bkU -szd -mYJ -mYJ -aXH -lRJ +rAV +hrr +hrr +hTi +hDw bkU avt -eKC +xRo brQ bpJ btz buS -uek +lUR bxq dTs dTs dTs bxq -oYW -sRG -mcC -xYf +xkx +sUj +mwM +nuJ bGX -uLU -nIc -rDA -tZz -mbt -gst -kHj -uKh -xMO -dsZ -luB -oWU -lHP -luB -lYb -edb +jMK +tlW +sNw +hgR +dzL +eFE +uXv +xLQ +kFb +qPA +mhB +sgZ +mRO +mhB +gvf +sLs dcS deJ -ixp -ixp -uEC -ixp +mVk +mVk +qal +mVk dfS dLa -lhy -lhy -lhy +iMG +iMG +iMG mAZ -tXJ +tRR qqR aEI aEI che -iAT +veu lOM ciN cir @@ -66985,10 +66985,10 @@ dTs dTs dTs cQx -kkP -dtO -uMu -dtO +mZt +mJc +erA +mJc cQx dTs dTs @@ -67015,14 +67015,14 @@ uaK xgA dNS cNP -loQ -jGE -rlk -rlk -rlk -dTs -jtR -qqZ +qVb +lHR +tpi +tpi +tpi +dTs +nZX +mme drO cyQ cBY @@ -67046,8 +67046,8 @@ csE cDc doE doE -rJj -lKu +nee +xWT boP bpY bpY @@ -67055,25 +67055,25 @@ bpY bpY boP boP -oiL +yfk cjf cNj bQt cUz -gcI -wuz -lxn -xvy -xvy -mIU -gDf -gDf -wuz -lar -gDf -kgo -gDf -jiT +iVs +win +rqt +pOO +pOO +fZN +loo +loo +win +vDI +loo +oTI +loo +eCB cZB dTs nEM @@ -67092,9 +67092,9 @@ dTs dTs dTs dTs -pCz -mgi -wyH +wjP +qBP +rpT asl aGA aGA @@ -67107,106 +67107,106 @@ aGA aGA aGA aWY -mVk -nFp -jsz -pNK -llZ -pNK -pNK -pNK -hAj -dmt -upD -gVw -pNK -pNK -pNK -emC +gCR +xNW +iof +lZr +bAV +lZr +lZr +lZr +rLj +fpS +eOs +xDA +lZr +lZr +lZr +vsQ bAE -nXg -jmi -phB -pAf +mHe +sdC +oSa +yfe bdC bfy bdg -suz -dth +hjI +saU apz aqg aqg amt -oti +hSx aiZ aiZ tPP -hcK -ePm +sCv +rPF rTV dTs bkU -pkm -vWP -ltQ -ltQ -ltQ -ltQ -uxl +hgG +nmY +qQW +qQW +qQW +qQW +diZ avt -eKC +xRo brQ bsC btA buS -uek +lUR bxq dTs dTs dTs dTs -oYW -sRG -mcC -oYW +xkx +sUj +mwM +xkx bPx -sqE -skk -vLT -vLT -vLT -lBj -vLT -vLT -gTd -tDd -tDd -rDt -cXO -qCp -qCp -qwS +vZQ +tgE +hMt +hMt +hMt +nNp +hMt +hMt +oNP +sBw +sBw +fOu +fYU +oUm +oUm +kqs bWg deJ -oho -fjJ -fjJ -fjJ +jRY +qaX +qaX +qaX bQb dLb -fjJ -oho -tWi +qaX +jRY +rCz cdT bJC -owx -gQU -gQU -gQU +vSL +qZO +qZO +qZO bJC chJ -gtu -gJF +kQD +pdF adt adx ama @@ -67219,10 +67219,10 @@ adw adw adw cQx -kkP -dtO -uWK -dtO +mZt +mJc +nwi +mJc cQx dTs dTs @@ -67249,14 +67249,14 @@ uaK iTX dNS dNS -xJA -rlk -rlk -rlk -rlk +ejs +tpi +tpi +tpi +tpi dTs dTs -mQw +edW uTo drO doE @@ -67264,8 +67264,8 @@ cuM crx crx csG -jzz -xVB +iXs +rlb rHw cJQ cJQ @@ -67274,34 +67274,34 @@ cJQ rHw rHw rHw -wgE -eOm +lXv +frh doE cuO doE dkZ -lkx -lKu -lKu -lKu -lKu -lKu -lKu -lKu +jPK +xWT +xWT +xWT +xWT +xWT +xWT +xWT cZB cIY -nzE -jhb -gLn -cUp +evB +wnN +syT +hVw cZB cWk cWk cWk cZB cWk -gDf -tig +loo +lrr cWk cZB cWk @@ -67325,118 +67325,118 @@ acu dTs dTs dTs -xiy -eou +qDn +etf ach ahD agE aGA -vRN -hQK -ool -ool -ooK -ool -hQK -vbQ +xbM +pNj +qpB +qpB +pZc +qpB +pNj +xKq aGA aWY -hUr -sGq -vUn -rLl -odf -odf -odf -odf -odf -dqX -iDp -gFO -twu -twu -rLl +xXf +jQk +usv +uzh +lCN +lCN +lCN +lCN +lCN +dtg +ssM +tcb +vOz +vOz +uzh bdg bAI -rYc -eBp -lMR -kVB +vlb +nDD +wle +lwC bdC -vKI +wTz bdg -suz -dth +hjI +saU apz aql ara asa -oti +hSx aiZ bcy amQ ett -glh -ylH +nQa +yjK dTs bkU -jdR -wgP -ltQ -ltQ -ltQ -ltQ +lqz +hmV +qQW +qQW +qQW +qQW bkU avt -eKC +xRo brQ bpJ btz buS -uek +lUR bxq dTs dTs dTs dTs -vsR -doF +lNf +xsC bEx -eQi -uir -ohe -ohe -qCp -dyE -fjR -pZo -xcY -tYb -iLV -qCp -qCp -fAZ -vLT -mjf +nqY +rAG +jaj +jaj +oUm +xQV +fWI +kjC +hmj +wHA +vKN +oUm +oUm +eGA +hMt +lMA bPx -lhy -lhX -fhM -fhM -rFB -rFB -rFB -fhM -nnZ -vsy -dKD -gGu +iMG +tdd +shN +shN +qgF +qgF +qgF +shN +ohe +tFU +gQI +nvK cdU ceK -wFu -uOp -gQU -gQU +jiS +qIR +qZO +qZO bJC chJ dTs @@ -67449,18 +67449,18 @@ adt cec cgy cij -qyO -jGP -qYV +hFV +ePo +wKR cQx cQx cQx -moe +qWo cQx cQx lNu lNu -skQ +txu dTs dTs dTs @@ -67475,22 +67475,22 @@ dTs dTs dTs dTs -rrX +ryY xdj dAl gVm iTX uRz dNS -loQ -kTl -qXg -rlk -rlk -rlk +qVb +jja +ogc +tpi +tpi +tpi dTs dTs -mQw +edW uTo drT doE @@ -67498,23 +67498,23 @@ cuM crx crx csG -qvQ -xVB +rYG +rlb rHw rHw rHw cJX rHw -mgF +oPj rHw rHw -wgE -seM +lXv +hVq doE cKp doE doE -wak +eps cIi cRM cRM @@ -67528,15 +67528,15 @@ dbZ cPn cKL cPo -lKu -eit -knN -knN -knN -knN -knN -kLn -fok +xWT +sqZ +jUj +jUj +jUj +jUj +jUj +rTl +uBE dTs dTs dTs @@ -67558,26 +67558,26 @@ acu acu dTs dTs -kDV -nHR +eNL +olb ach ach ahD awK aGA -pWo -rxQ -rxQ -rxQ -rxQ -rxQ -rxQ -oSw +tUx +eBU +eBU +eBU +eBU +eBU +eBU +xcb aWY aWY aWY aWY -tNB +oUH aWY aZC aZC @@ -67585,93 +67585,93 @@ aZC aZC aZC aZC -lCE -cxd -twu -twu -vcr +gJp +qYX +vOz +vOz +jYJ bdf bdF -mNq +oOR bBl beI bdC bdC -rTw +qCu bdf -suz -dth +hjI +saU apz aqg aqg asa -xFr -gtV +mvO +gop aiZ ruS ruS -uAa -kJK -vzT +ipO +sLE +wTf bkU blC -crt -lxa +eeI +ycP bkU -juD +vdX bkU bkU avw -eKC +xRo brQ bpJ btz buS -uek +lUR bxq dTs dTs dTs -vwY -oFG -eEd +tHv +fXA +shW bEw -jpF -vLT -vLT -vLT -dei -tDd -gTd -wtc -eoK -gJO -dEd -eNB -vLT -tDd -twY -wrJ +gJu +hMt +hMt +hMt +xwf +sBw +oNP +swo +qOx +hwM +saw +oMV +hMt +sBw +jbc +uGN bHc -lhy -lhy -heC -rif -hza -hza -hza -hza -hza -hza -hza -vNe +iMG +iMG +qMP +vsv +qIW +qIW +qIW +qIW +qIW +qIW +qIW +rph cdV -vpl +sdU cfj wzl bJE che -jpm +iou cir atr dTs @@ -67683,9 +67683,9 @@ adt ced cgy cik -mlU -kjs -xrC +xej +fUK +hyt cij cgy cgy @@ -67712,19 +67712,19 @@ dTs dTs dNS wpW -loQ -tgI -hMd -hMd -kTl -rlk -rlk -rlk -rlk +qVb +wEz +jKE +jKE +jja +tpi +tpi +tpi +tpi dTs dTs dTs -fKm +nOg uTo drT doE @@ -67732,8 +67732,8 @@ cuM cvJ crz csG -qvQ -xVB +rYG +rlb rHw cJS rHw @@ -67742,13 +67742,13 @@ xCM kcH rHw rHw -wgE -seM +lXv +hVq doE cKr doE doE -wak +eps cUl crx aDI @@ -67762,14 +67762,14 @@ dcM cwF dvo csG -lKu -xSl +xWT +rHc jcK -lyI -lyI -lyI -lyI -lpS +tAn +tAn +tAn +tAn +iIv dTs dTs dTs @@ -67792,38 +67792,38 @@ acu acu dTs dTs -kDV -nHR +eNL +olb ach ach ahD adV aGz -tvP -rxQ -rxQ -iFT -iFT -rxQ -rxQ -nmK +mJq +eBU +eBU +tXw +tXw +eBU +eBU +wfg aWY -hTD -vWO -wjW -wjW -wjW +ygz +ryB +vyl +vyl +vyl aZC -mxi -kyy -meV -uKA +qrm +oBS +vOV +wcq aZC -lCE -cxd -twu -twu -qDF +gJp +qYX +vOz +vOz +uYS bdf bdf bdf @@ -67833,57 +67833,57 @@ bdg dKi bdg bdf -suz -dth +hjI +saU akp aqg aqg asa -tQJ -iuH -vfi -qpe -qpe -qpe -qpe -mDo +kuj +rip +lsC +ltB +ltB +ltB +ltB +uHr bkU -vtZ -tfU -tfU -gIu -tfU -nXA +qvf +llO +llO +hLI +llO +rWG bkU -wNP -ncJ +frC +uuW brQ bsC btA buS -knH +tHt bxq dTs dTs -mSO -vwY -oFG -eEd -mcC -oYW +opl +tHv +fXA +shW +mwM +xkx bPx -xNG -skk -vLT -tDd -gTd -tDd -skk -qdw +mJW +tgE +hMt +sBw +oNP +sBw +tgE +cfi bHc bHc -vLT -icK +hMt +pUG bHc bLq bLq @@ -67891,21 +67891,21 @@ bVq bVq bVq bVq -qNu -qNu -qNu -qNu -wVi +hGr +hGr +hGr +hGr +iLp afu afd -vSc +grN afC -oyQ +hjp cfj cfS cgz che -vLV +iuT agd atr atl @@ -67917,19 +67917,19 @@ adt ceF cgA cik -qQK -ems -tXt +kLb +jXA +bon cij cgA cQR cRt cRH cRY -bWd -uma -uma -yhA +iaQ +ufs +ufs +ehn dTs dTs dTs @@ -67945,20 +67945,20 @@ dTs dTs dTs dNS -loQ -kTl -rlk -rlk -rlk -rlk -rlk -rlk -rlk -rlk +qVb +jja +tpi +tpi +tpi +tpi +tpi +tpi +tpi +tpi dTs dTs dTs -ugr +mDQ duc drN doE @@ -67966,8 +67966,8 @@ cuM crx crx csG -qvQ -xVB +rYG +rlb rHw cJU rHw @@ -67976,13 +67976,13 @@ rHw rHw cJS rHw -wgE -seM +lXv +hVq doE cKr doE doE -wak +eps cUl crx cwD @@ -67996,13 +67996,13 @@ dcP dvo dvo csG -lKu -xSl -lSo +xWT +rHc +umK xIC xIC xHa -gXT +wFK dTs dTs dTs @@ -68026,49 +68026,49 @@ acu acu dTs dTs -kDV -nHR +eNL +olb ach ach ahD adV aGz -tvP -rxQ -rxQ -iFT -iFT -rxQ -rxQ -nmK +mJq +eBU +eBU +tXw +tXw +eBU +eBU +wfg aWY aWY aWY -rsG -wjW -wjW +iqk +vyl +vyl aZC -eQU -ffm -ffm -ffm +pIy +gnI +gnI +gnI aZC -ozJ -eNF -nnC -twu -nyv -nlF -nlF -tFf -nlF +bsW +tOm +etI +vOz +xzp +nsg +nsg +qfm +nsg aZP -rNd -rNd -rNd -rNd -suz -dth +lwj +lwj +lwj +lwj +hjI +saU apz akN ara @@ -68081,44 +68081,44 @@ auy auy auy blE -qLM +eVs blE blE blE blE blE blE -qLM +eVs blE bpI brR bpJ btz buS -uek +lUR bxq bxq -rZq -rZq -iim -oFG -eEd -egy -oYW +uFt +uFt +lQa +fXA +shW +vNq +xkx bGX -iuz -skk -iBe -pSo -cMh -tDd -skk -uya +mEy +tgE +ssk +lJJ +gqp +sBw +tgE +mAu bHc -xYk -tDd -tDd -ugL +bvO +sBw +sBw +nRf bLq dTs dTs @@ -68129,17 +68129,17 @@ dTs agO agO agO -kjY +kAq afd afd -vSc +grN afC -oyQ +hjp cfj wzl bJE che -vLV +iuT agm atr atl @@ -68151,19 +68151,19 @@ adt ceH cgy cil -wGv -fZy -mBj +pqk +nEA +mCd cil cgA cQS cRs cQR cgy -nQy -fAU +kCk +kyD cvp -xyi +soT dTs dTs dTs @@ -68180,28 +68180,28 @@ dTs dTs dTs dTs -rlk -rlk -rlk -rlk -rlk -rlk +tpi +tpi +tpi +tpi +tpi +tpi dTs dTs dTs dTs dTs dTs -fPQ -xgz +qHA +uWh doE doE cuM crx crx csG -qvQ -xVB +rYG +rlb rHw cJV rHw @@ -68210,13 +68210,13 @@ rHw rHw cJU rHw -wgE -seM +lXv +hVq doE cKr doE doE -wak +eps cUl crx cwD @@ -68230,13 +68230,13 @@ cMJ cMJ cMJ cTc -lKu -xSl -lSo +xWT +rHc +umK xIC xIC -gXT -wPD +wFK +vUU dTs dTs dTs @@ -68260,49 +68260,49 @@ acu acu dTs dTs -kDV -nHR +eNL +olb ach ach -pPz -tRh +rnR +tCz aGz -tvP -rxQ -rxQ -rxQ -rxQ -rxQ -rxQ -nmK +mJq +eBU +eBU +eBU +eBU +eBU +eBU +wfg aWY -hTD -vWO -ooC -vXX -ooC +ygz +ryB +iHf +xlP +iHf aZC -lHR -vCc -umG -eqF -kJZ -gcj -llS -gRt -hqN -twu -twu -twu -twu -cXH -oun -kuo -snL -xAI -qrP +mOc +fNJ +jAv +djj +fkP +eLA +ubL +ffx +qyb +vOz +vOz +vOz +vOz +wqA +nFm +fvX +nKA +nvD +bcG bgh -dth +saU apz aki aqg @@ -68315,44 +68315,44 @@ aqg aqg aDb bkW -poG +vlV blF bkW bkW blF bkW bkW -poG +vlV bkW bpJ brS bpJ btz buS -uek -oYW -xww -nsE -nsE -nsE -kXg -eEd -egy -rxh +lUR +xkx +jIh +vkf +vkf +vkf +wVG +shW +vNq +jfy bPx -urG -skk -tDd -uUS -pIs -tDd -qVg -hPA +uot +tgE +sBw +nFY +eFR +sBw +iFb +mCF bHc -xYk -vLT -tDd -tqJ +bvO +hMt +sBw +hCo bLq dTs dTs @@ -68364,21 +68364,21 @@ dTs dTs dTs dTs -vkM -vkM -idr +hyX +hyX +jtg afC -oyQ +hjp cfj wzl bJE che -vLV +iuT dTs dTs dTs adt -goc +jIj aqc caW adt @@ -68396,9 +68396,9 @@ cRI adw lNu lNu -vpy -xyi -fAJ +xZu +soT +ezf dTs dTs dTs @@ -68415,10 +68415,10 @@ dTs dTs dTs dTs -rlk -rlk -rlk -rlk +tpi +tpi +tpi +tpi dTs dTs dTs @@ -68427,15 +68427,15 @@ dTs dTs dTs dTs -xaG +qmL doE doE cuM cvJ crz csG -qvQ -xVB +rYG +rlb rHw rHw cJW @@ -68444,32 +68444,32 @@ rHw rHw cJV rHw -wgE -seM +lXv +hVq doE cKr doE doE -wak +eps cUl cvJ dmJ csG -lKu -lKu -lKu -lKu -lKu -lKu -lKu -lKu -lKu -lKu -xSl -lSo +xWT +xWT +xWT +xWT +xWT +xWT +xWT +xWT +xWT +xWT +rHc +umK tii xIC -hgV +sNe dTs dTs dTs @@ -68494,21 +68494,21 @@ acu acu dTs dTs -mpN -nHR +ooY +olb ach ach ach -jiV +pkw aGA -ogb -rxQ -noK -uRF -uRF -vUN -rxQ -oSw +nEk +eBU +duH +upA +upA +xOa +eBU +xcb aWY aWY aWY @@ -68516,27 +68516,27 @@ aWY aWY aWY aZC -ffm -jdA -ffm -ffm +gnI +tZu +gnI +gnI aZC -iDp -hng -xOj -hqN -twu -dMU -fOW -vtX -twu -cXH -tQJ -ljg -rHx +ssM +ptT +jUb +qyb +vOz +pVX +qRK +ioB +vOz +wqA +kuj +pxP +oqe bfK -ljg -oSf +pxP +umn apz aki aqg @@ -68549,44 +68549,44 @@ aqg aqg aDc bkW -poG +vlV blG bkW bkW blG bkW bkW -poG +vlV bkW bpJ bAr bpJ btz buS -jec -ycu -jdK -jdK -xVq -xVq -xVq +hCj +uof +tcj +tcj +dJM +dJM +dJM bXU -egy -rxh +vNq +jfy bPx -urG -skk -tDd -gJg -mgy -tDd -qVg -rAf +uot +tgE +sBw +tfo +vlK +sBw +iFb +uhO bHc -hMX -tDd -tDd -tuV +tlK +sBw +sBw +nRD bLq dTs dTs @@ -68600,14 +68600,14 @@ dTs dTs dTs aWd -ljN +tPs afE -oyQ +hjp cfj cfS cgz che -vLV +iuT dTs dTs dTs @@ -68628,11 +68628,11 @@ cQT cRA cij cRZ -iNn +rXa lNu -gEH -xyi -fAJ +hWU +soT +ezf dTs dTs dTs @@ -68649,9 +68649,9 @@ dTs dTs dTs dTs -rlk -rlk -rlk +tpi +tpi +tpi dTs dTs dTs @@ -68661,15 +68661,15 @@ dTs dTs dTs dTs -xaG +qmL doE doE cuM crx crx csG -qvQ -xVB +rYG +rlb rHw rHw rHw @@ -68678,32 +68678,32 @@ rHw rHw rHw rHw -wgE -seM +lXv +hVq doE cKr doE doE -wak +eps cUl crx cwD csG -lKu -lKu -lKu -lKu -lKu -lKu -lKu -lKu -lKu -lKu -xSl -lSo +xWT +xWT +xWT +xWT +xWT +xWT +xWT +xWT +xWT +xWT +rHc +umK xIC -gXT -xzz +wFK +idY yii dTs dTs @@ -68727,48 +68727,48 @@ acu (79,1,1) = {" acu dTs -kDV -xiy -eou +eNL +qDn +etf ach ach ach axJ aGz -hOs -rxQ -kiY -nju -nju -iNG -rxQ -pAF +lbZ +eBU +kOa +gaJ +gaJ +wvE +eBU +vMK aGz -qKm -kQD -hmO +jeP +njE +qcw dTs dTs aZC -qje -jdA -ffm -mbF +lgr +tZu +gnI +eAk aZC -lCE -tmk -hqN -rLl -odf -odf -odf -odf -odf +gJp +sIR +qyb +uzh +lCN +lCN +lCN +lCN +lCN aZR -rNd -rNd -rNd -pgB +lwj +lwj +lwj +hFJ aNn auy aks @@ -68783,44 +68783,44 @@ auz auz auz bkX -wAi +uFL bkX bkX bkX bkX bkX bkX -wAi +uFL bkX bpK bpK bpK btC buU -sUN -qsR -gdx -gdx -tud -tud -tud +qON +pSO +cST +cST +xMA +xMA +xMA bDc -mcC -rxh +mwM +jfy bPx -ieo -qVg -tDd -hGS -ohi -tDd -qVg -pOI +lth +iFb +sBw +jHK +oxh +sBw +iFb +ozC bHc -sqE -tDd -tDd -tqJ +vZQ +sBw +sBw +hCo bLq dTs dTs @@ -68834,9 +68834,9 @@ dTs dTs dTs dTs -lql +iZF agd -oyQ +hjp cfj wzl bJE @@ -68846,11 +68846,11 @@ dTs dTs dTs adw -eiT -tuu -hGv -pBv -nqH +uJl +wkx +otV +fJn +xDq cgy ckq cvu @@ -68862,11 +68862,11 @@ cQU cRx cij cRZ -umm +jLb lNu -gEH -xyi -nwn +hWU +soT +kYA dTs dTs dTs @@ -68883,9 +68883,9 @@ dTs dTs dTs ebs -wnh -wnh -wnh +iJt +iJt +iJt ebs dTs dTs @@ -68894,16 +68894,16 @@ dTs dTs dTs dTs -mRL -nPF +uXd +vCV doE doE cuM crx crx csG -qvQ -xVB +rYG +rlb cJq rHw rHw @@ -68912,31 +68912,31 @@ rHw rHw rHw rHw -wgE -seM +lXv +hVq doE cKp doE doE -wak +eps dUO dvo cwD csG -rEA -wde -wde -wde -wde -wde -wde -wde -wde -wde -kgG -lSo -gXT -wPD +rWm +rIU +rIU +rIU +rIU +rIU +rIU +rIU +rIU +rIU +luZ +umK +wFK +vUU yii yii dTs @@ -68961,38 +68961,38 @@ acu (80,1,1) = {" acu dTs -kDV -nHR +eNL +olb ach ach ach ach axJ aGz -wib -rxQ -sIK +pQo +eBU +kHa aJu aJu -iNG -rxQ -rxQ -ehy -wwh +wvE +eBU +eBU +oRq +xzs aej aeC dTs dTs aZC -oTi -gky -ffm -mbF +vhY +fgS +gnI +eAk aZC -fpL -gFO -twu -vcr +qGT +tcb +vOz +jYJ bcT bcT bcT @@ -69002,59 +69002,59 @@ bcT bcU bcU bcT -pgB +hFJ apz aqg aki aki aki asa -kuo -jiP -gnB -gnB -gnB -gnB -gWR -oOG +fvX +xSC +ofj +ofj +ofj +ofj +oMA +hTW bkU -joL -yjO -yjO -yjO -yjO -iZc +dKj +xrX +xrX +xrX +xrX +sEY bkU -fqf -skS -skS -skS -ixf -ssg +qXk +gxZ +gxZ +gxZ +qRe +dDi bwd -qAG -pDs -pDs -pDs -pDs -pGG -wwt -mcC -rxh +nnl +fcD +fcD +fcD +fcD +ehc +nDq +mwM +jfy bPx -ieo -skk -tDd -tDd -kLu -tDd -vLT -tDd -fBV -vLT -tDd -tDd -qdw +lth +tgE +sBw +sBw +yeo +sBw +hMt +sBw +exX +hMt +sBw +sBw +cfi bLq dTs dTs @@ -69068,9 +69068,9 @@ dTs dTs dTs dTs -vxw +tFI agd -oyQ +hjp cfj wzl bJE @@ -69080,11 +69080,11 @@ dTs dTs dTs adw -eiT -lQa -wWz -obC -wdl +uJl +oph +iPZ +tvT +gWp chK cmp cxf @@ -69098,8 +69098,8 @@ cij adw lyw lNu -gEH -ttn +hWU +qQD lNu dTs dTs @@ -69117,9 +69117,9 @@ dTs dTs dTs dTs -rlk -rlk -rlk +tpi +tpi +tpi dTs dTs dTs @@ -69128,7 +69128,7 @@ dTs dTs dTs dTs -xaG +qmL doE doE doE @@ -69136,8 +69136,8 @@ cuM cvJ crz csG -qvQ -xVB +rYG +rlb cJw rHw rHw @@ -69146,30 +69146,30 @@ rHw rHw rHw cKe -wgE -seM +lXv +hVq doE cKr doE doE -wak +eps dUO dVb cwE csG -uwH -ghY -ghY -ghY -ghY -ghY -ghY -ghY -ghY -ghY -jZN -hwQ -hgV +jMM +rzc +rzc +rzc +rzc +rzc +rzc +rzc +rzc +rzc +dZx +xVc +sNe yii yii yii @@ -69195,100 +69195,100 @@ acu (81,1,1) = {" acu dTs -mpN -nHR +ooY +olb ach ach ach ach -orH +vmR aGz -jjj -rxQ -sIK +lCZ +eBU +kHa aJu aJu -fGp -rxQ -rxQ -jJK -vSp +glR +eBU +eBU +tKK +uuE aek aeM -ojV +sRV dTs aZC -eQU -ffm -ffm -ffm +pIy +gnI +gnI +gnI aZC -jpr -lJv -dZA -xVD +ico +qkz +nRt +pKh bcU -vrs -gWh -moh -enV -hfK -iTI -iTI +toF +nJs +iRi +gog +eMF +ppH +ppH bcU -pgB +hFJ apz dKg aki aqg aki asa -nQb -bKT +ixi +gll aiZ aiZ -tzw -jaK +oXp +xzT dTs dTs bkU -eOQ -eOQ -eOQ -eOQ -eOQ -eOQ +ijg +ijg +ijg +ijg +ijg +ijg bkU -noZ -xNk -xNk -xNk -vie -dTs -dTs -dTs -vie -vie -vie -jJL -oFG -duj -egy -rxh +pzO +jkf +jkf +jkf +pah +dTs +dTs +dTs +pah +pah +pah +gHf +fXA +uag +vNq +jfy bGX -uCW -qVg -vLT -tDd -kLu -tDd -tDd -tDd -tDd -tDd -tDd -tDd -qdw +mbb +iFb +hMt +sBw +yeo +sBw +sBw +sBw +sBw +sBw +sBw +sBw +cfi bLq dTs dTs @@ -69301,10 +69301,10 @@ dTs dTs dTs dTs -lql +iZF agd agd -oyQ +hjp cfj cfS cgz @@ -69315,10 +69315,10 @@ dTs dTs adw adw -inM -koY -jeG -xkI +xwu +ptA +veR +vil cgy cij cil @@ -69332,12 +69332,12 @@ cil but lNu lNu -gEH -xyi +hWU +soT lNu kbo lNu -nwn +kYA dTs dTs dTs @@ -69351,18 +69351,18 @@ dTs dTs dTs dTs -rlk -rlk -rlk -nNV -lmM +tpi +tpi +tpi +iup +nhN dTs dTs dTs dTs dTs dTs -xaG +qmL doE doE doE @@ -69370,8 +69370,8 @@ cuM crx crx csG -qvQ -xVB +rYG +rlb cJO rHw rHw @@ -69380,18 +69380,18 @@ rHw rHw rHw cKf -wgE -seM +lXv +hVq doE cKr dNS dNS -ohT +hgh bYV rdW bCO fdk -htK +qDR dsJ dsJ dil @@ -69429,22 +69429,22 @@ acu (82,1,1) = {" acu dTs -xiy -eou +qDn +etf ach ach ach -xfF -xlm +jmR +tQw aGz -wQj -rxQ -sIK -kUs -pWw -iNG -rxQ -noK +jRh +eBU +kHa +dSC +deL +wvE +eBU +duH aGz aez aem @@ -69452,16 +69452,16 @@ aeM dTs dTs aZC -eQU -ffm -ffm -ffm -rvz -twu -gFO -cXH -cXH -kZZ +pIy +gnI +gnI +gnI +jmf +vOz +tcb +wqA +wqA +jgZ bdj bdj bdj @@ -69470,18 +69470,18 @@ beK bdj dKf bcU -pgB +hFJ apz aqg aki akN ara asa -oti +hSx aiZ -tzw -jaK -nzJ +oXp +xzT +jGT dTs dTs dTs @@ -69490,7 +69490,7 @@ dTs dTs dTs adI -hrq +dQV bkU bkU bkU @@ -69502,26 +69502,26 @@ dTs dTs dTs dTs -mSO +opl aGP -vwY -oFG -duj -egy -dpd +tHv +fXA +uag +vNq +kwS bPx -sqE -wtv -tDd -tDd -kLu -tDd -jps -gJO +vZQ +piu +sBw +sBw +yeo +sBw +pUp +hwM bHc -fRn -fRn -weU +mZz +mZz +iFy bLq bLq dTs @@ -69535,10 +69535,10 @@ dTs dTs dTs dTs -lql +iZF agd agd -oyQ +hjp cfj wzl bJE @@ -69548,16 +69548,16 @@ dTs dTs dTs adw -fQz -tAV -hGv -jeG -xkI +mnG +msH +otV +veR +vil cgy cij cxg cFN -fag +wjd cij cxi cQT @@ -69566,8 +69566,8 @@ cij but lNu lNu -gEH -xyi +hWU +soT lNu xLS cAc @@ -69575,7 +69575,7 @@ mAr rUK lNu aFQ -eTJ +obM dTs dTs dTs @@ -69584,19 +69584,19 @@ dTs dTs dTs dTs -nNV -qQT -nNV -lmM -gVu +iup +tmw +iup +nhN +mcI dNS -lAv -qQT +lqn +tmw dTs dTs dTs -nNV -gVu +iup +mcI dNS dNS dNS @@ -69604,35 +69604,35 @@ pva rdW rdW fdk -htK -sTv -mFu -mFu -mFu -mFu -mFu -mFu -mFu -jUH -mru -seM +qDR +oIx +oQT +oQT +oQT +oQT +oQT +oQT +oQT +dAE +hQZ +hVq doE cKr dNS dNS -ohT +hgh bYV hzC bCO fdk -lpk +vGE dsJ mbl dto dto dtp dtp -ojk +hYZ dsJ dTs dTs @@ -69663,57 +69663,57 @@ acu (83,1,1) = {" acu dTs -nHR +olb ach ach ach ach ahD -ofh +pBv aGA -cxM -rxQ -pAF -hgC -hgC -pvD -rxQ -oSw +fhD +eBU +vMK +hph +hph +nLO +eBU +xcb aGA aez aem aeM aez -qKm +jeP aZC -eQU -ffm -ffm -ffm +pIy +gnI +gnI +gnI aZC -oRc -kKu -pNK -pNK -giP +eJZ +fLs +lZr +lZr +inf bdk dKa -pia -rVu -eLc -wLe +lgk +uvv +lzk +egh bdj bcU -pgB +hFJ apz aki aki aki aqg asa -oti +hSx aiZ -vST +oYP dTs dTs dTs @@ -69737,21 +69737,21 @@ dTs dTs dTs aGP -mSO -vwY -oFG -duj +opl +tHv +fXA +uag bEw -yhY -haN -vLT -wtc -tDd -rJp -eWW -tDd -qVg -gMX +dAx +ksk +hMt +swo +sBw +llY +mYa +sBw +iFb +lqF bHc bQl bRo @@ -69769,24 +69769,24 @@ aEa dTs acw atl -lql +iZF agd cdp -gzb +ibT cfj wzl bJE chj -nku +qwc dTs dTs dTs adw -fQz -tuu -koY -lFK -qVO +mnG +wkx +ptA +veJ +tqD cgA cij cxh @@ -69800,8 +69800,8 @@ cRI adw lNu lNu -gEH -xyi +hWU +soT xLS cAc eJh @@ -69817,19 +69817,19 @@ dTs dTs dTs dTs -gse -gVu -lAv -gVu +eRe +mcI +lqn +mcI dNS dNS jfA dNS -lAv -qQT -rlk +lqn +tmw +tpi dTs -rrX +ryY dNS dNS dNS @@ -69838,23 +69838,23 @@ pva sLx wya fdk -wgd -qhE -qhE -qhE -qhE -qhE -qhE -qhE -qhE -qhE -qhE -gCI +nyY +hhF +hhF +hhF +hhF +hhF +hhF +hhF +hhF +hhF +hhF +sUs doE cKr dNS dNS -ohT +hgh bYV sLx bED @@ -69866,7 +69866,7 @@ dtp dtp dtp dtp -ojk +hYZ dsJ dTs dTs @@ -69897,22 +69897,22 @@ acu (84,1,1) = {" acu dTs -nHR +olb ach ach ach -xfF -wuS +jmR +uIm agE aGz -tvP -rxQ -rxQ -rxQ -rxQ -rxQ -rxQ -nmK +mJq +eBU +eBU +eBU +eBU +eBU +eBU +wfg aGz adZ aem @@ -69920,33 +69920,33 @@ aeM anE aez aZC -eQU -wUc -qxQ -wpM +pIy +pVU +mRY +qKU aZC -lCE -gRt -twu -rLl +gJp +ffx +vOz +uzh bcU bdj bdI -emd +vxm bev bev bfd bdj bcU -pgB +hFJ apz aki aqg aki aki asa -oti -tzw +hSx +oXp dTs dTs dTs @@ -69972,20 +69972,20 @@ dTs dTs dTs aIq -vwY -oFG -duj +tHv +fXA +uag bEw -kqg -vLT -tDd -tDd -tDd -tDd -vLT -vLT -tvx -uTM +vqk +hMt +sBw +sBw +sBw +sBw +hMt +hMt +elZ +wBk bLq bLq bLq @@ -69995,32 +69995,32 @@ dTs dTs dTs aEa -xQZ -iaa -tNV -tUs +exe +oVM +xTr +qjC aEa -moX +xzH acw atl -xKN +qBz cdp cyv -tXJ +tRR cfj cfS cgz cAT -pKX +pkA atr dTs dTs adw adw -iDO -eAn -eqN -tmO +oZk +opg +pRt +nrH cgA cij cxi @@ -70034,8 +70034,8 @@ cij but sHk lNu -vpy -xyi +xZu +soT cTh tAy eJh @@ -70060,10 +70060,10 @@ dNS dNS dNS dNS -lAv -lmM -lmM -gVu +lqn +nhN +nhN +mcI dNS dNS dNS @@ -70072,7 +70072,7 @@ pva rdW rdW fdk -xFn +lQn doE doE cuO @@ -70088,7 +70088,7 @@ doE cKr dNS dNS -ohT +hgh bYV rdW bCO @@ -70131,22 +70131,22 @@ acu (85,1,1) = {" acu dTs -fko +aOs acz ach ach ahD -hJk -jxI +rFC +wMk aGz -tvP -rxQ -rxQ -iFT -iFT -rxQ -rxQ -nmK +mJq +eBU +eBU +tXw +tXw +eBU +eBU +wfg aGz aez aem @@ -70160,26 +70160,26 @@ aZC aZC aZC aZP -jjE -mtF +fyy +wxH aZP bcT -kjk +rSt bdj -uec +idb bew bew bfe bdj bcT -pgB +hFJ apz dKh aki aql ali asa -hQd +uuv dTs dTs dTs @@ -70207,19 +70207,19 @@ bpM bpM bzH bzH -fkg -duj -eaR -rxh +ukp +uag +gSU +jfy bPx -gHN -vZW -mvz -frC -gHN -fME -fME -rou +tir +upG +ken +lSP +tir +wwd +wwd +xHH bLq dTs dTs @@ -70229,32 +70229,32 @@ dTs dTs dTs aEa -sRA -xsH -tNV -lKI +wuJ +oyd +xTr +dMR aEb -lQB +jqU acw acw -wdW -lpO +uvT +vwc cyD -lTC +oBE bgn cAM bgm bha -oPm +oMB acw dTs dTs adw -eiT -eAn -eAn -eqN -xkI +uJl +opg +opg +pRt +vil cgy cng cij @@ -70268,8 +70268,8 @@ cij but lNu lNu -gEH -xyi +hWU +soT jlP drh dud @@ -70306,7 +70306,7 @@ pva rdW rdW fdk -xmz +kWB cKp cKr cKr @@ -70322,7 +70322,7 @@ cKr cKp dNS dNS -ohT +hgh bYV rdW lyB @@ -70337,8 +70337,8 @@ dtp dto dyb bgd -roc -jTC +njP +sxE dyb dTs dTs @@ -70365,22 +70365,22 @@ acu (86,1,1) = {" acu dTs -vrF -nHR +rHn +olb ach ach ahD ahZ -nZS +ljH aGz -tvP -rxQ -rxQ -iFT -iFT -rxQ -rxQ -nmK +mJq +eBU +eBU +tXw +tXw +eBU +eBU +wfg aGz qxv aem @@ -70389,31 +70389,31 @@ dTs dTs dTs dTs -ioV -eqA -wVN +pqS +jCt +iFj aJm -nwJ -tLx -qFW -rNd +nGc +htE +gHN +lwj bcT bdn bdj -uec +idb bew bew bfe bfq bcT -pgB +hFJ apz aqg akA aki aki asa -wUE +aVt dTs dTs dTs @@ -70437,14 +70437,14 @@ dTs dTs bpM bpM -tqf -xrp -tRm +rFG +uXH +tso bzH -oYW -duj -eaR -rxh +xkx +uag +gSU +jfy bHc bHc bHc @@ -70463,32 +70463,32 @@ dTs dTs dTs aEa -iaa -xsH -xsH -xsH +oVM +oyd +oyd +oyd aEb -lQB -uSU +jqU +hEF acw acw acw -iUW +eFi acw -wFy -eAZ -dcX -uer +gnB +vdt +tva +kzD acw acw dTs dTs adw -eiT -eAn -eAn -eAn -eAn +uJl +opg +opg +opg +opg cgy coy cgy @@ -70502,8 +70502,8 @@ adw adw mkJ xLS -gEH -xyi +hWU +soT lDT iOa kWh @@ -70511,52 +70511,52 @@ lNu lNu lNu aFQ -hoa +fBZ cqn -skU -waY -tKw -skU -skU +nrb +ttL +xNl +nrb +nrb cqn -lxE -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -tXO +tgI +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +rVn aRQ sLx wya fdk -tQi -vTs -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -xjx -eBe +vca +nRz +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +ugu +taD bYV sLx glx @@ -70571,8 +70571,8 @@ dtp dto dyb bgk -ojH -ojH +gtl +gtl dyb dTs dTs @@ -70599,22 +70599,22 @@ acu (87,1,1) = {" acu dTs -kDV -nHR +eNL +olb ach ach ahD ahC azQ aGA -pWo -rxQ -rxQ -rxQ -rxQ -rxQ -rxQ -oSw +tUx +eBU +eBU +eBU +eBU +eBU +eBU +xcb aGA dTs aem @@ -70624,31 +70624,31 @@ dTs dTs dTs dTs -qtk -rgA +wHp +wlq aiZ -nwJ -iIm -dth -rNd +nGc +stf +saU +lwj bcU qbC bdj -uec +idb bew bew bfe bdj bcU -pgB +hFJ apz aqg akA aki aki asa -oti -vST +hSx +oYP dTs dTs dTs @@ -70670,15 +70670,15 @@ dTs dTs bpM bpM -foO -feX -xgU -mLp +oyA +ntD +tJm +mYr byC -oYW -duj -egy -rxh +xkx +uag +vNq +jfy bHd bIe cnv @@ -70702,20 +70702,20 @@ aCI aDh aCJ aEb -lQB -uSU -uSU +jqU +hEF +hEF acw -pzQ +twx cyD -xOU +vBh bgn cAM bgm bha -jPb +oFu acw -xSN +oWq dTs adw adw @@ -70736,23 +70736,23 @@ adw lNu cAc mAr -gEH -xyi +hWU +soT lNu -dqx -iNn +hoZ +rXa sYp qbW qbW aGa aHu -qnc +tZc cQF cQF cQF cQF cQF -qnc +tZc cQF wgi wgi @@ -70805,7 +70805,7 @@ dtp dxX dyb dyb -nHU +uyc dyb dyb dTs @@ -70833,22 +70833,22 @@ acu (88,1,1) = {" acu dTs -kDV -fko +eNL +aOs acz ach -pPz -gPs +rnR +mGD agE aGz -kqq -wku -vUN -rxQ -rxQ -noK -wku -tFB +hLT +ruF +xOa +eBU +eBU +duH +ruF +lFX aGA dTs aem @@ -70858,32 +70858,32 @@ dTs dTs dTs dTs -mJT +xhf aiZ aiZ -nwJ -iIm -dth -rNd +nGc +stf +saU +lwj bcU bdp bdj -jTK +ekz bex bex bfd bdj bcU -pgB +hFJ aIK auz aIJ aql ali asa -oti -tSq -fAY +hSx +iaE +dAy dTs dTs dTs @@ -70903,16 +70903,16 @@ dTs dTs dTs bpM -ivG -ncq -xgU -xgU -mLp +gJB +eOm +tJm +tJm +mYr byC -oYW -duj -egy -oYW +xkx +uag +vNq +xkx bHd bIf bIf @@ -70933,7 +70933,7 @@ aEa aEa aCI aCV -nbV +qnO aCJ aEa aDw @@ -70942,12 +70942,12 @@ aDG cyD cyD cyD -rrF +cEL bgn cAN cAP bha -wWD +tNi cDN dTs dTs @@ -70959,9 +70959,9 @@ aoz aoz aoz aoz -qxi -vpy -ttn +rRy +xZu +qQD sHk lNu lNu @@ -70970,23 +70970,23 @@ mkJ cAc eJh faE -gEH -xyi -qCi -tky -qxi +hWU +soT +oRv +npS +rRy igf vqt eft cSb cSb -jmE +hLN cQP cSb cQP cQP cSb -gNt +hPN cSb rdW rdW @@ -71031,16 +71031,16 @@ gEj pzv kJP dsJ -wbN +rei dtp dWi dWi dtp dxY dyb -roc -ojH -ubd +njP +gtl +lnf dyb dyb dTs @@ -71067,57 +71067,57 @@ acu (89,1,1) = {" acu dTs -jrU -vrF -fko +jJS +rHn +aOs acz -xfF -wuS +jmR +uIm agE aGz aGz aGA aGz -rxQ -mmh +eBU +vXZ aGz aGA aGA aGA -hmO +qcw aem aeM -qKm +jeP dTs dTs dTs -fAY -rgA -eso -hiL -iOF -lek -sri -rNd +dAy +wlq +hPR +xfZ +hyV +jzu +eEm +lwj bcU qbC bdj -gTv -uUT -uUT -tcL +lmB +wOX +wOX +xlu bdj bcU -oYi -uSK -qFW +xwv +tGb +gHN apz aqg aqg asa -oti +hSx aiZ -tzw +oXp dTs dTs dTs @@ -71137,16 +71137,16 @@ dTs dTs dTs bpM -gdo -xkN -sPN -sPN -mLp +mhm +uxY +neQ +neQ +mYr byC -oYW -duj -egy -oYW +xkx +uag +vNq +xkx bHe bIf bIf @@ -71176,12 +71176,12 @@ aDx bNg cyD cyD -rrF +cEL bgn cAM bgm bha -wWD +tNi cDN ncm dTs @@ -71193,9 +71193,9 @@ aoz aoz aoz aoz -qxi -vpy -xyi +rRy +xZu +soT lNu lNu lNu @@ -71204,23 +71204,23 @@ iOa tAy eJh lKW -gEH -xyi -fAJ +hWU +soT +ezf awk -qxi +rRy igf eft foq cSc cSc -ggL +krW cRd cSc cRd cRd cSc -sCt +ozv cSc oBR oBR @@ -71263,19 +71263,19 @@ vIx rdW rdW fdk -kqe +uJF dsJ ebx -rxv -uiM -pFL -vPB +gEC +sSN +rTs +vSO ecA -siD -jRV -jRV -nao -kbM +jgO +bQw +bQw +mFz +hRq dyb dTs dTs @@ -71302,20 +71302,20 @@ acu acu dTs dTs -jrU -vrF -fko -wuS -hJk -uhK -rLY -lXn -hmO -ezV -whd -wQH -wGt -wGt +jJS +rHn +aOs +uIm +rFC +kHc +uRE +xFR +qcw +lYG +vRm +tAR +fKe +fKe dTs dTs aez @@ -71325,13 +71325,13 @@ aez dTs dTs dTs -hiL -hiL -iOF +xfZ +xfZ +hyV aAE aiu -inQ -qVw +gXO +sIG amf bcU qbC @@ -71342,16 +71342,16 @@ bdj bdj bdj bcU -fHK -rNd -oyp +ioP +lwj +lXi apz aki aqg asa -oti +hSx aiZ -tSq +iaE dTs dTs dTs @@ -71371,16 +71371,16 @@ dTs dTs dTs bpM -xoH -woq -vqo -xkN -sdK +qQM +rup +foM +uxY +mpE bzH -oYW -duj -egy -oYW +xkx +uag +vNq +xkx bHd bIf bIf @@ -71410,12 +71410,12 @@ aDx aDx cyD cyD -rrF +cEL bgn cAM bgm bha -wWD +tNi cDN dTs dTs @@ -71427,9 +71427,9 @@ aoz aoz aoz aoz -qxi -gEH -xyi +rRy +hWU +soT lNu pal lNu @@ -71438,23 +71438,23 @@ cqq drh lKW wav -gEH -xyi -fAJ -wqu -umm +hWU +soT +ezf +ioL +jLb igf eft jmd aGe cRJ -tgZ +ycM cRJ cRJ cRJ cRJ cRJ -tgZ +ycM cRJ kJP kJP @@ -71497,19 +71497,19 @@ kJP kJP kJP fCB -htK -jgE -gtU -jwL -kJD -lkq -gtU +qDR +oFz +mbc +lKe +szi +gnt +mbc dtp dyb -ojH -wdU -sBf -hLk +gtl +pCF +iHt +isk dyb dTs dTs @@ -71537,18 +71537,18 @@ acu dTs dTs dTs -jrU -wPe -wPe -mUi -rVA -kQD -hmO -iUs -rJw -ksk -bQK -wGt +jJS +xjc +xjc +oCC +snl +njE +qcw +ffg +udq +qwU +vhP +fKe dTs dTs dTs @@ -71556,16 +71556,16 @@ uvf aem aeM aYx -qKm +jeP dTs dTs dTs -mbH +kod aiu akB aiZ -vwy -oLI +eju +rbh amg bcT bcU @@ -71576,18 +71576,18 @@ bcU bcU bcU bcT -fHK -rNd -oyp +ioP +lwj +lXi apz aql ara asa -oti +hSx aId aiZ -tSq -gZg +iaE +fzc dTs dTs dTs @@ -71605,16 +71605,16 @@ dTs dTs dTs bpM -gGz -xkN -qjM -xPc -qDD -qQm -tws +ukf +uxY +cLN +cXi +ozs +gzO +jFp bYG -vDT -xYf +rvN +nuJ bHd bIf bIf @@ -71639,17 +71639,17 @@ aCw aCI aEa aDA -rCr -rEq +tws +uwW acw -eWJ +qJy cyD -gLp +hHc bgn cAN cAP bha -lnK +mRm dTs dTs dTs @@ -71657,93 +71657,93 @@ dTs dTs aoz aoz -wqu -omb +ioL +kvX aoz -wqu -umm -wDt -uUH -jWl -oVO -jdh -oVO -oVO -oVO -oVO -oVO -jDm -eGO -nwn -umm +ioL +jLb +gqg +smf +sWF +ndK +nDR +ndK +ndK +ndK +ndK +ndK +ihS +eXU +kYA +jLb lNu igf rFU jMT aGx -wxM +qVI cqn -lky -fMl -jFu -jFu -xVS +duk +ise +exW +exW +qNn cqn -wXr -pFx -pFx -pFx -pFx -pFx -pFx +mpZ +kzw +kzw +kzw +kzw +kzw +kzw bYV sLx wya fdk -roj -wDS -wDS -mAI -wDS -wDS -wDS -wDS -wDS -wDS -wDS -wDS -wDS -wDS -mAI -wDS -rFH -rFH -rFH -rFH -rFH -vrm +osZ +ygT +ygT +ovr +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ovr +ygT +xok +xok +xok +xok +xok +tFF bYV rdW lyB fdk uFX -rFH -rFH -rFH -rFH -vrH +xok +xok +xok +xok +oub dsJ dtp -jwL -kJD -lkq -gtU +lKe +szi +gnt +mbc ebD dyb -qTU -ubd -iPM -hLk +ufi +lnf +qxu +isk dyb dTs dTs @@ -71774,54 +71774,54 @@ dTs dTs dTs dTs -wwh -iTt -vPs -vPs -fnK -utX +xzs +oWD +xbx +xbx +ugL +plD aih -bQK +vhP dTs dTs dTs -ksY +uJm bRn aem aeM aez aez -qKm +jeP dTs dTs -rgA +wlq aiZ aiZ -eso -pQE -tCF -kbb -mDw -rMZ -rMZ -rMZ -rMZ -rMZ -rMZ -rMZ -rMZ -tcW -rNd -oyp +hPR +wtP +rLl +diY +hBz +cJa +cJa +cJa +cJa +cJa +cJa +cJa +cJa +lUA +lwj +lXi apz aki aki asa -oti +hSx bcy aiZ aiZ -tSq +iaE dTs dTs dTs @@ -71839,16 +71839,16 @@ dTs dTs dTs bpM -itp -sPN -vbx -sPN -sPN -sPN -dlm +fYe +neQ +eDs +neQ +neQ +neQ +mJH bYZ -egy -oYW +vNq +xkx bHd bIg bJp @@ -71872,17 +71872,17 @@ aCw aCw aCJ aEb -lQB -uSU -uSU +jqU +hEF +hEF acw acw -iUW +eFi acw -wFy -eAZ -dcX -uer +gnB +vdt +tva +kzD acw acw dTs @@ -71890,11 +71890,11 @@ dTs dTs dTs dTs -wqu -umm -nwn -omb -qxi +ioL +jLb +kYA +kvX +rRy lNu lNu lNu @@ -71923,44 +71923,44 @@ cSo cSF cqn cqn -kdG -pFx -pFx -pFx -pFx -elp -pFx +jxH +kzw +kzw +kzw +kzw +sza +kzw bYV rdW rdW fdk -tQi -wng +vca +wWX uFX -oYt -wng -wng -wng -wng -wng +ylv +wWX +wWX +wWX +wWX +wWX uFX uFX -wng -wng -wng +wWX +wWX +wWX cYV -fjO -mRf -jyt -jyt -jyt -jyt -mGZ +jia +sMJ +xNa +xNa +xNa +xNa +nHH bYV rdW lyB fdk -htK +qDR doH doH edO @@ -71969,15 +71969,15 @@ doH doH dsM dtp -kJD -lkq +szi +gnt dtp -eRW +pLQ dyb -qTU -uSG -ojH -ojH +ufi +wSj +gtl +gtl dyb dTs dTs @@ -72007,19 +72007,19 @@ dTs dTs dTs dTs -wGt -oRH -uJN -uJN -eYN -uJN -uJN -uJN -uJN -wQH +fKe +poa +fGr +fGr +vtp +fGr +fGr +fGr +fGr +tAR dTs dTs -mFm +mXs plo aem aeR @@ -72034,30 +72034,30 @@ aga aIb aMP agy -snL -uSK -uSK -uSK -uSK -uSK -uSK -uSK -uSK -uSK -uSK -uSK -oSf +nKA +tGb +tGb +tGb +tGb +tGb +tGb +tGb +tGb +tGb +tGb +tGb +umn apz aqg aqg asa -fwH -vfi -vfi -vfi -vfi -fKu -vhu +kah +lsC +lsC +lsC +lsC +dRw +fec dTs dTs dTs @@ -72073,16 +72073,16 @@ dTs dTs dTs bpM -iVE -sPN -jDG -xkN -dyy +pIo +neQ +eBy +uxY +vle bzH -oYW -jZr -egy -oYW +xkx +iam +vNq +xkx bHf bHf bHf @@ -72106,29 +72106,29 @@ aCY aCw aCJ aEb -lQB +jqU dTs dTs acw -oSC +pDv aDP -tLs +pdq bgn cAM bgm bha -fHn +vmy acw dTs dTs dTs dTs dTs -qxi +rRy lNu lNu -nwn -umm +kYA +jLb lNu lNu lNu @@ -72150,67 +72150,67 @@ ctF jmd aGC cqn -faO +ukZ cSr -hPU -jAj -gsA +oln +lhh +hBq cSr cro -umh -rFH -rFH -rFH -rFH -rFH -vrm +moz +xok +xok +xok +xok +xok +tFF bYV rdW rdW cUy wgi cXh -htK -eWQ -jyt -jyt -jyt -jyt -qYt -gcZ -fjO -pFx -pFx -pFx -vtK -fjO -sLX +qDR +xyI +xNa +xNa +xNa +xNa +lKS +wbO +jia +kzw +kzw +kzw +goP +jia +pOe dNS vuu dNS gpi -ohT +hgh bYV sLx sms fdk -htK +qDR doH -xVs -oBj -iJa -tie +izb +tSd +vvu +qGm doH doH edO -okq -mOZ +hvN +wYT edO dyb dyb dyb dyb -lOo +odZ dyb dyb dyb @@ -72241,7 +72241,7 @@ dTs dTs dTs aez -wGt +fKe iVN tbb tbb @@ -72250,11 +72250,11 @@ iVN tbb tbb ybA -ibO -jPf +gCn +tMI rTV -fpi -mFm +ePb +mXs aen aeS aeS @@ -72268,7 +72268,7 @@ agj agj agr agj -oUT +vaz aNn auy auy @@ -72290,9 +72290,9 @@ auy auy auy arZ -rGO -xDo -kcT +rYB +ezr +wWp dTs dTs dTs @@ -72307,21 +72307,21 @@ dTs dTs dTs bpM -iVE -xkN -jDG -sPN -tjp +pIo +uxY +eBy +neQ +iDL byC -oYW -jZr +xkx +iam caF -nCr +sfm bPv -oVZ -qvG -ngz -wGK +xCn +wYN +nAS +eBj bLr dTs dTs @@ -72340,26 +72340,26 @@ aCZ aCw aDp aEb -tPt +gbc dTs dTs -qxi -wDt +rRy +gqg cee -gMG +eRl tyc wyR kry xpj -qTC -nwn +eIF +kYA dTs dTs dTs dTs dTs -kfb -iNn +qTt +rXa lNu lNu lNu @@ -72389,7 +72389,7 @@ cSr cSg cSr cSr -xmA +xac cqn cOH cOH @@ -72397,59 +72397,59 @@ cTi cTi cOH cOH -htK +qDR bYV sLx wya oKG rdW fdk -htK -fGM +qDR +nfD dNS dNS dNS dNS -qqI -tQi -vrH -pFx -pFx -pFx -kWX -vrH -sLX +fya +vca +oub +kzw +kzw +kzw +jHT +oub +pOe dNS dNS dNS dNS -ohT +hgh bYV rdW lyB fdk -htK +qDR dhs dpw dqf -vSk +hac dqf dqf edO dus -okq -qcv +hvN +ggG dus dyb -dnX -prU -kVZ -ydz -jBW +iyh +siv +kFi +fzd +tQC dyb -ojH -ojH -mRE +gtl +gtl +uqE dyb dTs dTs @@ -72475,7 +72475,7 @@ dTs dTs dTs aez -wGt +fKe pUO jNB sUr @@ -72484,14 +72484,14 @@ pUO jNB sUr dzU -ibO -oWi +gCn +jCy rTV rTV dTs -pmX +mpa aez -jcp +kwt dTs aez aez @@ -72502,7 +72502,7 @@ cQf ago agu aqz -guF +pQc apz aqg aDb @@ -72524,9 +72524,9 @@ aqg aqg aqg asa -rGO -vhu -hkE +rYB +fec +vec dTs dTs dTs @@ -72541,21 +72541,21 @@ dTs dTs bpM bpM -qxF -xkN -vbx -sPN -qAN +toz +uxY +eDs +neQ +eQj byC -oYW -mSF +xkx +kli cbn -jLW -nxr -pVd -pVd -pVd -izk +xga +tPq +qhC +qhC +qhC +tKv bLr dTs dTs @@ -72577,23 +72577,23 @@ aEa dTs dTs dTs -kfb -iNn -wDt -neU +qTt +rXa +gqg +cEK tyc jmd eft xpj -qTC -qCi +eIF +oRv dTs dTs dTs dTs -wqu -omb -goz +ioL +kvX +eoW lNu lDT qHF @@ -72618,51 +72618,51 @@ vzw vzw aHf cqn -hul -lSu -lSu -uLB -sKj -lJS +nCX +eKp +eKp +tAM +lJn +hPH dMV cOH -trh -ngZ -ngZ -ngZ +dkO +okg +okg +okg cOH -xPC +qBy bYV hzC hzC oKG rdW fdk -htK -fGM +qDR +nfD trP dNS dNS daF dbu -gNe -bRP +jiw +vyP dbu daF dbu -rmX -bRP +xVs +vyP dbu daF dNS dNS dNS -ohT +hgh bYV rdW lyB fdk -htK +qDR dhs dpw dqf @@ -72671,19 +72671,19 @@ ead ead eee eav -faZ -hoK +fEq +qNw dus eeq -lSp -ydz -ydz -erH -ydz -gVK -ojH -ojH -mRE +vFQ +fzd +fzd +jFq +fzd +rFy +gtl +gtl +uqE dyb dTs dTs @@ -72709,7 +72709,7 @@ dTs dTs dTs aez -fEb +cxX pUO sUr jNB @@ -72718,8 +72718,8 @@ pUO sUr jNB dzU -ibO -oWi +gCn +jCy dTs dTs dTs @@ -72728,15 +72728,15 @@ dTs dTs dTs dTs -kfp -pmX +egJ +mpa afX agc agk nzB agv agz -oUc +neC agZ aNM ahB @@ -72758,10 +72758,10 @@ aNM biJ aqg asa -rGO +rYB bhi -xyN -tmp +log +pqF dTs dTs dTs @@ -72774,22 +72774,22 @@ dTs dTs dTs bpM -nfg -grw -xkN -jDG -sPN -uUK +lSv +lZB +uxY +eBy +neQ +hsG byC -oYW -jZr +xkx +iam caF -jpF +gJu bPv -ofu -xpx -koH -qls +uOu +xPb +lCG +lLk bLr dTs dTs @@ -72812,22 +72812,22 @@ dTs dTs dTs dTs -kfb -iNn -mgD +qTt +rXa +jfm tyc jmd eft xpj -qTC -nwn -omb +eIF +kYA +kvX dTs dTs dTs -umm -nwn -umm +jLb +kYA +jLb lNu kWh cAc @@ -72838,19 +72838,19 @@ igf rFU jMT cxx -qCi -vpP -vFS -iNn +oRv +peO +ueV +rXa lNu lNu lNu lNu -qCi -iNn +oRv +rXa pal lNu -lBe +urF cqn cqn cqn @@ -72859,65 +72859,65 @@ cqn cqn cqn dMV -dvq -urH -tIA -tIA -tIA -ljw -htK +xjk +wxj +xxI +xxI +xxI +qcY +qDR bYV hzC rdW oKG rdW fdk -htK -fGM +qDR +nfD dNS dNS daF daF -uVF -gNe -gNe -pox -egm -nhO -rmX -gNe -gyv +jZw +jiw +jiw +dIP +nzD +hbu +xVs +jiw +eeb daF daF dNS dNS -ohT +hgh bYV sLx sms fdk -htK +qDR dhs dpx dqg dBK dqg dqg -yez -iJt -iiq -ujD -iHH -nRY -xbl -erH -tKq -tKq -hTm +eEc +wXi +gnN +miP +wqF +lSM +jUv +jFq +qDA +qDA +lag dyb -ojH -uSG -ojH +gtl +wSj +gtl dyb dTs dTs @@ -72943,7 +72943,7 @@ dTs dTs aez aez -sPd +ioo pUO sUr sUr @@ -72952,25 +72952,25 @@ pUO sUr sUr dzU -ibO -oWi -voL +gCn +jCy +rai dTs dTs dTs dTs dTs dTs -kQD -kQD -hmO +njE +njE +qcw aez qxv poH cRc dvZ cSp -guF +pQc apz aqg aqg @@ -72992,10 +72992,10 @@ aIJ biK ara bjo -rGO +rYB bhi -vhu -ekC +fec +jAF dTs dTs dTs @@ -73008,32 +73008,32 @@ dTs dTs dTs bpM -eFt -grw -sPN -jDG -xkN -uUK +tln +lZB +neQ +eBy +uxY +hsG bzH -oYW -uzE -kqg -oYW +xkx +oDu +vqk +xkx bHf -jfr -uar -koH -hNa +mZR +eoV +lCG +dVi bLr dTs dTs -uuH -eKG -mKx +sfp +oxE +puR dTs dTs -uuH -euo +sfp +stp cNW cNW aEa @@ -73047,19 +73047,19 @@ dTs dTs dTs dTs -qxi -mgD +rRy +jfm tyc wyR kry xpj -qTC +eIF lNu -fAJ +ezf dTs dTs dTs -iNn +rXa lNu lNu lNu @@ -73072,18 +73072,18 @@ igf eft jmd cxx -fAJ +ezf arR -tfa -umm +hCd +jLb lNu lNu lNu lNu -fAJ -rEs +ezf +nRc lNu -qCi +oRv dTs dTs dTs @@ -73093,44 +73093,44 @@ dTs dTs dTs dMV -peu -tIA -tIA -tIA -tIA -tIA -xOI +lWr +xxI +xxI +xxI +xxI +xxI +ozO bYV sLx wya oKG rdW fdk -htK -fGM +qDR +nfD dNS dNS dbu -hVE -dnF -gNe -gNe -jQc -jQc -jQc -rmX -gNe -vVo -hVE +rJc +vnm +jiw +jiw +wzW +wzW +wzW +xVs +jiw +hKR +rJc dbu dNS dNS -ohT +hgh bYV rdW lyB fdk -htK +qDR doH dpy dqh @@ -73139,19 +73139,19 @@ drU dqf edO dus -iHH -kKf -idp -ezN -paJ -okO -hsA -iRf -sLb +wqF +dDo +kuR +gAp +gXH +hnU +mSE +ilM +jlL dyb -pWK +uir dyb -pWK +uir dyb dTs dTs @@ -73177,7 +73177,7 @@ aez aez aez aez -wGt +fKe pUO vqR vqR @@ -73186,25 +73186,25 @@ rob vqR vqR dzU -eiY -oWi +gvS +jCy aez -qKm -kQD -kQD +jeP +njE +njE dTs dTs -hmO -iRb -wlR -wlR -wlR -wlR -wlR -nup -nup -nup -nfh +qcw +lrb +oUC +oUC +oUC +oUC +oUC +qzw +qzw +qzw +nmL aha ahl ahE @@ -73220,20 +73220,20 @@ aId aiZ aiZ aiZ -pok -qFW +sVH +gHN apz biL biP bjo -rGO +rYB bhi bhi -xyN +log dTs dTs dTs -ekC +jAF dTs dTs dTs @@ -73242,58 +73242,58 @@ dTs dTs bpM bpM -uAE -sco -sPN -vbx -myL -qms +qTz +kdo +neQ +eDs +qhv +kBq bzH bHn -wkZ -kay +bDP +ucQ bHn bHf bPv -eSx +oxW bPv bHf bLr -shq -shq -euo +slu +slu +stp cNW -jbI -shq -shq -euo +lAD +slu +slu +stp wIi wRR bVr bWi cNW -qjV -uuH -shq +kIs +sfp +slu dTs dTs dTs dTs dTs dTs -umm -mgD +jLb +jfm tyc jmd eft xpj -qTC +eIF lNu -nwn +kYA dTs dTs -wqu -jvd +ioL +pVA lNu lNu aFK @@ -73306,17 +73306,17 @@ igf eft jmd cxx -nwn -eyC -umm +kYA +pES +jLb lNu lNu lyw lNu -qCi -tky -kfb -vpP +oRv +npS +qTt +peO dTs dTs dTs @@ -73327,44 +73327,44 @@ dTs dTs dTs dMV -fQu -tIA -tIA -tIA -pUX +xct +xxI +xxI +xxI +uym cOH -jyt +xNa vDJ hzC rdW oKG rdW fdk -htK -fGM +qDR +nfD dNS dNS dbu -hVE -dnF -gNe -jQc -jQc -fyh -gNe -jFG -jQc -vVo -hVE +rJc +vnm +jiw +wzW +wzW +qnc +jiw +ljJ +wzW +hKR +rJc dbu dNS dNS -ohT +hgh bYV rdW lyB fdk -htK +qDR doH doH doH @@ -73373,19 +73373,19 @@ doH doH doH eby -iHH -xKj +wqF +ozD dus eeq -iBk -tKq -tKq -jIz -hTK +xmD +qDA +qDA +hDo +lRC dyb -shZ +pDQ dyb -shZ +pDQ dyb dTs dTs @@ -73411,7 +73411,7 @@ dTs aez aez aai -wGt +fKe aaT jNB sUr @@ -73446,29 +73446,29 @@ ahN cSp aiZ bfg -dsY -jaK -jaK -wVN -tzw -wVN +qUQ +xzT +xzT +iFj +oXp +iFj aiZ beV -dqQ -dth +okr +saU akp biM aox bjo -rGO +rYB bhi bkw -vhu -ekC +fec +jAF dTs -vWy -vhu -xZo +nQe +fec +eCC dTs dTs bpM @@ -73478,27 +73478,27 @@ bpM bzH bzH byC -sPN -pAX +neQ +rvl byC bzH bzH -mFS -dha -pXq -xyJ -cVe -tJa -sqd -dJc -hNp +rIM +eem +kku +kdk +hLi +pzw +yjR +vXO +uSh bPv -krX -krX -krX -krX -krX -ioR +ieG +ieG +ieG +ieG +ieG +vLc cNW cNW cNW @@ -73506,27 +73506,27 @@ bUt bVs bWj bXc -jbI -euo +lAD +stp cNW -jbI +lAD dTs dTs -omb +kvX aoz -qxi +rRy lNu -mgD +jfm tyc jmd eft xpj -qTC +eIF lNu lNu -nwn -omb -qxi +kYA +kvX +rRy lNu lNu lNu @@ -73545,9 +73545,9 @@ lNu lNu lNu cAW -qCi -vpP -tky +oRv +peO +npS aoz dTs aoz @@ -73561,11 +73561,11 @@ dTs dTs dTs cOH -uYA -jkO -tIA -tIA -mss +hUN +iEh +xxI +xxI +qAT cTi dNS pva @@ -73574,48 +73574,48 @@ rdW oKG rdW fdk -htK -fGM +qDR +nfD dNS dNS dbu -hVE -dnF -jQc -jQc -gMB -obA -jHM -jFG -lzv -vVo -hVE +rJc +vnm +wzW +wzW +mbt +liC +eoO +ljJ +lqx +hKR +rJc dbu dNS dNS -ohT +hgh bYV sLx sms fdk -tQi -rFH -vrm +vca +xok +tFF dqi dqR ebt drV doH -oWv -iHH -gSO +pBE +wqF +gsX dus dyb -jrW -ydz -erH -iGD -wTC +lLC +fzd +jFq +ipP +sRe dyb dyb dyb @@ -73645,7 +73645,7 @@ aez aez aez aaj -mZr +wCK aaV sUr abq @@ -73680,59 +73680,59 @@ ahN aId aiZ aiZ -vST -ioV +oYP +pqS dTs dTs dTs -rSV -lxg +jgD +lzu bhi -xIE -gbx +dFT +hIT bir ang bje bjo -rGO +rYB bhi bkx bhi -xyN -wpX +log +wYv bhi -skM -qoF -dCr -iqU +ugT +tuw +oMv +fAv byC -sap -xrp -sap -sap -sap -ncq -sPN -jDG -puk -sap +wFU +uXH +wFU +wFU +wFU +eOm +neQ +eBy +xHz +wFU byC -tJa -cJf -jNq -uYi -uYi -pXq -pXq -pXq -pXq -vMx -gKM -xXi -xXi -xXi -jFi -vgW +pzw +pBO +eqf +jUW +jUW +kku +kku +kku +kku +vmn +wbx +lTl +lTl +lTl +kwV +ppQ uiH cNW wRR @@ -73744,23 +73744,23 @@ cNW cNW cNW cNW -jbI -euo -nwn -eyC -umm +lAD +stp +kYA +pES +jLb pal -ffN +npv tyc wyR kry xpj -hXy +fxW pal lNu lNu -nwn -umm +kYA +jLb lNu lNu pal @@ -73778,8 +73778,8 @@ lNu lNu lNu lNu -qCi -fQV +oRv +mKl aoz dTs dTs @@ -73796,10 +73796,10 @@ dTs dTs cOH cOH -gDy -tIA -tIA -mss +sno +xxI +xxI +qAT cTi dNS pva @@ -73808,48 +73808,48 @@ wya oKG rdW fdk -htK -fGM +qDR +nfD dNS dNS dbu -hVE -dnF -gNe -jQc -vVo -loN -dnF -myK -jQc -vVo -hVE +rJc +vnm +jiw +wzW +hKR +wlV +vnm +urP +wzW +hKR +rJc dbu dNS dNS -ohT +hgh bYV rdW lyB cUy wgi cXh -eqf +pii dqi -mKO +icE dqV dqV edO dus -iHH -gSO +wqF +gsX dus dyb -wcz -ydz -ydz -rTC -oAf +gdx +fzd +fzd +xIb +ukR dyb dTs dTs @@ -73879,7 +73879,7 @@ dTs aez aez aaj -mlQ +wGw vTR abd uty @@ -73913,59 +73913,59 @@ aqg ahN aiZ aiZ -tzw -nzJ +oXp +jGT dTs dTs dTs dTs -hBP -vWy +rpa +nQe bhi -xIE -gbx +dFT +hIT bir biM biP bjo -rGO +rYB bkg bhi bhi -vhu -vWy -skM -dCr -sPH -hZT -wqb -teg -woq -hFu -wVP -xPc -tpq -xPc -xPc -gPn -xPc -qDD -qQm -ilL -pMu -mbr -rcn -rcn -cTb -cTb -cTb -cTb -rcn -oum -mDh -mDh -mDh -ucZ +fec +nQe +ugT +oMv +sHt +fnn +xna +uJO +rup +ewk +ngT +cXi +dGX +cXi +cXi +bbp +cXi +ozs +gzO +tpR +fMl +lPk +dXh +dXh +iyH +iyH +iyH +iyH +dXh +dFm +vVb +vVb +vVb +jRO bRq bSk bSk @@ -74010,9 +74010,9 @@ jmd cxx lNu jlP -qCi -vpP -tky +oRv +peO +npS dTs dTs dTs @@ -74030,10 +74030,10 @@ dTs dTs dTs cOH -fzS -xMU -tIA -mss +ykz +ele +xxI +qAT cTi dNS pva @@ -74042,48 +74042,48 @@ rdW dVj rdW fdk -htK -fGM +qDR +nfD dNS dNS daF -hVE -eYu -jQc -lAc -vVo -loN -dnF -rrh -jQc -tCx -hVE +rJc +ifr +wzW +oXy +hKR +wlV +vnm +lkn +wzW +iiH +rJc daF dNS dNS -ohT +hgh bYV rdW lyB oKG hzC dPf -htK +qDR die dqT dqV dqV edO dus -ghy -wbK +eoI +qtL ecy dyb -hzq -iBk -ydz -hMM -kts +pFp +xmD +fzd +ncj +qof dyb dTs dTs @@ -74113,7 +74113,7 @@ dTs dTs aez aak -wGt +fKe lcy abf abv @@ -74147,56 +74147,56 @@ aqg ahN aiZ aiZ -vST +oYP dTs dTs dTs dTs dTs -rSV -fYi +jgD +hRb bhi -xIE -gbx +dFT +hIT bir biM biP bjo -rGO +rYB bhi bhi bhi bhi bhi -uqX -sPH +uVI +sHt bia boc -sAr -xkN -xkN -sPN -sPN -sPN -jDG -sPN -sPN -xkN -sPN -sPN -xkN -uYi -ewT -iTN -pXq -pXq -uYi -uYi -pXq -ijw +fuS +uxY +uxY +neQ +neQ +neQ +eBy +neQ +neQ +uxY +neQ +neQ +uxY +jUW +trV +swP +kku +kku +jUW +jUW +kku +pzh bPv -vTN -vTN +kZC +kZC mdP nAm nAm @@ -74242,9 +74242,9 @@ eft eft jmd cxx -qCi -vpP -tky +oRv +peO +npS dTs dTs dTs @@ -74264,10 +74264,10 @@ dTs dTs dTs cOH -uYA -wMb -wMb -mXu +hUN +vxg +vxg +oXJ cOH dNS pva @@ -74276,46 +74276,46 @@ rdW ivr kJP fCB -htK -fGM +qDR +nfD dNS daF daF dbo daF -jQc -gNe -vVo -loN -ihs -jFG -gNe +wzW +jiw +hKR +wlV +gME +ljJ +jiw daF dbo daF daF dNS -ohT +hgh bYV sLx dmK dnB oBR dVn -ljP -xQK -csv -xBa -nst -igA -rQr -lNr -mAN +okA +ndS +fme +nyl +iRx +iIf +iiP +fMh +pPg dus dyb dyb eeq -cdM +whK eeq dyb dyb @@ -74347,7 +74347,7 @@ dTs dTs aez aez -wGt +fKe ncd iqs abw @@ -74356,81 +74356,81 @@ abX sUr acn dzU -kIR -oWi -jcp -sdH -pmX +spW +jCy +kwt +uNn +mpa aez aYx aez aez -hWP -slY -slY -slY -slY -slY -slY -slY -slY -oYZ +fww +mHH +mHH +mHH +mHH +mHH +mHH +mHH +mHH +kjL apA ahq aNL ahO amN -tzw -nzJ +oXp +jGT dTs dTs dTs dTs dTs dTs -wpX +wYv bhi -xIE -gbx +dFT +hIT bir biN bje bjo -rGO +rYB biw bhi bhi -mmi -nXY -cYt +erR +jjH +xNU bia bia -kvL -iqU +wiN +fAv byC -ppQ -idP -fRX -sPN -vbx -myL -ppQ -ppQ -ppQ -ppQ +muq +uwh +mxu +neQ +eDs +qhv +muq +muq +muq +muq byC -txV -xGf -hTG -uUN -qvK -xFJ -xFJ -obu -mBU +snQ +vzy +nQN +uEw +jOz +dlG +dlG +sCz +wPt bPv -vTN -vTN +kZC +kZC naH ozu ozu @@ -74476,7 +74476,7 @@ dGI dGI oIE cxx -fAJ +ezf dTs dTs dTs @@ -74498,59 +74498,59 @@ dTs dTs dTs cOH -hZA -hZA -hZA -lBG +oZu +oZu +oZu +mVa cOH dNS pva sLx wya dPf -pFx -uUt -fjO -fGM +kzw +raE +jia +nfD dNS dbu -xwl -rfo -rVt -jQc -jQc -oMe -oPS -vMg -jFG -gNe -oPt -hla -hVE +uLW +qjG +kIu +wzW +wzW +lfk +ooe +vdN +ljJ +jiw +lUe +jhb +rJc dbu dNS -ohT +hgh bYV rdW rdW dVj hzC dPf -mOe -olY -olY -olY -olY -iHH -iHH -jcg -xKj +ldZ +cqY +cqY +cqY +cqY +wqF +wqF +pSt +ozD dus edO -vkK -vkK -tvb -vkK +nYq +nYq +noR +nYq dCL dTs dTs @@ -74581,7 +74581,7 @@ dTs dTs aez aez -vOV +mco eRn mhR mhR @@ -74590,13 +74590,13 @@ mhR mhR mhR aRF -ibO -oWi -qKm -kQD +gCn +jCy +jeP +njE dTs -kfp -pmX +egJ +mpa pba aez aez @@ -74608,13 +74608,13 @@ aez aez agw hDT -qZQ +pMG pUO aqg aqg ahN aiZ -nzJ +jGT dTs dTs dTs @@ -74622,31 +74622,31 @@ dTs dTs dTs dTs -rSV -fYi -xIE -gbx +jgD +hRb +dFT +hIT bir biM biP bjo -byI -nXY -nXY -nXY +eij +jjH +jjH +jjH blK bia bia bia bia -kvL +wiN boJ boJ boJ boJ btc -fmW -vwO +wUd +uOw btc boJ boJ @@ -74654,8 +74654,8 @@ bzH bzH bzH bKL -erM -hps +rNo +oWE bKL bHm bHm @@ -74664,7 +74664,7 @@ bHm bHm bHm bHm -vTN +kZC naH ozu ozu @@ -74742,49 +74742,49 @@ tnu eZE eZE waC -qYt -rqh -fjO -fGM +lKS +fuc +jia +nfD dNS dbu -xwl -dnF -gNe -jQc -jQc -jQc -sJA -utb -oID -dCh -gNe -vVo -hVE +uLW +vnm +jiw +wzW +wzW +wzW +vpq +sCa +rKr +oDs +jiw +hKR +rJc dbu dNS -ohT +hgh bYV rdW rdW dVk hzC fdk -htK +qDR die dqV dqV dqV edO dus -iHH -gSO -qSt -hvt -tvb -tvb -tvb -mOl +wqF +gsX +kOr +gza +noR +noR +noR +rcj dCL dTs dTs @@ -74815,23 +74815,23 @@ dTs dTs dTs aez -wGt -wdX -pfo -ubH -ubH -ubH -rXd -rXd -ubH -oxw +fKe +him +lDk +jDv +jDv +jDv +fvI +fvI +jDv +wyM dTs dTs dTs dTs dTs -etu -pmX +uvp +mpa aez dTs dTs @@ -74842,12 +74842,12 @@ aYx aez aez bOE -qZQ +pMG pUO aqg aqg ahN -tzw +oXp dTs dTs dTs @@ -74857,14 +74857,14 @@ dTs dTs dTs dTs -wpX -xIE -gbx +wYv +dFT +hIT bir biM aox bjo -nZu +nzG bia bia bia @@ -74873,32 +74873,32 @@ bia bia bia bia -kvL +wiN boJ -uZY -lkk -lkk -qXI -fmW -rCB -xyk -oah +irY +toB +toB +kQS +wUd +qKV +wNf +udC ebQ -hnM -pGD -fHW -wSg -erM -rSp -tCS +sbN +oss +qYA +uvi +rNo +upg +tUD bHm -dzu -tNl -xPf -xnQ -eHT +dIB +vuq +eFm +wkM +qGY bHm -vTN +kZC naH ozu ozu @@ -74906,45 +74906,45 @@ bRr uml vgm xsS -sYQ -mQz -mQz -mQz -mQz -mQz -mQz -mQz -mQz -mQz -jDx -jDx -jDx -jDx -jDx -jDx -jDx -jDx -jDx -jDx -jDx -rHr -sTG -sTG -sTG -sTG -sTG -plZ -oQd +pQU +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +iPa +iPa +iPa +iPa +iPa +iPa +iPa +iPa +iPa +iPa +iPa +jBB +sBU +sBU +sBU +sBU +sBU +mrW +bMU tyc rFU kry xpj -hWH +tyx lNu lNu lNu lNu -fAJ +ezf dTs dTs dTs @@ -74976,49 +74976,49 @@ dNS dNS mAm dNS -qqI -rqh -fjO -fGM +fya +fuc +jia +nfD dNS daF -uFc -dnF -jQc -jQc -siq -pkO -ouc -pxw -tNp -gGh -mmF -vVo -qAj +vBG +vnm +wzW +wzW +roa +rxn +eqg +lJL +iOx +jvt +vKU +hKR +juy daF dNS -ohT +hgh bYV vnf hjm dVj rdW fdk -eqf +pii dqm dqW -nDf +sHP dqW dqm eby -qSt -uYy -fdm -fdm -tFP -tFP -pMZ -vkK +kOr +kkb +krK +krK +dmj +dmj +ojc +nYq dCL dTs dTs @@ -75049,15 +75049,15 @@ dTs dTs dTs dTs -wGt -wGt -wGt -wGt -wGt -wGt -uyh -wDg -wGt +fKe +fKe +fKe +fKe +fKe +fKe +nEx +dni +fKe dTs dTs dTs @@ -75076,7 +75076,7 @@ dTs aez pba anE -qZQ +pMG ahc aql ara @@ -75091,48 +75091,48 @@ dTs dTs dTs dTs -vWy -xIE -gbx +nQe +dFT +hIT bir biN bje bjo -qoC -qFh -qFh -qFh -qFh -qFh -qFh -qFh -qFh -kvL +mUs +hxm +hxm +hxm +hxm +hxm +hxm +hxm +hxm +wiN btc -cWZ -dtC -dtC -uKr -peK -hkX -eHK -eHK -hQu -eKq -eKq -qSz -eKq -teJ -rpD -aYB +fJd +map +map +rJv +qxH +tuW +tGY +tGY +sUi +wtY +wtY +een +wtY +dvc +nQS +pHk bRO -iiy -wvZ -gxS -mlo -eos +lmr +ygY +gZB +rEK +tsG bRO -vTN +kZC naH ozu ozu @@ -75140,27 +75140,27 @@ bRr ozu ozu xsS -efS -vTN -jwI -for -for -for -for -for -bHt -vTN -ncp -mYi -fwE -fwE -fwE -fwE -fwE -fwE -fwE -fwE -fwE +jcW +kZC +eZc +htu +htu +htu +htu +htu +wmP +kZC +kTr +wjh +kyZ +kyZ +kyZ +kyZ +kyZ +kyZ +kyZ +kyZ +kyZ mNk gca gca @@ -75168,18 +75168,18 @@ gca gca gca mNk -jGq +rEr qkJ eft eft xpj -hXy +fxW pal lNu kbo lNu -nwn -eyC +kYA +pES dTs dTs dTs @@ -75210,49 +75210,49 @@ cVV cVV cPL dNS -qqI -rqh -fjO -rCm -wFb +fya +fuc +jia +tQb +lgl dbu -egm -nhO -jQc -gNe +nzD +hbu +wzW +jiw ddQ eDQ -fXU +mfS dfT eDQ -pjI -jQc -oMe -egm +tKi +wzW +lfk +nzD dbu -wFb -wwH +lgl +pjE bYV hzC hzC dVj rdW fdk -htK +qDR dqm -sQj -tuL -lzN +qiY +uEa +nbH dqm dus -qSt -tcz +kOr +sKU dus dOg -vkK -tvb -tvb -vkK +nYq +noR +noR +nYq dCL dTs dTs @@ -75284,15 +75284,15 @@ dTs dTs dTs dTs -ftA +lLt bab -rLY -rLY +uRE +uRE abY aci aco acv -ybu +xzE dTs dTs dTs @@ -75310,12 +75310,12 @@ dTs dTs aez aez -qZQ +pMG pUO ahs ahG dzU -oWi +jCy dTs dTs dTs @@ -75325,9 +75325,9 @@ dTs dTs dTs dTs -fYi -xIE -gbx +hRb +dFT +hIT bir biM biP @@ -75341,32 +75341,32 @@ bjG bjG auN bnr -hrs +pTT btc -kcM -fmW +wpO +wUd brX brX bEL brX bEL -fmW -lJA -lJA -lJA -tFk -lJA -lJA -wVn -pMd -nDB -cBv -lEW -ldQ -lck -eos +wUd +woJ +woJ +woJ +oqF +woJ +woJ +nhC +lKo +gZF +dlp +iyK +hvp +ayb +tsG bRO -vTN +kZC naH ozu ozu @@ -75374,8 +75374,8 @@ bRr ozu ozu xsS -efS -jwI +jcW +eZc bVD bVE bVE @@ -75383,38 +75383,38 @@ bVE bVE bVE bVD -vTN -rND -iTB -tPB -uZE +kZC +vAp +uhR +pIG +emS cgG cgI cgI chV chm cjl -fwE -uiP -jXL -jXL -jXL -jXL -jXL -kMg -fwE +kyZ +lSp +nDM +nDM +nDM +nDM +nDM +rQN +kyZ tyc eft olL xpj -uiP -jXL -jXL -jXL -jXL -jXL -jXL -jXL +lSp +nDM +nDM +nDM +nDM +nDM +nDM +nDM dTs dTs dTs @@ -75436,57 +75436,57 @@ dTs cPL cPL cPL -iNU -epI +ogC +oQD cPL -fWS -eEq -rWn +bNB +oaV +rsp cPL cPL -pFx -gcZ +kzw +wbO uFX -mAI -qJt -hmh -gNe -gNe -jQc -gNe +ovr +hWe +tcD +jiw +jiw +wzW +jiw ddR daF daF daF dgO -pjI -jQc -jQc -gNe -kFg -hCo -fjO +tKi +wzW +wzW +jiw +wPG +mnZ +jia bYV rdW hzC oKG rdW fdk -htK +qDR die -vsA +tNC dsc eak -rpw -fdm -fdm -hMU +xPo +krK +krK +jBs dus doH -dsd -tvb -tvb -vkK +llM +noR +noR +nYq dCL dTs dTs @@ -75518,16 +75518,16 @@ dTs dTs dTs ebs -iTn +jVI bac -chE +feH abF -oqc -kzT +haG +mDg acp acy aez -qKm +jeP dTs dTs dTs @@ -75541,15 +75541,15 @@ dTs dTs dTs dTs -hmO +qcw aez aez -rsA +xve pUO sUr ahs dzU -oWi +jCy dTs dTs dTs @@ -75558,10 +75558,10 @@ dTs dTs dTs dTs -xZo -vWy -xIE -gbx +eCC +nQe +dFT +hIT bir biO bjf @@ -75575,32 +75575,32 @@ bjq bjf bjf bns -dYg +eCm btc -wqG -fmW +tyq +wUd bEL bFY bFY bFY bEL -fmW +wUd btc -vYk -fpB -pMj -pMj -wHh -eLs -usy -tgg -tgg -ylD -vbL -qck -pJQ +wjA +pKT +szO +szO +hcO +iSN +rrL +jIe +jIe +rBK +gSg +fkl +eIO bRO -vTN +kZC naH ozu ozu @@ -75608,46 +75608,46 @@ bRr uml vgm xsS -efS -vgW +jcW +ppQ bVE -gFQ -krX -krX -krX -krX -ntb -vTN -iWc -rTT -lZk +lVw +ieG +ieG +ieG +ieG +lIx +kZC +jFP +bcd +wJe cga cfX chm -nbK -hMi -gYz -euD +eIH +xqF +pMy +qWW chm clD -ltj +gzV cnB -eHg -iRH -ltj -nnu -ktw +xMQ +onx +gzV +gYm +sND dfc ees dNR dTH -ktw +sND mBd chm chm clD -ltj -ltj +gzV +gzV dTs dTs dTs @@ -75668,58 +75668,58 @@ dTs dTs dTs cPL -xLI -xLI -iNU -qKu +rNP +rNP +ogC +ssu cPL -giW -wny -mQE -wny +uuy +gAO +tqB +gAO cVV -pFx -gcZ +kzw +wbO uFX cYV -oOg -jQc -jQc -jQc -jQc -gNe +xrn +wzW +wzW +wzW +wzW +jiw ddS daF daF daF dgP -pjI -jQc -jQc -gNe -gNe -tQi -fjO +tKi +wzW +wzW +jiw +jiw +vca +jia bYV sLx wya pzv kJP fCB -htK +qDR die -lrO +oAP dqV dqV dqm dus -jcg -gSO +pSt +gsX dus doH -gTy -tvb -tvb +lzy +noR +noR bgq dCL dTs @@ -75751,18 +75751,18 @@ aab aab aab aab -pMC -jNs -iTn +kSV +npo +jVI aKw bac -chE +feH bbM -aYA -mWn -xUZ -aYA -aYA +hbw +arN +ukA +hbw +hbw dTs dTs dTs @@ -75773,29 +75773,29 @@ dTs dTs dTs dTs -wGt -nIx -arP -arP -arP -rJw +fKe +pCU +rGH +rGH +rGH +udq pUO aht uWT dzU -nIx +pCU dTs dTs dTs dTs dTs dTs -qoF -qoF -qoF -qoF -jFI -gbx +tuw +tuw +tuw +tuw +uQe +hIT bir biP biP @@ -75809,32 +75809,32 @@ atM aox aox bjo -tPh +kDd btc -uAu -fmW +igH +wUd bEL bGQ bsK bGQ bEM -pxT +fGn btc -oSU -jRY -pMj -pMj -wHh -gxi -qts +xAL +nmd +szO +szO +hcO +kOC +qzb bRO -gWg -ebX -mlo -ebX -pJQ +kCE +kFT +rEK +kFT +eIO bRO -vTN +kZC naH ozu ozu @@ -75842,46 +75842,46 @@ bRr ozu ozu xsS -efS -vgW +jcW +ppQ bVE -jnf -gaK -tPB -sAk -sAk -gsZ +xEA +qcj +pIG +nLt +nLt +qwA cfX cfY -gba -xGZ -xGZ -xGZ -gYz -gqr +nvM +gen +gen +gen +pMy +iLA cho cho -eKx -gYz -oCE +xWo +pMy +iUS ciQ cnC -ghb -fjy -gpG -wlT -oQe +tjl +jYl +eJJ +xUu +ijN hEU hEU czV czV -oQe -xEY -gYz -gYz -gYz -gYz -oCE +ijN +jXx +pMy +pMy +pMy +pMy +iUS ciQ dTs dTs @@ -75902,58 +75902,58 @@ dTs dTs dTs cPL -fMU -iNU -iNU -jcu -lpe -mIR -mIR -wbG -mIR -xYE -soP +pLF +ogC +ogC +xOY +fpx +kMl +kMl +ugt +kMl +ifW +nJx cXj cXj -jmS -jyt +vzk +xNa dbu -izh -jHM -jQc -gNe +eht +eoO +wzW +jiw ddT dex dex -upf +xKC grQ -pjI -gNe -gMB -kvU +tKi +jiw +mbt +juO dbu -jyt -mGZ +xNa +nHH bYV rdW rdW fdk -oGt -kmh -cXV +oLC +fuH +hoI dqm -hjx -iIL -ftm +gYO +pKy +hgg dqm eeo -uwR -vgE +sPf +jcG dOf dpB -mDe -tvb -tvb +oUi +noR +noR bgq dCL dTs @@ -75987,18 +75987,18 @@ aab aab aaQ aJy -jNs -jGT -jGT -iTn +npo +uWZ +uWZ +jVI bac -chE -chE -chE -chE -chE -chE -chE +feH +feH +feH +feH +feH +feH +feH dTs dTs dTs @@ -76006,30 +76006,30 @@ dTs dTs dTs dTs -ftA -ftA -ftA +lLt +lLt +lLt bab -rLY -gpN -wGt +uRE +rEF +fKe pUO sUr ahs ahR -wGt +fKe dTs dTs dTs dTs dTs -yai -yai -yai -oet -iqU -nZu -gbx +rOT +rOT +rOT +vlP +fAv +nzG +hIT bis biQ biQ @@ -76043,32 +76043,32 @@ bmg aox biP bjo -tPh +kDd btc -mKA -fmW +pIX +wUd bEM bEM brX brX bEM -uiY +imT btc -unQ -pMj -pMj -pMj -wHh -wVn -sGy +nUw +szO +szO +szO +hcO +nhC +enK bRO -hHu -ebX -ebX -mlo -kCK +tXF +kFT +kFT +rEK +qne bRO -vTN +kZC naH ozu ozu @@ -76076,18 +76076,18 @@ bRr ozu ozu xsS -efS -liL +jcW +unr bVD -ntb -nuM -lZk +lIx +ddD +wJe ceg ceg ceg -gba -xGZ -kEB +nvM +gen +pzT bOu bOu bOu @@ -76097,12 +76097,12 @@ cho cho cho cho -eKx -gYz -gYz -gYz -gYz -gqr +xWo +pMy +pMy +pMy +pMy +iLA cho cho czV @@ -76115,9 +76115,9 @@ cho cho cho cho -eKx -gYz -oCE +xWo +pMy +iUS cnC dTs dTs @@ -76136,43 +76136,43 @@ dTs dTs dTs cPL -xut +hTS cPL -xut +hTS cPL cPL -wny -wny -wny -wny -wny -tQi -wng +gAO +gAO +gAO +gAO +gAO +vca +wWX xqQ -wyj +qIm dNS daF -uFc -dnF -jQc -jQc -gNe -gNe -gNe -gNe -gNe -pjI -gNe -vVo -qAj +vBG +vnm +wzW +wzW +jiw +jiw +jiw +jiw +jiw +tKi +jiw +hKR +juy daF dNS -ohT +hgh bYV rdW rdW fdk -nNF +uTA vuu dpB dqm @@ -76180,14 +76180,14 @@ dqm dqm dqm dqm -fkB -uwR -pqP +pMO +sPf +vXF dqo dpB -gTy -tvb -tvb +lzy +noR +noR bgq dCL dTs @@ -76224,13 +76224,13 @@ aJy aJy aJy aJy -jNs -jGT -jGT -jGT -jGT -jGT -iTn +npo +uWZ +uWZ +uWZ +uWZ +uWZ +jVI aKw aKw aKw @@ -76244,65 +76244,65 @@ aKw aKw aKw bac -chE -pfa -hZa +feH +oTe +lYN ahf ahw cEe ahS -jKK +seu dTs dTs dTs bbL -evb -rvy -rvy -lBP -oTO -usU -nZu +oFO +vZm +vZm +qOy +edh +kdK +nzG bia -qSC -qSC -qSC -qSC -qSC -qSC -qSC -qSC -mMn +cpe +cpe +cpe +cpe +cpe +cpe +cpe +cpe +qxV aui bki bje bjo -tPh +kDd btc -sqi -hDe -hDe -igt -hDe -fmW -uJd -hDe +mGb +seF +seF +qmQ +seF +wUd +jAf +seF btc -feh -wCH -pMj -pMj -lJA -gxi -pCO +pPt +kHI +szO +szO +woJ +kOC +ucp bRO -sNt -hZd -tMc -eAt -ewQ +kBP +laI +xka +bJy +efG bRO -vTN +kZC naH ozu ozu @@ -76310,16 +76310,16 @@ bRr uml vgm xsS -efS -vTN -vTN -vTN -qSi +jcW +kZC +kZC +kZC +etD ceg -gba -xGZ -xGZ -kEB +nvM +gen +gen +pzT bOu bOu bOu @@ -76351,8 +76351,8 @@ cho cho cho cho -eKx -oCE +xWo +iUS ciQ cYh dTs @@ -76370,43 +76370,43 @@ dTs dTs dTs cPL -jNe +pQT cPL -jNe +pQT cPL cPL -wny -vIa -wny -wny +gAO +qmg +gAO +gAO cVV -jyt -qYt -gcZ -wyj +xNa +lKS +wbO +qIm dNS dbu -xwl -dnF -gNe -jQc -jQc -gNe -gNe -utb -utb -uYT -gNe -vVo -hVE +uLW +vnm +jiw +wzW +wzW +jiw +jiw +sCa +sCa +uLA +jiw +hKR +rJc dbu dNS -ohT +hgh bYV sLx wya fdk -nNF +uTA dNS dpB dVs @@ -76415,16 +76415,16 @@ dqn dsR dOc dtz -eVL -ujk +gbq +eEv dWr dpB diq -tvb -ipP +noR +oaw dOk dCL -qQT +tmw skB dTs dTs @@ -76464,10 +76464,10 @@ aJy aJy aJy aJy -jNs -jGT -jGT -iTn +npo +uWZ +uWZ +jVI aKw aKw dTs @@ -76476,67 +76476,67 @@ aKw aKw aKw aKw -gtN -jGT -jGT -nqW -jKK -lOC -lOC -kvA +krY +uWZ +uWZ +iae +seu +jnS +jnS +tqd cyP -jKK -fAB -iTn +seu +sBT +jVI aKw bac -chE -chE +feH +feH bbL -rvy -wSM -fWW -qoC -qFh -qFh -giG -qFh -qFh -qFh -qFh -qFh -qFh -gbx +vZm +qGr +oxo +mUs +hxm +hxm +qdP +hxm +hxm +hxm +hxm +hxm +hxm +hIT bir aox biP bjo -tPh +kDd boJ -mdT -fXJ -fXJ -fXJ -oij -vAM -hDe -mHW +nrK +wGU +wGU +wGU +oLv +lnt +seF +oxJ boJ -gee -bOy -bOy -kqQ -wHh -jvs -pCO +mtH +hcB +hcB +qqj +hcO +wEO +ucp bHm bIt bJB -kFD -pFP +vuS +jyF bHm bHm -vTN +kZC ngo oAM oAM @@ -76544,13 +76544,13 @@ ueZ ozu ozu xsS -efS -gaK -tIr -tPB -vpN -gba -kEB +jcW +qcj +jOB +pIG +tnQ +nvM +pzT bOu bOu bOu @@ -76586,8 +76586,8 @@ cho cho cho cho -eKx -oCE +xWo +iUS cnC dTs dTs @@ -76609,59 +76609,59 @@ cPL cPL cPL cPL -jJO -wny -wny -wmy +jrA +gAO +gAO +vId cPL vuu -qqI -gcZ -wyj +fya +wbO +qIm dNS dbu -xwl -ycX -vsf -mxg -jQc -gMB -rWN -uzj -jQc -pjI -njg -xlN -hVE +uLW +oKK +jxX +dyu +wzW +mbt +yaR +qaY +wzW +tKi +ovp +fHW +rJc dbu dNS -ohT +hgh bYV rdW rdW fdk -nNF +uTA dNS dpB dNX -mVp -anW -sNj -uwR -rDd -ydQ -glZ +tnK +fQT +tVH +sPf +hhq +vGo +hKk lxq dpB -pFx -hCo -vrm -sLX +kzw +mnZ +tFF +pOe ebP -lAv -lmM -lmM -lmM +lqn +nhN +nhN +nhN dTs dTs dTs @@ -76701,16 +76701,16 @@ aJy aJy aJy aJy -jNs -iTn +npo +jVI aKw aKw aKw -gtN -jGT -jGT -jGT -qJe +krY +uWZ +uWZ +uWZ +hfJ aJy aJy aJy @@ -76721,31 +76721,31 @@ bTi bTi bTi aJy -jNs -jGT -iTn +npo +uWZ +jVI aKw aKw bWw -evb -uMi -mlb -iqU -iqU -iqU -iqU -eyX -iqU -iqU -iqU -iqU -iqU -tPh +oFO +nOU +qEE +fAv +fAv +fAv +fAv +tIq +fAv +fAv +fAv +fAv +fAv +kDd bir biP biP bjo -tPh +kDd boJ boJ btc @@ -76753,15 +76753,15 @@ btc boJ boJ btc -qLo +vdy btc btQ bDR bDR bDR bDR -lIu -iIc +ezu +meG bGc bHm bHm @@ -76769,21 +76769,21 @@ bHm bRO bRO bHm -bHt -vTN -hvF -mQz -jFi +wmP +kZC +ryW +cSi +kwV naH ozu ozu xsS -efS -iWc -rTT -lZk -gba -kEB +jcW +jFP +bcd +wJe +nvM +pzT bOu bOu bOu @@ -76795,8 +76795,8 @@ bOu bOu cho cho -wJu -xfY +xgw +icw cjR cho cho @@ -76821,8 +76821,8 @@ cho cho cho cho -eKx -oCE +xWo +iUS ciQ dTs dTs @@ -76842,62 +76842,62 @@ dTs dTs dTs cPL -uHi -wny -wny -wny -hfc +klQ +gAO +gAO +gAO +ovC cVV dNS -qqI -gcZ -wyj +fya +wbO +qIm dNS daF daF dbu daF -gNe -jQc -sMv -xoT -ihs -jQc -pjI +jiw +wzW +lzp +nog +gME +wzW +tKi daF dbo daF daF dNS -ohT +hgh bYV rdW rdW fdk -nNF +uTA dNS dpB dqo -jrk -fkp -vhQ -fQH -uwR -uwR -ihW +ewc +kAx +jJX +xbm +sPf +sPf +maR qXZ dpB -pFx -gcZ -fjO -fMW -wFb -wFb -wFb -wFb -wFb -osm -xJA +kzw +wbO +jia +tNU +lgl +lgl +lgl +lgl +lgl +phl +ejs dTs dTs dTs @@ -76936,11 +76936,11 @@ aJy aJy aJy aJy -jNs -jGT -jGT -jGT -qJe +npo +uWZ +uWZ +uWZ +hfJ aJy aJy aJy @@ -76957,66 +76957,66 @@ bTi aJy aJy aJy -jNs -jGT -iTn +npo +uWZ +jVI bac -chE -rsJ -ftA +feH +vMZ +lLt bab -wyv +qDm amw amw amw -hlf -mCW -gSq -gSq -dlW -tPh +iYs +ijF +ngw +ngw +tss +kDd bir bki bje bjo -tPh -hSn +kDd +fjM bhi bTR bhi bhi btQ -xmd -xmd -xmd -eYb -xmd -xmd -xmd -xmd -tKp -npX -xmd -eYb -xmd +lfD +lfD +lfD +rRx +lfD +lfD +lfD +lfD +kpH +kFt +lfD +rRx +lfD btQ cNW cNW cNW -jnf -vTN -vTN -qRl -bqC +xEA +kZC +kZC +nzR +elB naH uml vgm xsS -efS +jcW bXY -gba -xGZ -kEB +nvM +gen +pzT bOu bOu bOu @@ -77024,17 +77024,17 @@ bOu bOu bOu bOu -gvn -xIO -xIO -xfY -xfY -tOk +xSd +jXj +jXj +icw +icw +kRa ciQ -iWa -xfY -xfY -xfY +tBK +icw +icw +icw cjR cho cho @@ -77045,19 +77045,19 @@ czV czV cho cho -oQe -kCr -xfY -xfY -xfY +ijN +uap +icw +icw +icw cjR cho cho cho cho cho -eKx -oCE +xWo +iUS ciQ dTs dTs @@ -77076,44 +77076,44 @@ dTs dTs dTs cPL -oxS -wny -wny -lHS -eEq +jal +gAO +gAO +jcX +oaV cVV dNS -qqI -gcZ -nYa +fya +wbO +xjg dNS dNS daF -xwl -cqP -jQc -utb -rRn -xwl -ihs -lAc -pFb -vnA -hVE +uLW +wEe +wzW +sCa +noy +uLW +gME +oXy +ykw +eVK +rJc daF dNS dNS -ohT +hgh bYV sLx wya fdk -nNF +uTA dNS dpB dqo cgp -lzw +lua dqo dOe dVP @@ -77121,18 +77121,18 @@ dvt dwy ebA dpB -pFx -gcZ +kzw +wbO uFX -wDS -wDS -wDS -wDS -wDS -vrm -sLX -lAv -lmM +ygT +ygT +ygT +ygT +ygT +tFF +pOe +lqn +nhN dTs dTs dTs @@ -77156,13 +77156,13 @@ dTs dTs dTs ebs -pdK -wLC -wLC -wLC -wLC -wLC -wLC +fdF +tNP +tNP +tNP +tNP +tNP +tNP aXS aJy aJy @@ -77193,62 +77193,62 @@ aJy aJy aJy aJy -jNs -jGT -jGT -jGT -iTn +npo +uWZ +uWZ +uWZ +jVI bac -nzw -hlK -hlK -hlK -tvd -rcP +ucP +uCC +uCC +uCC +qGl +yjv bXd bXd bXs -tPh +kDd bir biP biP bjo -tPh -jEQ -qoF -qoF -qoF -qoF +kDd +qjp +tuw +tuw +tuw +tuw btQ -xmd -ozo -fve -fve -fve -fve -fve -fve -vXQ -pWC -fve -dvQ -xmd +lfD +upd +wie +wie +wie +wie +wie +wie +wBw +rBn +wie +rFP +lfD btQ -krX -krX -krX -ntb -opn -gsZ +ieG +ieG +ieG +lIx +geq +qwA bVz -kue +bkF clB clB clB clB -dEg -nUM -kEB +tVE +xyp +pzT bOu bOu bOu @@ -77257,42 +77257,42 @@ bOu bOu bOu bOu -gvn -ljy +xSd +nrU ceg ceg ciQ ciQ ciQ -vzd -jjl -jjl -jjl -kzx -iWa -xfY -xfY -xfY -wsL -oQe -xFG -xFG -xFG +gkj +pYo +pYo +pYo +tIJ +tBK +icw +icw +icw +ihK +ijN +sWZ +sWZ +sWZ cho -oQe -knu -kzx +ijN +tkx +tIJ ciQ ciQ -iWa +tBK cjR cho cho cho cho cho -eKx -oCE +xWo +iUS dTs dTs dTs @@ -77310,39 +77310,39 @@ dTs dTs dTs cPL -vFu -wny -wny -lHS -eEq +paX +gAO +gAO +jcX +oaV cVV dNS -oin -gjs -wyj +tkz +ufZ +qIm dNS dNS dbu -xwl -dnF -jQc -gNe -vVo -xoT -ihs -jQc -pjI -vVo -hVE +uLW +vnm +wzW +jiw +hKR +nog +gME +wzW +tKi +hKR +rJc dbu dNS dNS -ohT +hgh bYV rdW rdW fdk -elo +xZy doL doL edY @@ -77355,19 +77355,19 @@ edY edY doL doL -pFx -gcZ +kzw +wbO uFX -wng -wng -wng -wng -wng -vrH -sLX +wWX +wWX +wWX +wWX +wWX +oub +pOe dNS dNS -xJA +ejs dTs dTs dTs @@ -77397,9 +77397,9 @@ dTs aKw aKw aKw -wAn -wLC -wLC +mtr +tNP +tNP aXS aJy aJy @@ -77431,56 +77431,56 @@ aJy aJy aJy aJy -jNs -jGT -iTn +npo +uWZ +jVI aKw aKw aKw bXd bXd -fOs -lqv -qPs -qCI -hXL -hXL -hXL -hXL -qCI -xWv -wNQ -wNQ -gsC -hXL +hTM +gBr +ttP +iuq +wpL +wpL +wpL +wpL +iuq +jpx +tMs +tMs +jMk +wpL bCs bSY -tKp -mRd -oOm -mRd +kpH +dmp +whn +dmp bAK -vXQ +wBw bZQ -kUV -duL +mOr +wgD aEN aKu bZQ bCs -tHd -tlG -cJu -cJu -gPp -xGZ -raB -kue -tHd -tHd -tHd -tHd -dEg +mWy +jPm +qyT +qyT +pPO +gen +eRy +bkF +mWy +mWy +mWy +mWy +tVE aIh bOu bOu @@ -77489,11 +77489,11 @@ bOu bOu bOu bOu -gvn -xIO -ljy -qlC -oZs +xSd +jXj +nrU +rTS +egw dTs dTs dTs @@ -77502,24 +77502,24 @@ dTs dTs dTs dTs -rgN -mlH +tgr +jmv chS chS -fSQ -xTu -ktw +sXb +gXw +sND dfc dgF jrV dTH -ktw -ibG -rgN -tRZ -tRZ -mlH -mLE +sND +rkm +tgr +vVm +vVm +jmv +vzF cCb cDd cho @@ -77544,39 +77544,39 @@ dTs dTs dTs cPL -nIG -wny -wny -wny -kOX +thP +gAO +gAO +gAO +lUD cPL dNS dNS -gci -wyj +lRi +qIm dNS dNS dbu -xwl -dnF -jQc -gNe -oMe -frc -vMS -qqK -jEG -vVo -hVE +uLW +vnm +wzW +jiw +lfk +oyN +gFa +ioh +emq +hKR +rJc dbu dNS dNS -ohT +hgh bYV rdW rdW fdk -htK +qDR doL dpC dpC @@ -77589,20 +77589,20 @@ dpC dpC ebB doL -frO -gcZ -fjO -pFx -pFx -pFx -pFx -pFx -pFx -sLX +icL +wbO +jia +kzw +kzw +kzw +kzw +kzw +kzw +pOe vuu dNS -lAv -qQT +lqn +tmw dTs dTs dTs @@ -77630,12 +77630,12 @@ dTs dTs dTs aKw -gGH -syL -nlK +veF +osN +sDw aKw -wAn -wLC +mtr +tNP aXS aJy aJy @@ -77646,13 +77646,13 @@ aJy aJy aJy aJy -pdK -wLC -wLC -smG -orO -ifD -pqi +fdF +tNP +tNP +rqv +goG +fgJ +lhu bTi bcQ bTi @@ -77667,21 +77667,21 @@ aJy aJy aJy aJy -jNs -jGT -jGT -jGT -jGT -lqv -sHC +npo +uWZ +uWZ +uWZ +uWZ +gBr +nvP bXn bXu -qCI +iuq bSY bSY bSY bSY -qCI +iuq bYj bXn bXn @@ -77689,15 +77689,15 @@ bXu bSY bCs bSY -jdL +xAT ccp ccp ccp ccp -kUV +mOr bZQ -kUV -duL +mOr +wgD aIh bhc bZQ @@ -77709,21 +77709,21 @@ bOu bOu bOu bhc -kue +bkF bZQ bZQ bZQ bZQ -dEg +tVE aIh bOu bOu bOu bOu bOu -gvn -xIO -ljy +xSd +jXj +nrU ceg ceg dTs @@ -77738,30 +77738,30 @@ dTs dTs dTs dTs -gOH -gOH -gOH -tlO -fIp +fTc +fTc +fTc +xbv +jXQ cfw dPY dPY chr -fIp -tTs -gOH -gOH -gOH -gOH -tlO -fIp +jXQ +jAw +fTc +fTc +fTc +fTc +xbv +jXQ cFf cho cho cho cho -eKx -oCE +xWo +iUS dTs dTs dTs @@ -77778,65 +77778,65 @@ dTs dTs dTs cPL -tmT -wny -wny -wny -wny +cWt +gAO +gAO +gAO +gAO cVV dNS dNS -gci -wyj +lRi +qIm dNS dNS dbu -xwl -dnF -jQc -jQc -jQc -vzq -gNe -jQc -pFb -vVo -hVE +uLW +vnm +wzW +wzW +wzW +eLO +jiw +wzW +ykw +hKR +rJc dbu dNS vuu -ohT +hgh bYV sLx wya fdk -htK +qDR dhA dpC -tKt -tKt -tKt -shz -tKt -tKt -tKt -tKt +hZI +hZI +hZI +hEy +hZI +hZI +hZI +hZI dpC dhA -pFx -gcZ -fjO -pFx -hHk -hkL -hkL -hkL -mPO -ova -msM -msM -vax -xJA +kzw +wbO +jia +kzw +hCz +oeT +oeT +oeT +lGD +jFo +mdU +mdU +etE +ejs skB dTs dTs @@ -77863,14 +77863,14 @@ dTs dTs dTs dTs -syL -kQx -wqj -rwY -nlK +osN +wcn +eJk +lif +sDw aKw aKw -wAn +mtr aXS aJy aJy @@ -77878,19 +77878,19 @@ aJy aJy aJy aJy -pdK -wLC -qjl +fdF +tNP +eUK aKw aKw bOx -orO +goG bRs cEe xMr djZ -orO -fxt +goG +xmJ aXS aJy aJy @@ -77910,12 +77910,12 @@ aJy bXn bXn bXu -qCI +iuq bSY bSY bSY bSY -qCI +iuq bYI cbv cbv @@ -77923,15 +77923,15 @@ ccg bSY bCs bSY -tKp -mRd -oOm -mRd +kpH +dmp +whn +dmp bAK -vXQ +wBw bZQ -kUV -duL +mOr +wgD aJz bLF bZQ @@ -77943,22 +77943,22 @@ bOv bOv bOv bLF -kue +bkF bZQ bZQ bZQ bZQ -dEg +tVE aIh bOu bOu bOu bOu -gvn -ljy +xSd +nrU ceg -qlC -oZs +rTS +egw dTs dTs dTs @@ -77972,31 +77972,31 @@ dTs dTs dTs dTs -rIR +xLB ceo ceo cen -ijX +xLG cfw iAf cgL pUR -gGe +kjl cen ceo ceo ceo ceo cen -tlO +xbv cGT cho cho cho cho cho -eKx -oCE +xWo +iUS dTs dTs dTs @@ -78013,65 +78013,65 @@ dTs dTs cPL cPL -byi -lWr -eEq +kLx +ufY +oaV cPL cPL dNS dNS -mNi -wyj +nkU +qIm dNS dNS dbu -xwl -dnF -gNe -gNe -jQc -jQc -jQc -jQc -pjI -vVo -hVE +uLW +vnm +jiw +jiw +wzW +wzW +wzW +wzW +tKi +hKR +rJc dbu dNS dNS -ohT +hgh bYV rdW rdW fdk -htK +qDR dhA dpC -tKt -tKt -tKt -gLo -peg -peg -uId -tKt +hZI +hZI +hZI +nYr +rzy +rzy +wWQ +hZI dpC dhA -pFx -gcZ -fjO -pFx -ntr -wVw -jNV -nsp -tuD -tuD -mCk -rwn -vrO -lAv -qQT +kzw +wbO +jia +kzw +nnT +kqD +eLr +sFg +kOI +kOI +rnY +ydE +jpk +lqn +tmw dTs dTs dTs @@ -78098,36 +78098,36 @@ dTs dTs dTs dTs -evb -evb -evb -rwY -syL -nlK +oFO +oFO +oFO +lif +osN +sDw aKw -wAn -wLC +mtr +tNP aXS aJy -pdK -wLC -wLC -qjl +fdF +tNP +tNP +eUK aKw -gGH -syL -syL -pmN -sCm +veF +osN +osN +jWv +nZy aXW aWa aWB aZk -sCm +nZy aiC -wAn -wLC -wLC +mtr +tNP +tNP aXS aJy aJy @@ -78144,53 +78144,53 @@ aJy aJy bXn bXu -tPh +kDd bir biP biP bjo -tPh -iqU -iqU -iqU -iqU -iqU +kDd +fAv +fAv +fAv +fAv +fAv btQ -wyF -tKp -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -pWC -vXQ -wDs -wnm +rbi +kpH +wBw +wBw +wBw +wBw +wBw +wBw +wBw +rBn +wBw +gKU +lHY btQ -vTN -vTN -vTN -vTN -vTN -vTN -vTN -bqC +kZC +kZC +kZC +kZC +kZC +kZC +kZC +elB naH ozu ozu xsS -efS +jcW aIh bOu bOu bOu -gvn -ljy -qlC -oZs +xSd +nrU +rTS +egw dTs dTs dTs @@ -78206,24 +78206,24 @@ aDT aDT dTs dTs -uUG +rWB cdw cdw cdw -lRu +gpV cfw dPY idg chr -hzP +lil cdw cdw cnE cdw cdw ceo -hkG -gAC +vqP +fSU cjR cho cho @@ -78254,58 +78254,58 @@ cVV cPL dNS dNS -mNi -wyj +nkU +qIm cZF dNS daF -xwl -ycX -kvU -kvU -kvU -kvU -jHM -gNe -pjI -vVo -qAj +uLW +oKK +juO +juO +juO +juO +eoO +jiw +tKi +hKR +juy daF dNS dNS -ohT +hgh bYV rdW rdW fdk -htK +qDR doL eaV -maI -kKl -pns -tJj +fcO +iHS +eRE +nzd ehP ehP -vme -tKt -tKt -oyH -hCo +jaw +hZI +hZI +jII +mnZ uFX -fjO -pFx -ntr -jNV -nsp -tuD -tuD -tuD -tuD -gEk -vrO +jia +kzw +nnT +eLr +sFg +kOI +kOI +kOI +kOI +gOY +jpk dNS -xJA +ejs dTs dTs dTs @@ -78333,36 +78333,36 @@ dTs dTs dTs dTs -qjU -qjU -xDv -grU -kXK -pgC +uHV +uHV +iQg +ltK +nDj +fBE bWq bWq -wzy -tKy -eMt +phe +mcQ +vAH bWq bWq -qlE -rPc -rpM -grU -qjU -gRH -sCm +iXZ +mqW +pbE +ltK +uHV +jDG +nZy aXW aVZ ahK aZk -sCm -bPp +nZy +iYG aKw aKw aKw -wAn +mtr aXS aJy aJy @@ -78378,52 +78378,52 @@ aJy aJy aJy bXv -tPh +kDd bir bki bje bjo -tPh -iqU -iqU -iqU -iqU -iqU -sJR -lIu -vXQ -vXQ -vXQ -pZi -vXQ -vXQ +kDd +fAv +fAv +fAv +fAv +fAv +mSN +ezu +wBw +wBw +wBw +nve +wBw +wBw btQ -vAr -laT -utT -wDs -lIu -sJR -vTN -vTN -vTN -vTN -vTN -vTN -vTN -bqC +mem +kjb +oYy +gKU +ezu +mSN +kZC +kZC +kZC +kZC +kZC +kZC +kZC +elB naH uml vgm xsS -efS +jcW aIh bOu bOu -gvn -ljy -qlC -gMA +xSd +nrU +rTS +noZ dTs dTs dTs @@ -78439,33 +78439,33 @@ vHQ ipQ aDT dTs -cwe -qsx +wrs +xfJ ehz coJ coI -lRu +gpV cfw dPY idg chr -hzP +lil cdw cdw cdw cdw cdw ceo -hkG +vqP cLi -iWa +tBK cjR cho cho cho cho -eKx -oCE +xWo +iUS cnC dTs dTs @@ -78482,14 +78482,14 @@ dTs dTs dTs dTs -oHh -rrX +jXD +ryY dNS dNS dNS dNS -gci -wyj +lRi +qIm dNS dNS daF @@ -78500,46 +78500,46 @@ dck dck dck dcl -qDE -ePz +udx +vYC dcl dck dck dck dNS -ohT +hgh bYV sLx wya fdk -htK +qDR dhA dpC -tKt -tKt -mnX -tJj +hZI +hZI +ohd +nzd ehP ehX -vme -tKt -tKt -tKt -tQi +jaw +hZI +hZI +hZI +vca uFX -fjO -pFx -ntr -onQ -tuD -tuD -tuD -pZr -tuD -tuD -vrO +jia +kzw +nnT +xSB +kOI +kOI +kOI +xwZ +kOI +kOI +jpk dNS -xJA +ejs dTs dTs dTs @@ -78567,39 +78567,39 @@ dTs dTs dTs dTs -hdQ -qWD -mbi -tMJ -sCm -sCm -sCm -sCm -sCm -sCm -sCm -sCm -sCm -sCm -sCm -rNt -gIT -sCm -sCm -sCm +pjg +pOy +hDL +doy +nZy +nZy +nZy +nZy +nZy +nZy +nZy +nZy +nZy +nZy +nZy +jCO +kza +nZy +nZy +nZy aXW aVZ aVZ ahU -qTt -mUP -rPc -pgC +bno +uYM +mqW +fBE bWq bWu -wAn -wLC -wLC +mtr +tNP +tNP aXS aJy aJy @@ -78612,49 +78612,49 @@ aJy aJy aJy bXv -tPh +kDd bir biP biP bjo -tPh -iqU -iqU -iqU -iqU -iqU +kDd +fAv +fAv +fAv +fAv +fAv btQ -wyF -tKp -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -pWC -vXQ -wDs -wnm +rbi +kpH +wBw +wBw +wBw +wBw +wBw +wBw +wBw +rBn +wBw +gKU +lHY btQ -vTN -vTN -vTN -vTN -vTN -vTN -vTN -bqC +kZC +kZC +kZC +kZC +kZC +kZC +kZC +elB naH ozu ozu xsS -efS +jcW chA clc -xHe -ljy +mDd +nrU ceg dTs dTs @@ -78673,34 +78673,34 @@ vHQ vHQ aDT dTs -uUG +rWB cdw dBQ boG dxO -lRu +gpV cfw iAf wcc chr -ncl -wmP -wmP -wmP -sXJ +fbQ +udI +udI +udI +ume cdw ceo -hkG -eLq +vqP +uxS ciQ -rBg +xbT cho cho cho cho cho -eKx -oCE +xWo +iUS dTs dTs dTs @@ -78716,63 +78716,63 @@ dTs dTs dTs dTs -nNV -gVu +iup +mcI dNS dNS dNS -lLj -tYQ -hva -osm +sBH +exu +lnN +phl dNS dNS dNS dck -qbL -lvr -lvr -vSw +wwk +wbi +wbi +mPz dcY -qDE -hmq +udx +ema dIs dIs djV dck dNS -ohT +hgh bYV rdW rdW fdk -htK +qDR dhA dpC -tKt -tKt -tKt -tJj +hZI +hZI +hZI +nzd ehP ehP -vme -tKt +jaw +hZI dpC dhA -pFx -gcZ -fjO -pFx -sWx -onQ -tuD -tuD -tuD -tuD -tuD -tuD -fDj -loQ +kzw +wbO +jia +kzw +jDN +xSB +kOI +kOI +kOI +kOI +kOI +kOI +hOa +qVb dTs dTs dTs @@ -78801,40 +78801,40 @@ dTs dTs dTs dTs -nYY -efc -oZm +dlH +iXF +rdE aOY -dwo -ckl -ckl -qXs -tQY -tQY -tQY -tQY -dwo -ckl -ucV -tQY -tQY -tQY -tQY -uwr +hkS +rrW +rrW +uqS +oUP +oUP +oUP +oUP +hkS +rrW +hSI +oUP +oUP +oUP +oUP +fGb aXW aWa aWB aZk -eNE -hdQ -hdQ -hdQ -qWD +rDy +pjg +pjg +pjg +pOy bWv aKw aKw aKw -wAn +mtr aXS aJy aJy @@ -78846,12 +78846,12 @@ aJy aJy aJy bXv -gKa +rFm bTi bTi bTi bTi -gKa +rFm bYJ cbw cbw @@ -78859,15 +78859,15 @@ cch bTi bCy bTi -tKp -vfa -xqY -vfa +kpH +ipc +jTr +ipc bAK -vXQ +wBw caI -nrB -msA +ygn +lqg chz cie caI @@ -78879,12 +78879,12 @@ ciE ciE ciE cie -mxT +fEo caI caI caI caI -osu +poE chA clc dsg @@ -78908,11 +78908,11 @@ vHQ aDT dTs dTs -wAX +rvJ boG mVy dBh -lRu +gpV cfw cdC ibE @@ -78921,21 +78921,21 @@ ccZ ccZ ccZ cix -hzP +lil cdw ceo -hkG -jxh +vqP +sAO ciQ -iWa +tBK cjR cho cho cho cho cho -eKx -oCE +xWo +iUS ciQ dTs dTs @@ -78951,62 +78951,62 @@ dTs dTs dTs dTs -wFb -wFb -wFb -wFb -uIc -gcZ -fjO -fMW -wFb -wFb -wFb +lgl +lgl +lgl +lgl +gQd +wbO +jia +tNU +lgl +lgl +lgl cXz -lvr -lvr -iCi +wbi +wbi +uid dcY dTY -qDE -kSi +udx +yhs dTY dTY dcY cXz -wFb -wwH +lgl +pjE bYV rdW rdW fdk -htK +qDR doL dpC -xxf -kKl -mkp -tJj +nLd +iHS +jfs +nzd ehS ehP -vme -tKt +jaw +hZI ebB doL -pFx -gcZ -fjO -pFx -ntr -onQ -tuD -tuD -tuD -tuD -tuD -tuD -vrO -xJA +kzw +wbO +jia +kzw +nnT +xSB +kOI +kOI +kOI +kOI +kOI +kOI +jpk +ejs dTs dTs dTs @@ -79034,14 +79034,14 @@ dTs dTs dTs dTs -oWS -wna -mWr -jar -uqG -eir +lpu +iRg +lBs +xzK +hEC +jOw aed -tBi +kpR dTs dTs dTs @@ -79049,8 +79049,8 @@ dTs dTs dTs aOh -tTM -sCm +veE +nZy aaB abZ abZ @@ -79059,19 +79059,19 @@ amM aVZ aVZ aZk -uLu +rli aOh aXc aOh -efc +iXF bWv aKw aKw aKw aKw -wAn -wLC -wLC +mtr +tNP +tNP aXS aJy aJy @@ -79080,12 +79080,12 @@ aJy aJy aJy bXv -gKa +rFm bTi bTi bTi bTi -gKa +rFm bZs aJy aJy @@ -79093,15 +79093,15 @@ bXv bTi bCy bTi -pyi +khT ccq ccq ccq ccq -nrB +ygn caI -nrB -msA +ygn +lqg chA cif caI @@ -79113,16 +79113,16 @@ clc clc clc cif -mxT +fEo caI caI caI caI -osu +poE chA clc -jdG -mBB +tWe +mGA dHb dLq dTs @@ -79142,11 +79142,11 @@ vHQ aDT dTs dTs -lto +wkw btY mVy clF -lRu +gpV cfw idg cdC @@ -79155,23 +79155,23 @@ idg oyf idg pUR -hzP +lil cdw ceo -hkG -qyH -kzx +vqP +nvI +tIJ ciQ -iWa +tBK cjR cho cho cho cho cho -eKx -gYz -oCE +xWo +pMy +iUS ciQ dTs dTs @@ -79185,61 +79185,61 @@ dTs dTs dTs dTs -eHg -eHg -eHg -exe -pFx -gcZ +xMQ +xMQ +xMQ +pMb +kzw +wbO uFX -wDS -wDS -wDS -vrm -ngr -qDE -qDE -lYi -lYi -qDE -lYi -kSi -qDE -qDE -qDE -ngr -uUt -fFx +ygT +ygT +ygT +tFF +juj +udx +udx +chE +chE +udx +chE +yhs +udx +udx +udx +juj +raE +lKd bYV sLx wya fdk -htK +qDR dhA dpC -tKt -tKt -qiU -eOx -nBH -eJH -pBn -tKt +hZI +hZI +npD +yiu +uPR +jFI +qMM +hZI dpC dhA -pFx -gcZ -fjO -pFx -xca -weT -pIO -tuD -tuD -tuD -tuD -mos -fWi +kzw +wbO +jia +kzw +tjR +xzb +mfH +kOI +kOI +kOI +kOI +lpc +opF dTs dTs dTs @@ -79270,10 +79270,10 @@ dTs dTs dTs tQR -lgy -etM -etM -svp +yfI +ujP +ujP +pno tQR sLS tQR @@ -79283,8 +79283,8 @@ dTs dTs dTs aOh -tTM -sCm +veE +nZy aXW aVZ aVZ @@ -79293,11 +79293,11 @@ aCp aVZ aVZ aZk -uLu +rli bdc -kLZ -nYY -efc +iss +dlH +iXF bWv aKw aKw @@ -79306,20 +79306,20 @@ aKw aKw aKw aKw -wAn -wLC +mtr +tNP aXS aJy aJy aJy aJy bXv -gKa +rFm bTi bTi bTi bTi -gKa +rFm bZt cbx cbx @@ -79327,15 +79327,15 @@ cci bTi bCy bTi -tKp -vfa -xqY -vfa +kpH +ipc +jTr +ipc bAK -vXQ +wBw caI -nrB -msA +ygn +lqg chB cig caI @@ -79347,17 +79347,17 @@ cld cld cld cig -mxT +fEo caI caI caI caI -osu +poE chA clc clc -jdG -mBB +tWe +mGA dLr dTs dTs @@ -79376,11 +79376,11 @@ vHQ aDT dTs dTs -uUG +rWB btY dBh coI -lRu +gpV cfw iAf uYD @@ -79389,15 +79389,15 @@ idg idg dPY pUR -hzP +lil cdw ceo -hkG -tSg -vhF +vqP +pKE +szC ciQ ciQ -rBg +xbT cho cho cho @@ -79405,9 +79405,9 @@ cho cho cho cho -eKx -gYz -oCE +xWo +pMy +iUS ciQ dTs dTs @@ -79420,60 +79420,60 @@ dTs dTs dTs dTs -nqN -nqN -vbP -isU -gcZ +fCu +fCu +bNR +xEL +wbO uFX rpQ uFX uFX -vrH -lYi -qDE -lYi -qDE -lYi -lYi -qDE -vzm -qDE -qDE -qDE -qDE -fKV -fFx +oub +chE +udx +chE +udx +chE +chE +udx +hbW +udx +udx +udx +udx +wQi +lKd iVZ rdW rdW fdk -htK +qDR dhA dpC -tKt -tKt -tKt -ydm -tKt -tKt -fiD -tKt +hZI +hZI +hZI +fGV +hZI +hZI +fwK +hZI dpC dhA -pFx -gcZ -fjO -pFx -xsT -vgi -hJo -pIO -tuD -tuD -xbx -qhh -vrO +kzw +wbO +jia +kzw +jZG +xqp +igD +mfH +kOI +kOI +qVp +rBH +jpk dTs dTs dTs @@ -79504,21 +79504,21 @@ dTs dTs dTs aow -uCD -luD -luD -nkH +mWi +xoj +xoj +jbk asB -xOa -wAR -pUk +kvY +cTV +dMF aow dTs dTs dTs dTs -dpi -sCm +jee +nZy aXW aVZ aVZ @@ -79526,73 +79526,73 @@ aVZ aCp aWa aWB -khy -uLu +rYP +rli aOh -toQ -rpP +xya +qsv dTs dTs dTs -syL -syL -syL -syL -syL -nlK +osN +osN +osN +osN +osN +sDw aKw aKw -wAn +mtr aXS aJy aJy aJy bXv -tPh +kDd bir biP biP bjo -tPh -iqU -iqU -iqU -iqU -iqU +kDd +fAv +fAv +fAv +fAv +fAv btQ -wyF -tKp -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -pWC -vXQ -wDs -wnm +rbi +kpH +wBw +wBw +wBw +wBw +wBw +wBw +wBw +rBn +wBw +gKU +lHY btQ -vTN -vTN -vTN -vTN -vTN -vTN -vTN -bqC +kZC +kZC +kZC +kZC +kZC +kZC +kZC +elB naH ozu ozu xsS -efS +jcW chA clc clc clc -jdG -mBB +tWe +mGA dHb dTs dTs @@ -79610,11 +79610,11 @@ vHQ aDT dTs dTs -uUG +rWB bPN clF coJ -lRu +gpV cfw cdC idg @@ -79623,15 +79623,15 @@ icM dPZ dPZ gsr -xWl +tkb cdw cen -gfc -tSg -jkQ -kzx +kRF +pKE +hJz +tIJ ciQ -iWa +tBK cjR cho cho @@ -79641,10 +79641,10 @@ cho cho cho cho -eKx -gYz +xWo +pMy dTs -gYz +pMy dTs dTs dTs @@ -79652,62 +79652,62 @@ dTs dTs dTs dTs -nqN -nqN -nqN -nqN -wOy -uPZ -gcZ +fCu +fCu +fCu +fCu +qyx +eap +wbO rpQ rpQ uFX -fjO -pFx +jia +kzw cXz dTY dTY dTY -jKD -jKD -qDE -qDE -jKD -jKD +maV +maV +udx +udx +maV +maV dcY cXz -jyt -mGZ +xNa +nHH bYV rdW rdW fdk -htK +qDR doL dpC -gLo -peg -peg -xCU -uId -tKt -tKt -tKt +nYr +rzy +rzy +pSg +wWQ +hZI +hZI +hZI dpC doL -pFx -gcZ -fjO -pFx -fOI -xHv -mlZ -mlZ -tka -mlZ -oMf -dOF -gwi +kzw +wbO +jia +kzw +qtq +paq +jzm +jzm +kqd +jzm +gsc +xlj +vAU dTs dTs dTs @@ -79738,21 +79738,21 @@ dTs dTs dTs aow -uCD -luD -luD -nkH -lKs -eNY -sCs -izV +mWi +xoj +xoj +jbk +qqx +sBM +lfQ +slw aow dTs dTs dTs dTs -qsm -sCm +tEm +nZy aaC aXC aXC @@ -79761,66 +79761,66 @@ aCQ aVZ aVZ aZk -uLu -kLZ -jJe -gyL +rli +iss +mSs +odU dTs dTs dTs dTs -evb -evb -evb -evb -rwY -syL -nlK +oFO +oFO +oFO +oFO +lif +osN +sDw aKw -wAn +mtr aXS aJy aJy bXv -tPh +kDd bir bki bje bjo -tPh -iqU -iqU -iqU -iqU -iqU -sJR -lIu -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ +kDd +fAv +fAv +fAv +fAv +fAv +mSN +ezu +wBw +wBw +wBw +wBw +wBw +wBw btQ -vXQ -pWC -vXQ -wDs -lIu -sJR -vTN -vTN -vTN -vTN -vTN -vTN -vTN -bqC +wBw +rBn +wBw +gKU +ezu +mSN +kZC +kZC +kZC +kZC +kZC +kZC +kZC +elB naH uml vgm xsS -efS +jcW chA clc clc @@ -79844,11 +79844,11 @@ vHQ aDT dTs dTs -vmx -quA +wXZ +qlN coI cdw -lRu +gpV cfw dPY dPY @@ -79857,16 +79857,16 @@ poi qEJ poi cix -xWl +tkb cdw ceo -hkG -tSg -nqN -jkQ -kzx +vqP +pKE +fCu +hJz +tIJ ciQ -iWa +tBK cjR cho cho @@ -79885,64 +79885,64 @@ dTs dTs dTs dTs -ghb -ghb +tjl +tjl djx -nqN -nqN -rMA -pFx -tQi -wng -wng +fCu +fCu +nIK +kzw +vca +wWX +wWX uFX -fjO -pFx +jia +kzw dck dcY ddU dTY -mNj -mNj -qDE -nco -jKD -mNj +eAo +eAo +udx +hLa +maV +eAo dcY dck dNS -ohT +hgh bYV sLx wya fdk -htK +qDR doL eaV -tJj +nzd ehP ehP ehP -vme -tKt -ioJ -tKt -voU +jaw +hZI +pgB +hZI +miF doL -frO -gcZ -fjO -pFx -pFx -pFx -pFx -pFx -pFx -pFx -pFx -sLX +icL +wbO +jia +kzw +kzw +kzw +kzw +kzw +kzw +kzw +kzw +pOe dNS -xJA +ejs dTs dTs dTs @@ -79972,21 +79972,21 @@ dTs dTs dTs aow -kdg -luD -luD -nkH +sfk +xoj +xoj +jbk asB -mhr -sCs -sNM +hqw +lfQ +lhM aow dTs dTs dTs dTs -qsm -sCm +tEm +nZy aaB abZ abZ @@ -79995,8 +79995,8 @@ amM aVZ aVZ aZl -mrJ -toQ +ciA +xya dTs dTs dTs @@ -80005,56 +80005,56 @@ dTs dTs dTs dTs -lDw -evb -evb -evb -rwY -nlK +wOd +oFO +oFO +oFO +lif +sDw aKw -wAn +mtr aXS aJy bXv -tPh +kDd bir biP biP bjo -tPh -iqU -iqU -iqU -iqU -iqU +kDd +fAv +fAv +fAv +fAv +fAv btQ -wyF -tKp -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -vXQ -pWC -vXQ -wDs -wnm +rbi +kpH +wBw +wBw +wBw +wBw +wBw +wBw +wBw +rBn +wBw +gKU +lHY btQ -vTN -vTN -vTN -vTN -vTN -vTN -vTN -bqC +kZC +kZC +kZC +kZC +kZC +kZC +kZC +elB naH ozu ozu xsS -efS +jcW chA clc clc @@ -80070,19 +80070,19 @@ dTs dTs aDT aEc -jao -jao -jao -jao +qHt +qHt +qHt +qHt aEc aDT dTs dTs dTs -uUG +rWB cdw cdw -lRu +gpV cfw cge cgL @@ -80091,17 +80091,17 @@ dPY idg dPY chr -xWl +tkb cdw ceo -hkG -tSg -nqN -nqN -jkQ -kzx +vqP +pKE +fCu +fCu +hJz +tIJ ciQ -iWa +tBK cjR cho cho @@ -80117,67 +80117,67 @@ cho cho dTs dTs -oCE +iUS ciQ ciQ ciQ cnC -ghb +tjl djx -rMA -pFx -pFx -pFx -elp -gcZ -fjO -pFx +nIK +kzw +kzw +kzw +sza +wbO +jia +kzw dck dcZ ddU dcY -pxt -dxu -lYi -lYi -pxt -pxt +fIN +okR +chE +chE +fIN +fIN djW dck dNS -ohT +hgh bYV rdW rdW fdk -htK +qDR doL dpC -tJj +nzd ehP ehP ehP -vme -tKt -tKt -tKt +jaw +hZI +hZI +hZI dpC doL -pFx -gcZ -fjO -pFx -pFx -pFx -pFx -pFx -pFx -pFx -pFx -sLX +kzw +wbO +jia +kzw +kzw +kzw +kzw +kzw +kzw +kzw +kzw +pOe dNS -lAv -qQT +lqn +tmw dTs dTs dTs @@ -80206,21 +80206,21 @@ dTs dTs dTs aow -uCD -luD -luD -nkH -ora -sCs -sCs -izV +mWi +xoj +xoj +jbk +xDY +lfQ +lfQ +slw aow dTs dTs dTs dTs -qsm -sCm +tEm +nZy aXW aVZ aVZ @@ -80230,7 +80230,7 @@ aWa aWB aGK aOh -drH +klA dTs dTs dTs @@ -80240,22 +80240,22 @@ dTs dTs dTs dTs -evb -evb -fuM -evb -rwY -nlK +oFO +oFO +jGe +oFO +lif +sDw aKw -wAn +mtr aXS bXv -gKa +rFm bTi bTi bTi bTi -gKa +rFm bYJ cbw cbw @@ -80263,15 +80263,15 @@ cch bTi bCy bTi -tKp -vfa -xqY -vfa +kpH +ipc +jTr +ipc bAK -vXQ +wBw caI -nrB -msA +ygn +lqg chz cie caI @@ -80283,40 +80283,40 @@ ciE ciE ciE cie -mxT +fEo caI caI caI caI -osu +poE chA clc clc clc clc -jdG -mBB +tWe +mGA dLr dLC -oMk +eUC dTs dTs dTs dTs aDT -eQz -ciX -vKx -fIp +hiH +vxB +vGQ +jXQ dTs dTs dTs dTs dTs -vmx -wAX +wXZ +rvJ cdw -lRu +gpV cfw dPY dPY @@ -80325,20 +80325,20 @@ idg idg dPY chr -xWl +tkb cdw ceo -hkG -tSg -nqN -nqN -nqN -vhF +vqP +pKE +fCu +fCu +fCu +szC ciQ ciQ -iWa -xfY -xfY +tBK +icw +icw cjR cho cho @@ -80351,67 +80351,67 @@ cho cho cho cho -eKx -oCE +xWo +iUS ciQ ciQ ciQ ciQ cYh -rMA -pFx -pFx -pFx -pFx -gcZ -fjO -pFx +nIK +kzw +kzw +kzw +kzw +wbO +jia +kzw dck dck ddV dck dck jIH -lYi -vXG +chE +jOj dcl dck dck dck dNS -ohT +hgh bYV rdW vpz dPf -htK +qDR dhA dpC -tJj +nzd ehP ehP ehS -vme -tKt -lVZ -tKt +jaw +hZI +sgO +hZI dpC dhA -pFx -gcZ -fjO -pFx -hHk -hkL -hkL -hkL -mPO -hkL -hkL -ova -vax +kzw +wbO +jia +kzw +hCz +oeT +oeT +oeT +lGD +oeT +oeT +jFo +etE dNS -xJA +ejs dTs dTs dTs @@ -80440,21 +80440,21 @@ dTs dTs dTs aow -uCD -luD -luD -nkH +mWi +xoj +xoj +jbk aow -jJS -sCs -izV +pIq +lfQ +slw aow dTs dTs dTs dTs -qsm -sCm +tEm +nZy aXW aVZ aVZ @@ -80465,7 +80465,7 @@ aVZ aGK aip aOh -toQ +xya dTs dTs dTs @@ -80475,21 +80475,21 @@ dTs dTs dTs dTs -qjU -qjU -qjU -qjU -kXK -juq -nlK -wAn +uHV +uHV +uHV +uHV +nDj +gsp +sDw +mtr bXy -gKa +rFm bTi bTi bTi bTi -gKa +rFm bZs aJy aJy @@ -80497,15 +80497,15 @@ bXv bTi bCy bTi -pyi +khT ccq ccq ccq ccq -nrB +ygn caI -nrB -msA +ygn +lqg chA cif caI @@ -80517,12 +80517,12 @@ clc clc clc cif -mxT +fEo caI caI caI caI -osu +poE chA clc clc @@ -80532,25 +80532,25 @@ clc dsg dHb dLq -oMk -xfJ +eUC +hOF dTs dTs dTs dTs -fpk -xmr -jZO -fIp +mOm +sgP +qcE +jXQ dTs dTs dTs dTs dTs -hMG -vmx -wAX -lRu +dIU +wXZ +rvJ +gpV cfw dPY dPY @@ -80559,23 +80559,23 @@ icM cdc cdc ciy -hzP +lil cdw ceo -hkG -tSg -nqN -nqN -nqN -jkQ -kzx +vqP +pKE +fCu +fCu +fCu +hJz +tIJ ciQ ciQ ciQ ciQ -iWa -xfY -xfY +tBK +icw +icw cjR cho cho @@ -80586,66 +80586,66 @@ cho cho cho cho -eKx -oCE +xWo +iUS ciQ ciQ ciQ cnC -tap +vkM djz -oSO -pFx -pFx -gcZ -fjO -pFx -pFx +gSQ +kzw +kzw +wbO +jia +kzw +kzw dda ddW dea -hQG -rcR -hQG -hQG -hQG +dCr +oSJ +dCr +dCr +dCr dea dda -ugT -xjx -ikq +xDD +ugu +gDn bYV nRV vHj fdk -htK +qDR dhA dpC -uXI -eJH -iQi -nBH -pBn -tKt -tKt -tKt +iRw +jFI +nHR +uPR +qMM +hZI +hZI +hZI dpC dhA -pFx -gcZ -fjO -pFx -ntr -wVw -wEw -qYu -nMh -nMh -ktk -rwn -vrO +kzw +wbO +jia +kzw +nnT +kqD +sCD +yjc +flN +flN +ssL +ydE +jpk dNS -xJA +ejs dTs dTs dTs @@ -80674,21 +80674,21 @@ dTs dTs dTs aow -jCm -tOl -tOl -tXs +cRe +kRB +kRB +osx aow aow -uMw +vVR aow aow -wcs -wcs +wVO +wVO dTs dTs -qsm -sCm +tEm +nZy aaC aXC aXC @@ -80699,7 +80699,7 @@ aVZ aGK aOh aOh -toQ +xya dTs dTs dTs @@ -80709,73 +80709,73 @@ dTs dTs dTs dTs -ifs -ifs -sFf -iqU -iqU -oXi -rwY -nlK -hrn -gKa -dkx -dkx -dkx -dkx -gKa -vbf -tKy -tKy -xvM -dkx +dwL +dwL +doD +fAv +fAv +jie +lif +sDw +iEZ +rFm +uEM +uEM +uEM +uEM +rFm +gTc +mcQ +mcQ +gGv +uEM bCy bTi -tKp -vfa -xqY -vfa +kpH +ipc +jTr +ipc bAK -vXQ +wBw caI -nrB -msA +ygn +lqg chB cig caI bCy -kGV -wwc -krg -krg -eKj -jsF -kGv -mxT -kGV -kGV -kGV -kGV -osu -tBa +gvs +lgK +klg +klg +oBF +vSQ +gmM +fEo +gvs +gvs +gvs +gvs +poE +hnY czj clc clc clc clc -jdG -mBB +tWe +mGA dLr dLI -xfJ -wDq +hOF +mzT dTs dTs -wAX -hkG -xmr -jZO -fIp +rvJ +vqP +sgP +qcE +jXQ dTs dTs dTs @@ -80783,8 +80783,8 @@ dTs dTs dTs dTs -uUG -lRu +rWB +gpV dPR iAf eVk @@ -80793,25 +80793,25 @@ poi poi ccZ cix -hzP +lil cdw ceo -hkG -tSg -nqN -nqN -nqN -nqN -jkQ -kzx +vqP +pKE +fCu +fCu +fCu +fCu +hJz +tIJ ciQ ciQ ciQ ciQ ciQ ciQ -iWa -xfY +tBK +icw cjR cho cho @@ -80821,22 +80821,22 @@ cho cho cho cho -eKx -gYz -oCE +xWo +pMy +iUS ciQ ciQ ciQ dkK -sQn -npz -pFx -gcZ -fjO -pFx -npz +ssb +oHq +kzw +wbO +jia +kzw +oHq dda -eIm +roh dea dea rAP @@ -80852,34 +80852,34 @@ snD eXM rdW fdk -htK +qDR doL dpC -tKt -tKt -tKt -ydm -tKt -tKt -tKt -tKt +hZI +hZI +hZI +fGV +hZI +hZI +hZI +hZI ebB doL -pFx -gcZ -fjO -pFx -ntr -wEw -qYu -nMh -nMh -nMh -nMh -plz -vrO -loQ -kTl +kzw +wbO +jia +kzw +nnT +sCD +yjc +flN +flN +flN +flN +lhn +jpk +qVb +jja dTs dTs dTs @@ -80907,22 +80907,22 @@ dTs dTs dTs dTs -iwK -myJ -trH -luD -pvU -ryv -hSo -tbz -fBv -wFP -wFP -wFP +pWB +vED +oNN +xoj +rou +lAN +rkF +mzo +wXw +enO +enO +enO axl dTs dTs -sCm +nZy aaB abZ abZ @@ -80933,7 +80933,7 @@ aVZ aHd dTs aOh -toQ +xya dTs dTs dTs @@ -80943,73 +80943,73 @@ dTs dTs dTs dTs -fYi +hRb biw -tmv -qSC -uOE -xBs -rvy -rwY -jFm -tPh +oYV +cpe +pDB +wiP +vZm +lif +rjz +kDd bir biP biP bjo -tPh -kvz -ifs -ifs -ifs -ifs +kDd +rAS +dwL +dwL +dwL +dwL btQ -xmd -tBA -fNo -fNo -fNo -fNo -fNo -fNo -vXQ -pWC -fNo -nry -xmd +lfD +egE +xSS +xSS +xSS +xSS +xSS +xSS +wBw +rBn +xSS +twj +lfD btQ -for -bHt -vTN -vTN -pkV -oMs +htu +wmP +kZC +kZC +sDK +pEa cll -mxT +fEo cog cog cog cog -osu -gsy -sio +poE +izO +esE czj clc clc clc clc -jdG -mBB +tWe +mGA dLJ -xfJ +hOF cdw -wDq -fAW -qsx -hkG -xmr -jZO -fIp +mzT +uhP +xfJ +vqP +sgP +qcE +jXQ dTs dTs dTs @@ -81017,8 +81017,8 @@ dTs dTs dTs dTs -uUG -lRu +rWB +gpV dPR dPY idg @@ -81027,27 +81027,27 @@ idg ibE cdC chr -hzP +lil cdw ceo -hkG -ibG -oOz -oOz -oOz -oOz -oOz -rgN -tRZ -mlH +vqP +rkm +hSh +hSh +hSh +hSh +hSh +tgr +vVm +jmv chS chS chS cZd ciQ ciQ -iWa -xfY +tBK +icw cjR cho cho @@ -81057,22 +81057,22 @@ cho cho cho cho -eKx -oCE +xWo +iUS ciQ ciQ dnC -exe -pFx -pFx -gcZ -fjO -pFx -npz +pMb +kzw +kzw +wbO +jia +kzw +oHq dde -wpz +hqO dea -wpz +hqO dea pbC dcR @@ -81086,33 +81086,33 @@ taG hzC rdW fdk -htK +qDR dhA dpC -tKt -tKt -tKt -bsI -tKt -tKt -tKt -tKt +hZI +hZI +hZI +rqH +hZI +hZI +hZI +hZI dpC dhA -pFx -gcZ -fjO -pFx -ntr -veM -nMh -nMh -nMh -nMh -nMh -nMh -vrO -kTl +kzw +wbO +jia +kzw +nnT +koy +flN +flN +flN +flN +flN +flN +jpk +jja dTs dTs dTs @@ -81141,22 +81141,22 @@ dTs dTs dTs ahT -rVN -lac -ofk -ofk -ofk -ofk -ofk -ofk -rFd -wAC -wAC -mEj +hTN +eFx +hvd +hvd +hvd +hvd +hvd +hvd +jlD +owu +owu +dgR axl ahT dTs -sCm +nZy aXW aVZ aVZ @@ -81167,7 +81167,7 @@ aVZ aZk dTs aOh -drH +klA dTs dTs dTs @@ -81177,57 +81177,57 @@ dTs dTs dTs dTs -wpX +wYv bhi -xIE +dFT bia -pGT -faB -rvy -viH -xea -tPh +upl +jGc +vZm +ihj +kPR +kDd bir bki bje bjo -tPh -hSn +kDd +fjM bhi bhi bhi bhi btQ -xmd -xmd -xmd -tAb -xmd -xmd -xmd -xmd -tKp -npX -xmd -tAb -xmd +lfD +lfD +lfD +lyR +lfD +lfD +lfD +lfD +kpH +kFt +lfD +lyR +lfD btQ cNW -jnf -vTN -vTN -vTN -vTN -qRl -bqC +xEA +kZC +kZC +kZC +kZC +nzR +elB naH ozu ozu xsS -efS -fZH -oMs -jTw +jcW +moH +pEa +kQc clc clc clc @@ -81235,24 +81235,24 @@ clc clc dsg dLK -xfJ +hOF cdw cej cdw cdw -hkG -xmr -jZO -tTs -dTs -cwe -qgD -dTs -pFi -pFi -pFi -qsx -lRu +vqP +sgP +qcE +jAw +dTs +wrs +fFJ +dTs +gVF +gVF +gVF +xfJ +gpV cfw idg idg @@ -81261,12 +81261,12 @@ dPY dPY idg pUR -kox +djI cdw cen -gUu -fIp -fIp +yhp +jXQ +jXQ cCc cCc cEf @@ -81276,13 +81276,13 @@ cEf cEf cCc cCc -fIp +jXQ dgW chS chS cZd ciQ -iWa +tBK cjR cho cho @@ -81292,21 +81292,21 @@ cho cho cho cho -eKx -oCE +xWo +iUS ciQ cnC dnD -tRT -pFx -gcZ -fjO -pFx -npz +gAm +kzw +wbO +jia +kzw +oHq dde -wpz +hqO dea -wLd +pLN dea dcN wRi @@ -81320,32 +81320,32 @@ scm vnf wya fdk -htK +qDR dhA dpC -tKt -gLo -peg -xCU -peg -uId -tKt -tKt -tKt -oyH -hCo +hZI +nYr +rzy +pSg +rzy +wWQ +hZI +hZI +hZI +jII +mnZ uFX -fjO -pFx -sWx -veM -nMh -nMh -vgN -nMh -nMh -nMh -vrO +jia +kzw +jDN +koy +flN +flN +pDq +flN +flN +flN +jpk dTs dTs dTs @@ -81375,22 +81375,22 @@ dTs dTs dTs ahT -rVN -lac -ofk -ofk -ofk -ofk -mJi -ofk -ofk -wyM -pnI -fBv +hTN +eFx +hvd +hvd +hvd +hvd +uor +hvd +hvd +kkJ +mUp +wXw axl dTs dTs -sCm +nZy aXW aVZ aVZ @@ -81400,9 +81400,9 @@ aVZ aVZ aZk dTs -nYY -kLZ -jJe +dlH +iss +mSs dTs dTs dTs @@ -81410,23 +81410,23 @@ dTs dTs dTs dTs -hBP -vWy +rpa +nQe bhi -xIE -gbx -iqU -uPy -soY -soY -fLk -tPh +dFT +hIT +fAv +lYx +sDo +sDo +rlM +kDd bir biP biP bjo -tPh -hSn +kDd +fjM cpu brc brc @@ -81440,53 +81440,53 @@ bDR bDR btQ bDR -lIu -oZH +ezu +ekZ bDR btQ btQ btQ cNW -jnf -gKM -xXi -xXi -xXi -xXi -xsv +xEA +wbx +lTl +lTl +lTl +lTl +xpx naH ozu ozu xsS -efS -vTN -vTN -iIP +jcW +kZC +kZC +oZf clc clc clc clc clc dsg -nFu -xfJ +uNd +hOF cdw cdw -qFB -jgM -gUu -mDj -ulc +gdE +xeM +yhp +kvc +jGD +hOF +mzT +ohL +mzT xfJ -wDq -oBS -wDq -qsx cdw cdw cdw cdw -obl +cOh cfw iAf uYD @@ -81495,30 +81495,30 @@ cdc cdc cdc ciy -ncl -wmP -jxp -nxP -nxP -oQm +fbQ +udI +orh +nbN +nbN +wFF cCc -ldy -oEI -oEI -oEI -oEI +gjn +uvU +uvU +uvU +uvU cDf cIz cCc -gOH -tlO -fIp -fIp -eLq +fTc +xbv +jXQ +jXQ +uxS ciQ ciQ -iWa -xfY +tBK +icw cjR cho cho @@ -81531,16 +81531,16 @@ cYi ciQ ciQ dkK -pFx -pFx -gcZ -fjO -pFx -pFx +kzw +kzw +wbO +jia +kzw +kzw dda -kWa +psX dea -wpz +hqO dea hAB dhZ @@ -81554,32 +81554,32 @@ scm rdW hzC fdk -htK +qDR doL eaV -tKt -tJj +hZI +nzd ehP ehP ehP -vme -tKt -tKt -tKt -tKt -tQi +jaw +hZI +hZI +hZI +hZI +vca uFX -fjO -pFx -ntr -veM -nMh -nMh -nMh -nMh -nMh -nMh -vrO +jia +kzw +nnT +koy +flN +flN +flN +flN +flN +flN +jpk dTs dTs dTs @@ -81609,18 +81609,18 @@ dTs dTs dTs dTs -rVN -lac -ofk -ofk -ofk -ofk -ofk -ofk -ofk -dZg -ofk -fBv +hTN +eFx +hvd +hvd +hvd +hvd +hvd +hvd +hvd +qat +hvd +wXw axl dTs dTs @@ -81634,8 +81634,8 @@ amK aWb axo dTs -rpP -jJe +qsv +mSs aeE dTs dTs @@ -81644,58 +81644,58 @@ dTs dTs dTs dTs -rSV -fYi +jgD +hRb bix -xIE +dFT bia -qSC -qQg -qQg -qQg -qQg -sAr +cpe +tlu +tlu +tlu +tlu +fuS bir biP biP bjo -tPh -hSn +kDd +fjM bhi brc -viD -tlJ -ifl -kEi -hot -lAL -gXf -ePf -xjy -xjy -ign -vzQ -lht -fqh -fUa -eNM +qtt +vkO +jop +dyv +nlm +npp +iaB +pwG +vCF +vCF +gBb +tiv +uAL +hyi +tRX +pCK brc cNW -jnf -cfM +xEA +qDW hCf -gFe -gFe -gFe -mqf +few +few +few +nZE naH uml vgm xsS -wQW +sWb bVD -bHt -svJ +wmP +daq czj clc clc @@ -81703,10 +81703,10 @@ clc clc dsg dLM -sPc -rDP +gZY +fUH cdw -hkG +vqP aEi ccZ ccZ @@ -81741,20 +81741,20 @@ cDf cDf cDf cDf -rPV +jwn cIA cEf cdw -gjZ -vKx -fIp -qyH -jjl -kzx +qhO +vGQ +jXQ +nvI +pYo +tIJ ciQ ciQ -iWa -xfY +tBK +icw cjR cho cho @@ -81765,12 +81765,12 @@ cYi ciQ ciQ doN -pFx -pFx -gcZ -fjO -pFx -pFx +kzw +kzw +wbO +jia +kzw +kzw dde dea dea @@ -81788,34 +81788,34 @@ scm rdW hzC fdk -htK +qDR dhA dpC -tKt -tJj +hZI +nzd ehP ehP ehP -vme -tKt -tKt +jaw +hZI +hZI dpC dhA -pFx -gcZ -fjO -pFx -vnH -oiS -pDv -nMh -nMh -nMh -nMh -aTT -vrO -lAv -lmM +kzw +wbO +jia +kzw +eHs +eSV +eEU +flN +flN +flN +flN +mYt +jpk +lqn +nhN dTs dTs dTs @@ -81843,18 +81843,18 @@ dTs dTs dTs dTs -rVN -tgh -hFs -ofk -ofk -mpM -wsE -wsE -hFs -dZg -ofk -eGg +hTN +dfu +jIS +hvd +hvd +sZe +wIA +wIA +jIS +qat +hvd +kck dTs dTs dTs @@ -81879,11 +81879,11 @@ dTs dTs dTs dTs -rSV -fYi -xIE +jgD +hRb +dFT bia -gbx +hIT bjN bjG bjG @@ -81893,31 +81893,31 @@ bmh bki bje bjo -tPh -nUE -qoF +kDd +xWr +tuw bAm -ign -trD -trD -trD -trD -trD -trD -trD -trD -trD -trD -vzQ -lht -trD -trD -trD +gBb +kqq +kqq +kqq +kqq +kqq +kqq +kqq +kqq +kqq +kqq +tiv +uAL +kqq +kqq +kqq bAm -krX -ntb -cfM -xsv +ieG +lIx +qDW +xpx mdP nAm nAm @@ -81926,21 +81926,21 @@ tSK ozu ozu xsS -pJy +myy bVE -jnf +xEA duy -mnq +qXq dib dib dib dib dLu dLN -iiT -sPc -ePR -gUu +vlY +gZY +orR +yhp cfw cdC cdC @@ -81975,40 +81975,40 @@ cDf cDf cDf cDf -rPV +jwn cIB cEf cdw cLj -jZO -pJH -tWV -tWz -jkQ -jjl +qcE +nMz +fYJ +kNu +hJz +pYo dTs ciQ ciQ -iWa +tBK cjR cho cho cho cho -eKx -oCE +xWo +iUS ciQ doO -pFx -pFx -gcZ +kzw +kzw +wbO uFX -wDS -vrm -xhb +ygT +tFF +wVg dea dea -wpz +hqO dea dcN dhZ @@ -82022,35 +82022,35 @@ scm sLx hjm fdk -htK +qDR dhA dpC -tKt -uXI -nBH -nBH -nBH -pBn -tKt -tKt +hZI +iRw +uPR +uPR +uPR +qMM +hZI +hZI dpC dhA -pFx -gcZ -fjO -pFx -vgX -fDA -fjB -pDv -nMh -nMh -etR -qhh -vrO +kzw +wbO +jia +kzw +xKK +qIa +nML +eEU +flN +flN +pZl +rBH +jpk dNS dNS -lAv +lqn dTs dTs dTs @@ -82080,15 +82080,15 @@ ajz ajz arJ arJ -oye -dPg +vKv +pKk arJ ajz ajz -pAL -dZg -ofk -mwj +kHF +qat +hvd +itv dTs dTs dTs @@ -82103,7 +82103,7 @@ dTs dTs dTs dTs -hgh +uZY aeE aeE ayD @@ -82113,11 +82113,11 @@ dTs dTs dTs dTs -hBP -vWy -xIE +rpa +nQe +dFT bia -gbx +hIT bir biP biP @@ -82127,31 +82127,31 @@ biP biP biP bjo -nZu -qSC -mMn -uvL -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -lht -vzQ -vzQ -vzQ -uvL -gKM -xXi +nzG +cpe +qxV +wib +tiv +tiv +tiv +tiv +tiv +tiv +tiv +tiv +tiv +tiv +tiv +tiv +uAL +tiv +tiv +tiv +wib +wbx +lTl hCf -xsv +xpx naH ozu ozu @@ -82160,21 +82160,21 @@ bRr ozu ozu xsS -pJy +myy bVE -jnf +xEA duy -mnq +qXq dib dib dib dib dLu dLO -lVk -cSN -mXM -vKx +mbO +txA +nlq +vGQ cfw cdC cdC @@ -82209,22 +82209,22 @@ cDf cDf cDf cDf -rPV +jwn cDf cCc cdw cLj -jZO -uSQ -oWA -tWz -tWz +qcE +eeZ +rSB +kNu +kNu dTs dTs dTs ciQ ciQ -iWa +tBK cjR cho cho @@ -82233,16 +82233,16 @@ cho cYi ciQ doO -fww -pFx -tQi -wng -wng -vrH -mel +emA +kzw +vca +wWX +wWX +oub +hbc dea dea -jaZ +pWq dea dcN dhZ @@ -82256,35 +82256,35 @@ scm rdW hzC fdk -htK +qDR doL dpC -tKt -tKt -bsI -tKt -tKt -tKt -tKt -tKt +hZI +hZI +rqH +hZI +hZI +hZI +hZI +hZI ebB doL -frO -gcZ -fjO -pFx -fOI -rmx -mlZ -mlZ -tka -mlZ -oMf -mlZ -wNx +icL +wbO +jia +kzw +qtq +vdK +jzm +jzm +kqd +jzm +gsc +jzm +vYh vuu dNS -loQ +qVb dTs dTs dTs @@ -82311,19 +82311,19 @@ dTs dTs dTs ajz -laO -fZW -vxv -oye -uTF -qfi -yie +iLd +eYR +uej +vKv +dmV +vIY +rEq ajz -pAL -dZg -ofk -fBv -wFP +kHF +qat +hvd +wXw +enO dTs dTs dTs @@ -82337,21 +82337,21 @@ dTs dTs dTs dTs -pEY +vAE aeE aeE ayD -fGS +fkY dTs dTs dTs dTs dTs dTs -fYi -xIE +hRb +dFT bia -gbx +hIT bir biP biP @@ -82361,31 +82361,31 @@ biP biP biP bjo -nZu -qFh -sAr -vzQ -vzQ -vzQ -usI -guk -sWH -sWH -sWH -mpr -guk -sWH -sWH -sWH -eLu -ixs -vzQ -vzQ -vzQ -lLK -gFe +nzG +hxm +fuS +tiv +tiv +tiv +qFU +tzQ +jhG +jhG +jhG +rFj +tzQ +jhG +jhG +jhG +xGy +vxy +tiv +tiv +tiv +qwQ +few hCf -xsv +xpx naH ozu ozu @@ -82394,21 +82394,21 @@ bRr uml vgm xsS -pJy +myy bVE -jnf +xEA duy -mEm +mOg dLk dib dib dib dLu dLO -pjh -vkQ -vxq -ulc +uBI +faV +nAM +jGD cfw cdC cdC @@ -82443,40 +82443,40 @@ cDf cDf cDf cDf -rPV +jwn cDf cJz cfa cpQ -jZO -fIp -lvZ -ccS -ccS +qcE +jXQ +pix +sxa +sxa dTs dTs dTs dTs -kzx +tIJ ciQ -iWa +tBK cjR cho cho cho -eKx -oCE +xWo +iUS doO -sQn -npz -pFx -elp -pFx -pFx +ssb +oHq +kzw +sza +kzw +kzw dde dea dea -wLd +pLN dea vMp xjY @@ -82490,34 +82490,34 @@ taG hzC hzC fdk -htK +qDR doL dpC dpC dpC dNr -tKt -tKt +hZI +hZI dpC dpC dpC dpC doL -pFx -gcZ -fjO -pFx -pFx -pFx -pFx -pFx -pFx -pFx -pFx -pFx -fMW -wFb -wFb +kzw +wbO +jia +kzw +kzw +kzw +kzw +kzw +kzw +kzw +kzw +kzw +tNU +lgl +lgl dTs dTs dTs @@ -82545,18 +82545,18 @@ dTs dTs dTs ajz -dRx +uNO arL arL -oTz -oye +hJG +vKv arL -enJ +ono arJ -pAL -dZg -mJi -nik +kHF +qat +uor +hxX avG avG avG @@ -82571,8 +82571,8 @@ dTs dTs dTs dTs -shs -hgh +eYV +uZY aeE ayD dTs @@ -82582,10 +82582,10 @@ dTs dTs dTs dTs -wpX -xIE +wYv +dFT bia -gbx +hIT bir biP biP @@ -82595,31 +82595,31 @@ biQ biQ biQ bnt -tPh -iGw -ifs +kDd +lRM +dwL bAm -oSA -trD -trD -eth -vxb -trD -trD -qFu -egd -dvi -tee -qGy -vzQ -vzQ -hhS -lku +oFd +kqq +kqq +ktb +jGf +kqq +kqq +tNJ +nMC +oUE +roC +iws +tiv +tiv +qmd +khS bAm -for -bHt -cfM -xsv +htu +wmP +qDW +xpx ngo oAM oAM @@ -82628,38 +82628,38 @@ ueZ ozu ozu xsS -pJy +myy bVE -jnf -lFA +xEA +kuO dJT -mnq +qXq dib dib dib dLu dLO -owY -fIp -fIp -gOH +obD +jXQ +jXQ +fTc cfx cdC cdC chr -ciX -mXM -mXM -mXM -nxP -nxP -nxP -nxP -nxP -nxP -nxP -nxP -vKx +vxB +nlq +nlq +nlq +nbN +nbN +nbN +nbN +nbN +nbN +nbN +nbN +vGQ dPR cdC dPY @@ -82670,43 +82670,43 @@ cdC idg idg pUR -fpj +wsi cCc -hBA -qDl -qDl -qDl -qDl +xYV +rjV +rjV +rjV +rjV cDf cDf cDf cKs cLk -gFy -gOH -gOH -gOH +frI +fTc +fTc +fTc dTs dTs dTs dTs dTs -vhF +szC ciQ ciQ -rBg +xbT cho cho cho cho cYi doO -fww -npz -pFx -mRf -jyt -jyt +emA +oHq +kzw +sMJ +xNa +xNa dda deb dea @@ -82724,34 +82724,34 @@ taG sLx wya fdk -wHM +fSp doL doL dhA dhA dNs -tKt -rFy +hZI +oLM doL dhA dhA doL doL -qYt -gcZ +lKS +wbO uFX -wDS -wDS -wDS -wDS -wDS -wDS -wDS -wDS -wDS -wDS -wDS -vrm +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ygT +ygT +tFF dTs dTs dTs @@ -82779,18 +82779,18 @@ dTs dTs dTs ajz -bds +giA arL arL -uTF -uTF +dmV +dmV arL -enJ +ono arJ -pAL -dZg -ofk -hXU +kHF +qat +hvd +nXR avG axK ayg @@ -82805,10 +82805,10 @@ dTs dTs dTs dTs -shs -pEY +eYV +vAE aeE -qMc +fnJ dTs dTs dTs @@ -82816,44 +82816,44 @@ dTs dTs dTs dTs -ybG -kUl +qZD +rxy aoB -hPH +qQZ bjO bkk bky blj -kzd -qnp -qQg -qQg -qQg -sAr -hSn +kiE +qQt +tlu +tlu +tlu +fuS +fjM bhi brg -bhU -hpy -vEX -iKb -oSA -trD -trD -vzQ -lYM -iHr +iyy +sJM +mmx +sUt +oFd +kqq +kqq +tiv +nUf +fmw brh bDx -fBR -fBR +vqp +vqp bDx bDx bDx cNW -jnf -cfM -xsv +xEA +qDW +xpx mdP nAm nAm @@ -82862,29 +82862,29 @@ tSK ozu ozu xsS -wQW +sWb bVD -uMX -kjQ +pNL +iZE dJT -mnq +qXq dib dib dib dLu dLO -owY -tTs +obD +jAw cen cdw cfy cge cgL chr -xmr +sgP dBP ciu -jZO +qcE ciR ciR ciR @@ -82893,7 +82893,7 @@ ciR ciR ciR ciR -cVm +fxY dPR dPY cdC @@ -82904,17 +82904,17 @@ cdC dPY dPY chr -cVm +fxY cCe -lkf -lkf -kSc -vbH -oTD -pTk -kSc +bUL +bUL +qbc +uBF +iRV +vBE +qbc cCc -wjm +mxB cdw cdw cdw @@ -82926,9 +82926,9 @@ dTs dTs dTs dTs -kzx +tIJ ciQ -rBg +xbT cho cho cho @@ -82936,57 +82936,57 @@ cho cYi dpD dpE -eHg -exe -sLX +xMQ +pMb +pOe dNS dNS dde dea -wpz -jaZ -jaZ -wpz -jaZ -wpz +hqO +pWq +pWq +hqO +pWq +hqO dea eeX -pFx +kzw xbj kJP lYm eXM rdW fdk -nNF +uTA viV vuu dNS dNS -nPQ -hCo -vrm -sLX +gfo +mnZ +tFF +pOe dNS dNS dNS vuu -qqI -gcZ +fya +wbO uFX -wng -wng -wng -wng -wng -wng -wng -wng -wng -wng +wWX +wWX +wWX +wWX +wWX +wWX +wWX +wWX +wWX +wWX uFX -fjO -sLX +jia +pOe dTs dTs dTs @@ -83013,18 +83013,18 @@ dTs dTs dTs ajz -uFf +jzE arL arL -uTF -jHo +dmV +rPJ arL -mdM +dNQ arJ -pAL -dZg -ofk -hXU +kHF +qat +hvd +nXR avG axL axL @@ -83052,12 +83052,12 @@ dTs dTs biy biy -sUx +wRO biy -uSH -fPu -fPu -qQH +gtO +unK +unK +wsS biy biy dTs @@ -83071,23 +83071,23 @@ brh brh brh brh -vpH -iIE -trD -vzQ -lYM -lFR +eFq +srR +kqq +tiv +nUf +gNQ brh -rhG -emn -emn -pfN -xme +fnE +gbu +gbu +jOf +vYr bDx cNW -jnf -cfM -xsv +xEA +qDW +xpx naH ozu ozu @@ -83096,38 +83096,38 @@ bRr uml vgm xsS -pJy +myy bVE -jnf -kjQ +xEA +iZE dJT -mnq +qXq dib dib dib dLu dLO -owY -xfJ +obD +hOF ceo cdw cfy cdC cdC chr -xmr +sgP ciu ciu -jZO +qcE ciR -cDJ -hjQ -ude -hgl -fEL -mFP +skz +ojX +lom +xbc +snE +wVw ciR -cVm +fxY csH dPZ cdc @@ -83138,15 +83138,15 @@ cdc dPZ cdc ciy -cVm +fxY cCc -lkf -hLa -nCj -nli -nli -nli -kxj +bUL +kYu +jbf +lSG +lSG +lSG +uLZ cCc cdw cdw @@ -83162,65 +83162,65 @@ dTs dTs dTs ciQ -iWa +tBK cjR cho cho cho -eKx -oCE +xWo +iUS cnC djx -rMA -sLX +nIK +pOe dNS dNS dde dea -jaZ -jaZ -wpz -wpz -jaZ -jaZ +pWq +pWq +hqO +hqO +pWq +pWq dea -jfp -pFx -hCo -rhA +fGo +kzw +mnZ +rGs bYV hzC rdW fdk -nNF +uTA viV -lLj -wFb -wFb -uYm -gcZ -fjO -fMW -wFb -wFb -wFb -wFb -uIc -gcZ -fjO -pFx -pFx -pFx -pFx -pFx -pFx -pFx -pFx -pFx -pFx -gcZ -fjO -sLX +sBH +lgl +lgl +wGa +wbO +jia +tNU +lgl +lgl +lgl +lgl +gQd +wbO +jia +kzw +kzw +kzw +kzw +kzw +kzw +kzw +kzw +kzw +kzw +wbO +jia +pOe dTs dTs dTs @@ -83247,18 +83247,18 @@ dTs dTs dTs ajz -hCC +lpe arL atj -oye -uTF +vKv +dmV arL -enJ +ono arJ -pAL -dZg -ofk -tbz +kHF +qat +hvd +mzo axI axL axL @@ -83274,25 +83274,25 @@ dTs dTs dTs dTs -pEY +vAE aeE aeE ayD -shs +eYV dTs dTs dTs dTs dTs -uEE -uEE -nud -gks +umW +umW +gTB +fXK bjO bkj bkj blj -olF +kqj biy bfm bfm @@ -83305,23 +83305,23 @@ bfm dTs dTs brh -rXp -mJC -trD -vzQ -lYM -lFR +pOD +qur +kqq +tiv +nUf +gNQ brh -jXi -emn -emn -emn -vkg +eAn +gbu +gbu +gbu +jxV bDx cNW -jnf -cfM -xsv +xEA +qDW +xpx naH ozu ozu @@ -83330,55 +83330,55 @@ bRr ozu ozu xsS -pJy +myy bVE -jnf -pNs -xpX -mnq +xEA +frw +uJg +qXq dib dib dib dLu dLP dLU -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr +sgP ciu ciu -jZO +qcE ciR -vsp -xcu -uWe -hGR -kWN -nby +hCl +iuh +kcD +sET +mdq +oxz ciR -mDj -qCL -qCL -nxP -nxP -nxP -nxP -nxP -qCL -qCL -qCL -ulc +kvc +oFA +oFA +nbN +nbN +nbN +nbN +nbN +oFA +oFA +oFA +jGD cCf cCg cCg cCg -xSg -fgl +lFU +xBP cCg cCg cCf @@ -83397,7 +83397,7 @@ dTs dTs ciQ ciQ -rBg +xbT cho cho cho @@ -83405,8 +83405,8 @@ cho cYi ciQ cYh -rMA -sLX +nIK +pOe dNS dNS dda @@ -83419,43 +83419,43 @@ dea dea dea dda -pFx -gcZ -fjO +kzw +wbO +jia bYV sLx wya fdk -elo +xZy xoO -uIc -hCo -wDS -pLD +gQd +mnZ +ygT +pPv uFX uFX -wDS -wDS -wDS -wDS -wDS -wDS +ygT +ygT +ygT +ygT +ygT +ygT uFX -fjO -pFx -pFx -djC -tfe -puV -tfe -oEG -tfe -sqZ -pFx -gcZ -fjO -sLX -xJA +jia +kzw +kzw +vrp +gKr +xZW +gKr +gcn +gKr +gyn +kzw +wbO +jia +pOe +ejs dTs dTs dTs @@ -83481,52 +83481,52 @@ dTs dTs dTs ajz -jiI +dMW arL atj -oye -jHo +vKv +rPJ arL -kfk +tMO ajz -pAL -dZg -ofk -hXU +kHF +qat +hvd +nXR avG axL axL axL ayx aCr -rTp -uen -nZt -vPW +rVH +nbl +ejc +stB aCr dTs dTs dTs dTs -pEY +vAE aeE aeE ayD -shs +eYV dTs dTs dTs dTs dTs bRB -uEE -nud -rFv +umW +gTB +lug bjO bkk bky blj -uEE +umW biy bfm eyL @@ -83540,22 +83540,22 @@ dTs dTs brh brh -lzq -trD -vzQ -lYM -rcI +oEr +kqq +tiv +nUf +noT brh -vVW -emn -emn -emn -vkg +xRe +gbu +gbu +gbu +jxV bDx cNW -jnf -cfM -xsv +xEA +qDW +xpx ngo oAM oAM @@ -83564,57 +83564,57 @@ ueZ ozu ozu xsS -pJy +myy bVE -jnf -rnI -pJF -mnq +xEA +fXM +evG +qXq dib dib dib -tMR -cZk +kZm +gYp dLV -xfJ +hOF ceo cdw cfy cge cgL chr -xmr +sgP ciu -vxq -ulc +nAM +jGD ciR -hBh -hGR -hGR -hGR -hGR -ust +cYE +sET +sET +sET +sET +koS ciR crA -siH -eML +eXu +rVU crA cvM crA crA cvM crA -nHy -eML +uOi +rVU crA cCf -dmT -wwi -iLw -pHB -pHB -pOu -fRA +eWy +hpZ +jhl +cuD +cuD +sdR +mUC cCf dTs dTs @@ -83631,7 +83631,7 @@ dTs dTs dTs ciQ -rBg +xbT cho cho cho @@ -83640,7 +83640,7 @@ cYi ciQ cnC dnD -sLX +pOe jfA dNS dda @@ -83653,43 +83653,43 @@ dde dda dda dda -pFx -gcZ -fjO +kzw +wbO +jia bYV rdW rdW dPf -htK -pFx -pFx -gcZ +qDR +kzw +kzw +wbO uFX -cWd -wng -wng -wng -wng -wng -wng -wng +cZC +wWX +wWX +wWX +wWX +wWX +wWX +wWX uFX uFX -vrH -pFx -pFx -njp +oub +kzw +kzw +jTp dzd clo cra dFP dzd dwD -pFx -gcZ -fjO -sLX -lAv +kzw +wbO +jia +pOe +lqn dTs dTs dTs @@ -83715,52 +83715,52 @@ afG afG afG afG -soF +sOb arL arL -oye -dmD +vKv +fJe aHD -mRW +mFX arJ -rvV -gQf -ofk -hXU +lOE +gTQ +hvd +nXR avG axN ayh axL ayx aCr -wGB -hBQ -hBQ -rtA +luh +hzN +hzN +mAT aCr dTs dTs dTs dTs -pEY +vAE aeE aeE ayD -shs +eYV dTs dTs dTs dTs dTs dTs -uEE -nud -rFv +umW +gTB +lug bjO bkj bkj blj -uEE +umW biy bfm eyL @@ -83774,81 +83774,81 @@ dTs dTs dTs brh -iUu -oSA -fEX -lYM -rcI +hWG +oFd +nlW +nUf +noT brh -pPG -emn -emn -emn -ngx +iHh +gbu +gbu +gbu +qtQ bDx -gzw -jnf -lLK -gFe -mQz -mQz -mQz -jFi +ouZ +xEA +qwQ +few +cSi +cSi +cSi +kwV naH uml vgm xsS -pJy +myy bVE -jnf -rnI -pJF -mnq +xEA +fXM +evG +qXq dib dib dib dib dLu dLV -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciR ciR ciR ckD cjV -vRu +iHc cjV cjV ckD ckD -roA -nHy -siH -vcl -ykx -lks -lks -ykx -uvn -siH -siH -eoO +kSu +uOi +eXu +vqT +qYc +kGS +kGS +qYc +vpF +eXu +eXu +fOT cCg -xxC -jCq -fVX -krG -krG -kbv -xpI +tHc +gAx +gkY +pen +pen +utE +lvE cCf dTs dTs @@ -83865,16 +83865,16 @@ dTs dTs dTs ciQ -rBg +xbT cho cho cho cho -eKx -oCE +xWo +iUS ciQ doN -sLX +pOe dNS dNS dNS @@ -83886,44 +83886,44 @@ dNS dNS dNS dNS -qqI -pFx -gcZ -fjO +fya +kzw +wbO +jia bYV rdW rdW fdk -gcZ -wDS -wDS +wbO +ygT +ygT uFX -fjO -ejo -pFx -pFx -pFx -pFx -pFx -pFx -pFx -tQi -vrH -pFx -pFx -pFx -njp +jia +wCl +kzw +kzw +kzw +kzw +kzw +kzw +kzw +vca +oub +kzw +kzw +kzw +jTp dzd clp crb dFQ dzd dwD -pFx -gcZ -fjO -sLX -loQ +kzw +wbO +jia +pOe +qVb dTs dTs dTs @@ -83937,46 +83937,46 @@ acu (144,1,1) = {" acu afG -lOL -iEG -lll -iEG -qWn +nTO +qlz +rwp +qlz +oHQ afG -lOL -iEG -lll -iEG -qWn +nTO +qlz +rwp +qlz +oHQ afG -hlB +gto arL -lVy -oye -uTF -oye -uTF -pjr -tbz -dZg -ofk -hXU +wPl +vKv +dmV +vKv +dmV +kQz +mzo +qat +hvd +nXR avG avG avG avG avG aCr -dPA -lUv -jPa -rtA +cAC +kqO +hpg +mAT aCr dTs dTs dTs -shs -pEY +eYV +vAE aeE aeE ayD @@ -83987,14 +83987,14 @@ dTs dTs dTs dTs -uEE -nud -rFv +umW +gTB +lug bjO bkj bkj blj -uEE +umW biy bfm eyL @@ -84014,75 +84014,75 @@ brh byS brh brh -fbp -emn -iYS -iYS -faX +dtZ +gbu +jah +jah +qTq bDx -wAT -jnf -vTN -jwI -for -for -vlg -bqC +web +xEA +kZC +eZc +htu +htu +gEq +elB naH ozu ozu xsS -fLO +nIb bVD -ntb -rnI -pJF -mnq +lIx +fXM +evG +qXq dib dib dib dib dLu dLW -fPw +sly cen cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciR -rvM -dwL -lHb -oXC -oXC -sFL -mzy -mBQ +iag +oyW +kEA +rFu +rFu +wNe +sWl +kGy cjV -uvn -kfy -sMF -siH -siH -ibW -nHy -nHy -nHy -cXG -eWO -wjv -jMH -uZf -bdv -pVC -sCl -iLC -rEk -paH +vpF +vqo +eTo +eXu +eXu +vcG +uOi +uOi +uOi +iHu +mJR +tRd +hvo +rmk +ppU +gpL +hBW +rmz +plz +vPu cCf dTs dTs @@ -84099,7 +84099,7 @@ dTs dTs dTs ciQ -iWa +tBK cjR cho cho @@ -84108,55 +84108,55 @@ cho cYi ciQ doO -fMW -wFb -wFb -wFb -wFb -wFb -wFb -wFb -wFb -wFb -wFb -wFb -uIc -pFx -gcZ -fjO +tNU +lgl +lgl +lgl +lgl +lgl +lgl +lgl +lgl +lgl +lgl +lgl +gQd +kzw +wbO +jia bYV sLx wya fdk -gcZ -wng -wng -wng -vrH -ejo -djC -tfe -tfe -tfe -sqZ +wbO +wWX +wWX +wWX +oub +wCl +vrp +gKr +gKr +gKr +gyn dxe dxe -mxf -jRe +fyR +oMT dxe dxe -pFx -njp +kzw +jTp dzd cmg crb dGv dzd dwD -pFx -gcZ -fjO -fMW +kzw +wbO +jia +tNU dTs dTs dTs @@ -84171,49 +84171,49 @@ acu (145,1,1) = {" acu afG -fFR -fHO -hmK -rMw -fyH -rcW -fFR -pCk -rMw -pCk -fyH +mor +jAj +pmO +gGe +rxa +chI +mor +lIB +gGe +lIB +rxa afG -wjY +qMq arL -oye -oye -oye -oye -uTF -xJb -tbz -dZg -ofk -hXU +vKv +vKv +vKv +vKv +dmV +tyb +mzo +qat +hvd +nXR avG dTs dTs dTs dTs aCr -pxC -vlv -leW -rtA +tiJ +nag +mvG +mAT aCr dTs dTs dTs -shs -pEY +eYV +vAE dTs aeE -qMc +fnJ dTs dTs dTs @@ -84221,14 +84221,14 @@ dTs dTs dTs dTs -uEE -nud -rFv +umW +gTB +lug bjO bkk bky blj -uEE +umW biy bfm eyL @@ -84248,75 +84248,75 @@ dTs fpJ dTs brh -oXH -emn -emn -gua -vjB +jUY +gbu +gbu +vKi +dnU bDx dTs dTs dTs dTs -wKS -gzw -dla -kIC +diA +ouZ +ryJ +wwK naH ozu ozu xsS -efS -vTN -vTN -rnI -pJF -mnq +jcW +kZC +kZC +fXM +evG +qXq dib dib dib dib dLu dLX -xfJ +hOF ceo cdw cfy cge cgL chr -xmr -jZO +sgP +qcE ciS -rvM -xZa -kYT -oXC -oXC -sFL -sKM -saD -bDq -xBC -pnw -mnl -siH -siH -ibW -vii -vii -wan -xBk -rJT -wjv -pHB -pHB -qYq -eAX -sCl -gBY -wQq -paH +iag +qjJ +wLW +rFu +rFu +wNe +fng +heB +pvX +hwX +svK +thr +eXu +eXu +vcG +jRW +jRW +sPQ +uNI +wDd +tRd +cuD +cuD +qSX +lbb +hBW +utw +qDF +vPu cCf dTs dTs @@ -84331,66 +84331,66 @@ dTs dTs dTs dTs -jkQ -kzx +hJz +tIJ ciQ -rBg +xbT cho cho cho cho -eKx -oCE +xWo +iUS dpD chm clD -ltj +gzV cnB -dWc -dWc -dWc -dWc -dWc -dWc -dWc -dWc -ndd -wDS +dJq +dJq +dJq +dJq +dJq +dJq +dJq +dJq +eUS +ygT uFX -fjO +jia bYV rdW rdW fdk -htK -mRf -jyt -qYt -pFx -ejo -njp +qDR +sMJ +xNa +lKS +kzw +wCl +jTp dEo -ekK -sVz +vRt +vEp dwD dxe -vVn -mxf -mxf +jiC +fyR +fyR dWK dxe -pFx -njp +kzw +jTp dzd cmQ csg dGw dzd dwD -pFx -roo -yle -pFx +kzw +hZz +uyA +kzw dTs dTs dTs @@ -84405,46 +84405,46 @@ acu (146,1,1) = {" acu afG -fFR -pDM -kQZ -kQZ -fyH -rcW -fFR -vbg -pCk -llt -fyH +mor +hTJ +uBs +uBs +rxa +chI +mor +xpa +lIB +lXN +rxa afG -bBK +mQL arL -oTz -uTF +hJG +dmV arL -gOm -uaI +sQV +nGR arJ -hFs -dZg -ofk -hXU +jIS +qat +hvd +nXR avG dTs dTs dTs dTs aCr -mwr -hBQ -ldR -rtA +wtr +hzN +uDs +mAT aCr dTs dTs -shs -fSF -eQl +eYV +pLA +pjc aeE aeE aeE @@ -84455,14 +84455,14 @@ dTs dTs dTs biy -uXd -nud -mBx +isi +gTB +tJX bjO bkj bkj blj -hEA +eCI biy bfm eyL @@ -84482,11 +84482,11 @@ dTs fpJ dTs brh -eyf -iaf -qhc -uov -gYZ +gEF +vMA +hSc +mGR +mjX bDx dTs dTs @@ -84494,63 +84494,63 @@ dTs dTs dTs dTs -gzw -hCJ +ouZ +dwu naH uml vgm xsS -lOq -xXi -xVl -tpU -pJF -mEm +eGa +lTl +eNY +wHB +evG +mOg dLk dib dib dib dLu dLX -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciS -sPf -xZa -xqi -lKm -vPl -mtz -ouu -mvk +soO +qjJ +lEU +sYc +pOs +vOn +fGs +uPz cjV -nHy -nHy -siH -pNI -izY -izY -izY -hfJ -fMV -lHd -siH -wjv +uOi +uOi +eXu +swn +ohk +ohk +ohk +tQE +qog +qnY +eXu +tRd cCg -lCy -vyu -eAX -sCl -xit -iSQ -hGP +upD +gdC +lbb +hBW +rcn +ikx +kAH cCf dTs dTs @@ -84566,66 +84566,66 @@ dTs dTs dTs dTs -vhF +szC ciQ -iWa +tBK cjR cho cho cho cho -eKx -oCE +xWo +iUS ciQ ciQ ciQ cnC -ghb +tjl djx -qQD -qQD -qQD -qQD -qQD -qVJ -lAy -wng -wng -vrH +sRt +sRt +sRt +sRt +sRt +tYs +kFq +wWX +wWX +oub bYV rdW rdW fdk -wHM +fSp xoO dNS -qqI -pFx -ejo -vlH +fya +kzw +wCl +sRC dFc cho -vAm +fit dwD din dWu -pDB -mxf +lMM +fyR dWu din -pFx -njp +kzw +jTp dzd dzh dzd dAA dzd dwD -pFx -lPj -qez -dWc -dWc +kzw +nFN +hTG +dJq +dJq dTs dTs dTs @@ -84639,44 +84639,44 @@ acu (147,1,1) = {" acu afG -hGW -xir -xir -xir -vUX +wVZ +vIP +vIP +vIP +nQQ afG -hGW -xir -xir -xir -vUX +wVZ +vIP +vIP +vIP +nQQ afG -vYG -kZO -ntK -oye -gOm -naE +hQT +oZE +trk +vKv +sQV +laa avG avG -gHv -dZg -ofk -hXT +dul +qat +hvd +vVB avG avG dTs dTs dTs aCr -pbW -hzj -dsN -rtA +kDS +teZ +pIb +mAT aCr dTs dTs -eQl +pjc aeE aeE aeE @@ -84690,12 +84690,12 @@ dTs dTs biy biy -sUx +wRO biy -uSH -fPu -fPu -uGd +gtO +unK +unK +cTW biy biy bfm @@ -84729,61 +84729,61 @@ dTs dTs dTs dTs -xYD +mVs naH ozu ozu xsS -lOq -gFe -tUD -sQV -pJF +eGa +few +gXZ +whR +evG dJT -mnq +qXq dib dib dib dLu dLX -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciS -kfC -xZa -jNR -oOf -urA -sFL -vAE -saD -bDq -izY -izY -hfJ -kfy -eHM -jcO -fhU -ohz -eWO -izY -lfQ -vRH +vwb +qjJ +jql +eRu +hek +wNe +gMJ +heB +pvX +ohk +ohk +tQE +vqo +vSK +pEV +bks +gpz +mJR +ohk +xtR +rKh cCg -nJf -kYu -gyT -sAM -udD -qPW +osg +wNz +lqS +koa +gcM +iCB cCf cCf dTs @@ -84801,65 +84801,65 @@ dTs dTs dTs dTs -jjl -kzx -iWa +pYo +tIJ +tBK cjR cho cho cho cho -eKx -gYz -gYz -oCE +xWo +pMy +pMy +iUS ciQ ciQ cnC -ghb +tjl djx -qQD -qQD -qQD -hIW -mRf -jyt -jyt -qYt +sRt +sRt +sRt +vyX +sMJ +xNa +xNa +lKS bYV sLx wya fdk -nNF +uTA viV dNS -qqI -pFx -pFx -ejo -rBg +fya +kzw +kzw +wCl +xbT cho dHg dwD din dyj -mxf -mxf +fyR +fyR dWK din -pFx -njp +kzw +jTp dzd clo cra dFP dzd dwD -pFx -lPj -qQD -qQD -qQD +kzw +nFN +sRt +sRt +sRt dTs dTs dTs @@ -84874,30 +84874,30 @@ acu acu afG afG -xyd -xyd -xyd +hJp +hJp +hJp afG afG afG -xyd -xyd -xyd +hJp +hJp +hJp afG afG ajz arJ -cWG -dPg +fWa +pKk arJ ajz avG -rbJ -iqA -dZg -ofk -mtc -iJy +ewu +vqb +qat +hvd +fev +tFO avG avG avG @@ -84905,7 +84905,7 @@ avG aCr aug aug -hGB +tvy aug aCr dTs @@ -84922,15 +84922,15 @@ ayD dTs dTs dTs -wJy -fwn +ekU +jPW aoV -eDj +jkq bjO bkk bky blj -uyw +iUv dTs bfm eyL @@ -84945,8 +84945,8 @@ dTs dTs dTs dTs -shs -shs +eYV +eYV fpJ dTs dTs @@ -84963,61 +84963,61 @@ dTs dTs dTs dTs -kIC +wwK naH ozu ozu xsS -efS -vTN -vTN -eoh -qGp +jcW +kZC +kZC +uKV +kqa dJT -mnq +qXq dib dib dib dLu dLX -xfJ +hOF ceo cdw cfy cge cgL chr -xmr -jZO +sgP +qcE ciS -xZa -xZa -luG -oXC -oXC -sFL -mzy -mBQ +qjJ +qjJ +cTf +rFu +rFu +wNe +sWl +kGy cjV -hBS -fiJ -grd -krC -eXK -lcD -kTQ -osb -hBS -hBS -uxn -krC +qjs +vDN +xCz +jvf +jwL +fAE +lzm +het +qjs +qjs +iXn +jvf cCg -uXx -hUv -lxL -elO -paH -jcB +xnv +vFv +raz +vXE +vPu +tTw cCf dTs dTs @@ -85036,9 +85036,9 @@ dTs dTs dTs dTs -jkQ -kzx -iWa +hJz +tIJ +tBK cjR cho cho @@ -85046,54 +85046,54 @@ cho cho cho cho -eKx -gYz -oCE +xWo +pMy +iUS ciQ ciQ cnC djx -nqN -fUI -lNx -sLX +fCu +jHG +kOx +pOe dNS dlc -qqI +fya bYV rdW rdW fdk -roy +sut viV dNS -qqI -pFx -pFx -pFx -jBN +fya +kzw +kzw +kzw +kyu dGA dHA dwD din dyj -mxf -wWO +fyR +nQD dyj din -pFx -njp +kzw +jTp dzd cmQ csg dHc dzd dwD -pFx -lPj -fRl -fRl -fRl +kzw +nFN +hZq +hZq +hZq dTs dTs dTs @@ -85108,81 +85108,81 @@ acu acu afG ajt -orf -gIq -gIq +hDs +pwA +pwA agQ amD agQ -iaI -gIq -orf +iPM +pwA +hDs agH -dnv -dnv -tLX -gKC -qjI -hTb -dnv +wOx +wOx +mkK +gUO +qqG +dxG +wOx avH -rvV -ofk -dZg -ofk -ofk -mtc -xpW -xpW -xpW -xpW -xpW -xpW -rvV -uVX -hXT +lOE +hvd +qat +hvd +hvd +fev +gow +gow +gow +gow +gow +gow +lOE +jiH +vVB hVs dTs aeE aeE aeE azD -sIY -hgh +eqZ +uZY aeE aeE aeE ayD dTs dTs -pEY +vAE aeE aAt buj -jQs +eQO aXW aVZ aVZ aZk -tDI -edn +plB +xrg bfm auW -iCh -iCh -iCh -iCh +vMC +vMC +vMC +vMC auW bfm -shs -dTs -shs -shs -fSF -fSF -fSF -jnM -fSF +eYV +dTs +eYV +eYV +pLA +pLA +pLA +taJ +pLA ayD dTs dTs @@ -85196,62 +85196,62 @@ dTs dTs dTs dTs -wAT -hCJ +web +dwu naH uml vgm xsS -wQW +sWb bVD -bHt -kjQ +wmP +iZE dJT dJT -mnq +qXq dib dib dib dLu dLX -fPw +sly cen cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciR -wzJ -xZa -qry -oXC -oXC -nmv -mJJ -uxD +hiO +qjJ +mqL +rFu +rFu +guQ +mmK +opz ckD -ozm -hpZ -uxn -krC -yeQ -kTQ -kTQ -sHA -hBS -hBS -uxn -qFz +cTY +sDc +iXn +jvf +mZi +lzm +lzm +fMn +qjs +qjs +iXn +kky cCg -ltN -pdC -eDC -fLx -rAQ -nVj +hiV +pRm +jBu +xUc +rmU +wgH cCf dTs dTs @@ -85273,7 +85273,7 @@ dTs dTs dTs ciQ -rBg +xbT cho cho cho @@ -85282,52 +85282,52 @@ cho cho cho cho -eKx -gYz -oCE +xWo +pMy +iUS ciQ cnC -ghb -fjy +tjl +jYl doO -sLX +pOe dNS dNS -qqI +fya bYV rdW rdW fdk -sLX +pOe viV dNS -qqI -pFx -pFx -nWq -rrn -rrn -rrn -qkH +fya +kzw +kzw +xcO +qRl +qRl +qRl +oHK dxe -itx +gJe dWz dWG dWL dxe -pFx -nWq -gxC -vBV -vBV -vBV -gxC -qkH -pFx -ofq -waj -waj -waj +kzw +xcO +wmd +ygl +ygl +ygl +wmd +oHK +kzw +oKP +oKM +oKM +oKM dKQ dTs dTs @@ -85341,85 +85341,85 @@ acu (150,1,1) = {" acu afG -mwf -gIq -gIq -orf -orf -orf -orf -gIq -gIq -orf -btg -qjI -pdy -qjI -gKC -qjI -qjI -qjI -kKh -ofk -ofk -dZg -ofk -ofk -ofk -ofk -ofk -ofk -ofk -mJi -ofk -ofk -mwY -mtc +sMf +pwA +pwA +hDs +hDs +hDs +hDs +pwA +pwA +hDs +kEw +qqG +oJQ +qqG +gUO +qqG +qqG +qqG +knT +hvd +hvd +qat +hvd +hvd +hvd +hvd +hvd +hvd +hvd +uor +hvd +hvd +eQZ +fev eVJ aeE aeE aeE -sIY +eqZ dTs dTs -shs -hgh +eYV +uZY aeE aeE ayD -shs -shs -pEY +eYV +eYV +vAE aeE aAu aAi -uhp +uCn aXW aVZ aVZ aZk -tDI +plB auu -nws -rQp -eQg -nwo -hwd -heK -rQp -tAC -shs -shs -fSF -eQl +puA +rPr +vgp +scd +uDt +nSb +rPr +iyz +eYV +eYV +pLA +pjc aeE aeE aeE xhv aeE ayD -shs -shs +eYV +eYV dTs dTs dTs @@ -85429,63 +85429,63 @@ dTs dTs dTs dTs -uuH -euo -hCJ +sfp +stp +dwu naH ozu ozu xsS -pJy +myy bVE -jnf -kjQ +xEA +iZE dJT dJT -mnq +qXq dib dib dib dLu dLX -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciR ciR cjV -qry -ulW +mqL +kmo cjV cnJ -eyK +kYI ciS ckD crH -hpZ -wxO +sDc +vdo crH cvM -cYM +tGk crH cvM crH -jrQ -tup +tYZ +ggL crH cCg -mZs -noB -eAX -xIe -oxs -uAi +eDe +iqX +lbb +mkY +uHU +rNy cCf dTs dTs @@ -85507,8 +85507,8 @@ dTs dTs dTs ciQ -iWa -xfY +tBK +icw cjR cho cho @@ -85518,47 +85518,47 @@ cho cho cho cho -eKx -gYz -gYz -gYz -gYz -tQg -fMW -wFb -wFb -uIc +xWo +pMy +pMy +pMy +pMy +pqg +tNU +lgl +lgl +gQd bYV sLx wya fdk -fMW +tNU xoO -wFb -uIc -pFx -pFx -pFx +lgl +gQd +kzw +kzw +kzw czV czV czV -pFx +kzw dxe din dxe din dxe dxe -pFx -pFx -pFx +kzw +kzw +kzw dAo dAo dAo -pFx -pFx -pFx -fqW +kzw +kzw +kzw +ejB cgq cgq cgq @@ -85575,75 +85575,75 @@ acu (151,1,1) = {" acu afG -tKZ -orf -gIq -qPe -orf -orf -gIq -orf -orf -nkE -orf -qjI -oMC -pit -ioC -pit -pit -pit -lOK -lOK -lOK -suK -lOK -lOK -lOK -lOK -lOK -lOK -lOK -lOK -lOK -vEe -hCb -ofk -wNc -iuU -sNl -sIY -dTs -dTs -dTs -dTs -pEY +iga +hDs +pwA +uNB +hDs +hDs +pwA +hDs +hDs +rxJ +hDs +qqG +uvL +oIS +olU +oIS +oIS +oIS +kft +kft +kft +gfQ +kft +kft +kft +kft +kft +kft +kft +kft +kft +ipq +eIV +hvd +xoC +loh +lSJ +eqZ +dTs +dTs +dTs +dTs +vAE aeE aeE -qMc -fSF -shs -shs -hgh +fnJ +pLA +eYV +eYV +uZY aeE azD -vlV +jJJ aXW aWa aWB aZk -tDI +plB auG -qdz -wWE -eQg -nud -rFv -heK -wWE -iwE -fSF -eQl +ksY +lWe +vgp +gTB +lug +nSb +lWe +vAg +pLA +pjc aeE aeE aeE @@ -85652,9 +85652,9 @@ aeE xhv aeE aeE -qMc -fSF -fmp +fnJ +pLA +djp dTs bID bID @@ -85665,61 +85665,61 @@ bID bID bID aBX -hCJ +dwu naH ozu ozu xsS -pJy +myy bVE -jnf -pbr +xEA +koU dJT -jYG -bCa +sit +rkJ dib dib dib dLu dLX -xfJ +hOF ceo cdw cfy cge cgL chr -noi +vLg ciu -vKx +vGQ cjs -crZ -jTa -vHS -kMr -jbE -oii -kMr -laJ -crZ -sRq -msq -qGc -jbE -oii -kMr -laJ -crZ -qaz -msq -eVW +bwN +xFo +oeJ +peg +xXp +irM +peg +sTn +bwN +jwh +lFZ +whl +xXp +irM +peg +sTn +bwN +gBD +lFZ +rLv cCj -jQk -dNd -eAX -xIe -qPb -qPW +mWX +ntV +lbb +mkY +jKo +iCB cCf dTs dTs @@ -85741,10 +85741,10 @@ dTs dTs dTs dTs -kzx +tIJ ciQ -iWa -xfY +tBK +icw cjR cho cho @@ -85759,45 +85759,45 @@ cho cho dvy clD -ltj -nnu -ktw +gzV +gYm +sND dfc dgD dNR dTH -ktw +sND jsN -nbK -wyK -wyK -sOa +eIH +ldT +ldT +qlK dEn dEn dEn dEn dEn -ekK -wyK +vRt +ldT dzr -egB -egB -egB -esu +imA +imA +imA +vaZ cgs cgs cgs cgs -ces -xho +kwp +tqs dII -lMi -vKC +mPX +tPW cgq -hYo -qwv -qwv -iSi +ttR +lbm +lbm +qbG cfH cfH cfH @@ -85816,144 +85816,144 @@ agQ agQ agQ agQ -orf -orf +hDs +hDs agQ agH -jVu -gKC -qjI -xMP -fTh -qMe -qMe +gDI +gUO +qqG +ejt +yjb +sgR +sgR avH -hFs -ofk -ofk -ofk -mJi -mpM -wsE -wsE -wsE -wsE -wsE -hFs -dZg -ofk -ofk -ruz -mcK -trk -dTs -dTs -dTs -dTs -dTs -shs -hgh +jIS +hvd +hvd +hvd +uor +sZe +wIA +wIA +wIA +wIA +wIA +jIS +qat +hvd +hvd +jlJ +fUS +sNR +dTs +dTs +dTs +dTs +dTs +eYV +uZY aeE aeE aeE ayD -shs -shs -hgh +eYV +eYV +uZY aeE -vlV +jJJ aXW aVZ aVZ aZk -sSH -wCm -wCm -wCm -kXt -pBy -pBy -qlm -wCm -wCm -xEM -xEM -xEM -xEM -xEM -xEM -xEM -jee -xEM -xEM -xEM -xEM -xEM -qTf +nCk +goI +goI +goI +sEZ +mmr +mmr +jOF +goI +goI +qeC +qeC +qeC +qeC +qeC +qeC +qeC +kYm +qeC +qeC +qeC +qeC +qeC +qpM bID -vOH -wch -vOH -vOH -wch -vOH +fat +iPQ +fat +fat +iPQ +fat bID -eMZ -qna +kcz +iAz naH uml vgm xsS -pJy +myy bVE -jnf +xEA duy dJT -mnq +qXq dib dib dib dib dLu -lzc -xfJ +xRJ +hOF ceo cdw cfy cdC cdC chr -xmr +sgP dNT -jZO -gCf -vHS -qoP -uks -uks -uks -uks -ocd -gHk -uBa -pdI -qGc -uks -kVC -uks -mxh -uks -uks -qyY -qGc -noU -epL -lqH -tIb -gkx -xIe -pgv -jcB +qcE +xVU +oeJ +oCN +qJv +qJv +qJv +qJv +iWm +tLY +nKt +stR +whl +qJv +tMA +qJv +anW +qJv +qJv +lMO +whl +koc +xNd +hYe +wvG +gij +mkY +vWm +tTw cCf dTs dTs @@ -85976,11 +85976,11 @@ dTs dTs dTs dTs -jjl -jjl -kzx -iWa -xfY +pYo +pYo +tIJ +tBK +icw cjR cho cho @@ -85991,18 +85991,18 @@ cho cho cho cho -eKx -gYz -gYz -wlT -oQe +xWo +pMy +pMy +xUu +ijN czV czV czV czV -oQe -xEY -gqr +ijN +jXx +iLA cho cho cho @@ -86023,12 +86023,12 @@ cfH cfH cfH cfH -uiE -qwv -qwv -qwv -qwv -pZm +wTK +lbm +lbm +lbm +lbm +nct cfH cfH aOQ @@ -86050,52 +86050,52 @@ agH afG afG agQ -orf -qPe +hDs +uNB aiB afG -ufb -gKC -ktD -rhi +pPI +gUO +kkl +dTD akL akL akL avG -eje -iKx -wsE -wsE -wsE -kHX +hzR +iME +wIA +wIA +wIA +xEb avG avG avG avG avG -uVD -dZg -ofk -mpM +rah +qat +hvd +sZe eVJ -mcK -trk +fUS +sNR dTs dTs dTs dTs dTs dTs -shs -hgh +eYV +uZY aeE aeE ayD -shs -oao -pEY +eYV +mOo +vAE aeE -vlV +jJJ aXW aVZ aVZ @@ -86124,70 +86124,70 @@ abZ abZ abZ bJD -kpK +qgr bJD bJD bJD bJD bJD bJD -kpK +qgr bJD nAm tSK ozu ozu xsS -pJy +myy bVE -jnf +xEA duy dJT -mnq +qXq dib dib dib dib dLu dLV -xfJ +hOF ceo cdw cfy cdC cgf chs -nwa +wrS dNU -oPG -dvI -gUE -fqY -oxd -oxd -cAz -cAz -nnb -ojh -mkB -qcX -cAz -cAz -oxd -cAz -cAz -wac -ngH -oxd -oxd -udT -cWJ -cWJ -lKn -fny -mpI -udD -nVj +txt +szq +gTo +ovG +rak +rak +sNA +sNA +rao +mBW +kpo +qiA +sNA +sNA +rak +sNA +sNA +rqg +jfV +rak +rak +eTe +ikH +ikH +rEn +fbL +stl +gcM +wgH cCf dTs dTs @@ -86212,11 +86212,11 @@ dTs dTs dTs dTs -jkQ -jjl -kzx -iWa -xfY +hJz +pYo +tIJ +tBK +icw cjR cho cho @@ -86284,14 +86284,14 @@ akx aTI afG agQ -orf -orf +hDs +hDs agQ agH -ufb -oHJ -qjI -rhi +pPI +luy +qqG +dTD akL dTs dTs @@ -86307,13 +86307,13 @@ dTs dTs dTs avG -pAL -dZg -ofk -hXU +kHF +qat +hvd +nXR hVs -mcK -trk +fUS +sNR dTs dTs dTs @@ -86321,15 +86321,15 @@ dTs dTs dTs dTs -pEY +vAE aeE aeE ayD -shs -shs -pEY +eYV +eYV +vAE aeE -vlV +jJJ aXW aVZ aVZ @@ -86358,70 +86358,70 @@ aVZ azZ aVZ bJE -nFw +vpk bJE bJE bIF bJE bJE bIF -nFw +vpk bJE ssy ozu ozu ozu xsS -wQW +sWb bVD -uMX -lFA +pNL +kuO dJT -mnq +qXq dib dib dib -gYs -psa +rHX +udn dLV -fPw +sly cen cdw cfy cge cgM chr -hsy -vxq -jZO +tQT +nAM +qcE cjs -ibT -kfu -kfu -kfu -kfu -ibT -fAz -mfy -uWf -gYd -pGW -wwj -nWr -eXc -fAz -imP -sNd -giu -hWO -kTj +sXB +fgL +fgL +fgL +fgL +sXB +goN +jMZ +uKr +gLv +rDS +pof +oum +uNj +goN +oFB +sXU +jSg +sJC +ulJ cCj -vgd -psi -hYh -gQw -oyi -xcz +wfb +smC +uCH +viC +ixU +hYv cCf cJA cJA @@ -86447,13 +86447,13 @@ dTs dTs dTs dTs -nqN -jkQ -kzx +fCu +hJz +tIJ ciQ -iWa -xfY -xfY +tBK +icw +icw cjR cho cho @@ -86518,20 +86518,20 @@ afN amd agH agQ -orf -orf +hDs +hDs agQ agH -ufb -gKC -qjI -rhi +pPI +gUO +qqG +dTD akL dTs dTs dTs dTs -onH +gIR atS aqC aqC @@ -86541,29 +86541,29 @@ dTs dTs dTs avG -pAL -dZg -ofk -hXU +kHF +qat +hvd +nXR hVs -mcK -trk +fUS +sNR ayD -shs +eYV dTs dTs dTs dTs dTs -eQl +pjc aeE aeE -qMc -fSF -eQl -eQl +fnJ +pLA +pjc +pjc aeE -vlV +jJJ aXW aVZ azN @@ -86592,33 +86592,33 @@ aVZ aBQ aVZ bJE -eSz +vvo bJE bJE bIG bJE bJE bIG -eSz +vvo bJE svy ozu ozu ozu xsS -pJy +myy bVE -jnf -kjQ +xEA +iZE dJT -mnq +qXq dib dib dib dLu dJT dLV -xfJ +hOF ceo cdw cfy @@ -86627,7 +86627,7 @@ cgN cht ccZ cix -cVm +fxY cjv cka cka @@ -86636,16 +86636,16 @@ cka cka cka cpH -tTb -vpW +hjb +qho cpH ctW ctX ctX ctX ctX -xuD -iwc +cLb +mgy ctX ctX ctX @@ -86653,14 +86653,14 @@ cCg cCg cCg cFn -nye -kFI +qnw +qbM cFn cCg -mor -okN -lOt -iBf +sUV +ksa +oyu +lcb cJA dTs dTs @@ -86685,13 +86685,13 @@ dTs dTs dTs dTs -jjl -kzx +pYo +tIJ ciQ -iWa -xfY -xfY -xfY +tBK +icw +icw +icw cjR cho cho @@ -86729,10 +86729,10 @@ cfH cfH cfH cfH -lvW -jUR -jUR -jUR +syA +lqK +lqK +lqK aOV cfH cfH @@ -86750,22 +86750,22 @@ afN afN afN amj -qef -orf -orf -orf +hRK +hDs +hDs +hDs agQ agH -ufb -gKC -qjI -rhi +pPI +gUO +qqG +dTD akL dTs dTs dTs dTs -onH +gIR atS aqC aqC @@ -86775,29 +86775,29 @@ dTs dTs dTs avG -pAL -dZg -ofk -hXU +kHF +qat +hvd +nXR hVs -mcK -trk +fUS +sNR ayD -shs -shs +eYV +eYV dTs dTs dTs -gYx -xEM -xEM -xEM -xEM -xEM -xEM -xEM -xEM -vtS +mXa +qeC +qeC +qeC +qeC +qeC +qeC +qeC +qeC +eGV aXW aWa aAT @@ -86826,33 +86826,33 @@ aXC aXC aXC bIH -oOu +rRG bIH bIH bIH bIH bIH bIH -oOu +rRG bIH oAM ueZ ozu ozu xsS -pJy +myy bVE -jnf -pNs -xpX -mnq +xEA +frw +uJg +qXq dib dib dib dLu -mLm -paB -xfJ +lUT +emb +hOF ceo cdw cfy @@ -86861,40 +86861,40 @@ cgN chu cdC chr -cVm +fxY cjv -pPa -pPa -pPa -pPa -pPa +ncy +ncy +ncy +ncy +ncy cka -tVP -tTb -fun -lqx +ekF +hjb +vKC +gsD ctX -oOE -kMo -aoo -wcJ -xuD -ygx -xax -gxs -wAQ -mcP +qPt +xiE +voj +xhp +cLb +pXB +nRk +rzf +mPv +iIN ctW -dJr -iac -odb -hBI -hBI +hEZ +eEZ +ycX +hss +hss cEG -tat -wJi -lGL -iPm +eRq +vpW +gUq +qLf cJA dTs dTs @@ -86921,12 +86921,12 @@ dTs dTs dTs dTs -jjl -kzx +pYo +tIJ ciQ ciQ ciQ -iWa +tBK cjR cho cho @@ -86945,28 +86945,28 @@ cho cho cho cho -wJu -xfY -xfY -xfY +xgw +icw +icw +icw dzr -jUR -jUR -jUR -jUR -jUR -jUR +lqK +lqK +lqK +lqK +lqK +lqK coo cfH cfH cfH cfH -lvW -jUR -qnC +syA +lqK +tPl cgq cgq -lkC +omj ebs dTs dTs @@ -86984,16 +86984,16 @@ afN afN afN amk -orf -orf -orf -orf +hDs +hDs +hDs +hDs agQ agH -ufb -gKC -qjI -xHl +pPI +gUO +qqG +gTa aCr aCr aCr @@ -87009,18 +87009,18 @@ avG avG avG avG -pAL -dZg -pnI -hXU +kHF +qat +mUp +nXR hVs -mcK -trk +fUS +sNR ayD -fSF -fSF -fSF -nBN +pLA +pLA +pLA +vdA aaB abZ abZ @@ -87036,57 +87036,57 @@ amM aVZ blT aZk -kln -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -kmu -pBC -iCk -imJ +shp +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +pkP +seL +jHZ +iyR bID -dFz -vZU -vZU -vZU -vZU -vER +xPc +viv +viv +viv +viv +rNQ bID -tuW -jFi +fYW +kwV naH uml vgm xsS -pJy +myy bVE -jnf -vpm -pJF -mnq +xEA +cVb +evG +qXq dib dib dib dLu dLO -owY -xfJ +obD +hOF ceo cdw cfy @@ -87095,40 +87095,40 @@ cgM chu cdC chr -cVm +fxY cjv -lhD -lhD -lhD -lhD -hxN +lXs +lXs +lXs +lXs +ifM cka -tVP -sUF -fun -lqx +ekF +iZp +vKC +gsD ctX -nYn -ygx -iez -pVX -wHY -ygx -ygx -ygx -ygx -khw +kPr +pXB +onp +oLu +fJv +pXB +pXB +pXB +pXB +wkp ctW -one -iac -odb -hBI -kHx +dhy +eEZ +ycX +hss +tNa cEG -niT -krk -ucW -buV +jFA +ibB +dEJ +mbY cJA dTs dTs @@ -87156,12 +87156,12 @@ dTs dTs dTs dTs -jkQ -jjl -kzx +hJz +pYo +tIJ ciQ ciQ -iWa +tBK cjR cho cho @@ -87170,18 +87170,18 @@ czV czV czV czV -oQe -kCr -xfY -xfY -xfY -xfY -xfY -xfY -xfY -tOk -vzd -jjl +ijN +uap +icw +icw +icw +icw +icw +icw +icw +kRa +gkj +pYo dTs dTs dTs @@ -87190,16 +87190,16 @@ cgq cgq cgq cgq -pmu -jUR -jUR -jUR -jUR -qnC +lND +lqK +lqK +lqK +lqK +tPl cgq cgq -lkC -fxa +omj +eAv dTs dTs dTs @@ -87220,41 +87220,41 @@ afN amd agH agQ -qPe -orf +uNB +hDs agQ agH -ufb -gKC -qjI -rhi +pPI +gUO +qqG +dTD aCr -xni -nmx -sKo -hzl -lHF +nJC +mYZ +vtb +sta +fSu aCr aqC aqC avG -fvo -vfG -dJb -ePE +gpe +fyZ +mBP +bWQ avH -rvV -dZg -ofk -hXT +lOE +qat +hvd +vVB hVs -mcK -xTO -llq -llq -llq -llq -lPU +fUS +jYB +pRx +pRx +pRx +pRx +irJ aXW aVZ aVZ @@ -87270,20 +87270,20 @@ azZ aVZ blT aZk -lpn +oJH azD aeE aeE aeE aeE -sIY -fpS -fpS +eqZ +pkR +pkR dTs dTs -fpS -fpS -hgh +pkR +pkR +uZY aeE azD aeE @@ -87294,33 +87294,33 @@ aeE aAu aCb bJC -uuB -oJa -oJa -oJa -oJa -oJa -oJa -uuB -iWC -xsv +tkU +dFl +dFl +dFl +dFl +dFl +dFl +tkU +vFR +xpx naH ozu ozu xsS -pJy +myy bVE -jnf -vpm -pJF -mnq +xEA +cVb +evG +qXq dib dib dib dLu dLO -owY -xfJ +obD +hOF ceo cdw cfy @@ -87329,40 +87329,40 @@ cgN chu cdC chr -cVm +fxY cjv -xak -ayc -uko -xqw -ejp +uTJ +nSU +xNA +iuR +wKH cka -gnF -pdG -fun -lqx +vJA +jmn +vKC +gsD ctX -lUf -gGv -qYI -kOd -vnC -qpA -fyk -dvc -dvc -ptv +qrr +vPG +lXn +mig +qAe +vMo +uoN +gMd +gMd +hot ctW -qlv -iac -vmj -gel -uXb -wTz -uXb -uXb -hBI -buV +guL +eEZ +kGR +iaA +gwW +svB +gwW +gwW +hss +mbY cJA dTs dTs @@ -87391,30 +87391,30 @@ dTs dTs dTs dTs -qwz -qXr -kzx +egQ +vqF +tIJ ciQ ciQ -iWa -xfY -wsL -oQe -xFG -xFG +tBK +icw +ihK +ijN +sWZ +sWZ cho -xFG -oQe -knu -jjl -kzx +sWZ +ijN +tkx +pYo +tIJ ciQ ciQ ciQ ciQ ciQ -vzd -xRB +gkj +iOH dTs dTs dTs @@ -87423,16 +87423,16 @@ dTs dTs dTs dTs -qGq +ipY cgq cgq cgq cgq cgq cgq -lkC -fxa -syl +omj +eAv +wek dTs dTs dTs @@ -87453,42 +87453,42 @@ akC akC aml afG -eBY -orf -orf +fFq +hDs +hDs agQ agH -ufb -gKC -qjI -jvn +pPI +gUO +qqG +xEX aug -wYK -hBQ -hBQ -hBQ -sqw +xzj +hzN +hzN +hzN +wNb aCr aqC aqC avG -lNm -tSh -rya -tSh -tCd -tbz -dZg -ofk -hXU +nOG +fRr +nkf +fRr +xnp +mzo +qat +hvd +nXR hVs -fTD -qrl -qrl -qrl -qrl -qrl -uhp +mZf +utB +utB +utB +utB +utB +uCn aXW azN azS @@ -87504,21 +87504,21 @@ aAa azS aAU aZk -lpn +oJH aeE aeE aeE aBB aeE ayD -shs -shs +eYV +eYV dTs dTs dTs -shs -shs -hgh +eYV +eYV +uZY aeE aeE aeE @@ -87527,34 +87527,34 @@ aeE aeE aeE aAu -mRn +nAK bID -iMA -qKL -xJC -iMA -qKL -iMA +eHe +nqB +iwp +eHe +nqB +eHe bID -jrf -vBn +fiE +lez naH ozu ozu xsS -fLO +nIb bVD -ntb -lKx -rid -tJU +lIx +nXI +tQu +sOG dib dib dib beZ aac -nKi -sPc +eYI +gZY cen cdw cfy @@ -87563,18 +87563,18 @@ cgN chu cdC chr -cVm +fxY cjv -xqU -pLP -kWG -dZB -ooJ -dlX -nkY -gwN -fun -iCx +goB +gui +hsL +fDB +gwt +uRl +rNe +nZP +vKC +xFg ctW ctW ctW @@ -87587,16 +87587,16 @@ ctW ctW ctW ctW -qbE -jeZ -vmj -gel -lyt +yav +ePP +kGR +iaA +oNm cEG -qEQ -fvU -uoN -efu +fWH +kfN +hsk +wyk cJA dTs dTs @@ -87626,28 +87626,28 @@ dTs dTs dTs dTs -wmh -jfk -oBX -oBX -oBX -oBX -xTu -ktw +tDh +kHy +sIJ +sIJ +sIJ +sIJ +gXw +sND dfc dgF jrV dTH -ktw -ibG -wmh -rgN -tRZ -mlH +sND +rkm +tDh +tgr +vVm +jmv chS chS -fSQ -hLR +sXb +hMN dTs dTs dTs @@ -87657,16 +87657,16 @@ dTs dTs dTs dTs -mqA -ptM -woZ +oIg +rBi +iUT dHe dHe -mCj -kkA -ihE -wmh -wmh +lsG +tAF +pcO +tDh +tDh dTs dTs dTs @@ -87688,33 +87688,33 @@ agH afG afG agQ -orf -orf +hDs +hDs aiB afG -dix -gKC -qjI -rhi +rUl +gUO +qqG +dTD aug -wYK -hBQ -hBQ -hBQ -wJO +xzj +hzN +hzN +hzN +kYl aCr aqC aqC avG -qDm -mJX -tOm -tSh +jHs +quu +fbZ +fRr avH -hFs -dZg -ofk -hXU +jIS +qat +hvd +nXR hVs dTs aeE @@ -87722,7 +87722,7 @@ aeE aeE aeE aeE -vlV +jJJ aXW blT aVZ @@ -87738,30 +87738,30 @@ aXC aXC aXC aBa -lpn +oJH aeE aeE aeE aeE aeE ayD -shs -shs +eYV +eYV dTs dTs dTs dTs -shs -pEY +eYV +vAE aeE aeE aeE aeE -sIY -fpS -fpS -fpS -gJF +eqZ +pkR +pkR +pkR +pdF bID bID bID @@ -87770,25 +87770,25 @@ bID bID bID bID -seg -hCJ +jTH +dwu naH uml vgm xsS -njE -dvS -vTN -vTN -wnT -pnh +ust +hwd +kZC +kZC +qQv +xCH dib dib dib -pnh -pnh -wnT -fIp +xCH +xCH +qQv +jXQ cep cfa cfv @@ -87797,40 +87797,40 @@ cgM chu cdC chr -cVm +fxY cjv -xqU -uko -iFW -uko -lhD +goB +xNA +iXj +xNA +lXs cka -qGr -pdG -lfK -mCF +tlG +jmn +wnt +xWg ctY -uXP -uXP -lcE +vUg +vUg +kYe cxE -nfc -ucX -oZU -sgR -jSH -klb +gZw +uTi +lxW +qIo +qOL +oSR cDs -iac -whe -oCp -yjo -hBI +eEZ +gUo +vZy +sAa +hss cEG -dph -lGL -mYD -ydp +wwN +gUq +kXK +lnr cJA dTs dTs @@ -87859,29 +87859,29 @@ dTs dTs dTs dTs -oIg -oIg -oIg -kDU -oIg -oIg -oIg -tmP -wbP +kqB +kqB +kqB +xsZ +kqB +kqB +kqB +uXA +cgx cCH clZ clZ crW -pWE -eeB -oIg -oIg -oIg -kcj -oIg -oIg -oIg -tmP +nTr +mum +kqB +kqB +kqB +leh +kqB +kqB +kqB +uXA dTs dTs dTs @@ -87893,15 +87893,15 @@ dTs dTs dTs dTs -rtF -fsF -fsF -fsF -hiH -fsF -fsF -fsF -fgr +mMg +ibL +ibL +ibL +rGS +ibL +ibL +ibL +hAZ dTs dTs dTs @@ -87922,78 +87922,78 @@ agQ agQ agQ agQ -orf -orf +hDs +hDs agQ agH -tLX -gKC -qjI -rhi +mkK +gUO +qqG +dTD aug -tda -hBQ -uLO -hBQ -dUT +wCI +hzN +rPf +hzN +gXB aCr aqC aqC avG -bUO -tSh -tSh -tSh +opB +fRr +fRr +fRr avH -pAL -dZg -mJi -hXU +kHF +qat +uor +nXR avG dTs dTs -fpS -fpS -hgh +pkR +pkR +uZY aeE -vlV +jJJ aXW bkE aWB aZk -sru -iCk -iCk -iCk -iCk -mNX -kmu -kmu -kmu -kmu -pBC +olu +jHZ +jHZ +jHZ +jHZ +xxJ +pkP +pkP +pkP +pkP +seL aBu aeE aeE aeE aeE -sIY -shs -shs -shs +eqZ +eYV +eYV +eYV dTs dTs dTs dTs -shs -pEY +eYV +vAE aeE aeE aeE aeE ayD -shs -shs +eYV +eYV dTs dTs dTs @@ -88004,8 +88004,8 @@ dTs dTs dTs dTs -wAT -hCJ +web +dwu naH ozu ozu @@ -88015,7 +88015,7 @@ nAm nAm nAm aXp -gtC +sYJ aof aof aof @@ -88031,35 +88031,35 @@ cgN chu cdC chr -cVm +fxY cjv -ifE -iQB -kiJ -uko -lhD +uAv +roq +nqk +xNA +lXs cka -tVP -sUF -lfK -jqZ -jYp -uXP -hhs -lcE +ekF +iZp +wnt +jiO +ivJ +vUg +qEA +kYe cxE -qXb -eqQ -goZ -eCZ -eqQ -voE +aXx +uRD +uIr +sMH +uRD +feB cDs -hAe -iac -iBc -gel -sSt +tTq +eEZ +dxu +iaA +stw cIG cJG cJG @@ -88101,12 +88101,12 @@ cmW cmW cmW cSC -vat +mqp cCH cpR cET crW -nzY +dDg cSC cmW cmW @@ -88114,7 +88114,7 @@ cmW cSC cmW cmW -vfT +wwR cSC dTs dTs @@ -88149,27 +88149,27 @@ acu (162,1,1) = {" acu afG -orf -orf -orf -orf -orf -gIq -orf -orf -orf -orf -btg -qjI -gKC -qjI -rhi -tmw -hBQ -hBQ -kKX -hBQ -dUT +hDs +hDs +hDs +hDs +hDs +pwA +hDs +hDs +hDs +hDs +kEw +qqG +gUO +qqG +dTD +uSE +hzN +hzN +iMm +hzN +gXB aCr aqC aqC @@ -88179,23 +88179,23 @@ avG avG avG avG -uVD -dZg -ofk -hXU +rah +qat +hvd +nXR avG dTs -shs -shs -shs -pEY +eYV +eYV +eYV +vAE aeE -vlV +jJJ aXW blT aVZ aZk -mcK +fUS aAh buj aAn @@ -88205,28 +88205,28 @@ aeE aeE aeE aeE -kqH -shi +wYB +omn aeE aeE aeE aeE -shs -shs -shs +eYV +eYV +eYV dTs dTs dTs dTs dTs dTs -pEY +vAE aeE aeE aeE aeE ayD -shs +eYV dTs dTs dTs @@ -88238,8 +88238,8 @@ dTs dTs dTs afi -wAT -hCJ +web +dwu naH ozu ozu @@ -88249,7 +88249,7 @@ ozu ozu ssy bbF -gtC +sYJ dib aof dib @@ -88265,44 +88265,44 @@ cgN chq cdc ciy -cVm +fxY cjv -lhD -lhD -lhD -lhD -hxN +lXs +lXs +lXs +lXs +ifM cka -tVP -wjb -lfK -bjg -iRt -uXP -kGa -lcE +ekF +eSx +wnt +rXV +sym +vUg +ijB +kYe cxE -cVB -eqQ -eqQ -eqQ -jfq -pvm -jOq -sAR -mZV -pYX -hBI -hBI -fFV +kqv +uRD +uRD +uRD +gAw +wnp +fUp +nPD +dFK +eMH +hss +hss +aIz cJG -mBt -tyo +sdj +mCx cJG -kVV -jhZ -ukJ -uvd +qqW +nra +nlO +sCE cMP dTs dTs @@ -88326,7 +88326,7 @@ dTs dTs dTs dTs -vIl +drK cmH cmI czQ @@ -88335,12 +88335,12 @@ cmH cmH cmH cmH -kal +jba cCH clZ clZ crW -mtt +rBt cmH cmH cmH @@ -88348,7 +88348,7 @@ cmH cqT cmH cmH -voz +nMS dTs dTs dTs @@ -88361,14 +88361,14 @@ dTs dTs dTs dTs -vIl +drK cmH cmH cmH cmK cmH cmH -lpI +itx dTs dTs dTs @@ -88383,70 +88383,70 @@ acu (163,1,1) = {" acu afG -dzR -gIq -gIq -gIq -gIq -rmA -gIq -wIX -orf -orf -orf -qjI -qRr -qjI -rhi -hBQ -hBQ -hBQ -urx -hBQ -dUT +rgk +pwA +pwA +pwA +pwA +oEh +pwA +sHS +hDs +hDs +hDs +qqG +vVa +qqG +dTD +hzN +hzN +hzN +dKC +hzN +gXB aCr aqC aqC avG -fvo -jUw -mXv -ePE +gpe +str +omG +bWQ avH -rvV -dZg -ofk -hXU +lOE +qat +hvd +nXR avG dTs -shs -shs -shs -pEY +eYV +eYV +eYV +vAE aeE -vlV +jJJ aXW blT aVZ aZk -mcK +fUS buj aAn aAo aeE -sIY -fpS -fpS -fpS +eqZ +pkR +pkR +pkR aeE -ggR -shi +qwl +omn bHs aeT aeT aeT -xzh -lbr +fkA +lad dTs dTs dTs @@ -88459,11 +88459,11 @@ dTs aeE aeE aeE -qMc -fSF -lbr -lbr -lbr +fnJ +pLA +lad +lad +lad dTs dTs dTs @@ -88472,8 +88472,8 @@ dTs dTs dTs afi -wAT -hCJ +web +dwu naH ozu ozu @@ -88497,46 +88497,46 @@ cdC cdC cgN chr -ciX -mXM -ulc +vxB +nlq +jGD cjv -bHA -bHA -bHA -bHA -bHA +ttE +ttE +ttE +ttE +ttE cka -tVP -tTb -fun -vje +ekF +hjb +vKC +pFP ctY -uXP -kGa -lcE +vUg +ijB +kYe cxE -gOy -cIm -lgC -sSR -wwm -wwW +llf +fsv +mEe +lNL +nWx +kPj cDs -qsT -iac -iBc -iLG -hBI -hgB +qcS +eEZ +dxu +iTy +hss +dLG cJG -tyo -mBt +mCx +sdj cNa -tiK -trv -trv -vBY +mKC +gmL +gmL +fNH cMP dTs dTs @@ -88557,10 +88557,10 @@ dTs dTs dTs dTs -nyr -qLJ -sWF -sCS +qTH +lbj +spY +kgD cpa cEU cmH @@ -88569,20 +88569,20 @@ cmK cmH cmH cmH -kal +jba cCH clZ clZ crW -mtt +rBt cmK cEV cmH cPz cJl cmH -lpI -eKS +itx +qGh dTs dTs dTs @@ -88594,15 +88594,15 @@ dTs dTs dTs dTs -qLJ -sCS +lbj +kgD cmH cmH cmI czQ cmH cmH -voz +nMS dTs dTs dTs @@ -88618,8 +88618,8 @@ acu acu afG agQ -gIq -orf +pwA +hDs agQ amm agQ @@ -88628,53 +88628,53 @@ ajt agQ agQ agH -jVu -sxL -qjI -rhi +gDI +hOb +qqG +dTD aug -tPm -hBQ -got -hBQ -dUT +lRI +hzN +fJN +hzN +gXB aCr aqC aqC avG -lNm -tSh -tSh -tSh -tCd -tbz -eOg -jDq -hXU +nOG +fRr +fRr +fRr +xnp +mzo +tsN +gXt +nXR avG dTs dTs -shs +eYV dTs -pEY +vAE aeE -vlV +jJJ aXW bkE aWB aZk -bta +ucO aAi aAo aeE -sIY -shs -shs +eqZ +eYV +eYV dTs dTs aeT -wFt -wNr +sVL +xSg aeT aeT aeT @@ -88695,10 +88695,10 @@ aeE aeE aeE aeT -hYQ -uRI -nkx -nkx +iVe +gcS +jXc +jXc dTs dTs dTs @@ -88706,8 +88706,8 @@ dTs dTs dTs afi -pRT -hCJ +rkQ +dwu naH bSl bSl @@ -88731,8 +88731,8 @@ cfA cdC cgN chr -xmr -jZO +sgP +qcE ciV ciV cjy @@ -88741,14 +88741,14 @@ cjy cjy cjy cjy -swt -tTb -lfK -wnb +gqW +hjb +wnt +wNp ctY -otC -uXP -xmW +qEb +vUg +ruP ctY cyk cyk @@ -88757,29 +88757,29 @@ cyk cyk cyk cyk -pUq -iac -iBc -hBI -hBI -fFV +xbd +eEZ +dxu +hss +hss +aIz cJG -mBt -ocO -dxa -wOX -mCr -mhI -vBY +sdj +wuS +iGG +hFb +ayf +iot +fNH cMP cMP cMP cMP cMP -eeB +mum dTs dTs -nyr +qTH dTs dTs dTs @@ -88790,9 +88790,9 @@ dTs dTs dTs dTs -nyr -qLJ -sCS +qTH +lbj +kgD cmH cpT cAL @@ -88801,21 +88801,21 @@ cUK cmH cmH cmH -sUb -pfz -gBZ +pQt +pmU +cVB cCH cpR cET crW -mtt +rBt cmH cYj cmH dLS dTx cmH -xSO +vaO dTs dTs dTs @@ -88826,16 +88826,16 @@ dTs dTs dTs dTs -nyr -qLJ -sCS +qTH +lbj +kgD cmH cmH cmH cmH cEU cUK -lpI +itx dTs dTs dTs @@ -88852,39 +88852,39 @@ acu acu afG afG -jmC -jmC +gPd +gPd afG afG afG -aop -aop +qpp +qpp afG afG afG -ufb -sxL -qjI -rhi +pPI +hOb +qqG +dTD aug -wYK -hBQ -hBQ -hBQ -dUT +xzj +hzN +hzN +hzN +gXB aCr aqC aqC avG -dJb -mGP -tOm -tSh +mBP +wpG +fbZ +fRr avH -hFs -ofk -ofk -hXU +jIS +hvd +hvd +nXR avG dTs dTs @@ -88892,23 +88892,23 @@ dTs dTs aeE aeE -vlV +jJJ aXW blT aVZ aZk -lpn +oJH aeE aeE aeE -shs +eYV dTs dTs dTs dTs aeT -wFt -wNr +sVL +xSg aeT aeT aeT @@ -88926,13 +88926,13 @@ dTs dTs dTs dTs -xMv -nkx -nkx -mgH -rZG -jPz -lOn +fdo +jXc +jXc +ndR +pXX +wdQ +xZM dTs dTs dTs @@ -88940,110 +88940,110 @@ dTs dTs dTs dTs -euo -hCJ +stp +dwu naH ozu ozu ozu ehg -fda -yfk -yfk -qFX -lYa +qsA +xQF +xQF +vuH +rWb xOK xOK xOK -lYa -lYa -qFX -lEk -fBh -mvS +rWb +rWb +vuH +sVs +oWj +eDt cfB aMt aMy chr -xmr -jZO +sgP +qcE ciV -hTM -hTM -iWo -gbw -qRX -fan +dsd +dsd +pCk +gQM +lwP +gOC cjy -tVP -tYG -pTs -fun +ekF +qgw +xgp +vKC ctY -uXP -kGa -lcE +vUg +ijB +kYe cxE -gJJ -iYV -fTM -nXT -krF -gZv +uaz +eru +xWX +ttW +pqT +qpR cDu -iac -xKo -iBc -hBI -hBI -njV +eEZ +wvu +dxu +hss +hss +fkM cJG -tyo -mBt -kHL -kHL -mhI -jqR -vBY +mCx +sdj +owA +owA +iot +wXM +fNH cPM -mBt -wQF -qbu +sdj +fkK +etJ cPM -fji -xSO -sWF -nje -nyr +mZn +vaO +spY +lix +qTH dTs dTs -nyr +qTH dTs dTs dTs dTs dTs -qLJ -sWF -sCS +lbj +spY +kgD cmH dLS dTx csb cmH -sUb -loJ -fEx -fEx -yfT -svI -xuM +pQt +lPK +cSj +cSj +hKH +pnV +nUY cCH clZ clZ crW -oGM -tPL +mWu +xfT cmH cpa dMX @@ -89059,9 +89059,9 @@ dTs dTs dTs dTs -opy -qLJ -sCS +qBV +lbj +kgD cmH cJl cPz @@ -89069,7 +89069,7 @@ cmH cmH cmH cmH -voz +nMS dTs dTs dTs @@ -89085,53 +89085,53 @@ acu (166,1,1) = {" acu afG -lOL -iEG -iEG -qWn +nTO +qlz +qlz +oHQ afG -lOL -iEG -iEG -qWn +nTO +qlz +qlz +oHQ afG -rml -nYX -nNQ -xrz -rhi +kMG +tPr +xgg +fFe +dTD aug -wYK -hBQ -hBQ -hBQ -xQu +xzj +hzN +hzN +hzN +fnM aCr aqC aqC avG -ePE -tGc -qDm -ttA +bWQ +kMH +jHs +jjt avH -eje -wsE -wsE -icI +hzR +wIA +wIA +eQI avG dTs dTs dTs -pEY +vAE aeE aeE -vlV +jJJ aXW blT aVZ aZk -lpn +oJH aeE aeE ayD @@ -89141,8 +89141,8 @@ dTs dTs dTs glO -egL -rnD +fid +eYD glO glO glO @@ -89164,9 +89164,9 @@ kPs kPs kPs kPs -xxg +hSd glO -wtE +xsf dTs dTs dTs @@ -89175,89 +89175,89 @@ dTs dTs dTs pke -hCJ +dwu naH ozu ozu ozu xsS -ohd -vTN -wjf +muL +kZC +fAb dLi -hBV +mMu dib dib dib dLF dLT -iiT -tTs +vlY +jAw cen cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciV -gbw -pee -pee -gbw +gQM +xwN +xwN +gQM cjy cjy cjy -gva -tTb -lfK -fun +lEM +hjb +wnt +vKC ctY -uXP -kGa -lcE +vUg +ijB +kYe cxE -xFi -iZt -iZt -rRC -iZt -wHm +gso +kcL +kcL +jIz +kcL +vYm cDu -jeZ -xKo -iBc -hBI -hBI -fFV +ePP +wvu +dxu +hss +hss +aIz cJG -mBt -tyo +sdj +mCx cNa -cWI -eXj -fTT -vBY -tbP -mBt -mBt -qPh +lWC +lij +pow +fNH +sid +sdj +sdj +iev cPM -fji +mZn cmH cmH -xSO -sWF -nje -qLJ -nje +vaO +spY +lix +lbj +lix dTs dTs dTs dTs -qLJ -sCS +lbj +kgD cmH cmH cQK @@ -89265,8 +89265,8 @@ dMX dMN cqT cmH -tFV -hry +jKT +gBJ cWb clY clY @@ -89276,8 +89276,8 @@ coZ clZ clZ crW -hry -fji +gBJ +mZn cmH dLS wQZ @@ -89293,8 +89293,8 @@ dTs dTs dTs dTs -qLJ -sCS +lbj +kgD cQK cAL cqT @@ -89319,27 +89319,27 @@ acu (167,1,1) = {" acu afG -fFR -edg -oRP -fyH -kLw -fFR -edg -oRP -fyH +mor +qqF +ngt +rxa +iYk +mor +qqF +ngt +rxa afG -vBd -ufb -wOL -ybT -rhi +lRK +pPI +ssj +uLv +dTD aCr -eud -pbc -iZd -iZd -kxU +ptH +jtC +frU +frU +okB aCr aqC aqC @@ -89357,15 +89357,15 @@ avG dTs dTs dTs -pEY +vAE aeE aeE -vlV +jJJ aXW bkE aWB aZk -lpn +oJH aAj aeE ayD @@ -89374,9 +89374,9 @@ dTs dTs dTs dTs -jdV -vRG -mJu +hQw +gAc +mZl azT azT azT @@ -89393,104 +89393,104 @@ dTs dTs dTs dTs -nRZ +eWR adA adA adA -wVo -cKm +kgK +gVh azT dTs dTs dTs -hWI +kSH adA dTs dTs dTs cNW -hCJ +dwu naH ozu ozu ozu xsS -cfM -xVl -hlS +qDW +eNY +szH dJT -mnq +qXq dib dib dib dLu dLO -owY -xfJ +obD +hOF ceo cdw cfy dPY cdC chr -xmr -jZO +sgP +qcE ciV -gbw -pee -gbw -gbw -qRX -fan +gQM +xwN +gQM +gQM +lwP +gOC cjy -tVP -sUF -fun -fun +ekF +iZp +vKC +vKC ctY -tVE -kGa -lcE +tiP +ijB +kYe cxE -vmA -iZt -iZt -iZt -lZR -eWM -qXj -sAR -uvb -fRi -uoN -hBI +mtj +kcL +kcL +kcL +gwR +mtb +dGW +nPD +elv +fsI +hsk +hss cHL cHL cHL cHL cHL -gkk -eXj -fTT -vBY +htL +lij +pow +fNH cJG cJG cJG cJG cMP -fji +mZn cmH cmH cmH cmH -xSO -sCS -xSO -sWF -sWF +vaO +kgD +vaO +spY +spY dTs cSC -vIl +drK cmH cmH cmH @@ -89499,8 +89499,8 @@ wQZ dOw cmH dIi -tFV -hry +jKT +gBJ cCH clZ clZ @@ -89510,24 +89510,24 @@ clZ cpR cET crW -hry -fji +gBJ +mZn cpa dMX wQZ dOw cmH cmH -voz -nyr +nMS +qTH dTs dTs dTs dTs dTs dTs -qLJ -sCS +lbj +kgD csa dLS edC @@ -89536,7 +89536,7 @@ cmH cmH cmH cmH -fLu +jnL dTs dTs dTs @@ -89553,21 +89553,21 @@ acu (168,1,1) = {" acu afG -fFR -edg -edg -fyH -kLw -fFR -edg -edg -fyH +mor +qqF +qqF +rxa +iYk +mor +qqF +qqF +rxa afG -kFa -ufb -sxL -qjI -rhi +xfg +pPI +hOb +qqG +dTD aCr aCr aCr @@ -89591,15 +89591,15 @@ dTs dTs dTs dTs -pEY +vAE aeE aeE -dkX +hTK aXW blT aVZ aZk -lpn +oJH aeE aeE ayD @@ -89608,9 +89608,9 @@ dTs dTs dTs dTs -lcL -vRG -yac +usI +gAc +nkv afb xEz azT @@ -89626,49 +89626,49 @@ dTs dTs dTs dTs -dBE -mTv +wnX +ivt adA adA adA -vol +qBt dTs dTs dTs dTs dTs aJx -hWI +kSH adA dTs dTs -gzw -hCJ +ouZ +dwu ngo oAM oAM oAM vLd -cfM -tUD -wGg -jYG -bCa +qDW +gXZ +vju +sit +rkJ dib dib dib dLu dLP dLU -xfJ +hOF ceo cdw cfy cge cgL chr -yea -jZO +tOE +qcE ciV cjy dOp @@ -89677,42 +89677,42 @@ cjy cjy cjy cjy -tVP -sUF -lfK -lqx +ekF +iZp +wnt +gsD ctY -uXP -uXP -lcE +vUg +vUg +kYe cxE -xFZ -uMo -mYw -kaE -uhQ -gcL +uOS +glS +qRT +uiv +eRF +qAu cDu -qsT -xKo -qwm -lyt -uoN +qcS +wvu +kWE +oNm +hsk cHL cIK cIK cLm cHL -qvZ -osl -sOP -vBY +mer +gAA +xMq +fNH cPM -mBt -wQF -qbu +sdj +fkK +etJ cPM -fji +mZn cmH cFK cmH @@ -89722,9 +89722,9 @@ cmH cmH cmH cmH -xSO -sip -sCS +vaO +uDr +kgD cmH cmH cqT @@ -89732,9 +89732,9 @@ dMX dMN csb cmH -sUb -lsh -hry +pQt +xIQ +gBJ cCH clZ clZ @@ -89744,23 +89744,23 @@ clZ clZ clZ crW -hry -fji +gBJ +mZn cpT dNa dOw csb cmH cmH -xSO -sWF -nje +vaO +spY +lix dTs dTs dTs dTs dTs -vIl +drK cmH csc dMX @@ -89770,7 +89770,7 @@ cmH cmH cmH cmH -voz +nMS dTs dTs dTs @@ -89787,26 +89787,26 @@ acu (169,1,1) = {" acu afG -hGW -xir -lEK -vUX +wVZ +vIP +kmX +nQQ afG -hGW -xir -lEK -vUX +wVZ +vIP +kmX +nQQ afG -sqt -ufb -sxL -pdy -rhi +lbt +pPI +hOb +oJQ +dTD akL dTs dTs dTs -onH +gIR asb asb atS @@ -89833,7 +89833,7 @@ amM blT aVZ aZk -lpn +oJH aeE aeE ayD @@ -89842,51 +89842,51 @@ dTs dTs dTs dTs -lcL -vRG -yac +usI +gAc +nkv azT azT aGt -dBE -mxL -uCj +wnX +iRL +jSG dTs dTs -mxL -mxL +iRL +iRL dTs dTs dTs dTs dTs -mTv +ivt adA adA kmU adA -wVo +kgK dTs dTs dTs dTs aIv aJB -epd +suw adA dTs dTs -euo -vFZ -xXi -xXi -xXi -xXi -xXi -xsv -vTN -kjQ -mnq +stp +yby +lTl +lTl +lTl +lTl +lTl +xpx +kZC +iZE +qXq dib dib dib @@ -89894,30 +89894,30 @@ dib dLu dJT dLV -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciV -lrx +mKk dOq -qWs -mPd -oeR -lYX +rJq +xnA +pbz +veZ cjy -mwd -pdG -ufZ -iCx +fsW +jmn +juD +xFg ctY ctY -lJp +wrH ctY ctY cyp @@ -89928,25 +89928,25 @@ cyp cyp cyp cEG -xKo -lwE +wvu +igB cEG cHL cHL -vnE +pjY cIK cLm cHL -wyJ -eXj -sOP -vBY -tbP -mBt -mBt -qPh +vFc +lij +xMq +fNH +sid +sdj +sdj +iev cPM -fji +mZn cmH cmH cmH @@ -89966,9 +89966,9 @@ dNa dOw cmH cmH -tFV -cRu -ssM +jKT +rNk +pgT cVC cmb cmb @@ -89978,8 +89978,8 @@ clZ clZ clZ crW -vvT -veS +pSr +xPY cmH cqT cmH @@ -89988,13 +89988,13 @@ cmH cmH cmH cmH -xSO -nje +vaO +lix dTs dTs dTs -sWF -sCS +spY +kgD cmH cmH dNa @@ -90032,10 +90032,10 @@ afG afG afG akL -ufb -sxL -qjI -rhi +pPI +hOb +qqG +dTD akL dTs dTs @@ -90067,7 +90067,7 @@ akc bkE aWB aZk -lpn +oJH aeE aAp ayD @@ -90076,42 +90076,42 @@ dTs dTs dTs dTs -lcL -dox -gUx +usI +gQQ +sSo azT azT azT -nRZ +eWR adA -vol -mxL -mTv +qBt +iRL +ivt adA adA -vol +qBt dTs dTs dTs -mTv +ivt adA adA adA adA -wVo -cKm +kgK +gVh dTs dTs dTs dTs aIv aJB -vIR +rkW adA dTs dTs -gzw -tbr +ouZ +uDh abk abo abU @@ -90119,8 +90119,8 @@ cBZ abo abk abk -pbr -mnq +koU +qXq dib dib dib @@ -90128,59 +90128,59 @@ dib dLu dJT dLW -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciW -uoZ +hZt dOq cki clR cki -nQc +njc coU -dAw -pdG -fun -mCF +mMI +jmn +vKC +xWg cub -jWQ -sZl -sZl -sZl -sZl -sZl -sZl -sZl -sZl -sZl -jWQ -hMN -laR -sAZ -oeW +wuO +xoZ +xoZ +xoZ +xoZ +xoZ +xoZ +xoZ +xoZ +xoZ +wuO +wJM +ueT +xBo +oPu cHL cIK cIK cIK cIK cHL -eSE -eXj -fTT -pfT +xuY +lij +pow +uJB cJG cJG cJG cJG cMP -fji +mZn cmH cmH cAL @@ -90200,9 +90200,9 @@ cqT cpa cmJ cmH -tFV -vvT -ssM +jKT +pSr +pgT cWb clY clY @@ -90212,8 +90212,8 @@ clZ cpR cET crW -vvT -vmJ +pSr +eaf cmH cnR cmJ @@ -90223,9 +90223,9 @@ cmH cmH cmH cmH -xSO -sWF -sCS +vaO +spY +kgD cmH cmH cmH @@ -90237,7 +90237,7 @@ cmH cmH cmH dIi -lpI +itx dTs dTs dTs @@ -90266,10 +90266,10 @@ dTs dTs dTs akL -ufb -sxL -ihl -rhi +pPI +hOb +sxW +dTD akL dTs dTs @@ -90301,7 +90301,7 @@ akc blT aVZ aZk -lpn +oJH aeE aeE ayD @@ -90310,13 +90310,13 @@ dTs dTs dTs dTs -njo -dox -gUx +iNt +gQQ +sSo azT azT azT -nRZ +eWR adA adA adA @@ -90325,14 +90325,14 @@ adA adA adA adA -vol -mTv +qBt +ivt adA adA adA adA adA -gZi +wNl azT dTs dTs @@ -90340,81 +90340,81 @@ dTs dTs aIv aJB -rRI -hWI +lnF +kSH dTs dTs dTs -gzw +ouZ abk -nvo +ufT abU abU abO acA abk duy -mnq +qXq dib dib dib dib dLu dJT -lzc -fPw +xRJ +sly cen cdw cfy iAf cgL chr -xmr -jZO +sgP +qcE ciW -qXq +qfR dOq dOq dOJ dOq dOq dPe -bjg -etY -wBu -rVs -oTr -uVw -dqA -wDu -sKn -uRP -wNj -uRP -udC -uRP -uRP -uRP -uRP -tyB -oza -cVl +rXV +qWR +nyH +nPR +gcC +uIP +xnx +rrI +rjS +vkg +elh +vkg +wCN +vkg +vkg +vkg +vkg +oqf +qJq +ija cHM cIL cIL cIL cIL cHM -ksr -wnu -wUP -vBY +mOe +xoa +tOi +fNH cPM -mBt -wQF -qbu +sdj +fkK +etJ cPM -fji +mZn cmH cmH dLS @@ -90433,10 +90433,10 @@ cpa cmH cmH cmH -sUb -lsh -vvT -ssM +pQt +xIQ +pSr +pgT cCH clZ clZ @@ -90446,8 +90446,8 @@ clZ clZ clZ crW -vvT -vmJ +pSr +eaf cmH cmH cmH @@ -90471,8 +90471,8 @@ cmH cmH cmH cmH -xSO -nje +vaO +lix dTs dTs dTs @@ -90500,10 +90500,10 @@ dTs dTs dTs akL -gWq -sxL -qjI -xHl +iLk +hOb +qqG +gTa akL dTs dTs @@ -90525,7 +90525,7 @@ dTs dTs dTs dTs -pEY +vAE aeE aiV ajo @@ -90535,7 +90535,7 @@ aCQ blT aVZ aZk -lpn +oJH aeE aeE ayD @@ -90545,28 +90545,28 @@ dTs dTs dTs azT -vRG -yac +gAc +nkv aGk azT -dBE -mTv -lYH -mrg -mrg -mrg -mrg -mrg -mrg -mrg -mrg -ocA +wnX +ivt +rOx +hjO +hjO +hjO +hjO +hjO +hjO +hjO +hjO +nAE adA adA adA adA adA -gZi +wNl dTs dTs dTs @@ -90574,8 +90574,8 @@ dTs dTs aIv aJB -pmw -qin +xhR +mhl adA dTs dTs @@ -90587,8 +90587,8 @@ abU abU abU abo -ubc -bCa +tmr +rkJ dib dib dib @@ -90596,59 +90596,59 @@ dib dLu dJT dLV -xfJ +hOF ceo cdw cfy cdC dPY chr -xmr -jZO +sgP +qcE ciW -hRu +hdZ ckj ckU dOK dOV cmE cmE -nJA -nJD -oXR -eRk -pKl -jVe -nEa -uWR -qoQ -vPw -jVe -jVe -jVe -jVe -jVe -pKl -pKl -lTZ -qIb -huo +ghs +tOr +oxt +nrL +uqg +wTk +imb +fNy +uJc +snM +wTk +wTk +wTk +wTk +wTk +uqg +uqg +qyp +dVX +wXS cHL cIK cIK cKC cIK cHL -wpR -kbx -fTT -vBY -tbP -mBt -mBt -qPh +uNK +lXQ +pow +fNH +sid +sdj +sdj +iev cPM -fji +mZn cmH csc dMX @@ -90667,10 +90667,10 @@ cmH cmH cmH cmH -tFV -cRu +jKT +rNk cto -ssM +pgT cCH clZ clZ @@ -90680,33 +90680,33 @@ clZ clZ clZ crW -vvT +pSr ddx -dst -dst -dst -dst -dst -dst -kyp -dst -dst -dst -dst -dst -dst -dst -dst -dst -kyp -dst -dst -dst -dst -dst -siA +hwv +hwv +hwv +hwv +hwv +hwv +teQ +hwv +hwv +hwv +hwv +hwv +hwv +hwv +hwv +hwv +teQ +hwv +hwv +hwv +hwv +hwv +fDL cmJ -voz +nMS dTs dTs dTs @@ -90734,10 +90734,10 @@ dTs dTs akL akL -ufb -sxL -qjI -rhi +pPI +hOb +qqG +dTD akL akL dTs @@ -90769,46 +90769,46 @@ amM bkE aWB aZk -lpn +oJH mqM aeE -qMc +fnJ dTs dTs dTs dTs dTs azT -vRG -yac +gAc +nkv xEz azT -nRZ -lYH -nui -fGT -fGT -fGT -qcZ -iEM -fGT -fGT -fGT -hhF -ocA +eWR +rOx +vWW +pZz +pZz +pZz +hfe +nQf +pZz +pZz +pZz +iJM +nAE adA eqo eqo -wVo -cKm +kgK +gVh dTs dTs dTs dTs aIv -sSk -nlI -epd +pnb +qOh +suw adA adA dTs @@ -90821,7 +90821,7 @@ abU acA abO abo -mtO +ksx dib dib dib @@ -90830,43 +90830,43 @@ dib dLu dJT dLV -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciW -uEB -dfY -ifk -uCM -ojY -dfY +vQK +eTE +bBB +oOc +gkm +eTE coU -qGr -kJX -lqx -vje +tlG +tUq +gsD +pFP cub -nOS -eZR -ecW -huo -nOS -gDn -nOS -nOS -nOS -nOS -nOS -eZR -djc -jkw -neA +qHz +jXg +qGi +wXS +qHz +lKA +qHz +qHz +qHz +qHz +qHz +jXg +eMB +mgR +rfq cHL cHL cHL @@ -90874,15 +90874,15 @@ cHL cHL cHL cNa -kbx -eZA +lXQ +huh dTl cJG cJG cJG cMP cMP -fji +mZn cmH cmH dNa @@ -90894,17 +90894,17 @@ cmH cmH cmH cSC -foA -xhK +cAH +bAl cmH cmH dec cmH cGL -tFV -vvT +jKT +pSr cto -ssM +pgT cVC cmb cmb @@ -90914,33 +90914,33 @@ clZ cpR cET crW -nrm -luq -luq -tXX -luq +fvo +pqM +pqM +jMW +pqM cto ddv -soa -soa -soa -soa -soa +ePn +ePn +ePn +ePn +ePn dcD kIP ddv -soa -soa -soa -soa -soa -soa -soa +ePn +ePn +ePn +ePn +ePn +ePn +ePn dcD kIP -vmJ +eaf cmH -voz +nMS dTs dTs dTs @@ -90967,12 +90967,12 @@ akL akL akL akL -rwo -tLX -sxL -qjI -kpv -pLs +ifu +mkK +hOb +qqG +nle +hlL akL akL akL @@ -90993,7 +90993,7 @@ dTs dTs dTs dTs -pEY +vAE aeE aiX ajr @@ -91003,46 +91003,46 @@ akc blT aVZ aZk -lpn +oJH aeE aeE -qMc -fSF +fnJ +pLA dTs dTs dTs dTs azT -vRG +gAc aFW -qSW -qSW -gUA -enN -enN -enN -enN -enN -enN -enN -enN -enN -kmq -qcZ -mUS +fIj +fIj +sYG +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +eSG +hfe +kIr adA eqo eqo -gZi +wNl azT dTs dTs dTs -xbV -xbV -nlI -pmw -qin +utK +utK +qOh +xhR +mhl adA adA dTs @@ -91055,40 +91055,40 @@ abU abO aVE abo -oLX +mlY dib dib dib dib -gYs -psa +rHX +udn dJT dLV -xfJ +hOF ceo cdw cfy cge cgL chr -xmr -jZO +sgP +qcE ciV -tnr +dqz cjG dOh dOh dOX cjG cjy -tVP -kJX -lqx -lqx +ekF +tUq +gsD +gsD cue cue cuf -vBr +kni cuf cue czf @@ -91097,26 +91097,26 @@ czf czf czf czf -rse -ioc -rqx -ict +qwk +rgv +rGN +evo cHN -rud -ovh -ovh -jKp +vFh +pZr +pZr +qNh cHN bbN -suO -mJe -cwi +giT +uqD +ocG cHN cQB dlu cLu -eeB -xAS +mum +feQ cmH cmH cqT @@ -91125,20 +91125,20 @@ cmH cmH cmH cmH -lpI -xhK +itx +bAl dTs dTs dTs -foA -foA -xhK +cAH +cAH +bAl cmH -sUb -lsh -vvT +pQt +xIQ +pSr cto -ssM +pgT cWb clY clY @@ -91153,16 +91153,16 @@ clY clY clY cFH -vvT -vmJ +pSr +eaf cmH cmH cmH cmH cmH -nrp +hYo cto -mrQ +mwE cmH cmH cmH @@ -91170,11 +91170,11 @@ cmH cmH cmH cmH -nrp +hYo cto -mrQ +mwE cmH -xSO +vaO dTs dTs dTs @@ -91194,26 +91194,26 @@ dTs dTs dTs aah -rwo -dnv -dnv -dnv -dnv -fwQ -dnv -tLX -qjI -sxL -qjI -qjI -hTb -dnv -dnv -dnv -dnv -tLX -qjI -rhi +ifu +wOx +wOx +wOx +wOx +wwA +wOx +mkK +qqG +hOb +qqG +qqG +dxG +wOx +wOx +wOx +wOx +mkK +qqG +dTD akL dTs dTs @@ -91227,7 +91227,7 @@ dTs dTs dTs dTs -pEY +vAE aeE aiX ajm @@ -91237,7 +91237,7 @@ akc blT aVZ aZk -lpn +oJH aeE aeE aeE @@ -91247,13 +91247,13 @@ dTs dTs dTs azT -ssq +xLx aFX uNF -hJD -hJD -fVc -vPD +ouH +ouH +eHd +ich aGc aGc aGc @@ -91262,23 +91262,23 @@ aGc aGc aGc aGc -enN -xcf -iSo -nNT +xbF +weq +sNx +xdJ adA -vol -uCj +qBt +jSG dTs dTs dTs -fBz -fBz -fBz -qin +cqD +cqD +cqD +mhl adA adA -wVo +kgK dTs dTs dTs @@ -91298,15 +91298,15 @@ dLu dJT dJT dLV -xfJ +hOF ceo cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciV cjF dOh @@ -91315,64 +91315,64 @@ dOC dOh cnQ cjy -swt -kJX -fun -iCx +gqW +tUq +vKC +xFg cue -thH +wWE cvi cwX cvi cyq czf -hKm -twb -hVX -tED +rpo +urU +oGX +sky czf -pPH -ioc -rqx -ict +nEK +rgv +rGN +evo cHN -dYr -tIW -ugU -mJe +gxM +wwD +eMz +uqD cHN bbN -qfL -mJe -ohg +uCa +uqD +gHr cPO cQB cQB cLu -fji +mZn cmH cmH cmH cmH cmH -lpI -foA -xhK -lpI -eKS +itx +cAH +bAl +itx +qGh dTs dTs dTs dTs dTs dTs -sbB -xhK -tFV -cRu +oDt +bAl +jKT +rNk cto cto -ssM +pgT cCH clZ clZ @@ -91387,16 +91387,16 @@ clZ clZ clZ crW -vvT -vmJ +pSr +eaf cmH duC duC duC duC -uAD -kGt -gDg +moV +llj +dJl dBr dBr dBr @@ -91404,9 +91404,9 @@ dBr dBr dBr dBr -uAD -dyc -gDg +moV +uZO +dJl dBr dBr dBr @@ -91428,26 +91428,26 @@ dTs dTs dTs akL -ufb -pdy -qjI -qjI -qjI -qjI -qjI -qjI -qjI -oIM -pit -pit -pit -pit -pit -pit -pit -xbM -ezz -xHl +pPI +oJQ +qqG +qqG +qqG +qqG +qqG +qqG +qqG +kEF +oIS +oIS +oIS +oIS +oIS +oIS +oIS +fic +nYJ +gTa akL dTs dTs @@ -91471,48 +91471,48 @@ aCQ aaM aWB aZk -mxB -pIc -pIc -pIc -pIc -hIG +kfU +eVW +eVW +eVW +eVW +hIL azT -nUO -nUO +qxF +qxF azT azT -dox -uex +gQQ +mzn adA adA -tmx -qcZ -ics -vPD +mKI +hfe +tze +ich aGc aGc -vPD -vPD -vPD -vPD -vPD -ptl +ich +ich +ich +ich +ich +jgK aGc -veO +kyq adA adA -vol -mxL -mxL -fFk +qBt +iRL +iRL +uKd adA adA adA kmU adA -wVo -cKm +kgK +gVh dTs dTs dTs @@ -91530,17 +91530,17 @@ dib dib dLu dJT -mLm -paB -fPw +lUT +emb +sly cen cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciW cjG dOr @@ -91549,10 +91549,10 @@ dOM dOY cjG coU -tVP -kJX -lqx -lqx +ekF +tUq +gsD +gsD cuf cvi cwf @@ -91560,36 +91560,36 @@ cwY cxI cyr czf -uEo +hbs cBx cBx cBx -qUQ -qlT -ioc -qot -ict +jYP +hPv +rgv +jTg +evo cHO -fYm -rpW -rpW -mJe +grJ +fbI +fbI +uqD cHN -rMe -suO -mJe -xfd +kOc +giT +uqD +jsi cHN cQB cQB cPO -fji +mZn cmH cmH cmH cmH cmH -voz +nMS dTs dTs dTs @@ -91601,12 +91601,12 @@ dTs dTs dTs dTs -sCS -tFV -vvT +kgD +jKT +pSr dzt dzt -keX +mQm cCH clZ clZ @@ -91621,29 +91621,29 @@ clZ clZ clZ crW -vvT -vmJ +pSr +eaf cmH duC -qlO -sYL +lzB +maB duC duC dzs duC dBr -lvX -uXn -uGt -gBy -wjc +xvU +pVe +xHL +nvH +dON dBr dBr dHh dBr dBr -xbu -uGt +iJf +xHL dBr dTs dTs @@ -91662,26 +91662,26 @@ dTs dTs dTs akL -gpg -qjI -qjI -qjI -qjI -qjI -qjI -qjI -pdy -qjI -qjI -qjI -qjI -qjI -qjI -qjI -qjI -sxL -qjI -oRo +hMC +qqG +qqG +qqG +qqG +qqG +qqG +qqG +oJQ +qqG +qqG +qqG +qqG +qqG +qqG +qqG +qqG +hOb +qqG +jdX akL dTs dTs @@ -91705,35 +91705,35 @@ amM blT aVZ aZk -mcK -iCk -iCk -iCk -iCk -dmw -qSW -qSW -qSW -qSW -qSW +fUS +jHZ +jHZ +jHZ +jHZ +fLX +fIj +fIj +fIj +fIj +fIj aFY -veO -adA -adA -cZI -vrc -qcZ -dwT -gmd -vnU -iEM -fGT -tBM -gcV -ygJ -lgb -uAs -veO +kyq +adA +adA +nhD +fYq +hfe +uxn +gvH +tml +nQf +pZz +xOZ +fFt +qSw +wyU +lpi +kyq adA aJi kmU @@ -91745,7 +91745,7 @@ adA adA adA adA -gZi +wNl dTs dTs dTs @@ -91761,20 +91761,20 @@ dEW dib dib dib -gYs -psa +rHX +udn dJT dLO -owY -xfJ +obD +hOF cdw cdw cfy cge cgL chr -xmr -jZO +sgP +qcE ciW cjG dOr @@ -91783,10 +91783,10 @@ aFJ cmF cjG coU -tVP -kJX -fun -fun +ekF +tUq +vKC +vKC cuf dCB dCB @@ -91794,35 +91794,35 @@ dCB cvi cvi czf -tmq +uRV cAx cBx cBx -vAG -tNj -tEh -qot -tJV +qCg +drF +lyM +jTg +tan cHO -meM -iUN -ugU -mJe +pmg +hZK +eMz +uqD cHN -rMe -suO -jzs -qOR +kOc +giT +jfU +iOp cHN cQB cQB cLu -fji +mZn cmH cmH cmH sMi -lpI +itx dTs dTs dTs @@ -91835,12 +91835,12 @@ dTs dTs dTs dTs -pfz -lsh -pZK +pmU +xIQ +mHA dzt dzt -keX +mQm cVC cmb cmb @@ -91855,29 +91855,29 @@ cVA sXR clZ crW -vvT -fQY +pSr +lLh cmH duC -mTH -sYL -sgx -tEl +eoL +maB +sxc +uPe ltE -yjc +pxc dBo -lvX -uXn -uGt -uXn -oKc +xvU +pVe +xHL +pVe +iQX dBo -idh +iCU gYP -tmF -ron -uGt -wDx +rXO +olx +xHL +gjZ dBr dTs dTs @@ -91896,26 +91896,26 @@ dTs dTs dTs akL -oBl -jVu -qjI -qjI -xMP -qMe -qMe -jVu -qjI -qjI -qjI -qjI -xMP -rln -fTh -qMe -jVu -sxL -pdy -jCr +vzR +gDI +qqG +qqG +ejt +sgR +sgR +gDI +qqG +qqG +qqG +qqG +ejt +fCv +yjb +sgR +gDI +hOb +oJQ +oIb aqr dTs dTs @@ -91928,7 +91928,7 @@ dTs dTs dTs dTs -pEY +vAE aeE aeE aiX @@ -91939,35 +91939,35 @@ aCp blT aVZ aZk -mcK -esY -esY -esY -esY -oDo -hJD -hJD -hJD -hJD -hJD +fUS +tjZ +tjZ +tjZ +tjZ +hGm +ouH +ouH +ouH +ouH +ouH aHx -veO +kyq adA adA adA -cZI -lgb -lgb -uAs -vWA -lgb -lgb -lgb -lgb -wkY +nhD +wyU +wyU +lpi +fNS +wyU +wyU +wyU +wyU +eOZ adA -eub -veO +gUV +kyq adA adA adA @@ -91979,7 +91979,7 @@ adA adA aKC adA -gZi +wNl azT dTs dTs @@ -92000,63 +92000,63 @@ dJT dJT dTs dTs -wjm +mxB cdw cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciW cjG dOr -tkz +rmj dOO cmF cjG coU -tVP -ncF -fun -fun +ekF +wlo +vKC +vKC cuf cvk cwg cvi cvi -yjW +gMv czf -jjk +uye cBx cBx cBx czf -eZR -tEh -rqx -tJV +jXg +lyM +rGN +tan cHN -wAZ -tJB -smO -mJe +oPZ +xOI +ykH +uqD cHN cHO -suO -jhj +giT +gNH cHO cHN cLu cLu cLu -fji +mZn cmH dIi cmH cmH -voz +nMS dTs dTs dTs @@ -92068,50 +92068,50 @@ dTs dTs dTs dTs -vIl -tFV -rYz +drK +jKT +rny dzt dzt dzt cto -rMu -rMu -rMu -rMu -rMu -rMu -rMu -rMu -rMu -kbI +gUU +gUU +gUU +gUU +gUU +gUU +gUU +gUU +gUU +hTd cCH cpR cET crW -vvT -vmJ +pSr +eaf cmH duC -tjI -sYL +erY +maB duC -sWn +lIt dXy -hCs +iGA dBo -lvX -uXn -uGt -lfC -oKc +xvU +pVe +xHL +fwL +iQX dBo -hvZ +fff ebb -hbC +mtJ dBr -oft -uAe +bXE +vJG dBr dTs dTs @@ -92132,24 +92132,24 @@ dTs afP afP ajl -tiC -uMQ +ldI +qxh ajl afP afP -oBl -qMe -qMe -qMe -qMe -iNh +vzR +sgR +sgR +sgR +sgR +kQM akL akL akL -ufb -sxL -qjI -jCr +pPI +hOb +qqG +oIb aqr dqd dTs @@ -92162,7 +92162,7 @@ dTs dTs dTs dTs -pEY +vAE aeE aeE aiX @@ -92173,35 +92173,35 @@ akd aaM aWB aZk -jCB -hdQ -hdQ -qWD -sCm -hIG +luc +pjg +pjg +pOy +nZy +hIL adA adA -wVo -oaS +kgK +khk adA -eub -veO -wVo -oBs +gUV +kyq +kgK +ops dTs dTs -mKt +dxt aKC -oSv -veO +syL +kyq adA adA adA adA adA adA -eub -veO +gUV +kyq adA adA adA @@ -92213,10 +92213,10 @@ eqo eqo adA adA -vol -uCj +qBt +jSG azT -dBE +wnX adA dTs dTs @@ -92225,7 +92225,7 @@ dTs dTs dTs dTs -mtO +ksx dib dib dib @@ -92234,15 +92234,15 @@ dJT dTs dTs dTs -wAX +rvJ cdw cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciW dOh dOh @@ -92251,45 +92251,45 @@ dOP cjG cjG coU -tVP -jyJ -pjG -lqx +ekF +plp +gjU +gsD cue cvl cvi -iAL +sHV cug cug czg czg -nMr -nMr -hnd +usM +usM +gdJ czf -tEh -ioc -nSl -neA +lyM +rgv +lUP +rfq cHN cHO cHO -iiZ +seo cHO cHN -meM -suO -jzs -mJe -hPg +pmg +giT +jfU +uqD +xtZ cLu -eeB -oIg -xAS +mum +kqB +feQ cmH cmH cmH -lpI +itx dTs dTs dTs @@ -92302,47 +92302,47 @@ dTs dTs dTs dTs -vIl -tFV -pZK +drK +jKT +mHA dzt -luq -luq -jWE -soa -soa -soa -soa -soa -soa -soa -soa -soa -uPh +pqM +pqM +wwT +ePn +ePn +ePn +ePn +ePn +ePn +ePn +ePn +ePn +wxP cCH clZ clZ crW -vvT -vmJ +pSr +eaf cmH duC duC duC duC -gpx +fSo dXy -elT +mrl dBo -lvX -uXn -uGt -uXn -oKc +xvU +pVe +xHL +pVe +iQX dBo -hvZ +fff dYk -vCu +gdG dBr dBr dBr @@ -92364,12 +92364,12 @@ dTs dTs dTs afP -rzU -ibq -tiC -tiC -hTa -piG +ivk +xEq +ldI +ldI +fsE +jIJ afP afP afP @@ -92380,10 +92380,10 @@ akL akL dTs akL -ufb -sxL -qjI -jCr +pPI +hOb +qqG +oIb aqr dqd dTs @@ -92407,40 +92407,40 @@ aCQ blT aVZ aZk -iYQ +vUa bzS aOh -efc +iXF dTs dTs adA adA -gZi -nRZ +wNl +eWR adA -eub -veO +gUV +kyq dTs dTs dTs dTs -rtH +oJO adA -eub -veO +gUV +kyq adA adA -lYH -mrg -mrg -mrg -ouJ -doU -mrg -mrg -mrg -mrg -ixu +rOx +hjO +hjO +hjO +hJA +gGB +hjO +hjO +hjO +hjO +mKT adA adA eqo @@ -92448,18 +92448,18 @@ eqo aKD aIp adA -fTi -mxL -mTv +eSO +iRL +ivt adA adA -tmx -rCQ -kmq +mKI +ink +eSG dTs dTs -gAa -pbq +qVK +tsD dib dib dib @@ -92468,15 +92468,15 @@ dJT dTs dTs dTs -uUG +rWB cdw dcO cfy cge cgL chr -xmr -jZO +sgP +qcE ciV dOi dOh @@ -92485,10 +92485,10 @@ dOh cjG cnQ cjy -swt -qlV -bjg -iCx +gqW +gLc +rXV +xFg cug cug cug @@ -92501,29 +92501,29 @@ cAA cBz cCz czf -tEh -ioc -qot -flb +lyM +rgv +jTg +vqh cHO -iDL -ovh -wvz -ovh -fKD -wPE -bWG -jzs -mJe -fHI +ebX +pZr +okQ +pZr +gzr +pef +hgd +jfU +uqD +ovP cLu -fji +mZn cmH cmH cmH cmH -lpI -eKS +itx +qGh dTs dTs dTs @@ -92536,13 +92536,13 @@ dTs dTs dTs dTs -sCS -tFV -lZP -hdt -wbP -wbP -fji +kgD +jKT +vva +nVu +cgx +cgx +mZn cmH cmH cmH @@ -92552,34 +92552,34 @@ cmH cmH cmH dIi -kal +jba cCH clZ clZ crW -vvT -vmJ +pSr +eaf cmH duC -qlO -sYL +lzB +maB duC -rZx +izE dwI -kTv +eYr dBr -mmJ -uGt -uGt -gBy -gBy +lTg +xHL +xHL +nvH +nvH dBr -hvZ +fff dYk -eTk +rlF dBr -xbu -uGt +iJf +xHL dBr dTs dTs @@ -92598,15 +92598,15 @@ dTs dTs dTs afP -udp -kXy -tiC -tiC -eur -sWo -hhl -hhl -ibq +lYe +mCv +ldI +ldI +oUa +ovA +ihf +ihf +xEq afP dTs dTs @@ -92614,10 +92614,10 @@ dTs dTs dTs akL -ufb -sxL -qjI -jCr +pPI +hOb +qqG +oIb aqr dTs dTs @@ -92641,41 +92641,41 @@ aaC abD aXC aBa -iYQ +vUa aOh -kLZ +iss dTs dTs dTs dTs dTs -gZi +wNl dTs adA -eub -veO +gUV +kyq dTs dTs dTs dTs dTs adA -eub -veO +gUV +kyq adA -lYH -nui -qcZ -qcZ -qcZ -wlv -xvs -qcZ -qcZ -qcZ -qcZ -hhF -ocA +rOx +vWW +hfe +hfe +hfe +sRS +nOb +hfe +hfe +hfe +hfe +iJM +nAE adA adA lYv @@ -92683,17 +92683,17 @@ aIu aFl aFP aHC -njU -ujW -ujW -mrg -nui -vHz -vnU -qcZ -gaz -kjQ -mnq +gej +gOq +gOq +hjO +vWW +qPR +tml +hfe +gaw +iZE +qXq dib dib dib @@ -92703,14 +92703,14 @@ dTs dTs dTs dTs -wAX +rvJ cdw cfy cdC cdC chr -xmr -jZO +sgP +qcE ciV ciV ciW @@ -92720,8 +92720,8 @@ ciW ciV ciV cpH -qlV -trK +gLc +jen cpH cuh dTs @@ -92735,28 +92735,28 @@ cAB cAB cAB cAB -tEh -fva -cKN -uVw -vYP -fgS -fgS -tmo -fgS -ovh -rwm -kgf -rAq -mJe -fHI +lyM +kzV +iZh +uIP +srq +oZZ +oZZ +tfA +oZZ +pZr +rhg +kvh +oxC +uqD +ovP cQC -fji +mZn cmH cmH cTp cmH -voz +nMS dTs dTs dTs @@ -92772,8 +92772,8 @@ dTs dTs daO dbK -iUS -lHY +oQY +azL dbK cZu cZu @@ -92786,34 +92786,34 @@ dbK dbK cmH cmH -kal +jba hIO cpR cET crW -vvT -vmJ +pSr +eaf cmH duC -mTH -sYL -sgx -gpx +eoL +maB +sxc +fSo dXy -lHp -ron -uGt -uGt -uGt -uGt -uGt -ron -hvZ +fxy +olx +xHL +xHL +xHL +xHL +xHL +olx +fff jJa -eTk -ron -uGt -wDx +rlF +olx +xHL +gjZ dBr dTs dTs @@ -92832,15 +92832,15 @@ dTs dTs dTs afP -udp -kXy -rRX -tiC -eur -pxf -nkF -jNf -kXy +lYe +mCv +iPi +ldI +oUa +ihP +wEN +laS +mCv afP dTs dTs @@ -92848,10 +92848,10 @@ dTs dTs dTs akL -ufb -sxL -qjI -jCr +pPI +hOb +qqG +oIb aqr dqd dTs @@ -92867,16 +92867,16 @@ dTs dTs aiv aiG -csk -dmj -dmj -dmj -dmj -sEs -iCk -iCk +qUP +lAg +lAg +lAg +lAg +fGB +jHZ +jHZ aYe -kLZ +iss dTs dTs dTs @@ -92886,19 +92886,19 @@ dTs dTs dTs adA -eub -veO -gZi +gUV +kyq +wNl dTs dTs dTs dTs adA -eub -veO +gUV +kyq adA -tmx -qcZ +mKI +hfe akV azU azU @@ -92908,8 +92908,8 @@ azU azU azU aDZ -qcZ -kvr +hfe +geC eqo adA aJS @@ -92917,17 +92917,17 @@ aFl kiP aHI aKD -raD -mNd -mNd -mNd -mNd -gmd +stA +nhK +nhK +nhK +nhK +gvH aGc -enN -sXD -hlS -mnq +xbF +sNH +szH +qXq dib dib dib @@ -92937,25 +92937,25 @@ dTs dTs dTs dTs -fIp -kFo +jXQ +xVY aPz cdC cdC chr -obK -cZN -hQV -hQV -hQV -hQV -hQV -hQV -hQV -hQV -eHE -lIw -hUi +mxp +rLe +uhn +uhn +uhn +uhn +uhn +uhn +uhn +uhn +eCe +gCH +uPv cdw dTs dTs @@ -92965,32 +92965,32 @@ dTs dTs dTs czO -tbE -sXy -sXy +fCV +fzS +fzS cDy -tEh -gHy -pLn -jVe -mmK -mmK -mmK -dlL -wGp -wGp -lSx -pMl -fSs -tNv -sFN +lyM +ukH +uzo +wTk +vgx +vgx +vgx +kbw +sJG +sJG +nCt +njG +fPC +qYG +tpl cQC -fji +mZn cmH cmJ cmH cmH -xSO +vaO dTs dTs dTs @@ -93005,49 +93005,49 @@ dTs dTs dTs daO -tid -wLk -wLk -rkj -rkj -rkj -rkj -tid -gat -rkj -rkj -pAV +oVq +ubr +ubr +khf +khf +khf +khf +oVq +ooZ +khf +khf +vdf dbK cmH cmH -kal +jba cCH clZ clZ crW -vvT -vmJ +pSr +eaf cmH duC -tjI -xWa +erY +gnc duC -gpx +fSo dXI -hCs +iGA dBr -jYc -uGt -uGt -uGt -uGt +tVa +xHL +xHL +xHL +xHL dBr -eoa +mtc dZm -eTk +rlF dBr -oft -uAe +bXE +vJG dBr dTs dTs @@ -93066,15 +93066,15 @@ afP afP afP afP -lkD -kXy -tiC -tiC -eur -pxf -nkF -pxf -kXy +pHY +mCv +ldI +ldI +oUa +ihP +wEN +ihP +mCv afP dTs dTs @@ -93082,10 +93082,10 @@ dTs dTs dTs akL -ufb -sxL -qjI -jCr +pPI +hOb +qqG +oIb aqr dTs dTs @@ -93104,12 +93104,12 @@ cYv cgR ajs cZt -gyR -gyR -gyR -gyR -gyR -lcl +mfL +mfL +mfL +mfL +mfL +rbE dTs dTs dTs @@ -93118,32 +93118,32 @@ dTs dTs dTs dTs -xBR -mKt -eub -veO -gZi +iJK +dxt +gUV +kyq +wNl dTs dTs dTs dTs adA -oSv -veO +syL +kyq adA -tmx -qcZ +mKI +hfe alj aIl -eIs +pIC azT aIU -wiR +pPZ aJj azT aEf -qcZ -kvr +hfe +geC eqo adA aFl @@ -93151,33 +93151,33 @@ kiP kiP kiP aFP -fGu +hZX aMf aMf bmB aMf -gmd +gvH aGc -vPD -yga -wGg -mnq +ich +nAX +vju +qXq dib dib dib dLu dJT dLO -qbI +gcu dTs dTs -fIp -cVm +jXQ +fxY cfw cge cgL chr -hzP +lil cdw cdw cdw @@ -93187,9 +93187,9 @@ cdw cdw cdw cdw -rmj -eiP -lOV +lNS +mMX +daE cdw dTs dTs @@ -93199,32 +93199,32 @@ dTs dTs dTs czO -tHs -qEP -wCI +ljD +gZZ +ntv cDy -oZG -ioc -rqx -huo +mqw +rgv +rGN +wXS cHO -kst -hrx -tLf -hrx -hrx -xLb -hrx -hrx -vVk -lBg +hNG +vrR +lXu +vrR +vrR +mSo +vrR +vrR +skH +iPW cQC -fji +mZn cmH cmH cmH cmH -lpI +itx dTs dTs dTs @@ -93239,46 +93239,46 @@ dTs dao dao dao -jpG -tkf -tkf -njS -njS -njS -hLx -hLx -njS -njS -njS -rkj +pRo +xOt +xOt +yiB +yiB +yiB +kcq +kcq +yiB +yiB +yiB +khf cZu cmH cmH -kal +jba cCH clZ clZ crW -vvT -vmJ +pSr +eaf cmH duC duC duC duC -lij +uNr dXJ -hCs +iGA dBo -lvX -lfC -uGt -uXn -uXn +xvU +fwL +xHL +pVe +pVe dBo -vJG +iKB dZn -eTk +rlF dBr dBr dBr @@ -93297,18 +93297,18 @@ acu (184,1,1) = {" acu afP -mgU -wEp -jLY -pWL -kXy -tiC -tiC -eur -jNf -nkF -pxf -lJg +kBe +iZZ +efk +kbe +mCv +ldI +ldI +oUa +laS +wEN +ihP +hRW afP afP afP @@ -93316,10 +93316,10 @@ afP afP afP afP -ufb -sxL -qjI -jCr +pPI +hOb +qqG +oIb aqr dTs dTs @@ -93332,17 +93332,17 @@ dTs dTs dTs dTs -nYY +dlH cov cYx aOh dTs dTs -tSE +uyu qlG qlG qlG -jvy +vbz dTs dTs dTs @@ -93352,32 +93352,32 @@ dTs dTs dTs dTs -dBE -mTv -eub -veO -vol -uCj +wnX +ivt +gUV +kyq +qBt +jSG dTs dTs -mTv +ivt adA -eub -veO +gUV +kyq adA -tmx -qcZ +mKI +hfe alj -fQF -tvS +qGE +ipE azT -qBd -gKk -jfm -ugn +jya +ezI +ivw +ccW aEf -qcZ -mUS +hfe +kIr adA adA aFn @@ -93385,33 +93385,33 @@ kiP kiP kiP aHI -fGu +hZX aMf aMg aTq aUO -gmd -vaQ -taV -gaz -pbr -mnq +gvH +kSp +qsj +gaw +koU +qXq dib dib dib -tMR -cZk +kZm +gYp dLP adR -qbI -owY -ine -cVm +gcu +obD +lMV +fxY cfw cdC cdC chr -hzP +lil cdw cdw aRK @@ -93422,8 +93422,8 @@ aMz aMz aMz cdw -dtb -lOV +vTD +daE cdw dTs dTs @@ -93433,33 +93433,33 @@ dTs dTs dTs czO -sZk -oMz -wCI -txw -qlT -ioc -lLk -ict +tiX +ohB +ntv +oAz +hPv +rgv +mXy +evo cHL cHL cHL cHL -qGL -oQu -oQu -oQu -oQu -hlY -nBs +tNg +oEW +oEW +oEW +oEW +qtf +rcI cQC -fji +mZn cmH cmH cmH cmH -xSO -keP +vaO +dUk dTs dTs dTs @@ -93473,49 +93473,49 @@ dao dao dbw dao -jpG -tkf -tkf -foJ -iER -eey -hLx -hLx -lki -wAV -pOA -rkj +pRo +xOt +xOt +mpn +tIO +vsV +kcq +kcq +xvV +qFt +gbO +khf cZu cmH cmJ -kal +jba cCH cpR cET crW -jEe -vmJ +nvd +eaf cmH duC -qlO -sYL +lzB +maB duC -iao +tqw dXJ -hCs +iGA dBo -lvX -uXn -uGt -hRm -hRm +xvU +pVe +xHL +gyx +gyx dBo -hvZ +fff dZn -sHD +nQh dBr -xbu -uGt +iJf +xHL dBr dTs dTs @@ -93531,29 +93531,29 @@ acu (185,1,1) = {" acu afP -gCz -fER -sEx -sEx -iCM -xiw -tiC -ncg -sEx -xwW -sEx -iCM +suu +vln +isD +isD +uqW +uTf +ldI +pWp +isD +foJ +isD +uqW afP -fmz -rmI -rmI -rmI -uuh +uro +ipL +ipL +ipL +eLk afP -ufb -sxL -qjI -hCI +pPI +hOb +qqG +guT akL dTs dTs @@ -93565,19 +93565,19 @@ dTs dTs dTs dTs -drH -mPy +klA +fuw cov cYx aOh dTs -hWI +kSH adA adA aeo adA -vol -uCj +qBt +jSG dTs dTs dTs @@ -93586,32 +93586,32 @@ dTs dTs dTs dTs -pla +pUk adA -eub -veO +gUV +kyq kmU -vol -mTv +qBt +ivt adA adA adA -eub -veO +gUV +kyq adA -tmx -qcZ +mKI +hfe alj -lrm -pUB -dWX +jKQ +hSX +gLz azT -fDz -lNO -jxb +qEh +oPU +kpD aEf -qcZ -mUS +hfe +kIr adA adA aIk @@ -93619,17 +93619,17 @@ aFn aFR kiP aHI -fGu +hZX aMf aMo aMg aUO -rAw -tEO -gaz -qKF -uMM -bCa +huN +eQB +gaw +xbV +bRP +rkJ dib dib dib @@ -93638,26 +93638,26 @@ dLu adC dLP adR -owY -fIp -eNK +obD +jXQ +jUx cfw cdC cdC chr -hzP +lil cdw cdw cdw cdw aMz -iBI -gPf -eRC +rqW +wGH +rYk aMz cdw -dtb -lOV +vTD +daE cdw dTs dTs @@ -93667,33 +93667,33 @@ dTs dTs dTs czO -uyV -smd -ydJ +sOj +edu +lic cDy -eZR -ioc -rqx -ict +jXg +rgv +rGN +evo cub -eMx -eMx +iAZ +iAZ cHL -pIY -oQu -oQu -oQu -qbJ -pPC -nmU +reo +oEW +oEW +oEW +dBa +djq +hWu cLu -fji +mZn cmH cmH aJA cmH cmH -xSO +vaO dTs dTs dTs @@ -93707,49 +93707,49 @@ dao dbw dbw ded -jpG -htM -kMI -qfY -qLh -irA -sTH -sTH -lki -pXY -qOf -rkj +pRo +vwp +rIy +rBL +msI +ikP +owH +owH +xvV +eoo +izj +khf cZu cmH cmH -kal +jba cCH clZ clZ crW -vvT -vmJ +pSr +eaf cmH duC -mTH -sYL -sgx -gpx +eoL +maB +sxc +fSo dXJ -hCs +iGA dBo -lvX -uXn -uGt -hjB -hRm +xvU +pVe +xHL +dRb +gyx dBo -hvZ +fff dZn -eTk -ron -uGt -wDx +rlF +olx +xHL +gjZ dBr dTs dTs @@ -93765,28 +93765,28 @@ acu (186,1,1) = {" acu afP -eur -kXy -tiC -tiC -tiC -tiC -tiC -tBh -eoC -tiC -tiC -tiC -kQF -jgz +oUa +mCv +ldI +ldI +ldI +ldI +ldI +kwT +mCL +ldI +ldI +ldI +bbJ +rkK rEa apk apg -lSk +iwz afP akM -sxL -rwL +hOb +pnG akM akL dTs @@ -93806,12 +93806,12 @@ cYx dTs dTs aJx -hWI +kSH adA aGZ adA adA -gZi +wNl dTs dTs dTs @@ -93819,33 +93819,33 @@ dTs dTs dTs azT -dBE -mTv +wnX +ivt adA -eub +gUV aGl -iSo -iSo -iSo -iSo -iSo -iSo +sNx +sNx +sNx +sNx +sNx +sNx aFa -veO +kyq adA -tmx -qcZ +mKI +hfe alj azT azT azT azT azT -rGg -vFU +hlU +rDc aEf -qcZ -mUS +hfe +kIr adA eqo wYO @@ -93853,45 +93853,45 @@ adA aHz aFn aHE -fGu +hZX aMf aMp aMf aMf -rAw -tEO -hIq -iIY -bCa +huN +eQB +wmK +jJH +rkJ dib dib dib dib dib -tMR -cZk +kZm +gYp dJT dLO -owY -fIp -eNK +obD +jXQ +jUx cfw cge cgL chr -kPA -jDU -rAJ +xXA +iVU +jeW coJ coI aMz -nSZ +taf aNh aNh aMz -ePR -cYm -ntd +orR +fMX +kPG dTs dTs dTs @@ -93905,30 +93905,30 @@ cAG cAG cAG cAG -tEh -ioc -sxY -ict -nJU -tNj -tNj +lyM +rgv +qPY +evo +hbq +drF +drF cHL cHO -mhV -lyq +oJn +fMe cHO cLu cLu cLu cLu -fji +mZn cmH cmH cmH cmH cmH cmH -voz +nMS dTs dTs dTs @@ -93942,48 +93942,48 @@ dcp dbw dao dbK -tgz -kMI -hUX -xPD -hUX -sTH -sTH -xPD -xPD -sVo -rkj +oWA +rIy +kAR +imw +kAR +owH +owH +imw +imw +ksw +khf dbK cmH cmH -kal +jba cCH sXR clZ crW -vvT -vmJ +pSr +eaf cmH duC duC -sYL +maB duC -gpx +fSo dXJ -hCs +iGA dBo -lvX -uXn -uGt -uXn -uXn +xvU +pVe +xHL +pVe +pVe dBo -hvZ +fff dHk -hbC +mtJ dBr -oft -uAe +bXE +vJG dBr dTs dTs @@ -93999,29 +93999,29 @@ acu (187,1,1) = {" acu afP -eur -kXy -rRX -tqk -tiC -sfl -sfl -tiC -tiC -tiC -tiC -tiC -kQF -jgz +oUa +mCv +iPi +kMc +ldI +mbD +mbD +ldI +ldI +ldI +ldI +ldI +bbJ +rkK apk apg apk -lSk +iwz afP -wLq -vsT -vQl -lhm +kVp +tZV +ohh +eIU apW dTs dTs @@ -94040,46 +94040,46 @@ cYx dTs dTs aJB -epd +suw adA adA kmU aFN -vol +qBt dTs dTs dTs dTs dTs dTs -dBE -mTv +wnX +ivt adA adA -eub +gUV aFf -hJD -hJD -uaw -hJD -hJD -hJD +ouH +ouH +jsa +ouH +ouH +ouH aHx -veO +kyq adA -tmx -qcZ +mKI +hfe alj aIo azT azT azT aJa -qUY +foA aJF aEf -qcZ -mUS +hfe +kIr adA eqo eqo @@ -94087,14 +94087,14 @@ adA adA aHz aHG -fGu +hZX aMf aMq aMg aMg -vHz -tEO -mtO +qPR +eQB +ksx dib dib dib @@ -94106,26 +94106,26 @@ dib dLu dJT dLO -owY -fIp -cVm +obD +jXQ +fxY cfw cdC cdC cht ccZ cix -hzP +lil boG dxO aMz -vTv +tbU aNh aNh aNI -bjx +qMv caK -jZO +qcE dTs dTs dTs @@ -94135,35 +94135,35 @@ dTs dTs dTs czP -tON -xhh -xhh +wPz +qzq +qzq cDA -tEh -ioc -rqx -ict +lyM +rgv +rGN +evo cub -oiR -hLV +dks +ftZ cHL -nxT -spR -nxT -spR +jkN +osz +jkN +osz cLu dTs dTs -eeB -xAS +mum +feQ cmH cmH cEV cmH cmH cmH -xSO -nje +vaO +lix dTs dTs dTs @@ -94172,39 +94172,39 @@ dTs dTs dao dao -nAP +hCp dbw dao -vhw -jpG -qBl -ihi -fct -txH -vag -kok -sTH -hLx -sTH -rkj +shu +pRo +tzu +uNl +unB +gNa +giM +xYt +owH +kcq +owH +khf cZu cmH cmH -kal +jba cCH cpR cET crW -vvT -vmJ +pSr +eaf cmH duC duC duC duC -gpx +fSo dXJ -twL +kPT dBr dBr dBr @@ -94212,9 +94212,9 @@ dBr dBr dBr dBr -fBN +xtn dZn -vCu +gdG dIk dIk dIk @@ -94233,29 +94233,29 @@ acu (188,1,1) = {" acu afP -eur -kXy -tiC -tiC -ttL -gKi -urj -ttL -tiC -tiC -hTa -ibq +oUa +mCv +ldI +ldI +ldY +ggv +otb +ldY +ldI +ldI +fsE +xEq afP -yas -jNi -jNi -jNi -efW +yam +rfr +rfr +rfr +psp afP -wLq -vsT -vQl -lhm +kVp +tZV +ohh +eIU apW dTs dTs @@ -94274,19 +94274,19 @@ cYx dTs aIv aJB -epd +suw adA adA adA adA adA -gZi +wNl dTs dTs dTs dTs dTs -nRZ +eWR adA adA wYO @@ -94298,22 +94298,22 @@ sXh adA adA aGY -eub -lFM +gUV +jtl adA -tmx -qcZ +mKI +hfe alj azT azT azT azT -uSR -bGf -kMK -oeX -qcZ -mUS +sgn +qCQ +uqN +xAK +hfe +kIr adA adA adA @@ -94321,14 +94321,14 @@ adA adA adA adA -fGu +hZX aUO aMf aMf aMf -vHz -tEO -mtO +qPR +eQB +ksx dib dib dib @@ -94340,27 +94340,27 @@ dib dLu dJT dLO -lVk -lDi -jZO +mbO +lQr +qcE cfw cdC cdC chu cdC chr -hzP +lil btY dBh aMz -orh +khs aNi aNh aNh -mDj +kvc caK -jZO -xfJ +qcE +hOF dTs dTs dTs @@ -94369,27 +94369,27 @@ dTs dTs dTs czP -vZf -uNh -efI +qcW +egj +lOo cDA -oZG -tEh -rqx -neA +mqw +lyM +rGN +rfq cHL cHL cHL cHL -spR -nxT -spR -nxT +osz +jkN +osz +jkN cLu dTs dTs dTs -xhK +bAl cmH cmH cFK @@ -94397,7 +94397,7 @@ cmH cmH cUK cmH -voz +nMS dTs dTs dTs @@ -94409,52 +94409,52 @@ dHK dbw dbw dao -xqS -jpG -pUT -njS -njS -sTu -ykH -hLx -sTu -sTu -sTu -rkj +dQN +pRo +kMQ +yiB +yiB +mQk +dDj +kcq +mQk +mQk +mQk +khf cZu cmH cmH -kal +jba cCH dWZ dXf crW -vvT -vmJ +pSr +eaf cmH cmH cmH duC -vNU -nzd +ixk +xVP dXK -rEu +pRS dBo -kWc -grD -fjN -dMS -uYU -uYU -pEx +seS +uLX +gzv +upS +gLq +gLq +oYM dZn dCb dIl -rKi -eMr -nYd -qGK -sTc +qQy +fxe +lby +lWM +ljb dIk dTs dTs @@ -94467,29 +94467,29 @@ acu (189,1,1) = {" acu afP -eur -kXy -tiC -tiC -ttL -ttL -ttL -ttL -tiC -tiC -eur -lJg +oUa +mCv +ldI +ldI +ldY +ldY +ldY +ldY +ldI +ldI +oUa +hRW afP afP -pPI -pPI -pPI +jlE +jlE +jlE afP afP -wLq -vsT -vkF -lhm +kVp +tZV +sEv +eIU apW dTs dTs @@ -94508,61 +94508,61 @@ cYx dTs aIv aJB -vIR +rkW adA adA adA adA -wVo -cKm +kgK +gVh dTs dTs dTs dTs dTs -nRZ -tVp -iSo -bQD +eWR +hLl +sNx +iBT mDA aGn adA -wVo -mcz +kgK +jdx adA aGV adA -eub -veO +gUV +kyq adA -tmx -qcZ +mKI +hfe alj azT azT azT azT azT -mFY -tDr -jUr -qcZ -kvr +cTe +mAe +fWp +hfe +geC eqo -wVo -mKt +kgK +dxt adA adA kmU adA -fGu +hZX aMf aMg aMf bmB -vHz -vHF -sfh +qPR +glj +ijx bxW diM dFR @@ -94574,28 +94574,28 @@ dib dLu dJT dLO -pjh -iCb -jZO +uBI +uze +qcE cfw cge cgL chu cdC chr -hzP +lil bPN clF aMz -olG +mOq aNh aNh aMz -fIp -nrS -jZO -xfJ -wDq +jXQ +vNr +qcE +hOF +mzT dTs dTs dTs @@ -94603,36 +94603,36 @@ dTs dTs dTs czP -tJX -efI -efI -hfW -tNj -tEh -tXn -ict +wDO +lOo +lOo +gWq +drF +lyM +xSo +evo cub -eMx -eMx +iAZ +iAZ cHL -nxT -spR -nxT -spR +jkN +osz +jkN +osz cLu dTs dTs dTs dTs -xhK +bAl cmH cmH cmH cmH cmH cmH -xSO -nje +vaO +lix dTs dTs dTs @@ -94643,33 +94643,33 @@ dbw dbw uyn dao -wRH -jpG -pUT -oIz -pMD -gvV -sTH -sTH -irA -wBD -pXY -rkj +lLy +pRo +kMQ +fyY +ouT +gil +owH +owH +ikP +tMZ +eoo +khf cZu cmH -sUb -gBZ +pQt +cVB cWe dXa dXa cFJ -vvT -xsh -wjR -tPL +pSr +kvB +vQO +xfT cmH dim -gGn +vcn dwI dXK dXy @@ -94683,12 +94683,12 @@ dYk dYk ebc dYk -vvO -jCH -jCH -jCH -hst -wGa +lgh +mRA +mRA +mRA +jzf +oIf dIk dTs dTs @@ -94701,29 +94701,29 @@ acu (190,1,1) = {" acu afP -eur -kXy -tiC -tiC -vLP -tiC -vLP -tiC -jah -tiC -ncg -iCM +oUa +mCv +ldI +ldI +jrF +ldI +jrF +ldI +fOH +ldI +pWp +uqW afP -fmz -rmI -rmI -rmI -uuh +uro +ipL +ipL +ipL +eLk afP -wLq -vsT -vQl -eRX +kVp +tZV +ohh +oVc aIw aIw aIw @@ -94740,37 +94740,37 @@ dTs cov cYx dTs -sSk -fUh -qin +pnb +vrW +mhl adA aFb adA adA -nMI -uCj +xnC +jSG dTs dTs dTs dTs dTs -mTv -eub +ivt +gUV aFf -hJD +ouH aGf aGo adA -gZi -xBR -mKt +wNl +iJK +dxt adA aGZ -eub +gUV aGl -kgs -kFr -xEH +oYc +iro +ccr aHZ azT azT @@ -94778,27 +94778,27 @@ aIo azT aJg azT -gtJ -mmZ -qcZ -kvr +gNj +nTD +hfe +geC eqo -gZi -xBR -mKt +wNl +iJK +dxt adA adA adA -fGu +hZX aMf aMf aMf aTq -vHz -vHF -gaz -gaz -gaz +qPR +glj +gaw +gaw +gaw dEW dib dib @@ -94806,29 +94806,29 @@ dib dib dib dLu -mLm -gFM -owY -fIp -cVm +lUT +xge +obD +jXQ +fxY cfw cdC cdC chu cdC chr -hzP +lil cdw coI aMz -mTV +syh aNh aNh aMz aMz -nrS -jZO -xfJ +vNr +qcE +hOF cdw dTs dTs @@ -94837,36 +94837,36 @@ dTs dTs dTs czP -iWR -gvI -kXA +pNi +nQB +pLf cDA -eZR -bok -pUa -ict -wKM -tNj -tNj +jXg +jLR +pIV +evo +xoc +drF +drF cHL -spR -nxT -spR -nxT +osz +jkN +osz +jkN cLu dTs dTs dTs dTs -sbB -xhK +oDt +bAl cmH cmH cmH cmH cmH cmH -voz +nMS dTs dTs dTs @@ -94877,33 +94877,33 @@ dbw dbw uyn dao -rHh -tkf -pUT -iQu -hxO -pXY -sTH -ykH -fBm -xLZ -irA -smK +jUC +xOt +kMQ +hZL +kST +eoo +owH +dDj +iTA +diV +ikP +enN dbK dbK -wbP -hry +cgx +gBJ dWV dXb cXt crX -nrm -luq -kbI -fji +fvo +pqM +hTd +mZn cmH dim -lJz +uwM dYK dzv dYb @@ -94917,12 +94917,12 @@ eaK dYM dZp dFg -pre -pre -oMX -wBJ -onr -rFl +uZe +uZe +xgs +tjf +fgy +wxy dIk dTs dTs @@ -94935,34 +94935,34 @@ acu (191,1,1) = {" acu afP -gnP -kXy -hPD -tiC -tiC -rRX -tiC -tiC -tiC -tiC -tiC -tiC -kQF -jgz +rIp +mCv +qTF +ldI +ldI +iPi +ldI +ldI +ldI +ldI +ldI +ldI +bbJ +rkK apg apk rEa -lSk +iwz afP -wLq -vsT -vQl -bqB +kVp +tZV +ohh +opP aIw -sSq -eoW -sSq -oFV +igZ +jun +igZ +mJp aIw dTs dTs @@ -94974,37 +94974,37 @@ dTs ivd xFA dTs -eKm -epd +ewP +suw akb adA aFT aGr adA kmU -vol -uCj +qBt +jSG dTs dTs dTs -nRZ +eWR adA -eub -veO +gUV +kyq adA adA -wVo +kgK dTs dTs azT -nRZ +eWR adA adA -faV -hJD -hJD -fVc -xzS +slv +ouH +ouH +eHd +vEo aIj azT azT @@ -95014,25 +95014,25 @@ azT azT azT aEf -qcZ -mUS -wVo -cKm +hfe +kIr +kgK +gVh dTs dTs -mKt +dxt adA adA -fGu +hZX ble aMg aMf aMf -vHz +qPR aGc -enN -kmq -gaz +xbF +eSG +gaw dGu dib dib @@ -95041,31 +95041,31 @@ dib dib dLu dLO -qbI -seC -fIp -cVm +gcu +sJV +jXQ +fxY cfw cdC cdC chu cdC chr -hzP +lil cdw coJ aMz -rsh +qQs aNk aNh -wMt +sVQ aNC -nrS -jZO -xfJ +vNr +qcE +hOF cdw -pBX -iCY +fVi +nbf dTs dTs dTs @@ -95075,18 +95075,18 @@ czP czP czP cAG -tEh -tEh -pUa -ict +lyM +lyM +pIV +evo cub -oiR -hLV +dks +ftZ cHL -nxT -spR -nxT -spR +jkN +osz +jkN +osz cLu dTs dTs @@ -95094,13 +95094,13 @@ dTs dTs dTs cSC -fMn -wMM +wtM +tJe cmW cSC cmW cmW -pDt +skV cSC dTs dTs @@ -95111,52 +95111,52 @@ dbx dbw dof dao -vVJ -kAq -hTc -sVo -xPD -xPD -sTH -sTH -xPD -xPD -xPD -pss -rkj +gOl +mlf +lKJ +ksw +imw +imw +owH +owH +imw +imw +imw +tqI +khf cZu -wbP -suc +cgx +ras dWW dXc clZ crY clY cFH -hry -fji +gBJ +mZn cmH dim -vmT +hKT dXy fDh -glo +vuT dBo -okh -ivj +rxp +nWu dYk -rnW -fyM -mpQ -mWi -mWi -niF +gwE +wcQ +hHw +szp +szp +lpR dIl -piy -lep -jCH -jCH -wGa +njh +jIP +mRA +mRA +oIf dIk dIk dIk @@ -95169,34 +95169,34 @@ acu (192,1,1) = {" acu afP -gQg -oQF -hhl -hhl -hhl -hhl -hhl -ibq -tiC -rRX -tiC -tiC -kQF -jgz +hMk +qth +ihf +ihf +ihf +ihf +ihf +xEq +ldI +iPi +ldI +ldI +bbJ +rkK apg apk apg -lSk +iwz afP -wLq -bMh -vQl -vQl -nKY -lqi -lqi -lqi -hSX +kVp +pbB +ohh +ohh +tTA +ttr +ttr +ttr +edy aIw dTs dTs @@ -95208,8 +95208,8 @@ dTs cov cYx adA -ofb -qin +wvr +mhl adA adA aHC @@ -95217,28 +95217,28 @@ aGp adA adA adA -vol +qBt dTs dTs -dBE -mTv +wnX +ivt adA -eub -veO +gUV +kyq adA adA dTs dTs dTs dTs -xBR -mKt +iJK +dxt adA adA adA adA -tmx -qcZ +mKI +hfe alj azT azT @@ -95248,26 +95248,26 @@ azT azT azT aEf -qcZ -mUS -gZi +hfe +kIr +wNl azT dTs dTs -xBR -mKt +iJK +dxt adA -fGu +hZX bln aMf aUO aMf -gmd +gvH aGc -vPD -gjI -gaz -oMW +ich +sDX +gaw +xuU dLk dib dib @@ -95275,32 +95275,32 @@ dib dib dLu dLO -qbI -owY -fIp -cVm +gcu +obD +jXQ +fxY cfw cge cgL chu cdC chr -hzP +lil coI cdw aMz -fRg -inS -inS -mgB +oih +qYP +qYP +qlM aNC -nrS -jZO -xfJ +vNr +qcE +hOF cdw -wDq -qgD -hMG +mzT +fFJ +dIU dTs dTs dTs @@ -95308,11 +95308,11 @@ dTs dTs dTs cCF -jxz -feS -ljh -qnV -ict +hEq +hmp +xsB +hRG +evo cHL cHL cHL @@ -95328,13 +95328,13 @@ dTs dTs dTs dTs -nyr -sbB -xhK +qTH +oDt +bAl cmH cmH cmH -xSO +vaO dTs dTs dTs @@ -95342,43 +95342,43 @@ dTs dao dao dao -eTF +gMU dao dao dbK -etq -neF -hLx -sTH -sTH -ykH -ykH -hLx -xnt -ykH -sTH -jlL -ogO -cRu -keX +wnC +euO +kcq +owH +owH +dDj +dDj +kcq +oVj +dDj +owH +iXg +oeR +rNk +mQm dWW clZ clZ cUP clZ crW -hry -lPJ -pdn +gBJ +xlg +nhr duC -jhn +whf dXy dXJ -twL +kPT dBr dBr dBr -gIR +qCz dBr dBr dBr @@ -95386,13 +95386,13 @@ dBr dBr dBr dIk -seX -lep -gDl -hst -wdz -lrL -wZH +nsc +jIP +efD +jzf +egM +sKR +pzy dIk dTs dTs @@ -95403,34 +95403,34 @@ acu (193,1,1) = {" acu afP -tkN -ieS -nuZ -efB -efB -yfN -uHZ -muJ -uul -tiC -hTa -ibq +bSE +xdF +tGR +dtl +dtl +fND +gay +lzF +elG +ldI +fsE +xEq afP -yas -jNi -jNi -jNi -efW +yam +rfr +rfr +rfr +psp afP -wLq -vsT -vQl -vQl -nKY -lqi -lqi -lqi -hSX +kVp +tZV +ohh +ohh +tTA +ttr +ttr +ttr +edy aIw dTs dTs @@ -95454,11 +95454,11 @@ adA adA dTs dTs -nRZ +eWR adA eqo -jdp -veO +xko +kyq adA adA dTs @@ -95466,13 +95466,13 @@ dTs dTs dTs azT -nRZ +eWR adA adA adA adA -tmx -qcZ +mKI +hfe azK aAm aAm @@ -95482,74 +95482,74 @@ aAm aAm aAm aEl -qcZ -mUS -gZi +hfe +kIr +wNl dTs dTs dTs dTs -nRZ +eWR adA -fGu +hZX bmz aMf aMf aMf -gmd -vaQ -ygJ -lgb -xwu +gvH +kSp +qSw +wyU +lvL duy -mnq +qXq dib dib dib dib dLu dLO -qbI -owY -fIp -cVm +gcu +obD +jXQ +fxY cfw cdC cdC chu cdC chr -hzP +lil cdw aNr aMz -maQ -maQ -rvZ -maQ +wel +wel +nFo +wel aNC -nrS -jZO -xfJ +vNr +qcE +hOF cdw cnE -wDq -pFi -qgD +mzT +gVF +fFJ dTs dTs dTs dTs dTs cCF -oWy -tEh -ioc -ict -ict +pVY +lyM +rgv +evo +evo cub -eMx -eMx +iAZ +iAZ cCF dTs dTs @@ -95563,70 +95563,70 @@ dTs dTs dTs dTs -nje -sbB -xhK +lix +oDt +bAl cmH cmH cmH -voz +nMS dTs dTs dTs -vIl +drK daO -fvf -jpG -wXy -uEg -tkf -eGb -neF -qPS -sTH -hLx -sTH -ykH -sTH -sTH -hLx -hLx -jlL -jpG -lZP -keX +upF +pRo +iEQ +rPn +xOt +lcE +euO +oRS +owH +kcq +owH +dDj +owH +owH +kcq +kcq +iXg +pRo +vva +mQm cCH cpR cET cUP clZ crW -vvT -xcH -tDq +pSr +pgM +lzr dXx dXz dXy dXJ -hCs -mxD +iGA +yih dBy -yiz -pEB -dsl +rpF +fuv +glp dBy -fNV -fNV -fNV -fNV +lPE +lPE +lPE +lPE dIk -pzL -lep -hst -hst -hst -hst -idT +lcp +jIP +jzf +jzf +jzf +jzf +rDH dIk dTs dTs @@ -95643,12 +95643,12 @@ afP afP afP afP -eur -kXy -ixT -tiC -eur -lML +oUa +mCv +vhX +ldI +oUa +kXt afP afP afP @@ -95656,104 +95656,104 @@ afP afP afP afP -wLq -vsT -hep -pDz +kVp +tZV +jZm +rdQ aIw -xlG -lqi -lqi -hSX +gAI +ttr +ttr +edy aIw dTs dTs dTs dTs dTs -nYY +dlH aOh cov aiJ ajh adA adA -lYH -mrg -mrg -mrg -mrg -mrg -ocA +rOx +hjO +hjO +hjO +hjO +hjO +nAE adA adA -vol -mTv +qBt +ivt adA eqo -jdp -veO +xko +kyq adA -wVo +kgK dTs dTs dTs dTs dTs -mTv +ivt adA oUr adA adA -cZI -vrc -qcZ -qcZ -qcZ -wHX -hhi -qcZ -qcZ -qcZ -qcZ -ygJ -wkY +nhD +fYq +hfe +hfe +hfe +jMr +qEa +hfe +hfe +hfe +hfe +qSw +eOZ dTs dTs dTs dTs dTs -nRZ +eWR adA -vzB -mXd -mXd -mXd -mXd -ics -qIc -mUS +iiJ +fNZ +fNZ +fNZ +fNZ +tze +qFr +kIr adA -qEI -lFA -mEm +vdL +kuO +mOg dLk dib dib dib aPv dLR -sQV -owY -fIp -cVm +whR +obD +jXQ +fxY cfw cdC cdC chq cdc ciy -hzP +lil cdw cdw aMz @@ -95762,28 +95762,28 @@ auA aNB auA aMz -nrS -jZO -xfJ +vNr +qcE +hOF cdw cdw cdw cdw -wDq -qgD +mzT +fFJ dTs dTs dTs dTs cCF -eKn -tEh -scM -tpi -ict -oma -tNj -tNj +wcv +lyM +lhi +jSN +evo +kfQ +drF +drF cCF dTs dTs @@ -95798,69 +95798,69 @@ dTs dTs dTs dTs -nyr -vIl +qTH +drK cmH cmH cmH -xSO +vaO dTs dTs -qLJ -sCS +lbj +kgD daO -kty -tkf -ibi +vUn +xOt +iQp dUd -ehc -uAP -neF +lCI +mOB +euO dbK dbK dbK -sTH -sTH +owH +owH dbK dbK dbK -hLx -rkj +kcq +khf cZu -wbP -hry +cgx +gBJ dWW clZ clZ cUP sXR crW -pZK -qNC -xuM +mHA +hYf +nUY dXy dXA dXy dXJ -hCs -tnQ +iGA +ycW dBy -nUR -pEB -dsl +vta +fuv +glp dFi -tIs -tIs -tIs -vpf +oNb +oNb +oNb +rYI dIk -xey -lep -hst -xDj -hst -hst -idT +hVN +jIP +jzf +tCS +jzf +jzf +rDH dIk dTs dTs @@ -95877,12 +95877,12 @@ dTs dTs dTs afP -dFx -kXy -ixT -tiC -eur -lSa +pkd +mCv +vhX +ldI +oUa +xgk afP dTs dTs @@ -95890,45 +95890,45 @@ dTs dTs dTs apW -wLq -vsT -vQl -lhm +kVp +tZV +ohh +eIU aIw -fNF -fqS -lqi -hSX +yds +pvW +ttr +edy aIw dTs dTs dTs dTs -uHK -mPy +puf +fuw aUq cov cYx adA adA aFN -tmx +mKI akV azU -pnS +vpS azU aDZ -mUS +kIr adA adA adA adA adA adA -eub -veO +gUV +kyq kmU -gZi +wNl dTs dTs dTs @@ -95940,54 +95940,54 @@ adA adA adA adA -sgy -lgb -lgb -lgb -uAs -vWA -lgb -lgb -lgb -lgb -wkY +jNZ +wyU +wyU +wyU +lpi +fNS +wyU +wyU +wyU +wyU +eOZ adA dTs dTs dTs dTs dTs -nRZ +eWR adA -cZI -lgb -lgb -lgb -lgb -lgb -lgb -mSv +nhD +wyU +wyU +wyU +wyU +wyU +wyU +iwU dTs -jZi -pNs -xpX -mnq +hVR +frw +uJg +qXq dib dib dib dMq -fIp -ymd -xdg -fIp -cVm +jXQ +vLr +uIB +jXQ +fxY cfw cdC cdC chr -ciX -nxP -wBn +vxB +nbN +wLE cdw cdw aMz @@ -95996,28 +95996,28 @@ aMz aNC aNC aMz -nrS -jZO -xfJ +vNr +qcE +hOF cdw cdw cdw coI cdw -wDq -pFi -pFi -pFi +mzT +gVF +gVF +gVF dTs cCF -fRK -scM -nOS -nOS -tpi +uuF +lhi +qHz +qHz +jSN cub -oiR -hLV +dks +ftZ cCF dTs dTs @@ -96033,68 +96033,68 @@ dTs dTs dTs dTs -sbB -xhK +oDt +bAl cYj czQ cmH -xSO +vaO dTs -vIl +drK cmH daO -mDc -kMI -eGb -gNV -jpG +qdI +rIy +lcE +lta +pRo dbK -neF +euO dbK dbK dbK -sTH -sTH +owH +owH dbK dbK dbK -hLx -rkj +kcq +khf cZu -wbP -oQf +cgx +iDF dWW dWZ dWZ cUP clZ crW -hry -vgn -erp +gBJ +iDf +ffQ duC -nKM +rQn dXD dXJ -hCs -mIe +iGA +jzB dBy -tRH -nTk -dsl +suD +iFM +glp dFi -vgJ -tIs -tIs -tIs -veQ -hst -lep -jJb -jJb -wQC -jJb -jJb +cui +oNb +oNb +oNb +oCb +jzf +jIP +stx +stx +qAQ +stx +stx dIk dTs dTs @@ -96111,12 +96111,12 @@ dTs dTs dTs afP -eur -kXy -ixT -tiC -eur -lSa +oUa +mCv +vhX +ldI +oUa +xgk afP dTs dTs @@ -96124,21 +96124,21 @@ dTs dTs dTs apW -wLq -vsT -vQl -lhm +kVp +tZV +ohh +eIU aIw -mWe -xwV -xwV -glI +wkT +hSt +hSt +aVq aIw dTs dTs dTs dTs -moJ +bhd aOh aOh cov @@ -96146,29 +96146,29 @@ cYx adA ajC adA -tmx +mKI alj azT -ksf -oWn +jSR +sRN aEf -mUS +kIr adA adA adA aHR adA adA -eub -veO -wVo -cKm +gUV +kyq +kgK +gVh dTs dTs dTs dTs dTs -mKt +dxt adA kmU adA @@ -96178,71 +96178,71 @@ adA adA adA adA -eub -veO +gUV +kyq adA adA adA adA adA adA -gZi +wNl dTs dTs dTs dTs -xBR -oBs -oBs -oBs -mKt +iJK +ops +ops +ops +dxt dTs dTs -mKt -wVo +dxt +kgK dTs dTs -gaz -rPE -pJF -mnq +gaw +qGv +evG +qXq dib dib dib dMq -fIp -xmr -jZO -fIp -cVm +jXQ +sgP +qcE +jXQ +fxY csH cdc cdc ciy -cVm -fIp -sPc -ePR -ePR -gUu -fIp -fIp -fIp -fIp -fIp -nrS -jZO -sPc -ePR -ePR -ePR -ePR -ePR -ePR -ePR -ePR -ePR -fGA +fxY +jXQ +gZY +orR +orR +yhp +jXQ +jXQ +jXQ +jXQ +jXQ +vNr +qcE +gZY +orR +orR +orR +orR +orR +orR +orR +orR +orR +oql cCF cCF cub @@ -96268,67 +96268,67 @@ dTs dTs dTs dTs -sbB -xhK +oDt +bAl cmH cmH cmH -xSO -sCS +vaO +kgD cmH daO -kRN -kMI -mYV -gNV -jpG -mKB -neF -hLx -hLx -hLx -sTH -sTH -sTH -hLx -sTH -hLx -jlL -ikT -rYz -keX +vYL +rIy +iQt +lta +pRo +mmU +euO +kcq +kcq +kcq +owH +owH +owH +kcq +owH +kcq +iXg +pbx +rny +mQm dWW dXe dXg dXm clZ crW -hry -fji +gBJ +mZn cmH dim -lGn +imf nlH dzw -hCs -yhG +iGA +qKc dBy -pEG -dsl -pEB +nfB +glp +fuv dFi -tIs -qpf -tIs -tIs +oNb +nON +oNb +oNb dIk -piy -lep -jJb -nWV -xJn -nWV -jJb +njh +jIP +stx +gru +doR +gru +stx dIk dTs dTs @@ -96345,12 +96345,12 @@ dTs dTs dTs afP -vJb -iCM -ixT -tiC -ncg -nLN +srX +uqW +vhX +ldI +pWp +nfZ afP dTs dTs @@ -96358,21 +96358,21 @@ dTs dTs dTs apW -wLq -vsT -vQl -lhm +kVp +tZV +ohh +eIU aIw -rvZ -maQ -maQ -wpx +nFo +wel +wel +gTT aIw dTs dTs dTs dTs -mPy +fuw aOh aOh cov @@ -96380,29 +96380,29 @@ cYx adA adA adA -tmx +mKI alj aAe -rBf +sXE azT aEf -hhF -ocA +iJM +nAE adA kmU adA aGq adA -eub -veO -fYV +gUV +kyq +hkU azT dTs dTs dTs dTs dTs -nRZ +eWR adA adA adA @@ -96412,21 +96412,21 @@ aHR adA adA adA -eub -veO +gUV +kyq adA adA adA adA kmU adA -vol -uCj +qBt +jSG dTs adA -vol -ncR -uCj +qBt +nvF +jSG azT azT dTs @@ -96436,61 +96436,61 @@ dTs dTs dTs dTs -gaz -rPE -pJF -mnq +gaw +qGv +evG +qXq dib dib dib dMq -tTs -bPr -cZN -hQV +jAw +qFF +rLe +uhn cLk -qYh -hQV -hQV -hQV +tyk +uhn +uhn +uhn cLk -eHE -nxP -mJY -mJY -nxP -nxP -nxP -nxP -nxP -nxP -cde -kms -vxc -vxc -vxc -vxc -vxc -vxc -vxc -vxc -xGa -xGa -xGa -xGa -xGa -xGa -xGa -xGa -xGa -xGa -xGa -xGa -vCS -nDZ -nDZ -tEk -mDb +eCe +nbN +jfg +jfg +nbN +nbN +nbN +nbN +nbN +nbN +rMw +uki +vXY +vXY +vXY +vXY +vXY +vXY +vXY +vXY +pbS +pbS +pbS +pbS +pbS +pbS +pbS +pbS +pbS +pbS +pbS +pbS +tQs +otR +otR +jJi +tVu dTs dTs dTs @@ -96503,7 +96503,7 @@ dTs dTs dTs dTs -sCS +kgD cmH cmH cqT @@ -96511,58 +96511,58 @@ cmH cmH cmH daO -uaW -kMI -mYV -tRV -jpG -mKB -neF -sTH -sTH -dfg -xnt -sTH -sTH -sTH -sTH -sTH -wLk -tkf -lZP -gTc +lOy +rIy +iQt +nDC +pRo +mmU +euO +owH +owH +kiA +oVj +owH +owH +owH +owH +owH +ubr +xOt +vva +mOT dWW dWZ dWZ dXm clZ crW -hry -fji +gBJ +mZn cmH dim -lJz +uwM dXE dzw -hCs -sfX +iGA +gHF dBy -pEG -pEB -pEB +nfB +fuv +fuv dBy -heB -heB -heB -heB +rnP +rnP +rnP +rnP dIk -qcj -lep -jJb -xJn -sen -nWV -jJb +gwP +jIP +stx +doR +lJc +gru +stx dIk dTs dTs @@ -96581,8 +96581,8 @@ dTs afP afP ajl -ixT -uMQ +vhX +qxh ajl afP afP @@ -96592,10 +96592,10 @@ dTs dTs apW apW -wLq -vsT -vQl -eRX +kVp +tZV +ohh +oVc aIw aIw auA @@ -96605,8 +96605,8 @@ aIw dTs dTs dTs -mPy -oJg +fuw +dfZ cYu cZo cZp @@ -96614,29 +96614,29 @@ cZn adA adA adA -tmx +mKI alj -xZG +hKl aBy azT aEh -rYJ -xcf -iSo -iSo -iSo -iSo -iSo +jTW +weq +sNx +sNx +sNx +sNx +sNx aFa -veO -vol -uCj +kyq +qBt +jSG azT dTs dTs dTs azT -nRZ +eWR adA adA aHC @@ -96646,8 +96646,8 @@ adA adA adA adA -eub -uex +gUV +mzn eqo aGZ adA @@ -96655,14 +96655,14 @@ adA adA adA adA -vol -uCj +qBt +jSG adA adA adA -vol -mxL -uCj +qBt +iRL +jSG dTs dTs dTs @@ -96670,10 +96670,10 @@ dTs dTs dTs dTs -xwu -tRb -pJF -mnq +lvL +gNh +evG +qXq dib dib dib @@ -96689,10 +96689,10 @@ arw arw arw abe -wnT -noi -jZO -mqJ +qQv +vLg +qcE +oEH aOy aOy aOz @@ -96708,19 +96708,19 @@ aTG aTG aTG aTG -mDb -mDb -mDb -mDb -pFT -sjD -sjD -sjD -sjD -sjD -sjD -gAU -tMq +tVu +tVu +tVu +tVu +jfL +jQq +jQq +jQq +jQq +jQq +jQq +vJa +oyq bWK bXH bXN @@ -96745,58 +96745,58 @@ dTx dzE cmH daO -rkY -kMI -kfD +obs +rIy +eLQ dbK -jpG -mKB -hTc -njS -njS -njS -sTH -sTH -sTu -njS -njS -rkj -rkj +pRo +mmU +lKJ +yiB +yiB +yiB +owH +owH +mQk +yiB +yiB +khf +khf cZu -wbP -hry +cgx +gBJ cCH dWZ dWZ cUP clZ crW -hry -lWM +gBJ +pKv cmH dim -jsE +ttn dXE dzx -urb -owd +voT +gpC dBy -pEG -dsl -dsl +nfB +glp +glp dBy dBy dBy dBy dBy dIk -oJD -lep -uUw -sen -sen -xJn -jJb +jQj +jIP +wJt +lJc +lJc +doR +stx dIk dTs dTs @@ -96813,24 +96813,24 @@ dTs dTs dTs apW -pSv -fEB -kgu -vQl -bqB -wHw +oSr +gJl +xsG +ohh +opP +syb apW apW apW apW apW apW -pSv -fEB -vsT -vQl -bqB -wHw +oSr +gJl +tZV +ohh +opP +syb aJd aJd aJd @@ -96840,7 +96840,7 @@ aJd aJd gab aOh -rYd +sGt cYv cgR cgR @@ -96848,29 +96848,29 @@ dwG adA adA dZl -tmx +mKI alj -ihD -wTL -oWn +wlL +bEX +sRN aEj -hBT -wJE -hJD -hJD -hJD -hJD -hJD -hJD -riX +hCK +qjl +ouH +ouH +ouH +ouH +ouH +ouH +ugo aFN -vol -uCj +qBt +jSG azT dTs dTs -kmN -mTv +qDx +ivt adA aGr aFl @@ -96880,8 +96880,8 @@ aHS kmU adA adA -eub -uex +gUV +mzn eqo adA adA @@ -96890,43 +96890,43 @@ adA adA adA adA -vol +qBt aKE aKQ aKQ aKQ aKQ -tsO -mPS -mxL +wur +lnE +iRL aLP aLV dTs dTs dTs -qEI -rPE -pJF -mnq +vdL +qGv +evG +qXq dib dib dib dMq -sPc -ePR -ePR -ePR -ePR -edE -ePR -ePR -ePR -ePR -gUu -fIp -noi -lYy -fIp +gZY +orR +orR +orR +orR +pLj +orR +orR +orR +orR +yhp +jXQ +vLg +qzr +jXQ aOz aQw aOH @@ -96939,7 +96939,7 @@ aQw aTG aUZ aXg -dhS +mWM aUZ aTG aUU @@ -96953,8 +96953,8 @@ bCK bjV bjV bKI -tZe -tMq +rwH +oyq bWL bXI bYd @@ -96969,8 +96969,8 @@ dTs dTs cmH dTs -qLJ -sCS +lbj +kgD cmH cmH cAL @@ -96979,58 +96979,58 @@ wQZ dTx cmH daO -kYA -kMI -kfD -kqb -jpG -mKB -hTc -pXY -lfb -lfb -sTH -sTH -pBu -pBI -lfb -pAV +ecC +rIy +eLQ +eCj +pRo +mmU +lKJ +eoo +sug +sug +owH +owH +lDa +sFz +sug +vdf dbK dbK -wbP -hry +cgx +gBJ cCH dXe dXg cUP clZ crW -hry -fji +gBJ +mZn cmH dim -jWc +iBO dXE dXN -nWn +jvW dBy dBy dBy -xPE +xxa dBy dBy -mqG -mqG -mqG -mqG +tuZ +tuZ +tuZ +tuZ dIk -pes -lep -jJb -sen -gGF -sen -vBT +gOw +jIP +stx +lJc +ijy +lJc +riz dIk dTs dTs @@ -97047,34 +97047,34 @@ dTs dTs dTs apW -wLq -vQl -kgu -hep -vQl -bqB -dAp -tfh -tfh -tfh -tfh -dAp -fEB -vQl -vsT -vQl -vQl -bqB +kVp +ohh +xsG +jZm +ohh +opP +fmJ +kib +kib +kib +kib +fmJ +gJl +ohh +tZV +ohh +ohh +opP aJe -etA -gZP -oaH -ugO -oaH -etA +rqA +gZO +rlJ +ovT +rlJ +rqA oUN -xcW -kOr +tEu +kNU cYx aOh aOh @@ -97082,14 +97082,14 @@ adA adA adA adA -tmx +mKI alj -gOk -sOB -oWn +nXt +mWH +sRN aEf -ygJ -wkY +qSw +eOZ adA adA adA @@ -97099,11 +97099,11 @@ adA adA adA adA -vol -uCj +qBt +jSG dTs dTs -nRZ +eWR adA adA aFl @@ -97114,8 +97114,8 @@ aFT adA adA adA -eub -veO +gUV +kyq adA adA adA @@ -97126,11 +97126,11 @@ eqo adA kmU aKF -qcZ -qcZ -qcZ -qcZ -qcZ +hfe +hfe +hfe +hfe +hfe aLC aLI adA @@ -97138,42 +97138,42 @@ aLW aMf aLV aLP -qEI -rPE -pJF -mnq +vdL +qGv +evG +qXq dib dib dib dMq -fIp -fIp -gAO -gAO -gAO -gAO -gAO -uPn -vVd -vVd -vVd -vVd +jXQ +jXQ +neG +neG +neG +neG +neG +iOn +wMs +wMs +wMs +wMs aNq aNF -sFs -exB -ivt -ivt -ivt -ivt -ivt -ivt -ivt +xbC +jQm +wGi +wGi +wGi +wGi +wGi +wGi +wGi bfD aTM -uJM -qvu -jUm +nTC +iSd +tMr bho aTM aYg @@ -97186,14 +97186,14 @@ bgl bgl bgl bgl -fGA -vQC -tMq +oql +oJV +oyq bWL bTW bYe bYK -jJM +msG bjV dTs dTs @@ -97203,7 +97203,7 @@ dTs cmH cmH cmH -sCS +kgD cmH cmH cPz @@ -97213,58 +97213,58 @@ wQZ dOw cmH daO -wQh -kMI -kfD -kqb -jpG -mKB -hTc -iQu -fNr -pXY -sTH -hLx -lfb -iQu -qOf -rkj +yfP +rIy +eLQ +eCj +pRo +mmU +lKJ +hZL +tCf +eoo +owH +kcq +sug +hZL +izj +khf cZu cmH -tFV -hry +jKT +gBJ cCH dWZ clZ cUP clZ crW -hry -fji +gBJ +mZn cmH dim -lJz +uwM dyp dzz -vFg +woe dBy -hBx -gLG -ePh -hBx -vAl -oWK -pXM -pXM -uno +oqD +xxu +reB +oqD +wVh +tCa +xln +xln +iRT dIk -jEg -fog -jJb -sen -sen -sen -jJb +iJN +sZA +stx +lJc +lJc +lJc +stx dIk dTs dTs @@ -97281,33 +97281,33 @@ dTs dTs dTs apW -wOZ -vQl -sSU -rqZ -rqZ -rqZ -rqZ -rqZ -rqZ -rqZ -rqZ -rqZ -rqZ -rqZ -teT -sCc -rqZ -rqZ -mzI -nIZ -vYa -iOZ -fIW -fIW -fIW -mls -vBg +bAg +ohh +qBg +jMc +jMc +jMc +jMc +jMc +jMc +jMc +jMc +jMc +jMc +jMc +dPw +tHz +jMc +jMc +itP +qAm +mYg +kyX +sqo +sqo +sqo +gfF +quo aCj cZn aij @@ -97316,13 +97316,13 @@ adA adA aeo adA -tmx +mKI alj -gGS -jPK +uSK +pGj azT aEf -mUS +kIr adA adA adA @@ -97334,10 +97334,10 @@ adA adA adA adA -vol +qBt dTs dTs -mTv +ivt adA adA aFn @@ -97360,74 +97360,74 @@ ofB aKe adA aKF -qcZ -dwO -jzI -wND -qcZ +hfe +qIG +rUB +jXs +hfe aLC jVv aLQ aLZ aMf -qcZ +hfe aLP -jZi -rPE -pJF -mnq +hVR +qGv +evG +qXq dib dib dib dMq -fIp -fYF -mGH -mGH -mGH -owc -fIp -xmr +jXQ +fKU +iYb +iYb +iYb +ndB +jXQ +sgP ciu -vxq -vxq -vxq -vxq -vxq -uHM -ivt -ivt -ivt -oiQ -evX -imI -ivt -ivt +nAM +nAM +nAM +nAM +nAM +iYc +wGi +wGi +wGi +xBF +jXa +gHA +wGi +wGi aOH aTM -gcH -fNp -qvu +tTe +qDP +iSd bgZ aTM aYD -faz -oUA +pWP +tjj bfX bgo -owW -pgk -uwX -sgI +rlq +qbk +gFz +jmK bgl -lAP -uaY -wGz +pfR +qmX +rxD bWL bTW bYe bYK -wCv +iTE bZE bZN bXH @@ -97447,58 +97447,58 @@ dOw cQK cmH daO -hYx -kMI -mYV +gBm +rIy +iQt dbK -jpG -mKB -hTc -sVo -xPD -xPD -sTH -sTH -sVo -sVo -sVo -rkj +pRo +mmU +lKJ +ksw +imw +imw +owH +owH +ksw +ksw +ksw +khf cZu cmH -tFV -hry +jKT +gBJ cCH dWZ clZ mgw clZ crW -hry -fji +gBJ +mZn cmH dim -las +bcl dwI dXO dAK -wKE -xDt -xDt -rub -rub -xDt -tIN -rub -rub -rub -jGI -fZh -oHW -jJb -xJn -sen -xJn -jJb +nRw +wRw +wRw +tvC +tvC +wRw +lOx +tvC +tvC +tvC +igS +fZY +pem +stx +doR +lJc +doR +stx dIk dTs dTs @@ -97515,48 +97515,48 @@ dTs dTs dTs apW -wLq -vQl -vQl -vQl -vQl -vQl -vQl -vQl -vQl -vQl -vQl -vQl -vQl -hep -vQl -vQl -vQl -vQl -uhb -oTe -vJd -wBV -mbY -nEb -nEb -qsf -oCg +kVp +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +jZm +ohh +ohh +ohh +ohh +dLc +wIe +eAx +mss +hIJ +iBX +iBX +qkO +nDT aOY coX aik -kLZ -oBs -mKt +iss +ops +dxt adA adA -tmx +mKI alj azT -nYK +uUi azT aEf -mUS +kIr adA adA adA @@ -97569,8 +97569,8 @@ adA kmU adA adA -vol -mTv +qBt +ivt adA adA adA @@ -97594,74 +97594,74 @@ aHx aGn adA aKF -qcZ -sHv -lHV -dro -qcZ +hfe +omU +ndQ +kci +hfe aLC adA aLI -tmx -qcZ +mKI +hfe aMi aLP -gaz -eoh -qGp -mnq +gaw +uKV +kqa +qXq dib dib dib dMq -mDb -fDi +tVu +lrZ atC aeH aft ahA -mDb -xmr -jZO -fIp -fIp -xOV -fIp -fIp -gAO +tVu +sgP +qcE +jXQ +jXQ +hNt +jXQ +jXQ +neG aOz aOH -ivt -egb +wGi +pRk aSD -yaS -wfJ -ygD +jRf +fSR +yak aOI aTM -pNw -gMI -qvu -qvu -rXa -faz -msn -mhE -faz +vqE +rnu +iSd +iSd +gkA +pWP +onb +lQA +pWP bgs bgE bjv bka -hcy +hwK bgl -tMq +oyq bTW bTW bWL bXI bYg bYK -mDb +tVu bWL bTX bTW @@ -97681,58 +97681,58 @@ csb cpT cmH daO -uvV -tkf -nJe -tmJ -khH -pbx -yfE -ihi -ihi -ihi -ihi -kok -hLx -hLx -hLx -rkj +tFh +xOt +nMT +hJS +xSr +lim +blA +uNl +uNl +uNl +uNl +xYt +kcq +kcq +kcq +khf cZu cmH -ioq -hry +njA +gBJ cCH cpR cET dXm clZ crW -hry -dnk -pfz +gBJ +mFD +pmU duC -mew +lui cZV pEh -xhC +qUF dBy -hBx -ekA -ekA -ekA -pXM -ekA -ePh -ekA -ekA +oqD +ecF +ecF +ecF +xln +ecF +reB +ecF +ecF dIk -piy -hst -jJb -sen -xJn -jYa -jJb +njh +jzf +stx +lJc +doR +vyB +stx dIk dTs dTs @@ -97749,48 +97749,48 @@ dTs dTs dTs apW -wLq -vQl -vQl -vQl -vQl -pDz -sVE -sVE -sVE -iHd -sVE -sVE -fqJ -vQl -vQl -vQl -vQl -pDz +kVp +ohh +ohh +ohh +ohh +rdQ +pIR +pIR +pIR +dzI +pIR +pIR +inD +ohh +ohh +ohh +ohh +rdQ aJe -bpZ +xPQ avh -wBV -wBV -mbY -eZJ +mss +mss +hIJ +xrh oUN -hdQ -myI +pjg +uTD coX aOh -jBS +wro dTs -pla +pUk adA adA -tmx +mKI azK aAm aAm aAm aEl -mUS +kIr kmU adA adA @@ -97828,36 +97828,36 @@ aGd aGn adA aKF -qcZ -jGH -gxE -frg -qcZ +hfe +pyJ +rGO +niX +hfe aLC adA aLR -pNO -qcZ -qcZ +qLz +hfe +hfe aLP -gaz -kjQ +gaw +iZE dJT -mnq +qXq dib dib dib -qXv -mDb -tcD +oDV +tVu +ljK dMf dib atW ahA -mDb -xmr -jZO -fIp +tVu +sgP +qcE +jXQ aOy aOy aOz @@ -97865,37 +97865,37 @@ aOz aPs aOy aOH -ivt -egb +wGi +pRk aPN -wBg -ivt -wTw +ffq +wGi +hEi aOH aTM -pNT -qvu -qvu -gMI -qvu -vVy -faz -gNy +pXF +iSd +iSd +rnu +iSd +vnS +pWP +vRw bad bgo -bTg -qYw -qPn -mOj +xhF +gwA +mjM +gpG bgl -tMq +oyq bTW bWE bXx bTW bYh bYK -mDb +tVu bWL bTW bTX @@ -97915,58 +97915,58 @@ cmH cmH cmH daO -kqO -tkf -jmj -kqb -jbD -mKB -tkf -njS -sTu -sTu -sTH -sTH -njS -njS -njS -rkj +hME +xOt +iUf +eCj +piM +mmU +xOt +yiB +mQk +mQk +owH +owH +yiB +yiB +yiB +khf dbK cmH -tFV -hry +jKT +gBJ cCH clZ clZ dXm clZ crW -vvT -rMu -kbI +pSr +gUU +hTd dwH ltE dwI dax -hCs +iGA dBy -pcl +uDG dBy -pcl +uDG dBy -pcl +uDG dBy -pcl +uDG dBy -pcl +uDG dIk -uqR -hst -jJb -nDu -nWV -nWV -jJb +cLf +jzf +stx +iiZ +gru +gru +stx dIk dTs dTs @@ -97983,52 +97983,52 @@ dTs dTs dTs apW -mlP -fqJ -vQl -vQl -pDz -hAV +kqR +inD +ohh +ohh +rdQ +mIj anP anP anP anP anP anP -qZP -sVE -iHd -sVE -sVE -hAV +eEy +pIR +dzI +pIR +pIR +mIj aJd -oCn +haL avh agn -wBV -fyv -vLu +mss +yaf +uwJ gab aOh -rYd -ipi +sGt +uWJ dTs -jJe +mSs dTs -xBR -mKt +iJK +dxt adA -cZI -lgb -lgb -lgb -lgb -lgb -wkY +nhD +wyU +wyU +wyU +wyU +wyU +eOZ adA -wVo -oBs -mKt +kgK +ops +dxt aES adA adA @@ -98058,15 +98058,15 @@ eqo adA adA adA -eub +gUV aGn aHT aKF -qcZ -xks -wgX -qcZ -qcZ +hfe +rMn +eBu +hfe +hfe aLF adA adA @@ -98074,24 +98074,24 @@ aMd aMf aMk aLV -gaz -kjQ -jYG -bCa +gaw +iZE +sit +rkJ dib dib dib adH -mDb -tcD +tVu +ljK dMf dib atW ahA -mDb -tUK -qxq -fIp +tVu +oQL +oXQ +jXQ aOy aOE aOH @@ -98099,37 +98099,37 @@ aOH aPt aOH aOH -ivt -egb +wGi +pRk aPN -wBg -ivt -oxq +ffq +wGi +jvG aOH aTM -ouD -fNp -qvu +qGy +qDP +iSd bhq aTM bad -faz -hqJ +pWP +mGm bfY bgl bgo -pTz +pmm bgo bgl bgl -tMq +oyq bTW bWE bWL bTW bYh bYK -mDb +tVu bWL bTW bTW @@ -98149,58 +98149,58 @@ dIi cmH cmH daO -tTt -tkf -jmj -kqb -jpG +hGd +xOt +iUf +eCj +pRo dbK -tkf -ekt -oIz -irA -sTH -sTH -gwu -jES -pXY -rkj +xOt +rSK +fyY +ikP +owH +owH +sPg +wDY +eoo +khf cZu cmH -tFV -hry +jKT +gBJ cCH cWc dXj dXn cma cXw -thF -wUV -qso +sjP +ijl +fpL dwJ vOv dwJ daX -hCs +iGA dBy -rJV +iwZ dBy -rJV +iwZ dBy -rJV +iwZ dBy -rJV +iwZ dBy -rJV +iwZ dIk -rZv -hst -qyJ -jJb -jJb -sUO -jJb +qHr +jzf +fIz +stx +stx +ubU +stx dIk dTs dTs @@ -98218,16 +98218,16 @@ dTs dTs apW apW -tuf -hep -vQl -eRX +phD +jZm +ohh +oVc anP anP -vUd -ljW -vUd -ljW +ycc +rQv +ycc +rQv anP anP anP @@ -98236,36 +98236,36 @@ anQ anQ anP anP -pXa +gIf avh awx -wBV -wBV -nHb +mss +mss +kaD oUN aOh -rYd -wMI +sGt +swL dTs dTs dTs azT -nRZ +eWR adA adA kmU adA adA adA -wVo -oBs -oBs -cKm +kgK +ops +ops +gVh azT -xBR -oBs -oBs -mKt +iJK +ops +ops +dxt aFn aFR kiP @@ -98274,71 +98274,71 @@ aFP adA adA eqo -lyh -mKt +dfF +dxt adA adA adA -wVo -oBs -mKt +kgK +ops +dxt aHC -wVo -oBs -mKt +kgK +ops +dxt adA eqo eqo adA adA kmU -eub +gUV aGl aJh aKG aKR -sHv -gxE -trr -mSK +omU +rGO +wTS +fhd aLG -iSo -kLT +sNx +jQJ aLZ aMg fbK -qcZ -gaz -pbr -mnq +hfe +gaw +koU +qXq dib dib dib dib adH aof -fDi +lrZ asT dib atW ahA -mDb -tUK -qxq -fIp +tVu +oQL +oXQ +jXQ aOz aOH -ivt -ivt -reM -ivt -ivt -ivt -egb +wGi +wGi +jTL +wGi +wGi +wGi +pRk aPN -khf -wfJ -rxm +scz +fSR +elp aOH aTG aWg @@ -98347,23 +98347,23 @@ bgZ bhr aTG aUU -faz -qoN +pWP +wQk aUU aUU -nFf +njb bka bka blf bgl -cgP +sRv bTW bTX bWL bXJ bYg bYK -mDb +tVu bWL bZO cae @@ -98373,45 +98373,45 @@ cvI cvI cEY cmH -sUb -pfz -pfz -pfz -pfz -pfz -pfz -tPL +pQt +pmU +pmU +pmU +pmU +pmU +pmU +xfT cmH daO -smD -tkf -qHg +foh +xOt +klS dbK -jpG -jpG -jpG -pXY -pXY -pBI -hLx -hLx -pXY -pXY -nwW -rkj +pRo +pRo +pRo +eoo +eoo +sFz +kcq +kcq +eoo +eoo +gLW +khf cZu cmH -tFV -hry +jKT +gBJ cCH dpH cET dXm clZ crW -hry -eeB -oIg +gBJ +mum +kqB jCJ jCJ jCJ @@ -98452,45 +98452,45 @@ dTs dTs dTs apW -wLq -vQl -vQl -lhm +kVp +ohh +ohh +eIU anP -gFB -tNu -nwR -nwR -nwR -nSu -nwR +xIl +hTZ +wag +wag +wag +gRc +wag aqQ -woT -fCm -ttH -gKJ +qOR +oBv +mTB +cty anQ -oCn +haL avh -wBV -wBV -wBV -nHb +mss +mss +mss +kaD oUN cTE -rYd -wMI +sGt +swL dTs dTs dTs dTs dTs -oBs -mKt +ops +dxt adA adA adA -wVo +kgK dTs dTs dTs @@ -98499,8 +98499,8 @@ azT azT azT azT -xBR -mKt +iJK +dxt aFT aFn aFR @@ -98508,71 +98508,71 @@ aHE aGr adA adA -gZi -xBR -mKt +wNl +iJK +dxt adA -wVo -cKm +kgK +gVh dTs dTs -oBs -cKm +ops +gVh dTs dTs -mKt +dxt adA adA adA adA adA -eub +gUV aFf aGf aKJ aKS -fAT -raT -nLT -jQi +gsW +nmU +lii +lyU leZ aLJ -fxS +gED aMe -vrc -qcZ -qcZ -gaz +fYq +hfe +hfe +gaw duy -mnq +qXq dib dib dib dib adH aof -fDi +lrZ asT dib atW ahA -mDb -tUK -qxq -fIp +tVu +oQL +oXQ +jXQ aOz aOH -ivt -oiQ -hWe -mTt -imI -ivt -pKA -drA -koS -ivt -iQA +wGi +xBF +hiZ +fQK +gHA +wGi +xud +eLD +oPh +wGi +ycm aOH aUc aUc @@ -98581,23 +98581,23 @@ aUR aUc aTG baf -faz -faz +pWP +pWP bfZ aVn big -fTe -fTe +xTu +xTu bli biW -tMq +oyq bTW bTX bXx bTX bYh bYK -mDb +tVu bWL bTW bTX @@ -98607,50 +98607,50 @@ dWZ clZ cEY cmH -tFV -kMB -svI -svI -svI -iTT -tDq -fji +jKT +myQ +pnV +pnV +pnV +kuz +lzr +mZn cmH daO -esp -jpG -qHg -ilK -jpG -izm -jpG -sVo -sVo -sVo -hLx -hLx -sVo -sVo -sVo -rkj +xwA +pRo +klS +hHG +pRo +sLH +pRo +ksw +ksw +ksw +kcq +kcq +ksw +ksw +ksw +khf cZu cmH -tFV -hry +jKT +gBJ hIO dpI dXf dXo cmb cXx -hry -fji +gBJ +mZn cmH xOb cmH -weZ +rxg bKj -tVF +xnB cFm cmH cmH @@ -98686,45 +98686,45 @@ dTs dTs dTs apW -wLq -vQl -vQl -lhm +kVp +ohh +ohh +eIU anP -gFB -whP -kZM -kZM -kZM -hpI -kZM -hCX -kZM -fcW -kZM -rrJ +xIl +wbz +lMP +lMP +lMP +tba +lMP +xJD +lMP +xqg +lMP +gmT atv -oCn -neo -wBV -wBV +haL +uPV +mss +mss awx -nHb +kaD oUN aOh -rYd -wMI +sGt +swL dTs dTs dTs dTs dTs dTs -xBR -mKt +iJK +dxt aAr -wVo -cKm +kgK +gVh dTs dTs dTs @@ -98734,19 +98734,19 @@ dTs azT dTs azT -xBR -oaS +iJK +khk adA aGp aGr adA -wVo -oBs +kgK +ops dTs dTs -xBR -oBs -cKm +iJK +ops +gVh azT dTs dTs @@ -98754,20 +98754,20 @@ dTs azT dTs dTs -xBR -oBs -pus +iJK +ops +pDT adA adA adA -eub -veO +gUV +kyq adA aKF -qcZ -qcZ -qcZ -qcZ +hfe +hfe +hfe +hfe aLC adA adA @@ -98776,55 +98776,55 @@ aLI aMh aMf aMf -gaz +gaw duy -mnq +qXq dib dib dib dib adH aof -fDi +lrZ asZ atB atX ahA -mDb -tUK -qxq -fIp +tVu +oQL +oXQ +jXQ aOz aOH -oxq -egb +jvG +pRk aPN aPN -pHi -ivt -ivt -ivt -nqf -ivt -ivt +tOW +wGi +wGi +wGi +xgu +wGi +wGi bfF aUc -iTm -jlI -qTd +xAN +hGa +gwu aPL aUU baL -faz -faz +pWP +pWP bad aVn big -esl -fTe +sYa +xTu bli biW -tMq +oyq bTX bWF bXx @@ -98847,8 +98847,8 @@ clY clY clY nsf -hry -fji +gBJ +mZn cmH daO dbK @@ -98856,38 +98856,38 @@ dbK ddm dbK dbK -mHD -jpG -jpG -jpG -jpG -jpG -mHD -jpG -jbD -jpG -pAV +gGW +pRo +pRo +pRo +pRo +pRo +gGW +pRo +piM +pRo +vdf dbK cmH -tFV -hry +jKT +gBJ cWe dpJ dXa dXp -cRu -rMu +rNk +gUU cto -lGK -dst -eSu -dst +ueR +hwv +iNp +hwv bDZ bKk cxl -nla -dst -diU +ngQ +hwv +wUf dTs dTs dTs @@ -98920,34 +98920,34 @@ dTs dTs dTs apW -wOZ -vQl -vQl -lhm +bAg +ohh +ohh +eIU anP -sMD -whP -kZM -kZM -kZM -kZM -kZM -hCX -kZM -fcW -hpI -jiZ +uuK +wbz +lMP +lMP +lMP +lMP +lMP +xJD +lMP +xqg +tba +jmm anQ -oCn -neo -wBV -wBV +haL +uPV +mss +mss awx -nHb +kaD oUN aOh -rYd -hwh +sGt +qcT dTs dTs dTs @@ -98955,8 +98955,8 @@ dTs dTs dTs dTs -xBR -oBs +iJK +ops dTs dTs dTs @@ -98969,12 +98969,12 @@ dTs dTs dTs azT -nRZ +eWR adA adA adA adA -gZi +wNl dTs dTs dTs @@ -98990,12 +98990,12 @@ dTs dTs dTs dTs -nRZ +eWR adA adA adA -umH -iul +xvF +mWL adA aKK aLe @@ -99010,55 +99010,55 @@ adA aMh aLP aMg -gaz +gaw duy -mnq +qXq dib dib dib dib adH -mDb -wMN -lDS -lDS -lDS -vPb -mDb -tUK -qxq -mDb +tVu +sxJ +oiR +oiR +oiR +dnS +tVu +oQL +oXQ +tVu aOz aOI -oxq -egb +jvG +pRk aPN aQl -pHi -ivt -oiQ -oqE -vrb -ivt -ivt +tOW +wGi +xBF +njv +kgn +wGi +wGi aOH aUc -iTm -jlI -jlI +xAN +hGa +hGa aPL aUU baM -faz -msn -faz -iJB -mzv -mzv -mzv -fTe -rwy -xjp +pWP +onb +pWP +weY +pTF +pTF +pTF +xTu +wvQ +utc bTZ bWF bXx @@ -99081,8 +99081,8 @@ cSa cma dem crW -hry -fji +gBJ +mZn cmH cmH dbL @@ -99099,29 +99099,29 @@ dbK dbK dbK dbK -tzn +oyV dbK dbK cmH -tFV -hry +jKT +gBJ cCI dpK cXt crX -vvT -luq -luq -luq -luq -oGg -luq -luq -luq -luq -luq +pSr +pqM +pqM +pqM +pqM +ykp +pqM +pqM +pqM +pqM +pqM cto -ssM +pgT dTs dTs dTs @@ -99154,33 +99154,33 @@ akk akk akk akk -wLq -vQl -vQl -lhm +kVp +ohh +ohh +eIU anP -hlT -whP -hpI -kZM -ljA -lNc -lNc +qKo +wbz +tba +lMP +yhg +vjy +vjy anP -sEv -fcW -kZM -qXP +uXz +xqg +lMP +wNu anQ -oCn +haL avh -wBV -wBV -wBV -nHb +mss +mss +mss +kaD oUN aOh -rYd +sGt coX aOh dTs @@ -99208,7 +99208,7 @@ aFz aFz vte aFz -qdi +fXl dTs dTs dTs @@ -99224,12 +99224,12 @@ dTs dTs dTs dTs -nRZ +eWR adA adA aBF -faV -riX +slv +ugo dic adA adA @@ -99237,62 +99237,62 @@ adA dTs dTs dTs -mKt +dxt adA adA dTs dTs dTs dTs -gaz +gaw duy -mnq +qXq dib dib dib dib -hOR -mDb -mDb -mDb -mDb -mDb -mDb -mDb -tUK -qxq -mDb +npm +tVu +tVu +tVu +tVu +tVu +tVu +tVu +oQL +oXQ +tVu aOy aOI -oxq -pKA -iAr -fIv -sJs -ivt -egb +jvG +xud +eOh +tCv +lie +wGi +pRk aPN -pHi -mOu -ivt +tOW +dxZ +wGi aOH aUc -iTm -qtd -jlI +xAN +dMc +hGa aPL aUU -rRV -faz -faz -faz -faz -mzv -mzv -mzv -mzv -mzv -xjp +wUs +pWP +pWP +pWP +pWP +pTF +pTF +pTF +pTF +pTF +utc bTX bTW bWL @@ -99315,10 +99315,10 @@ cnU clZ den yfq -hry -dnk -pfz -pfz +gBJ +mFD +pmU +pmU dbL uGO ddn @@ -99331,19 +99331,19 @@ mTY dbN dbN dbK -wQo -tuE -jpG -jpG +pkK +gbJ +pRo +pRo dbK dbK dbK -hry +gBJ cCH dpL clZ crW -hry +gBJ tMy ydw ydw @@ -99353,10 +99353,10 @@ aSw aSw aSw aQP -wbP -vvT -ssM -wbP +cgx +pSr +pgT +cgx dTs dTs dTs @@ -99382,50 +99382,50 @@ acu acu dTs akk -rQR -piK -jia -jia -smM +mhD +kmb +jkR +jkR +swF alP -fEB -vQl -vQl -lhm +gJl +ohh +ohh +eIU anP -sMD -whP -kZM -kZM -jiZ -hcT -hcT +uuK +wbz +lMP +lMP +jmm +mnS +mnS anP -ijl -fcW -kZM -hXb +naN +xqg +lMP +kPO anP -oCn +haL avh awx -wBV -wBV -nHb +mss +mss +kaD oUN aOh -rYd +sGt coX aOh dTs dTs dTs dTs -nkx -nkx -nkx -nkx -seq +jXc +jXc +jXc +jXc +kvU aeT aeT dTs @@ -99442,7 +99442,7 @@ aFz aFz aFz aFz -vDW +xRZ dTs dTs dTs @@ -99458,29 +99458,29 @@ dTs dTs dTs axj -nRZ +eWR adA axx lVW lVW lVW aKj -sOc +qlP adA adA -wVo +kgK dTs dTs -nRZ +eWR adA adA adA dTs dTs dTs -gaz +gaw duy -mnq +qXq dib dib dib @@ -99492,43 +99492,43 @@ aNU aNU aoi aoi -mDb -tUK -qxq -eWx +tVu +oQL +oXQ +sKq aOy aOI -oxq -ivt -ivt -nqf -ivt -ivt -egb +jvG +wGi +wGi +xgu +wGi +wGi +pRk aPN -pHi -ivt -ivt +tOW +wGi +wGi aOH aUs -qTd -jlI -jlI -qTd +gwu +hGa +hGa +gwu aVn baO -mGg -faz +iWR +pWP bad aVn big -fTe -esl +xTu +sYa bli biW -tUK -vqf -nmM +oQL +gDh +orl bXF bXK bXK @@ -99549,10 +99549,10 @@ cZQ cpR der crW -vvT -rMu -rMu -kbI +pSr +gUU +gUU +hTd dbM lOY ddn @@ -99560,37 +99560,37 @@ dHM dbN dHM dbN -gNO -gNO -eMc +tUl +tUl +sHB dbN dbK dbK dbK -jpG -jpG -jpG -jpG +pRo +pRo +pRo +pRo dbK -hry +gBJ cCH dpI clZ crW -hry +gBJ tMy -qHE -rlL -rlL -nmS -rlL -qtt -ffZ +fln +qVA +qVA +naa +qVA +gxd +sCl aQP -wbP -vvT -tQH -wbP +cgx +pSr +nCF +cgx dTs dTs dTs @@ -99616,39 +99616,39 @@ acu acu dTs akk -wgV +wxk akK akK akK akK alR -vQl -vQl -hep -eRX +ohh +ohh +jZm +oVc anP -hlT -whP -kZM -kZM -jiZ -hcT -hcT +qKo +wbz +lMP +lMP +jmm +mnS +mnS anP anP -oJu -pJG +tQc +pJH anP anP -nzb +hFt avh awx -ncC -wBV -vLu +qUA +mss +uwJ gab aOh -rYd +sGt cWq bzS dTs @@ -99659,8 +99659,8 @@ aFz aFz aFz aFz -szO -seq +eGl +kvU aeT dTs dTs @@ -99671,8 +99671,8 @@ dTs dTs dTs dTs -euf -ilo +fHF +kWA aFz aFz aFz @@ -99692,29 +99692,29 @@ dTs dTs aIv aJB -nRZ +eWR adA axD azT azT -kMf -fxy -ttx +oSY +qwz +kor adA adA -gZi +wNl dTs dTs -nRZ +eWR adA adA adA dTs dTs dTs -gaz +gaw duy -mnq +qXq dib dib dib @@ -99722,71 +99722,71 @@ dib dMq aoi asO -jmK +iXA aNS aNS aNU -mDb -tUK -qxq -mDb +tVu +oQL +oXQ +tVu aOy aOS -oxq -oiQ -mTt -mNv -imI -ivt -egb +jvG +xBF +fQK +lQk +gHA +wGi +pRk aSD -pHi -pAc -ivt -oxq -ogc -wbn -wbn -gGa -gGa -lTJ -mGg -hqJ -faz +tOW +qSi +wGi +jvG +iIn +jrd +jrd +gSR +gSR +nvA +iWR +mGm +pWP bga aVn big -fTe -fTe +xTu +xTu bli biW -tUK +oQL bzY bzY -vqf -vqf -vqf -vqf -vqf -vqf -vqf -uaY -uaY -uaY -svI -svI -svI -svI -vfF -tDq +gDh +gDh +gDh +gDh +gDh +gDh +gDh +qmX +qmX +qmX +pnV +pnV +pnV +pnV +ekT +lzr cCH clZ dpI crW -vvT -luq -luq -xuM +pSr +pqM +pqM +nUY dbN lOY ddo @@ -99794,37 +99794,37 @@ deh deK mTY dbN -eMc -gNO -euw +sHB +tUl +fJj dbN dbK -wQo -tuE -jpG -mHD -oJt -oJt +pkK +gbJ +pRo +gGW +xEa +xEa dbK -hry +gBJ cCH dpH cET crW -hry +gBJ ydw -boj -uJO -gJN -nQp -gJN -gWM -lEN +hvu +rqu +rSA +sNy +rSA +emv +sYH aQP -wbP -nrm -xuM -wbP +cgx +fvo +nUY +cgx dTs dTs dTs @@ -99850,51 +99850,51 @@ acu acu dTs akk -qdR +tfJ akK akK akK akK akK -vQl -vQl -vQl -lhm +ohh +ohh +ohh +eIU anP anP anP -tqw -tqw +lws +lws anP anP anP anP -sGF -fcW -kZM -hXb +vty +xqg +lMP +kPO anP -pXa +gIf avh -wBV -wBV -dqw -dXU +mss +mss +eTP +inS oUN -xcW -kOr +tEu +kNU coX aOh dTs -jPz -lOn +wdQ +xZM aFz vte aFz aFz aFz azV -qdi +fXl aeT aeT dTs @@ -99906,15 +99906,15 @@ dTs dTs dTs aBe -uDC +mMU aFz aFz aFz aFz -qdi +fXl aeT -nAR -seq +iVG +kvU aeT aeT aeT @@ -99926,29 +99926,29 @@ dTs dTs aIv aJB -nRZ +eWR adA aBq uMr aJY -cKo -ixg -fzb +hhl +gUb +nnj kmU -wVo -cKm +kgK +gVh dTs dTs -nRZ -wVo -oBs +eWR +kgK +ops dTs dTs dTs dTs -gaz -lFA -mEm +gaw +kuO +mOg dLk dib dib @@ -99956,37 +99956,37 @@ dib dMq aNU asQ -yfF -meX -meX -sRy -mDb -tUK -qxq -mDb +jIC +fzC +fzC +hdd +tVu +oQL +oXQ +tVu aOz aOI -oxq -egb +jvG +pRk aPN aPN -pHi -ivt -egb +tOW +wGi +pRk aPN -pHi -ivt -oxq -ivt -fOX -fOX -fOX -wbn -fOX -hqJ -riC -faz -faz +tOW +wGi +jvG +wGi +wxT +wxT +wxT +jrd +wxT +mGm +gNi +pWP +pWP bgb aUU biC @@ -99994,33 +99994,33 @@ bka bka blf bgl -qzZ +hKg bzY -uTg -uTg -uTg -uTg -uTg -uTg -uTg -wGz -dTs -dTs -pFT -oIg -oIg -oIg -oIg -tmP -oQf +idW +idW +idW +idW +idW +idW +idW +rxD +dTs +dTs +jfL +kqB +kqB +kqB +kqB +uXA +iDF cCH clZ dpI crW -hry -eeB -oIg -oIg +gBJ +mum +kqB +kqB dbL puM ddn @@ -100028,9 +100028,9 @@ dbN dbN dbN dbN -uDS -uDS -uDS +fZu +fZu +fZu dbN dbK dbK @@ -100040,24 +100040,24 @@ dbK dbK dbK dbK -hry +gBJ cCH dpI clZ kmr -hry +gBJ ydw -boj -gWM -gJN -qIi -gJN -nQp -lEN +hvu +emv +rSA +nCj +rSA +sNy +sYH aQP aSw -gJN -jjq +rSA +tci aSw aQP dTs @@ -100084,51 +100084,51 @@ acu acu dTs akk -xwU +ezp akK akK akK -gTV +rZa alP -fqJ -vQl -vQl -lhm +inD +ohh +ohh +eIU anP -hll -lIR -kZM -kZM -mWa -fCm -ePn -xpp -wKq -fcW -kZM -mWa +tfc +hUo +lMP +lMP +uQg +oBv +xVb +vZM +ftf +xqg +lMP +uQg anQ -riq -neo -wBV -dqw -nEb -nEb -fRj -rbR +wPg +uPV +mss +eTP +iBX +iBX +gkH +pYr aOY -ipi +uWJ dTs dTs aeT -vlt +nLu aFz aFz aFz aFz aFz aFz -qdi +fXl aeT dTs dTs @@ -100140,16 +100140,16 @@ dTs dTs aJc aJQ -euf -ilo +fHF +kWA aFz aFz aFz -szO -nkx -mgH -vDW -seq +eGl +jXc +ndR +xRZ +kvU aeT aeT dTs @@ -100158,69 +100158,69 @@ dTs dTs aIv aIv -sSk -nlI -nRZ +pnb +qOh +eWR adA adA axD -fZn -qvN -oBM +toq +tRp +ehY vSH adA -gZi +wNl azT azT dTs -nRZ -vol -uCj +eWR +qBt +jSG dTs dTs dTs dTs -gaz -kjQ +gaw +iZE dJT -mnq +qXq dib dib dib dMq aNU asS -meX -meX -meX -meX -mDb -tUK +fzC +fzC +fzC +fzC +tVu +oQL aid -maL -kFA -oxq -oxq -egb +wxX +tMd +jvG +jvG +pRk aPN aQl -pHi -ivt -pAl +tOW +wGi +stD aPN -pHi -ivt -oxq +tOW +wGi +jvG aOI aUR -xQg -lUm -qRh -xQg +jnI +pFx +jSM +jnI aVn bad -mGg -faz +iWR +pWP bgc aUU biW @@ -100228,16 +100228,16 @@ biW biW biW bgl -tUK -qxq -pFT -sjD -sjD -sjD -sjD -sjD -sjD -sjD +oQL +oXQ +jfL +jQq +jQq +jQq +jQq +jQq +jQq +jQq dTs dTs dTs @@ -100245,14 +100245,14 @@ cmH cmH aJA cmH -tFV -hry +jKT +gBJ dWW cpR der crW -hry -fji +gBJ +mZn cmH cmH dbL @@ -100270,29 +100270,29 @@ dke dbN dbN dbL -gnY -pjj -hHG +usR +edF +vzX dbL -hry +gBJ cCH dpI clZ crW -hry +gBJ ydw -boj -gJN -hhr -gJN -gJN -gJN -lYP -nmS -rDq -wae -wae -xBn +hvu +rSA +mcb +rSA +rSA +rSA +uJT +naa +uew +wWl +wWl +tHg aQP dTs dTs @@ -100318,51 +100318,51 @@ acu acu dTs akk -xwU +ezp akK oXK akK -pLI +rwi akk -wLq -vQl -vQl -lhm +kVp +ohh +ohh +eIU anQ -lmy -xfZ -hpI -kZM -kZM -fcW -kZM -kZM -kZM -fcW -hpI -kZM -fCG -nEb -neo -dqw -nEb -nEb -nEb -qsf -oCg -gus -fBW +ljT +axd +tba +lMP +lMP +xqg +lMP +lMP +lMP +xqg +tba +lMP +gXI +iBX +uPV +eTP +iBX +iBX +iBX +qkO +nDT +hbZ +qtj dTs dTs aeT -vlt +nLu aFz aFz aFz aJT aFz aFz -qdi +fXl dTs dTs dTs @@ -100375,7 +100375,7 @@ dTs aJc aBf aBe -uDC +mMU aFz aFz aFz @@ -100383,8 +100383,8 @@ aFz aFz aFz aFz -vDW -seq +xRZ +kvU aeT azT dTs @@ -100393,58 +100393,58 @@ dTs aIv aIv aJB -xhD -mTv +djK +ivt adA adA aBq -lId -iAx +xLs +lMv eAe gOE adA -gZi +wNl azT azT -dBE -mTv +wnX +ivt adA -vol -mxL +qBt +iRL dTs dTs dTs dTs -kjQ +iZE dJT -mnq +qXq dib dib dib dMq aoi atY -meX -meX +fzC +fzC aNS aNU -mDb -tUK +tVu +oQL bzY -wGz -oxq -oxq -oxq -pKA -iAr -iAr -koS -nqf -wpm -kQB -sJs -ivt -oxq +rxD +jvG +jvG +jvG +xud +eOh +eOh +oPh +xgu +byc +ffn +lie +wGi +jvG aOI aUc aUc @@ -100453,23 +100453,23 @@ aUc aUc aUU bcK -hqJ -vVX +mGm +yjM bcK aUU -mDb -jnr -jnr -qSx -mDb -tUK -qxq -jJM +tVu +iXQ +iXQ +lXy +tVu +oQL +oXQ +msG bKI bjV bjV -oLi -vOG +aHa +nBv dTs dTs dTs @@ -100479,54 +100479,54 @@ dTs dTs cmH cmH -tFV -hry +jKT +gBJ dWW clZ dpI crW -hry -wbP +gBJ +cgx dap dap dap dap -vMl +sSg dap dap -fbe +mwN dbN dbN dbN dbN rlU -hHU -uVp +nPr +jPQ dbN dbL dbL -vHG +gvr dbL dbL -hry +gBJ cCH dpH cET crW -hry +gBJ tMy -bUn -gJN -gJN -gJN -gJN -gJN -gJN -gJN -gJN -gJN -gJN -ykk +vXC +rSA +rSA +rSA +rSA +rSA +rSA +rSA +rSA +rSA +rSA +xWK aQP dTs dTs @@ -100552,51 +100552,51 @@ acu acu dTs akk -jnA +ukb akK akK akK -rfd +odE alP -wLq -vQl -vQl -lhm +kVp +ohh +ohh +eIU anQ -whP -kZM -uwg -uwg -uwg -fOL -oDg -oDg -oDg -jVF -fOB -fOB -wYZ -fIW -oZS -nEb -nEb -nEb -eZJ +wbz +lMP +owg +owg +owg +jbF +uQM +uQM +uQM +jEd +tOu +tOu +pHA +sqo +ibr +iBX +iBX +iBX +xrh oUN -hdQ -hdQ +pjg +pjg dTs dTs dTs -qZw -vlt +uDE +nLu aFz aFz aFz aFz aFz vte -qdi +fXl dTs dTs dTs @@ -100606,10 +100606,10 @@ dTs dTs dTs dTs -efv -wAl +fel +jhV aJQ -uDC +mMU vte aFz aFz @@ -100618,16 +100618,16 @@ aFz aFz aFz aFz -qdi +fXl aeT azT azT dTs -uNL +hiz aIv -sSk -nlI -nRZ +pnb +qOh +eWR adA adA adA @@ -100637,7 +100637,7 @@ gOE adA adA adA -gZi +wNl azT dTs dTs @@ -100645,63 +100645,63 @@ adA adA kmU adA -mxL +iRL dTs dTs dTs dTs -jYG -bCa +sit +rkJ dib dib dib dMq aoi -edk -meX -kCv +otE +fzC +lrR auZ aoi -oJF -tUK -qxq -mDb +lkx +oQL +oXQ +tVu aOz aOH -ivt -oxq -oxq -oxq -oxq -oxq -oxq -oxq -oxq -ivt -ivt +wGi +jvG +jvG +jvG +jvG +jvG +jvG +jvG +jvG +wGi +wGi aOH aOy -mDb -hkn -ksb -qSx -ktt -mDb -oPr -maL -mDb -ktt -mDb -oDs -oDs -mDb -mDb -tUK -qxq -jJM +tVu +qAp +xkJ +lXy +uNR +tVu +dMl +wxX +tVu +uNR +tVu +rnI +rnI +tVu +tVu +oQL +oXQ +msG bjV bjV -oLi +aHa dTs dTs dTs @@ -100713,20 +100713,20 @@ dTs dTs dTs cFK -tFV -hry +jKT +gBJ cCH clZ dpI crW -hry -wbP +gBJ +cgx dap -lWZ -ifx -gwX -wbb -xNA +dpY +lpb +hWb +rQx +jsg dap dbN dge @@ -100734,33 +100734,33 @@ dhg dhg dhj rlU -hbN -uAp +fnr +fxT dbN dlB -gxb -pjj -xoi +kzM +edF +uUC dbL -hry +gBJ cCH dpI clZ crW -hry +gBJ ydw -boj -gJN -gJN -gJN -gJN -gJN -gJN -gJN -hhr -gJN -gJN -sev +hvu +rSA +rSA +rSA +rSA +rSA +rSA +rSA +mcb +rSA +rSA +qNa aQP dTs dTs @@ -100786,52 +100786,52 @@ acu acu dTs akk -iBq +eXG akK akK akK -rfd +odE alP -wLq -vQl -vQl -lhm +kVp +ohh +ohh +eIU anQ -oLY -kZM -kZM -kZM -kZM -kZM -hpI -kZM -kZM -kZM -kZM -vSX +plX +lMP +lMP +lMP +lMP +lMP +tba +lMP +lMP +lMP +lMP +mFg anQ -wzB -nsq -sAl -itV -nEb -vLu +pTe +vUc +oMi +xkr +iBX +uwJ gab aOh -kLZ +iss dTs dTs -shs -lVc -vlt +eYV +rTX +nLu aFz aFz aFz aFz aKH aFz -vDW -seq +xRZ +kvU dTs dTs dTs @@ -100843,25 +100843,25 @@ aAN aAX aBh aJQ -euf -ilo +fHF +kWA aFz aFz aFz aFz aFz aFz -rZG -cxX +pXX +gHs aeT azT azT azT -jRC -xbV -nlI -kxS -nRZ +hNu +utK +qOh +rDq +eWR adA adA aBF @@ -100874,17 +100874,17 @@ adA dTs dTs dTs -xBR -oBs -oBs -mKt +iJK +ops +ops +dxt aHz fcE dTs dTs dTs dTs -bCa +rkJ dib dib dib @@ -100892,14 +100892,14 @@ dib dMq aoi auZ -meX -meX +fzC +fzC aOt aoi -mDb -tUK -qxq -mDb +tVu +oQL +oXQ +tVu aOy aOH aOH @@ -100909,32 +100909,32 @@ aOI aOH aOI aOH -oxq -oxq +jvG +jvG aOH -hQZ +fKC bgG aOy -mDb -uHz -uyE -mDb -mDb -mDb -ovv -jBj -rWF -rWF -mDb -rlf -rlf -mDb -mDb -tUK -qxq -jJM +tVu +swp +hbv +tVu +tVu +tVu +czs +ohb +fpf +fpf +tVu +pSX +pSX +tVu +tVu +oQL +oXQ +msG bjV -oLi +aHa dTs dTs dTs @@ -100947,20 +100947,20 @@ dTs dTs dTs dTs -tFV -hry +jKT +gBJ cCH dXe der crW -hry -wbP +gBJ +cgx dap -fTu -xNA -eew -wbb -kHk +lBA +jsg +nUy +rQx +vvY dap eeL dgf @@ -100968,33 +100968,33 @@ dhh dhh diN dbN -hHU -eMc +nPr +sHB dbN -lCP -pjj -fKJ -lhl +sPB +edF +tfw +gjw dgo -hry +gBJ hIO dpI clZ crW -hry +gBJ ydw -boj +hvu aUt aUt -gJN -gJN -gJN +rSA +rSA +rSA aUt aUt aUt -gJN -gJN -lCJ +rSA +rSA +sIF aQP dTs dTs @@ -101020,44 +101020,44 @@ acu acu dTs akk -giC -jaN +gra +nED akK akK -rfd +odE akk -wOZ -hep -vQl -lhm +bAg +jZm +ohh +eIU anP -sJK -kZM -kZM -vSX -lNc -hyM -kZM -vSX -eXT -hyM -kZM -jiZ +hxp +lMP +lMP +mFg +vjy +dzQ +lMP +mFg +qbX +dzQ +lMP +jmm anP aJd aJd aJd aJd -sMj +cBn aJd gab aOh -toQ -qMc -shs -eQl +xya +fnJ +eYV +pjc aeT -vlt +nLu aFz aFz aFz @@ -101065,37 +101065,37 @@ aFz aKI aGh aGb -vDW -seq +xRZ +kvU dTs dTs aFz -kBD +kiY dTs aJc -fPm +poP aAX aBh aJQ -tsn -uDC +kMS +mMU aFz aFz aFO aFz aFz aFz -qdi +fXl lMc aeT azT azT azT azT -kxS -kxS -kxS -nRZ +rDq +rDq +rDq +eWR adA adA adA @@ -101111,9 +101111,9 @@ azT azT azT azT -nRZ +eWR aHC -wVo +kgK dTs dTs dTs @@ -101130,10 +101130,10 @@ aNS auZ auZ aoi -mDb -tUK -qxq -mDb +tVu +oQL +oXQ +tVu aOy aOy aOz @@ -101143,32 +101143,32 @@ aOz aOz aOy aOz -oxq -rKk +jvG +xdN aOz aOy aOy aOy -mDb -gQH -mrt -mDb -qbd -mDb -ovv -jBj -rWF -rWF -mDb -mDb -mDb -mDb -mDb -tUK -qxq -jJM +tVu +eui +oEV +tVu +rrB +tVu +czs +ohb +fpf +fpf +tVu +tVu +tVu +tVu +tVu +oQL +oXQ +msG bjV -vhW +foF dTs dTs dTs @@ -101181,20 +101181,20 @@ dTs dTs dTs dTs -tFV -hry +jKT +gBJ cCH dWZ dpI crW -hry -wbP +gBJ +cgx dap -fTu -eew -hcp -wbb -xNA +lBA +nUy +nnw +rQx +jsg dap dbN dgf @@ -101205,30 +101205,30 @@ dbN dkh dkM dkM -pVZ -pVZ -luQ -lhl +hKw +hKw +iqu +gjw dgo -hry +gBJ cCH dpH cET crW -hry +gBJ ydw -boj +hvu aUP aUt -gJN -gJN -gJN +rSA +rSA +rSA aUt cxK aUt -gJN -gJN -joZ +rSA +rSA +igM aQP aQP dTs @@ -101255,43 +101255,43 @@ acu dTs akk akk -opK +wcs akK akK -srY +swr alP -fEB -vQl -vQl -eRX +gJl +ohh +ohh +oVc anP anQ -pJG -pJG +pJH +pJH anQ anP anQ -gTO +uIU anQ anP anQ -gTO +uIU anQ anP -iMF -qRk -pGS -pGS -pGS -pGS +pCm +hRx +lXo +lXo +lXo +lXo gab aOh -drH -vch +klA +sEO aeE aeE -hYQ -pvP +iVe +vPS aFz aFz aFz @@ -101300,44 +101300,44 @@ azP rAo aGh azW -vDW -nkx -mgH +xRZ +jXc +ndR aFz -kBD -gCK +kiY +tOd aJc -fPm +poP aAX aBh aBf aBe -uDC +mMU aFz aFz vte aFz aFz aFz -qdi +fXl aeT aeT azT azT azT -kxS -kxS -kxS -kxS -xBR -oBs -oBs -oBs -gIv -oBs -oBs -oBs -oBs +rDq +rDq +rDq +rDq +iJK +ops +ops +ops +lFy +ops +ops +ops +ops dTs dTs azT @@ -101345,9 +101345,9 @@ azT azT azT azT -scx -wVo -cKm +duO +kgK +gVh dTs dTs dTs @@ -101364,71 +101364,71 @@ aNU aNU aoi aoi -mDb -tUK -qxq -mDb -mDb -mDb -mDb -mDb -mDb -mDb -mDb -ktt -mDb -oPr -maL -mDb -ktt -mDb -mDb -mDb -mDb -mDb -mDb -rWF -rWF -ovv -jBj -mDb -rWF -mDb -qSx -mDb -mDb -mDb -tUK -qxq -jJM -jYj -jfX -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -tFV -hry +tVu +oQL +oXQ +tVu +tVu +tVu +tVu +tVu +tVu +tVu +tVu +uNR +tVu +dMl +wxX +tVu +uNR +tVu +tVu +tVu +tVu +tVu +tVu +fpf +fpf +czs +ohb +tVu +fpf +tVu +lXy +tVu +tVu +tVu +oQL +oXQ +msG +snX +kdr +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +jKT +gBJ cCH dWZ dpI crW -hry -wbP +gBJ +cgx dap -fTu -eew -xNA -ygz -kHk +lBA +nUy +jsg +wkh +vvY dap dbN dgf @@ -101440,30 +101440,30 @@ dki dbN dbN dlB -pjj -qqr -itb +edF +bVv +knZ dbL -hry +gBJ cCH dpI clZ crW -hry +gBJ tMy -yls +tmj aUV aUt -gJN -oka -gJN +rSA +fph +rSA rVo aUt aUt -gJN -gJN -xAK -mTU +rSA +rSA +wkX +hRF aQP dTs dTs @@ -101489,42 +101489,42 @@ acu dTs dTs akk -qdR +tfJ akK akK akK alR -vQl -vQl -vQl -bqB -tfh -fEB -vQl -vQl -lhm +ohh +ohh +ohh +opP +kib +gJl +ohh +ohh +eIU anP -sGF -kZM -jiZ +vty +lMP +jmm anP -sGF -kZM -jiZ +vty +lMP +jmm anP aJd aJd -pGS -ito -pGS -pGS +lXo +qyJ +lXo +lXo gab -nYY +dlH cTE -toQ +xya aeE aeE -vlt +nLu aFz aFz aFz @@ -101538,48 +101538,48 @@ aFz aFz aFz aFz -mAS -mab -pqu -dxA +lvH +hVk +kqk +nsW aAN aBh aJc aJQ -uDC +mMU aFz aFz aFz aFz aBC -rZG -cxX +pXX +gHs aeT aeT azT azT -kxS -kxS -kxS -kxS -kxS +rDq +rDq +rDq +rDq +rDq aBk -kxS +rDq aBk -kxS -kxS +rDq +rDq aBk -kxS -kxS +rDq +rDq aBk dTs dTs -eYF -puD -puD -puD +qms +mkg +mkg +mkg iNF -jDv +gbr dTs dTs dTs @@ -101590,52 +101590,52 @@ bLJ bLJ bLJ bLJ -eKh -uzs -mDb -mDb -mDb -mDb -mDb -mDb -mDb -tUK -qxq -mDb -mDb -mDb -mDb -mDb -lAP -vqf -gMq -gMq -gMq +mwc +lXA +tVu +tVu +tVu +tVu +tVu +tVu +tVu +oQL +oXQ +tVu +tVu +tVu +tVu +tVu +pfR +gDh +eSC +eSC +eSC aid aid -vqf -vqf -vqf -vqf -vqf -vqf -gMq -gMq -gMq -gMq +gDh +gDh +gDh +gDh +gDh +gDh +eSC +eSC +eSC +eSC aid aid -vqf -vqf -vqf -vqf -vqf -vqf -vqf +gDh +gDh +gDh +gDh +gDh +gDh +gDh bzY -qxq -jJM -vhW +oXQ +msG +foF dTs dTs dTs @@ -101650,19 +101650,19 @@ dTs dTs dTs dTs -hry +gBJ cCH dXe der crW -hry -wbP +gBJ +cgx dap -fTu -eew -eew -xNA -xNA +lBA +nUy +nUy +jsg +jsg dap dcx dgf @@ -101674,30 +101674,30 @@ pIe uGO dbL dbL -pjj -qqr -pjj +edF +bVv +edF dgo -hry +gBJ cCH dpI clZ crW -hry +gBJ ydw -boj +hvu aUX aUt -gJN -hwB -gJN +rSA +uFx +rSA rVo cxL aUt -gJN -hhr -umr -fRu +rSA +mcb +pdG +nWw aQP dTs dTs @@ -101723,42 +101723,42 @@ acu dTs dTs akk -gAP +nkc akK akK akK akK -vQl -vQl -vQl -vkF -vQl -vQl -vQl -vQl -lhm +ohh +ohh +ohh +sEv +ohh +ohh +ohh +ohh +eIU anP -oLY -xfZ -jiZ +plX +axd +jmm anP -oLY -xfZ -jiZ +plX +axd +jmm anP -iMF -qRk -pGS -hmL -hmL -gom +pCm +hRx +lXo +ndm +ndm +ijK gab -rpP -oeP -jJe +qsv +vpc +mSs ail aeE -vlt +nLu aFz aFz aFz @@ -101773,42 +101773,42 @@ vte aFz aFz aFz -kBD -gCK +kiY +tOd aJc -dxA -haJ +nsW +eEb aJc aJQ -uDC +mMU aFz aFz aFz aFz aFz -qdi +fXl aeT dTs dTs azT azT -kxS -kxS -kxS -kxS -dTs -kxS -kxS -kxS +rDq +rDq +rDq +rDq +dTs +rDq +rDq +rDq aBk -kxS -kxS -kxS +rDq +rDq +rDq aBk dTs dTs -eYF -lnC +qms +jcL ioA ioA ioA @@ -101819,56 +101819,56 @@ dTs dTs dTs dTs -wJq +jko bLJ bLJ bLJ bLJ acr adN -mDb -lAP -vqf -vqf -vqf -vqf -vqf +tVu +pfR +gDh +gDh +gDh +gDh +gDh bzY bzY -vqf -vqf -vqf -vqf -vqf +gDh +gDh +gDh +gDh +gDh bzY aid -xJp -xJp -xJp -xJp -xJp -xJp -xJp -xJp -xJp -uTg -uTg -xJp -xJp -uTg -uTg -uTg -uTg -uTg -uTg -uTg -uTg +hDE +hDE +hDE +hDE +hDE +hDE +hDE +hDE +hDE +idW +idW +hDE +hDE +idW +idW +idW +idW +idW +idW +idW +idW bzY bzY -uTg -uTg -wGz -wCv +idW +idW +rxD +iTE dTs dTs dTs @@ -101884,19 +101884,19 @@ dTs dTs dTs dTs -hry +gBJ cCH dWZ dpI crW -hry -wbP +gBJ +cgx dap -fTu -xNA -xNA -xNA -gkc +lBA +jsg +jsg +jsg +rXv dap eeM eeR @@ -101904,34 +101904,34 @@ eeS eeS eeT dbL -mhO +riL dbL dbL -jbJ -pjj -qqr -lhl +uWg +edF +bVv +gjw dgo -hry +gBJ cCH dpH cET kmr -hry +gBJ ydw -boj +hvu aUY nYf -gJN -gJN -gJN +rSA +rSA +rSA rVo aUt aUt -gJN -gJN -gJN -fRu +rSA +rSA +rSA +nWw aQP dTs dTs @@ -101957,28 +101957,28 @@ acu dTs dTs akk -jal -fjE -fZO -fZO +iaj +uFO +rMR +rMR alP -fqJ -vQl -vQl -vQl -vQl -vQl -vQl -vQl -hdj +inD +ohh +ohh +ohh +ohh +ohh +ohh +ohh +mmz anP -pIK -kZM -jiZ +lWV +lMP +jmm anP -pIK -kZM -jiZ +lWV +lMP +jmm anP aJd aJd @@ -101987,13 +101987,13 @@ aJd aJd aJd gab -fpS -hgh +pkR +uZY aeE aeE aeE -gVN -lOn +kyW +xZM aFz aFz aFz @@ -102007,21 +102007,21 @@ aFz aFz aFz aFz -kBD -ufh -pqu +kiY +fSL +kqk aJc aJc -fCh -ylO -uDC +nnp +iUO +mMU aFz aFz aFz aFz aFz -vDW -seq +xRZ +kvU aeT dTs dTs @@ -102031,17 +102031,17 @@ dTs dTs dTs dTs -kxS -kxS -kxS -gza +rDq +rDq +rDq +dct aBk aBs -kxS +rDq dTs dTs dTs -mMt +pNW ioA ioA ioA @@ -102053,56 +102053,56 @@ dTs dTs dTs aao -wJq +jko bLJ bLJ bLJ bLJ acr adN -mDb -gLO -uTg -uTg -uTg -uTg -uTg -uTg -uTg -uTg -uTg -uTg -uTg -uTg +tVu +hqt +idW +idW +idW +idW +idW +idW +idW +idW +idW +idW +idW +idW bzY -qxq -mDb -mDb -mDb -mDb -mDb -rWF -rWF -rWF -rWF -mDb -mDb -mDb -mDb -mDb -mDb -mDb -mDb -mDb -mDb -mDb -mDb -tUK -qxq -pFT -sjD -sjD -gAU +oXQ +tVu +tVu +tVu +tVu +tVu +fpf +fpf +fpf +fpf +tVu +tVu +tVu +tVu +tVu +tVu +tVu +tVu +tVu +tVu +tVu +tVu +oQL +oXQ +jfL +jQq +jQq +vJa dTs dTs dTs @@ -102118,54 +102118,54 @@ dTs dTs dTs dTs -hry +gBJ cCH clZ dpI crW -hry -wbP +gBJ +cgx dap -fTu -xNA -toi -vaJ -gkc +lBA +jsg +jNH +vGe +rXv dap -gdS +vHa dgh cnU cnU diR -ydM -nJy -wbP +wcf +vGD +cgx dbL -kpr -qrV -phY -guM +kec +ibv +nGK +rQs dbL -hry +gBJ cCH dpI clZ crW -hry +gBJ ydw -boj +hvu aVa aUt -gJN -gJN -gJN +rSA +rSA +rSA aUt cxK aUt -gJN -gJN -gJN -pKs +rSA +rSA +rSA +tnZ aQP dTs dTs @@ -102196,23 +102196,23 @@ akk akk akk akk -wLq -vQl -vQl -pDz -sVE -fqJ -vQl -pDz -hAV +kVp +ohh +ohh +rdQ +pIR +inD +ohh +rdQ +mIj anP -sTV -lNc -oEL +qhi +vjy +sJA anP -sTV -lNc -oEL +qhi +vjy +sJA anP dTs dTs @@ -102221,14 +102221,14 @@ dTs dTs dTs dTs -shs -shs -hgh +eYV +eYV +uZY aeE aeE dTs -gVN -lOn +kyW +xZM aFz aFz aFz @@ -102241,21 +102241,21 @@ aFz aFz anu aFz -uKL -gDP -ufh -uly -uly -ylO -eOp -fWa +odz +exg +fSL +jls +jls +iUO +mjJ +evP vte aFz aFz aGF aFz -rZG -cxX +pXX +gHs aeT aeT aeT @@ -102275,8 +102275,8 @@ aBL dTs dTs dTs -lDR -sUX +fIY +sVg uKo uKo uKo @@ -102286,56 +102286,56 @@ dTs dTs dTs dTs -idz -gCd +uxH +loz abn bLJ bLJ bLJ -lWs -erA -mDb -tzf -xcn -mDb -mDb -qbd -mDb -mDb -mDb -mDb -mDb -mDb -mDb -mDb -tUK -qxq -mDb -kkd -pKw -pKw -pKw -kAf -pKw -pKw -pKw -gMw -mDb -kkd -pKw -pKw -pKw -kAf -pKw -pKw -pKw -gMw -mDb -tUK -qxq -jJM +ouw +lKn +tVu +jac +mrv +tVu +tVu +rrB +tVu +tVu +tVu +tVu +tVu +tVu +tVu +tVu +oQL +oXQ +tVu +ejj +qZc +qZc +qZc +wuP +qZc +qZc +qZc +mmd +tVu +ejj +qZc +qZc +qZc +wuP +qZc +qZc +qZc +mmd +tVu +oQL +oXQ +msG bjV -oLi +aHa dTs dTs dTs @@ -102357,8 +102357,8 @@ cCH cpR der crW -hry -eeB +gBJ +mum dap dap dap @@ -102366,40 +102366,40 @@ dap dap dap dap -jRP +lyZ cCH clZ clZ crW -wbP -nJy -wbP +cgx +vGD +cgx dbL dbL dbL dbL dbL dbL -jRP +lyZ cCH dpI clZ crW -hry +gBJ tMy -bUn +vXC aUt aUt -gJN -xZN -gJN +rSA +fOo +rSA aUt aUt aUt -gJN -gJN -pOq -tKG +rSA +rSA +lpr +fav aQP dTs dTs @@ -102430,13 +102430,13 @@ dTs dTs dTs apW -wLq -vQl -vQl -lhm +kVp +ohh +ohh +eIU aas aas -wyi +ryM aas aas anP @@ -102454,15 +102454,15 @@ dTs dTs dTs dTs -shs -shs -shs -eQl +eYV +eYV +eYV +pjc aeE aeE dTs dTs -vlt +nLu vte aFz aFz @@ -102476,19 +102476,19 @@ aFz aFz aFz aFz -mAS -gDP -tsn -eOp -iiI -fWa +lvH +exg +kMS +mjJ +kJe +evP aFz aFz aFz aFz aFz vte -qdi +fXl aeT aeT aeT @@ -102501,7 +102501,7 @@ dTs dTs aBL qmy -iEk +snS aBE aBE aCk @@ -102518,56 +102518,56 @@ dTs dTs dTs dTs -gjm -gjm -pzS +gTU +gTU +pfs aao -wJq +jko bLJ bLJ bLJ bLJ -pqe -nRO +tDH +xPW ael -txy -mDb -kSt -jIj -jIj -jIj -jIj -jIj -jIj -jIj -mFz -mDb -tUK -qxq -mDb -pFq -pZN -mGa -vhI -eyA -eyA -wcg -rUS -nUx -mDb -pFq -pZN -eXO -gwC -gEo -gEo -hbo -rUS -nUx -mDb -tUK -qxq -jJM +wVM +tVu +gZX +spt +spt +spt +spt +spt +spt +spt +ktE +tVu +oQL +oXQ +tVu +uCT +hvX +mKr +rWD +ind +ind +xoJ +iBr +jXO +tVu +uCT +hvX +iCR +gye +bAe +bAe +qfz +iBr +jXO +tVu +oQL +oXQ +msG bjV dTs dTs @@ -102591,8 +102591,8 @@ cCH clZ dpI crW -hry -fji +gBJ +mZn cmH cmH cmH @@ -102600,39 +102600,39 @@ cmH cmH cmH cmH -kal +jba cCH clZ clZ crY clY dkl -iiW +wxL cmH cmH cPz csb cmH cmH -kal +jba hIO dpH cET crW -hry +gBJ ydw -boj +hvu aVb aUt -gJN -gJN -gJN -gJN -gJN -hhr -gJN -gJN -joZ +rSA +rSA +rSA +rSA +rSA +mcb +rSA +rSA +igM aQP aQP dTs @@ -102664,14 +102664,14 @@ dTs dTs dTs aas -jvb -ikk -ikk -hae +vXn +kKf +kKf +oLj aas -iAB -mrO -iqj +fRz +sGr +ovo aas dTs dTs @@ -102689,14 +102689,14 @@ dTs dTs dTs aRv -egs -vet +yjy +sEE adc adc aRv dTs aeT -vlt +nLu azE aFz aFz @@ -102711,9 +102711,9 @@ aFz aFz aJT aFz -mAS -iiI -fWa +lvH +kJe +evP aFz aFz aFz @@ -102722,8 +102722,8 @@ aFz aFz aFz aFz -vDW -seq +xRZ +kvU aeT aeT aeT @@ -102735,15 +102735,15 @@ dTs dTs gGC aBU -iEk +snS aBE aBE aAv aCk dTs dTs -pIH -jdB +qkk +jfn ndP ndP ndP @@ -102751,22 +102751,22 @@ ndP aBL dTs dTs -gjm +gTU aCk -gjm -pzS +gTU +pfs aao -wJq +jko bLJ bLJ bLJ bLJ bLJ -lWs -ldr -sfa -mDb -tcD +ouw +eIN +lng +tVu +ljK aeV aeV aeV @@ -102775,34 +102775,34 @@ aeV aeV aeV ahA -mDb -tUK -qxq -mDb -pFq -mGa -vhI -eyA -eyA -eyA -eyA -kRK -nUx -mDb -pFq -eXO -gwC -gEo -gEo -gEo -gEo -kjb -nUx -mDb -tUK -qxq -jJM -oLi +tVu +oQL +oXQ +tVu +uCT +mKr +rWD +ind +ind +ind +ind +jlY +jXO +tVu +uCT +iCR +gye +bAe +bAe +bAe +bAe +oef +jXO +tVu +oQL +oXQ +msG +aHa dTs dTs dTs @@ -102825,48 +102825,48 @@ cCH clZ dpI crW -hry -bAd -pfz -pfz -pfz -pfz -pfz -pfz -pfz -gBZ +gBJ +gml +pmU +pmU +pmU +pmU +pmU +pmU +pmU +cVB cCH clZ clZ clZ clZ dkm -mtt +rBt cmH cmH cmH cmH cmH cmH -kal +jba cCH dpI clZ crW -hry +gBJ ydw -boj +hvu aVa aUt -gJN -hhr -gJN -gJN -gJN -gJN -gJN -gJN -jBB +rSA +mcb +rSA +rSA +rSA +rSA +rSA +rSA +uRu aQP dTs dTs @@ -102898,14 +102898,14 @@ dTs dTs dTs aas -mRM -pmT -pmT -lmk +fNv +sdO +sdO +oYA aas -eoX -xbq -iqj +kSd +mjU +ovo aas dTs dTs @@ -102923,14 +102923,14 @@ dTs dTs dTs dTs -qwI -vBt +iLN +lhE add add add aRv aeT -vlt +nLu aFz aFz aFz @@ -102956,8 +102956,8 @@ aFz aFz aFz aFz -rZG -cxX +pXX +gHs aeT aeT aeT @@ -102969,7 +102969,7 @@ dTs dTs aBL tMi -iEk +snS aBE aBE aAv @@ -102977,20 +102977,20 @@ aCk dTs aBL aBE -pFc -pIH -pIH -pIH +xxr +qkk +qkk +qkk aCk aBL dTs ufW -gjm -gjm -gjm -pzS +gTU +gTU +gTU +pfs aao -wJq +jko bLJ bLJ bLJ @@ -103000,7 +103000,7 @@ bLJ bLJ bUN aeV -dDC +fOg afL agJ aeV @@ -103009,34 +103009,34 @@ avT avT agJ ahA -mDb -tUK -qxq -mDb -pFq -oVE -eyA -eyA -eyA -eyA -eyA -eyA -nUx -mDb -pFq -wmR -gEo -gEo -gEo -uuk -gEo -gEo -nUx -mDb -gLO -wGz -jJM -vhW +tVu +oQL +oXQ +tVu +uCT +lbw +ind +ind +ind +ind +ind +ind +jXO +tVu +uCT +hNn +bAe +bAe +bAe +rPL +bAe +bAe +jXO +tVu +hqt +rxD +msG +foF dTs dTs dTs @@ -103059,48 +103059,48 @@ cCH cpR der crW -nrm -svI -svI -svI -svI -svI -svI -svI -svI -xuM +fvo +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +nUY cCH clZ clZ clZ clZ dkm -lAO -fEx -fEx -fEx -fEx -fEx -fEx -pnZ +wwj +cSj +cSj +cSj +cSj +cSj +cSj +xwc cCH dpI clZ crW -hry +gBJ ydw -boj +hvu aUX aUt aUt -gJN -gJN +rSA +rSA aUt -ryp -ryp +hNY +hNY aUt aUt -xkC +wvW aQP dTs dTs @@ -103132,14 +103132,14 @@ dTs dTs dTs aas -mRM -pmT -pmT -lmk -lbu -mrO -mrO -iqj +fNv +sdO +sdO +oYA +jKU +sGr +sGr +ovo aas dTs dTs @@ -103158,13 +103158,13 @@ dTs dTs dTs dTs -vBt +lhE add add -tzF -vet +hxV +sEE aeT -vlt +nLu aFz aFz aFz @@ -103203,15 +103203,15 @@ dTs dTs tMi aCk -qpz +nrm aBE aBE aAv aCk aCk -iEk -hHK -kTt +snS +gJx +gzj aBE aBE nCi @@ -103219,12 +103219,12 @@ dTs dTs dTs ufW -gjm -gjm -gjm -pzS +gTU +gTU +gTU +pfs aao -wJq +jko bLJ bLJ bLJ @@ -103234,7 +103234,7 @@ bLJ bLJ bUN aeV -dDC +fOg agl bUN aeV @@ -103243,33 +103243,33 @@ bLJ bLJ bUN ahA -mDb -tUK -qxq -mDb -ksl -oVE -eyA -eyA -voc -eyA -eyA -eyA -nUx -mDb -ksl -wmR -gEo -gEo -gEo -gEo -gEo -gEo -pMF -sjD -sjD -sjD -eGv +tVu +oQL +oXQ +tVu +jyd +lbw +ind +ind +mEY +ind +ind +ind +jXO +tVu +jyd +hNn +bAe +bAe +bAe +bAe +bAe +bAe +quK +jQq +jQq +jQq +wBs dTs dTs dTs @@ -103321,20 +103321,20 @@ coZ dpH cET crW -hry +gBJ tMy -nUt -wFe -hyA -fNs -wae -wae -iFO -hyA -wFe -wFe -kcu -nuO +sqk +etM +wXh +jEQ +wWl +wWl +tYv +wXh +etM +etM +aog +xDc aQP dTs dTs @@ -103366,14 +103366,14 @@ dTs dTs dTs aas -mRM -sPW -pmT -lmk +fNv +pqb +sdO +oYA asw -iAB -mrO -iqj +fRz +sGr +ovo aas dTs dTs @@ -103391,22 +103391,22 @@ dTs dTs dTs dTs -qwI -vBt +iLN +lhE add -tzF -qwI -vet +hxV +iLN +sEE aeT -vlt +nLu aFz aFz aFz aFz aFz aFz -rZG -lOn +pXX +xZM aFz aFz aAw @@ -103434,19 +103434,19 @@ aeT aeT aeT dTs -nWw -pIH -pIH -uOa +pAY +qkk +qkk +gLH aCk aBE -pFc -pIH -pIH -uOa +xxr +qkk +qkk +gLH azC uGL -hHK +gJx aBE dTs dTs @@ -103454,11 +103454,11 @@ dTs dTs dTs aCk -gjm -gjm -pzS +gTU +gTU +pfs aao -wJq +jko bLJ bLJ bLJ @@ -103468,7 +103468,7 @@ bLJ bLJ bUN aeV -dDC +fOg ags ahv aeV @@ -103477,32 +103477,32 @@ awm awm ahv ahA -mDb -tUK -qxq -mDb -pFq -oVE -eyA -eyA -eyA -eyA -eyA -eyA -nUx -mDb -pFq -wmR -gEo -gEo -gEo -gEo -gEo -gEo -jet +tVu +oQL +oXQ +tVu +uCT +lbw +ind +ind +ind +ind +ind +ind +jXO +tVu +uCT +hNn +bAe +bAe +bAe +bAe +bAe +bAe +xlL bjV -oLi -vOG +aHa +nBv dTs dTs dTs @@ -103555,14 +103555,14 @@ cma cUb clZ crW -haK +dcC tMy aQP aQP aQP bvv -gJN -jjq +rSA +tci bvv aQP aQP @@ -103600,14 +103600,14 @@ dTs dTs dTs aas -mRM -pmT -pmT -lmk -fpI -rUf -mrO -iqj +fNv +sdO +sdO +oYA +qpN +wFb +sGr +ovo aas dTs dTs @@ -103626,27 +103626,27 @@ dTs dTs dTs dTs -vBt +lhE add bIK -qwI -vet +iLN +sEE dTs -gVN -lOn +kyW +xZM aFz aFz aFz aFz -rZG +pXX dTs dTs -jPz -lOn +wdQ +xZM aGv aFz -rZG -ncD +pXX +yfj aFz dTs dTs @@ -103683,26 +103683,26 @@ aBL aCk aBE aAv -eCn +hST aBL dTs aBE ooQ aCk -gjm -pzS +gTU +pfs aao -wJq +jko bLJ bLJ bLJ bLJ bLJ bLJ -eKh -uVx -mDb -tcD +mwc +vOk +tVu +ljK aeV aeV aeV @@ -103711,31 +103711,31 @@ aeV aeV aeV ahA -mDb -gLO -wGz -mDb -uvO -oBk -mcQ -eyA -eyA -eyA -eyA -pyU -nUx -mDb -wvs -qHY -icb -gEo -gEo -gEo -gEo -vrj -uFW +tVu +hqt +rxD +tVu +jKb +vmg +dht +ind +ind +ind +ind +wlK +jXO +tVu +psF +eLv +ppF +bAe +bAe +bAe +bAe +ezb +sBB bjV -vhW +foF dTs dTs dTs @@ -103789,16 +103789,16 @@ clZ clZ clZ crW -gHb +xTw xOb xec aVd -hWk -rVz -nAh -nAh -gSV -eIx +tQa +cXT +ujH +ujH +wwI +xeV aVd dTs dTs @@ -103834,14 +103834,14 @@ dTs dTs dTs aas -mRM -pmT -pmT -lmk +fNv +sdO +sdO +oYA asw -fFn -xPq -mQB +uwD +iff +myY aas dTs dTs @@ -103860,14 +103860,14 @@ dTs dTs dTs dTs -vBt +lhE add bIK -qwI +iLN aRv dTs dTs -vlt +nLu aFz aFz vte @@ -103877,11 +103877,11 @@ dTs dTs dTs dTs -lOn -rZG -cxX -gVN -jPz +xZM +pXX +gHs +kyW +wdQ dTs dTs dTs @@ -103907,11 +103907,11 @@ uVK aBE azC obv -gPV -hHK -hHK -hHK -kTt +apU +gJx +gJx +gJx +gzj aBE aBE aBE @@ -103922,54 +103922,54 @@ aCk aCk aBE aBE -gjm -gjm -pzS +gTU +gTU +pfs aao -gCd +loz abn bLJ bLJ bLJ bLJ -eKh -pez +mwc +qWc adN -mDb -wMN -lDS -lDS -lDS -lDS -lDS -lDS -lDS -vPb -pFT -sjD -gAU -mDb -iba -daA -oyl -mcQ -eyA -eyA -fdj -jkz -nUx -mDb -hHy -fvY -wEC -icb -gEo -gEo -vbp -jkz -jet +tVu +sxJ +oiR +oiR +oiR +oiR +oiR +oiR +oiR +dnS +jfL +jQq +vJa +tVu +rrc +euu +tyL +dht +ind +ind +xdE +pPe +jXO +tVu +wHX +hed +kyy +ppF +bAe +bAe +snK +pPe +xlL bjV -vhW +foF dTs dTs dTs @@ -104023,16 +104023,16 @@ cmb cmb meN cXx -qag -mrs +ekL +swe cmH aVe -tCI +rkd bvx -nAh -rOA +ujH +nGS bvx -gdy +vLM aVd dTs dTs @@ -104068,10 +104068,10 @@ dTs dTs dTs oYa -wGy -hJB -hJB -wOx +qHa +vtS +vtS +kmK oYa oYa oYa @@ -104093,26 +104093,26 @@ dTs dTs dTs dTs -qwI -vBt +iLN +lhE add bNu -qwI +iLN dTs dTs dTs dTs -jPz -lOn +wdQ +xZM aFz -rZG -cxX +pXX +gHs dTs dTs dTs dTs dTs -cxX +gHs aeT aeT dTs @@ -104145,64 +104145,64 @@ aAv hoc gCS rQQ -iEk +snS ooQ aCk aBE aBE teR -eCn +hST aCk aBE aCk aCk aCk -gjm -peb -idz +gTU +qjH +uxH aao -wJq +jko bLJ bLJ bLJ -eKh -pez -jac -sea -pFT -sjD -pyw -sjD -sjD -sjD -sjD -sjD -sjD -sjD -dYV -oLi -dTs -dTs -lhV -mxH -iRY -jmk -fbr -msm -ecT -msm -gGX -sjD -nxY -rhu -ojg -iRY -xIV -msm -ecT -msm -pFB -oLi +mwc +qWc +ujV +sMQ +jfL +jQq +tyD +jQq +jQq +jQq +jQq +jQq +jQq +jQq +vOp +aHa +dTs +dTs +vjd +dlq +hWH +rKJ +tpS +vKs +iSZ +vKs +nfb +jQq +eAO +wCP +qEB +hWH +kju +vKs +iSZ +vKs +hMT +aHa dTs dTs dTs @@ -104227,46 +104227,46 @@ dTs dTs dTs dTs -kMB -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI -svI +myQ +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV +pnV cto -ssL +xjJ cmH aVe -tCI +rkd bvx -nAh -nAh +ujH +ujH bvx -gdy +vLM aVd dTs dTs @@ -104300,14 +104300,14 @@ dTs dTs dTs dTs -ixd +quG aat -opD -esf -nAH -hxl +iMX +isx +tAe +fjG aat -pFk +mUX dTs dTs dTs @@ -104327,20 +104327,20 @@ dTs dTs dTs dTs -qwI -vBt +iLN +lhE add bIK -qwI +iLN dTs dTs dTs dTs dTs -gVN -jPz -cxX -yjq +kyW +wdQ +gHs +xtz dTs dTs dTs @@ -104377,43 +104377,43 @@ aBE aBE aAv rCp -gnW +pRb fgo -iEk +snS aCk aBL aBL aBE aaG -xVX +uLU aBL dTs dTs dTs ufW dTs -hSb -pzS +wRa +pfs aao -wJq +jko bLJ bLJ bLJ acr -jac -tRM -owY -jJM -oLi -dTs -vOG -toa +ujV +tTa +obD +msG +aHa +dTs +nBv +rOb bjV bjV bjV bjV -oLi -vOG +aHa +nBv dTs dTs dTs @@ -104421,22 +104421,22 @@ dTs dTs dTs dTs -vOG -vOG -toa +nBv +nBv +rOb bjV -oLi -vOG -toa -oLi +aHa +nBv +rOb +aHa dTs dTs dTs -vOG -toa +nBv +rOb bjV bjV -vhW +foF dTs dTs dTs @@ -104464,43 +104464,43 @@ dTs dTs dTs dTs -eeB -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -loG -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -fhq -tBP -pfz +mum +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +oPn +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +kqB +wiS +veb +pmU aVf -rqC +orT bvx -nAh -nAh +ujH +ujH bvx -oiK +gaH aVd dTs dTs @@ -104534,14 +104534,14 @@ dTs dTs dTs dTs -ixd +quG aat aat aat aat aat atb -kcf +exE dTs dTs dTs @@ -104555,17 +104555,17 @@ dTs dTs dTs dTs -qwI -vgF +iLN +hQP dTs dTs dTs -qwI -qwI -pVI +iLN +iLN +gxE add bIK -qwI +iLN dTs dTs dTs @@ -104575,7 +104575,7 @@ dTs add add bIK -qwI +iLN dTs dTs dTs @@ -104606,18 +104606,18 @@ aBE aBL hAv aCk -gPV -hHK +apU +gJx aBE aAv hnJ hpL mkU -iEk +snS aBE -gPV -hHK -hHK +apU +gJx +gJx aBL aBL aBL @@ -104627,26 +104627,26 @@ dTs dTs dTs dTs -pzS +pfs aao -wJq +jko bLJ bLJ bLJ acr aeb -qbI -owY -wCv +gcu +obD +iTE dTs dTs dTs -tVy -toa +ndb +rOb bjV -oLi -vOG -jfX +aHa +nBv +kdr dTs dTs dTs @@ -104657,9 +104657,9 @@ dTs dTs dTs dTs -tVy -vOG -jfX +ndb +nBv +kdr dTs dTs dTs @@ -104667,9 +104667,9 @@ dTs dTs dTs dTs -tVy -vOG -vOG +ndb +nBv +nBv dTs dTs dTs @@ -104725,16 +104725,16 @@ cmH cmH cmH dIi -hmR +jSa lfM -mSo -hfU -nAh -nAh -nAh -nAh +qXX +ofi +ujH +ujH +ujH +ujH bvx -ovD +fdq aVd dTs dTs @@ -104776,7 +104776,7 @@ aiN aat aat aat -sLt +mBQ dTs dTs dTs @@ -104787,19 +104787,19 @@ dTs dTs dTs dTs -qwI -qwI -qwI -qwI -qwI -qwI -lHG -lHG -pVI +iLN +iLN +iLN +iLN +iLN +iLN +fJb +fJb +gxE add add bIK -qwI +iLN dTs dTs dTs @@ -104809,7 +104809,7 @@ dTs add add bIK -qwI +iLN dTs dTs dTs @@ -104838,16 +104838,16 @@ aBE aBE dTs aBL -xlj -mQW +xKN +jXp aAv azC kOR -pFc -pIH -pIH -pIH -uOa +xxr +qkk +qkk +qkk +gLH aBE aAv aBL @@ -104862,23 +104862,23 @@ dTs dTs dTs dTs -juh -tBj +xQD +ePJ bLJ bLJ bLJ acr aeb -qbI +gcu dTs dTs dTs dTs dTs akP -tVy -vOG -jfX +ndb +nBv +kdr dTs dTs dTs @@ -104959,16 +104959,16 @@ dTs dTs dTs dTs -qgw +teS aTs -xJT -nAh -nAh -nAh -nAh -nAh +jBZ +ujH +ujH +ujH +ujH +ujH bvx -oBh +mfD aVd dTs dTs @@ -105003,30 +105003,30 @@ dTs dTs dTs dTs -rSX -rSX +lcS +lcS apL aat aat aat aat -pFk +mUX dTs add add add -hrw -qwI +jsM +iLN dTs dTs dTs -qwI -qwI -qwI -lHG -lHG -lHG -pVI +iLN +iLN +iLN +fJb +fJb +fJb +gxE add cjc add @@ -105043,7 +105043,7 @@ dTs add add bIK -qwI +iLN dTs dTs dTs @@ -105071,9 +105071,9 @@ ooQ aBE dTs dTs -eCn -fec -mQW +hST +gQT +jXp aCk aBL aBL @@ -105101,7 +105101,7 @@ bLJ bLJ bLJ bLJ -lWs +ouw dTs dTs dTs @@ -105195,14 +105195,14 @@ dTs dTs dTs aTz -uLt +sWx aVd -wLT +kTf bvx bvx bvx bvx -rpH +qRH aVd dTs dTs @@ -105240,23 +105240,23 @@ dTs aay aay apM -rSX +lcS apL aat aat -pFk +mUX add add add add add -hrw -lHG +jsM +fJb dTs -lHG -lHG -lHG -pVI +fJb +fJb +fJb +gxE cjc add add @@ -105265,19 +105265,19 @@ add add add add -tzF -qwI +hxV +iLN dTs dTs dTs dTs dTs dTs -vBt +lhE add add bIK -qwI +iLN dTs dTs dTs @@ -105306,17 +105306,17 @@ dTs dTs dTs aBL -kjl -uOa +xxc +gLH aCk slX aBL -hHK -kTt +gJx +gzj aBE aBE aCk -gPV +apU aBL aBL dTs @@ -105431,12 +105431,12 @@ dTs dTs cmH aVe -dME -eWu -mvL -psA -lDa -rWq +gCZ +wxY +xcU +xav +tgy +lan aVd dTs dTs @@ -105472,13 +105472,13 @@ dTs dTs dTs dTs -tPr +cEx aay aay aqo aat aat -pFk +mUX cjc add add @@ -105495,9 +105495,9 @@ add add add add -tzF -pip -pip +hxV +psm +psm dTs dTs dTs @@ -105507,11 +105507,11 @@ dTs dTs dTs dTs -vBt +lhE add cjc bIK -qwI +iLN dTs dTs dTs @@ -105541,18 +105541,18 @@ dTs dTs dTs aBL -hHK -hHK -kTt +gJx +gJx +gzj aAv aCk -iEk +snS aBE aBE aBE aAv -cfu -eCn +sJS +hST dTs dTs dTs @@ -105665,11 +105665,11 @@ dTs dTs dTs aVe -dME -beb -eWu -beb -kLk +gCZ +elS +wxY +elS +gXU aVd aVd dTs @@ -105710,26 +105710,26 @@ ajf aay aay ass -sUg +chf aat -kcf -oTU -hrw +exE +eHQ +jsM add add adD add -tzF -pip -pip -pip -apG +hxV +psm +psm +psm +taA add add add add -tzF -qwI +hxV +iLN dTs dTs dTs @@ -105739,9 +105739,9 @@ dTs dTs dTs dTs -qwI -qwI -vBt +iLN +iLN +lhE add add bIK @@ -105775,9 +105775,9 @@ dTs dTs aBL aBL -oDp -oDp -iEk +fLc +fLc +snS aAv aCk aCk @@ -105787,7 +105787,7 @@ aBE aBL aBL aBU -xvF +oLd dTs dTs dTs @@ -105899,11 +105899,11 @@ dTs dTs dTs aVd -vRQ -njA -njA -wTd -rWq +lXx +she +she +lVF +lan aVd dTs dTs @@ -105942,21 +105942,21 @@ dTs dTs ajf aay -vsJ -tub -jvq +ghp +wtf +xKH aat aat -oak -pmJ -mJc +wWi +nWO +kAM add add -tzF -qwI -qwI -qwI -qwI +hxV +iLN +iLN +iLN +iLN dTs add add @@ -105970,12 +105970,12 @@ dTs dTs dTs dTs -qwI +iLN dTs dTs -qwI -qwI -vBt +iLN +iLN +lhE add add bIK @@ -106007,10 +106007,10 @@ dTs aBE aBE aBL -tPC -tSs -oDp -mgr +jPX +hBd +fLc +kYk dTs dTs aBE @@ -106019,9 +106019,9 @@ aBE aBE aBE aAv -eCn -xvF -xvF +hST +oLd +oLd aBL dTs dTs @@ -106173,43 +106173,43 @@ dTs dTs dTs dTs -xXA -exi +mLW +ges aay aqq -wld +eiz aat aat aat aat aat -kcf -oTU +exE +eHQ add -hrw -lHG +jsM +fJb dTs dTs dTs dTs -pip -wvN +psm +bDH add add bIK -ljE +jfR dTs dTs -qwI -qwI -qwI +iLN +iLN +iLN dTs -qwI -qwI +iLN +iLN aRv -qwI -lHG -pVI +iLN +fJb +gxE add add dTs @@ -106240,21 +106240,21 @@ dTs dTs dTs aBE -tSs -tSs +hBd +hBd rfm -tSs +hBd dTs dTs dTs -hHK -kTt +gJx +gzj aBL dTs dTs dTs -oDp -sjm +fLc +iih aBU aBL dTs @@ -106409,43 +106409,43 @@ dTs aar ajf aay -vsJ -tub -jvq +ghp +wtf +xKH atf aat aat aat aat aat -kcf -pmJ -oTU +exE +nWO +eHQ dTs dTs dTs dTs dTs -qwI -vBt +iLN +lhE add add -hrw -lHG +jsM +fJb add -hrw -lHG -lHG -pVI -lHG -qwI -qwI -egs -pVI +jsM +fJb +fJb +gxE +fJb +iLN +iLN +yjy +gxE add adD -tzF -pip +hxV +psm dTs dTs dTs @@ -106476,20 +106476,20 @@ dTs dTs dTs dTs -hLE -rCg +sjd +nMe dTs dTs rvd -oDp +fLc trZ dTs dTs dTs dTs -rat +vgi aBU -erW +mEm aBL dTs dTs @@ -106644,7 +106644,7 @@ aar ajf aay apR -jvq +xKH asu aat aat @@ -106654,32 +106654,32 @@ aat aat aat aat -pFk +mUX dTs dTs dTs dTs dTs dTs -vBt +lhE add add add add add -pip +psm add add add add -lHG -lHG -jET +fJb +fJb +aZG add add add bIK -qwI +iLN dTs dTs dTs @@ -106710,19 +106710,19 @@ dTs dTs dTs aBU -eCn -eCn +hST +hST aCk -eCn -oDp -oDp +hST +fLc +fLc aBL dTs dTs aBL -yaE -xvF -dGn +ePS +oLd +gZD aBL aBL dTs @@ -106875,7 +106875,7 @@ dTs dTs dTs dTs -exi +ges aay aqo aat @@ -106887,8 +106887,8 @@ aat aat aat aat -sLt -edu +mBQ +jwI dTs dTs dTs @@ -106896,24 +106896,24 @@ dTs dTs dTs dTs -pip -apG +psm +taA add add aal -qwI -vBt -pip -pip -pip -pip -pip +iLN +lhE +psm +psm +psm +psm +psm adc add add add bIK -qwI +iLN dTs dTs dTs @@ -106943,20 +106943,20 @@ dTs dTs dTs aBL -jPW -oDp -xvF +fbq +fLc +oLd aBU aCk -oDp +fLc nFh aBL dTs dTs aBL -kVI -xbd -kVI +qiK +ngS +qiK aBL dTs dTs @@ -107121,7 +107121,7 @@ dTs dTs dTs aat -pFk +mUX dTs dTs dTs @@ -107130,18 +107130,18 @@ dTs dTs dTs dTs -qwI -vBt +iLN +lhE add add bIK -qwI -qwI -qwI -qwI +iLN +iLN +iLN +iLN dTs -qwI -qwI +iLN +iLN aRv add add @@ -107177,7 +107177,7 @@ dTs dTs dTs gGC -baB +quk dTs aBL aBL diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm index 1f8de8bac9..d78534bd97 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm @@ -26,6 +26,10 @@ /obj/item/prop/alien/hugger, /turf/open/floor/carpet, /area/template_noop) +"s" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/template_noop) "t" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/box/matches{ @@ -49,6 +53,14 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/template_noop) +"z" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/wood, +/area/template_noop) "A" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, @@ -56,9 +68,14 @@ "E" = ( /turf/open/floor/wood, /area/template_noop) -"G" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, +"I" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/gun/pistol/highpower/automag/tactical, +/turf/open/floor/plating, /area/template_noop) "K" = ( /obj/structure/bed/chair{ @@ -96,15 +113,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/template_noop) -"U" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/gun/pistol/highpower/tactical, -/turf/open/floor/plating, -/area/template_noop) "W" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -113,14 +121,6 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"X" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/wood, -/area/template_noop) "Z" = ( /obj/item/device/flashlight/lamp/candelabra, /turf/open/floor/carpet, @@ -138,7 +138,7 @@ L (2,1,1) = {" a a -X +z E E x @@ -168,7 +168,7 @@ y c T O -G +s x "} (6,1,1) = {" @@ -192,7 +192,7 @@ x (8,1,1) = {" a a -U +I e t x diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm index 68fe9b5df1..d0332503f1 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm @@ -9,63 +9,19 @@ }, /turf/open/floor/wood, /area/template_noop) -"aN" = ( -/obj/item/trash/syndi_cakes{ - pixel_x = -13; - pixel_y = -11 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"aO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/template_noop) -"bl" = ( -/obj/item/toy/beach_ball/holoball{ - pixel_x = -10; - pixel_y = -7 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"by" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, +"bm" = ( +/turf/open/gm/river/pool, /area/template_noop) "bD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/template_noop) -"bI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"bU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"bW" = ( -/obj/item/storage/belt/shotgun/full/quackers{ - layer = 3.1 - }, +"bT" = ( /obj/item/trash/crushed_cup{ - pixel_y = 6; - pixel_x = -30 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 4; - pixel_x = 1 + pixel_y = -2; + pixel_x = -12 }, -/turf/open/gm/river/pool, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "cb" = ( /obj/item/trash/barcardine{ @@ -74,29 +30,10 @@ }, /turf/open/floor/wood, /area/template_noop) -"cc" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/template_noop) "ci" = ( /obj/item/toy/gun, /turf/open/floor/wood, /area/template_noop) -"co" = ( -/obj/structure/grille, -/obj/item/reagent_container/food/snacks/carpmeat{ - pixel_x = -5; - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/structure/prop/invuln/fire{ - layer = 2.9 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/template_noop) "cq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/head/cueball{ @@ -109,92 +46,107 @@ }, /turf/open/floor/wood, /area/template_noop) -"cF" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 +"cu" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -13; + pixel_y = 48 }, +/turf/open/gm/river/pool, +/area/template_noop) +"cT" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison/floor_plate, /area/template_noop) -"cW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +"dD" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkbrown2/west, /area/template_noop) -"ea" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"et" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = 1; - pixel_y = -9 +"eh" = ( +/obj/structure/closet/basketball{ + pixel_x = -8; + pixel_y = -2 }, -/turf/open/floor/prison/darkbrown2/west, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/wood, /area/template_noop) -"eG" = ( -/obj/structure/platform, +"ey" = ( /obj/item/trash/crushed_cup{ - pixel_y = 13; - pixel_x = 45 + pixel_y = -7; + pixel_x = -1 }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"eJ" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/wood, +/area/template_noop) +"eN" = ( +/obj/item/toy/beach_ball, /turf/open/gm/river/pool, /area/template_noop) -"fX" = ( -/turf/closed/wall/mineral/bone_resin, +"fk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrowncorners2/north, /area/template_noop) -"gi" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 +"fw" = ( +/obj/item/trash/kepler{ + pixel_x = 13 }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"fB" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/darkbrown2/north, /area/template_noop) -"gm" = ( -/obj/item/trash/semki{ - pixel_x = 15 +"fI" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) +"fX" = ( +/turf/closed/wall/mineral/bone_resin, +/area/template_noop) +"fZ" = ( +/obj/structure/grille, +/obj/item/reagent_container/food/snacks/carpmeat{ + pixel_x = -5; + pixel_y = 13 }, -/turf/open/floor/prison/darkbrown2/north, +/obj/item/reagent_container/food/snacks/carpmeat{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/prop/invuln/fire{ + layer = 2.9 + }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) -"gB" = ( +"gA" = ( /obj/item/trash/crushed_cup{ - pixel_y = -7; - pixel_x = -1 + pixel_y = 6; + pixel_x = 6 }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"gH" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/template_noop) +"gQ" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison/darkbrown2, /area/template_noop) "gV" = ( /turf/open/space, /area/template_noop) -"ht" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 +"hl" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkbrown2/north, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "hP" = ( /obj/structure/platform{ @@ -202,6 +154,23 @@ }, /turf/open/floor/prison, /area/template_noop) +"hV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"hW" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = 19; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"hX" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) "hY" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -218,13 +187,13 @@ }, /turf/open/floor/wood, /area/template_noop) -"iR" = ( -/obj/effect/decal/cleanable/blood/oil, +"in" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -6; + pixel_x = -8 + }, /turf/open/floor/prison/darkbrown2/east, /area/template_noop) -"iS" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/template_noop) "iY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cup{ @@ -237,41 +206,60 @@ }, /turf/open/floor/wood, /area/template_noop) -"jm" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"jq" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -20 +"ji" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/gm/river/pool, +/turf/open/floor/prison/darkbrown2/southeast, +/area/template_noop) +"jr" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "jt" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/template_noop) -"jx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"jT" = ( +/obj/item/tool/mop{ + pixel_x = 11; + layer = 2.9; + pixel_y = 3 }, -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) -"jy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkbrown2, +"kl" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/northeast, /area/template_noop) -"kO" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +"ks" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/plush/therapy/blue{ + pixel_y = 4 }, -/obj/structure/platform_decoration{ - dir = 10 +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 10; + pixel_y = 4 }, -/turf/open/floor/prison/floor_plate, +/obj/item/clothing/head/bowlerhat{ + pixel_y = 16; + layer = 3.1 + }, +/turf/open/floor/wood, +/area/template_noop) +"kC" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) +"kJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "lc" = ( /obj/structure/surface/table/reinforced/prison, @@ -289,6 +277,13 @@ }, /turf/open/floor/wood, /area/template_noop) +"ls" = ( +/obj/item/toy/crossbow_ammo{ + pixel_y = -14; + pixel_x = -15 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) "ly" = ( /obj/structure/platform_decoration{ dir = 8 @@ -329,44 +324,41 @@ "mu" = ( /turf/open/floor/plating/prison, /area/template_noop) -"mU" = ( -/obj/item/trash/cigbutt{ - pixel_x = 31; - pixel_y = -16 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) "nf" = ( /turf/open/floor/wood, /area/template_noop) -"nh" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/template_noop) "ni" = ( /turf/closed/wall/prison, /area/template_noop) -"nm" = ( -/obj/structure/grille, -/obj/item/reagent_container/food/snacks/bearmeat{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/meat/human{ - pixel_x = -7; - pixel_y = 3 +"nv" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/prop/invuln/fire{ - layer = 2.9 +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"ny" = ( +/obj/item/trash/cigbutt{ + pixel_x = 31; + pixel_y = -16 }, -/turf/open/floor/prison/darkbrowncorners2, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) -"nv" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -13; - pixel_y = 48 +"nA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = 6; + pixel_y = 5; + layer = 3.1 }, -/turf/open/gm/river/pool, +/obj/item/toy/plush/farwa{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/wood, /area/template_noop) "nC" = ( /obj/structure/stairs/perspective{ @@ -381,11 +373,9 @@ /obj/structure/prop/souto_land/pole, /turf/open/floor/wood, /area/template_noop) -"nV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, +"nT" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "or" = ( /obj/structure/prop/souto_land/pole{ @@ -411,6 +401,18 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/template_noop) +"qa" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"qi" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) "qm" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -420,10 +422,10 @@ /turf/open/floor/plating/prison, /area/template_noop) "qB" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/item/trash/crushed_cup{ + pixel_x = -20 }, -/turf/open/floor/prison/darkbrown2/southeast, +/turf/open/gm/river/pool, /area/template_noop) "qG" = ( /obj/item/trash/crushed_cup{ @@ -457,29 +459,35 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/wood, /area/template_noop) -"sE" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -65; - pixel_x = 29 - }, -/turf/open/gm/river/pool, +"sr" = ( +/turf/open/floor/prison/darkbrown2/northwest, /area/template_noop) -"sU" = ( -/obj/effect/decal/cleanable/blood, +"su" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/darkbrown2/west, /area/template_noop) -"sX" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 +"sG" = ( +/obj/structure/platform, +/turf/open/gm/river/pool, +/area/template_noop) +"sI" = ( +/obj/item/toy/crossbow{ + pixel_x = 11; + pixel_y = -8 }, /turf/open/floor/prison/darkbrown2, /area/template_noop) -"sZ" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -2; - pixel_x = -12 - }, -/turf/open/floor/prison/darkbrown2/east, +"sW" = ( +/turf/open/floor/prison/floor_plate, /area/template_noop) "tb" = ( /obj/item/trash/wy_chips_pepper{ @@ -488,10 +496,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"tu" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) "tw" = ( /obj/item/toy/crossbow_ammo{ pixel_x = -7; @@ -511,55 +515,58 @@ }, /turf/open/floor/wood, /area/template_noop) -"tK" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = -17; - pixel_y = 41 +"tF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/darkbrown2/north, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = 1; + pixel_y = -9 + }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "tT" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/wood, /area/template_noop) -"tY" = ( -/turf/open/floor/prison/floor_plate, +"tX" = ( +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) -"uE" = ( -/turf/open/floor/prison/darkbrowncorners2/east, +"ut" = ( +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) -"uJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = -7 - }, -/obj/item/trash/plate{ - pixel_x = -7; - pixel_y = 4 +"uv" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"uO" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/item/trash/plate{ - pixel_x = -7; - pixel_y = 9 +/obj/structure/platform{ + dir = 4 }, -/obj/item/trash/plate{ - pixel_x = 7 +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 4 +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 9 +/obj/item/toy/plush/barricade{ + pixel_x = -1; + pixel_y = -9 }, -/turf/open/floor/wood, -/area/template_noop) -"vx" = ( -/obj/structure/platform, -/turf/open/gm/river/pool, -/area/template_noop) -"vJ" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkbrown2/east, /area/template_noop) "vU" = ( @@ -617,31 +624,12 @@ }, /turf/open/floor/wood, /area/template_noop) -"wn" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"wt" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = -16 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/template_noop) -"wW" = ( -/obj/item/toy/bikehorn/rubberducky{ - pixel_x = -2; - pixel_y = -15 +"wv" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = -10; + pixel_y = -7 }, -/turf/open/gm/river/pool, -/area/template_noop) -"xc" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrowncorners2, -/area/template_noop) -"xn" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "xz" = ( /obj/structure/prop/souto_land/streamer{ @@ -649,12 +637,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"xL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) "xS" = ( /obj/structure/platform{ dir = 1 @@ -665,24 +647,27 @@ }, /turf/open/floor/wood, /area/template_noop) -"yc" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = 1; - pixel_y = -9 +"yv" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 5; + pixel_x = 11 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"yd" = ( -/turf/open/floor/prison/darkbrown2/northeast, +/turf/open/gm/river/pool, /area/template_noop) -"yf" = ( -/turf/open/floor/prison/darkbrown2/east, +"yz" = ( +/obj/structure/grille, +/obj/item/reagent_container/food/snacks/bearmeat{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/meat/human{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/structure/prop/invuln/fire{ + layer = 2.9 + }, +/turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "yL" = ( /obj/structure/stairs/perspective{ @@ -694,13 +679,6 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"zK" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 6; - pixel_x = 6 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) "zR" = ( /obj/item/trash/cigbutt{ pixel_x = 10; @@ -708,6 +686,12 @@ }, /turf/open/floor/wood, /area/template_noop) +"zS" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) "Aj" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -741,26 +725,11 @@ }, /turf/open/floor/wood, /area/template_noop) -"BQ" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"BY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ - pixel_x = 6; - pixel_y = 5; - layer = 3.1 - }, -/obj/item/toy/plush/farwa{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = 11 +"BZ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/wood, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Ci" = ( /obj/structure/surface/table/reinforced/prison, @@ -770,41 +739,78 @@ }, /turf/open/floor/wood, /area/template_noop) +"Cj" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Cw" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) "Cx" = ( /obj/item/weapon/baseballbat/metal, /turf/open/floor/wood, /area/template_noop) -"CF" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/template_noop) -"Dl" = ( +"CD" = ( /obj/item/trash/crushed_cup{ - pixel_y = 5; - pixel_x = 11 + pixel_x = -2; + pixel_y = 36 }, /turf/open/gm/river/pool, /area/template_noop) -"Dn" = ( -/obj/item/toy/crossbow_ammo{ - pixel_y = -14; - pixel_x = -15 +"CR" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"CZ" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"DG" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"DL" = ( +/obj/item/trash/sosjerky{ + pixel_x = -14; + pixel_y = -20 }, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/darkbrown2/north, /area/template_noop) -"DC" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, +"DW" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/prison, /area/template_noop) -"Ep" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/southwest, +"Eb" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = -17; + pixel_y = 41 + }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Ez" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -2; - pixel_y = 36 +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/turf/open/gm/river/pool, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = -3; + pixel_y = -9 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"EA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Fj" = ( /obj/structure/platform_decoration{ @@ -812,28 +818,9 @@ }, /turf/open/floor/wood, /area/template_noop) -"Fs" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) "Fy" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) -"FD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/plush/therapy/blue{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 10; - pixel_y = 4 - }, -/obj/item/clothing/head/bowlerhat{ - pixel_y = 16; - layer = 3.1 - }, -/turf/open/floor/wood, -/area/template_noop) "Gi" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -841,6 +828,12 @@ }, /turf/open/floor/plating/prison, /area/template_noop) +"Gq" = ( +/obj/item/trash/plate{ + pixel_x = -9 + }, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) "HP" = ( /obj/structure/prop/souto_land/streamer{ dir = 6 @@ -851,13 +844,17 @@ }, /turf/open/floor/wood, /area/template_noop) -"Im" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"IB" = ( -/obj/item/toy/beach_ball, +"IJ" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -65; + pixel_x = 29 + }, /turf/open/gm/river/pool, /area/template_noop) +"IO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/southwest, +/area/template_noop) "IU" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/wood, @@ -874,20 +871,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"Ji" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = -3; - pixel_y = -9 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) "Jw" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -895,14 +878,22 @@ }, /turf/open/floor/wood, /area/template_noop) +"Jz" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/template_noop) "JQ" = ( /obj/item/clipboard, /turf/open/floor/prison, /area/template_noop) -"Kf" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison, +"Kp" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "KL" = ( /obj/structure/surface/table/reinforced/prison, @@ -937,11 +928,11 @@ }, /turf/open/floor/wood, /area/template_noop) -"Ln" = ( -/obj/structure/platform_decoration{ - dir = 1 +"Lr" = ( +/obj/item/trash/semki{ + pixel_x = 15 }, -/turf/open/floor/prison/darkbrown2, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Ls" = ( /obj/structure/surface/table/reinforced/prison, @@ -981,89 +972,90 @@ }, /turf/open/floor/wood, /area/template_noop) -"Mc" = ( +"Mf" = ( /obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/bright_clean2/southwest, +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, /area/template_noop) -"Mg" = ( -/obj/structure/platform{ - dir = 1 +"Nh" = ( +/obj/item/toy/bikehorn/rubberducky{ + pixel_x = -2; + pixel_y = -15 }, /turf/open/gm/river/pool, /area/template_noop) -"Mp" = ( -/obj/item/trash/kepler{ - pixel_x = 13 +"NE" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"ME" = ( -/turf/open/gm/river/pool, +/turf/open/floor/prison/floor_plate, /area/template_noop) -"Ob" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"NR" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = -16 }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) +"NT" = ( /obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/souto_land/pole{ dir = 1 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = -1; - pixel_y = -9 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"Os" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/wood, -/area/template_noop) -"OH" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkbrowncorners2, +/turf/open/gm/river/pool, /area/template_noop) -"Px" = ( +"NY" = ( /turf/open/floor/prison/cell_stripe/east, /area/template_noop) -"PM" = ( -/obj/structure/platform_decoration{ - dir = 1 +"PC" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/template_noop) +"PD" = ( +/obj/structure/platform, +/obj/item/trash/crushed_cup{ + pixel_y = 13; + pixel_x = 45 }, -/turf/open/floor/prison/darkbrowncorners2/west, +/turf/open/gm/river/pool, /area/template_noop) -"Qg" = ( -/turf/open/floor/prison/darkbrown2/west, +"PL" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/pool, +/area/template_noop) +"PS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Qn" = ( /turf/open/floor/prison, /area/template_noop) -"Qr" = ( -/obj/item/tool/mop{ - pixel_x = 11; - layer = 2.9; - pixel_y = 3 +"Qt" = ( +/obj/item/storage/belt/shotgun/full/quackers{ + layer = 3.1 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 9; - pixel_y = -5 +/obj/item/trash/crushed_cup{ + pixel_y = 6; + pixel_x = -30 }, -/turf/open/floor/prison/darkbrown2/east, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 4; + pixel_x = 1 + }, +/turf/open/gm/river/pool, /area/template_noop) -"Qw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkbrown2, +"QJ" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"QR" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Rr" = ( /obj/structure/stairs/perspective{ @@ -1072,20 +1064,17 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"Ru" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = 19; - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"RJ" = ( -/obj/item/trash/sosjerky{ - pixel_x = -14; - pixel_y = -20 - }, +"RB" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/north, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/template_noop) +"RT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"RV" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "RW" = ( /obj/structure/surface/table/reinforced/prison, @@ -1104,14 +1093,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"RY" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river/pool, -/area/template_noop) -"Sh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) "SO" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -1128,23 +1109,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"SS" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"SX" = ( -/obj/item/trash/plate{ - pixel_x = -9 - }, -/turf/open/floor/prison/darkbrowncorners2, -/area/template_noop) -"TG" = ( -/obj/item/toy/crossbow{ - pixel_x = 11; - pixel_y = -8 - }, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) "TO" = ( /obj/structure/prop/souto_land/streamer{ dir = 6 @@ -1159,8 +1123,19 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/template_noop) -"Uf" = ( -/turf/open/floor/prison/darkbrown2, +"TV" = ( +/obj/item/trash/syndi_cakes{ + pixel_x = -13; + pixel_y = -11 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"Uh" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Us" = ( /obj/item/toy/syndicateballoon{ @@ -1169,6 +1144,15 @@ }, /turf/open/floor/wood, /area/template_noop) +"UP" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Va" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/template_noop) "Vi" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/cognac{ @@ -1187,10 +1171,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"Vl" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) "Vx" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -1201,42 +1181,43 @@ }, /turf/open/floor/wood, /area/template_noop) +"VE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) "VV" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, /area/template_noop) -"Wa" = ( -/obj/structure/closet/basketball{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/wood, -/area/template_noop) "We" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/template_noop) -"Wy" = ( -/turf/open/floor/prison/darkbrown2/southeast, +"Wj" = ( +/turf/open/floor/prison/darkbrown2, /area/template_noop) -"WB" = ( -/obj/structure/platform_decoration{ +"WG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/darkbrown2/northeast, -/area/template_noop) -"Xd" = ( -/turf/open/floor/prison/darkbrowncorners2/west, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, /area/template_noop) -"Xv" = ( +"XR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, /obj/structure/platform{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/bright_clean2/southwest, /area/template_noop) "XS" = ( /obj/effect/landmark/corpsespawner/prisoner, @@ -1257,12 +1238,31 @@ }, /turf/open/floor/wood, /area/template_noop) -"Yi" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -6; - pixel_x = -8 +"Yr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = -7 }, -/turf/open/floor/prison/darkbrown2/east, +/obj/item/trash/plate{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/trash/plate{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/trash/plate{ + pixel_x = 7 + }, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/wood, /area/template_noop) "YB" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -1284,17 +1284,17 @@ /area/template_noop) (1,1,1) = {" -Uf +Wj Qn -Kf +DW Qn rp fX fX fX fX -Im -SS +tX +Cw hP hP ly @@ -1303,17 +1303,17 @@ Qn Qn Aj Qn -Im -Uf +tX +Wj Fy "} (2,1,1) = {" -Uf +Wj Qn JQ Qn VV -by +UP fX ni ni @@ -1321,28 +1321,28 @@ YP TS ni ni -Xv -tY -DC +BZ +sW +cT hP hP ly -Im -Uf +tX +Wj so "} (3,1,1) = {" -Uf +Wj Qn VV -by -cF +UP +QR ni aj ni SO -gi -wn +Uh +RV hY ni YP @@ -1350,218 +1350,218 @@ Rr TS ni ni -Xv -Im -Uf -CF +BZ +tX +Wj +sr "} (4,1,1) = {" -Uf +Wj Qn -cc +CR ni aj ni nf nf nf -RJ -Uf +DL +Wj nf BK TO HP nS -Wa +eh aj -Xv -Im -Uf +BZ +tX +Wj mu "} (5,1,1) = {" -Uf +Wj VV -cF +QR aj jt az -CF -tu -Qg -nh -Xd -Qg -bl -Ep +sr +kJ +QJ +RB +fI +QJ +wv +IO nf IU nf aj -Xv -Im +BZ +tX mu fX "} (6,1,1) = {" -Uf -cc +Wj +CR ni ni XS nf -Dn -OH -yf -yf -zK -yf -iS -Ru +ls +VE +ut +ut +gA +ut +gH +hW lh nf Cx aj -Xv -yd -yf +BZ +Va +ut fX "} (7,1,1) = {" -SS -cF +Cw +QR aj nf tz nf -Sh -Uf +EA +Wj pG Gi Gi qm -Im -Uf +tX +Wj nf tz nf aj -ea +WG Fj nf fX "} (8,1,1) = {" -BQ +nT ni ni Zr -FD +ks az -Im -jm -Mg -sE -ME -vx -Im -Uf +tX +CZ +NT +IJ +bm +sG +tX +Wj Zr Ci az ni ni -Xv +BZ nf -Im +tX "} (9,1,1) = {" -xn +gQ ni mk nf rW nf -tK -Uf -Mg -jq -IB -vx -Im -Uf +Eb +Wj +NT +qB +eN +sG +tX +Wj nf rW nf Yd ni -bU +hl nf -Im +tX "} (10,1,1) = {" -PM -et -mU -tu -tu -Mp -uE -Uf -Mg -RY -Ez -vx -Im -co -Qg -tu -tu -yc -Mc -cW -Qg -uE +qi +tF +ny +kJ +kJ +fw +PC +Wj +NT +PL +CD +sG +tX +fZ +QJ +kJ +kJ +su +XR +zS +QJ +PC "} (11,1,1) = {" -xc -Ob -iR -yf -yf -yf -aO -jy -Mg -ME -nv -eG -Im -nm -vJ -yf -sZ -Ji +kC +uO +hV +ut +ut +ut +fk +jr +NT +bm +cu +PD +tX +yz +RT +ut +bT +Ez yL -bI -yf -yf +hX +ut +ut "} (12,1,1) = {" -xn +gQ ni Jw nf tz nf -Im -Uf -Mg -Dl -bW -vx -Fs -Uf +tX +Wj +NT +yv +Qt +sG +uv +Wj nf tz nf @@ -1572,22 +1572,22 @@ nf nf "} (13,1,1) = {" -BQ +nT ni ni pt LI Vx -Im -TG -Mg -wW -ME -vx -Im -gB +tX +sI +NT +Nh +bm +sG +tX +ey Zr -BY +nA az cb Fy @@ -1596,44 +1596,44 @@ Bf Bf "} (14,1,1) = {" -Ln -kO +DG +Kp aj nf rW nf -gm -Uf +Lr +Wj nC Rr Rr TS -Im -Qw +tX +PS nf rW nf -Os +eJ Fy gV gV gV "} (15,1,1) = {" -Uf -cc +Wj +CR aj nf ij tT -Vl -wt -sU -Qg -Qg -Qg -uE -Uf +fB +NR +dD +QJ +QJ +QJ +PC +Wj nf tb nf @@ -1644,31 +1644,31 @@ Bf Bf "} (16,1,1) = {" -Uf +Wj YG aj lc ci tT -yd -Qr -Yi -iS -SX -yf -aN -Wy +Va +jT +in +gH +Gq +ut +TV +Jz iY cq RW nf nf nf -uJ +Yr Bf "} (17,1,1) = {" -Uf +Wj YG aj Ls @@ -1677,8 +1677,8 @@ Bv or zR nf -Sh -Uf +EA +Wj nf tw XS @@ -1692,7 +1692,7 @@ lS Bf "} (18,1,1) = {" -Uf +Wj YG ni ni @@ -1701,8 +1701,8 @@ Gi qm ni vX -ht -sX +qa +Cj Ao Fy nf @@ -1716,17 +1716,17 @@ vU Bf "} (19,1,1) = {" -Uf +Wj We ty ty -nV -tY -cc +NE +sW +CR ni ni pG -jx +Mf ni Fy Zr @@ -1740,18 +1740,18 @@ Bf Bf "} (20,1,1) = {" -Wy +Jz Qn Qn Qn Aj Qn We -xL -xL -WB -qB -xL +nv +nv +kl +ji +nv Fy nf Yh @@ -1764,17 +1764,17 @@ gV gV "} (21,1,1) = {" -Px +NY YB YB -Px +NY YB YB -Px +NY YB YB -Px -Px +NY +NY YB Fy Fy diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index 05703e4b37..8aa22f321b 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -365,6 +365,9 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) +"abV" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator4/ground) "abY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating/icefloor, @@ -442,6 +445,11 @@ dir = 8 }, /area/ice_colony/exterior/surface/cliff) +"acr" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/bball) "act" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/north) @@ -472,11 +480,6 @@ "acz" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/engineering/electric) -"acA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering/generator) "acB" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -544,6 +547,15 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) +"ada" = ( +/obj/item/lightstick/planted, +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle"; + dockId = "Upper_Requisitions"; + pixel_y = 32 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) "adb" = ( /obj/structure/ice/thin/junction{ dir = 1 @@ -1706,6 +1718,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/north) +"amP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) "amQ" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -1935,6 +1951,9 @@ /obj/structure/ice/thin/straight, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) +"aop" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator2/ground) "aou" = ( /turf/closed/wall, /area/ice_colony/surface/clinic/treatment) @@ -2311,19 +2330,6 @@ /obj/structure/closet/jcloset, /turf/open/floor/plating, /area/ice_colony/surface/dorms) -"arV" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Upper_Arrivals"; - name = "Upper Arrivals"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/arrivals; - airlock_exit = "elevator"; - elevator_network = "Arrivals"; - airlock_area = /area/shuttle/elevator1/ground - }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator1/ground) "asf" = ( /obj/structure/ice/thin/corner, /turf/open/ice, @@ -2645,6 +2651,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/south) +"avv" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/security/brig) "avw" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, @@ -2818,6 +2830,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/south) +"awI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/hallway/south_east) "awJ" = ( /obj/item/lightstick/planted, /obj/structure/disposalpipe/segment, @@ -3417,6 +3433,12 @@ dir = 4 }, /area/ice_colony/exterior/surface/cliff) +"aCT" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) "aCW" = ( /obj/structure/ice/thin/single, /turf/open/ice, @@ -3522,6 +3544,9 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/garage/repair) +"aFD" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research) "aFE" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/power) @@ -4123,6 +4148,9 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southwest) +"aJB" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator1/ground) "aJG" = ( /obj/structure/tunnel{ id = "south_tcomms_tunnel" @@ -4174,12 +4202,14 @@ /turf/open/ice, /area/ice_colony/exterior/surface/valley/southwest) "aJR" = ( -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"aJW" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms/canteen) +/area/ice_colony/underground/research) +"aJX" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) "aKd" = ( /obj/structure/ice/thin/straight, /turf/open/ice, @@ -4234,6 +4264,15 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/bar/bar) +"aKC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"aKD" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) "aKH" = ( /obj/structure/ice/thin/corner, /turf/open/ice, @@ -4250,6 +4289,10 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/clearing/south) +"aKM" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) "aKT" = ( /obj/structure/ice/thin/corner{ dir = 4 @@ -4411,6 +4454,10 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/bar/canteen) +"aLS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/hangar/beta) "aLT" = ( /obj/item/tool/shovel/snow, /obj/structure/pipes/standard/simple/hidden/green{ @@ -4553,16 +4600,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/ice_colony/surface/bar/canteen) -"aMJ" = ( -/obj/structure/surface/table, -/obj/item/folder/white, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitered/northeast, -/area/ice_colony/surface/clinic/lobby) "aMK" = ( /obj/item/stack/rods, /obj/item/shard, @@ -4607,6 +4644,9 @@ }, /turf/closed/ice_rock/southWall, /area/ice_colony/exterior/surface/cliff) +"aNf" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator3/ground) "aNi" = ( /obj/item/tool/shovel/snow, /turf/open/floor/plating, @@ -4650,6 +4690,18 @@ /obj/structure/window_frame/colony, /turf/open/floor/plating, /area/ice_colony/surface/bar/bar) +"aNH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"aNS" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/tcomms) "aNT" = ( /obj/structure/surface/rack, /obj/item/storage/briefcase/inflatable, @@ -4711,6 +4763,10 @@ }, /turf/open/floor/plating, /area/ice_colony/surface/research) +"aOs" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "aOu" = ( /turf/closed/ice_rock/singleT{ dir = 4 @@ -4801,13 +4857,19 @@ /obj/structure/ice/thin, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"aQS" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +"aRi" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"aRk" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) "aRw" = ( /obj/structure/machinery/space_heater, /turf/open/floor/wood, @@ -4879,29 +4941,12 @@ "aSB" = ( /turf/closed/wall, /area/ice_colony/surface/research/temporary) -"aSN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/research) -"aTB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) +"aTC" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/north_west) "aTS" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/valley/southwest) -"aTU" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark2, -/area/ice_colony/surface/research) "aTY" = ( /turf/open/ice, /area/ice_colony/exterior/surface/cliff) @@ -4910,18 +4955,15 @@ icon_state = "swall1" }, /area/ice_colony/surface/hangar/alpha) -"aUl" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) "aUn" = ( /turf/closed/shuttle{ icon_state = "swall1" }, /area/ice_colony/surface/hangar/beta) +"aUp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/research) "aUq" = ( /obj/structure/ice/thin/single, /turf/open/ice, @@ -4934,10 +4976,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/research/temporary) -"aUG" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) "aUN" = ( /obj/structure/ice/thin/end{ dir = 8 @@ -5003,13 +5041,10 @@ "aWp" = ( /turf/open/floor/plating, /area/ice_colony/exterior/surface/landing_pad) -"aWz" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) +"aWy" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) "aWB" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating/icefloor, @@ -5134,10 +5169,6 @@ /obj/structure/ice/thin/end, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aYw" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) "aYx" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating/icefloor, @@ -5259,10 +5290,6 @@ "aZG" = ( /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/underground/hangar) -"aZH" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/platebot, -/area/ice_colony/surface/engineering/generator) "aZM" = ( /obj/structure/ice/thin/corner{ dir = 8 @@ -5477,6 +5504,9 @@ /obj/structure/ice/thin/straight, /turf/open/ice, /area/ice_colony/exterior/surface/cliff) +"bbn" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator4/underground) "bbt" = ( /obj/structure/ice/thin/junction{ dir = 1 @@ -5505,12 +5535,9 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south/excavation) -"bbN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/south_east) +"bbV" = ( +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) "bbW" = ( /obj/structure/ice/thin/corner{ dir = 4 @@ -5667,6 +5694,12 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) +"beL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) "beU" = ( /turf/closed/ice/straight, /area/ice_colony/exterior/surface/valley/south/excavation) @@ -5707,6 +5740,12 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south/excavation) +"bgd" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/storage) "bgl" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ id = "undergroundhangarwest"; @@ -5773,6 +5812,12 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south) +"bgV" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) "bhe" = ( /obj/structure/machinery/conveyor, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5798,6 +5843,16 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/ice_colony/underground/requesition/lobby) +"bhr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) "bhy" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -5891,6 +5946,12 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/wood, /area/ice_colony/surface/command/crisis) +"biL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) "biM" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plating/icefloor, @@ -5912,10 +5973,15 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/command/pv1) -"biT" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/command/center) +"bjc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) "bjd" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -6082,10 +6148,9 @@ /obj/structure/surface/rack, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/research) -"blh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation) +"blo" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator2/underground) "blr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -6301,10 +6366,6 @@ dir = 4 }, /area/ice_colony/exterior/underground/caves) -"boU" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/treatment) "bpa" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -6361,6 +6422,12 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/underground/crew/bball) +"brj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) "brl" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green, @@ -6458,6 +6525,18 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/central) +"bsG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) "bsJ" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -6736,12 +6815,13 @@ /obj/structure/mineral_door/resin, /turf/open/ice, /area/ice_colony/underground/maintenance/engineering) -"bvb" = ( +"bva" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/storage) +/obj/structure/flora/pottedplant, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) "bvc" = ( /obj/structure/ice/thin/corner{ dir = 8 @@ -6899,9 +6979,8 @@ /turf/open/floor/wood, /area/ice_colony/underground/crew/bball) "bwd" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/lavatory) +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) "bwg" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -6967,12 +7046,9 @@ "bwK" = ( /turf/open/ice, /area/ice_colony/exterior/underground/caves) -"bwN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) +"bwL" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/research) "bwT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7009,6 +7085,13 @@ dir = 1 }, /area/ice_colony/exterior/underground/caves) +"bxi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) "bxv" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating, @@ -7162,6 +7245,22 @@ }, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/engineering) +"byM" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator3/underground) +"byN" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) "byO" = ( /turf/closed/ice/end{ dir = 4 @@ -7541,12 +7640,6 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/ice_colony/underground/security/detective) -"bCc" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) "bCd" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, @@ -7595,6 +7688,18 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/central) +"bCy" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"bCF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) "bCG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -7688,15 +7793,6 @@ }, /turf/open/floor/plating, /area/ice_colony/underground/security/hallway) -"bEa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/excavation) "bEd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7977,14 +8073,16 @@ /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) "bHN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "engine_electrical_maintenance"; - name = "Underground Power Substation" +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"bHO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering/substation) +/area/ice_colony/underground/command/checkpoint) "bIb" = ( /obj/item/stack/sheet/wood, /obj/structure/mineral_door/resin, @@ -8185,10 +8283,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/ice, /area/ice_colony/underground/research) -"bLx" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) "bLO" = ( /turf/closed/wall/r_wall, /area/ice_colony/underground/maintenance/security) @@ -8219,10 +8313,22 @@ }, /turf/open/floor/plating, /area/ice_colony/underground/security) +"bNe" = ( +/obj/structure/surface/table/woodentable, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) "bNf" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/security) +"bNp" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) "bNt" = ( /turf/closed/wall/r_wall, /area/ice_colony/underground/crew/disposals) @@ -8419,13 +8525,6 @@ "bPJ" = ( /turf/open/space/transit/north/shuttlespace_ns4, /area/shuttle/elevator4/transit) -"bPQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/wet_sign, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) "bPR" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -8792,6 +8891,9 @@ /obj/structure/filingcabinet, /turf/open/floor/wood, /area/ice_colony/underground/reception) +"bTv" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator1/underground) "bTx" = ( /obj/structure/flora/pottedplant, /turf/open/floor/wood, @@ -8848,6 +8950,9 @@ "bTY" = ( /turf/open/floor, /area/ice_colony/surface/tcomms) +"bUt" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) "bUA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8864,6 +8969,10 @@ /obj/structure/surface/rack, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/south) +"bUO" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) "bUU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -8889,6 +8998,12 @@ /obj/structure/mineral_door/resin, /turf/open/ice, /area/ice_colony/underground/maintenance/south) +"bVd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) "bVe" = ( /turf/closed/wall/r_wall, /area/ice_colony/underground/reception/checkpoint_south) @@ -8896,10 +9011,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/underground/reception/checkpoint_south) -"bVu" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/garage/repair) "bVz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8989,6 +9100,10 @@ }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) +"bWe" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) "bWf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9152,2370 +9267,2098 @@ }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"bXI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/surface/research) "bYm" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"bYZ" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/hydroponics/lobby) -"bZr" = ( -/turf/open/floor/darkpurple2, -/area/ice_colony/surface/research) -"bZz" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +"bYt" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad) -"bZV" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/hangar/alpha) -"cak" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/engineering/generator) -"can" = ( +"bYu" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1 }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"caw" = ( +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/backroom) +"bYP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Underground Security Armory" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"caR" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"cbk" = ( -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/tcomms) -"cbr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"bZu" = ( +/obj/structure/bed/chair{ + dir = 1 }, /obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/underground/requesition/lobby) -"cbZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/human/burger, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"ccq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research/storage) -"cda" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkredcorners2, -/area/ice_colony/underground/security/hallway) -"cdy" = ( -/obj/structure/machinery/alarm{ dir = 1; pixel_y = -24 }, /turf/open/floor/darkgreen2, -/area/ice_colony/underground/medical/lobby) -"cej" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/north_west) -"cek" = ( -/obj/structure/bed/chair/office/light{ +/area/ice_colony/underground/hallway/south_east) +"bZB" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/generator) +"cab" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation/smes) +"caK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"cez" = ( -/obj/item/stack/cable_coil/random, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"cfa" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics South Wing Dome" +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Underground Security Showers" }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/south) -"cfH" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"caU" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/northeast, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/container_yard) -"cfO" = ( -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/telecomms) -"chI" = ( +"cbk" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/tcomms) +"cbp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/electric) -"chQ" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/area/ice_colony/underground/command/checkpoint) +"cbr" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Sample Isolation" }, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/hangar/alpha) -"chR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition/lobby) -"ciF" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"cbU" = ( +/obj/structure/closet/crate, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"ccn" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/storage/highsec) -"ciK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"cct" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/checkpoint) -"cjg" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/command/control/office) -"cjU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/hallway) -"cko" = ( -/obj/structure/machinery/firealarm{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - pixel_y = -24 + name = "\improper Aurora Medical Clinic"; + req_access_txt = "100" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"cks" = ( -/obj/structure/showcase, +/turf/open/floor/whiteredfull, +/area/ice_colony/surface/clinic/lobby) +"ccE" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"cdS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"ceb" = ( +/obj/item/storage/toolbox/emergency, /turf/open/floor/dark2, -/area/ice_colony/underground/storage/highsec) -"ckv" = ( +/area/ice_colony/surface/hydroponics/north) +"cem" = ( +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"cfe" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"cfv" = ( /obj/structure/flora/pottedplant, /turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) -"clm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"cfx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"cmc" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/research) +"cgp" = ( +/obj/structure/curtain/black, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"cmC" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"cmG" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"coq" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"coI" = ( -/obj/effect/landmark/hunter_primary, +/area/ice_colony/underground/crew/morgue) +"cgr" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/treatment) +"cgw" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/surface/requesitions) +"chc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/white, /area/ice_colony/surface/clinic/treatment) -"coU" = ( +"chm" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator3/underground) +"chw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"cph" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"chE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"cif" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Aurora Medical Clinic Storage" + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"cip" = ( +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/hallway/north_west) -"cpO" = ( -/obj/structure/closet/radiation, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research/storage) -"cqN" = ( +"ciR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"ckt" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"ckL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"ckO" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/obj/structure/machinery/light, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"cre" = ( +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"clk" = ( +/obj/effect/landmark/crap_item, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"clr" = ( +/obj/structure/inflatable/door, +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" + }, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"clu" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + id = "st_17"; + name = "Power Storage Unit" + }, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"clw" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/sec_storage) +"clY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Underground Disposals" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"cmf" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/security/brig) +"cmI" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/generator) +"cmM" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"cmS" = ( +/obj/structure/surface/table, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"crx" = ( -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/research/tech_storage) -"csE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/security/interrogation) +"cmX" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"cnI" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control/office) +"coe" = ( +/obj/structure/window/reinforced, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"cof" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"cth" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/lobby) -"ctn" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"cpG" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"cpM" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"cpV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"cuG" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/underground/hangar) -"cvw" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 +/area/ice_colony/surface/hydroponics/south) +"cqg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"cqn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"cvI" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/area/ice_colony/surface/dorms) +"cqI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/storage/box/lightstick, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"cvN" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/storage) +"cqN" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"crt" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator1/underground) +"csk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/reception/checkpoint_south) -"cwJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "garage_ice_2"; - name = "\improper Garage Shutters" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"cso" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"cwO" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"cxC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"csJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/command/checkpoint) -"cyA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/tool/stamp, -/turf/open/floor/whitered/southwest, -/area/ice_colony/underground/medical/lobby) -"cyG" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/ice_colony/underground/hallway/south_east) +"csV" = ( +/obj/structure/surface/table, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"ctv" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/engineering/generator) +"ctw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"cyN" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/crew/disposals) -"czg" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"ctC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"czy" = ( -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"cAP" = ( -/obj/structure/surface/table, -/obj/item/paper, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"ctK" = ( +/obj/item/weapon/gun/pistol/highpower, /turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"cBe" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/command/checkpoint) -"cBi" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"cBD" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"cBL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering/electric) -"cCq" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"cDN" = ( +/area/ice_colony/surface/engineering) +"ctO" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"ctS" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) -"cEG" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"cER" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "Underground Hangar Lock"; - pixel_x = -24 - }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hangar) -"cEZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/research) -"cFt" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/south) -"cFv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/darkblue2/east, -/area/ice_colony/surface/command/control/office) -"cFy" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"ctV" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"cub" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/chapel) -"cFV" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "burst_l" - }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"cFW" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/surface/table, -/obj/item/tool/soap, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; - pixel_y = -2 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"cGK" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering) -"cHd" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"cuv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control) -"cHm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/underground/hallway/north_west) -"cHK" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/lobby) -"cHR" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/surface/requesitions) -"cIi" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/medical/lobby) -"cIu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception/checkpoint_north) -"cIW" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research/storage) -"cJu" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering) -"cJT" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/dorms) -"cJZ" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research) -"cKN" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/security/brig) -"cLd" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"cLh" = ( -/obj/structure/closet/crate, -/obj/item/tool/shovel/snow, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"cLk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research/work) -"cLq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"cLX" = ( +/area/ice_colony/surface/hangar/beta) +"cuy" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/center) +"cvd" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/obj/item/tool/hand_labeler, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/reception/checkpoint_north) +"cvB" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"cLZ" = ( -/turf/open/floor/darkbrowncorners2/east, -/area/ice_colony/surface/research) -"cMu" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/ice_colony/surface/hydroponics/lobby) +"cvC" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/beta) -"cNf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"cNL" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"cOC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"cvI" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"cwk" = ( +/obj/structure/closet/crate/hydroponics, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/north) +"cwO" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator3/underground) +"cwU" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"cxe" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/reception/checkpoint_north) -"cOG" = ( +/area/ice_colony/underground/storage) +"cxD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Disposals" + dir = 10 }, /turf/open/floor/dark2, -/area/ice_colony/surface/disposals) -"cOH" = ( -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research/storage) -"cOX" = ( -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/surface/disposals) -"cPt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"cPz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"cPD" = ( -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/hallway/north_west) -"cPI" = ( -/obj/structure/disposalpipe/segment, +/area/ice_colony/underground/requesition) +"cyc" = ( +/obj/structure/showcase, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"cPQ" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering) -"cPS" = ( -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/garage/two) -"cQd" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/ice_colony/underground/storage/highsec) +"cyf" = ( +/obj/structure/pipes/standard/manifold/visible{ + layer = 2.3 }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"cyr" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/research/sample) -"cQe" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research) -"cQh" = ( +/area/ice_colony/surface/command/control/office) +"cyy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"czk" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/firealarm{ - pixel_y = 24 + dir = 4; + pixel_x = 24 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"cQC" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/research/field_gear) -"cQG" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/hangar/alpha) +"czo" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/engineering) +"czG" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/checkpoint) -"cRo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/engineering/electric) -"cRK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"czM" = ( +/obj/structure/machinery/holosign/surgery{ + id = "otice" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; - name = "\improper Hydroponics Dome" + name = "Underground Medical Laboratory Operating Theatre" }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"czT" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/storage) +"cAt" = ( +/obj/structure/window/framed/colony, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/lobby) -"cSd" = ( -/obj/structure/machinery/light{ +/area/ice_colony/surface/dorms) +"cAQ" = ( +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/or) +"cBg" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"cBj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/north_west) -"cSr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Zoo Dome" - }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/hydroponics/lobby) -"cUq" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"cVr" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/hangar/beta) -"cVM" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Colony Garage" }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"cXI" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"cCH" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"cCU" = ( +/obj/structure/pipes/unary/freezer{ + dir = 8; + icon_state = "freezer_1" }, -/turf/open/floor/plating/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"cXJ" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"cDi" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"cDY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"cEz" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/southwest, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/locker) +"cEF" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) -"cXV" = ( -/obj/structure/closet/radiation, -/turf/open/floor/darkpurple2/southeast, -/area/ice_colony/underground/research/storage) -"cXW" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"cYr" = ( +"cEG" = ( +/obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating/icefloor, -/area/shuttle/elevator2/underground) -"cYx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +/area/ice_colony/underground/hangar) +"cER" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, /turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"cZu" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/whitered/southwest, -/area/ice_colony/underground/medical/storage) -"cZE" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" +/area/ice_colony/surface/substation) +"cEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"dah" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/area/ice_colony/underground/engineering) +"cFj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "researchoutside"; + name = "Omicron Research Dome" }, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/command/checkpoint) -"daw" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, /turf/open/floor/darkpurple2/northeast, -/area/ice_colony/underground/research/storage) -"daC" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/whitered/northwest, -/area/ice_colony/surface/clinic/lobby) -"daP" = ( +/area/ice_colony/surface/research) +"cFy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"dbi" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/dorms/lavatory) -"dbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"dbI" = ( -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/temporary) -"dbW" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"cFR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/engineering/generator) -"dcc" = ( -/obj/item/device/flashlight, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"cGe" = ( +/obj/item/device/flashlight/flare, /turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) -"dda" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator2/ground) -"ddu" = ( -/obj/structure/bed/chair/wood/normal{ +"cGB" = ( +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/center) +"cHX" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/excavation) +"cIm" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/tech_storage) +"cID" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/substation/smes) +"cJf" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/brig) +"cJt" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/leisure) +"cJz" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"des" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/surface/dorms/canteen) -"deK" = ( -/obj/structure/surface/table, -/turf/open/floor/whitered/southeast, -/area/ice_colony/surface/clinic/treatment) -"deU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Bay" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"cJB" = ( +/obj/structure/surface/rack, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/item/cell/hyper/empty, +/obj/item/cell/hyper/empty, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/tool) +"cJR" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + icon_state = "wall" }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"dfX" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/dorms) -"dgq" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"dgz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ +/area/ice_colony/surface/hangar/alpha) +"cKg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/north) -"dgA" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition/lobby) -"dgC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Underground Morgue" - }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"dgI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/ice_colony/underground/hallway/north_west) +"cKo" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"dgN" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 +/area/ice_colony/surface/research/tech_storage) +"cKM" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"cLl" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/center) +"cLB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/substation/smes) -"dha" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"cME" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/dark2, /area/ice_colony/underground/security/armory) -"dij" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"cML" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "dorms_ladder"; + pixel_y = 16 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/dorms/lavatory) +"cMV" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/disposals) +"cNd" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"dik" = ( +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/dorms/canteen) +"cNx" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Underground Engineering Locker Room" + dir = 1; + name = "\improper Colony Engineering Electric Storage"; + req_access_txt = "100" }, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering/locker) -"dip" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/engineering/electric) +"cNE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/research) -"diH" = ( +"cNK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"djm" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/research/temporary) -"djq" = ( -/obj/structure/window/reinforced, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "dig_site_prep_ladder"; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/excavation) -"djx" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/hallway) -"djA" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"cNS" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/dorms/lavatory) +"cNV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"djP" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"cOs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/engineering) +"cOG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Aurora Medical Clinic Treatment"; + req_access_txt = "100" + }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"cOK" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/bball) +"cOM" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 +/obj/item/clothing/mask/gas, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/storage) +"cPt" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/surface/requesitions) +"cRc" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/armory) -"dkx" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"cRI" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway/north_west) +"cRW" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research) +"cSo" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -8 + }, +/obj/effect/landmark/survivor_spawner, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"cSL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"cTc" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"cTn" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator1/underground) +"cTF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control) -"dky" = ( -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"dkB" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator3/ground) -"dkX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"cTJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"dle" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"cTZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "\improper Underground Security Custodial Closet" +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"cUl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/backroom) -"dls" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"cUI" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"cUO" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/command/center) +"cUV" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/bball) +"cUZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"dlC" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"dlJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/treatment) -"dlX" = ( -/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/reception/checkpoint_north) +"cVn" = ( +/turf/open/floor/bcircuit, /area/ice_colony/surface/engineering/generator) -"dnr" = ( -/obj/structure/bedsheetbin, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/security/brig) -"dnA" = ( +"cVM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"cWI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"dog" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/one) -"dol" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"doD" = ( +/area/ice_colony/underground/security) +"cXj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"cXn" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator1/underground) +"cXz" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/north) +"cXO" = ( +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"cYs" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, /turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) -"dpj" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/station_alert, +"cYv" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"dpT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/ice_colony/underground/engineering) +"cYQ" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"cYZ" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "hydroponics_ladder"; + pixel_y = 16 }, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/south) +"cZu" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, /area/ice_colony/surface/dorms) -"drv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/command/checkpoint) -"drK" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"cZX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security) -"dsd" = ( -/turf/open/floor/darkbrowncorners2/east, -/area/ice_colony/underground/requesition) -"dse" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/substation/smes) -"dsC" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"daH" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"daN" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"daZ" = ( +/obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering/generator) -"dtO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/rods{ - amount = 25 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"dbE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Storeroom" }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/turf/open/floor/dark2, +/area/ice_colony/surface/tcomms) +"dbO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"dcy" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/engineering) -"dul" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/storage) -"duy" = ( -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/underground/crew/disposals) -"duB" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/exterior/surface/valley/southwest) -"duI" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/lobby) +"dcJ" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"dcM" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"dcY" = ( /turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"dvE" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/north) -"dvI" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/exterior/surface/container_yard) -"dvQ" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"dwf" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ +/area/shuttle/elevator3/ground) +"ddm" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"def" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/disposals) +"det" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"dfN" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/locker) +"dgl" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"dgM" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"dgT" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 2; - id = "st_19"; - name = "Research Storage Unit" + icon_state = "pipe-u" }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"dxW" = ( -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/underground/hallway/north_west) -"dyL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/south) +"dhR" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"dyP" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/excavation) -"dzC" = ( -/obj/item/shard, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"did" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"dzQ" = ( -/turf/open/floor/darkblue2/west, -/area/ice_colony/underground/command/checkpoint) -"dAr" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/area/ice_colony/surface/engineering/tool) +"dit" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"dAS" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/plating/warnplate, -/area/ice_colony/surface/disposals) -"dAX" = ( +/area/ice_colony/surface/command/control/office) +"diO" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"diV" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"dku" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/medical/lobby) +"dkZ" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"dBz" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Sample Isolation" +/area/ice_colony/underground/hallway/north_west) +"dle" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"dmd" = ( +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/requesition/sec_storage) +"dmr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/north) +"dmF" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"dmU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"dmV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"dnk" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"dnB" = ( +/turf/open/floor/whiteredcorner/west, +/area/ice_colony/surface/clinic/treatment) +"dnC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/research/sample) -"dBL" = ( +/area/ice_colony/surface/research/temporary) +"dnQ" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"dol" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkredcorners2/east, -/area/ice_colony/underground/security) -"dBM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 8 }, -/turf/open/floor/chapel/north, -/area/ice_colony/underground/crew/chapel) -"dCp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkbrown2/west, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"doF" = ( +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/beta) -"dCt" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/lobby) -"dCG" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/storage) -"dDk" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator2/underground) -"dDD" = ( -/obj/structure/closet/crate, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/darkpurple2, -/area/ice_colony/surface/excavation) -"dEe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/hydroponics/lobby) -"dEl" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/armory) -"dED" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"dEZ" = ( -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"doJ" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"dpG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/sheet/metal, -/obj/item/shard, -/obj/item/shard, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/command/checkpoint) -"dFd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Aurora Medical Clinic"; - req_access_txt = "100" - }, -/turf/open/floor/whiteredfull, -/area/ice_colony/surface/clinic/lobby) -"dFf" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/ice_colony/underground/reception/checkpoint_south) -"dFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/lobby) -"dGR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/hallway) -"dHO" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "power_storage_ladder" - }, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/substation/smes) -"dIj" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"dIs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Lobby" - }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"dIK" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard, -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/hallway/south_east) +"dpK" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/lobby) -"dJo" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/excavation) -"dJt" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 5; - pixel_y = -8 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"dJP" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"dKE" = ( +/turf/open/floor/chapel/east, +/area/ice_colony/underground/crew/chapel) +"dpO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Medical Laboratory Storage" - }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/storage) -"dKG" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"dql" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Theta-V Research Laboratory Storage" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"dqp" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/storage/highsec) +"dqt" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/research/storage) -"dKV" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/whitered/northeast, -/area/ice_colony/surface/clinic/treatment) -"dKW" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"dKX" = ( -/obj/structure/filingcabinet, +/area/ice_colony/surface/command/control) +"dqJ" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/whitered/southeast, -/area/ice_colony/underground/medical/lobby) -"dLE" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - dockId = "Lower_Omicorn"; - shuttleId = "ice_classic_shuttle2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"dqN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/research) -"dMi" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"dqO" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"dqT" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/sec_storage) +"dru" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"dMn" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/brig) -"dMo" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/engineering/generator) -"dMz" = ( -/obj/structure/disposalpipe/junction{ +/area/ice_colony/surface/substation) +"dsk" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/two) +"dsl" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-j2" + icon_state = "pipe-c" + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"dsv" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/storage) +"dsz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"dtj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"dMM" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"dNb" = ( -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"dNt" = ( -/obj/vehicle/train/cargo/trolley, /turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"dtI" = ( +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) -"dNX" = ( +"duk" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"dur" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"dOQ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/area/ice_colony/surface/research) +"duX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/underground/hangar) -"dPP" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"dvd" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"dQa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/bcircuit, +/area/ice_colony/surface/engineering/generator) +"dvg" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/whiteredcorner, -/area/ice_colony/surface/clinic/lobby) -"dQH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering/locker) -"dQM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/command/center) +"dvq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, /turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"dvZ" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/hangar/checkpoint) +"dwr" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/engineering) -"dRN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"dRX" = ( +"dwu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/research/temporary) -"dRY" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/underground/security/brig) -"dSd" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"dwF" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"dSI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteredcorner/north, -/area/ice_colony/surface/clinic/treatment) -"dSR" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/or) +"dwM" = ( +/obj/item/storage/box/donkpockets, /obj/structure/surface/table/reinforced, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security/interrogation) -"dTl" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"dwN" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering) -"dTu" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"dxg" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"dxj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) -"dTK" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/storage) -"dUd" = ( -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/tcomms) -"dUj" = ( -/obj/item/tool/soap, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"dUv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"dUw" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"dUL" = ( -/obj/effect/landmark/hunter_secondary, +"dxk" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"dVn" = ( +/area/ice_colony/surface/garage/repair) +"dxt" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/hangar) +"dxD" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/crew/disposals) +"dxX" = ( /obj/docking_port/stationary/trijent_elevator{ height = 5; width = 8; - id = "Upper_Dorms"; - name = "Upper Dorms"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/dorm; + id = "Lower_Arrivals"; + name = "Lower Arrivals"; airlock_exit = "elevator"; - elevator_network = "dorm"; - airlock_area = /area/shuttle/elevator2/ground + elevator_network = "Arrivals"; + airlock_area = /area/shuttle/elevator1/underground }, /turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator2/ground) -"dVt" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "st_18"; - name = "Disposals Storage Unit" +/area/shuttle/elevator1/underground) +"dym" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"dys" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/excavation) +"dyS" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"dzi" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"dzM" = ( +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"dzP" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"dAj" = ( +/obj/structure/machinery/processor, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"dAv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"dAA" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/container_yard) +"dAB" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/research) +"dAW" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"dBE" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition/sec_storage) +"dBI" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"dBZ" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/surface/command/checkpoint) +"dCt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/weldpack, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"dCC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"dCK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/shuttle_control/dropship1, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/landing/console) +"dCZ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"dDq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/telecomms) -"dVK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkgreen2/southwest, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"dDr" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/lobby) -"dVL" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" +"dDE" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation/smes) -"dVQ" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) -"dVR" = ( -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/interrogation) -"dWh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering/electric) -"dWj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/garage/two) -"dWr" = ( -/obj/structure/surface/table, -/obj/item/stack/nanopaste, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/or) -"dWI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"dWL" = ( -/obj/structure/bed/chair, -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/checkpoint) -"dWO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/research/field_gear) -"dWT" = ( -/obj/structure/disposalpipe/segment{ +"dDG" = ( +/obj/structure/bed/chair{ dir = 4 }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"dDM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/backroom) +"dEE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"dEV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Underground Medical Laboratory Treatment" - }, /turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"dWX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/ice_colony/underground/medical/hallway) +"dFG" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/valley/southwest) +"dGj" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle4"; + dockId = "Upper_Arrivals"; + pixel_y = 32 }, -/turf/open/floor/darkyellow2/east, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"dHs" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/medical/lobby) +"dHC" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"dHM" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/surface/requesitions) +"dIE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/temporary) +"dIO" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"dJd" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/surface/excavation/storage) +"dJK" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) -"dXv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, +"dJN" = ( +/obj/structure/machinery/door/unpowered/shuttle, /turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/beta) -"dXJ" = ( -/obj/structure/bed/chair/office/light{ +"dJW" = ( +/obj/structure/shuttle/engine/heater{ dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"dKJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/command/center) -"dYo" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator1/ground) -"dYD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/underground/maintenance/east) +"dLI" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"dLS" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"dMn" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/medical/lobby) +"dNf" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"dYM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/ice_colony/surface/hydroponics/north) +"dNg" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/whitered/northwest, -/area/ice_colony/underground/medical/lobby) -"dYN" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 4 }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/telecomms) -"dZe" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"dNl" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"dNn" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_l" + }, +/obj/structure/shuttle/diagonal{ + dir = 1; + icon_state = "platform" }, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"dZg" = ( -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research/storage) -"dZF" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/exterior/surface/landing_pad2) -"dZH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/telecomms) -"dZJ" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/surface/tcomms) -"dZK" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/crew/canteen) -"eau" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/area/ice_colony/surface/hangar/beta) +"dNw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"dOz" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"dOP" = ( /turf/open/floor/dark2, +/area/ice_colony/underground/research/work) +"dPe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) -"eaI" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 +"dQt" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"ebh" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/exterior/surface/landing_pad) -"ebi" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator2/underground) -"ebu" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/darkpurple2/southeast, -/area/ice_colony/underground/research/work) -"ebv" = ( +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/medical/lobby) +"dRg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"dRN" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/dark2, -/area/ice_colony/underground/reception/checkpoint_north) -"ebE" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/surface/excavation/storage) -"ebS" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/armory) -"eco" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"ecD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/ice_colony/surface/hangar/beta) +"dSh" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"dSm" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/whiteredcorner/east, -/area/ice_colony/underground/medical/treatment) -"ecV" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"dST" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "13" }, -/turf/open/floor/icefloor/shuttle_vfloor, +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) -"edu" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "\improper Underground Security Evidence Storage" +"dTr" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"dUa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"edz" = ( -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/center) -"eeb" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security/hallway) -"eej" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/disposals) -"eek" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"dUd" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"dUe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/hallway/south_east) -"eel" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/surface/command/control/office) -"eew" = ( -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/interrogation) -"eeC" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/exterior/surface/landing_pad2) -"eeI" = ( -/obj/structure/surface/table, -/obj/item/clipboard, /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"eeW" = ( +/area/ice_colony/surface/substation) +"dUN" = ( /obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"efj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"egq" = ( -/obj/structure/disposalpipe/junction{ +/area/ice_colony/underground/hallway/south_east) +"dUR" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/hydroponics/lobby) -"egB" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"ehc" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition) -"eiR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/lavatory) -"eiT" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/plating/warnplate/east, -/area/ice_colony/underground/crew/disposals) -"eja" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/whitered/southwest, -/area/ice_colony/underground/medical/hallway) -"ejp" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation/smes) -"ejG" = ( -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research/sample) -"ejL" = ( -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/north_west) -"ekS" = ( -/turf/open/floor/bcircuit, -/area/ice_colony/underground/hangar) -"ekV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"dVa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"elx" = ( -/obj/structure/shuttle/diagonal{ - dir = 6; - icon_state = "wall" - }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"elH" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 +/area/ice_colony/surface/engineering) +"dVb" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/research/storage) +"dVe" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = -26 }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/darkred2/northeast, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/armory) -"elU" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +"dVD" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"dWn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"emm" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator3/ground) -"emN" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) +"dWX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitered/southwest, -/area/ice_colony/surface/clinic/lobby) -"enp" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"dXe" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"dXh" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/plating/warnplate/north, -/area/ice_colony/underground/crew/disposals) -"enJ" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad2) -"enZ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"eoj" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"eol" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"dXq" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/turf/open/floor/whitered/northwest, -/area/ice_colony/surface/clinic/treatment) -"eom" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"eos" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"dXw" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"dYI" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator4/ground) +"dZe" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Underground Technical Storage" + name = "\improper Underground Engineering Locker Room" }, /turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"eoE" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/ice_colony/underground/engineering/locker) +"dZx" = ( +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/underground/research) +"dZD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/command/checkpoint) +"ead" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition/sec_storage) -"epo" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/alpha) +"eaD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"eaO" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"ebj" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"ebS" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"epF" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"eqj" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/hallway) -"erp" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"esz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/engineering) -"esA" = ( /turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator4/ground) -"esG" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/landing_pad) -"esS" = ( -/obj/structure/disposalpipe/segment, +"ecI" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"edq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"edN" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/garage/two) +"eeb" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"esX" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/area/ice_colony/surface/hangar/hallway) +"eee" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"efd" = ( +/obj/effect/landmark/corpsespawner/bridgeofficer, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"efn" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"efx" = ( +/obj/structure/closet/toolcloset, /turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"euc" = ( +/area/ice_colony/surface/garage/one) +"efF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"eun" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/ice_colony/surface/research) +"egK" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"egQ" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -8 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"evk" = ( -/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) -"evz" = ( +"ehh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/chapel/west, -/area/ice_colony/underground/crew/chapel) -"evX" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms) +"ehL" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "power_storage_ladder" }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"ewc" = ( -/obj/structure/surface/table, -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/excavation) -"ewx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Chapel" +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation/smes) +"eiA" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/chapel) -"ewL" = ( -/obj/structure/surface/table, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control) +"eiE" = ( /obj/effect/spawner/random/tool, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, /turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"ewM" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/ice_colony/surface/hangar/alpha) +"eiF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"eiH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"exg" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/research) +"eiW" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition/sec_storage) +"eiX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"exr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Aerodrome Hangar Beta" }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"ext" = ( -/turf/open/floor/darkpurple2, -/area/ice_colony/surface/excavation) -"ezi" = ( +/area/ice_colony/surface/hangar/beta) +"ejP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2/east, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) -"ezD" = ( +"ekc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Requesitions Office" - }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"ezK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +/area/ice_colony/surface/garage/one) +"elh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/south_east) -"ezL" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/lobby) +"elp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/command/checkpoint) -"eAT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkblue2/east, -/area/ice_colony/surface/command/checkpoint) -"eBf" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/item/storage/toolbox/emergency, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/treatment) -"eBj" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/hydroponics/lobby) -"eBn" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/surface/requesitions) -"eBC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"eBI" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering/generator) -"eCz" = ( -/obj/structure/surface/table, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/lobby) -"eDc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"eDm" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/dorms/lavatory) -"eDo" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"eDF" = ( -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/crew/bball) -"eEe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteredcorner/north, -/area/ice_colony/underground/medical/hallway) -"eEF" = ( -/obj/structure/machinery/power/apc/no_power/south, -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"eFp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"eFx" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/medical/lobby) -"eFJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"eGe" = ( -/obj/item/tool/crowbar, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/armory) -"eGs" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/hydroponics/lobby) -"eGL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"eHm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/research) -"eHp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/underground/hangar) -"eHH" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/underground/requesition) +"elU" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/brig) -"eHK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Library" - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"eHN" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"eJf" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/substation/smes) -"eKc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research/temporary) -"eKG" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/dark2, +/turf/open/floor/carpet, /area/ice_colony/underground/crew/leisure) -"eKP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"eLs" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/underground/hangar) -"eLN" = ( +"elV" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/survivor_spawner, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/whitered/west, +/turf/open/floor/whitered/southwest, /area/ice_colony/surface/clinic/treatment) -"eMu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"eMA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/storage) -"eMB" = ( -/obj/structure/largecrate/random, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"eNr" = ( -/obj/structure/pipes/vents/pump{ +"emF" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"eNs" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/substation/smes) -"eNC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/icefloor/rockvault, -/area/ice_colony/exterior/surface/valley/south/excavation) -"eNM" = ( -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition/sec_storage) -"ePh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"ePo" = ( /obj/structure/window/reinforced/tinted{ - dir = 8 + dir = 1 }, -/obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/tool/stamp, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"ePt" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"ePL" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator4/underground) -"eQK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" - }, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/surface/dorms) -"eRh" = ( -/turf/open/floor/darkbrowncorners2/west, -/area/ice_colony/underground/hallway/north_west) -"eRJ" = ( +/area/ice_colony/surface/command/control/office) +"emO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whitered/northeast, -/area/ice_colony/surface/clinic/lobby) -"eSu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"emY" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"enb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"ene" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"env" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/hydroponics/lobby) -"eSQ" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"enJ" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/temporary) -"eTc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/southwest, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) -"eTl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"enQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/treatment) +"enY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"eos" = ( +/obj/structure/surface/table, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"eoA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research) -"eTz" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/surface/command/checkpoint) -"eTE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"eoW" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"eph" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"epL" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"epT" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"epU" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"eqa" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/two) +"eqY" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" + id = "garage_ice_1"; + name = "\improper Garage Shutters" }, /turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/hangar/beta) -"eTR" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"eUt" = ( +/area/ice_colony/surface/garage/one) +"erc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"erj" = ( +/obj/structure/inflatable/door, /obj{ anchored = 1; - density = 1; desc = "This doors looks like it has been made by aliens..."; icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 + icon_state = "door_open"; + name = "strange airlock" }, /turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) -"eUF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/medical/lobby) -"eUH" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator4/underground) -"eUP" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"eVl" = ( -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/research) -"eVA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Engineering Locker Room" +"erD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"erQ" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/platebot, +/area/ice_colony/surface/engineering/generator) +"esb" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"esr" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"eVB" = ( -/obj/structure/machinery/door/poddoor{ - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "Strange Airlock" - }, +/area/ice_colony/underground/security) +"esO" = ( /turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) -"eXm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/northeast, +"etl" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"etC" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"etD" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering) -"eXU" = ( +"eub" = ( +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/command/checkpoint) +"evp" = ( +/obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/hallway) -"eYz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"evv" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"evx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"evY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"eYB" = ( +/area/ice_colony/underground/hallway/south_east) +"ewf" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/substation) +"exM" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation) +"exS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/control) +"eyI" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"ezh" = ( /obj/structure/surface/table/reinforced, /obj/structure/sink{ dir = 8; @@ -11523,53 +11366,77 @@ }, /turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/canteen) -"eYQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"eYZ" = ( -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/underground/engineering) -"eZu" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/storage/box/engineer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering/tool) -"eZC" = ( +"ezw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/lobby) +"ezP" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"ezV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) -"eZM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"ezY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"eAm" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"fat" = ( -/obj/structure/machinery/landinglight/ds1{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/medical/lobby) +"eAu" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" }, -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/exterior/surface/landing_pad) -"fau" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"faH" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"eBk" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"eBI" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"eCl" = ( +/obj/structure/surface/table, +/obj/item/trash/chips, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"eCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"eDq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -11577,109 +11444,233 @@ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"faT" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"fbn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"fcr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/security/brig) -"fcV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"fdw" = ( -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/hallway) -"fdR" = ( -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/substation) -"feN" = ( -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"feP" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/surface/substation/smes) +"eDF" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"eEy" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/disposals) +"eEC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"eEM" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms/canteen) +"eFg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/south) -"ffv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/research) -"ffE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"eFK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/garage/one) +"eGl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"fhh" = ( -/turf/open/floor/darkred2, -/area/ice_colony/underground/command/checkpoint) -"fho" = ( -/obj/structure/machinery/door/window/northright{ - name = "Disposals Chute" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/turf/open/floor/plating/warnplate/north, -/area/ice_colony/underground/crew/disposals) -"fij" = ( -/obj/structure/surface/table/reinforced, /turf/open/floor/dark2, -/area/ice_colony/underground/research) -"fiL" = ( +/area/ice_colony/underground/hallway/north_west) +"eGt" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/generator) +"eGL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/excavation) -"fjd" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"fjn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"fjw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"eHa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/security) -"fkq" = ( -/obj/structure/morgue, +/area/ice_colony/underground/command/checkpoint) +"eHJ" = ( +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/lobby) +"eHP" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"fkt" = ( -/obj/structure/disposalpipe/segment{ +/area/ice_colony/surface/hangar/beta) +"eIu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"eJG" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"eJV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"eKb" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/command/center) +"eKn" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/lobby) -"fkV" = ( -/obj/structure/window/reinforced/tinted{ +/area/ice_colony/surface/hangar/hallway) +"eLb" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/temporary) +"eLJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/research/tech_storage) +"eLM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"eLQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research) +"eMB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/garage/two) +"eMM" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"eNB" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"eNP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"eNU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"eOa" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"eOr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/hallway) +"eOs" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"eOz" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/bball) +"eOP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/dorms) +"ePm" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/research/temporary) +"ePr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"fll" = ( +/area/ice_colony/surface/substation) +"ePw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"ePH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"ePL" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"eQc" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"eQD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"eQT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"eQW" = ( +/obj/structure/machinery/space_heater, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"eRF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"eSS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/req_officer, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"eTd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"eTY" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft{ name = "Security Desk" @@ -11687,1412 +11678,1397 @@ /obj/structure/machinery/door/window/eastright{ name = "Security Desk" }, -/obj/item/paper_bin, /obj/item/tool/stamp, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/hangar/checkpoint) -"flx" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/lobby) -"flA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/surface/research) -"fmj" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/command/checkpoint) +"eUm" = ( +/obj/structure/closet/crate, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"eUF" = ( /obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation) -"fmm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/stack/sheet/plasteel{ + amount = 15 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics South Wing Technical Storage" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"eUO" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"eUS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"eVz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) -"fms" = ( -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research) -"fnv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/ice_colony/surface/engineering/electric) +"eVA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"eVI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/engineering/tool) -"foc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/hydroponics/lobby) -"fpt" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/underground/medical/lobby) -"fpu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/north) -"fpC" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"fpD" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"fpE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/center) -"fqt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/surface/substation) +"eWk" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "engineering_ladder1"; + pixel_y = 16 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"fqM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"fqN" = ( -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"fqX" = ( -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/dorms) -"frh" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator4/underground) -"fsn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"eWu" = ( +/obj/item/roller{ + icon_state = "down" }, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/underground/command/checkpoint) -"fsT" = ( -/obj/structure/machinery/light, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/hallway) +"eWS" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/hydroponics/lobby) -"fta" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/substation) -"ftK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/whitered/southeast, -/area/ice_colony/underground/medical/or) -"ftN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"eXp" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/disposals) +"eXx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"eYs" = ( +/obj/structure/kitchenspike, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"eYH" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"eZc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "hangar_ladder1" +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/plating/warnplate, -/area/ice_colony/underground/maintenance/east) -"ftO" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/hydroponics/lobby) -"fvf" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/darkpurple2, -/area/ice_colony/surface/excavation) -"fvp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"eZs" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"eZX" = ( +/obj/structure/bed/chair, +/obj/structure/closet/hydrant{ + pixel_y = 32 }, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"fae" = ( +/obj/structure/toilet, /turf/open/floor/white, -/area/ice_colony/underground/medical/lobby) -"fvK" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/structure/pipes/standard/simple/hidden/green, +/area/ice_colony/underground/security/brig) +"fbg" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"fbl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"fwA" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/dorms/lavatory) -"fwF" = ( -/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/dorms) +"fcg" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"fcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) -"fwI" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +"fcQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"fdj" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"fdm" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/sample) +"fep" = ( +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"feu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/east, +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/lobby) +"ffn" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/exterior/surface/landing_pad) -"fwK" = ( -/obj/structure/closet/coffin, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"fwN" = ( -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research/work) -"fxf" = ( +"fgp" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/dorms) +"fgs" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"fgG" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"fhJ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/whitered/northwest, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/field_gear) +"fhZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -32 + }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/lobby) -"fxE" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/excavation) -"fyx" = ( +"fie" = ( /obj/structure/surface/table/reinforced, -/obj/item/circuitboard/machine/smes, -/turf/open/floor/darkblue2, +/obj/item/circuitboard/computer/atmos_alert, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/storage/highsec) -"fzI" = ( -/obj/structure/machinery/landinglight/ds1{ +"fiE" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/landing_pad) -"fBa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"fBz" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"fBC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/hallway) +"fiH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"fCd" = ( -/obj/structure/surface/table, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/underground/requesition/lobby) -"fCe" = ( -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/hallway/south_east) -"fCR" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"fiR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research/work) -"fDI" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/surface/requesitions) -"fEF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Colony Security Checkpoint" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/command/checkpoint) -"fEI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/center) -"fEP" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"fFu" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"fFx" = ( -/obj/structure/bed/chair/office/light{ +/area/ice_colony/surface/dorms) +"fjt" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/command/checkpoint) -"fFG" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"fFZ" = ( +/area/ice_colony/surface/command/control) +"fjv" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/field_gear) +"fjD" = ( /obj/structure/surface/rack, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"fGJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"fGW" = ( -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/center) -"fGY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"fGZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitered/northeast, -/area/ice_colony/underground/medical/treatment) -"fHm" = ( -/obj/structure/curtain/black, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"fIs" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering/generator) -"fIH" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2/southwest, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"fjF" = ( +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/engineering) -"fJo" = ( -/obj/structure/surface/rack, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"fJC" = ( +"fjS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"fkw" = ( /obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/tcomms) -"fJV" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/whitered/southeast, -/area/ice_colony/surface/clinic/lobby) -"fKf" = ( -/obj/structure/machinery/power/apc/no_power/north, +/obj/item/device/defibrillator, /obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 + dir = 4; + pixel_x = 24 }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/hangar/beta) -"fKC" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"flE" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/security/brig) +"flK" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"fme" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"fmk" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator1/ground) +"fna" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"fnX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "pipe-c" + name = "\improper Underground Security Lobby" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"foS" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"fpe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"fqm" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/sec_storage) +"fqt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"fqL" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator2/ground) +"fro" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/research) -"fKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/bball) -"fLh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"fLB" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator1/ground) -"fLF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/interrogation) -"fLV" = ( +/area/ice_colony/underground/hallway/north_west) +"frA" = ( /obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/lavatory) -"fMf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -32 - }, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/lobby) -"fMl" = ( -/obj/structure/machinery/shower{ +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"frR" = ( +/obj/structure/toilet{ dir = 8 }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) -"fMQ" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/research/tech_storage) -"fNx" = ( +"frW" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"fsc" = ( +/obj/structure/machinery/door_control{ + id = "st_18"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + req_access_txt = "100"; + specialfunctions = 4 + }, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"fsg" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"fub" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/chapel) -"fPC" = ( -/turf/open/floor/icefloor/ramptop, -/area/ice_colony/exterior/underground/caves/dig) -"fPE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/armory) +"fug" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"fuz" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"fQt" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/area/ice_colony/underground/requesition/lobby) +"fuM" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/exterior/surface/landing_pad) -"fQL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/crew/disposals) +"fuO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/hallway/north_west) +"fvF" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) +"fvK" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/surface/requesitions) -"fRl" = ( -/obj/structure/surface/table/woodentable, -/obj/item/book/manual/marine_law, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/lobby) +"fvM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"fRm" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"fwE" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"fxp" = ( /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/storage) +"fxw" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/beta) +"fxQ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/tech_storage) +"fyi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"fyB" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"fzs" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/electric) +"fzz" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator4/ground) +"fzH" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"fRL" = ( +/area/ice_colony/underground/crew/disposals) +"fzS" = ( +/obj/item/trash/semki, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"fAV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Engineering Generator Room" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/generator) +"fBc" = ( +/turf/open/floor/darkred2, +/area/ice_colony/underground/command/checkpoint) +"fBk" = ( /obj/structure/shuttle/diagonal{ - icon_state = "swall0" + icon_state = "swall_f9" }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"fBo" = ( /obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" + dir = 9; + icon_state = "wall" }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"fTm" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/rods{ - amount = 25 +/area/ice_colony/surface/hangar/beta) +"fBL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/engineering) -"fTN" = ( /obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 + pixel_y = 24 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/lavatory) -"fUl" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/crew/bball) +"fCe" = ( +/obj/structure/bed/chair{ dir = 1 }, +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"fCy" = ( +/obj/structure/curtain/medical, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"fCH" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"fCO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, -/turf/open/floor/darkbrown2/west, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) -"fUs" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, +"fDi" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" }, -/turf/open/floor/dark2, +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) -"fUU" = ( -/obj/structure/closet/crate/freezer/rations, +"fDT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/hallway) +"fDV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) -"fVm" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/lobby) -"fVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"fEo" = ( +/obj/structure/shuttle/engine/router{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Engineering Material Storage" +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"fED" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" + }, +/obj/structure/shuttle/diagonal{ + icon_state = "heater" }, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"fVx" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/excavation) -"fWj" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "engineering_ladder1"; - pixel_y = 16 +/area/ice_colony/surface/hangar/beta) +"fFa" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"fFk" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"fGk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) -"fWm" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security Checkpoint" +"fGw" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"fGH" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"fIf" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"fIo" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"fIW" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/reception/checkpoint_south) -"fXB" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/temporary) -"fXD" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitered/northwest, -/area/ice_colony/surface/clinic/treatment) -"fXX" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/surface/requesitions) -"fYl" = ( -/obj/structure/machinery/light, /turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"fYL" = ( -/obj/structure/machinery/space_heater, +/area/ice_colony/surface/hangar/beta) +"fIX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering/locker) +"fJg" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"fJZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"fLc" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator1/ground) +"fLg" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, /turf/open/floor/darkyellow2, -/area/ice_colony/surface/garage/repair) -"fZc" = ( -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/backroom) -"gax" = ( +/area/ice_colony/underground/security/brig) +"fMh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkbrown2/east, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) -"gaF" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/good_item, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"gaP" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator2/underground) -"gbm" = ( -/obj/structure/window/reinforced{ +"fMC" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/excavation) -"gbq" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/south_east) -"gbM" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering) +"fMM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkredcorners2/north, -/area/ice_colony/underground/security) -"gbW" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/surface/excavation) -"gce" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" }, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/checkpoint) -"gci" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/turf/open/floor/darkpurple2/northwest, -/area/ice_colony/underground/research/work) -"gcj" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"gcx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/underground/engineering) +"fMW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Men's Restroom" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"fNm" = ( +/obj/docking_port/stationary/trijent_elevator{ + airlock_area = /area/shuttle/elevator3/underground; + airlock_exit = "elevator"; + elevator_network = "Omicorn"; + height = 5; + width = 8; + name = "Lower Omicorn"; + id = "Lower_Omicorn" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"gcN" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator3/underground) +"fNq" = ( +/obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/or) -"gee" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/underground/hangar) -"gep" = ( -/obj/item/evidencebag, -/obj/item/trash/popcorn, -/obj/item/trash/candy, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/north, -/area/ice_colony/underground/crew/disposals) -"gfl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/whitered/northeast, -/area/ice_colony/underground/medical/lobby) -"gfr" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/disposals) -"gfB" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/substation/smes) -"gfR" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms/canteen) -"gfY" = ( -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/interrogation) -"ggj" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreencorners2, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) -"ggr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"ggJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Offices" - }, +"fNu" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"ggN" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/hallway/south_east) -"ggU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/ice_colony/surface/disposals) +"fOE" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/darkbrown2/west, +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) -"ghG" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"ghS" = ( -/obj/structure/pipes/standard/manifold/visible{ - layer = 2.3 - }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"giw" = ( -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/engineering/tool) -"giK" = ( -/obj/structure/disposalpipe/segment{ +"fOJ" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/field_gear) +"fPn" = ( +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research/sample) +"fPK" = ( +/obj/structure/machinery/shower{ dir = 8 }, +/obj/item/tool/soap, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"fPX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/south_east) +"fQi" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/lobby) +"fQq" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{ + pixel_y = 30 + }, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"gjj" = ( +/area/ice_colony/surface/dorms) +"fRr" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"fRs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"gky" = ( -/obj/item/shard, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/lobby) -"gkH" = ( -/obj/structure/machinery/light{ +/area/ice_colony/underground/engineering) +"fRz" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/sec_storage) +"fRD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/filingcabinet, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/lobby) -"gkP" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering/generator) -"gla" = ( -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/hydroponics/lobby) -"glj" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"gll" = ( -/obj/structure/surface/table/reinforced, -/obj/item/circuitboard/computer/crew, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/storage/highsec) -"gls" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/disposals) -"glt" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering/electric) -"glE" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/requesition/lobby) -"gmi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"fRT" = ( +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) -"gmn" = ( +"fRY" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering) +"fSc" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "garage_ladder" + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"fSh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"fSr" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/hallway/south_east) +"fSV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/alpha) -"gnf" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"gnm" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/lavatory) -"gnO" = ( -/obj/structure/closet/radiation, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/excavation) -"gnU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/dorms) -"gnY" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/survivor_spawner, -/obj/structure/machinery/light/small{ - dir = 8 +/area/ice_colony/surface/command/control) +"fTa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whitered/southwest, -/area/ice_colony/surface/clinic/treatment) -"goa" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"fTs" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"goW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkblue2, +/area/ice_colony/surface/dorms) +"fTu" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"fTw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"fTZ" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/requesition) +"fUq" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"fUI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"fUM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) -"gpd" = ( -/obj/structure/kitchenspike, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"gpq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"fUX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"fVt" = ( +/obj/item/roller{ + icon_state = "down" }, +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/storage) +"fVB" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/research) -"gpJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Colony Requesitions Storage Pod" +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"fVM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"gqA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkbrowncorners2/east, -/area/ice_colony/surface/garage/two) -"gqG" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"fXo" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/requesition/sec_storage) +"fXt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/treatment) -"gqO" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"gre" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/command/checkpoint) -"grf" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator1/ground) -"grp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security) -"grD" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/engineering) -"gsn" = ( -/obj/structure/machinery/light{ +/area/ice_colony/underground/storage) +"fXL" = ( +/obj/structure/shuttle/engine/heater{ dir = 4 }, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/underground/crew/bball) -"gso" = ( +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"fXY" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/storage/highsec) +"fYS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics Dome South Wing" + name = "\improper Underground Requesitions Bay" }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/south) -"gsH" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/research/storage) -"gsZ" = ( -/obj/structure/computerframe{ - anchored = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"gtp" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering/generator) -"gtN" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/brig) -"gug" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, +/area/ice_colony/underground/requesition) +"fZb" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security/brig) -"guH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"guJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/substation/smes) -"gvX" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "9" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"fZH" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/obj/structure/grille, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"gwD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"gxl" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/north) -"gxo" = ( -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/engineering) -"gxs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/surface/hangar/checkpoint) -"gxZ" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering/electric) -"gyb" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage/highsec) -"gyd" = ( -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"fZJ" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"gas" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"gbe" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"gbj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"gyC" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/research/temporary) -"gyG" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/darkbrown2/north, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) -"gyS" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 8 +"gbr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkgreen2/southwest, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) -"gzz" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/research/tech_storage) -"gzP" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research) -"gzR" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator2/ground) -"gzW" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/exterior/surface/clearing/north) -"gAh" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"gAj" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"gAn" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms/canteen) -"gAD" = ( +"gbs" = ( /obj/structure/machinery/computer/cameras, /turf/open/floor/darkred2/northwest, /area/ice_colony/surface/hangar/checkpoint) -"gAY" = ( +"gbZ" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"gce" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/surface/hangar/checkpoint) +"gcn" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/north_west) -"gBe" = ( -/obj/structure/surface/table, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/checkpoint) -"gBi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"gBG" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/ice_colony/underground/reception/checkpoint_north) -"gBX" = ( -/obj/structure/flora/pottedplant, +"gdj" = ( +/obj/structure/machinery/vending/snack, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/hydroponics/lobby) -"gCw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/lobby) +"gdu" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/dorms) -"gCP" = ( -/turf/open/floor/chapel/west, -/area/ice_colony/underground/crew/chapel) -"gDh" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"gDw" = ( -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/underground/hallway/north_west) -"gDI" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"gdN" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/hydroponics/lobby) -"gDS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control) +"geg" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/lobby) -"gEA" = ( -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/dorms) -"gEZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/ice_colony/underground/hallway/south_east) +"gei" = ( /turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"gFr" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/firealarm{ +/area/ice_colony/underground/medical/treatment) +"gek" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/underground/research/work) +"geC" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/temporary) +"geS" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"gff" = ( +/obj/structure/machinery/alarm{ dir = 8; - pixel_x = -24 + pixel_x = 24 }, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/underground/storage) -"gFC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition/lobby) +"gfl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"gFI" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"gGb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"gfY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering) +"ggl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security) -"gGl" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"ggq" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"gGz" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"ggL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"ghm" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"gip" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator2/ground) +"giM" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Dormitories Women's Restroom" + name = "\improper Omicron Technical Storage" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"gHo" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"gHs" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2; - icon_state = "pipe-u" +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"giR" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"gjo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/ice_colony/underground/hallway/north_west) +"gjt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/lobby) +"gjv" = ( +/obj/structure/machinery/door/window/eastright{ + name = "Technical Storage" + }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"gkb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/hydroponics/south) -"gHu" = ( -/obj/item/bodybag, /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"gHv" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/area/ice_colony/surface/engineering) +"gkZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"glS" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/surface/excavation/storage) +"gmQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/obj/structure/mirror{ + pixel_x = -24 }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"gnv" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"gob" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"goc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"gom" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"gpM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"gqg" = ( +/obj/effect/landmark/static_comms/net_two, /turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"gHC" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 +/area/ice_colony/underground/requesition/sec_storage) +"gqz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"gre" = ( +/obj/structure/bed/chair/comfy/black, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"grx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/surface/command/checkpoint) +"grF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"gso" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/medical/lobby) +"gsz" = ( /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"gsI" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"gtb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"gtB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/or) -"gIE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Dome" + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"gum" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator3/underground) +"gut" = ( /obj/structure/surface/table/woodentable, -/obj/item/book/manual/engineering_hacking, +/obj/item/restraint/handcuffs, +/obj/item/tool/stamp, /turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"gJm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/area/ice_colony/surface/command/crisis) +"guA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition/lobby) -"gJr" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"gwG" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"gxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/dorms) -"gJR" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"gxD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"gxN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/substation/smes) -"gKf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/hangar/beta) -"gKH" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"gKP" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"gKX" = ( -/obj/structure/surface/table, -/obj/item/device/defibrillator, -/obj/structure/machinery/firealarm{ +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = 24 + icon_state = "pipe-c" }, -/turf/open/floor/whitered/east, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"gxW" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"gyx" = ( +/turf/open/floor/white, /area/ice_colony/surface/clinic/storage) -"gMs" = ( -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"gMu" = ( -/obj/structure/machinery/door_control{ - id = "st_18"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_y = 24; - req_access_txt = "100"; - specialfunctions = 4 +"gyH" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"gyI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/telecomms) -"gNd" = ( -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/hydroponics/lobby) -"gNt" = ( -/turf/open/floor/darkblue2/north, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/storage) +"gyL" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"gyN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control/office) -"gNF" = ( -/turf/open/floor/darkred2/east, -/area/ice_colony/surface/hangar/checkpoint) -"gOg" = ( -/obj/structure/closet/radiation, -/obj/structure/machinery/light{ - dir = 8 +"gyS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/research/field_gear) -"gOR" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/interrogation) -"gPd" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"gyV" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research) +"gza" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/dorms) -"gPn" = ( -/turf/open/floor/darkred2, -/area/ice_colony/surface/command/checkpoint) -"gPB" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"gzt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Underground Lavatory" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"gzB" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"gzE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"gzG" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/research/temporary) +"gzT" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/bball) +"gAk" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/bball) +"gAl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/hallway/south_east) -"gPN" = ( -/obj/structure/machinery/light{ - dir = 1 +"gBz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"gCC" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"gCH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/alpha) +"gCM" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/obj/structure/bed/chair, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"gCY" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"gQg" = ( +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"gDf" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/lobby) -"gQJ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/underground/hallway/south_east) -"gQY" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"gRc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/lobby) -"gRv" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"gRA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"gRE" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/dorms/lavatory) -"gRI" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{ - pixel_y = 30 +/turf/open/floor/chapel/east, +/area/ice_colony/underground/crew/chapel) +"gDv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/window/framed/colony, /turf/open/floor/dark2, /area/ice_colony/surface/dorms) -"gRP" = ( -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"gSK" = ( +"gDE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"gEc" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"gEd" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"gEv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"gTa" = ( -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/underground/requesition) -"gTk" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 +/area/ice_colony/underground/requesition/lobby) +"gEL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"gTQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"gES" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"gUE" = ( +/area/ice_colony/underground/hallway/south_east) +"gFJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security Checkpoint" + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/reception/checkpoint_south) +"gGk" = ( /obj/structure/surface/table, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/underground/command/checkpoint) -"gVh" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator1/underground) -"gVD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"gVV" = ( -/obj/structure/bed, -/turf/open/floor/darkyellow2/southeast, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"gGl" = ( +/obj/structure/bedsheetbin, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) -"gVZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/security) -"gWo" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/disposals) -"gWD" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation) -"gXG" = ( -/turf/open/floor/chapel, -/area/ice_colony/underground/crew/chapel) -"gXJ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"gYP" = ( -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"gYU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"gZH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"hba" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/window/reinforced/tinted{ +"gGp" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security) -"hbe" = ( -/obj/structure/surface/table, -/obj/item/trash/chips, +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"gGC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"hbI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/underground/hallway/south_east) -"hbN" = ( -/turf/open/floor/icefloor/rockvault, -/area/ice_colony/exterior/surface/valley/south/excavation) -"hcA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/ice_colony/surface/hydroponics/lobby) +"gGM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"gHQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"hcD" = ( -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/requesition/sec_storage) -"hdo" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/treatment) -"hds" = ( +/area/ice_colony/underground/crew/canteen) +"gIy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/temporary) +"gIW" = ( +/obj/item/roller{ + icon_state = "down" + }, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"gKg" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"gLJ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, @@ -13103,2091 +13079,1738 @@ }, /turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) -"hec" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" +"gMn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/checkpoint) -"hey" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/engineering/locker) -"hfj" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"hfD" = ( -/turf/open/floor/darkred2/southeast, -/area/ice_colony/surface/command/checkpoint) -"hfT" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"gMX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/high, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/excavation) -"hgf" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"hgP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"gNR" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"hgZ" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkpurple2, -/area/ice_colony/surface/excavation) -"hhq" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/warnplate/north, -/area/ice_colony/surface/engineering) -"hhv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage/highsec) -"hhy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Omicron Technical Storage" - }, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"hhK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/area/ice_colony/underground/crew/morgue) +"gOn" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator4/ground) +"gPd" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"hiE" = ( /turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"hiP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/underground/command/center) -"hja" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/darkpurple2/northeast, -/area/ice_colony/underground/research/work) -"hjf" = ( -/obj/structure/surface/table/woodentable, +/area/ice_colony/underground/medical/treatment) +"gPh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/pizza, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkgreen2/northeast, -/area/ice_colony/exterior/surface/clearing/north) -"hjj" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"hjk" = ( -/obj/structure/machinery/door/window/eastright{ - name = "Technical Storage" +/area/ice_colony/surface/dorms/canteen) +"gPi" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"gPo" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/engineering/generator) +"gQe" = ( +/obj/structure/morgue, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"gSk" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/hallway/north_west) +"gSo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"gTa" = ( +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/security/brig) +"gTe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/excavation) -"hjH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Power Substation" + name = "\improper Colony Engineering Material Storage" }, /turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"hjO" = ( -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/research/field_gear) -"hkt" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light, +/area/ice_colony/surface/engineering) +"gTs" = ( +/obj/structure/largecrate/random, /turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"hkE" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"hla" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Lower_Arrivals"; - name = "Lower Arrivals"; - airlock_exit = "elevator"; - elevator_network = "Arrivals"; - airlock_area = /area/shuttle/elevator1/underground - }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator1/underground) -"hmH" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/research) -"hmO" = ( -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/surface/command/checkpoint) -"hmT" = ( -/turf/closed/ice_rock/corners{ - dir = 9 +/area/ice_colony/surface/bar/canteen) +"gTB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/exterior/surface/valley/south) -"hnH" = ( -/obj/structure/closet/coffin, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"gTW" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"gUq" = ( /obj/structure/machinery/light, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"hnK" = ( +/area/ice_colony/underground/engineering) +"gUx" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/dark, -/area/ice_colony/underground/security/hallway) -"hop" = ( -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/lobby) -"hoq" = ( -/obj/structure/janitorialcart, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/engineering) -"hox" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/or) -"hpb" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/beta) -"hpp" = ( -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/crew/canteen) -"hqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/security/brig) +"gUU" = ( +/obj/structure/barricade/metal{ + dir = 8 }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/checkpoint) -"hqf" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/valley/southwest) -"hqx" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad2) +"gVb" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"hqW" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/disposals) -"hqZ" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/dorms/lavatory) -"hrp" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/surface/table/reinforced, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"gWw" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"gWx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Theta-V Research Laboratory" + }, /turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"hrJ" = ( -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/treatment) -"hrN" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/clearing/north) -"hsr" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/crew/chapel) -"hsD" = ( +/area/ice_colony/underground/research/work) +"gWE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Checkpoint" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"gWI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"gWN" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/hallway) -"hsO" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"gXa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"htj" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/substation/smes) -"htG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"hua" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/lavatory) -"huq" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"gXb" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"gXs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/tech_storage) +"gXz" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"huN" = ( -/obj/structure/barricade/metal, /turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) -"hvj" = ( +/area/ice_colony/underground/hangar) +"gXU" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"gYs" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"gYA" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad2) +"gYQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"gZf" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/crew/lavatory) +"gZj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whiteredcorner/north, -/area/ice_colony/surface/clinic/lobby) -"hvr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/dorms) +"gZA" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_1"; - name = "\improper Hangar Shutters" +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad2) +"gZJ" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator4/underground) +"hao" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"hax" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/command/checkpoint) +"haz" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/hangar/alpha) -"hwq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/storage/box/engineer, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"haT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Women's Restroom" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"hwJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/research/temporary) -"hxc" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"hbA" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"hbB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/bball) -"hxB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Colony Dormitories Lavatory" +/obj/item/reagent_container/food/snacks/hotchili, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"hcm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms/lavatory) -"hyk" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"hcF" = ( /obj/structure/surface/table/reinforced, -/obj/item/restraint/handcuffs, -/obj/structure/machinery/flasher_button{ - id = "sec_checkpoint"; - pixel_y = 24 +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"hcI" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"hdS" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering/tool) +"hdT" = ( /obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 36 + id = "undergroundhangarsouth"; + name = "Underground Hangar Lock"; + pixel_x = -24 }, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/hallway) -"hyM" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition) -"hzA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hangar) +"hed" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security) -"hAd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/lobby) -"hAg" = ( -/obj/item/roller{ - icon_state = "down" +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"hef" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/storage) -"hAP" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/dorms) +"hfc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"hAX" = ( +/area/ice_colony/surface/dorms) +"hfj" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, +/turf/open/ice, /area/ice_colony/underground/maintenance/south) -"hBB" = ( -/turf/open/floor/whitered/southwest, -/area/ice_colony/surface/clinic/treatment) -"hBY" = ( -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/treatment) -"hCl" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/reception/checkpoint_north) -"hCo" = ( -/obj/effect/spawner/random/tool, +"hgj" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/bcircuit, +/area/ice_colony/underground/engineering/substation) +"hhF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "S" }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"hCL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/beta) +"hhS" = ( +/obj/effect/landmark/hunter_secondary, /turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"hDc" = ( -/obj/structure/surface/table, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 +/area/ice_colony/underground/hallway/north_west) +"hic" = ( +/obj/structure/dispenser, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/tool) +"hif" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Underground Technical Storage" }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering/generator) -"hDk" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/engineering/locker) -"hDw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/storage) +"hin" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"hix" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/excavation) +"hiU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"hDM" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/southeast) -"hDZ" = ( -/obj/docking_port/stationary/trijent_elevator{ - airlock_area = /area/shuttle/elevator3/underground; - airlock_exit = "elevator"; - elevator_network = "Omicorn"; - height = 5; - width = 8; - name = "Lower Omicorn"; - id = "Lower_Omicorn" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"hiX" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"hjj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"hjt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator3/underground) -"hEk" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/alpha) +"hjF" = ( +/obj/structure/cryofeed/right, +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"hjT" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"hkn" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"hEE" = ( +/area/ice_colony/surface/excavation) +"hli" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/requesition/lobby) +"hlR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/security/brig) -"hEJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"hma" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "hangar_ladder1"; - pixel_y = 16 +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/checkpoint) +"hmv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/beta) -"hEV" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/security/brig) -"hFy" = ( -/obj/structure/machinery/door/airlock{ - id_tag = "st_5"; - name = "Storage Unit"; - req_one_access_txt = "100;101;102;103" +/area/ice_colony/underground/requesition/lobby) +"hmO" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"hmR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"hmT" = ( +/turf/closed/ice_rock/corners{ + dir = 9 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"hFG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Security Checkpoint" +/area/ice_colony/exterior/surface/valley/south) +"hno" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/hangar/checkpoint) -"hFJ" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/hallway) -"hGP" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/reception/checkpoint_north) -"hGV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"hHs" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/hallway/south_east) -"hHA" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/ice_colony/surface/garage/one) +"hnC" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"hnQ" = ( +/obj/structure/surface/table, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/medical/lobby) -"hHV" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"hoL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"hIC" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Hangar Landing Zone" +/obj/structure/surface/table{ + flipped = 1; + icon_state = "tableflip0" }, -/turf/open/floor/plating, -/area/ice_colony/exterior/surface/landing_pad) -"hIH" = ( -/turf/open/floor/darkpurple2/southwest, -/area/ice_colony/underground/research/sample) -"hJG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/dorms) -"hJJ" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/surface/hydroponics/lobby) -"hKc" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"hpa" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"hpr" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"hKN" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/lobby) -"hKZ" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/engineering) -"hLh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"hLL" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"hMi" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad2) -"hMt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"hMP" = ( +/area/ice_colony/surface/excavation) +"hpG" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"hMR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"hMW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/red, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) +"hpK" = ( +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/hangar/beta) -"hNd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"hNp" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator3/ground) -"hOi" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ +"hqd" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ pixel_x = 6; - pixel_y = -3 + pixel_y = -4 }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/armory) +"hqm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"hqs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"hqC" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"hrx" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"hOD" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/garage/one) -"hOI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"hrN" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/clearing/north) +"hsy" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "power_storage_ladder1" }, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"hOJ" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"hsB" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms/canteen) -"hOR" = ( -/turf/open/floor/icefloor/shuttle_vfloor, -/area/ice_colony/exterior/underground/caves/dig) -"hOZ" = ( +/area/ice_colony/surface/hangar/checkpoint) +"hsI" = ( /obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/folder/black_random, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"hQw" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/beta) -"hQy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/storage) -"hRl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/soap{ + pixel_x = 5 }, -/turf/open/floor/whiteredcorner/west, -/area/ice_colony/surface/clinic/lobby) -"hRR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/or) +"hsU" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"hSm" = ( -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/engineering) -"hTt" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"hTJ" = ( -/obj/structure/closet/wardrobe/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/dorms) +"htj" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"htE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/south) -"hUs" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "engineering_ladder"; - pixel_y = 16 +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering) -"hUx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"hUB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/tool/stamp, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/hallway) +"htL" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/surface/research) -"hUW" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/container_yard) -"hVq" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/underground/crew/canteen) -"hVw" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/disposals) -"hVE" = ( -/obj/vehicle/train/cargo/engine, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"hVX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/underground/crew/morgue) +"huD" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/medical/lobby) +"huW" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms) +"huZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"hWr" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"hvc" = ( +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"hvi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"hvm" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/dorms) -"hXu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/garage/repair) +"hvz" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/hallway/north_west) +"hvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/hallway) +"hwn" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition/sec_storage) +"hwS" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad2) +"hxD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"hxI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/brig) +"hyk" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"hXx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/disposals) +"hzj" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/treatment) +"hAe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/darkbrowncorners2/north, +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"hAy" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) -"hXB" = ( +"hAX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"hBb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/book/manual/marine_law, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"hXL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"hBi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"hXS" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +/area/ice_colony/surface/research/temporary) +"hBy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/obj/structure/machinery/sensortower, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"hBU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/command/control) +"hCj" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"hCJ" = ( /turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/north_west) -"hYd" = ( -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/engineering/locker) -"hYn" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/ice_colony/surface/dorms) +"hCY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/beta) -"hYR" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/research/temporary) -"hYV" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"hYX" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/dark2, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_1"; + name = "\improper Hangar Shutters" + }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/hangar/alpha) -"hZH" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/whitered/southeast, -/area/ice_colony/surface/clinic/treatment) -"iaj" = ( +"hDt" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/brig) +"hDC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"hDG" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"hDM" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/southeast) +"hDP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"hEk" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/requesitions) +"hEr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Underground Maintenance" }, /turf/open/floor/dark2, -/area/ice_colony/underground/research) -"ian" = ( -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/engineering/generator) -"iao" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"iau" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_x = -1; - pixel_y = 2 +/area/ice_colony/underground/reception/checkpoint_north) +"hFw" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"hFF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"iav" = ( -/turf/open/floor/darkbrowncorners2/north, -/area/ice_colony/underground/hallway/north_west) -"iaG" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"ico" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whitered/northwest, -/area/ice_colony/underground/medical/hallway) -"idk" = ( /turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"hFL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/excavation) -"ieM" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/crew/bball) -"ieO" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle4"; - dockId = "Upper_Arrivals"; - pixel_y = 32 +"hFY" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"hGX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/hallway/north_west) +"hHT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"ifc" = ( -/obj/structure/machinery/light{ +/area/ice_colony/underground/security/brig) +"hJB" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/hangar/checkpoint) -"ifk" = ( +/obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced, -/obj/item/paper/research_notes, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"ifB" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/clipboard, +/obj/item/tool/stamp, /turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"igS" = ( +/area/ice_colony/surface/command/control/office) +"hJE" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"igZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/area/ice_colony/underground/hallway/south_east) +"hJF" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/surface/rack, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"hJI" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition/lobby) -"ihD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/dorms/canteen) -"ihX" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"iii" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/backroom) -"iiH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/toy/plush/farwa, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/storage/highsec) -"ijl" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/exterior/surface/valley/southwest) -"ijx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"ijA" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/checkpoint) -"ijQ" = ( -/turf/open/floor/bcircuit, -/area/ice_colony/surface/engineering/generator) -"ikb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"ikl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"ikQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/mirror{ + pixel_y = -28 }, -/turf/open/floor/dark2, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"hJJ" = ( +/turf/open/auto_turf/snow/layer4, /area/ice_colony/surface/hydroponics/lobby) -"ikS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition) -"ikX" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/platebot, -/area/ice_colony/surface/engineering/generator) -"ilB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/marine_law, -/obj/item/storage/donut_box, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"hJK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"hKp" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"hKv" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) -"ilC" = ( -/obj/structure/machinery/door_control{ - id = "research_entrance"; - name = "Research Entrance Lock"; - normaldoorcontrol = 1; - pixel_x = 24; - req_access_txt = "103"; - specialfunctions = 4 - }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/research) -"ilE" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/item/frame/light_fixture, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"ilO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"ilT" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator1/ground) -"imV" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "13" - }, -/obj/structure/grille, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"inh" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/ice_colony/surface/engineering/generator) -"inm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) -"inC" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light{ +"hKA" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"hKS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/treatment) -"inH" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"iom" = ( -/obj/item/weapon/gun/pistol/highpower, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"ioA" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "power_storage_ladder1" - }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation/smes) -"ioL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"ioP" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"iqx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/space_heater, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/south) -"iqA" = ( -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research) -"iqB" = ( +/area/ice_colony/underground/reception) +"hLI" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"hMc" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/surface/command/checkpoint) +"hMk" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/surface/command/checkpoint) +"hMK" = ( +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/interrogation) +"hMS" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"hNA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"iqF" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"iqG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkblue2/east, -/area/ice_colony/surface/command/control) -"iqM" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/underground/hangar) -"iqN" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 4 }, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) -"irg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security" - }, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/hallway) -"irp" = ( -/obj/structure/bed/chair, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"irt" = ( -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/hallway/south_east) -"irz" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research/work) -"irL" = ( -/obj/structure/pipes/unary/freezer{ - dir = 8; - icon_state = "freezer_1" - }, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/treatment) -"irQ" = ( -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/exterior/surface/landing_pad) -"irU" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/treatment) -"isX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/trackimp, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/storage/highsec) -"itf" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/icefloor/rockvault, -/area/ice_colony/exterior/surface/valley/south/excavation) -"itt" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/center) -"iuC" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/command/checkpoint) -"iuX" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/armory) -"ivh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"hNS" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/checkpoint) +"hOj" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/garage/repair) -"ivE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"ivL" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering/generator) -"ivZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"hOt" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/storage/highsec) +"hOY" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/treatment) +"hPy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/beakers, +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/research/work) +"hPS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/white, /area/ice_colony/underground/medical/treatment) -"iwn" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"ixD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +"hQo" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"hRb" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/or) +"hRh" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"ixL" = ( -/obj/structure/machinery/vending/coffee, +/area/ice_colony/surface/dorms/canteen) +"hRU" = ( /turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/south_east) -"ixR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"ixU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms/lavatory) -"iyq" = ( +/area/ice_colony/surface/dorms) +"hSq" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"iyz" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/lobby) +"hSz" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"hSW" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"hTv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"hTw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"hTy" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/northeast, -/area/ice_colony/underground/crew/disposals) -"iAe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"hTG" = ( +/obj/structure/shuttle/diagonal{ + dir = 9; + icon_state = "wall" }, /turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) -"iAJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/disposals) -"iBm" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/underground/hallway/south_east) -"iBv" = ( +"hUI" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor/shuttle_floor6, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) -"iBD" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/ice_colony/surface/research/temporary) -"iBR" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/substation/smes) -"iCc" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/two) -"iCg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/hangar/alpha) -"iCD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics Dome North Wing"; - req_access_txt = "100" - }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/north) -"iCZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research/work) -"iDk" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/tcomms) -"iDv" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"iDU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Underground Security Checkpoint" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"iEn" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/storage) -"iEA" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/substation/smes) -"iED" = ( -/obj/structure/bed/chair, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/checkpoint) -"iEN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/substation/smes) -"iFY" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"iGf" = ( +"hUT" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"iGk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"iGo" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"hVn" = ( +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/research) +"hVq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/circuitboard/computer/powermonitor, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"hVK" = ( +/obj/structure/window/reinforced, +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "dig_site_prep_ladder"; + pixel_y = 16 }, -/obj/structure/bed/chair, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"iGt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/excavation) +"hVM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"hWM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"iGw" = ( -/obj/structure/machinery/conveyor_switch, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition/lobby) -"iGR" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/storage) -"iHF" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"iHO" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/surface/excavation/storage) -"iHS" = ( -/obj/structure/machinery/optable, -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"iIa" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/valley/southwest) -"iJw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) -"iKf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/south) -"iKn" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hXg" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"hXo" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"hXw" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, /area/ice_colony/surface/excavation) -"iKL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"iKP" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/medical/lobby) -"iLm" = ( -/turf/open/floor/darkgreencorners2, -/area/ice_colony/underground/hallway/north_west) -"iLo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"iLr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/lobby) -"iMl" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/treatment) -"iMA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"hYh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"iMH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"iMR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_1"; - name = "\improper Hangar Shutters" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"hZi" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"hZC" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"iak" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/hangar/alpha) -"iMT" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, /turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"iNf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/area/ice_colony/underground/security/interrogation) +"iaX" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/storage) +"ibp" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/lobby) -"iNh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"ibt" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/generator) +"ibJ" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"ibS" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/command/checkpoint) +"ibT" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"icm" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"iNl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"iNt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering/generator) -"iNx" = ( -/obj/structure/inflatable, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/lobby) +"icp" = ( /turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/surface/excavation/storage) -"iNy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"iNS" = ( -/obj/structure/inflatable/door, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/surface/excavation/storage) -"iOy" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"iOL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/area/ice_colony/surface/requesitions) +"icE" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/underground/command/checkpoint) -"iPw" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/research/storage) -"iQf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering) -"iQg" = ( -/obj/item/packageWrap, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"iQm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"iQL" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"iRg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/underground/command/checkpoint) +"ide" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/dorms) +"idf" = ( +/obj/structure/surface/table, +/obj/item/storage/box/botanydisk, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/north) +"idA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 1; + name = "\improper Underground Security Interrogation Observation" }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/crew/canteen) -"iRq" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"iSa" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/treatment) -"iSx" = ( -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/excavation) -"iSE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/security/backroom) +"idG" = ( +/obj/structure/closet/secure_closet/req_officer, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"idJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research/work) -"iTn" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"idV" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/darkblue2/southeast, -/area/ice_colony/underground/command/center) -"iTF" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/exterior/surface/valley/west) -"iTH" = ( -/obj/structure/machinery/power/port_gen/pacman, +/area/ice_colony/surface/command/control) +"ieS" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"iUL" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/field_gear) -"iUO" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/sec_storage) +"ifd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"ifk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"iUZ" = ( -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/surface/hangar/beta) -"iVf" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"iVh" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"iVr" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/lobby) -"iVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/storage) -"iVF" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 +/area/ice_colony/surface/excavation) +"ifB" = ( +/obj/structure/machinery/light, +/obj/structure/noticeboard{ + pixel_y = -32 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition) -"iWo" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"iWS" = ( -/obj/structure/window/reinforced, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"ifH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"iXP" = ( -/obj/structure/machinery/vending/security, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"ifR" = ( +/obj/structure/filingcabinet/security, /obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 + dir = 1; + pixel_y = -24 }, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/armory) -"iYH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/tech_storage) -"iYU" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator1/underground) -"iZc" = ( -/obj/structure/lz_sign/ice_sign{ - desc = "The only good bug is a dead bug."; - icon_state = "fort_biceps"; - name = "Fort Bicep: Telecommunications Array" +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"igs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"ihg" = ( +/obj/structure/flora/pottedplant, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/south) -"iZd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/lobby) +"ihm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"jac" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/excavation) -"jba" = ( +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/treatment) +"ihn" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/dorms/canteen) -"jbk" = ( -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/command/checkpoint) -"jbt" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator1/underground) -"jbx" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/requesition/lobby) +"ihu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Engineering Backup Power Storage" }, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) -"jby" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/hallway/south_east) -"jbN" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +"ihx" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/hallway) +"ihR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"jbX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control/office) +"iij" = ( +/obj/structure/machinery/bot/mulebot, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition) +"iik" = ( +/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/engineering) -"jcj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/lobby) -"jcC" = ( +/area/ice_colony/surface/garage/repair) +"iiF" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"iiI" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/south_east) -"jcF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/north) -"jcU" = ( -/obj/structure/fence, +/area/ice_colony/surface/hydroponics/lobby) +"iiL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"iiT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"ijl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"ijq" = ( +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/reception/checkpoint_south) +"ijv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"ijQ" = ( /turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/container_yard) -"jdn" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"jdD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 8; - name = "\improper Omicron Field Gear Storage" +/area/shuttle/elevator1/ground) +"ikp" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"ikG" = ( /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/surface/research/field_gear) -"jdU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/ice_colony/underground/hallway/north_west) +"ilr" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"ilA" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"imm" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/substation/smes) +"imA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"imB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"ina" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"inu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"jdX" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/surface/tcomms) -"jfa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"inx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"jfu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/research) +"ios" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/warnplate/west, -/area/ice_colony/underground/maintenance/east) -"jfA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"iov" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Aurora Medical Clinic Scanning Unit" - }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"jfI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/obj/effect/decal/cleanable/blood, /turf/open/floor/dark2, /area/ice_colony/surface/garage/one) -"jfP" = ( -/obj/structure/machinery/power/apc/no_power/north, +"ioU" = ( +/obj/structure/machinery/conveyor_switch, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/darkbrown2/north, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/lobby) -"jfT" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/substation) -"jga" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition) -"jhp" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/garage/one) -"jhr" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2, +"ioX" = ( +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/tcomms) -"jhZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/south) -"jik" = ( -/obj/structure/machinery/light{ +"ipq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"ipB" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/storage) +"ipW" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/electric) +"iqr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"iqY" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"ira" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, /turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) -"jiG" = ( -/obj/item/lightstick/planted, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"jiM" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"jiW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"irb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper/research_notes, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"jja" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"jjj" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/research) -"jjt" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"jjx" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, +/area/ice_colony/underground/research) +"irs" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) -"jjM" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"jjO" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"jky" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/exterior/surface/valley/west) -"jkU" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/crap_item, +"irw" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"irx" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"itK" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms/canteen) -"jlk" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"jlq" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/hallway/north_west) -"jlV" = ( -/obj/structure/bed/chair{ +"ius" = ( +/obj/structure/machinery/light{ dir = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"ivP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"jmZ" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/surface/dorms/canteen) +"iwk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"jnl" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Hydroponics South Wing Technical Storage" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"iwH" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"ixu" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"jnm" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"ixw" = ( /obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 2 - }, +/obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"ixE" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/storage) +"ixI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/hangar/checkpoint) +"ixR" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"ixW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/dark2, -/area/ice_colony/surface/tcomms) -"jnD" = ( +/area/ice_colony/underground/security/brig) +"iyw" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering) +"iyH" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"iyT" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" + }, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/dorms) +"izq" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator1/underground) +"iAa" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control/office) +"iAD" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/south) +"iBi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control) +"iCA" = ( /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/darkpurplecorners2/east, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/research) -"joN" = ( -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/research/tech_storage) -"joR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" +"iCK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"iCM" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator1/ground) +"iCR" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/north_west) +"iCX" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"jpL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/stack/cable_coil/blue, +/obj/item/stack/rods, +/obj/item/storage/donut_box, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"iDy" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/filingcabinet, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"iEl" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/treatment) +"iEH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"jqN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"iFt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security) -"jsm" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +/obj/structure/closet/hydrant{ + pixel_y = 32 }, /turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"jsy" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/interrogation) -"jte" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering/generator) -"jtr" = ( -/turf/closed/wall, -/area/ice_colony/exterior/surface/cliff) -"jtH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"jtO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"jup" = ( +/area/ice_colony/underground/medical/hallway) +"iFM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"juq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/leisure) -"juG" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/area/ice_colony/underground/research/storage) +"iFS" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator4/ground) +"iGB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"iGZ" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator2/ground) +"iHd" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"juQ" = ( -/obj/structure/disposalpipe/segment{ +/area/ice_colony/underground/crew/lavatory) +"iHO" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"jvd" = ( -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/medical/lobby) -"jvK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/two) -"jwg" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "garage_ice_1"; - name = "\improper Garage Shutters" +/area/ice_colony/underground/command/center) +"iHZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"jwH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"jxF" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/garage/repair) -"jzc" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"jzM" = ( +/area/ice_colony/surface/engineering/tool) +"iIg" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_north) +"iIq" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/tech_storage) -"jzN" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/crew/bball) -"jzP" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition) -"jzR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/electric) +"iIt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research/temporary) -"jAe" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" }, /turf/open/floor/dark2, -/area/ice_colony/surface/research/tech_storage) -"jAS" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" +/area/ice_colony/underground/storage/highsec) +"iJs" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator2/ground) +"iKh" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/shuttle/diagonal{ - icon_state = "heater" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"iKp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"iLi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/medical/lobby) +"iLn" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"iLB" = ( +/obj/structure/closet/crate, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"iLR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"iLS" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"jAX" = ( +/area/ice_colony/surface/substation/smes) +"iMj" = ( +/obj/structure/bed/chair, +/obj/structure/disposalpipe/segment, /turf/open/floor/darkblue2/north, -/area/ice_colony/surface/excavation) -"jBg" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"jBk" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/underground/command/checkpoint) +"iMs" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/hydroponics/lobby) -"jBJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/hallway/north_west) -"jCj" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"iNi" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/research) +"iNk" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"iNu" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/reception/checkpoint_south) +"iNy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"jDD" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"iNU" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/generator) +"iOx" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"iOM" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"iOR" = ( +/obj/structure/machinery/computer/operating, /turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"jDT" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"jDY" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/ice_colony/underground/medical/or) +"iPO" = ( +/obj/structure/machinery/light_switch{ + pixel_y = 32 }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/garage/repair) -"jEn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/engineering) -"jEw" = ( +/area/ice_colony/surface/engineering) +"iQg" = ( +/obj/item/packageWrap, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"iQm" = ( +/obj/structure/surface/table, +/obj/item/folder/white, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/lobby) +"iQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) +"iRd" = ( +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"iRe" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator2/ground) +"iRw" = ( /turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/excavation) -"jEB" = ( -/obj/structure/shuttle/engine/heater{ +/area/ice_colony/surface/hangar/alpha) +"iSj" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/icefloor/shuttle_vfloor, -/area/ice_colony/exterior/underground/caves/dig) -"jEK" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"iSr" = ( /obj/structure/machinery/conveyor{ icon_state = "switch-off" }, @@ -15197,2035 +14820,2014 @@ }, /turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/surface/requesitions) -"jFx" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" - }, -/turf/open/floor/whitered/southwest, -/area/ice_colony/surface/clinic/storage) -"jFG" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/treatment) -"jGl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"iSC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/tech_storage) -"jGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Theta-V Research Laboratory Storage" }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"jHo" = ( -/obj/structure/machinery/processor, -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"jHq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"jHA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/ice_colony/underground/research/storage) +"iSU" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkbrown2/west, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"iTo" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering/locker) +"iUk" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"iVG" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) -"jIu" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/underground/command/center) -"jIJ" = ( -/turf/open/floor/darkbrowncorners2/north, +"iVQ" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering) +"iVT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) -"jIS" = ( -/obj/structure/shuttle/diagonal{ - dir = 9; - icon_state = "wall" +"iVZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"jJK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/soap, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"jJN" = ( +/area/ice_colony/surface/research/tech_storage) +"iWv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/hallway/south_east) -"jJO" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/electric) -"jJU" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"jKk" = ( -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/underground/security/brig) -"jLo" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"iWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "engineering_ladder1" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"iWI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering/locker) -"jLQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"jLZ" = ( -/turf/open/floor/whitered/southwest, -/area/ice_colony/underground/medical/or) -"jMu" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/storage) -"jMM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition/lobby) -"jNm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/dorms) +"iWQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 2; + icon_state = "leftsecure"; + id = "brg"; + name = "Security Desk" }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"jNT" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "hydroponics_ladder"; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/window/northright{ + name = "Security Desk" }, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/south) -"jNZ" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/disposals) -"jOo" = ( -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/surface/requesitions) -"jPx" = ( -/obj/structure/toilet{ - dir = 8 +/obj/item/tool/stamp, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_south) +"iXv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 2; + icon_state = "leftsecure"; + id = "brg"; + name = "Security Desk" }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"jPE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/window/northright{ + name = "Security Desk" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"jQt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/stamp, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/lobby) -"jQD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/dorms/lavatory) -"jQE" = ( -/obj/structure/surface/table, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"iXw" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"jRA" = ( +/area/ice_colony/surface/hangar/alpha) +"iXQ" = ( /obj/structure/surface/table, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/south_east) -"jRW" = ( -/obj/structure/toilet{ - dir = 1 +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"iYj" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"jSN" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/hallway) -"jTc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"iZc" = ( +/obj/structure/lz_sign/ice_sign{ + desc = "The only good bug is a dead bug."; + icon_state = "fort_biceps"; + name = "Fort Bicep: Telecommunications Array" }, +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/south) +"iZv" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"jTf" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security) -"jUq" = ( -/obj/structure/window/reinforced{ +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/command/control) +"jaF" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/excavation) -"jUB" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"jVo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"jaJ" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = "brg" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering) -"jVy" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"jWc" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, +/area/ice_colony/underground/security/brig) +"jaK" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"jWC" = ( -/turf/open/floor/darkgreencorners2, -/area/ice_colony/surface/hydroponics/lobby) -"jWD" = ( -/obj/structure/machinery/light{ +/area/ice_colony/surface/garage/repair) +"jba" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/crew/disposals) -"jWF" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"jYK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"jYL" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"jYU" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator1/underground) -"jZs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"jZF" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/engineering) -"jZI" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"jbB" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/storage) +"jbI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"jcv" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle_control/dropship2, -/turf/open/floor/plating/icefloor, -/area/ice_colony/landing/console) -"jZJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/backroom) -"jZX" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/item/restraint/handcuffs, +/obj/structure/machinery/flasher_button{ + id = "sec_checkpoint"; + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 36 }, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/hallway) +"jcz" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"jZY" = ( +/area/ice_colony/surface/research) +"jda" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/whitered/southeast, -/area/ice_colony/surface/clinic/treatment) -"kav" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/lavatory) -"kbJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/surface/garage/one) -"kcf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/center) -"kcN" = ( -/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"kds" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/underground/hangar) -"kdA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/lobby) -"kdK" = ( -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/underground/hallway/south_east) -"kdT" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/ice_colony/surface/storage_unit/telecomms) -"kev" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/surface/excavation/storage) -"keJ" = ( -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security/interrogation) -"kfy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/research) -"kfO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/hydroponics/lobby) -"kgh" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - dockId = "Upper_Omicorn"; - shuttleId = "ice_classic_shuttle2" - }, -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/surface/research) -"kgA" = ( +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/command/checkpoint) +"jdU" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/or) +"jeG" = ( +/obj/structure/closet/coffin, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"jeR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"jeX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/tool) +"jgb" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/reception/checkpoint_north) +"jgj" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering) +"jgq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/lobby) +"jgw" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"kgG" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/underground/crew/lavatory) -"kgJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"khj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/ice_colony/surface/hydroponics/north) +"jhv" = ( /obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"jhx" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"jic" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"jil" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Colony Garage" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"jjj" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"jjq" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"khD" = ( -/obj/structure/dispenser, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering/tool) -"khQ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" +/area/ice_colony/surface/substation) +"jjw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Engineering" }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation/smes) -"khV" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"jkc" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"jkB" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"jkD" = ( /obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/excavation) -"kip" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research) -"kiw" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"kiB" = ( +/obj/item/weapon/gun/pistol/holdout, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/armory) +"jkG" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"jkX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition) -"kja" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering) -"kkz" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"kkC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"jlc" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/south_east) +"jll" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Underground Medical Laboratory"; - req_access_txt = "100" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Underground Medical Laboratory" }, /turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) -"kkE" = ( -/obj/structure/disposalpipe/segment{ +"jlC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/dorms/canteen) -"kkK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering/electric) -"kkY" = ( +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"jlI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"jlR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"jlU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"klq" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/area/ice_colony/surface/hydroponics/north) +"jmk" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"jmq" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/sec_storage) +"jmB" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/medical/lobby) +"jmT" = ( +/obj/effect/decal/cleanable/blood/oil{ + icon_state = "armorblood" }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/dorms/canteen) -"klu" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"jnw" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"klW" = ( +/area/ice_colony/underground/research) +"jom" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/alpha) +"jpD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"jro" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/lobby) -"knk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"jru" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"jry" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"jse" = ( +/obj/item/evidencebag, +/obj/item/trash/popcorn, +/obj/item/trash/candy, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"jsx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Underground Security Custodial Closet" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/backroom) +"jsT" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"jsU" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/interrogation) +"jtr" = ( +/turf/closed/wall, +/area/ice_colony/exterior/surface/cliff) +"jtt" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/structure/machinery/light/small{ dir = 4 }, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"jtI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"jul" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 + }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"juq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/leisure) +"jux" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"kpi" = ( -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/underground/security/brig) -"kpw" = ( -/obj/structure/closet/wardrobe/engineering_yellow, /turf/open/floor/darkyellow2/southeast, -/area/ice_colony/underground/engineering) -"kpQ" = ( -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/underground/hallway/north_west) -"kqh" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "janitor_ladder" +/area/ice_colony/surface/substation) +"jvk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/disposals) -"kqj" = ( -/obj/structure/shuttle/engine/heater{ +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"jvq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/icefloor/shuttle_vfloor, -/area/ice_colony/exterior/underground/caves/dig) -"kqI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"kqK" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Colony Requesitions Storage Pod" + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"jvA" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"jvS" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition) +"jwb" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/technology_scanner, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation/smes) +"jwW" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"jxp" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"jxP" = ( +/obj/item/lightstick/planted, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"jyd" = ( /obj/structure/window/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2/southwest, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) -"krg" = ( -/turf/open/floor/darkpurple2/northeast, +"jyG" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"jyL" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/tool) +"jyU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research) -"kry" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/hangar) -"krB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"jzX" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"jAA" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms/lavatory) +"jAR" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + dockId = "Upper_Omicorn"; + shuttleId = "ice_classic_shuttle2" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteredcorner, -/area/ice_colony/surface/clinic/treatment) -"krE" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/brig) -"ksv" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering) -"ksG" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/research/temporary) -"ksR" = ( -/obj/structure/curtain/shower, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"ktx" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/surface/research) +"jBD" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"jBG" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/beta) -"ktI" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"kuC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"kvo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"jCR" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) +"jCU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security" }, -/turf/open/floor/darkred2/east, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/hallway) -"kvH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"jDb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"jEn" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/turf/open/floor/darkbrown2/southwest, +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) -"kvJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 2; - icon_state = "leftsecure"; - id = "brg"; - name = "Security Desk" +"jEI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/window/northright{ - name = "Security Desk" +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/lobby) +"jER" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/tool/stamp, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"jFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/reception/checkpoint_south) -"kwf" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"kwv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"kwN" = ( -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/underground/hallway/south_east) -"kwR" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/dorms/canteen) -"kxd" = ( -/obj/structure/inflatable/door, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"kxG" = ( +/area/ice_colony/underground/hallway/north_west) +"jGZ" = ( /obj/structure/surface/table/woodentable, +/obj/item/paper/research_notes, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/hydroponics/lobby) -"kyk" = ( +"jHg" = ( +/turf/open/floor/chapel/east, +/area/ice_colony/underground/crew/chapel) +"jHw" = ( +/obj/structure/closet/crate/hydroponics, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/south) +"jHK" = ( +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/work) +"jHQ" = ( /obj/structure/machinery/door_control{ - id = "st_19"; - name = "Storage Unit Lock"; + id = "req_sec_storage"; + name = "Requesition Secure Storage"; normaldoorcontrol = 1; - pixel_y = -24; - req_access_txt = "103"; + pixel_y = 24; + req_access_txt = "100"; specialfunctions = 4 }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"kyq" = ( -/turf/open/floor/darkblue2, -/area/ice_colony/surface/excavation) -"kyU" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/landing_pad2) -"kzD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Aurora Medical Clinic Storage" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/sec_storage) +"jHV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/storage) -"kAa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreencorners2, -/area/ice_colony/surface/hydroponics/lobby) -"kAr" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/engineering/locker) -"kAx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 1; - name = "\improper Underground Security Interrogation Observation" +/obj/effect/landmark/crap_item, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control/office) +"jIa" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/electric) +"jJv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/backroom) -"kAz" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"jJO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"jJW" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"jKj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"kAZ" = ( -/obj/structure/bigDelivery, +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"jKo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"kBc" = ( -/obj/structure/bed/chair/office/light{ +/area/ice_colony/surface/dorms/restroom_w) +"jKQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"jLM" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkred2/east, -/area/ice_colony/surface/hangar/checkpoint) -"kBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/crew/bball) +"jLN" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/reception/checkpoint_north) +"jMa" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Dome" - }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/hydroponics/lobby) -"kBN" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering) +"jMk" = ( +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/alpha) +"jMt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Morgue" }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"kCo" = ( -/obj/structure/machinery/light{ +/area/ice_colony/underground/crew/morgue) +"jMX" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/interrogation) +"jNc" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/north_west) +"jNm" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/darkblue2/west, -/area/ice_colony/underground/command/center) -"kCT" = ( -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/engineering) -"kDh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"jOs" = ( +/obj/structure/safe, +/obj/item/weapon/sword/katana/replica, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"jPb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"kEi" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/backroom) -"kEJ" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/darkgreencorners2, -/area/ice_colony/surface/dorms) -"kEM" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"jPV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"jQn" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"jRm" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"kEN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition) -"kFp" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/command/checkpoint) -"kFt" = ( -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/telecomms) -"kFR" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/hallway/north_west) -"kFW" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator2/ground) -"kGb" = ( -/obj/structure/plasticflaps, -/obj/structure/reagent_dispensers/beerkeg, +/area/ice_colony/underground/storage/highsec) +"jSb" = ( +/obj/structure/closet/crate/freezer/rations, /turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"kGD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/area/ice_colony/underground/requesition/storage) +"jSg" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"kGU" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator3/underground) -"kIg" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"jTe" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/garage/one) +"jTX" = ( +/obj/item/roller{ + icon_state = "down" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"kIq" = ( -/turf/open/floor/vault2/west, -/area/ice_colony/surface/hangar/checkpoint) -"kIM" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering) -"kIU" = ( -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/research/tech_storage) -"kIZ" = ( +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/hallway) +"jUe" = ( +/obj/structure/inflatable/door, +/turf/open/floor/icefloor/ramptop, +/area/ice_colony/exterior/underground/caves/dig) +"jUx" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/lobby) -"kJa" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/excavation) -"kJK" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"kJY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, /turf/open/floor/dark2, /area/ice_colony/surface/research) -"kJZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"jUF" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Aurora Medical Clinic Recovery Room" - }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"kKz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +/obj/structure/machinery/computer/cameras, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"kKD" = ( -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/reception/checkpoint_north) -"kLh" = ( -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/exterior/surface/landing_pad2) -"kLx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/command/center) +"jUP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/electric) +"jVi" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research) -"kMi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"kMk" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"jVT" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/item/weapon/gun/pistol/holdout, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/armory) -"kMo" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/garage/repair) -"kNd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/temporary) -"kNG" = ( -/obj/structure/window/reinforced/tinted{ +/obj/structure/largecrate/random, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"jVX" = ( +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/structure/machinery/computer/cameras, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"jWn" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"jWr" = ( +/obj/structure/surface/table, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/treatment) +"jWv" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"kNK" = ( -/obj/effect/spawner/random/toolbox, +/area/ice_colony/underground/engineering/locker) +"jWA" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/alpha) -"kNW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"jWV" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/tool) +"jXa" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/north_west) +"jXR" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"kOQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"kPG" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/west, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"jYg" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation/smes) -"kPW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"jZc" = ( +/obj/structure/machinery/door_control{ + id = "research_entrance"; + name = "Research Entrance Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + req_access_txt = "103"; + specialfunctions = 4 }, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/research/field_gear) -"kRw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/research) -"kRz" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"kRF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "researchoutside"; - name = "Omicron Research Dome" +"jZk" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/lobby) +"jZq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/darkpurple2/northeast, -/area/ice_colony/surface/research) -"kRI" = ( -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"kSf" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"jZC" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/command/control) +"jZI" = ( /obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/substation) -"kSn" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/machinery/computer/shuttle_control/dropship2, +/turf/open/floor/plating/icefloor, +/area/ice_colony/landing/console) +"kac" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"kSI" = ( +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"kag" = ( /obj/structure/surface/table, -/obj/item/storage/box/pizza, +/obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/dorms/canteen) -"kSM" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/research) -"kTl" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/command/checkpoint) -"kTm" = ( -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/hangar/beta) -"kTB" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition/sec_storage) -"kTG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) +"kaO" = ( +/obj/structure/machinery/door/poddoor/two_tile/secure{ + id = "colony_sec_armory"; + name = "Secure Armory" }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/dorms) -"kTX" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"kVa" = ( -/obj/structure/curtain/open/black, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"kVb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/sensortower, -/turf/open/floor/darkgreencorners2, -/area/ice_colony/surface/hydroponics/lobby) -"kVh" = ( +/area/ice_colony/underground/security/armory) +"kbB" = ( +/obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/command/checkpoint) -"kVi" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"kVG" = ( -/obj/structure/machinery/vending/snack, +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves) +"kbK" = ( /turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/tcomms) +"kcw" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/disposals) +"kcF" = ( +/obj/structure/bed, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/security/brig) -"kWa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" +"kcH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"kWw" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/storage) +"kcN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"kcP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"kda" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"kdS" = ( +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "pipe-c" + pixel_x = 24 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms/canteen) +"kel" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"kfc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"kWx" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/beta) -"kWQ" = ( +/area/ice_colony/surface/hangar/alpha) +"kfi" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"kfw" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/security/brig) +"kgs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"kXS" = ( -/obj/structure/machinery/door_control{ - id = "req_sec_storage"; - name = "Requesition Secure Storage"; - normaldoorcontrol = 1; - pixel_y = 24; - req_access_txt = "100"; - specialfunctions = 4 +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition/sec_storage) -"kXZ" = ( -/obj/structure/machinery/conveyor{ - icon_state = "switch-off" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/machinery/door_control{ - name = "Storage Unit Control"; - pixel_x = 24 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"kgw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/surface/requesitions) -"kYd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "engineering_ladder" }, -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/surface/hangar/alpha) -"kYA" = ( -/obj/structure/curtain/open/shower, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/engineering/locker) +"khj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Secure Technical Storage" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"khq" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/lobby) +"khz" = ( +/obj/structure/curtain/shower, /turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"kYB" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +/area/ice_colony/surface/dorms/restroom_w) +"khT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/center) -"kYP" = ( +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"khZ" = ( +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/lobby) +"kii" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/research) +"kiM" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"kiX" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/north_west) +"kjq" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"kjs" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"kjA" = ( +/obj/structure/surface/table, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_north) +"kka" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/substation) +"kkv" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"klr" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"klP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) -"kZw" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" +"kmb" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"kmo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering) -"kZB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"kmR" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"knt" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"knu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "engine_electrical_maintenance"; + name = "Underground Power Substation" + }, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"kny" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"knX" = ( /turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) -"lan" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/substation) -"laq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/medical/bruise_pack, -/obj/item/cell, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering) -"laF" = ( +"knY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"kou" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/storage) +"koz" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"koA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"koK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_1"; + name = "\improper Hangar Shutters" + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/alpha) +"koU" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"koX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/whitered, /area/ice_colony/underground/medical/storage) -"lbm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"kpE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"lbM" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "hangar_ladder1" }, +/turf/open/floor/plating/warnplate, +/area/ice_colony/underground/maintenance/east) +"kpL" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"kpM" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator4/ground) +"kpS" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"lbU" = ( -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/south) -"lca" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"lcD" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"ldg" = ( -/obj/item/shard, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/surface/command/checkpoint) -"ldp" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/tech_storage) -"ldT" = ( -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/hydroponics/lobby) -"leC" = ( -/turf/open/floor/darkblue2, /area/ice_colony/underground/command/checkpoint) -"leR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"kqJ" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"lfc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Aurora Medical Clinic Treatment"; - req_access_txt = "100" - }, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/treatment) -"lfh" = ( -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control) -"lfi" = ( -/obj/structure/window/reinforced{ - dir = 1 +/area/ice_colony/surface/engineering) +"kqS" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/or) +"krg" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Colony Garage" }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/excavation) -"lfD" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"krt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"kry" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "\improper Underground Security Showers" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"krL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Underground Engineering Locker Room" }, /turf/open/floor/dark2, -/area/ice_colony/underground/security/brig) -"lfU" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator1/ground) -"lgA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/engineering/locker) +"krP" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"ksF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"lgC" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"kty" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"ktI" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ +/obj/item/weapon/gun/pistol/holdout, +/obj/item/weapon/gun/pistol/holdout{ pixel_x = 6; pixel_y = -4 }, -/obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor/darkred2/southeast, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/armory) -"lgX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security) -"lhc" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering) -"lhh" = ( -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/engineering/generator) -"lhl" = ( -/obj/effect/decal/cleanable/blood/oil{ - icon_state = "armorblood" - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/underground/hangar) -"lhs" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"lhN" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/engineering/tool) -"lif" = ( -/obj/structure/bed/chair/office/dark{ +"ktN" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator3/ground) +"kug" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/dark2, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/hallway) -"liz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kup" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/treatment) +"kuy" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"kuX" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway/south_east) +"kvh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"kvR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation/smes) +"kvW" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/north) +"kwm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - name = "\improper Colony Dormitories" + name = "\improper Theta-V Research Laboratory" }, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/dorms) -"ljC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkpurple2/northwest, -/area/ice_colony/underground/research/storage) -"lkp" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/tool) -"lkR" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/underground/research) +"kxm" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"kxp" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/storage) -"lkS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"lkU" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/engineering) -"lkZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"lls" = ( -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/disposals) -"lmq" = ( -/obj/structure/cryofeed/right, -/turf/open/floor/icefloor/shuttle_vfloor, -/area/ice_colony/exterior/underground/caves/dig) -"lna" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Colony Control Center" }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"lnq" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"lnz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/surface/command/control) +"kxA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/window{ - name = "Anomaly Gear" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"kxJ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"kya" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/excavation) -"lop" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"kyu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"lpJ" = ( +/area/ice_colony/surface/command/control) +"kyB" = ( +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"kAb" = ( +/turf/open/floor/darkred2/southeast, +/area/ice_colony/surface/command/checkpoint) +"kAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"kBR" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"kCe" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Underground Security Evidence Storage" }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"lpQ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/area/ice_colony/underground/security/interrogation) +"kCz" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Lower_Dorms"; + name = "Lower Dorms"; + airlock_exit = "elevator"; + elevator_network = "dorm"; + airlock_area = /area/shuttle/elevator2/underground }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/hangar/alpha) -"lqY" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/tcomms) -"lrr" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) -"lrJ" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator2/underground) +"kCO" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/command/center) +"kDr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 2; - icon_state = "pipe-c" + id = "engine_electrical_maintenance"; + name = "Underground Power Substation" }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"lsc" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/excavation) -"lsu" = ( +/area/ice_colony/underground/engineering/substation) +"kDG" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/crew/lavatory) +"kEt" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/north) -"lsw" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"lsW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"kEv" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"lsY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/ice_colony/surface/excavation) +"kEW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"kFO" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/research) -"lti" = ( -/turf/open/floor/darkbrowncorners2/west, -/area/ice_colony/surface/hangar/alpha) -"ltO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"kFX" = ( +/obj/structure/window/reinforced{ + dir = 1 }, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/excavation) +"kIl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"ltT" = ( -/obj/structure/machinery/light, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"lua" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/area/ice_colony/underground/hallway/north_west) +"kIA" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"luc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/ice_colony/surface/hydroponics/north) +"kIK" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"kIU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Underground Medical Laboratory" +/obj/structure/disposalpipe/segment{ + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"lvq" = ( -/obj/structure/machinery/door_control{ - id = "garage_ice_2"; - name = "garage shutter control"; - pixel_y = -30 - }, -/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/two) -"lvz" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/rods, -/obj/item/storage/donut_box, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"lvS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/checkpoint) -"lwh" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation/smes) -"lwI" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_x = 2; - pixel_y = 1 +"kJt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/trash/plate{ - pixel_x = -1; - pixel_y = 2 +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"kKH" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"kLi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"kLq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"lxg" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"lxm" = ( +/area/ice_colony/surface/garage/one) +"kLr" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"kLK" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/surface/command/control) -"lxE" = ( -/obj/structure/surface/rack, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/item/cell/hyper/empty, -/obj/item/cell/hyper/empty, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering/tool) -"lyi" = ( -/turf/open/floor/chapel/north, -/area/ice_colony/underground/crew/chapel) -"lyD" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"lzu" = ( -/turf/open/floor/whiteredcorner/north, -/area/ice_colony/surface/clinic/lobby) -"lAi" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"lAx" = ( -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/tech_storage) -"lAQ" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"kMr" = ( /obj/structure/surface/table/reinforced, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"kMQ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/surface/tcomms) +"kMU" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"kNg" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves) +"kNu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, /turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition/lobby) -"lBg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/ice_colony/surface/hangar/beta) +"kNw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"kNI" = ( +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"kOr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"kOW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/storage) +"kOZ" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"kPh" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/darkpurple2/east, +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/research) -"lBi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security) -"lBo" = ( -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/crew/canteen) -"lBH" = ( -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/hangar/checkpoint) -"lBK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"kPw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"kPE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/whitered/northwest, -/area/ice_colony/surface/clinic/lobby) -"lBN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "researchoutside"; + name = "Research Garage Lock"; + pixel_x = 24 }, -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control) -"lBP" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/lavatory) -"lBV" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/research) +"kPF" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator4/underground) +"kPM" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/dorms/lavatory) +"kPU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/lobby) -"lCb" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/hydroponics/lobby) -"lCn" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/sec_storage) -"lCP" = ( -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research) -"lCZ" = ( -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/north_west) -"lDj" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" +/area/ice_colony/surface/excavation) +"kQb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Underground Medical Laboratory"; + req_access_txt = "100" }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"lDI" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"kQs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"kQv" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"kQM" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 - }, /turf/open/floor/darkblue2/east, -/area/ice_colony/underground/command/checkpoint) -"lDP" = ( +/area/ice_colony/surface/command/checkpoint) +"kQO" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/backroom) +"kRd" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"lEf" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) -"lEt" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/engineering/locker) -"lEF" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/area/ice_colony/underground/crew/disposals) +"kRf" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"lEQ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/underground/command/checkpoint) -"lEV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/hallway/north_west) -"lFE" = ( -/obj/structure/machinery/light{ +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/storage) +"kRw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall, +/area/ice_colony/surface/research) +"kRR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"kSj" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"kUB" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator3/underground) +"kUG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"kVc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"kVl" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) +"kVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"lFJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkpurple2/west, +/area/ice_colony/surface/research) +"kWx" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"lGm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center" +/area/ice_colony/surface/hangar/beta) +"kWT" = ( +/obj/structure/machinery/bot/mulebot, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/bball) -"lGT" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation/smes) -"lHf" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"kXm" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/window/reinforced/tinted, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"kXT" = ( /obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"lHh" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/obj/item/circuitboard/computer/crew, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"kYn" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/dorms/canteen) +"kYM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/syringes, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"kYV" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/underground/hangar) -"lHB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"kYX" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator4/ground) +"kZn" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"kZq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"kZZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/excavation) +"lah" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/hangar/beta) -"lHE" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/treatment) -"lIs" = ( -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/or) -"lIC" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/hydroponics/lobby) -"lID" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"laU" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"lbG" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"lbO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"lcW" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering) -"lIE" = ( -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/underground/crew/canteen) -"lIM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - icon_state = "chair" +/area/ice_colony/underground/engineering/locker) +"ldW" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"lJn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"leb" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/hangar/beta) -"lJQ" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/south) -"lJR" = ( -/turf/open/floor/darkpurple2/southwest, -/area/ice_colony/surface/research) -"lJX" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/ice_colony/underground/hallway/north_west) -"lKo" = ( -/obj/structure/closet/crate/hydroponics, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/north) -"lLj" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"leu" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ dir = 4 }, /turf/open/floor/darkpurple2, -/area/ice_colony/underground/research/sample) -"lLr" = ( -/obj/structure/inflatable/door, -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" - }, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"lLP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"lLQ" = ( -/turf/open/floor/darkblue2, -/area/ice_colony/surface/dorms) -"lMB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/research) +"leA" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, +/obj/structure/machinery/computer/cameras, /turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"lML" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/timer, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/electric) -"lMX" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition/sec_storage) -"lMZ" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"lNy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/crew/canteen) -"lNE" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/ice_colony/surface/command/control/office) +"lfK" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/hangar/alpha) -"lNK" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/underground/engineering) -"lNP" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/hallway/south_east) +"lgj" = ( +/obj/structure/machinery/conveyor{ + icon_state = "switch-off" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"lOi" = ( +/obj/structure/machinery/door_control{ + name = "Storage Unit Control"; + pixel_x = 24 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/surface/requesitions) +"lgu" = ( /obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"lgH" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/garage/one) +"liR" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"lOB" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"liT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Omicron Temporary Sample Storage" }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) +"liY" = ( /turf/open/floor/dark2, /area/ice_colony/surface/dorms) -"lOC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"ljn" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/tcomms) +"ljI" = ( +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"lkr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"lku" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"lkZ" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/darkbrown2/west, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) -"lOD" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/security/brig) -"lOU" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/hangar/beta) -"lPd" = ( +"lno" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator3/ground) +"lny" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/sec_storage) +"lnN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "N-corner" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/sec_storage) -"lPV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/surface/research) +"lnT" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"lnU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/wrapping_paper, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition) +"lnZ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/darkgreen2/southwest, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) -"lQg" = ( -/obj/structure/reagent_dispensers/beerkeg, +"lok" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"lQo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"lQw" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering) -"lQW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"lRg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"lRl" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/lobby) -"lRC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"lSd" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/underground/hangar) -"lTv" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"loK" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" + dir = 5 }, -/obj/effect/decal/cleanable/blood, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"lTF" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/area/ice_colony/underground/security) +"loV" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/lobby) +"loW" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator2/underground) +"lpc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"lpN" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"lTJ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkgreen2/north, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/south_east) -"lTV" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"lUi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/underground/hallway/north_west) -"lUt" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"lUG" = ( -/obj/structure/computerframe, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"lVQ" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator4/underground) -"lWd" = ( +"lpX" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"lqK" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator1/ground) +"lqR" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/dark2, -/area/ice_colony/underground/research/work) -"lWp" = ( -/obj/structure/computerframe{ - anchored = 1 +/area/ice_colony/surface/garage/one) +"lqS" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" }, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"lWv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/backroom) -"lXa" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"lqY" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/tcomms) +"lri" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "hangar_ice_2"; + name = "hangar shutter control"; + pixel_y = -30 }, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/surface/command/control/office) -"lXk" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/clearing/south) -"lXl" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/one) -"lXs" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"lrt" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/armory) +"lrX" = ( +/obj/item/trash/raisins, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"lsh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - icon_state = "pipe-c" + name = "\improper Underground Medical Laboratory" }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"lXX" = ( -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/lobby) -"lYw" = ( +/area/ice_colony/underground/medical/lobby) +"lsn" = ( +/obj/structure/inflatable/door, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/excavation/storage) +"lso" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/tech_storage) -"lYA" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/interrogation) -"lYS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/disposals) +"ltA" = ( +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"ltP" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"lYX" = ( -/obj/structure/pipes/standard/manifold/visible{ - layer = 2.3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/whiteredcorner/east, -/area/ice_colony/underground/medical/treatment) -"lZg" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/underground/hangar) -"lZp" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition/sec_storage) -"lZx" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"lZz" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/lobby) +"luv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/lavatory) -"lZE" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"luB" = ( +/obj/item/stack/rods, +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/control) +"luJ" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"lvq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/spacecash/c500, +/obj/item/spacecash/c100, +/obj/item/spacecash/c10, +/obj/item/spacecash/c1, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"lvr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/treatment) -"mak" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/security/brig) -"mao" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/field_gear) -"maq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"lvy" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ dir = 4 @@ -17235,1473 +16837,1757 @@ pixel_x = 24 }, /turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/north) -"mbn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" +/area/ice_colony/surface/hydroponics/south) +"lvY" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/container_yard) +"lwf" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"lwz" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"lwD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"lwV" = ( +/obj/structure/bigDelivery, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"lxo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"lyx" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"lyD" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/darkpurple2/southeast, -/area/ice_colony/surface/research) -"mcd" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"lyQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"lAP" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/temporary) -"mch" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" - }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"mcq" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/interrogation) -"mcI" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/dorms) -"mcR" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/surface/requesitions) -"mdd" = ( /turf/open/floor/darkbrown2/southwest, -/area/ice_colony/underground/requesition/sec_storage) -"mdx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/hallway/south_east) -"mdE" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/ice_colony/underground/crew/disposals) +"lBz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/whitered/west, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) -"mdF" = ( -/obj/structure/reagent_dispensers/beerkeg, +"lBG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, /turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"meH" = ( -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/plating/warnplate, -/area/ice_colony/surface/disposals) -"meL" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/tcomms) -"mfu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, +/area/ice_colony/surface/bar/canteen) +"lBI" = ( /turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/dorms) -"mfK" = ( +/area/ice_colony/underground/hallway/south_east) +"lBK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"lBT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"mfN" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/tool/shovel/snow, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"mgV" = ( -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"mhq" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/engineering) -"mhy" = ( -/obj/structure/machinery/light_switch{ - pixel_y = 32 +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"lCs" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/security/hallway) +"lDz" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator4/underground) +"lEb" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering) -"mhG" = ( +/area/ice_colony/underground/security/brig) +"lEv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/toy/plush/farwa, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"lET" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreen2/east, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"lFd" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"lGq" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control/office) +"lGs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"lGM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/hydroponics/lobby) -"mhK" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/container_yard) -"mhP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +"lGP" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"mhR" = ( -/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"lHa" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/darkred2/north, -/area/ice_colony/surface/hangar/checkpoint) -"mhW" = ( +/area/ice_colony/underground/security/armory) +"lHj" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"lHs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"lHt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"lHy" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "engineering_ladder1" + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"lHA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Anti-Freeze Canteen Freezer" + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"lIc" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"lIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/table, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"lIs" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"mjk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security Interrogation" - }, +/area/ice_colony/surface/substation) +"lIH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"lJt" = ( +/obj/structure/bed/chair, /turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"mjM" = ( -/obj/structure/bookcase/manuals/engineering, +/area/ice_colony/surface/engineering) +"lJP" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/tool) +"lJQ" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/south) +"lJT" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2, +/area/ice_colony/surface/hangar/checkpoint) +"lLl" = ( +/obj/structure/bookcase, /turf/open/floor/wood, /area/ice_colony/underground/crew/library) -"mjY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"mkm" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 - }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/whitered/northeast, -/area/ice_colony/underground/medical/treatment) -"mkJ" = ( -/turf/open/floor/darkgreencorners2, -/area/ice_colony/underground/medical/lobby) -"mkZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/brig) -"mlw" = ( -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" - }, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"mlz" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/underground/storage/highsec) -"mlS" = ( -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security) -"mmq" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitered/northeast, -/area/ice_colony/surface/clinic/treatment) -"mmH" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"mmN" = ( -/turf/open/floor/darkpurple2/east, -/area/ice_colony/surface/research) -"mnf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"lLs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"lLA" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/hangar/beta) -"mnn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/tcomms) +"lLL" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"lLN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Women's Restroom" + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"lLP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /turf/open/floor/dark2, -/area/ice_colony/underground/security) -"mpy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/garage/one) -"mpV" = ( -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/treatment) -"mqw" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/warnplate/northwest, +/area/ice_colony/surface/hangar/checkpoint) +"lLU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) -"mru" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control) -"msd" = ( -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"msp" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/surface/requesitions) -"msR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lNd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"lNe" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/electric) +"lOq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Colony Control Center" + name = "\improper Underground Power Substation" }, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"mtO" = ( -/obj/structure/machinery/alarm{ +/area/ice_colony/underground/engineering) +"lOB" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/hallway) +"lOD" = ( +/obj/structure/sink{ dir = 4; - pixel_x = -24 + pixel_x = 11 }, -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/underground/command/center) -"mut" = ( -/obj/structure/machinery/power/reactor/colony, +/obj/structure/mirror{ + pixel_x = 24 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"lPa" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves) -"muH" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"lPg" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator2/underground) +"lPE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"lPR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"muY" = ( -/obj/structure/toilet{ - dir = 8 +/area/ice_colony/surface/engineering) +"lPY" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"lQf" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"lQn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"lQx" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/crew/canteen) +"lQK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/research) +"lQX" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/hallway/south_east) +"lRc" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"mvA" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/surface/excavation/storage) -"mvW" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator2/ground) -"mwg" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"lRD" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"lSd" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"lSh" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/lobby) +"lSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/research) +"lSk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"lSM" = ( +/obj/structure/closet/firecloset/full, /obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/hallway) +"lSP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Requesitions Freezer" }, -/obj/structure/mirror{ - pixel_y = -28 +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"lST" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"lTr" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"lTu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Lobby" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"mwM" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) -"mwS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/south) -"mwZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"lTC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"lTF" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"lTN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering/generator) -"mxA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/north_west) -"mxD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/lobby) -"mxN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"mxU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/storage) -"mye" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Theta-V Research Laboratory" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"myN" = ( -/obj/structure/machinery/sleep_console, /turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"mAi" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"mAC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) -"mBb" = ( -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/underground/hangar) -"mBY" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle3"; - dockId = "Lower_Dorms"; - pixel_y = 32 +/area/ice_colony/underground/medical/hallway) +"lUc" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"mCn" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"mCu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"mCQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/command/checkpoint) +"lUd" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"lUp" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"lUy" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"lUB" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/research) -"mDi" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/disposals) +"lUT" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -24 + icon_state = "pipe-c" }, -/obj/structure/curtain/black, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"mDy" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/treatment) -"mDO" = ( -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/lobby) -"mEd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"mEq" = ( +/area/ice_colony/surface/excavation) +"lUY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering Backup Power Storage" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"mEr" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitered/southwest, -/area/ice_colony/surface/clinic/treatment) -"mEB" = ( -/obj/item/trash/semki, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/north, -/area/ice_colony/underground/crew/disposals) -"mEC" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/reception/checkpoint_south) -"mFp" = ( -/obj/structure/bed/chair, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"mFG" = ( +/area/ice_colony/underground/crew/morgue) +"lVU" = ( /obj/structure/surface/table/woodentable, -/obj/item/restraint/handcuffs, -/obj/item/tool/stamp, +/obj/item/device/flashlight/lamp, /turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"mGc" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/platebot, -/area/ice_colony/surface/research/tech_storage) -"mHf" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"mHB" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/tcomms) -"mIi" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/treatment) -"mIj" = ( -/obj/structure/machinery/light{ +/area/ice_colony/underground/crew/library) +"lVZ" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "garage_ladder" + }, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/garage/one) +"lWn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/filingcabinet/security, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/hallway) -"mIL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"lWC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories" }, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/dorms) +"lXd" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 + }, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"lXk" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/clearing/south) +"lXE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"mIT" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/paper/research_notes, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/treatment) -"mIW" = ( +"lZp" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/medical/lobby) +"lZR" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/center) -"mIX" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/surface/requesitions) -"mJh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/wrapping_paper, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/requesition) -"mJr" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/underground/research) -"mKq" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator1/ground) -"mKy" = ( -/turf/open/floor/darkpurple2/southeast, -/area/ice_colony/underground/research/sample) -"mKE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/canteen) +"maB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"mLL" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"mbc" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/research/field_gear) +"mbk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/security/brig) -"mMd" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"mMj" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/area/ice_colony/underground/security) +"mbl" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"mbp" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/substation/smes) -"mMy" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"mbs" = ( +/obj/structure/shuttle/diagonal{ + dir = 10; + icon_state = "wall" }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"mMz" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/backroom) -"mMA" = ( -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/hallway) -"mMY" = ( -/obj/structure/bed/chair{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"mbG" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/shuttle/can_surgery/red, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) -"mOn" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/disposals) -"mOZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mcm" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "ship_ladder1"; + pixel_y = 16 }, +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"mcw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/white, -/area/ice_colony/surface/clinic/storage) -"mPH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark2, +/area/ice_colony/underground/medical/hallway) +"mcy" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"mcW" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/underground/requesition) -"mPY" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"mdi" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/storage/highsec) +"mdt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"meP" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/backroom) +"mfk" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"mfx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Colony Offices" + }, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"mfL" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/research/field_gear) -"mQc" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"mfT" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"mQq" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/center) +"mfZ" = ( +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"mgL" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/exterior/surface/landing_pad) -"mQA" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/bcircuit, -/area/ice_colony/underground/engineering/substation) -"mRi" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/crew/canteen) -"mRp" = ( -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/substation/smes) -"mRz" = ( -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/garage/one) -"mRF" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/generator) -"mSe" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/tcomms) -"mSg" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/ice_colony/surface/excavation) +"mgN" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/crew/disposals) +"mgS" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/storage) +"mgZ" = ( +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkblue2/east, -/area/ice_colony/surface/command/control) -"mSi" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 15 +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"mhp" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/research) +"mhG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/trackimp, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"mhQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"mhR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"mSE" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/checkpoint) -"mSJ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/surface/command/control) -"mTa" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/area/ice_colony/underground/storage) +"mil" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/lobby) +"miH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/lobby) +"mjF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition) -"mTp" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/underground/command/center) -"mTP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/hallway) -"mUt" = ( -/obj/structure/curtain/medical, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Underground Medical Laboratory Treatment" + }, /turf/open/floor/white, /area/ice_colony/underground/medical/treatment) -"mUz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mjO" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "12" + }, +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"mjP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Zoo Dome" + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"mki" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/garage/one) +"mky" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "engineering_ladder"; + pixel_y = 16 }, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"mkE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 - }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, /area/ice_colony/underground/engineering) -"mUI" = ( -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/dorms) -"mUT" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/apc, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/tech_storage) -"mVQ" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/lavatory) -"mWi" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"mWB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering/generator) -"mWF" = ( -/obj/structure/machinery/power/apc/no_power/north, +"mkM" = ( /turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/storage) -"mXo" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator1/underground) -"mXx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/medical/lobby) -"mXC" = ( +/area/ice_colony/underground/hallway/south_east) +"mkU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"mlS" = ( +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/interrogation) +"mmf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"mmK" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 + }, +/turf/open/floor/whiteredcorner/east, +/area/ice_colony/underground/medical/treatment) +"mmO" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"mna" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"mnq" = ( +/obj/structure/machinery/shower{ + dir = 1 }, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"mnv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research/temporary) -"mXS" = ( +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"mnx" = ( /obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/research/field_gear) +"mnM" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, /turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"mYE" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" +/area/ice_colony/underground/crew/canteen) +"mnV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms/canteen) +"mnZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, /turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"moh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/armory) +"mon" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"moC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/beta) -"mYT" = ( +"moO" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/timer, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"mqj" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"mqG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/circuitboard/machine/smes, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"mqI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"mrg" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"mrv" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"mrz" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) -"mYX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"mZh" = ( +"msz" = ( +/obj/item/shard, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"msK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 8; icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"mZy" = ( +/area/ice_colony/underground/command/checkpoint) +"mtZ" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"muI" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Offices" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"mvm" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"mvn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"mvH" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/treatment) +"mvL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering Electric Storage"; - req_access_txt = "100" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"mvN" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"mws" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/treatment) +"mwS" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/south) +"mxp" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/underground/hangar) +"mxr" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"myq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"myv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/electric) -"naJ" = ( -/obj/structure/surface/table{ - flipped = 1; - icon_state = "tableflip0" +/area/ice_colony/surface/hangar/checkpoint) +"mzX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Chapel" }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"nbj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrowncorners2/north, -/area/ice_colony/surface/garage/one) -"nbx" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"mzZ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"mAI" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "hangar_ice_1"; - name = "hangar shutter control"; - pixel_y = -30 - }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/hangar/alpha) -"nbH" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"mAL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Men's Restroom" + }, /turf/open/floor/white, -/area/ice_colony/underground/medical/lobby) -"ncc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/backroom) -"ncQ" = ( -/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/reception/toilet_men) +"mAP" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/electric) -"ncR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"mAY" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"mBj" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"ncX" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Underground Technical Storage" +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"mBu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"ndj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/area/ice_colony/underground/hallway/south_east) +"mBv" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"mBw" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/command/center) +"mBT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition) -"ndk" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/security) -"ndo" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/area/ice_colony/underground/storage) +"mBU" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 + dir = 8 }, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/beta) +"mBZ" = ( +/obj/structure/closet/wardrobe/green, /turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/south) -"nea" = ( -/obj/item/trash/candy, -/turf/open/floor/plating/warnplate, -/area/ice_colony/surface/disposals) -"nem" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"nen" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"neu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"nfb" = ( +"mCh" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/interrogation) +"mCy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"mCK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"nfx" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/substation) -"nfE" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/dorms/lavatory) -"nga" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"nhQ" = ( -/obj/structure/dispenser, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/substation) -"nij" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition) -"njc" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"mCR" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/command/checkpoint) +"mDr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"mDB" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"mEb" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/reception/checkpoint_south) -"nje" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/center) -"njE" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/chapel/north, -/area/ice_colony/underground/crew/chapel) -"njJ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/garage/repair) -"njR" = ( +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"mEk" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"nkC" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security" }, -/obj/effect/decal/warning_stripes{ - pixel_y = 32 +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/hallway) +"mEp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering) -"nkH" = ( -/turf/open/floor/darkpurple2/southeast, -/area/ice_colony/underground/research) -"nkQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/research) +"mEB" = ( +/obj/item/shard, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/command/checkpoint) +"mFC" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering/locker) +"mFR" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"nls" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"nlW" = ( +/area/ice_colony/underground/research) +"mGM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"nml" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/obj/effect/landmark/good_item, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/temporary) -"noo" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/substation/smes) -"now" = ( -/turf/open/floor/white, -/area/ice_colony/surface/clinic/storage) -"noK" = ( -/obj/structure/closet/radiation, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/research/field_gear) -"noY" = ( -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/security/brig) -"npn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/surface/disposals) +"mHj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/white, /area/ice_colony/surface/clinic/treatment) -"npo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/hangar/checkpoint) -"npr" = ( +"mHp" = ( /obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/tcomms) -"nqd" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"nqg" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/treatment) -"nqk" = ( -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/hangar/alpha) -"nqw" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"mHu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"nqF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control/office) -"nrx" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"nse" = ( -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"nsB" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/surface/command/checkpoint) -"nsF" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = -26 +/area/ice_colony/underground/medical/lobby) +"mHV" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/darkred2, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/armory) -"ntw" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/brig) -"nud" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/disposals) -"nuu" = ( -/obj/structure/disposalpipe/segment{ +"mIq" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"mIO" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"mJh" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"mJl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"mJm" = ( +/obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/largecrate/random, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/surface/excavation) +"mJw" = ( +/obj/structure/machinery/power/reactor/colony, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/platebot, +/area/ice_colony/surface/engineering/generator) +"mKx" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"mLf" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"nuE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/surface/engineering/electric) +"mLr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Armory" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Women's Restroom" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"mLu" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"nvu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation/smes) +"mLJ" = ( +/obj/structure/mineral_door/resin, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research) +"mMN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"nvI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/research/temporary) -"nwa" = ( -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/hallway) -"nwF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"nxl" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security) -"nxs" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator2/underground) -"nxK" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/ice_colony/surface/engineering) +"mMW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/whiteredfull, +/area/ice_colony/surface/clinic/lobby) +"mOy" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/obj/item/storage/belt/utility/full, /turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition/lobby) -"nyo" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation/smes) -"nyt" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/two) -"nyM" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/underground/crew/lavatory) -"nyN" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator3/ground) -"nzi" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitered/northwest, -/area/ice_colony/surface/clinic/storage) -"nzI" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarwest"; - name = "Underground Hangar Lock"; - pixel_y = -24 +/area/ice_colony/surface/excavation) +"mOz" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Hydroponics North Wing Dome" }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/hangar) -"nzT" = ( -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/underground/engineering) -"nzZ" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"mOG" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/library) -"nAA" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/telecomms) -"nAH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/tool) -"nAS" = ( +"mOL" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway/south_east) +"mON" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "hangar_ladder" +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/generator) +"mOQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"mPc" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/warnplate/southwest, -/area/ice_colony/underground/maintenance/east) -"nBv" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms/canteen) -"nCe" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - icon_state = "wall" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/crew/disposals) +"mPA" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/security/brig) +"mRa" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"mRD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"mRG" = ( +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"mRM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"nCg" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/area/ice_colony/surface/command/checkpoint) +"mRZ" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/valley/southwest) +"mSy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/hallway) +"mSG" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/substation/smes) +"mTl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/reception/checkpoint_north) -"nCp" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"mTq" = ( +/obj/structure/closet/coffin, +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"mTS" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/obj/item/inflatable, -/obj/item/inflatable/door, -/obj/item/storage/box/engineer, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"nDw" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"mTZ" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/armory) +"mUj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"mUz" = ( +/obj/structure/machinery/door_control{ + id = "req_sec_storage"; + name = "Requesition Secure Storage"; + normaldoorcontrol = 1; + pixel_y = -24; + req_access_txt = "100"; + specialfunctions = 4 + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"mUK" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/treatment) +"mUQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Underground Medical Laboratory Storage" + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"mUT" = ( +/obj/structure/largecrate/random, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"mVp" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/hallway/south_east) +"mVP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"mWd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"nEr" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/hallway/south_east) -"nEv" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ +/area/ice_colony/underground/hallway/north_west) +"mWf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"mXi" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering/locker) +"mXl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/hallway) -"nED" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms/lavatory) -"nEG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/north_west) +"mXy" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"mYw" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"nFu" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"nFz" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"mYV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate, -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition) -"nFD" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"mZo" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"mZE" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering) +"nal" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"nbo" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms) +"nbs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"nbE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/plating/warnplate/northwest, -/area/ice_colony/exterior/surface/landing_pad) -"nFV" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator4/ground) -"nGG" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"nGM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"nHy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/ice_colony/surface/research) +"nbR" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/dark2, -/area/ice_colony/underground/security/brig) -"nHL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/treatment) -"nHQ" = ( +/area/ice_colony/underground/reception) +"ncb" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"ncv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"ncx" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"ncU" = ( /obj/structure/surface/table, -/obj/item/storage/surgical_tray, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/or) -"nHW" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/research/tech_storage) -"nIg" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/excavation) -"nIS" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/command/center) +"ncV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/disposals) +"nds" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/engineering) +"nfL" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "janitor_ladder" + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"nfO" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator3/ground) +"nfZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Recovery Room" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"nJk" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"ngv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"nhH" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/container_yard) +"niG" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"nJo" = ( -/obj/structure/surface/rack, -/obj/item/device/multitool, -/obj/item/storage/belt/utility/full, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"nJx" = ( -/obj/structure/machinery/light{ +/area/ice_colony/surface/hydroponics/south) +"niJ" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"nJQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"niR" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"nJW" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/dorms/lavatory) -"nKl" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"nLi" = ( +/area/ice_colony/underground/engineering) +"niT" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/temporary) +"njb" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/west, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) -"nLs" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/landing_pad) -"nLv" = ( -/obj/structure/machinery/light{ +"njl" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"nju" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkblue2/east, -/area/ice_colony/surface/command/control/office) -"nLC" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/garage/repair) -"nLQ" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"njU" = ( +/obj/structure/machinery/space_heater, /obj/structure/machinery/light, -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research/storage) -"nMh" = ( -/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"nMn" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/one) -"nMu" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering/electric) -"nNa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/surface/research) -"nNn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Brig" +/area/ice_colony/surface/dorms/restroom_w) +"nku" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/dark2, -/area/ice_colony/underground/security/brig) -"nNG" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator3/ground) -"nNI" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"nNR" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ +/area/ice_colony/surface/command/control/office) +"nkR" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/medical/lobby) -"nOk" = ( -/obj/structure/closet/crate, -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition) -"nOs" = ( -/obj/structure/machinery/shower{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"nOA" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle4"; - dockId = "Lower_Arrivals"; - pixel_y = 32 +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"nkW" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"nOQ" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad2) +"nlj" = ( +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/treatment) +"nlO" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/electric) -"nOW" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"nPN" = ( +/obj/item/device/camera, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"nma" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"nmZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurplecorners2/west, -/area/ice_colony/underground/hallway/north_west) -"nPY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"nne" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"nnf" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"nnE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"nnW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"noa" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/research) +"noi" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"noX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/treatment) +"npD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sink{ dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" + pixel_y = -10 }, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/dorms) -"nQA" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/mirror{ + pixel_y = -28 + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"nqd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"nqD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) -"nQB" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/north) -"nQI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/lobby) -"nRQ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/garage/repair) -"nRT" = ( -/obj/structure/machinery/light{ - dir = 8 +"nqG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Underground Technical Storage" }, -/obj/structure/bed/chair{ +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"nqL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Storage" + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"nrJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"nsb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"nsr" = ( +/obj/structure/machinery/light, /turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/beta) -"nSt" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"nsD" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/hallway/north_west) +"ntG" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"ntI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/research) +"nuu" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"nvg" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"nvk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + name = "Anomaly Gear" + }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"nvZ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/surface/hangar/checkpoint) +"nwQ" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"nSQ" = ( -/turf/open/floor/whiteredcorner/west, -/area/ice_colony/surface/clinic/treatment) -"nSY" = ( +/area/ice_colony/underground/security/interrogation) +"nxs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/hallway) +"nyq" = ( /obj/structure/window/reinforced/tinted{ - dir = 4 + dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +/obj/structure/machinery/computer/station_alert, /turf/open/floor/dark2, /area/ice_colony/underground/command/center) -"nTe" = ( +"nys" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"nyx" = ( /obj/structure/shuttle/diagonal{ icon_state = "burst_l" }, @@ -18710,304 +18596,458 @@ icon_state = "platform" }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"nTj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/ice_colony/surface/hangar/alpha) +"nzc" = ( +/obj/structure/machinery/door_control{ + id = "st_19"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_y = -24; + req_access_txt = "103"; + specialfunctions = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security) -"nTw" = ( -/obj/structure/bed/chair{ +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"nzo" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/surface/tcomms) +"nzX" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"nAt" = ( +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/underground/research/sample) +"nAW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"nBg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition/lobby) -"nUz" = ( -/obj/structure/machinery/door/window/northright{ - name = "Canteen" - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"nUD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"nBi" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/darkgreen2/north, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"nBt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"nBy" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/valley/southwest) +"nBN" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator4/ground) +"nCa" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/field_gear) +"nCk" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation) +"nDs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"nUR" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/darkpurple2/southwest, -/area/ice_colony/underground/research/storage) -"nUV" = ( +"nDw" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"nDH" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/backroom) +"nEc" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"nEk" = ( /obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/research/field_gear) +"nEw" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/excavation) +"nEX" = ( +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering) +"nFi" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"nUZ" = ( +/area/ice_colony/underground/storage) +"nFl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/garage/two) +"nFn" = ( +/obj/structure/curtain/open/black, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"nVg" = ( +/area/ice_colony/underground/crew/morgue) +"nFL" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/tech_storage) +"nGL" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"nGW" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/storage) +"nGX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"nHh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Underground Disposals" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"nHK" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, /turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition/sec_storage) -"nVC" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/ice_colony/surface/garage/one) +"nIh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"nWl" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control/office) -"nXc" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/surface/hangar/beta) +"nJf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"nJm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"nXe" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/dorms/lavatory) -"nYO" = ( -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"nZi" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"nZm" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +"nJz" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"nKY" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/underground/hangar) -"nZQ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/underground/command/center) -"oag" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"nLj" = ( +/obj/structure/surface/table, +/obj/item/stack/nanopaste, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/or) +"nLo" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"nLC" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/medical/lobby) +"nLK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"oai" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"nMC" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"nMH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"nNQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"nOq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"oaj" = ( -/obj/structure/bed/chair{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"nPd" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"nPi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/north_west) +"nPX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security Interrogation" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"nQo" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"obP" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"nQu" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/lobby) -"obR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering Tool Storage" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering/tool) -"obV" = ( -/turf/open/floor/chapel/east, -/area/ice_colony/underground/crew/chapel) -"oco" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"ocp" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/crew/disposals) -"ocN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/research) -"ocU" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"nQN" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"nQP" = ( /obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/interrogation) -"oeE" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/storage) -"oeI" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/disposals) -"ofa" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"ofw" = ( -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"ofL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research) +"nRl" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"nRx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/dorms) -"oge" = ( +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"nSd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"ogq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Underground Security Lobby" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"nSk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/dark2, -/area/ice_colony/underground/security) -"ogt" = ( +/area/ice_colony/surface/dorms) +"nSl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/garage/repair) +"nSn" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"nSt" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"nSv" = ( +/obj/item/tool/soap, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"nUc" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"ogv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/command/center) +"nUn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/research/sample) -"ogK" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/whitered/northeast, -/area/ice_colony/underground/medical/hallway) -"oin" = ( -/obj/effect/landmark/crap_item, +/area/ice_colony/underground/hallway/south_east) +"nUp" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator1/ground) +"nVa" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"nVc" = ( +/obj/structure/surface/table/reinforced, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating/warnplate/north, -/area/ice_colony/underground/crew/disposals) -"oiR" = ( -/obj/structure/machinery/door_control{ - id = "req_sec_storage"; - name = "Requesition Secure Storage"; - normaldoorcontrol = 1; - pixel_y = -24; - req_access_txt = "100"; - specialfunctions = 4 +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition) -"oiZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"nVf" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/command/center) +"nVN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/command/control/office) +"nVR" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"ojC" = ( -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/crew/bball) -"ojI" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/command/checkpoint) +"nWm" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"okz" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/area/ice_colony/underground/crew/canteen) +"nWz" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"oln" = ( -/obj/structure/surface/table, -/obj/item/storage/bag/plants, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/surface/hydroponics/south) -"olS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"omi" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/sample) +"nWA" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"nWN" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"omk" = ( -/obj/structure/window/reinforced{ - dir = 1 +/area/ice_colony/underground/security/brig) +"nXo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Colony Xenoarcheology Outpost" }, -/turf/open/floor/darkbrown2/north, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) -"omt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"nXX" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"nYc" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/bridgeofficer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"nYU" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator4/underground) +"nZe" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/crew/lavatory) +"nZo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, /turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"nZp" = ( +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/hallway/south_east) -"omx" = ( -/obj/structure/surface/table, -/obj/item/storage/bag/plants, -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/north) -"omE" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"omO" = ( -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/surface/garage/two) -"onk" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"nZF" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) +"nZJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Checkpoint" }, -/obj/structure/machinery/computer/station_alert, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"ono" = ( +/area/ice_colony/underground/reception/checkpoint_north) +"nZZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"oas" = ( /obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research) -"ony" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator2/ground) -"onD" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"oax" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"oaZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/engineering) +"obw" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/backroom) +"obD" = ( +/obj/structure/surface/rack, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"oce" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"ock" = ( /obj/structure/surface/table, /obj/item/inflatable, /obj/item/inflatable, @@ -19016,46 +19056,139 @@ /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, /turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering/tool) -"onM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/storage) +"ocy" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"odh" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/garage/repair) +"odE" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"odW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"ooj" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/treatment) -"oot" = ( -/obj/effect/landmark/crap_item, -/obj/item/stack/sheet/metal, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"oow" = ( +/area/ice_colony/surface/research) +"oeh" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 +/obj/item/tool/wrench, +/obj/item/paper/research_notes, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"oek" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/storage) -"ooF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/tool/stamp, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/lobby) +"oeo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"oeA" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/security/brig) +"oeC" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/locker) +"oeU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/bball) +"ofg" = ( +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/engineering) +"ofi" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"ofn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"ofM" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering) +"ofN" = ( +/obj/structure/dispenser, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation) +"ohk" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/brig) +"ohO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/lobby) +"oiz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "hangar_ladder1"; + pixel_y = 16 + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"oju" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"ooN" = ( +/area/ice_colony/surface/research) +"okf" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"okx" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"okI" = ( /obj/structure/machinery/light{ dir = 1 }, @@ -19064,746 +19197,784 @@ }, /turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) -"ooP" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator1/ground) -"ops" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/hangar/checkpoint) -"opB" = ( -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"opG" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"opK" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/storage) -"opW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"old" = ( +/obj/structure/shuttle/diagonal{ + dir = 6; + icon_state = "wall" }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/disposals) -"opY" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"olC" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"olJ" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/tool) -"oqt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/northeast, +/area/ice_colony/underground/crew/disposals) +"omz" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"oqI" = ( -/obj/structure/disposalpipe/segment{ +/area/ice_colony/underground/hallway/south_east) +"omH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "pipe-c" + health = 80 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/garage/one) -"oqN" = ( +/obj/item/tool/stamp, +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/lobby) +"ono" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/research) +"onq" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms/lavatory) +"onC" = ( +/turf/open/floor/bcircuit, +/area/ice_colony/underground/engineering/substation) +"oog" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood{ amount = 10 }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering/tool) -"oqO" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"ooo" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/checkpoint) +"oox" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"ooF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"orc" = ( -/obj/structure/closet/crate/hydroponics, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/south) -"ori" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"opc" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation/smes) -"orL" = ( -/obj/structure/machinery/light{ - dir = 8 +"ope" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/interrogation) -"osw" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/storage) -"osA" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"osF" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/north) -"otr" = ( -/obj/structure/surface/table/woodentable, +/obj/item/cell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/lobby) -"oty" = ( +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"opn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"oqp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/surface/dorms) -"otP" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/south) -"oue" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"oqx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"ouN" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/crew/canteen) -"ovV" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"oqR" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"owo" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/darkbrown2/northeast, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"orx" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) -"owt" = ( +"orO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"osh" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/hallway) +"osF" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/north) +"otj" = ( /obj/structure/largecrate/random, -/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/landmark/good_item, /turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) -"owC" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/underground/hangar) -"owJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ouT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"ovv" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/work) +"ovG" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/command/checkpoint) +"ovY" = ( +/obj/docking_port/stationary/trijent_elevator{ + airlock_area = /area/shuttle/elevator3/ground; + airlock_exit = "elevator"; + elevator_network = "Omicorn"; + height = 5; + width = 8; + name = "Upper Omicorn"; + id = "Upper_Omicorn"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/omicorn }, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator3/ground) +"owA" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"oxe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/ice_colony/underground/crew/disposals) +"owG" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"owU" = ( +/obj/structure/curtain/medical, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"oxo" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition/lobby) -"oxK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control) +"oxF" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_south) +"oxH" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/corpsespawner/scientist, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"oxO" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/garage/repair) +"oyH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/research) +"oyI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Aerodrome Hangar Beta" +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"ozd" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/lobby) +"oAw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"oya" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"oyN" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) -"oyW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/surface/engineering/electric) +"oAF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"oAZ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"oBt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/junction, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"ozd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/circuitboard/computer/atmos_alert, -/turf/open/floor/darkblue2/west, -/area/ice_colony/underground/storage/highsec) -"ozx" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/underground/hallway/north_west) +"oBX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"oCt" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/disposals) -"oAe" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control/office) +"oCC" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"oDz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"oAm" = ( -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/hydroponics/lobby) -"oBs" = ( +/area/ice_colony/underground/crew/morgue) +"oDA" = ( +/turf/open/floor/icefloor/ramptop, +/area/ice_colony/exterior/underground/caves/dig) +"oDE" = ( +/obj/structure/closet/wardrobe/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"oDG" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/lobby) +"oFm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Disposals" }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"oCQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research/work) -"oDJ" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/field_gear) -"oEo" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/storage) -"oEY" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/hallway/north_west) +/area/ice_colony/surface/disposals) "oFA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"oFT" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering/tool) -"oGi" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/garage/two) -"oGE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"oGH" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 5; - pixel_y = -8 +/obj/structure/mirror{ + pixel_y = -28 }, -/obj/effect/landmark/survivor_spawner, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"oGJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"oFC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"oGM" = ( -/turf/open/floor/darkblue2/west, -/area/ice_colony/underground/command/center) -"oHb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/high/empty, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/substation/smes) -"oHg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/hallway/south_east) +"oFY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"oHk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/ice_colony/underground/hallway/south_east) +"oFZ" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad2) +"oGd" = ( +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/command/checkpoint) +"oGu" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"oHa" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition) +/obj/effect/landmark/survivor_spawner, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "oHs" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/hangar/alpha) +"oHv" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) "oHE" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/tcomms) -"oHT" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/whitered/southeast, -/area/ice_colony/surface/clinic/lobby) -"oHU" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator1/underground) -"oIh" = ( +"oHR" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/underground/hangar) +"oIs" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/security/brig) +"oID" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"oIm" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering/electric) -"oIW" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"oJi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/brig) -"oJN" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/hangar) -"oKm" = ( -/obj/structure/machinery/power/apc/no_power/south, -/obj/structure/surface/rack, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/storage) -"oKH" = ( -/obj/structure/machinery/light, -/obj/structure/noticeboard{ - pixel_y = -32 +/turf/open/floor/darkpurple2/west, +/area/ice_colony/surface/research) +"oIY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/north_west) -"oLs" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"oMs" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/center) -"oMy" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/armory) -"oMz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/lobby) +"oKC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "hangar_ladder"; + pixel_y = 16 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"oMG" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"oMP" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/treatment) -"oMQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering) -"oMX" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/command/checkpoint) -"oNb" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/obj/structure/machinery/light, -/turf/open/floor/darkpurple2, -/area/ice_colony/surface/excavation) -"oNk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/door_control{ - id = "researchoutside"; - name = "Research Garage Lock"; - pixel_x = 24 +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"oKE" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor/darkbrown2/southeast, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"oKW" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/dark2, /area/ice_colony/surface/research) -"oNl" = ( +"oLC" = ( /obj/structure/shuttle/diagonal{ - dir = 10; + dir = 6; icon_state = "wall" }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"oNv" = ( -/obj/structure/machinery/power/apc/no_power/west, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/ice_colony/surface/hangar/alpha) +"oLR" = ( +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/research/field_gear) -"oNZ" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"oMs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Garage" }, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security/backroom) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"oMR" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"oMS" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/security/brig) +"oNm" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/disposals) "oOd" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/clearing/pass) -"oOA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"oOn" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/or) +"oOw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"oOB" = ( +/turf/open/floor/darkredcorners2/west, +/area/ice_colony/underground/security/hallway) +"oOI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/dark2, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"oPb" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering/generator) +"oPk" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"oPH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"oPW" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/exterior/surface/clearing/north) +"oQN" = ( +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/research/tech_storage) -"oOG" = ( -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/reception/checkpoint_south) -"oQj" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"oQx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, +"oQP" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/medical/lobby) -"oRf" = ( -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/treatment) -"oRx" = ( -/obj/structure/sink{ - pixel_y = 15 +"oQT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/or) -"oRU" = ( -/obj/structure/kitchenspike, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"oSR" = ( -/obj/item/book/manual/marine_law, -/obj/structure/surface/table/reinforced, -/obj/item/restraint/handcuffs, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"oTb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"oRa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"oRe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"oRD" = ( /obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"oRG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"oTd" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/ice_colony/surface/research/tech_storage) +"oRK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/darkredcorners2/east, -/area/ice_colony/underground/hallway/south_east) -"oTe" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 10 +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"oRP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Men's Restroom" }, -/obj/item/cell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering) -"oTh" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"oRY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/lobby) -"oTM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"oSb" = ( +/obj/structure/surface/table, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"oUA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Underground Engineering Locker Room" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering/locker) -"oUH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research/field_gear) -"oUT" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security) -"oVb" = ( -/obj/structure/reagent_dispensers/fueltank, +/area/ice_colony/surface/excavation) +"oTd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"oTg" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/alpha) -"oVx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/research/temporary) +"oTW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/hangar/checkpoint) -"oVC" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"oVi" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"oVH" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/lavatory) -"oVI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_1"; - name = "\improper Hangar Shutters" +/area/ice_colony/underground/medical/lobby) +"oVM" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/container_yard) +"oVN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"oWm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"oWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/hangar/alpha) -"oVY" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms) +"oWN" = ( /obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/surface/command/control/office) -"oWA" = ( -/obj/structure/machinery/door/poddoor/two_tile/secure{ - id = "colony_sec_armory"; - name = "Secure Armory" +/turf/open/floor/darkred2/southwest, +/area/ice_colony/surface/hangar/checkpoint) +"oXq" = ( +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/security/brig) +"oXH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"oYm" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator3/underground) +"oYx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"oXh" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"oXm" = ( +/area/ice_colony/underground/requesition) +"oYP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"oXp" = ( +/area/ice_colony/surface/hangar/alpha) +"oZi" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"oYg" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/surface/requesitions) -"oYs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/ice_colony/underground/security/backroom) +"oZw" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/treatment) +"paz" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"oYO" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/hangar) -"oYW" = ( -/obj/structure/surface/table, /obj/structure/machinery/light{ dir = 1 }, -/obj/item/reagent_container/food/snacks/hotchili, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms/canteen) -"oZp" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"oZC" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/surface/command/checkpoint) -"oZF" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/exterior/surface/landing_pad) +/area/ice_colony/underground/hallway/south_east) "paK" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/hangar/beta) -"paP" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"paQ" = ( +"pbM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Security Checkpoint" + }, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/hangar/checkpoint) +"pca" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/research/tech_storage) -"pbm" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/security/brig) +"pdc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"pbu" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/storage) -"pbX" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"pcM" = ( -/obj/effect/landmark/hunter_primary, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"pdb" = ( +/area/ice_colony/underground/requesition/lobby) +"pdC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"pdE" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) -"pdw" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"pdx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Underground Lavatory" - }, +"pdN" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/disposals) +"pdV" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/lavatory) -"pdR" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/ice_colony/surface/engineering) +"pec" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/north_west) +"per" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition/lobby) -"pdT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"peI" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/armory) +"peL" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/dark2, +/area/ice_colony/surface/engineering/generator) +"peS" = ( +/obj/structure/machinery/flasher{ + id = "sec_checkpoint"; + name = "Checkpoint Flash"; + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security/hallway) +"pgz" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"pgN" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/dorms) -"peO" = ( -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/hallway/south_east) -"pfc" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation) -"pfd" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"pft" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/lavatory) -"pfN" = ( +"phz" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/storage) +"phU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/lobby) -"pha" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"pij" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"piG" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"phl" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"pjg" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research) -"phn" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/treatment) -"phv" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition) -"phL" = ( -/turf/open/floor/whitered/northwest, -/area/ice_colony/underground/medical/or) -"pit" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"piB" = ( -/obj/structure/bed/chair, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"pjv" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition) +/area/ice_colony/surface/command/control/office) +"pjC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/tool) +"pjH" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/ice_colony/surface/storage_unit/telecomms) "pjQ" = ( /obj/structure/surface/table/gamblingtable, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -19811,651 +19982,486 @@ }, /turf/open/floor/carpet, /area/ice_colony/underground/crew/leisure) -"pkb" = ( -/obj/item/lightstick/planted, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle"; - dockId = "Upper_Requisitions"; - pixel_y = 32 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"pki" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/armory) -"pkm" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Underground Security Checkpoint" - }, +"pke" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/reception/checkpoint_north) -"pkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/area/ice_colony/underground/security) +"pli" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/research/temporary) -"pls" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/exterior/surface/landing_pad2) -"pmy" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/whitered/northeast, -/area/ice_colony/surface/clinic/storage) -"pnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation/smes) +"plB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"pnT" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/checkpoint) -"poi" = ( -/obj/structure/bed/chair/wood/normal{ +/area/ice_colony/surface/hangar/alpha) +"pmh" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/field_gear) +"pop" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"pom" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering/locker) -"por" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/chapel, -/area/ice_colony/underground/crew/chapel) -"poA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "req_sec_storage"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/sec_storage) -"ppn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"pqC" = ( -/obj/structure/closet/radiation, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"poz" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/excavation) -"pqO" = ( -/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"pqY" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition) +"poD" = ( +/obj/structure/shuttle/diagonal{ + dir = 10; + icon_state = "wall" }, -/turf/open/floor/darkred2, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"ppQ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/reception/checkpoint_north) -"prh" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +"pqn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/hallway/south_east) -"pry" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"pse" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"psB" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/underground/requesition/lobby) -"psH" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"pth" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/hand_labeler, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/excavation) -"ptT" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/whitered/northeast, -/area/ice_colony/underground/medical/treatment) -"puu" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/hangar/beta) -"puL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/hallway/north_west) -"puQ" = ( -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/hangar/beta) -"puX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/hangar/beta) -"pvf" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering/electric) -"pvk" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/hotchili, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"pvA" = ( +/area/ice_colony/surface/engineering) +"pqT" = ( /obj/structure/closet/radiation, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/research/field_gear) -"pwA" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering/locker) +"prp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/medical/bruise_pack, +/obj/item/cell, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"prq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"prt" = ( +/obj/structure/disposalpipe/segment, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"pru" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"pxt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/ice_colony/underground/security/armory) +"psK" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Underground Command Center" }, -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"pxv" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/whitered/northeast, -/area/ice_colony/surface/clinic/treatment) -"pyj" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"pyn" = ( -/turf/closed/wall, -/area/ice_colony/underground/hangar) -"pyv" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/underground/command/center) +"ptn" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "ship_ladder"; + pixel_y = 16 + }, +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"ptp" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"pyZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/center) -"pzy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"pzA" = ( +/area/ice_colony/underground/command/checkpoint) +"puw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"puJ" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms/canteen) +"pvA" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"pvS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Hydroponics North Wing Technical Storage"; + req_access_txt = "100" + }, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"pzS" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/research/field_gear) -"pAN" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"pAP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/structure/window/reinforced{ +/area/ice_colony/surface/hydroponics/north) +"pxc" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/pipes/vents/pump{ dir = 1 }, +/obj/effect/landmark/corpsespawner/miner, /turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"pAY" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/crew/lavatory) -"pBb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/lobby) -"pBo" = ( +/area/ice_colony/surface/bar/bar) +"pxk" = ( /obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"pxK" = ( +/obj/structure/plasticflaps, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"pyi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"pBp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/area/ice_colony/surface/hydroponics/south) +"pym" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/obj/effect/landmark/good_item, /obj/structure/machinery/light{ dir = 1 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/storage) -"pBw" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/requesition) -"pCc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"pCn" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/exterior/surface/landing_pad) -"pCQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/area/ice_colony/surface/research/temporary) +"pyn" = ( +/turf/closed/wall, +/area/ice_colony/underground/hangar) +"pyE" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/command/checkpoint) +"pzm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/research) -"pDx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel/north, -/area/ice_colony/underground/crew/chapel) -"pDU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_1"; + name = "\improper Hangar Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/alpha) +"pzD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/hunter_secondary, /turf/open/floor/dark2, -/area/ice_colony/underground/research) -"pEU" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = 26 - }, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/armory) -"pFG" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/substation/smes) -"pFO" = ( -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/engineering) -"pFS" = ( +/area/ice_colony/surface/excavation) +"pBg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/lobby) +"pBu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"pBG" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"pGr" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"pGy" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator4/ground) -"pGz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteredcorner/east, +/area/ice_colony/surface/clinic/lobby) +"pBO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"pGE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/research) +"pCr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security) +"pCt" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/brig) +"pCS" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"pGF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"pGL" = ( -/obj/structure/window/reinforced{ +/area/ice_colony/underground/reception) +"pCZ" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/darkpurple2/northeast, -/area/ice_colony/surface/excavation) -"pGY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/south_east) -"pHo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"pHQ" = ( -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/research) -"pIc" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/research/field_gear) -"pJm" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"pDs" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"pJu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/ice_colony/underground/hallway/north_west) +"pDZ" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"pJw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/substation/smes) -"pJA" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/item/storage/box/lights, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"pJP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 + dir = 1; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/hallway) -"pJR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"pKy" = ( -/obj/effect/landmark/hunter_primary, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"pKH" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" - }, +/area/ice_colony/surface/command/control) +"pEu" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"pEG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/security/brig) -"pKJ" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"pEH" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/exterior/surface/landing_pad) -"pKN" = ( -/obj/structure/surface/table, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/north_west) -"pKW" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"pFe" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/security/brig) +"pFg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"pLn" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"pLu" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator4/ground) -"pLL" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"pLQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"pMb" = ( -/obj/structure/bed/chair{ - dir = 4 + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"pMj" = ( -/turf/open/floor/plating/warnplatecorner/north, -/area/ice_colony/underground/maintenance/east) -"pMu" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - id = "st_17"; - name = "Power Storage Unit" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"pMO" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/surface/research) +"pFy" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"pMP" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/darkblue2/west, /area/ice_colony/surface/command/control) -"pNg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 +"pFO" = ( +/obj/structure/machinery/door_control{ + id = "garage_ice_2"; + name = "garage shutter control"; + pixel_y = -30 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"pNE" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research/work) -"pOf" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/two) +"pGs" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"pGG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "S" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"pOL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/research) +"pGU" = ( +/obj/structure/surface/table, +/obj/item/storage/bag/plants, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/south) +"pHk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"pHo" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/security/brig) -"pPt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"pHp" = ( +/obj/item/tool/soap, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"pHr" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/hydroponics/lobby) -"pPA" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/warnplate, -/area/ice_colony/surface/disposals) -"pPW" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"pQm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_north) +"pHB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"pHC" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"pQt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Theta-V Research Laboratory" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"pIc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/research/work) -"pQv" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/tcomms) -"pQT" = ( -/obj/structure/disposalpipe/segment{ +/area/ice_colony/underground/command/center) +"pId" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/hallway/south_east) -"pRo" = ( -/obj/item/evidencebag, -/obj/item/trash/pistachios, -/turf/open/floor/plating/warnplate, -/area/ice_colony/surface/disposals) -"pRM" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/north_west) -"pSx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"pIr" = ( +/obj/structure/machinery/door/window/northright{ + name = "Canteen" + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"pIu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Underground Power Substation" + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"pSF" = ( +/area/ice_colony/surface/dorms) +"pIw" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/dorms/lavatory) -"pTd" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"pTI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"pUg" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/research) -"pUJ" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/engineering/electric) -"pUQ" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/area/ice_colony/surface/dorms/lavatory) +"pIx" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"pID" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/reception/checkpoint_south) -"pVP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/surface/excavation) +"pIL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/south) -"pWA" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/turf/open/floor/dark2, +/area/ice_colony/underground/research/work) +"pJe" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/treatment) -"pYJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"pKl" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) -"pZu" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/substation) -"qag" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"pKr" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"pKt" = ( +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation/smes) +"pLy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"pLz" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"pLA" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"pLV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"pMU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/hallway) +"pNd" = ( +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"pNo" = ( +/obj/item/evidencebag, +/obj/item/trash/pistachios, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"pNw" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, /area/ice_colony/surface/excavation) -"qar" = ( +"pNy" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"pOg" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/bomb_supply, @@ -20470,99 +20476,173 @@ }, /turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/tech_storage) -"qbf" = ( +"pOr" = ( +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"pOZ" = ( /obj/structure/surface/table, -/obj/item/device/encryptionkey, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/paper, /turf/open/floor/dark2, -/area/ice_colony/surface/tcomms) -"qci" = ( +/area/ice_colony/underground/reception) +"pPb" = ( /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/center) -"qcp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Storeroom" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"pPy" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"pPI" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/temporary) +"pPL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/tcomms) -"qdj" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"pPZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Men's Restroom" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Dormitories Lavatory" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"qdr" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"pQn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"pQr" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"pSM" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"pTD" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"pTM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/tcomms) +"pUo" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/north_west) +"pUB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"qdu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northright, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/lobby) -"qea" = ( -/obj/structure/curtain/black, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"qen" = ( -/turf/open/floor/darkbrowncorners2/north, -/area/ice_colony/underground/requesition) -"qeA" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/surface/command/control) -"qeX" = ( +/area/ice_colony/underground/hallway/north_west) +"pUN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"pUY" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"pVM" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/box/syringes, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research/work) -"qfj" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/container_yard) -"qfs" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/cell_charger, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"pVY" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/medical/lobby) -"qfE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"pWw" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/structure/surface/table/reinforced, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"pWI" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"qfS" = ( -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/surface/hydroponics/lobby) -"qgq" = ( +/area/ice_colony/surface/research) +"pXj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "N-corner" + icon_state = "W" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"qgx" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator1/ground) -"qgz" = ( -/obj/structure/barricade/metal{ - dir = 4 +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"pXk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"pXH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/container_yard) -"qgM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"pXR" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"pYr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"pYR" = ( /obj/structure/curtain/open/medical, /obj/effect/decal/cleanable/blood{ dir = 4; @@ -20570,593 +20650,750 @@ }, /turf/open/floor/white, /area/ice_colony/surface/clinic/treatment) -"qgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"pZb" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"pZu" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"pZA" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/storage) -"qhD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Garage Repair Station" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"pZP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + id = "brg" + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 7 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"qic" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitered/southwest, -/area/ice_colony/surface/clinic/lobby) -"qiu" = ( +/area/ice_colony/underground/security/hallway) +"qae" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Medical Laboratory" - }, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"qiQ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" +/area/ice_colony/surface/substation/smes) +"qat" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"qbg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"qbn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"qbp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/underground/storage) -"qjA" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator4/ground) -"qjE" = ( /turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"qbE" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/interrogation) +"qcQ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/hallway/south_east) -"qjG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"qjV" = ( -/obj/structure/bed/chair/comfy/orange{ +"qcY" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/hydroponics/lobby) -"qkB" = ( -/obj/structure/closet/radiation, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/bball) +"qdb" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"qdr" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"qdB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"qkM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/surface/hangar/beta) +"qdE" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/delivery, +/area/ice_colony/surface/tcomms) +"qea" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"qek" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"qeB" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research/work) +"qeO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"qeS" = ( +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"qfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/white, /area/ice_colony/underground/medical/treatment) -"qlk" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 +"qge" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = 26 }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"qms" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/armory) +"qgq" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"qhd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center" }, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/backroom) -"qmN" = ( -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, /turf/open/floor/dark2, -/area/ice_colony/underground/research) -"qmX" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/corpsespawner/scientist, +/area/ice_colony/underground/crew/bball) +"qhn" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/storage) +"qhx" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"qhJ" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad2) +"qhU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/storage) +"qij" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 + }, +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"qio" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/whitered/northwest, -/area/ice_colony/surface/clinic/treatment) -"qnj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2, -/area/ice_colony/surface/hangar/checkpoint) -"qny" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"qnD" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"qiu" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/hallway/north_west) +"qiM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"qjn" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"qkw" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"qkS" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) +"qlk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"qnI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out" }, -/obj/structure/machinery/light, -/turf/open/floor/darkpurple2/north, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) -"qnJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Colony Xenoarcheology Outpost" +"qmE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"qok" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkred2/north, -/area/ice_colony/surface/command/checkpoint) -"qoD" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/crew/canteen) -"qoJ" = ( -/obj/structure/dispenser, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/underground/storage/highsec) +/area/ice_colony/underground/command/checkpoint) +"qmI" = ( +/obj/item/device/flashlight, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"qmJ" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad2) +"qny" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"qov" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation) "qpn" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"qpv" = ( -/obj/structure/closet/wardrobe/green, +"qpp" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"qqr" = ( +/obj/structure/surface/table, /turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/south) -"qpE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Aerodrome Hangar" - }, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/hangar/hallway) -"qpH" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/engineering) -"qpV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/underground/hangar) -"qqA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/hallway/south_east) -"qrb" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/hallway/north_west) +"qru" = ( +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"qrv" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/research/tech_storage) +"qrE" = ( +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "qrG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering/generator) +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) "qrH" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"qrJ" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/underground/storage/highsec) -"qtt" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/garage/repair) -"qtE" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/underground/crew/lavatory) -"qtO" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation/smes) +"qsm" = ( /obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, /area/ice_colony/surface/garage/one) -"qtQ" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator3/underground) -"qtU" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator2/ground) -"quz" = ( +"qsZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/item/spacecash/c1000, +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/storage/highsec) +"qtd" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"qtN" = ( +/turf/open/floor/plating/warnplatecorner/north, +/area/ice_colony/underground/maintenance/east) +"qtZ" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"quD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" - }, -/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/excavation) +"quN" = ( +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms) -"quW" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"quV" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_x = 2; + pixel_y = 1 }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"quZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/item/trash/plate{ + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"qvm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/checkpoint) -"qvU" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/underground/hangar) -"qvY" = ( -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/hallway/north_west) -"qwa" = ( /obj/structure/machinery/light, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"qwA" = ( -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/hallway/north_west) -"qwK" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/treatment) -"qwU" = ( -/obj/structure/machinery/light{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"qwf" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/command/checkpoint) +"qwl" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/surface/tcomms) +"qwz" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/storage) -"qxh" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/surface/requesitions) -"qxs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"qwR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"qxI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"qxX" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/whiteredcorner/west, +/area/ice_colony/surface/clinic/lobby) +"qxg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"qxS" = ( +/obj/item/book/manual/marine_law, +/obj/structure/surface/table/reinforced, +/obj/item/restraint/handcuffs, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"qyc" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "engineering_ladder" +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/temporary) +"qzn" = ( +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/south_east) +"qzB" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/engineering/locker) -"qyv" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"qzL" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"qAq" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"qyB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"qyH" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"qAv" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/underground/hangar) -"qyT" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"qzi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/research/temporary) -"qzp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"qBf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"qBF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition) -"qzY" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/delivery, -/area/ice_colony/surface/tcomms) -"qzZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"qCf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research/work) +"qCP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/interrogation) -"qAe" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"qCV" = ( +/obj/structure/surface/table, +/obj/item/device/encryptionkey, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/tcomms) +"qDh" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control/office) -"qAs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/command/checkpoint) +"qDq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"qAH" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/crew/lavatory) -"qAY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"qBp" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/engineering) -"qBw" = ( -/obj/structure/machinery/power/terminal{ +/area/ice_colony/surface/hangar/alpha) +"qEe" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/substation/smes) -"qCX" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"qDc" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/disposaloutlet{ dir = 4 }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/ice_colony/exterior/surface/landing_pad) -"qDX" = ( -/obj/structure/machinery/light, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"qEn" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"qEo" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) "qEB" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"qED" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"qEF" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"qEV" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"qEH" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "canteen_ladder" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"qFq" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"qEZ" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 +/area/ice_colony/surface/substation/smes) +"qFD" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/dorms) +"qFE" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"qFe" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/storage/highsec) +"qFN" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/interrogation) +"qFP" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"qFZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/library) -"qFg" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"qFi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/research) -"qFq" = ( -/obj/structure/machinery/flasher{ - id = "sec_checkpoint"; - name = "Checkpoint Flash"; - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/darkredcorners2/north, -/area/ice_colony/underground/security/hallway) -"qFJ" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, +"qGf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"qGh" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"qGG" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/surface/excavation) -"qGt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/lobby) -"qGA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"qGN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/lobby) -"qHa" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/garage/repair) -"qHk" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/lobby) -"qHR" = ( -/obj/structure/machinery/shower{ +/area/ice_colony/underground/reception) +"qHa" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"qHb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"qHB" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research) -"qIb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"qHE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Visitor Entrance" + }, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"qJy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"qIr" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -8 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"qIF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/command/checkpoint) +"qIG" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation) +"qJk" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"qJl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/hallway) +"qJX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Engineering Locker Room" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"qKv" = ( +/area/ice_colony/surface/engineering) +"qKh" = ( +/obj/structure/machinery/door_control{ + id = "garage_ice_1"; + name = "garage shutter control"; + pixel_y = -30 + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"qKw" = ( +/obj/structure/surface/table, +/obj/item/storage/surgical_tray, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/or) +"qLm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"qLn" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/south) +"qLA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"qKK" = ( -/obj/structure/bed/chair{ +/area/ice_colony/surface/hydroponics/lobby) +"qLE" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/chapel/east, -/area/ice_colony/underground/crew/chapel) -"qKW" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, -/turf/open/floor/darkpurple2/northwest, -/area/ice_colony/underground/research) -"qLu" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/research/temporary) -"qMc" = ( +/area/ice_colony/underground/research/work) +"qLU" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/field_gear) +"qLX" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"qMu" = ( -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research) -"qMx" = ( +/area/ice_colony/surface/research/temporary) +"qMh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"qNh" = ( -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/interrogation) -"qNn" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research) -"qNr" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/disposals) -"qNu" = ( -/obj/structure/barricade/metal{ +/area/ice_colony/surface/command/checkpoint) +"qMI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/field_gear) +"qNe" = ( +/obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad2) -"qND" = ( -/turf/open/floor/bcircuit, -/area/ice_colony/underground/engineering/substation) -"qOw" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/treatment) +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"qNk" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) "qPb" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/tcomms) -"qPv" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/underground/hangar) -"qQa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Colony Garage" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"qQw" = ( -/obj/structure/window/reinforced{ - dir = 1 +/area/ice_colony/surface/hangar/hallway) +"qPj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"qPs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/trunk{ +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control/office) +"qPQ" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle3"; + dockId = "Upper_Dorms"; + pixel_y = 32 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"qPT" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"qQf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/disposaloutlet{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/warnplate/north, -/area/ice_colony/underground/crew/disposals) -"qQB" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitered/southeast, -/area/ice_colony/underground/medical/treatment) -"qQC" = ( -/obj/effect/landmark/survivor_spawner, /turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"qRq" = ( -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/reception/checkpoint_south) +/area/ice_colony/underground/engineering) +"qQm" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"qQY" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"qQZ" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/crew/disposals) "qRy" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/door_control{ @@ -21166,253 +21403,273 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"qRA" = ( -/obj/item/weapon/baton, +"qRz" = ( +/obj/structure/surface/table, /turf/open/floor/dark2, -/area/ice_colony/underground/research) -"qSF" = ( -/obj/structure/window/reinforced, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"qSH" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering) +/area/ice_colony/underground/engineering) "qSL" = ( -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/south) -"qTr" = ( -/obj/item/storage/donut_box, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"qUs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"qUy" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/treatment) -"qUF" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"qTb" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/command/center) +"qTf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/treatment) -"qVe" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/vault2/west, +/area/ice_colony/surface/hangar/checkpoint) +"qTI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/armory) -"qVg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/high, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/substation/smes) -"qVS" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"qVi" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) +"qVs" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"qVQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"qVW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"qWl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Underground Morgue" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/tool) +"qWA" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/beta) +"qWD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"qWS" = ( -/obj/structure/inflatable/door, -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" +/area/ice_colony/underground/hallway/south_east) +"qWI" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"qXj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering/generator) -"qXU" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"qYM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle_control/dropship1, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/landing/console) -"qYP" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/container_yard) -"qYT" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - icon_state = "wall" +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/checkpoint) +"qXb" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" }, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/dorms) +"qXj" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"qZb" = ( -/obj/structure/bed/chair{ +/area/ice_colony/surface/research/tech_storage) +"qYa" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"qYb" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator2/underground) +"qYt" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"qYN" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"qZt" = ( -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/dorms) -"raB" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition/sec_storage) -"raH" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/exterior/surface/container_yard) -"rbA" = ( /obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/temporary) -"rcO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" + pixel_y = 24 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"rdn" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering/generator) -"rdN" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/ice_colony/surface/mining) -"rdQ" = ( /turf/open/floor/darkbrown2/northeast, -/area/ice_colony/underground/requesition) -"reO" = ( -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/underground/requesition/sec_storage) -"reT" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/exterior/surface/container_yard) -"rfJ" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/crew/disposals) -"rgq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" - }, -/obj/structure/machinery/light{ +/area/ice_colony/underground/requesition/lobby) +"qZR" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"qZT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/human/burger, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"qZV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"rab" = ( +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/security/brig) +"raM" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/darkgreen2/west, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"rcd" = ( +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) -"rgB" = ( -/obj/structure/window/reinforced{ - dir = 4 +"rcs" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator3/underground) +"rct" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Colony Garage" }, -/turf/open/floor/darkpurple2/southeast, -/area/ice_colony/surface/excavation) -"rhe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"rcw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research/sample) +"rcy" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"rcO" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"rdf" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"rhz" = ( +/area/ice_colony/surface/hydroponics/lobby) +"rdW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/medical/lobby) +"ref" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/surface/tcomms) +"rel" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/security) +"reP" = ( +/obj/structure/machinery/door/window/northright{ + name = "Disposals Chute" + }, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"rfc" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/control/office) +"rfA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"rfP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"rgo" = ( +/obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"riL" = ( +/area/ice_colony/underground/crew/bball) +"rhc" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/requesitions) +"rhe" = ( +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/hallway) +"rhf" = ( /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation) -"riQ" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"rje" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security) -"rkq" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/command/checkpoint) +"rhR" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/structure/largecrate/random, -/turf/open/floor/darkpurple2/east, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"riB" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/command/control/office) +"riQ" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) -"rkG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rjl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"rjQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Power Substation" }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/hallway) -"rkR" = ( -/obj/structure/pipes/vents/pump/on, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering/locker) -"rll" = ( +/area/ice_colony/surface/substation/smes) +"rkF" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/temporary) +"rkH" = ( +/obj/structure/inflatable/door, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"rkI" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition) +"rkT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"rkZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"rlt" = ( -/obj/structure/sink{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - pixel_y = -10 - }, -/obj/structure/mirror{ - pixel_y = -28 + name = "\improper Underground Medical Laboratory" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"rmp" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"rlr" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, @@ -21421,94 +21678,86 @@ }, /turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/storage) -"rmv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/north) -"rmR" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"rmS" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = null; - name = "Requesitions Desk" +"rlt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/window/northright{ - dir = 2; - name = "Requesitions Desk" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"rlB" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research) +"rlN" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/obj/item/clipboard, -/obj/structure/noticeboard{ - pixel_x = 32 +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"rmM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"rnu" = ( -/obj/structure/flora/pottedplant, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"rnM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"rnT" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"rog" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator4/ground) -"roL" = ( -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/hydroponics/lobby) -"roN" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, +/area/ice_colony/underground/security/armory) +"rmR" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"rmS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"rnb" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/hallway) +"rnh" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) -"rpf" = ( -/turf/open/floor/dark2, +"ror" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"rov" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) -"rps" = ( -/obj/structure/pipes/vents/pump{ +"rox" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"rre" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/hallway/south_east) +"roC" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator4/underground) +"rpf" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"rrf" = ( -/obj/structure/safe, -/obj/item/weapon/sword/katana/replica, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"rrp" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/disposals) -"rrD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_south) +"rqb" = ( /obj{ anchored = 1; desc = "This doors looks like it has been made by aliens..."; @@ -21516,183 +21765,224 @@ icon_state = "door_open"; name = "strange airlock" }, -/turf/open/floor/icefloor/shuttle_vfloor, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) -"rsg" = ( +"rqr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Underground Medical Laboratory Lobby" + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"rqu" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/security/brig) -"rto" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/beakers, -/turf/open/floor/darkpurple2/southwest, -/area/ice_colony/underground/research/work) -"rts" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/temporary) -"rtC" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"rqD" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/south_east) +"rqW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"rtE" = ( -/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"rrq" = ( /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"rux" = ( +/obj/item/storage/toolbox/emergency, /obj/structure/surface/table, -/obj/item/evidencebag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"rrs" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"rrw" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/one) +"rsr" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/hallway) +"rti" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"ruY" = ( -/obj/structure/disposalpipe/segment{ +/area/ice_colony/surface/garage/one) +"rtM" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"rtN" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"rua" = ( +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"run" = ( +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/hallway) +"rux" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"ruC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"rvv" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/excavation) +"rvA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"rvd" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering/electric) -"rvp" = ( +/area/ice_colony/underground/command/checkpoint) +"rvC" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"rvV" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"rwb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/darkgreen2/north, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"rvx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/treatment) -"rvB" = ( +"rwh" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/crew/bball) -"rvD" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/underground/command/center) -"rvV" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/curtain/black, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"rwk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"rwf" = ( -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/interrogation) -"rwD" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/darkyellow2/north, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/hallway/south_east) -"rxm" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/hydroponics/lobby) +"rwI" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator1/underground) "rxQ" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/northwest) -"rxZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Colony Offices" +"rxS" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/garage/two) +"ryD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) +"ryV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"rzv" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/north_west) +"rzQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"rAj" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/hallway/south_east) +"rAX" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/paper/research_notes, /turf/open/floor/darkblue2, -/area/ice_colony/underground/command/checkpoint) -"ryx" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/area/ice_colony/underground/command/center) +"rBj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"ryJ" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" +/area/ice_colony/underground/hallway/south_east) +"rBP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/shuttle/diagonal{ - icon_state = "heater" +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/dark2, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"rBQ" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) -"ryS" = ( -/obj/structure/inflatable/door, -/turf/open/floor/icefloor/ramptop, -/area/ice_colony/exterior/underground/caves/dig) -"ryY" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/darkyellow2/southwest, +"rCa" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/research/tech_storage) -"rzf" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/hydroponics/lobby) -"rAc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/hypospray/tricordrazine, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/underground/storage/highsec) -"rAg" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"rAt" = ( +"rCB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/storage) -"rAE" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/holdout, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"rDj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/darkred2/east, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"rDx" = ( +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/armory) -"rAI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/lobby) -"rAM" = ( -/obj/structure/machinery/light{ - dir = 8 +"rEM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/security/brig) -"rBu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/circuitboard/computer/powermonitor, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/storage/highsec) -"rBZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"rFm" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -21700,465 +21990,438 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"rCt" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"rDn" = ( -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"rFF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/warnplate/southwest, -/area/ice_colony/exterior/surface/landing_pad) -"rEU" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/two) -"rFh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"rGu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"rGC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"rHL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories" }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/dorms) +"rHi" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"rHp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"rHK" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) +/area/ice_colony/underground/security) "rHX" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/storage) -"rHY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"rId" = ( -/obj/structure/closet/secure_closet/req_officer, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"rIX" = ( -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition) -"rJa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/exterior/surface/valley/west) +"rIl" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 32 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" +/obj/effect/decal/warning_stripes{ + pixel_y = 32 }, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control) -"rJc" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"rID" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"rIE" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"rIW" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"rJy" = ( /obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/excavation) -"rJz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/cell_charger, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/substation/smes) -"rJA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/item/tool/surgery/scalpel, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"rJF" = ( -/obj/structure/cryofeed, -/turf/open/floor/icefloor/shuttle_vfloor, -/area/ice_colony/exterior/underground/caves/dig) -"rJH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/ice_colony/underground/crew/morgue) +"rKd" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"rKh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Power Substation SMES" }, /turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) -"rKc" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/substation/smes) "rKn" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, /obj/item/paper/research_notes, /turf/open/floor/wood, /area/ice_colony/underground/command/pv1) -"rKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) "rKu" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"rKK" = ( -/turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"rKN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/checkpoint) -"rMv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/tool/stamp, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/lobby) -"rML" = ( /turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/generator) -"rND" = ( +/area/ice_colony/surface/substation) +"rLz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"rLJ" = ( /obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"rNE" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/lobby) +"rMJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) "rOb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"rOr" = ( -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/tcomms) -"rOM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/hallway/north_west) -"rPd" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/generator) +"rOo" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"rPq" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "research_storage_ladder" - }, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"rQv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage/highsec) -"rQB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/dorms) -"rRh" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"rRK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"rOz" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/hallway/south_east) +"rOH" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle3"; + dockId = "Lower_Dorms"; + pixel_y = 32 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"rPg" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"rRO" = ( +/area/ice_colony/underground/security) +"rQp" = ( /obj/structure/closet/emcloset, -/turf/open/floor/darkgreen2/northeast, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) -"rSs" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"rSz" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"rSD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/hydroponics/lobby) -"rSQ" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/bball) -"rTs" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"rUK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/research/field_gear) -"rUP" = ( +"rQV" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"rRt" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/apc, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"rRu" = ( +/obj/item/storage/toolbox/emergency, /turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) -"rVe" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/command/checkpoint) -"rWi" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition/lobby) -"rWw" = ( +"rSc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"rSy" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/research/temporary) -"rWN" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security/armory) -"rWO" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/whitered/southwest, -/area/ice_colony/underground/medical/treatment) -"rWT" = ( +/obj/item/storage/box/bodybags, /turf/open/floor/dark2, -/area/ice_colony/surface/research/temporary) -"rXF" = ( +/area/ice_colony/underground/crew/morgue) +"rUi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"rUG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"rUN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/dorms) +"rUX" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/hallway/south_east) +"rVk" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"rXW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"rVp" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/dorms) +"rVG" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/reception/checkpoint_north) -"rYz" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle3"; - dockId = "Upper_Dorms"; - pixel_y = 32 +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = null; + name = "Requesitions Desk" }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"rYF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/machinery/door/window/northright{ + dir = 2; + name = "Requesitions Desk" + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/clipboard, +/obj/structure/noticeboard{ + pixel_x = 32 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"rWh" = ( +/obj/structure/kitchenspike, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"rWk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/electric) +"rWy" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/underground/requesition) +"rXy" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/darkblue2/west, /area/ice_colony/underground/command/center) -"rYH" = ( -/obj/structure/machinery/computer/operating, -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"rYR" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"rYU" = ( +"rXD" = ( +/obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"rXX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"rZf" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator4/ground) -"rZt" = ( +/area/ice_colony/underground/research) +"rYq" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/reception/checkpoint_south) +"rZi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"rZD" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/surface/tcomms) -"rZY" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/underground/hangar) -"sal" = ( -/obj/structure/disposalpipe/segment, -/obj/item/tool/shovel/snow, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/south) -"saK" = ( -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/dorms) -"saZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/ice_colony/surface/garage/one) +"rZk" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"sbL" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) -"scB" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"scF" = ( +"rZI" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/work) +"rZQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/storage/box/engineer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/tool) +"rZV" = ( /obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"sdi" = ( -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/treatment) -"sdO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + icon_state = "swall0" }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"sdQ" = ( -/obj/structure/machinery/light{ +/area/ice_colony/surface/hangar/alpha) +"saa" = ( +/obj/structure/dispenser, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"sbM" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"sbZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"sch" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"scR" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/electric) +"sdc" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/reception/checkpoint_south) +"sdr" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"seh" = ( -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/north) -"seF" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"sdJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"sdK" = ( +/obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/darkbrown2, -/area/ice_colony/surface/disposals) -"seI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/ice_colony/underground/requesition/sec_storage) +"sej" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"sen" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research/tech_storage) -"seL" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/surface/requesitions) -"seX" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator1/underground) -"sfu" = ( -/obj/docking_port/stationary/trijent_elevator{ - airlock_area = /area/shuttle/elevator3/ground; - airlock_exit = "elevator"; - elevator_network = "Omicorn"; - height = 5; - width = 8; - name = "Upper Omicorn"; - id = "Upper_Omicorn"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/omicorn +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator3/ground) -"sgt" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/storage) -"sgF" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/engineering/generator) -"sgJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"set" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"shm" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/armory) +"sex" = ( /obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"seF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "hangar_ladder" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/ice_colony/underground/maintenance/east) +"sff" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/hangar/alpha) +"sfh" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"sfm" = ( /obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/whitered/northwest, -/area/ice_colony/underground/medical/hallway) -"shL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/item/device/radio, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/backroom) +"sfw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"sgh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/garage/repair) +"sgu" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"shj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"shs" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/dorms/lavatory) +"shT" = ( +/obj/item/tool/crowbar, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"sim" = ( /turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"siq" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/excavation/storage) +"siw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/surface/garage/two) -"siC" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"siN" = ( +"siF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"sja" = ( /obj/structure/machinery/door_control{ id = "st_17"; name = "Storage Unit Lock"; @@ -22169,541 +22432,473 @@ }, /turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) -"sjs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"ska" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"skg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"ski" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"skm" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/underground/hangar) -"skE" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"sll" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/darkblue2/west, -/area/ice_colony/underground/storage/highsec) -"slU" = ( +"sjl" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator3/underground) +"sjv" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition/lobby) -"smc" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/substation/smes) -"smr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/checkpoint) +"sjH" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/hallway) -"smu" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/darkgreencorners2, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"skh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/excavation) +"skF" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/lobby) -"smH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"skJ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"skS" = ( +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/research/sample) +"slb" = ( +/obj/structure/closet/secure_closet/security, /turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"snp" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"slr" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/treatment) +"slA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics Dome North Wing"; + req_access_txt = "100" + }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/north) -"snq" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering/generator) -"sny" = ( +"smx" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) +"snr" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/research) -"snQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"soL" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/storage) -"soO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/hallway) -"soZ" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad2) -"spo" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/lobby) +"snx" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/treatment) -"sps" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"spB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + network = list("interrogation") }, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"sqf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100" +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/interrogation) +"snz" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"snB" = ( +/obj/structure/computerframe{ + anchored = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/hangar) -"sqq" = ( -/obj/structure/largecrate/random, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"snU" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"sqU" = ( +/area/ice_colony/underground/command/center) +"sov" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research) -"srb" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad2) -"srj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"soH" = ( +/obj/structure/window/reinforced{ + dir = 1 }, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/disposals) +"soO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/surface/research) -"srl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/dorms) -"srr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/crew/canteen) -"sru" = ( -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"sry" = ( -/obj/structure/shuttle/engine/router{ - dir = 4 - }, -/turf/open/floor/icefloor/shuttle_vfloor, -/area/ice_colony/exterior/underground/caves/dig) -"srI" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"soW" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hangar) +"spu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northright, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/lobby) +"spI" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/garage/repair) +"sqJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"stf" = ( +/area/ice_colony/underground/hallway/south_east) +"srs" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"srw" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/container_yard) +"srx" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"srz" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/requesition) +"ssk" = ( /obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"ssu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/tool/stamp, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/lobby) +"ssR" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"stb" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"stg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"sto" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Hangar Landing Zone" }, +/turf/open/floor/plating, +/area/ice_colony/exterior/surface/landing_pad) +"stw" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/underground/security) -"stx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/surface/hangar/beta) -"stE" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/ice_colony/underground/security/backroom) +"stQ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"sud" = ( +/obj/structure/curtain/black, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"sux" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/chapel/east, -/area/ice_colony/underground/crew/chapel) -"stI" = ( -/turf/open/floor/darkyellowcorners2/east, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"suD" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"suK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/high/empty, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/substation/smes) -"sus" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/surface/command/checkpoint) -"suM" = ( -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/armory) -"suO" = ( -/obj/structure/bed/chair{ - dir = 4 +"suT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/chapel, -/area/ice_colony/underground/crew/chapel) -"suZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/excavation) -"svp" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"svD" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator2/underground) "svF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"svH" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_r" + }, +/obj/structure/shuttle/diagonal{ dir = 1; - name = "\improper Colony Garage" + icon_state = "platform" }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"svG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/south_east) -"svZ" = ( +/area/ice_colony/surface/hangar/alpha) +"svQ" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"swg" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"swh" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"sxH" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad2) +"sxM" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"swf" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/or) -"swO" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "ship_ladder"; - pixel_y = 16 - }, -/turf/open/floor/icefloor/rockvault, -/area/ice_colony/exterior/surface/valley/south/excavation) -"sxa" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/garage/repair) -"sxh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"sxp" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/underground/medical/lobby) -"sxK" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/whitered/northeast, -/area/ice_colony/underground/medical/storage) -"syo" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +/area/ice_colony/underground/hallway/south_east) +"syc" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Upper_Requisitions"; + name = "Upper Requisitions"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/requisitions; + airlock_exit = "elevator"; + elevator_network = "Requisitions"; + airlock_area = /area/shuttle/elevator4/ground }, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/storage) -"sys" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator4/ground) +"sye" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/dorms) -"syQ" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad2) -"szb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, +/area/ice_colony/surface/research) +"szp" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) -"szg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"szs" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"szE" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/security/brig) -"szI" = ( +/area/ice_colony/surface/research/temporary) +"szv" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"sAK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 24 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"sAN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/surface/dorms) +"szA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/hydroponics/lobby) -"sBc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"sAh" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/electric) -"sBq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/area/ice_colony/surface/garage/two) +"sAA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"sBx" = ( +/obj/structure/pipes/standard/manifold/visible{ + layer = 2.3 }, +/turf/open/floor/whiteredcorner/east, +/area/ice_colony/underground/medical/treatment) +"sCx" = ( +/obj/structure/bed/chair, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"sBy" = ( -/obj/structure/disposalpipe/junction{ +/area/ice_colony/underground/engineering) +"sDc" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator3/ground) +"sDf" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/dorms) -"sBz" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"sBH" = ( -/obj/structure/machinery/space_heater, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"sBI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"sCA" = ( -/obj/structure/pipes/vents/pump, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"sCM" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security) -"sDG" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/area/ice_colony/underground/command/center) +"sDJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"sEq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright{ + name = "Security Desk" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/machinery/door/window/eastleft{ + name = "Security Desk" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"sEa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"sEe" = ( -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/security/brig) -"sEs" = ( -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/underground/hallway/south_east) -"sEH" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"sEC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"sEN" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"sFu" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"sFA" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced, /obj/structure/machinery/alarm{ dir = 8; pixel_x = 24 }, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/storage) -"sFF" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/lavatory) -"sGe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"sHf" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"sGG" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"sHu" = ( -/turf/open/floor/darkpurple2/northwest, -/area/ice_colony/underground/research/sample) -"sHH" = ( +/area/ice_colony/underground/hallway/south_east) +"sGL" = ( /obj/structure/surface/table, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/north_west) -"sHJ" = ( +/obj/item/tool/kitchen/utensil/knife, /turf/open/floor/dark2, -/area/ice_colony/underground/security) -"sIf" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"sIE" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"sIU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/crew/canteen) +"sHc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Underground Sports Center" - }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/bball) -"sIW" = ( +/area/ice_colony/underground/storage) +"sHs" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/container_yard) +"sHI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"sHU" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"sIU" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"sJd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/medical/lobby) -"sJp" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +"sJo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkgreen2/north, +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"sKf" = ( +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/crew/canteen) -"sJL" = ( -/obj/structure/pipes/vents/pump{ +"sKm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"sJN" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/area/ice_colony/surface/hangar/checkpoint) +"sKs" = ( +/obj/structure/closet/wardrobe/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"sLG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"sLL" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"sNx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"sNL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) -"sJP" = ( +"sNY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -22715,1393 +22910,1283 @@ }, /turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) -"sJQ" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator2/underground) -"sKu" = ( +"sOb" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"sKP" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"sLz" = ( -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/substation) -"sLO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Dormitories Canteen" }, -/obj/structure/disposalpipe/junction, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"sLT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"sMd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/surface/hydroponics/north) -"sMr" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering) -"sNa" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"sNx" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/surface/command/control/office) +/area/ice_colony/surface/dorms/canteen) "sOd" = ( -/obj/structure/flora/pottedplant, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"sOz" = ( /obj/structure/machinery/light, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/surface/hydroponics/lobby) -"sOi" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"sOH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"sPd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"sPe" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"sPp" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"sPq" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, /obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/dorms/canteen) -"sOx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 8; + pixel_x = -24 }, -/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/storage) +"sPr" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation) +"sPu" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"sQU" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/checkpoint) +"sRc" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"sOI" = ( -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/or) -"sOM" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"sRx" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/garage/repair) +"sRT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"sSN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/crew/bball) -"sPm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/pottedplant, +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/hangar/checkpoint) +"sSZ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control/office) +"sTf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/hypospray/tricordrazine, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/storage/highsec) +"sTg" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/northeast) +"sTv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control/office) +"sTx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"sTE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"sTI" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"sTM" = ( +/obj/structure/surface/rack, /turf/open/floor/darkpurple2, /area/ice_colony/underground/research) -"sPu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"sTQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"sPA" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/obj/item/storage/box/flashbangs, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/armory) +"sUN" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/generator) +"sUW" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/garage/repair) +"sUZ" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"sVh" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"sPV" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Colony Security Checkpoint" +/turf/open/floor/dark, +/area/ice_colony/underground/security/hallway) +"sVu" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle"; + dockId = "Lower_Requisitions"; + pixel_y = 32 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/hangar/checkpoint) -"sQb" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/engineering/electric) -"sQx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"sVy" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/lobby) -"sRm" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering) -"sSi" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation) -"sSw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"sSz" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"sWG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "W" }, -/turf/open/floor/darkpurplecorners2/east, -/area/ice_colony/surface/research) -"sSE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"sWL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"sST" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/storage/highsec) -"sTg" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/northeast) -"sTx" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/surface/requesitions) -"sTS" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/crew/lavatory) -"sTZ" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"sWM" = ( /obj/structure/machinery/light{ dir = 4 }, +/obj/structure/machinery/vending/cola, /turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/dorms) -"sUl" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/surface/garage/one) -"sUr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"sUW" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light{ - dir = 1 +/area/ice_colony/underground/hallway/south_east) +"sXb" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Lower_Requisitions"; + name = "Lower Requisitions"; + airlock_exit = "elevator"; + elevator_network = "Requisitions"; + airlock_area = /area/shuttle/elevator4/underground }, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator4/underground) +"sXf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrowncorners2/west, -/area/ice_colony/surface/hangar/beta) -"sVd" = ( -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/underground/hallway/north_west) -"sVL" = ( -/obj/structure/computerframe, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"sWg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Power Substation" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, /turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"sWK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/north_west) -"sXy" = ( -/obj/structure/surface/table, -/obj/item/storage/box/botanydisk, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/hydroponics/north) -"sXC" = ( +/area/ice_colony/underground/hallway/south_east) +"sXm" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"sXx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"sXQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/interrogation) +"sXT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"sYw" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"sXG" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/garage/repair) -"sXI" = ( -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"sXY" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/surface/command/checkpoint) -"sYK" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/excavation) -"sZF" = ( -/obj/item/shard, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control/office) -"sZV" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator3/underground) -"tav" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, /turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"tbj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/underground/security/armory) +"sYA" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator1/ground) +"tbB" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/hunter_secondary, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"tbM" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"tbQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/ice_colony/underground/storage/highsec) +"tbS" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/treatment) +"tcB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"tcI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"tch" = ( -/obj/structure/disposalpipe/segment{ +/area/ice_colony/underground/medical/lobby) +"tdP" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/crew/lavatory) +"tdR" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/treatment) +"tdS" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"teK" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"tck" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "dorms_ladder"; - pixel_y = 16 - }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/dorms/lavatory) -"tcS" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitered, -/area/ice_colony/surface/clinic/lobby) -"teE" = ( -/obj/structure/machinery/microwave, +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"tfc" = ( +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, /obj/structure/surface/table/reinforced, -/turf/open/floor/darkred2/east, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) -"teI" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 +"tfP" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"teK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/dark2, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering) -"teU" = ( +"tfS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Underground Morgue" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"teX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"tfG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/whitered/southeast, -/area/ice_colony/surface/clinic/lobby) -"thc" = ( -/obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/underground/storage) -"thK" = ( +/area/ice_colony/underground/crew/morgue) +"tfV" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 10 + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"tgi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"tgn" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"thN" = ( -/obj/structure/machinery/power/apc/no_power/north, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering) -"tic" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"tif" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/underground/medical/lobby) +"tgS" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/hallway) +"tha" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"thk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"tiA" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator1/underground) +"tiJ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"tiL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"tiz" = ( -/obj/structure/barricade/metal{ +/area/ice_colony/surface/substation) +"tjh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/darkredcorners2/west, +/area/ice_colony/underground/security/hallway) +"tjz" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/landing_pad2) -"tjc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"tjk" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/backroom) -"tjp" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/underground/hangar) -"tjP" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/garage/two) -"tjQ" = ( /obj/structure/machinery/door_control{ - id = "garage_ice_1"; - name = "garage shutter control"; + id = "hangar_ice_1"; + name = "hangar shutter control"; pixel_y = -30 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/garage/one) -"tjR" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/alpha) +"tkd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "req_sec_storage"; + name = "\improper Requesitions Storage Shutters" }, -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"tkf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"tlc" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/engineering/electric) -"tlH" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/sec_storage) +"tlB" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"tlV" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitered/east, -/area/ice_colony/surface/clinic/storage) -"tmf" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Underground Command Center" +/area/ice_colony/surface/research) +"tlZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"tmq" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/area/ice_colony/underground/requesition/lobby) +"tmC" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/electric) -"tmr" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"tmI" = ( /obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms/canteen) -"tnC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/hallway/south_east) -"tnT" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/item/clothing/gloves/black, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/temporary) +"tmJ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"tok" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"tox" = ( +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/armory) +"tmM" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"tnn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/chapel/west, -/area/ice_colony/underground/crew/chapel) -"toB" = ( -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"toS" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 - }, /turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/north_west) -"tpg" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/dorms) -"tpr" = ( +"tno" = ( +/obj/item/shard, /turf/open/floor/darkblue2, -/area/ice_colony/underground/storage/highsec) -"tpz" = ( -/obj/structure/pipes/vents/pump, +/area/ice_colony/surface/command/control/office) +"tnB" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator4/underground) +"tnG" = ( +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"ton" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"tpO" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/engineering/locker) -"tqu" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"tqv" = ( -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/hallway) -"tqD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, +/area/ice_colony/underground/security/interrogation) +"toq" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/hallway) -"trt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"tsa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"toC" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"tsS" = ( -/obj/structure/bed/chair{ +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms) +"toU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/garage/repair) +"tpq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition/lobby) -"ttf" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"ttr" = ( -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/interrogation) -"tum" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Dome" }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"tve" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"tpL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/bcircuit, -/area/ice_colony/surface/engineering/generator) -"tvi" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkgreen2/west, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Underground Sports Center" + }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/bball) -"tvn" = ( -/obj/structure/closet/radiation, +"tqb" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/armory) +"tqw" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) +"tra" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"trt" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/storage) +"trK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/hallway/north_west) +"trM" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/underground/engineering/locker) -"tvE" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation) -"twa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation) -"twl" = ( +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"trV" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"twF" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"txn" = ( -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/command/checkpoint) -"txN" = ( -/obj/vehicle/train/cargo/trolley, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"tsf" = ( +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/surface/research) +"ttk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"txP" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/area/ice_colony/underground/research) +"ttv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"tyt" = ( +/area/ice_colony/surface/excavation) +"ttT" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"tux" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/lobby) -"tyx" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) -"tyL" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator3/ground) -"tyN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/ice_colony/underground/crew/lavatory) +"tuF" = ( +/obj/structure/surface/table{ + flipped = 1; + icon_state = "tableflip0" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/engineering/electric) -"tyQ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"tuK" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/temporary) +"tuR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platebot, +/area/ice_colony/surface/research/tech_storage) +"tvc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"tvh" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"twh" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"twD" = ( +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/interrogation) +"txo" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/checkpoint) +"txL" = ( +/obj/structure/barricade/metal{ dir = 8 }, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/temporary) -"tzW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/lobby) -"tAl" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"txN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"txT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition/lobby) -"tAY" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation) +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) +"tyC" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/garage/one) +"tyZ" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"tAc" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"tAd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"tAE" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/container_yard) +"tAH" = ( +/obj/structure/cryofeed, +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"tAL" = ( +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/or) "tBe" = ( /obj/structure/bed/chair, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"tBx" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"tBD" = ( -/obj/structure/bed/chair{ - dir = 4 +"tCq" = ( +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) +"tCE" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/excavation) +"tCX" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"tDp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"tDv" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/medical/lobby) -"tBY" = ( +/area/ice_colony/surface/dorms) +"tDH" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"tCQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/ice_colony/underground/security/brig) +"tEd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"tEz" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"tDd" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/crew/canteen) +"tEC" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"tED" = ( +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms/canteen) -"tDo" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/underground/security/brig) -"tDV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + pixel_x = 24 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/research) -"tEh" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition/sec_storage) -"tEl" = ( -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/exterior/surface/landing_pad) +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/command/control/office) "tEG" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"tFn" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/or) -"tFo" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/darkblue2/southwest, -/area/ice_colony/surface/excavation) -"tFA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"tFL" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"tFS" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"tFZ" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"tGc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"tGd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"tGA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Underground Secure Technical Storage" +"tEP" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"tFC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/interrogation) +"tFD" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/treatment) +"tFO" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/storage/highsec) -"tGH" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/substation) -"tGJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/underground/hangar) +"tHx" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"tHH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"tHT" = ( +/obj/structure/mirror{ + pixel_x = -32 }, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"tGR" = ( -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/machinery/door/window/westleft, /turf/open/floor/white, /area/ice_colony/underground/security/brig) -"tGT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +"tHU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Underground Medical Laboratory" + name = "\improper Colony Engineering Tool Storage" }, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"tGU" = ( -/obj/structure/machinery/disposal, +/area/ice_colony/surface/engineering/tool) +"tIf" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"tIH" = ( /obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/research/temporary) -"tHb" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/exterior/surface/landing_pad) -"tHG" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation/smes) +"tIM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"tIl" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/armory) -"tIm" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/research/tech_storage) -"tIz" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/hallway/south_east) +"tIS" = ( /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/armory) -"tII" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/reception/checkpoint_north) -"tJP" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/lavatory) -"tJY" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"tKJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) +"tJz" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/treatment) +"tJR" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"tLy" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/turf/open/floor/darkbrown2/southwest, -/area/ice_colony/underground/requesition) -"tLE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"tLQ" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/treatment) -"tLX" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"tJX" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/exterior/surface/landing_pad) -"tMd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"tKE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics Dome South Wing" }, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"tLj" = ( +/obj/structure/closet/secure_closet/security, /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"tMp" = ( -/obj/structure/bed/chair, /turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"tMv" = ( +/area/ice_colony/surface/hangar/checkpoint) +"tLn" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"tLy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whiteredfull, -/area/ice_colony/surface/clinic/lobby) -"tMH" = ( -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control/office) -"tNc" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"tNd" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/command/center) -"tNw" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"tOg" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/bball) -"tOp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" +/area/ice_colony/underground/engineering) +"tLA" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Upper_Dorms"; + name = "Upper Dorms"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/dorm; + airlock_exit = "elevator"; + elevator_network = "dorm"; + airlock_area = /area/shuttle/elevator2/ground }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/dorms) -"tOO" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/disposals) -"tPt" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/ice_colony/surface/engineering) -"tPN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator2/ground) +"tLU" = ( +/obj/item/tool/soap, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"tMh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/requesition/lobby) +"tMK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/dark2, +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) -"tPO" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shuttle/elevator4/ground) -"tQf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"tMU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"tNs" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/command/checkpoint) +"tNK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"tQs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"tQK" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkblue2/east, -/area/ice_colony/surface/command/control/office) -"tQP" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/engineering) -"tQX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"tOo" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"tOA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"tRa" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"tRe" = ( +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/underground/medical/hallway) +"tOF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/dorms) -"tSa" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "hangar_ice_2"; - name = "hangar shutter control"; - pixel_y = -30 +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"tPc" = ( +/obj/structure/janitorialcart, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering) +"tPj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/hangar/beta) -"tSc" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"tSy" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research) +"tPA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 10 }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"tQg" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"tQj" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"tTt" = ( -/turf/open/floor/darkgreencorners2, -/area/ice_colony/underground/hallway/south_east) -"tTv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) -"tTA" = ( +"tQQ" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/electric) -"tTE" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 +/area/ice_colony/surface/garage/one) +"tRX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/backroom) +"tSw" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"tSy" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator2/underground) +"tSR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"tTn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint" + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/hallway) +"tTG" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"tUs" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, /turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering) -"tTH" = ( -/obj/structure/toilet, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"tTI" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/storage/highsec) -"tTN" = ( +/area/ice_colony/surface/substation/smes) +"tUF" = ( /obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"tVJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"tVV" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/ice_colony/underground/storage/highsec) +"tVi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/rods{ + amount = 25 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/interrogation) -"tWk" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver, +/obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) -"tWO" = ( -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/medical/lobby) -"tXU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/hallway/north_west) -"tYb" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - id = "research_entrance"; - name = "Omicron Research Dome" - }, +"tVI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"tWf" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"tWt" = ( +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) +"tWI" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"tYe" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/underground/requesition/lobby) -"tYK" = ( +/area/ice_colony/surface/dorms/canteen) +"tWL" = ( +/obj/structure/machinery/power/apc/no_power/west, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/field_gear) +"tXK" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"tXX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"tZD" = ( +/area/ice_colony/surface/engineering/electric) +"tYn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, +/obj/structure/surface/table, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) +/area/ice_colony/underground/engineering) +"tYD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"tYV" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/reception/checkpoint_north) +"tYW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"tZl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/garage/one) +"tZm" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/electric) "tZS" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/west) -"uae" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"uai" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastleft{ - name = "Security Desk" +"tZZ" = ( +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/hallway/south_east) +"uaP" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/hangar/checkpoint) -"uaI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/crew/canteen) -"uaY" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/lobby) -"ubb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"uaZ" = ( +/obj/structure/window/reinforced{ dir = 4 }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"ubL" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"ubT" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"ucn" = ( +/area/ice_colony/surface/research/field_gear) +"ucc" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/darkpurple2/north, -/area/ice_colony/surface/excavation) -"ucs" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Lower_Dorms"; - name = "Lower Dorms"; - airlock_exit = "elevator"; - elevator_network = "dorm"; - airlock_area = /area/shuttle/elevator2/underground - }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator2/underground) -"ucT" = ( -/obj/structure/surface/table/reinforced, +/area/ice_colony/underground/research) +"ucz" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/dorms/lavatory) +"ucH" = ( +/obj/structure/curtain/shower, /turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"ucU" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/reception/checkpoint_north) -"ucW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/ice_colony/surface/dorms/restroom_e) +"ude" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"udp" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/item/tool/stamp, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/lobby) -"ucX" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"ueA" = ( -/obj/structure/bed/chair{ +/area/ice_colony/underground/reception) +"udN" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/tool/shovel/snow, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"uel" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"ufb" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"ufn" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/northwest, +/area/ice_colony/surface/engineering) +"ufH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"ueJ" = ( +/area/ice_colony/underground/crew/disposals) +"ugp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/machinery/light, /turf/open/floor/darkpurple2, /area/ice_colony/underground/research) -"ueY" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"ufd" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator1/underground) -"ufm" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/ice_colony/surface/engineering/electric) -"ugc" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"ugi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/restraint/handcuffs, -/obj/item/weapon/baton, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"ugC" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"ugQ" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"ugR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/darkbrowncorners2/east, -/area/ice_colony/surface/hangar/beta) -"ugW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"ugu" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel/snow, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"ugE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/temporary) +"uhw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "garage_ice_2"; + name = "\improper Garage Shutters" }, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/hallway) -"uhx" = ( -/obj/structure/machinery/vending/snack, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"uhy" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/north_west) +"uhz" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/lobby) -"uhD" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/electric) -"uiS" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/engineering) -"ujt" = ( +/area/ice_colony/surface/hangar/checkpoint) +"uiy" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation) +"uiA" = ( /obj/structure/surface/table, -/obj/item/device/camera, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"ujy" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, +/obj/item/storage/belt/utility, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/command/checkpoint) -"ujA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"uiF" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + dockId = "Lower_Omicorn"; + shuttleId = "ice_classic_shuttle2" }, -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/crew/disposals) -"uku" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator3/underground) -"ukS" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator4/underground) -"ukV" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"ula" = ( -/obj/item/tool/soap, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/research) +"uiI" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/beta) +"uiP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + icon_state = "chair" + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"ujr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"ujI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Garage Repair Station" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"ule" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/darkgreen2/west, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"uke" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) -"ulW" = ( -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/engineering) -"umh" = ( +"ukK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"ukP" = ( +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"ulp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"umq" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/lobby) -"umJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/disposals) -"umU" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, +/area/ice_colony/underground/research) +"ulr" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"ulG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/darkred2/east, -/area/ice_colony/surface/command/checkpoint) -"unn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"unS" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"uoF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/ice_colony/underground/security/hallway) +"ulU" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/disposals) +"umk" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/command/checkpoint) +"unF" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"uoX" = ( /obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" + icon_state = "heater" }, -/turf/open/shuttle/can_surgery/red, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) -"upm" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/research) -"uqw" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/hallway/south_east) -"uqH" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, +"unH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/marine_law, +/obj/item/storage/donut_box, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/underground/requesition/sec_storage) -"uqX" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"ura" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"uso" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"usY" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"usZ" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"uok" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"uoA" = ( /obj/structure/surface/table{ dir = 4; flipped = 1; @@ -24109,758 +24194,680 @@ }, /turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/garage/repair) -"utx" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/treatment) -"utN" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security) -"uuF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uoT" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/storage) +"uoX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"upL" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"uqu" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"urz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"urE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, /turf/open/floor/dark2, /area/ice_colony/underground/requesition) +"urG" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad2) +"ush" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"usA" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/exterior/surface/clearing/north) +"usQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"uun" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"uuB" = ( +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/or) "uuK" = ( /obj/structure/surface/table, /obj/item/toy/deck/uno, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"uuU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research/sample) -"uuW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/excavation) -"uwv" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shuttle/elevator2/underground) -"uwC" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"uwR" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +"uuM" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"uvr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/interrogation) +"uvR" = ( +/obj/structure/barricade/metal{ dir = 8 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/interrogation) -"uxW" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitered/southeast, -/area/ice_colony/surface/clinic/storage) -"uyS" = ( -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/medical/lobby) -"uza" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 5; - pixel_y = -8 +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"uwr" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"uzj" = ( -/turf/open/floor/darkyellow2/southeast, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) -"uzZ" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/armory) -"uAb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uxm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/darkgreencorners2, -/area/ice_colony/surface/dorms) -"uAm" = ( -/obj/structure/shuttle/diagonal{ - dir = 6; - icon_state = "wall" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/lobby) +"uxM" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/field_gear) +"uyw" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"uyD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, /turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) -"uAB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"uyS" = ( /turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"uAL" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/dorms) -"uBs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/framed/colony, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"uBE" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/southwest) -"uBH" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator4/underground) -"uBV" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/area/ice_colony/surface/dorms/lavatory) +"uzx" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/backroom) +"uzC" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/armory) -"uBZ" = ( -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/dorms) -"uDa" = ( +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"uzE" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/substation) +"uzS" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/darkblue2/east, -/area/ice_colony/surface/command/checkpoint) -"uDd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/checkpoint) -"uDO" = ( -/obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"uEa" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation/smes) -"uEn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/surface/hydroponics/lobby) -"uEr" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"uzT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"uFd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"uFp" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/darkgreen2/northwest, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) -"uFt" = ( +"uAh" = ( /obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/surface/excavation) -"uFX" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/lobby) -"uGU" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/hangar/checkpoint) -"uHe" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/underground/command/checkpoint) -"uHI" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"uIv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"uIA" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/chapel) -"uIB" = ( -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"uIC" = ( -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/substation) -"uIE" = ( -/obj/structure/machinery/bot/mulebot, -/obj/structure/window/reinforced{ +/obj/structure/bedsheetbin, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms/lavatory) +"uAv" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security) +"uBp" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_south) +"uBB" = ( +/obj/structure/machinery/alarm{ dir = 4; - health = 80 - }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/requesition) -"uIH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/underground/hangar) -"uIZ" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "dig_site_prep_ladder1"; - pixel_y = 16 + pixel_x = -24 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/excavation) -"uJg" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"uJi" = ( -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/ice_colony/surface/requesitions) -"uJF" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"uBD" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"uBE" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/southwest) +"uCU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"uDH" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics North Wing Technical Storage"; +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"uDW" = ( +/obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"uJR" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator2/underground) -"uKd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitered/east, +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/storage) +"uEv" = ( +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/treatment) -"uKg" = ( -/obj/structure/reagent_dispensers/fueltank, +"uGu" = ( /obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation) -"uKr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/crew/bball) -"uKE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"uKR" = ( -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/security/brig) -"uKY" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/cliff) -"uLp" = ( /obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/south_east) +"uGE" = ( +/obj/structure/closet/radiation, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/lobby) -"uLW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security" + dir = 1 }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"uGJ" = ( +/obj/structure/machinery/vending/security, /turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/hallway) -"uMW" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/whitered/northwest, -/area/ice_colony/surface/clinic/treatment) -"uNE" = ( -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"uNM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research) -"uOg" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 +/area/ice_colony/underground/security/armory) +"uHb" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/garage/repair) +"uHK" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"uPv" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"uIg" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"uIk" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/dark2, -/area/ice_colony/surface/dorms) -"uPJ" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator2/ground) -"uPR" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"uIl" = ( /obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"uQa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitered/northwest, -/area/ice_colony/underground/medical/storage) -"uQu" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/substation) -"uQB" = ( -/obj/structure/machinery/shower{ +/obj/item/cell/high/empty, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"uQN" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/armory) -"uRj" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"uIA" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" + }, +/obj/item/storage/box/lightstick, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"uJc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"uJS" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Colony Power Substation SMES" + name = "\improper Colony Power Substation" }, /turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"uSe" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"uSi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/research) -"uSA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/surface/hydroponics/lobby) -"uSB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"uSK" = ( -/obj/structure/window/reinforced, +/area/ice_colony/surface/substation) +"uJV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/excavation) -"uTt" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics North Wing Dome" + name = "\improper Theta-V Research Laboratory Sample Isolation" }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/north) -"uUl" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "garage_ladder" +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"uKa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/garage/one) -"uUv" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"uUw" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"uKb" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/valley/southwest) +"uKi" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/crew/bball) -"uUH" = ( -/turf/open/floor/darkgreencorners2/north, +/obj/structure/machinery/computer/communications, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"uKk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint" + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"uKq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"uUX" = ( +"uKG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" + }, +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"uKO" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"uKP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) +"uKY" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/cliff) +"uLw" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"uLD" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/excavation) +"uLM" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/substation) +"uLU" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"uLZ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"uMs" = ( +/obj/structure/dispenser, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/storage/highsec) +"uMG" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"uMI" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"uMM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteredcorner/east, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/storage) +"uMS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/lobby) -"uUZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"uVu" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/whitered/northeast, -/area/ice_colony/underground/medical/or) -"uVL" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator4/underground) -"uXn" = ( +"uMV" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"uNt" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"uNA" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"uOl" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/surface/garage/two) -"uXo" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/northwest, -/area/ice_colony/underground/command/checkpoint) -"uXT" = ( -/obj/structure/window/reinforced/tinted{ +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/or) +"uOD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"uYD" = ( -/obj/structure/surface/table, -/obj/item/storage/box/trackimp, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/security/backroom) -"uYR" = ( /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/research) -"uYX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"uZc" = ( -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"uZe" = ( -/obj/structure/window/reinforced/tinted{ +/area/ice_colony/surface/substation/smes) +"uOJ" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/surface/requesitions) +"uOK" = ( +/turf/open/floor/bcircuit, +/area/ice_colony/underground/hangar) +"uQp" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/engineering/electric) +"uQr" = ( +/obj/structure/machinery/power/terminal{ dir = 4 }, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"uZn" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"uQN" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/hallway/north_west) +"uRJ" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"uZJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"uZM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"uSe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/surface/command/control) -"uZQ" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Upper_Requisitions"; - name = "Upper Requisitions"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/requisitions; - airlock_exit = "elevator"; - elevator_network = "Requisitions"; - airlock_area = /area/shuttle/elevator4/ground +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control/office) +"uSh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator4/ground) -"vaa" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/landing_pad) -"vaJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"vcd" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"uSt" = ( +/obj/structure/sink{ dir = 1; - icon_state = "pipe-c" + pixel_y = -10 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/surface/table, +/obj/item/tool/soap, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = -2 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"vcs" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"uSW" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"uTu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"vcw" = ( -/turf/open/floor/darkgreen2, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/research) +"uTC" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"uTF" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/crew/lavatory) +"uTK" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"uTS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) -"vcI" = ( -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering) -"vcK" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/two) -"vcU" = ( +"uUv" = ( +/obj/effect/alien/weeds/node, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"vdK" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research) -"veb" = ( -/obj/structure/disposalpipe/segment{ +"uUE" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"uUH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"uVt" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Omicron Temporary Sample Storage" - }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/temporary) -"veo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"uVy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"uVJ" = ( +/obj/structure/surface/table, +/obj/item/storage/bag/plants, +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/north) +"uWb" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"uWv" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"uWC" = ( /obj/structure/ladder{ height = 2; icon_state = "ladderdown"; - id = "hangar_ladder"; + id = "dig_site_prep_ladder1"; pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/beta) -"vev" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/storage/highsec) -"veA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/excavation) +"uXq" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"uXt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research/storage) +"uXv" = ( +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/interrogation) +"uYs" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"vfH" = ( -/turf/open/floor/darkredcorners2/west, -/area/ice_colony/underground/security/hallway) -"vfS" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 +/area/ice_colony/surface/engineering) +"uYv" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"uYO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, +/obj/structure/machinery/computer/station_alert, /turf/open/floor/dark2, -/area/ice_colony/surface/substation/smes) -"vfV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/disposals) -"vgC" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/paper/research_notes, -/turf/open/floor/darkblue2, -/area/ice_colony/underground/command/center) -"vgD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"vgH" = ( -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/dorms/lavatory) -"vhg" = ( -/obj/structure/machinery/door/poddoor/almayer{ +/area/ice_colony/surface/command/control/office) +"uYQ" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"uZe" = ( +/obj/structure/machinery/optable, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"uZu" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/crew/disposals) +"uZJ" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/medical/lobby) +"uZX" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control) -"vhA" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/surface/hangar/checkpoint) -"vhS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"vig" = ( -/turf/open/floor/darkred2/east, -/area/ice_colony/surface/command/checkpoint) -"viz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +/area/ice_colony/underground/crew/disposals) +"vac" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/beta) -"viS" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"vjr" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves) -"vjB" = ( -/obj/item/roller{ - icon_state = "down" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"vaH" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"vbQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whitered/southeast, -/area/ice_colony/underground/medical/hallway) -"vkm" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"vbW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100" }, -/turf/open/floor/darkgreen2/west, +/turf/open/floor/plating, +/area/ice_colony/underground/hangar) +"vcU" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"vcW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/lobby) -"vkU" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/hallway) -"vlz" = ( -/obj/effect/landmark/hunter_primary, +"vdk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 8; + name = "\improper Omicron Field Gear Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"vlQ" = ( -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/security/brig) -"vlW" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research/storage) -"vmB" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"vmP" = ( -/turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hangar) -"vni" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" +/area/ice_colony/surface/research/field_gear) +"vdL" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"veu" = ( +/obj/item/stack/cable_coil/random, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"veD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"veI" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"veK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"vnr" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +/area/ice_colony/surface/excavation) +"vfc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/hallway/north_west) -"vnX" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"vod" = ( +/area/ice_colony/underground/research) +"vfn" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, @@ -24871,2351 +24878,2344 @@ /obj/effect/landmark/crap_item, /turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) -"voE" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/structure/curtain/black, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/backroom) -"voM" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +"vfU" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/research/temporary) +"vgF" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/hallway/north_west) +"vgM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/mirror{ - pixel_y = -28 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"vpo" = ( -/turf/open/floor/darkyellowcorners2/east, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"vhp" = ( +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation) -"vpF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"vhN" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/engineering) -"vpL" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/reception/checkpoint_south) -"vqn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/chapel, -/area/ice_colony/underground/crew/chapel) -"vrk" = ( +/area/ice_colony/underground/maintenance/central/construction) +"vhS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/dorms) -"vrs" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"vig" = ( /turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/disposals) -"vrz" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research) -"vrQ" = ( -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/hallway/north_west) -"vsn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/hallway/north_west) -"vsx" = ( -/obj/structure/urinal{ - pixel_y = 32 +/area/ice_colony/surface/dorms) +"viv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/underground/security/brig) -"vsC" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"viC" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/white, -/area/ice_colony/surface/clinic/storage) -"vsH" = ( -/obj/structure/shuttle/diagonal{ - dir = 10; - icon_state = "wall" +/area/ice_colony/underground/medical/lobby) +"vjx" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"vjI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"vsP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/surface/excavation) -"vti" = ( -/obj/structure/pipes/vents/pump, +/area/ice_colony/underground/requesition/sec_storage) +"vjV" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"vkf" = ( +/obj/effect/landmark/hunter_secondary, /turf/open/floor/dark2, -/area/ice_colony/underground/medical/lobby) -"vtj" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering/locker) -"vtt" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/ice_colony/underground/requesition) +"vkD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/south_east) -"vtu" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/security/brig) -"vtI" = ( -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"vtY" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/ice_colony/surface/research/temporary) -"vua" = ( -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/crew/bball) -"vue" = ( +/area/ice_colony/surface/dorms) +"vkO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitered/west, -/area/ice_colony/surface/clinic/treatment) -"vvx" = ( -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"vvO" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"vww" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"vly" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"vxm" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shuttle/elevator3/underground) -"vxH" = ( -/turf/open/floor/white, -/area/ice_colony/underground/medical/lobby) -"vzj" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/substation) -"vzp" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/dorms/canteen) +"vlI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"vzN" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"vAm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, +"vml" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/surface/command/checkpoint) -"vBy" = ( -/obj/structure/bed/chair/office/dark{ +/area/ice_colony/surface/dorms/canteen) +"vnw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"vnU" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/whiteredcorner/north, -/area/ice_colony/surface/clinic/lobby) -"vBC" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/checkpoint) +"voo" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/brig) +"vop" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/dark2, /area/ice_colony/underground/reception) -"vCp" = ( -/obj/structure/disposalpipe/segment{ +"voO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) +"vpw" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/lobby) +"vpQ" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"vCt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/ice_colony/surface/garage/repair) +"vqN" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/garage/two) +"vqP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/hallway) -"vCG" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"vry" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/garage/one) -"vDd" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"vDI" = ( -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shuttle/elevator4/underground) -"vEd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "research_storage_ladder" }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"vEe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/hydroponics/lobby) -"vEw" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"vrM" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"vrU" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation) +"vrY" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"vsk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security) +"vsu" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"vtg" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms/lavatory) +"vtz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"vEW" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"vud" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"vFT" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"vut" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"vuz" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/hydroponics/lobby) -"vGB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"vGO" = ( +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/center) +"vuT" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/hallway/north_west) -"vHC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"vHP" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"vvf" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"vHS" = ( +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/tool) +"vvh" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"vvm" = ( /obj/structure/surface/table, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/obj/item/stack/cable_coil, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/command/control/office) -"vHT" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"vwu" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"vwG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/field_gear) +"vxd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurple2, +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"vxH" = ( +/obj/item/weapon/baton, +/turf/open/floor/dark2, /area/ice_colony/underground/research) -"vIj" = ( -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"vIm" = ( +"vxP" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"vxV" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security) +"vye" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/darkbrowncorners2/west, -/area/ice_colony/surface/hangar/alpha) -"vIR" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"vyV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"vzh" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/alpha) -"vJz" = ( -/obj/structure/sink{ - pixel_y = 15 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/medical/lobby) +"vzo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" }, -/obj/structure/mirror{ - pixel_y = 28 +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"vzD" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"vzJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Aerodrome Hangar" }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"vJA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/tech_storage) -"vLy" = ( +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/hallway) +"vAt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkyellowcorners2, -/area/ice_colony/surface/engineering) -"vLM" = ( -/obj/structure/pipes/vents/pump, +/obj/structure/machinery/vending/coffee, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"vMQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"vMR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/area/ice_colony/surface/hangar/checkpoint) +"vBR" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/medical/lobby) +"vBW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"vOg" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/area/ice_colony/underground/engineering) +"vCo" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/backroom) +"vCQ" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/exterior/surface/valley/west) +"vCX" = ( /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"vOu" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, +/area/ice_colony/surface/tcomms) +"vEh" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"vEG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/south_east) +"vFx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"vFN" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition/sec_storage) +"vFZ" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 + }, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"vOB" = ( -/obj/structure/bed/chair{ +/area/ice_colony/underground/security/armory) +"vGs" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"vGu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"vGC" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/underground/research/storage) +"vGS" = ( +/obj/structure/machinery/light, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"vGW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/garage/repair) +"vHb" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" + }, +/obj/item/frame/light_fixture, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"vHh" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"vHt" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"vOJ" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"vPw" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/whitered/north, -/area/ice_colony/underground/medical/hallway) -"vQm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"vHz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/hangar/beta) +"vIe" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/surface/excavation/storage) +"vIi" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"vRd" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/crew/canteen) -"vRz" = ( -/obj/vehicle/train/cargo/trolley, +/area/ice_colony/surface/command/control) +"vIu" = ( +/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"vRA" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/ice_colony/surface/hangar/hallway) +"vJm" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"vJo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/command/control/office) -"vRB" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"vSe" = ( -/obj/structure/disposalpipe/segment{ +/area/ice_colony/underground/command/center) +"vJt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "pipe-c" + name = "\improper Underground Requesitions Office" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"vJx" = ( +/obj/effect/spawner/random/toolbox, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) -"vSB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"vTl" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"vJN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/machinery/vending/cola, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"vJU" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/darkgreen2/east, -/area/ice_colony/underground/hallway/south_east) -"vTJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/req_officer, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"vTL" = ( -/obj/structure/machinery/light{ +/area/ice_colony/surface/hydroponics/north) +"vKb" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"vUP" = ( +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"vKk" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/research/tech_storage) -"vWd" = ( -/turf/open/floor/white, -/area/ice_colony/surface/clinic/lobby) -"vWp" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"vXD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"vXH" = ( -/obj/structure/closet/emcloset, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/excavation) +"vKC" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/structure/curtain/black, /turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/hallway) -"vYb" = ( -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/hallway/north_west) -"vYU" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +/area/ice_colony/underground/security/backroom) +"vKP" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation/smes) -"vZg" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/underground/requesition) -"vZm" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/north_west) -"vZE" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/medical/lobby) +"vKS" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/crew/lavatory) +"vLo" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation) -"vZF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"vLu" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Upper_Arrivals"; + name = "Upper Arrivals"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/arrivals; + airlock_exit = "elevator"; + elevator_network = "Arrivals"; + airlock_area = /area/shuttle/elevator1/ground }, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/surface/dorms) -"wae" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"waf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator1/ground) +"vLC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/substation) -"wal" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"was" = ( -/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/atmos_alert, /turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"wbg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/ice_colony/underground/command/center) +"vLS" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/sample) +"vLU" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "st_18"; + name = "Disposals Storage Unit" }, -/turf/open/floor/darkbrown2/southwest, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"vMk" = ( +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/crew/disposals) -"wbl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/research/tech_storage) -"wcr" = ( +"vNi" = ( /obj/structure/window/reinforced{ - dir = 4 + dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research/sample) -"wcR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"vNt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/south) +"vOo" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/spoon, /turf/open/floor/dark2, -/area/ice_colony/underground/security/armory) -"wcW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/ice_colony/underground/crew/canteen) +"vOA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"vOD" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_r" }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/treatment) -"wdl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/shuttle/diagonal{ + dir = 1; + icon_state = "platform" }, /turf/open/floor/dark2, -/area/ice_colony/underground/requesition/lobby) -"wdo" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/surface/hangar/beta) +"vOP" = ( +/obj/structure/window/reinforced{ dir = 1 }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"vQC" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" + }, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms) +"vRz" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/dark2, -/area/ice_colony/underground/research/storage) -"wds" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Colony Dormitories Canteen" +/area/ice_colony/surface/garage/repair) +"vSk" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator3/ground) +"vSt" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + icon_state = "wall" }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms/canteen) -"weL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/surface/hangar/beta) +"vSI" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/treatment) +"vSR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/hallway/north_west) -"wfb" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = "brg" +"vSY" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table, /turf/open/floor/darkyellow2, /area/ice_colony/underground/security/brig) -"wfv" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator3/underground) -"wgI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"whB" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "ship_ladder1"; - pixel_y = 16 - }, -/turf/open/floor/icefloor/rockvault, -/area/ice_colony/exterior/surface/valley/south/excavation) -"whF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/interrogation) -"whP" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"vTj" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"vTB" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/turf/open/floor/darkblue2/west, -/area/ice_colony/surface/command/control) -"wii" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator2/ground) -"wio" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"vTR" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator2/underground) +"vTW" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"vUu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"wip" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkred2/northwest, -/area/ice_colony/underground/security/backroom) -"wiN" = ( -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/crew/canteen) -"wiR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel/west, -/area/ice_colony/underground/crew/chapel) -"wjt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"vUG" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"vUL" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/storage) +"vVr" = ( +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research) +"vVu" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/storage) +"vVA" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"vVK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security) -"wjQ" = ( -/obj/effect/landmark/static_comms/net_one, /turf/open/floor/dark2, -/area/ice_colony/surface/disposals) -"wkp" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, +/area/ice_colony/underground/crew/canteen) +"vVT" = ( /turf/open/floor/dark2, /area/ice_colony/underground/requesition) -"wkW" = ( +"vWb" = ( /obj/structure/surface/table, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/reception/checkpoint_north) -"wli" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/folder/black_random{ + pixel_x = -4; + pixel_y = -4 }, +/obj/item/folder/black_random, /turf/open/floor/dark2, -/area/ice_colony/surface/research) -"wlN" = ( -/obj/structure/surface/table, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/underground/reception) +"vWn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"wlS" = ( -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/dorms) -"wlZ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research) +"vWU" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/hallway) -"wmu" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/underground/engineering) -"wmS" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) +"vXa" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/medical/lobby) +"vXk" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"vXB" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/surface/excavation) -"wnJ" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/beta) -"woa" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/west, -/area/ice_colony/exterior/surface/landing_pad) -"wod" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "garage_ladder" +/area/ice_colony/underground/command/checkpoint) +"vXW" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/storage) -"wop" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"woC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"vYo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"woR" = ( -/obj/structure/machinery/power/terminal{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/substation/smes) -"wpe" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"vYH" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"wpP" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/excavation) -"wqf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 2; - icon_state = "leftsecure"; - id = "brg"; - name = "Security Desk" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/window/northright{ - name = "Security Desk" - }, -/obj/item/tool/stamp, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/turf/open/floor/darkred2, -/area/ice_colony/underground/reception/checkpoint_north) -"wqA" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"vYK" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/crew/disposals) -"wqJ" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/whitered/northwest, -/area/ice_colony/underground/medical/treatment) -"wrJ" = ( +/obj/structure/machinery/computer/communications, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"vYP" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/darkbrowncorners2, -/area/ice_colony/underground/requesition) -"wrO" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"wrY" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) -"wrZ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"vYY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"vZa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/command/checkpoint) +"vZB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/ice_colony/exterior/surface/landing_pad) -"wsk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"vZF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"wax" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/underground/hangar) +"waG" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/requesition) +"wbR" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"wbU" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"wsZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/ice_colony/underground/research/storage) +"wcN" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"wdl" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/one) +"weS" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/checkpoint) +"wfk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"wfG" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/hallway/north_west) +"wfK" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/storage/highsec) +"wgb" = ( /turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"wgB" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) -"wtm" = ( -/turf/open/floor/darkyellow2/northeast, +"wgR" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/surface/engineering) -"wtr" = ( -/obj/structure/disposalpipe/segment{ +"whf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"wtH" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/dorms/lavatory) -"wue" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"wuy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/ice_colony/surface/garage/repair) +"whx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"whE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/storage/highsec) -"wwo" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/surface/substation/smes) -"wwx" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) +"whO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"wih" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "9" }, -/turf/open/floor/darkyellow2/southwest, +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"wiD" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering) -"wwA" = ( +"wjd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"wjB" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator4/underground) +"wjL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/darkgreencorners2/east, -/area/ice_colony/surface/dorms) -"wwB" = ( -/obj/structure/bed/chair, /turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/medical/lobby) -"wwX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"wxC" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/underground/research) -"wxW" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"wyk" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/dorms/lavatory) -"wyr" = ( -/obj/structure/mineral_door/resin, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/darkpurple2/northwest, -/area/ice_colony/underground/research) -"wyS" = ( -/turf/open/floor/white, -/area/ice_colony/underground/medical/storage) -"wzz" = ( -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/underground/hallway/south_east) -"wzH" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/ice_colony/surface/dorms) +"wjS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"wAb" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator3/ground) -"wAu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"wkx" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/center) +"wkH" = ( /obj/structure/surface/rack, -/turf/open/floor/darkbrown2/northeast, +/obj/item/device/analyzer, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) -"wBp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition/sec_storage) -"wBG" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +"wkK" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"wBM" = ( -/turf/open/floor/darkbrown2/east, +/obj/item/storage/box/lights, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"wkX" = ( +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/research) -"wBY" = ( -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research/sample) -"wCr" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"wlI" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"wmV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"wCy" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"wng" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/whitered, -/area/ice_colony/underground/medical/storage) -"wCE" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkbrown2/east, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) -"wCO" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Colony Garage" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"wCZ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/surface/command/control) -"wDb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/underground/requesition) -"wDd" = ( +"woY" = ( +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/underground/hallway/north_west) +"wpp" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control/office) +"wpJ" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"wpP" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"wEi" = ( -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"wEu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"wEE" = ( -/obj/item/stack/rods, -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/northeast, -/area/ice_colony/surface/command/control) -"wEG" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"wqG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"wEJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" +/turf/open/floor/plating, +/area/ice_colony/underground/hangar) +"wru" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"wsz" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/obj/item/tool/stamp, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"wsA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"wsS" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/command/checkpoint) -"wEQ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/garage/one) -"wES" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/hallway/south_east) -"wFJ" = ( -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/dorms/canteen) -"wGg" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/garage/one) -"wGF" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"wHg" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/garage/one) -"wHt" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" +/area/ice_colony/underground/requesition/lobby) +"wsW" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"wtd" = ( +/obj/structure/surface/table, +/obj/item/evidencebag, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"wHz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/underground/hallway/south_east) -"wHF" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "12" +/area/ice_colony/underground/security/interrogation) +"wtE" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Hydroponics South Wing Dome" }, -/obj/structure/grille, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"wHH" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"wtI" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"wue" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, /turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"wIc" = ( -/obj/structure/machinery/holosign/surgery{ - id = "otice" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre" +/area/ice_colony/surface/command/control/pv1) +"wuo" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad2) +"wuX" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad2) +"wvq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/hallway/north_west) +"wws" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/or) -"wIC" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "burst_r" +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"wwO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"wIR" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "canteen_ladder" +/area/ice_colony/surface/research/tech_storage) +"wxB" = ( +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/obj/structure/machinery/light/small, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"wIV" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"wye" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"wyC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"wyI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/disposals) -"wIX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark2, -/area/ice_colony/surface/disposals) -"wJw" = ( -/turf/open/floor/darkpurple2/southwest, -/area/ice_colony/underground/research) -"wJx" = ( +/area/ice_colony/underground/requesition) +"wyM" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/darkpurple2/east, -/area/ice_colony/underground/research) -"wKD" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"wyQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"wyY" = ( +/obj/effect/landmark/crap_item, /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/underground/crew/disposals) -"wKS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"wzb" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/container_yard) +"wzZ" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/hangar/checkpoint) +"wBd" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"wBr" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + id = "research_entrance"; + name = "Omicron Research Dome" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/north) -"wLo" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"wBI" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/hallway) +"wBQ" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"wCm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, /turf/open/floor/dark2, +/area/ice_colony/underground/research) +"wDF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"wEc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Scanning Unit" + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"wEf" = ( +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) -"wLz" = ( +"wFP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/lobby) +"wFQ" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"wFR" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"wGy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"wGO" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"wGT" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/hydroponics/lobby) -"wLG" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/dorms) +"wHb" = ( +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"wHA" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"wIa" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/tech_storage) +"wIr" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"wII" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/lobby) +"wJF" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/storage) +"wJN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /turf/open/floor/dark2, -/area/ice_colony/underground/research) -"wLO" = ( -/obj/structure/flora/pottedplant, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/ice_colony/surface/hydroponics/lobby) +"wJW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/storage) +"wKb" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarwest"; + name = "Underground Hangar Lock"; + pixel_y = -24 }, -/turf/open/floor/whitered/northeast, -/area/ice_colony/surface/clinic/lobby) -"wLS" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/hangar) +"wKc" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/excavation) +"wLt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"wLK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/surface/mining) +"wMG" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle4"; + dockId = "Lower_Arrivals"; + pixel_y = 32 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"wMO" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/dorms) +"wNu" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"wNP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"wOl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"wMU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "engine_electrical_maintenance"; - name = "Underground Power Substation" +/area/ice_colony/underground/engineering) +"wOo" = ( +/obj/structure/machinery/door/airlock{ + id_tag = "st_5"; + name = "Storage Unit"; + req_one_access_txt = "100;101;102;103" }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"wNE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Requesitions Freezer" - }, -/turf/open/floor/freezerfloor, -/area/ice_colony/underground/requesition/storage) -"wOb" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"wOC" = ( +/obj/structure/pipes/portables_connector{ dir = 8 }, -/turf/open/floor/darkredcorners2/west, -/area/ice_colony/underground/security/hallway) -"wOI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/treatment) +"wOT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"wPe" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/security) -"wPC" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/underground/requesition) -"wQF" = ( +/area/ice_colony/surface/command/control) +"wPm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Underground Medical Laboratory Lobby" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/white, -/area/ice_colony/underground/medical/lobby) -"wQO" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"wPE" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"wPV" = ( /obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/surface/engineering/electric) -"wQW" = ( -/turf/open/floor/darkyellow2/west, -/area/ice_colony/surface/garage/repair) -"wRb" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/substation/smes) -"wRg" = ( +/obj/item/device/flashlight, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/engineering) -"wSC" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/checkpoint) -"wTN" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"wUp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"wQI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/storage) +"wRm" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, /turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"wUJ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/area/ice_colony/surface/substation/smes) +"wRt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/treatment) -"wUW" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/surface/dorms) -"wUY" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/beta) +"wRy" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/bar) -"wVd" = ( +/obj/structure/machinery/disposal, /turf/open/floor/darkyellow2/east, /area/ice_colony/underground/engineering) -"wVH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"wRR" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/container_yard) +"wSd" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" + }, +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/engineering) -"wVT" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor/darkred2, -/area/ice_colony/underground/security/armory) -"wWa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/ice_colony/underground/medical/storage) -"wWR" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/exterior/surface/valley/southwest) -"wXq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/surface/hangar/beta) +"wSE" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator2/ground) +"wTp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/beta) +"wTE" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/dorms) +"wTL" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"wTN" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"wTZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/underground/hallway/south_east) -"wXK" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) -"wXR" = ( -/obj/structure/bed/chair{ - dir = 1 +"wUl" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/tcomms) +"wUG" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/hydroponics/lobby) -"wYf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"wYl" = ( -/turf/open/floor/darkblue2/east, -/area/ice_colony/underground/command/center) -"wYt" = ( -/turf/open/floor/darkred2/southeast, -/area/ice_colony/underground/command/checkpoint) -"wYM" = ( /turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"wVa" = ( +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) -"wZk" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/darkgreen2, -/area/ice_colony/surface/dorms) -"wZq" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_women) -"wZH" = ( -/obj/structure/closet/radiation, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/field_gear) -"wZI" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"xab" = ( -/obj/structure/closet/crate, -/turf/open/floor/darkpurple2, -/area/ice_colony/surface/excavation) -"xbh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"wVj" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 }, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/lobby) -"xcZ" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating/warnplate, -/area/ice_colony/surface/disposals) -"xdz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/surface/research) -"xet" = ( +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/or) +"wVq" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/darkpurple2, -/area/ice_colony/underground/research/work) -"xfo" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"xfr" = ( -/obj/structure/bed/chair, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"xfv" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"wVE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"wVO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/garage/repair) +"wVY" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/chapel/north, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"wWm" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/or) +"wWZ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/carpet, /area/ice_colony/underground/crew/chapel) -"xfS" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/treatment) -"xfY" = ( -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/reception/checkpoint_north) -"xgb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/ice_colony/underground/reception) -"xgt" = ( -/turf/open/floor/darkbrown2/southeast, -/area/ice_colony/surface/garage/two) -"xhh" = ( -/obj/item/tool/soap, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_w) -"xhj" = ( -/obj/structure/machinery/light/small{ +"wXm" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/security/brig) -"xht" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"wXw" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"wXA" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/repair) -"xhG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/ice_colony/underground/hallway/south_east) +"wYi" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/excavation) +"wYk" = ( +/turf/open/floor/darkred2, +/area/ice_colony/surface/command/checkpoint) +"wZD" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"xaa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/dark2, -/area/ice_colony/underground/research/work) -"xhU" = ( +/area/ice_colony/underground/requesition/lobby) +"xan" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/crew/canteen) +"xaN" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"xaY" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator2/underground) +"xbc" = ( /obj/structure/shuttle/diagonal{ - icon_state = "burst_r" + icon_state = "swall_f5" }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"xbL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" }, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/alpha) -"xiy" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/vault2/west, -/area/ice_colony/underground/requesition/sec_storage) -"xiz" = ( -/obj/structure/bed/chair/comfy/black, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"xiC" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/ice_colony/surface/tcomms) -"xiZ" = ( -/obj/structure/machinery/bot/mulebot, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/underground/requesition) -"xjF" = ( -/obj/structure/surface/table, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/hallway) -"xkp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/surface/command/checkpoint) +"xch" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"xcH" = ( +/obj/structure/barricade/metal{ + dir = 8 }, -/turf/open/floor/plating/icefloor/warnplate/west, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/exterior/surface/landing_pad) -"xkM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/darkblue2, -/area/ice_colony/surface/command/control/office) -"xkQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +"xdX" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/garage/two) +"xes" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/dorms/canteen) -"xlk" = ( -/obj/structure/closet/secure_closet/engineering_welding, +/area/ice_colony/underground/command/center) +"xeC" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"xfI" = ( +/obj/structure/closet/toolcloset, /turf/open/floor/darkyellow2/southeast, -/area/ice_colony/surface/engineering) -"xlx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, +/area/ice_colony/surface/substation/smes) +"xgd" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/valley/southwest) +"xgj" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) -"xlS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, +/area/ice_colony/underground/engineering) +"xgL" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) +"xgW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/junction, /turf/open/floor/dark2, -/area/ice_colony/surface/research/temporary) -"xmJ" = ( +/area/ice_colony/underground/hallway/south_east) +"xht" = ( /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"xiy" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"xiQ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkpurple2/west, -/area/ice_colony/surface/research) -"xnc" = ( -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shuttle/elevator3/underground) -"xnn" = ( -/turf/open/floor/darkbrown2/northeast, -/area/ice_colony/underground/crew/disposals) -"xno" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/darkbrown2/east, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"xjD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/garage/one) -"xnY" = ( -/obj/structure/curtain/shower, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"xoA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitered/west, -/area/ice_colony/underground/medical/hallway) -"xoG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xjG" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/darkbrown2/northwest, -/area/ice_colony/surface/research) -"xoM" = ( -/obj/item/roller{ - icon_state = "down" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/whitered/southeast, -/area/ice_colony/underground/medical/storage) -"xpb" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkpurple2/northeast, -/area/ice_colony/underground/research/sample) -"xpA" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) -"xpH" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering) -"xqd" = ( -/turf/open/floor/darkpurplecorners2/north, -/area/ice_colony/surface/research) -"xqh" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/darkgreen2/southwest, -/area/ice_colony/underground/hallway/south_east) -"xqA" = ( -/obj/structure/curtain/medical, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"xqH" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/brig) +"xjX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/underground/requesition/sec_storage) -"xqV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/whiteredcorner, +/area/ice_colony/surface/clinic/lobby) +"xkP" = ( +/obj/structure/surface/table, +/obj/item/storage/box/trackimp, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/backroom) +"xli" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/north_west) -"xrh" = ( -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/icefloor/shuttle_floor6, -/area/ice_colony/exterior/underground/caves/dig) -"xro" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/one) -"xrF" = ( -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/hallway/south_east) -"xrS" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shuttle/elevator3/underground) -"xsa" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/security/brig) -"xsJ" = ( +/area/ice_colony/underground/crew/disposals) +"xmd" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"xmj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, /turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"xsW" = ( -/obj/structure/machinery/shower{ - dir = 8 +"xmk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"xmw" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/underground/hangar) +"xmz" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/crew/bball) +"xna" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/tool/soap, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"xtj" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"xnv" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"xnT" = ( +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/engineering) +"xoO" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 }, -/obj/structure/machinery/computer/communications, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"xpe" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) -"xtk" = ( -/obj/structure/pipes/vents/pump{ +/area/ice_colony/underground/hallway/north_west) +"xpC" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research/storage) +"xpE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/requesition) -"xts" = ( -/turf/open/floor/darkgreen2/north, -/area/ice_colony/surface/dorms) -"xtT" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/turf/open/floor/whiteredcorner/east, +/area/ice_colony/surface/clinic/lobby) +"xqo" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"xtU" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/boiledspagetti, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"xuq" = ( -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/area/ice_colony/underground/hallway/south_east) +"xqQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/shuttle/can_surgery/red, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/beta) -"xuy" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering/generator) -"xuz" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Lower_Requisitions"; - name = "Lower Requisitions"; - airlock_exit = "elevator"; - elevator_network = "Requisitions"; - airlock_area = /area/shuttle/elevator4/underground - }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shuttle/elevator4/underground) -"xvy" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"xwi" = ( -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/garage/two) -"xwj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"xrg" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering) +"xsg" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"xsB" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Aurora Medical Clinic Storage" +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/storage) -"xwl" = ( -/turf/open/floor/darkyellow2, -/area/ice_colony/underground/engineering/locker) -"xwn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"xsO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"xty" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"xus" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator1/underground) +"xuJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"xvb" = ( +/obj/item/bodybag, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"xvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/tool/stamp, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"xvl" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"xvI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Underground Library" }, -/turf/open/floor/darkred2/northeast, -/area/ice_colony/underground/security/hallway) -"xwx" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"xwF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/treatment) +"xwI" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"xwJ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/hallway/south_east) -"xwB" = ( -/obj/effect/decal/cleanable/spiderling_remains{ - name = "greenish remains" +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/excavation) +"xwL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"xwP" = ( +/obj/structure/machinery/door/poddoor{ + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "Strange Airlock" }, /turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) -"xwL" = ( -/obj/structure/machinery/light, +"xxs" = ( +/obj/vehicle/train/cargo/trolley, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/surface/hydroponics/south) -"xwM" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/white, -/area/ice_colony/surface/clinic/treatment) -"xxm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table{ - flipped = 1; - icon_state = "tableflip0" - }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/surface/command/control) -"xxE" = ( -/obj/structure/pipes/vents/pump, +/area/ice_colony/surface/garage/one) +"xxJ" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/dorms/lavatory) -"xAJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"xAT" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/area/ice_colony/surface/engineering/generator) +"xxP" = ( /turf/open/floor/darkred2/west, -/area/ice_colony/underground/command/checkpoint) -"xBg" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/surface/hydroponics/north) -"xBy" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/area/ice_colony/underground/reception/checkpoint_north) +"xxT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/engineering) -"xCf" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/security/armory) -"xCl" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"xCB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/beta) +"xxZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"xyc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"xyg" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkred2/west, -/area/ice_colony/surface/command/checkpoint) -"xCN" = ( +/turf/open/floor/plating/warnplate/east, +/area/ice_colony/underground/crew/disposals) +"xyt" = ( +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/research) +"xyH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/ice_colony/underground/reception/toilet_men) -"xCW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/research) -"xDb" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/dark2, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/underground/requesition) -"xDd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkgreen2/west, -/area/ice_colony/underground/medical/lobby) -"xDw" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) -"xDB" = ( -/obj/structure/bed/chair{ +"xzF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"xzX" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"xAf" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"xAt" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/ice_colony/underground/hallway/south_east) -"xEd" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/disposals) +"xAS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/engineering) -"xEv" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"xAZ" = ( +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "pipe-j2" + pixel_x = 24 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition/sec_storage) +"xBh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"xEJ" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"xFi" = ( -/obj/structure/closet/wardrobe/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/area/ice_colony/underground/command/checkpoint) +"xBN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkgreen2/east, -/area/ice_colony/surface/hydroponics/north) -"xFR" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"xCg" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/excavation/storage) +"xCQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/hallway) -"xFS" = ( -/turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"xGa" = ( -/turf/open/floor/darkgreen2/northeast, -/area/ice_colony/underground/hallway/south_east) -"xGr" = ( -/obj/structure/shuttle/diagonal{ - dir = 9; - icon_state = "wall" - }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"xHD" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle"; - dockId = "Lower_Requisitions"; - pixel_y = 32 +"xDe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkbrown2/north, +/obj/structure/closet/crate, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) -"xIg" = ( +"xDq" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/surface/requesitions) +"xDC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/darkbrown2, -/area/ice_colony/surface/hangar/alpha) -"xIp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/darkyellow2/northwest, -/area/ice_colony/surface/garage/repair) -"xID" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/chapel) -"xIR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"xDE" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"xEQ" = ( +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/interrogation) +"xFm" = ( +/obj/effect/landmark/static_comms/net_one, /turf/open/floor/dark2, -/area/ice_colony/surface/engineering/tool) -"xJK" = ( +/area/ice_colony/surface/disposals) +"xFq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/dark2, -/area/ice_colony/underground/maintenance/central/construction) -"xJN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/spacecash/c500, -/obj/item/spacecash/c100, -/obj/item/spacecash/c10, -/obj/item/spacecash/c1, -/turf/open/floor/darkblue2, +/area/ice_colony/underground/requesition) +"xFN" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) -"xLr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"xGf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/research/storage) -"xLZ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/underground/hangar) -"xMq" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"xNd" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/south) -"xNi" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/vault2/west, -/area/ice_colony/surface/storage_unit/power) -"xNN" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/underground/hangar) -"xOc" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +"xGn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"xGr" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/ice_colony/underground/hangar) -"xOh" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/sample) +"xGZ" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/underground/hallway/north_west) +"xHq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/darkbrown2/north, -/area/ice_colony/surface/garage/one) -"xOk" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research) -"xOr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/weldpack, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"xOz" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/ice_colony/exterior/surface/landing_pad) -"xOP" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"xHr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) +"xID" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/surface/research/tech_storage) -"xOR" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating/icefloor/warnplate, -/area/ice_colony/exterior/surface/landing_pad) -"xPa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"xPb" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/engineering) -"xPM" = ( -/obj/item/roller{ - icon_state = "down" +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/turf/open/floor/whitered/east, -/area/ice_colony/underground/medical/hallway) -"xPR" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 }, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security) -"xPV" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 }, -/obj/structure/mirror{ - pixel_x = -24 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/dorms/restroom_e) -"xPY" = ( -/obj/structure/dispenser, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/storage/highsec) -"xQv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"xIH" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"xJI" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"xQH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Engineering Generator Room" +/area/ice_colony/surface/hangar/beta) +"xKq" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"xLc" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"xLl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, /turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"xLq" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering/generator) -"xQY" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkyellow2, -/area/ice_colony/surface/research/field_gear) -"xTb" = ( +"xLv" = ( /obj/structure/surface/table, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/canteen) -"xUm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/bedsheetbin, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"xLF" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"xMv" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"xMx" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"xMO" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"xUo" = ( -/turf/open/floor/darkred2/southwest, -/area/ice_colony/underground/security/interrogation) -"xUs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint" +/area/ice_colony/surface/hangar/hallway) +"xNm" = ( +/obj/structure/closet/radiation, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/hallway) -"xUG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/field_gear) +"xNo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Anti-Freeze Canteen Freezer" + name = "\improper Underground Staff Canteen" }, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"xVo" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"xNQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"xOn" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"xOR" = ( +/obj/item/storage/donut_box, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"xOY" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/surface/requesitions) +"xPc" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"xPj" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"xQm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/storage) +"xQr" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"xRh" = ( +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"xST" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"xTd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/checkpoint) +"xUn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"xUB" = ( +/obj/effect/decal/cleanable/spiderling_remains{ + name = "greenish remains" + }, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"xUR" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/landmark/crap_item, /turf/open/floor/dark2, /area/ice_colony/surface/garage/one) -"xVr" = ( +"xVA" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering) +"xVC" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway/north_west) +"xVP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreencorners2/west, -/area/ice_colony/surface/hydroponics/lobby) -"xVV" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor/shuttle_floor7, -/area/ice_colony/exterior/underground/caves/dig) -"xVY" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/lobby) -"xWa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) "xWm" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"xXJ" = ( -/turf/open/floor/plating/icefloor/warnplate/southwest, +"xWQ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad) -"xXV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/darkblue2/southeast, -/area/ice_colony/underground/command/center) -"xYc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, +"xXs" = ( +/obj/effect/landmark/crap_item, +/obj/item/stack/sheet/metal, /turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) -"xZl" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/ice_colony/underground/security/backroom) -"xZq" = ( +"xYu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/surface/garage/two) -"xZH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/ice_colony/underground/storage) +"xYD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/dark2, -/area/ice_colony/underground/research) -"xZO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/underground/requesition) -"yam" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/ice_colony/surface/garage/one) +"xYF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/darkyellow2/east, -/area/ice_colony/underground/security/brig) -"ybr" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southwest, -/area/ice_colony/surface/engineering/generator) -"ybE" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"xYS" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/ice_colony/underground/crew/canteen) -"ybI" = ( -/obj/structure/machinery/washing_machine, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_south) +"xZH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"xZR" = ( /turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/security/brig) -"ybV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/ice_colony/surface/engineering) +"yan" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator3/ground) +"yaA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, -/area/ice_colony/underground/storage) -"ycB" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkyellow2/west, -/area/ice_colony/underground/engineering) -"ycG" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/area/ice_colony/surface/hangar/checkpoint) +"yaH" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"yaR" = ( +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"ybb" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"ybt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, /area/ice_colony/surface/command/control) -"ycN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/darkyellow2/northeast, -/area/ice_colony/underground/storage) -"ycU" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" +"ycF" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/sample) +"ycI" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/interrogation) +"ycW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/dark2, -/area/ice_colony/surface/hangar/beta) -"ydd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/substation/smes) +"yds" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/dark2, -/area/ice_colony/underground/command/center) -"ydM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/temporary) +"ydv" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "st_19"; + name = "Research Storage Unit" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/crew/morgue) -"ydN" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/darkred2/north, -/area/ice_colony/underground/security/brig) -"ydW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"ydA" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Theta-V Research Laboratory Sample Isolation" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"ydR" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"yeg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/dark2, -/area/ice_colony/underground/research/sample) -"yeb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, /turf/open/floor/darkbrown2/east, -/area/ice_colony/surface/hangar/beta) -"yeS" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shuttle/elevator3/ground) -"yfj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 +/area/ice_colony/surface/garage/one) +"yeX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/darkpurple2/north, -/area/ice_colony/underground/research/storage) +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/dorms) "yfr" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/whitered/north, -/area/ice_colony/surface/clinic/storage) -"yfC" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkbrown2/west, -/area/ice_colony/surface/hangar/alpha) +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"ygi" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator2/ground) "ygn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteredcorner/east, -/area/ice_colony/surface/clinic/lobby) -"ygO" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"ygG" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/darkblue2/north, -/area/ice_colony/underground/command/center) +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) "yhm" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"yhr" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/structure/surface/table/reinforced, -/turf/open/floor/freezerfloor, -/area/ice_colony/surface/bar/canteen) -"yhy" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/darkgreen2/southeast, -/area/ice_colony/surface/hydroponics/north) -"yia" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, +"yhn" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/ice_colony/underground/hallway/south_east) -"yim" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/ice_colony/underground/hallway/south_east) -"yiF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; - icon_state = "leftsecure"; - id = "brg" - }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - id = "brg" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/noticeboard{ - pixel_y = 32 + icon_state = "pipe-c" }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteredcorner, +/area/ice_colony/surface/clinic/treatment) +"yhU" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, /turf/open/floor/dark2, -/area/ice_colony/underground/security/hallway) -"yjb" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/darkgreen2/northwest, -/area/ice_colony/underground/hallway/south_east) -"yjr" = ( +/area/ice_colony/surface/substation/smes) +"yhX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/darkgreencorners2/north, -/area/ice_colony/surface/dorms) -"yjx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/hallway) -"yjS" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/ice_colony/underground/hallway/south_east) +"yid" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/surface/table/reinforced, -/obj/item/spacecash/c1000, -/turf/open/floor/darkblue2/west, -/area/ice_colony/underground/storage/highsec) +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"yjb" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"yjE" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/north) "yjU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/darkbrowncorners2/north, -/area/ice_colony/surface/research) -"ykm" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/vending/coffee, /turf/open/floor/dark2, -/area/ice_colony/surface/hangar/checkpoint) -"ykR" = ( -/obj/structure/window/reinforced/tinted{ +/area/ice_colony/surface/substation/smes) +"yjV" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, /turf/open/floor/dark2, -/area/ice_colony/underground/command/center) +/area/ice_colony/surface/hydroponics/north) +"yko" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/soap, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"ykt" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) "yle" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, /turf/open/floor/wood, /area/ice_colony/surface/command/crisis) "ylH" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/ice_colony/underground/storage) -"ylR" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) +"ylL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"ylQ" = ( /turf/open/floor/dark2, -/area/ice_colony/surface/command/control/office) +/area/ice_colony/underground/requesition/lobby) (1,1,1) = {" aaa @@ -30240,16 +30240,16 @@ blc blc blc bDz -sHu -uuU -hIH +fPn +nWz +skS bDz -gci -pNE -iCZ -oCQ -qeX -rto +qCf +jmk +eNB +vud +kYM +hPy bGX bmU bmU @@ -30522,16 +30522,16 @@ blc bCi blc bDz -ejG -cQd -wBY +fdm +dqN +vLS bDz -cLk -lWd -lWd -xhG -lWd -xet +uKP +dOP +dOP +qLE +dOP +rZI bGX bmU bmU @@ -30804,16 +30804,16 @@ blc bls blc bDz -wcr -dBz -lLj +ycF +cbr +xGr bDz -irz -lWd -lWd -iSE -lWd -xet +qNk +dOP +dOP +pIL +dOP +rZI bGX bmT bmU @@ -31076,26 +31076,26 @@ bkJ blc blc byv -xnc -xrS -xrS -xrS -hDZ +kUB +chm +chm +chm +fNm byv bBC bls blc bDz -xpb -ogv -mKy +rcw +lHs +nAt bDz -hja -fCR -lWd -iSE -fwN -ebu +qeB +ovv +dOP +pIL +jHK +gek bGX bnT bml @@ -31358,24 +31358,24 @@ bkJ blc blc byv -qtQ -kGU -kGU -kGU -wfv +gum +byM +byM +byM +sjl bBa bBf -iaj +ulp bBf bDz bDz -ydW +uJV bDz bDz bGX bGX -lWd -pQt +dOP +gWx bGX bGX bGX @@ -31640,27 +31640,27 @@ blc blc blc byv -qtQ -kGU -kGU -kGU -wfv -qKW -fms -mfK -fms -fms -fms -mfK -wxC -phl -wxC -wxC -eDo -mfK -fms -fms -wJw +gum +byM +byM +byM +sjl +eLQ +gyV +aJR +gyV +gyV +gyV +aJR +nQP +vWn +nQP +nQP +lQf +aJR +gyV +gyV +xyt bBf aZF aZF @@ -31744,15 +31744,15 @@ aaI aaI aaI abD -gpJ +jvq abD adY abD -hFy +wOo abD adY abD -gpJ +jvq abD adY abD @@ -31922,27 +31922,27 @@ bxa blc blc byv -qtQ -kGU -kGU -kGU -wfv -iqA -eDo -mfK -eDo -uoF -eDo -mfK -eDo -jYK -eDo -eDo -eDo -mfK -eDo -uoF -ueJ +gum +byM +byM +byM +sjl +rlB +lQf +aJR +lQf +vfc +lQf +aJR +lQf +wCm +lQf +lQf +lQf +aJR +lQf +vfc +xxZ bBf aZF aZF @@ -32027,17 +32027,17 @@ aaI aaI acT acg -jEK +iSr adV -fQL +guA acg -jEK +iSr adV -fQL +guA acg -jEK +iSr adV -fDI +ePL aaJ aaJ aaI @@ -32204,27 +32204,27 @@ bls blc ble byv -qtQ -kGU -kGU -kGU -wfv -iqA -eDo -xZH -cNf -uNM -sDG -pbm -wLG -wLG -wLG -wLG -wLG -pbm -wLG -tok -qMu +gum +byM +byM +byM +sjl +rlB +lQf +jnw +ttk +rXX +gwG +oTW +wfk +wfk +wfk +wfk +wfk +oTW +wfk +inx +pLz bBf aZF aZF @@ -32309,17 +32309,17 @@ aaI aaI acT acg -fXX -qxh -uJi +uOJ +xOY +xDq acg -fXX -qxh -uJi +uOJ +xOY +xDq acg -fXX -qxh -seL +uOJ +xOY +cPt aaJ aaJ aaJ @@ -32481,32 +32481,32 @@ aZF aZF aZF bkJ -tRa +ukK bls blc ble byv -qtQ -kGU -kGU -kGU -wfv -krg -mJr -gXJ -ifk -fij -mfK -eDo -eDo -eDo -eDo -eDo -eDo -eDo -eDo -mfK -cQe +gum +byM +byM +byM +sjl +vVr +cRW +yfr +irb +bUO +aJR +lQf +lQf +lQf +lQf +lQf +lQf +lQf +lQf +aJR +sTM bBf aZF bmh @@ -32768,27 +32768,27 @@ bls blc blc byv -qtQ -kGU -kGU -kGU -wfv -dLE -iqA -eDo -fij -fij -kNW -eDo -eDo -eDo -eDo -eDo -eDo -eDo -eDo -mfK -cQe +gum +byM +byM +byM +sjl +uiF +rlB +lQf +bUO +bUO +mFR +lQf +lQf +lQf +lQf +lQf +lQf +lQf +lQf +aJR +sTM bBf aZF bmQ @@ -32865,11 +32865,11 @@ aac aac aae abl -pLu -qjA -qjA -qjA -uZQ +kpM +kYX +kYX +kYX +syc abl acU acg @@ -33050,27 +33050,27 @@ bls blc ble byv -uku -vxm -vxm -vxm -sZV +cwO +oYm +oYm +oYm +rcs bBa -vdK -gXJ -fij -fij -mfK -eDo -eDo -eDo -eDo -eDo -eDo -eDo -eDo -mfK -qMu +ucc +yfr +bUO +bUO +aJR +lQf +lQf +lQf +lQf +lQf +lQf +lQf +lQf +aJR +pLz bBf aZF bmQ @@ -33147,13 +33147,13 @@ aac aac aae abl -rog -pGy -pGy -pGy -rZf +gOn +abV +abV +abV +iFS abl -jiG +jxP acg abE abE @@ -33338,21 +33338,21 @@ byv byv byv bBa -sqU -eDo -fij -fij -kNW -eDo -eDo -eDo -eDo -eDo -eDo -eDo -eDo -mfK -ono +tPj +lQf +bUO +bUO +mFR +lQf +lQf +lQf +lQf +lQf +lQf +lQf +lQf +aJR +nkR bBf aZF bmQ @@ -33429,13 +33429,13 @@ aac aac aae abl -rog -pGy -pGy -pGy -rZf -oYg -jOo +gOn +abV +abV +abV +iFS +hEk +cgw acg abE abE @@ -33620,21 +33620,21 @@ blL bzT blL bBe -wLG -wLG -wLG -wLG -pDU -eDo -eDo -eDo -cek -eDo -eDo -eDo -eDo -mfK -qNn +wfk +wfk +wfk +wfk +env +lQf +lQf +lQf +eRF +lQf +lQf +lQf +lQf +aJR +mnq bBf aZF bmQ @@ -33711,13 +33711,13 @@ aac aac aae abl -rog -pGy -pGy -pGy -rZf +gOn +abV +abV +abV +iFS abE -sTx +rIE acg abE adZ @@ -33902,21 +33902,21 @@ blc bls bAB bBf -krg -lCP -lCP -lCP -mfK -lCP -vrz -wJx -gzP -cJZ -mJr -eDo -eDo -mfK -qHR +vVr +ukP +ukP +ukP +aJR +ukP +jQn +kJt +dXw +tyZ +cRW +lQf +lQf +aJR +leu bBf aZF bmQ @@ -33993,13 +33993,13 @@ aac aac aae abl -rog -pGy -pGy -pGy -rZf +gOn +abV +abV +abV +iFS abE -eBn +pPy ado adH ack @@ -34188,17 +34188,17 @@ bBg bBg bBg bBg -dKG +iSC bBg bBg bBg bBg bBg -iqA -eDo -eDo -mfK -ueJ +rlB +lQf +lQf +aJR +xxZ bBf aZF bmQ @@ -34275,13 +34275,13 @@ aac aac aae abl -rog -pGy -pGy -pGy -rZf -qxh -uJi +gOn +abV +abV +abV +iFS +xOY +xDq acg abE abE @@ -34466,21 +34466,21 @@ bkJ bls blc bBg -ljC -cOH -cOH -cOH -ccq -cOH -cOH -cOH -nUR +uXt +vUL +vUL +vUL +iFM +vUL +vUL +vUL +dVb bBg -krg -eDo -eDo -mfK -nkH +vVr +lQf +lQf +aJR +dZx bBf aZF bmQ @@ -34557,13 +34557,13 @@ aac aac aae abl -rog -pGy -pGy -pGy -rZf +gOn +abV +abV +abV +iFS abl -pkb +ada acg abE abE @@ -34748,19 +34748,19 @@ bkJ bls blc bBg -yfj -iPw -iPw -iPw -ccq -iPw -iPw -iPw -nLQ +qhU +uYQ +uYQ +uYQ +iFM +uYQ +uYQ +uYQ +kou bBg bIC -eDo -mye +lQf +kwm bKI bBf bBf @@ -34839,11 +34839,11 @@ aac aac aae abl -nFV -esA -esA -esA -tPO +dYI +nBN +nBN +nBN +fzz abl acU acg @@ -35030,20 +35030,20 @@ bkJ bzU blL bBh -gsH -gsH -gsH -gsH -xLr -gsH -wdo -iPw -dZg +wbU +wbU +wbU +wbU +lPE +wbU +vye +uYQ +uoT bBg -xOk -eDo -eDo -sPm +jyU +lQf +lQf +bva bBf aZF aZF @@ -35312,20 +35312,20 @@ bkJ bls blc bBg -daw -cIW -cIW -cIW -vlW -vlW -cpO -cpO -cXV +xpC +cOM +cOM +cOM +ipB +ipB +mgS +mgS +vGC bBg -iqA -eDo -eDo -vHT +rlB +lQf +lQf +vtz bBf aZF aZF @@ -35411,17 +35411,17 @@ ack ack ack adp -mIX -mcR -jOo +icp +rhc +cgw acg -mIX -mcR -jOo +icp +rhc +cgw acg -mIX -mcR -msp +icp +rhc +dHM aaJ aem afJ @@ -35604,10 +35604,10 @@ bBg bBg bBg bBg -iqA -eDo -eDo -vHT +rlB +lQf +lQf +vtz bBf aZF aZF @@ -35693,17 +35693,17 @@ abE abE abE acg -kXZ +lgj adV -cHR +ksF acg -kXZ +lgj adX -cHR +ksF acg -kXZ +lgj adV -fDI +ePL aem aem afJ @@ -35886,10 +35886,10 @@ bmm bml aZF bBf -iqA -eDo -eDo -vHT +rlB +lQf +lQf +vtz bBf bqk bnT @@ -35974,15 +35974,15 @@ abE abF abF abD -gpJ +jvq abD adY abD -gpJ +jvq abD adY abD -gpJ +jvq abD adY abD @@ -36102,29 +36102,29 @@ aZF aZF aZF bdb -aWz -aJR -lQg -mdF -mdF -mdF +bNp +jkB +qgq +dgM +dgM +dgM bdb -xiZ -tqu -rId -rId -vTJ -tqu -wGF -tLy +iij +nVa +idG +idG +eSS +nVa +kLr +waG biy -hcD -eoE -nVg -nVg -nVg -eoE -mdd +dBE +dqT +clw +clw +clw +dqT +dmd biy blc bls @@ -36168,10 +36168,10 @@ bmT bmm bnT bBf -iqA -eDo -eDo -kip +rlB +lQf +lQf +ugp bBf boT bmT @@ -36384,29 +36384,29 @@ aZF aZF aZF bdb -woC -aJR -aJR -aJR -rPd -mdF +wws +jkB +jkB +jkB +qAq +dgM bdb -phv -uSe -xtk -uSe -uSe -uSe -uSe -vZg +xPc +vVT +oYx +vVT +vVT +vVT +vVT +lUy biy -lMX -xiy -xiy -eNM -xiy -wBp -tEh +lny +eiW +eiW +vFN +eiW +hwn +fRz biy blc bls @@ -36449,11 +36449,11 @@ bmU bmU bmU bmU -wyr -iqA -eDo -eDo -vHT +mLJ +rlB +lQf +lQf +vtz bLq bmU bmU @@ -36666,29 +36666,29 @@ aZF aZF aZF bdb -nMh -aJR -aJR -aJR -oag -kAZ +ncv +jkB +jkB +jkB +fDV +lwV bdb -gyG -uSe -nFz -nOk -rIX -rIX -ikS -nem -poA -lPd -lCn -lCn -lCn -lCn -lCn -tEh +uSW +vVT +xDe +cbU +knX +knX +jru +fMW +tkd +vjI +fqm +fqm +fqm +fqm +fqm +fRz biy bld bls @@ -36732,10 +36732,10 @@ bmU bmU bmU bIb -iqA -eDo -qRA -vHT +rlB +lQf +vxH +vtz bIb bmU bmU @@ -36948,29 +36948,29 @@ bba bba bba bdc -fUU -fjd -fjd -aJR -oag -kAZ +jSb +hKA +hKA +jkB +fDV +lwV bdb -phv -uSe -uuF -uSe -uSe -uSe -uSe -nem -poA -lPd -eNM -raB -eNM -xiy -xiy -lCn +xPc +vVT +dvq +vVT +vVT +vVT +vVT +fMW +tkd +vjI +vFN +gqg +vFN +eiW +eiW +fqm bkK blc bls @@ -37014,10 +37014,10 @@ bmU bmU bmU bIc -iqA -qmN -eDo -vHT +rlB +dzM +lQf +vtz bIb bmU bmU @@ -37224,35 +37224,35 @@ aZF aZF aZF bba -eUH -uBH -uBH -uBH -xuz +gZJ +nYU +nYU +nYU +sXb bdc bdb bdb bdb bdb -wNE +lSP bdb bdb -uIE -uSe -kZB -nOk -nOk -nOk -ehc -nem -poA -lPd -lCn -lCn -lCn -lCn -lCn -kTB +kWT +vVT +sEC +cbU +cbU +cbU +tHx +fMW +tkd +vjI +fqm +fqm +fqm +fqm +fqm +sdK biy ble bls @@ -37296,10 +37296,10 @@ bmU bzR boB bBf -iqA -eDo -eDo -vHT +rlB +lQf +lQf +vtz bBf bmT bmU @@ -37506,35 +37506,35 @@ aZF aZF aZF bba -lVQ -uVL -uVL -uVL -ukS +kPF +bbn +bbn +bbn +tnB bba -mJh -xOr -xZO -tqu -uuF -qkB -tJY -qen -uSe -uuF -uSe -uSe -uSe -uSe -oiR +lnU +dCt +eUO +nVa +dvq +kQv +sLL +srz +vVT +dvq +vVT +vVT +vVT +vVT +mUz biy -kXS -xiy -wBp -eNM -xiy -wBp -tEh +jHQ +eiW +hwn +vFN +eiW +hwn +fRz biy ble bls @@ -37578,10 +37578,10 @@ boR bmk bmh bBf -sqU -eDo -eDo -vHT +tPj +lQf +lQf +vtz bBf bml bmT @@ -37788,35 +37788,35 @@ aZF aZF aZF bba -lVQ -uVL -uVL -uVL -ukS -pBw -qen -uSe -uSe -uSe -uuF -uSe -uSe -uSe -uSe -nFz -nOk -ikS -rIX -rIX -vZg +kPF +bbn +bbn +bbn +tnB +rkI +srz +vVT +vVT +vVT +dvq +vVT +vVT +vVT +vVT +xDe +cbU +jru +knX +knX +lUy biy -uqH -xqH -lZp -lZp -lZp -xqH -reO +xAZ +ieS +jmq +jmq +jmq +ieS +fXo biy ble bls @@ -37860,10 +37860,10 @@ bmU bmh bmi bBf -iqA -eDo -eDo -vHT +rlB +lQf +lQf +vtz bBf bmm bml @@ -38070,27 +38070,27 @@ aZF aZF aZF bba -lVQ -uVL -uVL -uVL -ukS -phv -uSe -uSe -uSe -uSe -uuF -uSe -uSe -uSe -uSe -uuF -uSe -uSe -uSe -uSe -vZg +kPF +bbn +bbn +bbn +tnB +xPc +vVT +vVT +vVT +vVT +dvq +vVT +vVT +vVT +vVT +dvq +vVT +vVT +vVT +vVT +lUy biy biy biy @@ -38142,10 +38142,10 @@ bnT bmi aZF bBf -iqA -eDo -eDo -vHT +rlB +lQf +lQf +vtz bBf aZF bmm @@ -38352,38 +38352,38 @@ aZF aZF aZF bba -lVQ -uVL -uVL -uVL -ukS -phv -uSe -uSe -uSe -uSe -uuF -uSe -uSe -uSe -uSe -uuF -uSe -uSe -uSe -uSe -vZg +kPF +bbn +bbn +bbn +tnB +xPc +vVT +vVT +vVT +vVT +dvq +vVT +vVT +vVT +vVT +dvq +vVT +vVT +vVT +vVT +lUy biB -glE -nTw -slU -tsS -fCd +wsS +dcy +ezw +oDG +hli bhn bkt bkt bkt -owJ +eGl bkt bkt bkt @@ -38424,10 +38424,10 @@ aZF aZF aZF bBf -xOk -eDo -eDo -sPm +jyU +lQf +lQf +bva bBf aZF aZF @@ -38634,48 +38634,48 @@ aZF aZF aZF bba -lVQ -uVL -uVL -uVL -ukS -rdQ -dsd -vLM -sUr -sUr -leR -sUr -sUr -sUr -sUr -mPH -sUr -sUr -sUr -sUr -sUr -deU -cLd -cLd -cLd -wdl -nxK +kPF +bbn +bbn +bbn +tnB +jvS +fTZ +wyQ +rCB +rCB +gbj +rCB +rCB +rCB +rCB +wyI +rCB +rCB +rCB +rCB +rCB +fYS +oXH +oXH +oXH +lGs +uzS bhn bkt -cPD -oEY -ubb -oEY -vGO -oEY -oEY -jlq -oEY -oEY -vGO -vsn -lUi +wfG +uQN +pUB +uQN +vSR +uQN +uQN +gSk +uQN +uQN +vSR +hGX +fuO bkt bkt bkt @@ -38707,8 +38707,8 @@ bkt bkt bBf bIC -eDo -mye +lQf +kwm bKI bBf bkt @@ -38916,86 +38916,86 @@ aZF aZF aZF bba -lVQ -uVL -uVL -uVL -ukS +kPF +bbn +bbn +bbn +tnB bba -xHD -ikS -uSe -rIX -txN -ehc -uSe -uSe -uSe -wrJ -kEN -hyM -hyM -hyM -uSe -uSe -ski -ski -ski -pGz -rWi +sVu +jru +vVT +knX +ssR +tHx +vVT +vVT +vVT +xyH +jul +lUp +lUp +lUp +vVT +vVT +ylQ +ylQ +ylQ +gEv +gbZ bhy -tXU -iav -rNE -ubb -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -eRh -lCZ -lCZ -lCZ -lCZ -pRM -lCZ -lCZ -lCZ -hXS -lCZ -lCZ -lCZ -lCZ -pRM -lCZ -lCZ -lCZ -ubb -vYb -vYb -vYb -vYb -vYb -rOM -vYb -vYb -vYb -vYb -vYb -rOM -dxW -rNE -rNE -nPN -rOM -vnr -puL -weL +wvq +vgF +dcM +pUB +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +woY +aTC +aTC +aTC +aTC +mXl +aTC +aTC +aTC +pUo +aTC +aTC +aTC +aTC +mXl +aTC +aTC +aTC +pUB +fgG +fgG +fgG +fgG +fgG +hcm +fgG +fgG +fgG +fgG +fgG +hcm +nsD +dcM +dcM +gjo +hcm +vTB +eNP +trK bkt aZF aZF @@ -39198,86 +39198,86 @@ aZF aZF aZF bba -vDI -ePL -ePL -ePL -frh +lDz +roC +roC +roC +wjB bba -phv -rIX -uSe -nOk -txN -ikS -uSe -wkp -pKW -ndj +xPc +knX +vVT +cbU +ssR +jru +vVT +uMI +urE +kAI bhn bhy bhy bhy bhy bhn -gJm -ePh -ski -pGz -ski -dIs -rNE -rNE -rNE -ubb -rNE -dUL -rNE -rNE -rNE -rNE -rNE -tYK -lDP -unn -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -ubb -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -ubb -rNE -rNE -rNE -vrQ +ohO +hmv +ylQ +gEv +ylQ +lTu +dcM +dcM +dcM +pUB +dcM +hhS +dcM +dcM +dcM +dcM +dcM +gWI +amP +ikG +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +pUB +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +pUB +dcM +dcM +dcM +qiu bkt aZF aZF @@ -39486,13 +39486,13 @@ bba bba bba bba -jga -nOk -uSe -nOk -txN -rIX -uSe +shj +cbU +vVT +cbU +ssR +knX +vVT bgB bgN bhe @@ -39503,63 +39503,63 @@ bhz bhz bho bhz -jGD -trt -jpL -pzy -pzy -tQs -tQs -tQs -kIg -sBI -sBI -tQs -tQs -tQs -tQs -tQs -tPN -iqN -fjn -tQs -sBI -tQs -sBI -tQs -tQs -tQs -tQs -tQs -tQs -tQs -tQs -tQs -tQs -tQs -tQs -sBI -kIg -tQs -rHL -tQs -tQs -tQs -tQs -tQs -tQs -tQs -tQs -sBI -tQs -tQs -tQs -tQs -xqV -tQs -iGt -rNE -vrQ +xaa +fuz +pdc +xuJ +xuJ +klP +klP +klP +mWd +dkZ +dkZ +klP +klP +klP +klP +klP +uKO +eoA +lBK +klP +dkZ +klP +dkZ +klP +klP +klP +klP +klP +klP +klP +klP +klP +klP +klP +klP +dkZ +mWd +klP +kIl +klP +klP +klP +klP +klP +klP +klP +klP +dkZ +klP +klP +klP +klP +oBt +klP +pXH +dcM +qiu bkt aZF aZF @@ -39768,80 +39768,80 @@ aZF aZF aZF bdg -mTa -nOk -uSe -ikS -txN -nOk -uSe -oHk -oHk -qzp +kKH +cbU +vVT +jru +ssR +cbU +vVT +xFq +xFq +rlt bhn -jfP -exr -exr -iGw +icm +eQD +eQD +ioU biD -chR -exr -ski -ryx -oxe +uxm +eQD +ylQ +xYF +rvV bhy -lEV -sVd -rNE -rNE -ubb -goa -rNE -rNE -rNE -rNE -rNE -rNE -kYP -rNE -rNE -goa -rNE -ubb -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -goa -rNE -rNE -ubb -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -goa -rNE -rNE -rNE -rNE -rNE -rNE -srI -rNE -vrQ +uhy +xVC +dcM +dcM +pUB +jNm +dcM +dcM +dcM +dcM +dcM +dcM +cKg +dcM +dcM +jNm +dcM +pUB +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +jNm +dcM +dcM +pUB +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +jNm +dcM +dcM +dcM +dcM +dcM +dcM +hNA +dcM +qiu bkt aZF aZF @@ -40050,80 +40050,80 @@ aZF aZF aZF bdg -nij -rIX -uSe -rIX -egB -rIX -uSe -uSe -uSe -kgJ -ezD -lRg -nXc -esS -mwM -rmS -esS -esS -esS -tZD -tAl +rvC +knX +vVT +knX +jsT +knX +vVT +vVT +vVT +cxD +vJt +opn +cqN +dbO +orx +rVG +dbO +dbO +dbO +tlZ +lIr bhn bkt -qvY -gAY -cSd -ubb -rNE -gAY -gAY -gAY -gAY -sVd -rNE -kYP -iLm -gAY -gAY -gAY -ubb -rNE -gAY -gAY -gAY -gAY -gAY -gAY -gAY -gAY -gAY -gAY -gAY -gAY -gAY -gAY -ubb -qwA -qwA -qwA -qwA -qwA -qwA -qwA -qwA -qwA -qwA -qwA -qwA -qwA -qwA -lJX -srI -rNE -vrQ +jXa +rzv +nPi +pUB +dcM +rzv +rzv +rzv +rzv +xVC +dcM +cKg +cRI +rzv +rzv +rzv +pUB +dcM +rzv +rzv +rzv +rzv +rzv +rzv +rzv +rzv +rzv +rzv +rzv +rzv +rzv +rzv +pUB +hvz +hvz +hvz +hvz +hvz +hvz +hvz +hvz +hvz +hvz +hvz +hvz +hvz +hvz +xGZ +hNA +dcM +qiu bkt aZF bmh @@ -40332,47 +40332,47 @@ aZF aZF aZF bdg -wDb -hyM -dsd -uSe -uSe -gTa -hyM -pjv -iVF -wPC +poz +lUp +fTZ +vVT +vVT +rWy +lUp +xvl +iKh +mcW bhn -cbr -lAQ -igZ -tYe +qYN +gVb +hcF +tMh bhn -owo -dgA -pdR -jMM -psB +gff +rtN +jjj +kPw +ihn bhn bkC bkP bkP bkC -cFy -ewx +gzE +mzX bkC bkP bkP bkC -vZm -rNE -kYP -ejL +itK +dcM +cKg +ykt bqT bqU bqU -hGV -tGT +gxh +lsh bqU bqU bqT @@ -40403,8 +40403,8 @@ bIe bHi bHi bpa -srI -hgP +hNA +kLi bpa bkt aZF @@ -40616,10 +40616,10 @@ aZF bdg bdg bdg -phv -uSe -uSe -vZg +xPc +vVT +vVT +lUy bdg bdg bdg @@ -40637,57 +40637,57 @@ bhn bhn bhn bkC -ckv -hsr -fNx -cFy -hsr -uIA -hsr -ckv +cfv +qGh +vYH +gzE +qGh +pKr +qGh +cfv bkP -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqU -eUF -tWO -hGV -qED -xDd -vkm -tBD -vkm -vkm -sxp +gso +lZp +gxh +bUt +dHs +sJd +eAm +sJd +sJd +dQt bqX -ico -eja +pMU +fDT byP -uQa -qwU -cZu +xQm +kcH +uDW byP buL bBP bCu -qoJ -sll -yjS -ozd -qrH +uMs +qFE +qsZ +fie +dqp bCu -thc -dTK -rHX -rHX -gFr +ock +iaX +nGW +nGW +sPq bHi -rwD -faH -qjE -fCe +tIM +dpG +gnv +lQX boJ aZF bmQ @@ -40811,8 +40811,8 @@ ahA ahA alL asn -gNd -cSr +ncx +mjP asn alL ahA @@ -40898,10 +40898,10 @@ aZF aZF aZF bdg -phv -uSe -uSe -vZg +xPc +vVT +vVT +lUy bdg bkk bkl @@ -40919,57 +40919,57 @@ bgH bke bgH bkC -hsr -lyi -gCP -xfv -gCP -lyi -gCP -hsr +qGh +mfZ +ljI +sJo +ljI +mfZ +ljI +qGh bkP -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqU -qfs -qED -hGV -qED -qED -pKy -qED -qED -qED -cdy +iLi +bUt +gxh +bUt +bUt +lwz +bUt +bUt +bUt +vKP bqX -eXU -fdw +dmV +run byP -fLh -wyS -opK +erc +fGw +kjs byP buL bys bCu -xPY -vev -vev -vev -fyx +saa +tbM +tbM +tbM +mqG bCu -iGR -vOJ -vOJ -vOJ -jMu +gPi +cxe +cxe +cxe +phz bIe -ggN -faH -qjE -fCe +mkM +dpG +gnv +lQX boJ aZF bmm @@ -41093,8 +41093,8 @@ ahA ahA ahA atL -gNd -roL +ncx +uYv atL ahA ahA @@ -41180,10 +41180,10 @@ aZF aZF aZF bdg -phv -uSe -uSe -vZg +xPc +vVT +vVT +lUy bgt bgH bgH @@ -41201,57 +41201,57 @@ bgH bgH bgH bkC -hsr -qKK -vqn -stE -vqn -qKK -vqn -hsr +qGh +dpK +dNl +gDf +dNl +dpK +dNl +qGh bkC -tHG -rNE -ruY -tjc -kkC -dgI -rGC -uHI -rGC -rGC -rGC -rGC -rGC -rGC -rGC -qiu -eYQ -fdw +xDE +dcM +jFV +xpe +kQb +mHu +fUI +tcI +fUI +fUI +fUI +fUI +fUI +fUI +fUI +jll +xMv +run byP -ijx -lkR -opK +cyy +rqW +kjs byP buL btm bCu -rrf -vev -cks -vev -isX +jOs +tbM +cyc +tbM +mhG bCu -ylH -vOJ -vOJ -vOJ -jMu +kya +cxe +cxe +cxe +phz bIe -ggN -faH -qjE -fCe +mkM +dpG +gnv +lQX boJ aZF aZF @@ -41375,8 +41375,8 @@ ahA ahA ahA atL -gNd -jBk +ncx +kOr atL ahA ahA @@ -41420,18 +41420,18 @@ apS aaQ aLK aLK -noK -gOg -pvA -oNv -kPW +uxM +xNm +fjv +tWL +vwG aOm -gyC -dRX -ksG -rWw -rWw -nvI +tuK +qyc +rkF +pPI +pPI +gIy aSw aSw acm @@ -41462,10 +41462,10 @@ aZF aZF aZF bdg -phv -uSe -uSe -vZg +xPc +vVT +vVT +lUy bdg bgH bgQ @@ -41483,57 +41483,57 @@ bhj bgH bgH bkC -hsr -lyi -gCP -dBM -wiR -pDx -evz -hsr +qGh +mfZ +ljI +kZq +lpc +ijv +orO +qGh bkP -fqN -rNE -hsO -lDP -oQx -txP -oQx -quz -qED -qED -qED -qED -qED -qED -eFx +mIq +dcM +fro +amP +lkr +vXW +lkr +tgn +bUt +bUt +bUt +bUt +bUt +bUt +oQP bqX -mTP -eqj +vUu +osh byP -pha -hQy -wCy +yjb +gpM +hqC byP buL btm bCu -eoj -vev -gyb -vev -gll +xFN +tbM +tUF +tbM +kXT bCu -dul -vOJ -rSs -vOJ -jMu +wsA +cxe +nFi +cxe +phz bIe -ggN -faH -qjE -fCe +mkM +dpG +gnv +lQX boJ aZF aZF @@ -41657,8 +41657,8 @@ ahA ahA ahA atL -gNd -eSu +ncx +uzT atL ahA ahA @@ -41701,20 +41701,20 @@ aba aba aaZ aLK -mPY -cQC -pzS -pzS -oUH -mao +qLU +fOJ +ubL +ubL +nEk +pmh aOm -rts -rWT -eKc -rWT -rWT -vtY -nvI +tmI +szs +hBi +szs +szs +eLb +gIy aSw acm aac @@ -41744,10 +41744,10 @@ aZF aZF aZF bdg -kiB -uSe -uSe -jzP +elp +vVT +vVT +hao bdg bgH bgH @@ -41765,57 +41765,57 @@ bhj bgH bgH bkC -hsr -qKK -vqn -stE -vqn -qKK -suO -hsr +qGh +dpK +dNl +gDf +dNl +dpK +hDP +qGh bkP -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqU -mXx -qED -pzA -mkJ -jvd -jvd -hHA -jvd -hHA -fpt +nLC +bUt +tOF +vXa +uZJ +uZJ +rdW +uZJ +rdW +dMn bqU -mTP -fdw +vUu +run byP -hkE -hQy -wCy +oRD +gpM +hqC byP buL btm bCu -sEa -vev -rQv -vev -tpr +oox +tbM +nsb +tbM +fcg bCu -dul -vOJ -ybV -vOJ -vOJ -ncX -qjE -faH -qjE -fCe +wsA +cxe +fXt +cxe +cxe +hif +gnv +dpG +gnv +lQX boJ aZF aZF @@ -41939,8 +41939,8 @@ amB ahA ahA atL -gNd -eSu +ncx +uzT atL ahA ahA @@ -41983,20 +41983,20 @@ abb aaC aaC aLK -oDJ -pzS -pzS -pzS -oUH -mao +vHh +ubL +ubL +ubL +nEk +pmh aOm -nml -rWT -mXC -qLu -qLu -qLu -eSQ +pym +szs +dnC +dAv +dAv +dAv +hpG aSw acj acD @@ -42026,10 +42026,10 @@ aZF aZF aZF bdg -phv -uSe -xDb -vZg +xPc +vVT +vkf +lUy bdg bgH bgH @@ -42047,57 +42047,57 @@ bhj bgH bgH bkC -hsr -lyi -gCP -njE -gCP -lyi -tox -hsr +qGh +mfZ +ljI +rOo +ljI +mfZ +nmZ +qGh bkP -fqN -cph -hRR -ejL +mIq +pDs +gEL +ykt bqU -wwB -qED -pzA -uyS -dYM -ucW -pBb -qGA -pBb -cyA +vBR +bUt +tOF +jmB +wFP +oek +vcW +jgq +vcW +omH bqU -smr -qUs -dKE -iVD -wWa -oKm +iGB +jKj +mUQ +wIr +xmd +hJF byP buL btm bCu -vGB -vev -wuy -hhv -hhv -tGA -ikb -ikb -ilO -ikb -rAt +hjj +tbM +iIt +jRm +jRm +khj +xYu +xYu +mBT +xYu +uMM bKP -qqA -fRm -hEk -fCe +gAl +sGG +evY +lQX boJ aZF aZF @@ -42221,8 +42221,8 @@ tZS ahA ahA asn -vFT -eSu +kIK +uzT asn ahA ahA @@ -42265,20 +42265,20 @@ aaR abb aLK aLK -oDJ -hjO -wZH -wZH -oUH -pIc +vHh +mbc +nCa +nCa +nEk +mnx aOm -qzi -rbA -xlS -dbI -dbI -iBD -tyQ +vfU +oHv +fVB +fvF +fvF +gzG +vWU aSw aSw acm @@ -42308,12 +42308,12 @@ aZF aZF aZF bdg -phv -uSe -uSe -vZg +xPc +vVT +vVT +lUy bdg -nrx +gxD bgH bhk bgQ @@ -42329,57 +42329,57 @@ bhk bgH bgH bkC -hsr -obV -gXG -obV -gXG -obV -por -hsr +qGh +jHg +kyB +jHg +kyB +jHg +jlC +qGh bkC -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqT -nNR -vti -sIW -uyS -iNf -vxH -fvp -vxH -fvp -mDO +vzh +oVH +uVt +jmB +oIY +cUI +viC +cUI +viC +khZ bqU -mTP -fdw +vUu +run byP -soL -hQy -oeE +pXR +gpM +ene byP buL btm bCu -iVf -vev -vev -vev -tpr +qHa +tbM +tbM +tbM +fcg bCu -mWF -ixD -ggr -ggr -ggr -eos -omi -diH -wLo -fCe +irx +mhR +fcQ +fcQ +fcQ +nqG +uKq +xgW +rwb +lQX boJ aZF aZF @@ -42503,8 +42503,8 @@ tZS ahA ahA atL -gNd -eSu +ncx +uzT atL ahA ahA @@ -42546,22 +42546,22 @@ uBE aJH aaQ aLK -dWO -cQC -xQY +qMI +fOJ +fhJ aOm aOm -jdD +vdk aOm aOm aSB aSB -veb +liT aSB aSB -fXB -pkU -hYR +niT +yds +ugE aSw acn aaC @@ -42590,10 +42590,10 @@ pyn aZF aZF beB -oJN -oYO -oYO -nzI +dxt +tFO +tFO +wKb beB bgH bgH @@ -42611,57 +42611,57 @@ bhj bgH bgH bkD -hsr -hsr +qGh +qGh blB blT bmx blB -cFy -xID +gzE +ixR bkP -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqU -wwB -qED -pzA -iKP -qdu -uFX -vxH -nbH -vxH -nQI +vBR +bUt +tOF +huD +spu +kSj +cUI +liR +cUI +mil bqU -mTP -fdw +vUu +run byP -jsm -hQy -oeE +cso +gpM +ene byP buL btm bCu -pGF -vev -vev -vev -rBu +wVE +tbM +tbM +tbM +hVq bCu -eMA -hrp -vOJ -vOJ -jMu +jvA +sHc +cxe +cxe +phz bIe -ggN -vzp -stf -qjE +mkM +gES +mBu +gnv bNt bNt bNt @@ -42785,8 +42785,8 @@ apg ahA ahA atL -gNd -eSu +ncx +uzT atL ahA ahA @@ -42828,22 +42828,22 @@ uBE aJK aaQ aLK -rUK -pzS -xQY +mDr +ubL +fhJ aOn -pHQ -sny -uSi -mCQ -aTU -jjj -kLx -eVl +iNi +jUx +oyH +iCA +jcz +wkX +vgM +hVn aUs -kNd -jzR -djm +dIE +qLX +geC aSw aaC aaC @@ -42893,63 +42893,63 @@ bhj bgH bgH bkC -hsr -hsr +qGh +qGh blC blU -cmC +wWZ bmY -cFy -xID +gzE +ixR bkP -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqU -wwB -qED -pzA -uyS -rMv -vxH -vxH -gRc -vxH -dCt +vBR +bUt +tOF +jmB +ssu +cUI +cUI +ngv +cUI +lSh bqU -mTP -fdw +vUu +run byP -iDv -hQy -hAg +ebj +gpM +gIW byP buL btm bCu -wgI -vev -cks -vev -xJN +snz +tbM +cyc +tbM +lvq bCu -pBp -hrp -vOJ -vOJ -jMu +xBN +sHc +cxe +cxe +phz bIe -ggN -vzp -stf -hHs +mkM +gES +mBu +rAj bNt -ocp -wqA -rfJ -wbg -qQw +mgN +mPc +qQZ +lAP +qEe bQS bNt bup @@ -43067,8 +43067,8 @@ aph tZS ahA asn -gNd -fsT +ncx +vac asn ahA ahA @@ -43110,22 +43110,22 @@ asi asi abc aLK -iUL -pzS -xQY +cfe +ubL +fhJ aOn -fwF -wBM -cLZ -sBq -oqt -vMR -sLO -fKC +dAB +pZu +bwL +oju +odW +gEc +ggl +mEp aUs -hwJ -mcd -tGU +ePm +dWn +oTg aSw aaC aaC @@ -43181,57 +43181,57 @@ bkE bkE bkE bkE -dgC +tfS bkE bkE -qCX -rNE -kYP -ejL +pIx +dcM +cKg +ykt bqX -cIi -qED -pzA -fpt -gfl -hop -uaY -gRc -hop -dKX +dku +bUt +tOF +dMn +gjt +vpw +ozd +ngv +vpw +fQi bqX -rkG -fdw +iFt +run byP -dlC -bvb -laF +knt +per +koX bAE bBj btm bCu -gMs -vev -vev -vev -iiH +irw +tbM +tbM +tbM +lEv bCu -wod -hrp -vOJ -vOJ -jMu +fSc +sHc +cxe +cxe +phz bIe -ggN -vzp -stf -hHs +mkM +gES +mBu +rAj bNt -vrs -dbr -iRq -ujA -oin +mZo +uZX +owA +lUB +clk bQS bNt bml @@ -43349,8 +43349,8 @@ tZS ahA ahA atL -gNd -eSu +ncx +uzT atL ahA ahA @@ -43398,12 +43398,12 @@ aLL aLL aLM aLM -ocN -uYR -aSN -wBM -wBM -pCQ +ntI +pop +wVY +pZu +pZu +cfx aOo aUW aUW @@ -43442,11 +43442,11 @@ aZW aZW aZG aZG -kry +wqG aZG aZG aZG -kry +wqG aZG aZG aZG @@ -43457,63 +43457,63 @@ aZG bgH bgH bkE -fkq -fkq -fkq -lNP -fkq -mDi -eBC -qyT +gQe +gQe +gQe +wPE +gQe +rwh +oDz +rSy bkE -fqN -rNE -kYP -cej +mIq +dcM +cKg +sOz bqX bqX -qED -luc +bUt +rkZ bqU bqU bqU bqU -wQF +rqr bqU bqX bqX -soO -fdw +toq +run byP -sxK -pbu -xoM +czT +cqI +fVt byP bBk btm bCu -mlz -tTI -ciF -sST -rAc +mdi +fXY +wfK +hOt +sTf bCu -ycN -qgY -vOJ -iEn -qiQ +jbB +fxp +cxe +wJW +gyI bHi -rwD -vzp -stf -hHs +tIM +gES +mBu +rAj bNt -kqh -umJ -oXp -tOO -gep +nfL +dxj +fzH +oNm +jse bQT bNt bmm @@ -43631,8 +43631,8 @@ tZS ahA ahA atL -gNd -eSu +ncx +uzT atL ahA ahA @@ -43674,24 +43674,24 @@ asi asi asi aLL -dkB -wAb -wAb -wAb -sfu +nfO +dcY +dcY +dcY +ovY aLM -cEZ -gpq -lBg -ffv -ffv -lsY -sOx +ius +mWf +luv +cNE +cNE +szA +hWM aUW -paQ -joN -qar -gzz +cIm +nFL +pOg +gXs aUZ abc aJy @@ -43705,30 +43705,30 @@ aab aZG aZU aZW -iqM -cNL -cNL -cNL -oaj -cNL -cNL -cNL -duI -cNL -cNL -cNL -duI -cNL -cNL -cNL -cNL -duI -cNL -cNL -cNL -cNL -jiM -mBb +wax +egK +egK +egK +pYr +egK +egK +egK +sex +egK +egK +egK +sex +egK +egK +egK +egK +sex +egK +egK +egK +egK +vrY +xmw aZW aZW beB @@ -43739,33 +43739,33 @@ aZG bgH bgH bkF -iao -iao -iao -iao -iao -qea -eBC -oLs +pZb +pZb +pZb +pZb +pZb +sud +oDz +rJy bkE -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqY -shm -hiE -vww -mMA -mMA -mMA -mMA -csE -mMA -xoA -mMA -eEe -fdw +nxs +eph +lTN +rhe +rhe +rhe +rhe +dEV +rhe +mSy +rhe +tOA +run byP byP byP @@ -43786,16 +43786,16 @@ bIL bHi bHi bHi -eek -vzp -stf -hHs +mVp +gES +mBu +rAj bNt -iAJ -umJ -oXp -tOO -mEB +fFa +dxj +fzH +oNm +fzS bQU bNt aZF @@ -43913,8 +43913,8 @@ ahA ahA ahA atL -gNd -eSu +ncx +uzT atL ahA ahA @@ -43956,24 +43956,24 @@ asi asi asi aLL -hNp -nyN -nyN -nyN -yeS +sDc +aNf +aNf +aNf +yan aLM -tGJ -hOI -mKE -mhP -kSM -kSM -hUB +cNK +qlk +rHp +vnw +aFD +aFD +pBO aUX -lYw -fMQ -oOA -jja +usQ +qXj +iVZ +hmO aUZ asi uBE @@ -43987,30 +43987,30 @@ aab aZG rmR aZW -kds +hFY aZW baK baO -rZY -dOQ +kmR +jVi baK baO bcc bcx bdh -lHh -lSd +gXz +bHN bcx baK baO bcc bcx -lhl -owC +jmT +ufb bcc bcx aZW -qPv +vsu aZW aZW bif @@ -44021,33 +44021,33 @@ aZG bgH bgH bkE -vWp -iao -snQ -gHu -kEM -fHm -dol -cqN +gNR +pZb +nnW +xvb +lUY +cgp +hTw +gYQ bkE -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqY -vPw -fcV -jdU -jDD -rBZ -qUs -qUs -vCt -qUs -qUs -qUs -lQW -fdw +fsg +jJO +pPb +mcw +ctw +jKj +jKj +hiU +jKj +jKj +jKj +pUN +run byB byp byp @@ -44068,16 +44068,16 @@ btm btm bDN bkt -ggN -mIL -tFA -pse -cre -iMH -pFS -mMd -ozx -enp +mkM +nJm +hJE +kRR +nHh +kRd +dol +oqx +xAt +qAv bQV bNt bOk @@ -44195,8 +44195,8 @@ ajS ahA ahA atL -gNd -eSu +ncx +uzT atL ahA tZS @@ -44238,24 +44238,24 @@ aJN asi asi aLL -hNp -nyN -nyN -nyN -yeS -jBg -iJw -jnD -gHo -oYs -kSM -kSM -hUB +sDc +aNf +aNf +aNf +yan +rIW +dWX +raM +hMS +vqP +aFD +aFD +pBO aUX -pYJ -fMQ -oOA -vJA +jyG +qXj +iVZ +jbI aUZ asi asi @@ -44269,67 +44269,67 @@ aab aZG aZW aZW -kds +hFY baz -iqM -cNL -cNL -cNL -cNL -cNL -cNL -cNL -cNL -cNL -lca -cNL -cNL -cNL -cNL -cNL -cNL -cNL -cNL -mBb +wax +egK +egK +egK +egK +egK +egK +egK +egK +egK +wXw +egK +egK +egK +egK +egK +egK +egK +egK +xmw bhF -qPv +vsu aZW aZW big aZW aZW aZW -sqf +vbW bgH bgH bkE -iao -iao -iao -iao -iao -qea -eBC -ujt +pZb +pZb +pZb +pZb +pZb +sud +oDz +nlO bkE -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqY -ogK -tqv -tqv -tqv -vww -hsD -tqv -tqv -tqv -xPM -xPM -xPM -vjB +lOB +tgS +tgS +tgS +lTN +fiE +tgS +tgS +tgS +eWu +eWu +eWu +jTX byB byp byV @@ -44350,16 +44350,16 @@ bsz bsz bsz brL -dED -dYD -qjE -hHs +hxD +lXE +gnv +rAj bNt -wKD -hLh -oXp -tOO -enp +hqs +ufH +fzH +oNm +qAv bQU bNt bRJ @@ -44477,8 +44477,8 @@ ahA ahA alL asn -gNd -kBo +ncx +gtB asn alL ahA @@ -44520,24 +44520,24 @@ aaC uBE asi aLL -hNp -nyN -nyN -nyN -yeS -gHo -iJw -jnD -gHo -sSz -dNt -kSM -hUB +sDc +aNf +aNf +aNf +yan +hMS +dWX +raM +hMS +qbg +cCH +aFD +pBO aUX -ldp -fMQ -oOA -jdn +tSw +qXj +iVZ +pvA aUZ asi ayj @@ -44551,9 +44551,9 @@ aab aZG aZV aZW -kds +hFY baA -kds +hFY aZW bbc aZW @@ -44572,9 +44572,9 @@ aZW bcy bbc aZW -qPv +vsu bhG -qPv +vsu aZW aZW bif @@ -44585,25 +44585,25 @@ aZG bgH bgH bkE -fkq -fkq -fkq -fkq -fkq -qea -eBC -qyT +gQe +gQe +gQe +gQe +gQe +sud +oDz +rSy bkE -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqZ bqZ bqZ bqZ bqZ -dWT +mjF bqZ bqZ bqZ @@ -44632,16 +44632,16 @@ bGB bGB bGB bGB -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNt -eej -hLh -oXp -tOO -fho +jSg +ufH +fzH +oNm +reP bQW bNt bPg @@ -44730,7 +44730,7 @@ agd agu ahG aif -uTt +mOz aif ahG aaI @@ -44739,7 +44739,7 @@ aaI aaI ahG aif -uTt +mOz aif alL ahA @@ -44748,7 +44748,7 @@ tZS ahA alL aif -uTt +mOz aif alL ahA @@ -44758,10 +44758,10 @@ asm asm asn asn -gBX -oAm -xVr -gyS +tbB +hLI +oyI +wXm asn asn asm @@ -44771,7 +44771,7 @@ ahA ahA alL ayp -cfa +wtE ayp alL ahA @@ -44780,7 +44780,7 @@ ahA ahA alL ayp -cfa +wtE ayp alL ahA @@ -44789,7 +44789,7 @@ ahA ahA alL ayp -cfa +wtE ayp alL ahA @@ -44802,24 +44802,24 @@ aar uBE uBE aLM -hNp -nyN -nyN -nyN -yeS -xqd -oiZ -kGD -xqd -xqd -dNt -kSM -hUB +sDc +aNf +aNf +aNf +yan +dtI +jry +sTE +dtI +dtI +cCH +aFD +pBO aUW -ldp -fMQ -oOA -eco +tSw +qXj +iVZ +pKl aUZ uBE asi @@ -44833,9 +44833,9 @@ aab aZG aZW aZW -kds -tjp -kds +hFY +rux +hFY aZW aZW aZW @@ -44854,44 +44854,44 @@ aZW aZW aZW aZW -qPv -eLs -qPv +vsu +ilA +vsu aZW bjf beB -ekS -ekS -ekS +uOK +uOK +uOK aZG bgH bgH bkE -iao -iao -iao -iao -iao -qea -xQv -kEM -qWl -tjc -tjc -hRR -ejL +pZb +pZb +pZb +pZb +pZb +sud +nqd +lUY +jMt +xpe +xpe +gEL +ykt bqZ -wqJ -wUJ -mIT -lZE -dMz -spo -lHE -mdE -lHE -mpV -rWO +mws +hpa +oeh +jeR +gPd +iKp +mXy +xNQ +mXy +wHb +cgr bqZ bys byR @@ -44904,27 +44904,27 @@ byp bCv btm bzp -jIu -kCo -nZQ +wkx +rXy +kCO bGB -kFp -ujy -xAT -rVe -kTl +hax +ibS +qDh +vZa +qIF bGB -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNt -vrs -hLh -oXp -tOO -iyz -eiT +mZo +ufH +fzH +oNm +olJ +xyg bNt bRK bOj @@ -45012,7 +45012,7 @@ aem afK aaJ ahH -qMx +kIA ahH aaI aaI @@ -45021,7 +45021,7 @@ aaI rxQ aaI ahH -qMx +kIA ahH ahA ahA @@ -45030,30 +45030,30 @@ ahA tZS ahA ahH -qMx +kIA ahH aaI aaI ahA asm -jky -gQg -gQg -wLz -oAm -hKN -sQx -gla -lRl -gQg -gQg -iTF +vCQ +trV +trV +dwu +hLI +cvB +xAS +fFk +dDG +trV +trV +rHX asm ahA ahA ahA ayW -tyx +xsg ayW ahA ahA @@ -45062,7 +45062,7 @@ ahA ahA ahA ayW -tyx +xsg ayW ahA ahA @@ -45071,7 +45071,7 @@ ahA ahA ahA ayW -tyx +xsg ayW tZS ahA @@ -45084,24 +45084,24 @@ aae arM asi aLM -hNp -nyN -nyN -nyN -yeS -xqd -fGJ -ncR -dip -tQf -tic -qFi -srj -hhy -wbl -wbl -seI -iOy +sDc +aNf +aNf +aNf +yan +dtI +kNw +qBf +tvc +tcB +pWI +tlB +kii +giM +oRG +oRG +wwO +jkG aUZ uBE asi @@ -45115,9 +45115,9 @@ aab aZG aZW aZW -kds -omE -kds +hFY +stQ +hFY aZW aZW aZW @@ -45136,44 +45136,44 @@ aZW aZW aZW aZW -qPv -qyH -qPv +vsu +mKx +vsu aZW aZW beB -oMG -oMG -oMG +dSh +dSh +dSh aZG bgH bgH bkE -fkq -fkq -fkq -fkq -fkq -qea -ydM -hnH +gQe +gQe +gQe +gQe +gQe +sud +htL +mTq bkE -tHG -rNE -kYP -ejL +xDE +dcM +cKg +ykt bqZ -qUy -ghS -vvx -hMP -epo -kWQ -myN -vvx -myN -vvx -utx +tFD +cyf +gei +gsz +pHC +cTJ +kiM +gei +kiM +gei +kkv bqZ bys buL @@ -45186,27 +45186,27 @@ byp bCw bAk bzq -vnX -tSy -xFS -iDU -nUZ -nUZ -nUZ -sJL -fhh +tEd +vJo +snU +gWE +kpS +kpS +kpS +mrv +fBc bGB -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNt -vrs -dTu -mMd -mMd -mMd -mMd +mZo +xli +oqx +oqx +oqx +oqx bRq bRL bPg @@ -45294,7 +45294,7 @@ aem afJ aey ahH -qMx +kIA ahH rxQ aaI @@ -45303,7 +45303,7 @@ aaI aaI rxQ ahH -qMx +kIA ahH tZS ahA @@ -45312,30 +45312,30 @@ ahA tZS ahA ahH -qMx +kIA ahH aaI rxQ ahA asm -rzf -hKN -hKN -hKN -hKN -lXX -cth -ikQ -hKN -hKN -hKN -wXR +tCX +cvB +cvB +cvB +cvB +cem +maB +wJN +cvB +cvB +cvB +gGC asm tZS ahA ahA ayW -tyx +xsg ayW ahA ahA @@ -45344,7 +45344,7 @@ ahA ahA ahA ayW -tyx +xsg ayW ahA ahA @@ -45353,7 +45353,7 @@ ahA ahA ahA ayW -tyx +xsg ayW tZS ahA @@ -45366,24 +45366,24 @@ aae ats asi aLM -hNp -nyN -nyN -nyN -yeS -kgh -fGY -eZM -sSw -sSz -hVE -kSM -flA +sDc +aNf +aNf +aNf +yan +jAR +pXj +fcq +ijl +qbg +kpL +aFD +lQK aUW -jGl -fMQ -jAe -lkS +rKd +qXj +cKo +fjD aUZ asi uBE @@ -45397,9 +45397,9 @@ aab aZG aZW aZW -kds +hFY baz -kds +hFY aZW aZW aZW @@ -45418,9 +45418,9 @@ aZW aZW aZW aZW -qPv +vsu bhF -qPv +vsu aZW aZW beB @@ -45431,31 +45431,31 @@ aZG bgH bgH bkE -iao -iao -iao -iao -iao -qea -iao -fwK +pZb +pZb +pZb +pZb +pZb +sud +pZb +jeG bkE -fqN -rNE -kYP -ejL +mIq +dcM +cKg +ykt bqZ -qUy -ghS -vvx -vvx -qkM -kWQ -vvx -vvx -vvx -vvx -tLQ +tFD +cyf +gei +gei +gXa +cTJ +gei +gei +gei +gei +qdr bqZ btm buL @@ -45468,27 +45468,27 @@ bzp bzp bzp bzp -edz -nJk -fGW +hcI +pIc +fwE bGB -drv -txn -txn -fFx -wYt +rhf +qwf +qwf +nVR +oGd bGB -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNt -xnn -jWD -cyN -cyN -cyN -duy +dxD +fuM +vMk +vMk +vMk +uZu bNt bRM bPg @@ -45505,7 +45505,7 @@ aZF aZF aZF bOk -xvy +mvN bRN bOk bmU @@ -45576,7 +45576,7 @@ aem afJ aem ahH -qMx +kIA ahH rxQ aaI @@ -45585,7 +45585,7 @@ aaI aaI rxQ ahH -qMx +kIA ahH tZS ahA @@ -45594,30 +45594,30 @@ ahA ahA ahA ahH -qMx +kIA ahH rxQ rxQ aaI asn -rzf -hKN -hKN +tCX +cvB +cvB aun atQ -gNd -eSu +ncx +uzT auJ awD -hKN -hKN -wXR +cvB +cvB +gGC asn tZS tZS ahA ayW -tyx +xsg ayW ahA ahA @@ -45626,7 +45626,7 @@ ahA ahA ahA ayW -tyx +xsg ayW ahA ahA @@ -45635,7 +45635,7 @@ ahA ahA ahA ayW -tyx +xsg ayW ahA ahA @@ -45648,24 +45648,24 @@ aae arM asi aLM -emm -tyL -tyL -tyL -nNG +vSk +lno +lno +lno +ktN aLM -bXI -xmJ -nNa -lJR -kSM -kSM -qnI +oID +kVq +pFg +tsf +aFD +aFD +kPh aUW -jzM -fMQ -fMQ -cUq +gom +qXj +qXj +qdb aUZ aUZ aUZ @@ -45679,9 +45679,9 @@ aab aZG aZW aZW -kds +hFY baA -kds +hFY aZW aZW bih @@ -45700,9 +45700,9 @@ aZW aZW aZW aZW -qPv +vsu bhG -qPv +vsu aZW aZW aZW @@ -45713,57 +45713,57 @@ aZG bgH bgH bkE -wCr -iao -dMi -bwN -nFu -kVa -iao -inH +qkw +pZb +noi +bgV +mJh +nFn +pZb +mtZ bkE -qvY -rNE -kYP -ejL +jXa +dcM +cKg +ykt bqZ -ptT -lYX -mCu -kqI -wcW -gFC -vHC -ivZ -qxs -mUt -iMl +hzj +sBx +eXx +fTw +lBz +ydA +mOQ +qfD +iWv +fCy +dLI bqZ bxv buL bzp -mTp -oGM -oGM -rYF -oGM -oGM -mtO +cLl +mBw +mBw +dvg +mBw +mBw +qTb bDH -edz -nJk -fGW +hcI +pIc +fwE bGB bGD bGD bIN -wEJ +eTY bGD bGB -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNt bNt bNt @@ -45858,7 +45858,7 @@ aaJ afJ aem aif -qMx +kIA aif aaI rxQ @@ -45867,7 +45867,7 @@ aaI aaI aaI aif -qMx +kIA aif ahA tZS @@ -45876,30 +45876,30 @@ ahA ahA ahA aif -qMx +kIA aif aaI aaI ahG asn -rzf -hKN +tCX +cvB atM -ggj -otr -gNd -eSu -otr -bYZ +htj +skF +ncx +uzT +skF +jkc atQ -hKN -wXR +cvB +gGC asn alL tZS ahA ayp -tyx +xsg ayp ahA ahA @@ -45908,7 +45908,7 @@ ahA ahA ahA ayp -tyx +xsg ayp ahA ahA @@ -45917,7 +45917,7 @@ ahA ahA ahA ayp -tyx +xsg ayp ahA ahA @@ -45936,20 +45936,20 @@ aLM aLM aLM aLM -xoG -xCW -kfy -bZr -kSM -kSM -flA +eiH +ono +lSj +mhp +aFD +aFD +lQK aUX -ldp -fMQ -fMQ -nHW -joN -ryY +tSw +qXj +qXj +wIa +nFL +fxQ aUZ asi asi @@ -45961,9 +45961,9 @@ aab aZG aZW aZW -kds +hFY baD -kds +hFY aZW aZW aZW @@ -45982,9 +45982,9 @@ aZW aZW bih aZW -qPv +vsu bhJ -qPv +vsu aZW aZW aZW @@ -46005,54 +46005,54 @@ bkE bkE bkE bpa -rNE -sEH +dcM +oRe bpa bqZ bqZ -qwK -lcD -vvx -mMy -vvx -vvx -kWQ -qkM -uwC -iSa +tbS +wsz +gei +qJk +gei +gei +cTJ +gXa +esb +tEC bqZ bxv buL bzp -fEI -xFS -muH -eau -nSY -xFS -vgC +rID +snU +iHO +vLC +sDf +snU +rAX bDH -edz -nJk -fGW +hcI +pIc +fwE bGB -uXo -dzQ -nUZ -oAe -fsn +hNS +umk +kpS +eHa +jda bGB -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNv -qAH -sTS -sTS -sTS -sTS -nyM +uTF +vKS +vKS +vKS +vKS +gZf bNv bRN bPg @@ -46140,7 +46140,7 @@ aaJ afJ aem aif -rvV +dNf aif ahH ahH @@ -46149,7 +46149,7 @@ aif ahH ahH aif -rvV +dNf aif ahH ahH @@ -46158,30 +46158,30 @@ aif ahH ahH aif -rvV +dNf aif ahH ahH aif -oTh -oAm -hKN +xLF +hLI +cvB atN -ftO -qjV -qfS -sAN -lIC -kxG +jGZ +rlN +hvc +mnv +dDr +hZi auJ -hKN -gla -sOd +cvB +fFk +mRa ayp ayW ayW ayp -feP +ocy ayp ayW ayW @@ -46190,7 +46190,7 @@ ayp ayW ayW ayp -feP +ocy ayp ayW ayW @@ -46199,7 +46199,7 @@ ayp ayW ayW ayp -feP +ocy ayp ahA ahA @@ -46216,22 +46216,22 @@ aMD aNi aNT aOo -pHQ -jjj -yjU -giK -tDV -bZr -vOu -kSM -flA +iNi +wkX +uTu +efF +pGG +mhp +oKW +aFD +lQK aUX -ldp -joN -lAx -lAx -fMQ -viS +tSw +nFL +jzX +jzX +qXj +lyx aUZ asi asi @@ -46243,9 +46243,9 @@ aab aZG aZU aZW -kds -uIH -kds +hFY +hCj +hFY aZW aZW aZW @@ -46264,9 +46264,9 @@ aZW aZW aZW aZW -qPv -lZg -qPv +vsu +flK +vsu aZW aZW aZW @@ -46274,67 +46274,67 @@ aZW aZW aZW bjU -cER -lCZ -lCZ -lCZ -lCZ -lCZ -lCZ -pRM -lCZ -lCZ -lCZ -lCZ -lCZ -rNE -kYP -kpQ -cHm +hdT +aTC +aTC +aTC +aTC +aTC +aTC +mXl +aTC +aTC +aTC +aTC +aTC +dcM +cKg +jNc +pec bqZ -mkm -irL -rvx -nHL -irU -dlJ -ecD -qkM -mUt -iMl +wOC +cCU +gTB +qHb +hFw +mVP +mmK +gXa +fCy +dLI bqZ btm buL bzp -kYB -xFS -vOg -jWc -ePo -xFS -oMs +evp +snU +pId +vYK +nUc +snU +hTv bDH -edz -nJk -fGW +hcI +pIc +fwE bGB -ijA -nUZ -qxI -lRC -qvm +cmM +kpS +vXB +sXT +nrJ bGB -tnC -faH -qjE -hHs +fSr +dpG +gnv +rAj bNv -pft -mVQ -mVQ -mVQ -mVQ -gnm +xMx +svF +svF +svF +svF +hin bNv bRN bPg @@ -46422,66 +46422,66 @@ aaJ afJ aem aif -lFE -rmv -rmv -rmv -rmv -rmv -rmv -rmv -rmv -tFS -rmv -rmv -rmv -rmv -rmv -rmv -rmv -rmv -oFA -rmv -rmv -rmv -iCD -kfO -qHk -pfN -dFu -dFu -tyt -kVb -foc -ezi -dFu -dFu -hAd -qHk -vEe -gso -iKf -iKf -iKf -cDN -iKf -iKf -iKf -iKf -iKf -iKf -iKf -iKf -mAC -iKf -iKf -iKf -iKf -iKf -iKf -iKf -iKf -xwL +jgw +myq +myq +myq +myq +myq +myq +myq +myq +giR +myq +myq +myq +myq +myq +myq +myq +myq +jlU +myq +myq +myq +slA +ouT +enY +sDJ +wNP +wNP +ejP +hBy +nPd +sAA +wNP +wNP +dRg +enY +xzF +tKE +eFg +eFg +eFg +pyi +eFg +eFg +eFg +eFg +eFg +eFg +eFg +eFg +niG +eFg +eFg +eFg +eFg +eFg +eFg +eFg +eFg +vYP ayp ahA ahA @@ -46498,22 +46498,22 @@ aMD aNj aNj aOp -kSM -eTl -pxt -kJY -tDV -bZr -kSM -kSM -flA +aFD +nbE +viv +dur +pGG +mhp +aFD +aFD +lQK aUX -ldp -lAx -joN -joN -fMQ -enZ +tSw +jzX +nFL +nFL +qXj +ddm aUZ asi asi @@ -46525,9 +46525,9 @@ aab aZG aZX aZW -kds -jjM -kds +hFY +kuy +hFY aZW aZW aZW @@ -46546,9 +46546,9 @@ aZW aZW aZW aZW -qPv -nKl -qPv +vsu +uWv +vsu aZW aZW aZW @@ -46556,23 +46556,23 @@ aZW aZW aZW aZW -oYO -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -kYP -rNE -mxA +tFO +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +cKg +dcM +eNU bqZ bqZ bqZ @@ -46580,43 +46580,43 @@ bqZ bqZ bqZ bqZ -gqG -qkM -uwC -iSa +noX +gXa +esb +tEC bqZ btm buL bzp -edz -xFS -xFS -lna -xFS -xFS -xFS -tmf -xFS -nJk -fGW +hcI +snU +snU +uoX +snU +snU +snU +psK +snU +pIc +fwE bGD -ijA -nUZ -nUZ -oAe -qvm +cmM +kpS +kpS +eHa +nrJ bGD -irt -wsk -wLo -hHs +rUX +sXf +rwb +rAj bNv -kav -mVQ -mVQ -mVQ -mVQ -lBP +hjT +svF +svF +svF +svF +mDB bNv bRN bPg @@ -46704,66 +46704,66 @@ aaJ afJ aem aif -xBg -seh -seh -seh -seh -seh -seh -seh -seh -dkX -fpu -fpu -fpu -fpu -fpu -fpu -fpu -fpu -dgz -fpu -fpu -fpu -fpu -rSD -tzW -uSA -klW -klW -uFp -egq -dEe -jcj -klW -klW -uEn -tzW -kAa -jhZ -jhZ -jhZ -jhZ -pVP -jhZ -jhZ -jhZ -jhZ -jhZ -jhZ -jhZ -jhZ -vSe -qSL -qSL -qSL -qSL -qSL -qSL -qSL -qSL -xNd +cXz +diV +diV +diV +diV +diV +diV +diV +diV +bhr +vJU +vJU +vJU +vJU +vJU +vJU +vJU +vJU +vuT +vJU +vJU +vJU +vJU +eUS +rdf +pxk +ude +ude +kFO +nvg +gfl +gkZ +ude +ude +rUG +rdf +lGM +jPV +jPV +jPV +jPV +gWN +jPV +jPV +jPV +jPV +jPV +jPV +jPV +jPV +cpV +ckt +ckt +ckt +ckt +ckt +ckt +ckt +ckt +vNt ayp ahA ahA @@ -46780,22 +46780,22 @@ aME aNk aNU kRw -pUg -xdz -kSM -kSM -tDV -bZr -kSM -kSM -flA +aUp +sye +aFD +aFD +pGG +mhp +aFD +aFD +lQK aUX -ldp -fMQ -fMQ -fMQ -kIU -tIm +tSw +qXj +qXj +qXj +oQN +rCa aUZ ayc ayc @@ -46807,9 +46807,9 @@ aab aZG aZY aZW -kds +hFY baA -kds +hFY aZW bbc aZW @@ -46828,9 +46828,9 @@ aZW aZW bbc aZW -qPv +vsu bhG -qPv +vsu aZW aZW biN @@ -46838,67 +46838,67 @@ aZW aZW aZW aZW -oYO -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -rNE -pcM -rNE -rNE -rNE -kYP -rNE -pKN +tFO +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +dcM +det +dcM +dcM +dcM +cKg +dcM +kxm brK -phL -dWr -nHQ -tFn -jLZ +uuB +nLj +qKw +hsI +cAQ brK -gqG -qkM -mUt -iMl +noX +gXa +fCy +dLI bqZ btm byS bzq -vnX -ydd -vnX -vnX -vnX -vnX -fpE +tEd +ipq +tEd +tEd +tEd +tEd +wDF bDJ -pyZ -wZI -vnX -nEG -fEP -fEP -fEP -mjY -uDd -iUO -pse -pnh -tBx -pse -pdx -eiR -oVC -oVC -sFF -mVQ -fLV +swg +mAY +tEd +vzo +hDC +hDC +hDC +icE +bHO +vkO +kRR +hUT +xqo +kRR +gzt +tux +vyV +vyV +iHd +svF +vut bNv bRN bPg @@ -46995,7 +46995,7 @@ aif ahH ahH ahH -uJF +pvS ahH ahH ahH @@ -47009,20 +47009,20 @@ aif ahH ahH aif -cHK -ldT -hKN +hrx +nLo +cvB atQ -lCb -rxm -xbh -jQt -smu -kxG +hnC +jwW +rmS +gbr +nJz +hZi auJ -hKN -jWC -xVY +cvB +xnv +nXX ayp ayW ayW @@ -47036,7 +47036,7 @@ ayp ayW ayW ayW -fmm +iwk ayW ayW ayW @@ -47062,21 +47062,21 @@ aMF aNj aNj aOo -hmH -wli -kSM -kSM -tDV -bZr -kSM -kSM -flA +noa +tSR +aFD +aFD +pGG +mhp +aFD +aFD +lQK aUW -crx -xOP -iYH -mUT -vUP +qrv +nMH +nBt +rRt +eLJ aUZ aUZ asi @@ -47089,30 +47089,30 @@ aab aZG aZZ aZW -kds +hFY baD -cuG -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -skm -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -qvU +oHR +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +rQV +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mxp bhJ -qPv +vsu bih aZW aZW @@ -47120,67 +47120,67 @@ aZW aZW aZW aZW -vmP -cSd -gAY -gAY -gAY -gAY -gAY -cSd -gAY -gAY -sVd -rNE -rNE -rNE -kYP -rNE -sWK +soW +nPi +rzv +rzv +rzv +rzv +rzv +nPi +rzv +rzv +xVC +dcM +dcM +dcM +cKg +dcM +nKY brK -lIs -opB -opB -pqO -sOI +hRb +hiX +hiX +mkU +tAL brK -gqG -qkM -uwC -iSa +noX +gXa +esb +tEC bqZ btm byT bzp -edz -tif -xFS -huq -xFS -xFS -xFS -tmf -xFS -nJk -xFS -nUZ -nUZ -nUZ -nUZ -oBs -pdb -nUZ -qjE -hXB -iGf -hHs +hcI +siF +snU +xes +snU +snU +snU +psK +snU +pIc +snU +kpS +kpS +kpS +kpS +chw +pdE +kpS +gnv +qiM +yhX +rAj bNv -lZz -mVQ -mVQ -mVQ -mVQ -tJP +gGp +svF +svF +svF +svF +evv bNv bRN bPg @@ -47274,13 +47274,13 @@ agW ahb aax aif -sXy -gxl -lsu -wKS -jcF -jcF -sMd +idf +koz +vLo +ezP +nGX +nGX +dmr aif hrN abL @@ -47292,18 +47292,18 @@ abL abL alj asn -rzf -hKN +tCX +cvB atR -eGs -flx -gDI -eSu -flx -eBj +qEo +iiI +jJv +uzT +iiI +dnQ atQ -hKN -wXR +cvB +gGC asn alj hrN @@ -47315,13 +47315,13 @@ abL abL abL ayp -gHs -sal -iqx -aTB -lbU -lbU -oln +dgT +prt +qxg +xGf +vaH +vaH +pGU ayp ahA tZS @@ -47344,17 +47344,17 @@ aLN aNl aNl aOo -ilC -wli -wBM -eHm -oNk -bZr -kSM -kSM -flA +jZc +tSR +pZu +uXq +kPE +mhp +aFD +aFD +lQK aUW -mGc +tuR aUZ aUZ aUZ @@ -47371,36 +47371,36 @@ aab aZG baa aZW -kds +hFY aZW baM baQ -eHp -qpV +xLc +kty baM baQ bcd bcA baM -xLZ -xOc +qwz +rjl bcA baM baQ bcd bcA -nZm -gee +iYj +diO bcd bcA aZW -qPv +vsu aZW aZW aZW bjf aZG -kry +wqG aZG beB bkt @@ -47412,57 +47412,57 @@ bkW bkW bkW bkW -ixR -rNE -rNE -rNE -kYP -rNE -sWK +tMK +dcM +dcM +dcM +cKg +dcM +nKY brK -oRx -opB -iHS -uFd -guH -wIc -sgJ -rHY -mUt -iMl +jdU +hiX +uZe +nma +ssk +czM +uRJ +hPS +fCy +dLI bqZ btm buL bzp -ygO -xFS -muH -lOi -nSY -xFS -mIW +oCC +snU +iHO +jUF +sDf +snU +dPe bDK -nje -gSK -kcf +xUn +jvk +mCy bGG -dWL -ivE -ivE -spB -qvm +iMj +imB +imB +msK +nrJ bGD -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNv -hua -mVQ -mVQ -mVQ -mVQ -mVQ +xLv +svF +svF +svF +svF +svF bRr bRN bPg @@ -47556,13 +47556,13 @@ agP ahf agP aif -omx -snp -qMx -nGM -qMx -qMx -lKo +uVJ +ceb +kIA +yjV +kIA +kIA +cwk aif abL abL @@ -47574,18 +47574,18 @@ hrN abL abL asn -rzf -hKN -hKN +tCX +cvB +cvB atQ auJ -gDI -eSu +jJv +uzT awp atQ -hKN -hKN -wXR +cvB +cvB +gGC asn hrN hrN @@ -47597,13 +47597,13 @@ abL abL abL ayp -orc -tyx -tyx -xlx -tyx -tyx -jNT +jHw +xsg +xsg +rkT +xsg +xsg +cYZ ayp tZS ahA @@ -47627,14 +47627,14 @@ aLN aLN aLN aLN -tYb +wBr aLN aLN aLN -mbn -mmN -mmN -kRF +lnN +xRh +xRh +cFj aUZ aUZ aUZ @@ -47653,30 +47653,30 @@ aab aZG bab aZW -cuG -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -xNN -qvU +oHR +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mbl +mxp aZW aZW aZW @@ -47688,63 +47688,63 @@ bgH bgH bgH bkW -dDk -gaP -gaP -gaP -ucs +qYb +svD +svD +svD +kCz bkW -iGk -rNE -rNE -rNE -kYP -rNE -sWK +fug +dcM +dcM +dcM +cKg +dcM +nKY brK -swf -opB -rYH -oge -gHC +kqS +hiX +iOR +pEG +wVj brK -hrJ -qkM -uwC -iSa +tdR +gXa +esb +tEC bqZ btm buL bzp -itt -xFS -vOg -onk -ykR -xFS -qci +iXQ +snU +pId +nyq +iSj +snU +beL bDH -edz -tif -fGW +hcI +siF +fwE bGB -iED -nUZ -nUZ -pGE -gce +eZX +kpS +kpS +wPm +uIk bGB -tnC -faH -qjE -hHs +fSr +dpG +gnv +rAj bNv -hua -mVQ -mVQ -mVQ -mVQ -bwd +xLv +svF +svF +svF +svF +qEn bNv bRM bPg @@ -47839,11 +47839,11 @@ ahg ahn alj aif -nQB -xFi -maq -dvE -yhy +yjE +sKs +eZc +qjn +kvW aif alj abL @@ -47856,18 +47856,18 @@ abL abL abL ass -rzf -hKN -hKN -hKN -hKN -dVK -pPt -ikQ -hKN -hKN -hKN -wXR +tCX +cvB +cvB +cvB +cvB +lXd +oRY +wJN +cvB +cvB +cvB +gGC ass hrN abL @@ -47880,11 +47880,11 @@ abL hrN alL ayp -cFt -qpv -ndo -hTJ -otP +qLn +mBZ +lvy +oDE +iAD ayp alL ahA @@ -47913,10 +47913,10 @@ awe auw auw avU -wWR +mRZ aTS aTS -iIa +xgd auw auw aus @@ -47970,63 +47970,63 @@ bkj bgH bgH bkW -uwv -cYr -cYr -cYr -nxs +lPg +blo +blo +blo +xaY bkW -qjG -lDP -lDP -lDP -sdO -rNE -sWK +sTx +amP +amP +amP +pHB +dcM +nKY brK -uVu -hox -gcN -oge -ftK +oOn +wWm +dwF +pEG +uOl brK -fGZ -qkM -hdo -qQB +enQ +gXa +dcJ +oZw bqZ bys buL bzp -rvD -wYl -wYl -dXJ -wYl -biT -iTn +ncU +cGB +cGB +mfT +cGB +cuy +cUO bDH -hiP -tNd -xXV +nVf +vuz +eKb bGB -gUE -lDI -ezL -pJu -leC +pyE +sjv +xTd +cbp +wNu bGB -irt -oMz -hEk -hHs +rUX +emO +evY +rAj bNv -pft -mVQ -mVQ -mVQ -mVQ -fTN +xMx +svF +svF +svF +svF +tLn bNv bRN bPg @@ -48089,9 +48089,9 @@ aab aab aae aak -eeC -enJ -kLh +qhJ +gUU +oFZ aaJ aaJ aaJ @@ -48114,9 +48114,9 @@ aax aax aax aax -eeC -enJ -kLh +qhJ +gUU +oFZ ahg agP abL @@ -48138,18 +48138,18 @@ abL hrN abL ass -hjf -iVr -iVr -gDS -ldT -fkt -sQx -jWC -gDS -iVr -iVr -gzW +usA +kcP +kcP +sen +nLo +qLA +xAS +xnv +sen +kcP +kcP +oPW ass abL abL @@ -48195,10 +48195,10 @@ awe auw auw auw -wWR +mRZ aTS aTS -iIa +xgd auw auw atq @@ -48252,19 +48252,19 @@ bjA bgH bgH bkW -uwv -cYr -cYr -cYr -nxs -jBJ -gDw -rNE -rNE -rNE -kYP -rNE -toS +lPg +blo +blo +blo +xaY +iCR +cip +dcM +dcM +dcM +cKg +dcM +tJX brK brK brK @@ -48295,20 +48295,20 @@ bEF bEF bEF bGD -juQ -rxZ +rvA +mfx bGB -irt -faH -qjE -hHs +rUX +dpG +gnv +rAj bNv -qtE -pAY -pAY -pAY -pAY -kgG +nZe +kDG +kDG +kDG +kDG +tdP bNv bRN bPg @@ -48371,34 +48371,34 @@ aab aab aae aal -qNu +nkW aaL aaM -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ -soZ +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH +sxH aaM aaL -hMi +qmJ ahg agP abL @@ -48424,10 +48424,10 @@ ass ass asn asn -uLp -qGt -mhG -umq +fNq +cNV +dxg +oce asn asn ass @@ -48477,10 +48477,10 @@ awe auw auw auw -wWR +mRZ aTS aTS -iIa +xgd auw auw aus @@ -48534,19 +48534,19 @@ bjA bgH bgH bkW -uwv -cYr -cYr -cYr -nxs -fqN -rNE -rNE -rNE -cph -hRR -rNE -ejL +lPg +blo +blo +blo +xaY +mIq +dcM +dcM +dcM +pDs +gEL +dcM +ykt bkt bsy btm @@ -48576,14 +48576,14 @@ biP bGH bHB bEF -iOL -juQ -leC +hma +rvA +wNu bGB -irt -faH -qjE -qjE +rUX +dpG +gnv +gnv bNv bNv bNv @@ -48653,7 +48653,7 @@ aab aab aae aam -dZF +hwS aaM aaM aaM @@ -48680,7 +48680,7 @@ aaM aaM aaM aaM -pls +wuX ahf aax abL @@ -48707,8 +48707,8 @@ abL abL alj auL -fkt -cRK +qLA +tpq auL alj abL @@ -48759,10 +48759,10 @@ awe auw auw auw -wWR +mRZ aTS aTS -iIa +xgd auw auw atq @@ -48816,19 +48816,19 @@ bjA bku bgH bkW -uwv -cYr -cYr -cYr -nxs -fqN -rNE -rNE -rNE -rNE -ruY -tjc -tjc +lPg +blo +blo +blo +xaY +mIq +dcM +dcM +dcM +dcM +jFV +xpe +xpe brL bsz bsz @@ -48853,19 +48853,19 @@ bsz bDi btm bEF -sIf +pTD bGg bGI bHC bEF -hqa -jZX -cQG +cTZ +ptp +ror bGB -irt -faH -qjE -vcw +rUX +dpG +gnv +rcd boJ bOi bOO @@ -48936,7 +48936,7 @@ aab aae aan aax -srb +gYA aaM abp abJ @@ -48961,7 +48961,7 @@ abJ abJ aiP aaM -syQ +urG aax ahg aax @@ -49041,10 +49041,10 @@ awe auw auw auw -wWR +mRZ aTS aTS -iIa +xgd auw auQ auw @@ -49098,22 +49098,22 @@ bjA bhD bgH bkW -uwv -cYr -cYr -cYr -nxs -qvY -sVd -rNE -rNE -rNE -kYP -rNE -oKH +lPg +blo +blo +blo +xaY +jXa +xVC +dcM +dcM +dcM +cKg +dcM +ifB brM brM -cOC +hEr brM brM bvv @@ -49140,14 +49140,14 @@ bGI bGJ bHD bIq -uDd -qMc -qvm +bHO +qmE +nrJ bGB -irt -oMz -dED -mEd +rUX +emO +hxD +ifd bNx bOj bOj @@ -49218,7 +49218,7 @@ aab aaf aan aax -srb +gYA aaM abq abK @@ -49243,7 +49243,7 @@ abK abK abq aaM -syQ +urG aax ahg aax @@ -49323,10 +49323,10 @@ awg aww auw auw -wWR +mRZ aTS aTS -iIa +xgd auw auw auw @@ -49380,26 +49380,26 @@ bjA bgH bgH bkW -uwv -cYr -cYr -cYr -nxs +lPg +blo +blo +blo +xaY bkW -mBY -rNE -rNE -rNE -kYP -rNE -ejL +rOH +dcM +dcM +dcM +cKg +dcM +ykt brN -hGP -kKD -hCl +cvd +xxP +jgb brM -xJK -xJK +vhN +vhN bvy bvv bxv @@ -49422,14 +49422,14 @@ bFn bGI bHE bEF -wSC -oAe -qvm +mrg +eHa +nrJ bGB -irt -faH -qjE -vcw +rUX +dpG +gnv +rcd boJ bOk bOk @@ -49500,7 +49500,7 @@ aab aad aao aay -srb +gYA aaM abq abK @@ -49525,7 +49525,7 @@ abK abK abq aaM -syQ +urG aaA ahg agP @@ -49605,10 +49605,10 @@ auw awe auw auw -ijl -hqf -hqf -duB +uKb +dFG +dFG +nBy auw auw auw @@ -49662,27 +49662,27 @@ bjA bgH bgH bkW -uJR -ebi -ebi -ebi -sJQ +tSy +vTR +vTR +vTR +loW bkW -oIh -rNE -rNE -rNE -kYP -rNE -ejL +grF +dcM +dcM +dcM +cKg +dcM +ykt brN -wkW -ebv -gBG +kjA +tYV +kmb brM -xJK +vhN bvy -xJK +vhN bvv bxv buL @@ -49704,14 +49704,14 @@ bEH bEH bEH bEH -pnT -lRC -ciK +tWf +sXT +lWn bGB -irt -faH -qjE -vcw +rUX +dpG +gnv +rcd boJ bmQ bmT @@ -49782,7 +49782,7 @@ aab aae aan aaz -srb +gYA aaM abq abK @@ -49807,7 +49807,7 @@ abK abK abq aaM -syQ +urG aax ahg agP @@ -49950,21 +49950,21 @@ bkW bkW bkW bkW -ktI -rNE -rNE -rNE -ruY -tjc -tjc -wqf -rXW -cIu -nCg +xaN +dcM +dcM +dcM +jFV +xpe +xpe +iXv +pHr +cUZ +oqR brM bvx bvy -xJK +vhN bwU btm buL @@ -49986,14 +49986,14 @@ bGh bGK bHF bEH -gBe -oAe -qvm +sPe +eHa +nrJ bGB -irt -faH -qjE -vcw +rUX +dpG +gnv +rcd boJ boJ bml @@ -50064,7 +50064,7 @@ aab aae aan aax -srb +gYA aaM abq abK @@ -50089,7 +50089,7 @@ abK abK abq aaM -syQ +urG aax ahg agP @@ -50157,10 +50157,10 @@ asi asi aKf aKf -nNI -nNI -mfN -hLL +nRl +nRl +udN +cSL aKf aKf avx @@ -50232,20 +50232,20 @@ bgH bgH bgH bnA -fqN -rNE -rNE -rNE -kYP -rNE -ejL +mIq +dcM +dcM +dcM +cKg +dcM +ykt brN -xfY -ebv -pqY +iIg +tYV +ifR brM bvy -xJK +vhN bvy bvv bxw @@ -50263,20 +50263,20 @@ byp buL bDN bEH -rtE +cBg bGj bGL bHG bEH -gBe -oAe -qvm +sPe +eHa +nrJ bGB -irt -faH -qjE -wzz -wHz +rUX +dpG +gnv +jlc +vEG boJ bmQ bmU @@ -50346,7 +50346,7 @@ aab aae aap aax -srb +gYA aaM abq abK @@ -50371,7 +50371,7 @@ abK abK abq aaM -syQ +urG aax ahg ahn @@ -50438,12 +50438,12 @@ abc asi asi aKf -upm -kRI -kRI -kRI -kRI -kRI +etl +hXo +hXo +hXo +hXo +hXo aKf aus auw @@ -50514,19 +50514,19 @@ bgH bgH bgH bkt -kFR -sHH -gAY -rNE -kYP -gAY -rNE -pkm -ebv -ucU -tII +kiX +qqr +rzv +dcM +cKg +rzv +dcM +nZJ +tYV +ppQ +jLN brM -xJK +vhN bvy bvy bvv @@ -50550,15 +50550,15 @@ bGL bGM bHH bIr -cPz -sxh -gce +sdJ +xBh +uIk bGB -prh -faH -qjE -tTt -hbI +lfK +dpG +gnv +mOL +awI boJ bmi bmU @@ -50628,7 +50628,7 @@ aab aae aak aaA -srb +gYA aaM abq abK @@ -50653,7 +50653,7 @@ abK abK abq aaM -syQ +urG aaA ahg agP @@ -50720,12 +50720,12 @@ aJy aJM asi aKf -fJo -kiw -kRI -kRI -kRI -rnT +pNy +lnT +hXo +hXo +hXo +srs aKf auw auw @@ -50799,8 +50799,8 @@ bkt bkt bkt bpa -rNE -sEH +dcM +oRe bpa brh brh @@ -50832,14 +50832,14 @@ bFr bGL bHI bEH -lEQ -cBe -uHe +dZD +sQU +tNs bGB -irt -faH -qjE -vcw +rUX +dpG +gnv +rcd boJ boJ bmU @@ -50910,7 +50910,7 @@ aab aae aaq aax -srb +gYA aaM abq abK @@ -50935,7 +50935,7 @@ abK abK abq aaM -syQ +urG aax ahg agP @@ -51002,13 +51002,13 @@ abn aJK asi aKf -rPq -kRI -hLL -hLL -kRI -kRI -dwf +vry +hXo +cSL +cSL +hXo +hXo +ydv auw auw auw @@ -51080,20 +51080,20 @@ bkI bkI bkI bkI -jby -qjE -gPB -xqh +aKM +gnv +rBj +uGu brh -uKr -tvi -rvB -eDF -eDF -eDF -eDF -eDF -tOg +fBL +cOK +eOz +cUV +cUV +cUV +cUV +cUV +rgo bxx bxT byp @@ -51118,10 +51118,10 @@ bGB bGB bGB bGB -irt -faH -qjE -vcw +rUX +dpG +gnv +rcd boJ bmT bmU @@ -51192,7 +51192,7 @@ aab aaf aal hrN -srb +gYA aaM abq abK @@ -51217,7 +51217,7 @@ abK abK abq aaM -syQ +urG aax agC agW @@ -51284,12 +51284,12 @@ aJH asi asi aKf -jlk -hLL -hLL -kRI -kRI -kyk +lST +cSL +cSL +hXo +hXo +nzc aKf avz auw @@ -51353,29 +51353,29 @@ bjA bgH bgH bkI -nOW -jjt -ugQ -jjt -nOW -jjt -nOW -jjt +lLl +uHK +bWe +uHK +lLl +uHK +lLl +uHK bkI -uIB -qjE -gPB -vcw +fbg +gnv +rBj +rcd bri -ieM -rSQ +gAk +dXe btt btY buN bvz bvW -rSQ -sOM +dXe +qcY brh buL byp @@ -51400,10 +51400,10 @@ btm btm bDN bkt -irt -faH -qjE -vcw +rUX +dpG +gnv +rcd boJ bml bmU @@ -51474,7 +51474,7 @@ aab aac aam aax -srb +gYA aaM abq abK @@ -51499,7 +51499,7 @@ abK abK abq aaM -syQ +urG aax agP agP @@ -51566,12 +51566,12 @@ aJI uBE asi aKf -hLL -hLL -kRI -kRI -kRI -mgV +cSL +cSL +hXo +hXo +hXo +wxB aKf aus auw @@ -51635,33 +51635,33 @@ bjA bgH bgH bkI -nOW -pyj -nOW -wEu -mjM -pyj -nOW -pyj +lLl +fGH +lLl +jZq +ilr +fGH +lLl +fGH boH -uIB -qjE -gPB -vcw +fbg +gnv +rBj +rcd bri -ieM -rSQ +gAk +dXe btu btZ bub bub bvX -rSQ -sOM +dXe +qcY brh buL byq -gQY +sch byU byp aZF @@ -51682,10 +51682,10 @@ bsz bsz bsz brL -dED -jCj -qjE -wxW +hxD +oFY +gnv +uuM boJ bmQ bmU @@ -51756,7 +51756,7 @@ aab aac aan aaA -srb +gYA aaM abq abK @@ -51781,7 +51781,7 @@ abK abK abq aaM -syQ +urG aaA aax aax @@ -51849,10 +51849,10 @@ asi asi aKf aKf -hLL -gKH -iTH -upm +cSL +vUG +jtt +etl aKf aKf aus @@ -51917,29 +51917,29 @@ bjA bgH bgH bkI -iHF -pyj -nOW -iQm -nOW -pyj -nOW -pyj +nuu +fGH +lLl +duX +lLl +fGH +lLl +fGH boH -uIB -qjE -gPB -qjE -lGm -rSQ -rSQ +fbg +gnv +rBj +gnv +qhd +dXe +dXe btv bua buO bvA bvY -rSQ -sOM +dXe +qcY brh buL byq @@ -51964,10 +51964,10 @@ bEJ bEJ bEJ bEJ -uIB -faH -qjE -vcw +fbg +dpG +gnv +rcd boJ bmQ bmT @@ -52038,7 +52038,7 @@ aab aac aan aax -srb +gYA aaM abq abK @@ -52063,7 +52063,7 @@ abK abK abq aaM -syQ +urG aax aax aax @@ -52199,29 +52199,29 @@ bjA bgI bgH bkI -nOW -pyj -nOW -iQm -nOW -pyj -nOW -pyj +lLl +fGH +lLl +duX +lLl +fGH +lLl +fGH boH -uIB -qjE -gPB -qjE -rSQ -rSQ -rSQ +fbg +gnv +rBj +gnv +dXe +dXe +dXe btv bub bub bub bvZ -rSQ -sOM +dXe +qcY brh buL btm @@ -52246,10 +52246,10 @@ bGm bGN bKj bEJ -uIB -faH -qjE -vcw +fbg +dpG +gnv +rcd bNA bNA bNA @@ -52320,7 +52320,7 @@ aab aac aap aax -srb +gYA aaM abr abJ @@ -52345,7 +52345,7 @@ abJ abJ aiQ aaM -syQ +urG aax aax abL @@ -52481,29 +52481,29 @@ bjA bgH bgH bkI -pyj -pyj -pyj -iQm -pyj -pyj -pyj -opG +fGH +fGH +fGH +duX +fGH +fGH +fGH +mYw bkI -uIB -qjE -gPB -vcw +fbg +gnv +rBj +rcd bri -ieM -rSQ +gAk +dXe btv bub bub bub bvZ -rSQ -sOM +dXe +qcY brh bxU btm @@ -52528,12 +52528,12 @@ bFt bFt bKk bEJ -uIB -faH -qjE -vcw -eKG -epF +fbg +dpG +gnv +rcd +cJt +vdL bOP bPh bPR @@ -52601,7 +52601,7 @@ aab aab aac aar -eeC +qhJ aaM aaM aaM @@ -52628,7 +52628,7 @@ aaM aaM aaM aaM -kLh +oFZ abL abL abL @@ -52763,29 +52763,29 @@ bjA bgH bgH bkI -pyj -pyj -pyj -eom -lkZ -lkZ -lkZ -lkZ -eHK -dED -dED -jCj -vcw +fGH +fGH +fGH +qFZ +xty +xty +xty +xty +xvI +hxD +hxD +oFY +rcd bri -ieM -rSQ +gAk +dXe btv bub bub bub bvZ -rSQ -sOM +dXe +qcY brh byS bsz @@ -52810,10 +52810,10 @@ bIs bIs bIs bKS -dED -jCj -qjE -qjE +hxD +oFY +gnv +gnv bNF bOn bOn @@ -52883,34 +52883,34 @@ aab aab aac aae -qNu +nkW aaL aaM -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU -kyU +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo +wuo aaM aaL -hMi +qmJ abL abL abL @@ -53045,29 +53045,29 @@ bjA bgH bgH bkI -wHH -pyj -qFe -wEG -qFe -qFe -pyj -vvO +dNw +fGH +qPT +pCZ +qPT +qPT +fGH +sbM bkI -xwx -qjE -oMz -mEd +paz +gnv +emO +ifd brl -jzN -hxc +acr +niJ btw buc buP buc bwa -rSQ -uUw +dXe +oeU brh buL btm @@ -53083,7 +53083,7 @@ byI byI byI bEJ -kuC +vYY bFt bFt bFt @@ -53092,10 +53092,10 @@ bFt bFt bKl bEJ -uIB -faH -nZi -qjE +fbg +dpG +pLV +gnv bND bOn bOn @@ -53165,9 +53165,9 @@ aab aab aac aae -dZF -tiz -pls +hwS +gZA +wuX aax aax aax @@ -53190,9 +53190,9 @@ aax aax aax aax -dZF -tiz -pls +hwS +gZA +wuX abL abL abL @@ -53302,12 +53302,12 @@ azp ayQ ayQ azH -iNx -iHO -iNS -iNS -iHO -mvA +vIe +xCg +lsn +lsn +xCg +dJd azH ayQ ayC @@ -53327,43 +53327,43 @@ bjA bgH bgH bkI -pyj -ugC -gIE -fRl -coq -xDw -riQ -pyj +fGH +dUd +bNe +hBb +eQc +lVU +xsO +fGH boH -uIB -qjE -gPB -vcw +fbg +gnv +rBj +rcd bri -ieM -rSQ +gAk +dXe btv bub bub bub bvZ -rSQ -sOM +dXe +qcY brh buL btm byI -mRi -ule -qoD -srr -juG -eYB -vRd -lNy -lNy -hVq +xan +lHj +eOa +lSk +mfk +ezh +kMr +mqI +mqI +lQx bEJ bFs bGm @@ -53374,10 +53374,10 @@ bGm bGN bKj bEJ -uIB -yia -dED -dED +fbg +nUn +hxD +hxD bNE bOo bOQ @@ -53583,14 +53583,14 @@ ayC ayC ayQ ayQ -iNx +vIe bcB bdj bdk bdk bfb bfr -mvA +dJd ayQ ayQ ayQ @@ -53609,43 +53609,43 @@ bjA bgH bgH bkI -pyj -ugC -xDw -jmZ -coq -coq -riQ -pyj +fGH +dUd +lVU +rXD +eQc +eQc +xsO +fGH boH -uIB -qjE -gPB -vcw +fbg +gnv +rBj +rcd bri -ieM -rSQ +gAk +dXe btv bub buQ bub bvZ -rSQ -sOM +dXe +qcY brh buL btm byI -lBo -lTV -lTV -lTV -oyW -lTV -lTV -lTV -lTV -wiN +epU +nWm +nWm +nWm +vVK +nWm +nWm +nWm +nWm +wBd bEJ bEJ bEJ @@ -53656,11 +53656,11 @@ bEJ bEJ bEJ bEJ -nJx -oMz -hEk -vcw -eKG +fTa +emO +evY +rcd +cJt bOn bOR bPk @@ -53865,14 +53865,14 @@ azm ayC ayQ ayQ -ebE +glS bcC bdk bdk bdk bdk bfs -kev +siq ayQ bas ayQ @@ -53891,43 +53891,43 @@ bjA bgH bgH bkI -pyj -pyj -poi -ddu -poi -poi -pyj -pyj +fGH +fGH +xiy +fZH +xiy +xiy +fGH +fGH boH -uIB -tpz -jCj -qjE -lGm -rSQ -rSQ +fbg +dCC +oFY +gnv +qhd +dXe +dXe btv bub buR bub bvZ -rSQ -sOM +dXe +qcY brh buL btm byI -lBo -xfr -ugc -xTb -jlV -xfr -uYX -lUt -hAP -wiN +epU +gEd +mnM +eos +nne +gEd +sfw +sGL +dwN +wBd bEK bFw bGo @@ -53938,11 +53938,11 @@ bGo bGO bKm bEK -uIB -faH -qjE -vcw -eKG +fbg +dpG +gnv +rcd +cJt bOn bOR bPk @@ -54147,14 +54147,14 @@ ayC ayC ayQ ayQ -ebE +glS bcD bdk bdk bdk bdk bft -kev +siq bag beG bbg @@ -54173,43 +54173,43 @@ bjA bgH bgH bkI -pyj -pyj -nzZ -hXu -sIE -pyj -pyj -pyj +fGH +fGH +srx +mOG +sTI +fGH +fGH +fGH bkI -uIB -qjE -gPB -qjE -rSQ -rSQ -rSQ +fbg +gnv +rBj +gnv +dXe +dXe +dXe btx bud buS bvB bwb -rSQ -sOM +dXe +qcY brh buL btm byI -lBo -xfr -gDh -pJm -jlV -xfr -pJm -ugc -hAP -wiN +epU +gEd +gHQ +iqY +nne +gEd +iqY +mnM +dwN +wBd bEK bFx bFx @@ -54220,10 +54220,10 @@ bFx bFx bKn bEK -uIB -faH -qjE -qjE +fbg +dpG +gnv +gnv bND bOn bOR @@ -54429,14 +54429,14 @@ ayl ayC ayQ ayQ -ebE +glS bcE bdk -oXh +wFR beI bdk bft -kev +siq bah aaP aba @@ -54464,34 +54464,34 @@ bkI bkI bkI bkI -uIB -qjE -gPB -vcw +fbg +gnv +rBj +rcd bri -ieM -rSQ +gAk +dXe btv bub buR bub bvZ -rSQ -sOM +dXe +qcY brh buL btm byI -ybE -xfr -ugc -xtU -jlV -xfr -oZp -pJm -hAP -ouN +rua +gEd +mnM +uke +nne +gEd +oAZ +iqY +dwN +hQo bEK bFy bFx @@ -54502,10 +54502,10 @@ bIt bIt bIt bKT -dED -jCj -qjE -qjE +hxD +oFY +gnv +gnv bND bOn bOR @@ -54746,36 +54746,36 @@ bgH bkH bos boJ -uIB -vlz -gPB -vcw +fbg +omz +rBj +rcd bri -ieM -rSQ +gAk +dXe bty bue buT bvC bwc -rSQ -sOM +dXe +qcY brh buL bys byI -sJp -xfr -lUt -xTb -jlV -xfr -iqF -pvk -hAP -dZK +wsW +gEd +sGL +eos +nne +gEd +vOo +gCY +dwN +qpp bEK -wae +xZH bFx bFx bFx @@ -54784,10 +54784,10 @@ bFx bFx bKo bEK -hgf -faH -qjE -qjE +xOn +dpG +gnv +gnv bNF bOn bOS @@ -54900,8 +54900,8 @@ akC akC akC akC -saK -lPV +qru +eOP arD arD arD @@ -54911,8 +54911,8 @@ arD arD arD arD -rQB -oty +iWB +lWC arD arD arD @@ -54922,9 +54922,9 @@ axk axk axk axk -tOp -pLn -eQK +hsU +cAt +iyT aBc aBc aBc @@ -54994,12 +54994,12 @@ ayC ayQ ayQ bci -uFt -ewc -hfT -sYK -iSx -tFo +vKk +gob +wPV +nSn +lSd +nEw bci aaC aaC @@ -55028,34 +55028,34 @@ bgH bgH bgH boK -uIB -qjE -gPB -wxW +fbg +gnv +rBj +uuM brh -vua -ojC -ojC -ojC -fKK -ojC -ojC -ojC -gsn +xmz +gzT +gzT +gzT +uVy +gzT +gzT +gzT +jLM brh buL byt byI -uaI -hpp -lTV -lTV -iRg -hpp -lTV -lTV -hpp -lIE +tEz +xgL +nWm +nWm +ryD +xgL +nWm +nWm +xgL +sKf bEK bFw bGo @@ -55066,11 +55066,11 @@ bGo bGO bKm bEK -wBG -faH -qjE -vcw -eKG +cvC +dpG +gnv +rcd +cJt bOp bOT bPm @@ -55085,13 +55085,13 @@ bRt bRt bRR boJ -mdx -xrF -ezK -rgq -ezK -jRA -gQJ +ylH +eBI +gyS +suT +gyS +qYt +qcQ boJ bPg bRN @@ -55168,22 +55168,22 @@ abL abL abL akC -uza +egQ alk -oGH +cSo alk -uza +egQ alk -jVy +cof alk -jVy +cof alk -jVy +cof alk -jVy +cof alk -xts -uBZ +ybb +quN arE arP arQ @@ -55193,31 +55193,31 @@ ast arQ arP arE -djA -gPd +nOq +tnn arE arP arQ ast axl -wtH -vgH -gRE +cNS +vtg +ucz axl -dfX -euc -lLQ +vig +liY +wTE aBc -oVY -cjg -vRA -vHS -eel +riB +sSZ +ihR +jHV +nVN aEh -mSJ -whP -pMP -qeA +jZC +eiA +oxo +hBU aGL aHg aHD @@ -55276,12 +55276,12 @@ ayC ayQ ayQ bci -fxE -idk -mYT -idk -idk -dyP +cwU +kEv +kPU +kEv +kEv +erD bci aaC aaC @@ -55310,16 +55310,16 @@ bhj bhj bhj boJ -uIB -qjE -gPB -vcw +fbg +gnv +rBj +rcd brh brh bri bri bri -sIU +tpL bri bri brh @@ -55330,12 +55330,12 @@ bkt byI bzb bzb -lTV -joR +nWm +xNo bAP bzb -lTV -joR +nWm +xNo bzb bzb bEK @@ -55348,16 +55348,16 @@ bEK bEK bEK bEK -eTR -faH -qjE -vcw +kny +dpG +gnv +rcd bNA -eKG +cJt bND bPn bND -eKG +cJt bNA boJ boJ @@ -55367,13 +55367,13 @@ boJ boJ boJ boJ -lTJ -qjE -qjE -qjE -qjE -qjE -lIM +upL +gnv +gnv +gnv +gnv +gnv +uiP boJ bPg bRN @@ -55450,22 +55450,22 @@ abL abL abL akC -ubT +gCC alk -ksR +khz alk -ubT +gCC alk -fbn +hVM alk -fbn +hVM alk -fbn +hVM alk -fbn +hVM alk -xts -euc +ybb +liY arF arQ arQ @@ -55475,31 +55475,31 @@ asu arQ arQ arF -qKv -nvu +gDE +eaD arF arQ arQ asu axl -pSF -nED -fwA +smx +tOo +uAh axl -dfX -euc -lLQ +vig +liY +wTE aBc -gNt -oXm -ylR -oXm -tMH +lGq +dit +jaF +dit +iAa aEi -feN -fBz -ctn -lfh +gYs +pFy +vIi +nMC aGL aHh aHh @@ -55558,12 +55558,12 @@ azp ayQ ayC bci -wpP -jZs -onM -unS -idk -rJc +nQN +kQs +veK +hkn +kEv +pXk bci aaC aaC @@ -55592,70 +55592,70 @@ aZF aZF aZF boJ -uIB -qjE -gPB -wzz -xrF -vtt -xrF -xrF -xrF -vzp -xrF -xrF -vtt -xrF -xrF -vzp -xrF -xrF -xrF -xrF -qjE -qjE -bbN -xrF -qjE -qjE -xrF -xrF -xrF -xrF -xrF -xrF -vtt -xrF -xrF -xrF -xrF -xrF -uUH -faH -qjE -qjE -vtt -xrF -qjE -gPB -qjE -xrF -xrF -xrF -xrF -xrF -xrF -vtt -xrF -kwN +fbg +gnv +rBj +jlc +eBI +lPa +eBI +eBI +eBI +gES +eBI +eBI +lPa +eBI +eBI +gES +eBI +eBI +eBI +eBI +gnv +gnv +eLM +eBI +gnv +gnv +eBI +eBI +eBI +eBI +eBI +eBI +lPa +eBI +eBI +eBI +eBI +eBI +nZp +dpG +gnv +gnv +lPa +eBI +gnv +rBj +gnv +eBI +eBI +eBI +eBI +eBI +eBI +lPa +eBI +qzn bTc -uIB -qjE -qjE -qjE -qjE -qjE -lIM +fbg +gnv +gnv +gnv +gnv +gnv +uiP boJ bPg bRN @@ -55732,22 +55732,22 @@ abL abL abL akC -czy -xhh -czy -czy -czy -uOg -czy -czy -czy -czy -czy -czy -czy +fme +pHp +fme +fme +fme +qat +fme +fme +fme +fme +fme +fme +fme alk -xts -uBZ +ybb +quN arE arE arE @@ -55757,31 +55757,31 @@ arE arE arE arE -djA -gPd +nOq +tnn arE arE arE arE axl -pSF -nED -wyk +smx +tOo +jAA axl -dfX -euc -lLQ +vig +liY +wTE aBc -gNt -fkV -uZe -lHf -sZF +lGq +emF +uDH +nku +tno aEj -feN -fBz -iqB -lfh +gYs +pFy +kyu +nMC aGM aHh aHh @@ -55840,12 +55840,12 @@ ayQ ayQ ayC bci -nIg -idk -bEa -idk -idk -fVx +wgB +kEv +dDq +kEv +kEv +wGO bci aaC aaC @@ -55874,70 +55874,70 @@ aZF aZF aZF boJ -uIB -qjE -gPB -qjE -qjE -eNr -qjE -qjE -qjE -vzp -qjE -qjE -qjE -qjE -qjE -vzp -qjE -qjE -eNr -qjE -vlz -qjE -vzp -qjE -qjE -qjE -qjE -mZh -omi -wLo -qjE -qjE -qjE -eNr -qjE -qjE -qjE -qjE -qjE -wsk -wLo -qjE -qjE -qjE -qjE -gPB -qjE -qjE -eNr -qjE -qjE -vlz -qjE -qjE -qjE -qjE -tGd -qjE -qjE -qjE -qjE -eNr -qjE -lIM +fbg +gnv +rBj +gnv +gnv +wXA +gnv +gnv +gnv +gES +gnv +gnv +gnv +gnv +gnv +gES +gnv +gnv +wXA +gnv +omz +gnv +gES +gnv +gnv +gnv +gnv +sxM +uKq +rwb +gnv +gnv +gnv +wXA +gnv +gnv +gnv +gnv +gnv +sXf +rwb +gnv +gnv +gnv +gnv +rBj +gnv +gnv +wXA +gnv +gnv +omz +gnv +gnv +gnv +gnv +tMU +gnv +gnv +gnv +gnv +wXA +gnv +uiP boJ bPg bRN @@ -56014,22 +56014,22 @@ abL abL abL akC -jUB -oue -oue -qAs -czy -czy -czy -czy -czy -czy -czy -czy -ueY +gbe +sOd +sOd +jKo +fme +fme +fme +fme +fme +fme +fme +fme +njU alk -xts -uBZ +ybb +quN arE arP arQ @@ -56039,31 +56039,31 @@ ast arQ arP arE -djA -gPd +nOq +tnn arE arP arQ ast axl -nfE -xxE -ixU -hxB -efj -nlW -lLQ +pIw +qVs +dle +pPZ +szv +nSk +wTE aBc -gNt -uXT -xtj -pLL -oXm -ggJ -fBz -fBz -iqB -lfh +lGq +pjg +uKi +hJB +dit +muI +pFy +pFy +kyu +nMC aGM aHi aHE @@ -56122,12 +56122,12 @@ ayQ ayQ ayQ bci -jAX -idk -bEa -idk -idk -kyq +veI +kEv +dDq +kEv +kEv +xIH bci aaC aaC @@ -56156,70 +56156,70 @@ aZF aZF aZF boJ -jHq -qjE -xEv -pse -pse -ooF -pse -pse -pse -ooF -pse -pse -pse -pse -pBo -ooF -pse -pse +rQp +gnv +sux +kRR +kRR +csJ +kRR +kRR +kRR +csJ +kRR +kRR +kRR +kRR ooF -pse -pse -pse +csJ +kRR +kRR +csJ +kRR +kRR +kRR +csJ +kRR +kRR +kRR +kRR +czG +kxA +hJE +kRR +kRR +kRR +csJ +kRR +kRR +kRR ooF -pse -pse -pse -pse -xsJ -lua -tFA -pse -pse -pse -ooF -pse -pse -pse -pBo -pse -tbQ -lrJ -pse -pse -pse -pse -wLS -pse -pse -qIb -pse -pse -pse -pse -pse -pse -pse -pse -pse -pse -pse -pse -dls -qjE -lIM +kRR +xmj +oFC +kRR +kRR +kRR +kRR +stb +kRR +kRR +dUN +kRR +kRR +kRR +kRR +kRR +kRR +kRR +kRR +kRR +kRR +kRR +kRR +sRc +gnv +uiP boJ bPg bRN @@ -56296,22 +56296,22 @@ abL abL abL akC -evk -czy -czy -qnD -jJK -oue -oue -oue -oue -oue -oue -oue -svZ -qdj -lLP -lXs +wjd +fme +fme +tPA +yko +sOd +sOd +sOd +sOd +sOd +sOd +sOd +wTL +oRP +eJV +vkD arF arQ arQ @@ -56321,31 +56321,31 @@ atm arQ arQ arF -qKv -nvu +gDE +eaD arF arQ arQ asu axl -jQD -nED -nED -nED -euc -nvu -lLQ +tIS +tOo +tOo +tOo +liY +eaD +wTE aBc -qAe -oXm -pLQ -oXm -oXm -vHP -fBz -fBz -iqB -mru +oCt +dit +oRK +dit +dit +mTS +pFy +pFy +kyu +hbA aGL aHh aHF @@ -56404,12 +56404,12 @@ ayQ ayQ ayQ bci -jAX -nen -wlN -dAr -quZ -kyq +veI +uLU +oSb +pNw +mgL +xIH bci aaC aaC @@ -56438,70 +56438,70 @@ aZF aZF aZF boJ -rRO -qjE -faH -jcC -jcC -svG -jcC -jcC -jcC -jcC -jcC -svG -jcC -jcC -pGY -jcC -jcC -peO -yim -peO -peO -peO -peO -peO -peO -yim -peO -jJN -pQT -yim -peO -peO -peO -yim -peO -peO -peO -vzp -peO -oTd -tTt -jcC -jcC -jcC -jcC -jcC -svG -jcC -pGY -jcC -jcC -jcC -jcC -svG -jcC -kdK +fPX +gnv +dpG +wEf +wEf +aNH +wEf +wEf +wEf +wEf +wEf +aNH +wEf +wEf +nju +wEf +wEf +nZF +whE +nZF +nZF +nZF +nZF +nZF +nZF +whE +nZF +brj +iQu +whE +nZF +nZF +nZF +whE +nZF +nZF +nZF +gES +nZF +rox +mOL +wEf +wEf +wEf +wEf +wEf +aNH +wEf +nju +wEf +wEf +wEf +wEf +aNH +wEf +tZZ bTc -xGa -jcC -jcC -sEs -wsk -omi -kgA +lBI +wEf +wEf +kuX +sXf +uKq +dmU boJ bPg bRN @@ -56578,22 +56578,22 @@ abL abL abL akC -czy -czy -czy -czy -czy -uOg -sAK -czy -sAK -czy -sAK -czy -wpe +fme +fme +fme +fme +fme +qat +lOD +fme +lOD +fme +lOD +fme +thk alk -dnA -tRe +uSh +hYh arE arE arE @@ -56603,31 +56603,31 @@ arE arE arE arE -tch -gPd +eGL +tnn arE arE arE arE axl -eDm -nED -nXe +kVl +tOo +onq axl -dfX -nvu -mcI +vig +eaD +rVp aBc -gNt -neu -oXm -oXm -tMH +lGq +knY +dit +dit +iAa aEh -feN -fBz -iqB -fBz +gYs +pFy +kyu +pFy aGN aHh aHF @@ -56686,12 +56686,12 @@ ayl ayQ ayQ bci -fiL -nen -iKn -wmS -quZ -dJo +ezV +uLU +hpr +riQ +mgL +hXw bci aaC aaC @@ -56721,8 +56721,8 @@ aZF aZF bnk bpl -dJP -ska +cYv +fMM bpl bnk boJ @@ -56746,9 +56746,9 @@ bzP bzP bzP bzP -uLW +jCU bDW -irg +mEk bFD bFD bFD @@ -56780,10 +56780,10 @@ bRu bRu bRu bRu -uIB -gPB -qjE -wxW +fbg +rBj +gnv +uuM boJ bPg bRN @@ -56860,11 +56860,11 @@ abL abL abL akC -ubT +gCC alk -ubT +gCC alk -ksR +khz ann ann ann @@ -56874,8 +56874,8 @@ ann ann alk alk -fBC -tRe +nLK +hYh arE arP arQ @@ -56885,31 +56885,31 @@ ast arQ arP arE -djA -gPd +nOq +tnn arE arP arQ ast axl -hqZ -nED -nXe +uyS +tOo +onq axl -dfX -nvu -lLQ +vig +eaD +wTE aBc -nWl -dUv -tnT -fvK -nqF +wpp +sOH +efd +cyr +gyN aEm -fqM -gwD -jwH -sHf +kVc +jDb +dqt +fSV aGO aHj aHG @@ -56968,12 +56968,12 @@ ayC ayQ ayQ bci -jAX -nen -roN -dAr -quZ -kyq +veI +uLU +qtZ +pNw +mgL +xIH bci aaC aaC @@ -57002,10 +57002,10 @@ aZF aZF aZF bnk -mhq -dJP -vQm -tQP +cOs +cYv +fRD +mZE bnk aZF aZF @@ -57028,15 +57028,15 @@ bAR bAq bBY bzP -ofw -veA -wlZ +qYa +kry +kug bFD -mcq -uwR -gOR -uwR -whF +ycI +tXK +mqj +tXK +mCh bFD bKp bKW @@ -57052,20 +57052,20 @@ bLO bQz bRk bRu -gVD -aQS -gVD -aQS -gVD +pQr +qio +pQr +qio +pQr bRu bTe bTp bTx bRu -uIB -oMz -dED -dED +fbg +emO +hxD +hxD bNx bOj bRQ @@ -57142,22 +57142,22 @@ abL abL abL akC -nOs +ncb alk -nOs +ncb alk -nOs +ncb ann -gzR -mvW -mvW -mvW -dVn +iJs +gip +gip +gip +tLA ano -tpg -fqX -gJr -qKv +nJf +hCJ +ehh +gDE arF arQ arQ @@ -57167,36 +57167,36 @@ aFK atS aut auM -uPv -nvu +kgs +eaD arF arQ arQ asu axl -tck -dbi -nJW +cML +shs +kPM axl -dfX -nvu -lLQ +vig +eaD +wTE aBc -qAe -oXm -ylR -oXm -oXm -ggJ -fBz -fBz -iqB -cHd +oCt +dit +jaF +dit +dit +muI +pFy +pFy +kyu +sVy aGL aHk aHH aHW -mFG +gut aIK aHh aGL @@ -57250,12 +57250,12 @@ ayC ayQ ayQ bci -jAX -idk -bEa -idk -idk -kyq +veI +kEv +dDq +kEv +kEv +xIH bci aaC aaC @@ -57284,10 +57284,10 @@ bmg bmg bmg bmg -iwn -dJP -vQm -uJg +tAc +cYv +fRD +odE bnk bqP bqP @@ -57310,15 +57310,15 @@ bAS bAq bBZ bzP -ofw -veA -wlZ +qYa +kry +kug bFD -lYA -erp -erp -erp -gfY +jMX +ton +ton +ton +twD bFD bKq bKW @@ -57334,20 +57334,20 @@ bLO bQA bKW bRv -sKP -sKP -sKP -sKP -sKP +cYQ +cYQ +cYQ +cYQ +cYQ bRu bTf bTq bTy bTD -qjE -faH -qjE -vcw +gnv +dpG +gnv +rcd boJ bUH bSE @@ -57430,16 +57430,16 @@ akC akC akC ann -ony -uPJ -uPJ -uPJ -wii +iGZ +aop +aop +aop +wSE ano -lhs -euc -nvu -tRe +iVT +liY +eaD +hYh arE arE arE @@ -57449,8 +57449,8 @@ arE arE arE arE -djA -gPd +nOq +tnn arE arE arE @@ -57460,20 +57460,20 @@ axl axl axl axl -dfX -nvu -lLQ +vig +eaD +wTE aBc -gNt -fkV -kNG -lHf -oXm -vHP -fBz -fBz -iqB -rJa +lGq +emF +leA +nku +dit +mTS +pFy +pFy +kyu +qbn aGP aHl aHF @@ -57531,13 +57531,13 @@ ayC ayQ ayQ ayQ -qnJ -idk -idk -eFJ -idk -idk -kyq +nXo +kEv +kEv +nBg +kEv +kEv +xIH bci aaC aaC @@ -57561,15 +57561,15 @@ aZF aZF aZF bmg -qxX -lEt -hey -tvn +kgw +cEz +oeC +pqT bmg -iwn -ucX -rRK -ioL +tAc +xgj +mkE +phU bro brZ brZ @@ -57587,20 +57587,20 @@ aZF aZF aZF bzP -xiz +gre bAT bAq bAq bzP -ofw -veA -wlZ +qYa +kry +kug bFD -dSR -ocU -erp -fLF -jsy +tFC +sXQ +ton +uvr +jsU bFD bKr bKW @@ -57616,20 +57616,20 @@ bPT bLP bKW bRu -mXS -sKP -saZ -iKL -sKP +udp +cYQ +ezY +qGN +cYQ bRu bTg bTr bTz bYm -qjE -gPB -qjE -vcw +gnv +rBj +gnv +rcd boJ boJ boJ @@ -57712,50 +57712,50 @@ abL abL abL ano -ony -uPJ -uPJ -uPJ -wii -cJT -qZt -euc -nvu -gCw -fqX -wUW -fqX -fqX -vrk -fqX -fqX -fqX -fqX -yjr -gnU -fqX -wUW -fqX -fqX -vrk -uAL -uAL -uAL -uAL -jIJ -nvu -lLQ +iGZ +aop +aop +aop +wSE +vXk +nbo +liY +eaD +yeX +hCJ +ide +hCJ +hCJ +tDv +hCJ +hCJ +hCJ +hCJ +oWq +gZj +hCJ +ide +hCJ +hCJ +tDv +qkS +qkS +qkS +qkS +fgp +eaD +wTE aBc -gNt -uXT -dpj -vod -tMH +lGq +pjg +uYO +vfn +iAa aEh -feN -fBz -iqB -dkx +gYs +pFy +kyu +uKa aGQ aHm aHh @@ -57813,13 +57813,13 @@ azn azq azq azq -hCL -hCL -hCL -eZC -idk -idk -hgZ +ePw +ePw +ePw +lUT +kEv +kEv +dqO bci aaC aaC @@ -57843,15 +57843,15 @@ aZF aZF aZF bmg -jLo -hDk -hDk -xwl +lHy +jWv +jWv +mFC boM -iwn -dJP -vQm -uJg +tAc +cYv +fRD +odE bnk bsa bsJ @@ -57874,13 +57874,13 @@ bAU bBv bCa bCG -daP -twF -wlZ +pdC +xwL +kug bFD bFD bFD -edu +kCe bFD bFD bFD @@ -57891,33 +57891,33 @@ bLQ bLQ bLQ bNH -pHo +dpO bLQ bPq bPT bLP bKW bRu -cAP -sKP -umh -xgb -jfa +pOZ +cYQ +vop +pBu +pCS bSY bTh bTs bTA bTF -wLo -wsk -wLo -vcw +rwb +sXf +rwb +rcd bTc -uqw -wHz +xHr +vEG bVf -njc -mEC +rYq +iNu bVe bPg bRN @@ -57994,52 +57994,52 @@ abL hrN hrN ano -ony -uPJ -uPJ -uPJ -wii -xts -euc -sCA -gAj -kkY -efj -efj -efj -pdT -efj -efj -efj -efj -efj -dpT -qJy -efj -efj -efj -pdT -efj -efj -efj -efj -efj -efj -qAY -lLQ +iGZ +aop +aop +aop +wSE +ybb +liY +cZu +fbl +cqn +szv +szv +szv +nNQ +szv +szv +szv +szv +szv +sLG +hfc +szv +szv +szv +nNQ +szv +szv +szv +szv +szv +szv +rfP +wTE aBc -gNt -oXm -pLQ -oXm -xkM +lGq +dit +oRK +dit +uSe aEn -vMQ -eeW -njR -lBN +nnE +lHt +xHq +jKQ aGL -tCQ +ios aHh aHh aHh @@ -58096,12 +58096,12 @@ ayC ayQ ayQ bci -vsP -idk -qag -idk -idk -ext +hFL +kEv +ifk +kEv +kEv +vJm bci aaC aaC @@ -58125,15 +58125,15 @@ aZF aZF aZF bmg -vtj -rkR -pom -pom -oUA -ioL -ioL -wVH -uJg +daZ +iTo +fIX +fIX +krL +phU +phU +niR +odE bnk bqP bqP @@ -58156,15 +58156,15 @@ bAq bAq bCb bzP -mYX -twF -hFJ +cqg +xwL +hvE bFD -qNh -orL -erp -rwf -xUo +mlS +nQo +ton +ina +uXv bFD bKt bKt @@ -58180,26 +58180,26 @@ bLP bLP bKW bRu -hOi -hOZ -cLX -vBC -psH +xID +vWb +uLw +nbR +hKS bRu bTi bTr bTz bRu -rvp -gBi -stf -qjE -nls -qjE -vcw +veD +sqJ +mBu +gnv +qHE +gnv +rcd bVf -qRq -dFf +uBp +oxF bVe bPg bRN @@ -58276,50 +58276,50 @@ abL abL hrN ano -ony -uPJ -uPJ -uPJ -wii -xts -euc -euc -nvu -qKv -euc -euc -euc -ikl -euc -euc -gRI -euc -rZt -lXs -klu -euc -euc -euc -ikl -euc -euc -euc -euc -euc -euc -nvu -lLQ +iGZ +aop +aop +aop +wSE +ybb +liY +liY +eaD +gDE +liY +liY +liY +fTs +liY +liY +fQq +liY +eaO +vkD +rVk +liY +liY +liY +fTs +liY +liY +liY +liY +liY +liY +eaD +wTE aBc -sNx -cFv -nLv -tQK -lXa +rfc +sTv +qPs +cnI +tED aEh -wEE -fBz -lFJ -lxm +luB +pFy +fjt +iZv aGL aHo aHI @@ -58378,12 +58378,12 @@ azp ayl ayQ bci -gbW -idk -qag -idk -idk -fvf +wYi +kEv +ifk +kEv +kEv +nSt bci aaC aaC @@ -58407,15 +58407,15 @@ aZF aZF aZF bmg -dQH -hDk -hDk -hDk +dIO +jWv +jWv +jWv boM -iwn -dJP -vQm -uJg +tAc +cYv +fRD +odE bnk aZF bmQ @@ -58438,24 +58438,24 @@ bzP bzP bzP bzP -xjF -veA -wlZ +csV +kry +kug bFE -dVR -erp -jWF -erp -gfY +qFN +ton +kjq +ton +twD bJG -wip -xZl -kEi +bYu +nDH +sfm bKt -voE -jZJ -iii -tjk +vKC +dDM +tRX +kQO bKt bKW bLP @@ -58468,20 +58468,20 @@ bRu bRu bRu bRu -uqX +eiF bTt bTB bTG -dED -omt -lrJ -pse -pse -ltO -dED -kvJ -cvN -pUQ +hxD +nDs +oFC +kRR +kRR +rFm +hxD +iWQ +xYS +rpf bVe bPg bRN @@ -58558,39 +58558,39 @@ hrN hrN abL ano -ony -uPJ -uPJ -uPJ -wii -mUI -gEA -euc -rYU -kEJ -hJG -hJG -hJG -hJG -srl -hJG -hJG -hJG -hWr -sBy -uAb -wlS -wlS -wlS -wlS -sTZ -wlS -wlS -wlS -wlS -gEA -nvu -lLQ +iGZ +aop +aop +aop +wSE +huW +qFD +liY +qTI +wMO +mvn +mvn +mvn +mvn +bxi +mvn +mvn +mvn +dsl +wGT +hef +hRU +hRU +hRU +hRU +mAI +hRU +hRU +hRU +hRU +qFD +eaD +wTE aBd aBd aBd @@ -58599,8 +58599,8 @@ aBd aBd aBd aEN -vhg -msR +qCP +kxp aGr aGL aGL @@ -58660,12 +58660,12 @@ ayl ayC ayC bci -qFJ -idk -qag -idk -idk -oNb +xwJ +kEv +ifk +kEv +kEv +xST bci aaC aaC @@ -58689,15 +58689,15 @@ aZF aZF aZF bmg -dQH -hDk -hDk -hDk +dIO +jWv +jWv +jWv boM -iwn -dJP -vQm -uJg +tAc +cYv +fRD +odE bnk aZF bmm @@ -58720,24 +58720,24 @@ bAV bAv bAv bzQ -iGo -veA -wlZ +gCM +kry +kug bFE -dVR -rux -tav -jQE -qzZ +qFN +wtd +nwQ +cmS +snx bJG -qms -lWv -ncc -kAx -ncc -ncc -iii -uYD +vCo +stw +oZi +idA +oZi +oZi +tRX +xkP bKt bPr bLQ @@ -58754,16 +58754,16 @@ bTk bTu bTu bRu -nEr -svG -jcC -kdK +rqD +aNH +wEf +tZZ bTc -nUD -vcw +jba +rcd bVf -oOG -vpL +ijq +sdc bVe bPg bRN @@ -58840,16 +58840,16 @@ akD akD akD anp -ony -uPJ -uPJ -uPJ -wii +iGZ +aop +aop +aop +wSE ano -rYz -euc -lOB -wZk +qPQ +liY +tVI +hmR arE arE arE @@ -58859,8 +58859,8 @@ arE arE arE arE -djA -gPd +nOq +tnn arE arE arE @@ -58870,20 +58870,20 @@ axn axn axn axn -xts -nvu -lLQ +ybb +eaD +wTE aBd -sXY -dah -iuC -kVh -nsB +dBZ +qea +mbp +lbO +hMc aBd -mSJ -fBz -rll -qeA +jZC +pFy +vYo +hBU aGR aHp aHJ @@ -58942,12 +58942,12 @@ ayl ayl ayC bci -gbW -idk -tbj -idk -idk -xab +wYi +kEv +pzD +kEv +kEv +eUm bci aaC aaC @@ -58971,15 +58971,15 @@ aZF aZF aZF bmg -tpO -hYd -kAr -hDk +mXi +dfN +lcW +jWv bmg -wRg -dJP -vQm -lNK +fMC +cYv +fRD +dwr bnk aZF aZF @@ -59002,23 +59002,23 @@ bAW bBw bAv bzQ -teI -veA -wlZ +kYV +kry +kug bFE -dVR -erp -tVV -erp -gfY +qFN +ton +iak +ton +twD bJG -oNZ -fZc -mMz +uzx +obw +meP bKt bKt bKt -dle +jsx bKt bOV bOV @@ -59041,10 +59041,10 @@ bTl bTl boJ boJ -dij -vcw +uTS +rcd bVe -fWm +gFJ bVe bVe bPg @@ -59116,22 +59116,22 @@ abL abL abL akD -dJt +qIr alo -dJt +qIr alo -dJt +qIr anp -kFW -qtU -qtU -qtU -dda +iRe +ygi +ygi +ygi +fqL ano -mfu -kTG -wwA -qKv +pgN +fZb +iWI +gDE arF arQ arQ @@ -59141,36 +59141,36 @@ ato arQ arQ arF -qKv -nvu +gDE +eaD arF arQ arQ asu axn -ihD -klq -des +mnV +vly +kYn axn -xts -nvu -lLQ +ybb +eaD +wTE aBd -qok -oMX -oMX -rKN -gPn +hMk +bwd +bwd +mRM +wYk aBd -nga -eDc -rll -lfh +nZZ +uJc +vYo +nMC aGR aHq aHK aId -eEF +jxp aIP aoG aoG @@ -59224,12 +59224,12 @@ ayC ayl ayl bci -gbW -idk -qag -idk -idk -dDD +wYi +kEv +ifk +kEv +kEv +iLB bci aaC aaC @@ -59256,11 +59256,11 @@ bmg bmg bmg bmg -dik +dZe bmg bpl -dJP -pSx +cYv +lOq bpl bnk bnk @@ -59280,54 +59280,54 @@ bmm bml bzQ bAw -ugi +mUj bBx -bCc +gsI bzQ -tMp -veA -wlZ +uIg +kry +kug bFD -keJ -ttr -erp -ttr -eew +hMK +qbE +ton +qbE +xEQ bFD bKt bKt bKt bMs -lgX -mlS -wOI -sCM +vxV +dVD +cWI +vsk bOV -pki -tIl -iXP +uGJ +peI +mHV bOV -iuX -uBV -qVe -oMy +tmJ +fub +moh +tqb bOV bEe bSZ bTl -jYU -gVh -gVh -gVh -hla +xus +crt +crt +crt +dxX bTl -yjb -xrF -wXq -wzz -xrF -qjE -gQJ +lpN +eBI +rwk +jlc +eBI +gnv +qcQ boJ bPg bRN @@ -59398,11 +59398,11 @@ abL abL abL akD -kYA +oGu alo -kYA +oGu alo -kYA +oGu anp anp anp @@ -59412,8 +59412,8 @@ anp anp alo alo -wDd -ofL +wjL +fjS arE arS arQ @@ -59423,31 +59423,31 @@ ast arQ arS arE -djA -gPd +nOq +tnn arE arS arQ ast axn -gfR -kwR -wFJ +eTd +hRh +puJ azA -xts -nvu -lLQ +ybb +eaD +wTE aBd -eTz -vig -vig -umU -hfD +grx +ovG +ovG +lUc +kAb aBd -cBD -pTI -ycG -sGe +kBR +tha +wPe +ybt aGS aHr aHL @@ -59467,15 +59467,15 @@ aKU aLz aLz aLz -pAP -rre -tjR -usY +wVq +hqm +mIO +mmO aKw -kkz -xAJ -sNa -xYc +ydR +ygG +uBB +ujr aKw atV axr @@ -59506,12 +59506,12 @@ ayl ayC ayl bci -ucn -idk -qag -idk -idk -ext +tCE +kEv +ifk +kEv +kEv +vJm bci aaC abf @@ -59537,16 +59537,16 @@ aZF aZF aZF bnk -qpH -dJP -pFO -pFO -dJP -vQm -pFO -ycB -pFO -wmu +oaZ +cYv +fRY +fRY +cYv +fRD +fRY +xrg +fRY +gfY bnk aZF bmm @@ -59566,50 +59566,50 @@ bAv bAv bAv bzQ -rtC -veA -wlZ +cvI +kry +kug bFD bFD bFD -mjk +nPX bFD bFD bFD -vXH -nEv -djx +eOr +lSM +wBI bMs -smH -nTj -fjw -ndk -caw -ifB -uKE -nsF +xvc +gza +mbk +rHK +mLr +csk +cME +dVe bOV -pEU -wcR -wcR -djP +qge +pru +pru +fdj bOV bEe bTa bTl -iYU -seX -seX -seX -jbt +rwI +bTv +bTv +bTv +cXn bTl -pNg -omi -gBi -qjE -qjE -qjE -iyq +vbQ +uKq +sqJ +gnv +gnv +gnv +puw boJ bVS bRN @@ -59680,22 +59680,22 @@ abL abL abL akD -toB -toB -toB -toB -toB -fFu -xPV -toB -xPV -toB -xPV -toB -iLo +jWn +jWn +jWn +jWn +jWn +lgu +gmQ +jWn +gmQ +jWn +gmQ +jWn +inu alo -knk -uBZ +wjS +quN arE arE arE @@ -59705,31 +59705,31 @@ arE arE arE arE -tch -gPd +eGL +tnn arE arE arE arE axn -nBv -kwR -wFJ +vjx +hRh +puJ azA -xts -nvu -mcI +ybb +eaD +rVp aBd aBd -fEF +ciR aBd -dEZ -xCB +lET +uKG aBd -xxm -fBz -rll -lfh +hoL +pFy +vYo +nMC aGR aHs aHK @@ -59749,15 +59749,15 @@ aKV aLA aLQ aMI -cwO -skg -lYS -skg -xUG -skg -skg -iZd -uNE +svQ +bYP +eIu +bYP +lHA +bYP +bYP +cZX +kNI aKw aui axs @@ -59788,12 +59788,12 @@ ayl ayl lJQ bci -pGL -rkq -lnz -hjk -jUq -rgB +mJm +jVT +nvk +gjv +uaZ +pID bci aaC acx @@ -59819,16 +59819,16 @@ aZF aZF aZF bnk -pbX -dJP -dJP -dJP -dJP -rOb -ioL -ioL -tTN -jtO +vTj +cYv +cYv +cYv +cYv +idJ +phU +phU +dXh +cDY bnk aZF aZF @@ -59843,55 +59843,55 @@ bmU bmk bmQ bzQ -sBz +sRT bAv bBy bCd bCH -daP -twF -wOb -nwa -nwa -nwa -jYL -nwa -xUs -nwa -qFq -hnK -vfH -gGb -gbM -wOI -sHJ -jqN +pdC +xwL +tjh +ihx +ihx +ihx +wgb +ihx +tTn +ihx +peS +sVh +oOB +uKk +txT +cWI +rPg +qek bOV -tIz -lMB -wcR -oWA -wcR -dha -wcR -ebS +lHa +dql +pru +kaO +pru +vFZ +pru +hZC bOV bEe bCI bTl -iYU -seX -seX -seX -jbt -wES -uUH -qjE -vzp -qjE -qjE -qjE -xDB +rwI +bTv +bTv +bTv +cXn +tqw +nZp +gnv +gES +gnv +gnv +gnv +fCe boJ bCg bWf @@ -59962,22 +59962,22 @@ abL abL abL akD -xCl -toB -toB -clm -hUx -hUx -hUx -hUx -hUx -hUx -hUx -hUx -nGG -gGz -dNX -euc +wGy +jWn +jWn +cFR +jlI +jlI +jlI +jlI +jlI +jlI +jlI +jlI +mCK +haT +fiR +liY arF arQ arQ @@ -59987,31 +59987,31 @@ atp arQ arQ arF -qKv -nvu +gDE +eaD arF arQ arQ awT axn -jkU -kwR -tDd -wds -cPI -tGc -lLQ +whO +hRh +lZR +sOb +fSh +pIu +wTE aBe -ldg -oMX -jbk -cxC -hmO +mEB +bwd +weS +xVP +eub aEp -naJ -fBz -rll -lfh +tuF +pFy +vYo +nMC aGR aGR aGR @@ -60031,15 +60031,15 @@ aKW aLz aLR aLz -nkQ -uZc -ekV -jHo +hed +nnf +wyC +dAj aKw -eMu -uZc -uZc -uZc +goc +nnf +nnf +nnf aKw aui axs @@ -60070,12 +60070,12 @@ bas ayl lJQ bci -khV -kJa -kqK -gbm -kJa -jac +dys +cHX +wKc +kFX +cHX +kZZ bci aaC alR @@ -60101,16 +60101,16 @@ aZF aZF aZF bnk -sps -dJP -dJP -dJP -dJP -vQm -dJP -dJP -dJP -vmB +pGs +cYv +cYv +cYv +cYv +fRD +cYv +cYv +cYv +jhx bnk aZF aZF @@ -60130,50 +60130,50 @@ bAv bAv bAv bzQ -ukV -wUp -cda -cjU -cjU -tqD -cjU -cjU -cjU -cjU -hMR -dGR -pJP -lBi -dBL -gVZ -sHJ -jTf +hKv +mJl +lCs +lyQ +lyQ +hlR +lyQ +lyQ +lyQ +lyQ +jro +ctS +ruC +gqz +rel +pke +rPg +nBi bOV -uzZ -oHg -wcR -wcR -wcR -fFZ -wcR -wVT +slb +rmM +pru +pru +pru +obD +pru +iLR bOV bEe bCI bTl -iYU -seX -seX -seX -jbt -uIB -qjE -qjE -tKJ -dED -hEk -qjE -wzH +rwI +bTv +bTv +bTv +cXn +fbg +gnv +gnv +jpD +hxD +evY +gnv +bZu boJ bVT bEe @@ -60244,22 +60244,22 @@ adr abL abL akD -gTk -hUx -hUx -ula -toB -toB -toB -toB -toB -toB -toB -toB -hkt +pgz +jlI +jlI +nSv +jWn +jWn +jWn +jWn +jWn +jWn +jWn +jWn +eoW alo -xts -uBZ +ybb +quN arE arS arQ @@ -60269,31 +60269,31 @@ ast arQ arS arE -djA -gPd +nOq +tnn arE arS awN ast axn -oYW -hOJ -xkQ -aJW -efj -lop -teX -hec -gre -gre -gre -lvS -gre -hec -uZn -gwD -ojI -lfh +hbB +vml +tWI +ivP +szv +lnZ +mRD +xbL +fUM +fUM +fUM +qMh +fUM +xbL +pDZ +jDb +ifH +nMC aGT aHt aHM @@ -60313,15 +60313,15 @@ aKX aLz aLR aLz -nwF -uZc -ekV -cFW +lTC +nnf +wyC +uSt aKw -yhr -uZc -uZc -wIR +pWw +nnf +nnf +qEH aKw aui axs @@ -60352,12 +60352,12 @@ bbt ayl ayl bci -suZ -idk -uSK -omk -idk -nJo +dTr +kEv +jyd +vOP +kEv +mOy bci aaC acx @@ -60383,16 +60383,16 @@ aZF aZF aZF bnk -cLq -dJP -dJP -kCT -lbM -oTM -eYZ -dJP -dJP -wrO +lLs +cYv +cYv +xnT +iMs +tLy +nEX +cYv +cYv +oPH bnk aZF aZF @@ -60412,9 +60412,9 @@ bAZ bAZ bCe bzQ -eeb -kvo -ugW +rnb +ulG +qJl bDx bDx bDx @@ -60422,40 +60422,40 @@ bDx bDx bDx bDx -yiF +pZP bLe bDx bMs -ovV -wOI -sHJ -hba +xoO +cWI +rPg +mEb bOV -uzZ -lAi -eGe +slb +sYw +shT bOV -suM -wcR -wcR -uQN +rDx +pru +pru +tEP bOV bEe bCI bTl -iYU -seX -seX -seX -jbt -uIB -qjE -qjE -vzp -qjE -qjE -qjE -iyq +rwI +bTv +bTv +bTv +cXn +fbg +gnv +gnv +gES +gnv +gnv +gnv +puw boJ bCI bEe @@ -60526,22 +60526,22 @@ abL abL abL akD -toB -toB -toB -toB -toB -fFu -toB -toB -toB -dgq -toB -toB -toB +jWn +jWn +jWn +jWn +jWn +lgu +jWn +jWn +jWn +cKM +jWn +jWn +jWn alo -xts -uBZ +ybb +quN arE arE arE @@ -60551,36 +60551,36 @@ arE arE arE arE -djA -gPd +nOq +tnn arE arE arE arE axn -tmr -kwR -kkE +rcy +hRh +eEM azA -xts -rJA -euc -oMX -oMX -oMX -oMX -cxC -oMX -oMX -gcj -fBz -rll -lfh +ybb +rEM +liY +bwd +bwd +bwd +bwd +xVP +bwd +bwd +hFF +pFy +vYo +nMC aGT aHu aHN aIh -exg +gXb aGV aoT aoG @@ -60595,15 +60595,15 @@ aKY aLz aLT aLz -iau -uZc -ekV -oGE +nVc +nnf +wyC +lBG aKw -tLE -uZc -uZc -tSc +gTs +nnf +nnf +ush aKw aui axs @@ -60634,12 +60634,12 @@ bat lJQ ayl bci -gnO -idk -uSK -omk -idk -tFL +hKp +kEv +jyd +vOP +kEv +lwD bci aaC baW @@ -60665,16 +60665,16 @@ aZF aZF aZF bnk -cQh -dJP -dJP -mFp -oTb -mhW -vOB -dJP -dJP -gRv +dEE +cYv +cYv +sCx +qRz +tYn +tNK +cYv +cYv +qGf bnk aZF aZF @@ -60703,41 +60703,41 @@ bGw bGw bGw bDx -hyk -lif -nwa -djx +jcv +hJK +ihx +wBI bMs -xPR -wOI -sHJ -wjt +wru +cWI +rPg +rBP bOV -rWN -xCf -dEl +mTZ +set +lrt bOV -elH -kMk -rAE -lgC +sTQ +jkD +ktI +hqd bOV bEe bCI bTl -iYU -seX -seX -seX -jbt -xGa -sEs -qjE -vzp -qjE -qjE -qjE -iyq +rwI +bTv +bTv +bTv +cXn +lBI +kuX +gnv +gES +gnv +gnv +gnv +puw boJ bCI bEe @@ -60808,22 +60808,22 @@ abL abL abL akD -xnY +ucH alo -xnY +ucH alo -kYA +oGu alo -fBa +huZ alo -fBa +huZ alo -fBa +huZ alo -fBa +huZ alo -xts -euc +ybb +liY arK arT arT @@ -60833,31 +60833,31 @@ asu arQ arQ arF -qKv -nvu +gDE +eaD arF arQ arQ asu axn -gAn -kwR -kkE +sgu +hRh +eEM azA -xts -rJA -lLQ +ybb +rEM +wTE aBh -mSE -oMX -oMX -vAm -goW +ooo +bwd +bwd +jil +qWI aBh -ura -eeW -sPA -sGe +fRr +lHt +piG +ybt aGU aHv aHO @@ -60877,31 +60877,31 @@ aKZ aLz aLR aLz -oot -uZc -ekV -oGE +xXs +nnf +wyC +lBG aKw -oRU -uZc -uZc -tSc +rWh +nnf +nnf +ush aKw aui axs awY -dvI -qfj -qfj -qfj -qfj -qfj -qfj -qfj -qfj -qfj -qfj -raH +sHs +caU +caU +caU +caU +caU +caU +caU +caU +caU +caU +oVM awY aui aui @@ -60916,12 +60916,12 @@ bat ayl lJQ bci -pqC -idk -uSK -omk -idk -qwa +uGE +kEv +jyd +vOP +kEv +iUk bci aaC acm @@ -60947,16 +60947,16 @@ aZF aZF aZF bnl -iwn -dJP -dJP -sbL -oTb -mhW -qVS -dJP -dJP -gRv +tAc +cYv +cYv +aKD +qRz +tYn +nQu +cYv +cYv +qGf bnk aZF aZF @@ -60985,15 +60985,15 @@ bGw bGw bGw bDx -ilB -jYL -mCn -daP -ogq -ndk -gVZ -sHJ -rje +unH +wgb +rSc +pdC +fnX +rHK +pke +rPg +nDw bOX bOX bOX @@ -61007,19 +61007,19 @@ bOX bEe bCI bTl -iYU -seX -seX -seX -jbt +rwI +bTv +bTv +bTv +cXn bTl -nOA -eKP -omt -dED -dED -lpJ -hbe +wMG +qWD +nDs +hxD +hxD +vlI +eCl boJ bCI bWh @@ -61090,22 +61090,22 @@ abL abL hrN akD -xsW +fPK alo -fMl +nYc alo -oqO +mBv alo -muY +frR alo -muY +frR alo -muY +frR alo -jPx +dNg alo -xts -uBZ +ybb +quN arE arU ash @@ -61115,31 +61115,31 @@ ast arQ arS arE -djA -gPd +nOq +tnn arE arS arQ ast axn -kSI -sOi -jba +gPh +kdS +cNd axn -xts -rJA -lLQ +ybb +rEM +wTE aBd -sus -uDa -uDa -eAT -oZC +txo +kQM +kQM +vnU +mCR aBd -uZM -iqG -mSg -wCZ +exS +iBi +gdN +idV aGT aHw aHN @@ -61159,20 +61159,20 @@ aLa aLz aLR aLz -vgD -uZc -mQc -siC +kac +nnf +whx +ggL aKw -oRU -uZc -uZc -osA +rWh +nnf +nnf +vjV aKw aui axs aui -jcU +srw aVU aVV aVV @@ -61183,7 +61183,7 @@ aVV aVV aVV aVU -mhK +dAA lXk aui aui @@ -61198,12 +61198,12 @@ bah lJQ lJQ bci -gnO -was -iWS -uuW -wsZ -hTt +hKp +bCF +rnh +vNi +ttv +sXm bci aaC acm @@ -61229,16 +61229,16 @@ aZF aZF aZF bnm -iwn -dJP -dJP -mFp -oTb -mhW -vOB -dJP -dJP -cBi +tAc +cYv +cYv +sCx +qRz +tYn +tNK +cYv +cYv +dAW bnk aZF aZF @@ -61267,41 +61267,41 @@ bGw bGw bGw bDx -xwn -vkU -mIj -jSN +htE +lTr +tAd +rsr bMs -xMq -wOI -sHJ -drK +rfA +cWI +rPg +dUR bOX -noY -xhj -jKk +rab +rcO +oXq bOX -mak -rAM -uKR -dRY +pFe +qeO +oPk +mPA bOX bEe bCI bTl -mXo -ufd -ufd -ufd -oHU +tiA +cTn +cTn +cTn +izq bTl -nEr -vzp -gbq -vTl -ixL -vzp -iBm +rqD +gES +geg +sWM +gcn +gES +rOz boJ bCI bCI @@ -61386,8 +61386,8 @@ akD akD akD akD -mUI -nPY +huW +rUN arD arD arD @@ -61397,8 +61397,8 @@ arD arD arD arD -sys -liz +toC +rGu arD arD arD @@ -61408,9 +61408,9 @@ axo axo axo axo -quD -uBs -vZF +vQC +gDv +qXb aBd aBd aBd @@ -61441,20 +61441,20 @@ bwk aLz aLR aLz -nUz -uZc -uZc -lwI +pIr +nnf +nnf +quV aKw -oya -gyd -uZc -osA +ccE +pOr +nnf +vjV aKw aui axs aui -jcU +srw aVV aWB aXc @@ -61465,7 +61465,7 @@ aVW aVW aVV aVV -mhK +dAA aui lXk aui @@ -61480,12 +61480,12 @@ aaG aar lJQ bci -lsc -idk -qSF -omk -idk -uPR +wkH +kEv +coe +vOP +kEv +mrz bci aaC acm @@ -61511,16 +61511,16 @@ aZF aZF aZF bnk -xBy -dJP -dJP -sbL -oTb -mhW -qVS -dJP -dJP -pJA +gdu +cYv +cYv +aKD +qRz +tYn +nQu +cYv +cYv +wkK bnk bug bug @@ -61554,19 +61554,19 @@ bDx bDx bDx bMs -hYV -wOI -sHJ -jTf +tDp +cWI +rPg +nBi bOX -xsa -yam -gVV +avv +gUx +kcF bOX -dnr -vlQ -kpi -sJN +gGl +oMS +gTa +vSY bOX bEe bCI @@ -61578,11 +61578,11 @@ bTl bTl bTl bTN -gcx +mAL bTN bVa bVa -nuE +lLN bVa bVa bVa @@ -61725,18 +61725,18 @@ aLU aMK aKw aOa -ucT +mzZ aKx aKw aKw aKw -kGb +pxK aKw aKw aui axs aui -jcU +srw aVV aWC aXd @@ -61747,7 +61747,7 @@ aWB aWE aVV aVV -mhK +dAA lXk aui aui @@ -61762,12 +61762,12 @@ aac aaf aaG bci -wAu -uIZ -djq -lfi -jEw -pth +hix +uWC +hVK +skh +rvv +uLD bci aaG abG @@ -61793,22 +61793,22 @@ aZF aZF aZF bnk -ilE -dJP -dJP -sbL -oTb -mhW -qVS -dJP -dJP -uJg +vHb +cYv +cYv +aKD +qRz +tYn +nQu +cYv +cYv +odE bnk -vjr -vjr -mut -vjr -vjr +kNg +kNg +kbB +kNg +kNg bqP brt bsf @@ -61836,19 +61836,19 @@ bCJ bCJ bCJ bMw -qyB -fjw -stg -hba +pHk +mbk +loK +mEb bOX bOX -pKH +eAu bOX bOX -rsg -vlQ -kpi -szE +wBQ +oMS +gTa +oeA bOX bEe bCI @@ -61857,17 +61857,17 @@ aZF aZF aZF bTN -qEZ -mch -nse -sSE -dyL +leb +nal +fep +qBF +sov bVa -jik -kOQ -jPE -kWa -jRW +hAe +gSo +tgi +wmV +ibp bVa bEe bCI @@ -62010,15 +62010,15 @@ aLi aLi aPx aKy -rTs -jjO -msd -rTs +fCH +fIo +twh +fCH aKy aui axs aui -jcU +srw aVV aWD aXe @@ -62029,7 +62029,7 @@ aWC aWF aVV aVV -mhK +dAA lXk aui aui @@ -62038,7 +62038,7 @@ ayk ayk lJQ ayk -xiC +kMQ acj acD aac @@ -62075,22 +62075,22 @@ aZF aZF aZF bnk -cvI -dJP -dJP -dJP -jiW -mUz -dJP -dJP -dJP -uJg +uIA +cYv +cYv +cYv +rZk +bsG +cYv +cYv +cYv +odE btz -qND -qND -qND -qND -mQA +onC +onC +onC +onC +hgj btz brt bsf @@ -62118,19 +62118,19 @@ bCI bCI bLY bMs -qTr -sHJ -wOI -wjt +xOR +rPg +cWI +rBP bOX -dMn -oJi -krE +hDt +ixW +ohk bOX -lOD -vlQ -kpi -mLL +dwM +oMS +gTa +fLg bOX bEe bCI @@ -62141,13 +62141,13 @@ aZF bTN bTN bTN -quW -bPQ -rlt +iiT +vxd +hJI bVa -dNb -kOQ -cko +pNd +gSo +ira bVa bVa bVa @@ -62292,15 +62292,15 @@ aOb aOB aPy aKy -rTs -hNd -msd -rTs +fCH +fJg +twh +fCH aKy aui axs aui -jcU +srw aVW aVV aVV @@ -62311,7 +62311,7 @@ aWD aWG aVV aVV -mhK +dAA aui aui aui @@ -62320,7 +62320,7 @@ ayk ayk ayk ayk -rZD +qwl oHE acj aag @@ -62357,22 +62357,22 @@ aZF aZF aZF bnk -nCp -dJP -dJP -ulW -dJP -vQm -nzT -dJP -dJP -uJg +haz +cYv +cYv +xVA +cYv +fRD +ofg +cYv +cYv +odE btA -xEJ +lpX buj buj -qND -rKu +onC +gyL btz brt bsf @@ -62400,19 +62400,19 @@ bCg bCg bCg bMs -dky -sHJ -wOI -sHJ -nNn -hEV -oJi -gtN +tfc +rPg +cWI +rPg +mmf +nWN +ixW +pCt bOX -cKN -noY -jKk -szE +tQg +rab +oXq +oeA bOX bEe bCI @@ -62421,17 +62421,17 @@ aZF aZF aZF bTN -qEZ -mch -nse -xCN -nse +leb +nal +fep +tYD +fep bVa -iQL -kOQ -dNb -kWa -jRW +vwu +gSo +pNd +wmV +ibp bVa bEe bCI @@ -62572,17 +62572,17 @@ aMN wTN aOc aMa -aYw +aRk aKy -skE -msd -msd -msd +epT +twh +twh +twh aKy aui axs aui -jcU +srw aVV aWE aXf @@ -62593,7 +62593,7 @@ aVV aVV aVV aZs -mhK +dAA aui aui aui @@ -62602,7 +62602,7 @@ ayk ayk ayk ayk -rZD +qwl cbk bbu bbE @@ -62639,22 +62639,22 @@ aZF aZF aZF bnk -lvz -dJP -dMM -dJP -dJP -vXD -ioL -ioL -ioL -ioL -bHN +iCX +cYv +iNk +cYv +cYv +qQf +phU +phU +phU +phU +kDr buk buk bvE -qND -rKu +onC +gyL btz brt bsf @@ -62682,19 +62682,19 @@ aZF aZF aZF bMs -cmG -sHJ -mnn -ndk -vtu -vtu -mkZ -ntw +klr +rPg +fpe +rHK +tDH +tDH +qZV +cJf bOX -kVG -noY -jKk -sJN +lEb +rab +oXq +vSY bOX bEe bCI @@ -62705,13 +62705,13 @@ aZF bTN bTN bTN -tNc -bPQ -rlt +kUG +vxd +hJI bVa -dNb -kOQ -wZq +pNd +gSo +qzL bVa bVa bVa @@ -62855,16 +62855,16 @@ aND aOd aOC aOd -hds -hhK -hhK -wUY -msd +gLJ +dSm +dSm +pxc +twh aKy aui axs aui -jcU +srw aVV aWF aXg @@ -62875,7 +62875,7 @@ aVV aVV aVV aVV -mhK +dAA aui aui aui @@ -62884,13 +62884,13 @@ ayk ayk ayk ayk -jdX -dZJ +nzo +ref lqY -meL -qzY -rOr -mHB +pTM +qdE +ljn +wUl bbE acm aac @@ -62921,24 +62921,24 @@ aZF aZF aZF bnk -gAh -dJP -dJP -dJP -dJP -vQm -dJP -dJP -dJP -iFY +eee +cYv +cYv +cYv +cYv +fRD +cYv +cYv +cYv +gUq btA bul buj bvF -qND -pfd +onC +eZs btz -nqd +pPL bsf bqP bqP @@ -62964,19 +62964,19 @@ bmh bnT bml bMs -oSR -sHJ -hzA -utN +qxS +rPg +esr +sbZ bOX -ydN -nHy -vtu -wfb -fcr -pOL -jKk -szE +hxI +hHT +tDH +jaJ +oBX +oIs +oXq +oeA bOX bEe bCI @@ -62985,17 +62985,17 @@ aZF aZF aZF bTN -qlk -mch -nse -sSE -nse +jER +nal +fep +qBF +fep bVa -iQL -kOQ -dNb -kWa -jRW +vwu +gSo +pNd +wmV +ibp bVa bEe bCI @@ -63138,15 +63138,15 @@ aMN aOc aPA aKy -eMB -aUl -dKW -gpd +mUT +pHo +sfh +eYs aKy aui axs aui -jcU +srw aVV aWG aXc @@ -63157,7 +63157,7 @@ aVV aVV aXc aVV -mhK +dAA aui aui aui @@ -63169,10 +63169,10 @@ ayk ayQ ayQ lqY -qPb -pQv -pQv -iDk +kbK +vCX +vCX +jJW bbE acm aac @@ -63203,23 +63203,23 @@ aZF aZF aZF bnk -cLq -iaG -ioL -ioL -ioL -pQm -nSt -dQM -dJP -xpH +lLs +iiF +phU +phU +phU +fRs +soO +vBW +cYv +tvh btz bum buj bvG buk buk -wMU +knu bxH brZ brZ @@ -63246,19 +63246,19 @@ bmi bmT bmm bMs -nxl -oUT -teE -grp +uAv +sFA +ibJ +pCr bOX -gug -nHy -eHH +xjG +hHT +voo bOX -ybI -hEE -sEe -tDo +kfw +cmf +flE +pca bOX bEe bCI @@ -63270,11 +63270,11 @@ bTN bTN bTN bTN -teU -rlt +dUa +hJI bVa -dNb -wio +pNd +lBT bVa bVa bVa @@ -63428,7 +63428,7 @@ aKy aui axs aui -jcU +srw aVV aVV aXd @@ -63439,7 +63439,7 @@ aVV aVV aXd aVV -mhK +dAA aui aui aui @@ -63451,10 +63451,10 @@ ayk ayQ ayQ bbu -qPb -pQv -pQv -mSe +kbK +vCX +vCX +lku bbE acm aac @@ -63485,16 +63485,16 @@ aZF aZF aZF bnk -iwn -dJP -dJP -dJP -dJP -dJP -hKc -oGJ -dJP -xpH +tAc +cYv +cYv +cYv +cYv +cYv +cEX +wOl +cYv +tvh btz bun buj @@ -63502,8 +63502,8 @@ bvH bwg bwg btz -sjs -iVh +ldW +eOs bsf brt byc @@ -63534,7 +63534,7 @@ bMs bMs bOX bOX -lfD +caK bOX bOX bOX @@ -63549,17 +63549,17 @@ aZF aZF aZF bTN -vJz -nse -mch -dWI -ppn +aRi +fep +nal +fVM +tHH bVa -iQL -kOQ -kWa -dNb -voM +vwu +gSo +wmV +pNd +oFA bVa bEe bCI @@ -63710,7 +63710,7 @@ aui aui axs aui -jcU +srw aVV aVV aXe @@ -63721,7 +63721,7 @@ aVV aVV aXe aWB -mhK +dAA aui atI ayJ @@ -63732,11 +63732,11 @@ ayC ayQ ayQ ayQ -qcp -pQv -pQv -pQv -jhr +dbE +vCX +vCX +vCX +gas bbE acm aac @@ -63767,20 +63767,20 @@ aZF aZF aZF bnk -hoq -qBp -qBp -qBp -qBp -jEn -xPb -oGJ -wVd -kpw +tPc +ofM +ofM +ofM +ofM +jgj +wRy +wOl +iyw +nds btz buo buj -sdQ +rFF bwh bwh btz @@ -63815,9 +63815,9 @@ bnT bml aZF bOX -tTH -lQo -kRz +fae +gMn +tHT bOX aZF aZF @@ -63831,17 +63831,17 @@ aZF aZF aZF bTN -qEZ -nse +leb +fep bTN -sSE -mwg +qBF +npD bVa -hqx -jzc +rUi +xGn bVa -dNb -jRW +pNd +ibp bVa bEe bCI @@ -63992,7 +63992,7 @@ aui aui axs aui -jcU +srw aVV aVV aVV @@ -64003,7 +64003,7 @@ aVV aVW aVV aWC -mhK +dAA aui att att @@ -64015,10 +64015,10 @@ ayQ ayQ ayQ bbu -qPb -pQv -pQv -npr +kbK +vCX +vCX +lPY bbE acm aac @@ -64097,9 +64097,9 @@ bmU bmm bml bOX -vsx -jLQ -dRN +mBj +sNL +oRa bOX aZF aZF @@ -64274,7 +64274,7 @@ lXk aui axs aui -jcU +srw aVV aVV aVV @@ -64285,7 +64285,7 @@ aVV aVV aVV aWD -mhK +dAA aui att atI @@ -64297,10 +64297,10 @@ ayk ayC ayQ lqY -dUd -qbf -jnm -fJC +ioX +qCV +lLA +aNS bbE acm aac @@ -64379,9 +64379,9 @@ bmU bmj bmQ bOX -nYO -dUj -nYO +ltA +tLU +ltA bOX aZF aZF @@ -64514,11 +64514,11 @@ agP aax azR azR -sXG -wXK -jxF -wQW -usZ +sRx +nSl +iik +odh +uoA azR aoG aoF @@ -64556,7 +64556,7 @@ aui aui axs aui -jcU +srw aVV aWH aXh @@ -64567,7 +64567,7 @@ aVV aVV aVV aVV -mhK +dAA aui att att @@ -64661,16 +64661,16 @@ bmU bmk bmQ bOX -uQB -uQB -tGR +ofi +ofi +oas bOX aZF aZF aZF aZF bCg -tMd +gGM bCI bCI bCI @@ -64795,12 +64795,12 @@ aax aax azR azR -nRQ -kMo -pyv -lZx -pry -nLC +oxO +spI +vpQ +dxk +jaK +mcy aEW aoF aoF @@ -64838,7 +64838,7 @@ aui aui axs aui -jcU +srw aVV aVV aVV @@ -64849,7 +64849,7 @@ aVV aVV aVV aZt -mhK +dAA aui att att @@ -65076,13 +65076,13 @@ aax aax hrN azR -xIp -kMo -pry -hVX -nVC -pry -fYL +sUW +spI +jaK +whf +vRz +jaK +kEt azR aoI aoI @@ -65120,7 +65120,7 @@ aui aui axs aui -jcU +srw aVW aVV aVV @@ -65131,7 +65131,7 @@ aVV aVV aVV aVV -mhK +dAA atV att att @@ -65358,14 +65358,14 @@ agP abL hrN azR -jDY -sKu -sKu -xht -sKu -sKu -sKu -qhD +hvm +sXx +sXx +wTZ +sXx +sXx +sXx +ujI apy apy aqw @@ -65402,7 +65402,7 @@ aui aui axs aui -jcU +srw aVW aVV aVV @@ -65413,7 +65413,7 @@ aVV aVV aVV aVV -mhK +dAA aui att atI @@ -65640,13 +65640,13 @@ abL abL abL azR -ivh -pry -pry -hVX -pry -pry -sxa +toU +jaK +jaK +whf +jaK +jaK +fTu azR apM aoI @@ -65684,7 +65684,7 @@ atV aui axs aui -jcU +srw aVV aVV aVV @@ -65695,7 +65695,7 @@ aVV aVV aVV aVV -mhK +dAA atV att att @@ -65798,7 +65798,7 @@ aZF aZF aZF bCg -nAS +seF bCI bCg aZF @@ -65922,13 +65922,13 @@ abL hrN abL azR -njJ -qtt -qtt -hVX -pry -qHa -bVu +sgh +uHb +uHb +whf +jaK +wVO +vGW azR aoF aoF @@ -65966,7 +65966,7 @@ awX aui axs aui -jcU +srw aVU aVV aVV @@ -65977,7 +65977,7 @@ aVV aVV aVV aVU -mhK +dAA att att att @@ -66080,7 +66080,7 @@ bCg bCg bCg bCg -ftN +kpE bCI bCg bmh @@ -66207,8 +66207,8 @@ azR azR azR azR -hVX -svF +whf +oMs azR azR azR @@ -66248,18 +66248,18 @@ awY atV axs awY -cfH -qYP -qYP -qgz -qgz -hUW -hUW -qgz -qgz -qYP -qYP -reT +tAE +nhH +nhH +wzb +wzb +wRR +wRR +wzb +wzb +nhH +nhH +lvY auu att ayN @@ -66361,8 +66361,8 @@ bCI bCI bCI bCI -pMj -jfu +qtN +dKJ bCI bCg bmQ @@ -66485,15 +66485,15 @@ abL hrN azD azD -wGg -lXl -wEQ -dog -lgA -szI -dog -nMn -sUl +eFK +nHK +efx +wdl +fJZ +jBD +wdl +rrw +lgH azD aoF aqp @@ -66766,16 +66766,16 @@ amN abL abL azD -jhp -nbj -szI -szI -szI -lgA -szI -szI -szI -hOD +tyC +kag +jBD +jBD +jBD +fJZ +jBD +jBD +jBD +daN azD azD aqu @@ -67048,18 +67048,18 @@ amN abL abL azD -xOh -szI -szI -szI -szI -jfI -fFG -eHN -wYf -wYf -wYf -qQa +dqJ +jBD +jBD +jBD +jBD +qbp +ekc +efn +rti +rti +rti +rct ara arj aoI @@ -67330,17 +67330,17 @@ amN abL abL azD -vtI -szI -caR -sLT -szI -vRz -sLT -szb -szI -szI -wHg +ctV +jBD +qsm +qrH +jBD +xxs +qrH +rZi +jBD +jBD +eJG azD are arn @@ -67612,18 +67612,18 @@ amN abL hrN azD -kwv -fFG -qtO -eFp -fFG -dPP -sLT -szb -szI -szI -wHg -jwg +ePH +ekc +tQQ +rzQ +ekc +bCy +qrH +rZi +jBD +jBD +eJG +eqY aoI aoI aoF @@ -67894,18 +67894,18 @@ amN abL hrN azD -mAi -szI -caR -sLT -szI -caR -sLT -jup -szI -szI -wHg -jwg +hvi +jBD +qsm +qrH +jBD +qsm +qrH +iov +jBD +jBD +eJG +eqY aoI aoF aoI @@ -68176,18 +68176,18 @@ amN abL hrN azD -vtI -szI -caR -sLT -szI -caR -sLT -jnl -szI -szI -wHg -jwg +ctV +jBD +qsm +qrH +jBD +qsm +qrH +hno +jBD +jBD +eJG +eqY aoI aoF aoI @@ -68218,11 +68218,11 @@ aOg aOf aOf aOf -dVQ -dVQ -dVQ -dVQ -dVQ +tQj +tQj +tQj +tQj +tQj aOf aOf aOf @@ -68410,9 +68410,9 @@ aaE aaE aeI aeI -oTe -fTm -dtO +ope +tVi +mdt aeI aeK aeK @@ -68458,18 +68458,18 @@ amN abL abL azD -wop -szI -xVo -sLT -szI -caR -sLT -eYz -szI -szI -wHg -jwg +lQn +jBD +xUR +qrH +jBD +qsm +qrH +jXR +jBD +jBD +eJG +eqY aoI aoF aoI @@ -68493,30 +68493,30 @@ atI atV auR aOg -nqk -svp -svp -svp -ghG -esX -dSd -svp -svp -svp -svp -svp -cXW -xpA -bZV +sff +geS +geS +geS +vGs +mhQ +uiA +geS +geS +geS +geS +geS +uUE +uMV +gTW aOf aOf -oZF -ioP -xkp -rSz -rSz -ioP -glj +xcH +uvR +vGu +sPp +sPp +uvR +txL aZE aZM aUq @@ -68691,14 +68691,14 @@ aaE aaE aaE aeK -hUs -tPt -kTX -ksv +mky +wbR +qrE +emY agi -lhc -hSm -grD +dJK +fRT +uok aeI abL aax @@ -68740,17 +68740,17 @@ amN abL hrN azD -vtI -szI -caR -sLT -szI -caR -sLT -jnl -szI -szI -tjQ +ctV +jBD +qsm +qrH +jBD +qsm +qrH +hno +jBD +jBD +qKh azD aoI aoI @@ -68775,24 +68775,24 @@ atI atV avk aOg -hXx -dzC -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -nQA -rpf -lti -lNE +jom +iRd +oYP +oYP +oYP +oYP +oYP +oYP +oYP +oYP +oYP +oYP +plB +iXw +jMk +gtb aOf -rRh +kel aYC aZb aYC @@ -68973,14 +68973,14 @@ aaE aaE aaE aeK -fWj -kTX -kTX -sMr +eWk +qrE +qrE +etD agi -cPQ -kTX -cGK +vTW +qrE +owG aeI abL aax @@ -69022,17 +69022,17 @@ amN hrN hrN azD -tNw -szI -caR -sLT -xro -caR -sLT -lTv -vcd -kbJ -mRz +szp +jBD +qsm +qrH +lqR +qsm +qrH +mYV +wpP +xjD +mki azD aoI aoI @@ -69057,24 +69057,24 @@ aui atV avk aOg -kYd -vEd -hCo -vEd -vEd -vEd -vEd -vEd -vEd -vEd -vEd -vEd -vEd -vEd -vEd -iCg -iMR -rRh +ead +fCO +eiE +fCO +fCO +fCO +fCO +fCO +fCO +fCO +fCO +fCO +fCO +fCO +fCO +gCH +pzm +kel aYC aZb aYC @@ -69255,14 +69255,14 @@ aaE aaE aaE aeK -laq -lID -vpF -xlk +prp +gxW +lPR +dBI agi -eXm -vpF -sRm +wlI +lPR +vrM aeI aax aax @@ -69304,16 +69304,16 @@ amN abL hrN azD -uAB -szI -xfo -vSB -szI -xfo -tsa -uEr -nUV -vCG +ccn +jBD +hXg +eQT +jBD +hXg +gxN +kLq +xYD +rhR azD azD aoI @@ -69339,23 +69339,23 @@ aui aui avs aOg -xIg -iAe -rpf -rpf -mxN -rpf -hYX +nSd +qDq +iXw +iXw +nqD +iXw +eMM aRy aUh -rpf -rpf -rpf -rpf -rpf -rpf -rpf -oVI +iXw +iXw +iXw +iXw +iXw +iXw +iXw +koK aYC aYC aZc @@ -69379,7 +69379,7 @@ aaU abc azz azz -hbN +cXO azz azz bbW @@ -69539,11 +69539,11 @@ aec aec aed aed -fVp +gTe agi agi agi -eVA +qJX agi aeI aax @@ -69586,16 +69586,16 @@ amN abL abL azD -mpy -xno -xno -xno -xno -xno -oqI -nJQ -oqI -uUl +tZl +jTe +jTe +jTe +jTe +jTe +yeg +oqp +yeg +lVZ azD aoF aoI @@ -69621,23 +69621,23 @@ lXk aui avs aOf -kNK -rpf -rpf -rpf -rpf -hYX -fUs -ryJ -cFV -rpf -rpf -rpf -rpf -rpf -rpf -rpf -oVI +vJx +iXw +iXw +iXw +iXw +eMM +tJR +unF +nyx +iXw +iXw +iXw +iXw +iXw +iXw +iXw +koK aYC aYC aZb @@ -69661,7 +69661,7 @@ bbL azz azz azz -hbN +cXO bbZ bcq bcp @@ -69818,15 +69818,15 @@ abR abR aec aec -khD -lhN +hic +jyL aed -nIS -hSm -jbX -hSm -hDw -fIH +xDC +fRT +fiH +fRT +oTd +mxr aeI abL aax @@ -69875,7 +69875,7 @@ aAb aAb aAb aAb -khj +cBj aAb aAb azD @@ -69903,9 +69903,9 @@ aLk aui avs aOf -gmn -rpf -hYX +jkX +iXw +eMM aRy aSg aSk @@ -69913,13 +69913,13 @@ aRy aRy aRy aUh -hjj +iyH aVy -jjx -mxN -jIS -elx -oVI +dDE +nqD +hTG +oLC +koK aYC aYC aZb @@ -69942,8 +69942,8 @@ bbZ bcp azz azz -hbN -itf +cXO +ikp azt aaP abM @@ -70099,16 +70099,16 @@ abR abR abR aec -onD -fnv -oFT +lJP +qVQ +jWV aed -thN -kTX -teK -kTX -hDw -ksv +jWA +qrE +xLl +qrE +oTd +emY aeI aeI aeI @@ -70150,16 +70150,16 @@ anu amN abL azE -ihX -nyt -jvK -vcK -wYM -wYM -wYM -coU -iCc -dWj +okx +dgl +hOj +xPj +ulr +ulr +ulr +kIU +vvh +eMB azE aoF aoI @@ -70185,23 +70185,23 @@ aLk lXk avs aOf -xIg -hYX -uoX -fYl +nSd +eMM +fDi +suD aSh -czg -twl -twl -twl -czg -sru -twl -hHV -jjx +oQT +fOE +fOE +fOE +oQT +sUZ +fOE +jEn +dDE aSj -rpf -oVI +iXw +koK aYC aYC aZb @@ -70381,19 +70381,19 @@ acz acz acz aec -nAH -xIR -lkp -obR -rFh -igS -ueA -pMb -cmc -jZF +pjC +iHZ +did +tHU +mMN +uYs +fGk +dVa +iiL +fjF aeK -lQw -lkU +tdS +khT aeK ahj ahj @@ -70432,16 +70432,16 @@ amQ anv abL azE -gPN -tBY -tBY -tBY -tBY -tBY -tBY -coU -tBY -tjP +jBG +ibT +ibT +ibT +ibT +ibT +ibT +kIU +ibT +eqa azE azE aoI @@ -70467,23 +70467,23 @@ aMh lXk avs aOf -xIg +nSd aPJ -lUG -uae -hjj -sru -sru -sru -sru -sru -sru -sru -sru +rBQ +xiQ +iyH +sUZ +sUZ +sUZ +sUZ +sUZ +sUZ +sUZ +sUZ aWJ aXm -rpf -oVI +iXw +koK aYC aYC aZb @@ -70513,8 +70513,8 @@ aaQ abj abn azz -hbN -hbN +cXO +cXO azz azz azz @@ -70659,24 +70659,24 @@ abR abR acz acz -pvf -ncQ -pUJ +jIa +fzs +iIq aed -opY -giw -eZu +jeX +hdS +rZQ aed -ooN -piB -eeI -cbZ -nDw -kMi -dAX -kMi -olS -dAX +okI +lJt +kqJ +qZT +pqn +aKC +jjw +aKC +rDj +jjw ahk ahk ahk @@ -70714,18 +70714,18 @@ amR abL abL azE -oQj -tBY -tBY -tBY -tBY -tBY -tBY -coU -tBY -tBY -tBY -wCO +wVa +ibT +ibT +ibT +ibT +ibT +ibT +kIU +ibT +ibT +ibT +krg aoI aoF aoI @@ -70749,23 +70749,23 @@ aMi aui avs aOf -xIg -vEW -cCq -fYl +nSd +aCT +dCZ +suD aSj -cyG -can -can -can -cyG -sru -can -evX -wHt +lvr +jtI +jtI +jtI +lvr +sUZ +jtI +rov +pJe aSh -rpf -oVI +iXw +koK aYC aYC aZb @@ -70794,8 +70794,8 @@ bbM aaR aaZ bbL -hbN -itf +cXO +ikp azz aaC azz @@ -70940,24 +70940,24 @@ abR abR abR acB -tlc -cRo -tyN -gxZ +lNe +jUP +tXX +ckO aed -lxE -oqN +cJB +vvf aed aed -mhy -kTX -gmi -qEV -hDw -gxo +iPO +qrE +nGL +pdV +oTd +iVQ aeK -tTE -qSH +tfP +wiD aeK ahj ahj @@ -70981,8 +70981,8 @@ aob aob asA asA -tMv -dFd +mMW +cct asA asA asA @@ -70996,17 +70996,17 @@ amR abL hrN azE -oQj -tBY -tBY -qgq -tBY -oco -qgq -coU -tBY -tBY -xwi +wVa +ibT +ibT +vZB +ibT +urz +vZB +kIU +ibT +ibT +dsk azE aoI aoF @@ -71031,9 +71031,9 @@ aaC aKs avw aOf -xIg -rpf -vEW +nSd +iXw +aCT aRy aSk aSg @@ -71041,13 +71041,13 @@ aRy aRy aRy aUh -hjj +iyH aVy -wHt -rpf -nCe -vsH -oVI +pJe +iXw +cJR +mbs +koK aYD aYC aZb @@ -71076,8 +71076,8 @@ azt bbW bgb bcp -hbN -hbN +cXO +cXO azz aaC azz @@ -71222,21 +71222,21 @@ abR abR abR acB -jJO -tTA -sBc -cBL +dHC +mLf +eVz +uNA aed aer aer aed -oMQ -tPt -piB -tWk -gmi -eGL -ksv +cEF +wbR +lJt +wHA +nGL +qHB +emY aeI aeI aeI @@ -71249,24 +71249,24 @@ agP aib ahj aob -fXD -inC -hBB +fyB +koU +nlj aou -qmX -boU -eLN -boU -jFG -boU -gnY +oxH +uun +vKb +uun +tmM +uun +elV aob -daC -fMf -hvj -hRl -iLr -qic +wII +fhZ +feu +qwR +hSq +rLJ asA abL abL @@ -71278,18 +71278,18 @@ amR abL hrN azE -cPt -xZq -xZq -kDh -xZq -xZq -kDh -ogt -tBY -tBY -xwi -cwJ +oAF +vOA +vOA +kvh +vOA +vOA +kvh +dtj +ibT +ibT +dsk +uhw aoF aoI aoI @@ -71313,23 +71313,23 @@ aKh aKh aKh aOf -oVb -rpf -rpf -sqq -paP -vEW -fRL -ryJ -xhU -rpf -rpf -rpf -rpf -rpf -rpf -rpf -oVI +eWS +iXw +iXw +uCU +irs +aCT +rZV +unF +svH +iXw +iXw +iXw +iXw +iXw +iXw +iXw +koK aYC aYC aZb @@ -71340,7 +71340,7 @@ aYC aYC aZO aYC -lEf +foS aaQ aaC acm @@ -71359,7 +71359,7 @@ bbY bcp azz azz -hbN +cXO azz aaC azz @@ -71504,24 +71504,24 @@ abR abR abR acB -nOQ -tTA -sBc -sQb +uNt +mLf +eVz +wcN aee -kIM -esz -hSm -qrb -iom -pGr -qZb -qZb -hDw -ksv +lwf +wLt +fRT +xch +ctK +enb +wFQ +wFQ +oTd +emY agi -kZw -wwx +uwr +lqS aeI aeI agP @@ -71531,24 +71531,24 @@ aax aid ahj aob -hBY -wEi -oRf +tIf +aJX +uEv aou -mIi -xqA -qgM -xqA -gFI -xqA -oMP +cDi +owU +pYR +owU +cTc +owU +iEl aob -kdA -vWd -vEw -oai -vWd -obP +miH +xzX +fUX +ofn +xzX +wZD asA abL ajf @@ -71560,18 +71560,18 @@ amR hrN hrN azE -dIj -tBY -tBY -qgq -tBY -tBY -qgq -shL -tBY -tBY -xwi -cwJ +lIH +ibT +ibT +vZB +ibT +ibT +vZB +mnZ +ibT +ibT +dsk +uhw aoI aoI aoI @@ -71588,30 +71588,30 @@ aac aac aac aKh -gAD -uGU -ops -ifc -lBH -eTc +gbs +gWw +kxJ +mon +gyH +oWN aOf -oVb -tVJ -rpf -rpf -rpf -rpf -vEW +eWS +nZo +iXw +iXw +iXw +iXw +aCT aRy aUh -rpf -rpf -rpf -rpf -rpf -rpf -rpf -oVI +iXw +iXw +iXw +iXw +iXw +iXw +iXw +koK aYC aYC aZb @@ -71622,7 +71622,7 @@ aYC aYC aZO aYC -lEf +foS aaQ aaC acm @@ -71641,7 +71641,7 @@ azz azz azz azz -hbN +cXO azz aaC azz @@ -71745,16 +71745,16 @@ bmU bmU bmU bVW -rJF -rJF +tAH +tAH bVW -gRP -gRP -gRP -gRP +esO +esO +esO +esO bVW -rJF -rJF +tAH +tAH bVW bmU bmU @@ -71786,25 +71786,25 @@ abO abR abR acz -tmq -tTA -chI -uhD -mZy -igS -igS -igS -igS -nqw -hwq -hwq -igS -rFh -igS -mEq -dZe -hKZ -cXJ +mAP +mLf +oAw +iOx +cNx +uYs +uYs +uYs +uYs +gkb +uUH +uUH +uYs +mMN +uYs +ihu +mfL +czo +sej aeI ahi agP @@ -71813,24 +71813,24 @@ agP aib aiC aob -pxv -rps -deK +slr +kXm +jWr aou -phn -wEi -gGl -rps -wEi -wEi -mDy +wyM +aJX +lah +kXm +aJX +aJX +hOY aou -uhx -lnq -oHT -eRJ -vWd -lBV +gdj +oOw +pBg +jEI +xzX +dnk asA abL abL @@ -71842,18 +71842,18 @@ amS abL abL azE -oQj -tBY -tBY -qgq -tBY -tBY -qgq -shL -tBY -tBY -xwi -cwJ +wVa +ibT +ibT +vZB +ibT +ibT +vZB +mnZ +ibT +ibT +dsk +uhw aoI aoI aoI @@ -71870,31 +71870,31 @@ aJl aJl aJl aJl -mhR -jJU -jJU -doD -jJU -qnj +tLj +qQY +qQY +lLP +qQY +lJT aOf -vIm -tTv -iNh -lOC -uSB -uSB -lOC -lOC -lOC -lOC -lOC -lOC -fUl -ggU -ggU -kvH -hvr -rRh +hjt +pLy +kLK +cFy +oeo +oeo +cFy +cFy +cFy +cFy +cFy +cFy +dym +lNd +lNd +sWG +hCY +kel aYC aZb aYC @@ -71904,7 +71904,7 @@ aZn aYC aZO aYC -lEf +foS aaQ aaC acm @@ -72027,16 +72027,16 @@ bmU bmU bVW bVW -rJF -rJF +tAH +tAH bVW -gRP -gRP -gRP -gRP +esO +esO +esO +esO bVW -rJF -rJF +tAH +tAH bVW bVW bmU @@ -72068,25 +72068,25 @@ abb abR abR acB -wQO -tTA -tTA -sQb +frA +mLf +mLf +wcN aee -wtm -iQf -kTX -cJu -lID -xEd -dWX -kTX -vLy -uzj +xZR +mTl +qrE +nAW +gxW +duk +cUl +qrE +jMa +mRG agi -kja -fPE -jVo +tfV +vZF +ckL aeI aax aax @@ -72096,23 +72096,23 @@ aib ahj aob aou -kJZ +nfZ aou aou -eBf -wEi -xwM -npn -wEi -wEi -nSQ -lfc -lzu -vWd -emN -lBK -vWd -obP +rrq +aJX +chc +fvM +aJX +aJX +dnB +cOG +eHJ +xzX +elh +snr +xzX +wZD asA abL abL @@ -72124,18 +72124,18 @@ amS ajf hrN azE -rEU -tBY -tBY -qgq -tBY -tBY -qgq -wtr -tBY -tBY -xwi -cwJ +lxo +ibT +ibT +vZB +ibT +ibT +vZB +sHI +ibT +ibT +dsk +uhw aoI aoI aoI @@ -72146,37 +72146,37 @@ aoG aCW acm aJl -fLB -dYo -dYo -dYo -arV +iCM +lqK +lqK +lqK +vLu aJl -gxs -gNF -gNF -kBc -gNF -vhA +nvZ +wzZ +wzZ +sSN +wzZ +gce aOf -lpQ -vIj -nuu -vIR -vIj -vIj -vIj -vIj -tum -vIR -vIj -vDd -dUw -gRA -oIW -nbx +czk +iRw +bjc +wtI +iRw +iRw +iRw +iRw +lkZ +wtI +iRw +xAf +xQr +ixw +ylL +tjz aOf -rRh +kel aYC aZb aYC @@ -72186,7 +72186,7 @@ aYC aYC aZO aYC -lEf +foS aaQ aaC acm @@ -72308,18 +72308,18 @@ bmU bmU bmU bVW -hOR -hOR -hOR -rrD -gRP -gRP -gRP -gRP -ecV -hOR -hOR -hOR +qeS +qeS +qeS +oLR +esO +esO +esO +esO +qij +qeS +qeS +qeS bVW bmU bmU @@ -72350,25 +72350,25 @@ aaQ aaD abR acB -lML -tTA -kkK -sQb +moO +mLf +igs +wcN aeg aeg aeg -xQH +fAV afG afG agp afG -xQH +fAV aeg aeg aeg -jbx -gxo -uzj +lLU +iVQ +mRG aeI aax aax @@ -72377,24 +72377,24 @@ agP aib ahj aob -eol -jNm -vue -vue -dSI -jtH -gEZ -ffE -gEZ -gEZ -krB -uKd -uUX -tkf -aUG -lEF -rKs -obP +wOT +oOI +sNx +sNx +kup +kmo +mvL +mHj +mvL +mvL +yhn +oVi +pBG +jPb +mna +gBz +uBD +wZD asA abL hrN @@ -72406,17 +72406,17 @@ amS abL abL azE -oQj -tBY -tBY -qgq -qEF -tBY -qgq -wtr -tBY -tBY -lvq +wVa +ibT +ibT +vZB +sAh +ibT +vZB +sHI +ibT +ibT +pFO azE aoI aoI @@ -72428,37 +72428,37 @@ aGC aaS acm aJl -lfU -grf -grf -grf -ooP +ijQ +aJB +aJB +aJB +sYA aJl aKh -sPV +qLm aKh -uai -fll +sEq +iEH aKh aOf aOf aOf -sJP +sNY aOf -dVQ -dVQ -dVQ -dVQ +tQj +tQj +tQj +tQj aOf aOf aOf -dVQ -dVQ -dVQ +tQj +tQj +tQj aOf aOf aOf -faT +dmF aYC aZb aYC @@ -72468,7 +72468,7 @@ aYC aYC aZP aYC -lEf +foS aaQ aaC acj @@ -72590,18 +72590,18 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gRP -gRP -gRP -gRP +esO +esO +esO +esO bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -72632,25 +72632,25 @@ aaR abb abR acB -oIm -ufm -tTA -dWh +tZm +uQp +mLf +rLz aeg -gkP -lhh -mRF -lhh -lhh -dbW -lhh -mRF -lhh -cak +xLq +eGt +xxJ +eGt +eGt +mON +eGt +xxJ +eGt +sUN aeg -nkC -ksv -mqw +rIl +emY +ufn aeI agP aax @@ -72659,24 +72659,24 @@ agP aib ahj aob -dKV -npn -sdi -pWA -nqg -npn -ooj -ooj -ooj -ooj -jZY +vSI +fvM +cmX +eYH +yid +fvM +nzX +nzX +nzX +nzX +ihm aou -wLO -mxD -ygn -dQa -kIZ -tfG +ihg +iCK +xpE +xjX +dsz +uMS asA abL abL @@ -72688,17 +72688,17 @@ amS abL abL azE -eun -tBY -tBY -qgq -tBY -tBY -qgq -wtr -tBY -omO -xgt +xyc +ibT +ibT +vZB +ibT +ibT +vZB +sHI +ibT +rxS +xdX azE aGC aqj @@ -72710,37 +72710,37 @@ aGD aaQ acm aJl -lfU -grf -grf -grf -ooP -uZJ -jJU -jJU -qdr -oVx -kIq -wal +ijQ +aJB +aJB +aJB +sYA +njl +qQY +qQY +uhz +qTf +dvZ +krt oHs -nqk -svp -nuu -vTL -svp -svp -svp -svp -svp -yfC -kSn -svp -svp -svp -chQ +sff +geS +bjc +kfc +geS +geS +geS +geS +geS +eDF +hAy +geS +geS +geS +qzB oHs aYC -xXJ +qVi aYC aZb aYC @@ -72750,7 +72750,7 @@ aYC aYC aYC aYC -lEf +foS aaQ aaC aaC @@ -72877,8 +72877,8 @@ bVW bVW bVW bVW -mlw -eaI +rqb +uzC bVW bVW bVW @@ -72915,24 +72915,24 @@ aaR abb acz acz -rvd -glt -nMu +ipW +rWk +scR aeg -dsC -inh -ian -dlX -dlX -qrG -dlX -inh -ian -jte +qGG +ctv +oPb +ghm +ghm +cdS +ghm +ctv +oPb +kfi aeg -vcI -ksv -hhq +frW +emY +wgR aeI aax aax @@ -72942,11 +72942,11 @@ aib ahj aob aou -jfA +wEc aou aou apJ -xwj +nqL apJ apJ apJ @@ -72955,8 +72955,8 @@ apJ apJ asH asH -dIK -tcS +fvK +rqu asA asA asA @@ -72970,16 +72970,16 @@ aid abL abL azE -uXn -gqA -hcA -rcO -vRB -hcA -rcO -kKz -tBY -tjP +nFl +siw +koA +cXj +tYW +koA +cXj +xht +ibT +eqa azE azE aGD @@ -72992,37 +72992,37 @@ aGE aaQ acm aJl -lfU -grf -grf -grf -ooP -jJU -jJU -kWw -wwX -pit -wwX -wwX -hFG -gnf -gnf -kBN -gnf -gnf -gnf -gnf -gnf -gnf -gnf -sPu -rhe -pMO -pMO -pMO -qpE +ijQ +aJB +aJB +aJB +sYA +qQY +qQY +gzB +eEC +wpJ +eEC +eEC +pbM +oWm +oWm +vIu +oWm +oWm +oWm +oWm +oWm +oWm +oWm +jhv +eKn +eeb +eeb +eeb +vzJ aYC -lEf +foS aYC aZb aYC @@ -73154,18 +73154,18 @@ bmU bmU bmU bVW -gRP -gRP -gRP -gRP +esO +esO +esO +esO bVW -gRP -gRP +esO +esO bVW -mHf -mHf -xVV -xVV +fgs +fgs +hUI +hUI bVW bmU bmU @@ -73201,19 +73201,19 @@ acz acz acz aeh -aZH -ijQ -ivL -aZH -aZH -ikX -aZH -rML -ijQ -aZH +erQ +cVn +cmI +erQ +erQ +mJw +erQ +rOb +cVn +erQ aeg -uiS -dTl +uyw +lGP aeI aeI aax @@ -73223,22 +73223,22 @@ aax aib ahj aob -uMW -npn -mEr +kMU +fvM +tJz aou -nzi -mOZ -rmp -dCG -dCG -syo -jFx +wQI +prq +rlr +bgd +bgd +wJF +kRf apJ -fxf -rAI -vBy -gky +jZk +loV +ltP +msz asA hrN abL @@ -73253,15 +73253,15 @@ aax aak azE azE -cPS -oGi -oGi -oGi -oGi -oGi -oGi -oGi -xgt +vqN +edN +edN +edN +edN +edN +edN +edN +xdX azE aaS aGD @@ -73274,37 +73274,37 @@ aoG aaQ acm aJl -lfU -grf -grf -grf -ooP -jJU -jJU -vCp -jJU -xUm -gZH -gZH -npo -fpD -fpD -gjj -fpD -fpD -fpD -fpD -fpD -fpD -rhz -uso -qfE -yjx -yjx -yjx -xFR +ijQ +aJB +aJB +aJB +sYA +qQY +qQY +enJ +qQY +sWL +yaA +yaA +ixI +xMO +xMO +bVd +xMO +xMO +xMO +xMO +xMO +xMO +qPb +oVN +vJN +clY +clY +clY +xCQ aYo -inm +imA aYo aZe aYC @@ -73326,9 +73326,9 @@ aaQ aAm azz azz -hbN -hbN -hbN +cXO +cXO +cXO azz azP azz @@ -73436,18 +73436,18 @@ bmU bmU bmU bVW -gRP -gRP -gRP -gRP -mlw -gRP -gRP -eaI -gRP -gRP -gRP -gRP +esO +esO +esO +esO +rqb +esO +esO +uzC +esO +esO +esO +esO bVW bmU bmU @@ -73483,16 +73483,16 @@ adj adj adj aeh -aZH -ijQ -mRF -ijQ -ijQ -tve -ijQ -mRF -ijQ -aZH +erQ +cVn +xxJ +cVn +cVn +dvd +cVn +xxJ +cVn +erQ aeh aeI aeI @@ -73505,22 +73505,22 @@ aax aib agP aob -xfS -sXC -oRf +sFu +biL +uEv aou -mxU -vsC -now -now -now -now -now -kzD -vWd -rYR -tQX -fVm +kOW +jlR +gyx +gyx +gyx +gyx +gyx +cif +xzX +jic +sPd +vzD asA hrN hrN @@ -73556,37 +73556,37 @@ aoG abc acm aJl -lfU -grf -grf -grf -ooP -jJU -jJU -vCp -jJU -gTQ -jJU -ewM +ijQ +aJB +aJB +aJB +sYA +qQY +qQY +enJ +qQY +sKm +qQY +iSU paK -puQ -kwf -kwf -kwf -kwf -kwf -kwf -kwf -qyv -lbm -kwf -kwf -kwf -kwf -kTm +hpK +vVA +vVA +vVA +vVA +vVA +vVA +vVA +nbs +cuv +vVA +vVA +vVA +vVA +cpG paK aYC -ebh +yaH aYC aYC aYC @@ -73607,9 +73607,9 @@ aaU aaQ aAz azz -hbN -itf -hbN +cXO +ikp +cXO azz azz azz @@ -73718,18 +73718,18 @@ bVW bVW bmU bVW -gRP -gRP -gRP -gRP +esO +esO +esO +esO bVW -gRP -gRP +esO +esO bVW -xVV -xVV -mHf -xVV +hUI +hUI +fgs +hUI bVW bmU bVW @@ -73765,16 +73765,16 @@ adj adj adj aei -fIs -sgF -ivL -aZH -aZH -ikX -aZH -rML -dMo -ybr +bZB +ibt +cmI +erQ +erQ +mJw +erQ +rOb +gPo +iNU aei aax aax @@ -73787,22 +73787,22 @@ ahJ aib agP aob -phn -coI -oRf +wyM +nEc +uEv aou -oow -now -now -now -now -now -sgt +qhn +gyx +gyx +gyx +gyx +gyx +dsv apJ -aMJ -eCz -gkH -fJV +iQm +hnQ +iDy +khq asA abL hrN @@ -73838,37 +73838,37 @@ aoG aoG acm aJl -lfU -grf -grf -grf -ooP +ijQ +aJB +aJB +aJB +sYA aJl -ieO -vCp -jJU -vcs -jJU -ewM +dGj +enJ +qQY +cYs +qQY +iSU aOj aOj aOj aOj aOj -pdw -pdw -pdw -pdw +eHP +eHP +eHP +eHP aOj -oxK +eiX aOj -pdw -pdw -pdw +eHP +eHP +eHP aOj aOj aOj -faT +dmF aYC aYC aYC @@ -73890,7 +73890,7 @@ aaQ azz azz azz -hbN +cXO azz azz azz @@ -73995,8 +73995,8 @@ bmU bmU bVW bVW -sry -sry +fEo +fEo bVW bVW bVW @@ -74005,8 +74005,8 @@ bVW bVW bVW bVW -kxd -kxd +rkH +rkH bVW bVW bVW @@ -74015,8 +74015,8 @@ bVW bVW bVW bVW -sry -sry +fEo +fEo bVW bVW bmU @@ -74047,16 +74047,16 @@ adj adj adj aei -qXj -inh -dMo -lhh -lhh -dbW -lhh -sgF -ian -iNt +pQn +ctv +gPo +eGt +eGt +mON +eGt +ibt +oPb +okf aei aax aax @@ -74069,17 +74069,17 @@ aax aie ahj aob -qOw -wEi -qUF +krP +aJX +xwF aob -yfr -now -now -now -now -now -sgt +vVu +gyx +gyx +gyx +gyx +gyx +dsv apP asA asA @@ -74120,37 +74120,37 @@ aoG aoG acm aJl -qgx -ilT -ilT -ilT -mKq +nUp +fmk +fmk +fmk +fLc aJl -irp -vCp -jJU -jJU -jJU -ewM +aWy +enJ +qQY +qQY +qQY +iSU aOj -fKf -hQw -hQw -dCp -hQw -hQw -hQw -hQw -ktx -lbm -wnJ -hpb -kWx -nLi -lOU -cVr +vHz +xeC +xeC +tiJ +xeC +xeC +xeC +xeC +mbG +cuv +wUG +olC +dOz +qdB +uiI +mBU aOj -rRh +kel aYC aYC aYC @@ -74276,30 +74276,30 @@ bmi bmU bmU bVW -jEB -jEB -jEB +dJW +dJW +dJW bVW -iWo -iWo -imV -gYP -iWo -iWo +mvm +mvm +dST +bbV +mvm +mvm bVW -gRP -gRP +esO +esO bVW -iBv -iBv -gYP -imV -pAN -pAN +fUq +fUq +bbV +dST +lFd +lFd bVW -jEB -jEB -jEB +dJW +dJW +dJW bVW bmU bmU @@ -74330,14 +74330,14 @@ adj adj aeh aeh -eBI -inh -mRF -mRF -mwZ -mRF -ian -gtp +vvm +ctv +xxJ +xxJ +peL +xxJ +oPb +mHp aeh aeh aax @@ -74351,17 +74351,17 @@ aax aie ahj aob -mmq -sdi -hZH +mUK +cmX +mvH aob -pmy -sEN -gKX -oEo -tlV -osw -uxW +ixE +byN +fkw +ttT +pEH +daH +trt apP abL abL @@ -74408,31 +74408,31 @@ aJl aJl aJl aJl -rnu -lsW -htG -ykm -pJR -rnu +qPj +myv +hsB +vAt +hDG +qPj aOj -stx -gYU -gYU -gYU -gYU -gYU -gYU -gYU -gYU -rXF -gax -gax -pTd -sBH -xPa -lJn -lHB -rRh +wRt +ryV +ryV +ryV +ryV +ryV +ryV +ryV +ryV +ntG +iqr +iqr +sjH +eQW +xna +cLB +xxT +kel aYC aYC aYC @@ -74558,30 +74558,30 @@ bmU bmU bmU bVW -kqj -kqj -kqj +fXL +fXL +fXL bVW -gYP -gYP -gvX -gYP -gYP -gYP -qWS -gRP -gRP -eUt -gYP -gYP -gYP -gvX -gYP -gYP +bbV +bbV +wih +bbV +bbV +bbV +erj +esO +esO +dhR +bbV +bbV +bbV +wih +bbV +bbV bVW -kqj -kqj -kqj +fXL +fXL +fXL bVW bmU bmU @@ -74613,12 +74613,12 @@ adj adj aeh aeh -mWB -hDc -acA -snq -xuy -rdn +pij +gGk +vFx +tra +dLS +xmk aeh aeh aax @@ -74697,23 +74697,23 @@ aKh aKh aKh aOj -hYn -pOf -ePt -ePt -ePt -uUZ -cZE +cub +nIh +sim +sim +sim +dRN +kWx aRE aUn -ePt -ePt -ePt -ePt -ePt -ePt -ePt -mnf +sim +sim +sim +sim +sim +sim +sim +wTp aYC aYC aYC @@ -74743,7 +74743,7 @@ aaC bbI bgq bcp -hbN +cXO bbX azz azt @@ -74840,30 +74840,30 @@ bmU bmU bmU bVW -jEB -jEB -jEB +dJW +dJW +dJW bVW -gYP -gYP -wHF -gYP -gYP -gYP +bbV +bbV +mjO +bbV +bbV +bbV bVW -gRP -gRP +esO +esO bVW -gYP -gYP -gYP -wHF -gYP -gYP +bbV +bbV +bbV +mjO +bbV +bbV bVW -jEB -jEB -jEB +dJW +dJW +dJW bVW bmU bmU @@ -74979,23 +74979,23 @@ aac aac aac aOj -hYn -ePt -ePt -ePt -ePt -cZE -ycU -jAS -nTe -ePt -ePt -ePt -ePt -ePt -ePt -ePt -mnf +cub +sim +sim +sim +sim +kWx +wSd +fED +dNn +sim +sim +sim +sim +sim +sim +sim +wTp aYC aYC aYC @@ -75025,7 +75025,7 @@ bbI bbI bbX aaC -hbN +cXO bbM azz azz @@ -75122,30 +75122,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gYP -gYP -ryS -gYP -gYP -gYP -imV -gRP -gRP -imV -gYP -gYP -gYP -fPC -gYP -gYP +bbV +bbV +jUe +bbV +bbV +bbV +dST +esO +esO +dST +bbV +bbV +bbV +oDA +bbV +bbV bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bVO @@ -75261,9 +75261,9 @@ aac aac aac aOj -veo -ePt -cZE +oKC +sim +kWx aRE aSp aSt @@ -75271,13 +75271,13 @@ aRE aRE aRE aUn -lsw +dJN aVD -gqO -ePt -xGr -uAm -mnf +xwI +sim +fBo +old +wTp aYC aYC aYC @@ -75306,8 +75306,8 @@ aaR abb bbZ bcp -hbN -hbN +cXO +cXO azz azz azz @@ -75404,30 +75404,30 @@ bmU bVO bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gYP -gYP -ryS -gYP -ttf -gYP -gvX -gRP -gRP -gvX -gYP -ttf -gYP -fPC -gYP -gYP +bbV +bbV +jUe +bbV +lUd +bbV +wih +esO +esO +wih +bbV +lUd +bbV +oDA +bbV +bbV bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -75543,23 +75543,23 @@ aac aac aac aOj -hEJ -cZE -lDj -qDX +oiz +kWx +fIW +nsr aSq -nRT -xWa -xWa -xWa -nRT -sXI -xWa -rCt -gqO +lok +moC +moC +moC +lok +doF +moC +lRc +xwI aSs -ePt -mnf +sim +wTp aYC aYC aYC @@ -75580,16 +75580,16 @@ aaC aaC aaC aaQ -hbN -whB +cXO +mcm azz azz bbL abc -eNC -hbN -hbN -hbN +hSz +cXO +cXO +cXO azz azz azz @@ -75686,30 +75686,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gYP -gYP -ryS -gYP -gYP -gYP -wHF -gRP -gRP -wHF -gYP -gYP -gYP -fPC -gYP -gYP +bbV +bbV +jUe +bbV +bbV +bbV +mjO +esO +esO +mjO +bbV +bbV +bbV +oDA +bbV +bbV bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -75825,23 +75825,23 @@ aac aac aac aOj -viz +ctC aPV -sVL -dXv -lsw -sXI -sXI -sXI -sXI -xuq -sXI -sXI -sXI +aOs +oHa +dJN +doF +doF +doF +doF +mgZ +doF +doF +doF aWN aXu -ePt -mnf +sim +wTp aYC aYC aYC @@ -75863,15 +75863,15 @@ aaC aaC aaQ bda -swO -hbN +ptn +cXO azz bbX -hbN -hbN -hbN -hbN -hbN +cXO +cXO +cXO +cXO +cXO azz azz azt @@ -75968,30 +75968,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -iWo -gYP +mvm +bbV bVW -gYP -gYP -gYP +bbV +bbV +bbV bVW -mlw -mlw +rqb +rqb bVW -gYP -gYP -gYP +bbV +bbV +bbV bVW -pAN -gYP +lFd +bbV bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -76107,23 +76107,23 @@ aac aac aac aOj -viz -mYE -ofa -ltT +ctC +sIU +xbc +vGS aSs -hMW -mMY -mMY -mMY -hMW -sXI -mMY -vzN -scF +cTF +eVA +eVA +eVA +cTF +doF +eVA +cRc +fBk aSq -ePt -mnf +sim +wTp aYC aYC aYC @@ -76149,10 +76149,10 @@ azz azz azz bbM -hbN -hbN -itf -hbN +cXO +cXO +ikp +cXO azz azz azz @@ -76250,30 +76250,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -iWo -gYP +mvm +bbV bVW -iWo -xrh +mvm +yaR bVW bVW -jDT -gRP +tnG +esO bVW bVW -iBv -iBv +fUq +fUq bVW -pAN -gYP +lFd +bbV bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -76389,9 +76389,9 @@ aac aac aac aOj -viz -ePt -mYE +ctC +sim +sIU aRE aSt aSp @@ -76399,13 +76399,13 @@ aRE aRE aRE aUn -lsw +dJN aVD -scF -ePt -qYT -oNl -mnf +fBk +sim +vSt +poD +wTp aYC aYC aYC @@ -76416,7 +76416,7 @@ aYC aYC aYC aYC -lEf +foS aUN abc aaU @@ -76432,9 +76432,9 @@ azz azz azz aaC -hbN -hbN -hbN +cXO +cXO +cXO azz azz bbW @@ -76532,30 +76532,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -iWo -gYP +mvm +bbV bVW bVW bVW bVW -gRP -gRP -gRP -gRP +esO +esO +esO +esO bVW bVW bVW bVW -fpC -gYP +sHU +bbV bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -76671,23 +76671,23 @@ acD aac aac aOj -viz -ePt -ePt -ePt -ePt -mYE -vni -jAS -wIC -ePt -ePt -ePt -ePt -ePt -ePt -ePt -mnf +ctC +sim +sim +sim +sim +sIU +dXq +fED +vOD +sim +sim +sim +sim +sim +sim +sim +wTp aYC aYC aYC @@ -76698,7 +76698,7 @@ aYC aYC aYC aYC -lEf +foS aZN aUq acj @@ -76715,7 +76715,7 @@ azz azz azz azz -hbN +cXO azz azz azz @@ -76814,30 +76814,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gKP -gYP +lbG +bbV bVW -rJF -rJF +tAH +tAH bVW -xtT -gRP -gRP -gRP +pUY +esO +esO +esO bVW -rJF -rJF +tAH +tAH bVW -fpC -gYP +sHU +bbV bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -76953,23 +76953,23 @@ acm aac aac aOj -viz -hXL -uUZ -ePt -ePt -ePt -mYE +ctC +uyD +dRN +sim +sim +sim +sIU aRE aUn -ePt -ePt -ePt -ePt -ePt -ePt -ePt -mnf +sim +sim +sim +sim +sim +sim +sim +wTp aYC aYC aYC @@ -76980,7 +76980,7 @@ aYC aYC aZu aYC -lEf +foS aYa aXZ aaS @@ -77096,30 +77096,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bVW bVW bVW -hOR -hOR +qeS +qeS bVW bVW -gRP -tFZ +esO +cGe bVW bVW -hOR -hOR +qeS +qeS bVW bVW bVW bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -77157,18 +77157,18 @@ adj adj agN agN -pFG -htj -smc -kPG -rJz -guJ +qrJ +dzi +uIl +nWA +pVM +kvR agN agN als als -kSf -lan +qIG +vrU als als aie @@ -77235,24 +77235,24 @@ acm aac aac aOj -sUW -jHA -jHA -jHA -jHA -jHA -jHA -jHA -jHA -jHA -jHA -cMu -jHA -jHA -jHA -puX -eTE -rRh +fxw +txN +txN +txN +txN +txN +txN +txN +txN +txN +txN +wng +txN +txN +txN +xqQ +hhF +kel aYC aYC aYC @@ -77262,7 +77262,7 @@ aYC aYC aYC aYC -lEf +foS aUP aZN abc @@ -77378,30 +77378,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR -rrD -hOR -hOR -hOR -hOR -hOR -hOR +qeS +qeS +qeS +oLR +qeS +qeS +qeS +qeS +qeS +qeS bVW -dcc -gRP +qmI +esO bVW -hOR -hOR -hOR -hOR -hOR -hOR -ecV -hOR -hOR -hOR +qeS +qeS +qeS +qeS +qeS +qeS +qij +qeS +qeS +qeS bVW bmU bmU @@ -77438,20 +77438,20 @@ aar adj adj agN -noo -dse -rKK -rKK -rKK -rKK -gfB -eNs +jwb +mSG +qFq +qFq +qFq +qFq +cID +pKt ahw -vzj -jfT -tGH -pZu -nhQ +nCk +uiy +kka +uLM +ofN als aiO ahj @@ -77517,24 +77517,24 @@ acm aac aac aOj -ugR -pCc -pCc -pCc -pCc -pCc -pCc -pCc -pCc -pCc -pCc -pCc -uIv -ePt -iUZ -tSa +voO +fMh +fMh +fMh +fMh +fMh +fMh +fMh +fMh +fMh +fMh +fMh +xJI +sim +qWA +lri aOj -rRh +kel aYC aYC aYC @@ -77544,7 +77544,7 @@ aYC aYC aYC aYC -lEf +foS aUP aYa aYs @@ -77660,30 +77660,30 @@ bmj bmU bmU bVW -hOR -hOR -hOR -rrD -hOR -hOR -hOR -hOR -hOR -hOR +qeS +qeS +qeS +oLR +qeS +qeS +qeS +qeS +qeS +qeS bVW -gRP -gRP +esO +esO bVW -hOR -hOR -hOR -hOR -hOR -hOR -ecV -hOR -hOR -hOR +qeS +qeS +qeS +qeS +qeS +qeS +qij +qeS +qeS +qeS bVW bmU bmU @@ -77720,20 +77720,20 @@ aaB adj adj agN -dVL -rKK -rKK -rKK -rKK -rKK -cYx -uEa +uqu +qFq +qFq +qFq +qFq +qFq +rtM +fIf ahw -sSi -pPW -pPW -pwA -uKg +rKu +dru +dru +sdr +oMR als aiO ahj @@ -77799,25 +77799,25 @@ abG aac aac aOj -gKf -yeb -rND -hMt -ewL -kwf -qyv -kwf -kwf -kwf -kwf -kwf -kwf -wCE -puu +aLS +njb +etC +kNu +iVG +vVA +nbs +vVA +vVA +vVA +vVA +vVA +vVA +ctO +sPu aOj aOj -pCn -nLs +iLn +qQm aYC aYC aYC @@ -77825,8 +77825,8 @@ aYC aYC aYC aYC -nLs -esG +qQm +iOM aUP aUP aca @@ -77942,30 +77942,30 @@ bvc bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bVW bVW bVW -hOR -hOR -hOR -mlw -gRP -gRP -eVB -hOR -hOR -hOR +qeS +qeS +qeS +rqb +esO +esO +xwP +qeS +qeS +qeS bVW bVW bVW bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -78002,20 +78002,20 @@ acQ adj adj agN -khQ -rKK -vfS -rKK -mSi -rKK -rJH -kAz -hjH -iNl -iNl -tvE -lxg -blh +kEW +qFq +wRm +qFq +eUF +qFq +uOD +eCZ +rjQ +ePr +ePr +lIs +eVI +kda als aie ahj @@ -78088,11 +78088,11 @@ aOj aOj aOj aOj -pdw -pdw -pdw -pdw -pdw +eHP +eHP +eHP +eHP +eHP aOj aOj aOj @@ -78100,13 +78100,13 @@ aOj aUP aUP aVf -rAg +iwH aYC aYC aYC aYC aYC -huN +qtd aVf aUP aUP @@ -78224,30 +78224,30 @@ bnn bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gRP -gRP +esO +esO bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -78284,20 +78284,20 @@ adA adj adj agN -ioA -rKK -cvw -rKK -mSi -rKK -iMA -uEa +hsy +qFq +yhU +qFq +eUF +qFq +eDq +fIf ahw -sSi -pPW -pPW -szg -gWD +rKu +dru +dru +dUe +rHi als aie ahj @@ -78382,13 +78382,13 @@ aUP aUP aUP aUP -rRh +kel aYC aYC aYC aYC aYC -lEf +foS aUP aUP aUP @@ -78506,30 +78506,30 @@ bmT bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gRP -gRP +esO +esO bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -78566,21 +78566,21 @@ acR adj adj agN -dHO -wRb -dgN -mRp -gJR -stI -iMA -uEa +ehL +jYg +oog +vEh +opc +imm +eDq +fIf ahw -pfc -tAY -tAY -jTc -iNl -sWg +laU +cER +cER +tiL +ePr +uJS aiU ahj aax @@ -78622,10 +78622,10 @@ aky amm aFE aFE -owt -dvQ -qFg -qFg +uTC +cJz +gXU +gXU aFE aFE aky @@ -78664,13 +78664,13 @@ aUP aUP aUP aUP -rRh +kel aYC aYC aYC aYC aYC -lEf +foS aUP aUP aUP @@ -78788,30 +78788,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -kxd -kxd +rkH +rkH bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -78853,15 +78853,15 @@ ahw ahw ahw ahw -ori -iMA -lwh +rMJ +eDq +dyS ahw -riL -pPW -pPW -pPW -gWD +fyi +dru +dru +dru +rHi als aiW agP @@ -78903,12 +78903,12 @@ hDM aky amm aFE -gHv -rUP -rUP -rUP -rUP -rnM +uaP +qZR +qZR +qZR +qZR +hSW aFE aky amm @@ -78946,13 +78946,13 @@ aUP aUP aUP aUP -rRh +kel aYC aYC aYC aYC aYC -lEf +foS aVf aUP aUP @@ -79070,30 +79070,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gRP -gRP +esO +esO bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -79130,20 +79130,20 @@ aar aaS adk agN -iEA -mMj -qVg -oHb +mLu +qNe +gMX +suK ahw -ejp -iMA -lGT +fZJ +eDq +eyI ahw -twa -pPW -pPW -pPW -vZE +pSM +dru +dru +dru +epL als ahg agP @@ -79185,12 +79185,12 @@ hDM aky amm aFE -gaF -rUP -rUP -rUP -lMZ -xNi +otj +qZR +qZR +qZR +rRu +swh aFE aky amm @@ -79228,13 +79228,13 @@ aUP aUP aUP aUP -rRh +kel aYC aYC aYC aYC aYC -lEf +foS aUP aUP aUP @@ -79352,30 +79352,30 @@ bmU bVO bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW -gRP -gRP +esO +esO bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bVO @@ -79412,20 +79412,20 @@ aae aaR abn agN -woR -rKK -qQC -vaJ -uRj -nfb -thK -nyo +wye +qFq +uWb +iLS +rKh +qae +yjU +pEu ahw -fmj -iMT -iMT -pPW -waf +gKg +jjq +jjq +dru +ixu als ahf agP @@ -79468,10 +79468,10 @@ aoD amm aFE aFE -cLh -siN -rUP -mmH +ugu +sja +qZR +lTF aFE aFE amm @@ -79510,13 +79510,13 @@ aXZ aUP aUP aYP -rRh +kel aYC aYC aYC aYC aYC -lEf +foS aUP aUP aUP @@ -79634,30 +79634,30 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bWD bmU bVW -lmq -lmq +hjF +hjF bVW bVW -mlw -mlw +rqb +rqb bVW bVW -lmq -lmq +hjF +hjF bVW bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -79694,20 +79694,20 @@ aae aaC aaC agN -rKc -stI -rKK -vYU +tUs +imm +qFq +uQr ahw -ejp -iEN -eJf +fZJ +ycW +xfI ahw -uIC -fdR -vpo -sLz -nfx +sPr +vhp +uzE +ewf +jux als ahg agP @@ -79752,7 +79752,7 @@ amm aFE aFE aFE -pMu +clu aFE aFE aky @@ -79792,13 +79792,13 @@ aYa aYs aUP aVf -rRh +kel aYC aYC aYC aYC aYC -lEf +foS aVf aUP aUP @@ -79916,9 +79916,9 @@ bmU bmU bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bVO bmU @@ -79926,10 +79926,10 @@ bVW bVW bVW bVW -gRP -gRP -gRP -gRP +esO +esO +esO +esO bVW bVW bVW @@ -79937,9 +79937,9 @@ bVW bVO bmU bVW -hOR -hOR -hOR +qeS +qeS +qeS bVW bmU bmU @@ -79977,18 +79977,18 @@ aaG aaG agN agN -rKc -qBw -iBR +tUs +doJ +pli ahw -wwo -pJw +cab +tIH agN agN als als -uQu -fta +exM +qov als als ahf @@ -80074,13 +80074,13 @@ aUP aUP aUP aUP -qYM +dCK aYC aYC aYD aYC aYC -huN +qtd aUP aUP aUP @@ -80199,28 +80199,28 @@ bmU bmU bVW bVW -hOR -hOR +qeS +qeS bVW bmU bWG bVW -gRP +esO bVW -gRP -gRP -gRP -gRP -gRP -gRP +esO +esO +esO +esO +esO +esO bVW -gRP +esO bVW bmU bmU bVW -hOR -hOR +qeS +qeS bVW bVW bmU @@ -80356,13 +80356,13 @@ aUP aUP aVf aUP -kJK +qSL aYC aYC aYC aYC aYC -bLx +cpM aUP aVf aUP @@ -80481,28 +80481,28 @@ bmU bmU bmU bVW -hOR -hOR +qeS +qeS bVW bmU bmU -lLr -gRP -lLr -gRP -cez -scB -gRP -gRP -gRP -eaI -gRP -eaI +clr +esO +clr +esO +veu +ecI +esO +esO +esO +uzC +esO +uzC bmU bmU bVW -hOR -hOR +qeS +qeS bVW bmU bmU @@ -80637,7 +80637,7 @@ aVf aUP aUP aUP -nFD +nys aZi aZo aZv @@ -80645,7 +80645,7 @@ aZA aZi aZo aZv -rDn +tWt aUP aUP aUP @@ -80763,28 +80763,28 @@ bmU bmU bmU bVW -hOR -hOR +qeS +qeS bVW bmU bmU bVW -gRP +esO bVW -mWi -gRP -gRP -gRP -gRP -gRP +dzP +esO +esO +esO +esO +esO bVW -gRP +esO bVW bmU bmU bVW -hOR -hOR +qeS +qeS bVW bmU bmU @@ -80887,8 +80887,8 @@ aky amm aJd aJd -nAA -dZH +wyY +chE aJd aJd auW @@ -80916,9 +80916,9 @@ abc aUP aUP aUP -tHb -cXI -woa +oKE +nRx +qrG aYC aWp aWp @@ -80928,9 +80928,9 @@ aWp aWp aWp aYC -woa -okz -irQ +qrG +kZn +tCq aUP aUP aUP @@ -81046,26 +81046,26 @@ bmU bmU bVW bVW -hOR +qeS bVW bmU bmU bVW bVW bVW -mlw -mlw +rqb +rqb bVW bVW -eaI -eaI +uzC +uzC bVW bVW bVW bmU bmU bVW -hOR +qeS bVW bVW bmU @@ -81168,10 +81168,10 @@ amm amm aml aJd -dYN -kFt -kFt -kdT +tmC +rrs +rrs +pjH aJd awL awL @@ -81195,9 +81195,9 @@ abG aad aaU aUq -tHb -lTF -fau +oKE +evx +ggq aWp aWp aWp @@ -81213,9 +81213,9 @@ aWp aWp aWp aWp -fau -kVi -irQ +ggq +pZA +tCq aUP aUP aZN @@ -81328,26 +81328,26 @@ bmU bmU bmU bVW -hOR +qeS bVW bmU bmU bVW -lWp -gRP -gRP -gRP -gRP -gRP -gRP -gRP -gRP -lWp +snB +esO +esO +esO +esO +esO +esO +esO +esO +snB bVW bmU bmU bVW -hOR +qeS bVW bmU bmU @@ -81449,11 +81449,11 @@ amm amm amm amm -dVt -kFt -kFt -kFt -cfO +vLU +rrs +rrs +rrs +kOZ aJd auW awL @@ -81477,7 +81477,7 @@ aag aaU aUq aUP -vaa +uLZ aWQ aWp aWp @@ -81497,7 +81497,7 @@ aWp aWp aWQ aWp -wrY +lIc aUP aUP aZN @@ -81615,16 +81615,16 @@ bVW bWE bWE bVW -lWp -gRP -gRP -gRP -gRP -qXU -gRP -gRP -gRP -lWp +snB +esO +esO +esO +esO +uel +esO +esO +esO +snB bVW bmU bmU @@ -81709,7 +81709,7 @@ awP axa awP awP -cOG +oFm awP awP awP @@ -81732,9 +81732,9 @@ aky amm arL aJd -gMu -dZH -dZH +fsc +chE +chE aJd aJd awL @@ -81758,7 +81758,7 @@ aae aaC aUN aUP -fat +lLL aWp aWp aWp @@ -81780,7 +81780,7 @@ aWp aWp aWp aWp -wrZ +ffn aUP aZN aaS @@ -81897,16 +81897,16 @@ bmU bmU bmU bVW -lWp -gRP -gRP -gRP -gRP -gRP -gRP -gRP -gRP -lWp +snB +esO +esO +esO +esO +esO +esO +esO +esO +snB bVW bmU bmU @@ -81989,12 +81989,12 @@ aky amm awP axb -nea -vfV -wIV -hVw -qNr -gfr +qFP +soH +mGM +eXp +lso +pdN awP amm amm @@ -82040,7 +82040,7 @@ aae aUq aUO aUP -eUP +skJ aWp aWp aWp @@ -82062,7 +82062,7 @@ aWp aWp aWp aWp -xOR +ygn aUP aUO aaQ @@ -82180,14 +82180,14 @@ bmU bmU bVW bVW -gRP -gRP -gRP -gRP -gRP -gRP -gRP -gRP +esO +esO +esO +esO +esO +esO +esO +esO bVW bVW bmU @@ -82271,12 +82271,12 @@ aky awL awP axc -meH -lls -wIV -gWo -gWo -nud +luJ +ncV +mGM +cMV +cMV +qhx awP awL amm @@ -82322,7 +82322,7 @@ aae aaS aUP aUP -vaa +uLZ aWp aWp aWp @@ -82344,7 +82344,7 @@ aWp aWp aWp aWp -wrY +lIc aUP aaP aaZ @@ -82462,14 +82462,14 @@ bmU bmU bmU bVW -gRP -gRP -gRP +esO +esO +esO bVW bVW -gRP -gRP -gRP +esO +esO +esO bVW bmU bmU @@ -82553,12 +82553,12 @@ aky awL awP axd -xcZ -lls -wIV -gWo -gWo -mOn +lrX +ncV +mGM +cMV +cMV +fna awP awL amm @@ -82604,7 +82604,7 @@ aJb abc aUP aVf -uDO +vHt aWp aWp aWp @@ -82614,7 +82614,7 @@ aWp aWp aWp aWp -hIC +sto aWp aWp aWp @@ -82626,7 +82626,7 @@ aWp aWp aWp aWp -lrr +uMG aUP aaQ aaU @@ -82744,14 +82744,14 @@ bmU bmU bmU bVW -qVW -gRP -xwB -gRP -gRP -gRP -gRP -qVW +trM +esO +xUB +esO +esO +esO +esO +trM bVW bmU bmU @@ -82835,12 +82835,12 @@ awy awM awP axe -pPA -lls -wIV -gWo -wjQ -rrp +edq +ncV +mGM +cMV +xFm +tTG awP awL awL @@ -82886,7 +82886,7 @@ atK aar aUP aUP -jbN +hTy aWp aWp aWp @@ -82908,7 +82908,7 @@ aWp aWp aWp aWp -oyN +oax aUP aaQ acm @@ -83027,12 +83027,12 @@ bmU bmU bVW bVW -gRP -gRP -gRP -gRP -gRP -gRP +esO +esO +esO +esO +esO +esO bVW bVW bmU @@ -83117,12 +83117,12 @@ awz auW awP axf -pRo -lls -wIV -gWo -gWo -seF +pNo +ncV +mGM +cMV +cMV +eBk awP awL awL @@ -83168,7 +83168,7 @@ acm aae aUq aUP -eUP +skJ aWp aWp aWp @@ -83190,7 +83190,7 @@ aWp aWp aWp aWp -xOR +ygn aUP aaQ acm @@ -83309,12 +83309,12 @@ bmU bmU bmU bVW -lWp -gRP -gRP -gRP -gRP -lWp +snB +esO +esO +esO +esO +snB bVW bmU bmU @@ -83399,12 +83399,12 @@ auW aaP awP axg -pPA -lls -wIV -wIX -cOX -jNZ +edq +ncV +mGM +fNu +jCR +kcw awP awL awL @@ -83450,7 +83450,7 @@ acm aae aaS aUP -pKJ +pVY aWp aWp aWp @@ -83472,7 +83472,7 @@ aWp aWp aWp aWp -fQt +xKq aUP aaQ acm @@ -83592,10 +83592,10 @@ bmU bmU bVW bVW -qVW -xwB -xwB -qVW +trM +xUB +xUB +trM bVW bVW bmU @@ -83681,11 +83681,11 @@ aaP aaZ awP awP -dAS -gls -opW -oeI -hqW +uTK +eEy +hyk +def +ulU awP awP awL @@ -83733,7 +83733,7 @@ aCw abc aUP aUP -jbN +hTy aWQ aWp aWp @@ -83753,7 +83753,7 @@ aWp aWp aWQ aYC -oyN +oax aUP aaP aaZ @@ -83874,10 +83874,10 @@ bVO bmU bmU bVW -lWp -gRP -gRP -lWp +snB +esO +esO +snB bVW bmU bmU @@ -84015,9 +84015,9 @@ acn aTY aUP aUP -mQq -fzI -xOz +teK +ebS +bYt aWp aWp aWp @@ -84033,9 +84033,9 @@ aWp aWp aWp aWp -xOz -fwI -tEl +bYt +xWQ +jVX aUN aaQ aaC @@ -84157,8 +84157,8 @@ bmU bmU bVW bVW -gsZ -lWp +lRD +snB bVW bVW bmU @@ -84300,9 +84300,9 @@ aUP aUP aUP aUP -mQq -fzI -xOz +teK +ebS +bYt aWp aWp aWp @@ -84312,9 +84312,9 @@ aWp aWp aWp aWp -xOz -fwI -tEl +bYt +xWQ +jVX aUP aUP aZE @@ -84498,7 +84498,7 @@ aae aaP aba alE -rdN +wLK amb amb anG @@ -84585,15 +84585,15 @@ aVf aUP aUP aUP -qDc -fzI -xOz -fwI -bZz -fzI -xOz -fwI -tLX +xsB +ebS +bYt +xWQ +vxP +ebS +bYt +xWQ +pLA aUP aUP aUP diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index b77c8b2967..d18741ffd1 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -641,6 +641,18 @@ /obj/structure/surface/rack, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"acK" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 4 + }, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "acL" = ( /turf/closed/shuttle/elevator/arrivals, /area/shiva/interior/colony/central) @@ -701,6 +713,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"adL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "adZ" = ( /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/snow/layer0, @@ -727,6 +743,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"aei" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "aek" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -760,6 +780,16 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) +"aeO" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) "aeU" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -772,6 +802,10 @@ /obj/item/weapon/gun/boltaction, /turf/open/floor/wood, /area/shiva/interior/bar) +"afa" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "afb" = ( /obj/structure/closet/bodybag, /turf/open/auto_turf/snow/layer3, @@ -783,12 +817,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"afn" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibhead" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "afA" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, @@ -866,10 +894,22 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"agH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4; + id = "nlz_shutters"; + name = "\improper Bio-lab Shutters" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "agM" = ( /obj/item/ammo_box/magazine/nailgun, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) +"agQ" = ( +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "agR" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -882,6 +922,20 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) +"ahi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, +/area/shiva/interior/colony/medseceng) +"ahj" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"ahq" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood, +/area/shiva/interior/colony/medseceng) "aht" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Underground Maintenance" @@ -901,26 +955,18 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"ahJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "ahX" = ( /turf/closed/shuttle/elevator/gears, /area/shiva/interior/aerodrome) -"aic" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/telecomm/lz1_north) +"aid" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "aij" = ( /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aik" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "ail" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -940,6 +986,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aiq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "ait" = ( /obj/structure/flora/bush/snow{ icon_state = "snowbush_3" @@ -979,12 +1030,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"ajc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "ajr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -999,6 +1044,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"ajB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "ajF" = ( /obj/item/tool/shovel/etool, /turf/open/auto_turf/snow/layer3, @@ -1018,6 +1067,13 @@ /obj/structure/curtain, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"akg" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "akr" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating, @@ -1055,13 +1111,6 @@ /obj/item/clothing/mask/cigarette/cigar, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"akO" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "akR" = ( /obj/structure/surface/table/woodentable, /obj/item/clipboard, @@ -1084,15 +1133,6 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"alh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/cell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "alr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Mining Station"; @@ -1103,10 +1143,11 @@ "alA" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/junkyard) -"alB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) +"alG" = ( +/obj/structure/surface/table, +/obj/item/stack/nanopaste, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "alJ" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, @@ -1184,17 +1225,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"amz" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"amD" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southeast, -/area/shiva/interior/valley_huts/disposals) "amH" = ( /obj/structure/bed/chair{ dir = 4 @@ -1246,6 +1276,10 @@ /obj/structure/toilet, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"anr" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/medseceng) "ans" = ( /obj/vehicle/train/cargo/trolley, /turf/open/asphalt/cement, @@ -1281,16 +1315,10 @@ /obj/item/weapon/wirerod, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"anN" = ( -/obj/effect/decal/cleanable/blood/splatter, +"anQ" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"anP" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/aux_power) "anZ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -1308,27 +1336,20 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aoh" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/warehouse/caves) -"aoH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" +"aon" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/colony/central) +"aou" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) "aoK" = ( /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aoM" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) "aoX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1408,6 +1429,12 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"apg" = ( +/obj/structure/surface/table, +/obj/item/key/cargo_train, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "api" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -1431,6 +1458,13 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"apC" = ( +/obj/structure/platform/strata{ + dir = 8 + }, +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "apD" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -1470,10 +1504,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aqB" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "aqC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1514,6 +1544,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aqJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "aqN" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 6; @@ -1521,6 +1555,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aqY" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/central) "arh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -1566,6 +1604,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"arH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "arN" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 1 @@ -1726,10 +1773,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"asZ" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) "ata" = ( /turf/closed/shuttle/elevator{ dir = 5 @@ -1817,21 +1860,26 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"aus" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "aut" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"auN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"auu" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"auF" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 }, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) "ave" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -1839,10 +1887,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"avn" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) "avt" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer0, @@ -1857,35 +1901,34 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"avA" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/auto_turf/snow/layer1, +"avD" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"avG" = ( +/obj/structure/inflatable, +/turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) +"avL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) "avU" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"awn" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "awr" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"awH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/chapel, -/area/shiva/interior/colony/central) +"aww" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "awK" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -1964,6 +2007,15 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"ayk" = ( +/obj/structure/window/reinforced/tinted/frosted, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"ayE" = ( +/obj/item/weapon/gun/flamer, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "ayH" = ( /obj/item/clothing/shoes/snow, /turf/open/auto_turf/snow/layer1, @@ -2016,22 +2068,10 @@ /obj/effect/decal/warning_stripes, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"azl" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/warehouse/caves) "azm" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"azw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/t_scanner, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "azx" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, @@ -2064,24 +2104,13 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"azT" = ( -/obj/effect/spider/stickyweb{ - icon_state = "stickyweb2" - }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/cp_camp) -"aAk" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"aAe" = ( +/obj/structure/barricade/metal{ + dir = 1; + health = 210 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "aAl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -2093,17 +2122,9 @@ /obj/effect/landmark/corpsespawner/security, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"aAL" = ( -/obj/item/frame/toolbox_tiles, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"aAS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"aBb" = ( -/turf/open/floor/shiva/red/east, -/area/shiva/interior/colony/medseceng) +"aAK" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/aux_power) "aBi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -2125,6 +2146,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"aBD" = ( +/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) "aBE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -2133,14 +2158,11 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"aBJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"aBY" = ( -/obj/item/packageWrap, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) +"aBO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/aux_power) "aCb" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -2157,9 +2179,6 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"aCf" = ( -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) "aCo" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -2219,18 +2238,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"aCM" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"aCQ" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "aCW" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -2238,10 +2245,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"aDi" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) "aDm" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer1, @@ -2298,6 +2301,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/valley_huts/no2) +"aEn" = ( +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) "aEq" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, @@ -2310,6 +2316,10 @@ }, /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) +"aEt" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "aEu" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/flora/tree/dead/tree_1, @@ -2398,13 +2408,6 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/oob) -"aFo" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "aFz" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, @@ -2438,9 +2441,16 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) +"aFL" = ( +/turf/open/floor/shiva/greencorners/east, +/area/shiva/interior/colony/botany) "aFO" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"aGa" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "aGf" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -2454,11 +2464,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"aGr" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "aGu" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11; @@ -2466,6 +2471,14 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"aGA" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 15; + pixel_y = -3 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "aGC" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -2497,6 +2510,14 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"aHI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"aHJ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "aHP" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -2512,21 +2533,21 @@ /obj/item/weapon/wirerod, /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"aII" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 4; - pixel_y = 5 - }, +"aIJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"aJa" = ( +/obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/colony/s_admin) "aJj" = ( /obj/item/weapon/throwing_knife, /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"aJr" = ( +"aJx" = ( /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/colony/research_hab) "aJy" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, @@ -2535,31 +2556,19 @@ /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"aJO" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"aJT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/medical/bruise_pack, -/obj/item/cell, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "aJU" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"aKh" = ( -/obj/structure/bed/chair/office/dark{ +"aKf" = ( +/obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "aKn" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" @@ -2577,6 +2586,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"aKF" = ( +/turf/open/floor/shiva/wredcorners, +/area/shiva/interior/colony/medseceng) "aKK" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -2632,6 +2644,10 @@ }, /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) +"aLO" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/shiva/interior/bar) "aLZ" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -2651,6 +2667,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"aMo" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Colony Dormitories" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "aMu" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" @@ -2725,6 +2747,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aMR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "aMW" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, @@ -2777,6 +2803,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) +"aNJ" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "aNP" = ( /turf/closed/shuttle/elevator/button/research, /area/shiva/interior/colony/research_hab) @@ -2789,10 +2819,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aOd" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "aOg" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, @@ -2853,29 +2879,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"aPp" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) -"aPN" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"aPU" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) "aQi" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/layer2, @@ -2905,10 +2908,39 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"aQt" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/lz1_valley) "aQJ" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"aQK" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"aQP" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"aQR" = ( +/obj/structure/surface/rack, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/item/cell/hyper/empty, +/obj/item/cell/hyper/empty, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "aQX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, @@ -2953,6 +2985,14 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"aRN" = ( +/obj/structure/closet/radiation, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "aRS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -2966,23 +3006,25 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"aRW" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/lz2_habs) "aSa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aSd" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) "aSi" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"aSv" = ( -/obj/structure/closet/radiation, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) +"aSl" = ( +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) +"aSq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "aSx" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -3041,6 +3083,9 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"aSS" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) "aSX" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/floor/plating, @@ -3091,11 +3136,6 @@ /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"aTG" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) "aTO" = ( /obj/item/stack/rods, /turf/open/asphalt/cement, @@ -3117,6 +3157,10 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"aTZ" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/shiva/interior/colony/medseceng) "aUd" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/junkyard/cp_bar) @@ -3142,19 +3186,18 @@ icon_state = "stan23" }, /area/shiva/interior/aerodrome) -"aUG" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 +"aUB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"aVk" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/bluefull, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) +"aUV" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) "aVn" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/structure/reagent_dispensers/beerkeg{ @@ -3197,16 +3240,15 @@ "aVx" = ( /turf/closed/shuttle/ert, /area/shiva/interior/aerodrome) -"aVD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"aVK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/plating, +/area/shiva/exterior/valley) "aVN" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" @@ -3308,12 +3350,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"aXf" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "aXi" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -3340,6 +3376,14 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) +"aXy" = ( +/obj/item/lightstick/red/spoke, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"aXB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "aXI" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -3361,6 +3405,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aXY" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "aYd" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; @@ -3376,6 +3427,21 @@ /obj/structure/window_frame/shiva, /turf/open/floor/plating, /area/shiva/interior/aerodrome) +"aYZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"aZc" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "aZg" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, @@ -3386,10 +3452,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aZx" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) "aZA" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -3402,6 +3464,17 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"aZJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"aZK" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "aZP" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer0, @@ -3430,9 +3503,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"bao" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/deck) "bar" = ( /obj/item/trash/tray, /obj/item/trash/tray{ @@ -3445,6 +3515,13 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"baA" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"baJ" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/central) "baN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue{ @@ -3459,12 +3536,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"baR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) "baX" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; @@ -3489,28 +3560,6 @@ /obj/item/stack/rods, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bbz" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/bar) -"bbB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/technology_scanner, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) -"bbD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "bbG" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -3523,15 +3572,31 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) +"bbU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "bcl" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"bcz" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) +"bco" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/glasses/sunglasses{ + desc = "Polarized bioneural eyewear, designed to augment your vision."; + icon_state = "jensenshades"; + name = "augmented shades" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/bar) +"bcw" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "bcE" = ( /obj/structure/platform/strata{ dir = 8 @@ -3548,10 +3613,6 @@ opacity = 0 }, /area/shiva/interior/aerodrome) -"bcS" = ( -/obj/item/tool/soap, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "bcV" = ( /obj/structure/platform/strata{ dir = 1 @@ -3561,20 +3622,26 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"bdn" = ( -/obj/structure/bed/chair, +"bdF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"bel" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"beb" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "ben" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/telecomm/lz1_north) +"beD" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "beF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -3590,6 +3657,13 @@ icon_state = "rightengine_1" }, /area/shiva/interior/aerodrome) +"beL" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"beM" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_lz2) "beQ" = ( /turf/closed/shuttle/elevator, /area/shiva/interior/colony/central) @@ -3603,6 +3677,21 @@ /obj/item/tool/screwdriver, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"bfn" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/shiva/interior/bar) +"bfw" = ( +/obj/effect/spawner/random/tool, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "bfL" = ( /obj/structure/largecrate/random/mini/wooden, /turf/open/auto_turf/snow/layer2, @@ -3625,28 +3714,57 @@ /obj/effect/landmark/queen_spawn, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"bhc" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"bhJ" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"bgX" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"bhk" = ( +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"bhD" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/research_caves) +"bhG" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "bhN" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"bic" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/plating, -/area/shiva/exterior/cp_lz2) -"bif" = ( -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/garage) +"bii" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"bil" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"bix" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"biE" = ( +/obj/structure/closet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"biI" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/deck) "biM" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) @@ -3660,53 +3778,57 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/deck) -"bjg" = ( -/obj/structure/machinery/vending/cola, +"bjv" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_colony_grounds) +"bjT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"bjs" = ( -/obj/structure/bed/chair/comfy/blue{ +/area/shiva/interior/lz2_habs) +"bkr" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"bjv" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_colony_grounds) +/area/shiva/interior/colony/deck) "bks" = ( /obj/structure/morgue{ dir = 8 }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"bkv" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "bkP" = ( /obj/effect/spider/cocoon{ icon_state = "cocoon_large2" }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"blj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"blJ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "bmg" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"bmi" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"bmh" = ( +/obj/item/paper/research_notes{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"bms" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "bmv" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/ice/layer1, @@ -3714,45 +3836,48 @@ "bni" = ( /turf/open/floor/plating, /area/shiva/interior/caves/cp_camp) -"bnw" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) +"bnj" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "bnD" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "bnK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) +"bnN" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/firealarm{ dir = 4; - pixel_y = 5 - }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = -7 + pixel_x = 24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"bnM" = ( -/obj/structure/surface/table, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "bnS" = ( /obj/structure/bed/chair, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"bnZ" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "hangar_ice_3"; - pixel_y = 28 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"box" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) +"boe" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"bom" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"boy" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/shiva/interior/valley_huts/disposals) "boA" = ( /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer1, @@ -3765,60 +3890,63 @@ /obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) +"boJ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "boW" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"bpv" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ +"bpU" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"bqp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"bqq" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"bqw" = ( +/obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"bpC" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) -"bqb" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"bqk" = ( -/obj/structure/tunnel{ - id = "south_tcomms_tunnel" +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/cp_camp) -"bqp" = ( -/obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"bqH" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) "bqO" = ( /obj/effect/decal/cleanable/blood, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"brX" = ( +"bqS" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"bqZ" = ( /obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva/north, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"bre" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"bsm" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) "bsw" = ( /obj/effect/landmark/corpsespawner/bridgeofficer, /turf/open/auto_turf/snow/layer0, @@ -3829,77 +3957,64 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bsD" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) "bsN" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"bsO" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) "bsV" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/junkyard/cp_bar) -"bta" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"btz" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) "btE" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"buu" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/wredfull, +"buq" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/botany) +"bur" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/northwest, /area/shiva/interior/colony/medseceng) "buJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/medseceng) -"buP" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" +"buL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/custom/metal_foam{ + pixel_x = 11; + pixel_y = 5 }, -/obj/item/storage/firstaid/adv, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) +/obj/item/explosive/grenade/custom/metal_foam{ + pixel_x = 10 + }, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "bvb" = ( /obj/structure/platform_decoration/strata, /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"bvD" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/clothing/suit/armor/riot/marine, -/turf/open/floor/shiva/redfull/west, +"bvO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellowcorners/north, +/area/shiva/interior/garage) +"bwi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) -"bvF" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "bwk" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 @@ -3911,32 +4026,30 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) +"bwv" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) "bwP" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"bwY" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 +"bxa" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal5"; + pixel_y = -17 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer2, -/area/shiva/exterior/valley) -"bxD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/yellow/southeast, +/turf/closed/wall/shiva/prefabricated/orange, /area/shiva/interior/colony/research_hab) -"bxT" = ( -/obj/structure/bed/chair/office/light{ +"bxj" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"bxS" = ( +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"bxV" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "byr" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -3947,41 +4060,36 @@ /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/lz2_habs) -"bza" = ( -/obj/structure/stairs/perspective/ice{ - icon_state = "p_stair_sn_full_cap" +"byO" = ( +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"bzk" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) -"bzE" = ( -/obj/structure/inflatable, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/shiva/interior/aerodrome) +"bzu" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "bzK" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"bAa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/trash/cigbutt, -/turf/open/floor/plating, -/area/shiva/interior/bar) -"bAb" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"bAc" = ( +"bzN" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"bAg" = ( /obj/structure/surface/rack, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/orange{ - pixel_y = 6 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "bAn" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ @@ -3989,6 +4097,13 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"bAr" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/aux_power) +"bAy" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "bAK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -3997,42 +4112,45 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"bBe" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"bAP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/shiva/wredcorners/north, +/area/shiva/interior/colony/medseceng) +"bBo" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"bBw" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "bBB" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"bCw" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"bCG" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/snow/layer3, +"bCB" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) +"bDn" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "bDx" = ( /obj/item/reagent_container/food/drinks/flask/vacuumflask, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"bDZ" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"bEu" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) -"bEW" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) "bFb" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -4042,9 +4160,6 @@ "bFg" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) -"bFn" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/s_admin) "bFC" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -4053,9 +4168,9 @@ /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) "bFQ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/cp_camp) +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "bFS" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 @@ -4066,10 +4181,18 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bGo" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"bGh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/shiva/interior/colony/deck) +"bGt" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "bGU" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -4079,13 +4202,9 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"bHp" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/medseceng) -"bHL" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +"bHG" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) "bHZ" = ( /obj/structure/platform/strata{ dir = 8 @@ -4097,84 +4216,60 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) "bId" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"bIh" = ( -/obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva, -/area/shiva/interior/colony/research_hab) -"bIv" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"bIz" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shiva/interior/bar) +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) +"bIh" = ( +/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva, +/area/shiva/interior/colony/research_hab) "bIT" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/warehouse) +/obj/structure/platform_decoration/strata, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "bIV" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) +"bJe" = ( +/obj/structure/surface/table, +/obj/item/device/camera, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "bJj" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"bJk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"bJl" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) +"bJw" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "bJz" = ( /turf/closed/shuttle/elevator{ dir = 1 }, /area/shiva/interior/colony/central) -"bJL" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"bJT" = ( -/obj/structure/bed/chair{ - dir = 8 +"bKD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"bKb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"bKg" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"bKt" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/medseceng) -"bKv" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) -"bKy" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "bKF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -4192,85 +4287,96 @@ "bKV" = ( /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"bLe" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) +"bLb" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "bLf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Underground Maintenance" }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"bLO" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +"bLx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/high, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"bLy" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"bLI" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/aux_power) "bMn" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/holywater, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"bMq" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/storage/belt/utility/full, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) "bMW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"bMY" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/aerodrome) -"bOk" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) -"bOX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = -1 +"bNB" = ( +/obj/item/storage/pouch/firstaid/full/pills, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) +"bOq" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/turf/open/floor/plating, -/area/shiva/exterior/junkyard) -"bPs" = ( -/turf/open/floor/shiva/red/west, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) +"bPl" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"bPq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "bPu" = ( /obj/item/bodybag, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"bPv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/russianRed{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"bPE" = ( +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "bQv" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"bQA" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 10 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"bQC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "bQZ" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/caves/s_lz2) -"bRv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +"bRA" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "bRD" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Hydroponics South Wing Dome" @@ -4291,46 +4397,34 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"bSJ" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"bSO" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"bTf" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "bTC" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) +"bTK" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 10; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) "bUe" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"bUm" = ( -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"bUQ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"bUu" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 8; + pixel_y = -3 }, -/turf/open/floor/shiva/blue/east, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "bUU" = ( /obj/structure/prop/dam/truck{ dir = 4; @@ -4339,24 +4433,16 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"bVd" = ( -/obj/structure/surface/table, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"bVw" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) "bVz" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"bVK" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) "bVS" = ( /obj/structure/machinery/light/double, /obj/effect/decal/cleanable/vomit, @@ -4371,10 +4457,18 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"bWY" = ( -/obj/item/device/analyzer/plant_analyzer, +"bWH" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 32 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/colony/medseceng) +"bXa" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "bXl" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -4382,13 +4476,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"bXn" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) "bXo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -4404,75 +4491,92 @@ /turf/open/floor/wood, /area/shiva/interior/colony/central) "bXz" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"bXH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/multi_tiles, +/obj/item/packageWrap, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) -"bZs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 9 +"bXV" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/item/stack/sheet/mineral/phoron{ - pixel_x = -1; - pixel_y = 14 +/obj/item/tool/weldingtool{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"bZI" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) -"cat" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) +"bZf" = ( +/turf/open/floor/shiva/greencorners, +/area/shiva/interior/colony/botany) +"bZL" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/n_admin) +"bZW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"cah" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"cam" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"caK" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 2; + pixel_y = -1 + }, +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) "caS" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"cba" = ( +"cbM" = ( +/obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light/double, -/turf/open/floor/shiva/wredfull, +/obj/item/weapon/gun/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"cbe" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"cbs" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/deck) "cbW" = ( /obj/structure/largecrate/random/mini/med, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"cbY" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/research_caves) -"cbZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/platebot, -/area/shiva/interior/colony/research_hab) +"cbX" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "ccI" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"cda" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) "cdh" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"cdH" = ( +/turf/open/floor/darkgreen2/northwest, +/area/shiva/interior/colony/botany) +"cep" = ( +/obj/structure/surface/table, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "cex" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -4480,32 +4584,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"ceN" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) -"ceQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"cfn" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/exterior/cp_colony_grounds) -"cfB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_y = 10 +"ceU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_x = 7; - pixel_y = 4 +/obj/structure/platform/shiva/catwalk{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/plating, +/area/shiva/interior/aerodrome) "cgd" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -4521,112 +4608,127 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cgI" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"cgO" = ( -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +"cgp" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shiva/exterior/junkyard/fortbiceps) +"cgK" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"cgP" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "cgR" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) +"cgX" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/n_admin) +"chG" = ( +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) "cii" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"cis" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/bar) +"cij" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) +"cix" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/turf/closed/wall/shiva/ice, +/area/shiva/exterior/cp_s_research) +"ciJ" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "ciL" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) -"ciR" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"cjW" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/kelotane/skillless{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"ckb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"cjF" = ( +/obj/item/frame/toolbox_tiles, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"ckj" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) -"ckf" = ( -/obj/item/storage/belt/gun/m44, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/research_caves) "cko" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"cku" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"cks" = ( +/obj/structure/platform/strata{ + dir = 8 }, -/obj/item/clothing/under/colonist, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/obj/structure/platform/strata{ + dir = 1 + }, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) +"ckB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "ckH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_s_research) -"cmo" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"cmu" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, +"clR" = ( +/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"cmB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/tool/soap{ - pixel_x = -7 +/area/shiva/interior/colony/medseceng) +"cmb" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"cmc" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"cmv" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"cmN" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"cmP" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"cmQ" = ( -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/floor3, +/turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) "cmV" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "cnb" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/telecomm/lz2_northeast) +"cnc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "cng" = ( /obj/structure/prop/ice_colony/poly_kevlon_roll{ pixel_y = 21 @@ -4634,25 +4736,28 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) "cnq" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/research_hab) -"cnt" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"cob" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 5 }, -/turf/open/floor/shiva/purple/west, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) +"cnt" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) +"cnG" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "cod" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/warehouse/caves) +"coh" = ( +/obj/item/paper/research_notes/decent, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "cos" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 15; @@ -4673,17 +4778,10 @@ icon_state = "stan23" }, /area/shiva/interior/aerodrome) -"cox" = ( -/turf/open/floor/shiva/yellowcorners, -/area/shiva/interior/colony/research_hab) "cpC" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"cpT" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "cpY" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -4701,17 +4799,26 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"cqE" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/red/southwest, +"cqH" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"cqO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"cqT" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/central) "crF" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/research_hab) +"crS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "cse" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -4725,44 +4832,82 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"csB" = ( -/obj/structure/bed/chair{ - dir = 1 +"csM" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/turf/open/floor/shiva/wred, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"csN" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"csW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_y = 5 + }, +/obj/item/tool/pen/red{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"cth" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) -"cti" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +"cts" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/garage) +"ctH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/tool/soap{ + pixel_x = -7 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "cur" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"cuG" = ( -/obj/structure/machinery/light/small{ +"cut" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"cuD" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "cuJ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"cuO" = ( -/obj/structure/flora/grass/tallgrass/ice, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/research_caves) -"cvh" = ( -/obj/structure/largecrate/random/mini/chest/b, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, +"cuU" = ( +/obj/item/weapon/gun/boltaction, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/area/shiva/exterior/lz2_fortress) +"cvh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "cvn" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/plating, @@ -4779,15 +4924,35 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"cwn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) +"cwT" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "cwZ" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) -"cxq" = ( -/obj/structure/prop/ice_colony/flamingo/festive{ - dir = 4 +"cxa" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"cxj" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "cxr" = ( /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) @@ -4797,143 +4962,142 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"cxR" = ( -/obj/structure/fence, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "cxV" = ( -/obj/structure/surface/table{ +/obj/effect/decal/cleanable/blood{ dir = 4; - flipped = 1 + icon_state = "gib6" }, -/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"cxX" = ( +/obj/structure/filingcabinet, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"cyv" = ( -/turf/open/floor/dark2, -/area/shiva/interior/colony/central) -"cyx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/area/shiva/interior/aux_power) +"cyJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) -"cyG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/s_lz2) "cze" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "czf" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"czE" = ( -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) -"cAg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/floor3, +"czG" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) +"czN" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"cAa" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "cAH" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"cAW" = ( +/turf/open/floor/plating, +/area/shiva/interior/valley_huts/disposals) "cAZ" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/bar) -"cBv" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) "cBL" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/shiva, /area/shiva/interior/bar) -"cCX" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/garage) -"cDa" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "nlz_shutters"; - name = "\improper Bio-lab Shutters" +"cCr" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"cDx" = ( -/obj/item/reagent_container/glass/beaker/cryopredmix{ - pixel_x = -10 +/area/shiva/interior/colony/medseceng) +"cCB" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"cDy" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shiva/exterior/junkyard/fortbiceps) +"cDd" = ( +/obj/structure/platform/strata, +/obj/structure/platform/strata{ + dir = 4 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) +"cDi" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"cDp" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "cDN" = ( /obj/structure/largecrate/random/case/small{ layer = 2.9 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"cDW" = ( -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) -"cEf" = ( -/obj/item/tool/wirecutters{ - pixel_x = -1; - pixel_y = -4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "cEj" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"cEw" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"cEJ" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"cFw" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "cFQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"cFX" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 130 - }, -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"cGe" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) "cGr" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow{ @@ -4942,25 +5106,20 @@ /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cGG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +"cGI" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer2, +/area/shiva/exterior/valley) "cGJ" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 5 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"cGO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "cGS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; @@ -4969,14 +5128,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"cHJ" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"cHV" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/medseceng) +"cHp" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "cIa" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer3, @@ -4991,12 +5151,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cJa" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) +"cIq" = ( +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) +"cIY" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"cJk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) "cJC" = ( /obj/structure/platform/strata{ dir = 8 @@ -5006,49 +5174,49 @@ "cKb" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/deck) +"cKx" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "cKL" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/valley) "cKR" = ( /turf/open/floor/plating, /area/shiva/interior/caves/s_lz2) -"cKW" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/cp_camp) -"cLc" = ( +"cKV" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool{ - pixel_y = 2 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"cLh" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"cLp" = ( -/obj/structure/machinery/door_control/brbutton/alt{ - id = "hangar_ice_3"; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = -12; - pixel_y = 7 +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) +"cLv" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 130 }, +/obj/item/stack/barbed_wire, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/colony/botany) "cLx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"cLB" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"cLL" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "cLQ" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -5060,19 +5228,10 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"cMa" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"cMp" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/warehouse/caves) +"cMl" = ( +/obj/structure/girder, +/turf/open/floor/dark2, +/area/shiva/interior/caves/research_caves) "cMr" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer1, @@ -5083,37 +5242,20 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"cMA" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"cMI" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -2; - pixel_y = -8 - }, +"cMK" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"cMJ" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"cMM" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/darkbrown2/east, -/area/shiva/interior/valley_huts/disposals) -"cNm" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" +/area/shiva/interior/colony/botany) +"cNA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/aux_power) +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"cNE" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "cOq" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, @@ -5121,29 +5263,37 @@ "cOA" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/oob) -"cOI" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "cOU" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"cPs" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"cPP" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"cPJ" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"cPZ" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"cQy" = ( +/obj/structure/tunnel{ + id = "south_tcomms_tunnel" + }, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"cQL" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) "cQW" = ( /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) @@ -5152,25 +5302,20 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) "cRd" = ( -/obj/structure/prop/ice_colony/ground_wire{ - layer = 2.98 - }, -/turf/open/floor/shiva/purple, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "cRq" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"cRK" = ( -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/aux_power) +"cRA" = ( +/obj/structure/inflatable/popped, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "cRP" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"cSv" = ( -/turf/open/floor/shiva/greencorners, -/area/shiva/interior/colony/botany) "cTh" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -5178,34 +5323,24 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"cTD" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva/wred/northeast, +"cTH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"cTK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "cUQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"cUU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ - pixel_x = 6; - pixel_y = 11 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"cVg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) "cVM" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -5213,33 +5348,44 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"cVR" = ( -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = 8; - pixel_y = -3 +"cVO" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"cWv" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +/area/shiva/interior/caves/s_lz2) "cWN" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cWT" = ( +"cWS" = ( +/obj/item/paper/research_notes/good, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"cWT" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"cXb" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_lz2) "cXk" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) +"cXK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "cXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5257,6 +5403,10 @@ /obj/structure/prop/ice_colony/surveying_device, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) +"cYu" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "cYz" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -5293,44 +5443,33 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"daz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "daD" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"dbh" = ( -/obj/item/clipboard, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"dby" = ( -/obj/structure/bed, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"dbG" = ( -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) +"daY" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/garage) +"dbp" = ( +/obj/effect/spawner/random/powercell, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "dbH" = ( /turf/closed/shuttle/ert{ icon_state = "stan1" }, /area/shiva/interior/aerodrome) -"dcc" = ( +"dbK" = ( +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/medseceng) +"dbN" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"dcd" = ( /obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"dcf" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "dcu" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, @@ -5341,19 +5480,17 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ddm" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black{ - pixel_y = 4 - }, -/obj/item/device/flashlight{ - pixel_x = -3; - pixel_y = -13 +"dcI" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"ddb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"dec" = ( -/turf/open/floor/shiva/snow_mat/east, +/obj/item/newspaper, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "dex" = ( /obj/structure/machinery/photocopier, @@ -5363,40 +5500,25 @@ }, /turf/open/floor/plating, /area/shiva/interior/bar) -"deJ" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) +"deE" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"deP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "deV" = ( /turf/closed/shuttle/ert{ icon_state = "stan3" }, /area/shiva/interior/aerodrome) -"dfi" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"dfm" = ( -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) -"dft" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/interior/aux_power) -"dfx" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"dfW" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +"dfk" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/colony/medseceng) "dgF" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -5409,20 +5531,27 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"dgK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/research_hab) "dgS" = ( /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) -"dhB" = ( -/obj/effect/spider/stickyweb, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"diE" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"dij" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"dis" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/rods{ + amount = 25 }, -/turf/open/floor/shiva/blue/west, -/area/shiva/interior/colony/n_admin) +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "diL" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -5430,30 +5559,35 @@ }, /turf/open/floor/shiva, /area/shiva/interior/bar) -"diU" = ( -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"djh" = ( -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) "djn" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"dkb" = ( -/obj/structure/prop/ice_colony/ground_wire{ +"dkq" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/shiva/purple/west, -/area/shiva/interior/lz2_habs) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/shiva/interior/aerodrome) +"dku" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "dkv" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"dky" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) +"dkx" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) "dkP" = ( /obj/structure/barricade/metal{ layer = 3 @@ -5476,38 +5610,63 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"dlz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/weapon/gun/rifle/m41aMK1, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) -"dlQ" = ( +"dln" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"dlD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"dmg" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) +"dmm" = ( /obj/structure/surface/table, -/obj/item/clipboard, +/obj/item/stack/cable_coil, /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"dmj" = ( -/obj/structure/platform/strata{ - dir = 1 +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"dmA" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) +"dmI" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/orange{ + pixel_y = 6 }, -/obj/structure/platform/strata{ - dir = 4 +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"dmN" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/structure/platform/strata{ - dir = 8 +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"dns" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) -"dmB" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/warehouse/caves) +"dnu" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "dnv" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 5 @@ -5520,19 +5679,49 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"dnA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "dnH" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick/red, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"dog" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"dnJ" = ( +/obj/structure/machinery/door_control{ + id = "st_18"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + req_access_txt = "100"; + specialfunctions = 4 + }, +/obj/structure/machinery/power/apc/power/east{ + start_charge = 50 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"dnO" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "doJ" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/botany) +"doM" = ( +/obj/structure/barricade/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "doV" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" @@ -5546,62 +5735,65 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"dpS" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"dqg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/aerodrome) -"dqh" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"dqR" = ( -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) +"dpW" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "dqW" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"drh" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +"dri" = ( +/obj/item/tool/mop{ + pixel_y = 20 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "drM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"drP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Disposals" +"drN" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 9 }, -/turf/open/floor/dark2, -/area/shiva/interior/valley_huts/disposals) +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/device/implanter/subdermal_armor{ + pixel_x = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "dsx" = ( /turf/closed/shuttle/elevator{ dir = 1 }, /area/shiva/interior/aerodrome) -"dsB" = ( -/obj/structure/surface/table, -/obj/item/device/whistle, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"dsK" = ( -/obj/structure/platform/strata{ - dir = 8 +"dsz" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "panic_room" }, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"dsN" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/redfull/west, +/area/shiva/exterior/junkyard) +"dsU" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"dsX" = ( +/obj/structure/surface/table, +/obj/item/storage/box/trackimp, +/turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) "dtq" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -5610,54 +5802,68 @@ /obj/item/reagent_container/food/drinks/bottle/rum, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"dus" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 +"duD" = ( +/obj/structure/surface/table, +/obj/item/tool/wirecutters/clippers{ + pixel_y = 8 }, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"duR" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"duE" = ( +/obj/structure/surface/table, +/obj/item/storage/box/syringes{ + pixel_y = 2 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) "dvg" = ( /obj/item/tool/warning_cone{ pixel_y = 16 }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) -"dvp" = ( -/obj/effect/spider/stickyweb, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/cp_camp) +"dwj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 5 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"dwN" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) "dwQ" = ( /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"dxI" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"dxs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/n_admin) +"dxG" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "dxS" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"dyj" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"dyU" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) +"dyP" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"dyY" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "dze" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" @@ -5670,107 +5876,201 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"dzJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/valley) +"dAj" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"dAk" = ( +/obj/structure/surface/table, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "dAt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"dBw" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"dAx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"dBi" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"dBt" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"dBD" = ( +/obj/item/clothing/under/rank/janitor, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "dBU" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) -"dCm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) +"dCC" = ( /obj/structure/surface/table, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "dCS" = ( /turf/closed/shuttle/ert{ icon_state = "stan2" }, /area/shiva/interior/aerodrome) -"dDB" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +"dCU" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"dDF" = ( -/obj/item/stack/rods{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/stack/catwalk, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) -"dEL" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"dFu" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"dGs" = ( -/obj/structure/barricade/snow, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard/fortbiceps) -"dHQ" = ( +"dDt" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ +/obj/item/clipboard{ + pixel_y = 5 + }, +/obj/item/paper{ + pixel_x = -9; pixel_y = 7 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"dIM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets{ - pixel_x = 7; - pixel_y = 8 +/obj/item/tool/pen/red{ + pixel_x = 6; + pixel_y = 9 }, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; +/obj/item/paper{ + pixel_x = -7; pixel_y = 7 }, -/obj/item/storage/box/donkpockets{ - pixel_y = 3 - }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"dJl" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"dJp" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"dDU" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"dEL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/medseceng) -"dJF" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"dJS" = ( -/obj/item/powerloader_clamp, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/colony/research_hab) -"dKL" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_1" +"dFI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard/cp_bar) -"dKR" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/central) +"dGs" = ( +/obj/structure/barricade/snow, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard/fortbiceps) +"dGA" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"dGR" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"dHc" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard) +"dHf" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"dHQ" = ( +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"dHZ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"dIm" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"dJl" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"dJM" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"dJS" = ( +/obj/item/powerloader_clamp, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/colony/research_hab) +"dJY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"dKc" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard/cp_bar) +"dKx" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"dKy" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 10; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"dKL" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard/cp_bar) +"dKR" = ( /obj/structure/machinery/space_heater, /obj/item/tool/weldpack{ pixel_x = 6; @@ -5797,51 +6097,51 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"dMn" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" +"dLy" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) -"dMq" = ( -/obj/item/ammo_magazine/rifle/ap, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"dMv" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) -"dMO" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"dNe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4; - id = "nlz_shutters"; - name = "\improper Bio-lab Shutters" +/obj/structure/barricade/metal{ + layer = 3 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"dNt" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"dNz" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) -"dNU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, +"dMl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"dMq" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/yellow/southeast, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) +"dMV" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/dexalin/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"dNh" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) +"dNJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"dNO" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "dOs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -5854,119 +6154,59 @@ "dOD" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/botany) -"dPc" = ( -/obj/structure/flora/tree/dead/tree_6, -/turf/open/auto_turf/snow/layer3, +"dPo" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, /area/shiva/interior/caves/cp_camp) -"dPk" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/strata/floor2, -/area/shiva/interior/colony/research_hab) -"dPm" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"dPu" = ( -/obj/structure/bed/chair{ - dir = 8 +"dPt" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"dPy" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) -"dPW" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/area/shiva/interior/colony/n_admin) "dQq" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"dQt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) -"dRM" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins"; - pixel_y = 14 +"dRp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"dRz" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"dSl" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/caves/s_lz2) "dTj" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"dTu" = ( -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) -"dTW" = ( -/obj/structure/stairs/perspective{ +"dUk" = ( +/obj/structure/machinery/light/double{ dir = 8; - icon_state = "p_stair_sn_full_cap" + pixel_y = -5 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"dUl" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"dUq" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) -"dUQ" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"dVb" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"dVx" = ( -/obj/item/weapon/gun/pistol/highpower, -/turf/open/floor/shiva/yellow/north, +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"dWn" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva/north, +"dUN" = ( +/turf/open/floor/shiva/snow_mat/east, /area/shiva/interior/colony/botany) -"dWo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/shiva/red, +"dVo" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"dVy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"dWj" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "dWw" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -5988,17 +6228,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"dXO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/clothing/head/fez{ - pixel_y = 6 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +"dWV" = ( +/obj/item/stool, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "dYi" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -6009,10 +6242,30 @@ "dYp" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/bar) -"dZx" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"dYE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/cell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"dYG" = ( +/obj/structure/platform/shiva/catwalk, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/valley) +"dYK" = ( +/obj/structure/fence, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"dZI" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) "eaa" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 @@ -6034,10 +6287,26 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"eba" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +"ean" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"ebC" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"ebH" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "ebK" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer2, @@ -6046,6 +6315,10 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"ecc" = ( +/obj/item/storage/belt/gun/m44, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) "ecj" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/right_spiders) @@ -6053,62 +6326,32 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"ecJ" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) -"edy" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +"eea" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/shiva/yellowfull/west, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"eeB" = ( +/obj/item/frame/air_alarm, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"eed" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) "eeD" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"eeO" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"eeP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard, -/obj/item/tool/screwdriver, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"eeV" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) "efD" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"efM" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +"egc" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) "egf" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Underground Sports Center" @@ -6123,96 +6366,73 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"egt" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"egB" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/aux_power) -"egE" = ( -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) -"egI" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"egQ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"ehh" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) -"ehn" = ( +"egU" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"ehp" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"ehD" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/shiva/prefabricated/blue, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"ehH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) -"ehY" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"eif" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) +"ehT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) +"eim" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/shiva/interior/colony/medseceng) "eit" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"ejs" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"eiR" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + icon_state = "psiphon:1" }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"eju" = ( -/obj/structure/bedsheetbin, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/area/shiva/interior/aux_power) "ejF" = ( /obj/item/ammo_magazine/handful/shotgun/incendiary, /turf/open/floor/wood, /area/shiva/interior/bar) +"ejL" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "ejX" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"eku" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +"ejZ" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/research_caves) "ekH" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ela" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-east" - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"elg" = ( -/obj/structure/surface/table, -/obj/item/storage/bag/plants, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) "elw" = ( /obj/item/stack/rods, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"elH" = ( -/obj/structure/fence, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) "elN" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/snow/layer0, @@ -6221,47 +6441,49 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/shiva/interior/bar) -"elS" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"emv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - dir = 8; - pixel_y = 6 - }, +"emU" = ( +/obj/structure/closet/firecloset, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) -"emz" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"ena" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) +"emW" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "enc" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) +"eng" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "eni" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"enu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"enp" = ( +/obj/structure/platform/strata{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/structure/platform/strata{ + dir = 4 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) +"enq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) +"enA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "enG" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, @@ -6270,27 +6492,18 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"enN" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood, +"enK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"enP" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 - }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/cp_camp) -"enU" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"eog" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/n_admin) "eom" = ( /obj/structure/closet/hydrant{ pixel_y = 32 @@ -6307,21 +6520,22 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"eoT" = ( -/obj/structure/machinery/landinglight/ds2, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, +"epl" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"epB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/bronze, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"eqH" = ( -/obj/structure/machinery/vending/snack, +/area/shiva/interior/colony/n_admin) +"epZ" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 20 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"eqP" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/bar) "erc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -6335,13 +6549,19 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"erp" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"erH" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "esf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -6349,14 +6569,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"esN" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/central) -"ete" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) +"esV" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "etl" = ( /obj/structure/largecrate/random/secure, /obj/item/ashtray/bronze{ @@ -6364,27 +6580,24 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"etx" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) -"eus" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"euS" = ( -/obj/structure/machinery/landinglight/ds2, -/obj/structure/machinery/landinglight/ds2/delaythree{ +"etS" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"euy" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"evz" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/s_admin) +"evy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) "ewa" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) @@ -6394,79 +6607,72 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"ewc" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"ewd" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/medseceng) "ewf" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"ewi" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" +"ewl" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"ewX" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 8; + pixel_x = -6; + pixel_y = 13 + }, +/turf/open/auto_turf/ice/layer0, +/area/shiva/exterior/cp_s_research) +"exi" = ( +/obj/structure/prop/dam/truck, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"exl" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"exa" = ( -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) -"exy" = ( -/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) -"exB" = ( -/obj/structure/barricade/snow{ - dir = 4 +"exC" = ( +/obj/item/stack/sheet/metal/small_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"exQ" = ( +/obj/item/book/manual/atmospipes{ + pixel_y = 10 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard/fortbiceps) +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"eyb" = ( +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "eyx" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"eyy" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"eyX" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"ezf" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"eyB" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"eyC" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"eyP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/warehouse/caves) -"eAT" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"ezh" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "eAZ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) @@ -6479,54 +6685,61 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"eBy" = ( +/obj/item/shard, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"eBz" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "eBG" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"eBT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "eCr" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"eCt" = ( -/obj/structure/machinery/optable, -/turf/open/floor/shiva/wredfull, +"eCy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"eCM" = ( -/obj/item/storage/pouch/flare/full, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) -"eEK" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +"eDA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/turf/open/auto_turf/snow/layer4, +/turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) "eET" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"eEW" = ( -/obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) "eFk" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"eFl" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "eFI" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"eFV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/bronze, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) "eGq" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -6538,11 +6751,6 @@ /obj/item/frame/bucket_sensor, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"eGA" = ( -/obj/structure/foamed_metal, -/obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) "eGG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 @@ -6557,30 +6765,21 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"eHg" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = 6; - pixel_y = 13 +"eHn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/technology_scanner, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/obj/item/device/implanter/subdermal_armor{ - pixel_x = 12 +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"eHM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"eHi" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) -"eHW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) "eHY" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -6589,32 +6788,43 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"eJz" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"eJS" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/warehouse/caves) -"eLe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva/wredfull, +"eIT" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"eLj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" +"eJn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"eKj" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"eKM" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"eLf" = ( +/obj/structure/platform_decoration/strata{ + dir = 1 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/obj/structure/platform_decoration/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"eLu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"eLC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "eMh" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 9 @@ -6625,127 +6835,100 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"eMO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/north, +"eNl" = ( +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/central) -"eNu" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/cp_lz2) -"eNw" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"eOA" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +"eNx" = ( +/obj/structure/fence, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"eNH" = ( +/turf/open/floor/darkgreen2/northeast, +/area/shiva/interior/colony/botany) +"eNK" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"eOD" = ( -/turf/open/floor/shiva/green/southeast, +/obj/structure/bed/chair, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"eOx" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"eOK" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/redpyjamas, +/turf/open/floor/wood, /area/shiva/interior/colony/botany) "eOM" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"ePC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11; - pixel_y = 25 - }, -/turf/open/floor/plating, -/area/shiva/exterior/junkyard) -"ePQ" = ( -/obj/structure/barricade/metal{ - health = 230 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"eQc" = ( -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "large" - }, -/obj/item/shard{ - icon_state = "large" +"ePp" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"eQe" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"eQq" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"eRc" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"eQf" = ( -/obj/item/tool/kitchen/knife/butcher, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) +"eRv" = ( +/obj/item/trash/hotdog, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"eQW" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/research_hab) +"eRB" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "eRE" = ( /obj/item/tool/wirecutters, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"eRZ" = ( +"eRN" = ( /obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) "eSK" = ( /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"eTI" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"eTP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/colony/research_hab) -"eTS" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) +"eTa" = ( +/obj/item/lightstick/red/variant, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "eTV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"eUm" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "eUT" = ( /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) "eVu" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "eVG" = ( /obj/structure/largecrate/random, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"eVL" = ( -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "eVP" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 8; @@ -6753,68 +6936,67 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"eWp" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wred/east, +"eVR" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "eWB" = ( /turf/open/floor/plating, /area/shiva/interior/garage) +"eXH" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "eXN" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"eXZ" = ( -/obj/structure/inflatable/popped, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"eYa" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/shiva/yellowfull, +"eYE" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "eYH" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/cp_lz2) -"eYJ" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"eYO" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 1; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) -"eZa" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull, +"eZq" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"eZr" = ( +"eZA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"eZL" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"faq" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/central) -"fat" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +/area/shiva/interior/caves/cp_camp) +"eZQ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/colony/medseceng) "faA" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/s_lz2) @@ -6843,30 +7025,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"fbl" = ( -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"fca" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"fcv" = ( -/obj/structure/bed/chair/office/light{ +"fbQ" = ( +/obj/structure/platform/shiva/catwalk{ dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"fcn" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"fct" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "fcy" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -6877,43 +7051,62 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/n_admin) -"fcO" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"fcZ" = ( -/obj/item/bananapeel, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"fdv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/newspaper, -/turf/open/floor/shiva/north, +"fdq" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"fdz" = ( -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"few" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) -"ffg" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"feB" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = -13; + pixel_y = 28 + }, +/obj/structure/largecrate/random/mini/small_case/b, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 14; + pixel_y = -3 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "ffj" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/shiva/interior/colony/central) -"ffH" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"ffo" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"ffB" = ( +/turf/open/floor/shiva/greencorners/north, +/area/shiva/interior/colony/botany) +"ffN" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"fgf" = ( +/obj/structure/surface/table, +/obj/item/vehicle_clamp{ + pixel_y = 2 + }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/central) +"fgo" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) +"fgr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "fgB" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, @@ -6923,6 +7116,15 @@ /obj/effect/decal/remains/human, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"fgI" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "fhd" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -6933,34 +7135,26 @@ /obj/item/tool/wrench, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"fiy" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shiva/exterior/junkyard/fortbiceps) +"fhL" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/exterior/cp_lz2) +"fhS" = ( +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "fiK" = ( /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"fiR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"fjo" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "fjs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"fjC" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) +"fjJ" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "fjS" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -6974,10 +7168,6 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"fka" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) "fkb" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -6985,20 +7175,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"fkm" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) -"fkz" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "fkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer4, @@ -7006,56 +7182,67 @@ "flN" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"fmK" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +"fmq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"fmQ" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/warehouse/caves) +"fmR" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"fnD" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" }, -/turf/open/floor/shiva/radiator_tile, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"fmX" = ( -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) "fnG" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) +"fnI" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) "foa" = ( /obj/item/storage/toolbox/electrical, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"foZ" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"frc" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) +"fpB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"fpF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"fqd" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/shiva/interior/colony/research_hab) "frj" = ( /obj/item/tool/shovel/snow, /turf/open/floor/shiva, /area/shiva/interior/bar) -"frv" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"frU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"fsa" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_1" - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) "fse" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/lightstick/red{ @@ -7068,88 +7255,84 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"fsg" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"fsW" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"fta" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +"fsE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "ftr" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/book/manual/security_space_law, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"ftH" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) +"ftE" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ftY" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"fux" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, +"fub" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) +"fut" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "fuz" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"fuN" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/warehouse/caves) -"fuP" = ( -/turf/open/floor/shiva/greencorners/north, -/area/shiva/interior/colony/botany) -"fvs" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/n_admin) -"fvE" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"fvR" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"fwo" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"fwx" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_3" +"fuA" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = -3 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"fwJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"fuK" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 }, -/turf/open/floor/plating, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"fuQ" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"fwK" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "fwU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -7158,9 +7341,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"fyj" = ( -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/warehouse) "fyC" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ pixel_x = -17; @@ -7169,13 +7349,17 @@ /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) "fyJ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) -"fyO" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) +"fyT" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"fzc" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) "fzm" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/cp_colony_grounds) @@ -7189,96 +7373,83 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"fzL" = ( +"fzV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"fAk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"fAK" = ( +/obj/structure/flora/tree/dead/tree_4, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"fAZ" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"fAl" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/valley) +"fBo" = ( +/obj/structure/machinery/landinglight/ds2, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"fBb" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) +/area/shiva/exterior/lz2_fortress) +"fBs" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + icon_state = "psiphon:1" + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"fBw" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"fBE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard/cp_bar) "fBJ" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, /obj/item/tool/stamp, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"fBV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"fCo" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4" - }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shiva/exterior/junkyard/fortbiceps) "fCs" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"fCI" = ( -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/aerodrome) -"fCW" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"fDb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/medseceng) -"fDl" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"fDm" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/shiva/wred/north, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) -"fDp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/shiva/redfull/west, +"fDN" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) +"fDW" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"fDv" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "fEl" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"fEm" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) +"fEv" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob) "fEC" = ( /obj/structure/window/framed/shiva, /turf/open/floor/shiva, @@ -7298,9 +7469,16 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"fFC" = ( -/turf/open/floor/shiva/yellowcorners/west, -/area/shiva/interior/garage) +"fFD" = ( +/obj/structure/machinery/door_control{ + id = "st_17"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "fFG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7314,12 +7492,51 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"fFL" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"fFO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/clipboard, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"fFP" = ( +/obj/structure/machinery/light/double, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"fGe" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"fGj" = ( +/obj/item/stack/cable_coil/green, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "fGl" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"fGp" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "telecomms relay power controller"; + start_charge = 10 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) "fGw" = ( /obj/structure/surface/table/woodentable{ dir = 1; @@ -7333,56 +7550,26 @@ /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) -"fGH" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/warehouse/caves) -"fGS" = ( -/obj/item/circuitboard, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) "fGT" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) "fGU" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) -"fHc" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shiva/exterior/junkyard/fortbiceps) -"fHK" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) -"fHM" = ( -/obj/item/stool, -/turf/open/floor/shiva, -/area/shiva/interior/colony/research_hab) -"fIt" = ( -/obj/structure/barricade/metal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"fIB" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"fIG" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva/multi_tiles/east, +/turf/open/floor/shiva, +/area/shiva/interior/caves/cp_camp) +"fHn" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"fHq" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/telecomm/lz1_north) +"fHM" = ( +/obj/item/stool, +/turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) "fII" = ( /obj/item/lightstick/red/spoke/planted{ @@ -7404,18 +7591,24 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"fJe" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, +"fIX" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"fJS" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/obj/item/tool/stamp, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/botany) -"fJA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/aux_power) +/area/shiva/interior/colony/s_admin) +"fJW" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"fJZ" = ( +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "fKb" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, @@ -7442,6 +7635,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/shiva/interior/bar) +"fKM" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "fLi" = ( /obj/item/tool/shovel/snow, /obj/item/storage/fancy/cigarettes/arcturian_ace{ @@ -7451,55 +7650,111 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"fMa" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +"fLm" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"fLv" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/central) +"fLG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "fMq" = ( /obj/vehicle/train/cargo/engine, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"fMO" = ( +"fMC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"fMO" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, /area/shiva/interior/colony/medseceng) -"fNk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"fNt" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "fNE" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"fNT" = ( -/obj/structure/machinery/light/small{ +"fOI" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating, +/area/shiva/exterior/telecomm/lz2_southeast) +"fOU" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"fPN" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/deck) -"fPY" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_s_research) -"fQj" = ( -/obj/structure/machinery/light/double, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"fQJ" = ( -/obj/structure/closet/secure_closet/security, +/area/shiva/interior/colony/central) +"fPl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/bar) +"fPm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Anti-Freeze Lounge" + }, +/turf/open/floor/plating, +/area/shiva/exterior/cp_s_research) +"fPA" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/shiva/interior/colony/botany) +"fPJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) +"fQU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/medical/bruise_pack, +/obj/item/cell, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"fQV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "fQX" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) +"fRh" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "fSc" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 8; @@ -7514,117 +7769,156 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"fTs" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +"fTh" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 6 }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"fTn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"fUa" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"fUc" = ( +/obj/structure/surface/table, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"fTF" = ( -/obj/item/weapon/gun/boltaction, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"fUF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/wred/west, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) -"fUV" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12 +"fUg" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = -1 }, -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shiva/exterior/junkyard/fortbiceps) +/turf/closed/wall/shiva/ice, +/area/shiva/exterior/cp_s_research) +"fUy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"fUG" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "fUZ" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"fVi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"fVu" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"fVd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{ + pixel_y = 7 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "fVw" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ density = 0 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"fXd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"fXs" = ( -/turf/open/floor/shiva/bluecorners/west, +"fVB" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) +"fVG" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/advanced/bruise_pack/upgraded{ + pixel_x = -3; + pixel_y = 14 + }, +/obj/item/stack/medical/advanced/ointment/upgraded{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"fVZ" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "fXB" = ( /obj/structure/largecrate/random/case/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) "fXL" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "fXX" = ( /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"fYx" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southwest, -/area/shiva/interior/valley_huts/disposals) -"fZf" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +"fYF" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"fZG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"fZI" = ( -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/warehouse/caves) -"fZW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"fYI" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/chunk, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"fYP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" }, -/obj/structure/desertdam/decals/road_stop{ - icon_state = "road_edge_decal8"; - pixel_x = -14 +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shiva/exterior/junkyard/fortbiceps) +"fYT" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"gae" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison/kitchen, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/warehouse/caves) +"fZr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkbrown2/north, +/area/shiva/interior/valley_huts/disposals) +"fZs" = ( +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/bar) -"gat" = ( -/obj/structure/platform/shiva/catwalk, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) +"gay" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "gaz" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/valley) -"gaF" = ( -/turf/open/floor/darkbrown2/east, -/area/shiva/interior/valley_huts/disposals) "gaJ" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/ice/layer2, @@ -7636,31 +7930,26 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"gbj" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 +"gaU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/research_hab) +"gbI" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"gbx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"gbV" = ( +"gcH" = ( /obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"gbY" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 + icon_state = "medium" }, -/obj/structure/filingcabinet, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "gcK" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -7672,11 +7961,20 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"gdH" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/bluepyjamas, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) +"gdr" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"gdz" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"gdK" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "gdU" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -7684,31 +7982,31 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"geb" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/medseceng) -"geo" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob) -"geB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) +"gec" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/central) +"gel" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"gen" = ( +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "geE" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/junkyard) -"gfm" = ( -/obj/item/clipboard, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) -"gfP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"gfX" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) "ggh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt{ @@ -7721,13 +8019,6 @@ /obj/item/stack/rods, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"ggR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"ggZ" = ( -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) "gha" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light/double{ @@ -7736,15 +8027,26 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"ghg" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) +"ghl" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "ghS" = ( /obj/structure/surface/table, /obj/item/storage/box/explosive_mines, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"giB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/lz1_valley) "giH" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/plating, @@ -7757,36 +8059,65 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"gjt" = ( -/obj/structure/bed/chair{ - dir = 1 +"gjb" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"gjq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "nlz_shutters"; + name = "\improper Bio-lab Shutters" }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"gju" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"gjw" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/area/shiva/interior/lz2_habs) +"gjx" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/deck) +"gjS" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/purple/east, +/area/shiva/interior/lz2_habs) +"gkd" = ( +/turf/open/floor/shiva/greencorners/west, +/area/shiva/interior/colony/botany) "gkh" = ( -/obj/item/clothing/shoes/snow, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"gkn" = ( +/obj/structure/machinery/light/double, /obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) +/obj/item/clothing/mask/gas, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "gkv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"gkE" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/orange{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "gkG" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 4 @@ -7796,56 +8127,55 @@ "gkY" = ( /turf/open/floor/plating, /area/shiva/exterior/lz2_fortress) -"glh" = ( -/obj/structure/bed/chair{ - dir = 4 +"glr" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"glY" = ( -/obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"gmc" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/research_hab) +"gly" = ( +/obj/structure/computerframe, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "gmS" = ( /obj/item/device/flashlight, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gnS" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"gnU" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) "gnZ" = ( /turf/closed/shuttle/elevator{ dir = 8 }, /area/shiva/interior/colony/central) -"goO" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Research Landing Zone" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz2_fortress) +"goz" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "goS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) +"goT" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "gpb" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"gpw" = ( +/obj/structure/desertdam/decals/road_stop, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "gpz" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) @@ -7860,34 +8190,17 @@ dir = 4 }, /area/shiva/interior/colony/central) -"gpX" = ( -/obj/structure/closet/crate, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_king, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) "gqp" = ( /obj/item/stack/catwalk, /turf/open/floor/plating, /area/shiva/interior/bar) -"gqJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) +"gqw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "gqO" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -7899,13 +8212,39 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"grV" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"grH" = ( +/obj/item/paper/research_notes/bad{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"grQ" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/tool/lighter/zippo{ + pixel_x = -14; + pixel_y = 14 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/colony/research_hab) +"gsj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "gso" = ( /obj/structure/platform/strata, /turf/open/gm/river, @@ -7913,25 +8252,13 @@ "gss" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/junkyard) -"gsZ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"gtd" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/shiva/interior/colony/medseceng) "gtp" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"gtq" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/under/marine/veteran/mercenary/support, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "gtx" = ( /obj/item/explosive/grenade/high_explosive/m15, /turf/open/auto_turf/snow/layer0, @@ -7942,11 +8269,35 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"gtH" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 +"gtN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"gup" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 25 }, -/turf/open/auto_turf/snow/layer2, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shiva/exterior/junkyard/fortbiceps) +"guB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"gvc" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/caves/cp_camp) +"gvg" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"gvH" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) "gvT" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -7954,13 +8305,14 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) -"gwx" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/warehouse/caves) +"gwi" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"gwp" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "gwA" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -7969,9 +8321,14 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"gwC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva/wredfull, +"gxJ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"gxM" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "gxW" = ( /obj/structure/closet/cabinet, @@ -7979,6 +8336,18 @@ /obj/item/clothing/under/colonist, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"gyu" = ( +/turf/closed/wall/shiva/prefabricated/blue, +/area/shiva/exterior/valley) +"gyB" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"gyO" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) "gyT" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/ice/layer1, @@ -7995,64 +8364,50 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"gzf" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"gzp" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/item/paper/research_notes, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) "gzM" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"gzN" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/n_admin) "gAd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"gAu" = ( +/obj/structure/flora/tree/dead/tree_5, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"gAU" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"gAA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 2 - }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"gAU" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"gAX" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/bar) "gBc" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"gBg" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "gBp" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"gBx" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"gBq" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/corpsespawner/scientist, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/yellow/west, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"gBC" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) "gBH" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -8062,6 +8417,12 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) +"gCp" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "gCx" = ( /obj/structure/machinery/landinglight/ds1/spoke, /turf/open/auto_turf/snow/layer1, @@ -8071,46 +8432,24 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"gCM" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) -"gCP" = ( -/obj/structure/largecrate/random/secure, -/obj/item/ashtray/bronze{ - pixel_y = 7 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"gCU" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) "gCW" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"gDv" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/aux_power) -"gDI" = ( -/obj/structure/largecrate/random/case, +"gDp" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/colony/medseceng) +"gDK" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"gEc" = ( +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/aerodrome) "gEk" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -8126,57 +8465,70 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"gGe" = ( -/turf/open/auto_turf/ice/layer0, -/area/shiva/exterior/cp_s_research) +"gFi" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) "gGf" = ( /obj/item/ammo_magazine/rifle/m41aMK1, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"gGx" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"gGD" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "gGH" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"gGJ" = ( -/obj/item/storage/donut_box, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) "gGT" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"gHn" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 20 +"gGU" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"gHt" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) "gHu" = ( /obj/item/explosive/grenade/custom/large, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/central) -"gHX" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"gIn" = ( -/obj/structure/bed/chair{ - dir = 1 +"gHw" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = -6 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"gIA" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"gHU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/research_hab) +"gIJ" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/crayons{ - pixel_x = 1; - pixel_y = 2 +/obj/item/paper/janitor{ + pixel_y = 8 }, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/purplefull, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "gIQ" = ( /obj/item/stack/sheet/metal, @@ -8188,66 +8540,76 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"gJh" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "gJo" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/junkyard/cp_bar) -"gJA" = ( -/turf/open/floor/shiva/greencorners/west, -/area/shiva/interior/colony/botany) "gJI" = ( /obj/structure/surface/rack, /obj/item/stack/cable_coil, /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"gJJ" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/caves/cp_camp) +"gKc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "gKQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"gLo" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +"gKV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) +"gKZ" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "gLv" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"gLE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"gLO" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/obj/structure/machinery/light{ - dir = 4 +"gMf" = ( +/obj/item/shard{ + icon_state = "large" }, -/turf/open/shuttle/can_surgery/black, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "gMv" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/shiva/interior/colony/central) +"gMA" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"gMT" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"gNl" = ( +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"gNs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "gNw" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 6 @@ -8267,57 +8629,59 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"gOd" = ( -/obj/structure/girder/displaced, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"gOt" = ( -/obj/structure/sink{ - pixel_y = 15 +"gOc" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"gOH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"gOQ" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"gOU" = ( -/obj/structure/platform/strata{ - dir = 4 +/turf/open/floor/strata/floor2, +/area/shiva/interior/colony/research_hab) +"gOn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = 8 }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) -"gOW" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"gOY" = ( -/turf/open/floor/shiva/multi_tiles/southeast, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) -"gPf" = ( +"gOA" = ( /obj/structure/surface/table, -/obj/item/clothing/suit/armor/hos, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"gOH" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"gOQ" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_colony_grounds) "gPg" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) +"gPj" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "gPk" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"gPC" = ( -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"gQh" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/s_admin) "gQy" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -8333,6 +8697,13 @@ dir = 10 }, /area/shiva/interior/aerodrome) +"gQK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 9 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "gQL" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/darkred, @@ -8345,6 +8716,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"gQV" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/antag{ + pixel_y = 7 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "gRx" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -8373,101 +8755,59 @@ /obj/item/clothing/mask/rebreather, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"gRT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "gRV" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gSO" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -13 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shiva/exterior/junkyard/fortbiceps) -"gSP" = ( -/obj/structure/surface/table, -/obj/item/device/binoculars/range{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -14; - pixel_y = 14 - }, -/turf/open/floor/shiva/floor3, +"gSB" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) +"gSY" = ( +/turf/open/floor/shiva/wredcorners/north, +/area/shiva/interior/colony/medseceng) "gTe" = ( /obj/structure/machinery/gibber, /turf/open/floor/prison, /area/shiva/interior/bar) -"gTg" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"gTi" = ( +"gTT" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) -"gUb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/obj/item/device/flashlight, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "gUc" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/shiva/interior/aerodrome) -"gUG" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +"gUu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/garage) +"gWa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 + }, +/obj/item/toy/deck{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "gWk" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/bar) -"gWG" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"gXf" = ( -/obj/structure/surface/table/woodentable{ - flipped = 1 - }, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"gXg" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"gXi" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"gXz" = ( +/obj/structure/platform/shiva/catwalk{ dir = 8 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "gXS" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) @@ -8481,17 +8821,16 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"gZd" = ( -/obj/structure/machinery/processor, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"gZx" = ( -/turf/open/floor/shiva/yellow/southeast, +"gYY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"gZz" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) +"gZs" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "gZG" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 2; @@ -8506,51 +8845,108 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hap" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/research_hab) -"haH" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/s_lz2) +"has" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"haJ" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"haT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) "hbo" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) -"hcm" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shiva/exterior/junkyard/fortbiceps) -"hcH" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/shiva/interior/bar) -"hcJ" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/shiva/interior/telecomm/lz1_biceps) -"hdG" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/garage) -"hec" = ( -/obj/structure/prop/invuln/minecart_tracks{ +"hbO" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"hbU" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"hcH" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/bar) +"hcJ" = ( +/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/area/shiva/interior/telecomm/lz1_biceps) +"hdJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"hdO" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"hev" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/east, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"heh" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) +"hev" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "heH" = ( -/obj/item/lightstick/red/variant/planted, +/turf/open/floor/chapel/west, +/area/shiva/interior/colony/central) +"hfp" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"hfD" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"hgh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, /obj/structure/platform/shiva/catwalk{ dir = 8 }, -/turf/open/auto_turf/snow/layer1, +/turf/open/floor/plating, /area/shiva/interior/aerodrome) -"hgd" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, +"hgA" = ( +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "hgI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -8563,73 +8959,47 @@ /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) "hgM" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; - pixel_y = -1 +/obj/structure/platform/strata{ + dir = 1 }, -/turf/closed/wall/shiva/ice, -/area/shiva/exterior/cp_s_research) -"hhd" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/deck) -"hhi" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -7; - pixel_y = 9 +/obj/structure/platform/strata{ + dir = 8 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"hhv" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"hil" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "hin" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"hjk" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{ - pixel_y = 7 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"hjp" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light/small{ - dir = 8 - }, +"hiX" = ( +/obj/structure/machinery/vending/cigarette, /turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"hjO" = ( -/turf/open/floor/chapel/east, -/area/shiva/interior/colony/central) -"hka" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"hjP" = ( +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/central) -"hke" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"hkB" = ( -/obj/item/weapon/ice_axe/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) "hkC" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"hkE" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) "hkS" = ( /obj/item/lightstick/red/variant{ pixel_x = 3; @@ -8637,28 +9007,25 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hkU" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "hlm" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"hlv" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"hlM" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/shiva/exterior/cp_colony_grounds) "hmo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/gun/rifle/m41a, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"hmP" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"hmR" = ( +/obj/item/weapon/gun/pistol/highpower, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "hmU" = ( /obj/structure/largecrate/random/mini/wooden{ pixel_y = 6 @@ -8680,33 +9047,15 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"hnP" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/exterior/cp_colony_grounds) -"hnX" = ( -/obj/structure/prop/invuln/ice_prefab/standalone, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"hoG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"hoP" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +"hoD" = ( +/obj/structure/machinery/smartfridge{ + density = 0; + pixel_y = 22 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "hpm" = ( /obj/structure/largecrate/random/mini{ layer = 2.99; @@ -8725,6 +9074,12 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) +"hpv" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "hqd" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 6; @@ -8732,6 +9087,27 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"hqe" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 4; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"hqp" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"hra" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "hrb" = ( /obj/structure/surface/table, /obj/item/stock_parts/matter_bin/super{ @@ -8743,48 +9119,14 @@ "hrk" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/warehouse/caves) -"hrx" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"hrO" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"hrY" = ( -/turf/open/floor/shiva/wredcorners/west, -/area/shiva/interior/colony/medseceng) -"hso" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/greencorners/west, -/area/shiva/interior/colony/botany) -"hsr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"hsy" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"hsJ" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"hsN" = ( +"hsp" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_y = 6 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"hsE" = ( +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/central) "hsZ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -8795,43 +9137,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"htu" = ( -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) -"htE" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"htQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"htV" = ( -/obj/item/tool/shovel/snow{ - pixel_y = 8 - }, -/obj/item/tool/shovel/snow, -/obj/structure/surface/rack, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"huc" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard) -"hud" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/feathertrilby{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "huv" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -8842,33 +9147,42 @@ "huz" = ( /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/interior/warehouse) -"huA" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp{ - pixel_y = 4 - }, -/turf/open/floor/shiva/red/southeast, -/area/shiva/interior/colony/medseceng) "huF" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"hvG" = ( -/turf/open/floor/shiva/wred/southwest, +"huL" = ( +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) -"hvN" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/exterior/cp_lz2) -"hvV" = ( -/obj/structure/machinery/light/double, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ +"huQ" = ( +/obj/structure/inflatable/popped, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"huX" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"hve" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"hvg" = ( +/obj/structure/prop/ice_colony/soil_net, +/obj/item/tool/shovel/spade{ + layer = 2.99; + pixel_x = -9; + pixel_y = -11 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"hvC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "hvZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "hangar_ice_3"; @@ -8876,16 +9190,12 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"hwY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/shiva/exterior/junkyard/cp_bar) -"hxb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"hwy" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "hxk" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -8893,35 +9203,13 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hxs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"hxG" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"hxp" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/central) "hxY" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"hxZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "hyw" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -8929,24 +9217,47 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"hzv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" +"hyF" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 9 }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"hyY" = ( +/obj/item/ammo_magazine/rifle/ap, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"hzf" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"hzq" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "hzJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/lz1_valley) -"hzL" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"hzN" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) +"hzS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"hzU" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"hAi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "hAS" = ( /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) @@ -8954,39 +9265,31 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"hBj" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "hBq" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/caves/cp_camp) -"hBC" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) -"hCl" = ( -/obj/structure/surface/table/woodentable{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +"hBB" = ( +/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/area/shiva/exterior/telecomm/lz1_north) +"hCh" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "hCY" = ( /obj/structure/bed/chair/comfy/orange{ dir = 4 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"hDb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/asphalt/cement, +/area/shiva/interior/warehouse) "hDs" = ( /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, @@ -9019,13 +9322,19 @@ /obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_rook, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"hDJ" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device{ - dir = 4; - pixel_y = 10 +"hDM" = ( +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/central) +"hDO" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) +"hDS" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) "hEa" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -9036,13 +9345,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/deck) -"hEh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"hEp" = ( -/turf/open/floor/darkbrown2/west, -/area/shiva/interior/valley_huts/disposals) +"hEw" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/interior/aux_power) "hEE" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -9051,35 +9357,22 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hEO" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/exterior/cp_lz2) -"hFd" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"hEJ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) "hFj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/fortbiceps) "hFl" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/oob/dev_room) -"hFm" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) +"hFq" = ( +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) "hGj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "hangar_ice_2"; @@ -9087,19 +9380,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"hGU" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"hHb" = ( -/obj/item/clipboard, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "hHf" = ( /obj/structure/largecrate, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"hHi" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/shiva/exterior/telecomm/lz1_north) "hHk" = ( /obj/item/weapon/gun/boltaction, /obj/item/lightstick/red/spoke/planted{ @@ -9108,29 +9397,36 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"hHF" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "hHS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_y = 14 +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"hHU" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = 4; + pixel_y = 7 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "hHY" = ( /obj/structure/barricade/metal{ layer = 3 }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"hIr" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +"hIc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/shiva/interior/aerodrome) "hIu" = ( /obj/structure/surface/rack, /obj/item/device/radio{ @@ -9145,58 +9441,35 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"hIH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "hIM" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"hIU" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"hIZ" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva/wredfull, +"hIO" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"hJf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"hJj" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "hJH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hJJ" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"hJK" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) -"hJS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"hKk" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/shiva/interior/bar) -"hKN" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/warnplate/northwest, +"hKx" = ( +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/colony/medseceng) +"hKA" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "hLf" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/n_admin) @@ -9208,54 +9481,70 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hLL" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"hMr" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/shiva/exterior/cp_lz2) -"hMM" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"hOY" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassall_1" +"hME" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"hMZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"hND" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"hNM" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"hPc" = ( -/obj/structure/machinery/floodlight, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"hOt" = ( +/obj/structure/machinery/landinglight/ds2, /turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) +/area/shiva/exterior/lz2_fortress) +"hOL" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"hOU" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 12 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"hOX" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) "hPp" = ( /turf/closed/wall/shiva/prefabricated/orange, /area/shiva/interior/caves/cp_camp) -"hPr" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"hPA" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/advanced/bruise_pack/upgraded{ - pixel_x = -3; - pixel_y = 14 +"hPU" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" }, -/obj/item/stack/medical/advanced/ointment/upgraded{ - pixel_x = 4; - pixel_y = 5 +/obj/item/storage/firstaid/adv, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"hQG" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 3; + pixel_y = 9 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"hQL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"hQK" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "hQO" = ( /obj/structure/surface/table, @@ -9272,10 +9561,21 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hRt" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/shiva/greenfull/west, -/area/shiva/interior/colony/n_admin) +"hRb" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"hRz" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "hRC" = ( /obj/structure/surface/rack, /obj/item/device/radio{ @@ -9294,9 +9594,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"hRR" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) "hSa" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, @@ -9305,10 +9602,35 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"hSS" = ( -/obj/item/tool/crowbar, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +"hSC" = ( +/turf/open/floor/shiva/bluecorners, +/area/shiva/interior/colony/central) +"hSF" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"hSR" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"hSV" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "hSW" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -9321,6 +9643,13 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) +"hTa" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"hTf" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/exterior/cp_lz2) "hTk" = ( /obj/structure/bookcase/manuals/medical, /obj/structure/machinery/light/double{ @@ -9333,6 +9662,13 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"hTq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "hTO" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer1, @@ -9348,42 +9684,25 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"hUx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_x = 7; - pixel_y = 14 +"hUK" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"hUH" = ( -/obj/structure/surface/rack, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/item/cell/hyper/empty, -/obj/item/cell/hyper/empty, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/obj/structure/machinery/computer/communications{ + dir = 4 }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/s_admin) "hUM" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"hVa" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) +"hVi" = ( +/turf/open/floor/darkbrown2/west, +/area/shiva/interior/valley_huts/disposals) "hVs" = ( /obj/structure/surface/table, /obj/item/evidencebag{ @@ -9391,35 +9710,17 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hVt" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"hVA" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) -"hVP" = ( -/obj/structure/machinery/light/double{ - dir = 1; +"hVD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder{ pixel_y = 9 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"hWC" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/obj/item/stack/sheet/mineral/phoron{ + pixel_x = -1; + pixel_y = 14 }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "hWK" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -9430,6 +9731,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) +"hWR" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) "hWX" = ( /obj/structure/cargo_container/arious/leftmid{ health = 5000; @@ -9437,13 +9748,13 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"hXb" = ( -/obj/structure/stairs/perspective/ice{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/warehouse/caves) +"hXs" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "hXB" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, @@ -9463,24 +9774,35 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"hYa" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "hYb" = ( /obj/structure/machinery/light/double, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hYg" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"hYJ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) -"hZy" = ( +"hYc" = ( /obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison/kitchen, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"hYI" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"hZc" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"hZv" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "hZI" = ( /obj/structure/largecrate/random/mini/small_case/b{ @@ -9495,79 +9817,78 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"iaa" = ( -/turf/closed/wall/shiva/prefabricated/blue, -/area/shiva/exterior/junkyard/cp_bar) -"iaC" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, +"iaw" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) +"iaG" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "iaK" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"ibV" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/southeast, -/area/shiva/interior/colony/central) -"icb" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) -"icl" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/s_admin) -"icT" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"ibq" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_y = 7 }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"ida" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"ibv" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva/red, +/turf/open/floor/chapel/east, /area/shiva/interior/colony/central) -"idP" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"ibz" = ( +/turf/open/floor/dark2, +/area/shiva/interior/colony/central) +"ico" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) +"icG" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"icO" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/wred/west, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) +"icQ" = ( +/obj/item/weapon/ice_axe/red, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "idR" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"ieg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, +"iev" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = -1 + }, /turf/open/floor/plating, -/area/shiva/exterior/valley) +/area/shiva/exterior/junkyard) "iey" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"ieA" = ( -/obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva/green/northwest, -/area/shiva/interior/colony/botany) "ieD" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data{ @@ -9575,26 +9896,19 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"ifG" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood{ - layer = 3 +"ieF" = ( +/obj/structure/stairs/perspective/ice{ + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"igW" = ( -/obj/item/tool/shovel/snow, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - layer = 3.1; - pixel_x = -8; - pixel_y = 23 +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"ige" = ( +/obj/structure/largecrate/random/secure, +/obj/item/ashtray/bronze{ + pixel_y = 7 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"ihm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/yellowcorners, -/area/shiva/interior/garage) "ihp" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/sake, @@ -9608,24 +9922,14 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) "iix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/purplefull/north, -/area/shiva/interior/colony/research_hab) -"iiT" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "iji" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/central) -"ijs" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "ijA" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -9644,95 +9948,81 @@ /obj/item/stack/sheet/metal/small_stack, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"ikc" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/northwest, -/area/shiva/interior/colony/botany) -"ikk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/north, -/area/shiva/interior/warehouse/caves) +"iki" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "ikR" = ( /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"ikT" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/shiva/bluefull, +"ilk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) -"ily" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibhead" +"ilJ" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "imk" = ( /obj/effect/spider/stickyweb, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"imO" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"imS" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"imD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "inJ" = ( /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) "inN" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Underground Morgue" - }, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"inS" = ( +/obj/structure/foamed_metal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"inT" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"iob" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +/area/shiva/exterior/lz2_fortress) "iof" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"ioj" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) -"ipd" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +"iog" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "hangar_ice_2"; + pixel_y = 28 }, -/obj/structure/machinery/light{ +/obj/structure/platform/shiva/catwalk{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/shiva/interior/aerodrome) -"ipG" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"ipL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"iok" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"ipD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) "ipP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, @@ -9741,16 +10031,44 @@ /obj/item/device/flashlight, /turf/open/floor/wood, /area/shiva/interior/bar) -"iqA" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"iqv" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8; + layer = 2.98 }, -/turf/open/floor/wood, -/area/shiva/interior/bar) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"iqx" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"iqA" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/wood, +/area/shiva/interior/bar) "iqC" = ( /obj/structure/coatrack, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"iqR" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/aux_power) +"irl" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"irp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "irT" = ( /obj/structure/platform/strata{ dir = 4 @@ -9758,39 +10076,24 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"isq" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) -"iss" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"isw" = ( -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"ita" = ( -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/interior/aux_power) -"itc" = ( +"isk" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/deck) +"isu" = ( /obj/structure/surface/table, -/obj/item/clothing/gloves/black, +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"itu" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, /turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) +/area/shiva/interior/colony/medseceng) +"isT" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"itx" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) "itH" = ( /obj/structure/largecrate/random/secure, /obj/structure/largecrate/random/mini{ @@ -9812,19 +10115,29 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"iuv" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +"iub" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"iuA" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/storage/belt/utility/full, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"iuB" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/botany) "iuI" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ivh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) +"ivc" = ( +/obj/structure/closet, +/obj/item/newspaper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "ivl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -9832,22 +10145,58 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"iwU" = ( -/obj/item/clothing/shoes/snow, +"ivx" = ( +/obj/item/paper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"ivA" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins"; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"ivX" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"iwg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"iwk" = ( /obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"ixe" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"iwN" = ( /obj/structure/surface/table, -/turf/open/floor/shiva/wred/west, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) +"ixc" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"ixo" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) "ixC" = ( /obj/structure/surface/rack, /obj/item/device/radio/headset{ @@ -9863,32 +10212,35 @@ /obj/item/device/whistle, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"iyf" = ( -/obj/structure/machinery/power/apc/power/east{ - start_charge = 10 +"ixH" = ( +/obj/structure/surface/table, +/obj/item/device/whistle, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"ixQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"iyK" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"izb" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"izi" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/bar) -"izj" = ( +"iyg" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"izE" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "iAg" = ( /obj/structure/barricade/snow{ @@ -9900,46 +10252,35 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"iBd" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"iBi" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) -"iBk" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellow/northeast, +"iAJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) -"iBB" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) -"iBS" = ( -/obj/structure/surface/table, -/obj/item/frame/firstaid_arm_assembly{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/tool/wrench{ - pixel_x = -5; - pixel_y = -2 +"iBl" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"iBY" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/purple/west, +/area/shiva/interior/lz2_habs) "iCF" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_colony_grounds) +"iCH" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"iCI" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -2; + pixel_y = -8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "iCK" = ( /obj/item/storage/belt/medical{ pixel_x = -3; @@ -9947,27 +10288,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"iCR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "iDa" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"iDg" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/machinery/power/smes/buildable{ - pixel_x = 1 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) "iDn" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -9976,62 +10300,47 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"iDD" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/botany) -"iEf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) -"iEu" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) "iEF" = ( /obj/structure/bed/chair/comfy/orange, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"iEK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ +"iEH" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/central) +"iEM" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"iFD" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - pixel_y = -5 +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) -"iFI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"iFP" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/colony_floodlight{ + layer = 2.9; + pixel_y = 7 }, -/turf/open/floor/shiva, -/area/shiva/interior/colony/research_hab) -"iHi" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/central) -"iHn" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"iGl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) +"iGE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/north, +/area/shiva/interior/warehouse/caves) +"iGO" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "iHV" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -10044,26 +10353,11 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"iIb" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"iIu" = ( -/obj/structure/inflatable, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"iIB" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) -"iIG" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) +"iIH" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "iIP" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, @@ -10078,23 +10372,50 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"iKD" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/radiator_tile2, +"iJT" = ( +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) -"iLl" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/n_admin) -"iLX" = ( -/obj/structure/machinery/light/double, +"iKr" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/deck) +"iKs" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"iKu" = ( +/obj/item/stack/rods{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/stack/catwalk, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"iKL" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"iKN" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"iLR" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "iMb" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) +"iMe" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "iMA" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -10107,26 +10428,18 @@ /obj/item/stack/cable_coil/cut, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"iNt" = ( -/obj/item/paper/research_notes{ - pixel_x = -7; - pixel_y = 3 - }, +"iNx" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"iNJ" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"iNG" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "iNX" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/central) -"iOn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz1_console/two) "iOr" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -10137,31 +10450,37 @@ /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"iPo" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 4 +"iOw" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"iPv" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = 4; - pixel_y = 7 +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"iOE" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"iPk" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"iPT" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"iPO" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/turf/open/floor/interior/plastic, -/area/shiva/interior/warehouse) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "iQe" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -10169,48 +10488,88 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"iQl" = ( +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/central) "iQq" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"iQM" = ( +"iQN" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"iRt" = ( /obj/structure/surface/table, -/obj/item/stack/sheet/wood{ - amount = 15 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, +/obj/item/tool/wrench, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"iQO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/floor3, +"iRC" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"iSd" = ( +"iRI" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"iSC" = ( -/turf/open/floor/bcircuit, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"iTt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"iTJ" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "telecomms relay power controller" +"iRK" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) +"iSr" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"iTh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/lz1_valley) "iTQ" = ( /obj/structure/girder, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) +"iUz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"iVu" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"iVB" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"iWv" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"iWF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "iWS" = ( /obj/structure/prop/invuln/dense{ desc = "Gonzo is trying to drill his way to freedom. He made this himself."; @@ -10246,10 +10605,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"iXo" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/northeast, -/area/shiva/interior/colony/botany) "iXr" = ( /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/shiva, @@ -10261,18 +10616,29 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"iXF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "iXG" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"iXH" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/west, -/area/shiva/interior/valley_huts/disposals) +"iXK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/weapon/gun/rifle/m41aMK1, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "iXR" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -10285,128 +10651,90 @@ /obj/item/tool/wrench, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"iYd" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) -"iYo" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +"iYs" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"iYv" = ( +/obj/structure/flora/tree/dead/tree_2, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"iYy" = ( +/obj/structure/bedsheetbin{ + pixel_y = 9 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"iYt" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/storage/belt/marine, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "iYC" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"iYU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - pixel_y = 5 +"iYQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 9 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/colony/research_hab) +"iYR" = ( +/turf/open/floor/shiva, +/area/shiva/interior/caves/cp_camp) "iZj" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"iZs" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"iZA" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"iZS" = ( -/obj/item/tool/weldingtool, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) -"iZT" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"jaf" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) -"jam" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"jaw" = ( -/obj/structure/machinery/vending/cigarette/colony, +"jab" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"jan" = ( +/obj/structure/surface/table, +/obj/item/storage/box/pizza, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/botany) "jaF" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"jaN" = ( -/obj/structure/barricade/metal{ - dir = 4 +"jaM" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/research_caves) +"jaT" = ( +/obj/item/lightstick/red/variant/planted, +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/aerodrome) "jaW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, +/obj/item/device/pinpointer, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"jbk" = ( -/obj/item/ammo_magazine/flamer_tank, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"jbl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"jaZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"jbL" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"jbU" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva/wred/north, +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jbf" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "jbY" = ( /obj/structure/platform/strata{ @@ -10414,34 +10742,43 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"jcB" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/redpyjamas, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) -"jcL" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"jdi" = ( +"jcn" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"jdJ" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, -/area/shiva/interior/aerodrome) +/obj/item/stock_parts/matter_bin{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jdC" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "jeg" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/shiva, /area/shiva/interior/bar) -"jem" = ( +"jek" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"jeo" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) +"jey" = ( /obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "jft" = ( /obj/structure/surface/table, /obj/item/storage/box/emps, @@ -10451,34 +10788,40 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"jfB" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "jfS" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-south-caves" }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) -"jfW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"jgc" = ( -/obj/item/paper, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"jhK" = ( +"jfZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"jhf" = ( /obj/structure/surface/table, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) +/obj/effect/landmark/crap_item, +/obj/item/paper/research_notes, +/obj/item/paper_bin, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"jhk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jhr" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"jhP" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "jhR" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/kitchen/utensil/pknife{ @@ -10497,16 +10840,38 @@ "jiu" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) +"jiP" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) +"jjd" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "jjp" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"jkg" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) +"jjR" = ( +/obj/item/stack/cable_coil/cut, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/colony/medseceng) +"jkz" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/under/marine/veteran/mercenary/support, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"jkF" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/aux_power) "jkH" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -10515,17 +10880,15 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"jkP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"jlg" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_3"; - layer = 2.9 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) +"jkJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/exterior/cp_colony_grounds) +"jlm" = ( +/obj/structure/foamed_metal, +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) "jlv" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood{ @@ -10539,6 +10902,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/bar) +"jlX" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/lz1_valley) "jlY" = ( /obj/structure/platform/strata{ dir = 8 @@ -10549,95 +10921,157 @@ /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"jmK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "jmW" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"jnw" = ( -/turf/open/floor/chapel/west, -/area/shiva/interior/colony/central) -"jnF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"jng" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jnp" = ( +/obj/item/shard{ + icon_state = "large" }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) -"jok" = ( -/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"joq" = ( -/obj/structure/stairs/perspective/ice{ +"jod" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"jou" = ( +/obj/structure/machinery/light/double{ dir = 1; - icon_state = "p_stair_full" + pixel_y = 9 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/research_caves) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"jov" = ( +/obj/structure/machinery/light/double, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "joF" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"joH" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"joI" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "jph" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"jpC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "jpE" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"jqv" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 4; +"jpU" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + id = "hangar_ice_2"; pixel_y = 5 }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"jpV" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "jqx" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"jqy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"jqN" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) +"jra" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "jrg" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/research_caves) +"jro" = ( +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"jrx" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/colony/research_hab) "jrR" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"jrW" = ( -/obj/structure/machinery/computer/cameras{ +"jsn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"jsD" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/medseceng) -"jsp" = ( -/obj/structure/surface/table, -/obj/item/device/encryptionkey, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) -"jsG" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"jsZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jtp" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/caves/cp_camp) +"jtI" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"juw" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, @@ -10652,65 +11086,10 @@ /obj/item/clothing/mask/rebreather, /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/exterior/cp_colony_grounds) -"jsS" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"jsW" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"jtl" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"jtp" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) -"jtQ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"jui" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Colony Security Checkpoint" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"jut" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"juM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"juU" = ( +"jux" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/shiva/floor3, -/area/shiva/interior/warehouse) -"jvs" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/gun/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/storage/belt/marine, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/central) "jvt" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -10724,6 +11103,11 @@ /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"jvB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "jvT" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -10734,138 +11118,157 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"jwi" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) "jwm" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"jwX" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) +"jwr" = ( +/obj/item/storage/donut_box, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"jwz" = ( +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"jwH" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) +"jxe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "jxh" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"jxK" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"jya" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/blue/west, -/area/shiva/interior/colony/n_admin) -"jyF" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellow/northwest, +"jxU" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) -"jyZ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"jzK" = ( -/turf/open/floor/shiva/yellowfull/west, +"jyV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"jzX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/red/northwest, +"jzm" = ( +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"jzL" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"jAu" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"jAI" = ( +"jzN" = ( /obj/structure/surface/table, -/obj/item/vehicle_clamp{ - pixel_y = 2 +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"jAu" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"jAK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "jAL" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) "jAN" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/valley_huts/disposals) -"jAY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"jAU" = ( +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) +"jBe" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"jBl" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"jBf" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/adv{ - pixel_y = 9 +"jBn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center"; + req_access_txt = "100" }, -/obj/item/paper{ - pixel_x = -12; - pixel_y = 4 +/turf/open/floor/dark2, +/area/shiva/interior/colony/central) +"jCj" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) "jCk" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"jCp" = ( +/obj/item/newspaper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "jCv" = ( -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "White" +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -11; + pixel_y = 8 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/obj/item/tool/mop{ + pixel_x = -10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "jCE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) -"jCY" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"jDv" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"jDF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"jCU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "jDO" = ( -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "jEc" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"jFd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +"jFc" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "jFq" = ( /obj/structure/surface/rack, /obj/item/lightstick/red/variant, @@ -10880,26 +11283,21 @@ /obj/structure/machinery/light/double, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"jFr" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "jFy" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"jGz" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"jGD" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) +"jFz" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"jGK" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "jGW" = ( /obj/structure/cargo_container/horizontal/blue/middle, /obj/structure/largecrate/random/mini/small_case/b{ @@ -10914,16 +11312,15 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"jHB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"jHV" = ( -/turf/open/floor/chapel/north, -/area/shiva/interior/colony/central) -"jIr" = ( -/turf/open/floor/shiva/yellowcorners/north, -/area/shiva/interior/colony/medseceng) +"jHP" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"jHX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/colony/research_hab) "jIP" = ( /obj/structure/platform/strata{ dir = 4 @@ -10938,6 +11335,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) +"jJg" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "jJv" = ( /obj/structure/platform/strata{ dir = 1 @@ -10948,11 +11355,6 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"jJR" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) "jJZ" = ( /obj/structure/largecrate/random/mini/small_case/b{ pixel_x = -5; @@ -10960,26 +11362,22 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"jKG" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard) +"jKI" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "jKN" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"jKU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/central) "jLx" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"jLE" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "jLX" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Anti-Freeze Lounge" @@ -10989,30 +11387,31 @@ "jMf" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"jML" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"jMh" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/obj/effect/landmark/corpsespawner/doctor, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) -"jNR" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"jOF" = ( -/obj/effect/spider/stickyweb{ - icon_state = "stickyweb2" +"jMk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"jNn" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"jNu" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "jOP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -11023,10 +11422,10 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"jPl" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) +"jPm" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "jPo" = ( /obj/structure/platform/strata{ dir = 1 @@ -11036,10 +11435,42 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) -"jQb" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) +"jPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"jPF" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"jPG" = ( +/obj/structure/platform/shiva/catwalk, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"jPU" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shiva/interior/bar) "jQe" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -11053,6 +11484,19 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"jQu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jQx" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "jQy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; @@ -11060,6 +11504,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"jQG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "jQS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -11071,9 +11519,20 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"jRt" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/shiva/interior/colony/deck) +"jQX" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/machinery/power/smes/buildable{ + pixel_x = 1 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"jRC" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "jRI" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -11081,6 +11540,64 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) +"jRK" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"jRP" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/telecomm/lz1_biceps) +"jSn" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12 + }, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shiva/exterior/junkyard/fortbiceps) +"jSq" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"jSC" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"jSE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jSX" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"jTd" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jTw" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jTy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/assembly/timer, +/obj/item/attachable/flashlight{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"jTP" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "jTT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -11094,22 +11611,45 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"jUr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/yellow/west, +"jUf" = ( +/obj/item/tool/wirecutters{ + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"jUv" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"jUz" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"jUD" = ( -/obj/structure/surface/table/reinforced/prison, +"jUw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/medseceng) +"jUR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jUT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "jVi" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) +"jVo" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) "jVx" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating, @@ -11123,46 +11663,55 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"jWS" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/deck) -"jWW" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"jWY" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"jXa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"jWf" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"jWw" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"jWQ" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "jXf" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"jXs" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"jXy" = ( +/obj/structure/machinery/space_heater, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) "jXD" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"jXV" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"jYI" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/central) +"jYN" = ( +/obj/structure/inflatable, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "jYO" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -11171,17 +11720,60 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"kaw" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, +"jYP" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"jYQ" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"jZh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"kai" = ( +/obj/item/lightstick/variant/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"kaj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 8 + }, /turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +/area/shiva/interior/bar) +"kam" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"kat" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "kaC" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/aerodrome) -"kbD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/southeast, -/area/shiva/interior/colony/medseceng) +"kbs" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kbK" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 4; @@ -11198,37 +11790,55 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/research_hab) -"kcx" = ( -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/warehouse/caves) -"kcQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, +"kbX" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/medseceng) +"kdx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" + }, /turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"kdg" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 +/area/shiva/interior/colony/s_admin) +"kdG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) -"kdh" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11; - pixel_y = 20 +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"kdJ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, /turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"kdQ" = ( -/obj/structure/closet, -/obj/item/newspaper, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "kee" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"keh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-east-gate" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"kes" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/greencorners/west, +/area/shiva/interior/colony/botany) +"kex" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "keI" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -11238,22 +11848,13 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"kfy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"kfz" = ( -/obj/item/stool, +"keV" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/garage) +"kfw" = ( +/obj/structure/closet/toolcloset, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) -"kfD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) "kfW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -11296,26 +11897,13 @@ /obj/item/device/flashlight, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"khC" = ( -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/warehouse/caves) -"kil" = ( -/obj/item/weapon/gun/pistol/holdout, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) -"kir" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"kiy" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"kiB" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/wood, +/area/shiva/interior/colony/medseceng) "kiF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -11324,9 +11912,13 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) -"kiX" = ( -/turf/open/floor/shiva/wredcorners, +"kjj" = ( +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) +"kjE" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) "kjM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper North Aerodrome Hangar"; @@ -11334,42 +11926,55 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"kkw" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 +"kkg" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"kkB" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"kln" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"klB" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"klJ" = ( -/obj/item/tool/wrench, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "klN" = ( /obj/effect/spider/stickyweb{ icon_state = "stickyweb2" }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"klT" = ( -/obj/item/restraint/handcuffs, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"kmm" = ( -/turf/open/floor/shiva/red/west, -/area/shiva/interior/colony/central) +"kmD" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "kmM" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) +"kmQ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "kng" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/right_spiders) @@ -11382,10 +11987,6 @@ "knF" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_colony_grounds) -"knG" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) "knI" = ( /obj/item/tool/shovel/spade{ pixel_x = -3; @@ -11393,17 +11994,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"knO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) "knQ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -11415,36 +12005,74 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"koi" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/garage) -"kom" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/aux_power) +"knR" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"knS" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"koe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "kop" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"kph" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) +"koM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"koR" = ( +/obj/structure/closet/crate, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_king, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"kpv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) "kqb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"kqr" = ( -/obj/item/stool, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"kqQ" = ( -/obj/item/device/pinpointer, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"kqU" = ( -/turf/open/floor/shiva/north, +"kqk" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"krd" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva, +/area/shiva/interior/aerodrome) +"krg" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "kri" = ( /obj/item/lightstick/red/planted, @@ -11455,17 +12083,13 @@ /turf/open/floor/wood, /area/shiva/interior/aerodrome) "kro" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/delivery, +/area/shiva/interior/telecomm/lz1_biceps) +"krq" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "krU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/white, @@ -11475,22 +12099,13 @@ /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"ksG" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/cp_colony_grounds) -"ksU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/aux_power) "ktd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) +"kto" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) "kts" = ( /obj/structure/surface/table, /obj/item/storage/box/beakers, @@ -11500,6 +12115,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"ktL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "kue" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/colony/research_hab) @@ -11525,12 +12145,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"kvo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/n_admin) +"kvh" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"kvk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "kvB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin, @@ -11542,72 +12165,53 @@ /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/closed/wall/shiva/ice, /area/shiva/exterior/junkyard) -"kvN" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"kvP" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) "kvQ" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) +"kwe" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "kwf" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"kwg" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"kxa" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) "kxG" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"kyh" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"kyq" = ( +"kxN" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "kys" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/green, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"kyy" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/storage/belt/marine, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/ammo_magazine/rifle/extended, +/obj/item/ammo_magazine/rifle, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "kyD" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"kzy" = ( -/obj/structure/surface/table, -/obj/item/device/defibrillator, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) +"kyN" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"kyV" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) "kzE" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -11618,25 +12222,40 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"kzZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"kAn" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "kAw" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"kBh" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +"kAB" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"kAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"kAK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"kAL" = ( +/turf/open/floor/darkbrowncorners2, +/area/shiva/interior/valley_huts/disposals) +"kBa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "kBo" = ( /obj/structure/prop/ice_colony/poly_kevlon_roll{ pixel_y = 21 @@ -11650,16 +12269,29 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"kCl" = ( -/obj/structure/surface/table, -/obj/item/folder/white, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"kBz" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"kBM" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/bed/chair, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"kCc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) +"kCE" = ( +/obj/structure/platform/strata{ + dir = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "kCK" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -11674,6 +12306,17 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"kDp" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = 11; + pixel_y = 11 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"kDF" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "kEs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva, @@ -11681,41 +12324,45 @@ "kEx" = ( /turf/open/floor/plating, /area/shiva/interior/bar) -"kFe" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) -"kFB" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/barricade/metal/wired{ +"kFp" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/botany) +"kFC" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"kFP" = ( +/obj/structure/platform/strata{ dir = 8 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"kGg" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) -"kGq" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_y = 6 +/obj/structure/platform/strata{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"kFR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"kGe" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "kGz" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"kGI" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +"kGF" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"kGR" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) @@ -11723,15 +12370,37 @@ /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"kHf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +"kHQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"kHX" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/human/burger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"kIe" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/aux_power) +/area/shiva/interior/colony/medseceng) +"kJc" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "kJw" = ( /obj/item/clipboard, /turf/open/floor/shiva, @@ -11746,19 +12415,23 @@ /obj/item/lightstick/red/variant, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kJU" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"kKD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull/west, +"kKp" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"kKy" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"kKL" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"kLf" = ( +/obj/item/book/manual/marine_law, +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "kLi" = ( /obj/structure/surface/rack, @@ -11773,64 +12446,21 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"kLs" = ( -/obj/structure/platform/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"kLD" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"kLj" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "kLG" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"kLH" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"kLL" = ( -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "kLM" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kMp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 5 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"kMy" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "kMF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -11839,27 +12469,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"kMS" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/item/tool/weldingtool{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) -"kNw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) -"kOC" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) +"kOj" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"kOB" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/exterior/cp_s_research) +"kOM" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"kOP" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) "kOV" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) @@ -11867,7 +12490,25 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) -"kPl" = ( +"kPk" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"kPl" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/medseceng_caves) "kPS" = ( @@ -11891,6 +12532,9 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) +"kQM" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/research_hab) "kQW" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -11900,39 +12544,17 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"kRh" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) -"kRC" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/n_admin) -"kRF" = ( -/obj/item/weapon/gun/flamer, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"kRG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, +"kRq" = ( +/obj/structure/closet/firecloset, +/obj/item/explosive/grenade/high_explosive/pmc, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/research_hab) -"kSf" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"kRy" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kSh" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, @@ -11949,59 +12571,23 @@ "kTd" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/colony/research_hab) -"kTe" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"kTp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "kTP" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kTW" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) "kTZ" = ( /obj/item/tool/wirecutters, /turf/open/floor/plating, /area/shiva/interior/colony/deck) -"kUm" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"kUx" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/obj/structure/barricade/metal{ - layer = 3 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"kUz" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shiva/exterior/junkyard/fortbiceps) -"kUO" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +"kUa" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) +"kUP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "kVd" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) @@ -12009,15 +12595,19 @@ /obj/structure/surface/table, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"kVH" = ( -/obj/item/tool/kitchen/rollingpin, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"kVN" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) +"kVt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"kVO" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"kVW" = ( +/obj/structure/fence, +/turf/open/floor/shiva/redfull/west, +/area/shiva/exterior/cp_colony_grounds) "kWa" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 9 @@ -12029,6 +12619,9 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"kWC" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/deck) "kWK" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -12038,6 +12631,13 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/cp_camp) +"kXo" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) "kXs" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -12057,25 +12657,26 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"kXF" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 +"kXR" = ( +/obj/item/reagent_container/glass/beaker/cryopredmix{ + pixel_x = -10 }, -/obj/structure/prop/ice_colony/flamingo{ - dir = 9 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"kYM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"kXP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"kYV" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"kYv" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "kZj" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -12086,12 +12687,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"kZs" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) "kZK" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_magazine/handful/shotgun/buckshot{ @@ -12100,16 +12695,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"lac" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/red/west, -/area/shiva/interior/colony/medseceng) -"laq" = ( -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) "las" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = 1; @@ -12117,6 +12702,9 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) +"lat" = ( +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "laz" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -12127,56 +12715,16 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"laR" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"laX" = ( +"laU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/wood, +/area/shiva/interior/colony/medseceng) +"lce" = ( /obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"lbe" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/botany) -"lbD" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/under/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"lbH" = ( -/obj/structure/machinery/space_heater, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_s_research) -"lbI" = ( -/obj/structure/machinery/door_control{ - id = "st_17"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"lbM" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"lbO" = ( -/obj/structure/stairs/perspective/ice{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) "lcv" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = -6; @@ -12188,59 +12736,92 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"lcM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/valley) -"ldO" = ( +"lcJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/darkgreen2/southeast, +/area/shiva/interior/colony/botany) +"lcV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"ldD" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/obj/item/cell/high/empty, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"ldJ" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"ldU" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/obj/item/weapon/gun/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/storage/belt/marine, /turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"lef" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) -"leh" = ( -/obj/structure/machinery/vending/cola/research, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/s_admin) "lfe" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"lfn" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/warehouse/caves) +"lfv" = ( +/obj/item/lightstick/red/variant, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) "lfC" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/s_lz2) -"lfG" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/lz2_habs) -"lfO" = ( -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/central) "lfW" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) "lge" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ + pixel_x = -6; + pixel_y = 2 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "lgN" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/junkyard/fortbiceps) +"lgV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "lha" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -12252,60 +12833,40 @@ /obj/structure/surface/rack, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"lhx" = ( -/obj/item/storage/toolbox/electrical, +"lhi" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"lhQ" = ( -/obj/structure/stairs/perspective/ice{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/warehouse/caves) +/area/shiva/interior/colony/central) +"lhP" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/deck) +"lhV" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"lhZ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "lip" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"liE" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) -"liT" = ( -/obj/structure/machinery/chem_master/condimaster, +"liH" = ( +/obj/item/bodybag, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"liW" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"ljf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/shiva/interior/colony/central) +"ljs" = ( +/turf/open/floor/chapel/east, +/area/shiva/interior/colony/central) +"lju" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/aux_power) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "ljz" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -12313,68 +12874,39 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ljW" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 +"ljZ" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"lkD" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"lkW" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/medseceng) +"lkx" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) -"llj" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/bed/chair, +"lkO" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/n_admin) "lmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"lmA" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"lmD" = ( +/obj/structure/platform/strata{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/lz1_valley) "lmI" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) -"lna" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/exterior/cp_lz2) -"lnB" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"lnF" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva/yellow/north, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"lno" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "lnH" = ( /obj/structure/flora/bush/snow{ @@ -12385,15 +12917,23 @@ "lnR" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"lnW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/colony/research_hab) +"lnV" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) "lok" = ( /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"loo" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "lop" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -12401,27 +12941,33 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"loW" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/redfull/west, +"lou" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"loC" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) +"loP" = ( +/obj/structure/flora/tree/dead/tree_6, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "loX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"lpi" = ( -/obj/vehicle/train/cargo/engine, +"lpe" = ( +/obj/structure/machinery/disposal, /turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"lpp" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8; - layer = 2.98 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/medseceng) "lpD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -12436,13 +12982,6 @@ /obj/structure/cargo_container/ferret/right, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"lqB" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/deck) "lqY" = ( /obj/structure/largecrate/random/mini/small_case{ pixel_x = -9; @@ -12454,12 +12993,37 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"lrd" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "lrf" = ( /obj/structure/fence{ layer = 2.9 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"lrk" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"lrm" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"lrn" = ( +/turf/open/floor/bcircuit, +/area/shiva/interior/colony/medseceng) "lrt" = ( /obj/item/shard{ icon_state = "large"; @@ -12467,78 +13031,61 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"lrz" = ( -/obj/effect/spawner/random/toolbox, +"lsa" = ( +/obj/structure/dispenser, /turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"lrF" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/medseceng) "lsg" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"lth" = ( -/obj/structure/bed/chair{ - dir = 4 +"lso" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"lsL" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"lue" = ( +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) +"lul" = ( +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"lup" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"ltk" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"ltm" = ( +/area/shiva/exterior/lz2_fortress) +"luD" = ( +/obj/structure/machinery/space_heater, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard/fortbiceps) +"lvQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"lwm" = ( /obj/structure/surface/rack, -/obj/item/cell/high/empty, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"ltz" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) -"ltB" = ( -/obj/item/lightstick/planted, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"luC" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/obj/item/tool/stamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"luD" = ( -/obj/structure/machinery/space_heater, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard/fortbiceps) -"luH" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"luP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/rum{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"lwm" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/obj/item/tool/shovel/snow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) "lwo" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"lwx" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "lwG" = ( /obj/structure/machinery/door_control{ id = "garage_ice_1"; @@ -12546,6 +13093,28 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) +"lxf" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/garage) +"lxh" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"lxp" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"lxu" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "lyh" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -12554,25 +13123,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"lyI" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +"lyy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + pixel_y = 5 }, -/obj/item/paper_bin, -/obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"lyP" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva, -/area/shiva/interior/aerodrome) -"lzf" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/central) +/area/shiva/interior/lz2_habs) "lzQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -12587,41 +13144,39 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"lAT" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"lBf" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/aux_power) -"lBT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, +"lAp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"lAP" = ( +/obj/item/weapon/broken_bottle, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) +"lAT" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "White" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"lAZ" = ( +/obj/structure/platform_decoration/strata{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) +"lBw" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/n_admin) +"lBx" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "lCb" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"lCy" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"lCz" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/under/marine/veteran/mercenary, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"lCS" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"lDk" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "lDx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Colony Dormitories"; @@ -12629,31 +13184,51 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"lEd" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"lEs" = ( +"lDF" = ( /obj/structure/surface/table, -/obj/item/storage/box/trackimp, -/turf/open/floor/shiva/red/southeast, +/obj/item/device/defibrillator, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) -"lEX" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"lFV" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-north" +"lDO" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) +"lDY" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"lEl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"lFw" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Research Landing Zone" + }, +/turf/open/floor/plating, /area/shiva/exterior/lz2_fortress) +"lFR" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "lFX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"lGe" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "lGq" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) @@ -12663,6 +13238,14 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"lGF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"lGS" = ( +/obj/item/frame/table, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "lGU" = ( /obj/structure/surface/table, /obj/item/storage/fancy/cigarettes/lucky_strikes{ @@ -12670,15 +13253,13 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"lHi" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"lGX" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/warehouse/caves) "lHl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -12688,114 +13269,73 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating, /area/shiva/interior/garage) -"lHs" = ( -/obj/structure/barricade/metal{ - dir = 4 +"lHU" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/barricade/metal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "lIa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"lIJ" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"lIZ" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/wred/northeast, +"lII" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"lJc" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"lJu" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"lIQ" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" }, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"lJv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "lJx" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"lJF" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"lJM" = ( -/turf/open/floor/dark2, -/area/shiva/interior/valley_huts/disposals) -"lKd" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"lKp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"lKu" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/shiva/interior/aerodrome) "lKz" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"lLc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"lLf" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) "lLv" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"lMr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"lLJ" = ( +/obj/structure/stairs/perspective/ice{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/research_caves) +"lLX" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "nlz_shutters"; + pixel_y = 28 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "lMO" = ( /obj/structure/barricade/snow{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"lMR" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/garage) +"lNd" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/botany) "lNg" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/lz1_valley) +"lNl" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "lNE" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -12815,33 +13355,24 @@ "lNV" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/medseceng) -"lNY" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"lOR" = ( -/obj/structure/machinery/vending/coffee, +"lOJ" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) +"lPw" = ( +/obj/structure/filingcabinet, /turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) -"lPn" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) -"lPI" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - icon_state = "psiphon:1" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"lPX" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +"lPP" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) "lQm" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; @@ -12854,38 +13385,49 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"lQz" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/botany) +"lQP" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"lQW" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "lRo" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"lRJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/spaceacillin{ - pixel_x = 1; - pixel_y = 2 +"lSn" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/obj/item/storage/belt/utility/full{ - pixel_y = 14 +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"lRU" = ( -/obj/item/lightstick/red/variant, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"lSo" = ( -/obj/item/frame/air_alarm, -/turf/open/floor/shiva/wred/north, +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"lSq" = ( +/obj/structure/platform_decoration/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "lSw" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 20 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "lSU" = ( /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/interior/colony/research_hab) @@ -12893,109 +13435,104 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) +"lTq" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "lTr" = ( /turf/open/floor/plating, /area/shiva/exterior/telecomm/lz2_southeast) -"lTB" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = -13; - pixel_y = 28 - }, -/obj/structure/largecrate/random/mini/small_case/b, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = 14; - pixel_y = -3 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) -"lUy" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) -"lVj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"lVs" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/storage/firstaid/rad{ - pixel_y = 4 +"lTM" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"lVw" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/north, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/shiva/interior/aerodrome) +"lTS" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"lVz" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +"lUa" = ( +/obj/item/circuitboard, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "lVF" = ( /obj/structure/platform/shiva/catwalk{ dir = 4 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"lVK" = ( -/obj/structure/closet/secure_closet/engineering_personal, +"lVU" = ( /obj/structure/machinery/light/double, -/obj/item/weapon/gun/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/turf/open/floor/shiva/north, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) -"lWb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"lVW" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "lWh" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/valley) +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/botany) +"lWv" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/caves/cp_camp) "lWL" = ( /obj/effect/spider/cocoon{ icon_state = "cocoon_large3" }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"lXl" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"lXO" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 +"lWM" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = 12; + pixel_y = 6 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"lXT" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/barricade/metal{ + layer = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"lWP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"lXh" = ( +/obj/item/bodybag, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"lXW" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) +"lYe" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "lYk" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin{ @@ -13015,6 +13552,20 @@ /mob/living/simple_animal/hostile/giant_spider/hunter, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"lYr" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"lYw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/hotchili, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "lYG" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random{ @@ -13026,28 +13577,53 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"lZG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"lZN" = ( -/obj/structure/prop/dam/truck, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"mah" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Power Substation SMES" +"lZk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/plating, +/obj/structure/surface/table, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) -"maA" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/wood, -/area/shiva/interior/bar) -"mbj" = ( +"lZs" = ( +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"lZB" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"lZH" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/deck) +"lZT" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"maf" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-southeast-gate" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"mah" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Power Substation SMES" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"mai" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/warehouse/caves) +"maA" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/wood, +/area/shiva/interior/bar) +"mbj" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 }, @@ -13063,53 +13639,65 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"mbP" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"mco" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) +"mbz" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"mca" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/aerodrome) +"mcC" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"mcF" = ( +/obj/structure/platform_decoration/strata{ + dir = 1 + }, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "mcH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"mdl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cherrypie, +"mcJ" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"mdo" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/colony/research_hab) -"mdB" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"mdH" = ( +/area/shiva/interior/garage) +"mcU" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 8 +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"mdC" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"mdT" = ( -/obj/effect/spawner/random/tool, -/turf/open/auto_turf/snow/layer0, +/turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"mdP" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"mdT" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "mdV" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" @@ -13120,11 +13708,23 @@ /obj/item/tool/wet_sign, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"mer" = ( +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) "mev" = ( /obj/structure/closet/toolcloset, /obj/item/stack/sheet/metal/small_stack, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) +"meE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"meM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "mfa" = ( /obj/item/weapon/ice_axe, /turf/open/auto_turf/snow/layer2, @@ -13135,16 +13735,16 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"mfZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"mgH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/garage) +"mgK" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/clothing/suit/armor/riot/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "mgL" = ( /obj/item/weapon/gun/energy/taser, /obj/structure/machinery/light/double{ @@ -13153,6 +13753,22 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"mgO" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "mgT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -13163,6 +13779,13 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) +"mhI" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "mhP" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) @@ -13174,95 +13797,125 @@ "mib" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/medseceng_caves) -"mif" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"miC" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva/multi_tiles/west, +"miu" = ( +/turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/research_hab) -"mjr" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/deck) +"mjp" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "mjV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"mki" = ( -/obj/item/bodybag, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"mkk" = ( -/obj/structure/toilet, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"mkL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 5 +"mkn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/colony/research_hab) +"mkA" = ( +/obj/item/shard{ + icon_state = "medium" }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"mlv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/shiva/exterior/junkyard) +/area/shiva/interior/colony/s_admin) +"mkZ" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/interior/colony/central) +"mlz" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "mlG" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"mlK" = ( -/turf/open/floor/shiva/north, +"mmi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"mmm" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"mmI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/asphalt/cement, +/area/shiva/interior/warehouse) +"mmR" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) +"mnB" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) "mnR" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/botany) +/obj/structure/surface/table, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/aux_power) "mnS" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"mom" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"moz" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) +"moM" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"mpA" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/shiva/purple/east, -/area/shiva/interior/lz2_habs) -"moH" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"mpQ" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device{ - dir = 8; - pixel_x = -6; - pixel_y = 13 +/area/shiva/interior/colony/s_admin) +"mqx" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/exterior/cp_s_research) -"mqz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) "mqD" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) "mqN" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +/turf/closed/wall/shiva/prefabricated, +/area/shiva/exterior/cp_s_research) +"mqP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) +"mqZ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "mru" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/rum{ @@ -13271,19 +13924,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"msC" = ( -/turf/open/floor/shiva/purplefull/east, +"mrB" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"mrJ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/research_hab) -"msH" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/southeast, +"msp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"msZ" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "mti" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -13291,30 +13942,28 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"mto" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1; - pixel_y = 4 +"mtD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/shiva/purple/north, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "mtU" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"mud" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"mun" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/redfull/west, +"mue" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) +"muq" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "muH" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer2, @@ -13331,25 +13980,13 @@ /obj/structure/largecrate/random/mini/ammo, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"muT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"mvB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"mvC" = ( -/obj/structure/machinery/light/double{ +"mva" = ( +/obj/structure/surface/table/woodentable{ dir = 1; - pixel_y = 9 + flipped = 1 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "mvF" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -13366,13 +14003,6 @@ /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"mwm" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"mwv" = ( -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/garage) "mwE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/junkyard) @@ -13382,15 +14012,13 @@ }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"mwW" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/n_admin) -"mwX" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/weapon/gun/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, +"mxo" = ( +/obj/structure/surface/rack, /turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"myP" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "myR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -13402,73 +14030,29 @@ /obj/structure/prop/invuln/ice_prefab/standalone/trim, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mzG" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) -"mAg" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/storage/belt/marine, -/obj/item/weapon/gun/rifle/m41a, -/obj/item/ammo_magazine/rifle/extended, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) +"mAd" = ( +/obj/structure/inflatable, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "mAK" = ( /obj/item/weapon/ice_axe/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"mAO" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"mAQ" = ( -/obj/structure/morgue, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"mAX" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/central) -"mBc" = ( -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) +"mAS" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) "mBf" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_4" }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"mBh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/assembly/timer, -/obj/item/attachable/flashlight{ - pixel_x = -2; - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) "mBk" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"mBG" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"mBK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "mBM" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -2; @@ -13476,16 +14060,6 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"mBN" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"mCa" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "mCe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -13507,6 +14081,9 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"mCu" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "mCQ" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 1; @@ -13515,15 +14092,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"mCS" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "mCV" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -13531,18 +14099,49 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"mCX" = ( -/turf/open/floor/plating/plating_catwalk/shiva, +"mDb" = ( +/obj/structure/platform/strata{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"mDK" = ( -/obj/structure/machinery/light/double, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, +"mDk" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/obj/structure/barricade/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"mDl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) +"mDG" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"mDO" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"mEe" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "mEw" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"mEB" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "mEG" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/snow/layer0, @@ -13557,22 +14156,28 @@ }, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/bar) +"mEU" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"mEW" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) "mFo" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mFx" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/exterior/cp_lz2) -"mFy" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +"mGr" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "mGI" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -13581,10 +14186,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"mGZ" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) "mHn" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz2_southeast) @@ -13594,9 +14195,13 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"mHD" = ( -/turf/open/floor/shiva, -/area/shiva/interior/caves/cp_camp) +"mHK" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) "mHP" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -13609,58 +14214,38 @@ /obj/structure/computerframe, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"mId" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" +"mHY" = ( +/obj/structure/platform/strata{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"mIe" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"mIm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"mIw" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "mIx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/research_hab) -"mIH" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) "mIL" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"mIO" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/telecomm/lz1_biceps) -"mIW" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) -"mJe" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"mIZ" = ( +/obj/structure/surface/table, +/obj/item/device/binoculars/range{ + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"mJg" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/item/device/flashlight/lamp/green{ + pixel_x = -14; + pixel_y = 14 }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"mJn" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "mJx" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer1, @@ -13678,19 +14263,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/bar) -"mJO" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"mJP" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "telecomms relay power controller"; - start_charge = 10 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) "mKf" = ( /obj/structure/girder, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -13717,23 +14289,26 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"mLd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"mLA" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"mLv" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"mLE" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"mLx" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"mLL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"mLN" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "mLT" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -13748,35 +14323,40 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"mMI" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "mMK" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"mNk" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/n_admin) "mNs" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"mNN" = ( -/obj/structure/surface/table, -/obj/item/storage/surgical_tray, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"mNS" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) +"mNA" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"mOm" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "mOv" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/lz1_valley) +"mOz" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"mOM" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"mOR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "mOY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/shiva, @@ -13785,19 +14365,45 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"mQA" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva/wred/northeast, +"mPw" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"mQM" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"mQZ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/multi_tiles/southeast, +"mPA" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) +"mPU" = ( +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"mQy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"mQE" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "mRc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -13811,6 +14417,10 @@ /obj/structure/surface/rack, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"mRk" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "mRo" = ( /obj/structure/platform/strata{ dir = 1 @@ -13821,31 +14431,29 @@ /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"mRx" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"mRJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" +"mRL" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-east" }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"mRO" = ( -/obj/structure/stairs/perspective/ice{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"mSf" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/research_caves) -"mRV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/exterior/cp_colony_grounds) +"mSj" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) "mSv" = ( /obj/item/tool/shovel/spade{ pixel_x = -3; @@ -13853,32 +14461,21 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mTn" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"mTt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"mUg" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, /obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"mTO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"mUw" = ( -/obj/structure/bed/chair{ - dir = 1 + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"mUr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) "mUB" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -13891,6 +14488,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"mUD" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "mUF" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -13898,18 +14500,15 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"mVe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"mVo" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/turf/open/floor/shiva/bluefull/west, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) -"mVn" = ( -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) "mVY" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -13920,9 +14519,26 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"mXw" = ( -/turf/open/floor/shiva/blue/east, -/area/shiva/interior/colony/n_admin) +"mVZ" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"mWb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"mWX" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) +"mWZ" = ( +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"mXu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platebot, +/area/shiva/interior/colony/research_hab) "mXz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -13933,6 +14549,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"mXD" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"mXO" = ( +/obj/structure/largecrate/random/mini/wooden{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "mXS" = ( /obj/structure/machinery/newscaster/security_unit, /turf/closed/wall/shiva/prefabricated, @@ -13941,11 +14567,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"mYq" = ( -/obj/structure/closet/crate, -/obj/item/tool/shovel/snow, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) +"mYi" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/garage) "mYK" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -13956,22 +14580,24 @@ /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/shiva/interior/bar) +"nag" = ( +/obj/structure/machinery/cell_charger, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "naN" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"naQ" = ( +/obj/structure/prop/invuln/ice_prefab/standalone, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "naR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"nba" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "nbk" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -13980,36 +14606,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"nbq" = ( -/obj/structure/computerframe{ - pixel_y = 24 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) -"nbF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/blue/east, -/area/shiva/interior/colony/n_admin) -"ncf" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"ncl" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "ncB" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -14018,22 +14614,13 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/warehouse) -"ncV" = ( -/turf/open/floor/shiva/greenfull/west, -/area/shiva/interior/colony/n_admin) -"ndi" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 15; - pixel_y = -3 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"ndI" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"ndu" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/wood{ + amount = 15 }, -/turf/open/floor/shiva/red/west, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "ndJ" = ( /obj/structure/flora/bush/snow{ @@ -14041,16 +14628,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ndN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/desertdam/decals/road_stop{ - icon_state = "road_edge_decal5"; - pixel_x = -14 - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) "nej" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; @@ -14065,11 +14642,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"neY" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) +"neR" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "neZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -14080,61 +14656,46 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"nfQ" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" +"nfo" = ( +/obj/structure/girder/displaced, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"nfA" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Morgue" }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"ngf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"ngo" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/central) +"nfD" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "ngz" = ( /obj/item/tool/wrench, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) -"ngB" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/north, +"nhL" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"nho" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"nip" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ +"nif" = ( +/obj/structure/machinery/firealarm{ dir = 4; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 10; - pixel_y = -5 + pixel_x = 24 }, -/turf/open/floor/shiva/yellowfull/west, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) -"nit" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/caves/cp_camp) -"niv" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"nig" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" + }, +/obj/item/storage/firstaid/fire, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "niL" = ( /obj/structure/platform/strata{ dir = 8 @@ -14147,34 +14708,29 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"njm" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"nkc" = ( -/obj/structure/machinery/iv_drip, +"njt" = ( /obj/structure/machinery/light/double{ - dir = 4; + dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"nkd" = ( -/obj/structure/bed/chair, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"nkK" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"nkZ" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/central) +"njD" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"njL" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"nkW" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "nlx" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -14185,18 +14741,19 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"nlT" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 +"nlL" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"nmF" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"nmn" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "nmT" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue, @@ -14209,17 +14766,13 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"nnT" = ( -/obj/structure/flora/tree/dead/tree_5, +"nny" = ( +/obj/item/stack/snow{ + pixel_x = -7 + }, +/obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"nnY" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "noa" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" @@ -14229,15 +14782,15 @@ "noi" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/n_admin) -"nov" = ( -/obj/structure/filingcabinet, +"noB" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) +"noS" = ( /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"noM" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/colony/medseceng) "noV" = ( /obj/item/tool/shovel/spade{ layer = 2.99; @@ -14246,65 +14799,19 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"noW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "npi" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) -"npm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"npn" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"npr" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/storage/box/engineer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"npE" = ( -/obj/structure/machinery/light/double, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) -"npG" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 +"nql" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/central) -"npH" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"npQ" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"nqw" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) -"nqC" = ( -/obj/item/stack/cable_coil/cut, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) +/area/shiva/interior/colony/medseceng) "nrr" = ( /obj/structure/surface/table, /obj/structure/noticeboard{ @@ -14320,21 +14827,27 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"nsa" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"nsx" = ( -/obj/item/paper/research_notes/bad{ - pixel_x = 11; - pixel_y = 4 +"nsb" = ( +/obj/structure/machinery/vending/cola/research, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"nsT" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"ntc" = ( -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_lz2) +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"ntc" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_lz2) +"ntt" = ( +/obj/structure/surface/table, +/obj/item/storage/surgical_tray, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "ntJ" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) @@ -14356,67 +14869,58 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"nuD" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) +"nuE" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_colony_grounds) "nuY" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"nuZ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +"nvl" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"nvg" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"nwT" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/shiva/interior/colony/medseceng) +"nwi" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "telecomms relay power controller" }, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"nws" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "nxi" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"nxs" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"nxz" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"nxB" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"nxJ" = ( -/obj/structure/platform/strata{ - dir = 8 +"nxw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/obj/structure/platform/strata{ - dir = 1 +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"nxx" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) -"nyU" = ( -/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"nxG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/n_admin) +"nxO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "nzf" = ( /obj/structure/surface/table, /obj/structure/noticeboard{ @@ -14436,6 +14940,15 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"nzn" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"nzH" = ( +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "nzR" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/snow/layer3, @@ -14444,10 +14957,24 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"nAT" = ( +"nAz" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" + }, +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) +"nBa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/feathertrilby{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"nBm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/warehouse/caves) "nBo" = ( /obj/structure/largecrate/random, /obj/item/device/flashlight{ @@ -14456,12 +14983,20 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"nBq" = ( -/turf/open/floor/shiva/greencorners/east, -/area/shiva/interior/colony/botany) -"nCs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/floor3, +"nBM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"nBZ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"nCw" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/interior/aux_power) +"nCx" = ( +/obj/structure/closet/coffin, +/turf/open/floor/plating, /area/shiva/interior/colony/central) "nCK" = ( /obj/item/shard{ @@ -14470,68 +15005,55 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"nCR" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"nDd" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/deck) +"nDs" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"nDt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/medseceng) "nDv" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"nDD" = ( -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/structure/barricade/metal{ - layer = 3 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"nDH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"nDS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/aerodrome) -"nDZ" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/deck) -"nEj" = ( -/obj/structure/inflatable/popped, +"nDT" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/aux_power) +"nEC" = ( +/obj/item/device/flashlight, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"nEW" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_x = -2; - pixel_y = 5 +"nFI" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"nFa" = ( -/obj/structure/bedsheetbin{ - pixel_y = 9 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"nGm" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"nGD" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"nGM" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) "nGT" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"nHd" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +"nHo" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/n_admin) "nHH" = ( /obj/structure/surface/table, /obj/item/storage/donut_box{ @@ -14539,62 +15061,51 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nHR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"nHW" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"nIj" = ( +"nHS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/item/toy/deck{ - pixel_x = -5; - pixel_y = 5 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"nIb" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"nIv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"nID" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "nIN" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, /turf/open/floor/wood, /area/shiva/interior/bar) -"nIP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +"nJx" = ( +/obj/item/weapon/gun/pistol/holdout, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "nJD" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"nJU" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"nJZ" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/botany) +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"nJX" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/under/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "nKc" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 1; @@ -14602,6 +15113,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"nKC" = ( +/obj/item/tool/weldingtool, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "nKD" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = -7; @@ -14612,24 +15127,13 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"nKI" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"nKM" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"nLf" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/warehouse/caves) -"nLQ" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/garage) +"nLP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "nMk" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp{ @@ -14637,9 +15141,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nMI" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) "nMR" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -14664,39 +15165,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"nNf" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) -"nNq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"nNB" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, +"nNy" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"nNF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/chapel/east, -/area/shiva/interior/colony/central) -"nNT" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +/area/shiva/interior/garage) "nOd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/s_admin) @@ -14706,15 +15178,16 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"nOM" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ +"nOQ" = ( +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"nPa" = ( +/obj/structure/machinery/light/double{ dir = 4; - pixel_x = -24 + pixel_y = -5 }, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "nPb" = ( /obj/structure/prop/ice_colony/soil_net, /obj/structure/platform/strata{ @@ -14722,20 +15195,20 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"nPm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"nPD" = ( +"nPq" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shiva/exterior/junkyard/fortbiceps) +"nPJ" = ( /obj/structure/surface/table, -/obj/item/paper/research_notes/grant, -/obj/item/paper/research_notes/decent{ - pixel_x = 4; - pixel_y = 6 +/obj/item/clothing/gloves/black{ + pixel_y = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/obj/item/device/flashlight{ + pixel_x = -3; + pixel_y = -13 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "nPW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -14745,65 +15218,42 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"nQy" = ( -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) -"nRk" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"nRA" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/central) -"nRC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva/wredcorners/north, -/area/shiva/interior/colony/medseceng) -"nRD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/medseceng) -"nSA" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, +"nRe" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"nSG" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"nRg" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/botany) "nSO" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) +"nTq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"nTs" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "nTu" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"nTI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +"nTY" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/southeast, +/area/shiva/interior/valley_huts/disposals) "nUa" = ( /obj/structure/bed/chair{ dir = 8 @@ -14814,43 +15264,51 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"nVi" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"nVu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +"nUH" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/turf/open/floor/plating, -/area/shiva/exterior/junkyard) -"nVy" = ( /turf/open/floor/shiva/green/northeast, /area/shiva/interior/colony/botany) -"nVP" = ( -/obj/structure/bed/chair{ - dir = 4 +"nVh" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"nVi" = ( +/obj/structure/largecrate/random/mini/chest/b, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"nVY" = ( -/obj/structure/bed/chair/comfy/blue{ +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"nVv" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"nWo" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) -"nWq" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/area/shiva/interior/colony/s_admin) +"nVC" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 }, -/turf/open/floor/shiva/redfull/west, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/research_caves) +"nVZ" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/shiva/exterior/telecomm/lz2_northeast) +"nWa" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "nWI" = ( /obj/structure/flora/bush/snow{ @@ -14858,32 +15316,40 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"nXY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"nWR" = ( +/obj/structure/machinery/chem_master/condimaster, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"nYv" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/area/shiva/interior/bar) +"nXc" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"nXX" = ( +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) +"nYb" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"nYu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) +"nYG" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"nYU" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "nZA" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/warehouse/caves) -"oaF" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "oaO" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/plating, @@ -14896,6 +15362,10 @@ /obj/item/device/flashlight, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"obl" = ( +/obj/item/tool/screwdriver, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "obH" = ( /obj/item/device/camera{ pixel_x = 6; @@ -14904,10 +15374,6 @@ /obj/structure/surface/table, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"obT" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) "ocb" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" @@ -14936,6 +15402,12 @@ }, /turf/open/floor/shiva, /area/shiva/interior/bar) +"ocN" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"odd" = ( +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) "odg" = ( /obj/item/tool/weldingtool, /turf/open/auto_turf/snow/layer1, @@ -14943,71 +15415,43 @@ "odz" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/lz2_habs) -"odJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"oem" = ( -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"oeP" = ( -/obj/structure/surface/table, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"ofh" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"ofl" = ( -/obj/structure/platform/strata{ - dir = 1 +"odT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"oem" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) -"ofq" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/colony/central) +"oeK" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"ofj" = ( +/obj/structure/toilet, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"ofl" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "ofw" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) -"ofC" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"ofQ" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "ogu" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 1 }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"ogC" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/effect/spawner/random/attachment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"ogJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"ogL" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/exterior/cp_lz2) "ogP" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -15018,134 +15462,86 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ogQ" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) +"ohw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 + }, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) "ohE" = ( /obj/item/clipboard, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"ohG" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/human/burger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"ohK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "oig" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) +"oit" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "oiH" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"oiI" = ( +/obj/item/lightstick/red/variant/planted, +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/aerodrome) +"oiJ" = ( +/obj/structure/barricade/snow{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/fortbiceps) "oiX" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"oiY" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"ojd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 9 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"ojg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"ojm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) -"ojL" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) "ojU" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"okx" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"olG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) -"olS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) -"olZ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/yellow/north, +"okK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) +"olh" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/central) +"olJ" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"omf" = ( +/turf/closed/wall/shiva/prefabricated/orange, +/area/shiva/interior/caves/research_caves) "onc" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"oni" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) "onl" = ( /obj/structure/surface/table, /obj/item/evidencebag, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"onq" = ( -/obj/item/tool/mop{ - desc = "Unlock the power of Mop-Fu!"; - force = 35; - pixel_x = -12; - pixel_y = 24 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +"onw" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ood" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/valley) @@ -15153,33 +15549,37 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) +"ooE" = ( +/obj/structure/barricade/snow{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard/fortbiceps) +"ooL" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"ooO" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "opa" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) -"opr" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/bed/chair/comfy/orange{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"opp" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/colony/central) "oqf" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"oqn" = ( -/obj/structure/surface/table, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) "oqy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -15196,16 +15596,9 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"oqK" = ( -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/aerodrome) -"oqN" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"oqO" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "oqX" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 4; @@ -15213,46 +15606,16 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"orl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "ors" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"orG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"orw" = ( +/obj/structure/barricade/metal{ + health = 230 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"orX" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"osd" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"oso" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/glasses/sunglasses{ - desc = "Polarized bioneural eyewear, designed to augment your vision."; - icon_state = "jensenshades"; - name = "augmented shades" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/bar) +/area/shiva/interior/colony/botany) "osE" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/research_caves) @@ -15260,34 +15623,21 @@ /obj/structure/prop/ice_colony/dense/ice_tray, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"otg" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"otk" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "nlz_shutters"; - pixel_y = 28 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +"ota" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/research_hab) "otJ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"otU" = ( +"ouI" = ( /obj/structure/kitchenspike, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"ouq" = ( -/obj/item/frame/table, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"ouw" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "ouS" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 15; @@ -15298,10 +15648,6 @@ "ovc" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/medseceng) -"ovx" = ( -/obj/item/bodybag, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "ovI" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer3, @@ -15310,9 +15656,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"owh" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "oww" = ( /obj/item/frame/rack, /turf/open/asphalt/cement, @@ -15323,56 +15666,58 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"owR" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) "owW" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"oxF" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "nlz_shutters"; - pixel_y = 28 +"oxr" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "oxP" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"oxY" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) "oyw" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"oyJ" = ( -/obj/item/evidencebag, -/obj/item/trash/pistachios, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"ozh" = ( -/obj/structure/flora/tree/dead/tree_4, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"ozo" = ( -/obj/structure/largecrate/random/mini/wooden{ - pixel_y = 6 +"ozl" = ( +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/structure/barricade/metal{ + layer = 3 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"oAf" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/area/shiva/exterior/lz2_fortress) +"ozQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) +"ozU" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"oAc" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) "oAo" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -15380,43 +15725,36 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"oAt" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"oAX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" }, /turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"oBC" = ( -/turf/open/floor/chapel, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/s_admin) +"oBp" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) +"oBt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "oBV" = ( /obj/structure/largecrate, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"oCa" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/delivery, -/area/shiva/interior/telecomm/lz1_biceps) -"oCl" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "road_edge_decal5"; - pixel_y = -17 - }, -/turf/closed/wall/shiva/prefabricated/orange, -/area/shiva/interior/colony/research_hab) +"oCy" = ( +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "oCG" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/aerodrome) -"oCN" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) -"oDg" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +"oCQ" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "oDi" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -15427,6 +15765,18 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"oDw" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"oDA" = ( +/obj/item/weapon/ice_axe/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "oDH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -15453,6 +15803,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"oFb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"oFf" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "oFl" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -15464,23 +15828,23 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/medseceng) -"oGz" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"oGv" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"oGT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Anti-Freeze Lounge" +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"oGC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"oHb" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"oGY" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) "oHf" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, @@ -15491,27 +15855,41 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"oIk" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/structure/machinery/light/double, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"oIq" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood{ - layer = 3 +"oHL" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"oHY" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"oIH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"oJt" = ( -/turf/closed/wall/shiva/prefabricated/orange, -/area/shiva/interior/caves/research_caves) -"oKb" = ( -/turf/open/floor/shiva/yellowcorners/west, +/obj/item/tool/surgery/scalpel{ + pixel_x = 16 + }, +/obj/item/tool/surgery/hemostat{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"oIL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -32 + }, +/obj/structure/bed/chair, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) +"oJY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) "oKc" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -15525,46 +15903,43 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"oKs" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/colony/research_hab) -"oKv" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 +"oKM" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/assistantformal, +/turf/open/floor/wood, +/area/shiva/interior/colony/botany) +"oLg" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) -"oLo" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "oLu" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) -"oLx" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 - }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) -"oMg" = ( -/obj/structure/bed/chair, +"oLA" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"oLK" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"oMC" = ( -/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"oMu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/valley) +"oMz" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/under/marine/veteran/mercenary, +/obj/item/clothing/suit/armor/vest/security, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/botany) "oMG" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -15578,29 +15953,23 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"oML" = ( -/turf/open/floor/darkgreen2/northeast, -/area/shiva/interior/colony/botany) -"oMY" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +"oNa" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/medseceng) -"oNx" = ( -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, -/area/shiva/interior/aerodrome) "oNz" = ( /obj/item/stack/rods, /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/interior/warehouse) +"oNI" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "oNQ" = ( /obj/structure/barricade/snow{ dir = 1 @@ -15610,61 +15979,91 @@ "oNZ" = ( /turf/open/floor/wood, /area/shiva/interior/bar) -"oOs" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "oOw" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) +"oOC" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/caves/research_caves) "oOV" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"oPf" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/shiva, -/area/shiva/interior/bar) -"oPg" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 +"oPN" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"oQa" = ( +/obj/effect/spider/stickyweb, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"oQf" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) +"oQi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Dormitories Canteen"; + req_access_txt = "100" }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"oPk" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "oQl" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/valley) +"oQp" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"oQq" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) +"oQC" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"oQE" = ( +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"oQP" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"oQS" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "oRH" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"oRP" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"oSb" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/aerodrome) -"oSi" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"oRX" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 }, -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) -"oSZ" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva/wred/east, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"oSN" = ( +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "oTd" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -15672,78 +16071,53 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"oTW" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) "oUu" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"oUw" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +"oUB" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 7 }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"oUA" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"oUR" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"oUV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"oWx" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"oVd" = ( -/obj/item/paper/research_notes/good, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"oVN" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"oWn" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_y = 5 - }, -/obj/item/paper{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/tool/pen/red{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/paper{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"oWs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard/cp_bar) "oWG" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"oXD" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +"oWH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"oWS" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"oWT" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) +"oXd" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"oXA" = ( +/obj/item/storage/pouch/flare/full, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) "oXM" = ( /obj/structure/machinery/space_heater, /obj/item/clothing/glasses/welding{ @@ -15752,10 +16126,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"oXQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) "oXU" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -15767,15 +16137,6 @@ "oYw" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/medseceng) -"oYN" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "oYX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -15786,46 +16147,13 @@ /obj/structure/coatrack, /turf/open/floor/shiva, /area/shiva/interior/bar) -"oZX" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"paj" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/bar) -"pav" = ( -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/medseceng) -"paL" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"paN" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"pbB" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"pbX" = ( +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_s_research) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, +/area/shiva/interior/aerodrome) "pbY" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -15835,13 +16163,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) -"pcp" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) +"pcz" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "pcC" = ( /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, @@ -15854,6 +16179,13 @@ "pcY" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/cp_camp) +"pdb" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"pde" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "pdf" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -15865,30 +16197,20 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"ped" = ( -/obj/structure/surface/table, -/obj/item/tool/wirecutters/clippers{ - pixel_y = 8 - }, +"pec" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"pet" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/colony/medseceng) "pey" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) -"pfb" = ( -/obj/structure/surface/table, -/obj/item/circuitboard{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"pfi" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/n_admin) "pfp" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -15904,16 +16226,6 @@ /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/wood, /area/shiva/interior/bar) -"pfT" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "pgu" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/telecomm/lz2_southeast) @@ -15923,36 +16235,25 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"phA" = ( -/obj/structure/machinery/m56d_hmg{ - dir = 4 +"pht" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"pij" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"phN" = ( -/obj/structure/closet/radiation, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) -"piL" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +"pik" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) -"piS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"piT" = ( -/obj/structure/inflatable/popped, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "pji" = ( /obj/item/paper_bin{ pixel_y = 7 @@ -15960,128 +16261,101 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"pju" = ( -/obj/structure/machinery/smartfridge{ - density = 0; - pixel_y = 22 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"pjB" = ( +"pkn" = ( /obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"pjY" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 + dir = 8; + pixel_y = -5 }, -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/colony_floodlight{ - layer = 2.9; - pixel_y = 7 +/obj/structure/machinery/alarm{ + pixel_y = 24 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) -"pkc" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"pkp" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/shiva/interior/colony/medseceng) +"pks" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) +"pkF" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "pkT" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"plt" = ( -/turf/open/floor/darkgreen2/northwest, +"pkU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Anti-Freeze Lounge" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"pkX" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) -"plv" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/auto_turf/ice/layer0, -/area/shiva/exterior/cp_s_research) "plM" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/junkyard) -"plO" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"pmg" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/medseceng) -"pmu" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) -"pmO" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) -"pnQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"poj" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"pop" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 +"pmT" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"poW" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"pog" = ( /obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva/wred/north, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) +"poi" = ( +/obj/structure/closet/radiation, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"pow" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"poE" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/exterior/junkyard) "ppb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"ppx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -32 - }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"ppX" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +"ppR" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) "pqe" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/bar) "pqf" = ( -/turf/open/floor/plating, -/area/shiva/interior/valley_huts/disposals) +/obj/structure/surface/table, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"pqg" = ( +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = -5; + pixel_y = -9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "pqj" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) @@ -16091,46 +16365,33 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"pqx" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"pqN" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating, -/area/shiva/exterior/telecomm/lz2_northeast) -"prc" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"prq" = ( -/obj/structure/closet/firecloset, +"pqy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, /turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"prE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/greenfull/west, -/area/shiva/interior/colony/n_admin) "psl" = ( /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) "psw" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -16; - pixel_y = -3 +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) +"psI" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"psO" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) +/obj/item/paper_bin, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"pta" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "pti" = ( /obj/item/tool/weldpack{ pixel_x = 6; @@ -16153,32 +16414,30 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"ptX" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/deck) "pue" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_y = 8 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"puI" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) "puZ" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) "pvv" = ( /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"pvM" = ( -/obj/item/lightstick/red/spoke, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "pvU" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"pwo" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"pww" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "pwB" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 1 @@ -16198,72 +16457,28 @@ "pxA" = ( /turf/closed/wall/shiva/prefabricated/red, /area/shiva/interior/colony/research_hab) -"pxB" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"pxD" = ( -/obj/item/roller, -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) -"pxF" = ( +"pyd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"pyC" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"pyK" = ( /obj/item/lightstick/red/spoke/planted{ - layer = 3.1; + layer = 2.99; pixel_x = -13; - pixel_y = 25 - }, -/obj/structure/largecrate/random/case{ - pixel_y = 11 + pixel_y = 28 }, -/obj/structure/largecrate/random/mini/chest/b{ - pixel_x = -4; - pixel_y = -5 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"pyd" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/plating, -/area/shiva/exterior/telecomm/lz2_southeast) -"pyg" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"pys" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"pyz" = ( -/turf/open/floor/shiva/wredcorners/north, -/area/shiva/interior/colony/medseceng) -"pyK" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = -13; - pixel_y = 28 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "smokestack"; - pixel_y = 1 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "smokestack"; + pixel_y = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/oob) -"pyP" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/shiva/interior/colony/deck) -"pzb" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) "pzi" = ( /obj/item/newspaper, /turf/open/floor/wood, @@ -16272,61 +16487,59 @@ /obj/item/paper, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"pzo" = ( -/obj/item/newspaper, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"pzx" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) "pzJ" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_colony_grounds) -"pAX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/candy_corn{ - pixel_x = 7; - pixel_y = 5 +"pzM" = ( +/obj/structure/platform/strata{ + dir = 8 }, -/obj/item/clothing/head/fedora{ - pixel_x = -6; - pixel_y = 12 +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) +"pzR" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"pzY" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"pAP" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"pBu" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"pBB" = ( +/turf/open/floor/chapel/north, +/area/shiva/interior/colony/central) +"pBT" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"pCm" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellowcorners/north, -/area/shiva/interior/garage) -"pBw" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"pBB" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = -6 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) -"pBL" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/exterior/lz2_fortress) -"pCD" = ( -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "pCH" = ( /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"pCL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"pDn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/colony/research_hab) "pDr" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, @@ -16350,6 +16563,10 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"pEa" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "pEe" = ( /obj/structure/closet/bodybag, /obj/structure/machinery/light/double{ @@ -16358,6 +16575,21 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) +"pEl" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"pEn" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"pEu" = ( +/obj/structure/machinery/vending/cola/research, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "pEv" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ @@ -16373,36 +16605,46 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"pES" = ( +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) "pFg" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"pGm" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +"pGy" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) "pGL" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"pHX" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/botany) -"pIf" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ +"pGM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"pHo" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "pIK" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" @@ -16416,6 +16658,10 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"pJB" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/central) "pJM" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -16438,18 +16684,14 @@ /obj/item/ammo_magazine/rifle/boltaction, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"pKv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/shiva/floor3, +"pKp" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/northwest, /area/shiva/interior/colony/botany) +"pKx" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) "pKF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -16461,42 +16703,79 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"pKH" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"pKQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/plating, +/area/shiva/interior/bar) +"pKX" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/deck) "pLf" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_s_research) -"pLi" = ( -/obj/item/trash/candy, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) "pLD" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/structure/cargo_container/horizontal/blue/top{ - density = 0; - pixel_y = 12 +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"pLG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + dir = 8; + pixel_y = 6 }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -3; - pixel_y = 2 +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"pLN" = ( +/obj/structure/surface/rack, +/obj/item/tool/lighter/zippo, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"pLO" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) "pLS" = ( /obj/structure/surface/rack, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"pMm" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"pMI" = ( -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/central) -"pML" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"pLX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/wy_mre, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"pMd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) +"pMn" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + pixel_y = 4 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/purple/north, +/area/shiva/interior/lz2_habs) +"pMy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) "pMV" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -16506,18 +16785,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"pMZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "pNo" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11 @@ -16531,35 +16798,44 @@ /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"pNw" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "pNy" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/colonist, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"pNS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"pOb" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) +"pOd" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"pOH" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"pOj" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"pOV" = ( +/obj/structure/machinery/m56d_hmg{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"pOW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "pPp" = ( -/turf/open/floor/darkbrowncorners2, -/area/shiva/interior/valley_huts/disposals) +/obj/structure/platform/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "pPt" = ( /obj/structure/surface/table, /obj/item/frame/firstaid_arm_assembly{ @@ -16567,65 +16843,31 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"pPx" = ( -/obj/item/stack/snow{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/stack/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"pPF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "pPK" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"pQC" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/machinery/alarm{ +"pQf" = ( +/obj/structure/barricade/sandbags/wired{ dir = 8; - pixel_x = 24 + icon_state = "sandbag_0" }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "pQE" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/valley_huts) -"pQM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"pQV" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"pRd" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"pRt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"pQG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"pRq" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "pRH" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 5; @@ -16637,16 +16879,37 @@ /obj/item/stack/cable_coil/white, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"pSq" = ( -/obj/effect/landmark/survivor_spawner, +"pSl" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/clothing/head/fez{ + pixel_y = 6 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"pTd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/central) +"pSm" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"pSS" = ( +/obj/item/tool/crowbar, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"pST" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"pSV" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "pTp" = ( /obj/structure/surface/rack, /obj/item/weapon/ice_axe/green{ @@ -16658,24 +16921,28 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"pUi" = ( -/obj/item/weapon/ice_axe{ - pixel_y = 7 +"pTw" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Aurora Medical Clinic Storage"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/surface/table, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"pUj" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "pUp" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"pUK" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva/redfull/west, +"pUV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) -"pVw" = ( -/obj/structure/closet/secure_closet/security, +"pVU" = ( +/obj/structure/bed, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "pWf" = ( @@ -16688,46 +16955,24 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) +"pWn" = ( +/obj/item/weapon/ice_axe{ + pixel_y = 7 + }, +/obj/structure/surface/table, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) "pWw" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/colonist, /obj/effect/landmark/good_item, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"pWD" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"pWE" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"pWG" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"pWT" = ( +"pXd" = ( /obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/aux_power) -"pXF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/shiva/north, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) -"pXH" = ( -/obj/structure/barricade/metal{ - dir = 1; - health = 210 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "pXU" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -16; @@ -16735,26 +16980,9 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"pYH" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"pZf" = ( -/obj/item/tool/wet_sign, +"pYI" = ( /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"pZj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Underground Morgue" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/s_admin) "pZB" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_x = 3 @@ -16765,27 +16993,33 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"pZR" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) +"pZH" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "pZV" = ( /obj/effect/spider/cocoon, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"qak" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/medseceng) +"qat" = ( +/obj/structure/platform_decoration/strata{ + dir = 4 + }, +/obj/structure/platform_decoration/strata{ + dir = 8 + }, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "qaF" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"qaG" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent5"; - pixel_x = 16; - pixel_y = 10 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) "qaI" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" @@ -16802,60 +17036,106 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"qbj" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"qbF" = ( -/turf/open/auto_turf/ice/layer0, -/area/shiva/exterior/junkyard/cp_bar) -"qbG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"qbP" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/aerodrome) -"qcT" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/interior/telecomm/lz1_biceps) -"qdn" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"qbs" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/obj/item/clipboard, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"qdO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 7 +/area/shiva/exterior/lz2_fortress) +"qbE" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 10 }, -/obj/item/tool/pen/blue, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"qep" = ( -/turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_colony_grounds) -"qev" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"qeG" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"qff" = ( -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) +"qbF" = ( +/turf/open/auto_turf/ice/layer0, +/area/shiva/exterior/junkyard/cp_bar) +"qch" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/obj/structure/largecrate/random/case{ + pixel_y = 11 + }, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"qcz" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) +"qcA" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"qcT" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/interior/telecomm/lz1_biceps) +"qdu" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qdT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) +"qec" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"qep" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_colony_grounds) +"qeJ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"qeN" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 + }, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qeU" = ( +/obj/item/tool/shovel/snow, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + layer = 3.1; + pixel_x = -8; + pixel_y = 23 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "qfh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -16865,6 +17145,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"qfY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "qgd" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer2, @@ -16876,24 +17160,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"qgq" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"qgu" = ( -/turf/open/floor/shiva/yellowcorners, -/area/shiva/interior/colony/medseceng) -"qgC" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/exterior/cp_colony_grounds) -"qgP" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"qgT" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) "qhm" = ( /obj/structure/barricade/metal{ dir = 4 @@ -16903,57 +17169,30 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"qhr" = ( -/obj/effect/decal/warning_stripes{ - pixel_y = 32 - }, +"qiT" = ( +/obj/structure/flora/pottedplant, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"qhs" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"qht" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"qii" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/obj/item/paper/research_notes, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) -"qin" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"qjm" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"qjW" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) "qjY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"qki" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/window/reinforced/tinted{ +"qkf" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) +"qky" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "qkC" = ( /turf/open/shuttle/elevator, /area/shiva/interior/aerodrome) @@ -16984,11 +17223,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"qli" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/garage) "qlk" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -16996,31 +17230,27 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"qlw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, +"qln" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"qmr" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) +"qmn" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_y = 9 + }, +/obj/item/paper{ + pixel_x = -12; + pixel_y = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "qmv" = ( /obj/item/stack/flag/red{ pixel_x = 6 }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"qne" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Storeroom" - }, -/turf/open/floor/dark2, -/area/shiva/interior/telecomm/lz1_biceps) "qnu" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -17028,9 +17258,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"qnx" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) "qny" = ( /obj/structure/surface/table, /obj/item/folder/black{ @@ -17045,30 +17272,32 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qnY" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +"qnA" = ( +/turf/closed/wall/shiva/prefabricated/blue, +/area/shiva/exterior/junkyard/cp_bar) +"qnD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"qnP" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "qof" = ( /obj/item/stack/cable_coil/blue, /obj/structure/airlock_assembly, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"qoG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ - pixel_y = 26 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"qoj" = ( +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"qom" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "qoU" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, @@ -17079,12 +17308,10 @@ /obj/item/storage/firstaid/o2, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"qpt" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) +"qpc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) "qpu" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -17092,103 +17319,101 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"qqc" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) -"qqI" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"qsc" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"qsP" = ( -/obj/item/frame/bucket_sensor, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +"qri" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "qta" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"qtS" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/colony/medseceng) -"qup" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"quL" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/shiva/exterior/junkyard) -"qvv" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) +"qum" = ( +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) +"qvn" = ( +/obj/structure/surface/table, +/obj/item/device/encryptionkey, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"qvF" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes/grant, +/obj/item/paper/research_notes/decent{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "qvY" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"qvZ" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) +"qwj" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"qwk" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "qwp" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"qwz" = ( +"qwt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"qwB" = ( /obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"qwL" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" +/obj/effect/spawner/random/tool{ + pixel_y = 2 }, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/wred/southwest, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qwO" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) -"qxs" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) -"qxC" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 +"qxn" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"qxo" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/cp_lz2) "qxQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"qyT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +"qyY" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "qza" = ( /obj/item/device/flashlight/flare, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"qzj" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) "qzv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "garage_ice_2"; @@ -17196,37 +17421,27 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"qzS" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"qAs" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"qzB" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"qBo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/flour{ - pixel_x = -3; - pixel_y = 7 +/area/shiva/exterior/lz2_fortress) +"qzG" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"qBu" = ( -/obj/structure/closet/toolcloset, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"qBL" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/floor3, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) +"qzI" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"qAx" = ( +/turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) "qBM" = ( /obj/structure/platform/strata{ @@ -17235,13 +17450,13 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"qCm" = ( +/obj/structure/girder/reinforced, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "qCn" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) -"qCq" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkbrown2/southeast, -/area/shiva/interior/valley_huts/disposals) "qCr" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" @@ -17256,25 +17471,18 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"qCw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkbrown2/northwest, +/area/shiva/interior/valley_huts/disposals) "qDg" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/plating, /area/shiva/interior/bar) -"qDA" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Anti-Freeze Lounge" - }, -/turf/open/floor/plating, -/area/shiva/exterior/cp_s_research) -"qDC" = ( -/obj/structure/closet/coffin, -/turf/open/floor/plating, -/area/shiva/interior/colony/central) -"qDH" = ( -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/aerodrome) "qDJ" = ( /obj/structure/morgue{ dir = 8 @@ -17285,85 +17493,122 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"qDQ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +"qDM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/shiva/prefabricated/blue, +/area/shiva/interior/colony/research_hab) +"qDN" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "pink" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "qDT" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) +"qDV" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) "qEB" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"qEP" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"qFj" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"qFr" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) "qFx" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz1_north) -"qFL" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"qHE" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"qHK" = ( -/obj/structure/filingcabinet, +"qGe" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/botany) +"qGk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"qGN" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"qHt" = ( +/obj/effect/decal/warning_stripes{ + pixel_y = 32 + }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"qHB" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"qIa" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/valley) "qIr" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) -"qJn" = ( -/obj/item/shard{ - icon_state = "large" +"qIw" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 20 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"qJY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"qIz" = ( +/turf/open/floor/shiva/wredcorners/east, +/area/shiva/interior/colony/medseceng) +"qIS" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 }, /turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qKm" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"qKG" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"qKT" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) +"qLz" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "qLA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 8 }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"qLD" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"qLK" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) "qLO" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 1 @@ -17374,24 +17619,41 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"qMb" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) "qMc" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"qMd" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"qMN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "qMP" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"qMR" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "qNj" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"qNu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "qNB" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -17419,42 +17681,42 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"qOe" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/antag{ - pixel_y = 7 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"qOj" = ( +/obj/item/wrapping_paper, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) +"qOx" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "qOE" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, /obj/item/storage/firstaid/rad, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qOT" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) +"qOH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/deck) +"qOS" = ( +/obj/structure/inflatable/popped, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "qOZ" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"qPf" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +"qPc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "qPh" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, @@ -17465,16 +17727,6 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qPx" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/warehouse) -"qPS" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) "qRl" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, @@ -17496,12 +17748,25 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"qRY" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "qSa" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"qSz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/interior/caves/research_caves) "qSW" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -17519,119 +17784,116 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) +"qSY" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"qTv" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"qTR" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"qTV" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"qUi" = ( +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"qUU" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "qVo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/bicaridine, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"qVp" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"qWy" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/shiva/interior/colony/research_hab) +"qVt" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/warehouse/caves) +"qVR" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "qWL" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/toxin, /obj/item/storage/firstaid/toxin, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qWN" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/n_admin) -"qWO" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"qWQ" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) +"qXo" = ( +/obj/structure/platform_decoration/shiva/catwalk, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "qXS" = ( /turf/open/floor/shiva, /area/shiva/interior/bar) -"qYn" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"qYo" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) -"qYs" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, +"qYr" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_lz2) +"qYu" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"qYx" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 12; - pixel_y = 28 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/caves/cp_camp) -"qYy" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "pink" - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) -"qYH" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 2; - pixel_y = -1 - }, -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/aux_power) +/area/shiva/interior/colony/central) "qYP" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) -"qYW" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, +"qZm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"qZN" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"qZT" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"qZM" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "rad" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"ram" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"raP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "rbc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"rbs" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"rbw" = ( -/obj/structure/closet/firecloset, -/obj/item/explosive/grenade/high_explosive/pmc, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/research_hab) "rbA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -17639,14 +17901,28 @@ /obj/structure/barricade/metal, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) +"rbW" = ( +/obj/item/restraint/handcuffs, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "rcp" = ( /obj/item/storage/toolbox/mechanical/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) +"rcq" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "rcD" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"rcG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "rdh" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/interior/caves/s_lz2) @@ -17657,21 +17933,43 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"rdq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"rdz" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/weapon/gun/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"rdO" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/colony/central) "rdS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"reg" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, +"reG" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"reL" = ( -/turf/open/floor/shiva/radiator_tile, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"reH" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/kelotane/skillless{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"reU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "rfd" = ( /obj/effect/decal/cleanable/blood/oil, @@ -17681,101 +17979,112 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"rfs" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9; - pixel_y = 21 +"rfq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"rfr" = ( +/obj/item/shard{ + icon_state = "large" }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"rfT" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"rfO" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "rfU" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"rgf" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "rgy" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"rgz" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"rgA" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "rgI" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/fire, /obj/item/storage/firstaid/fire, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"rgL" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"rgQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"rgW" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"rhg" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"rho" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"rhv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) -"rhY" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) -"rii" = ( -/obj/item/wrapping_paper, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"rit" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/assistantformal, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) -"riD" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"riG" = ( -/obj/structure/machinery/light/double, -/obj/structure/bed/chair{ - dir = 1 +/area/shiva/interior/colony/research_hab) +"riu" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"riL" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"riS" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) -"riU" = ( -/obj/structure/desertdam/decals/road_stop, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "riV" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"riY" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 +"riX" = ( +/turf/open/floor/chapel, +/area/shiva/interior/colony/central) +"rjd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) +"rjx" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/botany) +"rjF" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "rkc" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, @@ -17784,82 +18093,67 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/garage) -"rli" = ( -/obj/structure/flora/tree/dead/tree_1, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"rlP" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 8 +"rkn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) -"rlU" = ( -/turf/open/floor/shiva/blue/west, -/area/shiva/interior/colony/n_admin) -"rlW" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"rma" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/botany) -"rmc" = ( -/obj/item/paper/research_notes/grant, /turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) -"rmG" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/tool/mop{ - pixel_x = -10 - }, -/turf/open/floor/shiva/floor3, +"rkw" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"rmV" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -8 - }, -/turf/open/auto_turf/snow/layer1, +"rkz" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"rkB" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/exterior/cp_colony_grounds) +"rli" = ( +/obj/structure/flora/tree/dead/tree_1, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"rlo" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"rno" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, +"rlO" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"rlV" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"rnr" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/shiva/interior/bar) +/area/shiva/interior/aux_power) +"rnA" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "rnB" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"rnN" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"rnW" = ( -/obj/structure/bed/chair{ - dir = 8 +"rnF" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"rob" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"rnV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"rof" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "rov" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -17868,61 +18162,39 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"row" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"roz" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"rqb" = ( -/obj/structure/machinery/autolathe/full, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"roB" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"rqM" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/research_hab) -"rrH" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"rrI" = ( -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/colony/central) -"rrQ" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/area/shiva/interior/valley_huts) +"roG" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"rpp" = ( +/obj/structure/machinery/sensortower{ + pixel_x = 6 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"rrX" = ( +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"rrq" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"rst" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"rsv" = ( -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"rsy" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"rsM" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/area/shiva/interior/garage) +"rsR" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "rti" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue{ @@ -17935,80 +18207,82 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"rtI" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/research_hab) "rtZ" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ruy" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +"rur" = ( +/obj/structure/surface/table, +/obj/item/clipboard{ + pixel_y = 6 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"rvx" = ( +/obj/structure/bed/chair, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"ruC" = ( -/turf/open/floor/plating, -/area/shiva/exterior/junkyard) +/area/shiva/interior/colony/s_admin) +"rvO" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"rvP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"rwj" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"rwE" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "rxd" = ( /obj/structure/bed/chair, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"rxj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +"rxr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "rxF" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"rzg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/reagent_scanner, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"rzo" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/purplefull/north, -/area/shiva/interior/colony/research_hab) -"rzq" = ( -/obj/structure/stairs/perspective/ice{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/warehouse/caves) -"rzv" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 10; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ +"rxM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) -"rzG" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/shiva/wredfull, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) +"rya" = ( +/obj/structure/flora/tree/dead/tree_1, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"rzw" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "rAq" = ( /obj/structure/bed/chair/office/light{ @@ -18019,6 +18293,18 @@ "rAH" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"rAM" = ( +/obj/item/tool/shovel/snow{ + pixel_y = 8 + }, +/obj/item/tool/shovel/snow, +/obj/structure/surface/rack, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"rAT" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) "rBk" = ( /obj/structure/platform/strata{ dir = 1 @@ -18028,12 +18314,6 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"rBw" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) "rBC" = ( /obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, @@ -18042,53 +18322,43 @@ "rBH" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/botany) -"rCj" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"rCp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"rCy" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"rCK" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva/wred/northwest, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"rCq" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"rCH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "rCO" = ( /obj/item/tool/wirecutters, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) +"rCW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "rCY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/yellow/east, +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"rDt" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"rDB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"rDR" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/shiva/multi_tiles/southeast, +"rDi" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "rEd" = ( /obj/structure/flora/bush/snow{ @@ -18096,10 +18366,19 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"rEf" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) "rEQ" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"rER" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "rEV" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) @@ -18109,100 +18388,148 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rEX" = ( -/turf/closed/wall/shiva/prefabricated/blue, -/area/shiva/exterior/valley) +"rFa" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"rFd" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"rFk" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"rFv" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "rFB" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"rGl" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/russianRed{ - pixel_x = 6; +"rGf" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"rGi" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"rGM" = ( +/obj/item/roller, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) +"rGU" = ( +/obj/structure/machinery/light/double{ + dir = 1; pixel_y = 9 }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 9 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"rGV" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = 5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"rHz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"rHL" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/botany) "rHO" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rHT" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"rJk" = ( -/obj/structure/closet/toolcloset, +"rId" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"rIw" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"rJx" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"rJA" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) "rJI" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) -"rKi" = ( -/obj/item/lightstick/red/variant, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) +"rKa" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "rKk" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/fortbiceps) -"rKp" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"rKZ" = ( -/obj/structure/platform/strata{ - dir = 1 +"rKn" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/structure/platform/strata{ - dir = 8 +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) +"rKu" = ( +/obj/item/tool/wrench, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"rLn" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"rLg" = ( -/obj/structure/bed/chair, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/area/shiva/exterior/lz2_fortress) "rLu" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"rLz" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) -"rLO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) +"rLM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "rMb" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -18214,26 +18541,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"rMm" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"rMF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor/darkgreen2/southeast, -/area/shiva/interior/colony/botany) -"rNf" = ( -/obj/structure/closet/radiation, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"rNt" = ( +"rMk" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva/wred/southeast, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) +"rMt" = ( +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) "rNO" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer2, @@ -18248,78 +18562,90 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"rOe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"rOy" = ( -/obj/structure/largecrate/random{ - anchored = 1; - pixel_x = 9; - pixel_y = -3 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 10; - pixel_y = 12 +"rOi" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "rOG" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Aurora Medical Clinic Scanning Unit" }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"rPm" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"rQg" = ( +"rOT" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"rQb" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shiva/exterior/junkyard/fortbiceps) +"rQD" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard) +"rQY" = ( /obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" + dir = 4; + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) -"rQJ" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/botany) -"rRx" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +"rRI" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "rRP" = ( /obj/structure/closet/crate, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rTf" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"rTL" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"rRY" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"rSF" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"rTa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"rTj" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/wood, +/area/shiva/interior/aerodrome) +"rTN" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"rUc" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = -13; + pixel_y = 28 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"rUy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "rUD" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ desc = "Shhhh, he's sleeping."; @@ -18332,83 +18658,129 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"rUW" = ( -/obj/structure/platform/strata, +"rUY" = ( /obj/structure/platform/strata{ - dir = 8 + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 4 }, /turf/open/gm/river, /area/shiva/interior/caves/research_caves) -"rVl" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"rVT" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/shiva/exterior/telecomm/lz1_north) +"rVb" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"rVh" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" + }, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"rVy" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"rWe" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"rWf" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "rWj" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_northeast) +"rWm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "rWt" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"rWx" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/valley) "rWz" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"rWU" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"rXg" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "rXn" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/shiva/interior/aerodrome) -"rXq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "rXt" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" }, /turf/open/floor/plating/icefloor, /area/shiva/exterior/junkyard/fortbiceps) +"rXy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "rXC" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"rXF" = ( -/obj/structure/surface/table, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"rYW" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 - }, +"rYk" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/exterior/lz2_fortress) +"rYV" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/botany) +"rYY" = ( +/obj/item/device/flashlight, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"rZg" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +/area/shiva/interior/aerodrome) "rZq" = ( /obj/structure/surface/table/reinforced/prison{ dir = 4; @@ -18424,49 +18796,16 @@ /obj/structure/machinery/optable, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"sao" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) +"rZQ" = ( +/turf/open/auto_turf/ice/layer0, +/area/shiva/exterior/cp_s_research) "sax" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/warehouse/caves) -"saT" = ( -/obj/structure/platform_decoration/shiva/catwalk, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"saU" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) -"sba" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) "sbg" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"sbh" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "sbj" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -18475,35 +18814,57 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"sbD" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassall_1" +"sbI" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"scS" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"sbM" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"sbW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) -"sda" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/botany) -"sdY" = ( +"scl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"scM" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"scT" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/west, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"sdo" = ( +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"sdI" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "sev" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"sex" = ( -/obj/item/shard, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) "seW" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "smokestack" @@ -18522,12 +18883,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"sgb" = ( -/turf/open/floor/shiva/bluecorners, -/area/shiva/interior/colony/central) -"sge" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/aux_power) "sgj" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/open/auto_turf/ice/layer1, @@ -18541,6 +18896,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/research_hab) +"sgI" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "sgS" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating, @@ -18555,25 +18918,19 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"shN" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"sii" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"sip" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/crayons{ + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"shS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"shX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/southwest, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) -"six" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "siD" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -18585,44 +18942,52 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"siF" = ( -/obj/structure/surface/table, -/obj/item/storage/box/pizza, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +"siJ" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) "siZ" = ( /turf/closed/wall/shiva/prefabricated/orange, /area/shiva/exterior/cp_s_research) -"sjb" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/garage) +"sje" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "sjh" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"sjw" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 +"sjt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"sjG" = ( -/obj/structure/platform/strata{ - dir = 8 +/area/shiva/interior/garage) +"sjz" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) -"sjU" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/corpsespawner/scientist, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins"; + pixel_y = 14 }, -/turf/open/floor/shiva/wred/northwest, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"sjZ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/item/tool/pen/blue{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) +"skb" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) "skl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer0, @@ -18640,103 +19005,99 @@ /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"sku" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +"skE" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"skx" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"skY" = ( -/obj/structure/surface/rack, -/obj/item/tool/lighter/zippo, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) +"skI" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"sld" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "slO" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz1_valley) +"slP" = ( +/obj/item/trash/raisins, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "slU" = ( /obj/item/lightstick/red/spoke, /turf/open/floor/shiva, /area/shiva/interior/bar) -"smS" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva/wredfull, +"smg" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) +"sml" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 + }, +/turf/closed/wall/shiva/ice, +/area/shiva/interior/caves/cp_camp) +"sng" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"snw" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "snN" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"snR" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) "sod" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"sok" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"soC" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"spd" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating, -/area/shiva/exterior/telecomm/lz1_north) -"spg" = ( +"sof" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) +/obj/effect/spawner/random/toolbox, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "spo" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"spI" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"sqe" = ( -/turf/open/floor/shiva/red/east, -/area/shiva/interior/colony/central) -"sqT" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +"spN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 4; + pixel_y = 5 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"srV" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"ssf" = ( -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/colony/central) -"ssZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"sts" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"srb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp{ - pixel_y = 4 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"srJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor/shiva/red, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) +"ssf" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/colony/central) "stv" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -18759,49 +19120,50 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) +"suu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) "suD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"svO" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"swg" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 +"suM" = ( +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/aerodrome) +"swf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"swy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"swz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/redfull/west, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"swH" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"swQ" = ( -/obj/structure/machinery/vending/cola/research, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "swW" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"sxs" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/clothing/head/cakehat, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "sxT" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"syx" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) +"sxY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "syA" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/ice/layer1, @@ -18810,43 +19172,44 @@ /obj/structure/janitorialcart, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"syI" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/cp_camp) -"syO" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"szv" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"szL" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"szd" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/colony/central) -"szz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"sAl" = ( -/obj/structure/platform/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) +"sAA" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "sAM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"sBd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) -"sBz" = ( +"sBl" = ( /obj/structure/surface/table, -/obj/item/key/cargo_train, -/obj/structure/machinery/light/double, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"sBz" = ( +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/obj/effect/spawner/random/technology_scanner, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/bar) "sBH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -18867,20 +19230,20 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"sCR" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/deck) -"sDq" = ( -/obj/structure/surface/table/woodentable, -/obj/item/restraint/handcuffs, -/obj/item/weapon/baton, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) -"sDV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) +"sCV" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"sDW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"sEF" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/central) "sFj" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/ice/layer1, @@ -18896,38 +19259,40 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"sFY" = ( -/obj/structure/machinery/vending/snack, +"sGo" = ( +/obj/item/shard{ + icon_state = "large" + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/garage) "sGH" = ( -/obj/effect/spawner/random/powercell, +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"sHQ" = ( +/obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"sGV" = ( -/obj/structure/machinery/cell_charger, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"sGX" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) -"sIm" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/plating, +"sIj" = ( +/obj/effect/spider/stickyweb, +/turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"sIx" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/colony/research_hab) "sIX" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"sJn" = ( -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) +"sJk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "sJo" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer3, @@ -18936,10 +19301,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"sKe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "sKf" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -18959,6 +19320,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"sLh" = ( +/obj/item/stack/sheet/metal, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "sLj" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer0, @@ -18969,77 +19334,46 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"sLx" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/caves/research_caves) -"sMu" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"sMd" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +/turf/open/floor/interior/plastic, +/area/shiva/interior/warehouse) +"sMS" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"sMN" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "sNi" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating, /area/shiva/interior/colony/deck) -"sNq" = ( -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 7 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"sNw" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/caves/cp_camp) -"sNF" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"sNQ" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/shiva/interior/colony/botany) -"sNS" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ +"sNs" = ( +/obj/structure/prop/ice_colony/flamingo{ dir = 8 }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "sNX" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"sPh" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "hangar_ice_2"; - pixel_y = 28 - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) +"sOn" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/shiva/interior/colony/deck) +"sOt" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"sOP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "sPo" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -19047,120 +19381,76 @@ /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"sPI" = ( -/obj/item/stack/rods, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) "sPM" = ( /obj/structure/barricade/snow{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"sQg" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "sQh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"sQn" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"sQP" = ( +/obj/structure/stairs/perspective/ice{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) -"sQw" = ( -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"sQy" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/warehouse/caves) +"sRp" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/cargo_container/horizontal/blue/top{ + density = 0; + pixel_y = 12 }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"sRo" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"sRs" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"sRP" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/central) "sRV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, /turf/open/floor/wood, /area/shiva/interior/bar) -"sRX" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/exterior/cp_lz2) -"sSA" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"sSL" = ( -/turf/open/floor/shiva/yellowcorners/west, -/area/shiva/interior/colony/deck) -"sSR" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-east-gate" - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"sSU" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/research_caves) +"sSs" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "sTd" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"sTp" = ( -/obj/structure/bed/roller, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"sTY" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench{ - pixel_x = -5; - pixel_y = -2 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"sUt" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/wred/east, +"sTR" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"sUv" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_1" +"sUw" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"sUB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/spaceacillin{ + pixel_x = 1; + pixel_y = 2 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"sUx" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor/darkbrown2/northeast, -/area/shiva/interior/valley_huts/disposals) +/obj/item/storage/belt/utility/full{ + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "sUD" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer1, @@ -19168,26 +19458,22 @@ "sUE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_southeast) -"sVn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/custom/metal_foam{ - pixel_x = 11; - pixel_y = 5 - }, -/obj/item/explosive/grenade/custom/metal_foam{ - pixel_x = 10 - }, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 +"sVe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"sVo" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "sVq" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "sVJ" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -19195,34 +19481,21 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"sXe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "sXt" = ( /obj/structure/machinery/light/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"sXE" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"sXO" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -13; - pixel_y = 25 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shiva/exterior/junkyard/fortbiceps) -"sXX" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) +"sXB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "sXZ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -19240,6 +19513,17 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"sYf" = ( +/obj/structure/stairs/perspective/ice{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/warehouse/caves) +"sYg" = ( +/obj/item/paper/research_notes/grant, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "sYh" = ( /obj/item/tool/wet_sign, /turf/open/floor/shiva, @@ -19254,37 +19538,6 @@ /obj/item/clothing/shoes/snow, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"sYA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) -"sYD" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"sYK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"sYT" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) -"sZe" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"sZh" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/junkyard) "tad" = ( /obj/structure/platform/strata{ dir = 1 @@ -19297,36 +19550,18 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"tao" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/medseceng) -"tbe" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"tbI" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 12; - pixel_y = 28 +"taB" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"taZ" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/turf/closed/wall/shiva/ice, -/area/shiva/interior/caves/cp_camp) -"tbJ" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 12; - pixel_y = 28 +/obj/structure/barricade/metal{ + dir = 4 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "tbR" = ( /obj/structure/surface/table, /obj/item/folder/red, @@ -19339,11 +19574,17 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"tcO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) +"tcv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"tcM" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "tcR" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/snow/layer2, @@ -19355,17 +19596,6 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"tdA" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/item/lightstick/red/variant/planted{ - pixel_x = -7; - pixel_y = -5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) "tdG" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -19383,6 +19613,18 @@ /obj/item/tool/stamp, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) +"tdY" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"tea" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"ter" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "tes" = ( /obj/structure/platform/strata, /obj/structure/barricade/handrail/wire{ @@ -19404,135 +19646,97 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) -"teI" = ( -/obj/structure/flora/tree/dead/tree_1, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) +"teS" = ( +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) +"teW" = ( +/obj/structure/safe, +/obj/item/spacecash/c1000{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c500, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "tfd" = ( /turf/open/floor/wood, /area/shiva/interior/colony/central) -"tfh" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = -4; - pixel_y = 10 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"tfB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"tfC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" +"tfx" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Storeroom" }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/dark2, +/area/shiva/interior/telecomm/lz1_biceps) "tfQ" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated, /obj/item/tool/shovel/spade, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"tga" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"tgf" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"tgG" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"tgI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"tgN" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, +"tfZ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"thL" = ( +/obj/item/tool/kitchen/rollingpin, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"tgP" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"tiL" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"thl" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"thm" = ( -/obj/vehicle/train/cargo/engine, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"thu" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"tiN" = ( +/obj/structure/platform/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) "tiO" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"tjM" = ( -/obj/structure/machinery/door_control/brbutton/alt{ - id = "hangar_ice_2"; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"tjP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"tkk" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - icon_state = "psiphon:1" +"tjk" = ( +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins" }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"tkl" = ( +/area/shiva/interior/colony/botany) +"tjA" = ( /obj/structure/surface/table, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"tjF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) +"tjM" = ( +/obj/structure/bed/roller, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "tkm" = ( /obj/structure/largecrate/random/case, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"tkw" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"tkW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/high, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/yellowfull/west, +"tkz" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"tkZ" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +"tkO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cherrypie, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "tle" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, @@ -19546,20 +19750,47 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) +"tlw" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/exterior/cp_lz2) "tlB" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"tlU" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) +"tlD" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"tlF" = ( +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/aerodrome) +"tlI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"tlS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "tmh" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/bar) -"tmj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/yellow/northeast, +"tmv" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "tmV" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, @@ -19572,107 +19803,105 @@ "tnu" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/bar) -"tnC" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 12 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"tnA" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "tnG" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"toy" = ( -/obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"tnW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal5"; + pixel_x = -14 + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"tov" = ( +/obj/structure/barricade/metal, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "toD" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"toH" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) "toK" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"tpb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +"tpG" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/structure/barricade/metal{ - dir = 4 +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/plating, -/area/shiva/exterior/junkyard) -"tpj" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/central) -"tqk" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"tqp" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"tpH" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"tpK" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/n_admin) +"tqw" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"tqW" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"tqG" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/shiva/interior/valley_huts/disposals) "trj" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"trN" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/item/tool/pen/blue{ - pixel_x = 5; - pixel_y = -5 +"trH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"trS" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 }, -/turf/open/floor/shiva/wred/north, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"trV" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "trX" = ( /obj/structure/machinery/conveyor, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"tse" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/clothing/head/cakehat, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"tsE" = ( -/obj/item/stack/rods, +"trZ" = ( +/obj/structure/machinery/disposal, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/botany) "tsI" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = -14; @@ -19684,20 +19913,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) +"tsP" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "tsU" = ( /obj/structure/machinery/light/double, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"ttv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/s_admin) -"ttw" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"ttO" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "tuz" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -19712,80 +19939,73 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"tuI" = ( -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/botany) "tuT" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"tvw" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/research_hab) -"tvI" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 +"tvs" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 1; + pixel_y = 5 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/east, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"tvz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"tvJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"tvX" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "twi" = ( /obj/structure/girder, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"twI" = ( +"twJ" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/deck) +"txj" = ( /obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) -"twV" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"txK" = ( -/obj/item/shard{ - icon_state = "medium" +/obj/item/tool/kitchen/knife{ + pixel_x = 10; + pixel_y = 6 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"txP" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 +/obj/item/reagent_container/food/snacks/grown/goldapple{ + pixel_y = 4 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"txs" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"tyf" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"txH" = ( +/obj/item/ammo_magazine/flamer_tank, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "tyi" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"tyo" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) "tyI" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -19800,40 +20020,43 @@ "tzo" = ( /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"tzr" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"tzt" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-southeast-gate" - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"tzS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) +"tzz" = ( +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/botany) "tAc" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"tAZ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"tAi" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/n_admin) +"tAL" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "tBB" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) +"tCT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "tDg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -19849,11 +20072,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"tDo" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "tDr" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 @@ -19861,10 +20079,45 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"tEa" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 15; + pixel_y = -3 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = -3 + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) +"tEh" = ( +/obj/structure/surface/table, +/obj/item/frame/firstaid_arm_assembly{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "tEl" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) +"tEu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 + }, +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "tEE" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer1, @@ -19876,14 +20129,6 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"tFi" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -4; - pixel_y = 10 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "tFk" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -19891,12 +20136,18 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"tFo" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 4 +"tFu" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "tFw" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -19920,29 +20171,42 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"tGu" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/exterior/cp_colony_grounds) "tGv" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/shiva/interior/aerodrome) -"tGX" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) +"tGF" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"tHa" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/botany) "tHd" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"tHx" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "tHJ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"tIG" = ( -/turf/closed/wall/shiva/prefabricated, -/area/shiva/exterior/cp_s_research) +"tIJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) "tJe" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -19954,26 +20218,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"tJq" = ( -/obj/structure/barricade/snow{ - dir = 1 - }, -/obj/structure/barricade/snow{ - dir = 4 - }, -/obj/structure/largecrate/random/mini/med, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard/fortbiceps) -"tJu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"tJz" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +"tJh" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) "tJS" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer2, @@ -19984,6 +20233,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) +"tKh" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "tKv" = ( /obj/structure/largecrate/random/mini/wooden{ pixel_x = -16; @@ -19997,10 +20251,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_southeast) -"tKX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"tLM" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "tLP" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 @@ -20016,14 +20272,30 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"tMd" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) -"tMk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/shiva/interior/caves/research_caves) +"tMs" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) +"tMC" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) +"tME" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"tMG" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) +"tMQ" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "tMR" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -20031,9 +20303,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"tNo" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/central) +"tNz" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "tOo" = ( /obj/effect/spider/stickyweb, /turf/open/auto_turf/ice/layer2, @@ -20048,65 +20321,48 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"tOO" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"tOX" = ( -/obj/structure/girder/reinforced, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) +"tPr" = ( +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "tPs" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"tPy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"tPw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "tPJ" = ( /obj/structure/platform/shiva/catwalk, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"tQi" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) -"tQm" = ( -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) +"tPK" = ( +/obj/structure/machinery/processor, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "tQn" = ( /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"tQQ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/valley) -"tRb" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) -"tRe" = ( -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) -"tRm" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +"tRg" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) +"tRj" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "tRN" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -20119,38 +20375,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"tRX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"tSw" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) -"tSy" = ( -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"tSF" = ( -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = -5; - pixel_y = -9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"tSM" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) "tTd" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -20161,24 +20385,23 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"tTe" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) "tTi" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/s_lz2) -"tTk" = ( -/obj/item/lightstick/red/variant/planted{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/research_caves) -"tTr" = ( -/obj/structure/foamed_metal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +"tTm" = ( +/obj/effect/decal/cleanable/ash, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"tTx" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"tTU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Disposals" + }, +/turf/open/floor/dark2, +/area/shiva/interior/valley_huts/disposals) "tUe" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -20191,29 +20414,40 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"tUI" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"tUq" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/labcoat/researcher, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"tUF" = ( +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) +"tUL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "tUN" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-southwest" }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"tVM" = ( +"tVw" = ( /obj/structure/surface/table, -/obj/item/storage/box/syringes{ - pixel_y = 2 +/obj/item/storage/bag/plants, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"tVA" = ( +/turf/open/floor/darkbrown2/east, +/area/shiva/interior/valley_huts/disposals) +"tVB" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) -"tVN" = ( -/obj/structure/fence, -/turf/open/floor/shiva/redfull/west, -/area/shiva/exterior/cp_colony_grounds) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "tVZ" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -20224,49 +20458,18 @@ /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/bar) -"tWU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) "tXe" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) -"tXm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"tXB" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"tXD" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/botany) +"tXh" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "tXL" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"tYb" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) -"tYj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) "tYw" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/junkyard) @@ -20284,41 +20487,18 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"tYW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_y = 5 - }, -/obj/item/tool/pen/red{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"tZv" = ( -/obj/structure/inflatable, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"tZI" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = 12; - pixel_y = 6 - }, -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = 5; - pixel_y = -7 - }, -/obj/structure/barricade/metal{ - dir = 8 +"tZe" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/obj/structure/barricade/metal{ - layer = 3 +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"tZL" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/shiva/exterior/cp_s_research) +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) "tZW" = ( /obj/structure/surface/rack, /obj/item/device/radio/headset{ @@ -20337,17 +20517,24 @@ /obj/item/stack/cable_coil/cyan, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"uae" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/colony/research_hab) -"uaz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/n_admin) -"uaF" = ( -/turf/open/floor/shiva/green/northwest, +"uai" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/storage/box/engineer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"uar" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"uaP" = ( +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/botany) "ubv" = ( /obj/structure/prop/invuln{ @@ -20359,12 +20546,20 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ubE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" +"ubZ" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"ucg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "ucn" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -20377,62 +20572,68 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ucA" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib6" +"ucB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"ucS" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"ucD" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ + pixel_y = 26 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"ucF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/northeast, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) -"ucZ" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) +"ucP" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"udt" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "udD" = ( /obj/structure/prop/dam/truck{ - dir = 4; - icon_state = "truck_snow" - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"uee" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_lz2) -"ueD" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/colony/research_hab) + dir = 4; + icon_state = "truck_snow" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "ueX" = ( /obj/item/ammo_magazine/rifle/boltaction, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"ufz" = ( -/obj/structure/machinery/disposal, +"ufn" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 + }, /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"ufw" = ( +/obj/item/evidencebag, +/obj/item/trash/pistachios, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "ufA" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -20463,30 +20664,32 @@ /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"uhn" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, +"ugp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 10 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"uhF" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_colony_grounds) -"uiw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow, +/area/shiva/interior/lz2_habs) +"ugu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"ugy" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"uhK" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "uiI" = ( /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"ujh" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 32 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "uji" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/aerodrome) @@ -20499,18 +20702,24 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"ukj" = ( -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) -"ukn" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) +"ujW" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "ukp" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_s_research) +"ult" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"ulA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + layer = 2.98 + }, +/turf/open/floor/shiva/purple, +/area/shiva/interior/lz2_habs) "ulD" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4-8" @@ -20518,6 +20727,12 @@ /obj/structure/platform/shiva/catwalk, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/junkyard/fortbiceps) +"ulL" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"ulN" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) "ulZ" = ( /obj/structure/platform/shiva/catwalk, /obj/structure/cable/heavyduty{ @@ -20525,55 +20740,33 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/junkyard/fortbiceps) -"ume" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) -"uml" = ( -/obj/structure/machinery/door_control{ - id = "st_18"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_y = 24; - req_access_txt = "100"; - specialfunctions = 4 +"umh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/machinery/power/apc/power/east{ - start_charge = 50 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"umu" = ( +/obj/item/paper/janitor{ + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) +/obj/structure/surface/table, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "umB" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/telecomm/lz2_northeast) -"umQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/aux_power) -"unD" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"unH" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"unK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) "uof" = ( -/obj/structure/barricade/snow{ +/obj/structure/prop/ice_colony/flamingo/festive{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard/fortbiceps) +/area/shiva/exterior/junkyard) +"uop" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "uoI" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -20585,6 +20778,25 @@ }, /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) +"uoL" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"upc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "upf" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/snow/layer1, @@ -20599,55 +20811,55 @@ /obj/structure/largecrate/random/mini/chest/b, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"upo" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/exterior/cp_colony_grounds) -"upF" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"upU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, +"upN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"upR" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"upW" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) "uqb" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uqh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"uqr" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"uri" = ( +"uqT" = ( /obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest/c{ +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -3; pixel_y = 8 }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"urB" = ( /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/area/shiva/interior/colony/botany) +"uqV" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "urX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"usb" = ( -/obj/structure/computerframe, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +"usK" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 10 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "usZ" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -20661,98 +20873,64 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"utB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"utK" = ( -/obj/structure/safe, -/obj/item/spacecash/c1000{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c500, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) -"uux" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 3; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"uuI" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"ute" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"utx" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) "uuN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"uuP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"uvd" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"uvN" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, +"uvc" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "uvU" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"uwn" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "uwz" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"uxg" = ( -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"uxv" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"uxG" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/paper/research_notes, +"uxd" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"uxJ" = ( -/turf/open/floor/shiva/yellowcorners, -/area/shiva/interior/garage) -"uxN" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) -"uyw" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/warehouse/caves) -"uyB" = ( -/obj/structure/platform/strata{ - dir = 8 +"uxQ" = ( +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"uyd" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) +/obj/structure/prop/invuln/ice_prefab/roof_greeble, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "uyI" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = 11; @@ -20760,6 +20938,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"uyK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz1_console/two) "uzf" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer0, @@ -20777,20 +20960,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uAr" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard) -"uAF" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/item/paper/research_notes, -/obj/item/paper_bin, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +"uAx" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "uAM" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -20799,23 +20972,15 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"uBi" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, +"uBL" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"uBs" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/n_admin) -"uBx" = ( -/obj/structure/platform/shiva/catwalk, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"uBI" = ( -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/lz2_habs) +"uBS" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/aux_power) "uCp" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -20826,31 +20991,36 @@ /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uCD" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"uDa" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) -"uDX" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/deck) +"uEd" = ( +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "uEo" = ( /obj/structure/platform/strata, /obj/item/lightstick/variant/planted, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"uEH" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"uEI" = ( +"uEv" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9; + pixel_y = 21 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"uEU" = ( +/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/valley_huts) +"uEV" = ( +/obj/structure/stairs/perspective/ice{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/warehouse/caves) +"uFg" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "uFl" = ( /obj/structure/barricade/snow{ dir = 1 @@ -20864,24 +21034,45 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) +"uGg" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "uGq" = ( /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"uGI" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" +"uHc" = ( +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) +"uHh" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"uHo" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/auto_turf/snow/layer4, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/n_admin) +"uHr" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"uGL" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"uHY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/aux_power) +"uIb" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"uId" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "uIC" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -20894,15 +21085,13 @@ /obj/item/stack/sheet/plasteel/medium_stack, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"uIN" = ( -/obj/structure/closet/secure_closet/personal, +"uIJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 2 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"uIT" = ( -/obj/structure/flora/grass/tallgrass/ice/corner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) +/area/shiva/interior/lz2_habs) "uJj" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -20910,9 +21099,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"uJn" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"uJu" = ( +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"uJv" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) "uJL" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -13; @@ -20920,20 +21113,28 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"uKR" = ( -/obj/item/stack/sheet/wood, +"uKb" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"uKd" = ( /obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"uKh" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "uKZ" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/aerodrome) -"uLa" = ( -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) "uLf" = ( /obj/structure/platform/strata{ dir = 4 @@ -20948,16 +21149,17 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"uLA" = ( +"uLi" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"uLS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W-corner" }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"uLS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "uLT" = ( /obj/structure/machinery/conveyor, /turf/open/asphalt/cement, @@ -20968,11 +21170,17 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"uMO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow/north, +"uMf" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"uMp" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/deck) +"uMw" = ( +/obj/item/frame/bucket_sensor, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "uNe" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -20981,26 +21189,27 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"uNh" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"uNJ" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 +"uNt" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = -6 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"uOA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"uOq" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + pixel_y = 5 }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/purplefull/north, -/area/shiva/interior/colony/research_hab) -"uPc" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/southeast, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) +"uOr" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "uPv" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -21015,18 +21224,19 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"uPM" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"uQp" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +"uPQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"uQq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "uQy" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -21041,81 +21251,80 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/wood, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"uRp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_y = 14 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"uRV" = ( +/turf/open/floor/shiva/bluecorners/west, /area/shiva/interior/colony/central) -"uQG" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"uQH" = ( -/turf/open/floor/shiva/purplefull/west, -/area/shiva/exterior/lz2_fortress) -"uRz" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) "uSd" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"uSt" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) +"uSz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "uSF" = ( /mob/living/simple_animal/hostile/giant_spider/nurse, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"uTm" = ( +/obj/item/stack/snow{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/stack/snow, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"uTs" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "uTu" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"uTE" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Underground Morgue" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "uTL" = ( /obj/item/tool/pickaxe/diamond{ desc = "So we back in the mine, swinging pickaxe from side to side, side side, to side." }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"uTU" = ( +"uUr" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, +/area/shiva/interior/aerodrome) +"uVr" = ( /obj/structure/surface/table, -/obj/item/tool/kitchen/knife{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/grown/goldapple{ - pixel_y = 4 +/obj/item/clipboard{ + pixel_x = -2; + pixel_y = 5 }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"uUq" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"uUZ" = ( -/obj/item/powerloader_clamp, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"uVh" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"uVp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, +"uVM" = ( +/obj/item/stack/cable_coil/cut, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"uVG" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"uVW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/deck) "uWi" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -21126,28 +21335,18 @@ /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"uWH" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" +"uXS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"uXs" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"uXu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) +"uYd" = ( +/turf/open/floor/plating, +/area/shiva/exterior/valley) "uYg" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Underground Security Checkpoint" @@ -21174,21 +21373,30 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"vaj" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) +"vaB" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + id = "hangar_ice_3"; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "vbm" = ( /obj/structure/bed/chair/comfy/orange, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"vbD" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_colony_grounds) -"vda" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +"vbK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) +"vdv" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "vdw" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -21202,29 +21410,21 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) -"vdJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/purplefull/north, -/area/shiva/interior/colony/research_hab) -"veh" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"veG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Colony Dormitories Canteen"; - req_access_txt = "100" - }, +"vdO" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"vef" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/medseceng) +"veM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/reagent_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "veS" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, @@ -21232,64 +21432,19 @@ "vfc" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_lz2) -"vfD" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"vgk" = ( -/obj/item/lightstick/red/variant/planted{ - pixel_x = 11; - pixel_y = 11 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) -"vhq" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"vhS" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"vih" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/warehouse/caves) -"vin" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"vix" = ( -/obj/structure/flora/tree/dead/tree_4, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"vjd" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"vfx" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"vhc" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) "vjy" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"vjE" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) "vjH" = ( /obj/structure/largecrate/random/mini/wooden, /obj/structure/largecrate/random/mini/wooden{ @@ -21297,61 +21452,48 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"vkQ" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"vkX" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) -"vlc" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/caves/cp_camp) "vlh" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"vlA" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/botany) "vlD" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"vlU" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"vmd" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" +"vmU" = ( +/obj/structure/largecrate/random{ + anchored = 1; + pixel_x = 9; + pixel_y = -3 }, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) +/obj/structure/largecrate/random/mini{ + pixel_x = 10; + pixel_y = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "vnc" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"vnu" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) +"vnj" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/effect/spawner/random/attachment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"vnD" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5"; + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "vnF" = ( /obj/structure/surface/table, /obj/item/device/radio, @@ -21362,6 +21504,9 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) +"vnI" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) "vom" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -21376,33 +21521,23 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"vpz" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"vpu" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "vpD" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz1_north) -"vpI" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"vpJ" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"vqb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +"vpE" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "vqw" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer1, @@ -21411,27 +21546,21 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"vrb" = ( -/obj/item/clothing/under/rank/janitor, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"vrY" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"vsS" = ( -/turf/open/floor/shiva/red/southeast, +"vrP" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) -"vsZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 +"vsm" = ( +/obj/structure/platform_decoration/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) +"vtv" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "vty" = ( /obj/item/shard{ icon_state = "medium"; @@ -21439,88 +21568,106 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"vub" = ( +"vtA" = ( /obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"vuw" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 - }, +/obj/structure/machinery/faxmachine, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"vuK" = ( -/obj/structure/machinery/vending/cigarette/colony, +/area/shiva/interior/colony/n_admin) +"vuo" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) -"vvj" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"vvF" = ( -/turf/open/floor/shiva/yellowcorners/east, +"vuD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) -"vvJ" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 +"vva" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/botany) -"vwf" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"vvK" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/obj/structure/machinery/light/double, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"vwu" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/reagent_container/food/condiment/coldsauce, -/obj/item/reagent_container/food/condiment/coldsauce, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"vwS" = ( -/obj/structure/window/reinforced{ - dir = 1 +/area/shiva/interior/colony/central) +"vvM" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/darkbrown2/northwest, -/area/shiva/interior/valley_huts/disposals) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"vwR" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "vxg" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"vxw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"vxO" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"vya" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) "vyM" = ( /obj/structure/bed/roller, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"vyZ" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"vzH" = ( -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/redfull/west, +"vyO" = ( +/obj/item/stool, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"vzu" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "vzM" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) +"vzT" = ( +/obj/structure/barricade/snow{ + dir = 1 + }, +/obj/structure/barricade/snow{ + dir = 4 + }, +/obj/structure/largecrate/random/mini/med, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard/fortbiceps) "vAp" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) +"vAM" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "vAU" = ( /obj/structure/platform/strata{ dir = 4 @@ -21528,23 +21675,31 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"vAV" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/yellow/west, +"vAX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/obj/item/storage/box/evidence{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "vBg" = ( /obj/structure/curtain/black, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"vBh" = ( -/obj/item/stool, -/turf/open/floor/shiva/floor3, +"vBq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "vBZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) +/obj/structure/surface/table{ + dir = 4; + flipped = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "vCj" = ( /obj/structure/barricade/snow{ dir = 1 @@ -21556,14 +21711,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"vCq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"vDz" = ( -/obj/vehicle/powerloader/jd{ - dir = 4 +"vCu" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) @@ -21575,19 +21728,6 @@ /obj/structure/prop/ice_colony/surveying_device, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"vEB" = ( -/mob/living/simple_animal/hostile/retaliate/clown{ - desc = "Uh oh, looks like Gonzo got blocked by a cave-in. How is he gonna get out of this one?"; - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 - }, -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "Original map by Infernus, remapped by Triiodine." - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "vEN" = ( /obj/structure/largecrate/random/mini/wooden{ pixel_x = -16; @@ -21595,101 +21735,95 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) +"vFc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "vFi" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"vFQ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/shiva/north, +"vFy" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "vFR" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"vGb" = ( -/obj/structure/machinery/space_heater, +"vGg" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"vGG" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, /turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) -"vGY" = ( -/obj/structure/barricade/snow{ - dir = 1 +"vGJ" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"vGK" = ( +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 }, -/obj/structure/barricade/snow{ - dir = 8 +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard/fortbiceps) -"vHk" = ( -/obj/structure/platform/shiva/catwalk{ +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"vGY" = ( +/obj/structure/barricade/snow{ dir = 1 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"vHn" = ( -/obj/item/stack/snow{ - pixel_x = -7 +/obj/structure/barricade/snow{ + dir = 8 }, -/obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard/fortbiceps) "vHq" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"vHF" = ( -/obj/structure/surface/table, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/tool/lighter/zippo{ - pixel_x = -14; - pixel_y = 14 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "vHH" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/obj/item/storage/box/bodybags, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"vHS" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "vHT" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"vHV" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva, -/area/shiva/interior/caves/cp_camp) "vHX" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"vIx" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"vIf" = ( +/obj/item/stool, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"vIq" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/shiva/green/northeast, -/area/shiva/interior/colony/botany) +/obj/effect/landmark/corpsespawner/bridgeofficer, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "vIy" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -21700,77 +21834,125 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"vIA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "vIJ" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"vIX" = ( -/obj/item/frame/apc, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"vKe" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"vIV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"vKQ" = ( -/obj/structure/platform/strata{ +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"vJl" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/obj/structure/platform/strata{ - dir = 4 +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"vJt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) -"vLd" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal8"; + pixel_x = -14 + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"vJZ" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"vKy" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins"; - pixel_y = 14 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"vLL" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"vLS" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) -"vMv" = ( -/turf/open/floor/shiva/yellowfull/west, +"vKz" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"vKW" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"vKY" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"vMc" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/n_admin) +"vMB" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/deck) +"vMF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "vMX" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"vNh" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/garage) +"vNP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/chapel, +/area/shiva/interior/colony/central) "vOb" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"vOm" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "vOv" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/plating, /area/shiva/interior/bar) -"vPz" = ( -/obj/item/lightstick/variant/planted, -/turf/open/auto_turf/snow/layer1, +"vPj" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/aux_power) +"vPp" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/obj/structure/prop/ice_colony/flamingo{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "vPK" = ( /obj/structure/platform/strata{ @@ -21781,40 +21963,33 @@ }, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"vPO" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"vQi" = ( -/obj/structure/machinery/light/double, -/obj/structure/noticeboard{ - pixel_y = -32 - }, +"vQo" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"vQx" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"vQS" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull/west, +"vQK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/t_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"vQN" = ( +/turf/open/floor/corsat/squares, /area/shiva/interior/aerodrome) "vQZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_colony_grounds) +"vRG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) "vRM" = ( /obj/structure/platform/strata{ dir = 8 @@ -21822,12 +21997,6 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"vSH" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = -6 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) "vSL" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, @@ -21841,14 +22010,19 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"vTj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"vUi" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "vUC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"vUE" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/n_admin) "vUH" = ( /obj/structure/barricade/snow{ dir = 4 @@ -21856,29 +22030,34 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) +"vUJ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "vUR" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/lz2_fortress) -"vVd" = ( -/obj/structure/barricade/metal, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"vVp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 +"vVj" = ( +/obj/structure/platform/strata{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"vVY" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"vWc" = ( -/obj/effect/landmark/hunter_secondary, +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) +"vWg" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/s_admin) +"vWm" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) "vWt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; @@ -21895,38 +22074,32 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"vXS" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11 +"vXs" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = -2 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "vYm" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"vZl" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 +"vYC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 7 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"vZR" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "wag" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/n_admin) +"way" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "waE" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -21940,51 +22113,26 @@ dir = 6 }, /area/shiva/interior/aerodrome) -"wbD" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"wbG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 16 - }, +"wbA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"wbB" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wbZ" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"wbK" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/central) +"wcA" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/darkbrown2/northeast, +/area/shiva/interior/valley_huts/disposals) "wcB" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) -"wcE" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "wcF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -21993,38 +22141,37 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) -"wcL" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) -"wcV" = ( -/obj/structure/prop/ice_colony/flamingo{ +"wcZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard, +/obj/item/tool/screwdriver, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"wds" = ( +/obj/item/bananapeel, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"wdu" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"wef" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/shiva/purple/west, +/area/shiva/interior/lz2_habs) +"wfp" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"wdf" = ( -/obj/item/tool/screwdriver, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"weH" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) -"weP" = ( -/obj/item/tool/shovel/snow, -/turf/open/floor/shiva/greenfull/west, -/area/shiva/interior/colony/n_admin) -"wff" = ( -/obj/effect/landmark/corpsespawner/colonist/random, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"wfw" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/aerodrome) "wfL" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Evidence Storage" @@ -22049,41 +22196,43 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"wgd" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"wgm" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) "wgM" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/lz1_valley) +"whm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "whI" = ( /obj/item/weapon/gun/boltaction, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"whP" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/shiva/north, +"wia" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"wiv" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) -"wiL" = ( -/obj/structure/flora/tree/dead/tree_2, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) "wje" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/medseceng_caves) -"wjo" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"wjs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/research_hab) +"wju" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "wjD" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -22098,85 +22247,62 @@ /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"wjZ" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 6 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"wkj" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"wkE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Chapel" - }, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) -"wkH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +"wjM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"wkY" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) "wlj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/central) -"wlA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "wlJ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz2_northeast) -"wnk" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/medseceng) -"wnZ" = ( -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"woj" = ( -/obj/item/book/manual/marine_law, -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"wou" = ( -/obj/structure/largecrate/random/case, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/aerodrome) -"woy" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = -13; - pixel_y = 28 +"wlY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 +/turf/open/floor/shiva/yellow, +/area/shiva/interior/aux_power) +"wmF" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"woW" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/obj/item/storage/firstaid/rad{ + pixel_y = 4 }, -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) -"wpn" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"wnF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"wnX" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/bar) +"woy" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/s_admin) +"wpj" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"wpt" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/warehouse/caves) +"wpM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "wpW" = ( /obj/item/stack/rods, /obj/structure/window_frame/colony/reinforced, @@ -22185,15 +22311,11 @@ "wqc" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/carpet, -/area/shiva/interior/colony/research_hab) -"wql" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/darkbrown2/north, -/area/shiva/interior/valley_huts/disposals) -"wqV" = ( -/turf/open/floor/shiva/wredcorners/east, +/area/shiva/interior/colony/research_hab) +"wqL" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "wsz" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -22201,18 +22323,61 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"wsW" = ( -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 +"wsF" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wtf" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"wtl" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"wtn" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/clothing/under/colonist, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"wts" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"wug" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva/multi_tiles/southeast, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"wtv" = ( +/obj/structure/surface/table, +/obj/item/folder/white, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"wtD" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) +"wua" = ( +/obj/item/frame/apc, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "wui" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -22225,35 +22390,27 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"wuW" = ( -/obj/structure/filingcabinet, +"wuP" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"wuZ" = ( +/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/area/shiva/interior/bar) +"wvw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "wvx" = ( /obj/structure/largecrate/random/case, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"wvD" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"wvM" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"wvQ" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "wvS" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) @@ -22261,32 +22418,53 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"wxr" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"wwK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) "wxL" = ( -/obj/structure/machinery/light/double, -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"wxQ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) "wxY" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"wyc" = ( -/obj/structure/prop/souto_land{ - desc = "Someone has crudely rendered a face and the word 'souto'"; - health = 10000; - layer = 2.9; - name = "souto graffiti" +"wyl" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"wzj" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"wzw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/sliceable/cheesecake{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 10 }, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"wAo" = ( -/obj/item/weapon/ice_axe/red, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +"wAb" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"wAk" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-north" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "wAr" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, @@ -22302,6 +22480,14 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"wAI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "wAM" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/latex, @@ -22311,61 +22497,78 @@ /obj/item/tool/wrench, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"wAX" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/botany) "wBf" = ( /obj/structure/girder, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"wBi" = ( -/obj/structure/prop/ice_colony/flamingo{ +"wBy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"wBA" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/aerodrome) +"wBP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"wCe" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/shiva/interior/valley_huts/disposals) +"wCl" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"wCo" = ( +/obj/structure/platform_decoration/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"wBO" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 15; - pixel_y = -3 +/area/shiva/exterior/valley) +"wCq" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -10; + pixel_y = 19 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"wCL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, /obj/item/lightstick/red/spoke/planted{ - pixel_x = -16; - pixel_y = -3 + pixel_x = -11; + pixel_y = 25 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_s_research) +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) "wCP" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/colony/s_admin) -"wCW" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "wCX" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/s_lz2) -"wDP" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/bar) -"wEq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) -"wEF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"wEG" = ( -/turf/open/floor/shiva/purplefull/north, -/area/shiva/interior/colony/research_hab) +"wDU" = ( +/obj/structure/platform/strata, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "wFm" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, @@ -22377,75 +22580,57 @@ /obj/structure/coatrack, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"wGy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"wGI" = ( +"wGq" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"wGX" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"wHe" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"wIn" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/wood, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) -"wGQ" = ( -/obj/structure/closet, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"wHa" = ( -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/aux_power) -"wHG" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +"wIA" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "wIC" = ( /obj/structure/prop/invuln/minecart_tracks, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"wIL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"wJo" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"wJr" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/shiva/green/northeast, -/area/shiva/interior/colony/botany) -"wJD" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva/purplefull/west, +"wJT" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/research_hab) -"wKO" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"wKB" = ( +/obj/structure/platform/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"wLs" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"wLM" = ( -/obj/structure/prop/ice_colony/soil_net, -/obj/item/tool/shovel/spade{ - layer = 2.99; - pixel_x = -9; - pixel_y = -11 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"wLV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull/west, +/turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) "wMh" = ( /turf/open/auto_turf/ice/layer1, @@ -22453,59 +22638,69 @@ "wMj" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/exterior/lz2_fortress) +"wMv" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"wMG" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"wMZ" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "wNj" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating/icefloor, /area/shiva/interior/telecomm/lz1_biceps) -"wNt" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"wND" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/exterior/cp_lz2) +"wNT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/shiva/exterior/cp_lz2) +"wNY" = ( +/obj/structure/prop/souto_land{ + desc = "Someone has crudely rendered a face and the word 'souto'"; + health = 10000; + layer = 2.9; + name = "souto graffiti" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/s_lz2) -"wOc" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"wOf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"wPb" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"wPf" = ( -/obj/structure/surface/table, -/obj/item/device/camera, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "wPz" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"wPF" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/crap_item, +"wPX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/shiva/north, /area/shiva/interior/garage) -"wPU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/obj/item/storage/box/evidence{ - pixel_x = 5; - pixel_y = 10 +"wQd" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 }, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) +"wQn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"wQr" = ( +/obj/item/stack/rods, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"wQM" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/garage) +/area/shiva/exterior/lz2_fortress) +"wQJ" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/deck) "wQR" = ( /obj/structure/morgue{ dir = 8 @@ -22513,36 +22708,25 @@ /obj/structure/machinery/light/double, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"wRj" = ( -/obj/item/lightstick/red/variant/planted{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) "wRm" = ( /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"wRr" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +"wSi" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 }, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wSj" = ( +/obj/structure/computerframe{ + pixel_y = 24 }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"wRv" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"wRS" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "wSv" = ( /obj/item/lightstick/red/variant/planted{ pixel_x = -7; @@ -22550,13 +22734,32 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) -"wSR" = ( -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) +"wSE" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"wSK" = ( +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/lz1_valley) "wTg" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"wTl" = ( +/obj/structure/surface/table, +/obj/item/circuitboard{ + pixel_x = -3; + pixel_y = 18 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "wTz" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = -7; @@ -22568,15 +22771,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"wTB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +"wTL" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "wTP" = ( /obj/item/storage/surgical_tray, /obj/structure/surface/table/reinforced/prison, @@ -22592,46 +22791,48 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"wUd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) -"wUB" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, +"wUi" = ( +/obj/structure/closet/toolcloset, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"wWr" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"wUN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"wVF" = ( -/obj/structure/machinery/computer/station_alert{ +/area/shiva/interior/colony/s_admin) +"wWI" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"wWs" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"wWJ" = ( -/obj/structure/surface/table, -/obj/item/stack/nanopaste, /turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"wWX" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" +"wWV" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva, +/area/shiva/interior/bar) +"wXj" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "hangar_ice_3"; + pixel_y = 28 }, -/turf/open/floor/shiva/yellowfull/west, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"wXm" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) -"wYJ" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/central) +"wYu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"wYy" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "wZh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/slime{ @@ -22643,104 +22844,56 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"wZv" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"wZW" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) -"xac" = ( -/obj/structure/stairs/perspective/ice{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) -"xao" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"xbd" = ( +"wZo" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 17 - }, -/obj/item/tool/surgery/scalpel{ - pixel_x = 16 - }, -/obj/item/tool/surgery/hemostat{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/shiva/floor3, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/research_hab) -"xbe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva/purplefull/east, +"wZv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"xbo" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +"wZW" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/shiva/interior/colony/botany) +"xas" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) +"xaY" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"xbr" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "xbz" = ( /obj/structure/window/framed/shiva, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"xbA" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"xcm" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, +"xcU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"xde" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/bluepyjamas, /turf/open/floor/wood, -/area/shiva/interior/aerodrome) -"xcy" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"xcB" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/area/shiva/interior/colony/botany) +"xdP" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel/snow, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"xdQ" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"xcM" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"xdl" = ( -/obj/item/stack/sheet/metal/small_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"xdo" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"xeh" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/garage) +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "xeE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -22748,172 +22901,101 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"xfr" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"xfw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "xgc" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) +"xgf" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/auto_turf/ice/layer0, +/area/shiva/exterior/cp_s_research) +"xgj" = ( +/obj/item/stack/rods, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"xgy" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"xgA" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) "xgH" = ( /turf/closed/shuttle/elevator, /area/shiva/interior/aerodrome) -"xgK" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) "xha" = ( /turf/open/floor/plating, /area/shiva/interior/colony/central) +"xhu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"xhI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "xhJ" = ( /obj/item/tool/wet_sign, /turf/open/floor/wood, /area/shiva/interior/bar) -"xhQ" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) "xhU" = ( /obj/item/tool/shovel, /obj/structure/surface/rack, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"xir" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/garage) -"xiK" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"xiQ" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/n_admin) -"xiX" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "xiY" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"xkg" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/obj/item/storage/firstaid/fire, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) +"xjD" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"xkj" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "xlg" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"xlD" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/botany) -"xlF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, +"xmN" = ( /turf/open/floor/shiva/floor3, +/area/shiva/interior/warehouse) +"xmX" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/research_hab) -"xlK" = ( -/obj/structure/bed/chair{ - dir = 1 +"xna" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/shiva/redfull/west, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) -"xlX" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications{ +"xoe" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"xnj" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/n_admin) -"xnN" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"xnY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - name = "\improper Panic Room Shutters" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"xqn" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"xqt" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"xre" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"xrg" = ( /obj/structure/prop/ice_colony/ground_wire{ - dir = 8 + dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"xon" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "xru" = ( /obj/structure/foamed_metal, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"xrL" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/deck) -"xsf" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "\improper Colony Dormitories" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) "xst" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -22922,27 +23004,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"xsB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/medseceng) -"xsO" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "\improper Aurora Medical Clinic Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"xsP" = ( -/obj/item/lightstick/red/variant/planted, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/aerodrome) "xtc" = ( /obj/structure/platform/strata{ dir = 4 @@ -22950,10 +23011,22 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"xtu" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"xtE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "xtI" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"xtX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) "xui" = ( /obj/structure/platform/strata{ dir = 1 @@ -22967,15 +23040,14 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"xuC" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"xuI" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/s_admin) +"xuB" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"xuT" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) "xvb" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -22987,6 +23059,10 @@ "xvA" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) +"xvD" = ( +/obj/structure/bed/roller, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "xvQ" = ( /obj/structure/machinery/conveyor{ dir = 4; @@ -22997,51 +23073,53 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"xvV" = ( -/obj/structure/girder, -/turf/open/floor/dark2, +"xwa" = ( +/obj/structure/platform/strata, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/gm/river, /area/shiva/interior/caves/research_caves) -"xxp" = ( -/obj/structure/platform_decoration/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"xxC" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/n_admin) -"xxJ" = ( -/obj/structure/machinery/vending/cigarette/colony, +"xwA" = ( +/obj/structure/bed/chair/comfy/blue, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"xxK" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +/area/shiva/interior/colony/n_admin) +"xwH" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/shiva/interior/aerodrome) -"xya" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"xwJ" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"xxl" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/exterior/lz2_fortress) +"xxC" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"xxV" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "xyd" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 10 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"xyA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva/wred/north, +"xym" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) -"xyL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"xyP" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/garage) +"xze" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "xzo" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -23050,16 +23128,10 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"xzz" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"xzA" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/wred/north, +"xzw" = ( +/obj/structure/machinery/light/double, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "xzO" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -23072,6 +23144,27 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) +"xAg" = ( +/obj/item/lightstick/planted, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"xAt" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"xAH" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"xAK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "xAP" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, @@ -23079,41 +23172,45 @@ "xAS" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"xAW" = ( -/obj/item/stack/sheet/metal, -/turf/open/shuttle/can_surgery/black, -/area/shiva/interior/aerodrome) -"xAX" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "xBb" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"xBd" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + desc = "Uh oh, looks like Gonzo got blocked by a cave-in. How is he gonna get out of this one?"; + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "Original map by Infernus, remapped by Triiodine." + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) +"xBf" = ( +/turf/open/floor/shiva/wredcorners/west, +/area/shiva/interior/colony/medseceng) "xBi" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"xBP" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/yellow/northwest, +"xBN" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"xBZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) -"xBS" = ( -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) -"xCd" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"xCT" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/central) "xCW" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 1 @@ -23124,26 +23221,33 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"xDp" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/chunk, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"xDN" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" +"xDx" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"xDZ" = ( -/obj/item/paper/research_notes/decent, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"xDN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"xEn" = ( +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"xEy" = ( +/obj/item/frame/table, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "xEB" = ( /obj/item/tool/warning_cone, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"xFt" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "xFM" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -23156,14 +23260,23 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"xGD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) -"xHW" = ( -/obj/item/device/flashlight, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) +"xGh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"xGu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"xHv" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) "xIO" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -23172,142 +23285,87 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"xIT" = ( -/obj/item/tool/mop{ - pixel_y = 20 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"xIV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/sliceable/cheesecake{ - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 10 - }, -/turf/open/floor/prison/kitchen, +"xKv" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/botany) +"xLN" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"xIZ" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"xJd" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"xJH" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"xKO" = ( -/turf/open/floor/shiva/yellowcorners/west, -/area/shiva/interior/colony/research_hab) -"xKY" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"xMc" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) -"xMh" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "xMz" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/lz1_valley) +"xMB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) +"xME" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "xMS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 }, /obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"xMT" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/botany) -"xMV" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 + dir = 1 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"xNs" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "xOb" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"xOc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +"xOm" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"xOv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"xPR" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkbrown2/east, +/area/shiva/interior/valley_huts/disposals) +"xQb" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "nlz_shutters"; + pixel_y = 28 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"xPC" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/shiva/interior/aerodrome) +/area/shiva/exterior/lz2_fortress) "xQj" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"xQl" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +"xQN" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) -"xQK" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"xQS" = ( +/obj/structure/stairs/perspective/ice{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"xRv" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"xQZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"xRr" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/botany) "xRy" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/plating_catwalk/shiva, @@ -23324,233 +23382,173 @@ "xRY" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_colony_grounds) -"xSa" = ( -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"xSg" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) -"xSl" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"xSy" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ +"xSZ" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"xSG" = ( -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"xTh" = ( -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, +/area/shiva/interior/colony/research_hab) +"xTz" = ( +/obj/structure/machinery/computer/operating, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"xTm" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/aux_power) -"xTs" = ( -/obj/structure/machinery/landinglight/ds1/spoke, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"xTx" = ( -/obj/structure/machinery/sensortower{ - pixel_x = 6 - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"xTy" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/deck) "xTK" = ( /obj/structure/inflatable/popped, /obj/structure/girder, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/research_caves) "xTS" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"xTT" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"xTW" = ( +/obj/item/powerloader_clamp, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "xUt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"xVd" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"xUR" = ( +/obj/structure/platform/strata{ + dir = 4 }, -/obj/item/shard{ - icon_state = "large" +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"xVU" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"xVj" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) -"xVq" = ( -/obj/item/frame/table, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"xVs" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"xVR" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shiva/exterior/junkyard/fortbiceps) "xVZ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"xWi" = ( -/obj/item/book/manual/atmospipes{ - pixel_y = 10 - }, +"xWK" = ( /obj/structure/surface/table, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"xWo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"xWJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, +/obj/effect/spawner/random/tech_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) -"xWR" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" +"xXE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/candy_corn{ + pixel_x = 7; + pixel_y = 5 }, -/turf/closed/wall/shiva/ice, -/area/shiva/exterior/cp_s_research) -"xXl" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/shiva/interior/caves/cp_camp) -"xXz" = ( -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/medseceng) +/obj/item/clothing/head/fedora{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "xXM" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"xYi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/botany) -"xYw" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) +"xYq" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "xYx" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"xYT" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"xYy" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest/c{ + pixel_y = 8 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "xZd" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"yas" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"xZh" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"yaM" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"yaS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"xZu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/obj/item/weapon/ice_axe, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) +"yal" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"yas" = ( +/obj/structure/stairs/perspective/ice{ + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/surface/table/reinforced/prison, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"ybr" = ( +/obj/structure/surface/table, /obj/item/clipboard, -/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"ybs" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) -"ybu" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) -"ycg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center"; - req_access_txt = "100" +"ycD" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"ydm" = ( /turf/open/floor/dark2, -/area/shiva/interior/colony/central) -"ycY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"yda" = ( -/obj/item/storage/pouch/firstaid/full/pills, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) -"ydr" = ( +/area/shiva/interior/valley_huts/disposals) +"ydv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"ydJ" = ( /obj/structure/surface/table, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva/yellow/east, +/obj/item/clothing/suit/armor/hos, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) -"yec" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "yer" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"yet" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) "yez" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Showers" @@ -23558,35 +23556,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"yfa" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"yfb" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"yfn" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) -"yfz" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) -"yfI" = ( -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/aerodrome) "yfM" = ( -/obj/structure/bed/roller, -/turf/open/floor/shiva/yellowfull, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "yfY" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -23594,34 +23567,59 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"yga" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "panic_room" - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"ygq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/north, +"ygt" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"ygB" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"ygJ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"yho" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "yht" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"yiW" = ( +/obj/item/tool/soap, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"yhu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"yhH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"yis" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) +"yiE" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/exterior/cp_lz2) +"yiX" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"yjK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "yjM" = ( /obj/structure/barricade/handrail/wire, /obj/structure/barricade/handrail/wire{ @@ -23630,29 +23628,31 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"ykg" = ( -/obj/structure/machinery/light/double{ +"ykP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"ykS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - pixel_y = 9 + name = "\improper Underground Chapel" }, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/botany) -"ylx" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"ylo" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "ylz" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/medseceng) -"ylK" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) (1,1,1) = {" puZ @@ -23992,21 +23992,21 @@ puZ puZ puZ aac -eZr -mom -eZr -eZr -mom -nIP -eZr -mom -eZr -eZr -mom -eZr +nYb +gjS +nYb +nYb +gjS +kex +nYb +gjS +nYb +nYb +gjS +nYb aac -hxZ -gfP +aMR +xhI aac aac aac @@ -24154,30 +24154,30 @@ puZ puZ puZ aac -cRd -aII -mto -cRd -bbD -mto -cRd -mkL -mto -cRd -iYU -mto -kqU -bWY -kqU +ulA +spN +pMn +ulA +ugp +pMn +ulA +cnq +pMn +ulA +lyy +pMn +tMQ +bPE +tMQ aac aac -xxJ -bLO +fUy +qfY aac -aBJ -nHd -aBJ -gAA +mOR +uBL +mOR +uIJ aac aac puZ @@ -24316,30 +24316,30 @@ puZ puZ puZ aac -ahJ -cob -dmB -eZr -dkb -eZr -eZr -cob -eZr -dmB -cob -eZr -kqU -kqU -xnN -djh -djh -kqU -kqU -kqU -kqU -kqU -kqU -sBz +bjT +iBY +mdT +nYb +wef +nYb +nYb +iBY +nYb +mdT +iBY +nYb +tMQ +tMQ +dJM +cFw +cFw +tMQ +tMQ +tMQ +tMQ +tMQ +tMQ +apg aac aac fEU @@ -24478,30 +24478,30 @@ puZ puZ aac aac -otk +lLX byG -kqU -kqU +tMQ +tMQ odz -kqU -jcL +tMQ +vKY odz -kqU -bWY +tMQ +bPE odz -kqU -kqU -kqU -kqU -djh -djh -kqU -kqU -kqU -kqU -kqU -kqU -eZr +tMQ +tMQ +tMQ +tMQ +cFw +cFw +tMQ +tMQ +tMQ +tMQ +tMQ +tMQ +nYb aac fEU fEU @@ -24639,31 +24639,31 @@ puZ puZ puZ aac -qjW -eZr +loo +nYb odz -afn -kqU +ixc +tMQ odz -kqU -kqU +tMQ +tMQ odz -kqU -kqU +tMQ +tMQ odz -kqU -kqU -wWs -kqU -djh -djh -kqU -kqU -kqU -kqU -kqU -kqU -eZr +tMQ +tMQ +xcU +tMQ +cFw +cFw +tMQ +tMQ +tMQ +tMQ +tMQ +tMQ +nYb aac fEU fEU @@ -24776,7 +24776,7 @@ puZ hFl jCE jCE -vEB +xBd jCE jCE puZ @@ -24801,31 +24801,31 @@ caS caS caS aac -uri -hsJ -eZr -kqU -eZr -eZr -eZr -eZr -eZr -eZr -eZr -eZr -eZr -kqU -kqU -mIe +xYy +krg +nYb +tMQ +nYb +nYb +nYb +nYb +nYb +nYb +nYb +nYb +nYb +tMQ +tMQ +tea aac aac -ofq -kqU -kqU -kqU -kqU -kqU -hke +dHZ +tMQ +tMQ +tMQ +tMQ +tMQ +jey aac aac fEU @@ -24845,9 +24845,9 @@ tTi fEU eET tTi -cyG -nMI -pOH +ohw +dpW +oBp eET hRQ eET @@ -24963,17 +24963,17 @@ caS caS caS aac -egt -ily -ucA -kqU -eZr -djh -djh -rnW -nsx -djh -gZz +reG +cam +jTP +tMQ +nYb +cFw +cFw +pmT +grH +cFw +gzf aac aac mKr @@ -24981,13 +24981,13 @@ mKr mKr aac aac -rDB -cMI -kqU -kqU -kqU -kqU -iTt +swf +iCI +tMQ +tMQ +tMQ +tMQ +rfq aac aac lnR @@ -25119,37 +25119,37 @@ puZ caS caS caS -tKX -gDI +eOx +pUj caS caS caS aac aac -lfG -xCd -djh -djh -lfG +aRW +rRI +cFw +cFw +aRW aac aac -nPD -wJo -ped +qvF +kvk +duD aac aac -pBL -pBL -pBL +xxl +xxl +xxl aac aac -cvh -lfG -djh -djh -djh -lfG -eZr +nVi +aRW +cFw +cFw +cFw +aRW +nYb aac aac lnR @@ -25280,19 +25280,19 @@ puZ puZ caS caS -tKX -tKX -xSG +eOx +eOx +fhS caS caS caS aac aac -cDa -cDa -cDa -cDa -cDa +gjq +gjq +gjq +gjq +gjq aac aac mKr @@ -25300,17 +25300,17 @@ mKr mKr aac aac -sjw -sjw -sjw +fbQ +fbQ +fbQ aac aac aac -cDa -dNe -dNe -dNe -cDa +gjq +agH +agH +agH +gjq aac aac aac @@ -25375,8 +25375,8 @@ ntJ puZ puZ puZ -jtQ -uEH +fJW +tXh xAS xAS oRH @@ -25442,12 +25442,12 @@ puZ puZ caS caS -gDI -tKX -gDI -xSG -xSG -cVR +pUj +eOx +pUj +fhS +fhS +bUu aac aac odz @@ -25457,22 +25457,22 @@ odz odz aac aac -pBL -pBL -pBL +xxl +xxl +xxl aac aac -oxF -xSG -xSG -xSG +xQb +fhS +fhS +fhS aac aac -kqU -kqU -kqU -kqU -kqU +tMQ +tMQ +tMQ +tMQ +tMQ aac aac vUR @@ -25543,11 +25543,11 @@ xAS aFO xAS oRH -dMn -woy -qYy -pxF -wRj +uyd +rUc +qDN +qch +kLj tlB oRH hBq @@ -25558,12 +25558,12 @@ puZ slO slO slO -rKZ -dsK +jlX +wSK puZ -jnF -hkE -olS +giB +aQt +iTh qza mNs slO @@ -25606,39 +25606,39 @@ caS caS caS caS -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS aac aac -cDa -cDa -cDa -cDa -cDa +gjq +gjq +gjq +gjq +gjq aac aac -vhq -sjw -sjw +lxh +fbQ +fbQ aac aac -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS aac aac -cDa -dNe -dNe -cDa -cDa +gjq +agH +agH +gjq +gjq aac aac -xDN -dNz +fnD +ujW sVJ fEU lrt @@ -25694,11 +25694,11 @@ puZ wMh wMh wMh -bqk +cQy ntJ puZ puZ -lPI +fBs xAS xAS xAS @@ -25706,9 +25706,9 @@ aFO hBq oRH tlB -qYx +qRY eHY -kvP +bqS oRH lfe oRH @@ -25717,10 +25717,10 @@ puZ puZ puZ puZ -sjG -sjG +lmD +lmD niL -cmo +lAZ aDM uqb uqb @@ -25729,7 +25729,7 @@ uqb mfa jqx slO -liE +kCE oqH uqb aDM @@ -25768,42 +25768,42 @@ caS caS caS caS -xSG -xSG -xSG -xSG -xSG -xSG -hRR -uQH -uQH -uQH -hRR -xSG -iOn -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -hRR -uQH -uQH -uQH -hRR -xSG -xSG -xSG +fhS +fhS +fhS +fhS +fhS +fhS +jYP +rYk +rYk +rYk +jYP +fhS +uyK +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +jYP +rYk +rYk +rYk +jYP +fhS +fhS +fhS uzM jRI jRI -vuw +wSi caS caS caS @@ -25860,7 +25860,7 @@ wMh wMh puZ puZ -lPI +fBs tlB oRH aFO @@ -25891,7 +25891,7 @@ hXX kLM mOv niL -cmo +lAZ kLM uqb uqb @@ -25928,11 +25928,11 @@ puZ puZ caS caS -iIb -dog -xSG -xSG -xSG +aSq +cuD +fhS +fhS +fhS mhP mhP mhP @@ -25956,15 +25956,15 @@ mhP mhP mhP mhP -xSG -xSG -fTF -xSG -xSG +fhS +fhS +cuU +fhS +fhS xYx -xSG +fhS nNd -gbV +roz nNd caS caS @@ -25977,10 +25977,10 @@ kOV eni eni lnR -haH -etx -nMI -haH +ulN +aHJ +dpW +ulN fEU eET hRQ @@ -26022,12 +26022,12 @@ puZ puZ puZ puZ -xqn -woy -qYy -xbo +lju +rUc +qDN +oRX aFO -eEW +fJZ aFO aFO aFO @@ -26090,46 +26090,46 @@ puZ puZ caS caS -tKX -xSG -xSG -xSG +eOx +fhS +fhS +fhS mhP mhP -iYo -jkg -osd -tqp -ajc -jkg -osd -gXi -tyf -sSA -ncl -tqp -ajc -jkg -osd -tqp -ajc -jkg -osd -tqp -eoT +cxj +kRy +scl +kbs +jWw +kRy +scl +dIm +tHx +joI +iGO +kbs +jWw +kRy +scl +kbs +jWw +kRy +scl +kbs +lup mhP mhP -xSG -xSG -wfw -xSG -xSG -xSG -xSG +fhS +fhS +wbB +fhS +fhS +fhS +fhS xYx -xSG -xSG -xSG +fhS +fhS +fhS caS caS mMK @@ -26142,7 +26142,7 @@ lnR rdh bQZ rdh -nMI +dpW fEU eET uIC @@ -26185,15 +26185,15 @@ puZ puZ puZ xAS -tbJ +lrd xAS -nuZ +hTq aFO aFO aFO aFO -rmV -wLM +fjJ +hvg xAS oRH aFO @@ -26254,43 +26254,43 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -vFQ -xSG -nKI -xSG -xSG -xSG -xSG -xSG -xSG -uEI -uEI -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -nKI -xSG -kUm +vCu +fhS +gGx +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +gGx +fhS +sCV mhP -xSG -uEI -uEI -xSG -xSG +fhS +pde +pde +fhS +fhS xYx -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS xYx caS caS @@ -26304,7 +26304,7 @@ lnR lnR lnR rdh -cPJ +cVO iIP eET gNw @@ -26338,7 +26338,7 @@ puZ puZ puZ wMh -jOF +xOm wMh puZ puZ @@ -26355,7 +26355,7 @@ aFO xAS xAS oRH -vgk +kDp oRH oRH xAS @@ -26416,42 +26416,42 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -sqT -nKI -xSG -xSG -xSG -xSG +bBo +gGx +fhS +fhS +fhS +fhS gkY gkY gkY -uEI -uEI -xSG -kYv -xSG -xSG +pde +pde +fhS +kOM +fhS +fhS gkY gkY gkY gkY -xSG -xSG -nKI -yht +fhS +fhS +gGx +iVu mhP -xSG -uEI -uEI -xSG -xSG -xSG +fhS +pde +pde +fhS +fhS +fhS xYx -xSG -xSG +fhS +fhS caS caS caS @@ -26466,7 +26466,7 @@ lnR lnR lnR rdh -cyG +ohw fEU tTi tTi @@ -26499,7 +26499,7 @@ puZ puZ puZ jmW -dvp +oQa wMh pcY pcY @@ -26515,7 +26515,7 @@ aFO aFO xAS oRH -hhi +qTv xAS aFO oRH @@ -26576,16 +26576,16 @@ puZ puZ caS caS -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS mhP -fBV -xSG -xSG -kYv -xSG +nYG +fhS +fhS +kOM +fhS gkY gkY gkY @@ -26595,25 +26595,25 @@ gkY gkY gkY gkY -xSG +fhS gkY gkY gkY gkY -xSG -kYv +fhS +kOM gkY -rCy +fBo mhP -xSG -uEI -uBi -xSG -xSG -xSG +fhS +pde +boJ +fhS +fhS +fhS xYx -xSG -xSG +fhS +fhS caS caS caS @@ -26660,9 +26660,9 @@ puZ puZ puZ wMh -azT +cqH jmW -dhB +sIj ntJ ntJ wMh @@ -26675,7 +26675,7 @@ aFO aFO oRH xAS -gJJ +noB tlB xAS aFO @@ -26683,8 +26683,8 @@ xAS xAS oRH oRH -vvj -gHX +bIT +oQE xMz xMz uqb @@ -26738,16 +26738,16 @@ puZ puZ caS caS -iIb -xSG -xSG -xSG +aSq +fhS +fhS +fhS mhP -uCD -xSG -xSG -xSG -xSG +knR +fhS +fhS +fhS +fhS gkY gkY gkY @@ -26763,21 +26763,21 @@ gkY gkY gkY gkY -xSG +fhS gkY -iNG +uSz mhP -xSG -tSF -tZI -iZA -xSG -xSG -xSG -xSG -wfw -xSG -xSG +fhS +pqg +lWM +dGR +fhS +fhS +fhS +fhS +wbB +fhS +fhS caS caS mMK @@ -26821,9 +26821,9 @@ puZ puZ puZ puZ -jOF +xOm wMh -jOF +xOm wMh wMh jmW @@ -26837,14 +26837,14 @@ aFO xAS xAS tlB -uGI -lTB -qYy -aUG +eRc +feB +qDN +rVy oRH oRH xAS -pmu +sRs aFc wMh xMz @@ -26902,10 +26902,10 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -qYs +fKM gkY gkY gkY @@ -26927,19 +26927,19 @@ gkY gkY gkY gkY -qEP +bzN mhP -xSG -uEI -nDD -iZA -xSG -xSG -xSG -xSG -xSG -fTF -xSG +fhS +pde +ozl +dGR +fhS +fhS +fhS +fhS +fhS +cuU +fhS caS caS mMK @@ -26983,9 +26983,9 @@ puZ puZ puZ puZ -jOF +xOm wMh -jOF +xOm wMh wMh wMh @@ -27000,9 +27000,9 @@ xAS hBq xAS pcY -tbI +sml hBq -eEK +bnj xAS oRH xAS @@ -27064,10 +27064,10 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -sqT +bBo gkY gkY gkY @@ -27087,19 +27087,19 @@ gkY gkY gkY gkY -uEI -uEI -eus +pde +pde +aZJ mhP -xSG -vSH -kUx -iZA -xSG -xSG -wfw -xSG -xSG +fhS +uNt +dLy +dGR +fhS +fhS +wbB +fhS +fhS caS caS caS @@ -27144,10 +27144,10 @@ puZ puZ puZ puZ -jOF +xOm jmW -jOF -jOF +xOm +xOm wMh abH wMh @@ -27165,7 +27165,7 @@ pcY pcY pcY pcY -htV +rAM oRH oRH xAS @@ -27226,10 +27226,10 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -fBV +nYG gkY gkY gkY @@ -27240,7 +27240,7 @@ gkY gkY gkY gkY -goO +lFw gkY gkY gkY @@ -27249,19 +27249,19 @@ gkY gkY gkY gkY -uEI -uEI -kBh +pde +pde +hOt mhP -xSG -uEI -uWH -xSG +fhS +pde +pQf +fhS wMj wMj -fTF -xSG -xSG +cuU +fhS +fhS mJA caS caS @@ -27306,8 +27306,8 @@ puZ puZ puZ puZ -azT -jOF +cqH +xOm wMh wMh wMh @@ -27328,7 +27328,7 @@ pcY pcY pcY pcY -bAc +dmI tlB xAS oRH @@ -27388,10 +27388,10 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -uCD +knR gkY gkY gkY @@ -27411,25 +27411,25 @@ gkY gkY gkY gkY -uEI -uEI -yet +pde +pde +rGf mhP -xSG -uEI -uEI -xSG +fhS +pde +pde +fhS wMj wMj -xSG -xSG -xSG -oLx +fhS +fhS +fhS +hhv hHY -iZA -xSG +dGR +fhS mhP -hRR +jYP waE ntc ntc @@ -27468,7 +27468,7 @@ puZ puZ puZ puZ -enP +iok jmW jmW pcY @@ -27490,11 +27490,11 @@ pcY pcY pcY pcY -dyU -nNT +baA +ahj tlB -nNT -dyU +ahj +baA xMz uqb kLM @@ -27550,10 +27550,10 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -qYs +fKM gkY gkY gkY @@ -27575,23 +27575,23 @@ gkY gkY gkY gkY -qEP +bzN mhP -vDz -uEI -uEI -uEI -uEI -uEI -uEI -uEI -uEI -pBB +oCQ +pde +pde +pde +pde +pde +pde +pde +pde +gHw dkP -iZA -xSG +dGR +fhS mhP -bKy +njD vYm vYm ntc @@ -27626,10 +27626,10 @@ puZ wMh wMh tlB -xrg +nzn tlB -rRx -xrg +pdb +nzn xAS wMh abB @@ -27710,16 +27710,16 @@ puZ puZ caS caS -iIb -xSG -xSG -xSG +aSq +fhS +fhS +fhS mhP -sqT -xSG -xSG -xSG -xSG +bBo +fhS +fhS +fhS +fhS gkY gkY gkY @@ -27735,25 +27735,25 @@ gkY gkY gkY gkY -xSG +fhS gkY -yht +iVu mhP -kLL -uEI -uEI -uEI -uEI -egI -uEI -uEI -uEI -bKy +gen +pde +pde +pde +pde +qom +pde +pde +pde +njD vom -xSG -xSG +fhS +fhS mhP -bKy +njD vYm vYm vYm @@ -27787,20 +27787,20 @@ tlB tlB oRH oRH -bCG +uFg jmW -nHW -bCG +uTs +uFg jmW -ukn -npQ +eDA +sng wMh pcY aFO aFO wMh -xXl -xXl +lWv +lWv wMh xAS oRH @@ -27851,7 +27851,7 @@ lNg uqb kLM kLM -nLf +dkx kAw kAw puZ @@ -27872,16 +27872,16 @@ puZ puZ caS caS -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS mhP -fBV -xSG -xSG -kYv -xSG +nYG +fhS +fhS +kOM +fhS gkY gkY gkY @@ -27891,31 +27891,31 @@ gkY gkY gkY gkY -xSG +fhS gkY gkY gkY gkY -xSG -kYv +fhS +kOM gkY -rCy +fBo mhP -xSG -uEI -uEI -xSG -fTF -dBw -xSG -xSG -xSG -fmK +fhS +pde +pde +fhS +cuU +wQr +fhS +fhS +fhS +odT mhP -xSG -xSG +fhS +fhS mhP -hRR +jYP gRx ntc vYm @@ -27935,9 +27935,9 @@ eET eET eET eET -haH -wNt -haH +ulN +dRz +ulN eET wMh wMh @@ -27949,34 +27949,34 @@ oRH tlB tlB tlB -frU -kGI -ltB +rlo +xoe +xAg tlB -btz +njL tlB xAS wMh wMh aFO wMh -cKW -bFQ -xXl -xXl +dNh +pKx +lWv +lWv wMh hBq xAS vpD vpD vpD -spd -rVT +hHi +hBB pcY pcY pcY pcY -wiL +iYv xAS aFO xAS @@ -28013,7 +28013,7 @@ wgM kLM ath iQq -nLf +dkx cwZ kAw puZ @@ -28036,42 +28036,42 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -uCD -nKI -xSG -xSG -xSG -xSG +knR +gGx +fhS +fhS +fhS +fhS gkY gkY gkY -uEI -uEI -xSG -kYv -xSG -xSG +pde +pde +fhS +kOM +fhS +fhS gkY gkY gkY gkY -xSG -xSG -nKI -iNG +fhS +fhS +gGx +uSz mhP -xSG -jaN -kUx -iZA -xSG -xSG -xSG -izb -xSG +fhS +csM +dLy +dGR +fhS +fhS +fhS +tTm +fhS las caS caS @@ -28097,9 +28097,9 @@ bmv fEU fEU fEU -haH -itu -haH +ulN +bRA +ulN fEU wMh pcY @@ -28109,27 +28109,27 @@ tlB oRH xAS tlB -tga +nTs xAS tlB mCQ pPK eFI tlB -tga -xQl +nTs +xGh xAS wMh eFI wMh -cKW -cKW -cmQ -xXl +dNh +dNh +eZL +lWv wMh wMh wMh -aic +fHq ben vpD vpD @@ -28175,7 +28175,7 @@ erj kLM tcp iQq -nLf +dkx cwZ kAw kAw @@ -28198,42 +28198,42 @@ caS caS caS caS -xSG -xSG +fhS +fhS mhP -gsZ -xSG -nKI -xSG -xSG -xSG -xSG -xSG -xSG -uEI -uEI -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -nKI -xSG -tRm +hfD +fhS +gGx +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +gGx +fhS +wsF mhP -xSG -mId -mId -xSG -xSG -xSG -tTr -mQM -jDv +fhS +kat +kat +fhS +fhS +fhS +inS +uLi +hME caS caS caS @@ -28259,9 +28259,9 @@ fEU fEU fEU fEU -haH -haH -haH +ulN +ulN +ulN fEU wMh pcY @@ -28278,16 +28278,16 @@ pcY jmW nuY wMh -bCG +uFg jmW -nHW +uTs wMh wMh wMh wMh -cKW -syI -xXl +dNh +siJ +lWv wMh ntJ ntJ @@ -28300,11 +28300,11 @@ pcY pcY pcY pcY -dyU -nNT +baA +ahj xAS -nNT -dyU +ahj +baA xMz cnt cnt @@ -28337,12 +28337,12 @@ xMz xMz iQq kLM -nLf +dkx cwZ kAw kAw hrk -geo +fEv puZ puZ puZ @@ -28358,46 +28358,46 @@ puZ puZ caS caS -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS mhP mhP -lHi -dcf -cmu -cMa -otg -dcf -cmu -ruy -wKO -tgP -vwf -cMa -otg -pYH -cmu -cMa -otg -dcf -cmu -cMa -euS +bix +qzB +qbs +hRb +jXs +qzB +qbs +rgW +rLM +qTR +aZK +hRb +jXs +uar +qbs +hRb +jXs +qzB +qbs +hRb +rLn mhP mhP -xSG -uEI -uEI -xSG -hRR -kFe -dMv -eGA -xSG -xSG -rTL +fhS +pde +pde +fhS +jYP +lDO +afa +jlm +fhS +fhS +rWe wMj wMj mMK @@ -28441,15 +28441,15 @@ pcY pcY wMh tlB -kGI -vnu +xoe +nYU xAS xAS wMh -cKW -cKW +dNh +dNh wMh -xXl +lWv wMh jmW ntJ @@ -28499,7 +28499,7 @@ xMz xMz xMz iQq -nLf +dkx cwZ kAw kAw @@ -28520,11 +28520,11 @@ puZ puZ caS caS -xSG -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS +fhS mhP mhP mhP @@ -28548,18 +28548,18 @@ mhP mhP mhP mhP -xSG +fhS wMj wMj -uEI -xSG -ceN -jDv -jDv -bKy -dBw -xSG -rTL +pde +fhS +gGU +hME +hME +njD +wQr +fhS +rWe wMj wMj mMK @@ -28603,7 +28603,7 @@ pcY pcY ouS tlB -ndi +aGA wMh wMh wMh @@ -28684,44 +28684,44 @@ caS caS caS caS -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -uEI -uEI -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -uEI +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde wMj wMj -uEI -xSG -npm -dBw -xSG -bKy -xSG -izb -hRR +pde +fhS +jjd +wQr +fhS +njD +fhS +tTm +jYP wMj wMj wMj @@ -28780,7 +28780,7 @@ wMh wMh ntJ wMh -nNT +ahj xAS hBq tlB @@ -28846,44 +28846,44 @@ caS caS caS caS -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -uEI -uEI -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -uEI -uEI -oRP -lwm -izb -noM -npm -xTS -hRR -xSG -mQM -xdl +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +vFy +lYr +tTm +jod +jjd +ezh +jYP +fhS +uLi +exC wMj wMj wMj @@ -28942,7 +28942,7 @@ xAS wMh ntJ wMh -cxR +eNx hBq tlB tlB @@ -29006,46 +29006,46 @@ puZ puZ caS caS -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -xSG -vkQ -uEI -uEI -xSG -fat -sSR -xSG -xSG -xSG -xSG -xSG -ela -iyf -xSG -vkQ -uEI -uEI -xSG -fat -tzt -jDv -izb -xSG -izb -jDv -jDv -jDv +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +rOT +pde +pde +fhS +xBN +keh +fhS +fhS +fhS +fhS +fhS +mRL +usK +fhS +rOT +pde +pde +fhS +xBN +maf +hME +tTm +fhS +tTm +hME +hME +hME wMj wMj mMK @@ -29082,14 +29082,14 @@ wMh pcY pcY pcY -hDJ +hqe xAS tze wMh wMh -pUi +pWn tlB -rst +irl cQY aNy xtc @@ -29168,46 +29168,46 @@ puZ puZ caS caS -xSG -xSG -xSG +fhS +fhS +fhS caS caS -xSG -xSG +fhS +fhS caS caS -xSG -lFV +fhS +wAk caS voH -hRR -xTS -xTS -hRR +jYP +ezh +ezh +jYP las caS -xSG -xSG +fhS +fhS wMj wMj -xSG -xSG +fhS +fhS caS voH -hRR -mVn -mIW -hRR +jYP +bFQ +pSV +jYP las caS -ffg -xSG -izb -jDv -jDv -fsg -jDv +rof +fhS +tTm +hME +hME +uOr +hME wMj wMj mMK @@ -29247,12 +29247,12 @@ xhU wMh tlB tlB -rRx -xrg -rRx +pdb +nzn +pdb tlB tlB -psw +fuA wMh wMh tlB @@ -29266,7 +29266,7 @@ wMh wMh wMh wMh -cxR +eNx hBq aFO aFO @@ -29331,16 +29331,16 @@ puZ caS caS caS -xSG -xSG +fhS +fhS caS caS -xSG -xSG +fhS +fhS caS caS -xSG -xSG +fhS +fhS caS caS mhP @@ -29349,12 +29349,12 @@ mhP mhP caS caS -xSG -xSG +fhS +fhS wMj wMj -xSG -xSG +fhS +fhS caS caS xRy @@ -29363,12 +29363,12 @@ mhP xru caS caS -gCU -gCU -hRR -uxg -jDv -jDv +pHo +pHo +jYP +tPr +hME +hME wMj wMj wMj @@ -29406,12 +29406,12 @@ oRH oRH cQY oRH -eed +rXg tlB tlB -bCG +uFg jmW -nHW +uTs tlB wMh wMh @@ -29428,7 +29428,7 @@ wMh wMh wMh wMh -nNT +ahj xAS tlB xAS @@ -29462,9 +29462,9 @@ iOu iQq iQq uqb -lkD -tFo -tFo +xHv +auF +auF hzJ hzJ xMz @@ -29505,10 +29505,10 @@ wMj wMj caS caS -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS caS caS wMj @@ -29519,17 +29519,17 @@ wMj wMj caS caS -jDv -jDv -jDv -jDv +hME +hME +hME +hME caS caS wMj wMj wMj wMj -bGo +hCh wMj wMj wMj @@ -29571,9 +29571,9 @@ xAS tlB oRH tlB -rRx -jXf -rRx +pdb +hdO +pdb tlB tlB wMh @@ -29601,8 +29601,8 @@ xAS xAS xAS xAS -mdT -kyh +bfw +cmN tlB uji uji @@ -29667,10 +29667,10 @@ wMj wMj caS caS -xSG -xSG -xSG -xSG +fhS +fhS +fhS +fhS caS caS wMj @@ -29681,17 +29681,17 @@ wMj wMj caS caS -jDv -jDv -mQM -jDv +hME +hME +uLi +hME caS caS wMj wMj wMj wMj -bGo +hCh wMj wMj wMj @@ -29733,9 +29733,9 @@ pZB wMh wMh aaA -bCG +uFg jmW -nfQ +cut xAS xAS tlB @@ -29761,10 +29761,10 @@ pcY pcY pcY xAS -bSJ -hMM +kmD +gcH xAS -unH +fUa tlB uji uji @@ -29895,9 +29895,9 @@ pcY gXW gXW kQW -vnu -xcy -vnu +nYU +nGD +nYU tlB wMh wMh @@ -29991,10 +29991,10 @@ eni eni caS mBM -hRR -xTS -xTS -hRR +jYP +ezh +ezh +jYP mJA caS ocb @@ -30005,10 +30005,10 @@ mMK eni caS mBM -hRR -mIW -xTS -hRR +jYP +pSV +ezh +jYP mJA caS eni @@ -30084,16 +30084,16 @@ uji uji uji uKZ -hkU -hkU -hkU -qJn -hkU +wYy +wYy +wYy +gMf +wYy uKZ uji -mif -rJk -mif +kfw +wfp +kfw uji uji kLM @@ -30165,7 +30165,7 @@ mMK mMK eni mMK -bic +wNT ntc aqD vYm @@ -30240,10 +30240,10 @@ pcY pcY pcY uji -xSa -kTp +nGm +gxJ pvv -lyP +krd pvv pvv aWY @@ -30255,7 +30255,7 @@ pvv pvv pvv pvv -hkU +wYy uji ofw kop @@ -30385,7 +30385,7 @@ cxr idR jHg aui -xcM +pzY tlB tlB tlB @@ -30402,8 +30402,8 @@ pcY pcY pcY uji -pNw -xSa +exl +nGm pvv aTn pvv @@ -30417,12 +30417,12 @@ pvv pvv pvv pvv -hkU +wYy hGj tHd xvp kop -rKi +eTa kop kyD kyD @@ -30433,11 +30433,11 @@ kyD tHd kop tHd -mGZ +fBw ofw huz kys -olG +hDb rdS axJ axJ @@ -30564,8 +30564,8 @@ wMh pcY pcY uji -hkU -xSa +wYy +nGm pvv pvv aTh @@ -30579,7 +30579,7 @@ pvv pvv pvv pvv -hkU +wYy hGj tHd kyD @@ -30726,22 +30726,22 @@ ntJ wMh wMh uKZ -hkU -xSa +wYy +nGm pvv pvv aUw -iYd +rVh aWQ aVN aVN aVN -qMb +cmc aVx dbH pvv pvv -cis +xAK hGj kyD kyD @@ -30874,9 +30874,9 @@ wMh jJv afY tlB -rst +irl wMh -bvF +nBZ tlB tlB tlB @@ -30888,29 +30888,29 @@ wMh ntJ ntJ uKZ -tkw -xSa +hAi +nGm pvv aTh aUx -tRe -jdJ -lKu -xPC -lKu -jdJ -jwi +qAx +uUr +bzk +lTM +bzk +uUr +tFu aWQ dbH fhv -hkU +wYy hGj tHd tHd kyD kyD tHd -xYw +hIO kyD kyD kyD @@ -30920,8 +30920,8 @@ kyD kyD kyD kyD -mCX -fyj +dHc +hOX qIr axJ axJ @@ -30937,7 +30937,7 @@ kAw kAw kAw kAw -nxJ +cks oFl puZ puZ @@ -31050,40 +31050,40 @@ wMh ntJ ntJ uKZ -tkw -xSa +hAi +nGm pvv aTi -nbq -tRe -jdJ -tRe -tRe -tRe -jdJ -iZS -xAW -tOX +wSj +qAx +uUr +qAx +qAx +qAx +uUr +nKC +sLh +qCm gIQ -hkU +wYy hGj kop kop kop tHd kyD -psO +kqk kyD kyD kyD -plO +cJk kyD kyD kyD kyD kyD -sZh -bIT +rQD +ppR alS aMW ans @@ -31100,7 +31100,7 @@ nZA kAw kAw rBk -kdg +cDd puZ puZ puZ @@ -31201,9 +31201,9 @@ tlB hBq pcY pcY -nNT -nNT -nNT +ahj +ahj +ahj pcY pcY pcY @@ -31212,29 +31212,29 @@ wMh wMh wMh uKZ -hkU -xSa +wYy +nGm pvv aTj aUz -xAW -jdJ -ipd -xxK -ipd -jdJ -gLO +sLh +uUr +dkq +hIc +dkq +uUr +wLs aWU deV eVG -hkU +wYy hGj kop tHd tHd kyD kyD -psO +kqk kyD tHd kyD @@ -31244,8 +31244,8 @@ kyD kyD kyD kyD -mCX -fyj +dHc +hOX qIr rdS axJ @@ -31374,22 +31374,22 @@ uji uKZ uKZ uji -pNw -xSa +exl +nGm pvv fhv -tOX -iYd +qCm +rVh aWU aVx aVx aVx -qMb +cmc aVN deV dKR pvv -hkU +wYy hGj tHd kyD @@ -31406,8 +31406,8 @@ kyD kyD kyD kyD -mCX -fyj +dHc +hOX qIr aut rdS @@ -31533,11 +31533,11 @@ pcY pcY pcY uKZ -szz -sQh -wLV -hkU -xSa +mWb +jZh +jXf +wYy +nGm aSA gIQ aTj @@ -31551,7 +31551,7 @@ pvv pvv pvv pvv -hkU +wYy hGj kyD kyD @@ -31599,15 +31599,15 @@ puZ puZ puZ puZ -cRK -cRK -cRK -cRK -cRK -dBU -hEO -hEO -dBU +tUF +tUF +tUF +tUF +tUF +cgK +yiE +yiE +cgK ntc aEJ mMK @@ -31695,11 +31695,11 @@ pcY pcY pcY uKZ -sQh -kfz -xSa -hkU -xSa +jZh +dWV +nGm +wYy +nGm pvv pvv pvv @@ -31713,7 +31713,7 @@ pvv pvv pvv pvv -hkU +wYy hGj kyD xvp @@ -31727,7 +31727,7 @@ kyD kyD kyD kyD -lRU +lfv kyD xvp tHd @@ -31760,16 +31760,16 @@ puZ puZ puZ puZ -cRK -cRK -xWi -dlQ -cjW -cRK -dUq -mFx -hMr -sRX +tUF +tUF +exQ +gMT +reH +tUF +vnI +hTf +fhL +wND ntc ntc eni @@ -31842,10 +31842,10 @@ wMh oRH xAS tlB -oAf -wAo +qeJ +icQ tlB -frc +uAx oRH tlB pcY @@ -31857,11 +31857,11 @@ pcY pcY pcY uKZ -eeP -qup -wLV -xSa -xSa +wcZ +jvB +jXf +nGm +nGm pvv pvv pvv @@ -31875,13 +31875,13 @@ pvv pvv pvv pvv -tjM +jpU uji -sPh -gtH -oPg -gtH -uAr +iog +jpV +mQE +jpV +jwH jXD tHd kyD @@ -31894,7 +31894,7 @@ huz huz huz huz -tcO +mmI axJ rxd sFv @@ -31922,16 +31922,16 @@ puZ puZ puZ puZ -cRK -lKp -dPy -dPy -tQi -ita -mFx -dUq -dUq -sRX +tUF +rlV +hDO +hDO +riu +nCw +hTf +vnI +vnI +wND ntc vYm ntc @@ -31973,7 +31973,7 @@ toD mMK ntc mHn -pyd +fOI lTr nUq kOV @@ -32003,9 +32003,9 @@ tlB wMh oRH xAS -bCG +uFg jmW -nfQ +cut tlB oRH oRH @@ -32027,10 +32027,10 @@ uji qLA uji uKZ -xIT -hkU -hkU -xSa +dri +wYy +wYy +nGm uKZ bFS ail @@ -32043,7 +32043,7 @@ iMA iMA iMA uKZ -xSl +bcw ofw aQJ kyD @@ -32051,7 +32051,7 @@ kyD tHd kop huz -juU +xmN ieD aKR aDu @@ -32084,16 +32084,16 @@ puZ puZ puZ puZ -cRK -pWD -dPy -dPy -tQi -ita -lna -mFx -dUq -dBU +tUF +ebH +hDO +hDO +riu +nCw +beM +hTf +vnI +cgK ntc aHP ntc @@ -32166,7 +32166,7 @@ wMh wMh oRH tlB -kGI +xoe tlB oRH tlB @@ -32179,13 +32179,13 @@ pcY pcY uji uji -hkU -fNk -ufz -yfb -cGO -rlW -fNk +wYy +tPw +oDw +aqJ +aHI +sOP +tPw bKV bKV uKZ @@ -32193,26 +32193,26 @@ nUa bKV bKV bKV -rlP -eJz -hkU -hkU -hkU -hkU -grV -hkU -dZx -jgc -uVh +hgh +gyB +wYy +wYy +wYy +wYy +uqV +wYy +way +ivx +jQG iMA -mJO -wBi +mGr +sNs tHd kyD kyD tHd -mCX -fyj +dHc +hOX qIr azS qny @@ -32245,19 +32245,19 @@ puZ puZ puZ puZ -cRK -cRK -dfi -dPy -nWo -tQi -dft -ita -ita -cRK -cRK -cRK -cRK +tUF +tUF +anQ +hDO +bwv +riu +hEw +nCw +nCw +tUF +tUF +tUF +tUF lFX ntc ntc @@ -32341,13 +32341,13 @@ xgH gQJ uji uji -hkU -hkU -hkU -hkU -hkU -hkU -hkU +wYy +wYy +wYy +wYy +wYy +wYy +wYy bKV bKV iMA @@ -32364,17 +32364,17 @@ pvv pvv pvv pvv -hkU -fvE +wYy +bBw iMA -mJO +mGr kop tHd kyD kyD tHd -mCX -fyj +dHc +hOX alW arW anJ @@ -32407,19 +32407,19 @@ puZ puZ puZ puZ -cRK -qqc -tQi -tQi -tQi -tQi -tQi -tQi -bVw -cRK -kro -kGq -cNm +tUF +qxn +riu +riu +riu +riu +riu +riu +uJv +tUF +qIS +rur +nAz gNM aMu azy @@ -32496,13 +32496,13 @@ aFO xAS aFO pcY -jaf +rwj qkC tzo qkC tGv -pNw -hkU +exl +wYy bKV bKV bKV @@ -32526,10 +32526,10 @@ pvv pvv pvv pvv -hkU +wYy uKZ uKZ -kXF +vPp tHd tHd kyD @@ -32558,7 +32558,7 @@ nZA nZA kAw kAw -nxJ +cks oFl puZ puZ @@ -32569,19 +32569,19 @@ puZ puZ puZ puZ -cRK -few -sge -xRv -dPy -xTm -dPy -xTm -dPy -tQi -fJA -xhQ -cRK +tUF +boe +jkF +nID +hDO +kOP +hDO +kOP +hDO +riu +cQL +hyF +tUF mHP ntc azB @@ -32658,13 +32658,13 @@ aFO aFO aFO xAS -egE +vQN aHd aIG tzo -eAT -hkU -hkU +iub +wYy +wYy bKV bKV aMK @@ -32679,19 +32679,19 @@ ocB bKV bKV bKV -ehh -gbj -hkU -hkU -hkU -dbh -hkU +ceU +ffN +wYy +wYy +wYy +ter +wYy pvv khz -hkU +wYy iMA -heH -aJO +jaT +sMS tHd kyD kyD @@ -32721,7 +32721,7 @@ kAw kAw kAw rBk -kdg +cDd puZ puZ puZ @@ -32731,19 +32731,19 @@ puZ puZ puZ puZ -cRK -mJP -wHa -lBf -lBf -lBf -lBf -lBf -uHY -pWT -kom -wuW -cRK +tUF +fGp +nDT +aAK +aAK +aAK +aAK +aAK +uBS +iqR +vPj +cxX +tUF gJI aEJ ntc @@ -32813,20 +32813,20 @@ oRH xAS tlB tlB -cda +cNE tlB tlB xAS aFO aFO aFO -egE +vQN tzo qkC tzo -egE -hkU -hkU +vQN +wYy +wYy bKV bKV bKV @@ -32837,17 +32837,17 @@ bKV ohE bKV uKZ -kTp -hkU -hkU -xSa +gxJ +wYy +wYy +nGm uKZ bwk cex cex cex uKZ -exy +jmK pvv pvv oCG @@ -32893,19 +32893,19 @@ puZ puZ puZ puZ -cRK -few -sge -ciR -dPy -xTm -eTS -xTm -bOk -ljf -xTm -wuW -cRK +tUF +boe +jkF +qdu +hDO +kOP +cij +kOP +gKV +wlY +kOP +cxX +tUF kXx eni ntc @@ -32982,13 +32982,13 @@ tlB xAS aFO xAS -sPI +xgj tzo qkC tzo -egE -hkU -hkU +vQN +wYy +wYy bKV bKV pzj @@ -32998,18 +32998,18 @@ bKV bKV bKV bKV -xSa +nGm bKV bKV bKV bKV -xSa +nGm bKV bKV bKV bKV iMA -kdQ +ivc pvv pvv oCG @@ -33018,7 +33018,7 @@ oCG kyD kyD kyD -cxq +uof tHd kyD kyD @@ -33055,19 +33055,19 @@ puZ puZ puZ puZ -cRK -tQi -egB -kIe -kIe -kIe -kIe -kIe -umQ -ksU -kom -wuW -qYH +tUF +riu +bLI +bAr +bAr +bAr +bAr +bAr +aBO +mnR +vPj +cxX +caK ayc qta azy @@ -33144,13 +33144,13 @@ aFO tlB xAS uji -vmd +czN tzo tzo aJj -egE -hkU -hkU +vQN +wYy +wYy bKV bKV aMK @@ -33160,24 +33160,24 @@ aPn bKV bKV bKV -hkU +wYy bKV bKV bKV bKV -pZf +lDY bKV bKV rfd bKV iMA -wGQ -hkU -pzo -hkU +biE +wYy +jCp +wYy iMA -xsP -wcV +oiI +dxG tHd kyD tHd @@ -33217,19 +33217,19 @@ puZ puZ puZ puZ -cRK -few -sge -ciR -dPy -xTm -dPy -xTm -dPy -tQi -gDv -uhn -cRK +tUF +boe +jkF +qdu +hDO +kOP +hDO +kOP +hDO +riu +dmg +cbX +tUF ayj eni iDn @@ -33311,8 +33311,8 @@ qkC tzo qkC mhS -pNw -hkU +exl +wYy bKV bKV bKV @@ -33322,12 +33322,12 @@ bKV bKV bKV bKV -hkU +wYy bKV bKV bKV bKV -hkU +wYy bKV bKV bKV @@ -33339,7 +33339,7 @@ iMA iMA uKZ uKZ -xSl +bcw tHd kyD kyD @@ -33379,19 +33379,19 @@ puZ puZ puZ puZ -cRK -iDg -tQi -tQi -tQi -tQi -tQi -tQi -bVw -cRK -knO -luP -cRK +tUF +jQX +riu +riu +riu +riu +riu +riu +uJv +tUF +qeN +jzN +tUF eni eni ntc @@ -33475,21 +33475,21 @@ dsx waS uji uji -hkU -hkU -fIB -hkU -hkU -hkU -iTJ +wYy +wYy +qwk +wYy +wYy +wYy +nwi bKV bKV -xSa +nGm bKV meg bKV bbi -vrb +dBD bKV meg bKV @@ -33501,7 +33501,7 @@ ftr obb vHX iMA -xSl +bcw tHd kyD kyD @@ -33541,19 +33541,19 @@ puZ puZ puZ puZ -cRK -cRK -vGb -dPy -dPy -tQi -ita -ita -ita -cRK -cRK -cRK -cRK +tUF +tUF +lYe +hDO +hDO +riu +nCw +nCw +nCw +tUF +tUF +tUF +tUF eni vYm vYm @@ -33571,7 +33571,7 @@ vYm vYm eni wlJ -pqN +nVZ umB pWf pWf @@ -33625,7 +33625,7 @@ wMh wMh wMh wMh -sIm +dPo wMh xAS aFO @@ -33647,10 +33647,10 @@ uji iMA iMA uKZ -xSa -cis -hkU -xSa +nGm +xAK +wYy +nGm uKZ iMA iMA @@ -33658,18 +33658,18 @@ uji uKZ uKZ bKV -xcm +rTj bKV krm iXx iMA -xSl +bcw kop tHd kyD -eVu +enA kop -vHn +nny huz qSW arZ @@ -33704,16 +33704,16 @@ puZ puZ puZ puZ -cRK -xqt -dPy -dPy -tQi -ita -mFx -dUq -hMr -dBU +tUF +vGG +hDO +hDO +riu +nCw +hTf +vnI +fhL +cgK eni ntc vYm @@ -33782,10 +33782,10 @@ aFO xAS aFO wMh -vlc +gvc wMh wMh -vlc +gvc wMh hPp pcY @@ -33799,25 +33799,25 @@ uji uji uji uji -fQJ +pRq bKV bKV aNg bKV -kkw +mVo uji -ehY -hkU -grV -hkU -hkU -oLo -hkU -grV -hkU -hkU -hkU -dqh +lsL +wYy +uqV +wYy +wYy +rYY +wYy +uqV +wYy +wYy +wYy +aXB uKZ giH uji @@ -33825,13 +33825,13 @@ iMA iMA iMA uKZ -xSl +bcw kop tHd kyD kyD tHd -pPx +uTm huz fjS anJ @@ -33866,16 +33866,16 @@ puZ puZ puZ puZ -cRK -tkk -dPy -dPy -tQi -ita -dUq -mFx -hMr -sRX +tUF +eiR +hDO +hDO +riu +nCw +vnI +hTf +fhL +wND eni ntc vYm @@ -33953,7 +33953,7 @@ pcY pcY wMh xAS -nit +pPp wMh wMh ntJ @@ -33961,11 +33961,11 @@ ntJ ntJ wMh iMA -kir +iyg bKV bKV -thl -kkw +oWH +mVo uji uji pvv @@ -33981,20 +33981,20 @@ pvv pvv pvv eGs -hkU +wYy uji -tGX -jKG -uNJ -uNJ -kph +jDO +lPP +gXz +gXz +emW tHd kyD kyD kyD kyD qIr -qPx +bOq qIr anG axJ @@ -34028,16 +34028,16 @@ puZ puZ puZ puZ -cRK -cRK -rqb -ojg -cLc -cRK -mFx -dUq -dUq -sRX +tUF +tUF +aNJ +ydv +qwB +tUF +hTf +vnI +vnI +wND eni ntc eni @@ -34115,7 +34115,7 @@ pcY jmW wMh aFO -nit +pPp wMh wMh wMh @@ -34123,13 +34123,13 @@ ntJ ntJ wMh iMA -tYW +csW aJU bKV -fQJ -kkw +pRq +mVo uji -ehY +lsL pvv aSA pvv @@ -34143,7 +34143,7 @@ pvv pvv pvv pvv -hkU +wYy hvZ tHd xvp @@ -34156,7 +34156,7 @@ kyD kyD kyD qIr -qPx +bOq qIr ans ans @@ -34191,15 +34191,15 @@ puZ puZ puZ puZ -cRK -cRK -cRK -cRK -cRK -dBU -hEO -hEO -dBU +tUF +tUF +tUF +tUF +tUF +cgK +yiE +yiE +cgK eni ntc mMK @@ -34268,16 +34268,16 @@ aFO gJe xAS aFO -vlc +gvc wMh wMh -vlc +gvc wMh pcY jmW wMh nuy -sNw +vsm wMh ntJ ntJ @@ -34291,7 +34291,7 @@ uji uji uji uji -hkU +wYy pvv pvv aTh @@ -34305,7 +34305,7 @@ pvv pvv aSA pvv -hkU +wYy hvZ tHd kyD @@ -34318,7 +34318,7 @@ kyD kyD kyD qIr -bIT +ppR alS ans axJ @@ -34450,24 +34450,24 @@ wMh fEl wMh hBq -oKs +miu uKZ -hkU -cis +wYy +xAK pvv pvv aUw -xkg +nig aWQ aVN aVN aVN -qMb +cmc aVN dbH wTz pvv -hkU +wYy hvZ kyD tHd @@ -34480,7 +34480,7 @@ tHd kyD kyD qIr -fyj +hOX qIr rdS rdS @@ -34610,26 +34610,26 @@ jmW wMh wMh fEl -bCw +auu hBq hBq uKZ -hkU -hkU +wYy +wYy pvv aTh aUx -kil -jdJ -lKu -xPC -lKu -jdJ -jwi +nJx +uUr +bzk +lTM +bzk +uUr +tFu aWQ dbH wvx -hkU +wYy hvZ tHd kyD @@ -34772,26 +34772,26 @@ pcY pcY pcY pcY -cBv -rsy +ilJ +aZc tlB uKZ -nXY -hkU +yho +wYy pvv aTi -nbq -tRe -oNx -tRe -sBd -tRe -jdJ -tRe -tRe +wSj +qAx +pbX +qAx +kwe +qAx +uUr +qAx +qAx dCS eoH -hkU +wYy hvZ kyD kyD @@ -34807,17 +34807,17 @@ huz huz dLi amH -iPT +sMd aMN faH hHf nTu -iPT +sMd iYC huz huz -fuN -uyw +dns +wpt kAw hrk kAw @@ -34938,22 +34938,22 @@ tlB hBq tlB uKZ -exy -hkU +jmK +wYy pvv aTj cov -klJ -jdJ -ipd -xxK -ipd -jdJ -gLO +rKu +uUr +dkq +hIc +dkq +uUr +wLs aWU deV uyI -hkU +wYy hvZ kyD kyD @@ -34978,8 +34978,8 @@ huz huz huz huz -ikk -uyw +iGE +wpt kAw kAw kAw @@ -35094,28 +35094,28 @@ pcY pcY pcY pcY -rsy +aZc hBq -pcp +mdC hBq tlB uKZ -tjP -hkU +jUT +wYy pvv pvv aUw -buP +hPU aWU aVx aVx aVx -qMb -tOX +cmc +qCm deV pti pvv -hkU +wYy hvZ tHd kyD @@ -35140,8 +35140,8 @@ huz huz huz huz -fuN -uyw +dns +wpt kAw kAw kAw @@ -35256,14 +35256,14 @@ pcY pcY pcY hBq -rsy +aZc hBq -bBe +nIb tlB tlB uKZ -qBL -hkU +qVR +wYy pvv pvv aTj @@ -35277,7 +35277,7 @@ gIQ oXM pvv pvv -hkU +wYy hvZ tHd tHd @@ -35291,7 +35291,7 @@ tHd kyD kyD kyD -gwx +tMs cwZ kAw kAw @@ -35424,8 +35424,8 @@ aFO hBq hBq uKZ -dqh -bTf +aXB +jBe pvv pvv pvv @@ -35439,7 +35439,7 @@ uaa pvv pvv pvv -hkU +wYy hvZ tHd xvp @@ -35453,7 +35453,7 @@ kyD kyD tHd kyD -eJS +qzG cwZ kAw kAw @@ -35463,7 +35463,7 @@ nZA hrk hrk nZA -rzq +uEV hrk nZA nZA @@ -35578,16 +35578,16 @@ pcY pcY pcY pcY -ozh -rsy +fAK +aZc tlB xAS -pcp +mdC xAS hBq uKZ -dqh -dZx +aXB +way pvv pvv pvv @@ -35601,9 +35601,9 @@ pvv pvv hZI pvv -cLp +vaB uji -bnZ +wXj ofw jMf tHd @@ -35615,7 +35615,7 @@ tHd tHd tHd tHd -hXb +sQP wSv kAw kAw @@ -35750,33 +35750,33 @@ oRH uKZ uKZ uKZ -hkU -hkU -hkU -hkU -hkU -hkU -qYn -hkU -qeG -hkU -lbD -lbD -bnK -lRJ +wYy +wYy +wYy +wYy +wYy +wYy +fGj +wYy +fRh +wYy +nJX +nJX +tEu +sUB uji -quL -quL -quL -tpb -tpb -ePC -nVu -nVu -nVu -bOX -tpb -tpb +poE +poE +poE +mqP +mqP +wCL +avL +avL +avL +iev +mqP +mqP sax sax sax @@ -35787,7 +35787,7 @@ kAw kAw kAw kAw -lhQ +sYf hrk hrk hrk @@ -35907,16 +35907,16 @@ xAS xAS aFO oRH -vjE +oGv xAS oRH hBq uKZ uKZ uji -mVe -xSa -vQS +txs +nGm +ldJ uji uKZ iMA @@ -36070,9 +36070,9 @@ aFO xAS xAS aFO -srV +cYu xAS -vXS +hSR aFO aFO uji @@ -36237,11 +36237,11 @@ oRH xAS aFO aFO -dTW -vHV -cKW -vHV -lPX +iki +fGU +dNh +fGU +gel kyD kyD kyD @@ -36399,11 +36399,11 @@ xAS aFO aFO aFO -uQG -mHD -cKW -mHD -pML +jtI +iYR +dNh +iYR +jxe kyD kyD kyD @@ -36561,11 +36561,11 @@ aFO aFO aFO aFO -uQG -mHD -cKW -mHD -pML +jtI +iYR +dNh +iYR +jxe kyD kyD kyD @@ -36589,7 +36589,7 @@ tHd ofw sax hrk -khC +mai kAw nZA nZA @@ -36708,7 +36708,7 @@ pcY pcY wMh hBq -fsa +bCB oRH oRH xAS @@ -36723,11 +36723,11 @@ xAS aFO aFO aFO -uQG -mHD -cKW -mHD -pML +jtI +iYR +dNh +iYR +jxe tHd tHd tHd @@ -36749,13 +36749,13 @@ kyD kyD kyD kyD -fGH +pzM hrk kAw -kcx +qVt kAw nZA -kcx +qVt kAw aco kAw @@ -36869,9 +36869,9 @@ abz pcY wMh wMh -mTn +snR hBq -fwx +ezf oRH wMh xAS @@ -36885,11 +36885,11 @@ oRH xAS aFO aFO -gOQ -mHD -cKW -mHD -jFd +deP +iYR +dNh +iYR +koe jMf tHd kop @@ -36911,9 +36911,9 @@ kyD kyD tHd oDi -azl +lGX kAw -fZI +fmQ kAw nZA nZA @@ -37039,19 +37039,19 @@ wMh xAS aFO aFO -gCM +udt xAS -sbD +pAP tlB -sUv -nVi +uHr +kGR xAS aFO -xXl +lWv bni bni bni -xXl +lWv ofw jMf tHd @@ -37073,11 +37073,11 @@ kyD kyD kyD tHd -cMp +fYT kAw -fZI -kcx -fZI +fmQ +qVt +fmQ sax sax sax @@ -37209,8 +37209,8 @@ tlB tlB tlB tHd -ruC -ruC +odd +odd kyD kyD kyD @@ -37235,9 +37235,9 @@ ofw kop kyD kop -huc +vWm kAw -khC +mai nZA nZA acl @@ -37371,13 +37371,13 @@ tlB hBq tlB tHd -quL +poE kyD -ruC +odd kyD kyD -fmX -eyB +rSF +eJn kyD tHd kyD @@ -37391,20 +37391,20 @@ jMf jMf jMf qLS -nnT +gAd ofw kop mwE ofw kyD -huc +vWm kAw kAw -aoh +lfn hrk aco kAw -kcx +qVt hrk nZA nZA @@ -37525,15 +37525,15 @@ wMh wMh wMh oRH -dPc +loP hBq -dPc +loP hBq hBq xAS oRH kop -quL +poE kyD kyD kyD @@ -37561,8 +37561,8 @@ kop kyD ptm kAw -fZI -fZI +fmQ +fmQ nZA acp kAw @@ -37635,10 +37635,10 @@ vYm vYm vYm vYm -eNu -hEO -hEO -eNu +qxo +yiE +yiE +qxo ntc vYm vYm @@ -37647,22 +37647,22 @@ vYm vYm vYm vYm -eNu -hvN -mFx -eNu +qxo +tlw +hTf +qxo ntc -uee +qYr vYm mAK pWf eni ntc -eNu -hvN -dUq -hMr -eNu +qxo +tlw +vnI +fhL +qxo eni eni eni @@ -37686,7 +37686,7 @@ pcY jMf jMf jMf -dPc +loP oRH hBq oRH @@ -37695,11 +37695,11 @@ xAS tlB oRH kop -quL +poE kyD kyD -psO -psO +kqk +kqk kyD kyD kyD @@ -37718,7 +37718,7 @@ jMf ofw jMf ofw -hOY +xZh kop kop gss @@ -37797,10 +37797,10 @@ vYm vYm vYm vYm -dBU -mFx -lna -dBU +cgK +hTf +beM +cgK vYm vYm vYm @@ -37809,10 +37809,10 @@ vYm vYm ntc vYm -dBU -hvN -mFx -dBU +cgK +tlw +hTf +cgK vYm eni ntc @@ -37820,11 +37820,11 @@ pWf pWf pWf eni -dBU -dUq -dUq -hvN -dBU +cgK +vnI +vnI +tlw +cgK vYm eni eni @@ -37861,7 +37861,7 @@ kyD kyD kyD kyD -xYw +hIO kyD tHd kyD @@ -37959,10 +37959,10 @@ vYm ntc ntc ntc -dBU -hMr -hvN -dBU +cgK +fhL +tlw +cgK vYm ntc eni @@ -37971,10 +37971,10 @@ eni mMK kOV ntc -dBU -mFx -lna -dBU +cgK +hTf +beM +cgK eni vYm pWf @@ -37982,11 +37982,11 @@ pWf pWf pWf ntc -dBU -hMr -hvN -dUq -dBU +cgK +fhL +tlw +vnI +cgK vYm vYm vYm @@ -38018,12 +38018,12 @@ ofw jMf jMf jMf -kwg +iOE kyD kyD kyD kyD -quL +poE kyD kyD tHd @@ -38122,8 +38122,8 @@ ntc wag hLf hLf -lna -hvN +beM +tlw hLf hLf kOV @@ -38134,8 +38134,8 @@ mMK mMK rBH rBH -hvN -hvN +tlw +tlw rBH rBH dtq @@ -38145,9 +38145,9 @@ pWf pWf akG vfc -dUq -hvN -hvN +vnI +tlw +tlw vfc akG eni @@ -38185,7 +38185,7 @@ kyD kyD kyD kyD -quL +poE kyD kyD kyD @@ -38209,7 +38209,7 @@ jMf jMf kop kop -sGH +dbp sax sax sax @@ -38217,7 +38217,7 @@ sax sax kAw kAw -kcx +qVt kAw puZ puZ @@ -38307,9 +38307,9 @@ dtq dtq dtq rBH -xsf -skx -xsf +aMo +rGi +aMo aOW eni eni @@ -38342,12 +38342,12 @@ jMf kop tHd kop -eyB +eJn tHd kyD tHd kyD -quL +poE kyD kyD tHd @@ -38371,13 +38371,13 @@ tHd tHd jMf ofw -jlg +kam sax sax sax sax sax -kcx +qVt nZA kAw puZ @@ -38440,38 +38440,38 @@ vYm toD vYm ntc -eNu -dBU -dBU +qxo +cgK +cgK hLf hLf -gzN -mwW -xxC -xnj -pzb -reL -npH -mBh -xTs -reL -ddm -qOe -reL -rma -rma -lbe +uHo +vMc +tpK +nHo +eKM +kFp +gPj +jTy +dyP +kFp +nPJ +gQV +kFp +tHa +tHa +lQz rBH uCp wZW rBH -blJ -wAX -eju +nxx +rYV +roG rBH -sNQ -sda -sNQ +dUN +lNd +dUN aOW wCP vjy @@ -38491,7 +38491,7 @@ ntc kOV jMf jMf -hOY +xZh jMf kop kop @@ -38602,38 +38602,38 @@ toD vYm vYm vYm -sRX -mFx -mFx -lna +wND +hTf +hTf +beM lDx -xxC -xxC -xiQ -pfi -mlK -bcz -rma -rma -rma -rma -rma -mnR -uNh -sNQ -rma -uNh +tpK +tpK +lBw +cgX +oqO +bnK +tHa +tHa +tHa +tHa +tHa +qGe +jhP +dUN +tHa +jhP tFk fiK gQL rBH -blJ -wAX -pKv +nxx +rYV +uqT rBH -mvC -bcz -vpI +jGK +bnK +bLb aOW wCP eni @@ -38652,7 +38652,7 @@ kOV ntc ntc ofw -vix +sHQ ofw jMf jMf @@ -38667,11 +38667,11 @@ dYp jMf jMf kop -vPz +kai kyD kyD kyD -vPz +kai tHd kop gss @@ -38684,7 +38684,7 @@ tiO tiO tiO gss -pWE +gvH jMf jMf kop @@ -38702,7 +38702,7 @@ sax sax sax nZA -khC +mai nZA puZ puZ @@ -38764,38 +38764,38 @@ vYm toD vYm vYm -sRX -dUq -lna -dUq +wND +vnI +beM +vnI uGq -xiQ -xxC -xxC -pfi -mlK -bcz -rma -rma -rma -rma -mqz -rma -uNh -pHX -tXD -uNh +lBw +tpK +tpK +cgX +oqO +bnK +tHa +tHa +tHa +tHa +xRr +tHa +jhP +buq +xKv +jhP rBH rBH rBH rBH -xMT -mlK -rQJ -uNh -tXD -sNQ -rma +gHt +oqO +uaP +jhP +xKv +dUN +tHa nOd wCP eni @@ -38830,9 +38830,9 @@ dYp pqe tnu tnu -oUV -kHf -oUV +uLS +whm +uLS tnu tnu tnu @@ -38926,38 +38926,38 @@ toD vYm arR eni -eNu -dBU -dBU +qxo +cgK +cgK hLf hLf -xnj -uBs -uBs -xnj -mlK -bcz -rma -rma -rma -rma -rma -xYi -hkB -sNQ -sNQ -uNh +nHo +gyO +gyO +nHo +oqO +bnK +tHa +tHa +tHa +tHa +tHa +lWh +oDA +dUN +dUN +jhP tFk uCp wZW rBH -blJ -mlK -rQJ -uNh -sda -rma -sNQ +nxx +oqO +uaP +jhP +lNd +tHa +dUN nOd wCP wCP @@ -38992,9 +38992,9 @@ dYp pqe tnu tnu -orG -hxb -orG +tlI +oFb +tlI tnu tnu tnu @@ -39086,40 +39086,40 @@ mMK mMK kOV jCk -eNu +qxo ntc ntc ntc ntc hLf -kRC -pfi -oUA -oUA -pfi -mlK -reL -xSy -xSy -gkh -reL -nSA -ncf -reL -bcz -bcz -lbe +tZe +cgX +pkF +pkF +cgX +oqO +kFp +kln +kln +rWU +kFp +vIA +xZu +kFp +bnK +bnK +lQz rBH fiK -rit +oKM rBH -rQJ -mlK -rQJ -rTf -sNQ -iDD -sNQ +uaP +oqO +uaP +pOW +dUN +rjx +dUN nOd wCP wCP @@ -39141,7 +39141,7 @@ tHd tHd jMf tHd -yga +dsz tHd jMf ofw @@ -39153,11 +39153,11 @@ dYp dYp pqe tnu -paj -box +fZs +qSY xOb -fcZ -paj +wds +fZs tnu hcH pqe @@ -39248,40 +39248,40 @@ kOV aNX eni ntc -dBU +cgK vYm vYm vYm vYm wag -qWN -pfi -oUA -oUA -pfi -nJZ -nJZ -vvJ -nJZ +tAi +cgX +pkF +pkF +cgX +aSS +aSS +tRg +aSS rBH rBH rBH rBH rBH -uaF -ggZ +qum +rMt rBH rBH rBH rBH rBH -vlA -mlK -rQJ -uNh -rma -sNQ -sNQ +wxQ +oqO +uaP +jhP +tHa +dUN +dUN nOd wCP wCP @@ -39294,10 +39294,10 @@ wCP wCP nOd nOd -iYt -jvs -ecJ -wbK +gkh +ldU +fVZ +izE nOd kop kop @@ -39306,7 +39306,7 @@ kop tHd kop jMf -nnT +gAd jMf dYp dYp @@ -39315,11 +39315,11 @@ dYp dYp pqe tnu -paj -box +fZs +qSY xOb -box -paj +qSY +fZs tnu hcH pqe @@ -39405,45 +39405,45 @@ ntc vYm eni aNX -dUq -lna -dUq +vnI +beM +vnI aEq ntc -dBU +cgK vYm vYm vYm vYm wag -aAk -xnj -uBs -uBs -xnj -uJn -dWn -jUD -fJe +jjp +nHo +gyO +gyO +nHo +etS +sQh +cMK +qdT rBH wZW fiK rBH -vLd -htu -ioj -pXH -pPF -cku -fIt +sjz +teS +xuB +aAe +reU +wtn +doM onc -eFl -wAX -gtq +rId +rYV +jkz rBH -mvC -bcz -vpI +jGK +bnK +bLb nOd wCP wCP @@ -39455,14 +39455,14 @@ wCP wCP wCP nOd -utK -izj -izj -izj -mAg +teW +pYI +pYI +pYI +kyy nOd jMf -hOY +xZh tHd jMf tHd @@ -39478,9 +39478,9 @@ dYp pqe tnu tnu -oUV -kHf -oUV +uLS +whm +uLS tnu tnu tnu @@ -39567,9 +39567,9 @@ ntc vYm eni mMK -dUq -qOT -ogL +vnI +wQd +cXb hDE wag lJx @@ -39580,32 +39580,32 @@ lJx wag hLf hLf -uJn -ikT -uJn -uJn +etS +cmv +etS +etS rNZ -bjs -nJZ +nFI +aSS rBH -qmr +fPA enG iJr -eFl -oSi -oTW -iBd -phA -vda -ePQ +rId +uXS +gjb +nRg +pOV +wGq +orw vFi -eFl -xlD -lCz +rId +iuB +oMz rBH -uaF -cDW -ggZ +qum +aEn +rMt nOd nOd nOd @@ -39618,10 +39618,10 @@ nOd nOd nOd nOd -izj -izj -izj -mAg +pYI +pYI +pYI +kyy nOd mdV jMf @@ -39640,9 +39640,9 @@ pqe pqe tnu tnu -erp -box -hVt +ghl +qSY +gAU tnu tnu tnu @@ -39724,65 +39724,65 @@ pWf mMK mMK axe -eNu +qxo ntc vYm -eNu +qxo wag -dUq -qOT -saU +vnI +wQd +wtD wag wag -qqI -weP -jQb -ncV -wSR -ncV -elg +lAp +lce +tvX +pES +qoj +pES +tVw hLf -uJn -oUA -oUA -uJn -nJZ -nJZ -nJZ +etS +pkF +pkF +etS +aSS +aSS +aSS rBH rBH rBH rBH mCV -htu -ukj +teS +hFq nur -cFX -eFl -vVd +cLv +rId +tov rBH rBH rBH rBH rBH -uaF -cDW -ggZ +qum +aEn +rMt aOW -rHT -gOH -gmc -hxs -gRT -upF -wxr -gnS -ejs -tXB +vWg +wjM +vJZ +mmi +kAK +xxC +ygt +fwK +pks +szL nOd -ogQ -ogQ -ogQ +wxL +wxL +wxL nOd nOd nOd @@ -39802,9 +39802,9 @@ tnu tnu tnu tnu -orG -hxb -orG +tlI +oFb +tlI tnu tnu tnu @@ -39886,68 +39886,68 @@ kOV mMK kOV kOV -dBU +cgK vYm vYm -dBU +cgK wag -deJ -gpX -uxN +skb +koR +ugy wag hLf -foZ -ncV -wSR -ncV -gAd -ncV -wSR +bLy +pES +qoj +pES +mLL +pES +qoj gZG -uJn -oUA -oUA -aXf -aXf -uJn +etS +pkF +pkF +mLv +mLv +etS beF rBH rBH rBH rBH vDD -htu -ukj +teS +hFq qRJ -bZI -bqb -lHs +jRC +taZ +mDk rBH rBH rBH rNZ -mlK -uaF -cDW -ggZ +oqO +qum +aEn +rMt aOW -wxr -ofC -lnB -ofC -wxr -wxr -ofC -lnB -ofC -wxr +ygt +fct +skE +fct +ygt +ygt +fct +skE +fct +ygt nOd -izj -izj -izj -izj -lmA -nov +pYI +pYI +pYI +pYI +rFd +dlD nOd kop tHd @@ -39959,15 +39959,15 @@ dYp dYp pqe tnu -bIz +jPU kEx kEx jlQ -paj -lEX +fZs +fGe gqp -box -paj +qSY +fZs tnu hcH pqe @@ -40031,8 +40031,8 @@ axz aaY axz axz -qjm -xOc +hzf +dNJ axz axz pWf @@ -40048,68 +40048,68 @@ mMK kOV mMK aHb -aPp +rJx vYm vYm -aPp +rJx wag wag wag wag wag hLf -hzN -ncV -wSR -ncV -wSR -ncV +cKx +pES +qoj +pES +qoj +pES hLf hLf -uJn -oUA -uRz -fzL -qnY -rKp +etS +pkF +xwA +wAI +mOm +gGD fcy doJ -uaF -ucZ -kMS -dDF -fuP -gJA -cDW -cDW -cDW -mLE -oCN -ggZ +qum +mDO +bXV +iKu +ffB +gkd +aEn +aEn +aEn +lkx +wzj +rMt doJ wjD -mlK -htu -mlK -ukj +oqO +teS +oqO +hFq tEl -wxr -yaS -sMu -enU -eYJ -wxr -yaS -veh -enU -wxr +ygt +rgA +jsD +euy +rfr +ygt +rgA +bdF +euy +ygt nOd -izj -wxr -nVP -syO -rgQ -ppX +pYI +ygt +lgV +bXa +cah +jMh nOd jMf tHd @@ -40121,15 +40121,15 @@ dYp dYp pqe tnu -hKk +bfn qDg -wDP +wnX tnu -paj -lhx +fZs +jHP xOb -box -paj +qSY +fZs tnu hcH pqe @@ -40187,15 +40187,15 @@ aad aad axz axz -drh +hZv axz axz aaY axz -qjm -qjm -qjm -qjm +hzf +hzf +hzf +hzf axz pWf pWf @@ -40221,61 +40221,61 @@ hLf hLf hLf hLf -ncV -klB -prE -klB -hRt +pES +dyY +rxM +dyY +bJl hLf -lOR -uJn -uJn -pRd -fzL -qnY -rKp +vHS +etS +etS +kKy +wAI +mOm +gGD beF doJ -htu +teS dOD -cEf -lkW -eFl -aSd -nVy -eFl -eFl -eFl +jUf +goT +rId +mmR +aSl +rId +rId +rId dOD -ukj +hFq doJ aDz -mlK -uaF -cDW -ggZ +oqO +qum +aEn +rMt tEl -wxr -pMZ -ljW -qAs -wxr -wxr -pMZ -pNS -jNR -pWG +ygt +nVv +hUK +fMC +ygt +ygt +nVv +qNu +fAk +qyY nOd -aFo -hFd -dUl -tUI -wlA -izj +tVB +kBM +hsp +gTT +oGC +pYI nOd kop -rJA -jGz +rOi +fyT ofw qLS tHd @@ -40284,13 +40284,13 @@ dYp pqe tnu dex -bAa +pKQ vOv tnu tnu -oUV -kHf -oUV +uLS +whm +uLS tnu tnu tnu @@ -40348,16 +40348,16 @@ aad aad aad axz -shN -hIr -shN +ejL +qMR +ejL axz aaY axz -qjm -qjm -qjm -qjm +hzf +hzf +hzf +hzf axz pWf pWf @@ -40373,15 +40373,15 @@ toD mMK axz axz -qjm -xOc +hzf +dNJ axz hLf hLf hLf -hoG -pAX -hud +pLX +xXE +nBa hLf bRD hLf @@ -40391,49 +40391,49 @@ hLf hLf hLf hLf -uJn -oUA -htE -nVY -uJn +etS +pkF +ebC +hve +etS dWw rBH -htu -eFl +teS +rId sKf tfQ pxl -htu -tWU +teS +oGY kZj hWK sKf -eFl -ukj +rId +hFq rBH aDz -mlK -uaF -cDW -dky +oqO +qum +aEn +beL aOW -hVP -ofC -bxT -ofC -wxr -wxr -ofC -bxT -ofC -wxr +iRC +fct +umh +fct +ygt +ygt +fct +umh +fct +ygt aRb -izj -wxr -soC -hIU -wlA -izj +pYI +ygt +oQp +jSq +oGC +pYI nOd kop aQJ @@ -40450,9 +40450,9 @@ tnu tnu tnu tnu -orG -hxb -orG +tlI +oFb +tlI tnu tnu tnu @@ -40510,15 +40510,15 @@ aad axz axz axz -qjm -qjm -hIr +hzf +hzf +qMR axz axz axz axz -qjm -xOc +hzf +dNJ axz axz axz @@ -40534,89 +40534,89 @@ pWf toD toD axz -nRA -cqT -cqT -nRA +gec +eNl +eNl +gec hLf hLf hLf -pQV -fvs -fvs -fvs -fvs +bkv +iCH +iCH +iCH +iCH hLf -vkX -tRb -uBI -gqJ -gqJ +hfp +eng +dHQ +vMF +vMF hLf -uJn -uJn -uJn -uJn -uJn -fQj +etS +etS +etS +etS +etS +nkW rBH -woW -eFl +kXo +rId hWK -uaF -cDW -htu -ukj -cDW -ggZ +qum +aEn +teS +hFq +aEn +rMt fzF -eFl -tMd +rId +pkX rBH -ykg -tuI -uaF -cDW -ggZ +rHL +tzz +qum +aEn +rMt tEl -wxr -pSq -ofC -ofC -wxr -jCv -ofC -ofC -ofC -wxr +ygt +woy +fct +fct +ygt +lAT +fct +fct +fct +ygt aRb -izj -wxr -wxr -bJT -wxr -izj +pYI +ygt +ygt +nmn +ygt +pYI nOd kop oiH kyD kyD kyD -jGz +fyT dYp dYp pqe tnu -xre -xuC -xuC -opr -urB -box -box -box -pLD -wUB +lvQ +pyC +pyC +gkE +vGJ +qSY +qSY +qSY +sRp +huX tnu pqe gss @@ -40667,23 +40667,23 @@ puZ (106,1,1) = {" aad axz -ffH -mud -dfx -dFu +eVu +qYu +eZq +hOL mXS -qjm -qjm -hIr -wvD -paL -iwU -hIr -owh -owh -qjm -dXO -hka +hzf +hzf +qMR +kYV +uwn +jFc +qMR +jhr +jhr +hzf +pSl +fVB ahh aEY aEY @@ -40696,89 +40696,89 @@ pWf pWf pWf axz -nRA -cqT -cqT -nRA +gec +eNl +eNl +gec hLf hLf -swQ -fvs -fvs -iHn -iHn -fvs +nsb +iCH +iCH +suu +suu +iCH qpu -uBI -iLl -uaz -iLl -uBI +dHQ +mNk +dxs +mNk +dHQ hLf -nJU -aJr +lkO +bZL noi noi -aJr -uJn -ikc -fuP -eFl +bZL +etS +pKp +ffB +rId sKf -xBS -uaF -wiv -plt -ggZ -ukj +cIq +qum +xQZ +cdH +rMt +hFq sKf -eFl -gJA -ngo -tuI -uaF -mlK -mlK -ukj +rId +gkd +fzc +tzz +qum +oqO +oqO +hFq tEl -wxr -ofC -tgG -ofC -wxr -wxr -ofC -ofC -ofC -syO +ygt +fct +mpA +fct +ygt +ygt +fct +fct +fct +bXa pbY -qJY -wxr -wxr -wxr -nVP -izj +srb +ygt +ygt +ygt +lgV +pYI nOd kop tHd -jGz +fyT kyD -jGz +fyT kyD dYp dYp pqe tnu -qoG -wyc -oem -twV -qsc -box -box -box -rOy -jfB +ucD +wNY +vGg +wGX +tTx +qSY +qSY +qSY +vmU +qec tnu pqe gss @@ -40829,23 +40829,23 @@ puZ (107,1,1) = {" aad axz -fZf -qjm -qjm -qjm +dnu +hzf +hzf +hzf jFy -qjm -qjm -qjm -qjm -qjm -qjm -nCs -owh -owh -qjm -rLg -oZX +hzf +hzf +hzf +hzf +hzf +hzf +uPQ +jhr +jhr +hzf +pcz +wMZ ahh aEY aEY @@ -40859,88 +40859,88 @@ aad aad axz axz -qjm -xOc +hzf +dNJ axz hLf -jtl -bAb -fvs -vUE -oOs -tFi -kvo +ykP +xGu +iCH +deE +lJv +oFf +hdJ hLf -iIB -uBI -uBI -jDF -uBI +kBz +dHQ +dHQ +cgP +dHQ hLf -uJn +etS noi -oUA -oUA +pkF +pkF noi -uJn -htu -mlK -eOD -cDW -cDW -nVy -cSv -nBq -eOD -cDW -cDW -nVy -mlK -ukj -uaF -mlK -mlK -mlK -tMd +etS +teS +oqO +chG +aEn +aEn +aSl +bZf +aFL +chG +aEn +aEn +aSl +oqO +hFq +qum +oqO +oqO +oqO +pkX aOW -hVP -ofC -lnB -ofC -wxr -wxr -ofC -lnB -ofC -wxr +iRC +fct +skE +fct +ygt +ygt +fct +skE +fct +ygt aRb -bQC -llj -oeP -luC -wxr +gvg +eNK +rfO +fJS +ygt nOd nOd hcH -lSw -wDP -wDP -wDP -nho +epZ +wnX +wnX +wnX +gCp hcH pqe pqe mEJ -oqN -msZ -rfs -txP -hlv -box -moH -box -urB -ozo +xdQ +fut +uEv +hil +joH +qSY +aEt +qSY +vGJ +mXO tnu hcH gGT @@ -40991,23 +40991,23 @@ puZ (108,1,1) = {" aad axz -uXs -qjm -qjm -qjm +uKd +hzf +hzf +hzf ajr -qjm -qjm -qjm -qjm -qjm -qjm -hIr -owh -owh -qjm -qjm -hka +hzf +hzf +hzf +hzf +hzf +hzf +qMR +jhr +jhr +hzf +hzf +fVB tLP lVF hpn @@ -41017,21 +41017,21 @@ lVF lVF lVF aad -nyU -owh +mjp +jhr aaY aaY -cqT -cqT +eNl +eNl aaY wag -uBs -uBs -uBs -uBs -duR -uBs -uBs +gyO +gyO +gyO +gyO +dBU +gyO +gyO hLf lJx lJx @@ -41039,70 +41039,70 @@ baN tdR lJx hLf -uJn +etS noi -oUA -oUA +pkF +pkF noi -uJn -htu -mlK -ggZ -dfm -dfm -ieA -hso -fuP -ckf -dfm -dfm -uaF -mlK -ukj -nVy -mlK -mlK -mlK -ukj +etS +teS +oqO +rMt +eyb +eyb +aBD +kes +ffB +ecc +eyb +eyb +qum +oqO +hFq +aSl +oqO +oqO +oqO +hFq tEl -wxr -yaS -veh -enU -wxr -wxr -yaS -veh -enU -wRv +ygt +rgA +bdF +euy +ygt +ygt +rgA +bdF +euy +sxY nOd -mBN -wxr -ylK -lbM -wxr -izj -xnY -rDR -weH -weH -weH -weH -weH -sao -wDP -urB -rmG -cHJ -urB -urB -urB -urB -box -box -box -urB -urB +mkA +ygt +gOA +qKG +ygt +pYI +cIY +wnF +aQP +aQP +aQP +aQP +aQP +has +wnX +vGJ +jCv +kyN +vGJ +vGJ +vGJ +vGJ +qSY +qSY +qSY +vGJ +vGJ tnu aGl tHd @@ -41153,118 +41153,118 @@ puZ (109,1,1) = {" aad axz -qjm -qjm -qjm -qjm +hzf +hzf +hzf +hzf jFy -hIr -hIr -hIr -wvD -iwU -iwU -hIr -owh -owh -qjm -qjm -qjm -xOv -xOv -qdn -fdv -xOv -bXz -xOv -xOv -jbL -jbL -qjm -jbL -kSf -tpj -tpj -kSf -pfi -uJn -oUA -uJn -oUA -uJn -oUA -uJn -pfi -uJn -uJn -uJn -uJn -uJn -qev -uJn -aJr +qMR +qMR +qMR +kYV +jFc +jFc +qMR +jhr +jhr +hzf +hzf +hzf +aon +aon +fFO +ddb +aon +enq +aon +aon +lwx +lwx +hzf +lwx +fLv +hxp +hxp +fLv +cgX +etS +pkF +etS +pkF +etS +pkF +etS +cgX +etS +etS +etS +etS +etS +nXc +etS +bZL noi noi -aJr -uJn -iXo -nBq -eFl +bZL +etS +oJY +aFL +rId sKf -htu -nVy -asZ -wJr -eCM -ukj +teS +aSl +dBt +nUH +oXA +hFq sKf -eFl -cSv -wcL -tuI -nVy -mlK -mlK -ukj +rId +bZf +vya +tzz +aSl +oqO +oqO +hFq tEl -wxr -pMZ -pNS -jNR -wxr -wxr -pMZ -pNS -jNR -wxr +ygt +nVv +qNu +fAk +ygt +ygt +nVv +qNu +fAk +ygt nOd -izj -wxr -wxr -bJT -wxr -wxr +pYI +ygt +ygt +nmn +ygt +ygt cvs -ckb -weH -weH -weH -weH -weH -rQg -box -box -cHJ -box -box -lpi -cGe -fMa -fMa -urB -urB -urB -wDP +kYM +aQP +aQP +aQP +aQP +aQP +vIV +qSY +qSY +kyN +qSY +qSY +tsP +jRK +fIX +fIX +vGJ +vGJ +vGJ +wnX aFA kyD kop @@ -41315,118 +41315,118 @@ puZ (110,1,1) = {" aad axz -qyT -qjm -qjm -qjm +bAy +hzf +hzf +hzf axz -qjm -qjm -hIr -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -jbL -tNo -mAX -jbL -pfi -uJn -oUA -uJn -oUA -uJn -oUA -uJn -pfi -uJn -oUA -oUA -oUA -uJn -oUA -uJn -uJn -uJn -uJn -uJn -fQj +hzf +hzf +qMR +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +lwx +sEF +baJ +lwx +cgX +etS +pkF +etS +pkF +etS +pkF +etS +cgX +etS +pkF +pkF +pkF +etS +pkF +etS +etS +etS +etS +etS +nkW rBH -woW -eFl +kXo +rId hWK -nVy -yda -htu -ukj -dfm -eOD +aSl +bNB +teS +hFq +eyb +chG hWK -eFl -tMd +rId +pkX rBH -ykg -tuI -nVy -dfm -eOD +rHL +tzz +aSl +eyb +chG aOW -wxr -ofC -bxT -ofC -wxr -wxr -ofC -bxT -ofC -wxr +ygt +fct +umh +fct +ygt +ygt +fct +umh +fct +ygt nOd -izj -wxr -wxr -wxr -oIq -kqQ +pYI +ygt +ygt +ygt +vIq +jaW cvs -ckb -weH -weH -weH -weH -weH -rQg -box -box -urB -urB -urB -urB -urB -urB -cGe -cGe -box -box -box +kYM +aQP +aQP +aQP +aQP +aQP +vIV +qSY +qSY +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +jRK +jRK +qSY +qSY +qSY aFC kyD kyD @@ -41482,113 +41482,113 @@ axz axz axz axz -aVk -aVk -hIr -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -vWc -owh -owh -owh -owh -owh -owh -owh -jbL -faq -dec -jbL -pfi -uJn -oUA -uJn -oUA -uJn -oUA -uJn -pfi -uJn -oUA -oUA -oUA -uJn -oUA -uJn -oUA -paN -paN -uJn +uMf +uMf +qMR +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +iBl +jhr +jhr +jhr +jhr +jhr +jhr +jhr +lwx +iEH +mkZ +lwx +cgX +etS +pkF +etS +pkF +etS +pkF +etS +cgX +etS +pkF +pkF +pkF +etS +pkF +etS +pkF +tCT +tCT +etS beF rBH -htu -eFl +teS +rId sKf sKf pxl -htu -ukj +teS +hFq fzF hWK sKf -eFl -ukj +rId +hFq rBH rNZ -mlK -nVy -dfm -eOD +oqO +aSl +eyb +chG aOW -qht -jaW -uqr -wxr -cDy -wxr -jjp -wxr -wxr -jHB +adL +bPq +nRe +ygt +eBz +ygt +isT +ygt +ygt +xtu nOd -izj -wxr -wxr -wxr -wxr -wxr +pYI +ygt +ygt +ygt +ygt +ygt cvs -ckb -weH -weH -weH -weH -weH -rQg -box -box -box -box -urB -box -box -urB -box -box -box -syx -box +kYM +aQP +aQP +aQP +aQP +aQP +vIV +qSY +qSY +qSY +qSY +vGJ +qSY +qSY +vGJ +qSY +qSY +qSY +cLL +qSY aFC kyD kyD @@ -41644,74 +41644,74 @@ axz axz axz axz -owh -owh -ovx -owh -owh -hIr -jkP +jhr +jhr +liH +jhr +jhr +qMR +tUL jVx wlj odg -aqB +krq qCn -qjm -gOd -lKd -qjm -qjm -aPU -owh -owh -luH -jbL -qjm -jbL -nRA -tpj -tpj -nRA -pfi -uJn -oUA -uJn -oUA -uJn -oUA -rrQ -pfi -uJn -uJn -aXf -aXf -uJn -oUA -uJn -uRz -qnY -qnY -rKp +hzf +nfo +hev +hzf +hzf +wIn +jhr +jhr +oxr +lwx +hzf +lwx +gec +hxp +hxp +gec +cgX +etS +pkF +etS +pkF +etS +pkF +dPt +cgX +etS +etS +mLv +mLv +etS +pkF +etS +xwA +mOm +mOm +gGD fcy doJ -htu +teS dOD -eFl -eFl -eFl -ggZ -uaF -eFl -eFl -mUw +rId +rId +rId +rMt +qum +rId +rId +pCL dOD -ukj +hFq doJ wjD -mlK -nVy -dfm -eOD +oqO +aSl +eyb +chG nOd aOW aOW @@ -41719,38 +41719,38 @@ aOW aOW aOW nOd -tJz -bFn -bFn -ofC +jnp +bHG +bHG +fct nOd -okx -egQ -aPN -hPr -izj -izj -xnY -dQt -weH -weH -weH -weH -weH -xYT -wDP -urB -urB -urB -urB -amz -urB -urB -urB -urB -urB -uux -wDP +jLE +lFR +wWr +lxp +pYI +pYI +cIY +rQY +aQP +aQP +aQP +aQP +aQP +dZI +wnX +vGJ +vGJ +vGJ +vGJ +rcG +vGJ +vGJ +vGJ +vGJ +vGJ +hQG +wnX aFI kyD tHd @@ -41806,13 +41806,13 @@ beQ beQ ffj axz -jbk -aOd -hIr -owh -owh -hIr -dCm +txH +tdY +qMR +jhr +jhr +qMR +pBT aaY jVx naN @@ -41825,66 +41825,66 @@ jFy jFy axz tfd -wkE +ykS axz jFy jFy aaY -tpj -tpj -tpj -tpj +hxp +hxp +hxp +hxp wag -hxG -bpv -fiR -oYN -xlX -tPy +iXF +qcA +kHQ +iGl +rFa +cLB wag wag beF -uRz -eFV -wIL -rKp -oUA -uJn -uRz -wIL -qnY -rKp +xwA +epB +ilk +gGD +pkF +etS +xwA +ilk +mOm +gGD dWw doJ -nVy -dfm -fkm -dfm -nBq -cSv -dfm -hBC -auN -dfm -dfm -eOD +aSl +eyb +vtv +eyb +aFL +bZf +eyb +yis +kBa +eyb +eyb +chG doJ rNZ -mlK -htu -mlK -ukj +oqO +teS +oqO +hFq aOW -efM +hSF aAl mgL mBf -cfB +mQy aOW -yfa -icl -icl -yfa +qiT +gQh +gQh +qiT nOd aOW aOW @@ -41894,25 +41894,25 @@ nOd nOd nOd hcH -kdh -wDP -wDP -wDP -tzr +dKx +wnX +wnX +wnX +mcC hcH -hFm -hFm -vfD -bjg +fuQ +fuQ +kdJ +sDW tnu -qFj -dPW +hiX +wuZ tnu tnu -lJc -urB -urB -kyq +cii +vGJ +vGJ +xLN tnu aGu tHd @@ -41968,13 +41968,13 @@ bfc beY gnZ axz -qWO -mki -hIr -owh -owh -hIr -ngB +tAL +lXh +qMR +jhr +jhr +qMR +dDU axz axz wlj @@ -41983,47 +41983,47 @@ mqD wlj axz axz -iEf +xgA tfd -wGI +fcn tfd tfd -wGI +fcn tfd -iEf +xgA jFy -qjm -owh -owh -qjm +hzf +jhr +jhr +hzf wag -kvN -diE -oUA -rlU -nmF -rlU -oUA +lPw +qcz +pkF +jAU +hpv +jAU +pkF wag wag -uRz -mdl -wIL -rKp -oUA -uJn -uJn -htE -htE -uJn +xwA +tkO +ilk +gGD +pkF +etS +etS +ebC +ebC +etS dWw rBH rBH rBH rBH vDD -htu -ukj +teS +hFq vDD rBH rBH @@ -42032,26 +42032,26 @@ rBH rBH rBH aDz -mlK -nVy -dfm -eOD +oqO +aSl +eyb +chG aOW -sNq +oUB sKO inJ inJ -ssZ +dRp aOW -pkc -ttv -bFn -ofC +tNz +ipD +bHG +fct aOW -uIN -sQg -hCl -gbY +lhZ +lou +mva +mEU aOW aQi cZk @@ -42129,14 +42129,14 @@ bfc bfc bfc tmV -xya -nlT -nlT -oMC -owh -owh -hIr -ngB +csN +cPP +cPP +gNl +jhr +jhr +qMR +dDU axz axz wlj @@ -42146,36 +42146,36 @@ tKg axz axz tfd -jHV -jnw -jHV -jnw -jHV -jnw +pBB +heH +pBB +heH +pBB +heH tfd jFy -tpj -owh -owh -wYJ +hxp +jhr +jhr +olh wag -bUQ -oUA -mXw -oUA -mXw -oUA -mXw -uAF +tMG +pkF +lue +pkF +lue +pkF +lue +jhf wag -cPs -wIL -qnY -rKp -uJn -uJn -oUA -uJn +xTT +ilk +mOm +gGD +etS +etS +pkF +etS rBH rBH rBH @@ -42184,8 +42184,8 @@ rBH rBH rBH fiK -htu -ukj +teS +hFq fiK rBH rBH @@ -42195,25 +42195,25 @@ rBH rBH rBH rBH -nVy -dfm -eOD +aSl +eyb +chG aOW -vZR +esV gdU oEk rAq -vVp +fpF aOW -sku -bFn -bFn -ofC +rTN +bHG +bHG +fct oAo inJ fKy fGw -lyI +psI aOW daD cZk @@ -42291,14 +42291,14 @@ bfc beY bfc bfc -qjm -nlT -nlT -wff -owh -owh -hIr -ngB +hzf +cPP +cPP +qUU +jhr +jhr +qMR +dDU axz axz opa @@ -42308,74 +42308,74 @@ ssf axz axz tfd -nNF -awH -nNF -awH -nNF -awH +ibv +vNP +ibv +vNP +ibv +vNP tfd aaY -lge -owh -owh -owh +rGU +jhr +jhr +jhr hZS -uJn -uJn -uJn -uJn -uJn -uJn -uJn -uJn +etS +etS +etS +etS +etS +etS +etS +etS aGC -uJn -htE -htE -uJn -oUA -uJn -oUA -uJn +etS +ebC +ebC +etS +pkF +etS +pkF +etS tFk fiK pNy rBH -jcB +eOK fiK tFk -eFl -htu -ukj -eFl +rId +teS +hFq +rId egr fiK pNy rBH -dEL -nJD -qgq +gKc +uId +jSX rBH -vIx -kGg -kRh +rKn +xFt +epl nOd nOd -jui +oAX nOd -eQc -qki +mgO +nHS nOd -xVd -bFn -bFn -ofC +fFL +bHG +bHG +fct aOW -okx -dMO -wjo -nov +jLE +qHB +dln +dlD aOW awr cZk @@ -42386,13 +42386,13 @@ bFg bIV cZk hcH -cmB -kMp -kVH +ctH +dwj +thL hcH hcH -tse -sZe +sxs +pow hcH hcH aVr @@ -42453,14 +42453,14 @@ bfc beY bfc bfc -qjm -nlT -nlT -kRF -owh -owh -hIr -ngB +hzf +cPP +cPP +ayE +jhr +jhr +qMR +dDU axz axz ssf @@ -42470,36 +42470,36 @@ ssf axz axz tfd -jHV -jnw -jHV -jnw -jHV -jnw +pBB +heH +pBB +heH +pBB +heH tfd jFy -tpj -tpj -tpj -tpj +hxp +hxp +hxp +hxp lJx -oUA -oUA -oUA -oUA -oUA -oUA -oUA -oUA +pkF +pkF +pkF +pkF +pkF +pkF +pkF +pkF lJx -oUA -oUA -oUA -uJn -oUA -uJn -uJn -oPk +pkF +pkF +pkF +etS +pkF +etS +etS +inN rBH gKQ wZW @@ -42507,32 +42507,32 @@ rBH wZW gKQ rBH -dRM -htu -ukj -fbl +ivA +teS +hFq +tjk rBH gKQ wZW rBH -mlK -mlK -mlK +oqO +oqO +oqO doJ -bcz -bcz -bcz +bnK +bnK +bnK wpW -txK -ofC -pGm -ofC -ofC +rnF +fct +nlL +fct +fct mKA -txK -bFn -bFn -ofC +rnF +bHG +bHG +fct nOd aOW aOW @@ -42548,14 +42548,14 @@ bFg bFg cZk gWk -mdH -oem -qBo -hHS -sNF -oem -oem -gZd +kaj +vGg +jpC +uRp +ciJ +vGg +vGg +tPK gWk aVs fIW @@ -42615,14 +42615,14 @@ bfc bfc bfc bfc -qjm -nlT -nlT -hIr -owh -owh -hIr -riG +hzf +cPP +cPP +qMR +jhr +jhr +qMR +jov aaY aaY jVx @@ -42632,35 +42632,35 @@ jVx aaY aaY tfd -nNF -awH -nNF -awH -nNF -awH +ibv +vNP +ibv +vNP +ibv +vNP tfd jFy -owh -owh -owh -owh +jhr +jhr +jhr +jhr hZS -uJn -uJn -uJn -uJn -uJn -uJn -uJn -uJn +etS +etS +etS +etS +etS +etS +etS +etS aGC -uJn -aXf -aXf -uJn -uJn -uJn -uJn +etS +mLv +mLv +etS +etS +etS +etS rBH rBH rBH @@ -42670,36 +42670,36 @@ rBH rBH rBH rBH -htu -ukj +teS +hFq rBH rBH rBH rBH rBH -uVp -mlK -mlK +rFv +oqO +oqO doJ -sNQ -iDD -sNQ -ubE -xuI -xuI -xuI -xuI -xuI -ubE -xuI -icl -icl -ofC +dUN +rjx +dUN +kdx +kyV +kyV +kyV +kyV +kyV +kdx +kyV +gQh +gQh +fct aOW -iQO -vpJ -rYW -jML +ugu +aXY +lWP +vvM aOW kgI cZk @@ -42710,14 +42710,14 @@ bFg bFg cZk gWk -mdH -oem -xIV -gae -oem -qFL -oem -tRX +kaj +vGg +wzw +eRv +vGg +oWx +vGg +aYZ tnu aVt sgl @@ -42778,13 +42778,13 @@ bfc beY gpT axz -kFB -rhg -vHH -owh -owh -hIr -qjm +riL +mRk +xYq +jhr +jhr +qMR +hzf aaY xha xha @@ -42794,74 +42794,74 @@ gPg xha axz tfd -jHV -jnw -jHV -jnw -jHV -jnw +pBB +heH +pBB +heH +pBB +heH tfd jFy -tpj -owh -owh -tpj +hxp +jhr +jhr +hxp lJx -jya -oUA -rlU -oUA -rlU -oUA -rlU -htQ +nYu +pkF +jAU +pkF +jAU +pkF +jAU +vtA lJx -uRz -qnY -wIL -rKp -oUA -oUA -uJn +xwA +mOm +ilk +gGD +pkF +pkF +etS tFk fiK fiK pWw rBH -gdH +xde fiK fiK tFk -htu -ukj +teS +hFq egr fiK fiK gxW rBH -eHW -mlK -mlK -veG -tXD -sNQ -rma -ofC -xuI -xuI -xuI -xuI -xuI -ofC -xuI -icl -icl -ofC +wTL +oqO +oqO +oQi +xKv +dUN +tHa +fct +kyV +kyV +kyV +kyV +kyV +fct +kyV +gQh +gQh +fct aOW hnw inJ fBJ -frv +xwH aOW daD cZk @@ -42872,14 +42872,14 @@ bFg bIV cZk gWk -lBT -oem -orX -cpT -oem -oem -oem -cUU +bKD +vGg +rDi +rkw +vGg +vGg +vGg +lge tnu aVw vxg @@ -42940,13 +42940,13 @@ bJz bJz gMv axz -uXs -qjm -hIr -owh -owh -hIr -qjm +uKd +hzf +qMR +jhr +jhr +qMR +hzf vWt xha xha @@ -42956,35 +42956,35 @@ aaX xha axz tfd -hjO -oBC -hjO -oBC -hjO -oBC +ljs +riX +ljs +riX +ljs +riX tfd axz -lKd -owh -owh -lKd +hev +jhr +jhr +hev lJx -oUA -mXw -vKe -mXw -oUA -nbF -oUA -lVz +pkF +lue +bii +lue +pkF +ehT +pkF +rxr lJx -uRz -wIL -qnY -rKp -oUA -oUA -uJn +xwA +ilk +mOm +gGD +pkF +pkF +etS rBH gKQ fiK @@ -42994,36 +42994,36 @@ wZW fiK gKQ rBH -htu -ukj +teS +hFq rBH fiK gKQ wZW rBH -dSl -mlK -mlK -mlK -sda -rma -sNQ +lYw +oqO +oqO +oqO +lNd +tHa +dUN tEl -nkd -ofC -ofC -ofC -cod +rvx +fct +fct +fct +lHU tEl -ofC -ofC -ofC -ofC +fct +fct +fct +fct oAo inJ inJ inJ -tkZ +aJa aOW daD cZk @@ -43034,20 +43034,20 @@ bFg bIV sbj gWk -nIj -oem -oem -oem -uGL -oem -oem -tnC +gWa +vGg +vGg +vGg +lAP +vGg +vGg +hOU tnu uiI sgl vxg vxg -oso +bco kyD kyD kyD @@ -43079,9 +43079,9 @@ puZ puZ puZ hcJ -czE -czE -czE +taB +taB +taB hcJ puZ puZ @@ -43102,13 +43102,13 @@ axz axz axz axz -owh -owh -hIr -owh -wvQ -hIr -vQi +jhr +jhr +qMR +jhr +moM +qMR +fFP aaY axz bLf @@ -43124,7 +43124,7 @@ dqW bMn cRP tfd -avn +hbU aaY axz xha @@ -43132,21 +43132,21 @@ cLx axz wag wag -pRt -bhJ -piS -piS -wVF -uXu +lso +knS +nxG +nxG +aKf +nLP wag wag -uRz -qnY -qnY -rKp -uJn -uJn -uJn +xwA +mOm +mOm +gGD +etS +etS +etS rBH rBH rBH @@ -43156,38 +43156,38 @@ rBH rBH rBH rBH -bcz -bcz +bnK +bnK rBH rBH rBH rBH rBH -wkH -mlK -mlK +dAj +oqO +oqO doJ -sNQ -iDD -sNQ +dUN +rjx +dUN aOW -jok -tgI -mTt -tgI -yfa +vFc +ean +fgr +ean +qiT aOW -ggR -sFY -ewc -jok +bqp +wYu +bil +vFc aOW -okx -izj -nov -nov +jLE +pYI +dlD +dlD aOW -hwY +fBE cZk cZk bFg @@ -43196,14 +43196,14 @@ bFg bIV uTu gWk -urB +vGJ qXS qXS qXS slU frj qXS -uUq +hJf aUt vxg sgl @@ -43241,9 +43241,9 @@ puZ puZ puZ hcJ -czE -czE -czE +taB +taB +taB hcJ hcJ puZ @@ -43259,22 +43259,22 @@ puZ (122,1,1) = {" aad axz -qjm -qjm -qjm -qjm +hzf +hzf +hzf +hzf axz -owh -owh -hIr -owh -owh -hIr -qjm +jhr +jhr +qMR +jhr +jhr +qMR +hzf jFy -iHi -kmm -lzf +jYI +iQl +aqY axz xha xha @@ -43286,12 +43286,12 @@ jvT djn djn tfd -avn +hbU axz -qhs -nDZ -nDZ -dxI +rsR +kWC +kWC +cEw wag wag lJx @@ -43302,36 +43302,36 @@ lJx lJx wag wag -jWY -htE -htE -uJn -uJn -uJn -uJn +ycD +ebC +ebC +etS +etS +etS +etS gBH -gPC -gPC -jUz +jwz +jwz +mxo rBH pNy fiK fiK tFk -sNQ -rma +dUN +tHa egr fiK fiK pNy rBH -wHG -mlK -mlK +fUG +oqO +oqO doJ -rma -sNQ -sNQ +tHa +dUN +dUN aOW aOW aOW @@ -43358,14 +43358,14 @@ bFg bIV sbj tnu -urB -urB -six -urB -lJc -pvM -uUq -liT +vGJ +vGJ +iix +vGJ +cii +aXy +hJf +nWR tnu aZA vxg @@ -43405,8 +43405,8 @@ cXk wNj qcT gzM -czE -ybu +taB +kjE hcJ puZ puZ @@ -43421,22 +43421,22 @@ puZ (123,1,1) = {" aad axz -qjm -owh -owh -qjm +hzf +jhr +jhr +hzf axz -tsE -qjm -hIr -owh -owh -hIr -qjm +mVZ +hzf +qMR +jhr +jhr +qMR +hzf jFy -jAI -qjm -xCT +fgf +hzf +xuT axz xha hYb @@ -43447,13 +43447,13 @@ axz axz axz axz -inN +uTE axz aaY -tTe -nDZ -nDZ -xrL +iaG +kWC +kWC +lZH oWG gzc gzc @@ -43464,36 +43464,36 @@ arX qep hLf hLf -uJn -uJn -uJn -uJn -uJn -uJn -uJn +etS +etS +etS +etS +etS +etS +etS rBH -gPC -gPC -gPC +jwz +jwz +jwz rBH wZW fiK gKQ rBH -bcz -bcz +bnK +bnK rBH fiK gKQ wZW rBH -siF -rsM -lNY +jan +oNI +trZ rBH -mvC -bcz -vpI +jGK +bnK +bLb aOW aOW aOW @@ -43521,9 +43521,9 @@ bFg aoZ tnu tnu -pju -xDp -gXf +hoD +fYI +sBz tnu tnu tmh @@ -43566,9 +43566,9 @@ sod sod wNj gzM -mIO -mIO -vaj +jRP +jRP +nBM hcJ puZ puZ @@ -43582,40 +43582,40 @@ puZ "} (124,1,1) = {" aad -hIH -owh -owh -owh -qjm +pOd +jhr +jhr +jhr +hzf aaY -lJF -hIr -hIr -wvQ -owh -hIr -qjm +iMe +qMR +qMR +moM +jhr +qMR +hzf ufA -jKU -qjm -ida +dFI +hzf +dwN axz xha xha axz -mAQ -mAQ -kiy -mAQ -mAQ +iWv +iWv +ubZ +iWv +iWv axz -hIr -dcc +qMR +sbM axz -tTe -nDZ -nDZ -xrL +iaG +kWC +kWC +lZH oWG stT nbk @@ -43631,19 +43631,19 @@ lJx lJx lJx hLf -oUA -aoH +pkF +eog rBH -gPC -nCR -gPC +jwz +wgd +jwz rBH rBH rBH rBH rBH -oML -rMF +eNH +lcJ rBH rBH rBH @@ -43653,9 +43653,9 @@ rBH rBH rBH rBH -xsf -skx -xsf +aMo +rGi +aMo aOW aOW aOW @@ -43693,8 +43693,8 @@ xOb tnu kPZ aWE -oem -mCa +vGg +rkz tnu bnS tHd @@ -43727,10 +43727,10 @@ cXk sod rKk uYC -oCa -mIO -mIO -fGU +kro +jRP +jRP +iKs hcJ puZ puZ @@ -43744,23 +43744,23 @@ puZ "} (125,1,1) = {" aad -dCm -qjm -owh -owh -owh -nTI -owh -owh -owh -owh -owh -hIr -qjm +pBT +hzf +jhr +jhr +jhr +wBy +jhr +jhr +jhr +jhr +jhr +qMR +hzf jFy -pMI -qjm -npG +sRP +hzf +pOb axz xha xha @@ -43771,13 +43771,13 @@ xha xha xha vBg -hIr -hJJ +qMR +xgy axz -tTe -nDZ -nDZ -xrL +iaG +kWC +kWC +lZH eOM eOM pKF @@ -43792,20 +43792,20 @@ arX lwo qep sYu -vbD -cfn -cfn -vbD -gPC -rBw -gPC -uhF +nuE +rkB +rkB +nuE +jwz +lnV +jwz +qGN arX arX eOM pzJ -qgC -cfn +tGu +rkB pzJ oOV arX @@ -43843,7 +43843,7 @@ bIV bFg bFg bFg -oGT +pkU jeg mZb ejF @@ -43855,8 +43855,8 @@ xOb tnu kPZ aKK -eUm -vwu +mOM +qky tnu boA tHd @@ -43888,10 +43888,10 @@ cXk sod sod rKk -qne -czE -mIO -mIO +tfx +taB +jRP +jRP bTC hcJ puZ @@ -43906,23 +43906,23 @@ puZ "} (126,1,1) = {" aad -dCm -qjm -owh -owh -owh -qjm -owh -eZa -owh -owh -owh -hIr -lKd +pBT +hzf +jhr +jhr +jhr +hzf +jhr +nPa +jhr +jhr +jhr +qMR +hev hxk -lfO -sqe -ibV +hsE +hDM +pJB axz xha xha @@ -43933,13 +43933,13 @@ xha bPu xha vBg -hIr -bRv +qMR +wBP axz -mdB -nDZ -nDZ -xrL +rXy +kWC +kWC +lZH eOM sYu sYu @@ -43954,21 +43954,21 @@ arX lwo lwo lwo -vbD -cfn -cfn -vbD -gPC -rBw -gPC +nuE +rkB +rkB +nuE +jwz +lnV +jwz lwo lwo eOM sYu -vbD -qgC -cfn -vbD +nuE +tGu +rkB +nuE sYu lwo lwo @@ -44005,22 +44005,22 @@ bFg lpD lpD bFg -oGT +pkU jeg kuJ kZK oNZ -fca +jPF aRn tmh xOb tnu pEe elR -eQf -oIk +bhk +eKj tnu -mlv +vbK tHd tHd kyD @@ -44041,7 +44041,7 @@ tHd tHd kop jMf -tJq +vzT hHk vGY iAg @@ -44051,9 +44051,9 @@ foa rKk sod uYC -czE -mIO -mIO +taB +jRP +jRP gBc hcJ puZ @@ -44068,18 +44068,18 @@ puZ "} (127,1,1) = {" aad -dPu -owh -owh -owh -qjm +fOU +jhr +jhr +jhr +hzf axz axz axz -nxB -qDQ -glY -eqH +jux +wbZ +upN +qnD axz axz axz @@ -44095,13 +44095,13 @@ xha xha xha vBg -hIr -wPf +qMR +bJe axz -tTe -nDZ -nDZ -xrL +iaG +kWC +kWC +lZH eOM eOM eOM @@ -44116,10 +44116,10 @@ arX arX lwo lwo -ksG -cfn -cfn -ksG +qbE +rkB +rkB +qbE sYu fSj wPz @@ -44127,10 +44127,10 @@ xXM tUe cGJ eOM -vbD -cfn -upo -vbD +nuE +rkB +gOQ +nuE sYu eOM eOM @@ -44167,20 +44167,20 @@ bFg bFg bFg bIV -oGT +pkU jlv kgr oNZ nIN -pop -rGl -sVq -juM +fPl +bPv +mLx +imD tnu kPZ fKE -oem -otU +vGg +ouI tnu ofw kop @@ -44213,8 +44213,8 @@ sod rKk cXk wNj -czE -jsp +taB +qvn vnF hgL hcJ @@ -44231,10 +44231,10 @@ puZ (128,1,1) = {" aad sCi -fXs -owh -owh -qjm +uRV +jhr +jhr +hzf axz axz axz @@ -44257,13 +44257,13 @@ bks bks wQR axz -hIr -awn +qMR +hYc axz -bXn -nDZ -nDZ -xrL +cmV +kWC +kWC +lZH eOM mtU dLe @@ -44289,10 +44289,10 @@ kWa khw dnv lwo -ksG -qgC -qgC -ksG +qbE +tGu +tGu +qbE sYu eOM eOM @@ -44341,8 +44341,8 @@ sFu tnu kPZ gTe -xAX -otU +iIH +ouI tnu ofw kop @@ -44393,20 +44393,20 @@ puZ (129,1,1) = {" aad aan -qjm -owh -wRS -qjm +hzf +jhr +tnA +hzf aaY -yiW -qjm -akO -qjm -rDt -qjm -qjm -qjm -rDt +pkn +hzf +oem +hzf +njt +hzf +hzf +hzf +njt esf xha xha @@ -44419,13 +44419,13 @@ dWD rWt xha vBg -hIr -hIr -pZj -nDZ -nDZ -nDZ -xrL +qMR +qMR +nfA +kWC +kWC +kWC +lZH eOM sYu oMG @@ -44531,9 +44531,9 @@ sod rEV sod sod -sXO -fCo -gSO +gup +fYP +xVU cXk sod sod @@ -44555,20 +44555,20 @@ puZ (130,1,1) = {" aad amx -sgb -owh -owh -qjm +hSC +jhr +jhr +hzf jFy -rLg -qjm +pcz +hzf aoX aqC ayY qfh cXM -qjm -ngB +hzf +dDU axz xha xha @@ -44581,13 +44581,13 @@ xha vyM xha vBg -hIr -xiX +qMR +cnG axz -bXn -nDZ -nDZ -xrL +cmV +kWC +kWC +lZH eOM eOM eOM @@ -44659,7 +44659,7 @@ fse jhR oNZ ihp -wbG +kmQ bAn aMB oNZ @@ -44693,9 +44693,9 @@ sod cXk cXk sod -hcm +rQb rXt -fHc +nPq sod sod sod @@ -44716,21 +44716,21 @@ puZ "} (131,1,1) = {" aad -hIH -owh -owh -owh -qjm +pOd +jhr +jhr +jhr +hzf jFy -rLg -qjm +pcz +hzf apa arh tfd tfd fFG -qjm -ngB +hzf +dDU axz xha lYL @@ -44743,17 +44743,17 @@ xha xha xha vBg -hIr -xiX +qMR +cnG axz -rii -nDZ -nDZ -gfX -mjr -mjr -mjr -cze +qOj +kWC +kWC +xkj +aUV +aUV +aUV +lEl eOM sYu sYu @@ -44855,9 +44855,9 @@ sod sod sod sod -kUz -fiy -fUV +cCB +cgp +jSn sod sod sod @@ -44878,21 +44878,21 @@ puZ "} (132,1,1) = {" aad -dCm -qjm -wRS -njm -owh -ycg -imO -qjm +pBT +hzf +tnA +kKp +jhr +jBn +kGe +hzf apc arq azc jOP oqy -qjm -ngB +hzf +dDU axz hQW xha @@ -44902,20 +44902,20 @@ axz mru rZP hTk -qDC -qDC +nCx +nCx vBg -hIr -oaF +qMR +wSE axz -lZG -nDZ -nDZ -nDZ -nDZ -nDZ -nDZ -xrL +kCc +kWC +kWC +kWC +kWC +kWC +kWC +lZH eOM sYu sYu @@ -45040,21 +45040,21 @@ puZ "} (133,1,1) = {" aad -dCm -qjm -owh -owh -owh -cyv -qjm -qjm +pBT +hzf +jhr +jhr +jhr +ibz +hzf +hzf apc tfd tfd tfd xeE -qjm -ngB +hzf +dDU axz dug xha @@ -45070,14 +45070,14 @@ axz hJH axz aaY -qdO -pyP -tTe -tTe -tTe -tTe -nDZ -xrL +vYC +bGh +iaG +iaG +iaG +iaG +kWC +lZH eOM sYu sYu @@ -45115,11 +45115,11 @@ eOM lwo ktd ktd -xVs -lEd -fvR -ttw -vyZ +hTa +nfD +wtf +sGo +vwR ktd fGl bIV @@ -45148,7 +45148,7 @@ maA oNZ uPE lYk -rnr +aLO qXS gWk jMf @@ -45202,21 +45202,21 @@ puZ "} (134,1,1) = {" aad -dPu -owh -owh -owh -qjm +fOU +jhr +jhr +jhr +hzf jFy -rLg -qjm +pcz +hzf apc tfd tfd tfd xeE -qjm -ngB +hzf +dDU axz csu xha @@ -45237,9 +45237,9 @@ axz axz axz aaY -tTe -nDZ -xrL +iaG +kWC +lZH eOM sYu sYu @@ -45276,12 +45276,12 @@ lwo lwo ktd ktd -tAZ -vyZ -vyZ -lrz -vyZ -dVb +uHh +vwR +vwR +lQW +vwR +bzu aCp bIV bIV @@ -45365,20 +45365,20 @@ puZ (135,1,1) = {" aad ami -fXs -owh -owh -qjm +uRV +jhr +jhr +hzf jFy -rLg -qjm +pcz +hzf apc tfd tfd tfd xeE -qjm -ngB +hzf +dDU axz csu xha @@ -45397,11 +45397,11 @@ vWt uQA muN ivl -qxs +ixo axz -tTe -nDZ -xrL +iaG +kWC +lZH sYu eOM sYu @@ -45437,13 +45437,13 @@ lwo lwo qep ktd -mfZ -vyZ -vyZ -vyZ -aik -vyZ -mqN +pyd +vwR +vwR +vwR +okK +vwR +sVo ktd bFg bFg @@ -45468,10 +45468,10 @@ cBL tWz qXS qXS -oPf +wWV ocF qXS -urB +vGJ qXS oZE tnu @@ -45527,20 +45527,20 @@ puZ (136,1,1) = {" aad aeD -qjm -njm -owh -qjm +hzf +kKp +jhr +hzf jFy -rLg -qjm +pcz +hzf apd arx aBE arx lzQ -qjm -iCR +hzf +vvK aaY axz axz @@ -45561,9 +45561,9 @@ kvB djn wFq axz -tTe -nDZ -xrL +iaG +kWC +lZH nOi rnB sYu @@ -45599,13 +45599,13 @@ eOM arX qep ktd -kcQ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ +sBl +vwR +vwR +vwR +vwR +vwR +vwR aCt bFg bFg @@ -45633,7 +45633,7 @@ gWk tnu tnu qXS -sVq +mLx mJJ tnu tnu @@ -45658,20 +45658,20 @@ tHd kop kyD tHd -xxp -toH -vih -eyP -eyP +lSq +mDb +cod +nBm +nBm sax sax sax sax -exB -exB -exB -exB -uof +ooE +ooE +ooE +ooE +oiJ puZ puZ puZ @@ -45689,31 +45689,31 @@ puZ (137,1,1) = {" aad amx -sgb -owh -owh -qjm +hSC +jhr +jhr +hzf jFy -rLg -qjm +pcz +hzf apc tfd tfd tfd xeE -qjm -ngB +hzf +dDU axz -uVW -bHL -kaw -cgO -cgO -jXa -obT -hJS -hJS -rPm +jab +bhG +lNl +wyl +wyl +kdG +iQN +cvh +cvh +kAB axz xha xha @@ -45723,10 +45723,10 @@ tfd djn djn gFe -nDZ -nDZ -gfX -pjY +kWC +kWC +xkj +iEM tDr sYu sYu @@ -45761,13 +45761,13 @@ arX arX arX ktd -rZg -vyZ -vyZ -vyZ -vyZ -vyZ -vVY +tqw +vwR +vwR +vwR +vwR +vwR +kKL ktd kOW bFg @@ -45794,9 +45794,9 @@ daD daD daD gWk -izi -bbz -uKR +aeO +qkf +lOJ gWk ofw jMf @@ -45820,19 +45820,19 @@ kop tHd kyD tHd -sAl +wKB jrg bJj gpz bJj jrg -fDv -rUW +hgM +xwa jrg jrg -elH -elH -elH +dYK +dYK +dYK puZ puZ puZ @@ -45850,44 +45850,44 @@ puZ "} (138,1,1) = {" aad -tJu -owh -owh -owh -qjm +qZm +jhr +jhr +jhr +hzf jFy -rLg -qjm +pcz +hzf apc tfd tfd tfd xeE -qjm -ngB +hzf +dDU axz -cgO -cgO -cgO -cgO -cgO -cgO -cgO -cgO -cgO -cgO +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl axz xha xha axz -qii -aZx +gzp +jsn tfd hin axz -tTe -nDZ -uDX +iaG +kWC +wQJ uQy gkG sYu @@ -45923,13 +45923,13 @@ arX qep arX ktd -wPF -gWG -gWG -vyZ -vyZ -sKe -dNt +rKa +rrq +rrq +vwR +vwR +wPX +wju ktd bIV bIV @@ -45955,21 +45955,21 @@ iXm daD dKL aPk -tZL -tIG -qDA -tIG -tZL -gHn +kOB +mqN +fPm +mqN +kOB +qIw kVd uzu kVd xgc rAH kVd -fka +gJh rAH -teI +rya rAH rAH xgc @@ -45982,14 +45982,14 @@ xgc boW boW boW -kLs +tiN jrg osE osE bJj bJj -vKQ -gOU +rUY +xUR jrg jrg bJj @@ -46012,32 +46012,32 @@ puZ "} (139,1,1) = {" aad -wZv -qjm -owh -cmP -owh -ycg -qjm -qjm +rUy +hzf +jhr +xbr +jhr +jBn +hzf +hzf apc tfd tfd tfd xeE -qjm -ngB +hzf +dDU axz -cgO -bsm -ofh -tqk -gIn -bsm -qbj -gAU -gIn -cgO +wyl +jek +vKz +fdq +gNs +jek +aid +lZT +gNs +wyl axz xha xha @@ -46047,9 +46047,9 @@ axz axz axz aaY -bXn -nDZ -uDX +cmV +kWC +wQJ sNi sYu sYu @@ -46130,12 +46130,12 @@ rAH kVd hxY uzu -gCP -igW -fka +ige +qeU +gJh rAH xgc -wOc +eyX boW boW boW @@ -46144,8 +46144,8 @@ boW boW boW xgc -tdA -sSU +mcF +jaM bJj osE gpz @@ -46153,7 +46153,7 @@ gpz gpz bJj bJj -bza +yas bJj gpz gpz @@ -46174,32 +46174,32 @@ puZ "} (140,1,1) = {" aad -jyZ -qjm +fsE +hzf apG apG -evz -cyv -qjm -qjm +gdr +ibz +hzf +hzf ape ary azc cMs oKc -qjm -ngB +hzf +dDU axz -jWW -bsm -jdi -hZy -gIn -bsm -hZy -ofh -gIn -cgO +aUB +jek +upc +dHf +gNs +jek +dHf +vKz +gNs +wyl axz xha xha @@ -46207,11 +46207,11 @@ vWt uQA muN ivl -qxs +ixo axz -tTe -nDZ -uDX +iaG +kWC +wQJ sNi sYu sYu @@ -46246,15 +46246,15 @@ arX qep ktd ktd -mgH -twI -hYJ -pmO -vyZ -vyZ -pmO -fyJ -jhK +tIJ +pXd +aei +jiP +vwR +vwR +jiP +psw +egc ktd bIV bFg @@ -46292,7 +46292,7 @@ xgc rAH aGF rAH -baR +mSj rAH xgc rAH @@ -46307,7 +46307,7 @@ boW boW boW qjY -mRO +lLJ osE bJj gpz @@ -46315,7 +46315,7 @@ gpz gpz bJj bJj -lbO +ieF bJj gpz bJj @@ -46336,32 +46336,32 @@ puZ "} (141,1,1) = {" aad -fZG +gOH apF apG apG apG jFy -rLg -qjm +pcz +hzf apc tfd tfd tfd xeE -qjm -ngB +hzf +dDU axz -xIZ -bsm -ofh -iFI -gIn -bsm -tqW -hZy -gIn -xbA +iOw +jek +vKz +fzV +gNs +jek +lmI +dHf +gNs +nhL axz hQW xha @@ -46371,9 +46371,9 @@ kvB djn wFq axz -tTe -nDZ -uDX +iaG +kWC +wQJ hEa rnB sYu @@ -46407,16 +46407,16 @@ arX arX arX ktd -nLQ -pBu -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -xVR +oQf +bvO +vwR +vwR +vwR +vwR +vwR +vwR +vwR +xTS ktd ktd bFg @@ -46477,7 +46477,7 @@ gpz gpz gpz bJj -lbO +ieF bJj bJj bJj @@ -46504,26 +46504,26 @@ gHu iji apG jFy -rLg -qjm +pcz +hzf apf arz aRS cse dlk -qjm -ngB +hzf +dDU axz -qzS -cgO -cgO -cgO -cgO -cgO -cgO -cgO -cgO -cgO +cEJ +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl axz xha xha @@ -46533,10 +46533,10 @@ tfd djn djn gFe -nDZ -nDZ -gfX -pjY +kWC +kWC +xkj +iEM tDr lwo sYu @@ -46569,17 +46569,17 @@ arX arX tVZ ktd -ipG -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -aik -vyZ -fFC -qff +oLK +vwR +vwR +vwR +vwR +vwR +vwR +okK +vwR +mYi +nOQ aCH bFg bFg @@ -46630,7 +46630,7 @@ boW boW xgc rAH -wjZ +qZN jrg jrg jrg @@ -46639,7 +46639,7 @@ bJj bJj gpz bJj -lbO +ieF bJj osE bJj @@ -46661,20 +46661,20 @@ puZ (143,1,1) = {" aad agc -eMO +lhi apG iNX apG aaY -lKd -qjm -qjm -qjm -qjm -qjm -qjm -qjm -lKd +hev +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hev axz jFy axz @@ -46690,14 +46690,14 @@ axz axz hJH axz -aZx -aZx +jsn +jsn tfd hin axz -tTe -nDZ -xrL +iaG +kWC +lZH gCW gkG lwo @@ -46710,9 +46710,9 @@ lwo sYu sYu eOM -vbD -rBw -gPC +nuE +lnV +jwz lwo lwo eOM @@ -46731,17 +46731,17 @@ arX arX uJj ktd -qnx -vyZ -nKM -hzv -vyZ -vyZ -hzv -vyZ -vyZ -vyZ -lef +cRd +vwR +mEB +rnV +vwR +vwR +rnV +vwR +vwR +vwR +jYQ ktd bFg bFg @@ -46781,7 +46781,7 @@ boW boW boW xgc -laX +mWZ boW boW xgc @@ -46792,8 +46792,8 @@ boW boW xgc rAH -uIT -cuO +ehD +bhD jrg jrg jrg @@ -46801,9 +46801,9 @@ jrg bJj bJj bJj -xac -fDv -uyB +xQS +hgM +apC osE bJj gpz @@ -46823,9 +46823,9 @@ puZ (144,1,1) = {" aad sCi -qjm -rXq -owh +hzf +kVt +jhr iNX aaY aaY @@ -46838,16 +46838,16 @@ jFy jFy aaY aaY -qjm +hzf nPW -rrI -rrI -szd -szd -rrI -rrI +opp +opp +rdO +rdO +opp +opp nPW -qjm +hzf cqb xha xha @@ -46857,9 +46857,9 @@ axz axz axz aaY -tTe -nDZ -xrL +iaG +kWC +lZH sYu arX arX @@ -46872,9 +46872,9 @@ lwo sYu sYu lwo -jsG -rBw -gPC +juw +lnV +jwz arX lwo eOM @@ -46893,17 +46893,17 @@ vSL uJj qep ktd -qnx -vyZ -nKM -hzv -vyZ -tbe -hzv -vyZ -vyZ -vyZ -lef +cRd +vwR +mEB +rnV +vwR +pQG +rnV +vwR +vwR +vwR +jYQ aCK bFg bFg @@ -46935,16 +46935,16 @@ rAH rAH uzu xgc -qLD +tGF boW boW -iZT +upR rAH xgc -wOc +eyX xgc kVd -wOc +eyX rAH rAH rAH @@ -46954,19 +46954,19 @@ boW boW xgc rAH -uIT -cuO +ehD +bhD jrg jrg -fDv -rUW +hgM +xwa bJj bJj bJj -dmj -sNS -iBB -sXX +acK +qat +eLf +kFP osE bJj gpz @@ -46984,44 +46984,44 @@ puZ "} (145,1,1) = {" aad -hIH -owh -owh -owh -qjm -qjm -qjm -qjm -qjm -qjm -qjm -qjm -qjm -qjm -qjm -qjm -qjm -qjm -rrI -rrI -qjm -qjm -rrI -rrI -qjm -qjm -qjm -qjm -qjm -qjm -riS +pOd +jhr +jhr +jhr +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +opp +opp +hzf +hzf +opp +opp +hzf +hzf +hzf +hzf +hzf +hzf +jQx axz -bXn -tTe -tTe -tTe -nDZ -xrL +cmV +iaG +iaG +iaG +kWC +lZH arX arX arX @@ -47034,9 +47034,9 @@ sYu sYu sYu lwo -jsG -hec -gPC +juw +wwK +jwz qep lwo iCF @@ -47051,21 +47051,21 @@ eOM eOM eOM arX -gPC -gPC -gPC +jwz +jwz +jwz ktd -vLL -vyZ -nKM -hzv -vyZ -vyZ -hzv -nvg -vyZ -vyZ -lef +dVy +vwR +mEB +rnV +vwR +vwR +rnV +nNy +vwR +vwR +jYQ aCK bFg bIV @@ -47091,11 +47091,11 @@ cZk xvA boW xgc -nuD +dBi rAH xgc rAH -nuD +dBi rAH boW boW @@ -47116,18 +47116,18 @@ boW boW xgc rAH -bQA +ooL jrg jrg jrg -vKQ -gOU +rUY +xUR bJj bJj bJj osE -vKQ -gOU +rUY +xUR osE osE bJj @@ -47146,44 +47146,44 @@ puZ "} (146,1,1) = {" aad -xzz -qjm -owh -owh -ceQ -owh -owh -owh -ceQ -owh -owh -owh -owh -owh -owh -owh -rrI -rrI -owh -owh -rrI -rrI -owh -owh -rrI -rrI -owh -owh -owh -owh -owh -nTI -nDZ -nDZ -nDZ -nDZ -nDZ -xrL +jra +hzf +jhr +jhr +wbA +jhr +jhr +jhr +wbA +jhr +jhr +jhr +jhr +jhr +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +jhr +jhr +jhr +wBy +kWC +kWC +kWC +kWC +kWC +lZH arX eOM eOM @@ -47196,9 +47196,9 @@ sYu sYu lwo lwo -vbD -ipL -mJe +nuE +jXV +vJl tUo tUo tUo @@ -47213,21 +47213,21 @@ tUo tUo tUo tUo -mJe -xiK -gPC +vJl +hzS +jwz aCH -qnx -vyZ -nKM -hzv -vyZ -vyZ -hzv -oAt -vyZ -nKM -qgT +cRd +vwR +mEB +rnV +vwR +vwR +rnV +qOx +vwR +mEB +sld lHl dgS bIV @@ -47308,44 +47308,44 @@ puZ "} (147,1,1) = {" aad -xzz -qjm -owh -owh -owh -owh -owh -owh -owh -owh -owh -owh -ceQ -owh -owh -owh -rrI -rrI -owh -owh -rrI -rrI -owh -owh -rrI -rrI -owh -owh -owh -owh -owh -qjm -nDZ -nDZ -nDZ -nDZ -nDZ -xrL +jra +hzf +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +wbA +jhr +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +jhr +jhr +jhr +hzf +kWC +kWC +kWC +kWC +kWC +lZH adZ adZ sYu @@ -47358,9 +47358,9 @@ sYu sYu lwo lwo -hnP -hnP -vbD +mSf +mSf +nuE qep lwo hIz @@ -47375,21 +47375,21 @@ eOM eOM eOM lwo -gPC -hec -gPC +jwz +wwK +jwz ktd -wGy -vyZ -xMh -hzv -vyZ -vyZ -hzv -oAt -vyZ -nKM -lef +hMZ +vwR +mcJ +rnV +vwR +vwR +rnV +qOx +vwR +mEB +jYQ aCK bFg bIV @@ -47441,8 +47441,8 @@ xgc xgc xgc tsK -cbY -tTk +ckj +nVC bJj bJj bJj @@ -47470,44 +47470,44 @@ puZ "} (148,1,1) = {" aad -dPu -owh -owh -owh -qjm -qjm -qjm -lKd -qjm -qjm -qjm -qjm -qjm -lKd -qjm -qjm -qjm -qjm -lKd -qjm -qjm -qjm -qjm -qjm -qjm -qjm -lKd -qjm -qjm -qjm -riS +fOU +jhr +jhr +jhr +hzf +hzf +hzf +hev +hzf +hzf +hzf +hzf +hzf +hev +hzf +hzf +hzf +hzf +hev +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hev +hzf +hzf +hzf +jQx axz -lqB -sCR -sCR -sCR -sCR -qFr +hEJ +utx +utx +utx +utx +xze adZ eOM aec @@ -47537,21 +47537,21 @@ qep arX arX arX -gPC -hec -gPC +jwz +wwK +jwz ktd -knG -vyZ -nKM -hzv -vyZ -vyZ -hzv -oAt -nKM -nKM -lef +mEe +vwR +mEB +rnV +vwR +vwR +rnV +qOx +mEB +mEB +jYQ lwG bFg bFg @@ -47603,7 +47603,7 @@ qjY qjY tsK qjY -joq +ejZ wvS bJj bJj @@ -47641,9 +47641,9 @@ oGg oGg oGg tTd -qjm -qjm -qjm +hzf +hzf +hzf tTd acT aek @@ -47655,9 +47655,9 @@ acT acT acT aDn -esN -esN -esN +hjP +hjP +hjP aDn acT acT @@ -47699,21 +47699,21 @@ arX qep qep arX -gPC -kZs -gPC +jwz +wpj +jwz ktd -ycY -vyZ -nKM -hzv -aik -vyZ -hzv -nvg -noW -ihm -bif +hvC +vwR +mEB +rnV +okK +vwR +rnV +nNy +eea +gUu +ivX ktd bFg bFg @@ -47735,19 +47735,19 @@ xvA aMj daD boW -fPY -pbB -pbB -pbB +kto +oQq +oQq +oQq pLf pLf asz asz asz -lnW -gbx -odJ -uLS +jHX +cXK +ktL +tvz asz asz asz @@ -47808,29 +47808,29 @@ xbz uYR oGg acT -qHK -qHK -qHK -wOf +xhu +xhu +xhu +qGk acT -mkk -fdz -pfT +ofj +lat +wtl aDn arA aek arA aDn -xXz -ndI -bPs -aTG +kjj +oNa +dbK +vHH acT lwo qep kSh hyw -tVN +kVW qep eOM eOM @@ -47865,16 +47865,16 @@ lwo arX qep ktd -bIv -vyZ -nnY -uLA -vyZ -pXF -uLA -vyZ -vyZ -npE +jJg +vwR +mhI +fpB +vwR +sjt +fpB +vwR +vwR +qUi ktd ktd bIV @@ -47897,32 +47897,32 @@ xvA aLZ xvA ukp -wBO +tEa ukp -plv -gGe +xgf +rZQ pLf pLf asz crF -vdJ -cti +cTK +ajB crF crF -cti -iix +ajB +raP crF fNE -kzZ -rOe -kUO -kUO +gsj +eBT +kFR +kFR asz -jPl -jPl +bom +bom kVd -jPl -jPl +bom +bom jrg jrg jrg @@ -47965,34 +47965,34 @@ akM aoK aoK acT -sQw -ouw -ouw +mCu +vUi +vUi oGg -ouw -ouw -ouw -ouw -wPU -acT -nba -fdz -cba -acT -sQw -ouw -ouw +vUi +vUi +vUi +vUi +vAX +acT +dnO +lat +onw +acT +mCu +vUi +vUi mMg -pav -aBb -aBb -lEs +mer +lZs +lZs +dsX acT qep lwo qep uSd -tVN +kVW qep arX lwo @@ -48027,16 +48027,16 @@ lwo arX arX ktd -vNh -xyP -xyP -cCX -cCX -cCX -cCX -xyP -xyP -bif +lxf +mWX +mWX +owR +owR +owR +owR +mWX +mWX +ivX ktd cZk bIV @@ -48059,28 +48059,28 @@ xvA daD bFg ukp -fPY -gGe -hVA -nNf +kto +rZQ +enp +vVj pLf pLf asz crF -vdJ -oVN +cTK +pzR crF crF -cti -iix +ajB +raP crF fNE -onq -iPo -iPo -yaM +vGK +rIw +rIw +pEa asz -aSv +poi kVd kVd xgc @@ -48127,23 +48127,23 @@ akR aoK aoK acT -sQw -ouw -ouw +mCu +vUi +vUi oGg -ouw -ouw -ouw -ouw -vCq -acT -fdz -bcS -fdz +vUi +vUi +vUi +vUi +sXB +acT +lat +yht +lat afc -sQw -ouw -ouw +mCu +vUi +vUi aDn acT acT @@ -48154,7 +48154,7 @@ qep eOM hIz eOM -tVN +kVW aDm lwo eOM @@ -48192,10 +48192,10 @@ ktd ktd ktd ktd -mwv -mwv -mwv -mwv +cts +cts +cts +cts ktd ktd ktd @@ -48221,29 +48221,29 @@ aUd aMj peb ukp -fPY -mpQ -tYb -pIf +kto +ewX +mHY +wDU pLf pLf asz asz asz -ndN -riU -riU -fZW +tnW +gpw +gpw +vJt asz asz asz -leh -oVN -oVN -oVN +pEu +pzR +pzR +pzR asz -bMq -vBZ +iuA +rWf kVd xgc kVd @@ -48289,9 +48289,9 @@ akS aoK aoK api -sQw -ouw -ouw +mCu +vUi +vUi oGg oGg oGg @@ -48299,18 +48299,18 @@ wfL oGg oGg oGg -rrH -rrH -rzG +vzu +vzu +sGH acT -sQw -ouw -ouw +mCu +vUi +vUi acT -jzX -bPs -bPs -ghg +lGF +dbK +dbK +dEL acT eOM lwo @@ -48351,16 +48351,16 @@ arX lwo arX ktd -qli -tSw -sDV -cCX -cCX -cCX -cCX -pmO -fyJ -unK +tjF +cKV +kUP +owR +owR +owR +owR +jiP +psw +mDG ktd cZk bIV @@ -48381,7 +48381,7 @@ gJo gJo abg aMl -oWs +dKc pLf pLf pLf @@ -48391,11 +48391,11 @@ pLf asz asz asz -qZM -iix -oVN -oVN -vdJ +jTw +raP +pzR +pzR +cTK rZt asz asz @@ -48446,33 +48446,33 @@ acT ajO ajO acT -gjw +kiB ncB aoK iqC acT -sQw -ouw -fVu +mCu +vUi +qZT acT -ofQ -hrO -ofQ -ofQ -ofQ +rjF +iVB +rjF +rjF +rjF oGg acT acT acT acT -ofQ -ofQ -ofQ +rjF +rjF +rjF acT -sQw -ouw -ouw -tSy +mCu +vUi +vUi +lul anZ lwo eOM @@ -48513,16 +48513,16 @@ arX arX arX ktd -reg -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -xVR +ygJ +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +xTS ktd ktd bIV @@ -48543,7 +48543,7 @@ qbF gJo abg gJo -oWs +dKc asz asz asz @@ -48551,22 +48551,22 @@ asz asz asz asz -cgI -mRx -dsB -iix -oVN -oVN -vdJ +jsZ +aJx +ixH +raP +pzR +pzR +cTK rZt rZt rZt fNE -pyg +vBq rZt iEF -rzg -azw +veM +vQK fNE xgc xgc @@ -48613,28 +48613,28 @@ acT acT acT aDn -bKg -ofQ -ofQ +ygB +rjF +rjF aek -ofQ +rjF aoK hUM aoK -ofQ +rjF xbz -xlK -hrO -jem +wdu +iVB +jUv acT -sQw -ouw -ouw -klT -sQw -ouw -ouw -aVD +mCu +vUi +vUi +rbW +mCu +vUi +vUi +dnA acT arX arX @@ -48675,17 +48675,17 @@ eOM arX eOM aCH -qnx -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -fFC -lUy +cRd +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +mYi +mbz ktd bFg bIV @@ -48702,10 +48702,10 @@ qbF gJo qbF daD -oSb -oSb -oSb -nDS +dmA +dmA +dmA +mEW asz abn abF @@ -48713,22 +48713,22 @@ abF abF acg asz -icT -kNw -nwT -xyL -mRx -mRx -vdJ +vKy +cze +tlD +cNA +aJx +aJx +cTK rZt rZt rZt fNE -pyg +vBq rZt iEF -mvB -dIM +trH +gOn fNE kVd xgc @@ -48775,34 +48775,34 @@ akL aoK aoK acT -ftY -ouw -ouw +jfZ +vUi +vUi aek -ofQ +rjF onl aNn -bKv -xfw +aTZ +gqw xbz -kLH -ouw -ouw +eXH +vUi +vUi mMg -sQw -ouw -ouw -ofQ -sQw -ouw -ouw -iss +mCu +vUi +vUi +rjF +mCu +vUi +vUi +fXL acT psl eOM arX arX -tVN +kVW aOg arX lwo @@ -48837,17 +48837,17 @@ eOM arX qep ktd -qnx -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -eRZ +cRd +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +rcq ktd cZk bIV @@ -48860,14 +48860,14 @@ cZk tBB gJo bFg -iaa -iaa +qnA +qnA qbF bIV -oSb -oSb -oSb -nDS +dmA +dmA +dmA +mEW asz abp abG @@ -48875,13 +48875,13 @@ abJ abG acj asz -lWb -xlF -tOO -mRx -mRx -mRx -vdJ +jUR +ram +wMG +aJx +aJx +aJx +cTK rZt rZt rZt @@ -48937,34 +48937,34 @@ vHT amJ aoK acT -mJg -ouw -ouw +xQN +vUi +vUi aek -ofQ +rjF aoK aVR aoK -ofQ +rjF xbz -xlK -ofQ -thu -acT -sQw -ouw -qgP -ofQ -sQw -ouw -ouw -cmV +wdu +rjF +vOm +acT +mCu +vUi +kvh +rjF +mCu +vUi +vUi +ozU acT cOU arX eOM arX -tVN +kVW eOM eOM sYu @@ -48999,17 +48999,17 @@ arX arX qep qzv -qnx -vyZ -vyZ -vyZ -vyZ -nKM -nKM -vyZ -vyZ -vyZ -lef +cRd +vwR +vwR +vwR +vwR +mEB +mEB +vwR +vwR +vwR +jYQ rke bIV bFg @@ -49022,14 +49022,14 @@ xvA tBB gJo bFg -iaa +qnA qbF qbF gJo -oSb -oSb -oSb -nDS +dmA +dmA +dmA +mEW asz abp abJ @@ -49037,13 +49037,13 @@ abJ abJ aSK aTR -diU -rno +oPN +pta azm -oVN +pzR rZt -mRx -vdJ +aJx +cTK rZt rZt rZt @@ -49059,9 +49059,9 @@ kVd xgc boW xgc -pZR -riD -skY +sof +qri +pLN uzu uzu jrg @@ -49095,38 +49095,38 @@ aKq ajO acT agB -sDq +ahi amK -anP +laU acT -qYW -ouw -ouw +oeK +vUi +vUi acT -ofQ -ofQ -ofQ -ofQ -ofQ +rjF +rjF +rjF +rjF +rjF oGg acT acT acT acT -sQw -ouw -ouw -ofQ -sQw -ouw -ouw -dWo +mCu +vUi +vUi +rjF +mCu +vUi +vUi +arH acT qep uSd eOM eOM -tVN +kVW eOM lwo arX @@ -49161,17 +49161,17 @@ arX qep qep qzv -qnx -vyZ -vyZ -vyZ -vyZ -vyZ -nKM -vyZ -vyZ -vyZ -lef +cRd +vwR +vwR +vwR +vwR +vwR +mEB +vwR +vwR +vwR +jYQ rke bFg bFg @@ -49181,17 +49181,17 @@ bIV cZk cZk cZk -fCI -oSb -fCI -oSb -oSb -oSb -oSb -oSb -oSb -qDH -nDS +mca +dmA +mca +dmA +dmA +dmA +dmA +dmA +dmA +suM +mEW asz aNR abJ @@ -49199,13 +49199,13 @@ abG abJ abJ rZt -wEG -rno -oVN -oVN -swg -nSG -vdJ +uHc +pta +pzR +pzR +pZH +glr +cTK rZt rZt rZt @@ -49261,9 +49261,9 @@ aoK aoK aoK acT -oUw -ouw -ouw +fDm +vUi +vUi acT acT acT @@ -49271,18 +49271,18 @@ acN acT oGg oGg -ofQ -ofQ -hrO -ofQ -ofQ -hHb -ofQ -acT -sQw -ouw -ouw -iEu +rjF +rjF +iVB +rjF +rjF +ucP +rjF +acT +mCu +vUi +vUi +iaw aDn acT acT @@ -49323,17 +49323,17 @@ arX arX arX qzv -qnx -vyZ -vyZ -vyZ -aik -vyZ -thm -vyZ -vyZ -vyZ -lef +cRd +vwR +vwR +vwR +okK +vwR +eRB +vwR +vwR +vwR +jYQ rke bFg bFg @@ -49343,17 +49343,17 @@ cZk cZk cZk cZk -bMY -oSb -oSb -oqK -oqK -oqK -wou +wBA +dmA +dmA +tlF +tlF +tlF +lXW kaC -oSb -oSb -nDS +dmA +dmA +mEW asz aNP abJ @@ -49361,13 +49361,13 @@ abG abJ abJ rZt -wEG -rno -oVN -oVN -oVN -mRx -uOA +uHc +pta +pzR +pzR +pzR +aJx +crS asz asz qkL @@ -49385,7 +49385,7 @@ xgc boW boW boW -wdf +obl uzu uzu ukp @@ -49423,37 +49423,37 @@ aoK aoK aoK apj -sQw -ouw -ouw -ouw -ouw -ouw -ouw -ouw -nAT +mCu +vUi +vUi +vUi +vUi +vUi +vUi +vUi +lGe agr -ofQ -ouw -ouw -ouw -sQw -ouw -ouw +rjF +vUi +vUi +vUi +mCu +vUi +vUi acT -sQw -ouw -ouw -hvV +mCu +vUi +vUi +lVU acT -ofQ -fNT -ofQ +rjF +qzI +rjF acT -pmg -lac -bPs -cqE +wMv +kbX +dbK +lrk acT lwo arX @@ -49485,17 +49485,17 @@ arX amQ qep qzv -qnx -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -vyZ -bId -vyZ -lef +cRd +vwR +vwR +vwR +vwR +vwR +vwR +vwR +oQP +vwR +jYQ rke bFg bFg @@ -49505,17 +49505,17 @@ bIV bFg cZk bIV -oSb -fCI -oSb -oSb -oqK -oSb -dqg +dmA +mca +dmA +dmA +tlF +dmA +kpv kaC -oSb -yfI -nDS +dmA +gEc +mEW asz abp abJ @@ -49523,16 +49523,16 @@ abJ abJ abJ rZt -diU -jbl +oPN +pij rZt -oVN +pzR rZt -mRx -vdJ +aJx +cTK rkc -mRx -mRx +aJx +aJx asz asz dTj @@ -49545,9 +49545,9 @@ kuS kVd rAH rAH -fXL +pwo boW -sGV +nag uzu ukp jrg @@ -49585,37 +49585,37 @@ aoK aoK aoK acT -sQw -ouw -ouw -ouw -ouw -fkz -ouw -ouw -nAT +mCu +vUi +vUi +vUi +vUi +ljZ +vUi +vUi +lGe ajO -ofQ -ouw -ouw -ouw -sQw -ouw -ouw -acT -sQw -ouw -ouw -iss -acT -hYg -ofQ -dby -acT -nFa -ouw -ouw -uxv +rjF +vUi +vUi +vUi +mCu +vUi +vUi +acT +mCu +vUi +vUi +fXL +acT +muq +rjF +pVU +acT +iYy +vUi +vUi +lZk acT tLW arX @@ -49647,17 +49647,17 @@ arX arX arX axN -qnx -aik -vyZ -lZN -vyZ -vyZ -aik -vyZ -vyZ -vyZ -fHK +cRd +okK +vwR +exi +vwR +vwR +okK +vwR +vwR +vwR +nws ktd cZk bFg @@ -49667,17 +49667,17 @@ bIV fUZ bIV bIV -oSb -oSb -oSb -oSb -oSb -yfI +dmA +dmA +dmA +dmA +dmA +gEc kaC kaC kaC -oSb -nDS +dmA +mEW asz abp abG @@ -49685,18 +49685,18 @@ abJ abG ach asz -yas -mBK -cxV -nSG -anN -mRx -vdJ +mtD +dMl +vBZ +glr +qMN +aJx +cTK rkc -mRx +aJx rZt -bXH -oCl +vuo +bxa asz rZt rZt @@ -49709,8 +49709,8 @@ rAH rAH xgc boW -xHW -fGS +nEC +lUa ukp jrg jrg @@ -49742,42 +49742,42 @@ acT aZg ajO acT -enN +ahq ala ala acT aDn -sQw -ouw -ouw -npn +mCu +vUi +vUi +lpe acT acT aSz acT buJ aDn -ofQ -ofQ -ofQ -ofQ -ofQ -ofQ -pys -acT -jqN -ouw -ouw -cmV +rjF +rjF +rjF +rjF +rjF +rjF +kkB +acT +trS +vUi +vUi +ozU aDn acT aiQ acT acT -qzj -ouw -ouw -oDg +tLM +vUi +vUi +trV acT arX arX @@ -49809,17 +49809,17 @@ arX arX arX ktd -ipG -vyZ -vyZ -vyZ -bId -vyZ -vyZ -vyZ -vyZ -uxJ -sjb +oLK +vwR +vwR +vwR +oQP +vwR +vwR +vwR +vwR +daY +oQC ktd gJo lTc @@ -49829,17 +49829,17 @@ bIV bFg bFg bFg -oSb -oSb -qDH -oSb -qbP +dmA +dmA +suM +dmA +gnU kaC kaC kaC -oSb -oSb -nDS +dmA +dmA +mEW asz abx abM @@ -49847,17 +49847,17 @@ abM abM ack asz -xKY -ivh -xbe -dlz -ivh -ivh -mRV +fnI +ucg +tcv +iXK +ucg +ucg +kAI rkc -mRx +aJx rZt -vuK +rER asz asz crF @@ -49908,10 +49908,10 @@ acT acT acT acT -daz -sQw -ouw -ouw +gDp +mCu +vUi +vUi acT acT gvT @@ -49923,25 +49923,25 @@ aek aek aek aDn -sQw -ouw -npn +mCu +vUi +lpe acT -gGJ -ouw -ouw -dWo +jwr +vUi +vUi +arH acT -bKt -bPs -fBb +pKH +dbK +rAT acT -vlU -ouw -ouw -sts +hYa +vUi +vUi +oQS acT -hlM +jkJ arX eOM lwo @@ -49971,16 +49971,16 @@ eOM arX arX ktd -wGy -vyZ -vyZ -vyZ -bId -vyZ -vyZ -vyZ -vyZ -xVR +hMZ +vwR +vwR +vwR +oQP +vwR +vwR +vwR +vwR +xTS ktd ktd gJo @@ -49992,16 +49992,16 @@ bFg bFg bFg bIV -oSb -fCI -oSb -oSb -yfI +dmA +mca +dmA +dmA +gEc kaC -oSb -oqK -oSb -nDS +dmA +tlF +dmA +mEW asz asz asz @@ -50017,19 +50017,19 @@ bDx asz kXt asz -mRx +aJx rZt asz asz -uvN +mUD rZt rZt asz asz pLf -tfh +dGA rAH -avA +hZc xgc xgc rAH @@ -50070,38 +50070,38 @@ acT acT acT acT -jaw -sQw -ouw -ouw -ofQ +cnc +mCu +vUi +vUi +rjF aek lGq fGG lNV buJ aDn -alh -ohK -orl +dYE +dis +bJk aDn aek aek aDn aDn -xTh -ouw -ouw -tSy +jro +vUi +vUi +lul aiu -sQw -ouw -oxY +mCu +vUi +vuD acT -tgN -ouw -ouw -oDg +xna +vUi +vUi +trV acT arX eOM @@ -50133,16 +50133,16 @@ eOM lwo bjv ktd -vNh -xeh -xeh -hdG -koi -cCX -cCX -xeh -xeh -lMR +lxf +aou +aou +fDN +mAS +owR +owR +aou +aou +fLm ktd oQl gJo @@ -50154,20 +50154,20 @@ bFg bFg bFg bFg -oSb -oSb -oSb -fCI -oSb -oSb -oSb -oqK -oqK -nDS +dmA +dmA +dmA +mca +dmA +dmA +dmA +tlF +tlF +mEW asz -wJD -msC -bqH +gSB +sdo +pGM fNE rZt rZt @@ -50177,28 +50177,28 @@ gGf rZt rZt qVo -mRx -mRx -mRx +aJx +aJx +aJx rZt asz asz -fCW +mPA rZt rZt asz asz -xWR +cix kVd -qpt -xMV +bGt +hzU xgc xgc rAH xgc xgc -tZv -cii +mAd +yhH jrg amu iTQ @@ -50228,42 +50228,42 @@ acT aKq ajO acT -cGG -liW -mCS +yiX +kPk +jQu acT aDn -sQw -ouw -ouw -ofQ +mCu +vUi +vUi +rjF aek oYw oYw lGq xbz -ouw -ouw -ouw -ouw -acT -brX -ouw -ygq -acT -qzj -ouw -ouw -tSy +vUi +vUi +vUi +vUi +acT +vef +vUi +jAK +acT +tLM +vUi +vUi +lul ajO -sQw -ouw -mDK +mCu +vUi +xzw aDn -swy -ouw -ouw -uxv +mqZ +vUi +vUi +lZk acT arX eOM @@ -50298,11 +50298,11 @@ ktd ktd ktd ktd -xir -olZ -cWv -lef -xir +jVo +hND +gwp +jYQ +jVo ktd ktd ktd @@ -50316,20 +50316,20 @@ bFg bFg bFg bIV -oSb -oSb -oSb -qDH -oSb -oSb -oSb -oqK -oSb -nDS +dmA +dmA +dmA +suM +dmA +dmA +dmA +tlF +dmA +mEW bXo -wEG +uHc bIh -rzo +wpM fNE rZt rZt @@ -50339,19 +50339,19 @@ rZt rZt rZt rkc -mRx +aJx rZt rZt rZt asz asz -vuK +rER rZt rZt asz asz pLf -qBu +wUi kVd kVd kVd @@ -50359,7 +50359,7 @@ kVd rAH kVd xgc -bzE +avG boW jrg xgc @@ -50390,42 +50390,42 @@ acT ajO aQX acT -jFr -ouw -ouw -qxC +jaZ +vUi +vUi +ftY acT -sQw -ouw -ouw -ofQ +mCu +vUi +vUi +rjF aek oYw oYw goS xbz -ouw -ouw -ouw -dyj -acT -hgd -ouw -lVK -acT -woj -ouw -ouw -gAu -acT -sQw -ouw -tSy +vUi +vUi +vUi +rVb +acT +bqq +vUi +cbM +acT +kLf +vUi +vUi +lQP +acT +mCu +vUi +lul nej -sQw -ouw -ouw -oDg +mCu +vUi +vUi +trV acT arX eOM @@ -50460,11 +50460,11 @@ oQl oQl oQl ktd -niv -olZ -aik -lef -niv +kDF +hND +okK +jYQ +kDF ktd oQl oQl @@ -50478,28 +50478,28 @@ bFg bFg bIV kaC -oSb -oSb -oSb -fCI -oSb -oSb -qDH -oSb -yfI -nDS +dmA +dmA +dmA +mca +dmA +dmA +suM +dmA +gEc +mEW lSU -pQM -iiT -bqH +wQn +nDs +pGM asz asz aTQ asz asz -mRx -puI -mRx +aJx +tMC +aJx asz asz qkL @@ -50515,13 +50515,13 @@ asz pLf kVd rAH -avA +hZc uzu kVd kVd kVd xgc -nEj +cRA xgc rAH ukp @@ -50552,42 +50552,42 @@ ags ajO ajO acT -rxj -gTg -ouw -oMY +iwk +iPO +vUi +bqZ acT -sQw -ouw -ouw -ofQ +mCu +vUi +vUi +rjF aek oYw oYw npi xbz -aJT -ouw -ouw -lXl -acT -sMN -ouw -mwX -acT -nRD -dDB -tvI -kbD -acT -tao -aBb -vsS +fQU +vUi +vUi +clR +acT +lxu +vUi +rdz +acT +moz +cPZ +mHK +xMB +acT +qDV +lZs +agQ aDn -geb -scS -aBb -huA +ico +pEl +lZs +oWT acT eOM eOM @@ -50622,11 +50622,11 @@ oQl oQl oQl ktd -niv -wQM -xyP -bif -niv +kDF +keV +mWX +ivX +kDF ktd oQl oQl @@ -50640,50 +50640,50 @@ bFg bFg cZk kaC -oSb -oSb -oSb -oSb -oSb -yfI -oSb -oSb -oSb -nDS +dmA +dmA +dmA +dmA +dmA +gEc +dmA +dmA +dmA +mEW lSU lSU -uLa -oHb -laR -rNf -uLa -gIA +gPk +iNx +wuP +uEd +gPk +sip asz -diU -diU -diU +oPN +oPN +oPN asz -sbh -mRx -puI -mRx -puI -oVd +iPk +aJx +tMC +aJx +tMC +cWS asz rZt rZq asz asz -hgM -qaG -hnX -xMV +fUg +vnD +naQ +hzU kVd kVd huF rAH rAH -nEj +cRA boW ukp ukp @@ -50714,14 +50714,14 @@ ajO ajO ajO aDn -cGG -ldO -ouw -gUG +yiX +uoL +vUi +aiq acT -bJL -ouw -ouw +akg +vUi +vUi acT acT lGq @@ -50785,9 +50785,9 @@ oQl oQl ktd ktd -niv -niv -niv +kDF +kDF +kDF ktd ktd oQl @@ -50807,30 +50807,30 @@ kaC kaC kaC kaC -oSb -oSb -oSb -oSb -nDS +dmA +dmA +dmA +dmA +mEW lSU lSU -bSO +ewl rZt gLv rZt gLv -uLa +gPk wBf -mRx -puI -mRx +aJx +tMC +aJx asz -sbh -bDZ -sbh -rmc -sbh -bDZ +iPk +oLA +iPk +sYg +iPk +oLA ogu rZt rZt @@ -50844,8 +50844,8 @@ uzu uzu uzu boW -eXZ -piT +qOS +huQ boW ukp ukp @@ -50876,31 +50876,31 @@ ajO ajO ajO aSa -exa -exa -ouw -ldO +xEn +xEn +vUi +uoL acT -sQw -ouw -ouw -swz +mCu +vUi +vUi +vdv acT aSz acT acT -mwm -jCY +lsa +xon acT -jyF -rfT -bLe -hLL -rfT -mAO +vxO +pww +rMk +kxN +pww +goz acT -wpn -wpn +lIQ +lIQ acT acT lNV @@ -50973,26 +50973,26 @@ mIL mIL gaz mIL -rWx +oMu lSU lSU -nOM -uLa +cwT +gPk rZt rZt gLv -uLa +gPk wBf -mRx -puI -fyO +aJx +tMC +jng asz -sbh -bDZ -sbh -bDZ -sbh -bDZ +iPk +oLA +iPk +oLA +iPk +oLA fNE uvU rZt @@ -51006,7 +51006,7 @@ ukp kVd uzu kVd -iIu +jYN ukp xgc ukp @@ -51020,7 +51020,7 @@ bJj bJj qMc bJj -sLx +oOC osE gpz gpz @@ -51038,32 +51038,32 @@ ajV ajV aDn aDn -ouw -exa -ouw -ldO +vUi +xEn +vUi +uoL acT -sQw -ouw -ouw -ofQ +mCu +vUi +vUi +rjF acT ajO aDn -toy -ouw -ouw +kJc +vUi +vUi acT -iuv -ouw -ouw -ouw -ouw -bEW +mrB +vUi +vUi +vUi +vUi +dbN acT -nNB -uuI -xJH +bqw +ooO +wvw acT acT acT @@ -51135,26 +51135,26 @@ oQl oQl oQl ood -rWx +oMu lSU lSU lSU -rNf -phN -lXT +uEd +aRN +gMA flN -oHb +iNx rZt -nDH -diU -diU +mXD +oPN +oPN asz -sbh -iNt -puI -mRx -puI -xDZ +iPk +bmh +tMC +aJx +tMC +coh fNE rZt uvU @@ -51168,8 +51168,8 @@ pLf pLf pLf pLf -tZv -fGS +mAd +lUa rAH ukp ukp @@ -51199,35 +51199,35 @@ acH amX ajO acT -loW -ouw -exa -ouw +eQe +vUi +xEn +vUi aDn aDn -sQw -ouw -ouw -ofQ +mCu +vUi +vUi +rjF acT ajO aDn -hQL -ouw -ouw +jUw +vUi +vUi bFC -iuv -ouw -lth -lth -ouw -bEW +mrB +vUi +nvl +nvl +vUi +dbN aek -ouw -ouw -whP -gXg -ouw +vUi +vUi +hNM +tiL +vUi aek qep sYu @@ -51297,7 +51297,7 @@ oQl oQl oQl mIL -rWx +oMu lSU lSU lSU @@ -51318,8 +51318,8 @@ tDg iWX wZh asz -diU -tfB +oPN +xtX asz asz asz @@ -51361,35 +51361,35 @@ acH anq bVS acT -loW -ouw -exa -ouw +eQe +vUi +xEn +vUi aDn -ofQ -ofQ -ofQ -ofQ -ofQ +rjF +rjF +rjF +rjF +rjF aSa ajO aSa -ouw -ouw -npr -acT -kJU -bdn -wCW -ohG -gjt -bEW +vUi +vUi +uai +acT +dsU +dVo +ybr +kHX +cCr +dbN fkb -ouw -ouw -ouw -ouw -ouw +vUi +vUi +vUi +vUi +vUi fkb sYu sYu @@ -51459,7 +51459,7 @@ oQl oQl oQl mIL -rWx +oMu lSU twi flN @@ -51469,22 +51469,22 @@ kEs kEs flN eit -uLS +tvz asz -wEF -wEF +tUq +tUq asz -tfC -wnZ -wnZ -wnZ -wnZ -wnZ -wnZ -jfW -wnZ +vTj +hKA +hKA +hKA +hKA +hKA +hKA +wZv +hKA asz -cbZ +mXu asz asz asz @@ -51494,7 +51494,7 @@ asz pLf ukp uzu -lbH +jXy xgc ukp ukp @@ -51506,9 +51506,9 @@ gpz bJj bJj gpz -sLx +oOC fXX -sLx +oOC mwJ fXX fXX @@ -51523,35 +51523,35 @@ acH anF ajO acT -loW -ouw -exa -exa +eQe +vUi +xEn +xEn qgj -sQw -ouw -ouw -ouw -ofQ +mCu +vUi +vUi +vUi +rjF acT aSz acT -hUH -tgf +aQR +ixQ acT acT -iuv -ouw -tDo -ngf -ouw -bEW +mrB +vUi +pCm +cTH +vUi +dbN aek -qhr -ouw -ouw -rCj -vjd +qHt +vUi +vUi +ufn +oBt aek arX sYu @@ -51622,7 +51622,7 @@ oQl oQl mIL mIL -eTP +mkn flN flN flN @@ -51632,25 +51632,25 @@ eit kEs kEs flN -diU -puI -puI -diU -wnZ -bDZ -wnZ -bDZ -bDZ -bDZ -wnZ -bDZ -jfW +oPN +tMC +tMC +oPN +hKA +oLA +hKA +oLA +oLA +oLA +hKA +oLA +wZv asz -rqM -wUd -oni -ydr -bxD +czG +fPJ +evy +bId +wZo asz asz pLf @@ -51686,32 +51686,32 @@ ajV ajV aDn aDn -ouw -exa -exa +vUi +xEn +xEn ajO -sQw -ouw -ouw -ouw -ofQ -ofQ -ofQ +mCu +vUi +vUi +vUi +rjF +rjF +rjF acT aek aek acT -prq -iuv -bdn -bmi -tDo -gjt -bEW +meE +mrB +dVo +isu +pCm +cCr +dbN acT -ujh -ouw -hKN +bWH +vUi +bur acT acT acT @@ -51785,7 +51785,7 @@ oQl mIL fQX gaz -eTP +mkn flN flN gCL @@ -51793,29 +51793,29 @@ flN kEs flN flN -uLS -diU -puI -puI -diU -wnZ -mRx -wnZ -mRx -mRx -mRx -wnZ -mRx -wnZ +tvz +oPN +tMC +tMC +oPN +hKA +aJx +hKA +aJx +aJx +aJx +hKA +aJx +hKA fNE -fjC +ulL rZt rZt rZt -cox -cnq +sIx +wJT asz -oJt +omf jrg jrg jrg @@ -51848,31 +51848,31 @@ ajO ajO ajO acT -pVw -jam -ofQ -acT -sQw -ouw -ouw -ouw -ouw -ouw -ofQ -acT -wnk -wnk -bHp -nxz -dVx -lVw -ylx -ylx -ouw -bEW -acT -gBg -whP +neR +jBl +rjF +acT +mCu +vUi +vUi +vUi +vUi +vUi +rjF +acT +anr +anr +noS +mmm +hmR +pet +bxS +bxS +vUi +dbN +acT +pEn +hNM acT acT qep @@ -51947,7 +51947,7 @@ mIL mIL ood mIL -uae +pDn flN eit flN @@ -51955,12 +51955,12 @@ kEs kEs fgB kEs -ogC +vnj lSU -wEF -wEF +tUq +tUq lSU -tfC +vTj rZt rZt rZt @@ -51968,14 +51968,14 @@ rZt mgT rZt uvU -wnZ +hKA fNE -fjC -jGD -lAT -lAT +ulL +nXX +xas +xas rZt -ftH +mNA aeU fXX bJj @@ -52010,28 +52010,28 @@ ajO aQX ajO acT -kTe -ouw -hSS -acT -ofQ -ofQ -ofQ -ofQ -aCQ -ofQ -ofQ +jTd +vUi +pSS +acT +rjF +rjF +rjF +rjF +iRI +rjF +rjF ijP -bHp -bHp -bHp -vMv -ewi -fwo -fwo -fwo -fwo -gZx +noS +noS +noS +wIA +pMy +oSN +oSN +oSN +oSN +tME acT acT acT @@ -52109,38 +52109,38 @@ mIL mIL ood pqj -tQQ -eTP +qIa +mkn flN kEs flN flN kEs flN -ogC +vnj lSU lSU lSU lSU -mLA -mRx -wnZ -sXE -rZt -iBS -wnZ -kfy -wnZ +dmN +aJx +hKA +mJn +rZt +tEh +hKA +iNJ +hKA fNE -fjC -lAT -jGD -jGD +ulL +xas +nXX +nXX rZt -bpC +ehH asz -oJt -tMk +omf +qSz gpz gpz bJj @@ -52154,9 +52154,9 @@ bJj jrg jrg amu -sLx -sLx -sLx +oOC +oOC +oOC amu sax sax @@ -52172,28 +52172,28 @@ ajO ajO ajO acT -pVw -kLD -pVw +neR +bnN +neR acT -qtS -exa -qtS +hKx +xEn +hKx acT acT acT acT aDn -cHV -bHp -bHp -hsy -vMv -vMv -vMv -vMv -vMv -nxs +nDt +noS +noS +eCy +wIA +wIA +wIA +wIA +wIA +gwi acT acT acT @@ -52266,40 +52266,40 @@ fQX jAL jAL mIL -rEX +gyu mIL ood fQX jAL mIL lSU -eTP +mkn flN kEs agw agw kEs -hzL +pOj lSU cvn lSU -iZs -wnZ -bDZ -wnZ -gSP -rZt -bnM -jfW -bDZ -wnZ +fgI +hKA +oLA +hKA +mIZ +rZt +cep +wZv +oLA +hKA fNE -fjC +ulL rZt rZt -xKO -lAT -hap +kQM +xas +iRK asz jrg bJj @@ -52316,9 +52316,9 @@ bJj osE jrg iTQ -sLx -sLx -sLx +oOC +oOC +oOC amu sax puZ @@ -52338,38 +52338,38 @@ acT acT acT aDn -ofQ -exa -ofQ +rjF +xEn +rjF aDn -xBP -pxB -rfT -mIH -rfT -rfT -rfT -jUr -vAV -jUr -rfT -rfT -rfT -tQm -acT -acT -ete -ltm -gBx -cJa -sVn -pTd +wXm +hXs +pww +dcd +pww +pww +pww +bbU +lhV +bbU +pww +pww +pww +iJT +acT +acT +rTa +loC +ldD +tpH +buL +pMd aDn aDn aDn aDn -qvZ -cMJ +jbf +nGM aDn aDn sYu @@ -52428,38 +52428,38 @@ fQX fQX mIL mIL -rEX +gyu mIL mIL oQl mIL mIL lSU -ehn +qDM jis lSU -fEm -fEm +mcU +mcU lSU lSU lSU fgH lSU -nYv -wnZ -bDZ -bhc -vHF -rZt -hPA -wnZ -bDZ -wnZ +dMV +hKA +oLA +dij +grQ +rZt +fVG +hKA +oLA +hKA asz -eNw +meM rZt rZt -nIv +bAg asz asz asz @@ -52500,39 +52500,39 @@ ajO ajO ajO aSa -ofQ -exa -ofQ +rjF +xEn +rjF aek -xfr -ouw -ouw -rrX -ouw -ouw -ouw -bqp -ouw -bqp -ouw -ouw -ouw -bEW -acT -bbB -jIr -xMc -ouw -ojm -ouw -oKb -hVa -acT -ena -nkK -jIr -bEW -kOC +vpE +vUi +vUi +vQo +vUi +vUi +vUi +fmq +vUi +fmq +vUi +vUi +vUi +dbN +acT +eHn +eim +vxw +vUi +eRN +vUi +qak +sVq +acT +gFi +rzw +eim +dbN +bxj aDn eOM sYu @@ -52607,21 +52607,21 @@ lSU lSU dwQ lSU -cLh -wnZ -mRx -wnZ -vsZ -rZt -xbd -wnZ -mRx -iLX +cDp +hKA +aJx +hKA +jhk +rZt +oIH +hKA +aJx +uvc asz -xWJ +uhK rZt rZt -uiw +guB asz jrg jrg @@ -52662,38 +52662,38 @@ aQX ajO ajO aDn -ofQ -exa -ofQ +rjF +xEn +rjF aek -qPS -ouw -ouw -dHQ -ouw -ouw -ouw -xWo -bqp -xWo -ouw -kAn -ouw -isq -acT -mRJ -ouw -eYa -ouw -ojm -ouw -ouw -bEW -acT -iuv -ouw -ouw -bEW +ttO +vUi +vUi +ibq +vUi +vUi +vUi +gYY +fmq +gYY +vUi +jjR +vUi +hYI +acT +sbW +vUi +wHe +vUi +eRN +vUi +vUi +dbN +acT +mrB +vUi +vUi +dbN aDn aDn eOM @@ -52769,21 +52769,21 @@ rRP lSU cvn lSU -hWC -wnZ -dMq -yfM +cHp +hKA +hyY +tjM rZt rZt rZt -wnZ -bDZ -wnZ +hKA +oLA +hKA aeU rZt rZt rZt -ftH +mNA asz jrg jrg @@ -52824,38 +52824,38 @@ acT acT acT acT -iKD -ofQ -qtS +eZQ +rjF +hKx aek -qVp -ouw -ouw -ouw -ouw -ouw -ouw -qin -ouw -yec -ouw -ouw -ouw -bEW -acT -uMO -ouw -spg -ouw -spg -ouw -ouw -bEW +iwN +vUi +vUi +vUi +vUi +vUi +vUi +yal +vUi +vKW +vUi +vUi +vUi +dbN +acT +eHM +vUi +gBC +vUi +gBC +vUi +vUi +dbN ajw -iuv -ouw -ouw -bEW +mrB +vUi +vUi +dbN ajw sYu sYu @@ -52932,20 +52932,20 @@ lSU lSU lSU lSU -mLA -bDZ -wnZ +dmN +oLA +hKA rZt rZt rZt -wnZ -bDZ -iLX +hKA +oLA +uvc asz -fjC +ulL rZt rZt -icb +dNO asz jrg jrg @@ -52980,44 +52980,44 @@ puZ acH aDn acT -aCf -wWJ -mNN -tyo -hvG +hgA +alG +ntt +dCC +mPU acT -aCf -rsv -hvG +hgA +oCy +mPU aDn -imS -ouw -kAn -hEh -ouw -ouw -ouw -xWo -bqp -xWo -ouw -ouw -kAn -bEW +mUg +vUi +jjR +tvJ +vUi +vUi +vUi +gYY +fmq +gYY +vUi +vUi +jjR +dbN ajw -iuv -ouw -ouw -ouw -ouw -ouw -ouw -bEW +mrB +vUi +vUi +vUi +vUi +vUi +vUi +dbN ajO -iuv -ouw -ouw -bEW +mrB +vUi +vUi +dbN ajO sYu sYu @@ -53094,20 +53094,20 @@ dwQ dwQ bXo rZt -wnZ -sTp -wnZ -jBf +hKA +xvD +hKA +qmn rZt -lVs -wnZ -mRx -wnZ +wmF +hKA +aJx +hKA fNE -fjC +ulL rZt rZt -jJR +pht asz jrg jrg @@ -53142,44 +53142,44 @@ puZ acH aDn acT -xzA -fdz -fdz -fdz -bUm +uKh +lat +lat +lat +byO acT -dbG -fdz -bUm +pLD +lat +byO aek -mFy -ouw -ouw -ouw -ouw -ouw -ouw -bqp -rMm -bqp -ouw -ouw -ouw -bEW +icG +vUi +vUi +vUi +vUi +vUi +vUi +fmq +msp +fmq +vUi +vUi +vUi +dbN ajO -bsO -fwo -fwo -fwo -vvF -ouw -ouw -bEW -acT -emz -dPm -dPm -bEW +fHn +oSN +oSN +oSN +gtd +vUi +vUi +dbN +acT +egU +gxM +gxM +dbN aDn aDn sYu @@ -53223,10 +53223,10 @@ fQX iMb fIT fIT -jut -hjp -hPc -hPc +gdz +pSm +tfZ +tfZ fIT fIT fQX @@ -53242,7 +53242,7 @@ mIL ood oQl oQl -rEX +gyu oQl oQl oQl @@ -53256,20 +53256,20 @@ dwQ dwQ lSU lQm -wnZ -bDZ -wnZ -iPv -rZt -oWn -sba -bDZ -wnZ +hKA +oLA +hKA +hHU +rZt +dDt +qwt +oLA +hKA fNE -tzS +xWK rZt rZt -wEq +ute asz jrg jrg @@ -53304,45 +53304,45 @@ puZ acH aDn acT -gOt -fdz -eCt -fdz -bUm +icO +lat +enK +lat +byO aoe -dbG -fdz -bUm +pLD +lat +byO aek -unD -qLK -fwo -hev -fwo -sRo -fwo -utB -rCY -utB -fwo -fwo -fwo -gZx +cmb +hJj +oSN +yhu +oSN +qMd +oSN +eLC +mDl +eLC +oSN +oSN +oSN +tME acT acT acT acT acT -gLo -ouw -ouw -bEW +xym +vUi +vUi +dbN acT -iuv -ouw -ouw -oKb -rgL +mrB +vUi +vUi +qak +ozQ acT sYu sYu @@ -53384,12 +53384,12 @@ cKL fQX iMb fIT -fTs -rVl -rVl -rVl -dUQ -jut +hSV +mOz +mOz +mOz +aww +gdz fIT fQX iMb @@ -53404,7 +53404,7 @@ mIL gaz oQl oQl -rEX +gyu oQl oQl acb @@ -53418,20 +53418,20 @@ lSU lSU lSU lSU -wnZ -bDZ -bhc -eHg +hKA +oLA +dij +drN pRH -vqb -wnZ -bDZ -wnZ +iYQ +hKA +oLA +hKA fNE -qbG +dAx rZt rZt -ftH +mNA asz jrg jrg @@ -53466,45 +53466,45 @@ puZ acH aDn acT -sbg -fdz -eyC -fdz -dus +jdC +lat +xTz +lat +vpu acT -dbG -fdz -bUm +pLD +lat +byO acT acT acT acT acT -qWQ -vMv -cat -vMv -vMv -vMv -vMv -vMv -vMv -aCM +jWQ +wIA +oHY +wIA +wIA +wIA +wIA +wIA +wIA +wqL acT -wWX -vQx -tkW +fYF +tpG +bLx acT -iuv -ouw -ouw -isq +mrB +vUi +vUi +hYI acT -fta -ouw -ouw -ouw -hJK +hra +vUi +vUi +vUi +uIb acT sYu sYu @@ -53546,12 +53546,12 @@ cKL fQX iMb fIT -nsa -rVl -rVl -rVl -uvd -aDi +oHL +mOz +mOz +mOz +sbg +gay fIT fQX iMb @@ -53566,8 +53566,8 @@ mIL mIL mIL mIL -rEX -lcM +gyu +dzJ mIx aca oQl @@ -53580,20 +53580,20 @@ gpb adC adC lSU -wnZ -mRx -wnZ -hBj +hKA +aJx +hKA +jcn pue -nEW -sba -mRx -wnZ +uVr +qwt +aJx +hKA asz -upU -rnN -gLE -shX +gaU +wcB +rjd +mrJ asz jrg jrg @@ -53615,7 +53615,7 @@ sUD hXH apD hXH -xvV +cMl puZ puZ puZ @@ -53628,45 +53628,45 @@ puZ acH aDn acT -mQA -laq -sUt -laq -rNt +xNs +nzH +fub +nzH +kUa acT -dbG -fdz -hrY -hvG +pLD +lat +xBf +mPU acT aFJ kmM acT -poj -ouw -ouw -ouw -ouw -ouw -ouw -ouw -ouw -yfz -acT -jsS -kAn -ouw +jou +vUi +vUi +vUi +vUi +vUi +vUi +vUi +vUi +bDn +acT +xAt +jjR +vUi mah -iuv -ouw -ouw -bEW +mrB +vUi +vUi +dbN acT -lnF -fAl -fAl -ouw -cVg +mLN +haJ +haJ +vUi +srJ acT lwo sYu @@ -53709,10 +53709,10 @@ jAL iMb fIT fIT -mYq -lbI -rVl -neY +xdP +fFD +mOz +mdP fIT fIT iMb @@ -53728,7 +53728,7 @@ mIL mIL mIL mIL -rEX +gyu kbT skl skl @@ -53742,7 +53742,7 @@ dwQ dwQ dwQ lSU -tfC +vTj rZt rZt iXr @@ -53750,7 +53750,7 @@ pue wui rZt rZt -wnZ +hKA asz asz asz @@ -53775,7 +53775,7 @@ jrg jrg jrg flN -ueD +jrx flN pxA puZ @@ -53796,39 +53796,39 @@ acT alQ acT acT -dbG -fdz -fdz -bUm +pLD +lat +lat +byO acT qDT eAZ acT -eHi -iSC -ouw -eHi -eHi -eHi -eHi -ouw -iSC -eHi +rFk +lrn +vUi +rFk +rFk +rFk +rFk +vUi +lrn +rFk acT -wWX -ouw -kAn +fYF +vUi +jjR acT -iuv -ouw -ouw -bEW +mrB +vUi +vUi +dbN acT -bsO -fwo -vvF -qgu -xsB +fHn +oSN +gtd +dfk +haT acT eOM sYu @@ -53890,7 +53890,7 @@ cKL mIL mIL rcD -rEX +gyu sgB skl skl @@ -53904,15 +53904,15 @@ adj dwQ adH lSU -wnZ -mRx -wnZ -mRx -mRx -mRx -wnZ -kfy -wnZ +hKA +aJx +hKA +aJx +aJx +aJx +hKA +iNJ +hKA rZt rZt flN @@ -53951,45 +53951,45 @@ puZ (188,1,1) = {" acH acT -uVG -aCf -uxG -idP -rsv -rsv -eeV -pyz -fdz -fdz -iaC +rCq +hgA +iRt +dUk +oCy +oCy +iKN +gSY +lat +lat +dWj aDn eAZ eAZ aDn -eHi -iSC -ouw -iSC -iSC -iSC -iSC -ouw -iSC -eHi +rFk +lrn +vUi +lrn +lrn +lrn +lrn +vUi +lrn +rFk acT acT -wWX -edy +fYF +fNt acT -fVi -fwo -fwo -gZx +mUr +oSN +oSN +tME acT acT acT -mLd -fDb +xBZ +xDN aDn aDn lwo @@ -54052,7 +54052,7 @@ ood mIL ood mIL -rEX +gyu abV skl skl @@ -54066,15 +54066,15 @@ ada dwQ dwQ adI -wnZ -bDZ -wnZ -bDZ -bDZ -bDZ -wnZ -bDZ -jfW +hKA +oLA +hKA +oLA +oLA +oLA +hKA +oLA +wZv rZt flN rZt @@ -54113,42 +54113,42 @@ puZ (189,1,1) = {" acH acT -uVG -dbG -fdz -fdz -fdz -fdz -lCy -fdz -fdz -fdz -mco +rCq +pLD +lat +lat +lat +lat +ftE +lat +lat +lat +sOt aek oYw eAZ aek -gju -iSC -ouw -eHi -eHi -eHi -eHi -ouw -iSC -gTi -tYj +uop +lrn +vUi +rFk +rFk +rFk +rFk +vUi +lrn +ucF +pqy acT acT acT acT acT -pCD -jWS -jWS -hhd -xTy +iKr +lhP +lhP +pKX +qOH aDn aDn aDn @@ -54190,11 +54190,11 @@ oQl oQl jAL iMb -saT -fjo -fjo -fjo -mBG +qXo +hwy +hwy +hwy +wCo iMb pqj pqj @@ -54214,7 +54214,7 @@ mIL mIL ood mIL -rEX +gyu oQl abX ors @@ -54228,17 +54228,17 @@ ada ady adE lSU -wnZ -wnZ -wnZ -wnZ -wnZ -wnZ -wnZ -wnZ -wnZ -mRx -mRx +hKA +hKA +hKA +hKA +hKA +hKA +hKA +hKA +hKA +aJx +aJx dwQ flN fXX @@ -54275,45 +54275,45 @@ puZ (190,1,1) = {" acH acT -uVG -dbG -fdz -fdz -fdz -fdz -fdz -fdz -fdz -fdz -bUm +rCq +pLD +lat +lat +lat +lat +lat +lat +lat +lat +byO aek oYw oYw aek -ucS -vvF -ouw -ouw -ouw -ouw -ouw -ouw -qgu -gZx -vMv +pog +gtd +vUi +vUi +vUi +vUi +vUi +vUi +dfk +tME +wIA acT jVI kQF kzE acT -bao +isk kTZ -nqC -gfX -ptX +uVM +xkj +biI aek -jrW -qKT +qTV +oAc aDn lwo eOM @@ -54352,11 +54352,11 @@ iMb iMb iMb iMb -uBx -ieg -nNq -lMr -sYD +jPG +rWm +hHS +iUz +gZs pqj pqj iMb @@ -54376,7 +54376,7 @@ mIL jAL gaz mIL -rEX +gyu oQl oQl abY @@ -54390,13 +54390,13 @@ lSU lSU lSU lSU -pnQ -jzK -jzK -bDZ +bwi +ocN +ocN +oLA rZt rZt -iFP +jCj rZt rZt rZt @@ -54422,9 +54422,9 @@ jrg jrg jrg pxA -gOY -bDZ -gOY +gKZ +oLA +gKZ pxA puZ puZ @@ -54437,30 +54437,30 @@ puZ (191,1,1) = {" acH acT -uVG -dbG -fdz -fdz -fdz -fdz -fdz -fdz -fdz -fdz -bUm +rCq +pLD +lat +lat +lat +lat +lat +lat +lat +lat +byO aek oYw eAZ aDn aDn -iBk -vvF -ouw -ouw -ouw -ouw -qgu -dNU +dmm +gtd +vUi +vUi +vUi +vUi +dfk +vRG aDn fSc aDn @@ -54468,14 +54468,14 @@ qbh ovc fMO pji -bao -nqC -gfX -gfX -ptX +isk +uVM +xkj +xkj +biI aek -sQw -gAu +mCu +lQP aDn lwo lwo @@ -54514,11 +54514,11 @@ iMb iMb jAL jAL -uBx -kXP -xTx -fwJ -wTB +jPG +nxw +rpp +rCp +aVK pqj pqj iMb @@ -54528,8 +54528,8 @@ fQX iMb pQE pQE -ume -ltz +rgf +uEU pQE pQE mIL @@ -54550,21 +54550,21 @@ dwQ dwQ bXo rZt -puI -puI +tMC +tMC rZt -jzK -jzK -bDZ +ocN +ocN +oLA asz asz asz asz asz -mRx -mRx +aJx +aJx dwQ -mRx +aJx dwQ bJj bJj @@ -54584,9 +54584,9 @@ jrg jrg jrg pxA -hHF -xJd -hHF +olJ +sdI +olJ pxA puZ puZ @@ -54600,28 +54600,28 @@ puZ acH acT acT -xzA -fdz -fdz -oGz -fdz -vin -vin -kMy -wRr -wkj +uKh +lat +lat +tkz +lat +jzL +jzL +lVW +nsT +nJD acT eAZ eAZ mnS aDn aDn -nPm -oqn -wUN -tkl -tkl -ewd +gDK +dAk +bgX +smg +smg +rvP aDn aDn eAZ @@ -54630,14 +54630,14 @@ mLT ovc ovc aVQ -bao -gfX -gfX -gfX -ptX +isk +xkj +xkj +xkj +biI nMZ -lVj -aoM +jCU +qnP aDn hkC sYu @@ -54676,11 +54676,11 @@ jAL jAL jAL jAL -uBx -kXP -jDO -fwJ -kxa +jPG +nxw +uYd +rCp +tlS pqj pqj pqj @@ -54689,10 +54689,10 @@ iMb iMb kri pQE -cuG -eif -eif -pzx +qwj +sje +sje +scM pQE mIL ood @@ -54711,17 +54711,17 @@ rHO rHO rRP lSU -bDZ -jzK -jzK -jzK -jzK -jzK -bDZ +oLA +ocN +ocN +ocN +ocN +ocN +oLA fNE -tmj -jGD -uPc +cwn +nXX +gHU asz rZt rZt @@ -54739,16 +54739,16 @@ bJj bJj osE pxA -mRx -mRx +aJx +aJx pxA pxA pxA pxA pxA -gOY -bDZ -gOY +gKZ +oLA +gKZ pxA puZ puZ @@ -54762,16 +54762,16 @@ puZ acH aDn acT -isw -laq -iIG -hUx -bZs -oSZ -wqV -fdz -fdz -bUm +iqx +nzH +cth +rCW +hVD +xwJ +qIz +lat +lat +byO acT aFK eAZ @@ -54792,14 +54792,14 @@ hDw ovc fMO pcC -bao -gfX -gfX -gfX -ptX +isk +xkj +xkj +xkj +biI aek -pav -msH +mer +gdK aDn sYu sYu @@ -54838,11 +54838,11 @@ iMb jAL jAL iMb -gat -eLj -fXd -enu -vHk +dYG +uQq +jPB +rHz +snw pqj iMb iMb @@ -54851,10 +54851,10 @@ iMb iMb iMb aEW -eif -eif -eif -sJn +sje +sje +sje +roB pQE mIL mIL @@ -54873,23 +54873,23 @@ lSU lSU lSU lSU -bDZ -jzK +oLA +ocN rZt -puI -puI -puI +tMC +tMC +tMC rZt fNE -shS +sJk rZt -wxL +gkn asz -mRx +aJx dwQ -mRx -mRx -mRx +aJx +aJx +aJx dwQ bJj bJj @@ -54901,16 +54901,16 @@ jrg jrg jrg pxA -mRx -mRx +aJx +aJx pxA pxA pxA pxA pxA -rbs -rbs -rbs +beD +beD +beD pxA puZ puZ @@ -54930,10 +54930,10 @@ acT acT acT acT -trN -iyK -ouq -xVq +sjZ +nWa +lGS +xEy acT qlk eAZ @@ -54942,10 +54942,10 @@ eAZ eAZ eAZ acT -qHK -qHK -qHK -qHK +xhu +xhu +xhu +xhu acT eAZ qDT @@ -54954,11 +54954,11 @@ aoK ovc ovc acT -bao -gfX -gfX -gfX -ptX +isk +xkj +xkj +xkj +biI aDn uYg aDn @@ -54990,7 +54990,7 @@ jAN jAN jAN jAN -drP +tTU jAN jAN jAN @@ -55000,11 +55000,11 @@ iMb iMb iMb aiz -mNS -riY -riY -riY -pBw +xME +iSr +iSr +iSr +xDx iMb iMb iMb @@ -55013,9 +55013,9 @@ fQX iMb aEC pQE -uml -ltz -ltz +dnJ +uEU +uEU pQE pQE mIL @@ -55035,17 +55035,17 @@ oQl oQl oQl asz -bDZ -jzK -bDZ +oLA +ocN +oLA asz asz aed asz asz -qHE -xKO -rtI +ult +kQM +xmX asz asz rZt @@ -55063,16 +55063,16 @@ jrg jrg jrg pxA -mRx -mRx +aJx +aJx pxA pxA pxA pxA pxA -gOY -bDZ -gOY +gKZ +oLA +gKZ pxA puZ puZ @@ -55086,16 +55086,16 @@ puZ acH aDn acT -ofQ -ofQ -hrO -aCf -rsv -rsv -pyz -jqy -fdz -bUm +rjF +rjF +iVB +hgA +oCy +oCy +gSY +rnA +lat +byO aDn aDn eAZ @@ -55104,10 +55104,10 @@ eAZ oYw oYw gQR -ouw -ouw -ouw -ouw +vUi +vUi +vUi +vUi gQR aSi aSi @@ -55116,18 +55116,18 @@ aoK ovc ovc gQR -cbs -jRt -gfX -gfX -sSL -jWS -fPN -gfX -gfX -sYA -sYA -cze +uMp +sOn +xkj +xkj +twJ +lhP +gjx +xkj +xkj +bkr +bkr +lEl owB rnB sYu @@ -55150,12 +55150,12 @@ fQX iMb jAN asK -pLi -vwS -lJM -hEp -iXH -fYx +bpU +qCw +ydm +hVi +boy +wCe jAN iMb iMb @@ -55197,24 +55197,24 @@ oQl oQl oQl asz -pjB -jzK -bDZ -tvw -lJu -rZt -jGD -jGD -qWy -ftH +tmv +ocN +oLA +wgm +nif +rZt +nXX +nXX +fqd +mNA asz asz asz asz -mRx -mRx -mRx -mRx +aJx +aJx +aJx +aJx dwQ flN jrg @@ -55225,16 +55225,16 @@ jrg pxA pxA pxA -mRx -mRx -rbs -mRx -dfW -mRx -rZt -gOY -bDZ -gOY +aJx +aJx +beD +aJx +mlz +aJx +rZt +gKZ +oLA +gKZ pxA puZ puZ @@ -55248,16 +55248,16 @@ puZ acH acT acT -ofQ -exa -ofQ -dbG -qsP -fdz -fdz -fdz -fdz -bUm +rjF +xEn +rjF +pLD +uMw +lat +lat +lat +lat +byO knC aSi aSi @@ -55266,31 +55266,31 @@ oYw aSi eAZ acT -vZl -dJp -hoP -npn +lSn +lrm +nql +lpe acT qlk eAZ acT bVz -qYo -qYo +pkp +pkp acT bjb -cbs -nDd -nDd -nDd -nDd -fPN -gfX -gfX -gfX -gfX -gfX -pjY +uMp +vMB +vMB +vMB +vMB +gjx +xkj +xkj +xkj +xkj +xkj +iEM tDr sYu sYu @@ -55312,12 +55312,12 @@ fQX mIL jAN asL -wsW -wql -lJM -lJM -lJM -xVj +pik +fZr +ydm +ydm +ydm +oWS jAN mIL iMb @@ -55359,16 +55359,16 @@ jAL iMb oQl asz -bDZ -jzK -bDZ -spI +oLA +ocN +oLA +jNn rZt rZt rZt rZt rZt -bnw +xjD asz asz asz @@ -55385,18 +55385,18 @@ pxA jrg jrg pxA -wcB +ylo pJA -mRx -gOY -gOY -gOY -gOY -rbs -oVN -oVN -bDZ -gOY +aJx +gKZ +gKZ +gKZ +gKZ +beD +pzR +pzR +oLA +gKZ pxA flN puZ @@ -55408,18 +55408,18 @@ puZ "} (197,1,1) = {" acH -ofQ -ofQ -ofQ -gfm -ofQ -dbG -fdz -fdz -fdz -fdz -fdz -bUm +rjF +rjF +rjF +rlO +rjF +pLD +lat +lat +lat +lat +lat +byO ajO aSi aSi @@ -55447,11 +55447,11 @@ jQy acT acT acT -gfX -gfX -gfX -gfX -gfX +xkj +xkj +xkj +xkj +xkj uQy gkG sYu @@ -55474,12 +55474,12 @@ fQX mIL jAN asO -jwX -wql -lJM -lJM -lJM -nQy +slP +fZr +ydm +ydm +ydm +jzm jAN mIL iMb @@ -55515,50 +55515,50 @@ iMb iMb iMb iMb -lWh -lWh -lWh -lWh +fuK +fuK +fuK +fuK oQl asz -bDZ -jzK -bDZ -itc +oLA +ocN +oLA +sAA rZt rZt rZt rZt -xKO -wjs +kQM +fgo asz -mMI -emv +tjA +pLG pxA pxA pxA -mRx -mRx -mRx -mRx -iSd -mRx +aJx +aJx +aJx +aJx +kGF +aJx pxA jrg jrg pxA nHH -xQK -mRx +rCH +aJx flN flN flN flN flN -gOY +gKZ rZt rZt -gOY +gKZ pxA kTd kTd @@ -55570,18 +55570,18 @@ puZ "} (198,1,1) = {" acH -ofQ -ofQ -ofQ -ofQ -ofQ -dbG -fdz -fdz +rjF +rjF +rjF +rjF +rjF +pLD +lat +lat tTd -fdz -fdz -bUm +lat +lat +byO acT aDn oYw @@ -55590,30 +55590,30 @@ aSi oYw eAZ acT -sYT -xcB -bEu -acT -sjU -mBc -vhS -mBc -iEK -mBc -sQn -nkZ -acT -ppx -rsv -rsv -glh -lmI -acT -gfX -gfX -gfX -gfX -gfX +avD +eYE +pGy +acT +gBq +ayk +cDi +ayk +wWI +ayk +szv +hzq +acT +oIL +oCy +oCy +iYs +tJh +acT +xkj +xkj +xkj +xkj +xkj sNi sYu sYu @@ -55636,12 +55636,12 @@ mIL mIL jAN asR -bKb -wql -lJM -lJM -lJM -uDa +vdO +fZr +ydm +ydm +ydm +kOj jAN mIL mIL @@ -55677,50 +55677,50 @@ iMb iMb iMb iMb -lWh +fuK asz asz asz asz asz -bDZ -jzK -bDZ -vLS -cMA -lAT -sdY -sdY -wjs +oLA +ocN +oLA +ota +upW +xas +rEf +rEf +fgo asz asz -muT -tXm -rbs -rbs +jMk +rhv +beD +beD bUe rZt -bDZ +oLA rZt -bDZ +oLA dwQ -mRx +aJx pxA pxA pxA pxA nzf -mRx -mRx +aJx +aJx aQm aXc aXI bbG flN -gOY -bDZ -oVN -oVN +gKZ +oLA +pzR +pzR wBf flN kTd @@ -55732,18 +55732,18 @@ puZ "} (199,1,1) = {" acH -xSg -dpS -ixe -dpS -rhY -dbG -fdz -fdz -acT -fdz -fdz -bUm +nVh +vUJ +cxa +vUJ +uKb +pLD +lat +lat +acT +lat +lat +byO acT eAZ eAZ @@ -55752,30 +55752,30 @@ aSi oYw eAZ acT -dbG -fdz -bUm -acT -dbG -fdz -inT -fdz -fdz -fdz -bUm -swz -acT -oMg -fdz -fdz -fdz -bUm +pLD +lat +byO +acT +pLD +lat +cxV +lat +lat +lat +byO +vdv +acT +dMq +lat +lat +lat +byO knC -gfX -gfX -gfX -gfX -gfX +xkj +xkj +xkj +xkj +xkj hEa rnB sYu @@ -55798,12 +55798,12 @@ mIL mIL jAN asT -oyJ -wql -lJM -lJM -lJM -tSM +ufw +fZr +ydm +ydm +ydm +lwm jAN gaz mIL @@ -55839,15 +55839,15 @@ iMb iMb jAL iMb -lWh +fuK asz dAt sNX dAt rZt -bDZ -jzK -bDZ +oLA +ocN +oLA asz asz asz @@ -55857,31 +55857,31 @@ asz asz asz pxA -beb -mRx -rbs +vva +aJx +beD pxA pxA -qZM -mRx -mRx -mRx -mRx -iSd -fsW +jTw +aJx +aJx +aJx +aJx +kGF +tcM pxA pxA nrr -mRx -mRx +aJx +aJx aPe act acA bah flN -gOY -bDZ -oVN +gKZ +oLA +pzR rZt flN flN @@ -55894,18 +55894,18 @@ puZ "} (200,1,1) = {" acH -dbG -jqy -fdz -jqy -jsW -dbG -fdz -cba -acT -wcE -fdz -bUm +pLD +rnA +lat +rnA +swH +pLD +lat +onw +acT +mPw +lat +byO aek eAZ oYw @@ -55914,31 +55914,31 @@ aSi eAZ ajT acT -lIZ -laq -dTu +eZA +nzH +huL acT -xzA -fdz -inT -fdz -fdz -fdz -fux +uKh +lat +cxV +lat +lat +lat +rCY acT acT -fcO -dTu -dqR -fdz -bUm +myP +huL +uJu +lat +byO ajO -gfX -gfX -gfX -gfX -gfX -pjY +xkj +xkj +xkj +xkj +xkj +iEM tDr sYu lwo @@ -55959,13 +55959,13 @@ mIL mIL ecj jAN -pqf -bKb -wql -lJM -lJM -pPp -amD +cAW +vdO +fZr +ydm +ydm +kAL +tqG jAN ood ood @@ -56007,43 +56007,43 @@ gha rZt sNX rZt -bDZ -jzK -bDZ +oLA +ocN +oLA rZt asz wqc tOq hXQ asz -wnZ -wnZ +hKA +hKA pxA -rbs -mRx -mRx -bvD +beD +aJx +aJx +mgK pxA pxA sIX -bDZ +oLA rZt -bDZ +oLA rZt -mRx +aJx pxA pxA nmT -fcv -mRx +jyV +aJx aPd aRz aXi bag flN -gOY -bDZ -gOY +gKZ +oLA +gKZ flN wBf pxA @@ -56056,18 +56056,18 @@ puZ "} (201,1,1) = {" acH -lLf -fdz -fdz -fdz -jsW -dbG -fdz -fdz +dCU +lat +lat +lat +swH +pLD +lat +lat uZU -fdz -fdz -bUm +lat +lat +byO aek eAZ eAZ @@ -56076,24 +56076,24 @@ aSi oYw aDn aDn -ofQ -ofQ -ofQ -ofQ -dbG -fdz -dJF -fdz -fdz -fdz -bUm +rjF +rjF +rjF +rjF +pLD +lat +wia +lat +lat +lat +byO knC -dbG -fdz -hvG -aCf -fdz -csB +pLD +lat +mPU +hgA +lat +sbI acT acT acT @@ -56122,11 +56122,11 @@ ecj ecj jAN jAN -kVN -sUx -gaF -cMM -qCq +xxV +wcA +tVA +xPR +nTY jAN jAN gaz @@ -56169,43 +56169,43 @@ dAt sNX dAt rZt -bDZ -jzK -bDZ +oLA +ocN +oLA rZt bXo biM biM biM -wnZ -lrF -wnZ +hKA +bms +hKA bXo -rbs -aKh -mRx -mRx -bvD +beD +ucB +aJx +aJx +mgK pxA pxA pxA -mRx -mRx -mRx -mRx -mRx +aJx +aJx +aJx +aJx +aJx pxA -eyy +hRz pEv -mRx +aJx flN flN flN flN flN -gOY -bDZ -alB +gKZ +oLA +ckB sNX dAt rZt @@ -56218,18 +56218,18 @@ puZ "} (202,1,1) = {" acH -dbG -fdz -fdz -fdz -acT -dbG -fdz -fdz +pLD +lat +lat +lat +acT +pLD +lat +lat tTd -fdz -fdz -bUm +lat +lat +byO aek eAZ eAZ @@ -56238,28 +56238,28 @@ aSi aSi aSi knC -exa -exa -exa -ofQ -dbG -fdz -kiX -laq -laq -laq -dTu +xEn +xEn +xEn +rjF +pLD +lat +aKF +nzH +nzH +nzH +huL ajO -dbG -fdz -fdz -fdz -fdz -qlw -acT -sok -sok -rsv +pLD +lat +lat +lat +lat +iwg +acT +uxd +uxd +oCy ajO ajO acT @@ -56331,43 +56331,43 @@ rZt bgC rZt rZt -bDZ -jzK -bDZ +oLA +ocN +oLA rZt asz biM biM biM -wnZ -vqb -qPf +hKA +iYQ +rvO pxA -oUR -ojd -gPf -cyx -bvD +dku +gQK +ydJ +sXe +mgK pxA pxA pxA -pjB +tmv rZt -bDZ +oLA rZt rZt pxA pxA pxA -mRx -gOY -gOY -gOY -gOY -rbs -gOY -bDZ -mQZ +aJx +gKZ +gKZ +gKZ +gKZ +beD +gKZ +oLA +jNu uuN acP flN @@ -56380,18 +56380,18 @@ puZ "} (203,1,1) = {" acH -dqR -rob -laq -laq -acT -dbG -fdz -cba -acT -wcE -fdz -bUm +uJu +sSs +nzH +nzH +acT +pLD +lat +onw +acT +mPw +lat +byO aek eab oYw @@ -56400,30 +56400,30 @@ aSi aSi aSi ajO -lDk -exa -exa -nWq -wbD -laq -dTu +lII +xEn +xEn +eQq +rwE +nzH +huL acT acT acT acT acT -uPM -laq -wqV -kiX -laq -rNt +uGg +nzH +qIz +aKF +nzH +kUa acT ajO -fdz -fdz -fdz -fdz +lat +lat +lat +lat amj acT qep @@ -56493,17 +56493,17 @@ eaa rZt rZt rZt -bDZ -jzK -bDZ +oLA +ocN +oLA iaK -hjk +fVd biM xtI qOd -wnZ -mRx -wnZ +hKA +aJx +hKA pxA pxA pxA @@ -56513,23 +56513,23 @@ pxA pxA pxA pxA -mRx -mRx -mRx -mRx -mRx +aJx +aJx +aJx +aJx +aJx pxA rZt -rbs -rbs -mRx -rbs -mRx -rbs -mRx -oVN -bDZ -alB +beD +beD +aJx +beD +aJx +beD +aJx +pzR +oLA +ckB sNX dAt flN @@ -56547,13 +56547,13 @@ dOu aSz acT acT -lSo -fdz -fdz +eeB +lat +lat acT -fdz -fdz -bUm +lat +lat +byO acT eAZ eAZ @@ -56567,24 +56567,24 @@ rOG acT acT acT -xsO +pTw acT acT -piL -vrY -qwL +mqx +hbO +hDS acT aek aek -lIJ -ojL +sTR +fmR acT acT acT ajO akr -fdz -fdz +lat +lat ajO amj acT @@ -56655,43 +56655,43 @@ rZt byr rZt rZt -bDZ -jzK -bDZ +oLA +ocN +oLA iaK -hsN +fTh biM biM biM -bsD -sTY -wnZ +ePp +vXs +hKA pxA rZt -puI -fIG -puI -puI -puI +tMC +pLO +tMC +tMC +tMC rZt -kRG +bZW rZt crF crF crF -mRx -rbs -mRx -bDZ +aJx +beD +aJx +oLA rZt -bDZ +oLA rZt -bDZ +oLA rZt -bDZ +oLA rZt -bDZ -gOY +oLA +gKZ bgC flN flN @@ -56704,18 +56704,18 @@ puZ "} (205,1,1) = {" acH -svO -ofQ -ofQ -ofQ -ofQ -dbG -fdz -fdz +wCq +rjF +rjF +rjF +rjF +pLD +lat +lat uZU -fdz -fdz -bUm +lat +lat +byO acT eAZ aDn @@ -56724,31 +56724,31 @@ oYw aDn acT acT -rCK -rsv -rLz +jFz +oCy +iAJ acT -rLO -rsv -eTI -rsv -pyz -fdz -bUm +fTn +oCy +hQK +oCy +gSY +lat +byO acT -iBi -bxV -nRC -sex +koM +qPc +bAP +eBy nKc ajO ajO ajO aks -lXO -aGr -fdz -smS +pqf +iWF +lat +lTS acT nSO mib @@ -56813,51 +56813,51 @@ oQl oQl oQl asz -yjK -nqw -yjK -puI +qpc +jeo +qpc +tMC rZt -jzK +ocN rZt -mIw -vub +itx +gbI qOZ cEj qOZ -wnZ -vPO -wnZ +hKA +iKL +hKA bXo -bDZ -rbs -rbs -mRx -rbs -mRx -rbs -kRG +oLA +beD +beD +aJx +beD +aJx +beD +bZW rZt crF crF crF -mRx -rbs -mRx -bDZ +aJx +beD +aJx +oLA rZt -bDZ +oLA rZt -bDZ +oLA rZt -bDZ +oLA rZt -bDZ -gOY +oLA +gKZ byr rZt rZt -mdo +fDW flN kTd kue @@ -56866,18 +56866,18 @@ puZ "} (206,1,1) = {" acH -xdo -exa -exa -ybs -ofQ -dbG -fdz -fdz -fdz -fdz -fdz -bUm +wAb +xEn +xEn +jxU +rjF +pLD +lat +lat +lat +lat +lat +byO acT acT aDn @@ -56886,31 +56886,31 @@ cGS aDn acT acT -tlU -fdz -bUm +eIT +lat +byO acT -xyA -fdz -fdz -fdz -fdz -fdz -bUm +aIJ +lat +lat +lat +lat +lat +byO nKc -dbG -ifG -mIm -eeO +pLD +iLR +hmP +bre aDn gXS ajO ajO akt -qwz -iQM -fdz -fdz +rgz +ndu +lat +lat acT nSO nSO @@ -56964,7 +56964,7 @@ puZ puZ puZ puZ -rho +fAZ lyh rxF wcF @@ -56973,49 +56973,49 @@ oQl oQl iMb iMb -bwY +cGI asz gha uuN sNX rZt -bDZ -jzK -bDZ +oLA +ocN +oLA rZt asz dnH jft ghS asz -wnZ -wnZ +hKA +hKA pxA -pjB -rbs -oXD +tmv +beD +ehp pxA -aAS -cAg +rdq +mue pxA pxA -mRx -mRx -mRx -mRx -mRx +aJx +aJx +aJx +aJx +aJx pxA rZt -rbs -rbs -mRx -rbs -mRx -rbs -mRx -oVN -bDZ -alB +beD +beD +aJx +beD +aJx +beD +aJx +pzR +oLA +ckB gaJ dAt rZt @@ -57028,42 +57028,42 @@ puZ "} (207,1,1) = {" acH -eku -ofQ -ofQ -ofQ -ofQ -dbG -fdz -fdz -fdz -fdz -fdz -bUm -uQp -tVM +jSE +rjF +rjF +rjF +rjF +pLD +lat +lat +lat +lat +lat +byO +heh +duE aDn -exa -exa +xEn +xEn aDn acT acT -dbG -bta -bUm -acT -wvM -fdz -fdz -fdz -fdz -fdz -hGU -acT -kCl -bVd -laq -dTu +pLD +xaY +byO +acT +lTq +lat +lat +lat +lat +lat +lZB +acT +wtv +fUc +nzH +huL aae gXS ajO @@ -57071,8 +57071,8 @@ ajO ajO ajO ajO -fdz -fdz +lat +lat gXS wje nSO @@ -57135,49 +57135,49 @@ iMb iMb jAL iMb -bwY +cGI asz -yjK -nqw -yjK -puI +qpc +jeo +qpc +tMC rZt -jzK +ocN rZt -puI +tMC asz asz asz asz asz -wnZ -wnZ +hKA +hKA fNE -bDZ -mRx +oLA +aJx pxA pxA pxA pxA pxA pxA -oXQ +aQK rZt -bDZ +oLA rZt -bDZ +oLA pxA pxA pxA -mRx -gOY -gOY -gOY -gOY -rbs -gOY -bDZ -mQZ +aJx +gKZ +gKZ +gKZ +gKZ +beD +gKZ +oLA +jNu rZt acP flN @@ -57191,36 +57191,36 @@ puZ (208,1,1) = {" acH acT -aCf -rsv -hvG -ofQ -dqR -laq -laq -laq -laq -laq -dTu -ofQ -ofQ -ofQ -ofQ -ofQ -ofQ -acT -acT -jbU -fdz -hsr -acT -sQy -fdz -fdz -fdz -fdz -fdz -hGU +hgA +oCy +mPU +rjF +uJu +nzH +nzH +nzH +nzH +nzH +huL +rjF +rjF +rjF +rjF +rjF +rjF +acT +acT +pec +lat +fQV +acT +scT +lat +lat +lat +lat +lat +lZB acT aDn aDn @@ -57234,7 +57234,7 @@ ajO ajO ajO ajO -prc +dcI gXS nSO nSO @@ -57297,49 +57297,49 @@ iMb iMb iMb iMb -bwY +cGI asz asz asz asz asz -mRx -mRx -mRx -mRx -mRx +aJx +aJx +aJx +aJx +aJx rZt rZt asz -dPk +gOc biM biM fNE -bDZ -rbs -aAS +oLA +beD +rdq pxA rZt iQe -mRx -rXF +aJx +qLz nMk -bDZ +oLA rZt -bDZ +oLA rZt fNE -wcB +ylo pDu -mRx +aJx flN flN flN flN flN -gOY -bDZ -alB +gKZ +oLA +ckB sNX dAt flN @@ -57353,36 +57353,36 @@ puZ (209,1,1) = {" acH acT -geB -fdz -bUm -ofQ -ofQ -ofQ -jAY -eqP -jAY -ofQ -aAL -ofQ -ofQ -ofQ -ofQ -ofQ -ofQ -acT -acT -pqx -sUt -uSt -acT -kTW -pQC -kzy -eWp -nkc -gAX -lPn +fLG +lat +byO +rjF +rjF +rjF +gtN +oit +gtN +rjF +cjF +rjF +rjF +rjF +rjF +rjF +rjF +acT +acT +ffo +fub +vrP +acT +qwO +erH +lDF +rRY +vAM +lBx +mnB acT aOu aOu @@ -57396,7 +57396,7 @@ ajO gXS ajO alR -gOW +jSC acT nSO kPl @@ -57465,43 +57465,43 @@ oQl asz asz asz -wnZ -wnZ -kqr -wnZ -mRx +hKA +hKA +vyO +hKA +aJx rZt rZt fNE -oiY +wts biM biM fNE -bDZ -mRx -cAg +oLA +aJx +mue pxA iQe qaF -bDZ -ogJ -eOA +oLA +lcV +rkn rZt -bDZ +oLA rZt -bDZ +oLA fNE mHU -xQK -mRx +rCH +aJx aQm aXc aXI bbG flN -gOY -bDZ -gOY +gKZ +oLA +gKZ rZt flN rZt @@ -57515,23 +57515,23 @@ puZ (210,1,1) = {" acH acT -kfD -fdz -bUm -ofQ -aCf -fdz -iob -fdz -iob -fdz -fdz -fdz -fdz -fdz -fdz -hvG -pys +nTq +lat +byO +rjF +hgA +lat +lno +lat +lno +lat +lat +lat +lat +lat +lat +mPU +kkB acT acT acT @@ -57625,45 +57625,45 @@ oQl oQl oQl asz -jqv +rGV rZt -wnZ +hKA axa hVs -kqr -cDx +vyO +kXR rZt rZt fNE -uTU +txj biM biM fNE rZt -rbs +beD pxA pxA rZt hEE -bDZ -rXF +oLA +qLz sfM -uuP -mRx -mRx -mRx +sVe +aJx +aJx +aJx pxA lYG -mRx -mRx +aJx +aJx aPe aSJ aXn bah flN -gOY -bDZ -gOY +gKZ +oLA +gKZ flN rZt rZt @@ -57677,23 +57677,23 @@ puZ (211,1,1) = {" acH acT -wvM -fdz -bUm -ofQ -fdz -aCf -blj -mbP -fUF -rsv -rsv -rsv -rsv -mIm -hvG -fdz -ofQ +lTq +lat +byO +rjF +lat +hgA +lSw +bel +nxO +oCy +oCy +oCy +oCy +hmP +mPU +lat +rjF aDn aOu aOu @@ -57787,45 +57787,45 @@ oQl oQl oQl asz -iFD +hWR rZt -kqr +vyO qCs pPt -wnZ -mRx -vBh -mRx +hKA +aJx +vIf +aJx asz fNE fNE fNE pxA -gUb -gUb +aus +aus pxA pxA iQe qaF -bDZ +oLA pxA pxA pxA -rbs -rbs -rbs +beD +beD +beD pxA lGU -mRx -mRx +aJx +aJx aPd aRz aXi bag flN -gOY -bDZ -gOY +gKZ +oLA +gKZ rZt flN flN @@ -57839,23 +57839,23 @@ puZ (212,1,1) = {" acH acT -sQy -fdz -bUm -ofQ -fdz -fdz -hIZ -fdz -buu -fdz -fdz -fdz -fdz -fdz -fdz -fdz -ofQ +scT +lat +byO +rjF +lat +lat +sUw +lat +skI +lat +lat +lat +lat +lat +lat +lat +rjF aDn aOu wje @@ -57949,45 +57949,45 @@ oQl oQl oQl asz -rzv +bTK rZt -wnZ +hKA fHM rZt -wnZ -mRx -rZt -rbs -rbs -rbs -rbs -rbs -rbs -rbs -cbe -rbs -rbs +hKA +aJx +rZt +beD +beD +beD +beD +beD +beD +beD +jPm +beD +beD dgF hEE -mRx +aJx pxA pxA pxA -mRx -mRx -mRx +aJx +aJx +aJx pxA hQO -fcv -mRx +jyV +aJx flN wAP flN dJS flN -gOY -bDZ -gOY +gKZ +oLA +gKZ rZt rZt wBf @@ -58001,23 +58001,23 @@ puZ (213,1,1) = {" acH acT -vIX -fdz -bUm -ofQ -fdz -dbG -blj -iob -blj -fdz -fdz -fdz -fdz -fdz -bUm +wua +lat +byO +rjF +lat +pLD +lSw +lno +lSw +lat +lat +lat +lat +lat +byO gXS -ofQ +rjF mKf wje wje @@ -58113,43 +58113,43 @@ oQl asz asz rZt -wnZ +hKA rZt rZt -wnZ -mRx +hKA +aJx xEB -rbs -mRx +beD +aJx rZt rZt -ijs +jKI rZt rZt -mRx -rbs -rbs -rbs -rbs -rbs -rbw +aJx +beD +beD +beD +beD +beD +kRq pxA -eba -sYK -bDZ -gOY +bPl +xSZ +oLA +gKZ pxA -eyy +hRz kVe -mRx -gOY -gOY -pMm -gOY -rbs -gOY -bDZ -gOY +aJx +gKZ +gKZ +kkg +gKZ +beD +gKZ +oLA +gKZ rZt flN flN @@ -58163,22 +58163,22 @@ puZ (214,1,1) = {" acH acT -poW -fdz -bUm -eVL -fdz -dbG -iob -gwC -iob -fdz -fdz -fdz -fdz +tRj +lat +byO +uxQ +lat +pLD +lno +qln +lno +lat +lat +lat +lat gXS -bUm -fdz +byO +lat gXS fjs aah @@ -58273,45 +58273,45 @@ oQl oQl oQl asz -yfn +uOq rZt -wnZ +hKA rZt fHM -wnZ -mRx +hKA +aJx rZt -rbs -mRx +beD +aJx rZt rZt -mRx +aJx rZt rZt -mRx -rbs -rbs -rbs -rbs -rbs -eQW +aJx +beD +beD +beD +beD +beD +dgK pxA -usb -gOY -bDZ -gOY +gly +gKZ +oLA +gKZ pxA pxA pxA pxA -mRx -rbs -uUZ -rbs -mRx -oVN -bDZ -oVN +aJx +beD +xTW +beD +aJx +pzR +oLA +pzR rZt twi flN @@ -58325,23 +58325,23 @@ puZ (215,1,1) = {" acH acT -nRk -fdz -bUm -ofQ -fdz -fdz -blj -iob -blj -fdz -fdz -fdz -fdz -fdz -fdz -fdz -ofQ +wCl +lat +byO +rjF +lat +lat +lSw +lno +lSw +lat +lat +lat +lat +lat +lat +lat +rjF fjs nSO kPl @@ -58435,45 +58435,45 @@ puZ puZ puZ asz -eYO +tvs rZt -wnZ +hKA qNK hrb -wnZ -mRx -rZt -rbs -mun -ltk -lLc -rbs -lLc -ltk -mun -jxK -mTO -mTO -vzH -rbs +hKA +aJx +rZt +beD +yfM +fyJ +xtE +beD +xtE +fyJ +yfM +gIJ +cAa +cAa +umu +beD pxA pxA -eba -gOY -bDZ -oVN -qvv -qvv -qvv -oVN -qvv -qvv -qvv -qvv -oVN -oVN -bDZ -gOY +bPl +gKZ +oLA +pzR +wkY +wkY +wkY +pzR +wkY +wkY +wkY +wkY +pzR +pzR +oLA +gKZ rZt twi kue @@ -58487,23 +58487,23 @@ puZ (216,1,1) = {" acH acT -wPb -fdz -bUm -ofQ -fdz -dqR -fdz -laq -laq -laq -laq -laq -lCS -fdz -dTu +kVO +lat +byO +rjF +lat +uJu +lat +nzH +nzH +nzH +nzH +nzH +sii +lat +huL gXS -dsN +aGa fjs aah nSO @@ -58597,45 +58597,45 @@ puZ puZ puZ asz -nip +dKy rZt -kqr +vyO kts wAM -kqr +vyO asz pxA pxA -ltk -xGD -sGX -rbs -miC -qvv -ltk -oKv -nHR -lpp -oKv -rbs -uqh +fyJ +pUV +vhc +beD +vfx +wkY +fyJ +hqp +cyJ +iqv +hqp +beD +emU pxA pxA -oVN +pzR rZt -puI -puI -puI -puI +tMC +tMC +tMC +tMC rZt -puI -puI -puI -puI +tMC +tMC +tMC +tMC rZt -puI +tMC rZt -gOY +gKZ rZt pxA kTd @@ -58649,22 +58649,22 @@ puZ (217,1,1) = {" acH acT -fDl -fdz -bUm -ofQ -dqR -fdz -fdz -cOI -eLe -fdz -fdz -fdz -fdz -fdz -fdz -dTu +sgI +lat +byO +rjF +uJu +lat +lat +oXd +cqO +lat +lat +lat +lat +lat +lat +huL gXS mKf nSO @@ -58761,43 +58761,43 @@ puZ asz asz asz -wnZ -kqr -wnZ -wnZ +hKA +vyO +hKA +hKA asz pxA pxA -mun -elS -xao -rbs -xao -elS -mun -rbs -rbs -rbs -rbs -rbs -uqh +yfM +kFC +eLu +beD +eLu +kFC +yfM +beD +beD +beD +beD +beD +emU pxA pxA -oVN -oVN -qvv -vpz -qvv -qvv -oVN -qvv -qvv -vpz -qvv -oVN -qvv -qvv -oVN +pzR +pzR +wkY +xAH +wkY +wkY +pzR +wkY +wkY +xAH +wkY +pzR +wkY +wkY +pzR rZt pxA puZ @@ -58811,23 +58811,23 @@ puZ (218,1,1) = {" acH acT -cTD -sUt -pxD -ofQ -ofQ -ofQ -ofQ -gPk -kKD -ofQ -ofQ -ofQ -ofQ -ofQ -aCQ -ofQ -ofQ +bJw +fub +rGM +rjF +rjF +rjF +rjF +pST +irp +rjF +rjF +rjF +rjF +rjF +iRI +rjF +rjF aDn wje wje @@ -58930,32 +58930,32 @@ asz asz puZ pxA -fDp -aBY -qvv -rbs -qvv -qvv -rbs -jxK -mTO -mTO -jxK -fDp +dJY +bXz +wkY +beD +wkY +wkY +beD +gIJ +cAa +cAa +gIJ +dJY pxA pxA pxA pxA pxA -pUK -eba -usb +tKh +bPl +gly pxA pxA -wug -hrx -pfb -row +jWf +qKm +wTl +oLg pxA pxA rZt @@ -58977,15 +58977,15 @@ acT acT acT acT -mzG -mzG -mzG +bVK +bVK +bVK acT acT acT -xgK -xgK -xgK +eVR +eVR +eVR acT acT acT diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index f0294dd39c..23ab6fde60 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -5,9 +5,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"aay" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_bridge) "aaN" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -40,6 +37,10 @@ /obj/structure/inflatable/popped, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"acj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "acn" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" @@ -56,9 +57,32 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"adA" = ( -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"acF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) +"acJ" = ( +/obj/structure/closet/secure_closet/security_empty, +/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, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/under/rank/security/corp, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/holobadge, +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/colors/red, +/area/kutjevo/interior/complex/botany) +"adj" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"adt" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_pad) "adD" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_dunes) @@ -67,10 +91,10 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"afh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) +"aeC" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/med) "afS" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -101,38 +125,23 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"ahN" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/scrubland) -"ajX" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 4 +"aiN" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) -"aky" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/lz_dunes) +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/construction) "akH" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"akN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) -"alb" = ( -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/exterior/lz_pad) -"alg" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "alh" = ( /obj/item/tool/hatchet, /obj/item/tool/hatchet, @@ -154,9 +163,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) -"alM" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/colony_central) "amb" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/colors/cyan, @@ -167,6 +173,21 @@ }, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/operating) +"amw" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "amL" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibleg" @@ -221,6 +242,16 @@ /obj/structure/bed/chair, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"apu" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"apA" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/foremans_office) "aqC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/tiles, @@ -241,9 +272,10 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"arj" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/spring) +"aqY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "arA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, @@ -270,6 +302,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"asb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "ast" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer0, @@ -278,6 +314,10 @@ /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"asR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "asT" = ( /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/kutjevo/multi_tiles, @@ -292,16 +332,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"atq" = ( -/turf/open/floor/kutjevo/tan/grey_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Dorms) -"atr" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "atQ" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/kutjevo/colors/orange, @@ -322,22 +352,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"avg" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/lz_pad) -"avM" = ( -/obj/structure/machinery/door_control/brbutton/alt{ - health = null; - id = "kutjevo_medlock_pan"; - idle_power_usage = 0; - name = "Medical East Lock Override"; - pixel_y = 4 - }, -/obj/structure/surface/table/reinforced/prison{ - indestructible = 1 - }, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/med/pano) "avT" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/kutjevo/colors/purple, @@ -357,14 +371,14 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"awU" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/interior/oob/dev_room) -"axv" = ( -/obj/structure/window/framed/kutjevo/reinforced, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/botany/east_tech) +"aws" = ( +/obj/item/weapon/wirerod, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"awx" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_river) "axK" = ( /obj/item/trash/cigbutt/bcigbutt, /obj/structure/stairs/perspective/kutjevo{ @@ -373,6 +387,10 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) +"axL" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "axN" = ( /obj/structure/bed/chair{ dir = 8 @@ -389,49 +407,41 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/construction) -"aAa" = ( -/obj/structure/closet/crate, -/turf/open/floor/kutjevo/colors/orange, +"azm" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/filtrationside/north, +/area/kutjevo/interior/power) +"azP" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) "aAg" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/locks) -"aCb" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) -"aCi" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 14 +"aBb" = ( +/obj/structure/platform/kutjevo{ + dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/spring) -"aCx" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) +"aBc" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/handcard/aceofspades, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "aCD" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) -"aCQ" = ( -/turf/closed/wall/kutjevo/colony, -/area/kutjevo/exterior/lz_pad) -"aEQ" = ( -/obj/item/clipboard{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/tool/pen{ - desc = "It's a seemingly normal pen... aside from the faint red fingerprints on the side..."; - name = "stained pen"; - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/paper/crumpled/bloody, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +"aDA" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) +"aEy" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "aEU" = ( /obj/structure/bed/chair{ dir = 8 @@ -462,21 +472,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"aGa" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/exterior/lz_pad) -"aGK" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "aHb" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -486,23 +481,21 @@ "aHl" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"aHB" = ( +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "aHC" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"aHJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/surgery, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/operating) -"aHS" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/complex/botany/east) "aHW" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/power) +"aIl" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/spring) "aIu" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/auto_turf/sand/layer1, @@ -514,6 +507,12 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"aIO" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "aJy" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -521,6 +520,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) +"aJQ" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/scrubland) "aJU" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -572,16 +574,27 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"aOX" = ( -/obj/structure/platform_decoration/kutjevo{ +"aPe" = ( +/obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "aPA" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"aQd" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"aQg" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "aQw" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -593,16 +606,6 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"aRI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/case/small{ - pixel_y = 7 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/east, -/area/kutjevo/interior/construction) "aRS" = ( /obj/structure/bed{ can_buckle = 0; @@ -614,20 +617,26 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) -"aSl" = ( -/obj/structure/bed/chair{ - dir = 4 +"aRY" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"aSq" = ( +/obj/structure/platform/kutjevo{ + dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "aSu" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"aSV" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/telecomm/lz1_south) +"aTm" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "aUF" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/Northwest_Colony) @@ -637,30 +646,44 @@ }, /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) +"aWk" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) +"aXJ" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "aXV" = ( /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power/comms) +"aYf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "aYr" = ( /obj/item/stack/rods, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"aYO" = ( -/obj/item/stack/sheet/wood, -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"aZE" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/window/reinforced{ - dir = 8 +"aYH" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_0" }, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/complex/botany) +"aZV" = ( +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/scrubland) +"bap" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/foremans_office) "bbc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, @@ -669,10 +692,26 @@ "bbW" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/foremans_office) +"bce" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"bcr" = ( +/turf/open/gm/dirtgrassborder2/wall3, +/area/kutjevo/exterior/complex_border/med_park) "bcO" = ( /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"bcV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "bde" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -686,22 +725,21 @@ /obj/item/card/id/silver/cl, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"bed" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/colony_central) "beo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"beP" = ( -/obj/structure/surface/table/almayer, +"beN" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "beR" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -716,17 +754,9 @@ "bfg" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/power/comms) -"bfF" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/colony_central) -"bfM" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/complex/botany) -"bgW" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"bfj" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/lz_river) "bhg" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -736,17 +766,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"bhl" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power/comms) "bhH" = ( /obj/structure/machinery/chem_master, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"biE" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/east, -/area/kutjevo/interior/complex/med/auto_doc) "biF" = ( /obj/structure/machinery/light{ dir = 1 @@ -761,6 +784,9 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"biZ" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "bja" = ( /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/kutjevo/colony/reinforced, @@ -771,9 +797,19 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"bjJ" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "bkR" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"blw" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob/dev_room) "blY" = ( /obj/structure/largecrate/random/secure, /obj/structure/platform/kutjevo/smooth{ @@ -788,12 +824,28 @@ /obj/item/stack/sheet/metal/med_small_stack, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"bmn" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/colony_north) "bng" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) +"bnn" = ( +/obj/structure/bed/sofa/vert/white/top{ + pixel_y = 17 + }, +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) +"bnr" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east_tech) "bny" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer1, @@ -814,9 +866,6 @@ "bpj" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"bpB" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/spring) "bpT" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -829,10 +878,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"bru" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/construction) "brL" = ( /obj/item/tool/minihoe, /turf/open/floor/kutjevo/tan, @@ -860,22 +905,39 @@ /obj/item/device/flash, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"btx" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_river) -"bvA" = ( -/obj/structure/closet, -/obj/item/clothing/under/kutjevo/drysuit, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"bxI" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/applecakeslice, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) -"bxK" = ( -/turf/open/floor/kutjevo/multi_tiles/west, +"btR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"bvg" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) +"bwx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"bxF" = ( +/turf/open/mars_cave/mars_cave_11, +/area/kutjevo/exterior/lz_dunes) +"bxG" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"bxX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "byl" = ( /obj/structure/blocker/invisible_wall, /obj/structure/window/framed/kutjevo/reinforced/hull, @@ -892,20 +954,13 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) -"byy" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/lz_dunes) "byH" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/colony_S_East) -"byJ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) -"byV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) +"bzc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/interior/oob/dev_room) "bzj" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/kutjevo, @@ -916,6 +971,29 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"bzD" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/exterior/lz_pad) +"bAp" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"bAE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) +"bBL" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/lz_river) +"bBO" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/obj/item/tool/match/paper{ + pixel_x = -11; + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "bBS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; @@ -923,23 +1001,24 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"bCd" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"bCo" = ( -/obj/structure/bed/bedroll, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"bCy" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +"bCg" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/lz_river) +"bCJ" = ( +/obj/structure/closet, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) +"bCT" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "bDl" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -964,10 +1043,6 @@ /obj/structure/machinery/sensortower, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"bDY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/operating) "bEg" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -975,19 +1050,9 @@ "bEp" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/scrubland) -"bEF" = ( -/turf/open/mars_cave/mars_cave_11, -/area/kutjevo/exterior/lz_dunes) "bEH" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) -"bEJ" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/construction) -"bEQ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) "bET" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/grey/plate, @@ -1017,10 +1082,6 @@ "bGD" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_dunes) -"bGG" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_river) "bGV" = ( /obj/structure/bed/chair{ dir = 8 @@ -1038,30 +1099,38 @@ "bHA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) -"bIJ" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/lz_river) -"bIU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 +"bIa" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) +/obj/item/clothing/glasses/thermal/syndi{ + icon_state = "kutjevo_goggles" + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/operating) +"bIy" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/telecomm/lz2_south) +"bIG" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"bIT" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/surgery, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) "bIW" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"bJa" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"bIX" = ( +/obj/item/stack/rods, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "bJc" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -1072,6 +1141,11 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"bKe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) "bKi" = ( /obj/structure/pipes/unary/freezer{ icon_state = "freezer_1" @@ -1092,6 +1166,10 @@ "bKH" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"bKN" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "bKO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer2, @@ -1106,13 +1184,14 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) -"bLB" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/spring) "bNG" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) +"bNP" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) "bOc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, @@ -1122,6 +1201,24 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"bPt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"bPx" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/spring) "bPV" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/tan, @@ -1132,6 +1229,17 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) +"bRj" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) +"bRE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "bRF" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer0, @@ -1142,10 +1250,12 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"bSB" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +"bSd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "bSV" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -1156,6 +1266,36 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"bTe" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + health = null; + id = "kutjevo_medlock_pan"; + idle_power_usage = 0; + name = "Medical East Lock Override"; + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced/prison{ + indestructible = 1 + }, +/turf/open/floor/kutjevo/colors/red, +/area/kutjevo/interior/complex/med/pano) +"bTm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 3 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"bTD" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibarm" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "bTN" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null; @@ -1184,10 +1324,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"bXg" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "bXh" = ( /obj/structure/flora/grass/desert{ icon_state = "heavygrass_6" @@ -1201,34 +1337,32 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"bYa" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/interior/oob/dev_room) -"bYy" = ( +"bXN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/complex/med/locks) +"bZS" = ( /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"bZU" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Dorms) +"bZX" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) "caj" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"car" = ( -/turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/lz_pad) -"caU" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "cbg" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) @@ -1236,20 +1370,15 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) "cbH" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"ccN" = ( -/obj/structure/largecrate/random, +/obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) -"cdu" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/scrubland) +"cbP" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/complex/med) +"cdG" = ( +/turf/open/gm/dirtgrassborder2/north, +/area/kutjevo/exterior/complex_border/med_park) "cek" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -1264,26 +1393,26 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"ceI" = ( -/obj/structure/barricade/wooden{ +"ceT" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"ceL" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/kutjevo/colony/reinforced, -/area/kutjevo/interior/oob) +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/med/operating) "cfa" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"cfA" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) "cgE" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer0, @@ -1302,15 +1431,14 @@ /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"chT" = ( -/obj/item/frame/rack, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany/east_tech) "cid" = ( /obj/item/prop/alien/hugger, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"cil" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/interior/oob/dev_room) "ciD" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -1322,46 +1450,35 @@ /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) "ciS" = ( -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) -"cjI" = ( -/obj/structure/flora/bush/ausbushes/ppflowers{ - icon_state = "lavendergrass_1" - }, -/mob/living/simple_animal/cat/Runtime{ - name = "Garry" - }, -/turf/open/gm/dirtgrassborder2/west, -/area/kutjevo/exterior/complex_border/med_park) -"cjO" = ( -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/med) -"cjP" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"cka" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med/auto_doc) -"cln" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/botany/east_tech) -"cmZ" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 5 +"cja" = ( +/obj/structure/platform/kutjevo{ + dir = 8 }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 5 +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/construction) +"cjO" = ( +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/med) +"cle" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/turf/open/floor/kutjevo/grey/plate, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"clm" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"cmW" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "cnb" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/kutjevo/colors, @@ -1372,19 +1489,6 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"cnE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) -"cnT" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/interior/oob) -"cor" = ( -/turf/open/floor/kutjevo/tan/grey_edge/southwest, -/area/kutjevo/interior/construction) "coL" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/kutjevo/colors/cyan, @@ -1417,22 +1521,13 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"cqi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "cqB" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ +/obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/power) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "cqX" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -1443,12 +1538,6 @@ /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) -"crI" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "crL" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" @@ -1465,10 +1554,6 @@ /obj/structure/girder, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"csX" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/interior/oob) "ctD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_30" @@ -1479,10 +1564,6 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) -"ctJ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/filtrationside/north, -/area/kutjevo/interior/power) "ctQ" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -1513,12 +1594,12 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"cvM" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" +"cvn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +/area/kutjevo/exterior/spring) "cvV" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/kutjevo/multi_tiles, @@ -1540,12 +1621,13 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"cxH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/defibrillator, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/auto_doc) +"cxR" = ( +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security, +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors/red, +/area/kutjevo/interior/complex/botany) "cyc" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central/mine_elevator) @@ -1553,7 +1635,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) -"cAd" = ( +"cAi" = ( /obj/structure/prop/dam/crane{ icon_state = "tractor"; name = "tractor" @@ -1563,10 +1645,17 @@ "cAt" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"cAF" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_dunes) "cAK" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"cBa" = ( +/obj/item/tool/hatchet, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "cBq" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_2"; @@ -1575,9 +1664,6 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"cBz" = ( -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "cBB" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor1, @@ -1593,14 +1679,15 @@ "cCa" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_north) -"cCD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +"cCo" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"cCJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "cDf" = ( /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med) @@ -1611,6 +1698,10 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"cDm" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "cDx" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/stonyfields) @@ -1644,9 +1735,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany) -"cFn" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med/triage) "cFY" = ( /obj/item/stool, /obj/item/frame/firstaid_arm_assembly, @@ -1662,9 +1750,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"cGk" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/lz_river) "cGz" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -1680,14 +1765,19 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"cIc" = ( -/obj/structure/machinery/light{ - dir = 1 +"cHW" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/obj/structure/closet, -/obj/item/clothing/under/kutjevo, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) +"cIm" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_dunes) +"cIO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/interior/oob) "cIZ" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -1701,10 +1791,21 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"cJh" = ( +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/colors/green, +/area/kutjevo/interior/complex/botany) "cJn" = ( /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) +"cJz" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "cKH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -1725,9 +1826,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"cLJ" = ( -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) "cMv" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -1744,17 +1842,6 @@ }, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) -"cMV" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"cNz" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/auto_doc) "cNE" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution" @@ -1770,18 +1857,12 @@ "cOt" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_dunes) -"cPa" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/newspaper, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"cOP" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/scrubland) +"cOU" = ( +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/lz_dunes) "cPt" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -1800,6 +1881,10 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"cQg" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "cQH" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -1859,6 +1944,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"cUe" = ( +/obj/structure/machinery/photocopier, +/obj/structure/window/reinforced/tinted{ + dir = 1; + pixel_y = 10 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med) "cUh" = ( /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/kutjevo/tan/grey_edge, @@ -1866,16 +1959,30 @@ "cUm" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"cUB" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/scrubland) "cUI" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"cVh" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "cVD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"cVE" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "cWc" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -1889,6 +1996,9 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"cWA" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_river) "cWL" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib2" @@ -1908,9 +2018,16 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"cXp" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/kutjevo/colors/cyan, +"cXv" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted{ + dir = 1; + pixel_y = 10 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med) "cXL" = ( /turf/open/floor/plating/kutjevo, @@ -1924,9 +2041,9 @@ /obj/item/clipboard, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"cYm" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) +"cYN" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "dax" = ( /obj/structure/sink{ pixel_y = 32 @@ -1954,11 +2071,26 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) +"dbw" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"dca" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "dcb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"dcl" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_river) "dcA" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -1966,10 +2098,16 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"ddg" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) +"dcQ" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"ddb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ddk" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -1991,9 +2129,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"ddz" = ( -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/complex/botany) "ddH" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -2012,6 +2147,10 @@ "dfa" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/lz_river) +"dfc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) "dfz" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/grey/plate, @@ -2023,9 +2162,19 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"dgw" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/botany) "dgx" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) +"dgI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "dhm" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -2048,16 +2197,6 @@ "dip" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"diA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) -"diC" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med/auto_doc) "diV" = ( /obj/structure/bed/chair{ dir = 4; @@ -2065,32 +2204,37 @@ }, /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) +"djy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"djD" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_dunes) +"djO" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/colony_north) "dkE" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) "dkW" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"dlz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "dlT" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"dlZ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "dnl" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"dnq" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east) "dnF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, @@ -2116,19 +2260,8 @@ "dob" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_river) -"dod" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) -"doX" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/runoff_river) -"dpL" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1/north, +"dqc" = ( +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/spring) "dql" = ( /obj/structure/prop/dam/wide_boulder/boulder1, @@ -2139,15 +2272,32 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"drs" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibarm" +"drk" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/med/auto_doc) +"drP" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) -"drV" = ( -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) +"dsM" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door_control/brbutton{ + health = null; + id = "kutjevo_medlock_east"; + idle_power_usage = 0; + indestructible = 1; + name = "Medical East Lock Override"; + pixel_y = 22; + range = 15 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) "dsN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -2162,14 +2312,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"dtV" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/botany/east_tech) +"dsV" = ( +/obj/item/clothing/mask/cigarette/pipe/cobpipe, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) +"dtU" = ( +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "duu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper South Power Shutters" @@ -2184,6 +2334,9 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"dvH" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_pad) "dvL" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, @@ -2194,6 +2347,10 @@ /obj/structure/inflatable/popped, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"dwa" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "dwf" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_bridge) @@ -2206,11 +2363,13 @@ "dxF" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/oob) -"dya" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"dyn" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"dyS" = ( +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "dzd" = ( /obj/item/storage/briefcase, /turf/open/auto_turf/sand/layer0, @@ -2225,17 +2384,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) -"dzB" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "dzD" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -2247,13 +2395,26 @@ /obj/item/stack/rods, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"dAG" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/tan/alt_edge/north, +"dAm" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_pad) +"dAz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/clipboard, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "dAH" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/runoff_bridge) +"dBg" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "dBO" = ( /obj/structure/ladder, /obj/structure/blocker/invisible_wall, @@ -2290,54 +2451,49 @@ /obj/item/stack/sheet/metal, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) -"dDH" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.05 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "dEI" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) +"dET" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "dFc" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) -"dFq" = ( -/turf/open/gm/dirtgrassborder2/wall3, -/area/kutjevo/exterior/complex_border/med_park) "dFx" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"dFS" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_river) "dFV" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"dGp" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_river) "dGx" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) -"dGP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) +"dHb" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/spring) +"dHD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "dHF" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand/layer0, @@ -2355,21 +2511,10 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"dIL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "dIQ" = ( /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"dIZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "dJk" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan, @@ -2395,6 +2540,12 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"dKP" = ( +/obj/structure/closet/firecloset/full{ + desc = "It's a storage unit for fire-fighting supplies. The sequence -4-- is carved into the corner." + }, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/construction) "dLR" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_bridge) @@ -2416,35 +2567,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"dNS" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med) -"dNY" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "dOJ" = ( /obj/structure/barricade/deployable, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) -"dPi" = ( -/obj/item/weapon/wirerod, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"dPW" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "dQq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -2455,6 +2581,9 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"dQx" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "dQD" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -2462,19 +2591,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"dRT" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "dRX" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) -"dSl" = ( -/turf/open/floor/plating/kutjevo/platingdmg3, -/area/kutjevo/interior/complex/botany/east_tech) "dSC" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -2482,6 +2602,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"dSI" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/interior/oob/dev_room) "dSQ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer0, @@ -2498,12 +2622,16 @@ /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) "dUw" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/colors/green, -/area/kutjevo/interior/complex/botany) +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) "dUE" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/auto_turf/sand/layer0, @@ -2522,23 +2650,25 @@ /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, /area/kutjevo/interior/complex/botany) -"dVp" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_river) -"dWz" = ( -/obj/structure/platform/kutjevo{ - dir = 1 +"dVY" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 }, -/obj/structure/platform/kutjevo{ - dir = 8 +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 }, -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/interior/construction) +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "dWB" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, /area/kutjevo/interior/complex/med/triage) +"dWE" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/kutjevo/interior/complex/med/auto_doc) "dWO" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_dunes) @@ -2576,16 +2706,6 @@ "dYB" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"dZk" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"dZK" = ( -/obj/item/clothing/mask/cigarette/pipe/cobpipe, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) "eaB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -2602,31 +2722,32 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"ebf" = ( -/turf/open/mars_cave/mars_cave_11, -/area/kutjevo/exterior/scrubland) -"ebg" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/interior/colony_north) "ebB" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"ebE" = ( -/obj/structure/platform/kutjevo/rock{ +"ebC" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/mars_cave/mars_cave_7, -/area/kutjevo/exterior/scrubland) +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) +"ebF" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "ebZ" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"ecg" = ( +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/lz_dunes) "ecA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -2643,44 +2764,16 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"ede" = ( -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "edn" = ( /obj/structure/platform/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) -"edE" = ( -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/spring) -"eeq" = ( -/turf/open/floor/plating/kutjevo/platingdmg1, -/area/kutjevo/interior/complex/Northwest_Dorms) "eeP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"efm" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/spring) -"efp" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"efw" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "efS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -2692,10 +2785,6 @@ /obj/item/spacecash/c200, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"ega" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/complex/botany) "egx" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -2713,9 +2802,12 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"eil" = ( -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/med/auto_doc) +"eit" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "eiz" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, /obj/structure/machinery/light{ @@ -2723,6 +2815,16 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner, /area/kutjevo/interior/construction) +"eiK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) +"ejF" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ejP" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/multi_tiles, @@ -2731,6 +2833,11 @@ /obj/structure/surface/table/gamblingtable, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"ejZ" = ( +/obj/structure/surface/rack, +/obj/item/packageWrap, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "ekh" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/kutjevo_decals/catwalk, @@ -2746,11 +2853,9 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"elk" = ( -/obj/structure/machinery/autodoc_console, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/auto_doc) +"elE" = ( +/turf/open/floor/coagulation/icon8_6, +/area/kutjevo/exterior/runoff_river) "emi" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2758,21 +2863,12 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"emn" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) -"emS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"emY" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -4; - pixel_y = 10 +"emJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/spring) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "eoc" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -2788,18 +2884,19 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"eoy" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/Northwest_Dorms) +"eot" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/lz_river) "eoA" = ( /obj/structure/machinery/chem_dispenser/medbay, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) +"eoY" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cleaningprog_botany" + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) "epd" = ( /obj/item/reagent_container/food/drinks/cans/thirteenloko, /turf/open/auto_turf/sand/layer1, @@ -2810,9 +2907,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"epr" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "epQ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan, @@ -2820,19 +2914,28 @@ "epR" = ( /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"eqE" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) "eqJ" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"eqN" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/kutjevo/exterior/spring) +"eqP" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northeast, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"eqS" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/spring) "era" = ( /obj/structure/closet/crate/freezer/rations, /obj/item/defenses/handheld/tesla_coil, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"erg" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) "erv" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -2853,13 +2956,19 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"esg" = ( -/turf/closed/wall/kutjevo/rock, -/area/kutjevo/exterior/lz_pad) +"ese" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/colony_central) "esi" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/power/comms) +"esU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "etm" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/cyan, @@ -2884,21 +2993,27 @@ "euj" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"euA" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) -"euG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) +"euk" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/botany/east_tech) "evr" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) "evZ" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) +"ewc" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/spring) +"ewC" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/operating) "ewL" = ( /obj/structure/barricade/handrail/kutjevo{ layer = 3.1 @@ -2933,23 +3048,46 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"eyl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "eyy" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_north) -"eyV" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/scrubland) +"eyS" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/spring) "ezm" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"ezJ" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) "ezX" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) +"eAw" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) +"eAE" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_river) +"eAF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "eAL" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/tiles, @@ -2964,9 +3102,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"eBm" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/lz_river) "eBH" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -2975,12 +3110,9 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_pad) -"eCe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med) +"eCv" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northwest, +/area/kutjevo/interior/foremans_office) "eCB" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/structure/machinery/light{ @@ -2988,25 +3120,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"eCI" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/runoff_river) "eCY" = ( /obj/structure/machinery/cryo_cell, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/cells) -"eDa" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/lz_pad) -"eDI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/power/comms) "eDS" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -3022,11 +3139,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eFw" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "eFX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -3038,20 +3150,19 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eGu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/m94, -/turf/open/floor/kutjevo/colors/purple/inner_corner/west, -/area/kutjevo/interior/construction) "eHX" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz1_south) -"eIo" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cleaningprog_botany" +"eIg" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Dunes Landing Zone" }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) +/turf/open/floor/plating/kutjevo, +/area/shuttle/drop1/kutjevo) +"eIP" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) "eIZ" = ( /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, @@ -3060,28 +3171,34 @@ /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eJD" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/spring) -"eKw" = ( -/turf/open/floor/kutjevo/tan/alt_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"eLh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ +"eKL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) +"eLf" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"eLi" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/lz_river) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "eLO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"eLQ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "eLT" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -3090,23 +3207,6 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"eMg" = ( -/obj/structure/surface/table/reinforced/prison{ - indestructible = 1 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - health = null; - id = "kutjevo_medlock_we"; - idle_power_usage = 0; - name = "Medical West Lock Override"; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/med/pano) "eMC" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/complex_border/botany_medical_cave) @@ -3121,26 +3221,14 @@ /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) -"eNh" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner, -/area/kutjevo/interior/complex/med/operating) "eNl" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"eNn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"eNU" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) +"eNp" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power/comms) "eOy" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, @@ -3152,15 +3240,19 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"eOK" = ( +/obj/structure/largecrate/black_market/confiscated_equipment, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "eOM" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibarm" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"eOU" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_dunes) +"ePd" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "ePn" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "disinfection"; @@ -3189,9 +3281,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"eQN" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_river) "eQW" = ( /obj/structure/bed/chair{ dir = 4; @@ -3218,6 +3307,19 @@ /obj/structure/machinery/body_scanconsole, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"eSa" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) +"eSs" = ( +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "eSH" = ( /turf/open/floor/kutjevo/colors/orange/inner_corner, /area/kutjevo/interior/power_pt2_electric_boogaloo) @@ -3232,10 +3334,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_river) -"eTB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/kutjevo/platingdmg3, -/area/kutjevo/interior/complex/Northwest_Dorms) "eTP" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -3247,32 +3345,6 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"eUm" = ( -/obj/structure/prop/wooden_cross{ - desc = "A wooden grave marker. The name 'Richard' is carved into the wood."; - pixel_x = -6; - pixel_y = 19 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 5; - pixel_y = -2 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) -"eUB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) -"eVw" = ( -/obj/structure/window{ - dir = 1 - }, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/complex/botany) "eVy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -3285,25 +3357,19 @@ "eXm" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany) -"eXx" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "eXy" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"eXU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) "eYN" = ( /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) +"eZi" = ( +/obj/structure/closet/crate, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "eZw" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -3324,28 +3390,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"fak" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/microwave{ - pixel_x = 1; - pixel_y = 15 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"faJ" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/storage/box/stompers, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/construction) -"fbh" = ( -/obj/structure/closet, -/obj/item/clothing/under/kutjevo, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/Northwest_Dorms) "fbG" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -3354,6 +3398,14 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) +"fbI" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/power/comms) +"fbV" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland) "fbZ" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) @@ -3372,9 +3424,6 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"fcN" = ( -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) "fdS" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" @@ -3384,6 +3433,12 @@ "feg" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_central) +"feJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "feO" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -3418,13 +3473,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"ffT" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon0_0, -/area/kutjevo/interior/construction) "fgo" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -3445,6 +3493,12 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) +"fhD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "fiE" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood/xeno{ @@ -3458,31 +3512,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) -"fjd" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/grey_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Dorms) "fjp" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -3502,31 +3531,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"fks" = ( -/obj/structure/platform/kutjevo, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"fkw" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/med/operating) -"fkC" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/interior/oob) "fkK" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -3539,32 +3543,20 @@ /obj/structure/platform/kutjevo, /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/lz_river) -"flb" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) +"flc" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) "fll" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"flm" = ( -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/exterior/scrubland) -"flu" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) +"flD" = ( +/turf/open/gm/dirtgrassborder2/east, +/area/kutjevo/exterior/complex_border/med_park) "flW" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) -"fmc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/construction) "fme" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/kutjevo/colors/green, @@ -3573,42 +3565,37 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"fnm" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"fou" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 +"fmC" = ( +/obj/structure/prop/wooden_cross{ + desc = "A wooden grave marker. The name 'Richard' is carved into the wood."; + pixel_x = -6; + pixel_y = 19 }, -/turf/open/gm/river/red, -/area/kutjevo/interior/oob) -"foz" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 5; + pixel_y = -2 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "foA" = ( -/obj/structure/machinery/photocopier, -/obj/structure/window/reinforced/tinted{ - dir = 1; - pixel_y = 10 +/obj/structure/platform/kutjevo{ + dir = 1 }, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med) +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_central) "fpj" = ( /obj/item/trash/hotdog, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) +"fpF" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/colony_central) "fpM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -3623,9 +3610,6 @@ /obj/item/toy/deck, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"fqs" = ( -/turf/open/floor/kutjevo/colors/orange/edge/northeast, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "fqA" = ( /obj/structure/bed/chair{ dir = 8 @@ -3639,6 +3623,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) +"frb" = ( +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/colony_north) "frj" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -3655,12 +3643,19 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"fsI" = ( -/obj/structure/machinery/light{ - dir = 1 +"frW" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/cigarette, +/obj/item/ashtray/bronze, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/botany/east_tech) +"fsH" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 8 }, -/turf/open/floor/kutjevo/tan/grey_inner_edge/north, -/area/kutjevo/interior/complex/med) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "fto" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -3680,13 +3675,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"fuo" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) +"ful" = ( +/obj/item/storage/briefcase, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/kutjevo/interior/complex/med) "fuz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/power) @@ -3694,10 +3686,26 @@ /obj/structure/surface/rack, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"fwN" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors/orange/edge, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"fuJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag/tarp/reactive, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/power) +"fuR" = ( +/turf/open/gm/river/desert/deep, +/area/kutjevo/exterior/spring) +"fwD" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/spring) +"fxi" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "fxL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -3705,26 +3713,32 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"fxP" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/interior/complex/med/cells) +"fyn" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/kutjevo/platingdmg3, +/area/kutjevo/interior/complex/Northwest_Dorms) "fyD" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) "fyF" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"fyM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "fyT" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/complex_border/med_rec) -"fAq" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) +"fzb" = ( +/obj/structure/largecrate, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"fzO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "fAE" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/almayer/research/containment/floor2, @@ -3733,18 +3747,22 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) +"fAY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "fBL" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"fCl" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/spring) -"fFu" = ( -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/exterior/scrubland) +"fFz" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "fFH" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -3763,38 +3781,35 @@ /obj/item/clipboard, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"fGm" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; +"fGG" = ( +/obj/item/handset{ + pixel_x = 1; pixel_y = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) -"fGQ" = ( -/turf/open/gm/river/desert/shallow_corner/north, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med) +"fHa" = ( +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_river) +"fHb" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/lz_river) +"fHH" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_dunes) "fHX" = ( /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"fHZ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) +"fIb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east_tech) "fId" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -3810,15 +3825,9 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"fIP" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/lz_river) -"fJr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) +"fJO" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_bridge) "fKf" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -3829,13 +3838,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) -"fKk" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/operating) "fKL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffeecup{ @@ -3855,10 +3857,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"fLN" = ( -/obj/effect/landmark/corpsespawner/colonist/kutjevo, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) "fMd" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/tan, @@ -3869,9 +3867,16 @@ }, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) -"fOg" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/lz_pad) +"fOu" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) +"fON" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/med/auto_doc) "fOO" = ( /obj/structure/flora/grass/desert{ icon_state = "heavygrass_6" @@ -3885,20 +3890,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"fPU" = ( -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"fPZ" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 +"fQm" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 }, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) -"fQj" = ( -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 17 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "fQn" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -3922,22 +3926,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"fQO" = ( -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"fRc" = ( -/obj/structure/machinery/door_control/brbutton{ - health = null; - id = "kutjevo_medlock_west"; - idle_power_usage = 0; - indestructible = 1; - name = "Medical West Lock Override"; - pixel_y = 22; - range = 15 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) +"fQT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "fRu" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer0, @@ -3946,16 +3938,47 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"fRK" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) "fRP" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "brflowers_3" }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"fSo" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) +"fSq" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) +"fSP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/complex/med) "fTV" = ( /obj/structure/machinery/computer/emails{ dir = 4 @@ -3963,42 +3986,12 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"fTX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/auto_doc) -"fTY" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/botany) "fUL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"fUM" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"fUQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "fVv" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer0, @@ -4007,6 +4000,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"fWw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/construction) "fWy" = ( /obj/structure/blocker/invisible_wall, /obj/structure/flora/bush/ausbushes/reedbush, @@ -4017,18 +4014,39 @@ /obj/structure/prop/dam/gravestone, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"fWW" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"fYC" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/colors/orange, +"fWZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) +"fXs" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) -"gad" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) +"fYj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_river) +"fYp" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"fZy" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) +"fZE" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/interior/oob) +"gbl" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "gbv" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/runoff_dunes) @@ -4036,17 +4054,17 @@ /obj/item/device/radio, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"gcf" = ( -/obj/item/storage/briefcase, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/auto_doc) +"gci" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "gcl" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"gcr" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power) "gcB" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -4070,20 +4088,13 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"gep" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/grey_inner_edge/east, -/area/kutjevo/interior/complex/med) "gew" = ( /obj/structure/surface/table/gamblingtable, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"gfS" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"ggp" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/exterior/lz_dunes) "ggC" = ( /obj/structure/fence, /turf/open/floor/almayer/research/containment/floor2, @@ -4092,31 +4103,25 @@ /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"ghv" = ( -/obj/structure/bed/chair{ - dir = 4 +"ghz" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) -"ghx" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/north, -/area/kutjevo/interior/construction) -"ghB" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) +"ghK" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/scrubland) "gic" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"giP" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "giZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 28 @@ -4129,42 +4134,36 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) -"gjk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"gjI" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/interior/oob/dev_room) +"gjr" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_dunes) +"gjt" = ( +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/construction) "gjK" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/auto_doc) -"gkr" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) -"gkE" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/interior/oob/dev_room) -"gkN" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: NW Colony Landing Zone" - }, -/turf/open/floor/plating/kutjevo, -/area/shuttle/drop2/kutjevo) "gld" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"glU" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "gma" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"gme" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "gmS" = ( /obj/structure/machinery/shower{ dir = 1; @@ -4175,18 +4174,15 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob) -"gnJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "gnP" = ( /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) "gnY" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_dunes) +"gof" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "goT" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/runoff_dunes) @@ -4196,26 +4192,34 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"gpn" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib6" - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) +"gpk" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/spring) +"gqI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pizza, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "gqQ" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"gqX" = ( +/obj/structure/bed/bedroll, +/obj/effect/landmark/corpsespawner/colonist/kutjevo, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) +"grv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "grx" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"grC" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "grR" = ( /obj/structure/blocker/invisible_wall, /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -4224,46 +4228,59 @@ /obj/item/clipboard, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"gsk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/construction) "gtr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"guf" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob) -"gvD" = ( -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"gvA" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "gvO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) -"gwn" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/lz_river) +"gwA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "gwY" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med) -"gxH" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "gxK" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"gxY" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"gyt" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/kutjevo/colors/purple/edge/northeast, +/area/kutjevo/interior/construction) "gzb" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/Northwest_Colony) +"gzg" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/complex/med/locks) "gzv" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer1, @@ -4274,12 +4291,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"gAh" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/kutjevo/colors/orange/inner_corner/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "gAt" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -4294,6 +4305,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"gAy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "gBa" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand/layer0, @@ -4335,6 +4352,15 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) +"gCS" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/construction) "gDP" = ( /obj/item/tool/wrench, /turf/open/floor/kutjevo/tan, @@ -4363,57 +4389,36 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"gEG" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gFf" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"gFx" = ( -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "gHh" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"gHq" = ( -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) -"gHW" = ( -/obj/structure/bed/bedroll, -/obj/effect/landmark/corpsespawner/colonist/kutjevo, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/spring) -"gHY" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 17 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 17 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"gIq" = ( +"gHI" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power) -"gIx" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/kutjevo/exterior/spring) -"gJa" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/kutjevo/colors/orange/inner_corner, -/area/kutjevo/interior/foremans_office) +"gIp" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/runoff_river) +"gJy" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "gJB" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -4433,9 +4438,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"gKL" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/lz_dunes) "gKY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -4455,12 +4457,6 @@ /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med) -"gLQ" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/construction) "gMw" = ( /obj/structure/machinery/light{ dir = 4 @@ -4470,6 +4466,9 @@ /obj/item/defenses/handheld/tesla_coil, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"gMA" = ( +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "gNx" = ( /obj/structure/bed/chair{ dir = 8 @@ -4489,15 +4488,29 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) +"gOk" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/construction) +"gOA" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/lz_river) +"gOV" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/construction) "gPW" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"gPY" = ( -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/complex/botany/east_tech) "gQp" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -4520,12 +4533,6 @@ "gQI" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/colony_north) -"gQZ" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/botany/east_tech) -"gRe" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/runoff_river) "gRi" = ( /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) @@ -4535,12 +4542,19 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"gSl" = ( -/obj/structure/platform/kutjevo{ - dir = 1 +"gRv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"gRy" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/interior/construction) +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"gSk" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "gSr" = ( /obj/structure/flora/grass/desert/lightgrass_8, /obj/structure/blocker/invisible_wall, @@ -4552,9 +4566,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) -"gTp" = ( -/turf/open/floor/plating/kutjevo/panelscorched, -/area/kutjevo/interior/complex/Northwest_Dorms) "gTy" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -4574,6 +4585,13 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/med/operating) +"gUF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"gUN" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/spring) "gUQ" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -4591,9 +4609,18 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/foremans_office) -"gVT" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/lz_pad) +"gVr" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"gVV" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/operating) "gWd" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_river) @@ -4604,14 +4631,9 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) "gWM" = ( -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/lz_pad) -"gXj" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_dunes) -"gXn" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/lz_pad) +/obj/structure/bed/roller, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "gXF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; @@ -4625,12 +4647,10 @@ /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"gXM" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) +"gXJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gXP" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = -28 @@ -4655,6 +4675,9 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"gYK" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/lz_river) "gZj" = ( /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/auto_turf/sand/layer1, @@ -4663,6 +4686,9 @@ /obj/structure/bed/chair, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"gZx" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/spring) "han" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -4670,9 +4696,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"hat" = ( -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/exterior/scrubland) "haz" = ( /obj/item/storage/donut_box, /turf/open/floor/kutjevo/tan, @@ -4694,10 +4717,6 @@ }, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"hdn" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "hds" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -4718,11 +4737,34 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"hfK" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) +"hgJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) +"hgT" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"hhb" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"hhl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/atmospipes, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hii" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) @@ -4730,21 +4772,46 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"hjV" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"hkc" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "hkq" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"hku" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hkO" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/complex/botany) -"hkY" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/power/comms) -"hlR" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/kutjevo/colony/reinforced, +"hlq" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"hmi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/Northwest_Dorms) +"hmk" = ( +/turf/open/gm/river, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"hnw" = ( +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/exterior/scrubland) "hnE" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -4755,10 +4822,24 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"hnG" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/cells) "hnZ" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"hoc" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/exterior/scrubland) "how" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -4777,17 +4858,29 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"hpm" = ( -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "hpB" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/exterior/construction) -"hqy" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +"hpH" = ( +/turf/open/gm/dirtgrassborder2/wall2, +/area/kutjevo/exterior/complex_border/med_park) +"hqj" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_bridge) +"hqw" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"hqA" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) "hqN" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -4805,6 +4898,13 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) +"hri" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_dunes) +"hro" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) "hrz" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) @@ -4812,10 +4912,6 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"hrU" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "hst" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -4824,9 +4920,12 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"hts" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/runoff_river) +"hsB" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power/comms) "htv" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "sedimentation" @@ -4840,24 +4939,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"htR" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/runoff_river) "htT" = ( /obj/structure/machinery/computer3/server/rack, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"huo" = ( -/obj/structure/bed/sofa/vert/white/top{ - pixel_y = 17 - }, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) "huv" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -4869,22 +4954,11 @@ /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"hvp" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) "hvq" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/green, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"hvr" = ( -/obj/item/stack/rods, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) "hwf" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) @@ -4898,12 +4972,10 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"hxC" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/lz_river) -"hyh" = ( -/turf/open/gm/river/desert/shallow_corner/north, -/area/kutjevo/exterior/spring) +"hxS" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/interior/oob) "hyJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4-8" @@ -4922,6 +4994,20 @@ "hzN" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_pad) +"hAB" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) +"hBf" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib4" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"hBj" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "hBm" = ( /mob/living/simple_animal/hostile/retaliate/clown{ name = "Gonzo The Magnificent" @@ -4929,10 +5015,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/oob/dev_room) -"hBs" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/spring) "hBt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "\improper North Power Shutters" @@ -4943,11 +5025,6 @@ /obj/item/trash/cheesie, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"hBV" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper/janitor, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "hCc" = ( /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/exterior/runoff_river) @@ -4990,10 +5067,6 @@ /obj/structure/surface/table/almayer, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"hEo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east) "hEC" = ( /obj/structure/window_frame/kutjevo, /turf/open/floor/plating/kutjevo, @@ -5016,6 +5089,17 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"hFj" = ( +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"hFG" = ( +/obj/item/prop/alien/hugger, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "hFH" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -5023,16 +5107,21 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) +"hGj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hGB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"hGO" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/telecomm/lz2_north) "hGP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/plate, @@ -5041,6 +5130,33 @@ /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/construction) +"hHs" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northwest, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"hHM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"hID" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) +"hIW" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"hJd" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_pad) "hKE" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -5048,19 +5164,18 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"hLA" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "hLH" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) +"hMa" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_dunes) +"hMd" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_pad) "hMi" = ( /obj/structure/machinery/power/port_gen/pacman{ desc = "A portable generator for emergency backup power. A set of numbers have been crudely etched into the side. The sequence reads --2-." @@ -5068,40 +5183,34 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"hMs" = ( -/obj/effect/spawner/random/toolbox{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/gm/dirtgrassborder2/wall3, -/area/kutjevo/exterior/complex_border/med_park) "hMu" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east_tech) -"hOl" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/lz_pad) -"hOS" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_river) -"hOV" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) +"hNI" = ( +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/lz_dunes) +"hOj" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/med) "hPf" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) -"hPh" = ( -/turf/open/floor/kutjevo/colors/orange/edge/southwest, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"hPp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "hPD" = ( /obj/item/storage/toolbox/syndicate, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"hPH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/Northwest_Dorms) "hQj" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) @@ -5111,9 +5220,23 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"hQE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "hQS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) +"hRe" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/complex/botany) +"hRV" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/auto_doc) "hSo" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -5129,10 +5252,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"hSL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "hSU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, @@ -5149,32 +5268,9 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) -"hUj" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) "hUk" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_north) -"hUt" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) -"hVe" = ( -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "hVg" = ( /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/tan, @@ -5186,20 +5282,9 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"hWl" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob/dev_room) -"hWt" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/lz_pad) -"hWz" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1/east, +"hWy" = ( +/obj/item/trash/barcardine, +/turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) "hWD" = ( /obj/structure/lattice, @@ -5228,21 +5313,18 @@ /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"hYb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "hYp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"hYs" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/kutjevo/interior/complex/med/operating) "hYE" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -5264,56 +5346,42 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) -"hZR" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/green, -/area/kutjevo/interior/complex/botany) +"hZM" = ( +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/kutjevo/interior/complex/Northwest_Dorms) "iaj" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/lz_river) -"iar" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"iaR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/roller, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/operating) "ibc" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/complex_border/med_rec) +"ibl" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) "ibm" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"ibM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/kutjevo/colors/green, -/area/kutjevo/interior/complex/botany) "ich" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/lz_dunes) -"icq" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/spring) -"iei" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) -"ieS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"ifq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/west, -/area/kutjevo/interior/construction) +"iej" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/auto_doc) +"ifh" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_pad) "ige" = ( /obj/structure/blocker/invisible_wall, /obj/structure/surface/table/reinforced/prison, @@ -5331,15 +5399,19 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"ihQ" = ( +"ihp" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power/comms) +"ihW" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8 + dir = 4 }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_bridge) -"iig" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/runoff_dunes) +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"iim" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/lz_river) "iin" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) @@ -5347,23 +5419,25 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"iiR" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"ijO" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_river) +"ilS" = ( +/obj/effect/landmark/corpsespawner/colonist/kutjevo, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) "inR" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"ioJ" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power) -"ipk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) -"ipo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) +"inV" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_dunes) "ips" = ( /obj/item/bodybag/tarp/reactive, /turf/open/floor/kutjevo/multi_tiles, @@ -5372,11 +5446,6 @@ /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) -"ipC" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag/tarp/reactive, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/power) "iqw" = ( /obj/structure/surface/table/almayer, /obj/item/toy/handcard/aceofspades, @@ -5397,6 +5466,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"irT" = ( +/obj/structure/bed/bedroll, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "isV" = ( /obj/structure/surface/rack, /turf/open/floor/plating/kutjevo, @@ -5405,25 +5479,29 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"iuo" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/spring) -"iuw" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/east, -/area/kutjevo/interior/foremans_office) "iuL" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"iuM" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "ivh" = ( /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"ivL" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/operating) +"ivH" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) +"ivK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/clothing/under/kutjevo, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "ivW" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/red/tile, @@ -5446,40 +5524,16 @@ /obj/item/trash/cigbutt, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) -"ixv" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/foremans_office) +"ixA" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "ixP" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/runoff_river) -"izd" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/interior/oob/dev_room) -"izr" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/spring) -"izY" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"iBJ" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +"izF" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "iCh" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -5501,32 +5555,18 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"iCN" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "iDz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"iEX" = ( -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/exterior/scrubland) -"iFm" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/spring) -"iFo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/roller, -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med/operating) -"iFG" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/spring) -"iFY" = ( -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) +"iGd" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors, +/area/kutjevo/interior/power) "iGz" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/pickaxe, @@ -5546,6 +5586,9 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"iHm" = ( +/turf/open/floor/coagulation/icon2_0, +/area/kutjevo/exterior/lz_river) "iHw" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer2, @@ -5558,10 +5601,9 @@ /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"iIu" = ( -/obj/structure/bed/roller, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) +"iIt" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/spring) "iJo" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -5575,12 +5617,20 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) -"iJE" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"iJM" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/foremans_office) +"iKl" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles/southwest, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) +"iKv" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_river) "iKE" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/armband/hydro, @@ -5607,10 +5657,32 @@ /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"iMV" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/kutjevo/tan/grey_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Dorms) +"iLI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/colony_South/power2) +"iLY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) +"iMw" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_pad) +"iMy" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/toolbox{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) +"iNa" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/kutjevo/interior/complex/med/auto_doc) "iNt" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/rollingpin, @@ -5621,13 +5693,13 @@ /obj/item/storage/box/trackimp, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) -"iOQ" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +"iOa" = ( +/turf/open/floor/plating/kutjevo/platingdmg3, +/area/kutjevo/interior/complex/botany/east_tech) +"iOf" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "iPk" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating/kutjevo, @@ -5639,16 +5711,23 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"iQy" = ( -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/exterior/lz_dunes) -"iRH" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/auto_doc) -"iRK" = ( -/turf/open/floor/kutjevo/colors/purple/edge/northeast, -/area/kutjevo/interior/construction) +"iQf" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/triage) +"iRk" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) +"iRq" = ( +/obj/structure/window/framed/kutjevo/reinforced/hull, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/oob) "iSn" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light{ @@ -5662,10 +5741,19 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/oob) -"iSX" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"iSL" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany/east) +"iSO" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/botany) +"iSY" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "iTg" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -5681,18 +5769,15 @@ /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"iTW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) "iTX" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) +"iUn" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) "iUD" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -5711,16 +5796,18 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"iVZ" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "iWa" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) -"iWm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "iWE" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone3" @@ -5748,69 +5835,85 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"iXz" = ( -/obj/structure/window/framed/kutjevo/reinforced, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_central/mine_elevator) +"iXz" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_central/mine_elevator) +"iXL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"iYj" = ( +/obj/structure/closet, +/obj/item/clothing/under/kutjevo/drysuit, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "iYo" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) -"iYB" = ( -/turf/closed/wall/kutjevo/colony, -/area/kutjevo/interior/complex/med/pano) -"iZe" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" +"iYu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/exterior/lz_pad) +"iZm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east) +"iZr" = ( +/obj/structure/surface/table/reinforced/prison{ + indestructible = 1 }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 +/obj/structure/machinery/door_control/brbutton/alt{ + health = null; + id = "kutjevo_medlock_we"; + idle_power_usage = 0; + name = "Medical West Lock Override"; + pixel_y = 4 }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/red, +/area/kutjevo/interior/complex/med/pano) "iZu" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"iZH" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) -"iZL" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/triage) +"iZU" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/storage/box/stompers, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/construction) "iZZ" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"jao" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "jaY" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"jcf" = ( -/obj/structure/platform/kutjevo/smooth{ +"jaZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) +"jbj" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) +"jck" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/kutjevo/interior/foremans_office) "jcI" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz1_south) @@ -5823,16 +5926,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) -"jda" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east) "jec" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) -"jeI" = ( -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/construction) +"jei" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "jeO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -5842,10 +5945,30 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) +"jfk" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "jfs" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) +"jft" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/colony_north) "jfH" = ( /obj/effect/decal/cleanable/blood, /obj/structure/stairs/perspective/kutjevo{ @@ -5856,6 +5979,12 @@ "jfQ" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/stonyfields) +"jgr" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "jgv" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -5866,6 +5995,9 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"jgA" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/lz_pad) "jgF" = ( /obj/structure/machinery/light{ dir = 1 @@ -5888,40 +6020,41 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"jhI" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/construction) -"jhK" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_dunes) "jhS" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/oob) -"jic" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"jiw" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/red, -/area/kutjevo/interior/oob) +"jix" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) "jiz" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"jiC" = ( -/turf/open/gm/river/desert/shallow_corner, -/area/kutjevo/exterior/spring) "jjt" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"jjI" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) +"jkG" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/colony_north) "jkJ" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/item/reagent_container/glass/watertank, @@ -5936,6 +6069,14 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) +"jkU" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/spring) +"jlf" = ( +/obj/structure/closet/crate, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "jlK" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, @@ -5951,6 +6092,13 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"jnI" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) "jnS" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -5958,24 +6106,30 @@ "jnV" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/Northwest_Dorms) +"joc" = ( +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "jog" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz1_south) -"joM" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/med) "jpl" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_3" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"jpH" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/filtration/coagulation_arm, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) +"jpL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"jpR" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "jpS" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -5984,12 +6138,22 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"jqb" = ( +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "jqd" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/telecomm/lz1_south) "jqt" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/lz_dunes) +"jrh" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/lz_river) +"jrp" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "jrs" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6001,10 +6165,31 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"jrO" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/kutjevo/colors, +/area/kutjevo/interior/complex/botany) +"jrS" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/foremans_office) +"jrX" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/runoff_river) "jrY" = ( /obj/structure/inflatable/popped, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"jsL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med) "jsS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -6015,26 +6200,13 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"jtp" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"jtu" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power/comms) "jtx" = ( -/obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/oob) -"jtH" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -5; - pixel_y = 6 +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +/area/kutjevo/interior/oob) "jtJ" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -6070,13 +6242,19 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"juW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "juY" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) -"jvj" = ( +"jvf" = ( /obj/structure/machinery/light{ dir = 8 }, @@ -6092,11 +6270,6 @@ "jvt" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/scrubland) -"jvD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/operating) "jvQ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -6121,6 +6294,10 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"jxv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east_tech) "jxS" = ( /obj/structure/bed/chair{ dir = 8 @@ -6133,6 +6310,10 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"jys" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "jzb" = ( /obj/structure/prop/dam/truck/mining, /turf/open/asphalt/cement_sunbleached, @@ -6144,21 +6325,18 @@ "jzl" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med) -"jzq" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/power) -"jAy" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"jAO" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +"jAj" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_central) +"jAN" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 14 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_bridge) +"jBw" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "jBJ" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -6170,59 +6348,28 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"jCD" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/triage) "jCL" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"jCQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) -"jDH" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/sign/nosmoking_1{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) -"jEb" = ( -/obj/item/tool/minihoe, -/obj/item/tool/minihoe, -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/green/tile, -/area/kutjevo/interior/complex/botany) "jEo" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"jEy" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 8 +"jEw" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "jEN" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -6240,21 +6387,30 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"jFr" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "jFB" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"jFC" = ( -/obj/item/stack/rods, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) "jGX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"jIg" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/triage) +"jHO" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "jIt" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -6268,6 +6424,10 @@ /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"jIP" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/interior/oob) "jIR" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -6283,6 +6443,19 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) +"jJh" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "jJj" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/red, @@ -6291,26 +6464,41 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) -"jKr" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/syndi_cakes, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "jKI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_South) "jKN" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"jLv" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/runoff_river) +"jMS" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"jNi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"jNB" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/exterior/scrubland) +"jNS" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/kutjevo/colors/green, +/area/kutjevo/interior/complex/botany) "jOe" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"jOD" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/construction) "jPb" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -6350,21 +6538,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"jQI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"jQU" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/cells) "jRd" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"jRx" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"jRS" = ( -/turf/open/gm/river/desert/shallow_edge, -/area/kutjevo/exterior/spring) -"jSd" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_river) "jSi" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -6372,6 +6561,17 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"jSN" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"jTt" = ( +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/exterior/scrubland) "jUP" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6379,12 +6579,20 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"jVV" = ( -/obj/structure/machinery/light{ - dir = 8 +"jVi" = ( +/obj/structure/bed/sofa/vert/white/top{ + pixel_y = 17 }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med/auto_doc) +"jVj" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "jXo" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -6394,18 +6602,24 @@ "jXq" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_river) -"jYB" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_bridge) +"jXz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "jYS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) -"jYT" = ( -/turf/open/gm/dirtgrassborder2/west, -/area/kutjevo/exterior/complex_border/med_park) -"jZw" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/kutjevo/multi_tiles, +"jYY" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/med/auto_doc) +"jZH" = ( +/turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_pad) "kah" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -6413,13 +6627,10 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) -"kaX" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"kbw" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/north, -/area/kutjevo/interior/complex/med) +"kbl" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "kbL" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/sheet/wood, @@ -6429,45 +6640,22 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"kcf" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/vending/snack/packaged{ - anchored = 0 +"kcj" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "kct" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib4" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"kcu" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) -"kcW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "kdf" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/scrubland) -"kdC" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/east, -/area/kutjevo/interior/construction) "kdK" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -6504,23 +6692,35 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"kgm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "kgt" = ( /obj/structure/platform/kutjevo, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_north) -"kgE" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) -"khn" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power) +"kgz" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/telecomm/lz2_north) +"kgC" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/runoff_river) +"khw" = ( +/turf/open/floor/kutjevo/colors/orange/edge/southwest, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "kie" = ( /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/interior/oob/dev_room) +"kif" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "kit" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/waterbottle, @@ -6533,21 +6733,9 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"kjf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/kutjevo/colors/purple/inner_corner/east, -/area/kutjevo/interior/construction) "kjk" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/colony_central) -"kjs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east) -"kjS" = ( -/turf/open/mars_cave/mars_cave_10, -/area/kutjevo/exterior/scrubland) "kkB" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/cyan, @@ -6555,14 +6743,10 @@ "kkH" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/operating) -"kkP" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/spring) -"kli" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/power/comms) +"kkT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/colony_central) "klN" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_sn_full_cap" @@ -6573,13 +6757,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"kmL" = ( -/obj/structure/platform/kutjevo{ - dir = 1 +"kmk" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_river) +"kmv" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/colony_central) +"kmQ" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/spring) "kne" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/auto_turf/sand/layer1, @@ -6590,29 +6780,19 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/locks) -"knj" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/spring) "kns" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) "knP" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_river) -"koe" = ( -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/platform_decoration/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) +"kos" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "koX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6620,10 +6800,6 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/auto_doc) -"kpi" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) "kpz" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -6634,6 +6810,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"kpC" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_dunes) "kpK" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -6655,28 +6834,27 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) +"kqS" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "kqY" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"krV" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"ksj" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/kutjevo/colony, -/area/kutjevo/interior/complex/botany/east) "ksl" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"ksE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "ksF" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/colors/cyan/tile, @@ -6712,12 +6890,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) -"kuH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) "kuM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -6753,25 +6925,19 @@ "kvU" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_dunes) -"kwf" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"kwq" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_dunes) +"kvY" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "kwy" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/colony_South) +"kwG" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 14 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "kwJ" = ( /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/colors/cyan/tile, @@ -6780,13 +6946,13 @@ /obj/item/stack/sheet/metal, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"kxo" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/light{ - dir = 1 +"kwN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/spring) "kxt" = ( /obj/structure/barricade/metal{ dir = 4 @@ -6799,32 +6965,12 @@ }, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) -"kxQ" = ( -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/exterior/scrubland) "kxW" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) -"kyJ" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"kzu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/Northwest_Dorms) -"kzz" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) "kzJ" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/sake, @@ -6850,10 +6996,15 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"kBT" = ( -/obj/structure/machinery/light, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) +"kBN" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/interior/complex/med/pano) +"kCf" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/lz_river) +"kCJ" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_dunes) "kDl" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/survivor_spawner, @@ -6876,9 +7027,29 @@ }, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/exterior/scrubland) +"kDQ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/construction) "kDS" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"kEn" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power) +"kEt" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) +"kEB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/clothing/glasses/thermal/syndi{ + icon_state = "kutjevo_goggles"; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "kEG" = ( /obj/structure/sign/poster{ pixel_y = -32 @@ -6886,9 +7057,15 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) -"kFz" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +"kFq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) +"kFx" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "kFF" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -6903,63 +7080,55 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"kGc" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) "kGl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) +"kGA" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/colony_central) +"kGC" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "kGU" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/triage) +"kHl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = null + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "kHm" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"kIc" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"kIe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) "kIn" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"kIE" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) -"kJh" = ( -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/lz_pad) -"kJp" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_half_cap" +"kIv" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/construction) +"kIX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/cells) -"kJG" = ( -/obj/structure/closet, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"kJR" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/lz_river) +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) +"kJa" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "kKb" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -6973,18 +7142,15 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"kKe" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "kKq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1 }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) +"kKD" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_river) "kKE" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 8 @@ -6994,15 +7160,31 @@ /obj/item/explosive/plastic, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"kLM" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/spring) +"kLg" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"kMn" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/lz_river) "kMC" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) +"kMJ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"kMK" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "trappedmonke_andclown" + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/oob) "kNx" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7030,6 +7212,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"kOX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "kPa" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, /turf/open/floor/kutjevo/multi_tiles, @@ -7049,39 +7237,30 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"kQa" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) "kQo" = ( /obj/structure/girder, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"kQt" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"kQS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_South) "kQU" = ( /obj/structure/platform/kutjevo{ dir = 8 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) +"kRk" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "kRM" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"kSf" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "kSB" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7091,12 +7270,6 @@ "kSH" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/med_rec) -"kSS" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/spring) -"kTy" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/runoff_dunes) "kTX" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -7104,17 +7277,17 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"kUm" = ( +"kUd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/defibrillator, +/obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/operating) +/area/kutjevo/interior/complex/med/auto_doc) "kUX" = ( /obj/structure/machinery/light, /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"kVb" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/lz_river) "kVv" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -7130,41 +7303,21 @@ /obj/structure/window/framed/kutjevo/reinforced/hull, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"kVN" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) -"kVO" = ( -/obj/structure/flora/grass/desert/lightgrass_9, +"kVY" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand/layer1, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) -"kYh" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) -"kYE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) -"kYX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/machinery/light{ +"kXQ" = ( +/obj/structure/window{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/power/comms) +/obj/structure/window{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/kutjevo/colors, +/area/kutjevo/interior/complex/botany) "kZm" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/river/desert/shallow, @@ -7199,24 +7352,22 @@ "lah" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"laj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"lal" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/operating) +"lav" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/scrubland) +"lax" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_river) "laI" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) +"laM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "lbu" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7224,6 +7375,10 @@ /obj/item/device/defibrillator, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"lbw" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "lbF" = ( /obj/structure/bed, /turf/open/floor/kutjevo/grey/plate, @@ -7239,11 +7394,6 @@ "lcS" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med/pano) -"lcX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link/green, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/operating) "ldM" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" @@ -7268,10 +7418,17 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo, /area/kutjevo/interior/oob/dev_room) -"lgd" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +"lfX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) +"lgh" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/applecakeslice, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "lgJ" = ( /obj/item/reagent_container/glass/bucket, /turf/open/floor/kutjevo/colors/green, @@ -7294,28 +7451,46 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"lgU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"lgY" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_bridge) +"lhF" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "lhY" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"lil" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany/east) -"liC" = ( -/turf/open/gm/dirtgrassborder2/wall2, -/area/kutjevo/exterior/complex_border/med_park) -"liO" = ( -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/exterior/scrubland) +"lij" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"liz" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/colony_north) +"ljt" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "lkC" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med/auto_doc) -"lkE" = ( -/turf/open/gm/river/desert/deep, -/area/kutjevo/exterior/spring) "lkP" = ( /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/gm/river/desert/deep/covered, @@ -7334,22 +7509,18 @@ "lly" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"llC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 3 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "loe" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) +"loD" = ( +/obj/item/device/radio{ + desc = "A regular shortwave radio, this one has experienced minor water damage but is still functional."; + name = "damp shortwave radio" + }, +/turf/open/desert/desert_shore/shore_corner2, +/area/kutjevo/exterior/spring) "loI" = ( /obj/structure/surface/rack, /obj/item/stack/cable_coil/green, @@ -7371,10 +7542,9 @@ "lpJ" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) -"lqi" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) +"lqu" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "lqG" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -7395,35 +7565,47 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/oob) -"lrR" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/interior/oob/dev_room) +"lrU" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "lsg" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"lsh" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, +"lsL" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "ltv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) +"ltA" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "ltU" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/operating) -"luo" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/complex/med/locks) "lvb" = ( /obj/structure/surface/table/almayer, /obj/item/card/id/pizza, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"lvC" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"lvD" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "lvR" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) @@ -7436,16 +7618,13 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"lxy" = ( -/obj/structure/machinery/light{ - dir = 4 +"lyj" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) -"lxL" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) "lyD" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -7463,6 +7642,25 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"lyW" = ( +/obj/structure/platform/kutjevo, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"lzD" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_river) +"lAk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_bridge) "lAn" = ( /obj/structure/machinery/light{ dir = 4 @@ -7482,6 +7680,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"lBN" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/spring) "lBP" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -7489,14 +7690,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"lBW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/engineering_construction, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "lCa" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -7511,11 +7704,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"lCG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/backpack/lightpack, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "lCH" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -7528,6 +7716,16 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"lEu" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/gm/dirtgrassborder2/wall3, +/area/kutjevo/exterior/complex_border/med_park) +"lEw" = ( +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "lEA" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central) @@ -7538,26 +7736,47 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"lFi" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/lz_river) +"lEN" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/interior/oob/dev_room) +"lFe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "lFt" = ( /obj/structure/blocker/invisible_wall, /obj/item/device/radio, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"lFH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"lGc" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/complex/med) "lGj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"lGy" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "lHs" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"lHV" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/foremans_office) "lIB" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7573,20 +7792,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"lJG" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_river) -"lKE" = ( -/turf/open/gm/river/desert/shallow_corner/north, -/area/kutjevo/exterior/lz_river) -"lKJ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) +"lKt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "lLo" = ( /obj/structure/monorail, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -7606,6 +7815,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"lLZ" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_dunes) "lMr" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -7613,10 +7825,6 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) -"lMs" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_river) "lMv" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, @@ -7630,10 +7838,23 @@ /obj/structure/closet/crate/secure/ammo, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"lMy" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "lMS" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) +"lNi" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"lNt" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "lNG" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/light{ @@ -7641,10 +7862,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"lNL" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/botany) +"lNH" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/power) "lOr" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/kutjevo/tan/alt_inner_edge, @@ -7679,11 +7904,19 @@ }, /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) -"lSk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"lSA" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/kutjevo/interior/complex/med) +"lSD" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) +"lSM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "lSX" = ( /obj/structure/machinery/light{ dir = 1 @@ -7693,18 +7926,13 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"lTp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "lTr" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"lTN" = ( +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "lUg" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -7732,9 +7960,10 @@ "lVZ" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/scrubland) -"lXj" = ( -/turf/open/floor/kutjevo/colors/orange/edge/northwest, -/area/kutjevo/interior/foremans_office) +"lWx" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "lXN" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz1_south) @@ -7742,19 +7971,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"lYj" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"lYU" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +"lYQ" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/operating) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "lYW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, @@ -7766,21 +7989,12 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"lZD" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/colony_South) "lZZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"maC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_river) "maE" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/exterior/lz_dunes) @@ -7792,6 +8006,13 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"mbB" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "mbR" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/sand/layer1, @@ -7818,9 +8039,12 @@ /obj/structure/machinery/light/small, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"mef" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/triage) +"mes" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "meF" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/machine_96x96/indestructible{ @@ -7840,13 +8064,25 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"mfe" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "mfD" = ( /obj/structure/prop/dam/truck/mining, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) +"mfT" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/lz_river) "mgn" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/telecomm/lz2_south) +"mgO" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "mgP" = ( /obj/structure/machinery/light{ dir = 4 @@ -7868,11 +8104,19 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"mhC" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) +"mhq" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/complex/med/triage) +"mhy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "mhN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -7884,11 +8128,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"mja" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "mjd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/auto_turf/sand/layer0, @@ -7896,14 +8135,17 @@ "mjg" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/telecomm/lz2_north) +"mjm" = ( +/obj/item/storage/briefcase, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/auto_doc) "mjN" = ( /obj/item/stack/barbed_wire, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) -"mkc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/alt_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"mko" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_South) "mkJ" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, @@ -7915,14 +8157,25 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"mlg" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) -"mmk" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) +"mlb" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"mmy" = ( +/obj/structure/flora/bush/ausbushes/ppflowers{ + icon_state = "lavendergrass_1" + }, +/mob/living/simple_animal/cat/Runtime{ + name = "Garry" + }, +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) "mmH" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, @@ -7934,44 +8187,68 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) +"mnI" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med) "mnT" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) "mob" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/colony_central/mine_elevator) -"mot" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/complex/med/auto_doc) +"moD" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "moL" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"moT" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/auto_doc) +"moW" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "mpe" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"mpE" = ( +/obj/structure/bed/chair{ + pixel_y = 8 + }, +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "mpW" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/complex_border/med_rec) "mqG" = ( /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) -"mqN" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 +"msA" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/spring) +"msD" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 }, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_bridge) -"msg" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon8_6, -/area/kutjevo/interior/oob) -"msp" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/med) +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/spring) "msK" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) @@ -7990,30 +8267,25 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"mtE" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_river) "mtG" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"mtH" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) "mtS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"mun" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/kutjevo/interior/complex/med/operating) +"muD" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_river) "muG" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -8021,6 +8293,13 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"muQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/spring) "mvt" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand/layer0, @@ -8040,16 +8319,17 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"mvL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) "mwh" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"mwr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "mwV" = ( /obj/structure/machinery/disposal, /obj/structure/window/reinforced{ @@ -8058,6 +8338,10 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/operating) +"mxx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_South) "mxB" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/interior/oob) @@ -8065,6 +8349,10 @@ /obj/item/frame/rack, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"mzo" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon2_0, +/area/kutjevo/interior/oob) "mzS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/medical/splint, @@ -8092,6 +8380,9 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"mBu" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "mBD" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/stonyfields) @@ -8107,13 +8398,6 @@ /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"mCi" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "mCI" = ( /obj/structure/prop/dam/crane{ icon_state = "tractor"; @@ -8126,16 +8410,14 @@ /obj/effect/decal/cleanable/blood/gibs/down, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"mCP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "mDa" = ( /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"mDb" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "mDl" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -8197,29 +8479,31 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) +"mEE" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/runoff_river) +"mEX" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "mFf" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"mFh" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"mFp" = ( -/turf/open/floor/plating/kutjevo/panelscorched, -/area/kutjevo/interior/complex/botany/east_tech) "mGb" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"mGk" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) +"mGA" = ( +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/exterior/scrubland) "mGE" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/colors/green, @@ -8240,17 +8524,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) -"mHd" = ( -/obj/structure/prop/brazier/frame/full/campfire, -/obj/item/tool/match/paper{ - pixel_x = -11; - pixel_y = -2 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"mHm" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) "mHo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -8260,19 +8533,6 @@ "mHJ" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) -"mIh" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 17 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 17 - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "mIq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony, @@ -8307,34 +8567,13 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"mJt" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/interior/oob) "mJY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"mKC" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/power) -"mKS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) -"mLa" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/handcard/aceofspades, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +"mKs" = ( +/turf/open/floor/plating/kutjevo/panelscorched, +/area/kutjevo/interior/complex/botany/east_tech) "mLe" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan/grey_edge, @@ -8346,28 +8585,23 @@ "mLw" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"mMc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +"mMd" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/lz_river) "mMf" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/complex/botany/east_tech) "mMH" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"mMK" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) -"mMP" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) "mNa" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz2_north) +"mNz" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "mNM" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/runoff_bridge) @@ -8378,10 +8612,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) -"mOp" = ( -/obj/structure/tunnel, -/turf/open/gm/dirtgrassborder2, -/area/kutjevo/exterior/complex_border/med_park) "mOO" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/wrapped/barcardine{ @@ -8390,9 +8620,6 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"mPa" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/lz_river) "mPL" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/auto_turf/sand/layer1, @@ -8404,32 +8631,18 @@ "mQl" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_river) -"mRE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/exterior/lz_pad) +"mQB" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) "mRH" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_dunes) -"mRI" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/kutjevo/plate, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/lz_pad) -"mRS" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "mSd" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) -"mSl" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) "mSm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer0, @@ -8442,9 +8655,6 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"mSH" = ( -/turf/closed/wall/kutjevo/colony, -/area/kutjevo/interior/complex/med/cells) "mSM" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -8455,23 +8665,29 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"mTt" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, +"mTQ" = ( /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/colony_central) +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/colony_north) +"mTR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "mTV" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"mUh" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) +"mUv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) +"mVe" = ( +/turf/open/gm/river/desert/shallow_edge, +/area/kutjevo/exterior/spring) "mVC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -8485,9 +8701,9 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) -"mXM" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/lz_river) +"mXK" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/exterior/lz_pad) "mXZ" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -8506,6 +8722,13 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"mYN" = ( +/obj/structure/bed/chair, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) +"mZi" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_dunes) "mZt" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -8519,6 +8742,9 @@ "naK" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/oob) +"naT" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_dunes) "nbp" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, @@ -8542,36 +8768,38 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"ndj" = ( +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/foremans_office) "ndw" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" }, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_bridge) +"ndC" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/power/comms) +"neH" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/spring) "neI" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"nfb" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) "ngp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"ngG" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"ngW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/runoff_river) -"ngU" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/lz_river) +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_bridge) "ngX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -8582,12 +8810,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) -"nhQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/tile, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "nhT" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibleg" @@ -8598,6 +8820,15 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) +"niI" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -30 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "niT" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -8608,18 +8839,12 @@ /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"njX" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/runoff_dunes) "njY" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"nkU" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "nkV" = ( /obj/item/device/flashlight/on, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -8627,13 +8852,17 @@ "nlv" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) +"nlR" = ( +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/exterior/scrubland) "nlT" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"nmo" = ( -/turf/open/floor/kutjevo/tan/grey_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Dorms) +"nmG" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "nmK" = ( /obj/structure/bed/chair/comfy{ dir = 8; @@ -8641,6 +8870,10 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"nmT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "nnf" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) @@ -8651,15 +8884,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) -"noG" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/interior/colony_north) "nps" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan/tile, @@ -8674,24 +8898,10 @@ "nrk" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/scrubland) -"nrm" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) "nrD" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"nrL" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) -"nrZ" = ( -/obj/structure/closet/crate, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "nsa" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/kutjevo/colors/orange, @@ -8709,6 +8919,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) +"nsk" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) "nsU" = ( /obj/structure/machinery/light{ dir = 8 @@ -8732,11 +8946,9 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) -"nuw" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/filtration/coagulation_arm, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +"nuf" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "nux" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -8769,28 +8981,44 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) -"nwP" = ( -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/interior/power/comms) +"nwO" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"nxb" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "nxf" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"nxA" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "nyv" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"nyX" = ( -/obj/structure/platform/kutjevo{ +"nyC" = ( +/obj/structure/filtration/coagulation_arm, +/obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/complex/med) +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"nyL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "nyY" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -8816,12 +9044,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"nAb" = ( -/turf/open/floor/kutjevo/tan/alt_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "nAc" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/med_rec) +"nAj" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/foremans_office) "nAo" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -8838,9 +9066,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"nCs" = ( -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/exterior/lz_pad) +"nAQ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon8_6, +/area/kutjevo/interior/oob) "nCt" = ( /obj/structure/machinery/computer/card{ dir = 4 @@ -8851,6 +9080,16 @@ "nCM" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) +"nCS" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"nDv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "nDH" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -8867,13 +9106,25 @@ }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"nEv" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power/comms) -"nFb" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/botany/east_tech) +"nDX" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/complex/med) +"nEy" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/complex/med) "nFM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -8889,10 +9140,23 @@ /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"nGh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/colors/green, +/area/kutjevo/interior/complex/botany) "nGI" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) +"nHa" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "communications" + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/construction) "nHd" = ( /obj/structure/bed/chair/comfy{ dir = 8; @@ -8903,10 +9167,9 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) -"nHn" = ( -/obj/structure/filingcabinet, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/auto_doc) +"nHz" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_dunes) "nHO" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -8930,6 +9193,12 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"nIW" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "nJa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/kutjevo, @@ -8953,19 +9222,6 @@ "nKh" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east) -"nKl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"nKp" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) "nKs" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz2_north) @@ -8975,6 +9231,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"nKP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med) "nLg" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -9016,27 +9278,15 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"nLX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "nMz" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"nNa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/foremans_office) -"nNo" = ( -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"nNl" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) "nOx" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -9070,6 +9320,23 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"nPH" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 17 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"nPL" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/interior/oob) "nPO" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/colors/cyan, @@ -9086,12 +9353,11 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) "nQQ" = ( -/turf/open/desert/desert_shore/shore_edge1/west, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/spring) -"nQT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/construction) +"nQV" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_dunes) "nRd" = ( /obj/item/tool/wrench, /obj/item/prop/alien/hugger, @@ -9107,9 +9373,10 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med) -"nRq" = ( -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) +"nRA" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) "nRE" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -9138,15 +9405,20 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east_tech) -"nVt" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"nVz" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"nVw" = ( +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) +/obj/item/tool/pen{ + desc = "It's a seemingly normal pen... aside from the faint red fingerprints on the side..."; + name = "stained pen"; + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/paper/crumpled/bloody, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "nVF" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, @@ -9161,15 +9433,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) +"nXq" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/kutjevo/colors/orange/inner_corner, +/area/kutjevo/interior/foremans_office) "nXr" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/construction) -"nXA" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_bridge) "nXX" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -9216,12 +9486,9 @@ }, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"obo" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/runoff_river) -"obI" = ( -/turf/open/floor/kutjevo/tan/grey_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Dorms) +"oaR" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/lz_river) "ocd" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -9237,10 +9504,20 @@ /obj/structure/machinery/light, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"odq" = ( -/obj/item/stack/sheet/wood, +"odG" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) +"oed" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) +/area/kutjevo/interior/power) "oex" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) @@ -9257,12 +9534,27 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"ofA" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/spring) "ofR" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) +"ogQ" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/interior/oob/dev_room) +"ogZ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/telecomm/lz1_south) +"ohU" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "oii" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -9270,38 +9562,30 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"oiB" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/scrubland) +"oiz" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/interior/power) "oiJ" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) -"oiK" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"ojo" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -30 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) +"oiS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ojH" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"oke" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon0_0, -/area/kutjevo/interior/colony_north) +"ojS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "okh" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -9312,9 +9596,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) -"okm" = ( -/turf/open/mars_cave/mars_cave_23, -/area/kutjevo/exterior/scrubland) "okv" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/colony_South/power2) @@ -9324,6 +9605,12 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"okU" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "old" = ( /obj/structure/bed, /obj/structure/window/reinforced{ @@ -9365,10 +9652,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"omb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) +"omi" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "omA" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -9384,9 +9671,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"onz" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east) "onP" = ( /obj/structure/bed/chair{ dir = 1 @@ -9398,15 +9682,15 @@ /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"ooQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"ooI" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_S_East) +"ooL" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/syndi_cakes, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "opz" = ( /obj/structure/surface/table/almayer, /obj/item/device/tracker, @@ -9415,12 +9699,6 @@ "opQ" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"oqu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/complex/med/auto_doc) "oqw" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, @@ -9431,12 +9709,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) -"oqZ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "oru" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -9459,6 +9731,38 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) +"otI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/complex/med/locks) +"otO" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/botany/east_tech) +"otY" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_river) "oum" = ( /obj/item/storage/toolbox/antag, /turf/open/floor/kutjevo/multi_tiles, @@ -9479,6 +9783,12 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) +"ovr" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ovv" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/light{ @@ -9486,10 +9796,16 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"ovF" = ( +"ovw" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/interior/oob/dev_room) +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "ovG" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_bridge) @@ -9513,21 +9829,14 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) -"oxS" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/complex/botany) "oxT" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "oyO" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_dunes) "ozs" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -9538,6 +9847,14 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"ozO" = ( +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "oAj" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer1, @@ -9557,12 +9874,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"oBV" = ( -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) -"oCw" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/exterior/lz_dunes) "oDC" = ( /obj/item/clothing/gloves/combat{ name = "insulated black gloves"; @@ -9571,51 +9882,27 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"oEJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) +"oEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/triage) +"oEQ" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_dunes) "oET" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"oFB" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"oFC" = ( +"oFe" = ( /turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) -"oFG" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_pad) -"oGs" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) "oGw" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/machinery/light, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_South/power2) -"oGK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "oIb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -9636,6 +9923,15 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"oIx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) +"oIR" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "oJV" = ( /obj/structure/machinery/light{ dir = 1 @@ -9650,11 +9946,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"oLE" = ( -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "oMw" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors/orange, @@ -9674,6 +9965,19 @@ "oMZ" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/foremans_office) +"oNv" = ( +/obj/structure/machinery/door_control/brbutton{ + health = null; + id = "kutjevo_medlock_west"; + idle_power_usage = 0; + indestructible = 1; + name = "Medical West Lock Override"; + pixel_y = 22; + range = 15 + }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) "oNG" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/construction) @@ -9685,19 +9989,13 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"oOm" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"oOq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/clothing/glasses/thermal/syndi{ - icon_state = "kutjevo_goggles"; - pixel_y = -2 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) +"oNX" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/spring) +"oOe" = ( +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/auto_doc) "oOs" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -9709,20 +10007,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) -"oOW" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/runoff_river) +"oOH" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "oPb" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"oPg" = ( -/obj/structure/window{ - dir = 1 - }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/complex/botany) "oPH" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/cleanable/blood, @@ -9736,6 +10028,9 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"oQP" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_river) "oQQ" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -9749,18 +10044,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"oRA" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_23, -/area/kutjevo/exterior/scrubland) -"oRI" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/lz_pad) -"oSG" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) "oSK" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/tan/grey_edge, @@ -9771,13 +10054,10 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) -"oTf" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +"oSQ" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "oTF" = ( /obj/structure/sign/prop3, /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -9793,6 +10073,16 @@ "oUP" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/construction) +"oVt" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) "oVO" = ( /obj/structure/machinery/light{ dir = 8 @@ -9814,12 +10104,20 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) "oXg" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_dunes) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"oXF" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "oXH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"oYn" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power) "oYQ" = ( /obj/structure/blocker/invisible_wall, /obj/structure/surface/table/reinforced/prison, @@ -9827,10 +10125,11 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"oYV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/runoff_river) +"oZr" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "oZD" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -9852,25 +10151,25 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) "pbI" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "pbY" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med) "pci" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz2_south) -"peC" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 5 +"pdj" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) +"pen" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) -"peZ" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/lz_river) +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/kutjevo/interior/complex/med) "pfe" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, @@ -9912,10 +10211,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) -"pid" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/interior/construction) "pih" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, @@ -9936,10 +10231,10 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"pkC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"pkJ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "pkP" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/Northwest_Colony) @@ -9966,16 +10261,6 @@ "pmv" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/complex_border/med_rec) -"pmQ" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "pmR" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/auto_turf/sand/layer1, @@ -10016,9 +10301,10 @@ "ppX" = ( /turf/open/floor/plating/kutjevo, /area/shuttle/drop2/kutjevo) -"pqG" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med) +"prl" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "prJ" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) @@ -10033,6 +10319,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"psA" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "ptz" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -10064,6 +10357,15 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) +"puz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"pvb" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/kutjevo/exterior/lz_pad) "pvk" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -10085,6 +10387,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) +"pxz" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland) "pxB" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -10110,18 +10415,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"pyG" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"pzE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_South) "pzG" = ( /obj/structure/sign/safety/medical{ pixel_x = -32 @@ -10136,18 +10429,13 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"pAb" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) -"pAx" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "pBi" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"pBA" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_dunes) "pBJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" @@ -10162,34 +10450,19 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_dunes) -"pCk" = ( -/obj/structure/closet/secure_closet/security_empty, -/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, -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/under/rank/security/corp, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/holobadge, -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/botany) +"pCy" = ( +/obj/item/frame/rack, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany/east_tech) "pCS" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"pDb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) +"pDa" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "pDi" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer0, @@ -10202,23 +10475,17 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) -"pDW" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/spring) +"pDZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "pEb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1 }, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"pEf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "pEt" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -10231,12 +10498,18 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"pFL" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/lz_pad) +"pEK" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"pFm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) +"pFG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/construction) "pFZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -10246,10 +10519,6 @@ "pGc" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) -"pGe" = ( -/obj/item/tool/hatchet, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "pGv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -10269,29 +10538,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"pHE" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob) "pHR" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"pHT" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/interior/construction) "pId" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -10307,31 +10557,44 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) -"pIl" = ( -/turf/open/floor/kutjevo/tan/grey_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Dorms) "pJa" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/botany) -"pJf" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +"pJm" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/construction) "pJt" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"pJx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/clipboard, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "pJL" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"pJX" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/filtration/coagulation_arm, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "pKn" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, @@ -10349,18 +10612,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"pKO" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/power/comms) "pKP" = ( /obj/structure/largecrate/supply/supplies/mre, /obj/item/clothing/suit/armor/vest/security, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"pLf" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/lz_river) "pLS" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/colors/red, @@ -10372,14 +10628,21 @@ /obj/structure/window_frame/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"pNq" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/spring) +"pNC" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) "pNW" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"pOe" = ( -/obj/item/cell/high, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"pOh" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "pOi" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -10390,18 +10653,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"pPa" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"pPp" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "plinkingspot_northlz" - }, -/turf/closed/wall/kutjevo/rock/border, -/area/kutjevo/exterior/scrubland) "pPJ" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_dunes) @@ -10423,9 +10674,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"pRg" = ( -/turf/open/mars_cave/mars_cave_7, -/area/kutjevo/exterior/lz_dunes) +"pRe" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) +"pRE" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/construction) "pRI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -10433,21 +10687,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) -"pSd" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/foremans_office) -"pSg" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/spring) -"pSq" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/inner_corner/north, -/area/kutjevo/interior/foremans_office) "pSs" = ( /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) @@ -10468,30 +10707,22 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med) -"pTB" = ( -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "pTI" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"pTL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"pUJ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"pUP" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/north, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"pTJ" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/nuclear, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"pUF" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) "pVd" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -10509,13 +10740,13 @@ }, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/triage) -"pVS" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/spring) +"pVD" = ( +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) +"pVO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) "pWe" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -10526,12 +10757,14 @@ /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) -"pWQ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"pWt" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/complex/Northwest_Dorms) "pXF" = ( /obj/item/device/flashlight/on, /turf/open/floor/kutjevo/colors/orange, @@ -10543,19 +10776,13 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"pYN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"pZg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) +"pYZ" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/complex/botany) +"pZb" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/complex/med/locks) "pZx" = ( /obj/structure/platform_decoration/kutjevo, /obj/structure/window/framed/kutjevo/reinforced, @@ -10570,17 +10797,15 @@ "qaI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/construction) -"qbs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/med/locks) -"qbK" = ( -/turf/open/floor/plating/kutjevo/platingdmg1, -/area/kutjevo/interior/complex/botany/east_tech) -"qca" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Dorms) +"qaT" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"qbp" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "qcE" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -10588,29 +10813,22 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qcR" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med) -"qeu" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/runoff_bridge) +"qdA" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"qdM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east_tech) "qev" = ( /obj/item/trash/chunk, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) -"qeN" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/colony_central) -"qfd" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/colony_central) +"qeZ" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "qgr" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors, @@ -10618,6 +10836,10 @@ "qgW" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"qhb" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "qhi" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/lz_river) @@ -10648,57 +10870,38 @@ }, /obj/structure/barricade/handrail/strata, /obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/kutjevo/interior/power) -"qiy" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"qiM" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/complex/med/triage) -"qjz" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_dunes) -"qjM" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) -"qkd" = ( -/obj/structure/barricade/handrail/kutjevo{ +/turf/open/floor/mech_bay_recharge_floor, +/area/kutjevo/interior/power) +"qjt" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) +"qjz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_dunes) "qkj" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"qlD" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "trappedmonke_andclown" +"qlu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/oob) +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "qmR" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) +"qmS" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) "qnU" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/exterior/lz_dunes) @@ -10711,10 +10914,9 @@ "qoL" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/construction) -"qpb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"qoM" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/spring) "qpi" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -10753,31 +10955,15 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"qrm" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"qrp" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 14 - }, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) -"qrU" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) "qsY" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"qtb" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "qtK" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, @@ -10793,12 +10979,15 @@ "quW" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) -"quY" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/scrubland) -"qwH" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/lz_dunes) +"qvl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/tile, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"qvK" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) "qxc" = ( /obj/structure/barricade/metal/wired{ dir = 1 @@ -10812,9 +11001,6 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qxL" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "qyS" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -10834,17 +11020,19 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"qzw" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) +"qzz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "qzY" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_river) -"qAI" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/power) +"qAF" = ( +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "qBa" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -10885,14 +11073,21 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) -"qFF" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/lz_river) +"qEV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "qGa" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"qGf" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "qGx" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) @@ -10900,24 +11095,20 @@ /obj/item/tool/wirecutters/clippers, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"qHc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "qHH" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"qHN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) -"qHV" = ( -/turf/open/mars_cave/mars_cave_23, -/area/kutjevo/exterior/lz_dunes) -"qId" = ( -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/botany) "qIi" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/spawner/random/tool, @@ -10929,14 +11120,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"qIs" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "qIV" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/barricade/handrail/kutjevo{ @@ -10944,27 +11127,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"qJe" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette, -/obj/item/ashtray/bronze, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/botany/east_tech) -"qJG" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"qKe" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "qKm" = ( /obj/structure/machinery/disposal, /obj/effect/decal/medical_decals{ @@ -10972,29 +11134,21 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"qKp" = ( -/turf/open/floor/kutjevo/colors/orange/edge/southeast, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"qLj" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" +"qKA" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/lz_river) +"qLx" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -4 }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "qMC" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qNb" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) -"qNj" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon2_0, -/area/kutjevo/interior/oob) "qNo" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -11002,18 +11156,22 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"qOC" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +"qNY" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) "qOJ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) +"qOK" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: NW Colony Landing Zone" + }, +/turf/open/floor/plating/kutjevo, +/area/shuttle/drop2/kutjevo) "qOP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, @@ -11027,19 +11185,15 @@ /obj/item/reagent_container/food/snacks/meatballspagetti, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"qPj" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "qPO" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"qQI" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_0" - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/complex/botany) +"qQq" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"qQD" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "qQU" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/colors/green, @@ -11050,52 +11204,37 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"qRN" = ( -/turf/open/gm/dirtgrassborder2/east, -/area/kutjevo/exterior/complex_border/med_park) "qRR" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"qSq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/Northwest_Dorms) "qSy" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qSz" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/interior/construction) -"qTi" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles/north, +"qSO" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) -"qTH" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/west, -/area/kutjevo/interior/complex/med) "qTN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"qTO" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/colors/orange/inner_corner/west, -/area/kutjevo/interior/foremans_office) -"qUx" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) +"qUp" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/construction) +"qUK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/auto_doc) "qVc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 @@ -11111,6 +11250,13 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"qVF" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "qVZ" = ( /obj/structure/filtration/machine_96x96{ icon_state = "distribution" @@ -11121,15 +11267,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"qWc" = ( -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) -"qWU" = ( -/obj/vehicle/powerloader/jd{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "qYn" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -11137,19 +11274,23 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"qYI" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) +"qZN" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/spring) "qZO" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"rax" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob) "raA" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -11163,48 +11304,17 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) -"rbB" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) -"rbI" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) -"rbU" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/scrubland) -"rcr" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"rcE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +"rcc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/interior/oob/dev_room) "rdm" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_South/power2) -"rdW" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/spring) "rej" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"reo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "rfE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -11226,13 +11336,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"rgD" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +"rgE" = ( +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/scrubland) "rgQ" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -11240,31 +11346,41 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"rgR" = ( +/turf/open/floor/plating/kutjevo/panelscorched, +/area/kutjevo/interior/complex/Northwest_Dorms) +"rhd" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/sign/nosmoking_1{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "rhK" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) +"rhQ" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/interior/complex/botany/east) "rhZ" = ( /obj/structure/platform/kutjevo{ dir = 4 }, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_river) -"rib" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "rid" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"rij" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"rip" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/spring) "riu" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/tiles, @@ -11291,20 +11407,21 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"riJ" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/lz_dunes) -"rja" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/toy/inflatable_duck, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "rkt" = ( /obj/structure/flora/grass/desert/lightgrass_9, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"rkx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "rky" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -11322,21 +11439,16 @@ "rlB" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/triage) -"rmg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = null - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"rmj" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_S_East) -"rmm" = ( -/turf/open/floor/coagulation/icon0_5, +"rlM" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"rlO" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/toy/inflatable_duck, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "rmo" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -11344,26 +11456,21 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"rmp" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "rmt" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_central) +"rmM" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "rmO" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"rmZ" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) -"rnt" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder2/west, -/area/kutjevo/exterior/complex_border/med_park) "rnM" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, @@ -11380,35 +11487,28 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/scrubland) -"roy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"roF" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_river) "roS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_bridge) -"rpr" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/interior/power) +"rpl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/foremans_office) "rpB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"rqA" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) +"rpF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "rqD" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -11417,73 +11517,60 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"rrx" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/operating) -"rry" = ( -/obj/structure/largecrate/black_market/confiscated_equipment, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) +"rsY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"rta" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "rte" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) -"rtP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pizza, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) -"ruJ" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_dunes) +"rtn" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) +"rtq" = ( +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "ruM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"rvi" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/botany) "rvA" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/exterior/construction) -"rvB" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/triage) "rvK" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"rvQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"rvW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) -"rwh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/operating) "rwj" = ( /obj/structure/window/framed/kutjevo/reinforced/hull, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"rwz" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_river) "rwL" = ( /obj/item/frame/table/almayer, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"rwN" = ( -/obj/structure/largecrate/random, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "rwX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -11501,12 +11588,9 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"rxO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"rxt" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany) "rxX" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -11517,6 +11601,12 @@ "ryB" = ( /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/triage) +"ryQ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/lz_river) "ryY" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/grey/plate, @@ -11536,20 +11626,14 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"rzD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_30"; - pixel_y = 9 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) "rzE" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_river) -"rzJ" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/runoff_river) +"rzL" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "rzT" = ( /obj/structure/bed{ can_buckle = 0; @@ -11562,21 +11646,29 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) -"rCb" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 8 +"rAR" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) +"rBn" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) "rCp" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_bridge) -"rDo" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) +"rDg" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/construction) +"rDm" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/construction) "rDO" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomright" @@ -11599,34 +11691,20 @@ "rES" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/locks) -"rEZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) "rFR" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_central) -"rGe" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "rGm" = ( /obj/structure/machinery/space_heater, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"rGC" = ( -/obj/structure/filtration/coagulation_arm, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +"rHb" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "rHg" = ( /obj/structure/prop/dam/truck/cargo, /turf/open/asphalt/cement_sunbleached, @@ -11634,10 +11712,6 @@ "rHy" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_dunes) -"rHz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east_tech) "rHE" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/kutjevo/colors/orange, @@ -11670,26 +11744,6 @@ "rIL" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) -"rJJ" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door_control/brbutton{ - health = null; - id = "kutjevo_medlock_east"; - idle_power_usage = 0; - indestructible = 1; - name = "Medical East Lock Override"; - pixel_y = 22; - range = 15 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) -"rJS" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "rKl" = ( /obj/item/storage/briefcase, /turf/open/floor/kutjevo/colors, @@ -11735,16 +11789,15 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) -"rNG" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "rOd" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"rOo" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/lz_dunes) "rPq" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/kutjevo/multi_tiles, @@ -11758,12 +11811,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"rRw" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/spring) -"rRD" = ( -/turf/open/gm/dirtgrassborder2/north, -/area/kutjevo/exterior/complex_border/med_park) "rSg" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/kutjevo/colors/green, @@ -11774,6 +11821,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"rSR" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "rTi" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -11784,9 +11835,6 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"rTJ" = ( -/turf/open/mars_cave/mars_cave_7, -/area/kutjevo/exterior/scrubland) "rUi" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -11811,6 +11859,14 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) +"rVI" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"rWq" = ( +/obj/item/clipboard, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "rWK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors, @@ -11825,17 +11881,9 @@ /obj/item/toy/handcard/uno_reverse_yellow, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"rYf" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/lz_pad) -"rYl" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/tan/grey_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Dorms) -"rYC" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/colony_South/power2) +"rYh" = ( +/turf/open/mars_cave/mars_cave_5, +/area/kutjevo/exterior/scrubland) "rYF" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = 5; @@ -11857,6 +11905,13 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"rZu" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "rZW" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) @@ -11866,14 +11921,18 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"sbe" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"sbl" = ( -/turf/open/mars_cave/mars_cave_10, -/area/kutjevo/exterior/lz_dunes) +"sbp" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "sbz" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/kutjevo, @@ -11892,9 +11951,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) -"scT" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/spring) "scY" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/tan, @@ -11906,35 +11962,29 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) -"sdq" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) +"sdu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/ammo_box/magazine/nailgun, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany/east_tech) "sdX" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"sec" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/interior/colony_north) "sef" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"sep" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +"sfV" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"sfP" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"sge" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "sgF" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -11945,20 +11995,14 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"sis" = ( -/obj/item/device/radio{ - desc = "A regular shortwave radio, this one has experienced minor water damage but is still functional."; - name = "damp shortwave radio" - }, -/turf/open/desert/desert_shore/shore_corner2, -/area/kutjevo/exterior/spring) +"siJ" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "siR" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"sjy" = ( -/turf/open/floor/kutjevo/tan/alt_edge, -/area/kutjevo/exterior/lz_pad) "sjN" = ( /obj/structure/surface/rack, /obj/item/clothing/head/welding, @@ -11966,13 +12010,6 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"skF" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/lz_river) -"skO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/colony_central) "slb" = ( /obj/structure/machinery/light{ dir = 4 @@ -11996,12 +12033,9 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"smg" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 14 - }, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_bridge) +"sml" = ( +/turf/open/mars_cave/mars_cave_11, +/area/kutjevo/exterior/scrubland) "smo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -12040,26 +12074,33 @@ "snr" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"sny" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/spring) +"sob" = ( +/obj/structure/reagent_dispensers/watertank{ + desc = "A watertank. The label has been written over with the sequence 2---" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) "soe" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"soj" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/power/comms) "soF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"soM" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) +"soI" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/lz_pad) "soP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -12075,29 +12116,10 @@ /obj/item/storage/fancy/cigarettes/lady_finger, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"spa" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/kutjevo/colors/purple/edge/northeast, -/area/kutjevo/interior/construction) -"spA" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "sqr" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"sqK" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ - dir = 1; - pixel_y = 10 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med) "sqP" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -12109,27 +12131,13 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"srI" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "ssj" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"ssC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"ssH" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/construction) +"ssR" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/construction) "ssV" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters/clippers, @@ -12142,29 +12150,38 @@ }, /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/runoff_dunes) +"stp" = ( +/obj/structure/closet, +/obj/item/clothing/head/helmet/marine/veteran/kutjevo, +/obj/item/clothing/glasses/kutjevo, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "str" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) -"sua" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"suu" = ( -/obj/item/handset{ - pixel_x = 1; - pixel_y = 4 +"suD" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med) -"suT" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"svo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/power/comms) "svp" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -12187,37 +12204,21 @@ /obj/item/stack/sheet/metal, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"sws" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/nuclear, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles/west, +"swE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "swZ" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_dunes) -"sxc" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med) -"sxH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"sxQ" = ( -/obj/structure/closet, -/obj/item/clothing/head/helmet/marine/veteran/kutjevo, -/obj/item/clothing/glasses/kutjevo, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"sxR" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_dunes) "syM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) +"syV" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_dunes) "szC" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -12234,18 +12235,15 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"sAi" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "sAA" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"sAE" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "sBh" = ( /obj/structure/sink{ pixel_y = 32 @@ -12262,9 +12260,13 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/foremans_office) -"sBO" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med/auto_doc) +"sBD" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/spring) "sCA" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -12272,45 +12274,16 @@ "sCG" = ( /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) -"sDk" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"sDF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power) "sDG" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/lz_river) -"sDO" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/interior/colony_north) -"sEu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"sDN" = ( +/obj/structure/tunnel, +/turf/open/gm/dirtgrassborder2, +/area/kutjevo/exterior/complex_border/med_park) "sEG" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/exterior/construction) -"sEN" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) -"sFF" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "sFL" = ( /obj/structure/machinery/light, /obj/structure/bed/chair{ @@ -12318,6 +12291,13 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"sGn" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "sGs" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/auto_doc) @@ -12333,14 +12313,18 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"sHP" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "sHQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"sIn" = ( -/obj/item/storage/briefcase, -/turf/open/floor/kutjevo/tan/grey_inner_edge/west, -/area/kutjevo/interior/complex/med) "sIr" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "\improper Medical Stormlock Shutters" @@ -12348,6 +12332,16 @@ /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/locks) +"sIx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"sIE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "sJj" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -12371,17 +12365,6 @@ /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"sLa" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/interior/oob/dev_room) -"sLe" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"sLv" = ( -/turf/open/mars_cave/mars_cave_5, -/area/kutjevo/exterior/scrubland) "sLx" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/colors/orange, @@ -12408,50 +12391,32 @@ /obj/structure/machinery/power/smes/buildable/charged, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"sND" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "sNZ" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"sOc" = ( -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) -"sOi" = ( -/obj/item/prop/alien/hugger, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "sOJ" = ( /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/exterior/lz_river) -"sOP" = ( -/obj/structure/closet/firecloset/full{ - desc = "It's a storage unit for fire-fighting supplies. The sequence -4-- is carved into the corner." - }, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) "sPp" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_South/power2) -"sPB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "sPE" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"sQu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east_tech) +"sQh" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"sQC" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/triage) "sRb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -12459,6 +12424,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) +"sSm" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "sSq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -12481,14 +12453,13 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) -"sSx" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/kutjevo/colors/orange/edge, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "sSF" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"sTb" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "sTB" = ( /obj/structure/platform/kutjevo/rock{ dir = 8 @@ -12509,17 +12480,14 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"sUr" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/runoff_dunes) "sUs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_central) -"sVb" = ( -/obj/structure/bed/chair, -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) +"sUy" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "sVx" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/botany) @@ -12534,12 +12502,6 @@ "sVF" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"sVI" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/colony_north) "sWF" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) @@ -12547,13 +12509,6 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"sWN" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/lz_river) -"sWO" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) "sWP" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand/layer1, @@ -12569,28 +12524,19 @@ "sXo" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"sXx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"sXP" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 +"sXM" = ( +/obj/structure/platform/kutjevo{ + dir = 8 }, -/turf/open/desert/desert_shore/shore_edge1, -/area/kutjevo/exterior/spring) +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/construction) +"sXN" = ( +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/lz_pad) "sXR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"sYc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/interior/colony_north) "sYd" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) @@ -12613,30 +12559,20 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"tah" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "tax" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_dunes) -"tbn" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/spring) -"tbL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"tbP" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +"tbb" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/construction) +"tdf" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "tdG" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/green, @@ -12658,15 +12594,18 @@ /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"tew" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "teN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"teZ" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) "tfv" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/orange/edge, @@ -12677,35 +12616,11 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"tgl" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"tgm" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/runoff_bridge) -"tgK" = ( -/obj/structure/platform/kutjevo/smooth/stair_plate, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "tgO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) -"tgZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/construction) "tha" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -12723,6 +12638,10 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"thE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "thU" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -12730,6 +12649,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/scrubland) +"tix" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "tiJ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -12750,13 +12676,16 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"tjc" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "tjg" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) +"tju" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "tjJ" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand/layer1, @@ -12784,12 +12713,12 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) +"tlF" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "tlN" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power/comms) -"tmf" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/construction) "tnx" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -12797,16 +12726,16 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"tny" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med) "tob" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) -"tos" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/lz_pad) "toD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29" @@ -12834,6 +12763,10 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"tqf" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_river) "tql" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/stonyfields) @@ -12844,6 +12777,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"tqO" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany/east) "trC" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -12864,6 +12800,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob) +"tsb" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/interior/oob/dev_room) "tsK" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -12875,6 +12815,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"ttw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/power/comms) "tun" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -12892,23 +12840,33 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"twF" = ( +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"txE" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "txH" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) -"txP" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/botany) "tye" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) -"tyg" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany) +"typ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "tyq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, @@ -12917,32 +12875,42 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"tyW" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) +"tyK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) "tzJ" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"tzM" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "tzQ" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) +"tAg" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"tAs" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/colony_north) "tAX" = ( /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"tBB" = ( -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) "tBS" = ( /obj/structure/blocker/invisible_wall, /obj/structure/bed/chair/office/dark{ @@ -12950,16 +12918,20 @@ }, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"tBY" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "tCm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_South) +"tCF" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) +"tCJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "tCK" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -12967,6 +12939,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"tDC" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "tDP" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/red, @@ -12982,26 +12962,6 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) -"tEm" = ( -/obj/structure/bed/chair{ - pixel_y = 8 - }, -/obj/structure/sign/safety/medical{ - pixel_y = 32 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) -"tEs" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "tEK" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 4 @@ -13032,10 +12992,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/construction) -"tFU" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/kutjevo/tan, +"tGf" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) "tGm" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -13043,6 +13007,24 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) +"tGN" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "plinkingspot_northlz" + }, +/turf/closed/wall/kutjevo/rock/border, +/area/kutjevo/exterior/scrubland) +"tGQ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"tHk" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "tIz" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east) @@ -13050,35 +13032,80 @@ /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"tJf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"tJu" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany/east_tech) +"tKq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"tKz" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/botany/east_tech) "tKC" = ( /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) +"tKH" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "tKY" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) "tLh" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"tLj" = ( -/obj/structure/bed/chair, -/turf/open/gm/dirtgrassborder2/east, -/area/kutjevo/exterior/complex_border/med_park) +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 8 + }, +/obj/structure/machinery/light, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "tLO" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) +"tLU" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) "tMe" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"tMk" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "tMH" = ( /obj/structure/machinery/computer/guestpass{ dir = 4 @@ -13096,14 +13123,6 @@ /obj/structure/surface/table/almayer, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"tNg" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) -"tNr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/complex/botany/east) "tNv" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -13114,6 +13133,17 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power) +"tNJ" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "tOe" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 @@ -13127,13 +13157,11 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"tOB" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) +"tOO" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "tPh" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/med_small_stack, @@ -13155,11 +13183,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"tRn" = ( -/obj/structure/flora/grass/tallgrass/desert, -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "tRp" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13181,6 +13204,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) +"tSQ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/botany/east_tech) "tSZ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -13197,36 +13223,26 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"tTA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"tUh" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_river) "tVs" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"tVW" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) "tWM" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) "tXm" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/power/comms) -"tXo" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 8 - }, -/obj/structure/machinery/light, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) "tXK" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "\improper South Power Shutters" @@ -13245,29 +13261,6 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"tZM" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/exterior/lz_pad) -"tZN" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"tZS" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/med/cells) "tZW" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz2_north) @@ -13289,8 +13282,20 @@ /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_central) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_central) +"ubz" = ( +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/exterior/lz_pad) +"ubB" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "ubR" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -13298,15 +13303,6 @@ "ubV" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_river) -"ucq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"ucI" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) "udm" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -13329,13 +13325,6 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"ugi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "ugw" = ( /obj/structure/bed/chair{ dir = 1 @@ -13350,29 +13339,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"ugS" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_edge, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "ugU" = ( /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) -"uhi" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"uhq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = null - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "uhM" = ( /obj/structure/blocker/invisible_wall, /obj/structure/extinguisher_cabinet, @@ -13405,40 +13375,22 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) -"uiD" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "uiK" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) "uiT" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_river) -"uiU" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/kutjevo/colors/green, -/area/kutjevo/interior/complex/botany) "ujo" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"ujA" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med/locks) "ujG" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"ujR" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "ujT" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13446,6 +13398,17 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) +"ukv" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/kutjevo/grey, +/area/kutjevo/interior/complex/med) "ukN" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -13468,15 +13431,16 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) +"ulO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "ulV" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"ume" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) "umo" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/kutjevo, @@ -13485,6 +13449,13 @@ /obj/item/trash/cigbutt/bcigbutt, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) +"umY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "una" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -13498,27 +13469,28 @@ /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) +"unW" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "uoz" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/oob/dev_room) -"uoP" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_river) "uoV" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"upe" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "upY" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) -"uqA" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/interior/construction) "uqR" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor2, @@ -13551,9 +13523,10 @@ /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"urJ" = ( -/turf/open/floor/coagulation/icon0_0, -/area/kutjevo/exterior/scrubland) +"urW" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) "usd" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -13571,21 +13544,47 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"utk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med) -"utE" = ( -/turf/open/floor/coagulation/icon8_6, +"utu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) "utY" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"uup" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) +"uuq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"uvq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper/janitor, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"uwj" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/vending/snack/packaged{ + anchored = 0 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) +"uwq" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) +"uwA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"uwL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med) "uwY" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -13601,18 +13600,18 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"uxs" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/runoff_river) +"uxk" = ( +/obj/structure/bed/chair, +/turf/open/gm/dirtgrassborder2/east, +/area/kutjevo/exterior/complex_border/med_park) "uxA" = ( /obj/structure/prop/dam/truck, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"uzb" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) +"uxZ" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "uzp" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -13627,6 +13626,11 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"uAl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/m94, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "uAz" = ( /obj/structure/fence, /turf/open/auto_turf/sand/layer1, @@ -13688,51 +13692,45 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"uED" = ( +"uET" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"uEK" = ( -/obj/structure/bed/sofa/vert/white/top{ - pixel_y = 17 +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/construction) +"uFz" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 8 }, -/obj/structure/bed/sofa/vert/white, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) +"uFI" = ( /turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med/auto_doc) -"uEW" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/colony_central) "uGN" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"uGX" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "uHb" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "uHo" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"uHq" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/obj/item/clothing/glasses/thermal/syndi{ - icon_state = "kutjevo_goggles" - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/operating) "uHP" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"uId" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/scrubland) "uIg" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_medlock_west"; @@ -13740,16 +13738,17 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med) -"uIi" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Dunes Landing Zone" - }, -/turf/open/floor/plating/kutjevo, -/area/shuttle/drop1/kutjevo) "uIm" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) +"uIs" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/item/device/radio, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "uIF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1; @@ -13768,20 +13767,6 @@ }, /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) -"uJh" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"uJD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "uKx" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib5" @@ -13808,21 +13793,21 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"uLc" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"uLk" = ( -/turf/open/floor/kutjevo/tan/alt_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"uLi" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) +"uLt" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "uLJ" = ( /obj/structure/machinery/floodlight/landing, /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo, /area/kutjevo/interior/oob/dev_room) +"uMu" = ( +/turf/open/floor/kutjevo/colors/purple/edge/northeast, +/area/kutjevo/interior/construction) "uML" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, @@ -13899,18 +13884,31 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"uQQ" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 +"uQK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"uRa" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/triage) "uRm" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/oob) +"uRt" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/spring) +"uRz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) "uRA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -13924,17 +13922,13 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"uSo" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/spring) "uSr" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"uSv" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/interior/oob) -"uSB" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/lz_dunes) "uTj" = ( /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/tan/grey_edge, @@ -13945,10 +13939,9 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"uUo" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) +"uWm" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/colony_central) "uWu" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -13956,17 +13949,29 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"uXy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_South) +"uWF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/machinery/microwave{ + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) +"uXg" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"uYh" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power/comms) "uYi" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med/triage) -"uYv" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) "uYx" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; @@ -13974,6 +13979,10 @@ }, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"uYK" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/interior/oob/dev_room) "uZa" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light{ @@ -13994,23 +14003,6 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"vaG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = -7; - pixel_y = -6 - }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/construction) -"vaO" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/red, -/area/kutjevo/interior/oob) "vbl" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer1, @@ -14026,38 +14018,14 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) -"vbo" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) -"vbS" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_corner/north, -/area/kutjevo/interior/oob) -"vcd" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +"vco" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "vcs" = ( /obj/structure/machinery/computer/cameras{ dir = 4 @@ -14087,21 +14055,17 @@ "vdv" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_S_East) -"vdB" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/construction) +"vdG" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/med/cells) "vdH" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"vdQ" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/lz_river) -"vdS" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "vdV" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/machine_96x96/indestructible{ @@ -14146,6 +14110,18 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) +"vfw" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/scrubland) +"vfF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "vfZ" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -14158,9 +14134,6 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"vhy" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/spring) "vhQ" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -14171,6 +14144,9 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"vip" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_dunes) "viU" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) @@ -14178,12 +14154,10 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"vkt" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_dunes) -"vkz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles/north, +"vjA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "vlg" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -14192,9 +14166,22 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) "vlZ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) +"vme" = ( +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) +"vmh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/engineering_construction, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "vmH" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -14202,6 +14189,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"vnv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_30"; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "vnO" = ( /obj/structure/bed/chair{ dir = 8 @@ -14209,22 +14203,10 @@ /obj/item/newspaper, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"vnY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "voy" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) -"voz" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) "voI" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, @@ -14235,6 +14217,21 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) +"vpP" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) +"vqO" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"vqY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/filtration/coagulation_arm, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "vre" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -14242,6 +14239,11 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"vrR" = ( +/obj/structure/largecrate/random, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "vse" = ( /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer0, @@ -14249,18 +14251,6 @@ "vsP" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_N_East) -"vtw" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/colors/orange/inner_corner/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"vty" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "vtY" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/multi_tiles, @@ -14268,46 +14258,19 @@ "vuo" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"vuD" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) "vvE" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vwH" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) -"vxg" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) +"vwL" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/interior/oob/dev_room) "vxM" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"vxP" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/interior/oob) "vys" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -14315,10 +14278,25 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"vzi" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) +"vyI" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/green, +/area/kutjevo/interior/complex/botany) +"vyK" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) +"vzo" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) "vzC" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -14334,38 +14312,52 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) -"vzJ" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) +"vAg" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/power/comms) +"vAr" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_river) +"vBi" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "vBr" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone2" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"vBC" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east) "vBI" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_dunes) -"vCz" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "vCY" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/obj/item/stack/rods, +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "vDi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"vDr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "vDH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -14427,9 +14419,6 @@ /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"vFx" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/spring) "vFV" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -14437,22 +14426,10 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"vFY" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "vGf" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vGq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) -"vHa" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "vHf" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/sodawater{ @@ -14468,20 +14445,36 @@ "vHL" = ( /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"vHP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med) "vIi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) -"vID" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/auto_doc) -"vJz" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) -"vJZ" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_river) +"vIY" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"vKs" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/construction) +"vKF" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors/red, +/area/kutjevo/interior/complex/botany) "vKQ" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -14522,6 +14515,10 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) +"vLw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "vMf" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/purple, @@ -14530,17 +14527,10 @@ /obj/structure/fence, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"vMx" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +"vNq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"vNE" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) "vOc" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" @@ -14559,18 +14549,10 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"vOS" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power/comms) -"vPb" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/foremans_office) +"vPh" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/kutjevo/interior/oob) "vPE" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" @@ -14583,19 +14565,28 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"vQv" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"vQB" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"vQF" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/lz_pad) "vQJ" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"vRh" = ( -/obj/structure/platform/kutjevo{ +"vQS" = ( +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/interior/colony_north) +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/interior/oob) "vRH" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -14621,12 +14612,16 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"vTy" = ( -/obj/structure/platform/kutjevo{ - dir = 1 +"vTO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) +/obj/structure/largecrate/random/case/small{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) "vVr" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_S_East) @@ -14653,9 +14648,9 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) -"vYm" = ( -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) +"vXT" = ( +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "vYD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan, @@ -14680,27 +14675,27 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_river) +"vZh" = ( +/obj/structure/machinery/light, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "wae" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"waK" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +"wag" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"waw" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "waO" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/spring) "waP" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -14739,15 +14734,6 @@ /obj/item/stool, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"wcD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"wcE" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east_tech) "wdc" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -14762,29 +14748,18 @@ }, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"wdu" = ( -/obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"wdQ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/lz_river) "wei" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/scrubland) +"weT" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "wff" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"wfq" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"wfw" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/scrubland) "wfO" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -14797,13 +14772,34 @@ /obj/structure/machinery/disposal, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"wgL" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 +"wgi" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) +"wgs" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "wgT" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -14813,17 +14809,13 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"wgX" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/kutjevo/multi_tiles/southwest, +"whL" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) -"whv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/cells) +"whT" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/locks) "wix" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -14845,14 +14837,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"wjU" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "wjW" = ( /obj/structure/blocker/invisible_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -14868,10 +14852,17 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"wll" = ( -/obj/item/weapon/twohanded/folded_metal_chair, +"wlm" = ( +/obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +/area/kutjevo/exterior/spring) +"wln" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "wnk" = ( /obj/structure/largecrate/random/case/small, /obj/effect/spawner/random/toolbox{ @@ -14892,26 +14883,26 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"wnM" = ( -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/complex/botany) -"woG" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_river) +"wnX" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med) +"wob" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"wof" = ( +/obj/item/stack/sheet/wood, +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "wpq" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow, /area/kutjevo/interior/oob/dev_room) -"wpy" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) -"wpY" = ( -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "wqk" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/kutjevo, @@ -14919,9 +14910,10 @@ "wqD" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power) -"wrB" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/runoff_dunes) +"wrU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "wsk" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -14930,24 +14922,17 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"wsA" = ( -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/foremans_office) -"wtb" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) "wtH" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany/east) -"wtM" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/runoff_dunes) +"wtO" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "wtZ" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/orange, @@ -14967,9 +14952,6 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"wuX" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "wvr" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South) @@ -14979,13 +14961,13 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"wvO" = ( -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/suit/armor/vest/security, -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/botany) +"wvL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/auto_doc) "wvW" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -15007,10 +14989,21 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"wwG" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/red, +/area/kutjevo/interior/complex/botany) "wwQ" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"wxC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "wyp" = ( /obj/item/tool/crowbar, /turf/open/floor/kutjevo/tan, @@ -15028,6 +15021,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"wzP" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/colony_South/power2) "wAo" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck/uno, @@ -15063,6 +15059,9 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"wCv" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/scrubland) "wCJ" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -15077,9 +15076,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South/power2) -"wDu" = ( -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/lz_pad) "wDT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -15087,16 +15083,14 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"wEX" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/runoff_bridge) "wFQ" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"wGw" = ( -/turf/open/floor/kutjevo/colors/orange/edge/northwest, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"wGk" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/spring) "wGD" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/green, @@ -15108,25 +15102,29 @@ /obj/item/trash/barcardine, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"wIx" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) "wIG" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"wIT" = ( +/obj/item/tool/minihoe, +/obj/item/tool/minihoe, +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/green/tile, +/area/kutjevo/interior/complex/botany) +"wIU" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_bridge) "wJZ" = ( /obj/structure/flora/grass/desert/lightgrass_4, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) "wKk" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/interior/oob/dev_room) +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany/east) "wKp" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand/layer1, @@ -15134,6 +15132,9 @@ "wKr" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/colony_central) +"wLf" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/construction) "wLp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_medlock_pan"; @@ -15145,21 +15146,13 @@ /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"wMr" = ( -/obj/structure/reagent_dispensers/watertank{ - desc = "A watertank. The label has been written over with the sequence 2---" - }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) "wMw" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wNb" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/largecrate/random, +"wNV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/backpack/lightpack, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "wNW" = ( @@ -15173,30 +15166,34 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"wQT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/turf/open/floor/kutjevo/multi_tiles/east, +"wQg" = ( +/obj/item/cell/high, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) +"wQV" = ( +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/kutjevo/interior/complex/botany/east_tech) "wQZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"wRh" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 +"wRG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) -"wSh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east_tech) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"wSd" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"wSr" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_river) "wSw" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/colors/red/tile, @@ -15215,6 +15212,12 @@ "wTt" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"wTL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "wUa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, @@ -15226,13 +15229,24 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) +"wUi" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/foremans_office) +"wVf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "wVt" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"wWf" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/lz_river) +"wVI" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "wWk" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -15249,9 +15263,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"wWM" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/lz_dunes) "wXd" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_South) @@ -15259,6 +15270,10 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz2_north) +"wXT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/complex/botany) "wXV" = ( /obj/structure/window/reinforced{ dir = 8 @@ -15278,10 +15293,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"wYo" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) "wYp" = ( /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) @@ -15289,9 +15300,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) -"wYY" = ( -/turf/open/floor/kutjevo/colors/purple/inner_corner/west, -/area/kutjevo/interior/construction) "wZo" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -15299,6 +15307,9 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"wZs" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_dunes) "wZw" = ( /obj/item/clothing/suit/storage/CMB, /turf/open/floor/kutjevo/tan, @@ -15317,23 +15328,9 @@ /obj/item/explosive/plastic, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"xbj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) -"xbz" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) -"xcz" = ( -/obj/item/trash/barcardine, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/spring) -"xcS" = ( -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/exterior/scrubland) +"xct" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/auto_doc) "xdM" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/runoff_dunes) @@ -15342,12 +15339,13 @@ /obj/item/clothing/accessory/storage/black_vest, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"xfR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) +"xfa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) +"xfK" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/scrubland) "xfW" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand/layer0, @@ -15355,20 +15353,15 @@ "xgl" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/operating) +"xgz" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_dunes) "xgV" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/power) -"xhs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) -"xhA" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) +"xhG" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/auto_doc) "xhV" = ( /obj/structure/sign/safety/hazard{ pixel_y = 32 @@ -15378,6 +15371,9 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) +"xiZ" = ( +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/exterior/scrubland) "xjY" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) @@ -15387,19 +15383,15 @@ "xkk" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"xkE" = ( -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "xlk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_S_East) +"xlr" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/lz_river) "xlt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -15410,24 +15402,21 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"xlI" = ( -/obj/structure/largecrate, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) -"xlN" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 +"xlQ" = ( +/turf/open/floor/kutjevo/colors/orange/edge/southeast, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"xme" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 8 }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"xmb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/obj/item/newspaper, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/operating) +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "xms" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 10; @@ -15442,6 +15431,16 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"xom" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) +"xoE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "xoM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "\improper North Power Shutters" @@ -15485,9 +15484,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) -"xre" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner, -/area/kutjevo/interior/complex/med/auto_doc) "xrv" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -15505,18 +15501,34 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"xtg" = ( -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) -"xuZ" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 +"xrL" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xrX" = ( +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/scrubland) +"xsm" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/interior/oob) +"xtb" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xtP" = ( +/obj/structure/bed/chair{ + dir = 4 }, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/operating) +"xuy" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "xvg" = ( /obj/item/stool{ pixel_y = 8 @@ -15527,36 +15539,40 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) +"xws" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "xwu" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/pano) -"xxd" = ( -/obj/structure/platform/kutjevo{ - dir = 8 +"xwv" = ( +/obj/structure/machinery/autodoc_console, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/auto_doc) +"xxu" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 5; + pixel_y = 12 }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_bridge) "xxz" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone3" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"xxH" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "xxY" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"xyk" = ( -/obj/item/prop/alien/hugger, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "xyw" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, @@ -15572,14 +15588,22 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"xyQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "xzd" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) -"xzF" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xze" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/interior/oob/dev_room) "xzI" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power) @@ -15590,6 +15614,10 @@ "xzY" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"xAl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "xBb" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -15601,17 +15629,6 @@ "xBm" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) -"xBQ" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) -"xCK" = ( -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/colony_central) -"xDy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) "xDY" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/orange, @@ -15619,16 +15636,6 @@ "xEp" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/construction) -"xEE" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/med/locks) -"xEH" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "xFl" = ( /obj/structure/stairs/perspective/kutjevo, /turf/open/floor/kutjevo/grey, @@ -15640,11 +15647,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"xHk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/ammo_box/magazine/nailgun, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany/east_tech) +"xHi" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "xHm" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -15669,9 +15674,9 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) -"xIE" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/kutjevo/exterior/lz_pad) +"xIJ" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "xIK" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer2, @@ -15679,46 +15684,14 @@ "xJg" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"xJL" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) "xKb" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/auto_doc) -"xKm" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/interior/oob/dev_room) -"xKX" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_pad) -"xLF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "xMm" = ( /obj/structure/largecrate/machine/autodoc, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) -"xMx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner, -/area/kutjevo/interior/complex/med/operating) "xMV" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer2, @@ -15726,6 +15699,14 @@ "xNf" = ( /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"xNo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "xNF" = ( /obj/structure/bed/chair{ dir = 1 @@ -15735,25 +15716,9 @@ "xNG" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz1_south) -"xOc" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/toolbox{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/med/locks) -"xOH" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 5 - }, -/turf/open/floor/kutjevo/grey, -/area/kutjevo/interior/complex/med) +"xOS" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/scrubland) "xOU" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -15768,32 +15733,9 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"xOX" = ( -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/complex/med) -"xPa" = ( -/obj/item/stack/sheet/wood{ - pixel_x = -4 - }, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"xPF" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_cave_10, +"xPB" = ( +/turf/open/floor/coagulation/icon7_0, /area/kutjevo/exterior/scrubland) -"xPJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/atmospipes, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"xPU" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "communications" - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/construction) "xRo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -15811,10 +15753,13 @@ }, /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/runoff_bridge) -"xSR" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) +"xSp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/construction) "xSX" = ( /obj/structure/machinery/light{ dir = 1 @@ -15824,6 +15769,22 @@ "xTq" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/runoff_river) +"xUh" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/complex/botany/east_tech) +"xUz" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xVo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xVs" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_river) "xVt" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/stairs/perspective/kutjevo{ @@ -15839,9 +15800,11 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"xWx" = ( -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/spring) +"xWn" = ( +/obj/structure/closet, +/obj/item/clothing/under/kutjevo, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/Northwest_Dorms) "xWK" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) @@ -15861,6 +15824,19 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"xXQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_bridge) +"xYl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) "xYs" = ( /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer1, @@ -15877,18 +15853,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"xZl" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 5; - pixel_y = -4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/med) "xZr" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/orange, @@ -15932,6 +15896,12 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) +"yaN" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Dorms) +"yba" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ybh" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "sedimentation_A_1" @@ -15949,22 +15919,19 @@ icon_state = "pwall" }, /area/kutjevo/interior/oob) -"ycd" = ( -/turf/open/floor/coagulation/icon2_0, -/area/kutjevo/exterior/lz_river) +"yce" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "ycq" = ( /obj/item/prop/alien/hugger, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"ycr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) -"ycF" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/spring) +"ycu" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "yeY" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, @@ -15972,6 +15939,30 @@ "yfo" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central) +"yft" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"yfN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = null + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"yfT" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/construction) "ygh" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/visible{ @@ -15995,6 +15986,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"ygR" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) "yhm" = ( /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan, @@ -16003,15 +15997,22 @@ /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"yhP" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "yir" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/botany/east) -"yjw" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +"yiX" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "yjI" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) @@ -16021,10 +16022,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"yjZ" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/telecomm/lz2_south) "ykn" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -16050,9 +16047,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) -"ylp" = ( -/turf/open/gm/river, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"ylC" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "ymc" = ( /obj/structure/machinery/shower{ name = "automatic sprinkler"; @@ -16778,9 +16778,9 @@ dxF dxF dxF nTw -nCs -nCs -nCs +vXT +vXT +vXT nTw dxF sWF @@ -16945,18 +16945,18 @@ dxF dxF dxF dxF -nCs -nCs -nCs -euA +vXT +vXT +vXT +iiR sWF sWF -cPa -pkC -reo +xme +cCJ +wln sWF sWF -rij +jMS sWF sWF dxF @@ -17112,17 +17112,17 @@ dxF dxF dxF dxF -nCs -nCs -nCs -vzi +vXT +vXT +vXT +rmM wwQ -dIL +jQI fKL opQ xpz sWF -mja +hlq opQ oor sWF @@ -17279,19 +17279,19 @@ dxF dxF dxF dxF -nCs -nCs -nCs -vzi +vXT +vXT +vXT +rmM wwQ -uED +kos ugw ycq mtG sWF -sXx +vQB opQ -fwN +uXg sWF sVF hrz @@ -17446,12 +17446,12 @@ dxF dxF dxF dxF -nCs -nCs -nCs -vzi +vXT +vXT +vXT +rmM wwQ -uED +kos ugw opQ opQ @@ -17594,13 +17594,13 @@ dxF dxF dxF dxF -jao -jao -jao -jao -jao -jao -jao +tAg +tAg +tAg +tAg +tAg +tAg +tAg dxF dxF dxF @@ -17613,12 +17613,12 @@ dxF dxF dxF dxF -nCs -nCs -nCs -euA +vXT +vXT +vXT +iiR sWF -uJD +nyL opQ opQ ksN @@ -17689,19 +17689,19 @@ wGH wGH wGH wGH -iQy -iQy -iQy +ggp +ggp +ggp wGH -iQy +ggp wGH wGH wGH vei wGH -iQy -iQy -iQy +ggp +ggp +ggp wGH wGH wGH @@ -17758,18 +17758,18 @@ dxF dxF dxF dxF -eUm -cBz -rbI -jao -mFh -jao -mFh -mFh -mFh -jao -jao -jao +fmC +ePd +tJf +tAg +dAm +tAg +dAm +dAm +dAm +tAg +tAg +tAg dxF dxF dxF @@ -17780,12 +17780,12 @@ dxF dxF dxF dxF -nCs -nCs -nCs -euA +vXT +vXT +vXT +iiR qzj -xPa +qLx swq bsP opQ @@ -17918,26 +17918,26 @@ dxF dxF dxF dxF -cBz +ePd dxF dxF dxF dxF -cBz -cBz -cBz -cBz -cBz -rbI -kKe -kKe -kKe -kKe -kKe -kKe -kKe -kKe -cnE +ePd +ePd +ePd +ePd +ePd +tJf +lgU +lgU +lgU +lgU +lgU +lgU +lgU +lgU +mes dxF dxF dxF @@ -17947,19 +17947,19 @@ dxF dxF dxF dxF -nCs -nCs -nCs -euA +vXT +vXT +vXT +iiR qzj -wjU +jSN rwL opQ dKs opQ ycq opQ -sSx +nmG sWF dxF dxF @@ -18000,13 +18000,13 @@ dxF dxF dxF osB -sLa -izd +rcc +dSI kie ibm nPs osB -vxP +fZE ppM fQB fQB @@ -18082,31 +18082,31 @@ dxF dxF dxF dxF -hWt -xKX -xIE -cBz +iMw +dvH +vQF +ePd dxF dxF dxF -cBz -tBY -cBz -cBz -cBz -ede -gWM -gWM -cBz -cBz -cBz -cBz -cBz -cBz -cBz -cBz -cBz -cBz +ePd +tHk +ePd +ePd +ePd +biZ +jgA +jgA +ePd +ePd +ePd +ePd +ePd +ePd +ePd +ePd +ePd +ePd dxF dxF dxF @@ -18114,19 +18114,19 @@ dxF dxF dxF dxF -nCs -nCs -nCs -euA +vXT +vXT +vXT +iiR wwQ -pyG +hhb opQ opQ swq opQ haz ksN -sSx +nmG sWF dxF dxF @@ -18167,15 +18167,15 @@ dxF dxF nPs ibm -hWl +blw wpq uDP nPs ibm osB -mJt -fkC -csX +vQS +xsm +nPL ppM fQB loe @@ -18211,7 +18211,7 @@ nbV nbV qVc cWV -aky +djD wGH dxF dxF @@ -18222,7 +18222,7 @@ dxF dxF dxF vei -qwH +cIm bGD oqQ sHu @@ -18249,50 +18249,50 @@ dxF dxF dxF dxF -oRI -kJh -pFL -cBz -cBz -cBz -cBz -cBz -cBz -ede -ede -ede -ede -ede -gWM -gWM -cBz -cBz -ddg -cBz -cBz -ede -ede -ede -cBz -cBz -tBY -cBz +ifh +sXN +soI +ePd +ePd +ePd +ePd +ePd +ePd +biZ +biZ +biZ +biZ +biZ +jgA +jgA +ePd +ePd +sUy +ePd +ePd +biZ +biZ +biZ +ePd +ePd +tHk +ePd dxF dxF dxF dxF -gWM -nCs -nCs -euA +jgA +vXT +vXT +iiR sWF sWF -tbL -fPU -atr -ceI -fPU -sbe +hHM +jqb +rZu +gRy +jqb +gVr sWF sWF dxF @@ -18334,16 +18334,16 @@ dxF fxL ibm gSr -lrR -xKm -gkE +vwL +ogQ +uYK nPs nPs fqR -wKk -gjI -ovF -nfb +xze +tsb +bzc +uLi fQB loe mxB @@ -18378,7 +18378,7 @@ lAI nbV usd cWV -aky +djD vei wGH kVH @@ -18389,7 +18389,7 @@ dxF dxF prJ wGH -uSB +naT rHy prJ aIu @@ -18416,43 +18416,43 @@ dxF dxF dxF dxF -avg -eDa -fOg -ede -ede -ede -gWM -gWM -ede -ede -cBz -cBz -cBz -ede -gWM -gWM -gWM -cBz -cBz -cBz -cBz -ede -cBz -cBz -cBz -cBz -cBz -cBz -cBz -gWM -gWM -ede -ede -nCs -nCs -euA -drV +mRH +adt +hMd +biZ +biZ +biZ +jgA +jgA +biZ +biZ +ePd +ePd +ePd +biZ +jgA +jgA +jgA +ePd +ePd +ePd +ePd +biZ +ePd +ePd +ePd +ePd +ePd +ePd +ePd +jgA +jgA +biZ +biZ +vXT +vXT +iiR +ohU sWF sWF sWF @@ -18509,8 +18509,8 @@ rkt jBJ fOU ibm -hWl -nfb +blw +uLi fQB uam jhS @@ -18545,7 +18545,7 @@ lAI nbV slB cWV -aky +djD wGH wGH wGH @@ -18556,7 +18556,7 @@ dxF dxF prJ wGH -uSB +naT kvU bGD prJ @@ -18584,50 +18584,50 @@ dxF dxF dxF dxF -gWM -cBz -cBz -cBz -cBz -ede -cBz -cBz -cBz -gWM -cBz -cBz -cBz -cBz -cBz -cBz -cBz -ede -ede -ede -ede -ede -ede -ede -cBz -cBz -cBz -cBz -cBz -ede -ede -ede -nCs -nCs -car -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu +jgA +ePd +ePd +ePd +ePd +biZ +ePd +ePd +ePd +jgA +ePd +ePd +ePd +ePd +ePd +ePd +ePd +biZ +biZ +biZ +biZ +biZ +biZ +biZ +ePd +ePd +ePd +ePd +ePd +biZ +biZ +biZ +vXT +vXT +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH rzh dxF dxF @@ -18674,13 +18674,13 @@ osB dxF dxF mxB -bYa -izd -awU -nfb +lEN +dSI +cil +uLi fQB rYM -qNj +mzo kVJ prJ prJ @@ -18712,7 +18712,7 @@ lAI nbV aKl cWV -aky +djD qnU wGH wGH @@ -18723,7 +18723,7 @@ wGH prJ prJ wGH -uSB +naT pPJ kvU bGD @@ -18752,49 +18752,49 @@ dxF dxF dxF dxF -cBz -cBz -gWM -ede -alb -alb -alb -gWM -gWM -gWM -gWM -gWM -ede -alb -alb -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -alb -alb -alb -ede -ede -nCs -nCs -ede -ede -ede -gWM -gWM -gWM -ede -ede -ede -ede +ePd +ePd +jgA +biZ +bzD +bzD +bzD +jgA +jgA +jgA +jgA +jgA +biZ +bzD +bzD +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +bzD +bzD +bzD +biZ +biZ +vXT +vXT +biZ +biZ +biZ +jgA +jgA +jgA +biZ +biZ +biZ +biZ dxF dxF dxF @@ -18841,13 +18841,13 @@ dxF dxF dxF mxB -guf -cnT -uSv -vbS +jtx +hxS +jIP +cIO fQB rYM -qNj +mzo kVJ wGH wGH @@ -18879,7 +18879,7 @@ cBF nbV qVc cWV -aky +djD qnU qnU wGH @@ -18890,8 +18890,8 @@ vei wGH prJ wGH -gKL -byy +cAF +rOo pPJ rHy prJ @@ -18919,49 +18919,49 @@ dxF dxF dxF dxF -cBz -gWM -gWM -ede -car -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -car -nCs -nCs -nCs -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede +ePd +jgA +jgA +biZ +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +vme +vXT +vXT +vXT +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ dxF dxF dxF @@ -19008,13 +19008,13 @@ dxF dxF dxF mxB -pHE -wgL +rax +lyj fQB fQB fQB rYM -qNj +mzo kVJ wGH vei @@ -19032,7 +19032,7 @@ lAI lAI lAI lAI -uIi +eIg lAI lAI lAI @@ -19046,7 +19046,7 @@ nbV nbV usd cWV -aky +djD qnU wGH qnU @@ -19058,9 +19058,9 @@ prJ wGH jqt prJ -gKL -riJ -wWM +cAF +nQV +nHz dxF dxF dxF @@ -19086,48 +19086,48 @@ dxF dxF dxF dxF -cBz -gWM -ede -sjy -euA -mRI -tbP -bCd -yjw -qKe -tbP -bCd -yjw -qKe -tbP -bCd -yjw -qKe -tbP -bCd -yjw -qKe -tbP -bCd -yjw -qKe -tbP -bCd -mRI -euA -nCs -nCs -nCs -ede -ede -alb -alb -alb -alb -alb -ede -ede +ePd +jgA +biZ +pvb +iiR +eIP +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +eIP +iiR +vXT +vXT +vXT +biZ +biZ +bzD +bzD +bzD +bzD +bzD +biZ +biZ dxF dxF dxF @@ -19176,12 +19176,12 @@ dxF dxF mxB mxB -mtH +oVt han fQB fQB rYM -qNj +mzo kVJ wGH wGH @@ -19213,7 +19213,7 @@ nbV nbV slB cWV -aky +djD wGH wGH wGH @@ -19253,12 +19253,12 @@ dxF dxF dxF dxF -gWM -ede -cBz -ede -euA -hrU +jgA +biZ +ePd +biZ +iiR +ycu hzN wqk hzN @@ -19281,20 +19281,20 @@ hzN wqk hzN hzN -bCy -euA -nCs -nCs -nCs -ede -sjy -car -wDu -wDu -wDu -car -gVT -pJf +tCJ +iiR +vXT +vXT +vXT +biZ +pvb +vme +jZH +jZH +jZH +vme +wgi +qdA dxF dxF dxF @@ -19380,7 +19380,7 @@ lAI nbV aKl cWV -aky +djD gZj wGH wGH @@ -19419,13 +19419,13 @@ dxF dxF dxF dxF -gWM -gWM -ede -cBz -ede -euA -jic +jgA +jgA +biZ +ePd +biZ +iiR +bAp hzN hzN hzN @@ -19448,20 +19448,20 @@ hzN hzN ppX hzN -sep -euA -nCs -nCs -nCs -ede -sjy -euA -sdq -fYC -fYC -euA -gVT -ede +bce +iiR +vXT +vXT +vXT +biZ +pvb +iiR +hkc +vLw +vLw +iiR +wgi +biZ dxF dxF dxF @@ -19547,7 +19547,7 @@ lAI cBF qVc cWV -aky +djD wGH wGH jqt @@ -19586,13 +19586,13 @@ dxF dxF dxF dxF -gWM -cvM -ede -cBz -sjy -euA -giP +jgA +emJ +biZ +ePd +pvb +iiR +cVE hzN hzN hzN @@ -19615,21 +19615,21 @@ ppX hzN ppX hzN -mDb -euA -nCs -nCs -ede -ede -sjy -euA -qWU -pAx -aCb -euA -gVT -ede -aCQ +kMJ +iiR +vXT +vXT +biZ +biZ +pvb +iiR +dca +pdj +pkJ +iiR +wgi +biZ +mXK pkP pkP hrz @@ -19714,7 +19714,7 @@ lAI cBF usd cWV -aky +djD wGH wGH jqt @@ -19753,13 +19753,13 @@ dxF dxF dxF dxF -gWM -ede -ede -ede -sjy -euA -ucq +jgA +biZ +biZ +biZ +pvb +iiR +kVY hzN ppX ppX @@ -19782,23 +19782,23 @@ ppX ppX ppX hzN -alg -euA -nCs -nCs -ede -gWM -sjy -euA -oBV -oBV -oBV -euA -gVT -ede -gXn +rpF +iiR +vXT +vXT +biZ +jgA +pvb +iiR +twF +twF +twF +iiR +wgi +biZ +oFe ggC -oFC +ivH hrz hrz hrz @@ -19920,13 +19920,13 @@ dxF dxF dxF dxF -gWM -ede -ede -ede -sjy -euA -hrU +jgA +biZ +biZ +biZ +pvb +iiR +ycu hzN ppX ppX @@ -19949,23 +19949,23 @@ ppX hzN eBI hzN -bCy -euA -nCs -nCs -ede -gWM -sjy -euA -tNg -ciS -ciS -euA -gVT -ede -gXn +tCJ +iiR +vXT +vXT +biZ +jgA +pvb +iiR +kbl +gMA +gMA +iiR +wgi +biZ +oFe ggC -oFC +ivH hrz hrz hrz @@ -20013,10 +20013,10 @@ dxF dxF mxB jhS -msg -msg -msg -msg +nAQ +nAQ +nAQ +nAQ jhS mxB dxF @@ -20087,13 +20087,13 @@ dxF dxF dxF dxF -gWM -gWM -ede -cBz -sjy -euA -jic +jgA +jgA +biZ +ePd +pvb +iiR +bAp hzN ppX ppX @@ -20104,7 +20104,7 @@ ppX ppX ppX ppX -gkN +qOK ppX ppX ppX @@ -20116,23 +20116,23 @@ ppX hzN hzN hzN -sep -euA -nCs -nCs -ede -ede -sjy -euA -rbB -kGc -oBV -euA -gVT -ede -gXn +bce +iiR +vXT +vXT +biZ +biZ +pvb +iiR +cDm +waw +twF +iiR +wgi +biZ +oFe ggC -oFC +ivH sVF hrz hrz @@ -20148,7 +20148,7 @@ sVF mgn mgn mgn -yjZ +bIy jFf dxF dxF @@ -20254,13 +20254,13 @@ dxF dxF dxF dxF -cBz -gWM -cBz -gWM -gWM -euA -giP +ePd +jgA +ePd +jgA +jgA +iiR +cVE hzN ppX ppX @@ -20283,23 +20283,23 @@ ppX hzN hzN hzN -mDb -euA -nCs -nCs -ede -ede -sjy -car -wDu -wDu -wDu -car -gVT -ede -gXn +kMJ +iiR +vXT +vXT +biZ +biZ +pvb +vme +jZH +jZH +jZH +vme +wgi +biZ +oFe pkP -oFC +ivH iin hrz hrz @@ -20347,10 +20347,10 @@ sPE xpd mxB tlN -rmm -rmm -rmm -rmm +vAg +vAg +vAg +vAg tlN tlN tlN @@ -20361,22 +20361,22 @@ wGH wGH wGH vei -oCw +oEQ vei prJ vei -oCw -oCw -oCw +oEQ +oEQ +oEQ wGH -oCw -oCw -oCw +oEQ +oEQ +oEQ vei vei -oCw -oCw -oCw +oEQ +oEQ +oEQ wGH wGH wGH @@ -20421,13 +20421,13 @@ dxF dxF dxF dxF -cBz -cBz -cBz -cBz -sjy -euA -bSB +ePd +ePd +ePd +ePd +pvb +iiR +fXs hzN ppX ppX @@ -20450,23 +20450,23 @@ ppX ppX ppX hzN -alg -euA -nCs -nCs -nCs -ede -ede -tZM -tZM -tZM -tZM -tZM -ede -ede -gXn +rpF +iiR +vXT +vXT +vXT +biZ +biZ +hJd +hJd +hJd +hJd +hJd +biZ +biZ +oFe ggC -oFC +ivH hrz hrz hrz @@ -20514,11 +20514,11 @@ bff oqw mHo ozs -vOS -vOS -vOS -vOS -vOS +hsB +hsB +hsB +hsB +hsB vre tlN dxF @@ -20588,13 +20588,13 @@ dxF dxF dxF dxF -cBz -kcu -cBz -gWM -sjy -euA -hrU +ePd +kJa +ePd +jgA +pvb +iiR +ycu hzN hzN hzN @@ -20617,23 +20617,23 @@ ppX hzN ppX eBI -bCy -euA -nCs -nCs -nCs -ede -ede -ede -ede -ede -ede -ede -ede -cvM -gXn +tCJ +iiR +vXT +vXT +vXT +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +emJ +oFe ggC -oFC +ivH hrz hrz hrz @@ -20680,13 +20680,13 @@ mxB mxB mxB tlN -sua +aYf xzY xzY xzY xzY xzY -khn +kEn pyp dxF dxF @@ -20755,13 +20755,13 @@ dxF dxF dxF dxF -cBz -cBz -cBz -cBz -gWM -euA -jic +ePd +ePd +ePd +ePd +jgA +iiR +bAp hzN hzN hzN @@ -20784,23 +20784,23 @@ hzN hzN ppX eBI -sep -euA -nCs -nCs -nCs -ede -cBz -ede -ede -ede -ede -vFY -ede -ede -gXn +bce +iiR +vXT +vXT +vXT +biZ +ePd +biZ +biZ +biZ +biZ +asR +biZ +biZ +oFe ggC -oFC +ivH hrz hrz hrz @@ -20847,13 +20847,13 @@ dxF dxF dxF tlN -fRK +qSO boR -hkY -pKO +fbI +ndC tXm boR -fRK +qSO tlN dxF dxF @@ -20922,13 +20922,13 @@ dxF dxF dxF dxF -cBz -cBz -cBz -cBz -sjy -euA -giP +ePd +ePd +ePd +ePd +pvb +iiR +cVE hzN wqk hzN @@ -20951,19 +20951,19 @@ hzN wqk hzN hzN -mDb -euA -nCs -nCs -nCs -car -wDu -wDu -wDu -wDu -wDu -wDu -wDu +kMJ +iiR +vXT +vXT +vXT +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH hoK hoK hoK @@ -21014,13 +21014,13 @@ tlN tlN tlN tlN -kYX +svo boR tXm tWM tXm boR -eDI +ttw tlN dfa eRE @@ -21089,51 +21089,51 @@ dxF dxF dxF dxF -cBz -cBz -cBz -ede -sjy -euA -mRI -eXx -sAE -kSf -oGK -eXx -sAE -kSf -oGK -eXx -sAE -kSf -oGK -eXx -sAE -kSf -oGK -eXx -sAE -kSf -oGK -eXx -sAE -mRI -euA -nCs -nCs -nCs -euA -drV -drV -drV -drV -drV -drV +ePd +ePd +ePd +biZ +pvb +iiR +eIP +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +eIP +iiR +vXT +vXT +vXT +iiR +ohU +ohU +ohU +ohU +ohU +ohU hoK hoK hbL -eLh +grv hoK hoK dxF @@ -21179,10 +21179,10 @@ jwM ter tPh jvp -nEv +uYh oru xrb -jtu +ihp boR boR boR @@ -21256,42 +21256,42 @@ dxF dxF dxF dxF -cBz -cBz -ede -ede -sjy -car -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -wDu -car -nCs -nCs -nCs -spA -drV +ePd +ePd +biZ +biZ +pvb +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +vme +vXT +vXT +vXT +uwA +ohU hoK hoK dkW @@ -21299,9 +21299,9 @@ uIF hoK hoK oaG -uiD -rvQ -oFB +vNq +tKq +yba hoK dxF dxF @@ -21333,8 +21333,8 @@ dxF dxF dxF dxF -cdu -quY +fbV +cOP xYt dxF tlN @@ -21345,16 +21345,16 @@ pla boR tWM tWM -uHb -uHb -qLj -xlN -uHb -uHb -uHb -cAd -uHb -uHb +iuM +iuM +wob +wtO +iuM +iuM +iuM +cAi +iuM +iuM pmu qzd ubV @@ -21364,8 +21364,8 @@ vei prJ prJ piq -sbl -qHV +cOU +ecg tQi vei wGH @@ -21423,49 +21423,49 @@ dxF dxF dxF dxF -cBz -gWM -ede -ede -cvM -tZM -tZM -tZM -ede -tZM -tZM -ede -tZM -tZM -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -ede -tZM -ede -nCs -nCs -nCs -euA -drV +ePd +jgA +biZ +biZ +emJ +hJd +hJd +hJd +biZ +hJd +hJd +biZ +hJd +hJd +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +hJd +biZ +vXT +vXT +vXT +iiR +ohU hoK lOr -rcr -rcr -jAy +ejF +ejF +xrL hoK -hYb +vDr cid nZK jnr @@ -21500,7 +21500,7 @@ dxF dxF dxF dxF -oiB +aJQ dJs xIk bXl @@ -21512,16 +21512,16 @@ moL boR tWM tWM -uHb -uHb -qLj -xlN -uHb -ioJ -uHb -uHb -uHb -uHb +iuM +iuM +wob +wtO +iuM +oYn +iuM +iuM +iuM +iuM pmu qzd ubV @@ -21531,8 +21531,8 @@ prJ prJ prJ piq -pRg -bEF +hNI +bxF tQi wGH vei @@ -21589,51 +21589,51 @@ dxF dxF dxF dxF -gWM -gWM -gWM -gWM -ede -cBz -ede -ede -ede -ede -ede -ede -ede -ede -cBz -ede -ede -cBz -cBz -cBz -cBz -gWM -gWM -esg -esg -ede -alb -alb -alb -alb -alb -ede -nCs -nCs -nCs -euA -drV +jgA +jgA +jgA +jgA +biZ +ePd +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +ePd +biZ +biZ +ePd +ePd +ePd +ePd +jgA +jgA +ubz +ubz +biZ +bzD +bzD +bzD +bzD +bzD +biZ +vXT +vXT +vXT +iiR +ohU uAJ -bJa +lvC nZK lVt -nAb -iSX -uLk -tgl +wVI +xUz +tlF +xtb nZK jnr hoK @@ -21667,9 +21667,9 @@ dxF dxF dxF dxF -ahN -qzw -wfw +xOS +dyn +xfK bXl fFH rwX @@ -21757,44 +21757,44 @@ dxF dxF dxF dxF -gWM -gWM -gWM -gWM -gWM -gWM -gWM -ede -ede -ede -ede -ede -cMV -cBz -cBz -cBz -cBz -cBz -ede -cBz -cBz -cBz -cBz -esg -ede -tos -wDu -wDu -wDu -car -gVT -nCs -nCs -nCs -euA -drV +jgA +jgA +jgA +jgA +jgA +jgA +jgA +biZ +biZ +biZ +biZ +biZ +cQg +ePd +ePd +ePd +ePd +ePd +biZ +ePd +ePd +ePd +ePd +ubz +biZ +qNY +jZH +jZH +jZH +vme +wgi +vXT +vXT +vXT +iiR +ohU hEC -hdn +oiS nZK yhA nZK @@ -21838,24 +21838,24 @@ sYd sYd sYd sYd -iZe -xlN -uHb -uHb -vHa -uHb +vIY +wtO +iuM +iuM +gme +iuM tWM tWM mkJ tlN tlN -kYX +svo boR tWM tWM tWM boR -eDI +ttw tlN dfa eRE @@ -21929,39 +21929,39 @@ dxF dxF dxF rzh -wDu -oFG -oFG -wDu -wDu -wDu -hOl -wDu -hOl -rYf -wDu -wDu -wDu -wDu -car -cBz -cBz -cBz -cBz -hqy -oLE -eqE -vty -omb -euA -gVT -nCs -nCs -nCs -euA -drV +jZH +jei +jei +jZH +jZH +jZH +lNt +jZH +lNt +axL +jZH +jZH +jZH +jZH +vme +ePd +ePd +ePd +ePd +pDZ +ejZ +oSQ +tah +uuq +iiR +wgi +vXT +vXT +vXT +iiR +ohU uAJ -eNn +lGy nZK nZK nZK @@ -21969,7 +21969,7 @@ ptz nZK gDP nZK -ugS +fQT hoK dxF dxF @@ -22005,24 +22005,24 @@ sYd sYd sYd sYd -qLj -fUM -pbI -uHb -qTi -uHb +wob +dVY +pEK +iuM +gvA +iuM tWM tWM cRo tlN kfe -nrm +aTm boR tXm tWM tXm boR -nrm +aTm tlN iaj iaj @@ -22108,32 +22108,32 @@ uzp acx jnV jnV -drV -drV -euA -cBz -cBz -cBz -cBz -sjy -euA -oBV -ciS -sdq -nrZ -dAG -nCs -nCs -nCs -euA -jZw +ohU +ohU +iiR +ePd +ePd +ePd +ePd +pvb +iiR +twF +gMA +hkc +jlf +hro +vXT +vXT +vXT +iiR +oOH hEC -lSk +djy nZK nZK -eKw -pTL -adA +nuf +puz +lqu nZK nZK vKV @@ -22183,13 +22183,13 @@ tWM xZr tlN kfe -nrm +aTm vXq kKb tWM tXm boR -nrm +aTm tlN iaj iaj @@ -22262,48 +22262,48 @@ dxF jnV jnV gAt -nRq -nRq -atq -obI +tdf +tdf +bZU +uLt bET jnV xZz -bxI -rEZ -nRq -nRq +lgh +prl +tdf +tdf pHR jnV jnV -drV -euA -ede -cBz -cBz -cBz -sjy -euA -kcf -ciS -ciS -ipo -dAG -nCs -nCs -nCs -euA -drV +ohU +iiR +biZ +ePd +ePd +ePd +pvb +iiR +uwj +gMA +gMA +mCP +hro +vXT +vXT +vXT +iiR +ohU hoK -fUQ -mRE +omi +iYu nZK jnr hoK -lSk +djy xNF -eKw -nVt +nuf +nxA hoK dxF dxF @@ -22350,13 +22350,13 @@ tWM wtZ tlN kfe -nrm +aTm boR tXm jFB kKb vXq -nrm +aTm tlN iaj iaj @@ -22397,7 +22397,7 @@ wGH wGH wGH lUg -suT +ixA hQj hQj eWP @@ -22428,15 +22428,15 @@ dxF dxF jnV hst -atq +bZU cWc cWc cWc tiL jPD jnV -fak -kzu +uWF +hPH laI cWc cWc @@ -22444,30 +22444,30 @@ cWc hst jnV jnV -euA -ede -dPW -cBz -cBz -sjy -euA -oBV -ciS -oBV -xlI -gVT -nCs -nCs -nCs -euA -drV +iiR +biZ +unW +ePd +ePd +pvb +iiR +twF +gMA +twF +fzb +wgi +vXT +vXT +vXT +iiR +ohU hoK hoK -laj +eAF nZK jnr hoK -lSk +djy xNF jnr hoK @@ -22594,7 +22594,7 @@ dxF dxF dxF jnV -hLA +jbj cWc cWc cWc @@ -22602,7 +22602,7 @@ cWc cWc mLe jnV -tjc +jBw cWc cWc cWc @@ -22611,30 +22611,30 @@ cWc cWc dfz jnV -euA -ede -mLa -ede -ede -sjy -euA -oBV -ciS -odq -euA -dAG -nCs -nCs -nCs -euA -drV +iiR +biZ +aBc +biZ +biZ +pvb +iiR +twF +gMA +nCS +iiR +hro +vXT +vXT +vXT +iiR +ohU hoK hoK -hBV +uvq nZK jnr hoK -llC +bTm nZK jnr hoK @@ -22761,50 +22761,50 @@ dxF dxF dxF jnV -fAq +ebF cWc cWc pfe cWc cWc -obI +uLt pma -qca +xAl cWc cWc cWc cWc cWc cWc -iMV +cVh pma -grC -ede -wll -ede -cvM -ede -euA -byV -ciS -oBV -euA -gWM -nCs -nCs -nCs -euA -drV +qEV +biZ +bIG +biZ +emJ +biZ +iiR +asb +gMA +twF +iiR +jgA +vXT +vXT +vXT +iiR +ohU hoK -mIh -uLk +nPH +tlF nZK jnr hoK -rCb +xNo nZK -nAb -oFB +wVI +yba hoK dxF dxF @@ -22848,16 +22848,16 @@ moL boR nQr tWM -uHb -vCz -qLj -xlN -uHb -lqi -uHb -rib -pbI -uHb +iuM +fFz +wob +wtO +iuM +dtU +iuM +rmp +pEK +iuM pmu qzd qzd @@ -22928,47 +22928,47 @@ dxF dxF dxF jnV -uzb +lWx cWc -pIl -qNb -qNb -qNb -qNb +yaN +lrU +lrU +lrU +lrU fto -nmo +dQx cWc jcL cWc cWc tiL cWc -pIl +yaN fto -qrp -ede -xyk -ede -ede -gWM -euA -vGq -rry -ciS -euA -gWM -nCs -nCs -nCs -euA -drV +kwG +biZ +apu +biZ +biZ +jgA +iiR +bRj +eOK +gMA +iiR +jgA +vXT +vXT +vXT +iiR +ohU uAJ -gHY +fQm nZK nZK -mkc -ghB -uLk +hQE +lij +tlF rKJ nZK jnr @@ -23015,16 +23015,16 @@ nJY wiH tWM tWM -uHb -qrm -qLj -xlN -uHb -aYO -uHb -uHb -uHb -uHb +iuM +aQg +wob +wtO +iuM +wof +iuM +iuM +iuM +iuM pmu qzd qzd @@ -23064,19 +23064,19 @@ voy aHW aHW aHW -ctJ -cqB -mKC +azm +rkx +lNH aHW evZ hQj evZ aHW -pmQ -rGe -vuD -fPZ -fPZ +tKH +mwr +tLU +uFz +uFz "} (43,1,1) = {" ybY @@ -23095,7 +23095,7 @@ dxF dxF dxF jnV -mUh +lKt cWc jPD jnV @@ -23103,7 +23103,7 @@ jnV jnV jnV jnV -vnY +juW lSc cWc cWc @@ -23112,25 +23112,25 @@ lSc lSc fto jnV -euA -ede -ede -ede -ede -gWM -euA -aAa -rry -omb -euA -gVT -ede -nCs -aGa -euA -drV +iiR +biZ +biZ +biZ +biZ +jgA +iiR +eZi +eOK +uuq +iiR +wgi +biZ +vXT +kFx +iiR +ohU uAJ -sOi +hFG nZK nZK yhA @@ -23210,40 +23210,40 @@ wGH jqt jqt prJ -mPa -hUj -hUj -hUj -hUj -hUj -hUj -hUj -uup +oQP +cYN +cYN +cYN +cYN +cYN +cYN +cYN +pbI pyp pyp nXX thu -qxL +vqO hQj hQj hQj -afh +wrU rwj muG muG qVZ -ugi -jzq +sGn +hPp byl evZ -gcr +flc evZ byl -wRh -bEQ -jpH -lKJ -lKJ +txE +fWZ +pJX +kGC +kGC "} (44,1,1) = {" ybY @@ -23262,15 +23262,15 @@ dxF dxF dxF jnV -sxQ +stp cWc -obI +uLt jnV -fGm -nRq +fSo +tdf nLR jnV -jKr +ooL iXh vYF cWc @@ -23279,30 +23279,30 @@ iXh ntz jnV jnV -euA -ede -ede -ede -ede -sjy -euA -oBV -vGq -omb -euA -gVT -gWM -nCs -nCs -euA -jZw +iiR +biZ +biZ +biZ +biZ +pvb +iiR +twF +bRj +uuq +iiR +wgi +jgA +vXT +vXT +iiR +oOH hEC -bgW +tOO nZK nZK nZK nZK -kIc +mbB nZK nZK jnr @@ -23376,41 +23376,41 @@ jqt jqt jqt jqt -mPa -sWN -pLf -skF -hxC +oQP +qKA +gYK +mfT +bfj gWd gWd -pLf -skF -ngU -ycd +gYK +mfT +mMd +iHm pBV hQj xzY -qxL -gcr -gcr -gcr -qxL +vqO +flc +flc +flc +vqO rwj wMw wMw wMw -lsh -kgE +hBj +xyQ byl evZ hQj evZ byl -wRh -dlZ -vaO -bEQ -lKJ +txE +qhb +pVO +fWZ +kGC "} (45,1,1) = {" ybY @@ -23429,7 +23429,7 @@ dxF dxF dxF jnV -bvA +iYj cWc cWc ujT @@ -23438,38 +23438,38 @@ cWc mLe jnV wno -dGP -oEJ -qNb -sVb -qSq +thE +gwA +lrU +mYN +hmi jnV jnV jnV rzh dxF dxF -kVO -ede -ede -car -wDu -wDu -wDu -car -gVT -gWM -nCs -nCs -euA -drV +pDa +biZ +biZ +vme +jZH +jZH +jZH +vme +wgi +jgA +vXT +vXT +iiR +ohU uAJ -bJa +lvC nZK nZK -eKw -sxH -xzF +nuf +kLg +lhF nZK wZw jnr @@ -23519,21 +23519,21 @@ mOe mOe lqG tlN -kli +rlM boR boR hnZ boR ezX -nwP -vbo -voz -hUj -hUj -hUj -hUj -hUj -hUj +soj +kqS +fZy +cYN +cYN +cYN +cYN +cYN +cYN qzY fcB qzd @@ -23542,42 +23542,42 @@ qzd iaj iaj qzd -mPa -sWN -pLf -lKE -peZ -kJR +oQP +qKA +gYK +xlr +jrh +eot gWd gWd -cGk +gOA sOJ -qFF -ycd +bCg +iHm pBV hQj xzY -qxL +vqO hQj hQj hQj -vdS +qGf rwj uZT uZT uZT -nLX -kgE +aQd +xyQ byl evZ -gcr +flc evZ byl -tOB -bEQ -bEQ -lKJ -lKJ +iLY +fWZ +fWZ +kGC +kGC "} (46,1,1) = {" ybY @@ -23596,11 +23596,11 @@ dxF dxF dxF jnV -kJG +bCJ cWc -rYl +aqY jnV -fjd +wgs cWc old jnV @@ -23618,25 +23618,25 @@ dxF dxF dxF dxF -ede -tZM -tZM -tZM -tZM -tZM -ede -ede -nCs -nCs -euA -drV +biZ +hJd +hJd +hJd +hJd +hJd +biZ +biZ +vXT +vXT +iiR +ohU hoK -vMx -xxH -fnm -izY +oXg +ovr +jVj +rzL hoK -beP +xws nZK cid vxM @@ -23686,65 +23686,65 @@ sYd sYd gzv ezX -tLh +fYp lkP esi tXm -tLh +fYp ezX -nwP +soj kdf cNE -skF -skF -skF -skF -skF -hxC +mfT +mfT +mfT +mfT +mfT +bfj dob -hUj -hUj -hUj -hUj -hUj -hUj -hUj -sWN -pLf -lKE -peZ -kJR -wWf -eBm -eBm -bIJ -mXM +cYN +cYN +cYN +cYN +cYN +cYN +cYN +qKA +gYK +xlr +jrh +eot +fHb +vAr +vAr +kMn +oaR fkP -ycd +iHm pyp -kxo +gci xzY -qxL +vqO hQj hQj hQj -vdS +qGf aHW aHW aHW -ctJ -kmL -kgE +azm +lYQ +xyQ aHW awa fRI uqR aHW -wRh -dlZ -lKJ -lKJ -lKJ +txE +qhb +kGC +kGC +kGC "} (47,1,1) = {" ybY @@ -23763,11 +23763,11 @@ dxF dxF dxF jnV -cIc +ivK cWc jPD jnV -kwf +uHb cWc mLe jnV @@ -23803,10 +23803,10 @@ dkW uIF hoK hoK -eFw -aSl -gjk -qpb +oZr +ddb +xVo +eyl hoK dxF dxF @@ -23853,65 +23853,65 @@ bXl sYd gzv ezX -tLh +fYp tXm wqD tXm -uYv +qeZ tlN -nwP +soj kdf -oiB +aJQ sDG sDG sDG sDG sDG -fIP -skF -hxC -wWf -eBm -eBm -eBm -bIJ +iim +mfT +bfj +fHb +vAr +vAr +vAr +kMn gWd -pLf -lKE +gYK +xlr sDG qhi -wWf -kVb +fHb +xVs sCA ddq -lFi -mXM +kKD +oaR fkP -ycd +iHm pBV hQj xzY -qxL -gcr -gcr -gcr -tZN +vqO +flc +flc +flc +jJh rwj muG muG qVZ -ugi -kgE +sGn +xyQ byl sTC -gcr +flc pvL byl -wRh -dlZ -nuw -vaO -lKJ +txE +qhb +vqY +pVO +kGC "} (48,1,1) = {" ybY @@ -23930,12 +23930,12 @@ dxF dxF dxF jnV -fbh -nmo +xWn +dQx jPD jnV nLR -qNb +lrU nLR jnV dxF @@ -23971,8 +23971,8 @@ aUF aUF hoK hoK -rmg -uhq +yfN +kHl hoK hoK dxF @@ -24020,65 +24020,65 @@ sYd sYd gzv ezX -xSR +sIx tXm tXm esi -tLh +fYp ezX -nwP +soj kdf kdf -uId -vdQ -gwn -vdQ -vdQ -vdQ +lav +kCf +bBL +kCf +kCf +kCf sOJ qhi mQl ueO jXq ddq -lFi +kKD gWd -mXM +oaR sDG sDG qhi dob -hUj -hUj -hUj -sWN -mXM +cYN +cYN +cYN +qKA +oaR fkP -ycd +iHm pBV -jAO +rHb uBz -qxL +vqO hQj hQj hQj -efp +sbp rwj wMw wMw wMw -hfK -kgE +yce +xyQ byl vFv hQj evZ byl -wRh -dlZ -dlZ -jiw -lKJ +txE +qhb +qhb +nNl +kGC "} (49,1,1) = {" ybY @@ -24187,40 +24187,40 @@ sYd sYd pBi tlN -kli -bhl -gcr -gcr -qAI +rlM +eNp +flc +flc +iGd pBV -nwP -qYI -aOX -rmZ -eBm -eBm -eBm -eBm -bIJ -cGk -kJR +soj +hIW +jix +vQv +vAr +vAr +vAr +vAr +kMn +gOA +eot dob -hUj -hUj -hUj -sWN +cYN +cYN +cYN +qKA gWd -cGk +gOA sOJ sDG -fIP -hxC +iim +bfj gWd gWd gWd -pLf -lKE -wdQ +gYK +xlr +ryQ pyp pyp sNp @@ -24229,23 +24229,23 @@ xjY xjY xjY xjY -rpr +oiz rwj uZT uZT uZT -nLX -rja +aQd +rlO byl evZ -gcr +flc sTC byl -wRh -dlZ -jiw -lKJ -lKJ +txE +qhb +nNl +kGC +kGC "} (50,1,1) = {" ybY @@ -24265,8 +24265,8 @@ dxF dxF jnV hCh -atq -obI +bZU +uLt lbF jnV dxF @@ -24338,8 +24338,8 @@ bXl kIn bXl bXl -eyV -quY +pxz +cOP xYt via bEp @@ -24368,26 +24368,26 @@ cTz goT goT goT -eLi -eBm -eBm -eBm -eBm -eBm -eBm -eBm -eBm -bIJ -cGk -vdQ -vdQ -kJR +eAE +vAr +vAr +vAr +vAr +vAr +vAr +vAr +vAr +kMn +gOA +kCf +kCf +eot gWd gWd gWd -cGk -vdQ -kJR +gOA +kCf +eot pyp pyp pyp @@ -24400,19 +24400,19 @@ iHk aHW aHW aHW -ctJ -iZH -kYh +azm +ovw +bxG aHW evZ cvV evZ aHW -fou -ajX -ajX -ajX -ajX +eSa +jEw +jEw +jEw +jEw "} (51,1,1) = {" ybY @@ -24431,7 +24431,7 @@ dxF dxF dxF jnV -kwf +uHb pfe cWc mLe @@ -24505,7 +24505,7 @@ bXl sYd bXl bEp -oiB +aJQ dJs jvt bTa @@ -24544,28 +24544,28 @@ qzd qzd qzd fcB -eLi -eBm -eBm -bIJ +eAE +vAr +vAr +kMn gWd gWd gWd -wWf -eBm -eBm -eBm -kTy +fHb +vAr +vAr +vAr +hri ePx pBV -pDb +oed vdl xzY xzY xzY hdQ xHm -qxL +vqO aHW aHW rwj @@ -24598,10 +24598,10 @@ dxF dxF dxF jnV -eTB +fyn cWc jec -eeq +hZM hXt dxF dxF @@ -24672,9 +24672,9 @@ bXl kIn bEp bEp -ahN -qzw -wfw +xOS +dyn +xfK bEp bEp bEp @@ -24714,28 +24714,28 @@ iaj ubV ePx ePx -eLi -eBm -eBm -eBm -kVb +eAE +vAr +vAr +vAr +xVs ePx ePx nah xXI cTz pBV -qUx +fOu xzY oum hQj psz xVt xHm -qxL +vqO fRI hQj -dRT +okU xgV xHm iLF @@ -24765,8 +24765,8 @@ dxF dxF dxF jnV -eoy -gTp +pWt +rgR kwM mLe jnV @@ -24892,13 +24892,13 @@ qjz niT cTz pBV -qUx +fOu xzY hQj hQj hQj jrs -tEs +hqw dzD hQj hQj @@ -24934,7 +24934,7 @@ dxF jnV fto iPk -qNb +lrU nwz hXt dxF @@ -25059,18 +25059,18 @@ soe gCb cTz pBV -qUx +fOu oKA hQj hQj hQj dXC -caU +aXJ fRI hQj hQj hQj -waO +bcV fRI hQj hQj @@ -25232,12 +25232,12 @@ hQj hQj hQj mDl -dzB +eLf dzD hQj avX kbL -qxL +vqO hQj hQj akH @@ -25392,7 +25392,7 @@ cTz cTz ePx ePZ -gIq +vlZ ePZ xzY hQj @@ -25400,11 +25400,11 @@ hQj hQj waW xHm -qxL +vqO hQj hQj hQj -waO +bcV iLF hQj pnM @@ -25567,7 +25567,7 @@ hQj hQj uAh xHm -qxL +vqO hQj hQj hQj @@ -25744,7 +25744,7 @@ nHV iLF hQj pBV -ipC +fuJ dxF dxF dxF @@ -26060,15 +26060,15 @@ cTz cTz cTz ePZ -sDF +gHI ePZ -qxL +vqO yas szF -jtp +lsL yas szF -xEH +sSm xzY hQj xzY @@ -26229,10 +26229,10 @@ cTz pyp pyp pyp -sPB +fAY pFZ jKc -cjP +dBg pFZ jKc pyp @@ -26399,7 +26399,7 @@ pyp pyp pFZ jKc -uhi +cJz pFZ cKI pBV @@ -26517,11 +26517,11 @@ swl dNg bXl bXl -jtx +iRq oOs naK oOs -jtx +iRq prU ePx ePx @@ -26654,7 +26654,7 @@ sYd bXl sYd rfZ -pPp +tGN mDN wei wei @@ -26684,11 +26684,11 @@ bEp dNg bXl kIn -jtx +iRq trU uRm rID -jtx +iRq mXZ ePx ePx @@ -26815,7 +26815,7 @@ bXl sYd sYd sYd -okm +rgE gAu bXl bXl @@ -26851,11 +26851,11 @@ bEp dNg bXl sYd -jtx +iRq trU uRm gmS -jtx +iRq uRP cTz ePx @@ -26935,7 +26935,7 @@ dxF dxF dxF mjg -hGO +kgz dew mNa nKs @@ -26982,7 +26982,7 @@ sYd bXl bXl kIn -ebf +sml gAu sYd sYd @@ -27018,11 +27018,11 @@ dez eLO bXl kIn -jtx +iRq trU uRm rID -jtx +iRq pVd ePx ePx @@ -27039,10 +27039,10 @@ goT ePx ePx ePx -iig -mRH -mRH -mRH +lLZ +wZs +wZs +wZs xkb cTz ePx @@ -27185,11 +27185,11 @@ bXl sYd bXl bXl -jtx +iRq ymc uRm gmS -jtx +iRq mXZ ePx cTz @@ -27206,10 +27206,10 @@ gbv oPb oPb uBc -ruJ -jhK -wrB -eOU +fHH +hMa +gjr +pBA dWO ePx cTz @@ -27311,9 +27311,9 @@ bXl sYd sYd rfZ -kjS -okm -oRA +xrX +rgE +ghK vpq kIn bXl @@ -27352,11 +27352,11 @@ bXl bXl bXl bXl -jtx +iRq trU uRm rID -jtx +iRq pVd cTz hii @@ -27374,7 +27374,7 @@ oPb oPb uQC cOt -gXj +mZi rzc tax dWO @@ -27478,8 +27478,8 @@ bXl sYd pEJ rfZ -rTJ -ebf +aZV +sml una ujG bXl @@ -27519,11 +27519,11 @@ bXl bXl sYd bXl -jtx +iRq lrO -qlD +kMK lrO -jtx +iRq hqO ePx hii @@ -27540,10 +27540,10 @@ gbv oPb oPb oPb -oXg -sUr -wtM -sxR +vip +syV +inV +kCJ dWO ePx goT @@ -27645,7 +27645,7 @@ bXl bXl bXl rfZ -ebf +sml una ujG kIn @@ -27707,11 +27707,11 @@ goT ePx ePx fRu -vkt -oXg +kpC +vip pCj -njX -kTy +oyO +hri cTz cTz abG @@ -27875,9 +27875,9 @@ ePx rej cTz cTz -vkt -kwq -kTy +kpC +xgz +hri tIF ePx goT @@ -27910,7 +27910,7 @@ dxF dxF dxF lXN -aSV +ogZ lXN dxF dxF @@ -28359,11 +28359,11 @@ sYd raN raN dDj -nkU +kif fyD fyD fyD -nkU +kif dDj raN raN @@ -28463,9 +28463,9 @@ sYd sYd sYd pBi -iEX -kxQ -urJ +nlR +jNB +mGA mkO sYd pCS @@ -28526,11 +28526,11 @@ sYd raN raN dDj -nkU +kif uBO fyD uKx -nkU +kif dDj raN raN @@ -28630,9 +28630,9 @@ sYd sYd sYd pBi -flm +hoc qVg -liO +xPB ddH sYd pCS @@ -28653,8 +28653,8 @@ sYd xYs wix jFk -xPF -okm +vfw +rgE bEp bEp bEp @@ -28693,11 +28693,11 @@ bXl sYd ewL plf -fQj +joc fyD fyD fyD -nkU +kif plf goT goT @@ -28797,9 +28797,9 @@ sYd sYd sYd pBi -hat -fFu -xcS +hnw +jTt +xiZ ddH sYd pCS @@ -28818,9 +28818,9 @@ sYd sYd sYd rfZ -kjS -sLv -ebE +xrX +rYh +cUB bEp bEp bEp @@ -28860,11 +28860,11 @@ tKY knP wWq plf -nkU +kif cEd tiW fyD -nkU +kif plf xSn stj @@ -28985,7 +28985,7 @@ sYd sYd sYd rfZ -rTJ +aZV bEp bEp bEp @@ -29020,22 +29020,22 @@ grx bEp bEp bEp -oOW -wpy -wpy -wpy -hvp +iKv +lSD +lSD +lSD +urW sSr plf -nkU +kif fyD fyD fyD -nkU +kif ugU dDj -xfR -wpy +mUv +lSD xTq cTz ePx @@ -29186,13 +29186,13 @@ bEp bEp bEp bEp -oOW -btx -oSG -doX -doX -htR -ihQ +iKv +dGp +sge +rwz +rwz +otY +lAk xrx kqt kqt @@ -29352,10 +29352,10 @@ dic bEp bEp bEp -oOW -bGG -fuo -fGQ +iKv +tqf +utu +mEE ixP ixP ixP @@ -29365,11 +29365,11 @@ dAH roS vuo vuo -mqN -aay -wEX -vJZ -roF +xXQ +hqj +lgY +mQB +fHa bsb uiT ePx @@ -29459,9 +29459,9 @@ hrz hrz hrz sVF -oFC +ivH rzh -rbU +wCv kIn sYd qGa @@ -29512,16 +29512,16 @@ kIn sYd sYd bXl -oOW -wpy -wpy -wpy -wpy -wpy -wpy -btx -fuo -fGQ +iKv +lSD +lSD +lSD +lSD +lSD +lSD +dGp +utu +mEE ixP ixP ixP @@ -29532,12 +29532,12 @@ rCp bBS roS vuo -qeu -smg +wIU +jAN rCp sbX -woG -roF +wSr +fHa lpJ xTq ePx @@ -29626,15 +29626,15 @@ hrz hrz hrz sVF -oFC +ivH ggC -rbU +wCv bXl sYd pBi -iEX -kxQ -urJ +nlR +jNB +mGA ddH sYd sYd @@ -29647,18 +29647,18 @@ bEp nrk nrk jkR -oqu +fON uHP lkC uHP -mot +drk jkR bEp bEp bEp bEp bEp -jSd +pNC dic dic dic @@ -29678,36 +29678,36 @@ dic dic dic bXl -oOW -btx -oSG -doX -doX -doX -doX -doX -doX -fGQ +iKv +dGp +sge +rwz +rwz +rwz +rwz +rwz +rwz +mEE ixP ixP ixP ixP ixP dLR -wEX -tgm +lgY +xxu rYF vuo vuo -jYB +fJO ovG dwf xTq sbX -kFz +lvD bsb lpJ -wpy +lSD xTq ePx ePx @@ -29793,15 +29793,15 @@ hrz sVF sVF sVF -wMr +sob ggC -rbU +wCv bXl sYd pBi -flm +hoc qVg -liO +xPB ddH sYd pCS @@ -29826,41 +29826,41 @@ jkR bEp bEp tKY -oOW -wpy -wpy -wpy +iKv +lSD +lSD +lSD xTq tKY tKY -oOW -wpy -wpy -wpy -wpy -wpy -wpy -wpy -wpy -wpy -wpy -wpy -btx -oSG -fGQ +iKv +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +dGp +sge +mEE ixP ixP ixP ixP ixP ixP -jLv -hts -hts -hts -hts -oYV -nXA +jrX +ijO +ijO +ijO +ijO +tUh +ngW ndw sRb sRb @@ -29870,11 +29870,11 @@ sRb coU mDH fNo -wpy -btx -oSG -doX -dVp +lSD +dGp +sge +rwz +iUn uiT tKY tKY @@ -29960,15 +29960,15 @@ hrz hrz sVF sVF -oFC +ivH ggC -rbU +wCv sYd sYd pBi -hat -fFu -xcS +hnw +jTt +xiZ ddH sYd pCS @@ -29986,60 +29986,60 @@ iYo iYo iYo uHP -xre -fTX -cxH +dWE +wvL +kUd jkR gxK gxK oZK -bGG -oSG -doX -uoP +tqf +sge +rwz +eAw lpJ -wpy -wpy -btx -cfA -doX -doX -doX -doX -doX -doX -doX -doX -doX -doX -doX -fGQ +lSD +lSD +dGp +mNz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +mEE ixP -jLv -hts -hts -hts -hts -hts -eQN -obo -vJZ -vJZ -vJZ -mtE +jrX +ijO +ijO +ijO +ijO +ijO +dcl +muD +mQB +mQB +mQB +erg sSr plf -nkU +kif fyD fyD fyD -nkU +kif ugU dDj -maC +fYj bsb bsb -mHm +ygR ixP dib uiT @@ -30127,9 +30127,9 @@ hrz sVF sVF sVF -oFC +ivH pkP -rbU +wCv sYd sYd pvk @@ -30153,7 +30153,7 @@ iYo iYo jfs uHP -vID +moT gjK cBJ jkR @@ -30161,14 +30161,14 @@ gxK gxK fWy bsb -mHm +ygR ixP -gRe -doX -doX -doX -doX -fGQ +gIp +rwz +rwz +rwz +rwz +mEE ixP ixP ixP @@ -30176,37 +30176,37 @@ ixP ixP ixP ixP -jLv -hts -hts -hts -hts -hts -lMs -obo -vJZ -vJZ -vJZ -vJZ -vJZ -rzJ +jrX +ijO +ijO +ijO +ijO +ijO +awx +muD +mQB +mQB +mQB +mQB +mQB +lax tKY tKY tKY mtS eeP plf -nkU +kif fyD fyD fyD -nkU +kif plf erE -lJG -vJZ -roF -eCI +kmk +mQB +fHa +cWA hCc dib uiT @@ -30294,9 +30294,9 @@ hrz sVF sVF sVF -byJ +jaZ ggC -rbU +wCv sYd sYd bXl @@ -30320,37 +30320,37 @@ iYo iYo iYo uHP -gcf -diC -elk +mjm +xhG +xwv jkR gxK gxK gxK -roF -eCI -hts +fHa +cWA +ijO hCc ixP ixP ixP ixP -jLv -hts -hts -hts -hts -hts -hts -hts -eQN -obo -vJZ -vJZ -vJZ -hOS -vJZ -rzJ +jrX +ijO +ijO +ijO +ijO +ijO +ijO +ijO +dcl +muD +mQB +mQB +mQB +fSq +mQB +lax tKY tKY tKY @@ -30363,19 +30363,19 @@ qhw lHs mbS plf -nkU +kif cEd fyD fyD -nkU +kif plf mNM eTj eTj vYQ bsb -eCI -eQN +cWA +dcl lpJ xTq tKY @@ -30461,9 +30461,9 @@ hrz hrz hrz hrz -sWO +bNP ggC -rbU +wCv sYd sYd xgl @@ -30482,7 +30482,7 @@ jkR sSq uRA xKb -iRH +iej iYo iYo iYo @@ -30494,24 +30494,24 @@ jkR jkR jkR jkR -woG -vJZ -roF -eCI -hts -hts -hts -hts -eQN -obo -vJZ -vJZ -vJZ -vJZ -vJZ -vJZ -vJZ -rzJ +wSr +mQB +fHa +cWA +ijO +ijO +ijO +ijO +dcl +muD +mQB +mQB +mQB +mQB +mQB +mQB +mQB +lax dxF dxF dxF @@ -30527,19 +30527,19 @@ mbS fme dIQ vDS -uiU +jNS mbS plf -nkU +kif fyD uKx fyD -nkU +kif plf mNM eTj eTj -vlZ +dwa bsb bsb bsb @@ -30628,14 +30628,14 @@ hrz hrz hrz hrz -oFC +ivH ggC -rbU +wCv kIn bXl xgl -kYE -vYm +hgJ +pRe xgl oJV sYd @@ -30663,14 +30663,14 @@ uHP lZz dic tKY -woG -vJZ -vJZ -vJZ -vJZ -vJZ -vJZ -rzJ +wSr +mQB +mQB +mQB +mQB +mQB +mQB +lax dic tFH dic @@ -30697,18 +30697,18 @@ qgW jkJ lHs plf -drs +bTD fyD fyD fyD -nkU +kif dDj mNM eTj eTj eTj -vJZ -roF +mQB +fHa bsb bsb lpJ @@ -30795,9 +30795,9 @@ hrz hrz sVF hrz -oFC +ivH pkP -rbU +wCv kIn bXl xgl @@ -30816,7 +30816,7 @@ jkR xKb xKb sGs -cNz +hRV iYo iYo iYo @@ -30875,10 +30875,10 @@ mbS jlK sbX tKY -kFz -oSG -doX -uoP +lvD +sge +rwz +eAw uiT tKY tKY @@ -30977,11 +30977,11 @@ pCS pCS pCS pzG -cka +qUK wLp uHP uHP -nHn +oOe sSF rpB iYo @@ -31014,7 +31014,7 @@ eSP kct egZ qgW -dUw +nGh kit iUX oQz @@ -31024,7 +31024,7 @@ dIQ nAo vDS kDS -oPg +jrO vDS vDS vDS @@ -31042,8 +31042,8 @@ kbN tKY sbX tKY -kFz -mHm +lvD +ygR ixP dib lpJ @@ -31131,12 +31131,12 @@ iin dxF dxF kkH -xMx -lal -rwh +hYs +xtP +dET amu mqG -kUm +sAi oww soF aaN @@ -31191,7 +31191,7 @@ sYA kDS sYA kDS -eVw +kXQ vDS qgW nAo @@ -31199,8 +31199,8 @@ qgW nAo qgW vDS -tyW -rNG +kEt +ezJ uhV qhw nOG @@ -31209,11 +31209,11 @@ tKY sbX tKY dic -iOQ -mHm +eKL +ygR ixP -gRe -dFS +gIp +dUw uiT tKY rte @@ -31298,11 +31298,11 @@ dxF dxF dxF kkH -ghv +xYl rHQ lSe cwi -cYm +qvK rbu xgl xgl @@ -31324,8 +31324,8 @@ iYo uHP sGs xSX -eil -biE +jYY +iNa iYo uHP jkR @@ -31373,11 +31373,11 @@ qhw nOG nOG sbX -oOW -wpy -wpy -btx -mHm +iKv +lSD +lSD +dGp +ygR ixP ixP dib @@ -31465,11 +31465,11 @@ dxF dxF dxF kkH -ghv +xYl rHQ lSe tha -cYm +qvK gRi cbg xgl @@ -31490,7 +31490,7 @@ iYo iYo oUM sGs -uEK +jVi tKC cUh iYo @@ -31533,18 +31533,18 @@ rSg vDS vDS vDS -xkE +rAR kDS vDS lHs nOG nOG kbN -iOQ +eKL biK bsb bsb -eCI +cWA hCc ixP dib @@ -31636,7 +31636,7 @@ iWa dGx dGx kkH -ume +kFq gRi cbg bKl @@ -31645,7 +31645,7 @@ xgl kDs nDT pGv -sBO +xct eAS lTr ecA @@ -31657,7 +31657,7 @@ uHP ahD eRU sGs -fJr +lfX oVX cDf oVX @@ -31707,12 +31707,12 @@ mbS nCM nCM mbS -uGX +iCN uYx bsb bsb bsb -eCI +cWA hCc dib niC @@ -31799,23 +31799,23 @@ dxF dxF kkH coL -eNh -lYU -xmb +mun +ewC +kIX kkH -lcX -ivL +bKe +nsk cbg mqG -kUm +sAi xgl oww xgl -iYB +kBN pSK -iYB +kBN pSK -iYB +kBN fIm yjI yjI @@ -31824,7 +31824,7 @@ gwY gwY gwY gwY -huo +bnn ghk sVy oVX @@ -31874,15 +31874,15 @@ vDS vDS vDS lHs -jtH +bxX hYS qog kZm qog bsb -mHm -gRe -uoP +ygR +gIp +eAw lpJ xTq vea @@ -31966,21 +31966,21 @@ dxF dxF kkH tpk -cYm +qvK ltU gRi phz nps ksF cbg -cYm +qvK gRi gOc eoA bhH pSK -avM -eMg +bTe +iZr etu pSK ldM @@ -31988,10 +31988,10 @@ usP usP pGY lCu -qcR -dNS +uwL +jsL gwY -fJr +lfX oVX cDf oVX @@ -32014,7 +32014,7 @@ eXm eXm eXm tpN -wpY +jnI kDS aRh mGE @@ -32044,13 +32044,13 @@ mNM xvn mNM xms -nKp -nKp +qQq +qQq nOH -nrL +xom ixP -gRe -uoP +gIp +eAw lpJ xTq vea @@ -32132,15 +32132,15 @@ dxF dxF mxB kkH -uHq -jvD -iFo -aHJ +bIa +uRz +iaR +bIT kkH -fKk +gVV mCf cbg -cYm +qvK gRi acn pue @@ -32158,7 +32158,7 @@ lCu uWu cwy gwY -huo +bnn ghk sVy oVX @@ -32167,8 +32167,8 @@ xZd jEo snr uIg -kVN -oGs +mBu +fxi uIg htP wff @@ -32177,10 +32177,10 @@ fpO nnf aqO xOU -gpn -xJL +iSY +tNJ nvd -emn +nRA kDS oQz juO @@ -32208,17 +32208,17 @@ cAt scY wnw lry -fLN +ilS jiz cqX fyD fyD -epr -nVz +aDA +uwq ixP ixP -gRe -uoP +gIp +eAw uiT tKY vea @@ -32307,7 +32307,7 @@ xgl xgl xgl ipz -eUB +eiK gRi acn dlT @@ -32325,7 +32325,7 @@ lCu oVX oVX gwY -fJr +lfX oVX cDf oVX @@ -32347,7 +32347,7 @@ bWc vDS vDS cWL -tBB +ghz vES jCL bcO @@ -32374,14 +32374,14 @@ cAt cAt lfm gEe -nkU +kif fyD -nkU +kif cqX fyD fyD -epr -nrL +aDA +xom ixP ixP ixP @@ -32467,23 +32467,23 @@ mxB mxB wYp quy -rRD +cdG ujo pYf pYf -dFq +bcr oww soP -rrx -bDY +ibl +bAE qKm cnv kqA -iYB +kBN xwu -iYB +kBN tZc -iYB +kBN fIm yjI yjI @@ -32492,7 +32492,7 @@ gwY cDl oVX lcs -huo +bnn ghk sVy oVX @@ -32514,7 +32514,7 @@ gBI cPt qgW nvd -sOc +vpP aYr kiN juO @@ -32542,13 +32542,13 @@ lfm kDS cOh amL -nKp -nkU +qQq +kif cqX fyD fyD -epr -nVz +aDA +uwq ixP ixP ixP @@ -32634,8 +32634,8 @@ mxB gZq crT quy -rRD -liC +cdG +hpH uri ahz onP @@ -32647,21 +32647,21 @@ cbg cbg nux bng -fkw -mSH +ceT +fxP frj -kJp +hnG nRE yjI yjI aHl tCK oVX -msp +aeC gwY -fsI -joM -qTH +fSP +hOj +lSA oVX oVX oVX @@ -32689,9 +32689,9 @@ lHs ulo ulo lHs -oxS -ddz -qQI +rvi +hRe +aYH qPO vDS vDS @@ -32714,8 +32714,8 @@ xvn mNM pKE fyD -epr -nrL +aDA +xom ixP ixP ixP @@ -32798,14 +32798,14 @@ dxF dxF mxB mxB -tLj -qRN +uxk +flD kNx hTn -tLj -qRN -qRN -qRN +uxk +flD +flD +flD oww gUa cbg @@ -32814,8 +32814,8 @@ nZw rhK rhK cbg -tXo -mSH +tLh +fxP tdZ kwJ aHl @@ -32835,8 +32835,8 @@ oVX snr lxd uIg -kVN -xuZ +mBu +beN uIg bjj fpO @@ -32845,8 +32845,8 @@ nnf piA slb kZt -xhA -teZ +vyK +hAB nvd avf rvK @@ -32854,14 +32854,14 @@ nzP qgW lHs pSs -lNL +vKF lHs -ddz -teZ -teZ +hRe +hAB +hAB sgW nCM -tyg +xIJ nCM utY kah @@ -32872,21 +32872,21 @@ jpl cBq sVx lHs -wvO +cxR gYr lHs tEa tEa tEa lHs -gxH +ojS fyD -epr -nVz +aDA +uwq ixP ixP -jLv -eQN +jrX +dcl uiT tKY cDx @@ -32982,8 +32982,8 @@ cMv rhK cbg mwV -mSH -whv +fxP +jQU gnP aHl yjI @@ -32994,7 +32994,7 @@ oVX jzl jzl wXV -xZl +nDX jzl oag oVX @@ -33029,12 +33029,12 @@ lHs rYS tZI qgW -teZ +hAB lHs kDS -jEb +wIT mbS -ega +wXT bds qGA mbS @@ -33046,15 +33046,15 @@ fGk wct bPV lHs -flb +bKN fyD -epr -nrL +aDA +xom ixP ixP dib -obo -rzJ +muD +lax tKY cDx vea @@ -33132,14 +33132,14 @@ dxF dxF mxB mxB -cjI -jYT +mmy +pVD dzm cGz -jYT -jYT -jYT -rnt +pVD +pVD +pVD +ebC xgl aqC cbg @@ -33148,8 +33148,8 @@ mAH cMv rhK cbg -aZE -mSH +moD +fxP vSW gnP aHl @@ -33159,29 +33159,29 @@ aHl lCu oVX jzl -xOH +ukv rxX -gep +pen cXP snr oVX oVX cfa lcs -xOX -xOX -xOX -xOX +lGc +lGc +lGc +lGc lcs wff wff wff wff lHs -wnM -wnM -wnM -wnM +pYZ +pYZ +pYZ +pYZ lHs kDS kDS @@ -33196,15 +33196,15 @@ xOV qHH cAt qgW -teZ +hAB tRp kDS kDS tRp -hOV -tyg -tyg -gXM +qtb +xIJ +xIJ +gAy tRp pSs pLS @@ -33213,10 +33213,10 @@ brL kDS mdu mbS -ujR +qVF fyD -epr -nVz +aDA +uwq ixP ixP dib @@ -33302,8 +33302,8 @@ mxB bGV fRP diV -rRD -hMs +cdG +lEu ujo pYf jUP @@ -33327,7 +33327,7 @@ lCu oVX jzl jzl -fRc +oNv uTj abS snr @@ -33335,20 +33335,20 @@ oVX oVX cfa lcs -xOX +lGc jzl jzl -xOX +lGc lcs nnf wff wff wff lHs -wnM +pYZ eXm eXm -wnM +pYZ lHs kDS kDS @@ -33363,15 +33363,15 @@ sef abz cAt qgW -teZ +hAB tRp kDS kDS tRp -hOV -tyg -tyg -hOV +qtb +xIJ +xIJ +qtb tRp pSs pSs @@ -33380,13 +33380,13 @@ kDS nOG nOG klN -epr +aDA fyD -epr -nrL -jLv -hts -eQN +aDA +xom +jrX +ijO +dcl uiT tKY tKY @@ -33469,9 +33469,9 @@ mxB mxB wYp uIQ -rRD +cdG wYp -liC +hpH crT jUP kvt @@ -33494,7 +33494,7 @@ lCu oVX jzl jzl -rJJ +dsM cDf dvL snr @@ -33502,20 +33502,20 @@ oVX oVX cfa lcs -xOX +lGc jzl jzl -xOX +lGc lcs nnf wff wff wff lHs -wnM +pYZ eXm eXm -wnM +pYZ lHs bGX kDS @@ -33523,14 +33523,14 @@ qgW uLa sef qgW -rDo +odG cht vPE vgX cTW rKl qgW -teZ +hAB lHs kDS alh @@ -33547,14 +33547,14 @@ bDl wwd nOG rUi -epr +aDA vjr -rwN -nVz +vrR +uwq dib -obo -vJZ -rzJ +muD +mQB +lax tKY tKY xJg @@ -33635,8 +33635,8 @@ dxF mxB mxB mxB -mOp -rRD +sDN +cdG wYp bGV wYp @@ -33661,28 +33661,28 @@ gwY bRJ tCK xFl -kbw -sIn +cbP +ful gMw snr oVX oVX -suu +fGG lcs -xOX -xOX -xOX -xOX +lGc +lGc +lGc +lGc lcs nnf nnf nnf wff lHs -wnM -wnM -wnM -wnM +pYZ +pYZ +pYZ +pYZ lHs vDS vDS @@ -33695,9 +33695,9 @@ arU jJj vdH mbS -tEm +mpE qgW -teZ +hAB lHs kDS tTs @@ -33714,11 +33714,11 @@ cFY nOG nOG rUi -epr +aDA fyD -mCi -ngG -eQN +lSM +lzD +dcl uiT sbX aQw @@ -33863,7 +33863,7 @@ rxb kqY lHs mcZ -tyg +xIJ nCM mbS kah @@ -33881,12 +33881,12 @@ nOG nOG nOG dcA -epr +aDA fyD -epr +aDA dTM -obo -rzJ +muD +lax dic dic tKY @@ -33978,14 +33978,14 @@ dxF dxF kGU pVt -rvB -iZL +iQf +oEC kGU iHO iHO iHO jhb -mSH +fxP tRG pDs yjI @@ -33993,7 +33993,7 @@ yjI aHl vQJ pSU -flu +jjI pSU kkB siR @@ -34004,8 +34004,8 @@ oVX snr xqM ePV -kVN -oGs +mBu +fxi ePV iCl wff @@ -34014,8 +34014,8 @@ wff wff rUm lLC -gpn -teZ +iSY +hAB tqC eOD qgr @@ -34034,8 +34034,8 @@ grX vDS dxc vDS -ibM -hZR +cJh +vyI vDS vDS vDS @@ -34048,9 +34048,9 @@ kDS kDS mdu mbS -ujR +qVF fyD -epr +aDA qog uiT dic @@ -34144,7 +34144,7 @@ dxF dxF dxF kGU -pZg +wVf rlB ryB nsd @@ -34208,19 +34208,19 @@ kDS kDS kDS kDS -eIo +eoY vDS pNi kDS kDS kDS mwh -gxH +ojS fyD -epr +aDA dTM lpJ -wpy +lSD xTq tKY dic @@ -34311,7 +34311,7 @@ dxF dxF dxF kGU -iIu +gWM rlB ryB nsd @@ -34359,9 +34359,9 @@ cAt cAt vDS nsU -teZ -teZ -teZ +hAB +hAB +hAB nsU vDS kDS @@ -34382,12 +34382,12 @@ tEa tEa tEa mwh -flb +bKN fyD -epr -akN -doX -uoP +aDA +weT +rwz +eAw uiT tKY tKY @@ -34478,7 +34478,7 @@ dxF dxF dxF kGU -pZg +wVf rlB ryB nsd @@ -34525,11 +34525,11 @@ piW piW mYt vDS -bfM +rxt qgW qgW qgW -bfM +rxt vDS kDS kDS @@ -34549,10 +34549,10 @@ xvn dJT mNM mNM -epr +aDA fyD -epr -nVz +aDA +uwq ixP dib lpJ @@ -34645,23 +34645,23 @@ dxF dxF dxF kGU -qrU +gJy rlB jPW kGU kOD wzC -qIs +tDC jhb ayB nDH -tZS +vdG cWX -mMP -pAb +aWk +sND dLY pSU -jDH +rhd pSU snr snr @@ -34672,8 +34672,8 @@ snr oVX snr ePV -kVN -kVN +mBu +mBu ePV bjj fpO @@ -34682,8 +34682,8 @@ wff fpO goZ kpz -gkr -teZ +iOf +hAB tqC mbp vDS @@ -34693,9 +34693,9 @@ qMC vDS vDS nCM -teZ -teZ -teZ +hAB +hAB +hAB mgP vDS vDS @@ -34712,17 +34712,17 @@ vDS vDS gqQ vys -nKp -vxg +qQq +hBf mNM qrl nOH fyD -epr -nrL +aDA +xom ixP -gRe -uoP +gIp +eAw lpJ xTq tKY @@ -34812,14 +34812,14 @@ dxF dxF dxF kGU -eXU +acj rlB ryB iqE uzq gld nrD -mSH +fxP jhb jhb jhb @@ -34862,35 +34862,35 @@ yir yir yir dbg -ksj +rhQ wtH dbg jnS dbg wtH nCM -qId -txP -qId -qId -qId +iSO +dgw +iSO +iSO +iSO nCM kDS kDS scY -nkU +kif fiE fyD jiz cqX fyD fyD -epr -nVz +aDA +uwq ixP ixP -gRe -uoP +gIp +eAw uiT tKY vea @@ -34979,7 +34979,7 @@ dxF dxF dxF kGU -mKS +dHD rlB ryB iqE @@ -34996,11 +34996,11 @@ nAc sUo gUQ gUQ -nyX +nEy gwY ann -utk -sxc +wnX +tny vFg snr cey @@ -35015,7 +35015,7 @@ wff fpO fpO lHs -fTY +wwG riI nCt eXm @@ -35029,31 +35029,31 @@ yir xkk yir xkk -aHS +tqO pjF -aHS +tqO vHL vHL dbg -hOV +qtb gKG sVx bzl sVx gKG -hOV +qtb bPV cAt iub fyD fyD fyD -nkU +kif cqX fyD fyD -epr -nrL +aDA +xom ixP ixP ixP @@ -35146,9 +35146,9 @@ qaI dxF dxF kGU -jIg -cFn -mef +jCD +sQC +uRa iqE smo nAc @@ -35165,11 +35165,11 @@ vzC gld msK gwY -foA +cUe pOI gLg jzl -cXp +vHP oVX snr tCK @@ -35182,7 +35182,7 @@ wff wff fpO lHs -pCk +acJ nLC jGX tRp @@ -35197,30 +35197,30 @@ xkk yir xkk xkk -vBC +hqA njQ -vBC +hqA xkk jnS -hOV +qtb bzl sVx olO sVx bzl -kIE +siJ kDS qgr kDS kut -nKp +qQq fyD -nkU +kif cqX fyD fyD -epr -nVz +aDA +uwq ixP ixP ixP @@ -35317,7 +35317,7 @@ gXF gXF gXF uYi -qiM +mhq gld gld msK @@ -35332,9 +35332,9 @@ nuA gld msK gwY -sqK -pqG -eCe +cXv +mnI +nKP vFg snr oVX @@ -35363,19 +35363,19 @@ yir xkk yir xkk -aHS +tqO vHL -aHS +tqO vHL -aHS +tqO jnS -hOV +qtb olO sVx gKG sVx olO -hOV +qtb kDS cAt kDS @@ -35386,8 +35386,8 @@ sqP cqX fyD fyD -epr -nrL +aDA +xom ixP ixP ixP @@ -35532,33 +35532,33 @@ kHm ubR ubR oQc -tNr +wKk vHL -aHS +tqO dbg -dZK +dsV gKG sVx bzl sVx gKG -kIe +sIE wCe kDS kDS nOH -dod -gad +pUF +gUF mNM juH -nKp -nKp +qQq +qQq nOH -nVz +uwq ixP ixP -jLv -eQN +jrX +dcl uiT vea xJg @@ -35699,11 +35699,11 @@ kHm jSi jSi oQc -tNr +wKk vHL -aHS +tqO mbS -jEy +fsH bzl sVx gKG @@ -35720,13 +35720,13 @@ mNM wuy mSd dTM -oSG -fGQ +sge +mEE ixP -jLv -eQN -obo -rzJ +jrX +dcl +muD +lax vea xJg cDx @@ -35881,18 +35881,18 @@ nKh nKh nKh wtH -uxs +kgC mtS -xxd +aBb dTM bsb bsb -mHm +ygR ixP -jLv -eQN -obo -rzJ +jrX +dcl +muD +lax tKY xJg xJg @@ -36022,19 +36022,19 @@ xWK xWK jhx ubR -ylp +hmk ubR eSH -gvD -gvD -gvD -gvD -gvD -gvD -gvD -krV +rtq +rtq +rtq +rtq +rtq +rtq +rtq +qQD kHm -jda +iZm nKh nKh vHL @@ -36050,15 +36050,15 @@ nKh wtH dic dic -kFz +lvD xzd bsb bsb -mHm +ygR ixP rzE -obo -rzJ +muD +lax tKY dic cDx @@ -36152,14 +36152,14 @@ tAX eIZ oUP eiz -jFC -hvr -ipk -aRI +bIX +vCY +aEy +vTO mYM vHf -xtg -kjf +lEw +vzo heL msK msK @@ -36169,14 +36169,14 @@ msK gwY gwY ktq -luo -ojo -cLJ -cLJ -cLJ -jvj -cLJ -xBQ +pZb +niI +gof +gof +gof +jvf +gof +yhP gUS ktq giZ @@ -36189,9 +36189,9 @@ xWK xWK xWK ubR -ylp +hmk ubR -gFx +eSs rQY rQY rQY @@ -36201,7 +36201,7 @@ rQY rQY epR kHm -onz +dnq nKh nKh nKh @@ -36217,13 +36217,13 @@ nKh ftF dic tKY -woG -roF +wSr +fHa bsb bsb -eCI -hts -eQN +cWA +ijO +dcl uiT tKY dic @@ -36318,13 +36318,13 @@ tAX mCL tAX aLQ -fcN +qAF xrF xrF xrF sCG mYM -kuH +oIx xNf vEw heL @@ -36336,7 +36336,7 @@ msK uAz hXP ktq -qbs +dfc slF slF slF @@ -36344,7 +36344,7 @@ slF slF slF slF -xEE +rtn kOo nYz wdc @@ -36358,19 +36358,19 @@ xWK dip dip dip -wcD +nDv rQY -qKp -sEu -fQO -sEu -fqs +xlQ +laM +hFj +laM +eqP rQY tFe oQc wtH mJq -lil +iSL xkk qRq xkk @@ -36385,7 +36385,7 @@ ftF tKY dic knP -qOC +ljt cMJ cMJ cMJ @@ -36485,13 +36485,13 @@ eTT kKc eTT oUP -fcN +qAF qIi gew gew sCG twn -fcN +qAF xNf wAF uEi @@ -36503,7 +36503,7 @@ msK uAz dHF rES -xOc +iMy slF slF slF @@ -36511,7 +36511,7 @@ slF slF slF slF -xEE +rtn kOo nYz wdc @@ -36525,16 +36525,16 @@ tDV dip dip lah -gFx +eSs rQY rkO dip -hlR +xuy dip -wcD +nDv rxr -hPh -vtw +khw +rsY dip wtH wtH @@ -36553,11 +36553,11 @@ wCU wCU wCU wCU -utE -utE -utE -utE -utE +elE +elE +elE +elE +elE wCU wCU dxF @@ -36652,13 +36652,13 @@ mtt wuL juz oUP -fcN -faJ +qAF +iZU wAo gew sCG twn -fcN +qAF xNf rEo smo @@ -36671,14 +36671,14 @@ uAz bUI rES aAg -cLJ -cLJ -rzD -peC +gof +gof +vnv +gzg nAy nAy nAy -mhC +bXN ktq ngX nnx @@ -36690,15 +36690,15 @@ xWK xWK toV phv -gvD -gvD -wGw +rtq +rtq +hHs rQY epR ubR -ylp +hmk ubR -gFx +eSs rQY rQY gQF @@ -36706,12 +36706,12 @@ dip wtH wtH tIz -kjs +xfa nKh xkk xkk nKh -hEo +tyK tIz wtH wtH @@ -36720,11 +36720,11 @@ wCU wCU wCU wCU -axv -axv -axv -axv -axv +clm +clm +clm +clm +clm wCU wCU dxF @@ -36819,13 +36819,13 @@ rqD xNf xNf kFF -fcN +qAF xrF xrF xrF sCG mYM -iei +fzO xNf kxE heL @@ -36841,7 +36841,7 @@ slF slF slF rES -jCQ +otI nAy nAy qpR @@ -36863,9 +36863,9 @@ rQY rQY epR ubR -ylp +hmk ubR -gFx +eSs rQY rQY xyw @@ -36873,12 +36873,12 @@ dip wCU wCU hMu -wSh +qdM nbu jKN jKN nbu -rHz +fIb hMu wCU wCU @@ -36887,11 +36887,11 @@ wCU wCU wCU wCU -gPY -gPY -gPY -gPY -gPY +xUh +xUh +xUh +xUh +xUh wCU wCU dxF @@ -36986,15 +36986,15 @@ era xNf rGm oUP -foz -qWc -qWc -qWc -ifq +qzz +aHB +aHB +aHB +rta mYM -rtP -qWc -eGu +gqI +aHB +uAl heL msK gld @@ -37032,10 +37032,10 @@ tFe dip dip dip -wcD +nDv rxr -qKp -gAh +xlQ +jgr dip wCU wCU @@ -37053,13 +37053,13 @@ wCU wCU wCU wCU -uQQ -crI -crI -crI -crI -crI -tMk +vBi +aIO +aIO +aIO +aIO +aIO +aSq wCU dxF dxF @@ -37191,21 +37191,21 @@ xWK bKH qYn bpT -fQO -fQO -fqs +hFj +hFj +eqP rQY -hPh -ieS -oiK -ieS -wGw +khw +wTL +tzM +wTL +hHs rQY tFe oQc hMu gEl -chT +pCy mxT rRl jKN @@ -37219,14 +37219,14 @@ jKN jKN rRl mCd -axv -vTy -hpm -hpm +clm +bjJ +dyS +dyS wCU -hpm -hpm -lYj +dyS +dyS +uxZ wCU dxF dxF @@ -37316,18 +37316,18 @@ fyF lxc wAp oUP -oyO +gOk fyF fyF alo cPv -xtg -xtg -xtg -ycr -xtg -wtb -kdC +lEw +lEw +lEw +vfF +lEw +ubB +drP mYM heL nAc @@ -37338,9 +37338,9 @@ msK nAc nAc kni -ujA -ujA -ujA +whT +whT +whT sIr gBa xWK @@ -37360,7 +37360,7 @@ tDV dip dip dnR -gFx +eSs rQY rQY rQY @@ -37370,7 +37370,7 @@ rQY rQY epR kHm -sQu +jxv nbu nbu nbu @@ -37384,16 +37384,16 @@ nbu nbu ctG opz -tFU +tJu jyq -axv -vTy -hpm +clm +bjJ +dyS wCU wCU wCU -hpm -lYj +dyS +uxZ wCU dxF dxF @@ -37487,7 +37487,7 @@ sBh fyF wLt alo -fcN +qAF hkq dKO euj @@ -37527,40 +37527,40 @@ xWK ubR aPA lah -pUP -fQO -fQO -fQO -fQO -fQO -fQO -fQO -efw +xHi +hFj +hFj +hFj +hFj +hFj +hFj +hFj +gbl kHm -wcE +bnr kAW nbu nbu nbu nbu nbu -gQZ -gQZ -gQZ -gQZ +tSQ +tSQ +tSQ +tSQ nbu ctG uIJ iNF jyq -axv -vTy -hpm -hpm +clm +bjJ +dyS +dyS wCU -hpm -hpm -lYj +dyS +dyS +uxZ wCU dxF dxF @@ -37654,16 +37654,16 @@ cWo iNt nSP qPc -fcN +qAF euj -tgZ -vaG +uET +aiN soQ jpS euj kEG qaI -jhI +gsk heL msK msK @@ -37706,28 +37706,28 @@ dip dip hMu hMu -xHk -xHk -xHk +sdu +sdu +sdu hMu hMu fQn fWl fQn dkE -nFb +euk nbu nbu nbu jKN -axv -vTy -hpm -hpm -hpm -hpm -hpm -lYj +clm +bjJ +dyS +dyS +dyS +dyS +dyS +uxZ wCU dxF dxF @@ -37821,7 +37821,7 @@ mDm mDm mDm qaI -hUt +yiX euj euj euj @@ -37866,9 +37866,9 @@ lah lah lah dip -sfP -sfP -sfP +oXF +oXF +oXF dip gQr hMu @@ -37882,19 +37882,19 @@ dnF fAT rIL uBG -nFb +euk nbu nbu nbu jKN wCU -qJG -roy -hpm -hpm -hpm -wfq -uLc +tGf +tGQ +dyS +dyS +dyS +pOh +bZS wCU dxF dxF @@ -37988,7 +37988,7 @@ fyF fyF lxc kFF -wYo +jFr euj fMd ssj @@ -38006,9 +38006,9 @@ msK msK msK kni -ujA -ujA -ujA +whT +whT +whT kni bKH bKH @@ -38049,18 +38049,18 @@ rIL cyM rIL fWl -nFb +euk nbu eBH nbu hYE wCU wCU -vTy -hpm +bjJ +dyS wCU -hpm -lYj +dyS +uxZ wCU wCU dxF @@ -38155,8 +38155,8 @@ wAp fyF fyF qaI -vNE -iRK +glU +uMu euj bKm vMf @@ -38164,7 +38164,7 @@ vMf euj txH qaI -jhI +gsk iTK msK hDE @@ -38187,7 +38187,7 @@ xWK bKH xWK xWK -xPU +nHa xWK jhx bKH @@ -38197,7 +38197,7 @@ dip szC lNG lah -nhQ +qvl dip dip rIL @@ -38216,18 +38216,18 @@ rIL rIL rIL fQn -nFb +euk nbu nbu nbu jKN jKN -axv -vTy +clm +bjJ wCU wCU wCU -lYj +uxZ wCU dxF dxF @@ -38323,8 +38323,8 @@ ouW ouW qaI qaI -mSl -spa +nxb +gyt euj vQg vQg @@ -38383,18 +38383,18 @@ iGz dnF rIL rMp -nFb +euk nbu nbu hXh jKN jKN -axv -vTy -hpm +clm +bjJ +dyS wCU -hpm -lYj +dyS +uxZ wCU dxF dxF @@ -38491,14 +38491,14 @@ hUk hUk qaI qaI -xDy -kQa -bYy -bYy -eNU -wYY +lMy +qbp +aPe +aPe +cHW +lTN mYM -jhI +gsk lbu nsi gld @@ -38556,12 +38556,12 @@ nbu nbu aHC jKN -axv -vTy -hpm -hpm -hpm -lYj +clm +bjJ +dyS +dyS +dyS +uxZ wCU dxF dxF @@ -38719,16 +38719,16 @@ jhS jhS hMu hMu -gQZ -cln +tSQ +ciS hMu hMu wCU -qJG -roy -hpm -wfq -fks +tGf +tGQ +dyS +pOh +lyW wCU dxF dxF @@ -38830,16 +38830,16 @@ bbW bbW bbW oMZ -gJa -wsA -iuw +nXq +ndj +nAj oMZ -ixv -mGk +bap +rBn fyT ibc fyT -mmk +adj nRY lPR bKH @@ -38864,37 +38864,37 @@ rIL rIL fAT dnF -mFp +mKs rIL rIL rIL mMf jhS -jcf -xbj -rGC +bCT +cqB +nyC jhS jhS -jcf -xbj -rGC +bCT +cqB +nyC jhS jhS -jcf -xbj -rGC +bCT +cqB +nyC jhS htT smF oNK dkE dkE -cmZ +tKz wCU wCU -qJG -qiy -fks +tGf +hgT +lyW wCU wCU dxF @@ -38997,16 +38997,16 @@ cSz oUh nFM cgJ -lXj +eCv oMw agG nFM vFc -qHN +sfV fyT ibc fyT -mmk +adj lpD hPf xWK @@ -39035,23 +39035,23 @@ mMf rIL cXL rIL -dSl +iOa jhS -fyM -dlZ -mlg +bRE +qhb +cCo jhS jhS -fyM -dlZ -mlg +bRE +qhb +cCo jhS jhS -fyM -dlZ -mlg +bRE +qhb +cCo jhS -dtV +otO dkE tfx dkE @@ -39163,17 +39163,17 @@ bPf iVD iVD okh -lHV +wUi wDT lly agG nFM ylf -pWQ +sQh fyT ibc fyT -mmk +adj kSH feY fyF @@ -39204,26 +39204,26 @@ rIL mMf hMu jhS -kcW -oTf -waK +jXz +uQK +qHc jhS jhS -kcW -oTf -waK +jXz +uQK +qHc jhS jhS -kcW -oTf -waK +jXz +uQK +qHc jhS htT bdu dkE ugQ fjX -qJe +frW wCU wCU dxF @@ -39327,20 +39327,20 @@ hUk bbW oUh edn -pSd +jrS gUZ oMZ -pSq -nNa -vPb -qTO +jck +rpl +apA +iJM oMZ -ixv -mGk +bap +rBn fyT ibc fyT -mmk +adj kSH qaI bzj @@ -39368,7 +39368,7 @@ rdm hMu cXL rIL -qbK +wQV hMu jhS kVJ @@ -39531,26 +39531,26 @@ jhx rfE rdm rdm -wuX -ssC -wuX -wuX -wuX -cqi -dlz -tgK -wuX -dDH -cqi -lTp -tgK -wuX -dDH -cqi -lTp -tgK -wuX -uUo +gSk +feJ +gSk +gSk +gSk +lFe +dAz +tix +gSk +psA +lFe +lFH +tix +gSk +psA +lFe +lFH +tix +gSk +cbH nTw rzT aRS @@ -39677,9 +39677,9 @@ jEN dQD lPR lPR -mvL -iFY -kBT +dgI +oIR +vZh lPR lPR xrv @@ -39698,27 +39698,27 @@ jhx rfE rdm rdm -oOm -oOq +iXL +kEB mLw mLw mLw -wuX -wQT +gSk +kgm aoJ tnx vDR -euG -bIU +bSd +pJx aoJ tnx vDR -wuX -bIU +gSk +pJx aoJ tnx slP -ceL +vPh rUM exD wcl @@ -39843,11 +39843,11 @@ bKH bKH bKH hPf -jVV -iFY +kOX +oIR lPR -iFY -jVV +oIR +kOX hPf cHb fyF @@ -39867,24 +39867,24 @@ rdm rdm qpi evr -ccN -wuX -wuX +mTR +gSk +gSk evr unr -wuX -wuX -kaX +gSk +gSk +whL evr evr -wuX -wuX -wuX +gSk +gSk +gSk vXK evr -wuX -wuX -wuX +gSk +gSk +gSk qGx qGx qGx @@ -40010,11 +40010,11 @@ xWK jhx xWK hPf -iFY +oIR lPR lPR lPR -iFY +oIR hPf fyF lxc @@ -40032,26 +40032,26 @@ bKH tFK okv rIn -vJz -nNo -rYC -nNo -rYC -pOe -pYN -rYC -wdu -rYC -nNo -nNo -rYC -nNo -rYC -nNo -nNo -rYC -nNo -rYC +izF +mfe +wzP +mfe +wzP +wQg +ulO +wzP +rWq +wzP +mfe +mfe +wzP +mfe +wzP +mfe +mfe +wzP +mfe +wzP qGx qGx qGx @@ -40177,11 +40177,11 @@ xWK bKH xWK hPf -lxy -iFY +esU +oIR lPR -iFY -lxy +oIR +esU hPf cUm cUm @@ -40197,24 +40197,24 @@ bKH bKH bKH tFK -wuX +gSk hBt -vJz -nNo -rYC -nNo -vkz -nNo -nNo -rYC -nNo -rYC -nNo -nNo -rYC -nNo -vkz -nNo +izF +mfe +wzP +mfe +iLI +mfe +mfe +wzP +mfe +wzP +mfe +mfe +wzP +mfe +iLI +mfe qGx qGx qGx @@ -40345,9 +40345,9 @@ xWK xWK lPR lPR -mvL -iFY -kBT +dgI +oIR +vZh lPR lPR cUm @@ -40384,8 +40384,8 @@ qGx qGx duw mLw -xbz -xbz +lNi +lNi mLw mLw cpg @@ -40533,23 +40533,23 @@ bKH xoM mLw hBt -xbz -xbz -xbz -xbz -xbz +lNi +lNi +lNi +lNi +lNi mLw -xbz -xbz -xbz -xbz -xbz -rvW -xbz -xbz -xbz -xbz -xbz +lNi +lNi +lNi +lNi +lNi +wxC +lNi +lNi +lNi +lNi +lNi mLw qGx qGx @@ -40705,7 +40705,7 @@ qGx qGx qGx pXF -wIx +kvY atQ qGx qGx @@ -40717,9 +40717,9 @@ qGx qGx qGx mEe -wIx +kvY qGx -nNo +mfe qGx qGx rHE @@ -40865,28 +40865,28 @@ wAp xWK bKH xoM -wuX +gSk hBt -vJz -nNo -vJz -nNo +izF +mfe +izF +mfe qGx -wIx +kvY qGx -nNo -gfS -nKl -dIZ -ksE -xLF -ooQ -iJE -dPi +mfe +dcQ +hku +ihW +uIs +jNi +hGj +mgO +aws qGx -wIx +kvY qGx -bxK +hjV qGx acD vSE @@ -41034,26 +41034,26 @@ bKH xoM okv rIn -tVW -wNb -kzz -kQt +nIW +ltA +iKl +mlb tQO xGF ocd -cbH -qkd +kRk +sHP uhM mcv mcv mcv grR -gHq -bxK +cle +hjV qGx -wIx +kvY qGx -iar +gEG rdm rdm rdm @@ -41171,8 +41171,8 @@ hUk hUk hUk hUk -vdB -tmf +tbb +ssR xWK xWK bKH @@ -41201,26 +41201,26 @@ feg rfE rdm rdm -aGK -iWm -aGK +bPt +tju +bPt mvB beo mLw lyG mvB -vcd +amw mcv ouR ouR byw mcv -hVe -dIZ +jfk +ihW eFf -wIx +kvY qGx -sws +pTJ rdm rdm rdm @@ -41339,7 +41339,7 @@ hUk hUk fQx xWK -tmf +ssR xWK xWK xWK @@ -41368,9 +41368,9 @@ feg rdm rdm rdm -emS -nNo -nNo +gXJ +mfe +mfe mmH mLw mLw @@ -41385,9 +41385,9 @@ grR mcv grR jeO -wIx +kvY qGx -bXg +jys rdm rdm rdm @@ -41506,7 +41506,7 @@ hUk hUk sMg hGP -skO +kkT sUs dCP hGP @@ -41525,19 +41525,19 @@ oNG oNG oNG qaI -iTW +xSp fyF fyF -qjM +pJm qaI feg feg rdm rdm rdm -gnJ -nNo -nNo +qlu +mfe +mfe qGx mLw mLw @@ -41552,9 +41552,9 @@ xay tTi mcv eaB -wIx +kvY qGx -bxK +hjV duu okv duu @@ -41673,7 +41673,7 @@ hUk hUk fQx dYB -uEW +ese nbR wKr dYB @@ -41685,7 +41685,7 @@ feg feg qaI vSH -jeI +rDm loO oUP oUP @@ -41702,15 +41702,15 @@ feg rdm rdm rdm -koe -nNo -koe +ozO +mfe +ozO qGx mLw mLw mLw qGx -dNY +mEX mcv xay xay @@ -41719,11 +41719,11 @@ xay tTi mcv eaB -wIx +kvY qGx -nNo +mfe tXK -wuX +gSk tXK mMH qOP @@ -41739,9 +41739,9 @@ bpj bpj bpj bpj -xWx -pTB -sLe +fwD +sTb +jpR dxF dxF dxF @@ -41840,7 +41840,7 @@ hUk hUk fQx dYB -uEW +ese nbR wKr dYB @@ -41851,12 +41851,12 @@ feg feg feg qaI -ssH +jOD euj sBk -kpi +qUp pih -kpi +qUp cUm fyF fyF @@ -41869,9 +41869,9 @@ feg rdm rdm rdm -nNo -nNo -nNo +mfe +mfe +mfe qGx mLw bIW @@ -41886,7 +41886,7 @@ gdb tTi mcv eaB -wIx +kvY qGx qGx tXK @@ -41906,10 +41906,10 @@ bpj bpj bpj bpj -pTB -pTB -pTB -pTB +sTb +sTb +sTb +sTb dxF dxF dxF @@ -42018,12 +42018,12 @@ feg feg feg qaI -ssH +jOD euj sBk -kpi +qUp pih -sOP +dKP wSU fyF cUm @@ -42036,9 +42036,9 @@ feg rdm rdm rdm -gnJ -nNo -nNo +qlu +mfe +mfe qGx wVt bIW @@ -42054,8 +42054,8 @@ mcv grR jeO mLw -xbz -xbz +lNi +lNi tXK mLw tXK @@ -42073,12 +42073,12 @@ oXH bpj bpj bpj -pTB -pTB -pTB -pTB -edE -edE +sTb +sTb +sTb +sTb +qmS +qmS dxF dxF dxF @@ -42156,9 +42156,9 @@ bkR bkR bkR kgt -noG -sVI -oke +jft +mTQ +djO kSB bkR hUk @@ -42174,7 +42174,7 @@ hUk uiK uiK mnT -uEW +ese mnT uiK nlv @@ -42186,7 +42186,7 @@ xMm feg qaI wSU -bEJ +kDQ hrR qaI qaI @@ -42203,24 +42203,24 @@ feg rdm rdm rdm -koe -nNo -koe +ozO +mfe +ozO qGx gce bIW mLw qGx -dNY +mEX mcv ige wdt oYQ mcv -vwH -iWm +iRk +tju eFZ -wIx +kvY qGx qGx duu @@ -42240,13 +42240,13 @@ bpj bpj bpj bpj -pTB -pTB -pTB -xWx -pTB -pTB -edE +sTb +sTb +sTb +fwD +sTb +sTb +qmS dxF dxF dxF @@ -42323,9 +42323,9 @@ bkR bkR bkR kgt -sYc +bmn cCa -sDO +frb kSB bkR hUk @@ -42384,14 +42384,14 @@ mcv mcv mcv grR -diA -nNo +typ +mfe qGx -wIx +kvY qGx -nNo +mfe tXK -wuX +gSk tXK mMH mMH @@ -42408,14 +42408,14 @@ bpj bpj bpj dxF -pTB -pTB -pTB -pTB -pTB -pTB -pTB -edE +sTb +sTb +sTb +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -42490,9 +42490,9 @@ bkR bkR bkR tdT -vRh -sec -ebg +tAs +liz +jkG kSB bkR hUk @@ -42520,7 +42520,7 @@ hwf hwf kFF ubm -jeI +rDm haK qaI feg @@ -42554,9 +42554,9 @@ bsw eFZ qGx qGx -wIx +kvY qGx -bxK +hjV tXK okv duu @@ -42577,13 +42577,13 @@ dxF dxF dxF dxF -sLe -pTB -mMc -xWx -pTB -pTB -sLe +jpR +sTb +gRv +fwD +sTb +sTb +jpR dxF dxF dxF @@ -42686,7 +42686,7 @@ oUP uOk oUP oUP -ssH +jOD euj sBk qaI @@ -42714,16 +42714,16 @@ uSr bIW iPV oMS -xbz -xbz +lNi +lNi mLw -xbz -xbz -xbz -xbz +lNi +lNi +lNi +lNi mLw qGx -nNo +mfe rdm rdm rdm @@ -42745,14 +42745,14 @@ dxF dxF dxF dxF -pTB -pTB -pTB -pTB -pTB -pTB -pTB -edE +sTb +sTb +sTb +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -42846,18 +42846,18 @@ mnT mnT uiK pih -fmc +pFG bsm bsm pJt euj oUP azb -ssH +jOD euj -cor -jeI -bru +pRE +rDm +rDg ubm pih mbR @@ -42883,14 +42883,14 @@ fcJ eoc qGx qGx -wIx +kvY qGx qGx qGx qGx qGx qGx -mMK +qaT pKn rdm rdm @@ -42912,15 +42912,15 @@ dxF dxF dxF dxF -edE -pTB -pTB -pTB -pTB -pTB -pTB -pTB -pTB +qmS +sTb +sTb +sTb +sTb +sTb +sTb +sTb +sTb dxF dxF dxF @@ -43020,7 +43020,7 @@ euj euj oUP azb -ssH +jOD euj euj epQ @@ -43047,17 +43047,17 @@ qGx qGx qGx qIV -sFF -vJz +yft +izF qGx -wIx +kvY qGx -vJz -nNo -vJz -nNo -vJz -aCx +izF +mfe +izF +mfe +izF +bvg rdm rdm rdm @@ -43080,15 +43080,15 @@ dxF dxF dxF dxF -edE -pTB -pTB -xWx -pTB -pTB -pTB -pTB -edE +qmS +sTb +sTb +fwD +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -43187,11 +43187,11 @@ pih pih oUP oUP -ghx -bEJ -bEJ -bEJ -bEJ +wLf +kDQ +kDQ +kDQ +kDQ fyF pih lxc @@ -43213,18 +43213,18 @@ htv nPf nPf nPf -srI -qPj -vJz +iVZ +swE +izF qGx -wIx +kvY qGx -vJz -nNo -vJz -pEf -rqA -fWW +izF +mfe +izF +umY +tCF +nmT rdm rdm rdm @@ -43248,14 +43248,14 @@ dxF dxF dxF dxF -pTB -pTB -pTB -pTB -pTB -xWx -xWx -pTB +sTb +sTb +sTb +sTb +sTb +fwD +fwD +sTb dxF dxF dxF @@ -43365,7 +43365,7 @@ vMk vMk oUP eCB -jeI +rDm iuL oUP feg @@ -43377,9 +43377,9 @@ poF poF poF poF -wgX -rxO -xPJ +cmW +qjt +hhl rdm vEz vEz @@ -43417,13 +43417,13 @@ dxF dxF dxF dxF -edE -pTB -pTB -pTB -mMc -pTB -edE +qmS +sTb +sTb +sTb +gRv +sTb +qmS dxF dxF dxF @@ -43531,7 +43531,7 @@ oUP mnT mnT oUP -nQT +fWw euj oSK oUP @@ -43544,16 +43544,16 @@ poF ovv poF poF -lCG -lBW -dya +wNV +vmh +vjA rdm hwO -rYC +wzP qGx mLw qGx -rYC +wzP auj rdm rdm @@ -43586,12 +43586,12 @@ dxF dxF dxF dxF -hBs -pTB -pTB -pTB -pTB -edE +fHZ +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -43698,7 +43698,7 @@ dYB uiK mnT dYB -alM +uFI fbZ rHL dYB @@ -43754,12 +43754,12 @@ dxF dxF dxF dxF -edE -pTB -xWx -pTB -pTB -edE +qmS +sTb +fwD +sTb +sTb +qmS dxF dxF dxF @@ -43843,9 +43843,9 @@ mnT mnT mnT iHw -dWz -gLQ -ffT +yfT +sXM +cja bJc mnT mnT @@ -43866,7 +43866,7 @@ uiK uiK mnT kjk -bfF +uWm kjk dYB nlv @@ -43921,12 +43921,12 @@ dxF dxF dxF dxF -edE -pTB -xWx -xWx -pTB -pTB +qmS +sTb +fwD +fwD +sTb +sTb dxF dxF dxF @@ -44010,9 +44010,9 @@ mnT uiK mnT nlT -gSl +kIv nXr -pid +gjt bJc mnT mnT @@ -44089,15 +44089,15 @@ dxF dxF dxF dxF -pTB -iBJ -cCD -ucI -cCD -pTB -pTB -pTB -rgD +sTb +jHO +vco +rVI +vco +sTb +sTb +sTb +moW dxF dxF dxF @@ -44177,9 +44177,9 @@ uiK uiK mnT iHw -pHT -uqA -qSz +gCS +vKs +gOV jIt fLE mnT @@ -44257,16 +44257,16 @@ dxF dxF dxF dxF -pTB -pGe -pTB -hSL -pTB -xWx -jRx -pTB -pTB -pTB +sTb +cBa +sTb +btR +sTb +fwD +upe +sTb +sTb +sTb dxF dxF dxF @@ -44348,39 +44348,39 @@ aFL aFL meF jkT -qfd -bed -bed +foA +jAj +jAj mnT mnT uiK mnT dYB -bed -bed -bed -bed -bed -bed -bed -bed -bed -bed -bed +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj mnT -bed -bed +jAj +jAj mnT mnT mnT mnT uiK mnT -bed -bed -bed -bed -lZD +jAj +jAj +jAj +jAj +mko oXH mMH bpj @@ -44424,17 +44424,17 @@ dxF dxF dxF dxF -kyJ -pTB -pTB -pTB -mMc -pTB -pTB -pTB -pTB -bCo -lgd +wlm +sTb +sTb +sTb +gRv +sTb +sTb +sTb +sTb +irT +wag dxF dxF dxF @@ -44514,7 +44514,7 @@ erv aFL aFL dCG -mTt +fpF rky rmt rmt @@ -44590,19 +44590,19 @@ dxF dxF dxF dxF -pTB -xWx -pTB -pTB -edE -edE -sny -edE -kkP -xWx -mHd -mMc -sLe +sTb +fwD +sTb +sTb +qmS +qmS +acF +qmS +hID +fwD +bBO +gRv +jpR dxF dxF dxF @@ -44682,28 +44682,28 @@ aFL aFL aFL jkT -qeN -xCK -xCK -xCK +kGA +kmv +kmv +kmv mnT uiK mnT dYB -xCK -xCK -xCK -xCK -xCK -xCK -xCK -xCK -xCK -xCK -xCK -xCK -xCK -xCK +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv mnT mnT uiK @@ -44711,9 +44711,9 @@ mnT mnT mnT mnT -xCK -xCK -xCK +kmv +kmv +kmv bpj bpj bpj @@ -44756,21 +44756,21 @@ dxF dxF dxF dxF -sLe -pTB -pTB -pTB -edE -icq -vFx -vFx -vFx -sXP -gHW -hSL -aEQ -pTB -xcz +jpR +sTb +sTb +sTb +qmS +msA +oNX +oNX +oNX +bPx +gqX +btR +nVw +sTb +hWy dxF dxF dxF @@ -44845,9 +44845,9 @@ mnT mnT mnT pof -dWz -gLQ -ffT +yfT +sXM +cja rMZ cMC dYB @@ -44895,7 +44895,7 @@ wXd wXd wXd wXd -soM +jrp bpj npL bpj @@ -44923,21 +44923,21 @@ dxF dxF dxF dxF -pTB -xWx -pTB -edE -icq -arj -emY -iuo -iFG -efm -pVS -ucI -rJS -tbn -rJS +sTb +fwD +sTb +qmS +msA +uSo +muQ +gpk +qZN +wGk +bZX +rVI +kcj +dHb +kcj dxF dxF dxF @@ -45012,9 +45012,9 @@ mnT mnT mnT nlT -gSl +kIv nXr -pid +gjt bJc uiK mnT @@ -45090,21 +45090,21 @@ dxF dxF dxF dxF -vCY -mMc -edE -icq -arj -eJD -hyh -lkE -jRS -sis -gIx -edE -pTB -sDk -pUJ +wRG +gRv +qmS +msA +uSo +ofA +ewc +fuR +mVe +loD +neH +qmS +sTb +fhD +bwx dxF dxF dxF @@ -45179,9 +45179,9 @@ nlv uiK uiK iHw -pHT -uqA -qSz +gCS +vKs +gOV bJc mnT uiK @@ -45256,23 +45256,23 @@ dxF dxF dxF dxF -mRS -pPa -xWx -edE -dpL -eJD -hyh -lkE -lkE -kSS -iFG -fCl -edE -pTB -lxL -mRS -pDW +eLQ +jpL +fwD +qmS +uRt +ofA +ewc +fuR +fuR +waO +qZN +aIl +qmS +sTb +xoE +eLQ +jkU dxF dxF dxF @@ -45423,23 +45423,23 @@ dxF dxF dxF dxF -mRS -pPa -pTB -edE -iFm -scT -lkE -lkE -lkE -lkE -jRS -aCi -edE -kyJ -lxL -mRS -mRS +eLQ +jpL +sTb +qmS +rip +pNq +fuR +fuR +fuR +fuR +mVe +sBD +qmS +wlm +xoE +eLQ +eLQ dxF dxF dxF @@ -45590,23 +45590,23 @@ dxF dxF dxF dxF -oqZ -dZk -pTB -edE -iFm -scT -lkE -lkE -lkE -lkE -jRS -fCl -edE -pTB -lxL -mRS -mRS +tTA +mhy +sTb +qmS +rip +pNq +fuR +fuR +fuR +fuR +mVe +aIl +qmS +sTb +xoE +eLQ +eLQ dxF dxF dxF @@ -45757,23 +45757,23 @@ dxF dxF dxF dxF -pTB -pTB -pTB -edE -iFm -izr -jiC -lkE -lkE -vhy -knj -fCl -edE -pTB -rcE -pDW -mRS +sTb +sTb +sTb +qmS +rip +kwN +eqN +fuR +fuR +gZx +eyS +aIl +qmS +sTb +cvn +jkU +eLQ dxF dxF dxF @@ -45924,22 +45924,22 @@ dxF dxF dxF dxF -lgd -xWx -pTB -edE -ycF -rRw -kLM -bLB -bLB -pSg -rdW +wag +fwD +sTb +qmS nQQ -edE -jRx -pTB -rcE +gUN +eqS +dqc +dqc +iIt +lBN +kmQ +qmS +upe +sTb +cvn dxF dxF dxF @@ -46092,21 +46092,21 @@ dxF dxF dxF dxF -pTB -pTB -pTB -edE -ycF -bpB -bpB -hWz -bpB +sTb +sTb +sTb +qmS nQQ -edE -pTB -pTB -pTB -pTB +qoM +qoM +msD +qoM +kmQ +qmS +sTb +sTb +sTb +sTb dxF dxF dxF @@ -46259,21 +46259,21 @@ dxF dxF dxF dxF -pTB -pTB -pTB -mMc -edE -edE -edE -edE -edE -edE -pTB -xWx -pTB -pTB -xWx +sTb +sTb +sTb +gRv +qmS +qmS +qmS +qmS +qmS +qmS +sTb +fwD +sTb +sTb +fwD dxF dxF dxF @@ -46424,22 +46424,22 @@ dxF dxF dxF dxF -edE -edE -uJh -pTB -pTB -xWx -pTB -jRx -pTB -pTB -pTB -pTB -pTB -mMc -pTB -sLe +qmS +qmS +suD +sTb +sTb +fwD +sTb +upe +sTb +sTb +sTb +sTb +sTb +gRv +sTb +jpR dxF dxF dxF @@ -46590,22 +46590,22 @@ dxF dxF dxF dxF -hBs -edE -xWx -pTB -ucI -pTB -kyJ -pTB -pTB -pTB -sDk -pUJ -pUJ -vCY -xWx -lgd +fHZ +qmS +fwD +sTb +rVI +sTb +wlm +sTb +sTb +sTb +fhD +bwx +bwx +wRG +fwD +wag dxF dxF dxF @@ -46756,22 +46756,22 @@ dxF dxF dxF dxF -edE -pTB -pTB -pTB -pTB -uJh -pTB -pTB -pTB -pTB -xWx -lxL -pDW -mRS -pPa -pTB +qmS +sTb +sTb +sTb +sTb +suD +sTb +sTb +sTb +sTb +fwD +xoE +jkU +eLQ +jpL +sTb dxF dxF dxF @@ -46818,7 +46818,7 @@ bkR bkR bkR wTt -sEN +lbw hUk hUk hUk @@ -46922,21 +46922,21 @@ dxF dxF dxF dxF -edE -pTB -mMc -pTB -pTB -edE -edE +qmS +sTb +gRv +sTb +sTb +qmS +qmS dxF dxF dxF dxF -pTB -lxL -mRS -tRn +sTb +xoE +eLQ +aRY dxF dxF dxF @@ -47088,12 +47088,12 @@ bpj mMH dxF dxF -pTB -pTB -xWx -pTB -edE -edE +sTb +sTb +fwD +sTb +qmS +qmS dxF dxF dxF @@ -47256,10 +47256,10 @@ bpj mMH bpj bpj -pTB -pTB -pTB -edE +sTb +sTb +sTb +qmS dxF dxF dxF @@ -47423,9 +47423,9 @@ oXH bpj bpj bpj -xWx -pTB -edE +fwD +sTb +qmS dxF dxF dxF @@ -47590,8 +47590,8 @@ bpj bpj bpj bpj -pTB -pTB +sTb +sTb dxF dxF dxF @@ -48254,7 +48254,7 @@ dxF dxF dxF dxF -vzJ +rSR bpj bpj bpj @@ -48422,10 +48422,10 @@ dxF dxF dxF dxF -xhs -pzE -uXy -pzE +pFm +kQS +mxx +kQS dxF dxF dxF @@ -52398,7 +52398,7 @@ ptY ebB ebB bOc -rmj +ooI dxF dxF dxF diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 430e6b1b8e..e3861bc28e 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -1,23 +1,26 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 +"aah" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"aaP" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"aai" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"aaQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/fitness) +"aaB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"aaJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"aaK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "aaX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -25,17 +28,16 @@ "abo" = ( /turf/closed/wall/strata_outpost, /area/lv522/oob) -"abq" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) "abt" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"abF" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"abz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "abL" = ( /obj/structure/platform{ dir = 1 @@ -52,6 +54,24 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) +"abW" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + layer = 4.11; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"aca" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"aco" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) "acp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -64,17 +84,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"acF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) -"acG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) "acJ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -85,17 +94,17 @@ }, /turf/open/gm/river, /area/lv522/oob) -"acV" = ( -/obj/structure/surface/table/almayer, -/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_y = 14 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"acW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"acX" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ada" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "adk" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -117,19 +126,7 @@ /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) "adr" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "5" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"adu" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"adw" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "adI" = ( @@ -160,69 +157,37 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bridge) -"aei" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"aeo" = ( -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"aeJ" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "West_Lock"; - name = "remote door-control"; - pixel_x = -9; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "East_Lock"; - name = "remote door-control"; - pixel_x = 10; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Containers_west_LV522"; - name = "remote door-control"; - pixel_x = 1; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "West LZ Storage"; - name = "West LZ Storage control"; - pixel_x = -9; - pixel_y = 5 +"aen" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison/floor_plate, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) -"aeK" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) -"aeV" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"aeZ" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/east_reactor/south) -"afm" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"aer" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Cargo Airlock" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"afo" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"aeY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) }, -/turf/open/floor/corsat/brown/east, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) +"afa" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "afp" = ( /obj/structure/platform, /turf/open/gm/river, @@ -241,16 +206,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"afG" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) +"afy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "afI" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -21; @@ -263,10 +223,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"afJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "afL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -275,23 +231,10 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"afM" = ( -/obj/effect/decal/cleanable/dirt, +"agb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"agp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"agr" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor) -"agt" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) "agu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -299,38 +242,48 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"agG" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"agK" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/n_rockies) -"agQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"ahn" = ( -/obj/item/trash/barcardine, -/obj/item/tool/weldingtool, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"ahC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"ahL" = ( +"agv" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/donut{ + pixel_y = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"ahd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"ahi" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 8; - pixel_y = 5 + req_one_access_txt = "100" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"ahl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"aho" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob) +"ahy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "ahP" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) @@ -355,25 +308,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"ail" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "4" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ain" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/vehicle/train/cargo/engine, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 16; - pixel_y = 6 +"aiq" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "aiw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -382,27 +322,31 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"aiz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "aiB" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"aiL" = ( +/obj/structure/barricade/deployable, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/telecomms/server{ - pixel_x = 16; - pixel_y = 16 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"aiJ" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - pixel_x = -2; - pixel_y = -6; - stat = 2 +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"aiN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "aiO" = ( /obj/structure/window_frame/corsat, /turf/open/floor/corsat, @@ -414,17 +358,44 @@ "aiQ" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/central_streets) -"aje" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"aiY" = ( +/obj/structure/bed/roller, +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ajJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"ajc" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) +"ajf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"ajj" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/south_east_street) +"ajn" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "71" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ajE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "ajM" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -434,52 +405,37 @@ }, /turf/closed/wall/strata_outpost, /area/lv522/oob) -"ajW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"ajO" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"ajZ" = ( +/obj/structure/machinery/computer/arcade, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"ajX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"akb" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/obj/effect/decal/cleanable/cobweb2, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"akc" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/lv522/indoors/b_block/bar) +"akd" = ( +/obj/structure/prop/almayer/computers/sensor_computer2{ + density = 0; + pixel_y = 16 }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_east_street) -"akg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/kitchen/damage) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ake" = ( +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "akh" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) +"akj" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_1) "akl" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -490,63 +446,94 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"aks" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/command_centre) -"akw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +"akq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"akG" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"akK" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "akM" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"akO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"akS" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" +"akQ" = ( +/obj/item/tool/wet_sign{ + pixel_x = -11; + pixel_y = 21 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) +/obj/effect/decal/cleanable/vomit, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "akV" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"akZ" = ( +"alg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/machinery/microwave{ + pixel_y = 18 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"aln" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel"; + pixel_y = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"alq" = ( +/obj/structure/girder, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"als" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/crossbow, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"alv" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"alw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = -37; + pixel_y = 17 + }, +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/hallway) "alx" = ( /obj/structure/platform{ dir = 1 }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) -"alC" = ( -/obj/effect/decal/cleanable/dirt, +"alD" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = 2 + }, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) +/area/lv522/outdoors/colony_streets/north_east_street) "alI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/oob) @@ -555,64 +542,30 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "aml" = ( +/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"amp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"amu" = ( +/obj/item/clothing/shoes/veteran/pmc{ + name = "steel toe boots" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"ams" = ( -/obj/item/stack/rods{ - pixel_y = -2 - }, -/obj/structure/machinery/disposal{ - density = 0; - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/tool/mop{ - pixel_x = 13; - pixel_y = 25 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"amv" = ( -/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"amz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Control" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"amD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"amE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +"amH" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "amI" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"amJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "amP" = ( /obj/structure/machinery/light{ dir = 8 @@ -622,16 +575,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"amR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"amX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) "amY" = ( /obj/structure/cargo_container/horizontal/blue/top, /obj/structure/flora/pottedplant{ @@ -644,24 +587,32 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"anc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"anf" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"anj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "ann" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"anp" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"anr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"ant" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +"anq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) "anv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/cranberry{ @@ -673,18 +624,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"anA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "anG" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/outdoor_bot) -"anL" = ( +"anJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "anM" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an M30 Autocannon and a high-capacity drum magazine. This one's IFF system has been fried via acid damage, and it will open fire on any targets within range."; @@ -694,6 +642,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"anP" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"anU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/north_command_centre) +"aoc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "aoi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -701,19 +666,36 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "aoj" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"aok" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_2"; + name = "treadmill" }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - layer = 4.3; - pixel_y = 13 +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_2"; + name = "treadmill switch"; + pixel_x = -9; + pixel_y = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"aoF" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"aol" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"aoC" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) +"aoQ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) "ape" = ( /obj/structure/bed/chair{ dir = 4 @@ -721,79 +703,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"apg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"api" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) "apC" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/bed/chair/comfy{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"apE" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "apS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"apT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"aqi" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"aql" = ( -/obj/item/tool/surgery/WYautopsy, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) "aqs" = ( -/obj/structure/largecrate/random, -/obj/structure/largecrate/random{ - pixel_y = 16 +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"aqx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) -"aqD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"aqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "aqH" = ( /obj/structure/prop/vehicles/crawler{ @@ -802,78 +739,82 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"aqM" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"aqR" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"aqZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"arc" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/misc/flares{ - pixel_x = -7; - pixel_y = 16 - }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"arj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, +/turf/open/gm/river, /area/lv522/landing_zone_1/tunnel/far) +"aqS" = ( +/obj/structure/machinery/autolathe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"ari" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) "arq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/burger, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"ary" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"arT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +"arz" = ( +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"arJ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) "arV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"asa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "asc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"asl" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "asn" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/w_rockies) +"asw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"asx" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) "asz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) +"asE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) "asF" = ( /obj/structure/platform_decoration{ dir = 4 @@ -894,98 +835,144 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"atd" = ( -/obj/structure/platform{ +"asJ" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"asR" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"asU" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"asX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"atq" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical/glass) "atu" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"atY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/west_reactor) -"aup" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/garage) -"aux" = ( -/obj/structure/pipes/vents/pump, +/area/lv522/outdoors/colony_streets/east_central_street) +"atN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/west_reactor) +"atQ" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/area/lv522/indoors/a_block/kitchen/damage) +"aud" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "auG" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/nw_rockies) -"auM" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"auI" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + layer = 3.1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"auJ" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"auX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" +/area/lv522/indoors/a_block/kitchen/glass) +"auW" = ( +/obj/structure/tunnel{ + pixel_x = 2; + pixel_y = -6 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"avs" = ( -/obj/structure/largecrate/random/barrel/green, +/area/lv522/atmos/west_reactor) +"auX" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/toy/dice, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"avU" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"avd" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"awi" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"avG" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold/small_stack, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/area/lv522/indoors/c_block/mining) +"avN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"avS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"avX" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "awj" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"awq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"awr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/almayer/w_y0/north, /area/lv522/atmos/way_in_command_centre) -"awx" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "17" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "awI" = ( /obj/item/explosive/plastic/breaching_charge{ unacidable = 1 @@ -999,295 +986,268 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) "awN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"axb" = ( /obj/structure/stairs/perspective{ - dir = 1; + dir = 10; icon_state = "p_stair_full" }, -/turf/open/gm/river, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"axd" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"axo" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/medical, +"awO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"axf" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) +/area/lv522/indoors/a_block/admin) +"axi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"axv" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "axD" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"axF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +"axG" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "axN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"axQ" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph." - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) -"ayb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Northlock" +"axX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_entry_2" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"ayf" = ( -/obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"ayk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"ayl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"ayA" = ( -/obj/structure/pipes/vents/pump, -/obj/vehicle/powerloader, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"ayJ" = ( +/area/lv522/atmos/way_in_command_centre) +"ayi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"azl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"ayu" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob) +"ayx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"azo" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"azz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"ayy" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"ayQ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"ayU" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"ayV" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"ayW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"azp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"azz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "azE" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"azJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) "azK" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"azV" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"aAk" = ( +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = 5 + }, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/structure/reagent_dispensers/beerkeg{ + layer = 3.1; + pixel_x = -3; + pixel_y = 12 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"aAs" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"aAz" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "aAI" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"aAJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel) -"aAK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) "aAN" = ( /obj/structure/cargo_container/wy/mid{ health = 5000 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"aAO" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1"; - layer = 5.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) -"aBc" = ( -/obj/structure/barricade/handrail{ +"aBd" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"aBj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"aBp" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"aBA" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) -"aBe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"aBf" = ( -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"aBt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"aBw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"aBy" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"aBz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"aBJ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "89" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/area/lv522/outdoors/colony_streets/north_east_street) "aBU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/landing_zone_1) "aBY" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"aCg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"aCt" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"aCD" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"aCG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"aCZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"aCW" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) "aDh" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"aDo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"aDp" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "aDs" = ( /obj/item/explosive/mine/active{ dir = 8 }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"aDD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"aDF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"aDP" = ( -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"aEh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"aEn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"aEo" = ( -/obj/structure/window_frame/strata, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"aEv" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"aDH" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"aDT" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "aEF" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -1296,55 +1256,80 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"aFp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"aFB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"aFI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -11; - pixel_y = 10 +"aEX" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"aFJ" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"aFm" = ( +/obj/structure/girder/displaced, /turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"aFL" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/obj/structure/machinery/light{ - dir = 4 +/area/lv522/outdoors/w_rockies) +"aFy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/east_reactor/east) "aFN" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"aFQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"aFR" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"aFV" = ( +/obj/item/clothing/head/helmet/marine/grenadier{ + armor_bullet = 10; + desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; + name = "\improper damaged M3-G4 grenadier helmet"; + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"aGs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = 23; + pixel_y = 21 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"aGz" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"aGa" = ( -/obj/structure/dispenser, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"aGC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "aGE" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/buritto, @@ -1353,11 +1338,20 @@ /obj/item/trash/pistachios, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"aGG" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"aGN" = ( +/obj/structure/machinery/light/double, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"aGP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "aGQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, @@ -1372,16 +1366,21 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"aGU" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"aHp" = ( -/obj/structure/machinery/light{ - dir = 4 +"aGZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"aHd" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"aHh" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "aHH" = ( /obj/structure/platform{ dir = 1 @@ -1391,25 +1390,11 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"aHT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_x = -7 +"aHX" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "63" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/area/lv522/landing_zone_forecon/UD6_Tornado) "aIf" = ( /obj/structure/machinery/light{ dir = 1 @@ -1421,235 +1406,193 @@ /obj/item/weapon/gun/rifle/l42a, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"aIi" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Quartermaster" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"aIj" = ( -/obj/structure/machinery/optable, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/outdoors/w_rockies) -"aIm" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" +"aIn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/engi{ + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "aIp" = ( /turf/open/floor/plating, /area/shuttle/drop2/lv522) +"aIq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "aIr" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/lv522/indoors/c_block/mining) -"aID" = ( +"aIt" = ( +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_y = 15 + }, +/obj/structure/machinery/washing_machine{ + density = 0; + layer = 3.5; + pixel_y = 29 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"aIP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"aIU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/trash/liquidfood, -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -5; - pixel_y = 3 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"aIX" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway/damage) -"aIF" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"aJl" = ( /obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/flask/marine, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"aIG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"aIL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"aJm" = ( /obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"aJx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 11 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"aJz" = ( +/obj/structure/safe{ + spawnkey = 0 }, -/obj/item/tool/kitchen/knife{ - pixel_x = -11 +/obj/item/storage/fancy/cigar, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/m_gift, +/obj/item/coin/diamond, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"aJR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"aKd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/reagent_container/food/snacks/superbiteburger{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/darkpurplefull2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"aKN" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) -"aIU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Reactor Control"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"aJh" = ( -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"aJl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel/far) -"aJs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"aJE" = ( -/obj/structure/platform, +"aKX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"aKc" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"aKd" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"aLI" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) -"aKl" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) -"aKm" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - pixel_x = 5; - registered_name = "John Forklift" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"aKA" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"aKH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"aKW" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"aLg" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"aLt" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"aLF" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) "aLJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"aLP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Human Resources Office" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "aLQ" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"aLV" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"aLZ" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"aMi" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"aLW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"aMo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Kitchen"; + pixel_y = -6 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"aMr" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "aMu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"aMx" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"aME" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"aMy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"aMJ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"aMM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"aNj" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"aNq" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +"aNf" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/north_command_centre) +"aNl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bridge) "aNr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -1661,20 +1604,10 @@ /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"aNx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Showeroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"aNJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) +"aNM" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "aOi" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/item/lightstick/red/spoke/planted{ @@ -1683,70 +1616,59 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "aOj" = ( -/obj/item/prop/alien/hugger, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Bar & Grill"; - pixel_x = -16 +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 12 }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"aOr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrownfull2, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"aOq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aOM" = ( +/obj/structure/machinery/light/double, +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, /area/lv522/indoors/c_block/mining) -"aOG" = ( +"aOZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre{ - pixel_x = -12; - pixel_y = 7 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"aOQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"aOY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"aPc" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"aPd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "aPe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"aPh" = ( +"aPC" = ( +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"aPF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) -"aPy" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) "aPN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ @@ -1757,37 +1679,64 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"aPQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"aQP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - layer = 3.2; - name = "Television set"; - network = null; - pixel_x = -3; - pixel_y = 6 - }, +"aQa" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"aRn" = ( -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"aRF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer{ - pixel_y = 9 +"aQi" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/obj/structure/machinery/light{ +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"aQq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"aQu" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"aQA" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"aQC" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"aQW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"aRG" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "aRH" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1795,64 +1744,37 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"aRL" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "aRN" = ( /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"aRQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"aRS" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/wood_broken, -/area/lv522/indoors/b_block/bar) -"aSb" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"aSe" = ( -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"aSj" = ( +"aRZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"aSz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/northeast, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) "aSE" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"aSW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "aSZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"aTd" = ( -/obj/structure/window_frame/strata, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) "aTj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1865,6 +1787,20 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"aTq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"aTs" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/window/reinforced{ + dir = 4; + health = 80; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "aTw" = ( /obj/structure/bed/chair, /turf/open/floor/plating/plating_catwalk/prison, @@ -1875,60 +1811,75 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"aTG" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +"aTI" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"aTO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"aTM" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/structure/bed/roller, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "aTP" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"aUi" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"aUs" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +"aUg" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "aUw" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"aUy" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/brown, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"aUE" = ( +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) +"aUF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"aUR" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "aVa" = ( /obj/structure/platform{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"aVe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/colony/canister{ - pixel_y = 14 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) "aVg" = ( /obj/structure/platform/strata, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) +"aVh" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "aVj" = ( /obj/structure/bed/chair{ dir = 8 @@ -1941,195 +1892,134 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"aVR" = ( +/obj/item/cell/apc{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/cell/hyper{ + pixel_y = -2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "aVX" = ( /obj/structure/ore_box, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"aWb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) "aWl" = ( /obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"aWD" = ( -/obj/structure/machinery/camera/autoname{ +"aWC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"aWK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"aWR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) +"aWE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"aWV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"aXs" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"aXu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"aXw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) "aXx" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"aXG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"aXC" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"aXP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 }, -/turf/open/asphalt/cement/cement1, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"aXS" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) -"aYc" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) +"aXV" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "aYd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"aYf" = ( -/obj/structure/machinery/vending/walkman{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) "aYg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/surface/rack, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"aYr" = ( -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/hallway) -"aYs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"aYy" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "aYB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) "aYC" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/machinery/cryo_cell, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "aYD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"aYG" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"aYE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"aYH" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"aYN" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/area/lv522/landing_zone_1) "aYO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"aYV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"aYP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "aZa" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/largecrate, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"aZf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"aZb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"aZg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + pixel_x = -11 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "aZj" = ( /obj/structure/plasticflaps, @@ -2139,121 +2029,97 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"aZq" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, +"aZC" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) -"aZz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) "aZD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"aZV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"aZG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"bab" = ( -/obj/structure/prop/server_equipment{ - icon_state = "rackframe_broken" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"aZL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aZU" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aZV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"bah" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"bai" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"baH" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"baK" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 7; - pixel_y = 16 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"aZZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"baB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Control" }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "baN" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"baY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bbb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/seeds/bananaseed{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/seeds/bananaseed, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) +"baV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "bbd" = ( /obj/structure/closet/crate, /obj/item/tool/shovel, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"bbl" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/east_central_street) -"bbt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"bbA" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"bbU" = ( -/obj/structure/window/reinforced{ - dir = 4 +"bbf" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "27" }, -/obj/structure/prop/almayer/computers/sensor_computer2, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bbq" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"bcd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/lv522/atmos/west_reactor) +"bbr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/east_reactor/south) +"bbP" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"bbY" = ( +/obj/item/clothing/suit/storage/marine/medium/smooth, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bcb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "bcf" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, @@ -2265,44 +2131,36 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"bct" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -11; - pixel_y = 20 +"bcp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"bcB" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"bcw" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"bcC" = ( -/obj/structure/machinery/seed_extractor, +/area/lv522/indoors/c_block/mining) +"bcK" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"bcN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/trash/uscm_mre, /turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/indoors/a_block/bridges/op_centre) +"bdf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/operating, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "bdy" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bdC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/machinery/microwave{ - pixel_y = 18 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"bdE" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "bdH" = ( /obj/structure/bed/chair{ dir = 4 @@ -2310,16 +2168,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"bec" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ +"bdI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" + name = "remote door-control"; + pixel_y = 4 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) +"bdP" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"bdQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/northeast, +/area/lv522/indoors/a_block/medical/glass) +"bec" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "beh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2331,21 +2208,20 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"beq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"bew" = ( +"bei" = ( /obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 + layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"bem" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"beo" = ( +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "bex" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -2359,112 +2235,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"beK" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"beP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_x = 2; - pixel_y = 20 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_y = 27 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"bfi" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel/far) -"bfy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - layer = 3.2; - name = "Television set"; - network = null; - pixel_y = 3 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"bfH" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"beG" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/west) +"beN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bfM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"bgc" = ( +/area/lv522/atmos/sewer) +"beQ" = ( +/obj/structure/machinery/squeezer, /turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"bgj" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, +/area/lv522/indoors/c_block/cargo) +"beZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"bgw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bff" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) -"bgW" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bgY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"bha" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"bho" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/landing_zone_2) -"bhp" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "77" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"bhs" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"bhA" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "72" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bhY" = ( +"bfq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/structure/pipes/standard/simple/hidden/green{ @@ -2472,50 +2270,161 @@ }, /turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) -"bia" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"biF" = ( +"bfr" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "40" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bfz" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"biL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bfK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"bfZ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "18" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bgc" = ( /turf/open/floor/plating, -/area/lv522/indoors/a_block/security) +/area/lv522/atmos/cargo_intake) +"bgq" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/filt) +"bgx" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"bgF" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"bgW" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"bha" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bhb" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bhg" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_west_street) +"bhj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"bhq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"bhw" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"bhA" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"bhK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bia" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"biw" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"biJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"biL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) "biN" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"biU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_west_street) +"biQ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges) +"biV" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms/glass) "bjd" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/sewer) -"bjr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"bjz" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"bjW" = ( -/obj/structure/largecrate/random, +"bje" = ( +/obj/structure/cargo_container/wy/mid{ + health = 5000 + }, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/n_rockies) +/area/lv522/landing_zone_1) +"bjA" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "16" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bjG" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) +"bjR" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "76" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "bjX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -2523,20 +2432,40 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"bkb" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"bke" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) +"bjZ" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" + }, +/obj/item/clothing/under/marine/officer/pilot/flight, +/obj/item/clothing/suit/storage/jacket/marine/pilot{ + layer = 3.1; + pixel_y = 2 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) "bkl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"bkp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "bkt" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/headset{ @@ -2552,79 +2481,119 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"bkA" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) "bkE" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) -"bkJ" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"blu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"blB" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"blX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, +"bkM" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"bkR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"blE" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"bmb" = ( -/obj/structure/machinery/power/apc/power/north{ +"blH" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"blV" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bmi" = ( +/obj/structure/machinery/power/apc/power/south{ start_charge = 20 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "bmj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"bmQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"bmY" = ( -/obj/structure/machinery/door/airlock/almayer/generic, +"bmM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + req_access_txt = "100" + }, /turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"bng" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +/area/lv522/atmos/way_in_command_centre) +"bmV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"bnc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"bnm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bnE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"bnr" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "bnP" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"bob" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"boe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"bod" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"bof" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Chief Engineer Office"; + pixel_x = -2; + pixel_y = 6 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"boj" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"bog" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"bok" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bol" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"bop" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"bos" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"bot" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) "bou" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -2638,69 +2607,43 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"boA" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/two{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "UD6 East"; - indestructible = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"boE" = ( -/obj/structure/machinery/light{ +"boQ" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"boR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"boF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"boO" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"boP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"bpo" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"bpt" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"boQ" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bpz" = ( +/obj/structure/platform{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"boW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bpc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"bpH" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bpF" = ( -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "bpN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -2708,94 +2651,74 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"bpV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"bqb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bpZ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "18" +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"bqm" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"bqk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "bqo" = ( /obj/item/prop/colony/usedbandage{ dir = 5 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"bqp" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/east) -"bqt" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - layer = 3.1; - name = "trash bag"; - pixel_x = 4; - pixel_y = 21 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"bqH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"bqJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"bqR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"bra" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"bqP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"brg" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/north_command_centre) "brk" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"bsm" = ( -/obj/structure/machinery/light{ +"brv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"brB" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bsp" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 +/obj/item/shard{ + icon_state = "medium" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"bsr" = ( -/obj/structure/machinery/shower{ - dir = 1 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"bsu" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"bsv" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "bsz" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -2804,141 +2727,144 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"bsB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"bsF" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +"bsD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "bsG" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"bsS" = ( -/obj/effect/decal/cleanable/dirt, +"bsJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"btA" = ( +/obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"bsT" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"btM" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "UD6 East"; + indestructible = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"btQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_y = 8 +/obj/item/toy/plush/farwa{ + pixel_x = -3; + pixel_y = 5 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"bsU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/toy/plush/farwa, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"btR" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"bsX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"btv" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"btz" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/lv522/outdoors/w_rockies) -"btG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) -"btI" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 +/area/lv522/outdoors/colony_streets/south_street) +"bul" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"btZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/almayer/computers/sensor_computer3{ - density = 0; - pixel_y = 16 +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"but" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 }, -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Kitchen-Lockdown"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = 9 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"buc" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Armoury-Lockdown"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = -2 }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "buD" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"buN" = ( -/turf/open/floor/plating, -/area/lv522/outdoors/w_rockies) -"buO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 +"buR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_east_street) -"buX" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"buU" = ( +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"bvo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Equipment" }, -/obj/structure/blocker/invisible_wall, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"buZ" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"bvl" = ( -/obj/structure/platform_decoration{ - dir = 4 +"bvp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"bvq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"bvu" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) -"bvU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"bvs" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"bvF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bwc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" +/area/lv522/atmos/command_centre) +"bvJ" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"bvM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"bvU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"bvW" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) "bwd" = ( /obj/item/toy/beach_ball/holoball{ pixel_x = 8; @@ -2948,96 +2874,150 @@ pixel_x = -12; pixel_y = -4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"bwv" = ( -/obj/structure/machinery/bioprinter, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"bwE" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"bwF" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"bwZ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"bxe" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"bxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"bxl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bxr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"bxF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bxH" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"bys" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"byF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"byO" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"byU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"bwB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"bwF" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"bwQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"bwS" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +"bzg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"bxj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southeast, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"bzo" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"bxq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"bxr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 +"bzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/plaincake{ + pixel_y = 4 }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"bxO" = ( -/obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"bxW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bxY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"bzw" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Dorms"; + pixel_y = 26 }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"bzr" = ( -/obj/item/storage/backpack/marine/engineerpack/satchel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"bzB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "bzC" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/cargo_intake) -"bzJ" = ( -/obj/structure/bed/bedroll{ - dir = 1 +"bzI" = ( +/obj/item/ammo_magazine/m56d, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/item/trash/uscm_mre, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "bzL" = ( /obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ @@ -3045,32 +3025,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"bzM" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_west_street) -"bzQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"bAd" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) "bAe" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -3079,79 +3033,50 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"bAf" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"bAH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bAk" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"bAS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"bAX" = ( -/obj/structure/toilet{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"bAn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"bAq" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bAF" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 29 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/toilet) -"bBb" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"bAP" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 8; icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"bBp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/indie{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/storage/pouch/cassette{ - pixel_y = 5 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"bBq" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bAT" = ( +/obj/item/prop/colony/used_flare, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/wishsoup, -/obj/item/tool/kitchen/utensil/spoon{ - layer = 2.9; - pixel_x = 10; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "bBt" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -3165,6 +3090,10 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"bBA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) "bBI" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -3173,12 +3102,17 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"bBL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bBV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_1" }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"bBZ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "bCl" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; @@ -3189,60 +3123,6 @@ /obj/structure/girder, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"bCv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bCA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Kitchen-Lockdown"; - name = "remote door-control"; - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"bCG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"bCQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"bCR" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"bDf" = ( -/obj/structure/closet/crate, -/obj/item/tool/pickaxe/silver, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bDm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) "bDr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3250,41 +3130,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"bDM" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/dorms) +"bDG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"bDO" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "bDR" = ( /obj/item/explosive/grenade/high_explosive, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"bDX" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/west_reactor) -"bEm" = ( +"bEl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) +"bEI" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"bEJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"bEC" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"bEQ" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - layer = 3.1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"bEP" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 3 }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"bEZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"bFd" = ( +/obj/item/prop/colony/canister, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "bFn" = ( /obj/item/tool/wet_sign{ pixel_x = -11; @@ -3294,57 +3185,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"bFq" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/north_command_centre) -"bGh" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"bFr" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"bGJ" = ( -/obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"bGO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "bGT" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) "bGY" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"bHp" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Pressuredoor"; + name = "High Pressure Door"; + unacidable = 1 }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) +"bHw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"bHe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bHk" = ( -/obj/structure/barricade/sandbags, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"bHo" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) +/area/lv522/atmos/east_reactor/south) "bHA" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -3356,34 +3224,71 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"bHB" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/bananaseed{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/seeds/berryseed, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "bHF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"bHV" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14 +"bHK" = ( +/obj/structure/closet/secure_closet/bar, +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"bId" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/faxmachine{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "bIe" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"bIi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"bIj" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) "bIr" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/north) -"bIs" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 +"bIC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "bID" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -3396,102 +3301,145 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"bIH" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "bIJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/atmos/cargo_intake) -"bIT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bJx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bJb" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"bJe" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "bJN" = ( /obj/item/stack/folding_barricade, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"bJW" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/item/shard{ - icon_state = "medium" +"bJV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "bJZ" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"bKp" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" +"bKe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"bKf" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"bKi" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "bKq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"bKD" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bKG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bKw" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"bKM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/platform{ +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"bKz" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"bLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bLt" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bLn" = ( +/obj/structure/prop/turbine_extras, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"bMs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"bLT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/barricade/metal{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "bMB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"bMC" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"bMF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"bMG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bMK" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon8_3, +/area/lv522/oob) "bMN" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -3499,6 +3447,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"bMS" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "bMX" = ( /turf/closed/shuttle{ dir = 1; @@ -3507,11 +3459,14 @@ /area/lv522/oob) "bNd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"bNe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "bNf" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -3524,10 +3479,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"bNl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) "bNE" = ( /obj/item/tank/oxygen{ pixel_x = 4; @@ -3542,72 +3493,58 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"bNQ" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"bOo" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"bOA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 +"bOr" = ( +/obj/item/clothing/gloves/yellow, +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 26 }, -/obj/structure/barricade/metal{ - dir = 4 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"bOx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"bOB" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"bOz" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "bOE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) -"bOH" = ( -/obj/structure/surface/table/almayer, -/obj/item/robot_parts/robot_component/radio{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/device/radio/off{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/device/radio/off{ - pixel_x = 5; - pixel_y = 13 +"bOX" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/machinery/space_heater, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) -"bON" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"bOO" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 6; - pixel_y = 6 +"bPo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 7 }, -/obj/item/tool/mop{ - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"bPA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"bPF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"bPc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "bPH" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -3617,152 +3554,102 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"bQw" = ( +"bPK" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"bQB" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "2" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"bPL" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_street) +"bQa" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"bQb" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"bQf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"bQF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "bQG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"bQI" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = 10 - }, +"bQU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"bQM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat/marked, +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"bQY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"bRe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"bRq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) -"bRr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/ore_box, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"bRv" = ( -/obj/item/trash/uscm_mre, -/turf/open/auto_turf/sand_white/layer0, +"bRu" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) -"bRG" = ( -/obj/item/weapon/gun/boltaction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) "bRP" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"bRX" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"bSa" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/revolver/cmb, -/obj/structure/pipes/standard/simple/hidden/green{ +"bRR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"bRV" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"bSb" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob/w_y_vault) -"bSk" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 7 - }, +/mob/living/simple_animal/corgi/puppy, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"bSl" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"bSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"bSr" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bSB" = ( -/obj/item/clothing/suit/storage/marine/medium/leader, -/obj/item/clothing/head/helmet/marine/leader{ - pixel_x = 9; - pixel_y = 14 - }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"bSO" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"bSR" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/area/lv522/indoors/a_block/dorms) "bSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) -"bSV" = ( -/obj/structure/blocker/forcefield/vehicles, +"bSX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/area/lv522/landing_zone_2/ceiling) +"bTl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "bTo" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -3771,37 +3658,12 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "bTt" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bTz" = ( -/obj/structure/stairs/perspective{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"bTN" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"bTO" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"bTP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 9 + name = "\improper A-Block Corporate Office Airlock" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"bTQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "bTT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3811,29 +3673,41 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"bUd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +"bUj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bUz" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"bUF" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/area/lv522/indoors/a_block/fitness) +"bUo" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"bUA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "bUN" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"bUT" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) +"bUR" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) "bUV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3842,12 +3716,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"bUZ" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"bVb" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"bVf" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"bVr" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/atmos/cargo_intake) "bVu" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -3862,53 +3745,41 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"bVO" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"bVV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bWc" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) "bWd" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"bWj" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/effect/spider/spiderling/nogrow, +"bWe" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"bWr" = ( +/area/lv522/landing_zone_2) +"bWf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"bWs" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"bWp" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "bWt" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) +"bWv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "bWA" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 4; @@ -3920,40 +3791,64 @@ }, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"bWR" = ( -/obj/structure/platform{ - dir = 4 +"bWG" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_2) -"bXg" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"bWJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"bWS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/bridge) -"bXj" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "33" +"bXb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"bXd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bXm" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) -"bXy" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"bXI" = ( -/obj/item/reagent_container/food/drinks/flask/marine, -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bXK" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"bXf" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bXH" = ( +/obj/structure/machinery/computer3/server/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/east_reactor/south) +"bXN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "bXO" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, @@ -3973,41 +3868,36 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "bYa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"bYg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"bYq" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"bYw" = ( -/obj/structure/bed/chair/comfy{ +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/outdoors/colony_streets/central_streets) +"bYm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) +"bYn" = ( +/obj/structure/cargo_container/seegson/mid, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"bYs" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "bYy" = ( /obj/item/paper, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"bYA" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/north_command_centre) -"bYR" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"bYE" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/area/lv522/indoors/b_block/bar) "bYS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4; @@ -4036,53 +3926,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) +"bZa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "bZd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"bZw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "bZB" = ( /obj/structure/girder/displaced, /turf/open/floor/corsat, /area/lv522/atmos/outdoor) -"bZE" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/hairlesshide{ - pixel_y = -1 - }, -/obj/item/stack/sheet/hairlesshide{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) "bZH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"bZJ" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) "bZK" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/outdoor_bot) -"cai" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 6 +"bZT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"caj" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/west_reactor) -"cam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "caE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -4090,80 +3964,64 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"caR" = ( -/obj/structure/machinery/door_control{ - id = "Marked_6"; - name = "Cargo Shutter Control"; - pixel_y = 10 - }, +"caM" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/filt) +"caQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"cbc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"cbI" = ( /obj/structure/surface/table/almayer, -/obj/item/prop{ - desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "Weyland classified intelligence folder"; - pixel_y = -2 +/obj/structure/machinery/juicer{ + pixel_y = 9 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"caW" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1) -"cbm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"cbv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"cbw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"cbA" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/oob) -"cbN" = ( -/obj/item/clothing/suit/storage/marine/medium/smooth, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "cbW" = ( /obj/structure/machinery/light, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"ccr" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/engineering) +"cca" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "cct" = ( /obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ccz" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"ccH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Hubba hubba."; - icon = 'icons/obj/structures/props/posters.dmi'; - icon_state = "poster17"; - name = "\improper torn magazine page"; - pixel_x = -2; - pixel_y = 3 +"ccA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/north) +"ccD" = ( +/turf/open/floor/coagulation/icon8_0, +/area/lv522/oob) +"ccF" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"ccI" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "ccN" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, @@ -4180,29 +4038,40 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "ccT" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"ccX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "cdj" = ( /obj/structure/largecrate/random, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cdG" = ( +"cdR" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/obj/structure/window{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) "cee" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"ceg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Corpo-Bridge-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "cem" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4216,43 +4085,60 @@ "cex" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/landing_zone_2) -"ceA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) "ceG" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/chips, /obj/item/trash/buritto, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"cfc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"ceO" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"cfD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/cobweb, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"ceQ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"ceW" = ( +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = 3; + pixel_y = 15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"cfL" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/central_streets) -"cfO" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = -10; + pixel_y = 18 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"cfQ" = ( -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "cfT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4262,54 +4148,56 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"cfV" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + id = "Reactor_entry_2"; + pixel_x = 16; + req_access = null + }, +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"cgg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "cgn" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"cgy" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"cgD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"cgE" = ( -/obj/item/clothing/head/helmet/marine/grenadier{ - armor_bullet = 10; - desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; - name = "\improper damaged M3-G4 grenadier helmet"; - pixel_x = 3; - pixel_y = 13 +"cgS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/cargo_container/wy/left, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"cha" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "chm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) -"chs" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/mob/living/simple_animal/corgi/puppy, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"chC" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"chO" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) "chR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -4317,16 +4205,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"cis" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"chX" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"chZ" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "ciw" = ( /obj/structure/stairs/perspective{ @@ -4335,16 +4222,20 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) -"ciM" = ( +"ciI" = ( /obj/structure/surface/table/almayer{ - dir = 8; + dir = 1; flipped = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/shard{ + icon_state = "medium" }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) +"ciN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) "ciS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -4357,27 +4248,29 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"cjs" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"cjo" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"cjt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "cjv" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"cjA" = ( -/obj/structure/surface/table/almayer, -/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_y = 14 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) "cjE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -4385,89 +4278,92 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ckg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"ckl" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"ckE" = ( +"cjI" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"cks" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ckV" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"ckv" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Security"; + pixel_x = -16 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"ckE" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ckI" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"cla" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"cld" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"ckN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "clf" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cli" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"clL" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"clY" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"cmg" = ( +"clj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"cml" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/lv522/indoors/a_block/corpo) +"cln" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"clz" = ( +/obj/item/stack/sheet/wood, +/obj/item/stack/rods, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/cargo_container/wy/mid, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"cmo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - layer = 3.1; - pixel_y = 1 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"clJ" = ( +/obj/structure/girder, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"clQ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "23" }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"clY" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"cmt" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "cmB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -4475,6 +4371,21 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"cmD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"cmE" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) "cmF" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel"; @@ -4487,74 +4398,56 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"cmM" = ( +"cmK" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"cmY" = ( -/obj/structure/foamed_metal, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"cnp" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"cnH" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"cnP" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"cnU" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/lv522/indoors/a_block/dorms) +"cmN" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"cne" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"cnk" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"cnC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"cnV" = ( -/obj/structure/surface/rack, +/obj/structure/largecrate, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"cob" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "coe" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) -"coD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"coG" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"cos" = ( +/obj/item/tool/crowbar, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) -"coT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) -"cpf" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"coO" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/east) "cpx" = ( /obj/structure/platform_decoration{ dir = 4 @@ -4567,6 +4460,34 @@ "cpy" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) +"cpA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 + }, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"cpD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"cpG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Colony Operations Centre"; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) "cpJ" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -4577,6 +4498,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) +"cpK" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"cpN" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "cpX" = ( /obj/item/toy/beach_ball/holoball, /obj/item/shard{ @@ -4593,24 +4522,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"cqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/darkpurple2/northeast, -/area/lv522/indoors/a_block/dorms) "cqe" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"cqp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"cqg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "cqs" = ( /obj/structure/machinery/light{ dir = 1 @@ -4621,39 +4544,67 @@ }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/central_streets) -"cqt" = ( -/obj/structure/machinery/vending/snack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"cqE" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen/glass) -"crf" = ( -/obj/structure/platform{ - dir = 8 +"cqD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) -"crh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/area/lv522/indoors/a_block/security) +"cqE" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"cqM" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "61" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cqV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"crq" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"crA" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "crC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "crM" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/powercell, /turf/open/floor/prison, /area/lv522/landing_zone_2) +"crN" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"crO" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "crP" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -4662,10 +4613,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"crR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) "crT" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 6 @@ -4673,143 +4620,149 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"crU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Armoury-Lockdown"; - name = "remote door-control" +"csB" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 }, -/obj/item/limb/hand/l_hand{ +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ dir = 1; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"crV" = ( -/obj/structure/surface/table/almayer, -/obj/item/grown/nettle/death{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/glowshroom{ - pixel_x = -6; - pixel_y = 5 + icon_state = "p_stair_full" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"csf" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"cso" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"csD" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "csU" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"ctg" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"ctp" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"ctD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"csV" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Central Office"; + pixel_y = 26 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"ctk" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) "ctE" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv522/oob) -"ctF" = ( +"ctJ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ctR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ctZ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - layer = 3.2; - name = "Television set"; - network = null; - pixel_y = 4 +/obj/item/book{ + pixel_x = -5; + pixel_y = 14 }, -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"ctS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, +/obj/item/book{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cua" = ( +/obj/structure/prop/dam/truck, +/obj/structure/prop/holidays/wreath{ + layer = 4.1; + pixel_x = -1; + pixel_y = 16 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"cum" = ( +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"cub" = ( -/obj/structure/largecrate/random/mini, +"cus" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"cuM" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/lv522/indoors/c_block/casino) +"cuy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"cuO" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"cuQ" = ( +/obj/item/pamphlet/skill/powerloader, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"cuS" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) +"cuV" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) "cve" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"cvf" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) "cvi" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"cvo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = 23; - pixel_y = 21 +"cvu" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "64" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"cvx" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/landing_zone_2) -"cvI" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_west_street) -"cwd" = ( +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cvL" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"cvV" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"cvX" = ( +/obj/structure/closet/boxinggloves, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"cwm" = ( -/obj/structure/barricade/deployable{ - dir = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"cvZ" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/east_reactor/south) +"cwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"cwv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"cws" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "cwE" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, @@ -4827,10 +4780,41 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cxc" = ( -/obj/item/storage/backpack, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) +"cwS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"cwW" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"cwY" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"cxn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "cxo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -4841,57 +4825,83 @@ /obj/item/stack/cable_coil, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cxL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cxF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"cxS" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"cye" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"cyf" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"cyh" = ( +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"cxM" = ( /obj/structure/prop/ice_colony/ground_wire{ - dir = 8 + dir = 4 }, /turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"cyi" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/east_reactor) +"cxN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cxQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"cyd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"cye" = ( +/obj/structure/platform_decoration, +/obj/structure/bed/roller, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cyj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/t_comm) "cyw" = ( -/obj/structure/prop/invuln/remote_console_pod, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - density = 1; - layer = 3.5; - pixel_y = -9 +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/shuttle/drop2/lv522) -"cyC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"cyF" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/west) +"cyT" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"cza" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"czc" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - layer = 3.1; - pixel_y = 6 + dir = 8; + pixel_y = 3 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "czd" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_4" @@ -4899,15 +4909,21 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"czk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"czp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform_decoration, +/turf/open/floor/plating, +/area/lv522/atmos/sewer) +"czz" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 13 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Mining Control" +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 20 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "czC" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor/east) @@ -4921,9 +4937,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"czL" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) "czO" = ( /obj/structure/blocker/invisible_wall, /obj/item/pamphlet/skill/powerloader, @@ -4937,75 +4950,78 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"cAh" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/coagulation/icon4_8, -/area/lv522/oob) -"cAM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Generator Room"; - welded = 1 +"cAl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"cAv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"cAP" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) +"cAA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"cAE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/port_gen/pacman{ - layer = 2.9 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"cAR" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"cBa" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"cBd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) "cBp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"cBt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"cBB" = ( -/obj/structure/platform_decoration{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"cBA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"cBT" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 19 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 19 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"cCk" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cCz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/lv522/indoors/a_block/hallway) +"cCh" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/hallway) +"cCs" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "cCH" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/sand_white/layer0, @@ -5015,6 +5031,29 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"cCR" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"cDd" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/potatoseed{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/seeds/potatoseed, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"cDg" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "cDi" = ( /obj/structure/platform_decoration{ dir = 4 @@ -5025,64 +5064,19 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"cDj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"cDt" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"cDz" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +"cDk" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "cDH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"cDM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"cDU" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cEh" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"cDX" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "cEj" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -5098,25 +5092,15 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"cEs" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +"cEp" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "2" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"cED" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cEA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"cEK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/reactor_garage) "cEN" = ( /obj/structure/bed/bedroll{ dir = 10 @@ -5127,21 +5111,19 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"cET" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_west_street) -"cFh" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"cFp" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +"cEY" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/north) +"cFg" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"cFB" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) "cFR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -5149,33 +5131,40 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "cFT" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"cGk" = ( -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"cGu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - req_one_access_txt = "100"; - welded = 1 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"cGK" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"cGC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) +/area/lv522/indoors/c_block/t_comm) +"cGV" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "cGY" = ( /obj/item/tool/wrench, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5193,46 +5182,44 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cHk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"cHv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"cHE" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"cIi" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"cIn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/item/tool/surgery/scalpel/manager, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"cHm" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"cIq" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cHx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"cHF" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"cIp" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "cIr" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cIu" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +"cIt" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) "cIA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ @@ -5244,35 +5231,30 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"cIP" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"cIE" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"cIL" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"cIP" = ( +/obj/structure/closet/bodybag, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"cIT" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"cJb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "cJm" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"cJu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "cJy" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer0, @@ -5284,21 +5266,55 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"cJP" = ( -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"cJT" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"cKg" = ( -/obj/structure/largecrate/random, +"cJL" = ( +/obj/structure/prop/vehicles/crawler, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"cJM" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"cJR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"cJS" = ( +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cKj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/area/lv522/outdoors/colony_streets/south_west_street) +"cKm" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) "cKp" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/atmos/east_reactor/north) +"cKt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Casino Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) "cKw" = ( /obj/structure/girder, /turf/open/floor/corsat, @@ -5313,6 +5329,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) +"cKE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "cKF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -5326,14 +5352,6 @@ "cKG" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/nw_rockies) -"cKM" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 11; - pixel_y = 24 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "cKQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5353,19 +5371,10 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cLf" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 1 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +"cLa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "cLi" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -5373,6 +5382,9 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"cLr" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "cLB" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -5382,64 +5394,80 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"cLG" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 +"cLD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "cMc" = ( /obj/item/clothing/head/hardhat, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cME" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"cMG" = ( +"cMn" = ( +/obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2) -"cMP" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cMx" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"cMI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"cMS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"cNl" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"cNr" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cMY" = ( /obj/structure/stairs/perspective{ dir = 5; icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"cNv" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"cNf" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"cNK" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "cNO" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_y = 30 }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) +"cNS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack{ + pixel_y = 2 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "cNU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5450,107 +5478,93 @@ "cNV" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/north_command_centre) -"cOh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"cOi" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/dorms) -"cOn" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"cOv" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"cOE" = ( -/obj/structure/fence{ - layer = 2.9 - }, +"cNW" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"cNX" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/clothing/glasses/kutjevo, /turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/outdoors/colony_streets/south_west_street) +/area/lv522/indoors/lone_buildings/outdoor_bot) +"cOs" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"cOy" = ( +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"cOD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "cOT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Executive Suite" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"cOX" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"cOY" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/west_reactor) +"cPc" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"cPb" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/hallway) +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"cPf" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "40" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"cPg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) "cPi" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"cPu" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +"cPs" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Sewer"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"cPw" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "cPx" = ( /obj/structure/window/framed/corsat, /turf/open/floor/corsat, /area/lv522/atmos/filt) -"cPD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"cPL" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Interrogation"; - req_access = null - }, +"cPI" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"cQi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"cQl" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"cPT" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) "cQm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/backpack/marine/satchel{ @@ -5571,127 +5585,85 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"cQK" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) +"cQM" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "cQP" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_east_street) -"cRh" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.2 +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) -"cRq" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"cRt" = ( +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"cQX" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"cRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"cRC" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"cRx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "cRF" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 9 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"cRW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"cRQ" = ( -/obj/structure/largecrate/random, -/obj/structure/largecrate/random{ - pixel_y = 18 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"cRU" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "2" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"cSg" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/area/lv522/atmos/east_reactor/north) +"cSa" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"cSs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/snacks/cheesyfries, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"cSF" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cSN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "cSO" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"cSU" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"cTm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"cTv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"cTG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"cTS" = ( +"cSV" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"cSX" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"cTb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"cTe" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"cTq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"cTv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) "cTU" = ( /obj/structure/curtain/red, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"cTW" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) "cTX" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat, @@ -5716,99 +5688,123 @@ }, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) +"cUr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "cUG" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/garage) -"cUT" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"cUV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/blood/drip, +"cUO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"cUZ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cVj" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"cUQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"cUY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = 1; + pixel_y = 6 }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"cVf" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"cVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"cVh" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/atmos/reactor_garage) +"cVp" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "cVy" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cVz" = ( +"cVS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"cVW" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"cVB" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/kitchen) -"cVP" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"cVZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "cWf" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/atmos/cargo_intake) -"cWD" = ( -/obj/structure/barricade/wooden, -/obj/item/shard{ - icon_state = "medium" +"cWo" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"cWq" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"cWw" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) +"cWE" = ( +/obj/structure/coatrack{ + pixel_x = 10; + pixel_y = 2 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cXh" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 9; + pixel_y = 7 }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"cWM" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cWP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"cXk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"cXp" = ( -/obj/item/device/defibrillator, -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "cXq" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -5816,25 +5812,6 @@ /obj/structure/machinery/autolathe, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"cXy" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"cXE" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) "cXF" = ( /obj/structure/bed/chair{ dir = 8 @@ -5842,50 +5819,23 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"cXI" = ( -/obj/structure/machinery/washing_machine{ - density = 0; - pixel_y = 15 - }, -/obj/structure/machinery/washing_machine{ - density = 0; - layer = 3.5; - pixel_y = 29 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "cXY" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cYk" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_street) "cYn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"cYq" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"cYp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock" + }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/area/lv522/indoors/a_block/security) "cYw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/operating, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +/obj/structure/girder, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) "cYE" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -5894,108 +5844,121 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"cYI" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "29" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "cYQ" = ( /obj/structure/window/framed/corsat, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"cZi" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 +"cYW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"cZk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"cZx" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"cZl" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "95" }, -/obj/effect/decal/cleanable/dirt, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"cZq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"cZy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/indoors/lone_buildings/chunk) +"cZt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/dorms) +"cZz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "cZH" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/atmos/sewer) -"cZJ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"cZK" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo2"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) "cZQ" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"cZW" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ +"daf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"dad" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"daY" = ( +/area/lv522/indoors/b_block/bar) +"dao" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"dap" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"dbg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"daJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/obj/item/stack/sheet/mineral/platinum, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"daK" = ( +/obj/item/device/m56d_post, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dba" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Holding Cell" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"dbr" = ( -/obj/structure/platform_decoration{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"dbb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"dbj" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dbl" = ( +/obj/item/stack/sheet/metal, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"dbm" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/kitchen/damage) "dbF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/almayer{ @@ -6016,6 +5979,14 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) +"dbH" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "dbP" = ( /obj/structure/platform{ dir = 4 @@ -6029,6 +6000,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"dcb" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) "dcc" = ( /obj/structure/cargo_container/kelland/left, /obj/structure/pipes/standard/simple/hidden/green{ @@ -6040,38 +6019,63 @@ /obj/structure/cargo_container/grant/right, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"dcp" = ( -/obj/structure/machinery/light{ +"dcr" = ( +/obj/structure/platform_decoration{ dir = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"dcA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"dcQ" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 +"ddb" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"ddn" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/plush/farwa{ - pixel_x = -3; - pixel_y = 5 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ddd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/toy/plush/farwa, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"dds" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"ddh" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"ddk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"ddJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"ddF" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "ddK" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -6086,6 +6090,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"ddL" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_west_street) "ddM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6101,14 +6118,16 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"ddO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Overseers Office" +"ddX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"deh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) "dek" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -6134,45 +6153,39 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"deH" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1; - pixel_x = 5; - pixel_y = 7 - }, +"deI" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"deJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"deP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"deT" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"deV" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"deW" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"dfa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/prison/blue_plate/north, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) -"dfg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 +"dfc" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" }, +/turf/open/floor/corsat/browncorner, +/area/lv522/oob) +"dfe" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dfg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "dfk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -6180,18 +6193,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"dfy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +"dfo" = ( /turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"dfz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) +/area/lv522/atmos/east_reactor/west) "dfE" = ( /obj/structure/filingcabinet{ density = 0; @@ -6215,46 +6219,10 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"dfT" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"dfX" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"dfY" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"dfZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "dgb" = ( /obj/structure/cryofeed, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) -"dge" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"dgr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"dgD" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/east) "dgR" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -6263,54 +6231,39 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"dgS" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dgT" = ( +"dhe" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" + dir = 9 }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"dhx" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"dgU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"dhy" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/turf/open/floor/corsat/plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"dhm" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 4 +"dhz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = 11 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"dhI" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "dhP" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -6321,77 +6274,80 @@ /obj/item/stack/cable_coil/cut, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) -"dib" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"dhY" = ( +/obj/structure/platform, +/obj/structure/reagent_dispensers/watertank{ + layer = 2.9 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"did" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"dik" = ( -/obj/structure/barricade/wooden, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dii" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"din" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"diq" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"diu" = ( +"djf" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"diw" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 +/obj/item/device/walkman{ + pixel_x = 7; + pixel_y = 14 }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"diD" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"diG" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/oob) -"diM" = ( -/obj/item/prop/colony/canister{ - dir = 8; - layer = 3.1; - pixel_y = 16 +/obj/item/device/cassette_tape/pop1{ + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"diP" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"djk" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"diV" = ( -/obj/item/storage/backpack/marine/satchel/rto, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "djm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"djK" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, +"djn" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"djE" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"djH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "djM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -6400,29 +6356,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"djN" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"djR" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"dkf" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"dki" = ( +"djO" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"djU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 1; + id = "sh_dropship2"; + name = "\improper Typhoon crew hatch" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"djY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"djZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dkj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) "dkq" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -6439,106 +6403,69 @@ /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) "dkG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical/glass) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "dkK" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"dkN" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"dkR" = ( +/obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"dkS" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"dkW" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/area/lv522/indoors/b_block/hydro) "dkX" = ( /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"dlj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"dlo" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, +"dlh" = ( +/obj/structure/machinery/smartfridge/seeds, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"dlB" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/obj/structure/machinery/light{ - dir = 4 - }, +/area/lv522/indoors/b_block/hydro) +"dlj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"dlD" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"dlK" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/lv522/atmos/command_centre) +"dln" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"dlM" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"dlD" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/t_comm) -"dlN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"dlF" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"dlP" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) -"dlS" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"dlX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"dlY" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/east_central_street) -"dmc" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "17" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"dmi" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 +"dmg" = ( +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -4; + pixel_y = -8 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) "dmm" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_y = -8 @@ -6549,21 +6476,9 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"dmz" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, +"dmt" = ( /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"dmD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "dmG" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -6576,49 +6491,40 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dmK" = ( +"dnc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"dmM" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_x = -1; - pixel_y = 3 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dnM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"dnW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"dnl" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"dnz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"doc" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"dnF" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/platform, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"dnM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"dnU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dof" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) "doj" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -6627,14 +6533,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dom" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) "dox" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent5"; @@ -6651,14 +6549,23 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"doZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - dir = 2; - id = "sh_dropship2"; - name = "\improper Typhoon crew hatch" +"doG" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"doY" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dpi" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "dpk" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -6666,51 +6573,89 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"dpx" = ( -/obj/item/prop/colony/canister{ - layer = 3.1; - pixel_y = 16 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"dpL" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 +"dpw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/item/tool/minihoe{ - pixel_x = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/item/tool/minihoe{ - pixel_y = -4 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"dpY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"dqf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/tool/wirecutters/clippers, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"dpX" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"dqj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/area/lv522/landing_zone_1/ceiling) "dqr" = ( /obj/item/weapon/gun/rifle/m41a{ current_mag = null }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"dqN" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"dqU" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"dqZ" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"drh" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"dry" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) "drz" = ( /obj/effect/decal/cleanable/blood, /obj/item/tool/hatchet, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"drE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/t_comm) +"dsi" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "dsl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -6719,10 +6664,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"dsm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) "dsu" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -6740,79 +6681,86 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) +"dsD" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dsL" = ( /obj/structure/surface/table/almayer, /obj/item/device/sentry_computer, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"dsO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) "dsQ" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) +"dsZ" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"dti" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) "dtk" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/light{ +/obj/structure/platform_decoration{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"dtm" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_east_street) +"dtp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"dtI" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/white{ - pixel_x = -8; - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/item/clothing/head/hardhat/white, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"dtU" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"dtY" = ( -/obj/structure/closet/firecloset/full, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dtB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"dtP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"duk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"duw" = ( +/obj/item/clipboard, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"duG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"dun" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"duL" = ( +/obj/item/storage/backpack/marine/satchel/rto, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"dvd" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/donut/jelly{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"duG" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) -"dve" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "dvp" = ( /obj/structure/largecrate/supply, /obj/structure/largecrate/supply{ @@ -6823,30 +6771,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"dvI" = ( +"dvs" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"dvt" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"dvB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -12; + pixel_y = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dvO" = ( /obj/structure/platform_decoration/strata, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"dvQ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"dwc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Community Office" +"dvP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) "dwd" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -6857,10 +6812,21 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"dwk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "dwq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "dwI" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison, @@ -6883,13 +6849,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/t_comm) -"dwT" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +"dwS" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "dxc" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -6898,114 +6861,92 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/south) -"dxt" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"dxB" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"dxD" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"dxE" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"dxO" = ( -/obj/structure/closet/bodybag, -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"dxR" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"dyf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"dyO" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 +"dxd" = ( +/obj/structure/bed/bedroll{ + dir = 4 }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) -"dzu" = ( +/obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"dzI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"dxh" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dzO" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"dxj" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"dxS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"dxX" = ( +/obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dzV" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"dyg" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"dyj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"dyu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"dyA" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"dyV" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"dAa" = ( +/area/lv522/landing_zone_2) +"dyX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dzh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"dzW" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"dAJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"dAu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"dAC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/filt) -"dAI" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/ammo_box/magazine/misc/flares{ - pixel_x = -3; - pixel_y = 11 +/area/lv522/indoors/a_block/medical) +"dAO" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"dAV" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"dAZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "dBd" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -7016,134 +6957,64 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"dBv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"dBB" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "dBC" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dBD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"dBH" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"dBT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"dBU" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"dBV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"dCe" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dCf" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"dCy" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"dCF" = ( -/obj/item/ammo_magazine/pistol/m1911{ - pixel_x = 9; - pixel_y = 12 +"dBD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"dCH" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"dBN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"dCN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, /turf/open/floor/corsat/marked, -/area/lv522/landing_zone_2/ceiling) +/area/lv522/indoors/b_block/bridge) +"dBQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "dCS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) "dCY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"dDg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/north_command_centre) "dDq" = ( /turf/closed/wall/shiva/prefabricated, /area/lv522/landing_zone_2/ceiling) -"dDv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"dDw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"dDB" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"dDD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"dDN" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +"dDu" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "dDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7154,12 +7025,14 @@ /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +"dEg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "dEm" = ( /obj/structure/closet, /turf/open/floor/prison, @@ -7173,54 +7046,26 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"dEq" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"dEB" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"dEF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"dEN" = ( -/obj/structure/machinery/light{ +"dEE" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/outdoor) +"dEG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) "dEP" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/chips, /obj/item/trash/wy_chips_pepper, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"dEU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Cargo Airlock" +"dEX" = ( +/obj/structure/largecrate/random{ + layer = 2.9 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"dEZ" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/prison/darkbrownfull2, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "dFd" = ( /obj/structure/bed/chair/comfy, @@ -7230,6 +7075,12 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"dFk" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "dFn" = ( /obj/structure/bed, /obj/item/bedsheet/yellow, @@ -7248,18 +7099,6 @@ dir = 6 }, /area/lv522/indoors/c_block/mining) -"dFF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_x = -1; - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "dFH" = ( /obj/structure/machinery/power/port_gen/pacman{ layer = 3.1; @@ -7267,11 +7106,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"dFL" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "22" +"dFN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "dFR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -7283,56 +7123,85 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"dFW" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"dGk" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"dGl" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "61" +"dFU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"dGc" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "dGs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) "dGD" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"dGT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 +"dGO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"dGP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clothing/suit/storage/apron/overalls{ + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"dGQ" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"dGS" = ( +/obj/structure/window_frame/strata, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "dHj" = ( /obj/item/device/flashlight, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"dHo" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"dHp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) "dHt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "dHy" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -7340,29 +7209,23 @@ /obj/item/clothing/suit/storage/snow_suit/survivor/parka/red, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"dHL" = ( -/obj/structure/machinery/light{ - dir = 8 +"dHK" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/vehicle/powerloader/ft{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) "dHR" = ( /obj/structure/cargo_container/horizontal/blue/top{ pixel_x = 16 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"dHZ" = ( -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"dIb" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "dIi" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, @@ -7375,36 +7238,46 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"dIo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"dIE" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 13; - pixel_y = 17 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) "dIK" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"dIV" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"dJe" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"dJj" = ( +"dIP" = ( +/obj/structure/largecrate/random/mini{ + layer = 3.1; + pixel_x = 10; + pixel_y = -7 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"dJl" = ( +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 0; + pixel_x = -17; + pixel_y = 14 + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"dJn" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) "dJs" = ( /obj/item/tool/pen/red/clicky, /turf/open/floor/corsat, @@ -7413,38 +7286,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"dJw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ +"dJC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"dJH" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"dJF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"dJG" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "dJJ" = ( /obj/structure/cargo_container/horizontal/blue/middle{ pixel_x = 16 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"dJQ" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dJX" = ( -/obj/structure/machinery/light{ - pixel_x = 16 +"dJS" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/dorms) "dKd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7452,86 +7326,61 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"dKD" = ( -/obj/item/fuel_cell{ - layer = 3.1; - pixel_x = 3; - pixel_y = 15 - }, -/obj/item/fuel_cell{ - layer = 3.1; - pixel_x = -10; - pixel_y = 18 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +"dKx" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"dKB" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "dKO" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/east) -"dLC" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"dLG" = ( -/obj/structure/machinery/computer/cameras{ - desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; - name = "\improper 'Typhoon' flight controls"; - network = null; - pixel_y = 21 +"dKP" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 +/obj/item/clothing/under/suit_jacket/stowaway, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"dLa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/machinery/light/double{ - dir = 1; - layer = 2.9; - pixel_y = 9 +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"dLd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/item/prop/almayer/flight_recorder{ - layer = 2.9; - pixel_x = -9; - pixel_y = 4 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"dLv" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dLJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 13 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/obj/structure/platform{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"dLL" = ( -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dLC" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "dLZ" = ( /obj/item/storage/box/guncase/m3717, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"dMa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"dMj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/off{ - layer = 3.1; - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) "dMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7539,95 +7388,182 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"dMI" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"dMP" = ( -/obj/structure/bed/chair{ - dir = 1 +"dMM" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/obj/structure/machinery/light/double, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"dMR" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "dMY" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"dNf" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/atmos/sewer) +"dNa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"dNj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"dNl" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "dNm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"dNV" = ( -/obj/structure/coatrack{ - pixel_x = 12; - pixel_y = 24 +"dNE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"dNL" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/coatrack{ - pixel_x = 1; +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"dNW" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"dOa" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor/north) +"dOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"dOv" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"dOA" = ( +/obj/effect/spawner/gibspawner/robot, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"dOD" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"dOE" = ( +/obj/structure/surface/table/almayer, +/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_y = 14 }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 10; - pixel_y = 27 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"dOG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) -"dOa" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/north) -"dOC" = ( +"dOR" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"dOV" = ( +/obj/effect/decal/cleanable/cobweb2, /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_y = 4 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"dPh" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/item/device/flashlight/lamp{ - pixel_x = 6 +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"dPw" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"dPa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"dPD" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 +/obj/structure/platform{ + dir = 8 }, -/obj/item/tool/pen/red/clicky, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dPG" = ( /obj/item/trash/uscm_mre, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"dPM" = ( -/obj/structure/surface/table/almayer, -/obj/item/co2_cartridge{ - pixel_x = 5; - pixel_y = 5 +"dPK" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"dQb" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"dQo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"dQj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "dQr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xeno, @@ -7639,163 +7575,199 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dQy" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sandwich{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"dQA" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"dQF" = ( -/obj/structure/platform_decoration{ +"dQw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"dQz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"dQG" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"dQI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) -"dRb" = ( -/obj/structure/powerloader_wreckage/jd, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"dRw" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) +"dRG" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"dRc" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"dRx" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "dRL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorm_north) -"dRQ" = ( +"dRO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/welding{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"dRP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/northeast, -/area/lv522/indoors/a_block/medical/glass) -"dRW" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"dRV" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"dRY" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) +"dSn" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"dSp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"dSm" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"dSs" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dSq" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"dSE" = ( +/obj/item/trash/plate, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Pressuredoor"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"dSu" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"dSM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"dSU" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"dTh" = ( -/obj/structure/bed/chair/comfy, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"dSN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"dSQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"dTb" = ( +/obj/item/seeds/riceseed, +/obj/structure/closet/crate, +/obj/item/seeds/riceseed, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"dTc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"dTo" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/reactor_garage) +"dTp" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "dTv" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dTy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/north) -"dTC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"dTz" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "dTJ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"dTP" = ( +"dTK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dTS" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dUe" = ( +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Medical"; - pixel_x = 16 +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"dUt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"dTQ" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/closet, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dTX" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dUL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"dUO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"dUe" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/indoors/c_block/mining) -"dUh" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/cargo_intake) -"dUk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"dUo" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"dUu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"dUC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) -"dUJ" = ( -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "dUS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -7806,99 +7778,124 @@ /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) "dUU" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "36" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "dUW" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"dUX" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "dUY" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"dVr" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "75" +"dVc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dVI" = ( -/obj/structure/safe, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"dVi" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"dVq" = ( +/obj/structure/surface/table/almayer, +/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 = -2; + pixel_y = 16 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dVv" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_west_street) +"dVA" = ( +/obj/structure/closet/crate, +/obj/item/storage/xeno_tag_case, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "dVJ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/browncorner, -/area/lv522/oob) +/obj/structure/prop/server_equipment/yutani_server{ + pixel_y = 17 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "dVM" = ( /obj/structure/curtain/red, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"dVN" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/machinery/m56d_hmg{ - dir = 8 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"dVZ" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 3.1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"dWa" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) "dWc" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"dWe" = ( -/obj/structure/barricade/deployable{ - dir = 1 +"dWf" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Dining"; + pixel_y = 26 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "dWn" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"dWy" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) "dWD" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) +"dWF" = ( +/obj/item/clothing/head/hardhat/white, +/obj/item/prop/alien/hugger{ + pixel_x = 11; + pixel_y = -9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dWP" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"dWW" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "dXa" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/nw_rockies) -"dXk" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +"dXs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "dXt" = ( /obj/item/stack/folding_barricade, /obj/effect/decal/cleanable/dirt, @@ -7915,36 +7912,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"dXZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"dXK" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"dYc" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"dYw" = ( +/obj/structure/cargo_container/kelland/right{ + layer = 2.9 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"dYs" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/stairs/perspective{ dir = 1; - name = "\improper A-Block Fitness Centre Airlock" + icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"dYx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "dYA" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"dYD" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +"dYE" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/platform, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "dYK" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -7954,25 +7958,29 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dYT" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/three, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"dZe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"dYM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"dYP" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "dZs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) -"dZu" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) "dZx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee{ @@ -7990,143 +7998,115 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"dZV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_x = 16; - pixel_y = 7 +"dZS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Generator Room"; + welded = 1 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"eaj" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"eaz" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"eaA" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"eaC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"eac" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"ead" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"eau" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"eay" = ( -/obj/structure/prop/dam/truck, -/obj/structure/prop/holidays/wreath{ - layer = 4.1; - pixel_x = -1; - pixel_y = 16 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) "eaE" = ( /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"eaI" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"eaT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"ebd" = ( +"eaK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"eaS" = ( +/obj/structure/window_frame/strata, +/obj/structure/curtain/red, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"ebe" = ( -/obj/item/storage/pouch/autoinjector/full, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"ebs" = ( +/area/lv522/indoors/c_block/t_comm) +"eaY" = ( +/obj/item/hardpoint/locomotion/van_wheels{ + desc = "Integral to getting shreaded"; + name = "Lifting weights" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"ece" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ebc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ebL" = ( +/obj/structure/platform_decoration, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"ebS" = ( +/obj/structure/cargo_container/wy/mid{ + health = 5000 }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"ecd" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"ech" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/lv522/atmos/east_reactor/south) +"eco" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) -"ecl" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"ecF" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) -"ecH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"ecr" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"ecL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"ecC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"ecM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"ecN" = ( -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"ecP" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "25" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"edI" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"edj" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"edK" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"edI" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"edM" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/reactor_garage) "edQ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -8136,43 +8116,103 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"edZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"eeL" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"edU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Storage"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"eeg" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"eew" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"eez" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"eeD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"eeP" = ( -/obj/structure/tunnel, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"eeE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/wood/wood_broken2, +/area/lv522/indoors/b_block/bar) +"eeI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"eeQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) +"eeS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "eeY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"efg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "efh" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/blood, +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "efp" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"efH" = ( -/obj/structure/closet/crate, -/obj/item/storage/xeno_tag_case, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"efw" = ( +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"efE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"efJ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) "efK" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -8188,68 +8228,27 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"efQ" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"efN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) +"egu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"efU" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"egi" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"egn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_leg"; - name = "left leg"; - pixel_x = -11; - pixel_y = -8 +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"egI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"egr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"egw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"egS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"egU" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) +/area/lv522/indoors/a_block/hallway) "egV" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -8264,15 +8263,18 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"ehb" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/north_command_centre) -"ehk" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) -"ehw" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/filt) +"eho" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 19 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"ehs" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "ehy" = ( /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, @@ -8281,94 +8283,67 @@ /obj/effect/alien/resin/sticky, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"eib" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"eiB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +"ehQ" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"eiE" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"eiK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"eig" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"eiL" = ( -/obj/structure/barricade/wooden{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"eiZ" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"eja" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"ejb" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"eih" = ( /obj/structure/surface/table/almayer, -/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_y = 14 +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -3; + pixel_y = 7 }, -/obj/structure/machinery/light, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"ejd" = ( +"eiv" = ( +/obj/item/tool/crowbar, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"eiF" = ( /obj/structure/surface/table/almayer, -/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_y = 12 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ejg" = ( -/obj/item/clothing/shoes/veteran/pmc{ - name = "steel toe boots" - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ejn" = ( -/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/prop/ice_colony/hula_girl{ - layer = 3.1; - pixel_x = 9; - pixel_y = 13 + pixel_y = 6 }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_y = 9 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"eiG" = ( +/obj/item/trash/uscm_mre, +/obj/structure/surface/table/almayer, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"eiH" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"eiZ" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"ejg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "eju" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -8388,65 +8363,22 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"ejW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"eka" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"ekg" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 7 +"ekk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "ekO" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"elm" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_1"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_2"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_3"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_6"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) +"eld" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "elq" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -8459,56 +8391,28 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"elv" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, +"elK" = ( +/obj/item/stack/rods, +/obj/item/shard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"ely" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"elH" = ( -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"elP" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"elT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "emb" = ( /obj/item/ammo_magazine/smartgun{ current_rounds = 249 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"emd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"emc" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "25" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "eml" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "emm" = ( /obj/structure/prop/invuln/ice_prefab, /obj/structure/prop/invuln/ice_prefab{ @@ -8523,10 +8427,26 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"emD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +"emQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ena" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"enc" = ( +/obj/structure/prop/server_equipment{ + icon_state = "rackframe_broken" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) "eng" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -8534,13 +8454,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"enK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/deployable{ - dir = 1 +"enu" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"enI" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "enP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -8551,120 +8478,114 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"enX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"enY" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) +"enV" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "eof" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 15 }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"eoj" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"eom" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate, +"eox" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/storage/pouch/medkit/full_advanced, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"eor" = ( -/obj/structure/fence{ - layer = 2.9 - }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S"; + pixel_y = -1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"eoL" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"eoP" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/nw_rockies) -"eot" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"epn" = ( +/obj/structure/prop/server_equipment/yutani_server/broken{ + density = 0; + layer = 3.5; + pixel_y = 16 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"eoE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"epe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"epx" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_east_street) -"epJ" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"eqd" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"eqj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"eqn" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"eqo" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"epp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"epu" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"eqQ" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"epC" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"eqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"eqA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) +"eqS" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"eqZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"era" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"erm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) "erA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"erQ" = ( -/obj/structure/machinery/light{ - dir = 1 +"erH" = ( +/obj/structure/coatrack{ + pixel_y = 24 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"erR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; pixel_y = 3 }, -/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/purple{ + pixel_x = -2; + pixel_y = 27 + }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) +/area/lv522/indoors/b_block/bar) "esa" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -8672,9 +8593,6 @@ "eso" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"esv" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) "esw" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/matches{ @@ -8682,66 +8600,41 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"esK" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ +"esD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"esE" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"esO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" - }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"eta" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"etd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ete" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "65" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/bridges/op_centre) -"etk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/area/lv522/landing_zone_forecon/UD6_Tornado) "etx" = ( /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"etK" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_east_street) -"etO" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"etR" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"eup" = ( +/obj/structure/closet/secure_closet/miner{ + pixel_x = 4 }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"etX" = ( -/obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"eul" = ( -/obj/structure/closet/crate, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"eun" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "eur" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -8752,33 +8645,84 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"eut" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) +"euw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "euE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"euJ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"euL" = ( -/obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"evn" = ( -/turf/open/floor/strata/white_cyan4/west, -/area/lv522/indoors/a_block/medical/glass) -"evt" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/plate, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"euW" = ( +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) -"evB" = ( +"eve" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 17 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"evs" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/obj/item/storage/belt/gun/m44/custom, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"evw" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"evB" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"evF" = ( +/obj/structure/ore_box{ + pixel_x = -4 + }, +/obj/structure/ore_box{ + layer = 3.2; + pixel_x = -11; + pixel_y = 23 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "evQ" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) +/obj/structure/barricade/sandbags, +/obj/item/trash/uscm_mre{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "evS" = ( /obj/structure/platform, /obj/structure/platform{ @@ -8791,17 +8735,46 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"ewx" = ( +"ewc" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -13; + pixel_y = -9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"ewh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"ewk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/overwatch/almayer/broken{ + dir = 8; + pixel_x = -12; + pixel_y = 1 + }, +/obj/item/storage/backpack/marine/satchel/rto/small{ + pixel_x = 7; + pixel_y = 19 + }, +/obj/structure/machinery/door_control{ + id = "UD6 East"; + name = "Cargo Shutter Control"; + pixel_y = -4 + }, +/obj/item/clothing/head/headset{ + pixel_x = 4 }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"ewu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"ewA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) "ewE" = ( /obj/structure/platform{ dir = 4 @@ -8812,41 +8785,18 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"ewH" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"ewI" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"ewS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"ewS" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"exm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/area/lv522/outdoors/colony_streets/south_west_street) +"exl" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) "exu" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -8867,80 +8817,60 @@ /obj/item/tool/wirecutters/clippers, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"exA" = ( +"exO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"exP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"eya" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/cargo_intake) -"exE" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "40" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"exO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/west) -"exY" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "eyc" = ( /obj/structure/platform{ dir = 1 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"eyq" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"eys" = ( +"eyj" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"eyt" = ( /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"eyC" = ( +/area/lv522/indoors/b_block/hydro) +"eyv" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"eyA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/t_comm) -"eyF" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "68" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "eyM" = ( -/obj/item/stack/tile/wood{ - layer = 2.5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"eyR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"eyS" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"ezk" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/obj/item/stack/tile/wood{ + layer = 2.5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) "ezo" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -8965,50 +8895,38 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"ezq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/cell/crap{ - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/cell/hyper{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) "ezr" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ezt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"ezA" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/reactor_garage) +"ezO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) "ezU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/north_command_centre) -"eAe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +"ezV" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"ezZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "eAm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9016,14 +8934,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"eAB" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/plaincake{ - pixel_y = 4 +"eAp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"eAs" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"eAt" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "eAC" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -9033,96 +8959,86 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"eAS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ +"eAN" = ( +/obj/structure/platform{ dir = 8 }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/area/lv522/outdoors/colony_streets/south_east_street) +"eAT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "eAX" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/fertilizer, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"eBc" = ( -/obj/structure/machinery/space_heater/radiator/red{ +"eBb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"eBe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - pixel_y = 26 + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"eBf" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) "eBi" = ( /obj/item/stack/cable_coil/cut, /obj/item/stack/cable_coil/cut, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) -"eBk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"eBl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"eBw" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"eBJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 8 +"eBs" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"eBG" = ( +/obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/command_centre) +"eBY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"eCa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) "eCe" = ( /obj/effect/alien/resin/sticky, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"eCr" = ( +"eCM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/central_streets) -"eCC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"eCM" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "49" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) "eCO" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ @@ -9135,6 +9051,28 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"eCT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_entry_2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"eDa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "eDc" = ( /obj/structure/bed/chair, /obj/structure/machinery/space_heater/radiator/red{ @@ -9142,6 +9080,18 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"eDe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"eDh" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/garden) "eDq" = ( /obj/structure/platform{ dir = 1 @@ -9159,67 +9109,77 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "eDJ" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"eDO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, +/obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"eDR" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "eDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/n_rockies) -"eDU" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "71" +"eEt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"eEg" = ( +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 3 + }, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eEA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"eEk" = ( -/obj/item/ammo_magazine/smg/nailgun{ - current_rounds = 0 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"eEo" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"eEI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"eEN" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"eEY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) +"eEO" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer{ + pixel_y = 15 + }, +/obj/item/frame/table/almayer{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/frame/table/almayer{ + pixel_y = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "eFb" = ( /obj/structure/machinery/light{ dir = 4 @@ -9227,53 +9187,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"eFj" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"eFn" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 +"eFh" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "31" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eFj" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) "eFt" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"eFz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"eFA" = ( -/obj/item/trash/hotdog, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = 8; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -2; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -11; - pixel_y = 12 +"eFM" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"eFF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "eFP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor) +"eFQ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"eFR" = ( +/obj/item/prop/colony/canister{ + pixel_y = 7 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "eFT" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -9282,75 +9229,55 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"eFZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"eGp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"eFY" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"eGD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"eGo" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_west_street) +"eGN" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "eGQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"eGV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eHk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/clothing/shoes/marine, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_foot"; + name = "left foot"; + pixel_x = 5; + pixel_y = 25 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"eHh" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"eHl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eHt" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"eHm" = ( +/obj/structure/pipes/standard/tank/oxygen{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/lv522/oob) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "eHy" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -9359,94 +9286,80 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"eHz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "eHF" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"eHJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, +"eHG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"eHK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/atmos/cargo_intake) +"eHW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"eHP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"eHQ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "mining_secure_blast_1"; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"eHZ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "40" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"eIa" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/lv522/indoors/a_block/corpo/glass) +"eHY" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"eIp" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eIJ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer{ - pixel_y = 16 +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -10; + pixel_y = 4 }, -/obj/item/frame/table/almayer{ - pixel_x = 10; - pixel_y = 12 +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"eIt" = ( +/obj/structure/barricade/sandbags, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_street) +"eII" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"eIM" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"eIQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/obj/item/frame/table/almayer{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"eIV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"eJh" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; pixel_y = 4 }, +/obj/item/tool/pen/blue/clicky, +/obj/item/storage/fancy/cigar/matchbook/exec_select{ + pixel_x = -9; + pixel_y = 9 + }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"eIO" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"eIU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"eJa" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_west_street) "eJm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -9462,28 +9375,65 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"eJB" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) +"eJC" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"eJF" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "69" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "eJR" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"eJT" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +"eKh" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"eKl" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "eKm" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"eKu" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" +"eKq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"eKG" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"eKs" = ( +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"eKt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"eKB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "eKH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -9496,30 +9446,28 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"eKO" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"eLi" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 2 +"eKQ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"eKV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"eKZ" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 7; + pixel_y = -12 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"eLk" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"eLo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "eLG" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -19; @@ -9527,24 +9475,18 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"eLK" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/structure/window/reinforced, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 23; - pixel_y = 29 - }, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) -"eLT" = ( +"eLL" = ( +/obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"eLS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "eLU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -9554,81 +9496,52 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/oob) -"eMh" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"eMF" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"eMG" = ( +"eMa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/north_command_centre) -"eML" = ( -/obj/structure/cargo_container/arious/leftmid, +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/area/lv522/atmos/east_reactor/south) "eMR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/filt) -"eMZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"eNa" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) +/area/lv522/indoors/a_block/corpo) +"eNd" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "eNf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"eNh" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"eNx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) +"eNr" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eNs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "eNI" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"eNK" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"eNP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "eOe" = ( /obj/structure/bed/chair{ dir = 4 @@ -9638,59 +9551,43 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"eOi" = ( -/obj/structure/platform_decoration{ - dir = 4 +"eOh" = ( +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"eOt" = ( -/obj/structure/machinery/floodlight, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) -"eOu" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"eOm" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"eOs" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/east_central_street) +"eOx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"eOD" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "eOE" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"eOF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"eOG" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"eOW" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ePa" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) +"eON" = ( +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"eOR" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "ePl" = ( /obj/structure/prop/invuln/fire{ pixel_x = -8; @@ -9704,130 +9601,129 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"ePv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"ePx" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"ePF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"ePH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/prop/alien/hugger, /turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"ePz" = ( +/area/lv522/atmos/east_reactor/south) +"ePM" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"ePQ" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eQc" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"eQr" = ( +/obj/structure/cargo_container/kelland/left, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"ePD" = ( +"eQA" = ( +/obj/structure/ore_box, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"ePV" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"eRz" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"eQN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"eQQ" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/oob) -"eQS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"eRa" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eRo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"eRQ" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"eRq" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"eRY" = ( -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"eSh" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat/browncorner, -/area/lv522/oob) -"eSr" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/large_stack, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"eRW" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"eSs" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) "eSx" = ( /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"eSB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_west_street) -"eSY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"eTa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"eSz" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) -"eTc" = ( -/obj/structure/fence{ - layer = 2.9 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"eSL" = ( +/obj/structure/platform{ + dir = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"eTt" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"eTB" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/area/lv522/outdoors/colony_streets/south_east_street) +"eSV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"eSY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"eSZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/co2_cartridge{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"eTJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "eTQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) +"eUd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "eUf" = ( /obj/item/ammo_magazine/m2c{ current_rounds = 0; @@ -9844,134 +9740,143 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"eUg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) "eUh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"eUk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/roller, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"eUl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"eUn" = ( +"eUp" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/item/grown/nettle/death{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/seeds/glowshroom, +/obj/item/seeds/glowshroom{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "eUt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"eUw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/platform{ - dir = 8 +"eUv" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/lv522/indoors/a_block/dorms) +"eUI" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/turf/open/floor/prison/darkpurplefull2, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "eUX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "eVb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"eVh" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/stool, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"eVl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"eVm" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "eVo" = ( -/obj/structure/bed/chair{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"eVt" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "eVx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"eVI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"eVC" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"eVQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"eWm" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "67" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/port_gen/pacman{ + layer = 2.9 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"eWV" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"eWs" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"eWu" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"eWw" = ( +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + name = "supply crate" }, -/obj/item/weapon/gun/launcher/grenade/m81/m79, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"eXa" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"eXb" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "eXe" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) -"eXm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/device/flash{ - pixel_y = 1 +"eXf" = ( +/obj/structure/surface/rack, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"eXo" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"eXv" = ( -/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"eXC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkpurple2/northeast, +/area/lv522/indoors/a_block/dorms) "eXG" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"eXM" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "eXO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -9984,13 +9889,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"eXS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/central_streets) "eXU" = ( /obj/structure/machinery/power/terminal, /obj/effect/decal/warning_stripes{ @@ -10009,6 +9907,16 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"eYv" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) "eYA" = ( /obj/item/clothing/head/headband/tan{ pixel_x = -10; @@ -10016,35 +9924,52 @@ }, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"eYF" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor) -"eYH" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"eYJ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "75" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/area/lv522/landing_zone_forecon/UD6_Tornado) "eYM" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/landing_zone_1/tunnel) -"eYQ" = ( -/obj/effect/decal/cleanable/dirt, +"eYP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"eYW" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"eYY" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"eZh" = ( -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"eZC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/area/lv522/indoors/lone_buildings/storage_blocks) +"eZo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eZw" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) "eZM" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -10053,43 +9978,56 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "fag" = ( -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"faj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"fas" = ( -/obj/structure/surface/rack, -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - pixel_x = 5; - registered_name = "John Forklift" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fak" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"fan" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"faE" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"faw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"faz" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"faJ" = ( -/obj/item/trash/uscm_mre{ - pixel_x = 12; - pixel_y = -7 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"faA" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "faQ" = ( /obj/structure/bed/chair/comfy{ dir = 8; @@ -10103,88 +10041,124 @@ }, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"fbk" = ( -/obj/structure/machinery/light{ +"fbd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fbj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"fbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"fbm" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"fbo" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"fbw" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "28" +/area/lv522/atmos/reactor_garage) +"fbn" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fbx" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "fbA" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"fbH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, +"fbO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) -"fbN" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_east_street) -"fbT" = ( +"fbR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/key/cargo_train{ - icon_state = "keys" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fbX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"fcc" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"fcb" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"fci" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/area/lv522/indoors/c_block/mining) +"fcl" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon8_3, -/area/lv522/oob) -"fcu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"fcr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"fcK" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"fcY" = ( -/obj/structure/prop/vehicles{ - icon_state = "truck_damaged" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"fdg" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fcI" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fcQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"fcY" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Casino"; + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "fdh" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -10192,60 +10166,80 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) +"fdi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fdm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) "fdn" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/trash/plate, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"fdo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) +"fdr" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"fdG" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"fdJ" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"fdN" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor) "fdS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/item/stack/rods, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"fdY" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"feC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_marked/southwest, +"fej" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"feD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"feM" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"fer" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"feO" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"ffc" = ( +/obj/structure/closet/bodybag, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "ffj" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) +"ffq" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "ffG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/girder, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"ffI" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) "ffL" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -10256,6 +10250,15 @@ }, /turf/open/floor/prison, /area/lv522/landing_zone_2) +"ffV" = ( +/obj/structure/surface/table/almayer, +/obj/item/co2_cartridge{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/clothing/accessory/armband/engine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "fgf" = ( /obj/item/ammo_magazine/m2c{ current_rounds = 0; @@ -10264,16 +10267,26 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"fgg" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) "fgk" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"fgn" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"fgp" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "fgv" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -10289,34 +10302,31 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) -"fgF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"fgX" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"fhf" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) -"fhc" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"fhi" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fhk" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/cargo_intake) "fhl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"fhq" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "fhu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -10326,57 +10336,55 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"fhw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"fhB" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"fhC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fhH" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"fhI" = ( +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"fhR" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"fhX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) "fib" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"fim" = ( -/obj/structure/barricade/deployable{ - dir = 1 +"fij" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"fis" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) "fiu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -10393,11 +10401,28 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"fiN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +"fiD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"fiF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"fiO" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/snappop{ + pixel_x = -7 + }, +/obj/item/toy/snappop{ + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "fiS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -10407,37 +10432,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"fiW" = ( -/obj/structure/surface/table/almayer, -/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_y = 12 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"fiZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"fjc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"fje" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) "fjk" = ( /obj/structure/surface/rack, /obj/item/clothing/ears/earmuffs, @@ -10448,46 +10442,65 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"fjq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "fjr" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"fjx" = ( +"fjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/adv{ + layer = 3.1; + pixel_x = 3; + pixel_y = -2 + }, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_y = 14 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fjI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/barricade/wooden{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan4/north, -/area/lv522/indoors/a_block/medical) -"fjH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/egg_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fjJ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"fjK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/oob) "fjP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"fjW" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) +"fjS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"fkh" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "fkj" = ( /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"fkk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) "fko" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -10496,12 +10509,23 @@ /obj/structure/window, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"fkA" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"fks" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"fkw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_leg"; + name = "left leg"; + pixel_x = -11; + pixel_y = -8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) "fkB" = ( /obj/structure/barricade/deployable, /obj/effect/decal/cleanable/blood, @@ -10512,54 +10536,35 @@ /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) "fkE" = ( +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"fkS" = ( -/obj/structure/machinery/conveyor{ +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"fkG" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) +"fkQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"fkX" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 + pixel_y = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "flc" = ( -/obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "fld" = ( /mob/living/simple_animal/mouse, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"fly" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 8; - pixel_y = 17 - }, -/obj/item/reagent_container/food/snacks/toastedsandwich, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) +"fll" = ( +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical/glass) "flI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/bronze{ @@ -10572,95 +10577,71 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/security) "flK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/walkman{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/device/cassette_tape/pop1{ - pixel_x = -1; - pixel_y = 1 +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "41" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"flN" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, /turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"flL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) -"flV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"flZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) -"fmp" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +"flY" = ( +/obj/structure/coatrack{ + pixel_x = 10; + pixel_y = 9 }, -/obj/structure/barricade/handrail{ - dir = 8 +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ + pixel_x = 8; + pixel_y = 13 }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fmf" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "fms" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"fmx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) +"fmz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"fmM" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) "fmN" = ( -/obj/item/prop/colony/used_flare, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"fmT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"fmR" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"fnc" = ( +/area/lv522/atmos/east_reactor/north) +"fmW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"fnh" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_street) "fni" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10676,117 +10657,181 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"fnr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) +"fnq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"fnu" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) "fnA" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) -"fnP" = ( +"fnM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"fnQ" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fnR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = -6; + pixel_y = 1 }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"fnZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"foc" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "fop" = ( /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) -"for" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -4; - pixel_y = -8 +"foq" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"foA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"foD" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"fou" = ( -/obj/structure/machinery/light, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"foD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"foL" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) "foO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) +"foS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"foZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ + layer = 4.4; + pixel_x = 13; + pixel_y = 19 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_street) "fpn" = ( /obj/item/device/analyzer, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"fpy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_west_street) -"fpP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"fpU" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"fqc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"fqA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"fqF" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"fqH" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Post Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"fqR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"fpx" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"fpC" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"fqS" = ( -/obj/item/tool/wet_sign{ - pixel_x = -11; - pixel_y = 21 +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"fpO" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"fpQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/vomit, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 21 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"fro" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/fitness) +"fqh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"fqA" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"fqE" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"fqY" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"frn" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "frt" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "28" +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"frv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) "frH" = ( /obj/item/clothing/head/hardhat/dblue{ layer = 6.1; @@ -10795,39 +10840,53 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"fsd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"fsr" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" +"frJ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"frR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"frU" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"fsc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"fse" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fsh" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"fsl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "fss" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"fsu" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fsx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +"fsv" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) "fsz" = ( /obj/structure/platform, /obj/structure/prop/vehicles/crawler{ @@ -10841,10 +10900,40 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"fsJ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fsM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "fsQ" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"fsT" = ( +/obj/structure/largecrate/random/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"fsU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"ftb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "ftd" = ( /obj/structure/bed/chair{ dir = 1 @@ -10854,18 +10943,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"fth" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"ftj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +"ftk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/filt) "ftl" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -10877,6 +10958,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"fto" = ( +/obj/item/storage/belt/grenade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) "fts" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/decal/cleanable/dirt, @@ -10894,14 +10980,21 @@ /obj/structure/bed/chair, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"ftQ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) "fua" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/command_centre) -"fub" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +/obj/structure/surface/table/almayer, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 15 + }, +/obj/item/device/flash{ + pixel_y = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "fuc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/pipe_water{ @@ -10910,6 +11003,27 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"fud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fue" = ( +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "ful" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10923,74 +11037,110 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"fuv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 3.1; + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "fuw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"fuK" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) "fuM" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, +/obj/structure/machinery/iv_drip, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "fuV" = ( -/obj/item/storage/firstaid/toxin/empty, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"fuW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"fuY" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"fvc" = ( -/obj/item/prop/colony/used_flare, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"fvi" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" +/area/lv522/atmos/way_in_command_centre) +"fuY" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"fvb" = ( +/turf/open/floor/strata/white_cyan3/southeast, +/area/lv522/indoors/a_block/medical) +"fvd" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "49" }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fvl" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"fvr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "fvx" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_alt" }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"fvC" = ( -/obj/structure/bed/chair/comfy{ +"fvA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"fvD" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fvE" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"fvF" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "fvG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "fvN" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10999,14 +11149,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"fvP" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 +"fvR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) "fvV" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -11014,83 +11163,66 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"fwd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) "fwo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) "fwC" = ( -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fwJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"fwZ" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"fwP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"fwT" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "fxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"fym" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 +"fxD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/hallway) +"fxR" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"fyf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"fyn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ +/obj/structure/stairs/perspective{ dir = 8; - layer = 3; - pixel_x = 5; - pixel_y = 4 + icon_state = "p_stair_full" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"fyq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "fyC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -11111,32 +11243,58 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"fyE" = ( +"fyG" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fyS" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" +/obj/structure/machinery/disposal, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"fyJ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"fza" = ( -/obj/structure/bed/chair{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fyL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"fyP" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"fyY" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/mop{ + pixel_y = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "fzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/surface/table/almayer, +/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_y = 12 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "fzf" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -11148,39 +11306,45 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"fzj" = ( -/obj/structure/bed/chair/comfy{ +"fzi" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"fzn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "fzp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"fzy" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"fzz" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/window{ +"fzt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"fzD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) "fzE" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) -"fzO" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - layer = 3.1 +"fzH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "fzV" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -11189,9 +11353,15 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) "fAh" = ( -/obj/item/stack/sheet/metal, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"fAm" = ( +/obj/structure/closet/crate, /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/outdoors/colony_streets/central_streets) "fAq" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/platform_decoration{ @@ -11199,102 +11369,170 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"fAu" = ( +"fAr" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fAW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"fAX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"fBa" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, +/obj/item/maintenance_jack, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"fBi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"fAN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/lv522/indoors/c_block/garage) +"fBw" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"fAU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fBy" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"fBA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"fBE" = ( -/obj/item/device/m56d_post, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/area/lv522/atmos/north_command_centre) "fBR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"fBW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"fCA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"fCX" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"fDG" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"fDL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"fBV" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"fBW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"fCk" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"fCz" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"fCD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken4, +/area/lv522/indoors/b_block/bar) +"fDk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) -"fDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"fDm" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"fDx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"fDE" = ( +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"fDN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"fEa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_x = -3; + pixel_y = 12 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/tool/wrench{ + pixel_y = -6 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "fEe" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"fEl" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) -"fEO" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "30" +"fEv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fEX" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"fFo" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"fEJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/north) +"fFb" = ( +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) "fFp" = ( /obj/item/clothing/gloves/yellow, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"fFv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) "fFw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"fFy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "fFA" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -11304,95 +11542,82 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"fFN" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"fGb" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"fGs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Chief Engineer Office"; - pixel_x = -2; - pixel_y = 6 +"fFJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"fFR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"fFX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/sewer) +"fGa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 3; - pixel_y = -1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"fGw" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"fGG" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"fGd" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"fGe" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"fGK" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"fGC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fHk" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + layer = 2.9 }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 +/obj/structure/machinery/door_display/research_cell{ + id = "Reactor_entry_1"; + pixel_x = 5; + pixel_y = -7; + req_access = null }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"fGL" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"fGO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"fGP" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 13 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fHm" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"fHa" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/roller, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"fHj" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/area/lv522/outdoors/colony_streets/north_east_street) "fHr" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 +/obj/structure/surface/table/almayer{ + flipped = 1 }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"fHG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"fHO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "fIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11400,118 +11625,135 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"fIc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"fIt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 +"fIn" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"fIu" = ( -/obj/structure/largecrate/random{ - layer = 2.9 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"fIy" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "fII" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"fIZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +"fIX" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor) +"fJb" = ( +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) "fJg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) -"fJh" = ( -/obj/structure/largecrate/random/secure, +"fJj" = ( +/obj/structure/machinery/vending/dinnerware, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/indoors/b_block/bar) +"fJp" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "fJq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"fJB" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = -8 +"fJt" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 5 +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"fJN" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"fJT" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"fKe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fKg" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"fKh" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"fKD" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"fJI" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +"fKM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Armory" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"fJP" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"fJR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" + id = "Sec-Armoury-Lockdown" }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"fKx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fKB" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"fKU" = ( +/area/lv522/indoors/a_block/security) +"fKN" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"fKR" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_1) +"fKV" = ( /obj/item/prop/alien/hugger, +/obj/item/clothing/head/helmet/riot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"fLa" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "47" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen) +"fLt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "fLz" = ( /obj/structure/machinery{ density = 1; @@ -11533,6 +11775,19 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) +"fLB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"fLD" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "fLK" = ( /obj/structure/cryofeed, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -11540,28 +11795,57 @@ }, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) +"fLQ" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"fLR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "fLS" = ( /obj/structure/prop/dam/crane, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"fMh" = ( -/obj/structure/machinery/light{ +"fLW" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/north) +"fMl" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"fMJ" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/fitness) -"fML" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"fMo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/medical_supply_link/green, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"fMr" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"fMB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "fMN" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pill_bottle/tramadol/skillless{ @@ -11592,71 +11876,68 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"fMU" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"fNl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" +"fMX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3; + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) "fNm" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) -"fNn" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"fNM" = ( +"fNC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"fNN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"fNQ" = ( -/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Dining"; - pixel_y = 26 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"fNR" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"fNJ" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fNP" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "fOc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"fOw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"fOx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "fOM" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) -"fOO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "fPa" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -11666,60 +11947,106 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"fPk" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/north) +"fPf" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fPF" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "fPH" = ( /obj/structure/closet/crate/miningcar, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"fPL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"fPM" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "fPO" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, /turf/open/floor/plating, -/area/lv522/landing_zone_2) -"fQm" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/lv522/landing_zone_2) +"fPQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"fPZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/cheesie, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fQf" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"fQh" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"fQu" = ( +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"fQG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"fQH" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"fRe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"fQB" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" +"fRp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"fQG" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/command_centre) -"fRa" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"fRj" = ( -/obj/item/prop/alien/hugger, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"fRt" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) "fRL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/optable, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "fRP" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.3 @@ -11731,53 +12058,33 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "fRQ" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/east) "fRS" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"fRW" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) "fRZ" = ( -/obj/item/prop/colony/canister, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"fSa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fSd" = ( -/obj/item/storage/firstaid/toxin/empty, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "fSf" = ( /obj/structure/blocker/invisible_wall, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/sewer) -"fSk" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 3 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"fSm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"fSp" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/area/lv522/atmos/way_in_command_centre) "fSv" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/beret/eng, @@ -11790,37 +12097,35 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"fSx" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fSE" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 - }, +"fSL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"fSG" = ( -/turf/open/asphalt/cement/cement14, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fSZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"fTd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fTf" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) -"fSS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"fSY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ +"fTh" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "fTi" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -11833,42 +12138,44 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"fTt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"fTw" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"fTB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "fTC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) +/area/lv522/indoors/a_block/fitness/glass) +"fTE" = ( +/obj/item/stack/sandbags_empty/small_stack, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "fTP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"fUl" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"fUm" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"fUw" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"fUd" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "fUx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -11879,83 +12186,32 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"fUA" = ( +"fUP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"fUB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"fUF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fUI" = ( +/area/lv522/atmos/east_reactor/west) +"fUQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"fUK" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"fVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/north) -"fWc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"fWy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"fVH" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"fWy" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "fWG" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"fWI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"fWJ" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "fWW" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -11970,48 +12226,31 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"fXh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +"fWX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"fXn" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "19" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fXw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"fXz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"fXA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/soap/deluxe{ - pixel_x = 4; - pixel_y = 13 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fXb" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"fXK" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"fXM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Garage Airlock" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"fXI" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"fXP" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "fXU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12019,54 +12258,63 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"fXX" = ( -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"fYk" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"fYo" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, +"fXV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Hubba hubba."; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster17"; + name = "\improper torn magazine page"; + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/newspaper, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"fYJ" = ( -/obj/structure/platform{ - dir = 8 +/area/lv522/indoors/c_block/garage) +"fYh" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"fYp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"fZa" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"fYN" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"fZt" = ( -/obj/structure/cargo_container/lockmart/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"fZb" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/command_centre) +"fZm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"fZq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "fZy" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"fZz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "fZA" = ( /obj/structure/largecrate/random/barrel/red, /obj/structure/sign/safety/fire_haz{ @@ -12075,65 +12323,36 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"fZJ" = ( -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) -"fZK" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, +"fZD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen/glass) -"fZN" = ( -/obj/structure/largecrate/random/case, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"fZU" = ( -/obj/structure/platform_decoration, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"gae" = ( +"fZJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"gap" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/w_y1/north, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"fZX" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) "gaw" = ( /obj/structure/barricade/deployable{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"gaL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, +"gaB" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) -"gaM" = ( +"gaL" = ( /obj/structure/stairs/perspective{ - dir = 6; + dir = 8; icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "gaS" = ( /obj/item/bananapeel{ desc = "A bunch of tiny bits of shattered metal."; @@ -12146,22 +12365,22 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/damage) -"gaT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"gaW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "gbe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) +"gbg" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "gbk" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/rifle/heap{ @@ -12201,24 +12420,17 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"gcq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"gcF" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"gcK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 +"gcd" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"gcf" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "gcO" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/under/colonist{ @@ -12231,52 +12443,51 @@ /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gdt" = ( -/obj/item/tool/kitchen/knife, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"gdD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"gdF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gcZ" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "100" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"gde" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"gdn" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/sewer) +"gdq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) -"gdH" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gdt" = ( +/obj/item/tool/kitchen/knife, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "gdO" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) -"gdR" = ( +"gdP" = ( +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"ged" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"gdS" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"gdT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"geh" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "get" = ( /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) @@ -12288,23 +12499,32 @@ }, /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) -"gey" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) +"gev" = ( +/obj/vehicle/powerloader{ + dir = 4; + layer = 3.5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) "geH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"geI" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -12; - pixel_y = 25 +"geQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "gfi" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/item/prop/alien/hugger{ @@ -12312,11 +12532,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"gfH" = ( -/obj/structure/machinery/disposal, +"gfz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/circuitboard/computer{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/circuitboard/computer{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "gfL" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -12326,153 +12557,109 @@ /obj/structure/cargo_container/ferret/mid, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gfR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"gfT" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/landing_zone_2) "gge" = ( /obj/item/storage/belt/medical/lifesaver, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"ggm" = ( +"ggi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ggq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) -"ggR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) +"ggw" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"ggC" = ( +/obj/structure/surface/table/almayer, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ggI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"ggK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) "ggZ" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 5 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"ghq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"ghv" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"ghx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 +"ghQ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo2"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"ghG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"ghK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"ghU" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"gig" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/east_reactor/south) +/area/lv522/oob) "gij" = ( /obj/item/tool/wirecutters, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gin" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"gip" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"giC" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) -"giG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"giL" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"giQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +"giA" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor/north) +"giI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"giL" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"giU" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) "giX" = ( /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"gjs" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 5 - }, -/obj/item/tool/kitchen/tray{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +"gjb" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"gjk" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) "gjt" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -12481,11 +12668,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"gjz" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "59" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "gjA" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -12494,20 +12676,22 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"gjC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"gjS" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/item/shard{ - icon_state = "medium" +"gjD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 9; + pixel_y = 3 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/kitchen/damage) +"gjM" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gjS" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) "gjV" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -12524,48 +12708,102 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"gkb" = ( -/obj/item/shard{ - icon_state = "medium"; - pixel_x = -5; - pixel_y = -8 +"gka" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"gkf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"gkB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"gkc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - welded = 1 + name = "\improper C-Block - Cargo Airlock" }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"gkG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/area/lv522/indoors/c_block/cargo) +"gke" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"gkX" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"gkm" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"gks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/trash/ceramic_plate, +/obj/item/reagent_container/food/snacks/packaged_hdogs{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"gkt" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gkC" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/item/tool/weldpack{ + layer = 3.1; + pixel_x = -5; + pixel_y = 13 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/reactor_garage) +"gkK" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "gkY" = ( /obj/structure/closet/bombcloset, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"glp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"gle" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/overalls, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"glJ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "glO" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/warning_stripes{ @@ -12582,64 +12820,118 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "glT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/bed/alien, +/obj/item/pipe{ + pixel_x = -6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "glZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = -11; + pixel_y = 8 + }, +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + pixel_x = 5; + registered_name = "John Forklift" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"gmc" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "gme" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"gmj" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"gmm" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"gmo" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) "gmu" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) -"gmW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"gmX" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "31" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "gmY" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/t_comm) +"gmZ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "West LZ Storage"; + name = "Emergency Lockdown" }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) +/area/lv522/indoors/lone_buildings/storage_blocks) "gnf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"gnD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 +"gnl" = ( +/obj/item/storage/backpack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"gno" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"gnz" = ( +/obj/item/stack/sheet/metal, +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"gnP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"gnX" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/area/lv522/indoors/c_block/mining) "gok" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -12651,36 +12943,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"goq" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_street) -"goH" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/small_stack, -/obj/item/ore/uranium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"goJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) -"goP" = ( -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/security) -"goQ" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/landing_zone_1) -"goS" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light{ - dir = 1 +"goG" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -6; + pixel_y = 15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/obj/item/trash/plate, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "goT" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -12688,77 +12959,86 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"goY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"gpb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"gpe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"gpG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"goX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"gpH" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"goY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"gpe" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) +"gpA" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "gpN" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"gqr" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"gqO" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, +"gpQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"gqT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 4 +/obj/structure/bed/roller, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"gpX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/suit/storage/apron/overalls{ - pixel_x = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"gqW" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 16 +/obj/structure/fence, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"gqo" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"grj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, +"gqI" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"gqV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) +"grf" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "grq" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"grv" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "grw" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard{ @@ -12766,64 +13046,53 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"grC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"gry" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"grK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"grN" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "grO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "grP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"grY" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gsb" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +"grW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) "gse" = ( /obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"gsv" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_street) -"gsB" = ( -/obj/item/stack/rods, -/obj/item/shard, +"gsw" = ( +/turf/open/floor/coagulation/icon0_0, +/area/lv522/oob) +"gsK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"gsN" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"gsO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) "gsP" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -12839,44 +13108,29 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gtf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"gtk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"gtn" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "83" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"gth" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "gts" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"gtV" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"gty" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"gtC" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/n_rockies) +"gtL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"gub" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "guB" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -12895,129 +13149,135 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"guN" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"gvo" = ( -/obj/structure/prop/server_equipment/yutani_server/off, +"guJ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 + }, +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"gvm" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/cargo_intake) +"gvv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) "gvG" = ( /obj/item/toy/beach_ball/holoball, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"gvR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) "gvT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"gvX" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"gvU" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/effect/decal/cleanable/dirt, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "gwb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"gwd" = ( -/obj/item/tool/crowbar, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_west_street) -"gwn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) +"gwc" = ( +/obj/effect/spawner/gibspawner/robot, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "gwt" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "gwv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{ - pixel_y = 2 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "gwC" = ( /obj/effect/alien/resin/sticky, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"gwH" = ( +"gwG" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"gwP" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"gxd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/prop/colony/used_flare, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"gxe" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"gwJ" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"gwP" = ( -/obj/structure/cargo_container/kelland/left, +/area/lv522/outdoors/w_rockies) +"gxm" = ( +/obj/structure/platform_decoration, /turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gwY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/area/lv522/landing_zone_1/tunnel/far) "gxp" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"gxy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, -/obj/structure/machinery/door/window{ - dir = 2; - pixel_y = 6 - }, -/obj/structure/machinery/door/window{ - dir = 1; - pixel_y = 18 - }, -/obj/structure/window{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/window{ - dir = 8; - pixel_y = 17 +"gxq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"gxH" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"gxr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/west_reactor) "gxN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"gxT" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "gyb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -13026,16 +13286,49 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gyo" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +"gyr" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"gyx" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "89" + }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"gzt" = ( -/obj/structure/machinery/light{ +"gyL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/liquidfood, +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway/damage) +"gyW" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"gzi" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"gzm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "gzu" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -13043,34 +13336,21 @@ /obj/structure/barricade/deployable, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gzz" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"gzC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"gzJ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"gzO" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"gzV" = ( +"gzA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"gzI" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = null; + pixel_x = -16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "gAa" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -13081,13 +13361,31 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"gAp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) -"gAu" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) +"gAd" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"gAy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"gAI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 5 + }, +/obj/item/tool/kitchen/tray{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "gAO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -13106,120 +13404,77 @@ /obj/structure/cargo_container/watatsumi/right, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"gBp" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"gBq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"gBr" = ( -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null +"gBw" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "gBy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"gBJ" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" +"gBB" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"gCn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"gCv" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"gCy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"gBM" = ( -/obj/structure/bed/roller, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"gBO" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gCd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"gCw" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/landing_zone_1) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"gCJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "gCO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/surface/table/woodentable/fancy, /obj/item/device/radio{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/trash/hotdog{ - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"gCR" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"gCY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"gDd" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"gDj" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"gDq" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + pixel_x = -4; + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"gDt" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 +/obj/item/trash/hotdog{ + pixel_x = -2; + pixel_y = -4 }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"gDy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"gDt" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gDI" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "gDL" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door_control/brbutton/alt{ @@ -13231,8 +13486,33 @@ /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) "gDN" = ( -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/obj/structure/platform_decoration, +/obj/item/reagent_container/food/drinks/flask/marine, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gDX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"gDZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) +"gEc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "gEd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -13240,59 +13520,46 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"gEr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"gEt" = ( -/obj/structure/barricade/wooden, +"gEf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"gEx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"gEp" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) "gEB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gEI" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"gEF" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "22" }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/east_central_street) +/area/lv522/landing_zone_forecon/UD6_Tornado) "gEO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 17 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"gEW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock"; + welded = 1 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"gFn" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) "gFp" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -13308,60 +13575,26 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gFv" = ( -/obj/structure/platform_decoration{ - dir = 8 +"gFK" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 }, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"gFF" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/pen/blue/clicky, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"gFS" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_west_street) -"gGc" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"gGf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"gGi" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"gGs" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"gGO" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" +/area/lv522/atmos/east_reactor/south) +"gFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 1; + pixel_y = 3 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) "gGW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13370,34 +13603,46 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"gHe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"gHh" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gHt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 4 +"gHa" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/reagent_container/food/drinks/coffee{ - layer = 3.1; - pixel_x = -5; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 6; - pixel_y = 16 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"gHb" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"gHh" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gHi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"gHx" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"gHA" = ( +/obj/structure/barricade/sandbags{ + dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"gHJ" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) +/obj/item/trash/uscm_mre, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"gHE" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "gHN" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_covered_bed" @@ -13414,121 +13659,53 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) +"gIf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) "gIg" = ( /mob/living/simple_animal/mouse, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"gIj" = ( -/obj/structure/prop/turbine_extras/left, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gIu" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "gIv" = ( /obj/structure/cargo_container/ferret/left, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gIG" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/oob) -"gJg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"gJk" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"gIK" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "40" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "gJm" = ( /obj/structure/cargo_container/ferret/mid, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"gJn" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_east_street) "gJo" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"gJq" = ( +/obj/structure/machinery/floodlight, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"gJv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/lone_buildings/storage_blocks) "gJJ" = ( -/obj/structure/platform{ +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gJO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"gJQ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"gJS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"gJN" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/dorms) -"gJX" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"gKf" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"gKi" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_west_street) -"gKI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "gKO" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -13543,22 +13720,16 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"gLe" = ( +"gKZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"gLc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/trash/ceramic_plate, -/obj/item/reagent_container/food/snacks/packaged_hdogs{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "gLg" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -13568,29 +13739,26 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"gLl" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob/w_y_vault) -"gLp" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +"gLq" = ( +/obj/item/trash/barcardine, +/obj/structure/largecrate/random/mini{ + pixel_x = -7; + pixel_y = 16 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"gLx" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/sewer) -"gMa" = ( -/obj/item/stack/sheet/wood/large_stack, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"gLQ" = ( +/obj/structure/surface/rack, +/obj/item/ore/uranium, +/obj/item/ore/uranium, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"gLW" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "gMb" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -13604,44 +13772,35 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"gMt" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"gMJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) -"gMK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"gMk" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/mineral/uranium/small_stack{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/item/stack/sheet/mineral/uranium/small_stack{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"gML" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 7 +/obj/structure/machinery/camera/autoname{ + dir = 1 }, +/obj/structure/machinery/light/small, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"gMY" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/lv522/indoors/a_block/admin) +"gMx" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"gMD" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/outdoors/colony_streets/east_central_street) +"gNa" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/dorms) "gNn" = ( /obj/structure/largecrate/supply/medicine/medkits{ pixel_x = -7 @@ -13656,48 +13815,77 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"gNt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) "gNJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, /area/lv522/indoors/a_block/bridges/op_centre) -"gOa" = ( -/obj/item/prop/alien/hugger, +"gNL" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gOd" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"gOf" = ( -/obj/item/prop/colony/usedbandage{ - dir = 9 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "LZ1 Service Tunnel"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"gOe" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_east_street) +"gOh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 12; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "gOj" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gOy" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +"gOl" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gOB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"gOF" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "gOJ" = ( /obj/item/tool/wirecutters{ pixel_x = -1; @@ -13705,12 +13893,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gOQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "gOS" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random{ @@ -13721,17 +13903,20 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"gOV" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"gPr" = ( -/obj/item/stack/sheet/wood, +"gPe" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"gPh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) "gPv" = ( /obj/structure/platform{ dir = 1 @@ -13744,42 +13929,50 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"gPx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"gPy" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +"gPB" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gPG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"gPL" = ( +/obj/item/prop/alien/hugger, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"gQl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "gQu" = ( /mob/living/simple_animal/cat/kitten{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"gQw" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/north, +"gQK" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"gQQ" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"gQC" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/central_streets) -"gQI" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/nw_rockies) "gQV" = ( /obj/structure/platform{ dir = 4 @@ -13790,18 +13983,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"gRb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ +"gRc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/c_block/cargo) +"gRe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Kitchen"; - pixel_y = -6 + name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"gRi" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/ore/uranium, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "gRj" = ( /obj/structure/platform{ dir = 4 @@ -13819,55 +14020,85 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"gRx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"gRB" = ( -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 0; - pixel_x = -17; - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) "gRD" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"gSo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" +"gRN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"gRO" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"gRS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"gRY" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen) +"gSv" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "gSw" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gSM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"gUf" = ( -/obj/item/stack/rods/plasteel, +"gSL" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "61" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"gSZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun/buckshot/empty, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"gTm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray/empty, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/outdoors/w_rockies) +"gTG" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"gUh" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gTP" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"gTV" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"gUc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "gUi" = ( /obj/structure/flora/jungle/planttop1, /turf/open/floor/grass, @@ -13878,48 +14109,30 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"gUr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"gUG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"gUL" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/item/stack/rods, +"gUE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"gUO" = ( -/obj/structure/prop/vehicles{ - icon_state = "van_damaged" +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"gUT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 25 }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"gUW" = ( -/obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"gUX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, +/area/lv522/outdoors/colony_streets/north_street) +"gUU" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/garden_bridge) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"gUZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "gVd" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -13930,9 +14143,8 @@ /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/atmos/cargo_intake) "gVe" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "gVf" = ( /obj/structure/machinery/landinglight/ds2, /obj/effect/decal/cleanable/dirt, @@ -13949,24 +14161,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"gVo" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"gVp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) "gVv" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -13977,13 +14171,40 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"gVF" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) +"gVy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "gVH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"gVL" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"gVP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) "gWb" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -13996,45 +14217,55 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"gWe" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"gWn" = ( -/obj/structure/pipes/vents/pump, +"gWy" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"gWz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "gWI" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) +"gWK" = ( +/obj/item/reagent_container/food/drinks/flask/marine, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gWS" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "gXc" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"gXq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = -5; - pixel_y = 9 - }, +"gXe" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"gXw" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"gXr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gXy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "gXz" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -14051,16 +14282,13 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/atmos/cargo_intake) -"gXK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 +"gXN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "gXT" = ( /obj/item/shard{ icon_state = "medium" @@ -14069,44 +14297,35 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) "gXZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "gYc" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) -"gYD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = 12; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 20; - pixel_y = -5 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 8; - pixel_y = -5 - }, +"gYo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"gYJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/w_y2/north, +/area/lv522/atmos/way_in_command_centre) +"gYu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"gYx" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "gYM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14119,41 +14338,100 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/command_centre) -"gZk" = ( -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) +"gYV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"gZa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"gZn" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"gZo" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) "gZq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block Bar" +/obj/structure/surface/rack{ + density = 0; + pixel_y = 18 + }, +/obj/item/tool/soap{ + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"gZA" = ( -/obj/item/reagent_container/glass/rag, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "gZG" = ( -/obj/structure/prop/server_equipment, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Showeroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) "gZL" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "gZQ" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/north) -"haa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"hab" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"gZW" = ( +/obj/structure/closet/crate/freezer{ + layer = 3 + }, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"gZZ" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "han" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/sand_white/layer0, @@ -14166,14 +14444,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"haz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"haC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) "haF" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -14185,73 +14455,68 @@ pixel_x = -6; pixel_y = 6 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"haV" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"haX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/plate{ + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 11 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = -11 + }, +/obj/item/reagent_container/food/snacks/superbiteburger{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "haY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"hbh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"hbi" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, +"hbg" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"hbw" = ( -/obj/item/explosive/grenade/high_explosive/m15{ - pixel_x = 8 - }, -/obj/item/prop/alien/hugger{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"hbz" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"hbA" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"hbU" = ( -/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/cargo_intake) -"hce" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"hcf" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +"hbE" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, +/obj/structure/machinery/light/small, /turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"hcl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/area/lv522/indoors/b_block/bridge) +"hbO" = ( +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"hbQ" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"hbY" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "hcE" = ( @@ -14259,64 +14524,53 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"hcH" = ( -/obj/structure/window/reinforced{ +"hcN" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/prop/colony/game, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "hcO" = ( /obj/structure/platform_decoration, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"hdc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"hdf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"hcW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 5 }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/north) -"hdi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"hdj" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"hdm" = ( -/obj/item/tool/crowbar, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"hcX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"hdt" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 }, -/turf/open/asphalt/cement/cement1, +/turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) +"hdm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "hdu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/n_rockies) -"hdB" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) +"hdv" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "hdG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -14324,87 +14578,64 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"hdU" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"hed" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hec" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"hem" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9; + layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"het" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"hej" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "65" }, -/turf/open/floor/wood/wood_broken3, -/area/lv522/indoors/b_block/bar) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "heB" = ( /obj/structure/cargo_container/ferret/right, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"heG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/fitness) -"heM" = ( -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_2/ceiling) -"heW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"heH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"heI" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"hfa" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 15 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"heL" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"hff" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/area/lv522/outdoors/colony_streets/north_east_street) +"heW" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "hft" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"hfv" = ( -/obj/vehicle/powerloader, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) "hfy" = ( /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8; @@ -14412,18 +14643,16 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"hfC" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"hfM" = ( +"hfI" = ( /obj/structure/stairs/perspective{ + dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) -"hfN" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "hfS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -14435,36 +14664,22 @@ /obj/item/prop/alien/hugger, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"hfW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) "hfZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"hgh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"hgn" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"hgi" = ( +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"hgl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 6; + pixel_y = 11 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "hgr" = ( /obj/structure/girder/reinforced, /turf/open/auto_turf/shale/layer1, @@ -14483,62 +14698,97 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"hgD" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"hhZ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"hif" = ( +"hha" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"hhs" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"hht" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/northwest, -/area/lv522/indoors/a_block/medical/glass) -"hii" = ( -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"hiQ" = ( -/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"hhM" = ( +/obj/item/cell/crap{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/cell/crap{ + pixel_y = 8 + }, +/obj/item/cell{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"hid" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"hih" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"hjc" = ( +/area/lv522/outdoors/colony_streets/south_west_street) +"hil" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"hjg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"hjh" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"hiv" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"hiP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"hiT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"hjd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) "hjE" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"hjL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "hjW" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -14550,6 +14800,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"hjY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "hka" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -14562,127 +14818,57 @@ /turf/open/floor/plating, /area/lv522/atmos/command_centre) "hkc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"hki" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) -"hkL" = ( -/obj/structure/bed/bedroll{ - dir = 4 +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"hkB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "hkO" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"hkU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) "hlf" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"hlk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Holding Cell" - }, +"hlM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"hlm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"hlT" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) -"hma" = ( -/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/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hmh" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +/area/lv522/indoors/a_block/corpo/glass) +"hlN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"hmr" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"hmx" = ( -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"hmi" = ( +/obj/structure/machinery/suit_storage_unit{ + pixel_x = -2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "hmz" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"hmB" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"hmE" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +"hmH" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "hmI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/outdoor) +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "hmJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14694,9 +14880,20 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"hmZ" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, +"hmR" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"hmT" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"hnc" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "hnk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14705,26 +14902,48 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"hnq" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"hnX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"hnl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine{ + pixel_y = 5 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"hnZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"hoa" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"hob" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"hok" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"hod" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/soap, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/donut/jelly{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"hoj" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "hoq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -14747,48 +14966,113 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"hoJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"hoz" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "59" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"hoA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) +"hoG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"hoI" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hpi" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.2 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"hpx" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) +"hpE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"hpN" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"hpQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"hqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"hoL" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 +/obj/item/cell/crap{ + pixel_x = 3; + pixel_y = 11 }, -/obj/structure/flora/bush{ - pixel_y = 9 +/obj/item/cell/hyper{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"hqo" = ( +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"hqv" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "101" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"hqA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"hqP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"hqR" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"hqS" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -20 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/dorms) -"hpa" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/corpo) -"hpC" = ( -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"hqw" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"hqE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"hqK" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/engineering) -"hqV" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"hqX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/filt) "hqZ" = ( /obj/structure/bed/chair/wheelchair, /turf/open/auto_turf/shale/layer1, @@ -14802,49 +15086,72 @@ /obj/structure/flora/jungle/planttop1, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"hrr" = ( +"hri" = ( +/obj/structure/safe, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"hrt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"hrz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"hrJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"hrA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/southeast, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"hrG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"hrN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/area/lv522/atmos/command_centre) +"hrQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/white{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/head/hardhat/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "hsh" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"hsu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"hsv" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +"hst" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "hsC" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "86" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "51" }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"hsD" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"hsW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"htc" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "htu" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -14867,61 +15174,102 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"htG" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"htH" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"htL" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"hue" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Northern Dorms"; - pixel_y = 26 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"huf" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "huu" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"huA" = ( -/obj/structure/window/framed/strata/reinforced, +"hux" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/filt) +"huC" = ( +/obj/structure/platform, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"huS" = ( +/area/lv522/landing_zone_1) +"huK" = ( /obj/structure/platform_decoration{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) +"huM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"huP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 }, +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/indoors/a_block/hallway) +"huT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"huZ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "hvb" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"hvg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/prop/server_equipment/yutani_server/broken{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"hvd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) "hvh" = ( /obj/structure/platform, /turf/open/gm/river, /area/lv522/atmos/sewer) -"hvv" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "81" +"hvo" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"hvB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "hvD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -14930,48 +15278,28 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) "hvF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"hvL" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"hvQ" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"hwi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/floodlight, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"hwv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 +"hvS" = ( +/obj/item/shard{ + icon_state = "medium" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"hwB" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/item/clothing/head/soft/sec, -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) +/area/lv522/indoors/a_block/admin) +"hwo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"hws" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "hwF" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -14983,48 +15311,44 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"hwI" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 +"hwR" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"hwV" = ( +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"hwJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"hwP" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"hwX" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -10; + pixel_y = 21 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "hxn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"hxs" = ( -/obj/structure/largecrate/random, +"hxr" = ( +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "hxt" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk/prison, @@ -15035,10 +15359,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"hxS" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) "hxY" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -15050,74 +15370,120 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"hya" = ( +"hyd" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toy, +/obj/item/seeds/bananaseed{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/seeds/bananaseed, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"hyt" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/cell/high{ + pixel_x = -6; + pixel_y = 10 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"hyb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"hyw" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) +"hyD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"hyI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"hyX" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"hyL" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 +"hzf" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 }, -/obj/item/stack/sheet/metal{ - amount = 30 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"hzi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"hyN" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 7 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"hza" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "hzk" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness) +"hzn" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs{ + pixel_y = 12 + }, +/obj/item/restraint/handcuffs{ + pixel_y = 6 + }, +/obj/item/restraint/handcuffs, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "hzo" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) +/obj/structure/window/reinforced, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "hzA" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"hzH" = ( -/obj/structure/machinery/light{ - dir = 8 +"hzD" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"hzE" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "33" }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"hzR" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"hzY" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "hAg" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -15137,115 +15503,190 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"hAI" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "hAP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"hAR" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "3" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_3" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"hAU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"hAR" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"hAZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"hBa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"hBc" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/east_reactor/west) "hBg" = ( /obj/structure/cryofeed, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) -"hBz" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"hBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"hBI" = ( -/obj/structure/platform{ +"hBs" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) -"hBY" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/prop/colony/used_flare, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"hBv" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"hBy" = ( +/obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"hCn" = ( +/area/lv522/landing_zone_1) +"hBE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"hCy" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "LZ1 Checkpoint"; - pixel_x = 4; - pixel_y = -5 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"hBW" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = -8; - pixel_y = 4 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"hBX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"hBZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"hCe" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"hCk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/east_reactor/south) +"hCo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"hCs" = ( +/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/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hCx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"hCz" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "hCH" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"hCI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) +"hCW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "hDa" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/command_centre) -"hDw" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ +"hDc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/item/device/radio/marine{ + pixel_x = 10; + pixel_y = 22 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"hDe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"hDi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"hDq" = ( +/obj/structure/filingcabinet/seeds{ density = 0; - pixel_x = -5; + pixel_x = -8; pixel_y = 16 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "hDy" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/command_centre) -"hDD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) "hDE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -15256,12 +15697,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"hDF" = ( -/obj/structure/window_frame/strata, -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) "hDI" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -15271,128 +15706,98 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"hDK" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) "hDO" = ( -/obj/structure/ore_box, +/obj/structure/largecrate/random/barrel/green{ + pixel_x = -2 + }, /turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) +/area/lv522/outdoors/colony_streets/central_streets) "hDU" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/north) -"hEe" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"hEi" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"hEv" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"hEN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"hEV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, /turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hFi" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"hFj" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/area/lv522/indoors/a_block/bridges) +"hEl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"hEo" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"hET" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"hEU" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/east_reactor/south) +"hFn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"hFB" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"hFq" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"hFD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"hFw" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Sewer"; - pixel_y = 26 - }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"hFE" = ( +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"hFR" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, /turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) +/area/lv522/indoors/c_block/t_comm) +"hFI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"hFJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_street) +"hFQ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "hFX" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_street) "hGc" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/east_central_street) -"hGf" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -3 +/obj/item/storage/donut_box/empty{ + pixel_x = 1; + pixel_y = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hGo" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"hGp" = ( +/area/lv522/indoors/a_block/security/glass) +"hGD" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hGH" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) "hGJ" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -15410,30 +15815,55 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"hGZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +"hHc" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/oob) "hHd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"hHg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +"hHp" = ( +/obj/structure/noticeboard{ + pixel_y = 29 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"hHw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"hHP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/deployable{ + dir = 1 }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"hHW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/cheesyfries, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"hHT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 7; - pixel_y = 9 +"hIk" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"hIm" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/item/storage/firstaid/fire, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "hIp" = ( /obj/item/weapon/gun/rifle/m41a{ current_mag = null @@ -15448,13 +15878,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"hIK" = ( +"hIH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hIP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -15467,14 +15898,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/command_centre) +"hIT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hIZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"hJf" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) "hJq" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -15482,45 +15914,20 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"hJy" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +"hJu" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "hJG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"hJH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"hJK" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) -"hJM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"hJS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) "hJZ" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"hKw" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) "hKE" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -15541,91 +15948,68 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"hKQ" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "hLg" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_4"; + pixel_x = -16; + req_access = null }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"hLk" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) "hLo" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"hLs" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"hLG" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"hLU" = ( +"hLv" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"hLV" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"hLW" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"hMa" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"hLI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/west_reactor) "hMb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/admin) -"hMH" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +"hMc" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"hMe" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"hMf" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_1"; + name = "treadmill" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_1"; + name = "treadmill switch"; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hMx" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph." + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) "hMI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -15637,10 +16021,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"hMM" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) "hMN" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, @@ -15652,12 +16032,24 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"hNe" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "hNk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"hNG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "hNP" = ( /obj/structure/platform{ dir = 8 @@ -15670,34 +16062,25 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"hNU" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"hOa" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"hOo" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 +"hOr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = -4; + pixel_y = 1 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/obj/item/device/cassette_tape/pop4{ + pixel_x = 3; + pixel_y = 8 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"hOv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "hOy" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -15707,11 +16090,21 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"hPb" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "9" +"hOM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/mineral/uranium/small_stack{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/stack/sheet/mineral/uranium/small_stack{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "hPd" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -15720,25 +16113,41 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"hPm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 8; - pixel_y = 12 +"hPf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 +/obj/structure/toilet{ + pixel_y = 16 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"hPx" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"hPD" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) "hPK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/largecrate/random{ + layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "hPM" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, @@ -15750,142 +16159,142 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"hQa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hPW" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"hQo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"hQv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"hQB" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"hQF" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/north_command_centre) +"hQH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/east) -"hQu" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"hQz" = ( -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"hQK" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"hQS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "hQU" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) -"hQZ" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"hQY" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "hRh" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"hRl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) "hRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"hRx" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "100" +"hRw" = ( +/obj/structure/machinery/computer/crew/colony, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"hRI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"hRK" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/clothing/suit/storage/marine/smartgunner, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"hRS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) +"hRY" = ( +/obj/item/stack/rods{ + pixel_y = -2 }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"hRT" = ( -/obj/structure/barricade/deployable{ - dir = 4 +/obj/structure/machinery/disposal{ + density = 0; + pixel_x = -6; + pixel_y = 16 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"hSd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/mop{ + pixel_x = 13; + pixel_y = 25 }, -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hSg" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "hSi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"hSj" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"hSv" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"hSY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) +"hSA" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "hTe" = ( /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) -"hTz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_y = 3 +"hTU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" }, -/obj/item/paper/janitor, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"hUf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"hUr" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/floor_marked/southwest, +/obj/structure/bed/chair, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) -"hUp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"hUR" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"hUW" = ( /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"hUs" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"hUA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) +/area/lv522/indoors/a_block/security) "hUZ" = ( /obj/structure/barricade/deployable, /obj/item/weapon/gun/rifle/m41a{ @@ -15893,64 +16302,86 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"hVb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "hVd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"hVt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +"hVf" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hVD" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"hVq" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"hVP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/area/lv522/indoors/a_block/corpo) +"hVy" = ( +/obj/item/storage/firstaid/toxin/empty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"hVE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ dir = 4; - id = "Reactor_entry_2" + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"hVQ" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 }, +/obj/item/prop/alien/hugger, /turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"hVW" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/lv522/indoors/a_block/dorms) +"hVG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/window{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"hVY" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +/obj/structure/machinery/prop/almayer/computer/PC{ + desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; + icon_state = "alert:2"; + name = "inventory computer" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"hVR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"hVV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "hWz" = ( /obj/structure/platform, /obj/item/prop/colony/canister{ @@ -15960,12 +16391,60 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"hWA" = ( +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"hWF" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) "hWI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"hWQ" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/stack/nanopaste{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"hWS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/computers/sensor_computer3{ + density = 0; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hWT" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "hWV" = ( /obj/structure/barricade/deployable, /obj/item/weapon/gun/rifle/m41a{ @@ -15974,6 +16453,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"hXg" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/atmos/east_reactor/south) "hXt" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/warning_stripes{ @@ -15983,57 +16470,80 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"hXw" = ( -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"hYb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +"hYa" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"hYo" = ( +/area/lv522/atmos/east_reactor/south) +"hYe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"hYz" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"hYO" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"hYU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"hYV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"hZf" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/structure/window/reinforced, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 23; + pixel_y = 29 + }, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) +"hZq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"hZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"hYy" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"hYA" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hYV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"hYW" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"hZh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"hZC" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/ore/uranium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) +/area/lv522/indoors/a_block/hallway) "hZL" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -16047,27 +16557,32 @@ /obj/structure/barricade/deployable, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"iao" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"ias" = ( +"iaa" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"iae" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) -"iaF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"iav" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"iaE" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/area/lv522/atmos/way_in_command_centre) "iaM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"iaP" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "iaY" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -16075,103 +16590,98 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"ibi" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +"ibd" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/east_reactor/south) "ibu" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"ibI" = ( -/obj/structure/cargo_container/kelland/right, -/obj/item/seeds/riceseed{ - pixel_y = 15 +"ibv" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"ibK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"ibN" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"ibQ" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"ibX" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"ibz" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 6 + dir = 1 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"icb" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/structure/prop/ice_colony/hula_girl{ + layer = 3.1; + pixel_x = 9; + pixel_y = 13 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_y = 9 }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"ibG" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"icc" = ( -/turf/open/floor/coagulation/icon8_0, -/area/lv522/oob) -"icd" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ibH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Post Office" + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"ico" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement3, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"ibS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"icp" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" +"ibU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 2; + id = "sh_dropship2"; + name = "\improper Typhoon crew hatch" }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"ibY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"icg" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "icy" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"icA" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_x = -20 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +"icD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "icE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"icI" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"icJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) "icT" = ( /obj/structure/machinery/light{ dir = 1 @@ -16179,10 +16689,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"icU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, +"ida" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) +"idF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "idH" = ( /obj/item/device/flashlight/flare/on, /obj/effect/decal/cleanable/blood, @@ -16193,50 +16710,28 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"idK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) "idL" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/lv522/oob) -"idM" = ( -/obj/structure/platform{ - dir = 8 - }, +"idQ" = ( +/obj/structure/cargo_container/kelland/right, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"idU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Marshals Office Armory"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" + icon_state = "S" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "idX" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/lv522/atmos/east_reactor/south) -"idZ" = ( +"idY" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"iec" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/north) -"iek" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) +/area/lv522/atmos/filt) "iel" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/shale/layer1, @@ -16245,23 +16740,23 @@ /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) "iew" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_east_street) -"iex" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"ieK" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 16 }, -/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) +/area/lv522/indoors/a_block/security) +"ieE" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"ieF" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "ieW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -16274,27 +16769,20 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"ifd" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "iff" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ifj" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"ifo" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"ifr" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) "ifx" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -16304,12 +16792,31 @@ /obj/structure/barricade/wooden, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"ifO" = ( -/obj/structure/bed/chair{ +"ifD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"ifN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"ifV" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_2) +"igd" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "igg" = ( /obj/structure/largecrate/random/mini{ pixel_x = 9; @@ -16322,6 +16829,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"igl" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/structure/closet/crate, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) "igv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -16335,88 +16850,52 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"igB" = ( +"igD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"igC" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"igO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"igY" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"ihk" = ( -/obj/structure/surface/rack, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"iht" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"ihy" = ( -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"ihC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ihE" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"ihH" = ( -/obj/structure/filingcabinet/seeds{ +/area/lv522/atmos/east_reactor) +"igP" = ( +/obj/structure/filingcabinet{ density = 0; pixel_x = -8; pixel_y = 16 }, -/obj/structure/filingcabinet/seeds{ +/obj/structure/filingcabinet{ density = 0; - pixel_x = 7; + pixel_x = 8; pixel_y = 16 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"ihT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"igX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"iib" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ihy" = ( +/obj/structure/barricade/deployable, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"iil" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/toilet) -"iiB" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"iiz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"iiD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "iiE" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -16424,18 +16903,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"iiI" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"iiP" = ( +"iiN" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "iiV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -16443,19 +16917,27 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"ija" = ( -/obj/structure/ore_box, -/obj/structure/machinery/light{ - dir = 1 +"iiX" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/crossbow, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"ijf" = ( +/obj/structure/largecrate/guns/russian, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"iji" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ijs" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "ijv" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -16463,95 +16945,67 @@ /obj/structure/barricade/deployable, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"ijw" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 13 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = -3 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +"ijH" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) "ijR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"ikf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"iky" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "74" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ikA" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"ikH" = ( -/obj/effect/decal/cleanable/dirt, +"ijS" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ikK" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ikt" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "ikZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ilc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ +"ila" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/prop/almayer/computer/PC{ - desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; - icon_state = "alert:2"; - name = "inventory computer" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "ild" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ilj" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) +"ils" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) "ilt" = ( -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"ilu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "ilK" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ilN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ilP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) "ilU" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -16562,42 +17016,15 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"ima" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Showeroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"imo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"imq" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"imz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"imL" = ( -/obj/item/trash/uscm_mre, -/obj/structure/surface/table/almayer, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"imR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) +"img" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "2" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"imC" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) "imT" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -16605,18 +17032,20 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"inf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "inp" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"ins" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"iny" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "inA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -16625,66 +17054,64 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"inO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Botany"; + pixel_x = 16 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "iod" = ( /obj/structure/cargo_container/ferret/mid, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ioi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) "ioj" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"iov" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/trash/ceramic_plate{ + pixel_y = 6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "ioA" = ( /obj/structure/cargo_container/ferret/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"ioE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_y = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "ioL" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan4/east, -/area/lv522/indoors/a_block/medical) -"ioQ" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"ioZ" = ( /obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 8 - }, +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"ipi" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"ipj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv/empty{ - pixel_x = -3; - pixel_y = 9 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 7 }, -/obj/item/reagent_container/hypospray/autoinjector/kelotane{ - pixel_y = -3 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "ipw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16697,30 +17124,42 @@ "ipx" = ( /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) +"ipy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Mining Control" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"ipz" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "ipB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"ipK" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "27" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"ipM" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +"ipG" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"ipJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) +"ipQ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "iqa" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -16736,41 +17175,30 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iqN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"iqB" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"iqM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) "iqQ" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"iqT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"iqU" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "iqV" = ( /obj/structure/prop/invuln/minecart_tracks, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"iqW" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "iqX" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 @@ -16778,31 +17206,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"irr" = ( +"irb" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"irt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"irg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/adjustable/cable/white, +/obj/item/restraint/adjustable/cable/white{ + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"irB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) -"iru" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"irJ" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"irU" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "isa" = ( /obj/structure/largecrate, /turf/open/auto_turf/shale/layer1, @@ -16812,51 +17243,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"isz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"isE" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"isJ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_y = 7 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"itk" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"itu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack{ - layer = 3.1; - pixel_x = -4; - pixel_y = 12 +"isP" = ( +/obj/structure/tent/big, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"isQ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "West LZ Storage"; + name = "Emergency Lockdown" }, -/obj/item/weapon/gun/flamer{ - current_mag = null; - layer = 3.1 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ith" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"ity" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "itz" = ( /obj/structure/largecrate/random/barrel/white, /obj/effect/decal/warning_stripes{ @@ -16865,15 +17273,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"itB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "itG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16886,61 +17285,60 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"iuh" = ( -/obj/structure/powerloader_wreckage/ft, +"itN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"itY" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random{ + pixel_y = 18 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"iub" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"iun" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) +/area/lv522/outdoors/colony_streets/north_street) "iuv" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"iuU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"iuM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) "iuV" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iuZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"ivc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/west{ - start_charge = 20 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"ivd" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ivi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/reactor_garage) +"ivf" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) "ivk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -16948,6 +17346,17 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"ivl" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"ivw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "ivy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/jackhammer, @@ -16963,36 +17372,25 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"ivG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) -"iwi" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"iwm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"iwo" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "iwt" = ( /obj/structure/barricade/deployable, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"iwv" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, +"iwz" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"iwA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_4" + }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/area/lv522/atmos/filt) "iwE" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -17006,13 +17404,30 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iwG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"iwH" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/lv522/indoors/a_block/dorms) +"iwP" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"iwS" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "iwV" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -17024,49 +17439,36 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ixa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"ixb" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/obj/item/stack/sheet/cardboard/full_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ixd" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ixu" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 +"ixi" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"ixr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"ixv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"ixC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ixB" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "ixD" = ( /turf/open/floor/corsat, /area/lv522/atmos/north_command_centre) -"ixG" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"ixF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/corpo) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) "ixO" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 1 @@ -17083,132 +17485,120 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"iyc" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/nw_rockies) -"iyd" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = null; - pixel_x = -16 +"iye" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"iym" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"iyr" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 }, -/turf/open/gm/river, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"iyu" = ( +/obj/structure/largecrate, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"iyB" = ( +/obj/structure/prop/vehicles, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"iyJ" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) -"iyN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"iyX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/marine/insulated, -/obj/item/tool/weldingtool{ - pixel_x = -4 - }, -/obj/item/tool/weldpack{ - pixel_x = 14; - pixel_y = 17 - }, +"iyU" = ( +/obj/structure/machinery/vending/snack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"izd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"iyV" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"izl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "izz" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"izA" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ +"izB" = ( +/obj/item/tool/surgery/WYautopsy, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ dir = 4; - icon_state = "flammable_pipe_3" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"izG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"izK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"izW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"izX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"iAh" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"iAk" = ( -/obj/effect/spawner/gibspawner/robot, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + pixel_x = 11 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"iAv" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/reactor_garage) -"iAw" = ( +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"izI" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /obj/structure/platform{ - dir = 1 + dir = 8 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"iAE" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"izM" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/window/reinforced{ +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"izQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"iAH" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iAI" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"iAa" = ( +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "r_leg"; + name = "right leg"; + pixel_x = 8; + pixel_y = 20 + }, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "r_foot"; + name = "right foot"; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"iAL" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor) +/area/lv522/indoors/a_block/bridges/corpo) +"iAg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"iAs" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/north) +"iAv" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/reactor_garage) +"iAP" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"iAT" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "iAU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -17220,6 +17610,16 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"iBc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "iBr" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -17227,12 +17627,22 @@ /obj/effect/landmark/survivor_spawner/lv522_forecon_tech, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"iBE" = ( +"iBC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/east, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) +"iBJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_1" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "iBY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -17250,33 +17660,18 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"iCr" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Southeast Landing Zone" - }, -/turf/open/floor/plating, -/area/shuttle/drop2/lv522) -"iCA" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "iCB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"iCW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"iDw" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, +/obj/structure/prop/ice_colony/ground_wire, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) +"iDc" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"iDd" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "iDD" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -17292,80 +17687,97 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"iDI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +"iDJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"iDQ" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"iDR" = ( +/obj/structure/cargo_container/kelland/right, +/obj/item/seeds/riceseed{ + pixel_y = 15 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"iEh" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"iDX" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"iEe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2) -"iEN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +"iEm" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 8; - name = "\improper Human Resources Office" + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"iEQ" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"iFp" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"iEv" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_west_street) +"iEB" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Southeast Landing Zone" }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/north) -"iFq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/shuttle/drop2/lv522) +"iEG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor) -"iFw" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"iGe" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"iGg" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = -8; - pixel_y = 7 +/obj/item/storage/pouch/medkit/full_advanced, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"iEN" = ( +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 12; + pixel_y = 16 }, -/obj/item/toy/plush/farwa, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iGi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"iEW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"iFF" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"iFU" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/area/lv522/outdoors/colony_streets/north_west_street) +"iGf" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) "iGn" = ( /obj/structure/largecrate/random/barrel{ layer = 3.2; @@ -17377,34 +17789,90 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"iHq" = ( -/obj/structure/bed/chair/comfy{ +"iGN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"iHt" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "West LZ Storage"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"iGY" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Storage"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"iHb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"iHc" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"iHi" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"iHu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "iHD" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"iHW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"iHG" = ( +/obj/structure/closet/bodybag, +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"iIb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"iIi" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"iIp" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"iIq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "iIs" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"iIv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) "iIw" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -17412,11 +17880,21 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"iIA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"iIy" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iIB" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "iIK" = ( /obj/structure/foamed_metal, /obj/item/explosive/grenade/custom, @@ -17424,12 +17902,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) -"iIO" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "iIQ" = ( /obj/structure/platform{ dir = 4 @@ -17440,29 +17912,37 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) "iIU" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"iJd" = ( /obj/structure/stairs/perspective{ - dir = 1; + dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"iJe" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"iJa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"iJt" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/area/lv522/atmos/way_in_command_centre) +"iJm" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"iJq" = ( +/obj/item/reagent_container/glass/rag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "iJu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -17470,10 +17950,34 @@ /obj/item/ammo_magazine/handful/shotgun, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) +"iJy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 1; + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 16; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iJC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "iJE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"iJH" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "iJJ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -17483,50 +17987,74 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"iJP" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"iJU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"iJX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "iJZ" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "iKe" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"iKi" = ( -/obj/item/stack/sheet/metal, -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"iKj" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iKg" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Northern Dorms"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "iKo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"iKp" = ( +"iKv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"iKB" = ( /obj/structure/surface/table/almayer, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) +/obj/item/circuitboard/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"iKD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "iKF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"iKV" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) "iKX" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "iKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -17537,30 +18065,43 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"iKZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"iLp" = ( -/obj/effect/landmark/monkey_spawn, +"iLB" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"iLE" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken, +/area/lv522/indoors/b_block/bar) +"iLT" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"iLV" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"iMg" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "86" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"iMn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 3 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"iMj" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"iMo" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "iMv" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/corsat, @@ -17586,86 +18127,80 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"iMJ" = ( -/obj/structure/largecrate/supply{ - pixel_x = -4 +"iME" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"iNa" = ( -/obj/structure/stairs/perspective{ +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"iNr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"iNL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Canteen Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "p_stair_full" + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"iNg" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/snappop{ - pixel_x = -7 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"iNT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/toy/snappop{ - pixel_x = 3; - pixel_y = 11 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"iNl" = ( -/obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"iNy" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"iOg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 7 +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"iNV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "iOi" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"iOy" = ( +"iOu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"iOB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"iOD" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/central_streets) +/area/lv522/atmos/east_reactor/south) "iOL" = ( -/obj/structure/closet/secure_closet/miner{ - pixel_x = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"iOW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase{ - pixel_y = 6 +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"iOT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 }, -/obj/item/storage/briefcase, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "iOY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -17686,191 +18221,85 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"iPm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 1; - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 16; - pixel_y = 8 - }, +"iPh" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iPs" = ( -/obj/structure/barricade/deployable{ - dir = 4 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"iPl" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "iPu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"iPv" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"iQl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/cassette_tape/pop4{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) +"iPX" = ( +/obj/structure/surface/table/almayer, +/obj/item/map/lv522_map, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "iQo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"iQq" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"iQy" = ( -/obj/structure/prop/dam/truck/cargo{ - layer = 3.1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"iQK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +"iQG" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "iQL" = ( /obj/structure/bed/bedroll{ dir = 5 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"iQP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"iRc" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 +"iQN" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"iQW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"iQZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "iRl" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"iRo" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"iRq" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - layer = 3.1 - }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/tofubreadslice{ - pixel_x = -7 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iRv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"iRx" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) -"iRP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"iRR" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) -"iRT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"iRX" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) "iSf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"iSp" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iSr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"iSE" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"iSI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, +"iSg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) +"iSl" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) +"iSq" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"iTx" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "iTF" = ( /obj/item/ammo_box/magazine/m4ra/ap/empty, /obj/effect/decal/cleanable/dirt, @@ -17878,20 +18307,22 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) "iTR" = ( -/obj/structure/prop/vehicles, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) "iTS" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"iTV" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) "iTW" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -17900,32 +18331,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"iTZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"iUb" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"iUe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"iUj" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "iUk" = ( /obj/structure/prop/dam/drill{ layer = 3.1; @@ -17934,29 +18344,46 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"iUJ" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 +"iUr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"iUu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"iUQ" = ( -/obj/structure/surface/rack, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"iUz" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_street) +"iUB" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"iUE" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"iVb" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) "iVm" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -17968,63 +18395,71 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"iVp" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"iVI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing{ + pixel_x = -5; + pixel_y = 5 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"iVq" = ( -/obj/structure/prop/turbine_extras, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/clothing/gloves/boxing/blue{ + pixel_x = 5; + pixel_y = -6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"iVD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/overwatch/almayer/broken{ - dir = 8; - pixel_x = -12; - pixel_y = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"iVJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/storage/backpack/marine/satchel/rto/small{ - pixel_x = 7; - pixel_y = 19 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iWa" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 }, -/obj/structure/machinery/door_control{ - id = "UD6 East"; - name = "Cargo Shutter Control"; - pixel_y = -4 +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/obj/item/clothing/head/headset{ - pixel_x = 4 +/obj/structure/flora/bush/ausbushes/palebush{ + pixel_y = 9 }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "iWo" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"iWH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) "iWN" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"iXc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"iXj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"iXm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "iXw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) "iXy" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = -12; @@ -18032,48 +18467,47 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iXC" = ( +"iXD" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_1"; + name = "treadmill" + }, +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "iXM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"iXQ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) "iXT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"iXU" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +"iXW" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -6; + pixel_y = 15 }, -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/lv522/outdoors/w_rockies) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "iXZ" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"iYl" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) "iYm" = ( /obj/structure/barricade/deployable, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"iYr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) "iYt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -18081,43 +18515,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"iYC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iYU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) -"iYK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"iZs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 +/area/lv522/indoors/b_block/hydro) +"iYW" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "66" }, -/turf/open/floor/wood/wood_broken2, -/area/lv522/indoors/b_block/bar) -"iZz" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/lv522/landing_zone_forecon/UD6_Tornado) +"iZd" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"iZe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"iZh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"iZC" = ( -/obj/structure/largecrate/guns/russian, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"iZE" = ( -/obj/structure/machinery/light{ +/obj/structure/window{ dir = 8 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) "iZI" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) @@ -18125,30 +18556,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"iZZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"iZT" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"jaa" = ( +/obj/structure/tunnel, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"jad" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jac" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"jap" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"jap" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "jaq" = ( /obj/structure/platform_decoration{ dir = 4 @@ -18162,10 +18608,31 @@ "jas" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/mining) -"jaw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"jat" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"jaA" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Meeting Room"; + pixel_y = 26 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jaI" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "jaO" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/decal/cleanable/dirt, @@ -18192,10 +18659,31 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"jaP" = ( -/obj/structure/platform_decoration, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) +"jaQ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"jaR" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"jaX" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"jaZ" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "jbn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -18203,17 +18691,25 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"jbC" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -20 +"jbr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jbD" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -5; + pixel_y = -8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"jbF" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "jbI" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -18225,96 +18721,174 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jbS" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 +"jbQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"jch" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/radio/off{ + pixel_x = 6; + pixel_y = 7 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"jbW" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_fuel"; - pixel_y = 5 +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"jcw" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"jcQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + req_one_access_txt = "100" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"jbX" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"jcj" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"jdg" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"jcm" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"jdk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "jdn" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/reagent_container/hypospray/autoinjector/emergency, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) +"jdp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "jdu" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"jdy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jdL" = ( -/obj/structure/surface/table/almayer{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ashtray/bronze, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"jdx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 + }, +/obj/structure/surface/table/almayer, +/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 = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/hallway) +"jdC" = ( +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"jdH" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ dir = 8; - flipped = 1 + pixel_x = -11 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jdT" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"jeg" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/door_display/research_cell{ +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) +"jdJ" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"jea" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "81" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jen" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"jeu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"jeE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - id = "Reactor_e_entry_3"; - pixel_x = -16; - req_access = null + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"jeM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"jeZ" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"jeK" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"jeR" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"jeW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"jfb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jfl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"jfF" = ( +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "jfO" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"jfP" = ( -/obj/structure/largecrate/random/barrel/white, +"jfQ" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"jfX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Marshal Head Office" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "jfZ" = ( /obj/structure/platform{ dir = 8 @@ -18322,44 +18896,65 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"jgb" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) "jge" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"jgl" = ( -/obj/structure/cargo_container/wy/mid{ - health = 5000 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"jgo" = ( +/obj/structure/largecrate, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"jgu" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"jgz" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Fitness"; + pixel_y = 26 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"jgq" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"jgA" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/lever_action/r4t{ + pixel_y = 26 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"jgw" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/reagentgrinder{ - pixel_x = 3; - pixel_y = 5 +/obj/item/ammo_magazine/lever_action/marksman{ + layer = 3.1; + pixel_x = -5; + pixel_y = 8 }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"jgD" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" +/obj/item/weapon/butterfly/switchblade{ + pixel_x = 11; + pixel_y = 4 }, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"jgK" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"jhd" = ( +/obj/structure/filtration/machine_96x96/distribution{ + density = 0; + pixel_y = 16 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) "jhe" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -18371,25 +18966,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"jhm" = ( -/obj/item/trash/wy_chips_pepper, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jht" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "jhv" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"jhB" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/area/lv522/indoors/c_block/cargo) +"jhH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "jhQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -18398,26 +19002,57 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"jhX" = ( -/obj/structure/platform_decoration, -/obj/structure/bed/roller, +"jhR" = ( +/obj/structure/bed/bedroll{ + dir = 8 + }, /obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) -"jhZ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "76" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"jhU" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "jih" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"jiH" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Cargo"; + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"jii" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"jil" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"jiv" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jiz" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"jiI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "jiP" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/lipstick{ @@ -18432,6 +19067,11 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) +"jiV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "jiY" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/green{ @@ -18439,127 +19079,117 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"jjp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"jjs" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"jjw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"jiZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"jjr" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"jjA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jjE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "jjG" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"jjO" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "jjP" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"jkl" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, +"jjT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) -"jkq" = ( +"jjY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"jkd" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "71" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jkg" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) -"jkx" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"jkA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +"jko" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 16 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "jkC" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"jkH" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "99" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "jkJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"jkK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"jlb" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) "jll" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"jlq" = ( +"jlH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"jlt" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Cargo"; - pixel_x = -16 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"jlR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"jlD" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"jmb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"jmm" = ( +/obj/structure/fence, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) -"jmn" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) +/area/lv522/outdoors/n_rockies) "jmz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18569,10 +19199,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"jmD" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) "jmE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18582,26 +19208,44 @@ "jmG" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/cargo) -"jmN" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"jnj" = ( +"jmK" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random{ + pixel_y = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"jmQ" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"jmS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"jmY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) "jnk" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"jnu" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "17" +"jnA" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) "jnB" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -18618,58 +19262,19 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"jnI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_east_street) -"jnN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/glass/rag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"jog" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"jnP" = ( /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"joi" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, +"jnR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/almayer/w_y1/north, +/area/lv522/atmos/way_in_command_centre) +"jnZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) "jom" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -18680,69 +19285,94 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"joS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken4, -/area/lv522/indoors/b_block/bar) -"joW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"joX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +"jor" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"joY" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"jpb" = ( +/obj/structure/closet/crate, +/obj/item/storage/pouch/shotgun/large/slug, +/obj/item/storage/pouch/general/large/m39ap, +/obj/item/storage/pouch/flamertank, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) "jpc" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"jpn" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"jps" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) "jpt" = ( -/obj/structure/platform{ +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/obj/structure/window{ dir = 4 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"jpw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) "jpx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jpH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"jpI" = ( +"jpF" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"jpJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"jpT" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"jpX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "jqa" = ( /obj/structure/ore_box, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jqH" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) +"jqj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"jqv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"jqJ" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) +"jqM" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) "jqO" = ( /obj/structure/platform{ dir = 4 @@ -18752,39 +19382,45 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"jqT" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"jqX" = ( -/obj/effect/landmark/monkey_spawn, +"jqU" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"jqW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "jrd" = ( /obj/structure/girder/displaced, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"jre" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +"jrs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"jrk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/closet/emcloset, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jrt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "jru" = ( /obj/structure/platform{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"jrA" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "jrL" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, @@ -18793,6 +19429,21 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"jrW" = ( +/turf/open/floor/strata/white_cyan4/east, +/area/lv522/indoors/a_block/medical/glass) +"jsj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"jsx" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) "jsD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -18800,10 +19451,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"jsJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) "jsM" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -18816,17 +19463,61 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"jsR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"jsU" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"jsW" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "jtg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jtm" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +"jtk" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 6; + pixel_y = 20 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"jts" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = -3 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"jtt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "jtu" = ( /obj/structure/barricade/deployable, /obj/structure/barricade/deployable{ @@ -18834,28 +19525,20 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jty" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Private Casino"; - pixel_y = -6 +"jtz" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"jtN" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"jtF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/athletic_mixed, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"jtH" = ( -/turf/open/floor/coagulation/icon0_8, -/area/lv522/oob) -"jtU" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"jtW" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/chunk) "jue" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/item/lightstick/red/spoke/planted{ @@ -18864,18 +19547,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"jul" = ( +"jug" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"juo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "jus" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -18886,19 +19565,12 @@ /obj/structure/cargo_container/arious/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"juA" = ( -/obj/structure/prop/server_equipment/yutani_server{ - pixel_y = 17 - }, -/obj/structure/machinery/light{ - dir = 8 +"juv" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"juC" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "juY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -18909,14 +19581,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"jvc" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/atmos/command_centre) "jvf" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/prison, @@ -18946,78 +19610,58 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"jvs" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null - }, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_arm"; - name = "left arm"; - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 4 +"jvt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "jvu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"jvN" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"jvR" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"jvW" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"jwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"jvz" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"jwI" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "6" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/area/lv522/indoors/a_block/corpo) +"jvJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"jvQ" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"jwb" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"jwn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "jwM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jwR" = ( +"jwO" = ( +/obj/structure/largecrate/random/barrel/blue, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "jwU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "jwV" = ( /obj/structure/filingcabinet{ density = 0; @@ -19031,29 +19675,47 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"jwZ" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"jxa" = ( -/obj/structure/platform_decoration{ - dir = 1 +"jxb" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_east_street) -"jxp" = ( -/obj/structure/bedsheetbin{ - pixel_y = 7 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/obj/structure/machinery/camera/autoname{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"jxc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"jxe" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"jxf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jxr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) "jxz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -19073,12 +19735,16 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"jyc" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"jxT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "jyf" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3; @@ -19086,75 +19752,46 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) -"jyA" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"jyH" = ( -/obj/item/prop/helmetgarb/lucky_feather{ - pixel_x = 11; - pixel_y = 10 - }, -/obj/item/device/implanter/subdermal_armor, +"jyo" = ( +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"jyI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/plate, -/area/lv522/oob) +/area/lv522/atmos/filt) "jyM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"jyR" = ( -/obj/item/clothing/suit/storage/jacket/marine/RO{ - name = "\improper UA jacket" +"jyP" = ( +/obj/item/clothing/suit/storage/marine/medium/leader, +/obj/item/clothing/head/helmet/marine/leader{ + pixel_x = 9; + pixel_y = 14 }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"jyW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"jzb" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "jze" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"jzg" = ( -/obj/structure/coatrack{ - pixel_x = 11 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"jzj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"jzp" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"jzx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"jzf" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"jzh" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) "jzC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable/fancy, @@ -19188,21 +19825,28 @@ /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"jzO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jzQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "jzR" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"jzT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) -"jzY" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +"jzU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "jzZ" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -19216,16 +19860,43 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"jAi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jAk" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"jAw" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/three, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/area/lv522/atmos/north_command_centre) +"jAr" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"jAs" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jAz" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice13"; @@ -19238,21 +19909,11 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"jAD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) "jAI" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"jAO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) "jAV" = ( /obj/item/prop/alien/hugger{ pixel_x = -12; @@ -19261,24 +19922,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) -"jBb" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) "jBe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"jBl" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/north_command_centre) +"jBv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) "jBw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19289,6 +19941,12 @@ /obj/structure/janitorialcart, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"jBI" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) "jBR" = ( /obj/structure/bed/chair{ dir = 1 @@ -19298,22 +19956,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"jBS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "jBU" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"jBV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"jCa" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/lv522/landing_zone_forecon/UD6_Tornado) "jCb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10; @@ -19332,44 +19986,41 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"jCj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"jCK" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) +"jCg" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"jCi" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/filt) +"jCr" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "jCU" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jCV" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"jDg" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "jDh" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"jDw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"jDl" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) "jDA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -19377,13 +20028,16 @@ /obj/structure/foamed_metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"jDB" = ( -/turf/open/floor/almayer/w_y1/north, -/area/lv522/oob/w_y_vault) -"jDD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +"jDG" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) "jDJ" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green, @@ -19395,15 +20049,45 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"jDU" = ( -/obj/structure/machinery/suit_storage_unit{ - pixel_x = -2 +"jDV" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"jDX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/west_reactor) +"jDZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jDW" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) +"jEg" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/west_reactor) +"jEm" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"jEr" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) +"jEs" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "jEu" = ( /obj/structure/sign/safety/rad_haz, /obj/structure/sign/safety/restrictedarea{ @@ -19411,11 +20095,37 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) +"jEz" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "jEH" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"jES" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jEU" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "jEW" = ( /obj/structure/bed/chair{ dir = 1 @@ -19434,33 +20144,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"jFe" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "jFr" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jFt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Kitchen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"jFv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "jFG" = ( /obj/structure/cargo_container/arious/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"jFL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"jFT" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "jGa" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -19472,6 +20183,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"jGb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/indoors/lone_buildings/storage_blocks) "jGe" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -19481,13 +20196,6 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jGn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) "jGp" = ( /obj/structure/platform{ dir = 1 @@ -19500,91 +20208,65 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"jGs" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "26" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"jGx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jGv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jGy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) +/area/lv522/indoors/a_block/security) +"jGA" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "jGK" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"jGL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/east_central_street) -"jGM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"jGU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Botany"; - pixel_x = 16 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) +"jGW" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) "jHb" = ( /turf/open/gm/river, /area/lv522/oob) -"jHd" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) +"jHh" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "jHi" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"jHx" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"jHE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"jHS" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"jHU" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +"jHC" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) +"jHK" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv522/indoors/b_block/bar) +"jHL" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"jId" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/west_reactor) +"jHV" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) +"jIh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) "jIk" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -19592,95 +20274,129 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1) "jIq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"jIt" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/obj/structure/barricade/deployable{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jIF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"jIN" = ( +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jIH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "jIR" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/gm/river, /area/lv522/oob) "jIV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) -"jJf" = ( -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"jJz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"jJs" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jJu" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/obj/effect/spawner/random/toy, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) +/area/lv522/indoors/a_block/hallway) +"jJA" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/cargo_intake) "jJF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"jKj" = ( +"jJH" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"jJQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"jKp" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"jKt" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/area/lv522/indoors/c_block/bridge) +"jKG" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"jKL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"jKN" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"jLo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) "jLF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"jLN" = ( -/obj/structure/girder, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +"jLW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "jLX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"jLZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"jMh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) "jMv" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -19697,19 +20413,14 @@ /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"jMz" = ( -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light{ - dir = 4 +"jMC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) "jMJ" = ( /obj/structure/platform{ dir = 1 @@ -19719,26 +20430,11 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"jMN" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 8 - }, +"jMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"jMY" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) "jMZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen/blue/clicky{ @@ -19751,67 +20447,27 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"jNm" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"jNn" = ( +"jNj" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"jNr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"jNx" = ( -/obj/structure/prop/invuln/minecart_tracks, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"jNt" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/landing_zone_1) +"jNO" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"jND" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"jNN" = ( -/obj/structure/machinery/computer/crew/colony{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"jNP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "jOh" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating, /area/lv522/oob) -"jOl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"jOq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "jOw" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -19831,13 +20487,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"jOy" = ( -/obj/item/shard{ - icon_state = "medium" +"jOA" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/prop/colony/canister{ + pixel_y = 11 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "jOF" = ( /obj/effect/acid_hole, /turf/closed/wall/shiva/prefabricated/reinforced, @@ -19851,43 +20507,47 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"jOY" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"jPe" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) +"jPb" = ( +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"jPq" = ( +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "jPw" = ( /turf/open/floor/plating, /area/lv522/oob) +"jPB" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "jPC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"jPG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"jPR" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +"jPF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_3" }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/filt) +"jPJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"jPP" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"jPX" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "jQa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/crane{ @@ -19901,41 +20561,44 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"jQu" = ( +"jQI" = ( +/obj/effect/decal/cleanable/generic, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jQO" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"jQW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "jRc" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"jRl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 +"jRe" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"jRp" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"jRg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"jRz" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"jRn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jRB" = ( /obj/structure/machinery/light/double/blue{ dir = 8; pixel_x = -10; @@ -19944,14 +20607,25 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, /turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) +"jRF" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) "jRL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "jRT" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) @@ -19959,59 +20633,54 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"jSa" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"jSd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" +"jSc" = ( +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"jSm" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"jSy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"jSg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +/obj/item/tool/kitchen/knife{ + pixel_x = -9; + pixel_y = 3 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"jSj" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jSz" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"jSz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"jSI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/monitor{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"jSJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"jTq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"jSZ" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "jTx" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -20030,20 +20699,29 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) "jTI" = ( -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/dorms) -"jTN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/prop/vehicles{ + icon_state = "van_damaged" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"jTW" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"jTL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/blue/east, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jTQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "jUe" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -20060,88 +20738,119 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"jUs" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"jUN" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "jUY" = ( /obj/structure/machinery/door_control/brbutton{ id = "Reactor_garage_2" }, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) +"jUZ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "48" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"jVc" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/hairlesshide{ + pixel_y = -1 + }, +/obj/item/stack/sheet/hairlesshide{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"jVl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"jVo" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"jVp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "jVq" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"jVH" = ( -/obj/item/paper{ - pixel_x = -4; - pixel_y = 21 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jVU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"jVV" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"jWn" = ( +"jVu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"jWo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"jWC" = ( -/obj/structure/cargo_container/wy/mid{ - health = 5000 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"jWL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 +"jVE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = 10 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jVH" = ( +/obj/item/paper{ + pixel_x = -4; + pixel_y = 21 }, -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jVV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Garage"; + pixel_y = 26 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"jWh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"jWj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"jWS" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 +"jWl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/camera/autoname{ +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/n_rockies) +"jWu" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"jWG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"jWN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + layer = 2.6 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) "jXp" = ( /obj/structure/prop/invuln/rope{ pixel_x = -5; @@ -20152,66 +20861,82 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jXr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +"jXy" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"jXt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) -"jXu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock"; - welded = 1 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"jXH" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" + id = "UD6"; + name = "\improper Shutters" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jXK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "jXL" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen) +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/n_rockies) "jXQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) +"jXR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/wishsoup, +/obj/item/tool/kitchen/utensil/spoon{ + layer = 2.9; + pixel_x = 10; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "jXT" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jXV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +"jYa" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"jYi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "jYj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"jYq" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) "jYr" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -20229,24 +20954,9 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"jYM" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"jYQ" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +"jYV" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) "jZc" = ( /obj/structure/flora/jungle/thickbush, /turf/open/organic/grass, @@ -20257,51 +20967,45 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"jZx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "jZE" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"jZF" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"kaf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"jZQ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"kai" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5 +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kaz" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"jZW" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "68" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kad" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"kaS" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"kaA" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"kaB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/west) +"kaJ" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "kaV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -20310,6 +21014,10 @@ /obj/item/tool/hand_labeler, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"kaW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "kba" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_2" @@ -20323,32 +21031,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"kbk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"kbr" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"kbt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) -"kbD" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) "kbH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -20356,27 +21038,19 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"kbI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) -"kbO" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) "kbS" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) +"kbW" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "kcb" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/west_reactor) @@ -20391,16 +21065,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"kch" = ( -/obj/item/ammo_magazine/rifle/m4ra/ap{ - current_rounds = 0 - }, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"kcn" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) "kco" = ( /obj/structure/platform{ dir = 8 @@ -20408,23 +21072,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/oob) -"kcq" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"kcB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"kcu" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"kcy" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"kcA" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) "kcC" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -20436,16 +21096,25 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"kcF" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"kcG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "kcL" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/n_rockies) -"kcM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) "kcN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20458,25 +21127,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"kcT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"kcY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"kde" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) "kdf" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -20487,6 +21137,17 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) +"kdj" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) "kdm" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer0, @@ -20498,12 +21159,9 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "kdt" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) +/obj/structure/machinery/disposal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "kdx" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer1, @@ -20511,12 +21169,32 @@ "kdy" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"kdF" = ( -/obj/structure/bed/chair/comfy{ +"kdD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"kdE" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"kdF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "kdL" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_2"; @@ -20528,22 +21206,46 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/oob) +"kdW" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/prop/holidays/string_lights{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"kdY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "keb" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kek" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 +"kei" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 }, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "72" }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kek" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"ken" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/east) "keq" = ( /obj/structure/platform_decoration{ dir = 8 @@ -20554,39 +21256,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"ker" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"keN" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "16" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"keW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"kfg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Corporate Liaison Office " - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"kfk" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "kfq" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -20605,96 +21274,101 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"kgZ" = ( -/obj/structure/machinery/recharge_station, -/obj/item/shard{ - icon_state = "medium" +"kfN" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"khb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kfR" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"kgl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -8; + pixel_y = 15 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"kgo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"kgp" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"kgL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"khh" = ( /obj/structure/machinery/power/apc/power/north{ start_charge = 20 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"khi" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"khD" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "khG" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "khI" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "khN" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"khQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"kic" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"kip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"kit" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) -"kiz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"kiR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"khS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/engine, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"kis" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) "kiT" = ( /obj/item/stack/medical/bruise_pack, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"kji" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/tunnel, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) "kjj" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/structure/surface/table/almayer, @@ -20713,26 +21387,54 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/oob) -"kjF" = ( +"kjr" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, /turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "102" + icon_state = "26" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"kjN" = ( -/obj/structure/barricade/handrail/strata{ +"kjw" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"kjC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kjM" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"kka" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"kke" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"kko" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"kks" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kky" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"kkz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"kkK" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/filingcabinet{ density = 0; pixel_x = -8; @@ -20743,118 +21445,66 @@ pixel_x = 8; pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"kkw" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +"kkL" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/platform_decoration{ +/obj/structure/platform{ dir = 4 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"kky" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"kkI" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"kkJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"kkL" = ( -/obj/structure/surface/table/almayer, -/obj/item/disk{ - desc = "a 2000 Russian crime film. It is a sequel to the 1997 film Brother."; - name = "brat 2 disk" - }, -/obj/structure/machinery/recharger{ - layer = 2.9; - pixel_x = 5; - pixel_y = -13 +/obj/structure/platform_decoration{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"kkU" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) -"kkX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) "kll" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" }, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"klu" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" +"klG" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"klH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) -"klJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"klN" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"klT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) -"klT" = ( -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "klW" = ( /obj/effect/decal/cleanable/blood/oil, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"klX" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) "klY" = ( /obj/structure/foamed_metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"klZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +"kma" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "kmd" = ( /obj/structure/prop/turbine, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) -"kmh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) "kmq" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -20871,24 +21521,45 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"knb" = ( +"kmX" = ( +/obj/item/trash/hotdog, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -2; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"kmZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"knf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"knx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"knF" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) +"knG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"knP" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "knT" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ density = 0; @@ -20897,16 +21568,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"knZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) "koj" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -20918,36 +21579,100 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"kol" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "kor" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) +"kox" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "koz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"koD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "koM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"koW" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"koZ" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) -"kpv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, +"koO" = ( /turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/area/lv522/indoors/a_block/bridges) +"koR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"koS" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"koV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"kpj" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/east_central_street) "kpB" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -20958,25 +21683,60 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"kpH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "kpN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) +"kpO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "kpP" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"kpU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "LZ1 Checkpoint"; + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/tool/stamp/denied{ + pixel_x = -11; + pixel_y = 8 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"kpX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"kpY" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "kqb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen) -"kqo" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5" - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +"kqv" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/north) "kqJ" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -20984,72 +21744,55 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"kqM" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"kqR" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "kqT" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"kra" = ( -/obj/structure/machinery/computer3/server/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/east_reactor/south) -"krg" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"krl" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) "krm" = ( /obj/structure/surface/table/almayer{ flipped = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"kro" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "krw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"krx" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_west_street) "kry" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) +"krA" = ( +/obj/structure/window_frame/strata, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "krK" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/wrench, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"ksd" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + layer = 3.1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "ksf" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 8; @@ -21063,56 +21806,31 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"ksp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"ksD" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) -"ksE" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"ksF" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_west_street) -"ksL" = ( -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"ksS" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"ksW" = ( +"ksM" = ( /obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = -1; - pixel_y = 17 +/obj/item/weapon/pole/fancy_cane, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"ksY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"ktf" = ( +/obj/structure/fence{ + layer = 2.9 }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 8; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"ksX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock"; - welded = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_street) "kti" = ( /obj/structure/platform, /obj/structure/platform{ @@ -21128,44 +21846,48 @@ /obj/structure/platform, /turf/open/floor/plating, /area/lv522/oob) -"ktq" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) "ktx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/plating, /area/lv522/indoors/a_block/dorms) -"kty" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/west) -"ktB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) -"ktC" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"ktF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"ktZ" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"kuf" = ( -/obj/structure/bed/chair/comfy{ +"ktP" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/fitness) +"ktS" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"ktT" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"ktX" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"kua" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "kug" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/pistachios, @@ -21174,32 +21896,27 @@ /obj/item/trash/popcorn, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"kul" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" - }, -/obj/structure/barricade/handrail{ - dir = 4 +"kum" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"kuw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"kuz" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Casino"; - pixel_x = 16 - }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) +"kuA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "kuD" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -21209,6 +21926,17 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) +"kvd" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "kvh" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -21216,60 +21944,36 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"kvo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat, -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +"kvn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) "kvs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"kvA" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 11 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"kvD" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "kvV" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"kvY" = ( -/obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "kwg" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"kwh" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) "kwj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -21286,17 +21990,12 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"kwA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"kwG" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"kwI" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) "kwJ" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/north_command_centre) @@ -21307,17 +22006,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"kwO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"kwS" = ( -/obj/structure/cargo_container/lockmart/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +"kxf" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "kxq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/packaged_burrito, @@ -21327,36 +22019,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"kxu" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"kxA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"kxJ" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"kxt" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "66" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kxH" = ( +/obj/structure/prop/server_equipment/yutani_server/off, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) -"kxT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"kyd" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/area/lv522/atmos/command_centre) +"kxR" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"kyi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"kym" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "kyo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21364,38 +22059,22 @@ /obj/item/tool/pickaxe/silver, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"kyv" = ( -/obj/structure/girder, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"kyy" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "kyB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"kyC" = ( +"kyG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"kyF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 3 - }, -/obj/structure/machinery/microwave{ - pixel_y = 15 +/obj/structure/barricade/metal{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "kyH" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -21404,22 +22083,19 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"kyM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kyS" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) "kzl" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"kzm" = ( -/obj/item/stack/sandbags_empty/small_stack, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) "kzr" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, @@ -21434,36 +22110,27 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) +"kzx" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"kzD" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"kzS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) "kzT" = ( /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"kzY" = ( -/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/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kAg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, +"kAh" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "kAj" = ( @@ -21471,7 +22138,26 @@ /obj/effect/landmark/survivor_spawner/lv522_forecon_squad_leader, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kAo" = ( +"kAs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) +"kAw" = ( +/obj/structure/machinery/suit_storage_unit{ + pixel_x = -9 + }, +/obj/structure/machinery/suit_storage_unit{ + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"kAE" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"kAF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/fence{ layer = 2.9 @@ -21483,16 +22169,21 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"kAz" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) +"kAL" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"kBh" = ( +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_x = -9; + pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "kBj" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/prison, @@ -21503,28 +22194,39 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"kBp" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "kBq" = ( /obj/structure/girder, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) +"kBr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kBv" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"kBx" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) +"kBy" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "kBz" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/prison, @@ -21552,49 +22254,27 @@ /turf/open/floor/plating, /area/lv522/atmos/filt) "kBN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kBO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"kBR" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) "kBT" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kBW" = ( -/obj/structure/largecrate/random/barrel{ - layer = 5.1; - pixel_x = 13; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"kCo" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"kCx" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" +"kCj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"kCt" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "kCF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21604,19 +22284,54 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"kDm" = ( -/obj/effect/landmark/monkey_spawn, +"kCH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"kCL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/command_centre) -"kDG" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kDq" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "74" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kDr" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, /turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) +"kDy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kDE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"kDK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "kDY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21634,10 +22349,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"kEK" = ( -/obj/structure/prop/static_tank/water, +"kEq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/reactor_garage) +"kEv" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"kEH" = ( /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/area/lv522/indoors/b_block/bridge) +"kEM" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "kEN" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/prop{ @@ -21649,15 +22379,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"kER" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"kES" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "kFd" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -21670,72 +22397,80 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"kFg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"kFe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) -"kFj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/cash_register/off/open{ - pixel_y = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"kFk" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) +"kFg" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/device/radio/off{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"kFl" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "kFo" = ( /obj/item/clothing/suit/storage/marine/M3G, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"kFs" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 +"kFq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 4 }, +/obj/structure/machinery/light, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"kFz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/area/lv522/landing_zone_1/ceiling) "kFB" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"kFJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/minihoe{ - pixel_y = -2 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 2; - pixel_y = 9 +"kFE" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"kFL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/wy/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kFN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/area/lv522/indoors/b_block/bridge) +"kFI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "kFP" = ( /obj/structure/platform/strata{ dir = 8 @@ -21743,6 +22478,12 @@ /obj/structure/platform/strata, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) +"kFV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "kGa" = ( /obj/structure/largecrate/random{ pixel_x = -5 @@ -21756,80 +22497,61 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"kGp" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"kGq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"kGD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"kGQ" = ( +"kGw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"kGR" = ( -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) "kGX" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"kHi" = ( +"kHe" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"kHu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"kHm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice9"; + pixel_x = -5 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"kHp" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"kHM" = ( +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"kHx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/hallway) "kHN" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_1) +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) "kHP" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/uscm_mre, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kHQ" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "kIj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"kIq" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/garden_bridge) +"kIk" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"kIm" = ( +/obj/structure/largecrate/random/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) "kIs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -21838,227 +22560,212 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"kIu" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Storage"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) -"kIT" = ( -/obj/structure/surface/table/almayer, -/obj/item/book{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/book{ - pixel_x = 5; - pixel_y = 5 - }, +"kIz" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kIU" = ( +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"kIB" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"kIP" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "kIV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"kJl" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"kJq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/filt) -"kJs" = ( +"kJa" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/bikehorn, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"kJf" = ( /obj/structure/stairs/perspective{ - dir = 1; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/platform{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "kJO" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"kJY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/pole/fancy_cane, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"kKe" = ( +"kKd" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/prize/deathripley{ + pixel_x = -7; + pixel_y = 17 + }, +/obj/item/toy/prize/ripley{ + pixel_x = 4; + pixel_y = 7 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"kKq" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"kKJ" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"kKX" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"kKj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) -"kLm" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"kLv" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"kLE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"kLF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Chunk 'N Dump" +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"kKK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "99" }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"kLT" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"kMk" = ( +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kLb" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"kMl" = ( +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/newspaper{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kLm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"kMm" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 5 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"kLB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"kLL" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kMa" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/matches{ + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"kMz" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"kMv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"kMP" = ( +/obj/structure/surface/rack, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/structure/machinery/light/double, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"kMS" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"kMG" = ( -/obj/structure/platform{ +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kMW" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "75" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"kMO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "kNe" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"kNp" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"kNt" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kNv" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ +"kNE" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"kNB" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"kNT" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_street) -"kNS" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"kNU" = ( /obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 + dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"kNT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "kOa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"kOi" = ( -/obj/structure/platform{ +"kOf" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"kOu" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"kOw" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"kOl" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/tofukabob, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "kOE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) +"kON" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"kOO" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "kOQ" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -22077,24 +22784,31 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"kPg" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" +"kOW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_y = 9 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"kPh" = ( +/obj/item/storage/firstaid/adv, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"kPd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kPp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"kPw" = ( -/obj/structure/largecrate/random/mini, -/turf/open/asphalt/cement/cement3, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"kPt" = ( +/obj/structure/barricade/wooden{ + dir = 4; + layer = 5.3 + }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "kPO" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -22102,32 +22816,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"kPR" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kPX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"kQe" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"kQo" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) "kQJ" = ( /obj/item/explosive/mine/active{ dir = 8 @@ -22161,35 +22849,49 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "kRe" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "kRg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) +"kRu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"kRE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) "kRI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"kRK" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) +"kRN" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/reactor_garage) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "kRQ" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/security) +"kRT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) "kRZ" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -22197,6 +22899,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) +"kSa" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"kSi" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "27" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "kSm" = ( /obj/structure/machinery/light{ dir = 8 @@ -22206,6 +22916,17 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"kSp" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "kSs" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -22220,17 +22941,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"kSv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) "kSC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"kSE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"kSG" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kSP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "kSR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -22238,29 +22994,17 @@ /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kTb" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 20 +"kTe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"kTg" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) +"kTf" = ( +/obj/item/stack/folding_barricade, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/clothing/gloves/boxing/blue{ - pixel_x = 5; - pixel_y = -6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "kTn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -22270,37 +23014,47 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kTz" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/filt) -"kTK" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/watertank{ - layer = 2.9 +"kTu" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/eat, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"kTx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Corpo-Bridge-Lockdown" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"kTT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/lv522/indoors/a_block/security) +"kTE" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/east_reactor/west) +"kTG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"kTV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) "kUo" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"kUB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"kUG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"kUv" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) "kUJ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -22310,87 +23064,132 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kUK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"kUS" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"kUT" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) +"kUY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/cpr_dummy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "kVf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/obj/structure/largecrate/random, +/obj/item/storage/box/packet/high_explosive{ + pixel_x = -5; + pixel_y = -14 + }, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "kVh" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"kVr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 +"kVi" = ( +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"kVs" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 }, -/obj/effect/landmark/corpsespawner/wy/manager, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/east) +"kVB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/dorms) +"kVC" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"kVD" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "kVG" = ( /obj/structure/cargo_container/kelland/left, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"kVM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) +"kVI" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "kVO" = ( /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"kVQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"kVS" = ( -/obj/vehicle/powerloader{ - dir = 4; - layer = 3.5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) "kVV" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"kWr" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"kWA" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"kWc" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"kWd" = ( +/obj/item/explosive/mine/active{ + dir = 8 }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/garage) -"kXd" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) +"kWo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"kWz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"kWL" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kWO" = ( +/obj/structure/closet/crate/explosives, +/obj/item/storage/box/explosive_mines, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kWT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/casino) "kXe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -22403,32 +23202,21 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kXu" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "flagpole"; - layer = 4.11; - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"kXE" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"kXG" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "73" +"kXt" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/fitness) +"kXO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = 16; + pixel_y = 7 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"kXP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "kXY" = ( /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) @@ -22438,29 +23226,42 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"kYt" = ( -/obj/structure/machinery/light{ - dir = 8; - pixel_y = 16 +"kYw" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"kYD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "kYH" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kYN" = ( -/obj/item/stack/sheet/metal, +"kYR" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"kYX" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/kitchen) +"kZc" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"kZf" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "5" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "kZj" = ( /obj/item/ammo_magazine/rifle/m4ra/ap{ current_rounds = 0 @@ -22472,79 +23273,50 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"kZz" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "kZB" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kZC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"kZG" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "24" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"kZI" = ( -/obj/item/pamphlet/skill/powerloader, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"kZP" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) -"kZU" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/east_central_street) -"laz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray/empty, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/outdoors/w_rockies) -"laD" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"laI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/command_centre) -"laM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"laQ" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +"kZF" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, /turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"laS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"laU" = ( +/area/lv522/outdoors/colony_streets/north_street) +"kZW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"laa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/prison, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) +"laC" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"laK" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"laT" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3; + pixel_y = 9 + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_street) "laX" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8; @@ -22560,63 +23332,119 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"lbc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"lbi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"lbx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +"lbf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"lbq" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"lbv" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "46" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lby" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "lbA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"lbC" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) "lbD" = ( /obj/item/prop/colony/usedbandage{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"lbF" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, +"lbP" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lbQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/east) +"lbW" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"lca" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"lco" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"lcN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"lcX" = ( /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"lcd" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" +/area/lv522/indoors/a_block/hallway) +"lcZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"lde" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 24 }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"ldj" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"ldp" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "ldr" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ldu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -22634,29 +23462,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"ldQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"leh" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "33" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"lei" = ( -/obj/structure/surface/table/gamblingtable, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) "lep" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -22665,111 +23470,100 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"ler" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"leq" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan4/east, +/area/lv522/indoors/a_block/medical) +"lex" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_street) -"leS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -6; - pixel_y = 15 +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"leR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/item/trash/plate, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "leV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"leW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, +"lfg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"leZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/clipboard{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"lfN" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lgB" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"lgE" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"lfk" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"lhf" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +/area/lv522/indoors/a_block/bridges) +"lfo" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"lfP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"lfT" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/west) +"lgb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"lhi" = ( -/obj/item/ammo_box/magazine/misc/mre, -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/trash/tray{ - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"lhr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"lgl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement4, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"lgs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/central_streets) -"lht" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -12; - pixel_y = 4 +"lgv" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 14; - pixel_y = 4 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"lgH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"lgR" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"lhx" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"lhv" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "lhK" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; @@ -22777,67 +23571,65 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"lhN" = ( -/obj/structure/bed/chair{ +"lin" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"lhY" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"lik" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"liB" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "99" +/obj/structure/platform{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"lix" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "liN" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ljc" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 +"liP" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) +"liR" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red{ - pixel_x = -7; - pixel_y = 26 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"liV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"lje" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ljo" = ( +/obj/structure/largecrate/random/barrel{ + layer = 5.1; + pixel_x = 13; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) -"ljh" = ( -/obj/structure/closet/crate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) "ljq" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -22847,10 +23639,6 @@ dir = 10 }, /area/lv522/indoors/c_block/mining) -"ljw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) "ljA" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -22860,24 +23648,36 @@ }, /turf/open/gm/river, /area/lv522/atmos/filt) -"ljM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"ljT" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"ljY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Northlock" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"lke" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"lkb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"lkf" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"lkh" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 12 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "lkj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -22885,70 +23685,53 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"lkm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) "lko" = ( /obj/item/stack/sheet/metal, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"lkr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"lky" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +"lkw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) "lkH" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"lkJ" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/command_centre) -"lkL" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 +"lkZ" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/filt) +"llq" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) -"llh" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"llk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/server_equipment/laptop/on{ - layer = 3.1; - pixel_y = 10 +/area/lv522/atmos/east_reactor/south) +"llt" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"llT" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"llB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"llD" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"llI" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) "llU" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/sand_white/layer0, @@ -22963,85 +23746,62 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"lmc" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"lmf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"lml" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 +"lmt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/stairs/perspective{ +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"lmB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"lmn" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"lmE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/corporate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lmG" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 + name = "\improper Marshals Office Armory"; + req_access = null }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"lmG" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "lmJ" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"lmL" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"lmK" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) "lmN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"lmY" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/south) -"lna" = ( -/obj/structure/fence, +"lmT" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"lmV" = ( +/obj/structure/fence{ + layer = 2.9 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 @@ -23050,50 +23810,34 @@ icon_state = "S" }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"lng" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/area/lv522/outdoors/colony_streets/north_west_street) +"lmY" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor/south) +"lna" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"lni" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"lnh" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"lnn" = ( -/obj/structure/prop/vehicles/crawler, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"lnp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen{ - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 8 +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"lnB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "lnD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Garage"; - pixel_y = 26 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"lnE" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) "lnL" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -23109,64 +23853,62 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"lnW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"loi" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"loo" = ( -/obj/structure/machinery/autolathe, +"loh" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/east) +"lol" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"lor" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "loz" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"loH" = ( -/obj/structure/bed/chair{ - can_buckle = 0; +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"loF" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/north_command_centre) +"loR" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_west_street) +"loT" = ( +/obj/structure/barricade/deployable{ 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 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"loI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Equipment" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"lpb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"lpm" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"lpo" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"loW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) +/area/lv522/indoors/lone_buildings/chunk) +"lpl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/stack/nanopaste{ + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "lpq" = ( /obj/structure/bed/stool, /obj/item/prop/alien/hugger, @@ -23176,10 +23918,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) -"lpE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +"lpB" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "lpH" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -23187,6 +23933,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"lpS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "lpY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -23199,62 +23952,69 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"lqf" = ( -/obj/structure/largecrate/random/barrel/green{ - pixel_x = -2 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"lqp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"lqz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"lqI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 9; - pixel_y = 25 +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"lqD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"lqK" = ( -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"lrc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) +"lrf" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) "lrm" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"lrC" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +"lrA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lrD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) -"lrH" = ( -/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"lrT" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"lrI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"lrW" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"lsc" = ( /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) +/area/lv522/atmos/cargo_intake) +"lso" = ( +/obj/structure/coatrack{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/coatrack{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ + pixel_y = 5 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 10; + pixel_y = 27 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "lsD" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -23262,6 +24022,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"lsF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "lsG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -23269,15 +24035,20 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"ltb" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "ltf" = ( /obj/structure/platform{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"lth" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) +"ltr" = ( +/obj/structure/closet/crate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "lty" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -23291,6 +24062,15 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"ltO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "lui" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green{ @@ -23305,26 +24085,16 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"luw" = ( -/obj/structure/bed/chair{ - dir = 1 +"luV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"luK" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"luQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "lvb" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -23335,59 +24105,64 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lvh" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"lvq" = ( -/obj/structure/pipes/standard/tank/oxygen{ - dir = 1 +"lvk" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"lvs" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) +/turf/open/floor/corsat/squares, +/area/lv522/oob) "lvH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"lvJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"lvZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"lwd" = ( -/obj/structure/pipes/vents/pump, +"lvR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"lwp" = ( -/obj/structure/machinery/light, +/area/lv522/indoors/a_block/fitness/glass) +"lwb" = ( +/obj/structure/cargo_container/kelland/right, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"lwB" = ( -/obj/item/prop/alien/hugger, +/area/lv522/indoors/c_block/mining) +"lwl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"lwq" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "102" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lwt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges) +"lwx" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/southwest, -/area/lv522/indoors/a_block/dorms) -"lwS" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"lwy" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"lwE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"lwM" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 6 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"lwU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"lwP" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "lwW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23401,19 +24176,39 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lxz" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 +"lxe" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"lxo" = ( +/obj/structure/barricade/wooden, +/obj/item/shard{ + icon_state = "medium" }, -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"lxt" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"lxv" = ( +/obj/item/ammo_magazine/rifle/m4ra/ap{ + current_rounds = 0 + }, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"lxB" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lxK" = ( +/turf/open/floor/coagulation/icon8_8, +/area/lv522/oob) "lxL" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) @@ -23421,91 +24216,75 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) -"lxO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"lxP" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"lxQ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/trash/plate, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Pressuredoor"; - name = "remote door-control"; - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"lxS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "lxV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "lxZ" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lya" = ( -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) "lyg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lyo" = ( -/obj/structure/bed/chair{ - dir = 4 +"lyh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"lyE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"lyp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/cargo_intake) +"lyA" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"lyJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "lyP" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) -"lyV" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"lzg" = ( -/obj/structure/machinery/light{ - dir = 1 +"lyR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Armoury-Lockdown"; + name = "remote door-control" + }, +/obj/item/limb/hand/l_hand{ + dir = 1; + pixel_x = 9; + pixel_y = 3 }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"lyU" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lzn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "lzw" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, @@ -23514,91 +24293,69 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"lzF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) "lzU" = ( /obj/structure/platform{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"lzZ" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "lAa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"lAg" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers"; + pixel_y = 9 + }, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers" + }, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers"; + pixel_y = -8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "lAm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) -"lAv" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"lAH" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"lAU" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) "lAW" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibleg" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 6; - pixel_y = 19 +/turf/open/floor/coagulation/icon0_8, +/area/lv522/oob) +"lBc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"lBq" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"lBe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"lBh" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Southwest Landing Zone" - }, -/turf/open/floor/plating, -/area/shuttle/drop1/lv522) -"lBm" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"lBv" = ( -/obj/structure/target{ - name = "punching bag" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "lBw" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -23612,98 +24369,143 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"lBM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"lCb" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +"lBO" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "70" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "lCh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lCp" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lCC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"lCH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/n_rockies) +"lCN" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"lCR" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"lCV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lCW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"lDe" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "sedimentation_A_1"; + layer = 3.1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"lDj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"lDB" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"lCH" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"lEa" = ( +/obj/item/trash/barcardine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"lEi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) -"lCW" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"lDa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"lDj" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"lDT" = ( -/obj/effect/spawner/gibspawner/robot, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"lDV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +/area/lv522/indoors/a_block/corpo) +"lEq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"lEt" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"lDY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) -"lEg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"lEC" = ( +/obj/structure/machinery/shower{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"lEi" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 10 +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"lEL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/pen, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lEE" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"lEU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"lFh" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_x = -1; - pixel_y = 2 + pixel_y = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"lFE" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lFG" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "lFO" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -23716,62 +24518,25 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"lFT" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"lFZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"lGh" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 +"lFP" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"lGi" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lFU" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) -"lGk" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"lGs" = ( -/obj/structure/prop/structure_lattice, +"lGo" = ( /obj/structure/stairs/perspective{ - dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"lGO" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"lHb" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"lHk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "lHu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/disposal{ @@ -23785,24 +24550,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"lHB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"lHD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"lHA" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/fence, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "lHL" = ( /obj/structure/bed/chair{ dir = 1 @@ -23813,36 +24566,28 @@ /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) "lHQ" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) "lHV" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lHW" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 2.9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "lHY" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/flask/marine, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lIm" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel/far) -"lIE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) "lIF" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "45" +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"lIH" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "lIR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -23852,87 +24597,19 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"lIS" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"lIT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"lIV" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) "lJl" = ( /obj/structure/platform_decoration, /turf/open/gm/river, /area/lv522/atmos/filt) "lJm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"lJz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"lJA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"lJE" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"lJP" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"lJR" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "65" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"lKb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"lJv" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) "lKu" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -23944,99 +24621,56 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"lKZ" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"lLb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +"lKy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"lKV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"lLe" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"lLg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "lLl" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"lLs" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 11; - pixel_y = 16 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/admin) -"lLw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"lLn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) "lLA" = ( /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) -"lLM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"lMs" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 +"lLS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"lMD" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"lLV" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"lMw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "lMH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"lMO" = ( -/obj/structure/window_frame/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"lMP" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"lMU" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +"lMR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "lNf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -24044,6 +24678,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"lNk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/southwest, +/area/lv522/indoors/a_block/medical) "lNl" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison, @@ -24062,23 +24700,11 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"lNF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"lNS" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) -"lOb" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) +"lOc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "lOi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -24092,34 +24718,26 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"lOu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/southeast, +/area/lv522/indoors/a_block/medical) "lOF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"lOG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"lOY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/device/radio/off{ - pixel_x = 3; - pixel_y = 6 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"lOS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"lPe" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"lPc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/browncorner, +/area/lv522/oob) "lPf" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -24130,24 +24748,35 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) +"lPk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "lPq" = ( /obj/structure/platform{ dir = 4 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"lPu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lPB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"lPD" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/largecrate, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"lPE" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"lPA" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "63" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "lPY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -24162,9 +24791,36 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"lQE" = ( +"lQf" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"lQs" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "15" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lQx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/area/lv522/indoors/a_block/fitness) +"lQy" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "6" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lQF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"lQJ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "lQS" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -24173,56 +24829,71 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"lQU" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"lQW" = ( -/obj/structure/platform_decoration{ +"lRi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"lRd" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = -1 }, -/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"lRm" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"lRk" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"lRA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lRD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "lRF" = ( /obj/structure/girder, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lRJ" = ( -/obj/item/trash/uscm_mre, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +"lRI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"lRN" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"lRL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"lRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"lRW" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"lSd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "lSg" = ( /obj/structure/surface/table/almayer, /obj/item/tool/warning_cone{ @@ -24239,27 +24910,24 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lSj" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/plaincakeslice{ - pixel_x = 5; - pixel_y = 8 +"lSm" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + layer = 3.1; + name = "trash bag"; + pixel_x = 4; + pixel_y = 21 }, -/obj/item/reagent_container/food/snacks/plaincakeslice, -/obj/structure/machinery/light, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "lSF" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"lSI" = ( -/obj/item/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) "lTd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -24267,60 +24935,41 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"lTe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) "lTi" = ( /obj/structure/girder, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"lTo" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"lTp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) -"lTu" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" +"lTn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) "lTw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lTC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"lTE" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"lTI" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"lTJ" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"lTK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/light, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "lTQ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -24333,12 +24982,13 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"lTW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) +"lTX" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"lUb" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "lUh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -24355,26 +25005,15 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"lUo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) "lUv" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"lUx" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) +"lUw" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "lUJ" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -24392,10 +25031,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"lVd" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) "lVp" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen/glass) @@ -24415,22 +25050,34 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"lWi" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/outdoors/colony_streets/central_streets) -"lWt" = ( +"lWp" = ( /obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"lWB" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "26" +/obj/item/tool/pen/red/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"lWz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"lWG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/mre_pack/meal1{ + desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; + name = "\improper UA Prepared Meal (cornbread)"; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "lWW" = ( /obj/item/trash/crushed_cup{ pixel_x = -4; @@ -24438,61 +25085,81 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"lXc" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"lXt" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) +"lXk" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"lXF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "lXG" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Meeting Room"; - pixel_y = 26 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lXN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lXH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"lXI" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"lXJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) -"lXO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) +"lXV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "lXY" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"lYc" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"lYp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) -"lYr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" +"lYk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lYo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"lYw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "lYG" = ( /obj/structure/platform_decoration{ dir = 8 @@ -24518,89 +25185,60 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"lYZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) "lZc" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lZg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Marshals Office"; - req_access = null - }, +"lZn" = ( +/obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"lZt" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"lZS" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"lZF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lZH" = ( /obj/structure/barricade/deployable{ - dir = 4 + dir = 1 }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/admin) +"lZU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"mah" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"lZX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"mae" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"man" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "max" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"maC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) "maF" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -24608,19 +25246,31 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mbf" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/bananaseed{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/seeds/berryseed, -/obj/structure/machinery/light{ - dir = 4 +"maJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"maK" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) +"mbc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"mbd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "mbr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -24647,6 +25297,11 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"mbJ" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "mbO" = ( /obj/structure/cargo_container/horizontal/blue/bottom{ pixel_x = 20 @@ -24660,285 +25315,287 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"mbW" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"mci" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"mbV" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Garage"; + pixel_x = -16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "mck" = ( -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "mco" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"mcM" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"mcT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"mcU" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, +"mcp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"mda" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"mdo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "mdp" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/tool/weldingtool, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"mdy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 +"mdD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) +"mdR" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"meb" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"mee" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) +"meK" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"meP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_x = 12; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 20; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"meQ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"meT" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_1"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_2"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_3"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_6"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"meU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"mfa" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"mdD" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mff" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"mdF" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/cargo_container/wy/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"mfg" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"mfi" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"mdZ" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 12 +/area/lv522/outdoors/colony_streets/north_west_street) +"mfl" = ( +/obj/structure/fence{ + layer = 2.9 }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Secure_Master_Armoury_2"; - name = "remote door-control" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"meb" = ( -/obj/structure/largecrate/random{ - layer = 2.9 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"mee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"mek" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement/cement12, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/south_west_street) -"mel" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"meT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"meV" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_east_street) -"meX" = ( -/obj/structure/machinery/light{ - dir = 1 +"mfq" = ( +/obj/structure/largecrate/random/barrel{ + layer = 2.9 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"meY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"mfu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) -"mfc" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/cargo_container/wy/mid, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"mfJ" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/hallway) -"mfl" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"mfs" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"mgb" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"mfx" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"mfy" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"mgg" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 }, /obj/structure/flora/bush/ausbushes/var3/sunnybush{ - pixel_y = 13 + icon_state = "fernybush_2"; + pixel_y = 10 }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"mgi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mfE" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"mfI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 + dir = 1 }, -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"mfK" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"mgp" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"mgs" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"mgv" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"mgy" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"mgb" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"mgm" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) "mgB" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/vial, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"mgF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) "mgJ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"mgK" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_west_street) -"mhf" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 7 +"mgL" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"mhm" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mgQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"mhj" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"mhv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "mhx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"mhF" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "mhN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/surface/rack, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"mhP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "mhT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24946,11 +25603,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"mih" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, +"mhU" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +/area/lv522/indoors/b_block/bridge) +"mhV" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/janitorialcart, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"mia" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/nw_rockies) +"mif" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) "mil" = ( /obj/structure/platform{ dir = 1 @@ -24963,38 +25654,43 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"mip" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "miw" = ( -/obj/structure/barricade/wooden{ +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"miB" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"miC" = ( +/obj/structure/prop/invuln/remote_console_pod, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + density = 1; + layer = 3.5; + pixel_y = -9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/shuttle/drop2/lv522) +"miE" = ( +/obj/structure/barricade/deployable{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"miK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"miN" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"miO" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"miP" = ( -/obj/structure/powerloader_wreckage, /turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"miX" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +/area/lv522/atmos/east_reactor/south) "miZ" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -25002,40 +25698,31 @@ }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) -"mjh" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "mjs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"mjv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) "mjz" = ( /obj/structure/dispenser/oxygen, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"mjB" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) "mjF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"mjJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"mjO" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "mkm" = ( /obj/structure/closet/crate, /obj/effect/decal/warning_stripes{ @@ -25044,163 +25731,96 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"mky" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"mkG" = ( +"mkK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"mkL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/southeast, -/area/lv522/indoors/a_block/dorms) -"mkP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"mkQ" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "mkW" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"mlb" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "mld" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"mlh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"mlk" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"mln" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"mlC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"mlD" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"mlr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/static_tank/water, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/atmos/sewer) "mlE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"mlM" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"mmi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - req_one_access_txt = "100" +"mlJ" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" }, +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"mlN" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"mmC" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"mmP" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"mmS" = ( +/area/lv522/atmos/way_in_command_centre) +"mmR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"mmT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"mnd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"mnn" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"mmS" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"mmZ" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) +"mne" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/reactor_garage) +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "mnr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"mnw" = ( -/obj/item/clothing/suit/storage/marine/M3S, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"mnC" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"mnJ" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"mnK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"mnM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 + dir = 10 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"mnw" = ( +/obj/item/clothing/suit/storage/marine/M3S, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"mnF" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "mnU" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/rifle/l42a/extended{ @@ -25208,97 +25828,71 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"mnW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"moh" = ( -/obj/item/stack/sheet/metal, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, +"mnZ" = ( +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) -"moj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"moJ" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"mot" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"mou" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/barricade/handrail{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"moM" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"moN" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "moO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) -"moR" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_2) -"mpt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) -"mpv" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) "mpx" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mpG" = ( /obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, /obj/item/trash/plate{ - pixel_y = 8 + pixel_x = 1; + pixel_y = 6 }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "mpN" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.2 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"mpW" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "mqa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"mqd" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/ghettosmes, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) +"mqh" = ( +/obj/structure/closet/toolcloset, /turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/area/lv522/indoors/lone_buildings/engineering) "mqk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -25310,10 +25904,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"mqp" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) "mqx" = ( /turf/open/gm/river, /area/lv522/atmos/sewer) @@ -25329,37 +25919,29 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"mqF" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "mqH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"mqS" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"mqV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 5 +"mrG" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"mqX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"mrC" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"mrE" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "40" +/obj/structure/platform{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mrM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25367,12 +25949,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"mrR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +"mrQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"mrT" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_street) +"mrX" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "mse" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, @@ -25381,14 +25968,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) +"msl" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "msn" = ( /obj/structure/surface/table/almayer, /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"mso" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "msB" = ( /obj/item/reagent_container/food/snacks/stewedsoymeat{ pixel_y = -6 @@ -25402,25 +25989,44 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"msK" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"mtk" = ( +"msF" = ( +/obj/item/stack/sheet/wood/large_stack, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"msL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"mta" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/n_rockies) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"mtp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "mts" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/structure/surface/table/woodentable/fancy, +/obj/item/toy/deck{ + pixel_x = 2; + pixel_y = 4 }, -/obj/item/clothing/under/suit_jacket/stowaway, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "mtt" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_2" @@ -25432,56 +26038,26 @@ /obj/structure/bed/chair, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"mtz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +"mtB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mtC" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "mtI" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"mtT" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"mtY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) "mua" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/filt) -"mub" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"muc" = ( -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"mui" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +"muf" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) "mum" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -25489,105 +26065,76 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mun" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"muC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"muu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"muK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"muG" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"mvn" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"mvr" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/clothing/shoes/marine, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_foot"; - name = "left foot"; - pixel_x = 5; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"mvv" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; +/obj/item/device/flashlight/lamp{ pixel_x = -8; - pixel_y = 11 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; - pixel_x = -2; - pixel_y = -13 + pixel_y = 4 }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; +/obj/item/tool/lighter/random{ pixel_x = 9; - pixel_y = 8 + pixel_y = 4 }, -/obj/item/tool/crowbar/red{ - pixel_x = 8; - pixel_y = 8 +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"muM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"muN" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"muZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"mvg" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"mvj" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"mvt" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/nw_rockies) "mvB" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"mvF" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/blink{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/toy/deck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) +"mwg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) "mwn" = ( -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 12 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 25 - }, +/obj/structure/largecrate/random/barrel/white, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "mwp" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"mwB" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"mws" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "mwC" = ( /obj/item/clothing/head/welding, /obj/effect/decal/warning_stripes{ @@ -25596,83 +26143,52 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"mwM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mwV" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" }, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/security) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "mwX" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"mxx" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"mxA" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"mxE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"mxM" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 10 - }, +"mxj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"mxL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"mxN" = ( +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) "mxO" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, /turf/open/floor/plating, /area/lv522/indoors/c_block/t_comm) -"mxT" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/oob) -"myd" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "69" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"myk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"myl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 +"myo" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/structure/machinery/light/small, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"myr" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) +/area/lv522/indoors/a_block/bridges/corpo) +"myu" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/atmos/command_centre) "myz" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) @@ -25684,105 +26200,117 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "myK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/oob) +"myT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "myV" = ( /obj/item/clothing/suit/storage/marine/light, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) "myY" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mzf" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, +/obj/item/circuitboard/apc, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mzg" = ( -/obj/structure/machinery/light/double, -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/indoors/c_block/mining) -"mzi" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"mzn" = ( -/obj/structure/platform{ +/area/lv522/indoors/a_block/dorms/glass) +"mza" = ( +/obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) -"mzx" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"mzb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"mzg" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) +"mzj" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"mzm" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"mzz" = ( +/area/lv522/indoors/a_block/fitness) +"mzs" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/east_central_street) -"mzH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"mzL" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"mzB" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"mzE" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) +"mzF" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"mzW" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/nw_rockies) "mzX" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"mAb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 +"mzY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"mAc" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/obj/item/prop/alien/hugger{ + pixel_x = 13; + pixel_y = -5 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "mAg" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"mAj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mAv" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "mAD" = ( /obj/structure/closet/secure_closet/detective, /turf/open/floor/wood, @@ -25798,33 +26326,43 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "mAH" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/girder/reinforced, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mAK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"mAQ" = ( +/obj/item/ammo_magazine/smg/nailgun{ + current_rounds = 0 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "mAR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"mAS" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 + }, +/obj/structure/cargo_container/kelland/left{ + layer = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) "mAW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"mBb" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) "mBc" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -25832,79 +26370,119 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"mBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mBd" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"mBe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"mBq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_y = 4 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"mBv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv/empty{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_container/hypospray/autoinjector/kelotane{ + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mBC" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "73" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "mBF" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bar) -"mCb" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 6 +"mBI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/command_centre) +"mBN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"mCp" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "mCq" = ( /obj/item/storage/beer_pack, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"mCr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) "mCA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"mCO" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/landing_zone_1) -"mCU" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"mDe" = ( +"mCG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/reactor_garage) -"mDi" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) +/area/lv522/indoors/c_block/bridge) +"mDi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"mDs" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "mDw" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"mDy" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"mEt" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +"mDH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"mEh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "mEx" = ( /obj/item/stack/rods, /turf/open/floor/prison, @@ -25913,43 +26491,46 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"mEC" = ( +"mEH" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"mEJ" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"mEX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"mEY" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"mFl" = ( /obj/structure/stairs/perspective{ - dir = 1; + dir = 9; icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"mEF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/light{ +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"mEM" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"mFn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mES" = ( -/obj/structure/cargo_container/lockmart/mid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"mEX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) "mFA" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -25958,16 +26539,25 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"mFC" = ( +"mFP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"mFS" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"mFY" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) -"mFX" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) "mFZ" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -25983,118 +26573,149 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/reactor_garage) -"mGE" = ( -/obj/item/shard{ - icon_state = "medium" +"mGr" = ( +/obj/structure/fence{ + layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"mGF" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"mGJ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"mGV" = ( -/obj/structure/barricade/deployable{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/east_central_street) +"mGx" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/coagulation/icon2_0, +/area/lv522/oob) +"mGA" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"mHc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"mHd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/item/storage/firstaid/adv/empty{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "mHo" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"mHp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_east_street) "mHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 11; + pixel_y = 24 }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "mHv" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"mHB" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "mHC" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"mHF" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "4" - }, -/obj/item/clothing/under/marine/officer/pilot/flight, -/obj/item/clothing/suit/storage/jacket/marine/pilot{ +"mHE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/server_equipment/laptop/on{ layer = 3.1; - pixel_y = 2 + pixel_y = 10 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"mHG" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"mHH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"mHT" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mHU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"mHY" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"mIP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/southeast, -/area/lv522/indoors/a_block/medical) -"mIX" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer{ - pixel_y = 15 - }, -/obj/item/frame/table/almayer{ - pixel_x = 10; - pixel_y = 11 - }, -/obj/item/frame/table/almayer{ - pixel_y = 1 +"mIj" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mJc" = ( -/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) +"mIl" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"mIs" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"mJa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 3 + }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"mJf" = ( -/obj/structure/surface/table/almayer, -/obj/item/co2_cartridge{ - pixel_x = -8; - pixel_y = 14 +"mJg" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "101" }, -/obj/item/clothing/accessory/armband/engine, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mJi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor) "mJp" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"mJN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"mJC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "mJQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -26117,80 +26738,56 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"mKc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box/empty{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"mKf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"mKl" = ( -/obj/structure/filingcabinet{ - density = 0; - layer = 3.1; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -10; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"mKZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 6; - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/largecrate/random, +"mJT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"mLd" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 2 - }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"mLe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_east_street) -"mLh" = ( -/obj/structure/barricade/deployable, +/area/lv522/indoors/a_block/medical) +"mKd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"mKh" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"mKC" = ( +/obj/item/toy/plush/farwa{ + desc = "A Farwa plush doll. Once soft and comforting now just really wet."; + name = "Soaked farwa plush doll" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"mKF" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"mKR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"mLn" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"mKW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"mLo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"mLi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"mLJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"mLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "mLO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -26220,16 +26817,41 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"mLY" = ( -/obj/structure/platform_decoration{ - dir = 8 +"mMi" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) -"mMd" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mMo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"mMt" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "mMv" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -26240,38 +26862,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mMx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"mMB" = ( +"mMJ" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"mML" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 8 }, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mMO" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"mMW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"mMY" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) "mNc" = ( /obj/structure/machinery/floodlight, /turf/open/floor/prison, @@ -26279,38 +26897,39 @@ "mNm" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"mNs" = ( -/obj/item/tool/lighter/zippo{ - layer = 3.1; - pixel_x = 12; - pixel_y = 18 +"mNF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"mNO" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"mNN" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mNS" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/cobweb, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/area/lv522/indoors/c_block/casino) "mNX" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"mNZ" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +"mOk" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mOy" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/blood/oil, @@ -26318,6 +26937,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"mOC" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) "mOE" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/north_street) @@ -26338,27 +26966,40 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"mOY" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "mPc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) +"mPf" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/east_central_street) "mPj" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/sewer) -"mPo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) +"mPm" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) "mPr" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"mPv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "mPB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -26366,54 +27007,44 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"mPD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "mPR" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"mPX" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/obj/structure/cargo_container/kelland/left{ - layer = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/central_streets) "mPY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"mPZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"mQc" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/structure/machinery/vending/cola{ - layer = 3.1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +"mQa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "mQd" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/filt) +"mQo" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) "mQq" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 @@ -26439,31 +27070,56 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mQE" = ( +"mQI" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib4" + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"mQJ" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "66" + icon_state = "32" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"mQX" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 11; - pixel_y = 16 +"mQL" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"mQW" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"mRk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"mRa" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mRo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 9 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "mRs" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"mRt" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mRv" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) "mRx" = ( /obj/structure/prop/dam/drill{ layer = 3.1; @@ -26472,30 +27128,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"mRI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"mRN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "mRO" = ( /obj/structure/prop/structure_lattice, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/east_central_street) -"mRW" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_street) "mSa" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/floor/wood, @@ -26503,6 +27139,23 @@ "mSe" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) +"mSf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/colony/canister{ + pixel_y = 14 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mSj" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "mSl" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -26512,50 +27165,88 @@ }, /turf/open/gm/river, /area/lv522/atmos/filt) -"mSE" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"mSC" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"mSF" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"mSH" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"mSI" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"mSQ" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"mSY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/kitchen) "mSZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"mTe" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "22" +"mTi" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/obj/item/stack/sheet/cardboard/full_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mTj" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 16 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"mTf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 10 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/glass/rag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"mTt" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) +"mTu" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue{ + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "mTE" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"mTI" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"mTJ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) "mTK" = ( /obj/structure/largecrate/supply/medicine/medkits, /obj/structure/largecrate/guns/merc{ @@ -26569,10 +27260,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"mTX" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) "mTY" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -26582,16 +27269,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"mTZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"mUf" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) "mUh" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -26601,6 +27278,11 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) +"mUi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "mUl" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -26613,25 +27295,38 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"mUW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"mVc" = ( +"mUI" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/small_stack, +/obj/item/ore/uranium, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mUM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"mUN" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"mUZ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) "mVm" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/way_in_command_centre) -"mVn" = ( -/obj/structure/machinery/computer/crew/colony, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "mVt" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -26642,26 +27337,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"mVv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"mVz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) "mVE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -26671,42 +27346,32 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"mVK" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"mVM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"mWb" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = 3; - pixel_y = -1 +"mVJ" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"mVQ" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/cell/high{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"mVX" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "mWd" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) -"mWl" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) "mWw" = ( /obj/item/prop/colony/proptag{ desc = "A fallen marine's information dog tag. It reads, Corporal Donald 'Firefly' Harrow" @@ -26715,81 +27380,66 @@ /turf/open/floor/prison, /area/lv522/atmos/outdoor) "mWB" = ( -/obj/structure/surface/table/almayer, -/obj/item/ore/gold, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mWD" = ( -/obj/item/storage/toolbox/electrical{ - pixel_y = -6 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -11; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "mWF" = ( /obj/item/trash/barcardine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/hallway) -"mWH" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/north) -"mWK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"mWW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/hallway) +"mWK" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"mXr" = ( +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"mXd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"mXj" = ( -/turf/open/floor/almayer/w_y0/north, -/area/lv522/oob/w_y_vault) -"mXz" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mXw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"mYH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/reactor_garage) -"mYR" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_y = 16 +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"mXK" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"mXP" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"mXX" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"mYn" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14 }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"mYq" = ( +/obj/structure/prop/dam/truck/cargo{ + layer = 3.1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/east) +"mYC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"mYK" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "mYS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26800,9 +27450,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"mZi" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/east_central_street) +"mZa" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"mZp" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) "mZs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -26812,25 +27469,23 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"mZz" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +"mZH" = ( +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) "mZQ" = ( /obj/structure/barricade/deployable, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"mZT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "mZW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/river, @@ -26841,16 +27496,13 @@ }, /turf/open/gm/river, /area/lv522/atmos/filt) +"mZY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) "nax" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"naz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) "naH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -26858,16 +27510,28 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"naR" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/garden) +"naM" = ( +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 8 + }, +/obj/item/prop/alien/hugger{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) "nbj" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/lv522/atmos/filt) +"nbm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "nbn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/largecrate/random, @@ -26880,27 +27544,42 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"nbA" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) "nbE" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"nci" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/way_in_command_centre) -"ncr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"nbY" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"nce" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"nco" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/atmos/reactor_garage) +"ncp" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"ncw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "ncA" = ( /obj/item/clothing/suit/storage/marine/medium, /turf/closed/wall/mineral/bone_resin, @@ -26910,111 +27589,92 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"ncN" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"ncU" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +"nda" = ( +/obj/item/reagent_container/spray/cleaner/drone{ + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "ndb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"ndd" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges/dorms_fitness) "ndf" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen/damage) -"ndh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"ndk" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "68" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"ndt" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"ndw" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/east) -"ndD" = ( +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ndm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/light, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ndE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"ndn" = ( +/obj/item/stack/tile/plasteel, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/area/lv522/atmos/east_reactor) "ndP" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nei" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_east_street) +"ndQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"ndY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"neh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "nel" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"neH" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"neN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"neP" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 8 +"neJ" = ( +/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 }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"nfc" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +"neP" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"neQ" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) "nfe" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -27032,18 +27692,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"nfA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"nfJ" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, +"nfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/resin/sticky, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) +"nfp" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) "nfP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27055,28 +27711,27 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"nfX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +"ngb" = ( +/obj/structure/surface/table/gamblingtable, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) "ngd" = ( /obj/item/tool/wrench, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"ngk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/tofukabob, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ngo" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"ngr" = ( -/turf/open/floor/strata/white_cyan3/southeast, -/area/lv522/indoors/a_block/medical) "ngx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27085,6 +27740,13 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "ngy" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ngS" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -27120,28 +27782,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nhd" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - density = 0; - layer = 3.5; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"nhh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) "nhs" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"nhy" = ( +"nhC" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, /turf/open/floor/prison/floor_plate, -/area/lv522/oob) +/area/lv522/indoors/a_block/garden) "nhD" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -27149,29 +27802,58 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"nhJ" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) "nhQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"nik" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) "niu" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"niv" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 +"niw" = ( +/obj/item/ammo_magazine/pistol/m1911{ + pixel_x = 9; + pixel_y = 12 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"niy" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"niB" = ( +/obj/structure/surface/table/almayer, +/obj/item/robot_parts/robot_component/radio{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"niD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Casino Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"niQ" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) "niU" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green{ @@ -27179,21 +27861,23 @@ }, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"niZ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 +"niX" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"njb" = ( +/obj/structure/machinery/microwave, +/obj/structure/machinery/microwave{ + pixel_y = 13 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"njc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/trash/ceramic_plate{ + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "njm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/sheet/wood, @@ -27201,39 +27885,113 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "njq" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"njN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"nkc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"nkg" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 }, -/obj/structure/machinery/faxmachine, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, +/obj/item/tool/pen/red/clicky, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) -"nkf" = ( -/obj/structure/bed/chair{ +"nkl" = ( +/obj/structure/surface/table/almayer, +/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_y = 14 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"nko" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"nkp" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"nkx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"nkB" = ( -/obj/structure/blocker/forcefield/vehicles, +/obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"nkM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"nkT" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/east_central_street) -"nll" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"nkG" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 8; + pixel_y = 12 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/item/tool/lighter/random{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"nkJ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"nkV" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nlj" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"nlo" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) "nlz" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -27243,19 +28001,19 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"nlS" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"nlC" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "47" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"nlF" = ( /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"nlU" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "5" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "nlV" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -27276,40 +28034,21 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"nml" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) +"nmp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "nmK" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"nmM" = ( -/obj/structure/filtration/machine_96x96/distribution{ - density = 0; - pixel_y = 16 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"nmQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"nmV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"nnw" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"nng" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"nns" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "nnz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -27329,56 +28068,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"nnV" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +"nnE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nnX" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"noz" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"noA" = ( -/obj/item/stack/sheet/wood, -/obj/item/stack/rods, -/obj/structure/barricade/wooden{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nov" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"noB" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"noF" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "noL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"noR" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"noS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "noT" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -27390,16 +28103,16 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"npa" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +"nph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"npk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) "npx" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution" @@ -27415,28 +28128,29 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"npK" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 +"npR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) "npT" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "nqc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"nqn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "nqo" = ( /obj/item/device/flashlight/lamp{ pixel_y = 13 @@ -27447,6 +28161,13 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"nqr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) "nqB" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution"; @@ -27460,44 +28181,13 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"nqZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_entry_2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"nrl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"nrc" = ( -/obj/structure/machinery/vending/walkman{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"nrg" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"nrn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/medical_supply_link/green, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"nrt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) +"nrm" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/cargo_intake) "nru" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -27508,42 +28198,85 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"nrI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "nrK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "nrP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) +"nrR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"nsg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"nsk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"nsn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) "nsv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"ntb" = ( +"nsA" = ( /obj/structure/surface/table/almayer{ - dir = 8; + dir = 4; flipped = 1 }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"nsP" = ( +/obj/structure/closet/secure_closet/engineering_welding, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"ntd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"nsS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/tool/pen/clicky, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/kitchen/damage) +"ntd" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ntq" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -27552,26 +28285,14 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/south) +"nts" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "ntt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) -"ntw" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"ntA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"ntE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/north) "ntL" = ( /obj/item/stack/sheet/metal, /turf/open/floor/corsat, @@ -27582,42 +28303,20 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"ntR" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ntU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"ntX" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "nud" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"nuw" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nuq" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"nuF" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "nuG" = ( /obj/structure/platform{ dir = 4 @@ -27638,225 +28337,221 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nvb" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) +"nuV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"nuW" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "nvd" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"nvw" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"nvx" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "66" +"nvh" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"nvl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"nvp" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"nvq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "nvB" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) "nvK" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"nvM" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"nvP" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "nvS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"nvT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_2"; - name = "remote door-control"; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) -"nvY" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"nwe" = ( -/obj/structure/largecrate/random/mini{ - layer = 3.1; - pixel_x = 10; - pixel_y = -7 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 7; - pixel_y = 15 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"nwh" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "nwj" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorms/glass) -"nwv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/west_reactor) -"nwG" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges) -"nwN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"nxf" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement/cement1, +"nwE" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) -"nxg" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "48" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"nxk" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) -"nxt" = ( -/obj/structure/filingcabinet{ - density = 0; +"nwI" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; pixel_x = -8; - pixel_y = 16 + pixel_y = 11 }, -/obj/structure/filingcabinet{ - density = 0; +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = -2; + pixel_y = -13 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/tool/crowbar/red{ pixel_x = 8; - pixel_y = 16 + pixel_y = 8 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"nxw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"nwX" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"nxM" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/area/lv522/indoors/a_block/fitness) +"nxa" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"nxk" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"nxl" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"nxt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Emergency Engineering" }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"nxR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"nyc" = ( -/obj/structure/surface/table/almayer, +/area/lv522/indoors/lone_buildings/engineering) +"nxv" = ( /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"nyt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/indoors/lone_buildings/outdoor_bot) +"nxx" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"nyv" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/area/lv522/indoors/a_block/kitchen/glass) +"nxI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"nxK" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"nyy" = ( -/obj/structure/platform_decoration{ +/obj/structure/barricade/handrail{ dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"nyr" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"nyt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "nyJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"nyN" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "nza" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"nzg" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/shower{ - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"nzw" = ( +/obj/structure/machinery/bioprinter, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"nzz" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "nzA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"nzB" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"nzD" = ( -/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"nzL" = ( -/obj/item/clothing/head/hardhat/white, -/obj/item/prop/alien/hugger{ - pixel_x = 11; - pixel_y = -9 +/area/lv522/indoors/lone_buildings/outdoor_bot) +"nzE" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "nzR" = ( /obj/item/stack/sheet/metal, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/cargo_intake) -"nzW" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) +"nzS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"nzV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Family Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "nzZ" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -27870,19 +28565,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"nAf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"nAh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) +"nAe" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) +"nAl" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "nAC" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -27893,43 +28582,29 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nAK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"nAQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"nAR" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"nAU" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"nAX" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"nBd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) "nBe" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) +"nBg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"nBh" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "nBs" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer2, @@ -27945,38 +28620,34 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"nBy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/foamed_metal, +"nBD" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"nBI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"nBE" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_x = 12; + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 12; + pixel_y = -4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"nBN" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard/full_stack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) "nBP" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"nBR" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) +"nBU" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "64" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "nBY" = ( /obj/item/tool/scythe, /turf/open/floor/prison, @@ -27985,24 +28656,36 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/n_rockies) -"nCl" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "51" +"nCh" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) +"nCn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "nCt" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"nCM" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"nCz" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"nCF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "nDn" = ( /obj/structure/bed/chair{ dir = 8 @@ -28010,13 +28693,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"nDr" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) +"nDo" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "nDt" = ( /obj/structure/platform_decoration{ dir = 4 @@ -28024,69 +28704,68 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"nDv" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"nDH" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"nDJ" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) "nDM" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/outdoors/n_rockies) -"nDN" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) -"nDQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "nDR" = ( /obj/item/tool/wrench, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"nEr" = ( -/obj/item/ammo_magazine/m56d, -/obj/structure/pipes/standard/manifold/hidden/green{ +"nEi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"nEo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nEy" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"nED" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"nEI" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"nES" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"nEG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"nEJ" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"nEL" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"nEM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"nEU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "nEX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -28103,20 +28782,34 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) "nFe" = ( -/turf/open/floor/corsat/browncorner/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "nFj" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1) -"nFF" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -6; - pixel_y = 32 +"nFo" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/north) +"nFq" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"nFA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "17" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"nFH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "nFN" = ( /obj/item/tool/weldingtool{ pixel_x = 6; @@ -28128,18 +28821,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"nFS" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/outdoor_bot) "nGc" = ( /obj/effect/alien/resin/sticky, /turf/open/gm/river, /area/lv522/atmos/filt) -"nGp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) "nGB" = ( /obj/structure/cargo_container/kelland/right, /obj/effect/decal/warning_stripes{ @@ -28155,80 +28840,52 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nGH" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; - pixel_y = -1 +"nHj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block Bar" }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"nGR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nHa" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"nHD" = ( +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/north_command_centre) -"nHq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_east_street) -"nHL" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/landing_zone_1) -"nHR" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) "nIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"nIc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"nIg" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"nId" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"nIj" = ( +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"nIi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"nIn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"nIx" = ( -/obj/structure/bed/bedroll{ - dir = 8 +/area/lv522/atmos/east_reactor/west) +"nIy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"nIT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) +"nIL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"nJi" = ( -/obj/structure/girder, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/area/lv522/atmos/cargo_intake) "nJr" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -28242,24 +28899,27 @@ "nJv" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/lone_buildings/engineering) +"nJw" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "nJL" = ( -/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) +"nJO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "nJV" = ( /obj/structure/noticeboard, /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"nJW" = ( -/obj/item/toy/plush/farwa{ - desc = "A Farwa plush doll. Once soft and comforting now just really wet."; - name = "Soaked farwa plush doll" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"nKb" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/west_reactor) "nKm" = ( /obj/structure/platform_decoration, /turf/open/asphalt/cement, @@ -28273,6 +28933,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) +"nKp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) "nKK" = ( /obj/structure/platform{ dir = 8 @@ -28283,9 +28949,42 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"nKZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"nLk" = ( +/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/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "nLm" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorms) +"nLr" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "nLy" = ( /obj/item/pipe{ dir = 6 @@ -28298,14 +28997,21 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"nLJ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"nLT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "nMl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/reactor_garage) -"nMx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) "nMB" = ( /obj/structure/bed/chair{ dir = 4 @@ -28313,39 +29019,46 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"nMJ" = ( -/obj/item/fuel_cell{ - pixel_x = -8; - pixel_y = -2 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) -"nMQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +"nMN" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "nMX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) "nNe" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"nNJ" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"nNm" = ( /obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = 1; - pixel_y = 6 +/obj/item/toy/blink{ + pixel_x = 3; + pixel_y = 10 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"nNK" = ( -/obj/structure/surface/rack, -/obj/item/hardpoint/locomotion/van_wheels, +/obj/item/toy/deck, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"nNx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plaincakeslice{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/plaincakeslice, +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"nNz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) "nNL" = ( /obj/item/ammo_magazine/rifle, /obj/item/ammo_magazine/rifle{ @@ -28364,40 +29077,26 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"nNY" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"nOh" = ( -/obj/structure/bed/chair{ - dir = 8 +"nNU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"nOq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "nOB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"nOD" = ( -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"nOU" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) +"nON" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "nPb" = ( /obj/structure/platform, /obj/structure/platform{ @@ -28413,35 +29112,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"nPj" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) "nPo" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"nPs" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"nPB" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) +"nPE" = ( +/obj/structure/powerloader_wreckage/jd, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) "nPV" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"nQm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice9"; - pixel_x = -5 +"nQc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) "nQu" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) @@ -28455,32 +29147,10 @@ /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"nQE" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - layer = 2.9 - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Reactor_entry_1"; - pixel_x = 5; - pixel_y = -7; - req_access = null - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "nQG" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"nQL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -12; - pixel_y = -1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "nQQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -28492,24 +29162,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"nQR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "nQT" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"nQW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"nRe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"nRk" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" +"nRi" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "nRs" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -28517,23 +29185,12 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"nRx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"nRE" = ( -/obj/structure/barricade/wooden{ - dir = 1 +"nRu" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) "nRK" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -28542,36 +29199,47 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nSj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ +"nRR" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"nRS" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; pixel_y = 16 }, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 3 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"nRZ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"nSc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Wildcatters Office"; + panel_open = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) -"nSo" = ( +"nSx" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 16 + }, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) -"nSs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"nSB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/cargo_intake) "nSF" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -28582,41 +29250,34 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"nSM" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"nST" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"nSS" = ( +/obj/structure/girder, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 11; + pixel_y = -8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) "nSX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "nTa" = ( /obj/structure/tunnel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"nTe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 1 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) +"nTb" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) "nTg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -28624,6 +29285,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"nTi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "nTl" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/east_reactor) @@ -28633,112 +29298,152 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"nTu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "nTv" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/dorms_fitness) "nTA" = ( -/obj/structure/girder, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "nTD" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"nTE" = ( -/obj/structure/surface/rack, -/obj/item/ore/uranium, -/obj/item/ore/uranium, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) "nTJ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) +"nTN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "nTO" = ( /obj/structure/cargo_container/wy/left, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"nTS" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"nUb" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" +"nTQ" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) "nUd" = ( /obj/structure/cargo_container/wy/left, /turf/open/floor/prison, /area/lv522/landing_zone_1) -"nUn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"nUf" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"nUi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"nUy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"nUo" = ( -/obj/structure/blocker/forcefield/vehicles, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"nUs" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) -"nUO" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/shale/layer1, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"nUz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/northwest, +/area/lv522/indoors/a_block/medical/glass) +"nUA" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) -"nUQ" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/cargo_intake) -"nUU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nUF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = -6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"nUX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"nUJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/outdoors/colony_streets/south_west_street) +"nUO" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) "nVc" = ( /obj/structure/powerloader_wreckage, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"nVA" = ( -/turf/open/floor/corsat/plate, -/area/lv522/oob) +"nVr" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"nVw" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "23" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"nVE" = ( +/obj/item/stack/sheet/metal, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "nVN" = ( /obj/item/ammo_magazine/flamer_tank/empty, /obj/effect/decal/cleanable/liquid_fuel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"nVZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +"nVY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/vehicle/powerloader/ft{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) +/area/lv522/atmos/east_reactor/north) "nWq" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -28750,44 +29455,25 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"nWE" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"nWM" = ( +"nWr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"nXe" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"nXn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/plate{ - pixel_x = -2; - pixel_y = 12 - }, -/obj/item/trash/plate{ - pixel_x = 6 + dir = 5 }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"nXp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"nXu" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"nWt" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"nXg" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "nXC" = ( /obj/item/tool/wrench, /obj/structure/platform_decoration{ @@ -28795,10 +29481,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"nXN" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) "nXO" = ( /obj/item/ammo_box/magazine/misc/flares, /turf/open/floor/prison, @@ -28810,53 +29492,56 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"nYd" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"nYf" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/east) -"nYj" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/command_centre) -"nYB" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"nYD" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, +"nYh" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -6; + pixel_y = -11 + }, +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -2; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"nYp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"nYr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/area/lv522/indoors/c_block/mining) "nYF" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"nYG" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) "nYM" = ( /obj/structure/cargo_container/wy/mid, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"nYP" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) "nYW" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 1; @@ -28865,72 +29550,31 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "nZc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"nZd" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"nZk" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/outdoors/n_rockies) -"nZm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"nZB" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"nZI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nZT" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"nZZ" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"oal" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) -"oap" = ( -/obj/structure/platform{ +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"nZd" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"nZH" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/platform_decoration{ - dir = 5 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"oab" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -6; + pixel_y = 32 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "17" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "oaq" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -28942,15 +29586,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"oaB" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_east_street) -"oaD" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +"oaC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "oaH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -28958,124 +29597,131 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"oaM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "oaN" = ( /obj/structure/cargo_container/kelland/right{ layer = 3.5 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"oaT" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"obp" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ +"oaS" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"obP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"oaX" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"obR" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +/obj/structure/platform{ + dir = 4 }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"ocd" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/hallway) -"ocn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"ocs" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oaZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"ocA" = ( -/obj/structure/machinery/washing_machine{ - density = 0; - pixel_x = -9; - pixel_y = 15 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"obd" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ocQ" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/north_command_centre) -"oda" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"obm" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal/small_stack, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"odq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"obn" = ( +/obj/structure/coatrack{ + pixel_x = 11 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"odC" = ( -/obj/structure/girder, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"odS" = ( +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"obC" = ( +/obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"oci" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"odW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) -"oec" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"ocn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"ocs" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"ocx" = ( /obj/structure/stairs/perspective{ - dir = 6; + dir = 4; icon_state = "p_stair_full" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"ocK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"odi" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"odn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"odw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"odA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"oed" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"oeg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "oet" = ( /obj/structure/prop/dam/crane/cargo{ dir = 1 @@ -29083,16 +29729,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"oey" = ( -/obj/structure/barricade/deployable{ - dir = 1 +"oeA" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"oeO" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"oeE" = ( -/obj/item/stool, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) +"oeP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "oeU" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -29103,21 +29760,23 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"oeY" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"ofc" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "ofi" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"ofj" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +"ofl" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"oft" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "ofy" = ( /obj/structure/bed/chair/wood/normal{ dir = 4; @@ -29125,30 +29784,31 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"ofU" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"ofV" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"ogh" = ( -/obj/structure/platform{ - dir = 1 - }, +"ofP" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"ofT" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"ogc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "S"; + pixel_y = -1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) +/area/lv522/atmos/way_in_command_centre) +"oge" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "ogq" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel/far) "ogA" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/effect/decal/cleanable/dirt, @@ -29169,61 +29829,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"ogH" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"ogI" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) "ohi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/reactor_garage) -"ohp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"ohC" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Armory" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Armoury-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"ohE" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"ohY" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/eat, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"oib" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +"ohz" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"ohI" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "oig" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -29240,6 +29857,14 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"oiq" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"oir" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "oiA" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -29254,40 +29879,75 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"oiQ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +"oiU" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) "oiW" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"ojm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +"ojl" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "ojp" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/garden_bridge) -"ojq" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "ojt" = ( /obj/item/ammo_magazine/sentry{ current_rounds = 0 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"oju" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 7 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 6 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 2 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 3 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = -6 + }, +/obj/item/clothing/suit/storage/bomber/alt, +/obj/item/clothing/suit/storage/bomber/alt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "ojy" = ( /obj/structure/closet/crate/trashcart{ layer = 3 @@ -29295,65 +29955,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ojG" = ( -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "r_leg"; - name = "right leg"; - pixel_x = 8; - pixel_y = 20 - }, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "r_foot"; - name = "right foot"; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"ojM" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"okm" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, +"ojY" = ( +/obj/structure/ore_box, /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"okp" = ( -/obj/structure/surface/rack, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"okw" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"oky" = ( -/obj/structure/machinery/light{ +"okn" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/strata/white_cyan4, +/area/lv522/indoors/a_block/medical) "okA" = ( /obj/structure/surface/rack, /obj/structure/machinery/camera/autoname{ @@ -29364,101 +29980,55 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ola" = ( -/obj/structure/bed/chair/wheelchair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"olb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_box/rounds/smg{ - layer = 3; - pixel_x = 1; - pixel_y = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"olv" = ( -/obj/structure/surface/table/almayer, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"olG" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"olI" = ( -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"olP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"omb" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/east_reactor/south) -"omg" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar/red, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"omj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"omp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 +"okR" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/hallway) +"olf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"omz" = ( -/obj/structure/closet/bodybag, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"olu" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"olI" = ( +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"olO" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) -"omB" = ( +"omC" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/maintenance_jack, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"omJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/adjustable/cable/white, -/obj/item/restraint/adjustable/cable/white{ - pixel_y = 4 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"omE" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"omH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"omI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "omT" = ( /obj/structure/sign/safety/radio_rad{ pixel_y = -26 @@ -29474,23 +30044,41 @@ /obj/structure/surface/rack, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"onL" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) -"onR" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"omZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"onS" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"onh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"onk" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"onq" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"onE" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "100" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"onQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "onX" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -29500,59 +30088,40 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"ooo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/adv{ - layer = 3.1; - pixel_x = 3; - pixel_y = -2 +"oop" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/alien, +/obj/item/pipe{ + pixel_x = -6 }, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_y = 14 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"oov" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"oos" = ( -/obj/item/reagent_container/spray/cleaner/drone{ - pixel_x = -3; - pixel_y = 6 +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"oow" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/device/defibrillator/compact, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) "ooB" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"ooN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"ooL" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) -"opb" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"oph" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "opl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -29564,26 +30133,19 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"opC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"opE" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"opx" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) -"opG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) +"opK" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) "opN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "opO" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, @@ -29597,48 +30159,16 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"opW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/snacks/mre_pack/meal1{ - desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; - name = "\improper UA Prepared Meal (cornbread)"; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"oqe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) "oqp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"oqq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) -"oqt" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"oqC" = ( -/obj/structure/machinery/optable{ - density = 0; - pixel_x = 16; - pixel_y = -6 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) +"oqs" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "oqD" = ( /obj/structure/coatrack{ pixel_x = -7; @@ -29653,25 +30183,28 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"oqH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"oqK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 4 +"oqF" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/obj/structure/machinery/light, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"oqR" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"oqI" = ( +/obj/structure/machinery/door_control{ + id = "Marked_6"; + name = "Cargo Shutter Control"; + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/item/prop{ + desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "Weyland classified intelligence folder"; + pixel_y = -2 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) "ora" = ( /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."; @@ -29683,40 +30216,16 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ork" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/clothing/suit/storage/marine/medium/rto, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) "orm" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"orv" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"orA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +"oro" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "orE" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, @@ -29731,118 +30240,79 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"orR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"orT" = ( +/obj/item/trash/burger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "orU" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"osf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"osg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) -"osl" = ( -/obj/structure/largecrate/supply/ammo/m41a/half{ - pixel_x = 5 - }, -/obj/item/storage/box/guncase/m41a{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/ammo_box/rounds/empty{ - layer = 3.1; - pixel_y = -15 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"osu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"osG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/west_reactor) -"osH" = ( -/obj/structure/machinery/computer/arcade, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"osO" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +"osm" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"osQ" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"osS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"osp" = ( +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"otn" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ost" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "mining_secure_blast_1"; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"ots" = ( +/area/lv522/indoors/lone_buildings/storage_blocks) +"osF" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"otm" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ +/obj/structure/machinery/microwave{ pixel_y = 6 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"otv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"otA" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 3; + pixel_y = 11 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"otF" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 24 +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_x = -6; + pixel_y = 13 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"otN" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "oud" = ( /obj/structure/platform{ dir = 1 @@ -29859,70 +30329,21 @@ }, /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) -"ouq" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"ouy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ouN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"ouR" = ( -/obj/item/stack/sandbags/small_stack, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"ouX" = ( +"our" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"ouJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"ouZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"ove" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"ovf" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"ovo" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "ovr" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -29931,6 +30352,19 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) +"ovx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "ovA" = ( /obj/item/shard{ icon_state = "medium" @@ -29938,6 +30372,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"ovG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"ovQ" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"ovS" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/grown/deathberries{ + pixel_y = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "ovT" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -29946,68 +30399,83 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"owb" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/east) -"owf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock" +"ovY" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"owc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) +/area/lv522/indoors/c_block/bridge) "owg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"owm" = ( -/obj/structure/machinery/light{ - dir = 1 +"own" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/key/cargo_train{ + icon_state = "keys" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"owx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"oww" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_street) +"owF" = ( +/obj/item/prop/colony/canister{ + layer = 3.1; + pixel_y = 16 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"owK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"owN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/north_command_centre) +"owR" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"owP" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 }, -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"owS" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 1 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"owU" = ( -/obj/structure/barricade/deployable{ - dir = 1 +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 1 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "owX" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"oxg" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) -"oxo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +"owZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = -8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "oxq" = ( /obj/item/paper{ pixel_x = 10; @@ -30015,96 +30483,87 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"oxz" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"oxB" = ( +"oxr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"oxK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"oxJ" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"oxU" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/item/stool, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "oyf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"oym" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "oyr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"oyA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"oyt" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"oyy" = ( +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"oyZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"oza" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"ozb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) -"ozf" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"oyJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ozi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "ozn" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ozu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ozE" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, +"ozv" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) +/area/lv522/atmos/way_in_command_centre) "ozF" = ( /obj/item/shard{ icon_state = "medium" @@ -30112,32 +30571,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"ozH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ozY" = ( -/obj/structure/machinery/light{ +"ozN" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"oAd" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"oAk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/ashtray/bronze, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/wood/wood_broken5, +/area/lv522/indoors/b_block/bar) +"oAf" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) "oAu" = ( /obj/structure/platform{ dir = 1 @@ -30150,61 +30604,51 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"oAv" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"oAQ" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, +"oAD" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) +"oAF" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"oAM" = ( +/obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "oBf" = ( /obj/structure/bed/chair/wheelchair, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"oBr" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) "oBx" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"oBz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oBJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "oBQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/item/disk{ + desc = "a 2000 Russian crime film. It is a sequel to the 1997 film Brother."; + name = "brat 2 disk" + }, +/obj/structure/machinery/recharger{ + layer = 2.9; + pixel_x = 5; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "oBR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"oCb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"oCj" = ( -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "oCn" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -30213,99 +30657,81 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/oob) -"oCp" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) "oCt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) -"oCw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"oCB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"oCP" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"oDe" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"oDl" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "3" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"oDp" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"oDt" = ( +"oCE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"oDh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Entrance Office"; + pixel_y = 26 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "oDA" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"oDM" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"oDG" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"oDY" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"oEt" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"oEi" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"oEo" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, /turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"oED" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"oEL" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3; - pixel_y = 9 +/area/lv522/outdoors/nw_rockies) +"oEM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 2 }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/north_street) -"oFi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"oEO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"oFn" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"oFo" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"oEV" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 10; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"oFa" = ( +/obj/structure/blocker/forcefield/vehicles, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"oFq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) +/area/lv522/atmos/command_centre) "oFr" = ( /obj/structure/machinery/light{ dir = 8 @@ -30313,57 +30739,72 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"oFt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"oFy" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "4" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"oFu" = ( +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"oFA" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1"; + layer = 5.1 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) +"oFD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c1000, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"oFI" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"oFQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"oFv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Mining Equipment" +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"oFR" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"oFY" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"oFJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oFO" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/obj/structure/flora/bush{ - pixel_y = 9 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"oGa" = ( -/obj/structure/window_frame/strata/reinforced, -/obj/item/stack/rods, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"oGf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"oFZ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"oGs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"oGv" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "oGE" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, @@ -30372,74 +30813,95 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"oGK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"oGP" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_east_street) +"oGQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "oGZ" = ( /obj/item/stack/sheet/wood, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"oHa" = ( -/obj/structure/machinery/light{ - dir = 4 +"oHr" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"oHw" = ( +/obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"oHE" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"oHH" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"oHL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"oIc" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"oIl" = ( +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"oIg" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"oIz" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_1) +"oIS" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"oIn" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) -"oIo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "oJj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"oJk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oJo" = ( +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"oJz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"oJB" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3" }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"oJE" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "oJS" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/cargo_intake) @@ -30450,6 +30912,15 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"oJX" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "oKc" = ( /obj/structure/platform, /obj/structure/platform{ @@ -30466,36 +30937,45 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"oKn" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/grown/deathberries{ - pixel_y = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +"oKu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"oKv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"oKJ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"oKO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "oLa" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"oLb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "oLd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"oLj" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) +"oLk" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"oLn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/soap/deluxe{ + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "oLo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30510,44 +30990,34 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"oLs" = ( -/obj/item/stack/sheet/metal, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"oLI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"oLS" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/clothing/glasses/kutjevo, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oMd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"oMf" = ( +"oLx" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"oLJ" = ( +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_2/ceiling) +"oLM" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"oLO" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"oLQ" = ( /obj/structure/stairs/perspective{ - dir = 4; icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oLU" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"oMg" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "oMi" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -30563,44 +31033,41 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"oMy" = ( -/obj/structure/closet/crate/freezer{ - layer = 3 +"oMt" = ( +/turf/open/floor/wood/wood_broken7, +/area/lv522/indoors/b_block/bar) +"oMG" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"oMQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"oMX" = ( -/obj/item/storage/belt/grenade, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"oMS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 11; + pixel_y = 16 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/admin) "oNe" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"oNh" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/coagulation/icon4_8, +/area/lv522/oob) "oNl" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -30608,136 +31075,164 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"oNr" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"oNG" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"oNX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +"oNs" = ( +/obj/item/storage/backpack/marine/engineerpack/satchel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"oNP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/light, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"oOc" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/area/lv522/atmos/cargo_intake) +"oOa" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "oOe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) +"oOj" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/sewer) "oOq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"oOr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "oOt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"oOz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"oOJ" = ( -/obj/structure/largecrate, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"oOM" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"oOL" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "oOS" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) -"oOZ" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) +"oOU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) "oPc" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) +"oPk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/circuitboard/computer{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/circuitboard/computer{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"oPn" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "oPu" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"oPM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"oQq" = ( -/obj/structure/bed/chair{ - dir = 8 +"oPv" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"oPS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) "oQC" = ( /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"oQE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bedroom" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"oQI" = ( -/obj/effect/landmark/monkey_spawn, +"oQL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"oQM" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/area/lv522/atmos/east_reactor) "oQN" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"oRa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/monitor{ - density = 0; - pixel_y = 16 +"oQT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oRp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"oRw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/deployable, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"oRx" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"oRa" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"oRw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"oRB" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "oRU" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -30752,59 +31247,17 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"oSn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/holohoop{ - density = 0; - pixel_y = 27 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_x = 8; - pixel_y = 5 +"oSc" = ( +/obj/structure/machinery/recharge_station, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"oSp" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"oSy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"oSq" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"oSt" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "oSA" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -30818,28 +31271,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"oSK" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "2" - }, -/obj/item/storage/belt/gun/m44/custom, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) -"oSS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"oST" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) "oTc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30861,10 +31292,20 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"oTB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) +"oTv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"oTw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "oTD" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -30880,19 +31321,18 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "oTQ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) +"oTS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"oTW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) +/area/lv522/outdoors/colony_streets/north_street) "oTX" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, @@ -30901,60 +31341,13 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"oUc" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"oUh" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "68" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"oUi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "oUq" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/way_in_command_centre) -"oUD" = ( -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"oUG" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "99" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"oUS" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"oVd" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_2"; - name = "treadmill switch"; - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"oVe" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"oVh" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "oVk" = ( /obj/structure/largecrate/random{ pixel_x = 1; @@ -30962,25 +31355,23 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"oVp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "oVt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"oVv" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"oVw" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"oVu" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "oVD" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/space_heater/radiator/red{ @@ -30988,65 +31379,39 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"oVY" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"oWz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"oWQ" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "64" +"oVX" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"oWg" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "3" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"oWm" = ( +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"oWn" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oWp" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "oXa" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"oXg" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bridge) -"oXm" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/colony/game, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) "oXp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"oXs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"oXv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"oXD" = ( -/obj/structure/barricade/handrail, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "oXQ" = ( /obj/structure/machinery/light{ dir = 8 @@ -31055,9 +31420,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"oXT" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) "oXU" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -31077,25 +31439,41 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"oYh" = ( -/obj/structure/fence{ - layer = 2.9 +"oYg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"oYn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"oYq" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"oYE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/central_streets) -"oYy" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"oYI" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/outdoor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"oYG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"oYK" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "22" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "oYO" = ( /obj/structure/platform{ dir = 1 @@ -31106,59 +31484,34 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"oYS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"oZb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"oZt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"oZz" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +"oYT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"oZF" = ( -/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/machinery/light{ - dir = 8 +/area/lv522/atmos/command_centre) +"oZb" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oZE" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "oZN" = ( /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "oZT" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "pab" = ( /obj/structure/machinery/landinglight/ds2/delayone, /obj/effect/decal/cleanable/dirt, @@ -31174,21 +31527,42 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"paI" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +"pah" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"pau" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"pav" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"paG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"paN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"paP" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "paV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) -"paX" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "86" }, -/turf/open/asphalt/cement/cement1, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pba" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/central_streets) "pbi" = ( /obj/structure/machinery/door_control/brbutton{ @@ -31196,13 +31570,6 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) -"pbk" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) "pbp" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) @@ -31211,70 +31578,106 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"pcd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 +"pbP" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/east) +"pbS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/holohoop{ + density = 0; + pixel_y = 27 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_x = 8; + pixel_y = 5 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/area/lv522/indoors/a_block/fitness) +"pbX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"pca" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) "pco" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"pcv" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"pcE" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "pcH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) +"pcI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/gun/smartgunner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "pcQ" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"pcU" = ( -/obj/structure/machinery/power/apc/power/south{ - start_charge = 20 +"pcS" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "17" }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"pdk" = ( -/obj/structure/barricade/deployable{ +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pda" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) +"pdL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/admin) -"pdE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"pdG" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"pdP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"ped" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"pdY" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"pdZ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/metal{ + dir = 1 }, -/turf/open/asphalt/cement/cement1, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "pej" = ( /obj/effect/decal/cleanable/dirt, @@ -31290,64 +31693,66 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"peE" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"peQ" = ( -/obj/structure/machinery/microwave, -/obj/structure/machinery/microwave{ - pixel_y = 13 +"peI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) +"peR" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"peT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"pfb" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) -"pfi" = ( +"pfn" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"pfs" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pfC" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"pfM" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant James 'Four eyes' Brown" +/obj/item/storage/fancy/egg_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pfG" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) "pfN" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) "pfP" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "pfX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) "pfZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"pgf" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"pgk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "pgm" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -31355,76 +31760,135 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pgo" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"pgx" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"pgA" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"pgD" = ( +/obj/structure/platform{ + dir = 4 }, +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_2) +"pgK" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"pgO" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"pgV" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/east) +"pgW" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/east_central_street) +"pgX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"phd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"pgK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +"phl" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) "phn" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"phr" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/west_reactor) -"phy" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"phD" = ( -/obj/structure/closet, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"phL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, +"phH" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) -"phR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock" +"phO" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/north) +"phY" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "phZ" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pim" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"pie" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"pin" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"pio" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 }, -/obj/structure/platform, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"pin" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/golden_cup{ + pixel_y = 9 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"pio" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) "pit" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"piu" = ( +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"piw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "piD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) @@ -31441,26 +31905,11 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"piI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"piU" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, +"piV" = ( +/obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "piY" = ( /obj/structure/platform{ dir = 4 @@ -31468,27 +31917,44 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pjk" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, +"pja" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"pjy" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"pjd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"pje" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"pjE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "pjJ" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/n_rockies) -"pjO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +"pjR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "pjT" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -31510,178 +31976,137 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"pkF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, +"pkm" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"pkA" = ( +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"pkL" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pkP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ple" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "pli" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"plm" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"plq" = ( -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; +"pln" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Engineering"; pixel_y = -6 }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"plu" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"plH" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"plE" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"plL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"plS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"plT" = ( +/obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison/blue_plate/north, +/obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/admin) -"pmh" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"pmk" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) +"pmm" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) "pmo" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"pmt" = ( -/obj/structure/cargo_container/seegson/mid, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"pms" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"pmw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"pmW" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"pmC" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/hallway) -"pna" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"pni" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "pnE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pnG" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"pnL" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pnK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "pnO" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"poa" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 - }, +"pnV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"pol" = ( /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"poh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"pok" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" +/area/lv522/indoors/c_block/cargo) +"poo" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"poA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"pol" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"poB" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, +/obj/structure/flora/bush/ausbushes/var3/leafybush{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb2, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"poq" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light{ - dir = 8 - }, +"poC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"pow" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "poD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -31689,47 +32114,79 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"poK" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +"poF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"poI" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"poJ" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + name = "Television set"; + network = null; + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_knight{ + pixel_x = -5; + pixel_y = 23 + }, +/obj/item/tool/wrench{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken, +/area/lv522/indoors/b_block/bar) "poQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) +"poW" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "poZ" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"ppb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"ppg" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +"ppf" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"ppl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) "ppD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ppI" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/west) "ppK" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -31739,40 +32196,29 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"ppW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"pqb" = ( +"ppO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"pqw" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) -"pqM" = ( -/obj/item/fuel_cell{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"ppX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) -"pqP" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -2; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/admin) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"pqc" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"pqk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"pqt" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) "pqQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31783,33 +32229,65 @@ /obj/effect/decal/cleanable/cobweb2, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"prM" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"prO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"prP" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"pqX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"pra" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"prb" = ( +/obj/item/stack/sheet/metal, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"prV" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"pre" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"prs" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"prt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"prv" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) +"prF" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"prL" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) +"prM" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) "prW" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -31841,46 +32319,32 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"psk" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"psm" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) -"pss" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" +"psu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"psw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/cargo_intake) -"psy" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "72" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/area/lv522/atmos/east_reactor/south) "psF" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/rifle/mar40/lmg, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"psI" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"psJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) +"psN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"psP" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/effect/decal/cleanable/cobweb, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "psQ" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/server_equipment/laptop/on{ @@ -31889,48 +32353,50 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"ptj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"ptB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" - }, +"ptx" = ( +/obj/item/stack/rods, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"ptN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/west_reactor) -"ptQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"pum" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/coffee{ + layer = 3.1; + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"puT" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"puc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) -"pue" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"puN" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "65" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "puV" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"puX" = ( +/obj/item/prop/helmetgarb/lucky_feather{ + pixel_x = 11; + pixel_y = 10 + }, +/obj/item/device/implanter/subdermal_armor, +/turf/open/floor/corsat/plate, +/area/lv522/oob) "puY" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -31938,16 +32404,17 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pvc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"pvh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"pvH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"pvI" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) +/area/lv522/indoors/a_block/security/glass) "pvW" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -12; @@ -31958,13 +32425,6 @@ "pwa" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) -"pwt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) "pwu" = ( /obj/structure/platform_decoration{ dir = 8 @@ -31979,6 +32439,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) +"pwG" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"pwM" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "pwT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -31991,103 +32461,48 @@ "pxb" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"pxc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"pxj" = ( -/obj/item/tool/pen/blue/clicky{ - pixel_x = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) "pxk" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pxz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"pxD" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_west_street) -"pye" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) -"pyg" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"pyq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"pyx" = ( -/obj/structure/stairs/perspective{ +"pxo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"pyH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + layer = 3.1; + pixel_y = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"pyS" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/filt) -"pyT" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/wy_chips_pepper, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"pxt" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"pyV" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"pyW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 8; - name = "\improper Marshal Head Office" +/obj/structure/flora/bush{ + pixel_y = 9 }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"pxI" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pxK" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"pxQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" + dir = 9 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"pyX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"pyY" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pxT" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "pza" = ( /obj/item/stack/sheet/wood{ pixel_x = -5; @@ -32125,56 +32540,33 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"pzD" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"pzI" = ( +"pzx" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"pzK" = ( -/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"pzU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"pAc" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"pAd" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "24" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pAi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/area/lv522/atmos/east_reactor/south) "pAp" = ( /obj/structure/largecrate, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"pAs" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) "pAw" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"pAA" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +"pAB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"pAK" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "pAW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32182,13 +32574,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"pBc" = ( -/obj/item/stack/sheet/wood, +"pBi" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"pBr" = ( +/obj/structure/machinery/body_scanconsole, /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"pBI" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"pBJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "pBK" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck{ @@ -32202,27 +32608,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"pBN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"pCa" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 +"pCe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "pCg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32230,21 +32622,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"pCh" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"pCk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "pCm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32265,36 +32642,34 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"pCE" = ( -/obj/structure/largecrate/random, +"pCB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Corporate Liaison Office " + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"pCI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"pCJ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 +/obj/item/weapon/gun/launcher/grenade/m81/m79, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"pCL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/flora/bush{ - pixel_y = 9 +/obj/structure/bed/chair{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"pCK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/area/lv522/indoors/a_block/fitness) "pCP" = ( /obj/item/tool/hatchet, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"pCQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) "pCT" = ( /obj/structure/machinery/power/terminal, /obj/effect/decal/warning_stripes{ @@ -32303,27 +32678,29 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"pDm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"pCX" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"pDw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"pDF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"pDB" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"pDQ" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"pDH" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"pDO" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/west) "pDU" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -32332,24 +32709,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"pDW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"pEi" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"pEn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pDZ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "45" }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/landing_zone_forecon/UD6_Tornado) "pEs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -32364,93 +32728,20 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pEC" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"pEJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock"; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +"pEM" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"pEK" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"pEL" = ( -/obj/item/tool/lighter/random{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"pEV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"pFl" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) -"pFn" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -6; - pixel_y = -11 - }, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -2; - pixel_y = 7 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pFz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/area/lv522/indoors/a_block/kitchen) +"pEU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "pFH" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -32458,9 +32749,25 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"pFM" = ( -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/admin) +"pFS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 5 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"pFW" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pGb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "pGg" = ( /obj/structure/bed/chair{ dir = 8 @@ -32473,32 +32780,30 @@ "pGl" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/indoors/a_block/kitchen) -"pGp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"pGz" = ( +"pGy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"pGH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/turf/open/floor/bcircuit, +/area/lv522/indoors/a_block/admin) +"pGJ" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"pGI" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_west_street) -"pGP" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"pGM" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "pGQ" = ( /obj/item/prop/alien/hugger, /turf/open/floor/wood/ship, @@ -32516,75 +32821,87 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) +"pHy" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "pHT" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) "pHX" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"pId" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) -"pIm" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"pIp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"pIA" = ( -/obj/structure/barricade/wooden{ +"pIg" = ( +/obj/structure/platform{ dir = 4 }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) +"pIs" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/outdoors/n_rockies) +"pIt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"pIK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "30" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pIP" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 + }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pIC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"pIF" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Fitness"; - pixel_y = 26 +/area/lv522/atmos/sewer) +"pJa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"pJd" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"pIU" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"pJB" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"pJF" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"pJi" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/falcon_drone{ - desc = "Some sort of fancy...toy? You're not sure.."; - pixel_x = -12 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"pJJ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pJB" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"pJH" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) +/area/lv522/atmos/east_reactor/south) +"pJN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"pJR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "pJW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32592,26 +32909,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"pJY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/faxmachine, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "pJZ" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"pKi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "pKl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) -"pKz" = ( +"pKA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"pKJ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"pKN" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -2; - pixel_y = 24 + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 4; + pixel_y = -15 }, /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -32619,51 +32950,18 @@ layer = 2; name = "weak acid" }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/admin) -"pKN" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "26" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "pKT" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) "pKX" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/op_centre) -"pKY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "LZ1 Service Tunnel"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pKZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"pLe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges) +"pLd" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "pLj" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -32673,21 +32971,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"pLp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) "pLs" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -32702,18 +32985,18 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"pLy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 +"pLL" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "53" }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"pLO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pLS" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "pLT" = ( /obj/item/reagent_container/glass/bucket/janibucket{ desc = "It's a large bucket that fits in a janitorial cart. Holds 500 units. The lip is stained."; @@ -32723,15 +33006,21 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"pMq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pMb" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"pMk" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"pMo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "pMs" = ( /obj/structure/surface/table/gamblingtable, /obj/item/card/id/visa{ @@ -32758,71 +33047,30 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"pMH" = ( -/obj/structure/pipes/vents/pump, +"pMA" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"pMJ" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"pML" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; +/obj/item/reagent_container/food/snacks/sliceable/bread{ pixel_y = 4 }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/item/reagent_container/food/snacks/sliceable/bread, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"pMH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"pMP" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) "pMT" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) -"pNb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -32831,75 +33079,40 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "pNj" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"pNl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"pNm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "pNs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"pNE" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"pNG" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"pNM" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - id = "Reactor_entry_2"; - pixel_x = 16; - req_access = null +"pNx" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"pNQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"pNR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) "pNY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"pOb" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "pOd" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -32907,20 +33120,18 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "pOe" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pOg" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_east_street) +"pOg" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/command_centre) "pOs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -32931,26 +33142,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"pOD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"pOF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"pOw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"pOH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "pOK" = ( /obj/structure/platform/strata{ dir = 1 @@ -32960,102 +33164,66 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"pPh" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"pPq" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) "pPt" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) -"pPC" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/nw_rockies) -"pPD" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"pPE" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 18 - }, -/obj/item/tool/soap{ - pixel_y = 14 +"pPv" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -7; + pixel_y = 17 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"pPN" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "33" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pPC" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/nw_rockies) +"pPL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"pPS" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"pPX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"pQe" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/corsat/brown/west, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) -"pQh" = ( -/obj/structure/platform{ - dir = 1 +"pPT" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"pPY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, /obj/structure/platform{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"pQd" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"pQe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"pQk" = ( -/obj/structure/curtain/medical, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"pQm" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"pQy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"pQw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "pQA" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green, @@ -33065,16 +33233,13 @@ "pQE" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges) -"pRd" = ( -/obj/structure/barricade/sandbags{ - dir = 8 - }, -/obj/item/prop/alien/hugger{ - pixel_x = 13; - pixel_y = -5 +"pQH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock"; + welded = 1 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) "pRg" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, @@ -33082,69 +33247,91 @@ "pRh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/n_rockies) +"pRj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"pRt" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) "pRv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"pRy" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"pRH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"pRV" = ( -/obj/item/stack/tile/plasteel, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"pSz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Entrance Office"; - pixel_y = 26 +"pRC" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"pSH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"pTb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/machinery/vending/cola{ + layer = 3.1 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"pTA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pRE" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"pRH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"pSz" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"pSC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 9; + pixel_y = 3 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"pTH" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pTQ" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"pSS" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 1; icon_state = "p_stair_full" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) +"pSV" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"pTf" = ( +/obj/structure/holohoop{ + density = 0; + pixel_y = 27 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_x = 5; + pixel_y = -13 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"pTv" = ( +/obj/structure/machinery/microwave, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"pTJ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/item/device/binoculars, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) "pTW" = ( /obj/item/explosive/mine/active{ dir = 4 @@ -33157,11 +33344,59 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) +"pUf" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"pUj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"pUm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"pUn" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen/glass) "pUo" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"pUp" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"pUs" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"pUu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Dorms And Office Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"pUx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "pUR" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -33170,9 +33405,13 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) "pUS" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "pVn" = ( /obj/structure/platform_decoration, /obj/structure/stairs/perspective{ @@ -33194,145 +33433,158 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"pVB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "pVM" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) +"pVW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pVP" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"pVZ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "pWe" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"pWh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -13; + pixel_y = 4 + }, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"pWE" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pWO" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"pWo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -12; + pixel_y = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 14; + pixel_y = 4 + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"pWF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"pWG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"pWM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"pWP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) "pWR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"pWT" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/structure/prop/holidays/string_lights{ - pixel_x = -1; - pixel_y = 5 +"pWZ" = ( +/obj/item/stack/sheet/wood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"pWV" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"pXa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) "pXc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "pXo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/clothing/suit/storage/jacket/marine/RO{ + name = "\improper UA jacket" }, -/turf/open/floor/almayer/w_y2/north, -/area/lv522/atmos/way_in_command_centre) +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "pXu" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"pXC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"pXN" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"pXR" = ( -/obj/structure/barricade/sandbags, -/obj/item/trash/uscm_mre{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"pXW" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"pXZ" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 - }, -/obj/structure/closet/crate, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"pYd" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"pYg" = ( +"pXy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"pXF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"pYn" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"pYo" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"pYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"pXJ" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"pXM" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 }, -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pYa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "pYu" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"pYK" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"pYL" = ( -/obj/structure/machinery/light{ - dir = 1 +"pYy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"pYH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/corpo/glass) "pYN" = ( /obj/structure/platform_decoration{ @@ -33347,19 +33599,23 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"pZa" = ( -/obj/item/clothing/gloves/yellow, -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 26 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) +"pYR" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"pZe" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "pZo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"pZv" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "pZA" = ( /obj/item/storage/secure/safe{ pixel_y = 29 @@ -33370,113 +33626,56 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"pZN" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"pZS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pZF" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"pZX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"qak" = ( +/obj/structure/fence{ + layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"qac" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"qah" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) -"qap" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/nw_rockies) "qaq" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"qar" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "Marked_2"; - pixel_y = 26 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/landing_zone_1/tunnel) +"qav" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "qaA" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"qaJ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qaO" = ( -/obj/structure/prop/invuln/minecart_tracks{ - layer = 2.6 - }, -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"qaR" = ( -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 3; - pixel_y = 10 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -2; + pixel_y = 8 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/admin) +"qaM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qaU" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"qbq" = ( /obj/structure/stairs/perspective{ - dir = 10; + dir = 6; icon_state = "p_stair_full" }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qaZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qbg" = ( -/obj/structure/cargo_container/seegson/right, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"qbj" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib4" - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"qbx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"qbz" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "qbG" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -33503,6 +33702,21 @@ /obj/structure/sign/safety/high_voltage, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"qbK" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qbQ" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) "qbW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -33523,18 +33737,18 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/central_streets) -"qcl" = ( -/obj/structure/largecrate, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) +"qcq" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) "qcy" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"qcC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/north) +"qcB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "qdc" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -33549,87 +33763,76 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) "qdo" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qdp" = ( -/obj/structure/cargo_container/kelland/left, -/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_y = 28 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "qdq" = ( -/obj/structure/closet/secure_closet/miner, +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qds" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"qdz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"qdL" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qdR" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"qdK" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "qdS" = ( /obj/structure/bed/sofa/south/grey/left, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"qdT" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"qdU" = ( +"qed" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/north_command_centre) -"qdY" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"qej" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"qen" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_west_street) +"qes" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"qey" = ( /obj/structure/stairs/perspective{ - dir = 8; + dir = 1; icon_state = "p_stair_full" }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"qez" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"qeP" = ( /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"qeY" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/atmos/cargo_intake) +"qeB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/w_y2/north, +/area/lv522/oob/w_y_vault) +"qeC" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"qeN" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"qeX" = ( +/obj/structure/closet/basketball, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "qfm" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -33652,13 +33855,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"qfx" = ( +"qfv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"qfy" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) "qfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -33671,27 +33881,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qfM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"qfR" = ( -/obj/structure/machinery/mill, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"qgb" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"qgg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "qgj" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -33699,11 +33888,10 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "qgo" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) +/area/lv522/indoors/b_block/bridge) "qgr" = ( /obj/structure/machinery/light/small, /obj/structure/ladder{ @@ -33713,35 +33901,40 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"qgw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "qgx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"qgC" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"qgy" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"qgP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/north, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"qgJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) -"qhc" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"qhG" = ( -/obj/structure/surface/table/almayer, +"qhd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"qhn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"qhq" = ( +/turf/open/floor/plating, +/area/lv522/outdoors/w_rockies) +"qhu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "qhO" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -33752,6 +33945,19 @@ "qic" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) +"qif" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "qig" = ( /obj/structure/bed/chair/wood/normal{ dir = 4; @@ -33759,40 +33965,46 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"qiv" = ( -/obj/structure/machinery/light{ - dir = 8 +"qiK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "qiN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/damage) -"qiO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"qiT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +"qiR" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "qiZ" = ( /obj/structure/surface/table/almayer{ flipped = 1 }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) +"qjc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"qjg" = ( +/obj/structure/surface/table/almayer, +/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_y = 14 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"qjn" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "77" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "qjr" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -33801,18 +34013,16 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"qjw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) "qjC" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"qjD" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) "qjG" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) @@ -33822,21 +34032,32 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"qjS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 +"qjZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"qkm" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"qkt" = ( +/obj/structure/platform{ + dir = 8 }, /obj/structure/stairs/perspective{ + dir = 1; icon_state = "p_stair_full" }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"qkv" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"qjT" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/coagulation/icon2_0, -/area/lv522/oob) +/area/lv522/indoors/b_block/bar) "qkw" = ( /obj/structure/prop/invuln/remote_console_pod, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ @@ -33846,23 +34067,99 @@ }, /turf/open/floor/prison, /area/shuttle/drop1/lv522) -"qkN" = ( -/obj/structure/barricade/wooden{ - dir = 4; - layer = 5.3 +"qkF" = ( +/obj/structure/machinery/optable{ + density = 0; + pixel_x = 16; + pixel_y = -6 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"qld" = ( -/obj/item/prop/alien/hugger, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"qkI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"qkM" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"qkN" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"qkO" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"qkR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/surgery/scalpel/manager, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"qkX" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "West_Lock"; + name = "remote door-control"; + pixel_x = -9; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "East_Lock"; + name = "remote door-control"; + pixel_x = 10; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Containers_west_LV522"; + name = "remote door-control"; + pixel_x = 1; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "West LZ Storage"; + name = "West LZ Storage control"; + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "qle" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) +"qli" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qln" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/lv522/indoors/a_block/dorms) +"qlt" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "qly" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -33878,6 +34175,12 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) +"qlC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) "qlD" = ( /obj/structure/machinery/power/port_gen/pacman/mrs{ layer = 3.1; @@ -33895,22 +34198,25 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/central_streets) -"qlL" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"qlS" = ( -/obj/structure/platform_decoration{ - dir = 4 +"qlE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"qlY" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/kitchen/damage) +"qlN" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "24" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qlP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "qma" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -33918,27 +34224,48 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"qmv" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) +"qmg" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"qmm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"qmw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) "qmA" = ( /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"qmL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" +"qmP" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "83" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qmQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"qmW" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/east_reactor/south) "qnb" = ( /obj/structure/platform, /obj/structure/platform{ @@ -33949,17 +34276,20 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qno" = ( -/obj/structure/machinery/light{ - dir = 1 +"qnm" = ( +/obj/structure/barricade/handrail, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"qny" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt" }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor) -"qnE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"qnL" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/east_central_street) "qnM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -33967,85 +34297,43 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"qnQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/east) -"qnZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qob" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"qoe" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +"qor" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "qot" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/cardboard/full_stack, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"qoA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) "qoG" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"qpa" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 +"qoL" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qpb" = ( -/obj/structure/machinery/light, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"qpk" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qoO" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"qoT" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"qpn" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "qpq" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -34055,17 +34343,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"qpr" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "61" +"qpt" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/east) +"qpx" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qpu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "qpz" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -34079,10 +34368,39 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/central_streets) +"qpQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"qpV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qqb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "qqj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison/darkbrownfull2, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"qqt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sandwich{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "qqx" = ( /obj/structure/barricade/wooden{ @@ -34108,93 +34426,48 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "qqJ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"qqT" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"qrB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"qrC" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe, -/obj/item/tool/crowbar, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"qrE" = ( +/obj/structure/curtain/red, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 2.1; + name = "????"; + stat = 2 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "qrG" = ( -/obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"qrO" = ( -/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"qrT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/item/paper/wy, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) "qsi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"qsj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"qsk" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) "qsr" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/vial, /obj/structure/machinery/cell_charger, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qsv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"qsB" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) +"qsA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "qsC" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/beakers, @@ -34210,20 +34483,15 @@ }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"qtj" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"qtm" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +"qsZ" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 +/obj/structure/machinery/m56d_hmg{ + dir = 8 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "qts" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -34231,6 +34499,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) +"qtw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "qtx" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -34251,17 +34527,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"qtB" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"qtF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) "qtN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -34269,6 +34534,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"qum" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "qup" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -34282,55 +34551,62 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"qut" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on{ - pixel_x = -14; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) "quw" = ( /obj/item/clothing/head/welding, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"quC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "quD" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"quN" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "46" +"quH" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"quT" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"quJ" = ( +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"quV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"quW" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qvm" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor) +"qvw" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"qvx" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/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_y = 14 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"qvE" = ( -/obj/structure/barricade/deployable{ +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"qvD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "qvJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -34350,38 +34626,22 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "qvO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) "qvY" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"qwa" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qwd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) -"qwg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"qwk" = ( +"qwf" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/obj/item/tool/soap, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"qwm" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "qws" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -34395,26 +34655,16 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"qwv" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qwA" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"qxc" = ( -/obj/structure/bed/chair{ - dir = 1 +"qwU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"qxe" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "qxg" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -34434,20 +34684,28 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qxq" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qxu" = ( -/turf/open/floor/wood/wood_broken6, -/area/lv522/indoors/b_block/bar) -"qxz" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/reactor_garage) -"qxA" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) +"qxr" = ( +/obj/structure/surface/table/almayer, +/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_y = 14 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qxx" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"qxy" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "qxB" = ( /obj/item/ammo_magazine/sniper{ current_rounds = 0; @@ -34462,68 +34720,65 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qxE" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"qxJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +"qxQ" = ( +/obj/structure/machinery/mill, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "qxX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) -"qyd" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"qys" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"qyh" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"qyj" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" }, -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"qyz" = ( +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"qyp" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Pressuredoor"; - name = "High Pressure Door"; - unacidable = 1 - }, /turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel) -"qyE" = ( -/obj/structure/platform{ - dir = 4 +/area/lv522/atmos/reactor_garage) +"qyx" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) +/area/lv522/indoors/a_block/garden) +"qyF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "qyG" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) "qyH" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"qyN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) "qyS" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -34536,9 +34791,30 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"qza" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) +"qzf" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qzi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"qzo" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "qzy" = ( /obj/structure/largecrate/random/barrel{ layer = 2.7 @@ -34569,40 +34845,46 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qzI" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) +"qzM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"qzN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "qzQ" = ( /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"qzS" = ( +"qzT" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) "qzU" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) "qzX" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/n_rockies) -"qAb" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/filt) -"qAe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"qAk" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "32" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qAq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) "qAt" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -34613,25 +34895,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"qAP" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"qAz" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"qAG" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"qAK" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"qAL" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"qAO" = ( +/obj/structure/platform, /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"qBa" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 +/area/lv522/atmos/way_in_command_centre) +"qAQ" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"qAV" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "qBb" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison, @@ -34661,43 +34970,22 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"qBp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"qBt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 3 +"qBy" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "95" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"qBD" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qBz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "qBE" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"qBH" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) "qBQ" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -34709,18 +34997,28 @@ }, /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) -"qCm" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qCI" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light, +"qCc" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"qCv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"qCK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 16 + }, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_y = 3 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "qCY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -34736,11 +35034,22 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "qCZ" = ( -/obj/item/prop/colony/usedbandage{ - dir = 10 +/obj/structure/cargo_container/seegson/right, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"qDc" = ( +/obj/item/stack/rods{ + pixel_y = 14 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/oob) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"qDf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) "qDl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -34749,9 +35058,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"qDo" = ( -/turf/open/floor/coagulation/icon8_8, -/area/lv522/oob) +"qDn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "qDr" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -34762,13 +35075,21 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"qDF" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"qDK" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "qDL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/corpo_fitness) -"qDM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "qDR" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, @@ -34779,15 +35100,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qEb" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) "qEc" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, @@ -34808,21 +35120,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"qEn" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 +"qEq" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) +"qEt" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"qEo" = ( -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) -"qEs" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +/obj/structure/machinery/atm{ + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "qEQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -34830,74 +35141,63 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"qFa" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, +"qEZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"qFj" = ( -/obj/structure/machinery/light{ +"qFI" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"qFm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"qFp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"qFu" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"qFZ" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qGb" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qGc" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "5" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"qFV" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "qGf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"qGA" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qGm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/toilet) +"qGo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "qGC" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"qGD" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, +"qGE" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "qGI" = ( /obj/structure/ore_box{ pixel_x = 5 @@ -34907,20 +35207,24 @@ "qGK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"qGT" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"qGZ" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "23" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qHj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"qHm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"qHo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) "qHr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -34939,19 +35243,46 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"qHL" = ( -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qIk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"qIt" = ( -/obj/structure/largecrate/random/barrel/blue, +"qHK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "26" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qHM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) +"qHX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"qId" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) +"qIr" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/atm{ + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "qIu" = ( /obj/structure/bed/bedroll{ dir = 1; @@ -34964,53 +35295,13 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"qIK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"qIO" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"qIP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"qIU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"qJe" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, +"qJc" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_street) +"qJs" = ( +/turf/open/asphalt/cement/cement4, /area/lv522/landing_zone_1) -"qJj" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"qJn" = ( -/obj/item/prop/colony/canister{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) "qJy" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/shale/layer1, @@ -35026,6 +35317,11 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"qJP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) "qJT" = ( /obj/structure/prop/server_equipment/yutani_server/off{ density = 0; @@ -35034,26 +35330,15 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"qKc" = ( -/obj/structure/machinery/optable, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +"qKf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "qKk" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"qKn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) "qKq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -35071,75 +35356,43 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"qKt" = ( -/obj/item/explosive/mine/active, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) "qKy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"qKA" = ( +/obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/north{ start_charge = 20 }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"qKE" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) -"qKz" = ( +"qLl" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"qKC" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"qKH" = ( -/obj/item/tool/pen/clicky, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"qKJ" = ( -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qKW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"qLi" = ( -/obj/effect/decal/cleanable/generic, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -13; - pixel_y = -9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"qLj" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qLp" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"qLq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"qLD" = ( -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"qLH" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"qLt" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/blue/north, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) +"qLA" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/dorms) "qLQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -35151,6 +35404,15 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"qMb" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "qMd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -35158,42 +35420,46 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"qMn" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "qMo" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/wood/large_stack, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"qMp" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/filt) "qMx" = ( /obj/item/ammo_magazine/sniper{ current_rounds = 6 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"qMM" = ( +"qMK" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qMT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/c_block/cargo) -"qNa" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"qNf" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "qNh" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"qNk" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/tool/pickaxe/silver, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) "qNl" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, @@ -35205,13 +35471,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"qNt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "qNK" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -35231,62 +35490,70 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"qNL" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/toilet) "qNR" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"qNZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qOx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +"qOk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/closet, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qOC" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"qOm" = ( /obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) -"qOF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"qOJ" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"qOV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"qPk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"qPw" = ( +"qOR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor/west) +"qPa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"qPe" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/north) +"qPl" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/tunnel, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"qPt" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "qPA" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -35294,12 +35561,22 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qPM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qPC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qPH" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qPI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "qPU" = ( /obj/structure/bed/chair{ dir = 8 @@ -35309,19 +35586,19 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) +"qPV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/southeast, +/area/lv522/indoors/a_block/dorms) "qQe" = ( /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) "qQg" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/obj/structure/platform{ + dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "qQi" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -35335,71 +35612,59 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qQw" = ( -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"qQx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/way_in_command_centre) "qQB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qQF" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qQL" = ( +"qQK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) "qQQ" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"qQR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/structure/barricade/metal{ +"qQS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"qQS" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"qQU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"qRd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"qRn" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) +"qRe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"qRo" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 5; + pixel_x = 15 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) "qRB" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/medium_stack, @@ -35416,48 +35681,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"qRI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/t_comm) -"qRM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"qRP" = ( -/obj/structure/prop/almayer/computers/sensor_computer2{ - density = 0; - pixel_y = 16 +"qRN" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"qRZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"qRR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"qSd" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"qSg" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"qSf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qSs" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate{ + pixel_x = -2; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/trash/plate{ + pixel_x = 6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"qSn" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "qSw" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -35465,35 +35722,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"qSF" = ( +/obj/item/tool/lighter/zippo{ + layer = 3.1; + pixel_x = 12; + pixel_y = 18 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "qSH" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qSN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"qSU" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "qTn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"qTy" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_1) -"qTD" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"qTF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"qTw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "qTI" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -35508,85 +35762,109 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"qTQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 +"qTY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - pixel_y = 15 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"qTS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"qUc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) +/area/lv522/indoors/a_block/dorms) "qUh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"qUj" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +"qUm" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/potatoseed{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/seeds/potatoseed, +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"qUt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"qUw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/hallway) +"qUJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/reactor_garage) "qUL" = ( /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"qUV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"qVg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"qVn" = ( +"qUN" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/prop/server_equipment/laptop/on, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qVJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"qVP" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"qVW" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "6" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"qVA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qWb" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"qWc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/reactor_garage) +"qVK" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"qVL" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"qVM" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"qVO" = ( +/obj/structure/prop/turbine_extras/left, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"qWe" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) +/area/lv522/outdoors/colony_streets/south_west_street) +"qVU" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"qVY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) "qWf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -35594,69 +35872,169 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"qWg" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"qWh" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) -"qWy" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"qWA" = ( +"qWn" = ( +/obj/effect/decal/cleanable/generic, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "qWD" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"qWI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) -"qWO" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9; + layer = 2.9 + }, +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"qWJ" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant James 'Four eyes' Brown" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"qWQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"qWR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"qWV" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"qWW" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 4.13 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"qXc" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"qXe" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"qXa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/w_y2/north, -/area/lv522/oob/w_y_vault) -"qXd" = ( -/turf/open/floor/corsat/browncorner, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"qXE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +"qXq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"qXu" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 22 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red{ + pixel_x = -7; + pixel_y = 26 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"qXy" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 + }, +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qXF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/telecomms/server{ + pixel_x = 16; + pixel_y = 16 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + pixel_x = -2; + pixel_y = -6; + stat = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/outdoor_bot) "qXH" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toy, /turf/open/floor/prison, /area/lv522/landing_zone_2) +"qXK" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"qXU" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_west_street) "qXY" = ( /obj/structure/platform{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"qYe" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"qYn" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "qYo" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -35668,10 +36046,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"qYH" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +"qYL" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "qYP" = ( /obj/structure/platform{ dir = 1 @@ -35684,11 +36068,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"qYT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "qZf" = ( /obj/item/storage/belt/marine{ pixel_x = 7; @@ -35696,40 +36075,32 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"qZq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"qZw" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +"qZl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"qZn" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/obj/structure/platform_decoration{ - dir = 10 +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + layer = 4.3; + pixel_y = 13 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"qZL" = ( -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qZz" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "31" }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) +/area/lv522/landing_zone_forecon/UD6_Tornado) "qZT" = ( /obj/item/prop/colony/usedbandage{ dir = 9 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"qZX" = ( -/turf/open/floor/prison, -/area/lv522/atmos/sewer) "qZY" = ( /obj/item/weapon/gun/rifle/m41a{ current_mag = null @@ -35739,11 +36110,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"raf" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) "raH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -35753,6 +36119,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) +"raK" = ( +/obj/structure/largecrate/supply/ammo/m41a/half{ + pixel_x = 5 + }, +/obj/item/storage/box/guncase/m41a{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/ammo_box/rounds/empty{ + layer = 3.1; + pixel_y = -15 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"raL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "raS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -35814,56 +36203,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"rbg" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"rbj" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"rbt" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"rbx" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"rbI" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" +"rbf" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"rbj" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"rbp" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"rby" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "rbK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/lmg/holo_target, -/obj/item/weapon/gun/rifle/lmg{ - current_mag = null - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) "rbV" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -35880,41 +36245,26 @@ /obj/item/clothing/accessory/poncho, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"rcg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"rci" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/sewer) -"rco" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"rcp" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"rcl" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "29" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) +/area/lv522/landing_zone_forecon/UD6_Tornado) "rcr" = ( /obj/structure/barricade/deployable, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"rcu" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/landing_zone_1) -"rcJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) +"rcC" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"rcF" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) "rcO" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1; @@ -35954,26 +36304,10 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"rcU" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"rcY" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3"; - pixel_x = -3 - }, +"rcS" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"rdp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/indoors/c_block/cargo) "rdq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -35987,6 +36321,16 @@ /obj/item/tool/portadialysis, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"rdL" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "rdM" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -36001,74 +36345,126 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway/damage) -"rdV" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "Corpo Vault"; - name = "Vault Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, +"rdZ" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/floor/corsat/marked, -/area/lv522/oob/w_y_vault) -"ree" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/area/lv522/outdoors/colony_streets/north_east_street) +"reg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "reo" = ( /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) +"req" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "res" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) +"reG" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"reM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"reP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_west_street) "reQ" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) +"reT" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"rff" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"rfh" = ( +/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/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "rfk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"rfn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"rfz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"rfF" = ( -/obj/structure/bed/chair{ - dir = 4 +"rfH" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"rfR" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"rgb" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"rgj" = ( /turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rfL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/indoors/a_block/bridges) +"rgl" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"rfM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"rgB" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"rgF" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) -"rgr" = ( -/turf/closed/shuttle/dropship3/tornado, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rgs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/outdoors/colony_streets/north_street) "rgG" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -36077,41 +36473,117 @@ /obj/structure/platform, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"rhr" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"rhw" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"rhQ" = ( -/obj/structure/surface/table/almayer, +"rgH" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rgI" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 25 + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"rgJ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/cargo_intake) +"rgR" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "17" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rgV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/north) +"rhd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/paper_bin/wy{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"rho" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"rhE" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rhZ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer{ + pixel_y = 16 + }, +/obj/item/frame/table/almayer{ + pixel_x = 10; + pixel_y = 12 + }, +/obj/item/frame/table/almayer{ + pixel_y = 4 + }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"rik" = ( +"rim" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 8; + pixel_y = 17 + }, +/obj/item/reagent_container/food/snacks/toastedsandwich, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"rip" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"riF" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "62" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"riQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"riw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"riA" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/command_centre) -"riL" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"riR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"riW" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "rjn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6; @@ -36129,86 +36601,102 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"rjp" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/west) "rjs" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/structure/barricade/wooden{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"rjV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/obj/item/newspaper{ - anchored = 1; - desc = "This is the Chunk and Dunks menu. It reads 'Starters chunky fried cheese chunky chicken giblets dunky donuts Main chunky mac and cheese chunky meat and gravy pizza galaxy pizza TM dunky grilled style steak imitation Deserts dunky refried ice cream OUT OF STOCK chunky chocolate moose dunky hash brown Drinks souto TM Original souto TM penguin week special chunk and dunk gravy soft drink chunky coffee CAUTION HOT dunky arcturian imitation tea"; - name = "menu"; - pixel_y = 26 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rjK" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"rjZ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"rjW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"rko" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = -8 }, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"rka" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" +/obj/structure/bed{ + layer = 2.6; + pixel_y = 5 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"rkb" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "rkp" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"rkI" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"rkt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"rkA" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rkJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement2, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"rkP" = ( +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) -"rlc" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"rlm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) "rlB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "rlJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Corpo-Bridge-Lockdown" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rlK" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"rlR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/n_rockies) +"rlT" = ( +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/structure/closet/crate/ammo, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "rlV" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/barricade/wooden{ @@ -36216,17 +36704,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"rmg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"rmj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "rmp" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating, @@ -36235,59 +36712,55 @@ /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness/glass) "rmx" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 10 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "rmA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"rmJ" = ( -/obj/structure/machinery/space_heater/radiator/red{ +"rmP" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/game, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"rmR" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/tool/pickaxe/silver, +/obj/item/tool/pickaxe/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "rmX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"rmY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Colony Operations Centre"; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"rna" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"rnf" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/north_east_street) -"rnk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"rnl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +"rnb" = ( +/obj/structure/machinery/vending/walkman{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "rnq" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/landing_zone_2) @@ -36298,51 +36771,44 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"rnx" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "rnB" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) +"rnC" = ( +/obj/structure/closet/crate, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"rnF" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) "rnG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rnO" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rnR" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"rnW" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"rob" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/item/trash/ceramic_plate{ + pixel_y = 8 }, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"roc" = ( /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"ron" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) +/area/lv522/atmos/east_reactor/south) +"roi" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "rot" = ( /obj/structure/cargo_container/kelland/right, /turf/open/asphalt/cement, @@ -36360,84 +36826,63 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rph" = ( +"roG" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rpc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/circuitboard/computer{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/circuitboard/computer{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) "rpm" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"rpr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) "rpu" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) "rpw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "West LZ Storage"; + name = "Emergency Lockdown" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"rpO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/southwest, -/area/lv522/indoors/a_block/medical) -"rpP" = ( -/obj/structure/pipes/unary/freezer{ - dir = 1; - icon_state = "freezer_1" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"rqf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"rpQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "rqk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "rqv" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"rqx" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"rqz" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/shiva/prefabricated/reinforced, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/lone_buildings/storage_blocks) -"rqD" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/palebush{ - pixel_y = 9 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "rqE" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap{ @@ -36446,9 +36891,20 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"rqL" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +"rqF" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_2"; + name = "treadmill" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"rqI" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "rqP" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -36456,37 +36912,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"rqW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/item/device/radio/marine{ - pixel_x = 10; - pixel_y = 22 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) -"rra" = ( -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_knight{ - pixel_x = -5; - pixel_y = 23 - }, -/obj/item/tool/wrench{ - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/wood_broken, -/area/lv522/indoors/b_block/bar) "rrf" = ( /obj/structure/platform, /obj/structure/prop/invuln/lattice_prop{ @@ -36496,10 +36921,18 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"rrK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) +"rrZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_box/rounds/smg{ + layer = 3; + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "rsa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -36507,32 +36940,48 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"rsb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, +"rsd" = ( +/obj/structure/prop/turbine_extras/border, +/obj/structure/prop/turbine, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/casino) -"rsf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/area/lv522/outdoors/colony_streets/south_west_street) "rsj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) +"rsk" = ( +/obj/item/ammo_box/magazine/misc/mre/empty, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"rsn" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/south_street) "rsq" = ( /obj/item/toy/beach_ball, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"rsB" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) +"rsx" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe, +/obj/item/tool/crowbar, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) "rsF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -36547,38 +36996,22 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating, /area/lv522/atmos/filt) -"rsT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "rsX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"rsY" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/bridges/op_centre) -"rtb" = ( -/obj/structure/machinery/light{ - dir = 8 +"rsZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"rtj" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) "rtk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -36586,12 +37019,27 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"rtm" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "rtr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) +"rts" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "rtz" = ( /obj/item/stack/sheet/wood, /obj/item/ore/diamond, @@ -36600,34 +37048,26 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) +"rtE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "rtI" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, /area/lv522/outdoors/nw_rockies) -"rtO" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"rtP" = ( +"rtJ" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/reactor_garage) +"rub" = ( /obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"rtQ" = ( -/obj/item/cell/apc{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/cell/hyper{ - pixel_y = -2 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ruc" = ( /obj/structure/cargo_container/kelland/left{ layer = 2.9 @@ -36646,54 +37086,55 @@ /obj/item/clothing/head/soft/ferret, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"ruC" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "ruH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"ruI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"ruM" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/prize/deathripley{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/item/toy/prize/ripley{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"ruP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +"ruL" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/lv522/indoors/a_block/dorms) "ruS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"ruV" = ( -/obj/item/storage/firstaid/o2, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rvb" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rvc" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"rve" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan4/west, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) "rvh" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/spawner/gibspawner/xeno, @@ -36702,51 +37143,33 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"rvm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "rvx" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"rvJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"rvY" = ( -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" - }, -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" +"rvA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"rwl" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"rvU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/brown/west, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"rvY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) +"rwl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "rwo" = ( /obj/structure/surface/table/almayer, /obj/item/stack/tile/plasteel{ @@ -36790,9 +37213,6 @@ /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"rwD" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) "rwE" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, @@ -36823,219 +37243,271 @@ /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"rxd" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"rxa" = ( +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"rxh" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "9" }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rxy" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"rxn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"rxw" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"rxx" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/area/lv522/indoors/a_block/security) +"rxA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "rxI" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_street) -"rxW" = ( -/obj/structure/platform, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1) -"ryF" = ( -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"ryW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"rxU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"rzf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock"; - welded = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"ryk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"ryp" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"ryy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"ryE" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"rzg" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) "rzq" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rzR" = ( +"rzN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"rzV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"rzR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"rAe" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "rAf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) "rAm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/sewer) -"rAp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"rAn" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) -"rAP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rAy" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rAC" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rAV" = ( +/obj/structure/surface/rack, +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + pixel_x = 5; + registered_name = "John Forklift" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"rBc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "rBd" = ( /obj/structure/platform{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"rBi" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "25" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "rBz" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"rBR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rBW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"rCV" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"rCW" = ( -/obj/structure/largecrate/random/barrel{ - layer = 2.9 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"rCY" = ( -/obj/structure/platform{ - dir = 8 +"rBG" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5" }, -/obj/structure/prop/almayer/computers/sensor_computer2{ - layer = 2.0 +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"rBP" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"rDc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"rDA" = ( +/area/lv522/indoors/a_block/kitchen/glass) +"rBW" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"rCF" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) -"rDD" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 7; - pixel_y = -12 +"rCS" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"rDA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/marine/insulated, +/obj/item/tool/weldingtool{ + pixel_x = -4 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"rDO" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"rEb" = ( -/obj/structure/machinery/disposal, +/obj/item/tool/weldpack{ + pixel_x = 14; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"rDB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"rDF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/off{ + layer = 3.1; + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"rDU" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/landing_zone_2) +"rEl" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"rEP" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"rEY" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"rFa" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"rFu" = ( -/obj/structure/largecrate/random, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor) +"rEq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"rEy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"rED" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"rET" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/area/lv522/indoors/c_block/cargo) +"rEZ" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) +"rFb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"rFe" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"rFn" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) +"rFo" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "rFT" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"rFZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) "rGi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) +"rGq" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"rGy" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "rGD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -37045,122 +37517,84 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rGM" = ( +"rGH" = ( /turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) -"rGW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rHt" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "22" }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"rHe" = ( -/obj/structure/machinery/light{ +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rHI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/cargo_intake) -"rHo" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"rHz" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"rHB" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) "rHK" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"rHP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"rHT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) "rHX" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, /obj/item/trash/chips, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"rIc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/tool/lighter/random{ - pixel_x = 9; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"rIi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) "rIn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"rIu" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"rIU" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/reactor_garage) -"rJn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"rIo" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"rIL" = ( +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"rIP" = ( /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"rJo" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"rJp" = ( -/obj/structure/coatrack{ - pixel_y = 24 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 3 - }, +/area/lv522/atmos/east_reactor/north) +"rIW" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"rJl" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/purple{ - pixel_x = -2; - pixel_y = 27 +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"rJm" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"rJn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"rJt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "rJx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"rJB" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/item/storage/box/donkpockets{ + pixel_x = -14; + pixel_y = -2 }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "rJC" = ( /obj/structure/window_frame/strata, /obj/item/shard{ @@ -37169,118 +37603,129 @@ /obj/item/stack/rods, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"rJD" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/light{ - dir = 1 +"rJL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"rKb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) "rKk" = ( -/obj/structure/toilet{ - pixel_y = 16 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" }, -/obj/structure/sink{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/toilet) -"rKu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters{ - pixel_y = 6 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"rKw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"rKB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/item/weapon/wirerod{ - pixel_x = -3; - pixel_y = 3 +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/east_central_street) +"rKE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"rKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges/dorms_fitness) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"rKU" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) "rKW" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"rKZ" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"rKX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Reactor Control"; + pixel_y = 6 }, -/turf/open/asphalt/cement/cement4, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rKY" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"rLn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/reactor_garage) +"rLr" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) +"rLu" = ( +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) -"rLj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"rLp" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"rLx" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; +"rLw" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; pixel_y = 4 }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"rLz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"rLI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Break Room"; - req_one_access = null +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"rLL" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rLP" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rLU" = ( -/obj/structure/stairs/perspective{ +"rLx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 8; - icon_state = "p_stair_full" + pixel_y = 4 }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"rLz" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "rMd" = ( /obj/item/weapon/gun/boltaction{ current_mag = null; @@ -37289,14 +37734,9 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"rMo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rMw" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) +"rMe" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/landing_zone_2) "rMz" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -37306,38 +37746,91 @@ pixel_x = 4; pixel_y = 21 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"rMA" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"rMC" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) "rME" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/outdoors/colony_streets/north_east_street) "rMF" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"rMK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +"rMI" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "rMR" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"rMS" = ( +"rMT" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rMW" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"rNb" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/clothing/suit/storage/marine/smartgunner, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/item/cpr_dummy, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"rNf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"rNj" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/clothing/head/soft/sec, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) "rNm" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"rNq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/weldingtool/simple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "rNv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37353,43 +37846,14 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"rNw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"rNA" = ( -/obj/structure/surface/table/almayer, -/obj/item/cpr_dummy, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) "rNJ" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 16 - }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"rNV" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) -"rNR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/west_reactor) -"rNY" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"rOd" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) "rOf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -37413,88 +37877,114 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rOk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"rOB" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rOT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"rPf" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"rPm" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/barricade/handrail{ +"rOr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"rPn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"rOx" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "rPr" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/engi{ - pixel_x = 7; - pixel_y = 3 +/obj/structure/surface/rack, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "rPu" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"rPV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rPx" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"rPA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/c_block/cargo) -"rQn" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"rPB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, +/obj/structure/machinery/door/window{ + dir = 2; + pixel_y = 6 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"rQo" = ( -/obj/structure/closet/bodybag, -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"rQu" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/window{ dir = 8; - pixel_y = 16 + pixel_y = 17 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"rPL" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"rPM" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"rPP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) -"rQw" = ( +"rPS" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"rPV" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"rPY" = ( +/obj/structure/girder, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) +"rQv" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) "rQB" = ( /obj/structure/closet/crate/miningcar/yellow, /obj/item/ore/coal, @@ -37504,19 +37994,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"rQF" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/central_streets) "rQL" = ( /obj/structure/platform_decoration/strata{ dir = 4 @@ -37524,29 +38001,67 @@ /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) "rQS" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, +/obj/vehicle/powerloader, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rQZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"rRc" = ( -/obj/item/clipboard, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"rRs" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"rRu" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"rRb" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/area/lv522/indoors/a_block/medical) +"rRj" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"rRt" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"rRz" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"rRD" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"rRE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"rRH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"rRM" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "rRP" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/prop/invuln/lattice_prop{ @@ -37583,42 +38098,85 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"rSk" = ( +"rSr" = ( +/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/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rSv" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"rTd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"rTn" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"rTq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"rTs" = ( /obj/structure/filingcabinet{ density = 0; - pixel_x = -9; - pixel_y = 20 + pixel_x = -8; + pixel_y = 22 }, /obj/structure/filingcabinet{ density = 0; - pixel_x = 6; - pixel_y = 20 + pixel_x = 8; + pixel_y = 22 }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"rSC" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"rTe" = ( -/obj/structure/largecrate/supply/supplies/metal, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rTA" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"rTC" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"rUm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/structure/machinery/light{ - dir = 4 +/area/lv522/indoors/c_block/casino) +"rUb" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/west_reactor) +"rUf" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "rUr" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 5 @@ -37626,19 +38184,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"rUO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"rUW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"rUy" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "rUX" = ( /obj/structure/shuttle/engine/heater{ dir = 4; @@ -37659,54 +38211,78 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"rVp" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"rVu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" +"rVf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rVk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"rVm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"rVF" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"rWf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/lv522/indoors/b_block/hydro) +"rVK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"rVV" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "rWi" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"rWr" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"rWt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) +/obj/item/tool/lighter/random{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"rWs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan4/north, +/area/lv522/indoors/a_block/medical) "rWu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"rWK" = ( +"rWN" = ( /obj/structure/stairs/perspective{ - dir = 1; + dir = 8; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"rWN" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/east_central_street) +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "rWP" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -37714,50 +38290,72 @@ "rWS" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"rWU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rWY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "rXb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"rXd" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"rXf" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"rXj" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "Marked_2"; + pixel_y = 26 }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"rXu" = ( +/obj/item/storage/firstaid/o2, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"rXw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"rXA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"rXB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "rXH" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"rYd" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/lv522/indoors/a_block/dorms) +"rXN" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"rYe" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"rYh" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "rYi" = ( /obj/structure/platform{ dir = 4 @@ -37767,6 +38365,13 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) +"rYp" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"rYs" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "rYE" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_2" @@ -37776,31 +38381,23 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"rYG" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +"rYQ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"rYP" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "rZc" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"rZf" = ( -/obj/structure/machinery/sensortower{ - pixel_x = 6 - }, -/turf/open/floor/bcircuit, -/area/lv522/indoors/a_block/admin) "rZg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -37808,27 +38405,40 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"rZh" = ( -/obj/structure/ore_box, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rZk" = ( -/obj/structure/machinery/light{ - dir = 1 +"rZn" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) +"rZt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rZJ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"rZP" = ( -/obj/structure/surface/table/almayer, +/area/lv522/atmos/north_command_centre) +"rZv" = ( +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/accessory/poncho, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) +"rZB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"saf" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) "sag" = ( /obj/structure/ore_box, /obj/item/tool/weldpack{ @@ -37836,15 +38446,58 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"saw" = ( -/obj/structure/platform_decoration{ - dir = 8 +"sah" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Chunk 'N Dump" }, -/obj/structure/platform_decoration{ +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"sak" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Break Room"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"sal" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_y = 3 + }, +/obj/item/paper/janitor, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"sar" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"sas" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"sat" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "saz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37871,20 +38524,37 @@ }, /turf/open/asphalt/cement, /area/lv522/landing_zone_2/ceiling) -"sbs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"sbO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, +"sbn" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"sbI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Family Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"sbP" = ( +/turf/open/floor/almayer/w_y0/north, +/area/lv522/oob/w_y_vault) "sbV" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"sbW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"sbY" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "scc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37892,81 +38562,36 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"scj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"scJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c1000, -/obj/effect/decal/cleanable/dirt, +"sch" = ( +/obj/effect/decal/cleanable/generic, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"scL" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"scP" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/admin) -"scS" = ( -/obj/item/clothing/suit/storage/marine/medium, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"sda" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +/area/lv522/indoors/c_block/cargo) +"scm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"sdg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"sdj" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"sdt" = ( +/obj/effect/landmark/corpsespawner/wy/manager, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"scP" = ( +/obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"sdy" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"scR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/cargo_container/wy/left, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"sdz" = ( -/obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"sdh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "sdC" = ( /obj/structure/largecrate/random/secure{ pixel_x = -7 @@ -37975,28 +38600,36 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) "sdF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light{ +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"sdI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"sdP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"sdL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"sdO" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"sdQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"sdU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"sdT" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "sek" = ( /obj/structure/machinery/light{ dir = 8 @@ -38006,53 +38639,35 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"seq" = ( +"sel" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"sen" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 +/obj/structure/machinery/microwave{ + pixel_y = 3 + }, +/obj/structure/machinery/microwave{ + pixel_y = 15 }, -/obj/item/storage/toolbox/mechanical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"seo" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "seF" = ( /obj/structure/window/framed/corsat, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"seR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"sft" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"sfA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"sfC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"sfH" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "sfI" = ( /obj/structure/platform{ dir = 4 @@ -38072,26 +38687,76 @@ /obj/item/stack/sheet/wood, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"sgr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, +"sgp" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/west_reactor) +"sgt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"sgR" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"sgu" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) +"sgS" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "sgT" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/indoors/a_block/corpo) +"sgU" = ( +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"sgX" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"shl" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"shv" = ( +/obj/structure/ore_box, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"shB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "shD" = ( /obj/item/stack/rods, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"sia" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/stack/sandbags/small_stack, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "sid" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -38099,22 +38764,32 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"sih" = ( +"sif" = ( +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"sii" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"siq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/indoors/a_block/bridges/garden_bridge) +"sin" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"sip" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/cement/cement1, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"siG" = ( -/obj/item/tool/crowbar, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) +"siO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "siX" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -38125,36 +38800,36 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"sja" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "23" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"sjm" = ( -/obj/structure/stairs/perspective{ +"sjc" = ( +/obj/structure/machinery/conveyor{ dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"sjn" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" + id = "cargo_container" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "sjy" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/security) -"sjF" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +"sjz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Canteen Airlock"; + welded = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"sjH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "sjQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair, @@ -38163,52 +38838,63 @@ "sjY" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"skd" = ( -/obj/structure/machinery/light{ +"ska" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"skg" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/obj/structure/platform{ dir = 8 }, -/obj/structure/pipes/vents/pump, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"sky" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = -6; - pixel_y = 1 +"skr" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"skF" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"skI" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = 6; - pixel_y = 4 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"skX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"skZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"sld" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"skJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"slo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"skL" = ( -/turf/open/floor/coagulation/icon0_0, -/area/lv522/oob) -"skM" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/chunk) -"skY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/matches{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"sln" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "slq" = ( /obj/structure/platform_decoration{ dir = 8 @@ -38219,17 +38905,26 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"sls" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/light{ - dir = 1 +"slv" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"slx" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"slz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"slB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "slD" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -38237,75 +38932,40 @@ /obj/structure/cargo_container/watatsumi/rightmid, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"slG" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) "slO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"slP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/monkeyburger{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 6; - pixel_y = 19 +"smd" = ( +/obj/item/tool/pen/clicky, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"sme" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"slS" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"slU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"slV" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"slZ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "smf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"smg" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/prop/colony/usedbandage{ + dir = 9 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "smi" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -38313,79 +38973,93 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"smC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 +"smm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"smq" = ( +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"smv" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = -3 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"smL" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 6; + pixel_y = 3 }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"smQ" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"smw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Community Office" + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"sna" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/effect/decal/cleanable/cobweb, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"smJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "snb" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"snj" = ( -/obj/structure/machinery/light, +"snh" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"snk" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Secure_Master_Armoury_2"; + name = "remote door-control" + }, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "sno" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"snB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"snz" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) +"snC" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "snX" = ( /turf/closed/wall/strata_outpost, /area/lv522/landing_zone_2/ceiling) -"soa" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"sob" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"sod" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) "sol" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, @@ -38395,17 +39069,31 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"sot" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +"soO" = ( +/obj/structure/prop/vehicles{ + icon_state = "truck_damaged" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "spe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) +"sph" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"spi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "spm" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, @@ -38419,30 +39107,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"spu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"spF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"spA" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Dorms"; - pixel_y = 26 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"spH" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/outdoors/colony_streets/north_west_street) "spJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38450,64 +39120,97 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) +"spN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "spR" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"sqt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"sqO" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"sqo" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"sqv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) "sqQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"sqW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/west_reactor) -"src" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"srD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/botanic_leather, +"sqU" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"srb" = ( /obj/structure/machinery/light{ dir = 8 }, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"sre" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"srn" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Tornado' flight controls"; + network = null; + pixel_y = 21 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 + }, +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "srH" = ( -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "srJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"srK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"srP" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "srS" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -38515,152 +39218,122 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"srZ" = ( -/obj/structure/bed/chair{ +"srV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "ssh" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"ssm" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"ssu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"ssx" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ssy" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; +"ssG" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ pixel_x = 9; - pixel_y = 3 + pixel_y = 2 }, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/kitchen/damage) -"ssz" = ( -/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"ssY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"ssZ" = ( +/area/lv522/atmos/cargo_intake) +"stB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/reactor_garage) -"stk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/obj/structure/window/reinforced{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/bridges/op_centre) +"stK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat/plate, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) -"stt" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"stH" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"stQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"stN" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "67" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"sub" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"stP" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) "suh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"suk" = ( -/obj/structure/machinery/light{ - dir = 1 +"suq" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold/small_stack, -/obj/item/ore/silver, -/obj/item/ore/silver, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"sul" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"sut" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"suv" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"suC" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/landing_zone_2) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"suA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"suD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) "suF" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"suH" = ( +"svk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) -"suQ" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"suT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"suW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"svb" = ( -/obj/structure/holohoop{ - density = 0; - pixel_y = 27 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"svm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 }, -/obj/item/toy/beach_ball/holoball{ - pixel_x = 5; - pixel_y = -13 +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"svj" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "svo" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wrench, @@ -38671,23 +39344,16 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"svu" = ( +"svs" = ( /obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/wood/wood_broken5, -/area/lv522/indoors/b_block/bar) -"svx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob) +"svB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "svG" = ( /obj/structure/platform_decoration{ dir = 4 @@ -38698,49 +39364,55 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"svM" = ( -/obj/item/xeno_egg/alpha{ - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/xeno_egg/alpha{ - pixel_x = 2; - pixel_y = 7 +"svS" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 8; + pixel_y = 12 }, -/obj/structure/closet/crate, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "svW" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor) -"swe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 +"swp" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"swq" = ( +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "swt" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"swv" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"swy" = ( +/turf/closed/shuttle/dropship3/tornado, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"swE" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/turf/open/gm/river, +/area/lv522/atmos/sewer) "swF" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -38751,43 +39423,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"swH" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"swN" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"swO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"sxb" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Kitchen-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = 9 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Armoury-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = -2 +"swI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) "sxp" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/donut{ @@ -38796,22 +39437,31 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"sxq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"sxJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" +"sxL" = ( +/obj/structure/machinery/sensortower{ + pixel_x = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"sxV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" +/turf/open/floor/bcircuit, +/area/lv522/indoors/a_block/admin) +"sxY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"syk" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/area/lv522/landing_zone_1/ceiling) +"syo" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "syB" = ( /obj/structure/ore_box, /obj/effect/decal/warning_stripes{ @@ -38820,6 +39470,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"syD" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "syH" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -38827,43 +39481,51 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"syT" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) "syW" = ( /obj/item/explosive/mine/active{ dir = 8 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"szE" = ( +"sza" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"szg" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"szG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/atmos/east_reactor/south) +"szm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"szy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"szN" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"szR" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "szY" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -38881,6 +39543,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"sAr" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer2{ + layer = 2.0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "sAt" = ( /obj/structure/platform{ dir = 1 @@ -38893,89 +39564,65 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"sAz" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"sAA" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"sAG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +"sAI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"sAQ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"sAR" = ( -/obj/structure/cargo_container/kelland/right{ - layer = 2.9 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "sAU" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) -"sAZ" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"sBc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"sBj" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ +"sAY" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) "sBt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"sBu" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +"sBF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"sBO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"sBV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "sBX" = ( /obj/structure/girder, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"sBZ" = ( -/obj/structure/bed/chair{ +"sCa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/prison/floor_plate, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"sCd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "sCr" = ( /obj/structure/bed/chair/wood/normal{ @@ -38984,22 +39631,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"sCY" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ +"sCt" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"sDl" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_west_street) -"sDp" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"sCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "sDq" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -39007,134 +39654,151 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"sDu" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "sDv" = ( /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"sDw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"sDL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor) "sDS" = ( /turf/open/floor/prison, /area/lv522/outdoors/nw_rockies) +"sDT" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"sDV" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "sEa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"sEh" = ( +"sEf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"sEu" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 8; icon_state = "p_stair_full" }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"sEo" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"sEz" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/area/lv522/landing_zone_1/tunnel/far) +"sEC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "sEF" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"sEO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"sEQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) -"sFd" = ( +/obj/structure/bed/roller, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"sER" = ( +/obj/item/clothing/accessory/red, +/obj/item/clothing/under/liaison_suit/field{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"sEV" = ( /obj/structure/surface/table/almayer, -/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_y = 14 +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sFg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Storage"; - req_one_access = null +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"sEX" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = -9 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/toy/beach_ball/holoball{ + pixel_y = -3 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"sFo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"sFB" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor) -"sFE" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "29" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"sFj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"sFr" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"sFu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "sFL" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"sFY" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"sGx" = ( +"sGn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = -37; - pixel_y = 17 - }, -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/hallway) -"sGE" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "sGF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"sGP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +"sGK" = ( +/obj/structure/surface/table/almayer, +/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_y = 12 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "sGQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -39142,23 +39806,25 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) -"sHc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/welding{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"sHC" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +"sHl" = ( +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/command_centre) -"sHO" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"sHx" = ( +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) +"sHG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "sHY" = ( /obj/structure/platform{ dir = 8 @@ -39174,74 +39840,92 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"sIb" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"sIj" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "sIr" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"sII" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"sIJ" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "101" +"sIu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sII" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"sIM" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"sIP" = ( +/obj/structure/prop/server_equipment, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) "sIS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"sIU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) "sIV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"sJt" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"sJy" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"sJw" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) "sJI" = ( /obj/structure/surface/table/almayer, /obj/item/key/cargo_train, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"sKt" = ( +"sJZ" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/engineering) +"sKd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar/red, +/obj/item/clipboard{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"sKf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) +"sKt" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"sKw" = ( +/obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "sKx" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -39267,9 +39951,24 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"sKE" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "sKJ" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/east_central_street) +"sKQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"sKV" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "sLa" = ( /obj/structure/showcase{ desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; @@ -39283,18 +39982,6 @@ /obj/structure/window/reinforced, /turf/open/floor/bluegrid, /area/lv522/indoors/a_block/corpo/glass) -"sLe" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"sLf" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) "sLk" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -39304,13 +39991,11 @@ /obj/item/reagent_container/glass/beaker, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"sLq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) +"sLr" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "sLw" = ( /obj/structure/platform{ dir = 8 @@ -39318,21 +40003,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"sLB" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"sLE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) "sLG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -39340,36 +40010,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"sLK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"sLN" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"sLO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sLJ" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - name = "\improper Dormitories" + icon_state = "flammable_pipe_3" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "sLR" = ( /obj/structure/prop/dam/van/damaged{ layer = 3.1 @@ -39389,25 +40042,27 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"sMj" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"sMq" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"sMu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, +"sMe" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"sMr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"sMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) "sMA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -39419,24 +40074,48 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) +"sME" = ( +/obj/item/trash/barcardine, +/obj/item/tool/weldingtool, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"sMM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "sMN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"sMO" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) "sMP" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"sMS" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Typhoon' flight controls"; + network = null; + pixel_y = 21 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 + }, +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "sMV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -39444,15 +40123,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"sMW" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "sMY" = ( /obj/structure/showcase{ desc = "The display model for a Weyland Yutani generation one synthetic. Why would someone put a skirt on a synthetic?"; @@ -39466,76 +40136,29 @@ /obj/structure/window/reinforced, /turf/open/floor/bluegrid, /area/lv522/indoors/a_block/corpo/glass) -"sNc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) -"sNf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) "sNk" = ( /obj/effect/landmark/survivor_spawner/lv522_forecon_sniper, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"sNr" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "32" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"sNz" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"sNE" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) +"sNl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "sNG" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"sNK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"sNP" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "sNQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating, /area/lv522/atmos/filt) -"sNZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"sOx" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"sOn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"sOq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "sOA" = ( /obj/item/clothing/head/welding{ pixel_y = 7 @@ -39552,18 +40175,29 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"sOD" = ( -/obj/item/hardpoint/locomotion/van_wheels{ - desc = "Integral to getting shreaded"; - name = "Lifting weights" +"sOC" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"sOG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 + }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"sOJ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"sOK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "sOM" = ( /obj/structure/platform{ dir = 1 @@ -39586,20 +40220,20 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"sPc" = ( -/obj/structure/machinery/door_control{ - id = "UD6"; - name = "Cargo Shutter Control" - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "53" +"sOT" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "sPk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"sPl" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/central_streets) "sPm" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -39612,26 +40246,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"sPy" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_west_street) -"sPR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/command_centre) -"sQf" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"sQz" = ( +"sPA" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/landing_zone_1) +"sPN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"sQA" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "sQD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -39644,25 +40265,33 @@ }, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"sQU" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"sQW" = ( -/obj/structure/barricade/wooden{ +"sQP" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform{ dir = 4 }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sQV" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/outdoors/w_rockies) +"sRg" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sRj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"sRl" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/obj/item/circuitboard/machine/ghettosmes, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"sRs" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/indoors/lone_buildings/storage_blocks) "sRu" = ( /obj/structure/platform, /obj/structure/platform{ @@ -39673,26 +40302,10 @@ "sRA" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"sRD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) "sRI" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"sRK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/admin) "sRM" = ( /obj/structure/platform{ dir = 1 @@ -39710,55 +40323,33 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"sSc" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"sSR" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "95" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sSY" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"sSd" = ( +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"sSe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"sSz" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "sTc" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/donut{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = -4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"sTj" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "33" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"sTu" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) +"sTh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, /turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) +/area/lv522/indoors/b_block/bridge) "sTA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -39776,139 +40367,110 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"sTL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "sTR" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"sTS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"sTV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"sTX" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"sUc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"sUd" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"sUe" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"sTT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"sTX" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 25 }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"sUo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "sUs" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"sUt" = ( -/obj/structure/bed/chair{ - dir = 8 +"sUD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"sUM" = ( +/obj/structure/machinery/computer/crew/colony{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"sVf" = ( +/obj/effect/decal/cleanable/generic, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"sUv" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"sUx" = ( +/area/lv522/indoors/c_block/bridge) +"sVg" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"sVq" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "77" + icon_state = "29" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"sVe" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"sVm" = ( +"sVI" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"sVz" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bridge) -"sVB" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"sVI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/area/lv522/indoors/a_block/dorms) "sVJ" = ( /obj/structure/barricade/handrail{ layer = 3.7 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"sVS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sVX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"sVQ" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"sVV" = ( +/obj/structure/bed/chair{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sWl" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = -14; - pixel_y = -2 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"sWj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "sWn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/cargo_intake) +"sWq" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "sWr" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) @@ -39921,147 +40483,209 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"sWH" = ( -/obj/structure/surface/table/almayer, -/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 = -2; +"sWL" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; pixel_y = 16 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"sWI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/machinery/atm{ + pixel_y = 11 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"sWM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"sWO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"sWX" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun/beanbag/empty, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"sXu" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/barricade/handrail{ dir = 4 }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"sXA" = ( +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, +/obj/effect/spider/spiderling/nogrow, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"sXC" = ( +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/east_reactor/south) -"sXb" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/accessory/poncho, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"sXD" = ( +"sXL" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"sXU" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "sXZ" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"sYj" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "sYl" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"sYr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "sYs" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"sYu" = ( +/obj/structure/closet/crate, +/obj/item/tool/pickaxe/silver, +/obj/item/tool/pickaxe/silver, /turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"sYw" = ( +/area/lv522/indoors/lone_buildings/storage_blocks) +"sYx" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 1; icon_state = "p_stair_full" }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "sYE" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "sYH" = ( /turf/open/floor/plating, /area/shuttle/drop1/lv522) -"sYL" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "100" +"sYY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sZn" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"sZh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"sZl" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"sZm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"sZo" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "sZq" = ( /turf/open/gm/river, /area/lv522/atmos/filt) -"sZr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"sZz" = ( -/obj/structure/largecrate/random/case/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"sZA" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +"sZC" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "sZD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "sZF" = ( -/obj/item/shard, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"sZI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"sZR" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"sZS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) "taw" = ( /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"tay" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"taz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/colony/usedbandage{ - dir = 9 +"taA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "taH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -40086,35 +40710,15 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"taR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/east, -/area/lv522/indoors/a_block/dorms) -"taZ" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 28 - }, -/obj/structure/surface/rack, +"taU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"tbc" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"tbq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"tbw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, +/turf/open/floor/strata/white_cyan4/west, /area/lv522/indoors/a_block/medical) +"tbd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "tby" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -40122,68 +40726,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"tbB" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/janitorialcart, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"tbR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Engineering"; - pixel_y = -6 +"tbD" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = 10; + pixel_y = 32 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"tbZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "16" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tbG" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tch" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/east_central_street) -"tci" = ( -/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"tcA" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "3" - }, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 29 - }, -/obj/item/prop{ - desc = "Something about a research lab."; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "USCM classified intelligence folder" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/oob) -"tcD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "tcJ" = ( /turf/closed/shuttle/elevator{ dir = 9 @@ -40196,19 +40756,16 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tdc" = ( +"tda" = ( +/obj/structure/closet/crate/miningcar/yellow, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/diamond, +/obj/item/ore/diamond, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"tdf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "tdi" = ( /obj/structure/prop/dam/crane, /obj/effect/spawner/random/toolbox{ @@ -40217,17 +40774,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"tdn" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tdy" = ( -/obj/item/stack/sheet/metal, +"tdj" = ( /turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) +/area/lv522/indoors/a_block/hallway) "tdz" = ( /obj/item/book/manual/marine_law{ pixel_x = 7 @@ -40242,24 +40791,25 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"tdI" = ( -/obj/structure/bed/bedroll{ - dir = 4 +"tdJ" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -2; + pixel_y = 16 }, -/obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"teb" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"ted" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"tei" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "tex" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -40273,44 +40823,31 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"teP" = ( -/obj/structure/window/reinforced{ +"teX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) -"teV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) "tff" = ( -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - name = "supply crate" - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "tfi" = ( /obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"tfq" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"tfw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"tfj" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"tfw" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "tfO" = ( /obj/item/prop/colony/usedbandage{ dir = 9; @@ -40322,120 +40859,37 @@ "tfP" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"tfS" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"tfX" = ( -/turf/open/floor/corsat/brown, -/area/lv522/oob) -"tgd" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Security"; - pixel_x = -16 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) "tgj" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/CICmap, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"tgy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tgQ" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Central Office"; - pixel_y = 26 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"tgY" = ( +"tgn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"thf" = ( -/obj/structure/ore_box{ - pixel_x = -4 - }, -/obj/structure/ore_box{ - layer = 3.2; - pixel_x = -11; - pixel_y = 23 - }, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"thg" = ( +/area/lv522/indoors/c_block/mining) +"thf" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"thm" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = -4 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) -"thn" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"thw" = ( +/obj/item/tool/pen/blue/clicky{ + pixel_x = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"thA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"thM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"thE" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ dir = 1; - name = "\improper C-Block - Garage Airlock" + pixel_y = 26 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "thU" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -40444,23 +40898,33 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"thV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"tiA" = ( -/obj/structure/pipes/vents/pump, +"tie" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) +"tiF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"tiG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "tiJ" = ( /obj/item/explosive/grenade/incendiary/molotov, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"tiN" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"tiP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "tiQ" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) @@ -40483,37 +40947,43 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"tjc" = ( +"tjd" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"tjH" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 4; - pixel_y = -15 +"tjk" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"tjp" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"tjy" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = -1 }, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/admin) -"tjI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"tjB" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"tjK" = ( -/obj/item/trash/burger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_east_street) +"tjE" = ( +/obj/item/explosive/mine/active, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "tjM" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -40526,40 +40996,18 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"tjX" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) "tkf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"tkh" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) "tkm" = ( /obj/structure/curtain, /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"tkp" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"tko" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "tkL" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -40568,103 +41016,137 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"tkV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tkN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"tlm" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/game, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) "tlr" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"tmg" = ( -/obj/structure/machinery/light{ - dir = 8 +"tmq" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/platform{ + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tms" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"tml" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_y = 3 +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"tmt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + req_one_access_txt = "100"; + welded = 1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tmE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"tng" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"tnq" = ( +/area/lv522/indoors/c_block/mining) +"tmJ" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"tmO" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "47" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"tmR" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"tnc" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"tnj" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"tnn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_one, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/indoors/lone_buildings/outdoor_bot) +"tno" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "tns" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"tnu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"tnz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/radio/off{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"tnI" = ( -/obj/structure/barricade/sandbags{ - dir = 8 +"tnE" = ( +/obj/structure/largecrate/supply{ + pixel_x = -4 }, -/obj/item/trash/uscm_mre, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"tnJ" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_west_street) "tnM" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"toa" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +"tnO" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Southwest Landing Zone" }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 +/turf/open/floor/plating, +/area/shuttle/drop1/lv522) +"tnR" = ( +/obj/structure/fence{ + layer = 2.8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"toh" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"tok" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"toa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "tos" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -40678,6 +41160,21 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway/damage) +"toy" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"toA" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "toF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -40693,27 +41190,27 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"tpg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"tpp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"tpA" = ( +"tpj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"tpC" = ( +/obj/item/trash/uscm_mre, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "tpD" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"tpT" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) "tpV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green, @@ -40723,55 +41220,49 @@ /obj/structure/curtain/red, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"tqf" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"tqi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, +"tql" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = -1 + }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) -"tqj" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/reactor_garage) -"tqz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"tqC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/wrench{ - pixel_y = -6 +/area/lv522/atmos/east_reactor/south) +"tqv" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"tqD" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "16" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"tqO" = ( +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tqT" = ( +/obj/item/stack/rods/plasteel, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) +"tqZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "trj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"trr" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) "trD" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -40783,18 +41274,10 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"trS" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"trT" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) +"trJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "trW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -40805,20 +41288,26 @@ "trZ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/chunk) -"tse" = ( -/obj/structure/noticeboard{ - pixel_y = 29 +"tsc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/obj/structure/girder/reinforced, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tsk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "tso" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"ttb" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) "ttf" = ( /obj/effect/landmark/corpsespawner/forecon_spotter, /obj/item/weapon/gun/rifle/m41a{ @@ -40828,52 +41317,56 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ttg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +"ttk" = ( +/obj/structure/machinery/door_control{ + id = "UD6"; + name = "Cargo Shutter Control" }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ttq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "53" }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ttA" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "ttC" = ( /obj/item/weapon/gun/smg/nailgun, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"ttS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) +"ttP" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"ttR" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"ttZ" = ( +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "tuf" = ( -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"tuh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"tug" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "tum" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"tuy" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/medical, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) "tuJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -40889,15 +41382,32 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "tuO" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"tuR" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"tuY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"tvc" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"tvd" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"tvh" = ( -/obj/item/stack/rods, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) "tvq" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_wy"; @@ -40908,59 +41418,32 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"tvw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"tvG" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/east_central_street) -"tvK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"twt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/nw_rockies) -"twv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"twy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"twB" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "48" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"twL" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"twN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ +"tvv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/colony_net{ dir = 1; - id = "sh_dropship2"; - name = "\improper Typhoon crew hatch" + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Private Casino"; + pixel_y = -6 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"tvV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"tvW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"twC" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"twR" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) "twT" = ( /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/shale/layer1, @@ -40969,29 +41452,43 @@ /mob/living/simple_animal/mouse, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"txG" = ( +"txl" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkpurplefull2, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) +"txE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"txI" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "30" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "txK" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"txV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"txM" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "txY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -41013,20 +41510,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"tyo" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"tyr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) "tyy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -41039,42 +41522,26 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"tyz" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"tyG" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = 10; - pixel_y = 32 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "16" +"tyE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"tyO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "tzd" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/lv522/indoors/c_block/mining) -"tzk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"tzl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +"tzo" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) "tzz" = ( /obj/structure/largecrate/random/secure, /obj/structure/largecrate/random/mini{ @@ -41082,91 +41549,60 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tzE" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, +"tzI" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"tzM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"tzO" = ( +/obj/structure/platform{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"tAk" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 19 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"tzX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"tAp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 6; - pixel_y = 19 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"tAl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/kitchen/damage) +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "tAr" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/prison, /area/lv522/landing_zone_1) -"tAx" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"tAy" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"tAA" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"tAG" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "tBb" = ( /obj/structure/prop/dam/drill, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"tBc" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"tBm" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_east_street) -"tBn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"tBr" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +"tBs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 5 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "tBu" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"tBA" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) +"tBz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper/janitor, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) "tBC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -41174,10 +41610,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"tBF" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +"tBE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "tBQ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -41190,6 +41629,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"tBZ" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "tCa" = ( /obj/item/trash/uscm_mre{ pixel_x = 10; @@ -41200,40 +41643,20 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"tCc" = ( -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ - pixel_x = 8; - pixel_y = 13 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 8; - pixel_y = 11 +"tCb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"tCf" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "tCh" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"tCl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) "tCq" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ density = 0; @@ -41252,198 +41675,116 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"tCw" = ( -/obj/structure/machinery/light{ +"tCy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"tCx" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"tCC" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/security) +"tCL" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/storage/box/drinkingglasses{ + pixel_y = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) "tCN" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/colony_streets/south_east_street) -"tCR" = ( -/obj/structure/closet/crate/explosives, -/obj/item/storage/box/explosive_mines, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tCS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tDc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) -"tCU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"tCY" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tDd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tDf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tDq" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tDs" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ - layer = 4.4; - pixel_x = 13; - pixel_y = 19 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_street) -"tDA" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"tDC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 +"tDv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"tDG" = ( -/obj/structure/machinery/microwave, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"tDO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"tDx" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"tDF" = ( +/obj/structure/prop/structure_lattice, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "tDS" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/admin) -"tDZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"tEh" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"tEi" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"tEl" = ( +"tDT" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"tEq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"tEI" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"tEK" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"tEA" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"tEK" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"tEO" = ( +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"tET" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/central_streets) +"tFp" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tFt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) -"tFw" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) "tFx" = ( /turf/closed/wall/strata_outpost, /area/lv522/landing_zone_1/ceiling) -"tFz" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) "tFB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -41455,45 +41796,20 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tFE" = ( +"tFH" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"tFG" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"tFI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"tFR" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"tFS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = -8; + pixel_y = 7 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) +/obj/item/toy/plush/farwa, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "tFW" = ( -/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"tGa" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) "tGb" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -41505,6 +41821,24 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"tGc" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + layer = 3.1 + }, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/tofubreadslice{ + pixel_x = -7 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tGh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -41519,42 +41853,14 @@ "tGo" = ( /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tGr" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tGA" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/structure/machinery/light{ - dir = 8 - }, +"tHa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, /turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"tGE" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"tGU" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"tHb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"tHs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) +/area/lv522/atmos/command_centre) +"tHx" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) "tHJ" = ( /obj/structure/platform{ dir = 8 @@ -41563,86 +41869,70 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"tHO" = ( -/turf/open/floor/bcircuit, -/area/lv522/atmos/east_reactor/south) -"tHW" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 7 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 6 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 2 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 3 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = -6 - }, -/obj/item/clothing/suit/storage/bomber/alt, -/obj/item/clothing/suit/storage/bomber/alt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"tIm" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tIA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +"tIv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "tID" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"tIL" = ( +"tIH" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"tIK" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"tIN" = ( +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"tIQ" = ( +/obj/structure/barricade/sandbags, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"tIW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Kitchen-Lockdown"; + name = "remote door-control"; + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) "tJa" = ( /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) +"tJb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"tJh" = ( +/obj/item/xeno_egg/alpha{ + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/xeno_egg/alpha{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/closet/crate, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "tJk" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; @@ -41651,54 +41941,25 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"tJE" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "47" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tJL" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jaccuzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; +"tJH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ pixel_x = -5; - pixel_y = 19; - serial_number = 16 + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/machinery/light, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"tJL" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "tJN" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tJP" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"tKa" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -7; - pixel_y = 24 - }, -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "70" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "tKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41712,18 +41973,6 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"tKw" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) "tKB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41744,10 +41993,45 @@ /obj/structure/surface/rack, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"tKJ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"tKK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "tKM" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"tKT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) +"tLd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"tLo" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"tLq" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) "tLr" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/storage/hazardvest{ @@ -41758,16 +42042,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"tLt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) "tLw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -41779,51 +42053,59 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"tLx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "tLE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"tLZ" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation" +"tLI" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -11; + pixel_y = 16 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"tLT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"tLW" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"tMa" = ( +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"tMf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "tMk" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"tMn" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "tMp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"tMC" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +"tMy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "tMD" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"tMG" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) "tMT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/bronze{ @@ -41834,35 +42116,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tMX" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "75" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tMY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"tNa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) "tNc" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"tNi" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) "tNl" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -41871,43 +42128,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"tNF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"tNI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"tNJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tNM" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "tNQ" = ( /obj/structure/largecrate, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"tOn" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 5; - pixel_x = 15 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) "tOo" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) @@ -41928,24 +42152,11 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tOC" = ( -/turf/open/floor/corsat/brown/east, +"tOF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) -"tOP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"tOQ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "tPb" = ( /obj/structure/prop/structure_lattice, /turf/open/auto_turf/shale/layer1, @@ -41956,29 +42167,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"tPj" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"tPo" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) "tPs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"tPu" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "tPv" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -41990,65 +42182,95 @@ /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"tPC" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"tPN" = ( -/obj/structure/machinery/light, +"tPJ" = ( +/obj/item/prop/colony/used_flare, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"tPU" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"tPL" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -11; + pixel_y = 20 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "tQb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"tQd" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/filt) +"tQf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"tQh" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tQi" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"tQn" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"tQC" = ( -/obj/structure/window/reinforced{ +"tQI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"tQP" = ( +/obj/structure/stairs/perspective{ dir = 1; - layer = 3 + icon_state = "p_stair_full" }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/atmos/east_reactor/south) -"tQO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"tRg" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tRk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tRg" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"tRL" = ( -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"tRO" = ( -/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) +"tRA" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tRV" = ( +/obj/structure/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "tSb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -42059,22 +42281,29 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"tSf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"tSi" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) "tSm" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"tSs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"tSu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +"tSF" = ( +/obj/item/trash/uscm_mre, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "tSL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/hydro) @@ -42083,26 +42312,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"tTc" = ( +"tSY" = ( /obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs{ - pixel_y = 12 - }, -/obj/item/restraint/handcuffs{ - pixel_y = 6 +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 }, -/obj/item/restraint/handcuffs, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "tTj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/n_rockies) "tTr" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -13 @@ -42122,27 +42341,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/dorms) -"tUf" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"tUn" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"tTT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tUw" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"tUE" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"tUF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, +/area/lv522/indoors/lone_buildings/storage_blocks) +"tUI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) +/area/lv522/atmos/way_in_command_centre) "tUL" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -42156,186 +42376,215 @@ "tUM" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"tUY" = ( +"tUO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tVc" = ( /obj/structure/machinery/light{ - pixel_x = 16 + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "tVe" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) +"tVn" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"tVp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tVt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jaccuzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_x = -5; + pixel_y = 19; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) "tVv" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tWe" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"tWr" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 +"tVD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"tVE" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/east) +"tVH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) -"tWv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/largecrate/random/case/small, +"tVJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"tWx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"tWB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "tWE" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"tWL" = ( -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"tWN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"tXb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"tWQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/north) +"tWS" = ( +/turf/open/floor/corsat/brown, +/area/lv522/oob) +"tXq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/marked, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tXF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"tXj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"tXy" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"tXD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tXQ" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"tXI" = ( -/turf/open/floor/strata/white_cyan4/east, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "tXW" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) -"tYq" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"tYD" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tYX" = ( -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"tYY" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, +"tYd" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -1 + }, /turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +/area/lv522/indoors/a_block/fitness) +"tYm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"tYE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"tYS" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) "tYZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) +"tZa" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"tZe" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) "tZh" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_west_street) -"tZE" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) +"tZy" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "tZF" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"tZK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tZT" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"tZL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) +"uaj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "uar" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"uaD" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" +"uaB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) "uaI" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) @@ -42343,122 +42592,132 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"ubm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 +"uaZ" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 }, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"ubt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ +/obj/structure/stairs/perspective{ dir = 1; - pixel_y = 3 + icon_state = "p_stair_full" }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"ubE" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"uba" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) +/area/lv522/outdoors/colony_streets/north_street) +"ubo" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"ubs" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"ubC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/north) "ubJ" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ubO" = ( +"ubW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"uca" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock"; - welded = 1 +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"ucc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"ucn" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/tool/pen, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uce" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"ucy" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"ucs" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"ucu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"ucv" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"ucJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/area/lv522/indoors/b_block/bar) "ucM" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"ucZ" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) +"ucQ" = ( +/obj/structure/girder/displaced, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"udc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "udi" = ( /obj/structure/platform{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"udt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +"udk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"udq" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "Corpo Vault"; + name = "Vault Lockdown" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/floor/corsat/marked, +/area/lv522/oob/w_y_vault) +"udy" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "udA" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"udC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"udL" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "udM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -42471,17 +42730,23 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) "udP" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"uec" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"udQ" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"udY" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) +/area/lv522/indoors/a_block/bridges/op_centre) +"ueb" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "ueg" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -42496,18 +42761,18 @@ /obj/item/tool/screwdriver, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ueG" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"ufe" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 +"ufq" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = 4 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 12 +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 2 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "ufu" = ( /obj/item/tool/wrench{ pixel_x = -8; @@ -42515,110 +42780,59 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"ufv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "ufA" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"ufI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) - }, +"ufJ" = ( +/obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "ufR" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"ufT" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Corpo-Bridge-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"ufV" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"ufW" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"ufY" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"ugf" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"ugk" = ( -/obj/structure/platform_decoration{ - dir = 1 +"ufZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Medical"; + pixel_x = 16 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ugt" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"ugb" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/weldpack{ - pixel_y = 2 +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 6 }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"ugz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 12 }, /turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/area/lv522/oob/w_y_vault) "ugK" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) "ugN" = ( /obj/item/storage/backpack/marine/satchel/scout_cloak, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"ugP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "ugR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"ugU" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) "ugV" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) @@ -42627,16 +42841,59 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) +"uhi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"uhj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uhp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "uhv" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"uhw" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) "uhx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/pipes/standard/simple/hidden/green{ @@ -42644,9 +42901,12 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"uhA" = ( -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical/glass) +"uhX" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/outdoors/colony_streets/south_west_street) "uie" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -42654,23 +42914,28 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"uim" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) +"uiv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"uiJ" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "uiK" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) "uiM" = ( /turf/open/floor/prison, /area/lv522/landing_zone_1) +"uiR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "uiS" = ( /obj/structure/window_frame/strata, /obj/item/shard, @@ -42690,17 +42955,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/atmos/east_reactor/south) -"ujm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"ujx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) "ujy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -42708,15 +42962,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"ujH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"ujK" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "4" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "ukp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -42726,15 +42971,15 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"uky" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"ukE" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun/buckshot/empty, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +"ukv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"ukH" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "ukK" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/medical/bruise_pack{ @@ -42744,31 +42989,33 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "ukO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ulB" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"ula" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"ulx" = ( -/obj/structure/largecrate/random/secure, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/area/lv522/indoors/a_block/admin) +"ulP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) "ulZ" = ( /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"umd" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) "umf" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/central_streets) @@ -42779,111 +43026,71 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "umk" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "ums" = ( /obj/item/stack/sheet/metal, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"umF" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - pixel_x = 6 +"umE" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"umI" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"umO" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"umN" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"umQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "umR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"umS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"una" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"und" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"unn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Kitchen Airlock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ung" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/area/lv522/indoors/a_block/kitchen) "unt" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/north_command_centre) -"unu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"unw" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation_A_1"; - layer = 3.1 +"unv" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" }, /turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) -"unA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "unC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"unE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"unF" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"unI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper/janitor, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) +"unH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "unM" = ( /obj/structure/platform{ dir = 4 @@ -42898,29 +43105,20 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"unZ" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"uoc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) "uog" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) +"uoi" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "uok" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -42931,36 +43129,40 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uoK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"upb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"upd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 2 +"uon" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"upj" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"uoy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"uoG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"uoK" = ( +/obj/item/prop/alien/hugger, +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"uoP" = ( +/obj/structure/girder, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "upr" = ( /obj/effect/spawner/random/technology_scanner, /turf/open/floor/plating, @@ -42970,40 +43172,30 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "upA" = ( -/obj/structure/bedsheetbin{ - pixel_y = 7 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"upD" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"upC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"upH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) +/area/lv522/indoors/a_block/fitness) "upK" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"upN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"upW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"upR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "upZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -43017,37 +43209,43 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uqf" = ( -/obj/item/cell/crap{ - pixel_x = -8; - pixel_y = -5 +"uql" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/obj/item/cell/crap{ - pixel_y = 8 +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/obj/item/cell{ - pixel_x = 7; - pixel_y = -6 +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"uqm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "uqo" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"uqK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) +"uqr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"uqB" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "uqP" = ( /obj/structure/cargo_container/horizontal/blue/top{ pixel_x = 6 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"ura" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "urd" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/trash/plate, @@ -43062,31 +43260,21 @@ dir = 4 }, /obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"urj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"url" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"urm" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"urn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"urs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "urv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window{ @@ -43094,78 +43282,73 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"urw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"urK" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/largecrate, -/obj/structure/machinery/light/small{ - dir = 1 +"urJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/botanic_leather, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "urM" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"usp" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 +"urQ" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_east_street) +"usi" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"usQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"usF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"usH" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"usR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"usS" = ( -/obj/structure/tunnel{ - pixel_x = 2; - pixel_y = -6 +"uti" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "utq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"utr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"utG" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) -"uub" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uun" = ( +"utE" = ( +/obj/structure/closet/secure_closet/medical2, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"utG" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"utX" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"uuw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"uuy" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "uuB" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -43177,160 +43360,163 @@ /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/t_comm) "uuF" = ( -/obj/structure/pipes/vents/pump, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun/beanbag/empty, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) "uuH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"uuS" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"uuI" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/obj/structure/platform{ +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"uvc" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/potatoseed{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/seeds/potatoseed, -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"uvd" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "uvg" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"uvl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/stack/sandbags/small_stack, +"uvo" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/indoors/a_block/kitchen) +"uvp" = ( +/obj/structure/surface/rack, +/obj/item/hardpoint/locomotion/van_wheels, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "uvC" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/buritto, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"uvI" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"uvQ" = ( -/obj/structure/filingcabinet{ - pixel_x = -9 - }, -/obj/structure/filingcabinet{ - pixel_x = 7 +"uvW" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"uvY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"uvV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"uwe" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"uwf" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"uwi" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"uwq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) -"uwl" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +"uwC" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "33" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "uwF" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/colony_streets/north_east_street) -"uwK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) +"uwI" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) "uwO" = ( -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"uwQ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "67" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "uwT" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"uwZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/donut{ - pixel_y = 3 +"uwW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"uxa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"uxc" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "uxd" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"uxp" = ( +"uxg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"uxq" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"uxj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"uxt" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_1"; - name = "treadmill switch"; - pixel_x = -8; - pixel_y = 8 +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"uxJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 7; + pixel_y = 9 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"uxy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/storage/firstaid/fire, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"uxM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"uxK" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "uxT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -43338,23 +43524,28 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"uyp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"uyE" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 +"uyr" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 10 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"uyF" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) "uyN" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/clothing/head/helmet/marine/scout{ @@ -43374,25 +43565,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"uyQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +"uyY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"uzd" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/east) +"uyZ" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"uzc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"uzG" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"uzH" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "uzI" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/space) -"uzZ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +"uzO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "uAa" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_street) @@ -43403,25 +43621,24 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"uAe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"uAi" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +"uAg" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/reactor_garage) "uAm" = ( /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"uAt" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"uAo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"uAs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) "uAv" = ( /obj/structure/window_frame/strata, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -43431,126 +43648,72 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"uAD" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light{ - dir = 4 - }, +"uAM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"uAE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue/southwest, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) -"uAG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, +"uAU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"uAN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = 3; - pixel_y = 11 + dir = 4 }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_x = -6; - pixel_y = 13 +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"uBk" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uAV" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) +"uAY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"uBd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "uBm" = ( /obj/structure/girder, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/east_central_street) -"uBp" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/ammo_magazine/rifle/m4ra{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uBs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"uBw" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"uBK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"uBu" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "102" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uBA" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"uBC" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, +"uBV" = ( +/obj/item/device/defibrillator, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"uBH" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"uBO" = ( -/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"uBS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uCa" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"uCb" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"uCe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/north) +"uCf" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"uCl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "uCo" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -43571,13 +43734,46 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"uCx" = ( -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/kitchen/damage) +"uCA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) "uCD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uCP" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"uCS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"uCW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"uCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "uDb" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/security) @@ -43587,44 +43783,35 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) "uDw" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "53" +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uDz" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "uDC" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"uDE" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 3 +"uDF" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 12; + pixel_y = -7 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = -8 +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) +"uDO" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"uDH" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"uDN" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"uDQ" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement1, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "uDT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -43632,52 +43819,74 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"uDW" = ( -/obj/structure/bed/bedroll{ - dir = 1 +"uEa" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"uEk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "uEm" = ( -/obj/structure/cargo_container/wy/right, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"uEo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"uEA" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) -"uEv" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"uEw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"uEx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) +"uED" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "uEE" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"uEY" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "97" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uFb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uER" = ( +/obj/item/prop/colony/canister{ + dir = 8; + layer = 3.1; + pixel_y = 16 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"uFg" = ( -/obj/structure/prop/ice_colony/ground_wire{ +/area/lv522/atmos/reactor_garage) +"uEY" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"uFb" = ( +/obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uFj" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"uFu" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) "uFz" = ( /obj/item/clipboard, /turf/open/auto_turf/sand_white/layer0, @@ -43689,107 +43898,70 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"uFD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"uFH" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"uFP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +"uFX" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"uFU" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "uGd" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"uGP" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +"uGh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"uGz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "uGT" = ( /obj/item/explosive/mine/active, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"uHI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine{ - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"uHM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"uHP" = ( -/obj/structure/curtain/red, +"uGU" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) +"uHj" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uHl" = ( +/obj/item/trash/wy_chips_pepper, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "uIe" = ( /obj/structure/ore_box, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"uIg" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "uIk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"uIt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"uIw" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"uIG" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) "uIJ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -43810,69 +43982,75 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) -"uJg" = ( -/obj/structure/machinery/recharge_station, +"uJa" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"uJw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"uJB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/item/falcon_drone{ + desc = "Some sort of fancy...toy? You're not sure.."; + pixel_x = -12 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"uJx" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/structure/machinery/colony_floodlight, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uJG" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"uJH" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"uJJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"uJT" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 +/obj/structure/platform_decoration{ + dir = 5 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) -"uJW" = ( -/obj/item/trash/barcardine, -/obj/structure/largecrate/random/mini{ - pixel_x = -7; - pixel_y = 16 +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"uJB" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"uJF" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"uJM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "uKa" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) "uKp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"uKt" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"uKs" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "uKw" = ( /obj/structure/bed/chair{ dir = 1 @@ -43880,6 +44058,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"uKz" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 6; + layer = 3.1; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) "uKE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -43887,11 +44074,11 @@ /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uKI" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) +"uKG" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "uKR" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -43904,12 +44091,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uLo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) "uLw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -43924,6 +44105,14 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"uLB" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"uLD" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "uLE" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -43946,19 +44135,16 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"uLZ" = ( -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) "uMc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"uMk" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "uMl" = ( /obj/item/storage/bag/ore, /obj/structure/surface/rack, @@ -43966,64 +44152,24 @@ /obj/item/storage/bag/ore, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"uMp" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "uMr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"uMt" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"uMu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"uMx" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"uMA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) "uMG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"uMH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/foamed_metal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"uMI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"uMK" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "uMM" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, @@ -44032,35 +44178,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"uMW" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/east, -/area/lv522/indoors/a_block/dorms) -"uMY" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"uNa" = ( -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) +"uMU" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"uMZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "uNd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -44070,16 +44195,6 @@ /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"uNk" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"uNo" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/cheesie, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "uNp" = ( /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) @@ -44095,34 +44210,36 @@ }, /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) -"uNv" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 10; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"uNI" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"uNQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uNw" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"uNy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"uND" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"uOa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/n_rockies) +"uNE" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"uNX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"uNY" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "uOj" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -44143,39 +44260,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"uOr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "uOs" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"uOu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"uOz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) "uOD" = ( /obj/structure/bed/stool, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"uOE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"uOI" = ( -/obj/item/seeds/riceseed, -/obj/structure/closet/crate, -/obj/item/seeds/riceseed, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) +"uOF" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "uOJ" = ( /obj/structure/bed/chair{ dir = 8 @@ -44183,27 +44283,27 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"uOW" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"uOY" = ( -/obj/structure/pipes/vents/pump, +"uOM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"uPb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) "uPc" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) -"uPe" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"uPx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +"uPl" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"uPq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "uPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -44211,45 +44311,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"uPB" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"uPK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +"uPR" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"uPW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"uPZ" = ( -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"uQa" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"uQc" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_west_street) "uQf" = ( /obj/structure/platform{ dir = 1 @@ -44277,6 +44345,17 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"uQB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"uQG" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "uQI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -44287,65 +44366,45 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"uQM" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"uQN" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"uQO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"uQW" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 1 - }, +"uQP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"uRm" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/area/lv522/atmos/east_reactor/south) +"uQX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/cement, +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"uRG" = ( -/obj/structure/girder, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 11; - pixel_y = -8 +"uRo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"uRA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"uRH" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"uRK" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/dorms) -"uRM" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"uRY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"uSd" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "72" }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"uSm" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) +/area/lv522/landing_zone_forecon/UD6_Tornado) "uSo" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -44357,55 +44416,43 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"uSr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "uSv" = ( /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/corpo) -"uSz" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"uSA" = ( -/obj/structure/platform{ +"uSC" = ( +/obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"uSB" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "31" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uSH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/bcircuit, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "uSJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"uSM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"uSN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open{ + pixel_y = 8 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"uSO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "uSY" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -44428,39 +44475,47 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"uTf" = ( -/obj/structure/closet/secure_closet/bar, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) "uTh" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"uTi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Emergency Engineering" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"uTq" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) +"uTp" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"uTr" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "uTv" = ( /obj/structure/window_frame/strata, /turf/open/floor/plating, /area/lv522/indoors/a_block/corpo) -"uTF" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) +"uTx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"uTz" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = -6 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -11; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"uTX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) "uTY" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -44484,73 +44539,103 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) +"uUz" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "uUB" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"uUY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" +"uUG" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"uUL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "uVy" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/damage) +"uVD" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uVF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"uVG" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "uVI" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"uWc" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"uWl" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"uWq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"uWv" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +"uVM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"uVQ" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob) +"uVY" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"uWd" = ( +/obj/item/stack/rods, +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"uWu" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/command_centre) "uWD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"uWH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"uWJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "uWO" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"uXd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ +"uWV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"uWX" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "uXp" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/warning_stripes{ @@ -44558,145 +44643,105 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"uXr" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "uXy" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/structure/largecrate/supply/floodlights{ - layer = 3.1; - pixel_y = 9 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"uXD" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/toy/dice, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"uXE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block Bar" +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Corporate"; + pixel_y = 26 }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"uXA" = ( /turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"uXK" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/reactor_garage) +/area/lv522/indoors/a_block/corpo/glass) +"uXM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "uXO" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uYk" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"uYu" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"uYv" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/leafybush{ - pixel_y = 5 +"uXV" = ( +/obj/structure/pipes/vents/pump, +/obj/vehicle/powerloader, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"uYh" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"uYu" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) "uYw" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"uYN" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"uYE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"uYI" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"uZo" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"uYU" = ( +/turf/open/floor/strata/white_cyan4/west, +/area/lv522/indoors/a_block/medical/glass) "uZK" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 +/obj/structure/bedsheetbin{ + pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"vab" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"uZL" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "vae" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"vaf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"vai" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) -"vau" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"vaw" = ( -/obj/structure/platform_decoration{ - dir = 8 +"vaA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"vaI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"vaR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"vaW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) "vaZ" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -44704,93 +44749,88 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"vbf" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vbl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"vbv" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 6; - layer = 3.1; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) +"vbp" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"vbD" = ( +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "vbF" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/prison, /area/lv522/landing_zone_2) +"vbT" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2) "vbX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"vbY" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"vcb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"vcl" = ( -/obj/structure/machinery/suit_storage_unit{ - pixel_x = -9 +"vca" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"vcf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/suit_storage_unit{ - pixel_x = 16 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"vci" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"vcl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) "vcn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) -"vcs" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"vcA" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vcO" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 +/area/lv522/atmos/outdoor) +"vcD" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) +/obj/item/clothing/suit/storage/marine/medium/rto, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"vcK" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "vcR" = ( /obj/structure/largecrate/random/mini/med, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) -"vcW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"vcS" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/reagentgrinder{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "vda" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -44808,79 +44848,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vdg" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) "vdk" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "101" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vds" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"vdI" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"vdM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"vdO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"vdQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"vdS" = ( -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"vdU" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "3" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vdG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"vdJ" = ( /obj/structure/stairs/perspective{ - dir = 9; icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"vdR" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 11; + pixel_y = 16 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "vdZ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -44888,13 +44879,30 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"veu" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"vez" = ( +"vep" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "67" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"veC" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, /turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) +/area/lv522/landing_zone_2) +"veE" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "veP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -44904,12 +44912,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"vfe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - req_access_txt = "100" +"veY" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/toilet) +"vfh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/landing_zone_1/ceiling) "vfj" = ( /obj/structure/bed/stool{ buckling_y = 14; @@ -44917,21 +44933,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"vfm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"vfA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "vfC" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -44951,21 +44952,19 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"vfD" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "32" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vfV" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"vfM" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"vfP" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/west_reactor) +"vfZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) "vgb" = ( /obj/structure/platform, /obj/structure/prop/vehicles/crawler{ @@ -44980,25 +44979,15 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vgd" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"vgj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, +"vgp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"vgu" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/filt) -"vgl" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) "vgw" = ( /obj/structure/platform, /obj/effect/decal/cleanable/blood/oil, @@ -45008,32 +44997,50 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"vgD" = ( -/obj/structure/machinery/shower{ - dir = 1 +"vha" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"vhv" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"vhX" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"vhY" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"vib" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/wy_chips_pepper, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"vgN" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"vih" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"vhN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"vii" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/weldingtool/simple, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"vik" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) -"viq" = ( -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +"viu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "viA" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -45061,15 +45068,14 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"viK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) "viN" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"viQ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) "viR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light{ @@ -45077,23 +45083,31 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"viS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vjd" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "69" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "vjl" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/south) -"vjp" = ( +"vjm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) "vjr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vjv" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "69" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "vjB" = ( /obj/structure/machinery/light{ dir = 1 @@ -45121,15 +45135,24 @@ "vjW" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/n_rockies) -"vka" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"vke" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) +"vkb" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"vki" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) "vkj" = ( /obj/structure/bed/bedroll{ dir = 5 @@ -45138,59 +45161,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"vkk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/circuitboard/computer{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/circuitboard/computer{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) +"vkx" = ( +/obj/item/clothing/suit/storage/marine/medium, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) "vkD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vkN" = ( -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) -"vkP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"vkW" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 +"vkJ" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"vkQ" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"vkV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "vlp" = ( /obj/item/pipe, /turf/open/floor/prison, @@ -45199,63 +45201,63 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"vlt" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"vlw" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"vlu" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vly" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"vlP" = ( -/obj/structure/platform{ +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"vlX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"vlZ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"vmk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ dir = 4 }, -/obj/structure/stairs/perspective{ +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, +/obj/item/device/m56d_gun, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vmt" = ( +/obj/structure/barricade/wooden{ dir = 1; - icon_state = "p_stair_full" + pixel_y = 7 }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"vlX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"vme" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/west) -"vms" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"vmu" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) +/area/lv522/indoors/a_block/dorms) "vmG" = ( /obj/structure/surface/table/gamblingtable, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 14; - pixel_y = 9 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"vmJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"vmO" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 9 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) "vmQ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -45263,56 +45265,35 @@ /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"vnd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vnf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"vnB" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/item/tool/weldingtool, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen/glass) -"vnL" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"vnT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"vnu" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"vnZ" = ( -/obj/item/prop/alien/hugger, -/obj/structure/surface/table/almayer, +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"vnv" = ( +/obj/structure/bed/chair/wheelchair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"vom" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"vnC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"vnE" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"voe" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "voq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "vov" = ( /obj/item/prop/alien/hugger{ pixel_x = -6 @@ -45322,39 +45303,23 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"vow" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"voN" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 23 - }, -/obj/structure/pipes/vents/pump, +"voO" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/engineering) +"voQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"voU" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"voW" = ( +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"voV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "vpa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -45365,43 +45330,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vpg" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) "vpp" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/landing_zone_2/ceiling) -"vpy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) "vpD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vpF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"vqb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, +"vpS" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "vqm" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -45410,21 +45352,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vqr" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/fernybush{ - pixel_y = 12 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "vqv" = ( /obj/structure/barricade/deployable{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"vqJ" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_street) +"vqK" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"vqY" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "vra" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -45438,22 +45387,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vrh" = ( -/obj/structure/machinery/light{ - dir = 8 +"vrl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"vrK" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"vrU" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vrp" = ( +/obj/structure/largecrate/random/case, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"vrG" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/bridges/op_centre) +"vrN" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "vrW" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -45464,52 +45416,54 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vsn" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"vsv" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vsH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vsJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"vsP" = ( +"vsw" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"vsK" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) "vtc" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"vtq" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, +"vte" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"vtf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"vtx" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"vtz" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1) +"vtC" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"vtu" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"vty" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"vtR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +"vtJ" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"vtO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "vuc" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -45520,69 +45474,98 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"vuJ" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) -"vuX" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"vum" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"vus" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"vuG" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/corsat/marked, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) -"vvc" = ( -/turf/open/floor/wood/wood_broken7, -/area/lv522/indoors/b_block/bar) -"vvj" = ( +"vuN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"vuQ" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, /obj/structure/bed/chair{ + dir = 4; + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"vuV" = ( +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"vvu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 4; + pixel_y = 6 + }, /turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"vvO" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"vvX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"vwd" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/east) +/area/lv522/atmos/way_in_command_centre) +"vvy" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"vvC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"vvD" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/large_stack, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"vvK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "74" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"vwe" = ( +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) "vwi" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"vwj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) "vwl" = ( /obj/structure/closet/cabinet, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"vwr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"vwx" = ( +"vwm" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/storage/fancy/cigar/matchbook/exec_select{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "vwH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window, @@ -45592,6 +45575,9 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"vwP" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) "vxa" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -45615,75 +45601,60 @@ /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"vxi" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/lv522/indoors/a_block/dorms) "vxn" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "62" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vxq" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vxr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"vxz" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"vxs" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"vxw" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, /area/lv522/landing_zone_forecon/UD6_Typhoon) "vxM" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vxT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/on{ - pixel_x = 4; - pixel_y = 14 +"vxW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Overseers Office" }, -/obj/item/device/binoculars, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"vyc" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"vyb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"vyl" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "41" + icon_state = "26" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"vyj" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"vyu" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"vyx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"vyn" = ( +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 16 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "vyz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) +"vyB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "vyD" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = -6; @@ -45691,13 +45662,22 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/bar) -"vyS" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"vzh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) +"vyM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vyX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"vzf" = ( +/obj/item/tool/crowbar, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_west_street) "vzn" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = -6; @@ -45706,6 +45686,10 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/lv522/indoors/b_block/bar) +"vzo" = ( +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "vzp" = ( /obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -45714,6 +45698,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"vzq" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 29 + }, +/obj/item/prop{ + desc = "Something about a research lab."; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "USCM classified intelligence folder" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/oob) "vzy" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -45723,69 +45723,45 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"vzz" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/shotgun/large/slug, -/obj/item/storage/pouch/general/large/m39ap, -/obj/item/storage/pouch/flamertank, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) "vzI" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"vzK" = ( -/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"vzJ" = ( +/obj/item/ammo_box/magazine/misc/mre, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/obj/item/trash/tray{ + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "vAn" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"vAx" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "97" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vAL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"vBf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"vBk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 +"vAw" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"vBe" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"vBt" = ( +/obj/structure/target{ + name = "punching bag" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"vBo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) +/area/lv522/indoors/a_block/fitness) "vBB" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/decal/cleanable/dirt, @@ -45802,20 +45778,28 @@ /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"vCe" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "36" +"vBZ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vCj" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"vCa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"vCq" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"vCw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "vCz" = ( /obj/item/pipe{ dir = 4; @@ -45824,39 +45808,55 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) +"vCC" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) "vCD" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "vCG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"vCI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 +"vCO" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Interrogation"; + req_access = null }, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"vCZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m4ra{ - current_mag = null +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"vCU" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"vCV" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "28" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vCW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "vDa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -45864,22 +45864,36 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"vDc" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) +"vDb" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_y = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"vDd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "vDf" = ( -/obj/structure/sink{ - pixel_y = 15 +/obj/structure/machinery/light/double, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"vDj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vDk" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"vDi" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "vDr" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -45893,70 +45907,53 @@ /obj/item/stack/sheet/metal, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"vDD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"vDE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 +"vDG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"vDS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vDZ" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) "vEf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"vEl" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"vEr" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"vEu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"vEG" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 +"vEi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"vEo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vEJ" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"vEs" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"vEO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/golden_cup{ - pixel_y = 9 +/area/lv522/indoors/a_block/bridges/corpo) +"vEu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "vEW" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, @@ -45968,34 +45965,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"vFk" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"vFq" = ( +"vFh" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/cargo_intake) +"vFy" = ( +/obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 17 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"vFr" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/disposal, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"vFt" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) +/area/lv522/landing_zone_2/ceiling) "vFD" = ( /obj/structure/platform{ dir = 8 @@ -46008,14 +45985,10 @@ /turf/open/gm/river, /area/lv522/atmos/sewer) "vFE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) "vFH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/lightstick/red/spoke/planted{ @@ -46024,25 +45997,37 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"vFT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/gun/smartgunner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"vFW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +"vFI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vFL" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"vFR" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"vFY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"vFV" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -7; + pixel_y = 24 + }, +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "70" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "vGb" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -46054,61 +46039,88 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"vGf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 12; - pixel_y = 4 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -13; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"vGg" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "86" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vGe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "vGk" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"vGl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "vGp" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"vGs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) "vGv" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"vGA" = ( +/obj/structure/largecrate/random/mini, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) "vGG" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "vGS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Showeroom" }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"vHd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"vHb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"vHh" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"vHe" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/under/redpyjamas, /turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/area/lv522/indoors/a_block/dorms) +"vHi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) +"vHk" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"vHn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"vHs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) "vHw" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -46120,195 +46132,119 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"vHW" = ( -/obj/effect/spawner/gibspawner/xeno, +"vHO" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) +"vIo" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vIp" = ( /obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" + icon_state = "xgibleg" }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"vIh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"vIi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"vIn" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"vIp" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vIw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) "vIy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "vIB" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/bikehorn, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"vID" = ( -/obj/structure/fence{ - layer = 2.8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vII" = ( -/obj/item/prop/alien/hugger, +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"vIL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"vIY" = ( -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan4, -/area/lv522/indoors/a_block/medical) -"vJa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"vJe" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"vJi" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "vJj" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"vJk" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"vJq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "vJr" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"vJB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/paper_bin/wy{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) +"vJz" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"vJA" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "vJD" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) -"vJM" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"vJN" = ( +"vJI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "vJO" = ( /obj/structure/cargo_container/kelland/right{ layer = 2.9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"vJY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"vKd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) "vKe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"vKt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"vKk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) "vKy" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vKz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"vKH" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"vKG" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "vKO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -46327,53 +46263,82 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"vKT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" +"vLi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"vLm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters{ + pixel_y = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"vLe" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = -9 +/obj/item/weapon/wirerod{ + pixel_x = -3; + pixel_y = 3 }, -/obj/item/toy/beach_ball/holoball{ - pixel_y = -3 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"vLw" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) +"vLx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"vLn" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"vLF" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"vLV" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/wishsoup{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"vLX" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_west_street) +"vLY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) +"vMd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"vMo" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) "vMu" = ( /obj/item/weapon/gun/boltaction, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"vMy" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"vMG" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 +"vMv" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"vMI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "vMJ" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck{ @@ -46382,40 +46347,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vMP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) -"vMT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"vNb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Garage"; - pixel_x = -16 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"vNe" = ( +"vNc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "vNi" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -46424,6 +46359,10 @@ "vNk" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/casino) +"vNn" = ( +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "vNr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/machinery/light{ @@ -46431,19 +46370,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"vNt" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"vNK" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "vNO" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -46458,56 +46384,46 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/storage_blocks) -"vOc" = ( -/obj/structure/platform{ - dir = 1 +"vOd" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 22 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"vOm" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"vOn" = ( +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"vOs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vOu" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"vOJ" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"vOw" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vOV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs{ + pixel_x = 7; + pixel_y = 2 }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vPa" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/south_street) -"vOI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"vOU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"vPg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "vPk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -46523,25 +46439,21 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vPu" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_3, -/area/lv522/oob) "vPz" = ( /obj/structure/platform, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vPA" = ( +"vPF" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"vPJ" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "vPO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 8; @@ -46549,86 +46461,81 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"vPP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"vQm" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"vQD" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/machinery/light{ - dir = 8 +"vPX" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" }, -/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"vQl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"vQM" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"vQZ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, -/obj/structure/window{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"vRa" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"vQy" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vRg" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = 8; - pixel_y = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "22" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"vQC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"vQE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vRk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"vRr" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vRt" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"vRA" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"vRE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"vRF" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vRl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"vRX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/corporate, /turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"vSo" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/lv522/atmos/east_reactor/south) +"vSe" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/turf/open/floor/prison/darkbrownfull2, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, /area/lv522/indoors/c_block/mining) +"vSt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vSG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"vSI" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "vSM" = ( /obj/structure/tunnel, /turf/open/auto_turf/shale/layer1, @@ -46639,27 +46546,15 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"vSP" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/wishsoup{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) "vSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"vSX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) +"vTh" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) "vTn" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -46674,28 +46569,36 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"vTB" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"vTN" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +"vTs" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) +"vTE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"vTF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"vTL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/under/redpyjamas, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "vTO" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"vUd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "vUe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -46707,46 +46610,29 @@ /obj/structure/foamed_metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"vUg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"vUw" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"vUh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vUz" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"vUv" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) -"vUC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"vUT" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"vUy" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) -"vUZ" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "vVd" = ( /obj/structure/cargo_container/kelland/left, /obj/effect/decal/warning_stripes{ @@ -46758,11 +46644,19 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"vVF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) +"vVy" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"vVz" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"vVG" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) "vVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46770,11 +46664,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"vWb" = ( +"vVV" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "vWl" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -46783,63 +46676,54 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "vWm" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"vWA" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"vWB" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"vWD" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "vWI" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vWQ" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/north) -"vWX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) "vXc" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vXv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"vXC" = ( -/obj/structure/girder, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"vXD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"vXK" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 - }, -/obj/structure/machinery/space_heater/radiator/red{ +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vXt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"vXO" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "vXY" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -46848,23 +46732,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"vYB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"vYC" = ( -/obj/structure/surface/rack, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/structure/machinery/light/double, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "vYK" = ( /obj/structure/platform_decoration{ dir = 8 @@ -46876,18 +46743,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vYQ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vZp" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/east) "vZy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -46895,28 +46750,18 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) "vZB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -12; - pixel_y = 8 - }, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vZE" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "vZP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, @@ -46930,44 +46775,33 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"waa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"wad" = ( -/obj/structure/girder/displaced, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"waf" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +"wab" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"wah" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Mining Equipment" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "wao" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"wap" = ( -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) "was" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"waP" = ( -/obj/structure/platform_decoration, +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"waB" = ( /obj/structure/stairs/perspective{ - dir = 10; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"waC" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) "waQ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -46975,16 +46809,27 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"waU" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) +"waW" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "waZ" = ( /obj/item/trash/uscm_mre, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"wbd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "wbj" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ density = 0; @@ -46998,63 +46843,67 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"wbo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) +"wbm" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "wbt" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) +"wbM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "wbR" = ( /turf/open/floor/plating, /area/lv522/atmos/filt) -"wcc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"wck" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"wcf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"wcx" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"wcg" = ( /obj/structure/stairs/perspective{ - dir = 1; + dir = 5; icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"wck" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"wcM" = ( -/obj/structure/largecrate/random/secure, +"wcJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"wcS" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/barricade/metal{ - dir = 1 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"wcM" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = -4 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"wcU" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_street) -"wdb" = ( -/obj/structure/safe{ - spawnkey = 0 +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = 5 }, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/m_gift, -/obj/item/coin/diamond, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "wdd" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, @@ -47068,30 +46917,31 @@ dir = 1; icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"wdB" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"wdC" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/filt) +"wdE" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"wdG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "wdY" = ( /obj/structure/platform{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) +"wef" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"weg" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) "wes" = ( /obj/structure/platform_decoration{ dir = 4 @@ -47102,32 +46952,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"wev" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"wew" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"weB" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) "weJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -47159,17 +46983,9 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorms) -"weU" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"wfa" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"wfg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +"wff" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/command_centre) "wfl" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck{ @@ -47179,63 +46995,73 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) "wfm" = ( -/obj/structure/prop/turbine_extras/border, -/obj/structure/prop/turbine, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "wfo" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wft" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +"wfr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper B-Block Bar" }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"wfF" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"wfH" = ( +/obj/structure/surface/table/almayer, +/obj/item/ore/gold, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wfJ" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) "wfP" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) +"wgd" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "17" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "wgf" = ( /obj/structure/girder/displaced, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wgn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/outdoors/n_rockies) -"wgp" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wgs" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 +"wgh" = ( +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"wgE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/prop/colony/canister{ - pixel_y = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"wgG" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_street) +"wgj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"wgn" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/outdoors/n_rockies) +"wgy" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "wgH" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -47248,6 +47074,16 @@ "wgW" = ( /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) +"whr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"whu" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/landing_zone_2) +"whB" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) "whE" = ( /obj/structure/cargo_container/horizontal/blue/top{ layer = 3.1; @@ -47259,38 +47095,13 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"whI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"wia" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"wic" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"wih" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +"wib" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) "wiz" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -47314,6 +47125,10 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) +"wiS" = ( +/obj/item/stool, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "wiU" = ( /obj/item/pipe, /obj/effect/decal/cleanable/dirt, @@ -47331,17 +47146,18 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"wjn" = ( -/obj/structure/curtain/red, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 2.1; - name = "????"; - stat = 2 +"wjg" = ( +/obj/structure/largecrate/guns/russian, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"wjk" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "6" }, -/turf/open/floor/prison/darkpurplefull2, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wjt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/east, /area/lv522/indoors/a_block/dorms) "wjE" = ( /obj/structure/platform_decoration{ @@ -47359,14 +47175,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"wjG" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) "wjI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -47374,18 +47182,21 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"wjJ" = ( -/obj/structure/barricade/deployable{ - dir = 8 +"wjL" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"wkl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"wki" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "wko" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -47394,47 +47205,24 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"wkq" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"wku" = ( -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) -"wkT" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"wla" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"wkv" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "102" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"wlk" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/west) -"wlu" = ( -/obj/structure/machinery/deployable/barrier, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wkF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"wkP" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"wlv" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/east) +/area/lv522/indoors/a_block/bridges/op_centre) +"wkU" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/southwest, +/area/lv522/indoors/a_block/dorms) "wlw" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -47453,62 +47241,89 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wma" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +"wlB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"wlG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) "wmk" = ( /turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"wml" = ( +/area/lv522/indoors/a_block/fitness) +"wmp" = ( +/obj/structure/cargo_container/kelland/left, +/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_y = 28 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"wms" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"wmw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"wmJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen{ + pixel_x = -7 + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"wmN" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"wnc" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"wmG" = ( -/obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"wnd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -13; - pixel_y = 2 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"wnh" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"wno" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/indoors/a_block/fitness) "wnu" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"wnw" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"wnA" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) "wnM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"wnZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wob" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -47532,10 +47347,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"woz" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) "woA" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -47544,34 +47355,36 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"woG" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"woM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = -7; - pixel_y = 7 +"woD" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "28" }, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 +/area/lv522/landing_zone_forecon/UD6_Tornado) +"woE" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"woN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"woQ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_arm"; + name = "left arm"; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 4 + }, +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"woG" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) "woR" = ( /obj/structure/platform_decoration{ dir = 4 @@ -47582,67 +47395,48 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"wpb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) "wpn" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) -"wpp" = ( -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = 5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - layer = 3.1; - pixel_x = -3; - pixel_y = 12 +"wpr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "wpH" = ( /obj/structure/window_frame/strata, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) -"wpS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +"wpJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "wqa" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/colony_streets/north_west_street) -"wqf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"wqi" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 +"wqc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wqx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"wqz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"wqy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) "wqA" = ( /obj/structure/bed/chair{ dir = 8 @@ -47650,91 +47444,57 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"wqM" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/lever_action/r4t{ - pixel_y = 26 +"wqZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 }, -/obj/item/ammo_magazine/lever_action/marksman{ - layer = 3.1; - pixel_x = -5; - pixel_y = 8 +/obj/item/tool/shovel/spade{ + pixel_x = 4 }, -/obj/item/weapon/butterfly/switchblade{ - pixel_x = 11; - pixel_y = 4 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "wrc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"wrd" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"wri" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"wrk" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"wrp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "wrC" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/corpo) -"wrJ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/ausbush{ - pixel_y = 8 +"wrL" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 5; + pixel_y = 7 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"wsa" = ( -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"wsh" = ( -/obj/structure/closet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"wrR" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"wrS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"wsd" = ( +/turf/open/floor/almayer/w_y1/north, +/area/lv522/oob/w_y_vault) "wst" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 +/obj/structure/filtration/machine_64x128{ + icon_state = "filtration_1" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) "wsC" = ( /obj/structure/platform{ dir = 4 @@ -47745,24 +47505,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"wsK" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"wsL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/davenport{ - pixel_x = -4; - pixel_y = 9 +"wsF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wsR" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"wsO" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) "wsT" = ( /obj/structure/machinery/light{ dir = 4 @@ -47774,13 +47525,6 @@ /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"wsW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) "wsY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -47793,45 +47537,49 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"wtE" = ( -/obj/structure/surface/table/almayer, +"wtr" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/faxmachine{ - pixel_y = 2 +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, +/obj/structure/machinery/light, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"wtV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"wug" = ( +"wts" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) -"wuh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wtw" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"wuf" = ( /obj/structure/largecrate/random, /obj/item/explosive/plastic/breaching_charge{ pixel_y = -2 }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"wut" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"wuE" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"wuH" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/west_reactor) +"wuB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/random/toy, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) "wuX" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -47842,30 +47590,43 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/a_block/corpo) +"wvb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"wvc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wvd" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"wve" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/west) +"wvh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) "wvt" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"wvM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/foamed_metal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"wvP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, +"wvT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"wvS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wvY" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -47881,119 +47642,90 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"wwD" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) +"wwu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block Bar" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) "wwG" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"wwI" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"wxc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"wxr" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"wxE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"wxN" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +"wwH" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 10 +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wwN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"wxk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"wxK" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"wxX" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +/obj/item/prop/alien/hugger, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "wxZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wyc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"wyl" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"wym" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"wyD" = ( -/obj/structure/fence{ - layer = 2.9 - }, +"wyp" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wza" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/nw_rockies) -"wyH" = ( -/obj/structure/machinery/optable, -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 8 + icon_state = "E"; + pixel_x = 1 }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"wyX" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"wzb" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"wzg" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "62" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"wzc" = ( +/obj/structure/pipes/unary/freezer{ + dir = 1; + icon_state = "freezer_1" }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "wzo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"wzq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "wzt" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -48010,9 +47742,14 @@ /obj/item/tool/pickaxe/silver, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wzD" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) +"wzF" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "wzH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -48023,48 +47760,45 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"wzN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform{ - dir = 8 - }, +"wzV" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"wzY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"wAa" = ( +/obj/structure/window_frame/strata/reinforced, +/obj/item/stack/rods, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"wAc" = ( +/obj/effect/spawner/gibspawner/xeno, /obj/structure/platform_decoration{ - dir = 5 + dir = 1 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"wzQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/apc, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"wAd" = ( +/obj/item/weapon/gun/boltaction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"wzW" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"wAS" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"wAn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"wAv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"wBu" = ( -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "wBx" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -48087,33 +47821,40 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/west_reactor) -"wBT" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 +"wCg" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wCe" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"wCk" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"wCm" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 4.13 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"wCr" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "64" +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"wCv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"wCH" = ( -/obj/structure/tent/big, -/turf/open/asphalt/cement/cement1, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "wCM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48125,33 +47866,36 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wCX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"wCN" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "wDa" = ( /turf/open/floor/prison, /area/lv522/landing_zone_2) +"wDd" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"wDf" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "wDj" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"wDl" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"wDH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -9; - pixel_y = 11 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"wDL" = ( -/obj/structure/platform_decoration{ - dir = 8 +"wDB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "wDZ" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -48163,24 +47907,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"wEr" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wEK" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "16" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"wEN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) "wEP" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -48190,59 +47920,70 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"wEV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) "wEW" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wFa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"wFh" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"wFn" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"wFi" = ( -/obj/structure/largecrate/random, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wFo" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"wFC" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"wFk" = ( -/obj/item/stack/rods{ - pixel_y = 14 +/area/lv522/indoors/c_block/mining) +"wFL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"wFz" = ( -/obj/structure/machinery/sleep_console, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"wFI" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"wGg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock"; + welded = 1 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) +/area/lv522/indoors/a_block/bridges/op_centre) "wGh" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"wGl" = ( -/obj/structure/toilet{ - dir = 4 +"wGw" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"wGE" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "wGH" = ( /obj/item/prop/colony/usedbandage{ dir = 5; @@ -48253,62 +47994,64 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"wGI" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) "wGJ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wGW" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +"wGX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "wGY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"wHe" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"wHl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "wHm" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/filt) "wHF" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) "wHM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/n_rockies) +"wHQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical/glass) "wHU" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "wHX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"wHY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) "wIi" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"wIo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) "wIr" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bridge) @@ -48318,70 +48061,87 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"wIB" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "77" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "wIE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"wIR" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"wIS" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"wIV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"wJe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +"wJp" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_2) "wJq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"wJD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ +"wJv" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/command_centre) -"wJE" = ( -/obj/item/clothing/accessory/red, -/obj/item/clothing/under/liaison_suit/field{ - pixel_x = -4; - pixel_y = 9 +/obj/structure/sink{ + pixel_y = 23 }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"wJG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/reactor_garage) +/obj/structure/mirror{ + pixel_x = -1; + pixel_y = 29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) +"wJE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "wJH" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wJS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) +"wJK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"wJT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_2"; + name = "remote door-control"; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"wKf" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) "wKg" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/corpo) @@ -48389,11 +48149,19 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"wKX" = ( -/obj/structure/bed/chair, +"wKC" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) +"wKT" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"wKU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/c_block/cargo) "wLd" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -48408,29 +48176,15 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"wLj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"wLm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) "wLp" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/west) -"wLr" = ( -/obj/structure/bed/chair{ - dir = 8 +"wLK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"wLs" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) "wLU" = ( /obj/structure/machinery/light{ dir = 8 @@ -48438,87 +48192,155 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"wLX" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"wMk" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "27" +"wMj" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "sedimentation" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wMV" = ( -/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"wMr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) +"wNj" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "wNl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"wNu" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 +"wNr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" }, -/obj/item/tool/pen/red/clicky, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"wNw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/central_streets) -"wNP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"wNt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"wNw" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"wNL" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"wNU" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"wNW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/outdoors/colony_streets/north_street) "wNX" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"wOv" = ( +"wOf" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wOk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"wOz" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) -"wPe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/wood/wood_broken3, +/area/lv522/indoors/b_block/bar) +"wOl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"wOC" = ( +/obj/item/fuel_cell{ + pixel_x = -8; + pixel_y = -2 + }, /turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) -"wPj" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_4"; - pixel_x = -16; - req_access = null +/area/lv522/atmos/east_reactor) +"wPa" = ( +/obj/structure/surface/table/almayer, +/obj/item/cpr_dummy, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"wPf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"wPn" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"wPp" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"wPu" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wPJ" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) "wPL" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"wPM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) "wPN" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -48526,50 +48348,58 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"wPU" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) +"wPP" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "wQa" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"wQm" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"wQv" = ( -/obj/structure/bed/chair/comfy{ +"wQp" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"wQt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wQx" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform{ dir = 8 }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"wQH" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"wQL" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/fitness) +"wQN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 1 + }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"wQw" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"wQC" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) "wQS" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"wQV" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"wQX" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/outdoors/w_rockies) +"wRb" = ( +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "wRk" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -48582,54 +48412,49 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"wRr" = ( -/obj/item/ammo_box/magazine/misc/mre/empty, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) "wRu" = ( -/obj/structure/closet/crate, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"wRw" = ( -/obj/structure/largecrate/random, -/obj/item/storage/box/packet/high_explosive{ - pixel_x = -5; - pixel_y = -14 - }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "wRz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"wRL" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "30" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"wRY" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +"wRE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"wRK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"wSf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "wSt" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) "wSu" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/foamed_metal{ - layer = 3.1 +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "25" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wSx" = ( +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"wSA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "wSF" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -48637,39 +48462,46 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"wSG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 +"wSH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/table/almayer, -/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 = -2; - pixel_y = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/hallway) -"wSH" = ( -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"wTg" = ( -/obj/structure/prop/invuln/ice_prefab{ +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"wSS" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"wTg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) "wTr" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) +"wTt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "wTv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/plating_catwalk/prison, @@ -48697,39 +48529,61 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"wTZ" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" +"wTI" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"wTQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"wTS" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) -"wUs" = ( -/obj/structure/ore_box, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"wUH" = ( -/obj/structure/platform_decoration{ - dir = 8 +"wTX" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wTZ" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"wUd" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"wUr" = ( +/obj/structure/window_frame/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) "wUL" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plating, /area/lv522/oob) -"wUN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) +"wUT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"wVc" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) "wVo" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -48740,17 +48594,45 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"wVv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wVz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bedroom" +"wVp" = ( +/obj/structure/closet/crate, +/obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"wVt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wVw" = ( +/obj/structure/surface/table/almayer, +/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_y = 14 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wVE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "wVF" = ( /obj/structure/machinery/door_control/brbutton{ id = "map_corpo2"; @@ -48768,61 +48650,133 @@ }, /turf/open/floor/plating, /area/lv522/oob) +"wVG" = ( +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "wVN" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"wVS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase{ + pixel_y = 6 + }, +/obj/item/storage/briefcase, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wVY" = ( +/obj/structure/closet/crate/green, +/obj/item/device/sentry_computer, +/obj/item/defenses/handheld/sentry, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "wWe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"wWB" = ( -/obj/item/stack/sheet/wood, +"wWs" = ( +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"wWD" = ( -/obj/structure/barricade/deployable{ +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"wWy" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"wWT" = ( /obj/structure/stairs/perspective{ - dir = 9; + dir = 10; icon_state = "p_stair_full" }, -/obj/structure/platform, -/obj/structure/machinery/light, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) +"wWB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"wWD" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"wWL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "wWX" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"wXo" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 +"wWZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"wXm" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"wXu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"wXw" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/ammo_magazine/rifle/m4ra{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"wXF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"wXM" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "wYa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48836,62 +48790,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wYp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"wYD" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" +"wYA" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_x = -20 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"wYD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) "wYE" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"wYF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "wYJ" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"wYS" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "wZb" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wZj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/hardpoint/locomotion/van_wheels, +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard/full_stack, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +/area/lv522/indoors/c_block/cargo) +"wZd" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/obj/item/trash/uscm_mre, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "wZl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48925,163 +48862,154 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"wZF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"wZO" = ( -/obj/structure/closet, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wZQ" = ( -/obj/structure/machinery/computer/cameras{ - desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; - name = "\improper 'Tornado' flight controls"; - network = null; - pixel_y = 21 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 +"wZL" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat, +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"wZM" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "48" }, -/obj/structure/machinery/light/double{ - dir = 1; - layer = 2.9; - pixel_y = 9 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"wZY" = ( +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" }, -/obj/item/prop/almayer/flight_recorder{ - layer = 2.9; - pixel_x = -9; - pixel_y = 4 +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"wZR" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/wooden{ - dir = 4 +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"xab" = ( +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"xac" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"xah" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"xai" = ( -/obj/structure/barricade/deployable, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"xav" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"xan" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"xap" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xaA" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1"; + pixel_x = 7 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"xaC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"xaH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/obj/item/newspaper{ + anchored = 1; + desc = "This is the Chunk and Dunks menu. It reads 'Starters chunky fried cheese chunky chicken giblets dunky donuts Main chunky mac and cheese chunky meat and gravy pizza galaxy pizza TM dunky grilled style steak imitation Deserts dunky refried ice cream OUT OF STOCK chunky chocolate moose dunky hash brown Drinks souto TM Original souto TM penguin week special chunk and dunk gravy soft drink chunky coffee CAUTION HOT dunky arcturian imitation tea"; + name = "menu"; + pixel_y = 26 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"xaP" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"xaL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_4" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"xaW" = ( +/obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"xbe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "xbk" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"xbl" = ( -/obj/item/trash/barcardine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) +"xbs" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/largecrate/supply/floodlights{ + layer = 3.1; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"xbw" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "xbM" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"xbO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"xcb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xbP" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "62" }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/area/lv522/landing_zone_forecon/UD6_Tornado) "xce" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/command_centre) -"xcg" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/m56d, -/obj/item/ammo_magazine/m56d, -/obj/item/device/m56d_gun, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "xci" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"xcm" = ( +"xcj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"xcw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"xcp" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "74" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"xcC" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 13 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xcA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = -3 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "xcE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49094,9 +49022,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xcG" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor) "xcJ" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/wood, @@ -49107,10 +49032,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xcT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) "xcX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -49124,14 +49045,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"xdf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) -"xds" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) +"xdl" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) "xdt" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -49143,16 +49062,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"xdx" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) "xdD" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/shard{ @@ -49160,16 +49069,44 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"xdS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"xdW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xdE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 }, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) +/obj/item/trash/plate{ + pixel_x = 2; + pixel_y = 20 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_y = 27 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"xdL" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_x = -7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"xdM" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "xdX" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -8; @@ -49181,6 +49118,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"xdZ" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"xea" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "xeg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49190,15 +49143,6 @@ "xei" = ( /turf/closed/wall/strata_ice/dirty, /area/space) -"xek" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"xel" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "xen" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -49207,11 +49151,21 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"xer" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +"xeo" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"xes" = ( +/obj/structure/closet/crate, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"xey" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "xez" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, @@ -49220,37 +49174,17 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xeK" = ( -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/structure/closet/crate/ammo, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ +"xeN" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xeV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xfo" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical/glass) "xfp" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -49261,67 +49195,69 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"xfv" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_west_street) "xfx" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"xfE" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"xfP" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"xfD" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"xfV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/donut{ + pixel_y = 9 }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"xfR" = ( -/obj/structure/machinery/light/double, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "xfX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xga" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/south_east_street) -"xgw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "xgx" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "xgA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"xgF" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) +"xgB" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"xgG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "xgH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"xgS" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +"xgP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "xgX" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -49337,19 +49273,30 @@ /obj/item/reagent_container/glass/bucket, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"xhc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"xhh" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Armoury-Lockdown" +"xhi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"xhj" = ( +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"xhn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"xhs" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) "xhD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49357,30 +49304,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) +"xhF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Quartermaster" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "xhT" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"xhU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"xih" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"xim" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"xio" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/almayer/w_y0/north, -/area/lv522/atmos/way_in_command_centre) "xiu" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -49388,46 +49324,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"xiL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"xiw" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"xiQ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"xiX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, /obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"xja" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 6 + dir = 8 }, /turf/open/floor/prison/floor_plate, -/area/lv522/oob) -"xjj" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel1"; - pixel_x = 7 +/area/lv522/atmos/way_in_command_centre) +"xiX" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) "xju" = ( /obj/structure/machinery/light{ dir = 4 @@ -49437,64 +49356,159 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"xjB" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xjD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"xjE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "xjF" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/executive) -"xjJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue{ - pixel_y = -12 - }, +"xjI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"xjQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"xkc" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"xjT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"xkb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"xkd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Marshals Office"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"xkf" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"xkw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"xkq" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xkG" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xkt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"xkJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "xkO" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/toilet) -"xkV" = ( +"xkY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 1 + }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"xla" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"xlg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock" + }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"xlt" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Corporate"; - pixel_y = 26 +/area/lv522/indoors/c_block/casino) +"xll" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"xlr" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"xlv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "xly" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"xlF" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) "xlN" = ( /obj/structure/surface/rack, /obj/structure/machinery/camera/autoname, @@ -49511,35 +49525,70 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"xlU" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement, +"xma" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"xmg" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"xmu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +"xmr" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"xmE" = ( -/obj/structure/machinery/shower{ - dir = 1 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"xmJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"xms" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"xmv" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/command_centre) +"xmQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "xmT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) +"xnb" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"xnf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "xno" = ( /obj/item/weapon/gun/smartgun{ current_mag = null @@ -49549,74 +49598,98 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"xnT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/squares, +"xnC" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "24" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"xnH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"xoD" = ( -/obj/structure/machinery/light{ +"xnK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xoF" = ( -/obj/structure/largecrate/random{ - layer = 2.9 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"xnM" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"xnY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor) -"xoP" = ( +"xoc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/deployable{ - dir = 8 +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/outdoor) +"xoe" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"xoW" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"xoX" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "70" +/obj/item/tool/kitchen/tray{ + pixel_y = 10 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xoZ" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -6; - pixel_y = 15 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"xos" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"xox" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"xoJ" = ( +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"xoR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"xpe" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) "xpg" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/outdoors/nw_rockies) -"xpp" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"xpB" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"xpC" = ( +"xpk" = ( /obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 + dir = 2 }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"xpG" = ( -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/area/lv522/indoors/c_block/t_comm) "xpH" = ( /obj/structure/platform{ dir = 8 @@ -49627,11 +49700,21 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"xqc" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "71" +"xpN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"xpT" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"xqf" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) "xqj" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer2, @@ -49639,70 +49722,108 @@ "xqp" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/landing_zone_1) -"xqt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"xqw" = ( +"xqz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xqF" = ( /obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"xqI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - network = list("interrogation") + name = "\improper Family Dormitories" }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"xqC" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_east_street) -"xqL" = ( -/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"xre" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"xrg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"xrj" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) -"xqP" = ( -/obj/structure/pipes/vents/pump, +"xru" = ( /obj/structure/machinery/space_heater/radiator/red{ - dir = 4 + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xry" = ( +/obj/item/prop/colony/used_flare, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"xra" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"xrd" = ( -/obj/structure/closet/basketball, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"xry" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "xrH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"xrO" = ( -/obj/structure/bed/chair{ - dir = 8 +"xrW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "xrY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "xsa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock" +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{ + pixel_y = 2 + }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xsd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -49712,6 +49833,16 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"xsg" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"xsk" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) "xsq" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -49719,75 +49850,34 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "xst" = ( -/obj/structure/barricade/sandbags, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_street) -"xsx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xsz" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "95" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "xtb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness) -"xtc" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"xth" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, +"xtd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"xtq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"xtr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"xtx" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_y = 9 +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 }, -/obj/item/storage/firstaid/adv, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"xtH" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/device/defibrillator/compact, -/turf/open/auto_turf/sand_white/layer0, +/obj/item/clothing/mask/cigarette, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"xto" = ( +/obj/item/storage/pouch/autoinjector/full, +/turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"xtM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +"xtq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "xtO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49795,9 +49885,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"xuj" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +"xtW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"xub" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "xuk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -49805,85 +49901,102 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"xur" = ( -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"xuY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 1; - pixel_y = 2 +"xuq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"xus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"xuC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/c_block/cargo) +"xuF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xuM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 9; - pixel_y = 2 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xvj" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "xvl" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/bridge) -"xvm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) "xvo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"xvv" = ( +"xvM" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"xvI" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xvV" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) +"xwp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"xvN" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/indie{ + pixel_x = -10; + pixel_y = 8 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) +/obj/item/storage/pouch/cassette{ + pixel_y = 5 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"xwr" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) "xwO" = ( /obj/structure/cargo_container/seegson/left, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"xxi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger{ - pixel_x = -7; - pixel_y = -5 +"xwY" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"xxg" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/coagulation/icon8_3, +/area/lv522/oob) "xxj" = ( -/obj/item/prop/alien/hugger, -/obj/item/clothing/head/helmet/riot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen) +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "xxk" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -49898,16 +50011,19 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"xxo" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) "xxs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"xxv" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 23 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "xxw" = ( /obj/item/shard{ icon_state = "medium" @@ -49917,75 +50033,68 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"xxA" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +"xxz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"xxL" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) "xxU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"xyz" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/toilet) +"xya" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"xyb" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"xyj" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "xyC" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"xyM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"xyR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) +"xyT" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) "xyU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"xzk" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, +/obj/structure/surface/table/almayer, +/obj/item/map/lv522_map, +/turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "xzn" = ( /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"xzt" = ( +"xzo" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xzv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"xzx" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "xzK" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) @@ -49996,36 +50105,54 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"xzN" = ( -/obj/structure/platform_decoration{ - dir = 8 +"xzQ" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 }, -/turf/open/asphalt/cement/cement12, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_street) -"xzX" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/north_command_centre) -"xzZ" = ( -/obj/effect/decal/cleanable/dirt, +"xzU" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/hallway) -"xAf" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat/squares, -/area/lv522/oob) +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"xzY" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_3"; + pixel_x = -16; + req_access = null + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"xAt" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"xAB" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack{ + layer = 3.1; + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/gun/flamer{ + current_mag = null; + layer = 3.1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "xAF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"xAG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) "xAJ" = ( /obj/structure/bed/chair{ dir = 8 @@ -50039,33 +50166,10 @@ /obj/vehicle/train/cargo/engine, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xAY" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "xAZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"xBa" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"xBb" = ( -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) "xBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -50073,101 +50177,58 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"xBp" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "xBs" = ( /obj/item/ammo_magazine/rifle/boltaction, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"xBU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"xCe" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"xCg" = ( +"xBt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"xCi" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"xCk" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = 9 - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = -8 - }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"xCn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"xCt" = ( -/obj/effect/landmark/survivor_spawner, +/area/lv522/indoors/a_block/hallway) +"xBy" = ( +/obj/item/storage/firstaid/toxin/empty, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"xCC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"xBF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"xBZ" = ( +/obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/kitchen) -"xCJ" = ( +/area/lv522/indoors/a_block/bridges) +"xCc" = ( +/obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 1 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"xCr" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xCs" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"xCA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "xCN" = ( /obj/item/clothing/under/shorts/blue{ pixel_x = -6; @@ -50178,10 +50239,22 @@ "xCT" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"xDk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "xDl" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"xDm" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) "xDp" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, @@ -50194,6 +50267,10 @@ "xDu" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) +"xDz" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "xDC" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -50216,6 +50293,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"xDK" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) "xDM" = ( /obj/structure/surface/table/almayer{ dir = 8; @@ -50223,6 +50306,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"xDN" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "xDP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -50234,12 +50324,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xDX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) "xEb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -50253,49 +50337,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xEG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xEL" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"xEN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"xFa" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"xFc" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"xFd" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +"xEZ" = ( +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) -"xFh" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) "xFp" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) +"xFq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) "xFv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -50303,33 +50355,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xFA" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) "xFG" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "xFN" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"xFO" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/vending/walkman{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"xFX" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "xGa" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -50353,152 +50389,78 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"xGl" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"xGI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_y = 5 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"xHa" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"xHb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"xHc" = ( +"xGo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"xHd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"xHm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"xGW" = ( +/obj/structure/bed/bedroll{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"xHp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 12; - pixel_y = 17 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"xHq" = ( -/obj/item/explosive/mine/active{ - dir = 8 +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"xHj" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/small_stack, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "xHr" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"xHx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"xHE" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 + dir = 1 }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"xHv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) +/area/lv522/indoors/a_block/bridges) "xHH" = ( +/obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 + icon_state = "S" }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xIc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"xIm" = ( -/obj/structure/window_frame/strata, +/area/lv522/outdoors/nw_rockies) +"xHK" = ( /obj/item/shard{ icon_state = "medium" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"xIn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 7 - }, +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"xIu" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xHM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"xIe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "xIv" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"xIS" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xIT" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +"xIG" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xIN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "xIW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -50506,9 +50468,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"xIY" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) "xJd" = ( /obj/structure/bed/chair{ dir = 4 @@ -50516,34 +50475,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xJf" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/n_rockies) +"xJh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"xJu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Executive Suite" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) "xJB" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) -"xJG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/item/storage/firstaid/adv/empty{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"xJJ" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/obj/item/tool/weldpack{ - layer = 3.1; - pixel_x = -5; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "xJL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -50551,34 +50500,34 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"xJO" = ( -/obj/structure/closet/crate/green, -/obj/item/device/sentry_computer, -/obj/item/defenses/handheld/sentry, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"xJN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "xKk" = ( /turf/closed/wall/strata_outpost_ribbed, /area/lv522/outdoors/colony_streets/south_west_street) -"xKA" = ( -/obj/structure/girder/displaced, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +"xKt" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) "xKH" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xLb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"xKV" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"xKX" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) "xLg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ @@ -50587,72 +50536,80 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"xLh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"xLo" = ( +/turf/open/floor/bcircuit, +/area/lv522/atmos/east_reactor/south) "xLq" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"xLu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"xLv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"xLz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"xLG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"xLP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 +"xLI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"xLO" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "xLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"xLW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "xLY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"xMF" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"xMH" = ( -/obj/item/stack/sheet/metal, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) -"xMJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs{ - pixel_x = 7; - pixel_y = 2 +"xMm" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, /turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/area/lv522/indoors/a_block/kitchen/glass) +"xMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"xMI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "xMO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -50681,68 +50638,28 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xNq" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"xNv" = ( -/obj/structure/pipes/vents/pump, +"xNr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xNA" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"xNK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xNN" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"xNZ" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) +"xNQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "xOe" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"xOf" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"xOi" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical/glass) -"xOl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"xOs" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xOk" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "xOw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -50754,52 +50671,48 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"xOC" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) "xOD" = ( /obj/item/clothing/glasses/mbcg, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"xOJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"xOK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"xOE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"xOH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"xOL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/hallway) -"xOR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Wildcatters Office"; - panel_open = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xOI" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"xOZ" = ( -/obj/structure/largecrate/random/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) +/obj/item/paper/wy, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "xPa" = ( /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"xPd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "xPg" = ( /obj/structure/platform{ dir = 1 @@ -50812,6 +50725,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"xPw" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "xPx" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -50832,14 +50749,14 @@ "xPH" = ( /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) +"xPI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "xPK" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"xPO" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat/squares, -/area/lv522/oob) "xPW" = ( /obj/effect/decal/cleanable/dirt, /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -50857,66 +50774,102 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) +"xQb" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) "xQc" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/east_reactor/south) +"xQh" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "4" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "xQj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"xQk" = ( +/obj/item/fuel_cell{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) "xQq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"xQr" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xQv" = ( -/obj/structure/machinery/light{ - dir = 1 +"xQt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"xQE" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"xQU" = ( -/obj/structure/machinery/conveyor, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"xQw" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"xRa" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"xRc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/corpo) -"xRd" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) -"xRj" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"xQG" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"xQW" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"xQZ" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "xRn" = ( /obj/item/clothing/head/hardhat, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"xRp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"xRv" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) "xRw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"xRF" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/north_command_centre) +"xRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "xRQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/recharger{ @@ -50924,67 +50877,43 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"xRT" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_street) -"xSe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"xSj" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +"xSi" = ( +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "xSm" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"xSp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xSs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 +"xSn" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"xSq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"xSt" = ( +/obj/structure/machinery/light, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "xSv" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"xSB" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "xSD" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"xSO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "xSP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -51003,33 +50932,18 @@ dir = 8 }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"xTe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) -"xTh" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) -"xTq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/east_central_street) -"xTt" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 +/area/lv522/outdoors/colony_streets/south_street) +"xSR" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"xTB" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "xTJ" = ( /obj/item/tool/kitchen/utensil/pknife{ pixel_x = -9 @@ -51037,25 +50951,26 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"xTP" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "xTV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/central_streets) -"xTY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"xUa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +"xUb" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/security) "xUe" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -51064,68 +50979,58 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"xUj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "xUq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) "xUt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper B-Block Bar" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_west_street) +"xUz" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"xUE" = ( +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"xUH" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"xUI" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"xUD" = ( -/obj/structure/closet/crate, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/item/ore/silver, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "xUJ" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"xUU" = ( -/obj/structure/largecrate/guns/russian, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) "xVc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "xVd" = ( /turf/closed/wall/strata_outpost_ribbed, /area/lv522/indoors/lone_buildings/engineering) -"xVh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"xVl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) "xVv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/hallway) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "xVz" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -51140,19 +51045,31 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"xVS" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xVW" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/potatoseed{ - pixel_x = -8; - pixel_y = 6 +"xVN" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 16 }, -/obj/item/seeds/potatoseed, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"xVR" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/north) +"xVZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xWa" = ( +/obj/structure/machinery/optable, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "xWb" = ( /obj/structure/bed/chair{ dir = 1 @@ -51163,28 +51080,61 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) "xWj" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/roller, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"xWq" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" }, -/turf/open/asphalt/cement, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) -"xXc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"xXg" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"xXl" = ( +"xWI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xWJ" = ( /obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/poncho, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"xWR" = ( +/obj/structure/toilet{ + dir = 4 + }, /obj/item/prop/alien/hugger, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -4; +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"xWX" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = -7; pixel_y = 9 }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"xXd" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "19" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"xXg" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) "xXo" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -51192,6 +51142,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) +"xXs" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"xXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/poncho, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "xXN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -51204,6 +51166,20 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) +"xYe" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"xYf" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Armoury-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "xYn" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/trash/plate{ @@ -51211,6 +51187,13 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"xYp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "xYx" = ( /obj/structure/platform{ dir = 1 @@ -51223,20 +51206,27 @@ "xYD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"xZa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"xZc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"xYR" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 }, -/obj/structure/platform{ - dir = 4 +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xZj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "xZz" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, @@ -51248,23 +51238,10 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"xZI" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"xZJ" = ( -/obj/structure/closet/crate/miningcar/yellow, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "xZO" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/hallway) "xZP" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -51272,14 +51249,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"xZY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"yac" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "yaf" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter, @@ -51289,20 +51258,23 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"yag" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "yaj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"yay" = ( +"yap" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"yaA" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "yaF" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -51317,76 +51289,73 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"yaI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"yaO" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"yaR" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/fitness) -"yaT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -8; - pixel_y = 15 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +"yaX" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "ybj" = ( /obj/item/prop/alien/hugger, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ybm" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, +"ybk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"ybo" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"ybv" = ( -/obj/structure/platform{ - dir = 8 +/area/lv522/atmos/filt) +"ybm" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 }, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"ybn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"yby" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/admin) "ybz" = ( /turf/open/asphalt/cement, /area/lv522/landing_zone_2) -"ybJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"ybP" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"ybV" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) "yca" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) +"yce" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"ych" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ycw" = ( /obj/structure/girder/reinforced, /turf/open/auto_turf/sand_white/layer0, @@ -51403,73 +51372,42 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"ycK" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "ycM" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ycZ" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, +"ycN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"ycR" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "ydb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"ydr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"yds" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_street) -"ydL" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ydO" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) -"yek" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"ydc" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"yel" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"yen" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"yeq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"yeE" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"ydg" = ( /obj/structure/surface/table/almayer, /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."; @@ -51478,25 +51416,78 @@ name = "synthethic potted plant"; pixel_y = 14 }, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ydq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ydR" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"yec" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"yei" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) "yeH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"yeP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "yfb" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"yfe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"yfk" = ( +/obj/item/tool/lighter/random{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "yfu" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) @@ -51504,13 +51495,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/b_block/hydro) -"yfJ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "yfK" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -51538,36 +51522,41 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "yfY" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"ygA" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"yha" = ( +/obj/item/prop/alien/hugger, +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Bar & Grill"; + pixel_x = -16 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"yhc" = ( /obj/structure/stairs/perspective{ - dir = 5; + dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform{ +/obj/structure/platform, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ygf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"ygs" = ( -/turf/open/floor/prison/greenfull/northwest, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"ygt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"ygT" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"yhh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) "yhi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -51582,18 +51571,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"yhm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "yhz" = ( /obj/structure/window_frame/corsat, /obj/effect/spawner/gibspawner/xeno, @@ -51602,54 +51579,38 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"yhB" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) "yhK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"yhQ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"yik" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"yib" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/area/lv522/atmos/way_in_command_centre) "yim" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"yiJ" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"yin" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"yit" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "yiM" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"yiR" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) "yiZ" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -51660,6 +51621,27 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) +"yja" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) +"yjb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"yji" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/vehicle/train/cargo/engine, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "yjm" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, @@ -51690,6 +51672,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) +"yjB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "yjK" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -51697,41 +51685,28 @@ /obj/item/tool/weldingtool, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"yjN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"yjR" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "yjT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) +"ykd" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "ykz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"ykI" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"ykF" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 3.1 }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"ykO" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) "ykT" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) @@ -51745,20 +51720,45 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"ylu" = ( -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) +"ylt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"ylA" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/landing_zone_1) "ylC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"ylK" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"ylM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) "ylY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"yma" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/minihoe{ + pixel_y = -2 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) (1,1,1) = {" bMX @@ -52625,7 +52625,7 @@ cpy cpy cpy cpy -ibi +faA pxb pxb pxb @@ -52724,10 +52724,10 @@ cpy cpy cpy cpy -tVe -tVe -tVe -tVe +iwP +iwP +iwP +iwP cpy cpy cpy @@ -52847,12 +52847,12 @@ cpy cpy cpy cpy -ibi -mpW -tfq -slV +faA +eOm +kko +fpO pxb -pzD +voe pxb pxb pxb @@ -53073,8 +53073,8 @@ cpy cpy cpy cpy -uEv -pzD +mXX +voe pxb pxb pxb @@ -53084,9 +53084,9 @@ pxb nQz tPf unM -lXt -lXt -lXt +fBy +fBy +fBy jqO tPf vYK @@ -53127,7 +53127,7 @@ bMX cpy abo afp -nhy +qEq abo abo abo @@ -53300,7 +53300,7 @@ cpy cpy cpy cpy -ree +jtz pxb xqp pxb @@ -53309,13 +53309,13 @@ pxb nQz tPf oKc -nYP -lXt -lXt -caW -lXt -lXt -nYP +crq +fBy +fBy +vtz +fBy +fBy +crq sOM tPf vYK @@ -53355,11 +53355,11 @@ cpy abo afp akM -xja +eut abo -uJW -vCD -ead +gLq +cln +hWT abo cpy cpy @@ -53526,7 +53526,7 @@ cpy cpy cpy cpy -ibi +faA pwa pwa xqp @@ -53534,17 +53534,17 @@ xqp xqp nQz oKc -lXt -lXt -lXt -jcm -wqf -caW -loi -loi -lXt -lXt -lXt +fBy +fBy +fBy +sqU +eGN +vtz +wNU +wNU +fBy +fBy +fBy sOM vYK pxb @@ -53583,9 +53583,9 @@ cpy afp ann asI -jjE +uCW akM -qCZ +prL bVG abo cpy @@ -53625,7 +53625,7 @@ vtc vtc vtc vtc -eor +qak vtc vtc vtc @@ -53753,26 +53753,26 @@ cpy cpy cpy cpy -ofU +tSi pwa pwa pxb nQz tPf oKc -lXt -lXt +fBy +fBy uiM uiM uiM uiM -caW +vtz uiM nUd tAr uiM -lXt -lXt +fBy +fBy sOM tPf vYK @@ -53811,9 +53811,9 @@ abS ajM cpy abo -eFA -lhi -ahn +kmX +vzJ +sME abo cpy cpy @@ -53852,7 +53852,7 @@ vtc vtc vtc vtc -eor +qak vtc uWO uWO @@ -53891,10 +53891,10 @@ sRA sRA sRA sRA -exE -fbw -vRg -wEK +gIK +vCV +rHt +tqD sRA sRA sRA @@ -53980,28 +53980,28 @@ cpy cpy cpy cpy -tBc +mTt pxb nQz tPf oKc -lXt -lXt -lXt -aLQ +fBy +fBy +fBy +aZC uiM -wqf -wqf -pyY -caW -sMj -jWC -hQu +eGN +eGN +fWy +vtz +cTe +bje +cne uiM -kHp -lXt -lXt -lXt +hBy +fBy +fBy +fBy sOM tPf vYK @@ -54079,7 +54079,7 @@ uWO gxN hIZ hIZ -wyD +mia hSi uWO uWO @@ -54113,20 +54113,20 @@ sRA sRA sRA rWS -eDU -mQE -qpr +jkd +kxt +cqM sRA sRA -vyc -sFE -qGZ -jnu -exE -fbw -mTe -tyG -oDA +flK +sVq +nVw +rgR +gIK +vCV +oYK +tbD +lFE kor rWS uiK @@ -54206,31 +54206,31 @@ cpy cpy cpy cpy -eVm +giU pxb nQz oKc -lXt -lXt -lXt -aLQ -jcm -jcm +fBy +fBy +fBy +aZC +sqU +sqU uiM -pyY -pyY -jcm -caW -sMj -bkJ -sXU +fWy +fWy +sqU +vtz +cTe +kWc +uTr uiM -kHp -fzj -fzj -lXt -lXt -lXt +hBy +cwW +cwW +fBy +fBy +fBy sOM vYK pxb @@ -54339,21 +54339,21 @@ sRA sRA sRA rWS -dVr -bhA -eWm -vxn -uub -doZ -vCe -fEO -kZG -quN -vyc -sFE -qGZ -jnu -bQB +kMW +kei +stN +riF +aBp +ibU +dUU +txI +qlN +lbv +flK +sVq +nVw +rgR +cEp uiK rWS rWS @@ -54433,11 +54433,11 @@ cpy cpy cpy cpy -eVm +giU nQz oKc -lXt -qyd +fBy +aoQ uTd oyf tns @@ -54457,8 +54457,8 @@ fOc uTd oyf tns -qyd -lXt +aoQ +fBy sOM vYK pxb @@ -54565,22 +54565,22 @@ rWS rWS sRA sRA -mrE -hvv -iVD -uBp -osl -mbW -wdG -pnL -vxz -pnL -tJE -vCe -fEO -kZG -vCe -hAR +bfr +jea +ewk +wXw +raK +bAq +uNE +aYy +iBc +aYy +nlC +dUU +txI +qlN +dUU +vdk sRA sRA rWS @@ -54661,9 +54661,9 @@ cpy cpy cpy pwa -qLD -nYP -jCK +hgi +crq +pQm nFj pRg nFj @@ -54685,8 +54685,8 @@ sYH nFj pRg nFj -iiI -nYP +rnF +crq wdY pxb pwa @@ -54790,24 +54790,24 @@ vtc cpy cpy cpy -sYL -sSR -vGg -sUx -nZZ -qGA -qGA -kyd -qGA -fBE -qGA -hvQ -mZT -rbK -tDq -sul -uJB -sfA +gcZ +qBy +iMg +qjn +dMM +mRt +mRt +rkI +mRt +daK +mRt +vxw +lbP +nId +fNJ +lyU +ovx +fmN uiK uiK sRA @@ -54886,11 +54886,11 @@ tFx tFx tFx tFx -kHN +fKR pwa -vdU -lXt -uJH +vkb +fBy +bSl nFj nFj nFj @@ -54913,7 +54913,7 @@ nFj nFj sYH gnf -lXt +fBy wes pxb pwa @@ -54987,7 +54987,7 @@ uWO gEB uWO uWO -eor +qak uWO uWO uWO @@ -55017,23 +55017,23 @@ uWO cpy cpy cpy -sIJ -uEY -dLG -jAw -pTH -jOY -xeK -oUh -gjz -sPc -xcg -hii -hVb -uub -snB -uub -heW +mJg +fvD +sMS +kLL +jiv +ejg +rlT +jZW +hoz +ttk +vmk +ohI +jbr +aBp +wGX +aBp +jXH kor sRA sRA @@ -55110,14 +55110,14 @@ cpy cpy tFx tFx -mMV -ivc -sTu -qTy +sgt +pzx +kCH +oIz pxb -xkG -lXt -qsk +lby +fBy +hMe nFj nFj nFj @@ -55140,7 +55140,7 @@ sYH nFj sYH vTO -lXt +fBy wiY pxb pwa @@ -55183,13 +55183,13 @@ saC saC saC saC -aeK -aeK -aeK -oal -aeK -paV -paV +rKU +rKU +rKU +plL +rKU +wPf +wPf saC saC saC @@ -55214,7 +55214,7 @@ uWO gEB idH uWO -eor +qak uWO uWO uWO @@ -55222,15 +55222,15 @@ uWO aTA bIJ bIJ -usH -lbC -mfx +lsc +daJ +jhU bIJ bIJ -wdB -wdB -wdB -wdB +mfJ +mfJ +mfJ +mfJ hQU iOi jCb @@ -55238,34 +55238,34 @@ fTi ksf kPO jYu -prP -wdB -wdB -wdB -cpy -cpy -kjF -oUG -btz -cSF -iXU -jyR -qGA -qGA -cTG -qGA -kyd -qKJ -vEG -wDL -afm -bdy -bKM -gFv +gCv +mfJ +mfJ +mfJ +cpy +cpy +lwq +jkH +aFm +dTp +wQV +pXo +mRt +mRt +dXs +mRt +rkI +asJ +tmq +xvj +xey +rgH +sQP +era sRA sRA sRA -rEP +rYp ien cpy cpy @@ -55336,15 +55336,15 @@ cpy cpy cpy tFx -wsW -lXN -lQE +jWh +fbj +bJb tFx -qTy +oIz pxb -xkG -lXt -mqS +lby +fBy +fnu sYH sYH sYH @@ -55367,7 +55367,7 @@ sYH sYH sYH orU -lXt +fBy wiY pxb pwa @@ -55379,8 +55379,8 @@ cpy cpy eYM eYM -djR -djR +pIg +pIg eYM eYM eYM @@ -55409,13 +55409,13 @@ saC saC saC saC -xek -xek -xek -xek -oSp -xek -xek +nXg +nXg +nXg +nXg +eNs +nXg +nXg saC saC saC @@ -55448,11 +55448,11 @@ uWO uWO aTA bIJ -qBD -fEX -fEX -fEX -jbS +dao +uRH +uRH +uRH +fpC gVd hoq hKG @@ -55474,25 +55474,25 @@ cpy cpy rWS rWS -buN -aIj -laz -olb -hRT -hRT -aTG -jSj -aTG -nxg -nCl -gmX -rBi -nCl -ail +qhq +sQV +gTm +rrZ +loT +loT +hBs +uql +hBs +wZM +hsC +eFh +emc +hsC +oFy uiK uiK -jmN -ebe +gxe +xto ien ien ien @@ -55539,7 +55539,7 @@ ien ien ien ien -xHa +rkP umf vXc vXc @@ -55563,15 +55563,15 @@ cpy cpy cpy tFx -vBk -vgN -nzB -rhr -qTy +aXP +ggK +tXF +kBR +oIz pxb -xkG -lXt -lCW +lby +fBy +xgB sYH sYH sYH @@ -55594,7 +55594,7 @@ sYH nFj nFj dMY -lXt +fBy wiY pxb pwa @@ -55635,16 +55635,16 @@ saC saC saC saC -xek -xek -xek -xek -xek -oSp -xek -xek -pSH -pSH +nXg +nXg +nXg +nXg +nXg +eNs +nXg +nXg +lwE +lwE saC saC saC @@ -55667,7 +55667,7 @@ vtc vtc gEB uWO -cDX +mzW cpy cpy cpy @@ -55675,11 +55675,11 @@ uWO uWO cpy bIJ -hyL +mip eaE eaE eaE -foL +vbp gXE htu uWO @@ -55701,38 +55701,38 @@ cpy cpy rWS sRA -buN -btz -myd -oWQ -uub -twN -nCl -gmX -rBi -eCM -exE -vfD -jGs -wEK -qGc +qhq +aFm +eJF +cvu +aBp +djU +hsC +eFh +emc +fvd +gIK +mQJ +kjr +tqD +kZf uiK sRA -dtU +odi ien ien -uGP -vsH +bbP +uiv ien -qar -iiB +rXj +jgu ien -qKC -nUn +njq +jvt ien ldu yhK -uOE +eKt iSf iSf yhK @@ -55746,7 +55746,7 @@ czW sjY ien lSg -ugt +cNS ylo ylo ylo @@ -55758,7 +55758,7 @@ ylo ylo ylo ylo -vDi +sRs ylo ylo ylo @@ -55766,7 +55766,7 @@ ylo ylo ylo rMF -xHa +rkP vXc vXc vXc @@ -55790,15 +55790,15 @@ cpy cpy ien tFx -ePz -qFp -dOC -rhr -qTy +cws +oDG +mBq +kBR +oIz pxb -xkG -lXt -uJH +lby +fBy +bSl sYH sYH sYH @@ -55809,7 +55809,7 @@ sYH sYH sYH sYH -lBh +tnO sYH sYH sYH @@ -55821,7 +55821,7 @@ sYH nFj nFj gnf -lXt +fBy wiY pxb pwa @@ -55831,12 +55831,12 @@ cpy cpy eYM eYM -lRk -sUe +nLJ +tVe wfP wfP wfP -sUe +tVe sRM hTe eYM @@ -55861,18 +55861,18 @@ saC saC saC saC -xek -xek -xek -xek -xek +nXg +nXg +nXg +nXg +nXg saC saC -xek -cgD -xek -xek -pSH +nXg +ckN +nXg +nXg +lwE saC saC saC @@ -55889,11 +55889,11 @@ cpy cpy cpy lqb -gQI -gQI -gQI -twt -gQI +gpe +gpe +gpe +sKf +gpe nNL xpg cpy @@ -55902,11 +55902,11 @@ cpy cpy cpy bIJ -foL +vbp eaE eaE eaE -suv +bVr gVd hoq hKG @@ -55929,37 +55929,37 @@ cpy cpy sRA sRA -iky -tKa -puN +kDq +vFV +hej sRA sRA -exE -vfD -lWB -wEK -vyc -bXj -wMk -awx -qVW +gIK +mQJ +vyl +tqD +flK +uwC +kSi +wgd +lQy hPM uiK -xtH +oow ien -qKC -hNU -ttS +njq +chZ +mws dkB dkB dYA -qFu -gdR -dZe -biU +lsF +dfg +sph +hoA ldM clY -vID +tnR lIR dTJ dTJ @@ -55973,27 +55973,27 @@ woA hJZ hJZ hJZ -sVe +qNf ylo -eom -yaA -eqj -gzC -oZT -eqj -bsm -ygT +iEG +fYh +tUE +bPF +xqF +tUE +jTq +fTw ylo ylo -vDi -kFk -dJH -xQr -efH -pVM +sRs +bBA +urs +kzD +dVA +lOS ylo rMF -xHa +rkP vXc vXc vXc @@ -56017,15 +56017,15 @@ ien ien ien tFx -wPU -wPU -wPU +gqI +gqI +gqI tFx -qTy +oIz pxb -xkG -lXt -qsk +lby +fBy +hMe sYH sYH sYH @@ -56048,7 +56048,7 @@ sYH nFj nFj vTO -lXt +fBy wiY pxb pwa @@ -56087,26 +56087,26 @@ saC saC saC saC -xek -xek -xek -xek -xek +nXg +nXg +nXg +nXg +nXg saC saC -xek -xek -xek -xek -xek -pSH -pSH +nXg +nXg +nXg +nXg +nXg +lwE +lwE saC -pSH -pSH +lwE +lwE saC saC -phr +rUb saC saC saC @@ -56130,9 +56130,9 @@ cpy cpy bIJ bIJ -fEX -fEX -fEX +uRH +uRH +uRH bIJ gXE htu @@ -56152,7 +56152,7 @@ vtc vtc lMH vtc -mhF +wms cpy sRA sRA @@ -56161,32 +56161,32 @@ sRA sRA sRA sRA -vyc -leh -wMk -jnu +flK +pPv +kSi +rgR cpy cpy cpy rWS -gUW -fzO -pAA +uZL +ksd +xPw ien ien ien -rxw -jdT +syD +vhv prM kvc kBz -jps -vJe -nUn -cET +ddX +gVe +jvt +cuV clY sjY -vID +tnR rOi swt rdM @@ -56199,28 +56199,28 @@ gRs hJZ hJZ hJZ -pxD +qXU gKO ylo -uAe -fuY -eqj -fhc -fuY -eqj -weU -ixd -fMh +eNP +qDK +tUE +gRO +qDK +tUE +pJB +oir +pgX ylo -nGR +jGb ylo -edI -tFW -wsK -dBU +axG +hMc +wVp +mgp ylo rMF -xHa +rkP vXc vXc vXc @@ -56243,16 +56243,16 @@ ien qJy aRN ien -pye -cso -cso +fij +kcA +kcA fnA -bKp -qTy +eJB +oIz pxb -xkG -lXt -mqS +lby +fBy +fnu sYH sYH sYH @@ -56275,7 +56275,7 @@ sYH sYH sYH orU -lXt +fBy wiY pxb pwa @@ -56283,7 +56283,7 @@ xqp pxb cpy eYM -lxQ +dSs jJF wfP eYM @@ -56313,28 +56313,28 @@ saC saC saC saC -xek -xek -xek -xek -xek -xek -xek -oSp -xek -xek -xek -xek -xek -xek -xek -xek -xek -oSp -xek -xek -wuH -phr +nXg +nXg +nXg +nXg +nXg +nXg +nXg +eNs +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +eNs +nXg +nXg +jEg +rUb saC saC saC @@ -56358,7 +56358,7 @@ cpy cpy bIJ bIJ -kIu +iGY bIJ bIJ nru @@ -56401,19 +56401,19 @@ sRA sRA sRA ien -qKC -vJe -cUT +njq +gVe +ePx eiZ eiZ eiZ kIj eiZ -nUn -cET +jvt +cuV clY sjY -eTc +lmV mZs mOO iuv @@ -56426,28 +56426,28 @@ aTP hJZ hJZ hJZ -xfR +aGN ylo ylo -bUZ -eqj -fuY -fhc -vJi -fuY -uAe -fuY -fuY +iMo +tUE +qDK +gRO +tLo +qDK +eNP +qDK +qDK ylo -nGR +jGb ylo -chO -wNP -eqj -juC +cpN +bWf +tUE +uiJ ylo ylo -xHa +rkP vXc vXc vXc @@ -56455,31 +56455,31 @@ umf vXc vXc vXc -cfL -rcU -iOD -rcU -rcU -iOD -rcU -kPw -iOD -lqf -rcU -smg -jwZ -uQc +pRt +lHQ +tEO +lHQ +lHQ +tEO +lHQ +vGA +tEO +hDO +lHQ +asx +yei +iEv tZh ofi ofi max -xfv -bKp -qTy +xUt +eJB +oIz pxb -xkG -lXt -lCW +lby +fBy +xgB nFj nFj nFj @@ -56502,7 +56502,7 @@ sYH nFj sYH dMY -lXt +fBy wiY pxb xqp @@ -56510,7 +56510,7 @@ xqp cpy cpy eYM -qBa +cks wfP wfP eYM @@ -56540,29 +56540,29 @@ saC saC saC saC -xek -xek -xek -xek -xek -xek -xek -oSp -xek -xek -xek -xek -xek -xek -xek -xek -xek -oSp -xek -xek -xek -wuH -phr +nXg +nXg +nXg +nXg +nXg +nXg +nXg +eNs +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +eNs +nXg +nXg +nXg +jEg +rUb saC saC saC @@ -56579,8 +56579,8 @@ bzC xpg cKG rtI -fNR -wDl +aDp +eOR cpy csU cpy @@ -56618,7 +56618,7 @@ cpy cpy sRA sRA -peE +oqs cpy rWS rWS @@ -56628,19 +56628,19 @@ sRA sRA sRA ien -qKC +njq eiZ xGa xLq uyN -pfM -wQC -vJe -nUn -cET +qWJ +pWe +gVe +jvt +cuV clY clY -eTc +lmV slD xPx kCF @@ -56653,35 +56653,35 @@ yhK yhK vKR sjY -hMH -fsr +hfZ +isQ yfu -wGI -eqj -fuY -meY -fuK -fuY -meY -eqj -fuY +gJJ +tUE +qDK +jil +fQH +qDK +jil +tUE +qDK ylo -vDi +sRs ylo -aBc -fuY -eqj -aKl +kyS +qDK +tUE +sFr yfu ylo -xHa +rkP vXc vXc vXc umf umf vXc -cfL +pRt rMF nJv nJv @@ -56696,17 +56696,17 @@ nJv nJv nJv fnA -pGI +whB tZh ofi max -xfv -bKp -qTy +xUt +eJB +oIz pxb -sft -lXt -uJH +wwH +fBy +bSl nFj nFj nFj @@ -56729,7 +56729,7 @@ nFj nFj sYH gnf -lXt +fBy wjE pxb xqp @@ -56737,8 +56737,8 @@ pwa cpy cpy eYM -eMh -nkf +rPL +mDH wfP eYM jJF @@ -56767,29 +56767,29 @@ saC saC saC saC -xek -cgD -xek -caj -hlT -hlT -hlT -lDY -hlT -hlT -hlT -hlT -hlT -hlT -bDX -xek -xek -fiN -xek -xek -xek -xek -qxA +nXg +ckN +nXg +vHO +jYV +jYV +jYV +erm +jYV +jYV +jYV +jYV +jYV +jYV +vfP +nXg +nXg +gHi +nXg +nXg +nXg +nXg +nAe saC saC saC @@ -56805,9 +56805,9 @@ kBq bzC xpg pMT -btG -kUG -wDl +kHN +toa +eOR uWO uWO uWO @@ -56839,7 +56839,7 @@ sRA rWS sRA sRA -sdy +cgS cpy cpy cpy @@ -56860,14 +56860,14 @@ xwO eiZ xOD kvh -gRB -vJe -vJe -nUn -cET +dJl +gVe +gVe +jvt +cuV clY clY -eTc +lmV vmQ swt dpk @@ -56880,9 +56880,9 @@ hJZ clY eUt sjY -hMH -fsr -eqj +hfZ +isQ +tUE qvY yfu yfu @@ -56892,38 +56892,38 @@ yfu yfu bZd yfu -kFk -nGR +bBA +jGb ylo yfu bZd yfu bZd bZd -fsr -xHa +isQ +rkP vXc vXc vXc cpy umf yiM -bTO +jUs nJv xVd -ccr -hqK +voO +sJZ nJv nJv -vRt -vRt +qor +qor nJv -vWB -vWB -vWB +mRv +mRv +mRv xVd nJv -pGI +whB tZh ofi max @@ -56931,9 +56931,9 @@ ien ien ien pxb -qLD -nYP -ePa +hgi +crq +gjk nFj pRg nFj @@ -56955,8 +56955,8 @@ sYH nFj pRg nFj -qgo -nYP +aYH +crq wdY pxb pwa @@ -56964,8 +56964,8 @@ pxb pxb cpy eYM -vsP -nkf +svS +mDH wfP eYM jJF @@ -56994,30 +56994,30 @@ saC saC saC saC -xek -xek -xek -qxA +nXg +nXg +nXg +nAe uPc uPc kcb kcb -sUv -sUv +eJC +eJC uPc uPc kmd saC -jtU -xek -xek -oSp -xek -xek -xek -xek -wuH -phr +rHK +nXg +nXg +eNs +nXg +nXg +nXg +nXg +jEg +rUb fop saC tiQ @@ -57032,9 +57032,9 @@ oiW bzC xpg pPt -wwD -kUG -wDl +mzg +toa +eOR uWO vtc vtc @@ -57066,7 +57066,7 @@ cpy sRA kBT rWS -cml +mfu sRA cpy cpy @@ -57082,19 +57082,19 @@ sRA sRA rWS ien -xaC -pmt -xaC -fth -xaC -lkr -xaC -dom -cis -sDl +gZa +bYn +gZa +eKh +gZa +fRe +gZa +ska +gHa +hyw sjY clY -eTc +lmV vzy hwF ePp @@ -57107,8 +57107,8 @@ hJZ hJZ iPu wBA -pIC -otA +aPF +rpw icE djm pCn @@ -57120,48 +57120,48 @@ qJK cQB bZd ylo -nGR -kFk +jGb +bBA yfu -gOy +mSH bZd bZd yfu -fsr -xHa +isQ +rkP vXc vXc cpy cpy umf yiM -bTO +jUs nJv nJv -ccr -ccr -ajX -iex +voO +voO +uKp +kNU wdj -dfT +pSV nJv bzL qmA qmA -vWB +mRv nJv -pGI +whB ofi ofi max -xfv -bKp -qTy +xUt +eJB +oIz pxb -dbr -qZw -lXt -hcf +xgx +oHr +fBy +nRu vJj jIk aGS @@ -57181,8 +57181,8 @@ dhP vJj jIk aGS -hcf -lXt +nRu +fBy gPv gVn pwa @@ -57192,7 +57192,7 @@ pxb cpy eYM eYM -iqU +oLU wfP eYM wfP @@ -57221,30 +57221,30 @@ saC saC saC saC -xek -xek -xek -qxA +nXg +nXg +nXg +nAe uPc tKo wBG tiQ -sUv -sUv +eJC +eJC tKo -rcY +jts tiQ saC saC -xek -xek -pSH -pSH -xek -xek -xek -xek -wuH +nXg +nXg +lwE +lwE +nXg +nXg +nXg +nXg +jEg fop fop tiQ @@ -57260,8 +57260,8 @@ bzC xpg pPt sDS -kUG -wDl +toa +eOR uWO uWO vtc @@ -57291,9 +57291,9 @@ sRA cpy cpy sRA -eTt +oLk rWS -kFL +mff sRA sRA cpy @@ -57309,16 +57309,16 @@ sRA sRA rWS ien -prV -qbg -prV -prV -prV -diP -prV -prV -prV -mgK +jGW +qCZ +jGW +jGW +jGW +vHs +jGW +jGW +jGW +dVv sjY hJZ wqa @@ -57334,8 +57334,8 @@ hJZ hJZ slO hJZ -hMH -fsr +hfZ +isQ yfu yfu yfu @@ -57347,68 +57347,68 @@ yfu bDr bZd ylo -vDi -kFk -vOu +sRs +bBA +suD bZd yfu bZd yfu -fsr -xHa +isQ +rkP vXc vXc cpy vXc vXc yiM -rCW +mfq nJv -dTC -bbA -xTY +xrW +qWn +sxY udM nEY sQD -eqn +eKQ nJv cNO qmA mdp -vWB +mRv nJv -eJa +pda ofi ofi max -xfv -bKp -qTy +xUt +eJB +oIz pxb pxb -dbr -qZw -lXt -lXt -lXt -fCX -fFN -jVU +xgx +oHr +fBy +fBy +fBy +hpN +eqZ +gBw uiM -aLQ -sMj -aLQ -caW -deP -deP -loi +aZC +cTe +aZC +vtz +gZQ +gZQ +wNU uiM -una -fCX -fCX -lXt -lXt -lXt +tiP +hpN +hpN +fBy +fBy +fBy gPv gVn pxb @@ -57418,7 +57418,7 @@ pwa pxb cpy eYM -bxW +uKs wfP wfP eYM @@ -57449,46 +57449,46 @@ saC saC saC saC -oSp -oSp -lTp +eNs +eNs +pKT tiQ tiQ tiQ tiQ -eFF -eFF +lgH +lgH tiQ tiQ tiQ tiQ saC saC -pSH -pSH -pSH -xek -xek -xek -xek -xek -xek +lwE +lwE +lwE +nXg +nXg +nXg +nXg +nXg +nXg fop fop xmT -ecl -ecl -ecl -ecl -ecl -hCn -ecl +mMO +mMO +mMO +mMO +mMO +hVV +mMO bzC xpg xpg -wwD -kUG -wDl +mzg +toa +eOR uWO uWO uWO @@ -57518,7 +57518,7 @@ sRA uiK uiK sRA -dFW +tzo sRA bKq goY @@ -57537,74 +57537,74 @@ sRA ien ien ien -weB -weB -weB -weB -dBv -weB -weB -weB -weB -weB +mfi +mfi +mfi +mfi +dTc +mfi +mfi +mfi +mfi +mfi wqa wqa wqa -cPT -cPT -cPT -cPT -cPT -cPT -cPT -cPT -cPT -cVp -cPT -cPT +sdT +sdT +sdT +sdT +sdT +sdT +sdT +sdT +sdT +xMC +sdT +sdT ylo -fuY -koZ -xIY -boW -xIY -xIY -xIY +qDK +wVc +rPS +rqz +rPS +rPS +rPS yfu bDr yfu -rqv -vDi +iIU +sRs ylo hjE -boW -xIY -eOt -vEl +rqz +rPS +gJo +nyr ylo -xHa +rkP vXc vXc vXc vXc yiM yiM -eul +fAm nJv -eDJ +onk vIy vIy oTp knT sEa -pcU +bmi nJv rZg mwC kIs -vWB +mRv nJv -eJa +pda ofi ofi max @@ -57614,26 +57614,26 @@ ien pwa pxb pxb -dbr +xgx udi -qZw -lXt -lXt -lXt -jVU +oHr +fBy +fBy +fBy +gBw qkw -aLQ -jcm -aLQ -caW -deP -deP -loi +aZC +sqU +aZC +vtz +gZQ +gZQ +wNU uiM -fCX -lXt -lXt -lXt +hpN +fBy +fBy +fBy gPv udi gVn @@ -57676,72 +57676,72 @@ saC saC saC saC -xek -xek -qxA +nXg +nXg +nAe uPc dUS -mLd +ufq tiQ -sUv -sUv +eJC +eJC tJk -mLd +ufq tiQ saC saC saC saC -pSH -pSH -pSH -xek -xek -xek -xek -xek +lwE +lwE +lwE +nXg +nXg +nXg +nXg +nXg fop fop xmT -cBp +cYW jRZ -xRd -tRO -gAu -hCn +wab +hdv +dzW +hVV bzC bzC bzC xpg -wwD -kUG -wDl +mzg +toa +eOR uWO uWO -cDX -gQI -gQI -gQI -gQI -gQI -gQI -gQI -gQI -gQI +mzW +gpe +gpe +gpe +gpe +gpe +gpe +gpe +gpe +gpe uWO iTW cPi uWO -gQI -gQI -gQI +gpe +gpe +gpe uWO uWO vtc vtc vtc uWO -tIA +trJ sRA tTr pUR @@ -57788,35 +57788,35 @@ hJZ hJZ slO hJZ -xfR +aGN ylo ylo -dzV -kGR -weU -dzV -weU -weU -fuY +duG +fhI +pJB +duG +pJB +pJB +qDK sIS yfu -kFk -nGR +bBA +jGb ylo ylo -knZ -qFZ -izG +ahl +gbg +dtB ylo ylo -xHa +rkP vXc vXc vXc yiM yiM yiM -bTO +jUs nJv nJv lHu @@ -57824,41 +57824,41 @@ pwT fSv wbj rIn -dyf -cAM -dfT +xRp +dZS +pSV vIy pCT jYy -jdu -pGI +nRZ +whB ofi tZh max -xfv -bKp -qTy +xUt +eJB +oIz pwa pwa pxb pxb pxb -dbr +xgx udi -qZw -lXt -lXt +oHr +fBy +fBy uiM uiM uiM uiM -caW +vtz uiM uiM uiM uiM -lXt -lXt +fBy +fBy gPv udi gVn @@ -57872,13 +57872,13 @@ pwa cpy cpy eYM -iZC +wjg wfP -mzi +lgR eYM wfP wfP -jaw +oft eYM sRM hTe @@ -57902,16 +57902,16 @@ saC saC saC saC -xek -xek -xek -coe +nXg +nXg +nXg +ajc uPc uPc uPc kmd -usS -sUv +auW +eJC uPc uPc kmd @@ -57921,40 +57921,40 @@ saC saC saC saC -dQI -hlT -hlT -hlT -hlT +tie +jYV +jYV +jYV +jYV fop fop fop xmT -xFa -ecl -mmP -jht -oVY -hCn -ecl +iKD +mMO +uLD +cNW +nyt +hVV +mMO bzC xpg xpg -uDz -kUG -wDl +imC +toa +eOR aNw uWO -iyc +mvt bIJ bIJ -akb -akb -fbH -hiQ -fbH -akb -akb +cmE +cmE +wza +ayQ +wza +cmE +cmE uWO uWO uWO @@ -58002,7 +58002,7 @@ sjY hJZ hJZ clY -fQm +kOO hJZ hJZ hJZ @@ -58015,7 +58015,7 @@ hJZ hJZ slO hJZ -qeY +tnJ oOS ylo ylo @@ -58024,11 +58024,11 @@ ylo ylo ylo ylo -aYC -gJv -aYC +gmZ +iGN +gmZ ylo -vDi +sRs ylo ylo ylo @@ -58036,35 +58036,35 @@ ylo ylo ylo rMF -gQC +sPl vXc vXc yiM yiM yiM yiM -pRy -oGa -uJJ +mwV +wAa +lyA qWf icy wdj wdj wdj -eEk -fUA -dfT +mAQ +bIj +pSV vIy eXU lKu -jdu -pGI +nRZ +whB ofi max max -xfv -bKp -qTy +xUt +eJB +oIz pwa pwa pwa @@ -58072,19 +58072,19 @@ pxb pxb pxb pxb -dbr -qZw -lXt -lXt -lXt -tDG -una -caW -loi -loi -lXt -lXt -lXt +xgx +oHr +fBy +fBy +fBy +pTv +tiP +vtz +wNU +wNU +fBy +fBy +fBy gPv gVn pxb @@ -58100,14 +58100,14 @@ cpy cpy eYM eYM -aAJ +qaq eYM eYM -iqU +oLU wfP wfP eYM -pQh +kkL qxk hTe eYM @@ -58128,51 +58128,51 @@ saC saC saC saC -xek -xek -xek -xek -qxA -szE -szE -szE -szE -szE -szE -szE -szE -szE -dHo -xek +nXg +nXg +nXg +nXg +nAe +bEI +bEI +bEI +bEI +bEI +bEI +bEI +bEI +bEI +dGQ +nXg saC saC saC saC saC -xek -xek -xek -xek +nXg +nXg +nXg +nXg fop fop fop xmT fop -ecl -mmP -jht -bai +mMO +uLD +cNW +euW kOE -jZx +efE bzC xpg pPC -wwD -kUG -wDl +mzg +toa +eOR uWO uWO -iyc +mvt bIJ eaE eaE @@ -58229,7 +58229,7 @@ hJZ hJZ hJZ clY -fQm +kOO hJZ hJZ hJZ @@ -58243,26 +58243,26 @@ hJZ slO hJZ hJZ -qeY -prV -eTc -wQw -vly -vly -vly -paX -vly -fUI -vly -vly -lWi -paX -vly -vly -vly -vly -vly -gQC +tnJ +jGW +lmV +bMC +rLu +rLu +rLu +kWz +rLu +bPK +rLu +rLu +bYa +kWz +rLu +rLu +rLu +rLu +rLu +sPl vXc yiM yiM @@ -58270,46 +58270,46 @@ yiM yiM yiM yiM -bTO -jdu -pwt +jUs +nRZ +ckE ukp xdD oPc nEY sQD -hFR +hqR nJv -pZa +bOr rbc vIy -xxo -jdu -pGI +eXo +nRZ +whB max max max -xfv -bKp -aSe -ybP -ybP -ybP -ybP -gCw +xUt +eJB +sSd +bvW +bvW +bvW +bvW +jNt pxb pxb pxb -dbr +xgx udi -qZw -nYP -lXt -lXt -caW -lXt -lXt -nYP +oHr +crq +fBy +fBy +vtz +fBy +fBy +crq gPv udi gVn @@ -58354,63 +58354,63 @@ saC saC saC saC -xek -xek -xek -xek -xek -qxA +nXg +nXg +nXg +nXg +nXg +nAe uPc -sUv -sUv -sUv -szE -szE -sUv -sUv -sUv +eJC +eJC +eJC +bEI +bEI +eJC +eJC +eJC uPc -xek -sUv -dHt +nXg +eJC +opN saC saC saC saC saC -xek +nXg fop fop fop fop chm fop -ecl -mmP -jht -joX -ecl -ecl +mMO +uLD +cNW +huT +mMO +mMO bzC xpg xpg sDS -kUG -wDl +toa +eOR uWO uWO -iyc -nlS +mvt +wPp eaE -usH -usH +lsc +lsc uWO -usH -usH -usH -ktZ -usH -usH +lsc +lsc +lsc +qeN +lsc +lsc uWO uWO uWO @@ -58456,7 +58456,7 @@ wBA wBA vEf wBA -aPh +mBN wBA wBA yhK @@ -58472,7 +58472,7 @@ wBA vEf wBA wBA -oOq +bys tBC rwE rwE @@ -58481,9 +58481,9 @@ rwE rwE hWI yiM -lWi -lWi -lWi +bYa +bYa +bYa vXc vXc vXc @@ -58497,45 +58497,45 @@ yiM yiM yiM yiM -bTO +jUs nJv xVd -ghG -tbR -kgZ -vYB -gPr -eiL +hil +pln +oSc +rUy +pWZ +nZH nJv -aeV -rRs -xRa +jVo +jKN +mqh xVd nJv -pGI +whB max max max -xfv +xUt tFx -rhr +kBR tFx tFx -rhr +kBR tFx -qTy +oIz pxb pxb pxb pxb pxb -dbr +xgx udi -bRe -lXt -lXt -lXt -aZq +aFR +fBy +fBy +fBy +puT udi gVn pxb @@ -58552,7 +58552,7 @@ xqp cpy cpy eYM -bZJ +lkf wfP wfP wfP @@ -58560,7 +58560,7 @@ eYM wfP wfP jJF -jBe +oKO eYM sRM hTe @@ -58581,27 +58581,27 @@ saC saC saC saC -xek -xek -xek -xek -xek -qxA +nXg +nXg +nXg +nXg +nXg +nAe uPc uPc uPc uPc -szE -szE +bEI +bEI uPc uPc uPc uPc -xek -sUv -ucJ -ucJ -szE +nXg +eJC +aSW +aSW +bEI saC saC saC @@ -58612,24 +58612,24 @@ fop fop chm chm -izd -mmP -jht -bai -ecl +tRk +uLD +cNW +euW +mMO bzC bzC bzC xpg -wwD -kUG -wDl +mzg +toa +eOR uWO uWO -iyc -nlS +mvt +wPp enS -usH +lsc dmG dQs gFp @@ -58637,7 +58637,7 @@ eaE eaE eaE eaE -usH +lsc uWO uWO uWO @@ -58683,7 +58683,7 @@ hJZ hJZ slO clY -vUw +liR clY hJZ gVv @@ -58692,16 +58692,16 @@ xVz xVz gsS hJZ -pxD -trr -trr -trr -hJS -trr -trr -eTc -nml -onL +qXU +cWo +cWo +cWo +cyd +cWo +cWo +lmV +wVN +cWq yiM yiM yiM @@ -58709,7 +58709,7 @@ yiM yiM yiM yiM -lWi +bYa vXc vXc vXc @@ -58724,33 +58724,33 @@ yiM yiM yiM yiM -bTO +jUs gbB nJv -jdu -lMO -oGa +nRZ +wUr +wAa nJv -aaQ -uTi +pca +nxt nJv -jdu -jdu -jdu +nRZ +nRZ +nRZ nJv kmq -gKi +loR max max ofi -xfv -fQB -dtI -qEb -vXK -nzB -rhr -qTy +xUt +syk +hrQ +aUR +vOd +tXF +kBR +oIz pxb pxb pxb @@ -58758,11 +58758,11 @@ pwa pwa pxb pxb -kCo -bBb -bBb -bBb -gaM +cMY +rlK +rlK +rlK +vte pxb pxb pxb @@ -58779,7 +58779,7 @@ xqp cpy cpy eYM -bZJ +lkf wfP wfP wfP @@ -58809,27 +58809,27 @@ saC saC saC saC -xek -xek -xek -xek -qxA +nXg +nXg +nXg +nXg +nAe uPc -sUv -sUv -sUv -szE -szE -sUv -sUv -sUv +eJC +eJC +eJC +bEI +bEI +eJC +eJC +eJC uPc -xek -sUv -szE -ucJ -szE -szE +nXg +eJC +bEI +aSW +bEI +bEI saC saC saC @@ -58840,23 +58840,23 @@ chm chm chm saC -fmp +hoa uQI pLj -eBJ -hBz +vCU +vVy bzC xpg xpg -wwD -tkh -wDl +mzg +xHH +eOR uWO uWO -iyc -nlS +mvt +wPp eaE -lEE +fbx doj eaE gSw @@ -58864,22 +58864,22 @@ eaE nTO gge eaE -usH +lsc ilK uWO uWO uWO uWO -wDl +eOR uWO vtc uWO uWO uWO -gip -xjj -xjj -aPy +jRF +xaA +xaA +mlJ sRA sRA uiK @@ -58910,7 +58910,7 @@ hJZ hJZ eUt clY -fQm +kOO clY hJZ hJZ @@ -58918,25 +58918,25 @@ hJZ hJZ clY clY -pxD +qXU gKO nLm nLm nLm -mFC -fFv +fsM +pUu nLm nLm nLm rMF -onL +cWq yiM yiM yiM yiM yiM yiM -lWi +bYa vXc vXc vXc @@ -58952,32 +58952,32 @@ yiM yiM yiM yiM -pdG -vly -vly -vly -vly -laQ -aMi -gGf -dlD -vly -iOD -cso -cso -gKi +waC +rLu +rLu +rLu +rLu +skI +fIn +ith +obm +rLu +tEO +kcA +kcA +loR max max max ofi -xfv -fQB -lQE -oZt -oZt -mWK -rhr -qTy +xUt +syk +bJb +asE +asE +eAp +kBR +oIz pxb pxb pwa @@ -59006,12 +59006,12 @@ xqp cpy cpy eYM -urK +lPD wfP wfP wfP eYM -mzi +lgR wfP wfP jJF @@ -59035,30 +59035,30 @@ saC saC saC saC -xek -xek -xek -xek -xek -qxA -szE -szE -szE -szE -dHo -szE -lOF -szE -kcT -vRF -hLs -sUv -szE -szE -kcT -szE -sUv -xek +nXg +nXg +nXg +nXg +nXg +nAe +bEI +bEI +bEI +bEI +dGQ +bEI +vdG +bEI +vUd +ukv +jHL +eJC +bEI +bEI +vUd +bEI +eJC +nXg saC saC saC @@ -59067,37 +59067,37 @@ chm chm tiQ saC -coG +tZe jsD tCh kOQ -hBz +vVy bzC xpg pPt sDS -fNR -xZO +aDp +dxj uWO uWO -iyc -nlS +mvt +wPp eaE -ktC +pdY fsQ -lGi +fej eaE eaE gbH hPd eaE -usH +lsc eaE uWO uWO iTW uWO -wDl +eOR vtc vtc vtc @@ -59106,7 +59106,7 @@ uWO kSR lBE lBE -jgD +dry rWS sRA sRA @@ -59137,7 +59137,7 @@ hJZ wKj eUt sjY -fQm +kOO clY clY clY @@ -59145,26 +59145,26 @@ clY clY clY clY -hMH +hfZ nLm nLm -mfy -toa -olG -fFo -aoj -wEr +dLv +jCr +bxH +mGA +qZn +kua nLm nLm -xHa +rkP yiM yiM yiM yiM yiM -lWi -lWi -lWi +bYa +bYa +bYa vXc vXc vXc @@ -59189,7 +59189,7 @@ wYa vXc vXc vXc -iOD +tEO max max max @@ -59197,14 +59197,14 @@ max max max ofi -xfv -tCl -lQE -uSm -uSm -mWK -sTu -qTy +xUt +vfh +bJb +qAL +qAL +eAp +kCH +oIz pxb pwa pwa @@ -59233,15 +59233,15 @@ pxb cpy cpy eYM -qHL +fDE wfP wfP jJF eYM -jBe +oKO wfP wfP -qCm +miB eYM sRM hTe @@ -59261,32 +59261,32 @@ saC saC saC saC -xek -xek -xek -xek -cgD -xek -qxA +nXg +nXg +nXg +nXg +ckN +nXg +nAe uPc -sUv -sUv -sUv -rqk -szE -sUv -sUv -sUv +eJC +eJC +eJC +vAw +bEI +eJC +eJC +eJC uPc -hdi -sUv -szE -szE -szE -szE -sUv -xek -xek +onQ +eJC +bEI +bEI +bEI +bEI +eJC +nXg +nXg saC saC saC @@ -59297,20 +59297,20 @@ saC oJS oJS tCh -jvR -hBz +dAO +vVy bzC xpg xpg -btG -fNR -xZO +kHN +aDp +dxj uWO uWO -iyc -tFS +mvt +ajf eaE -bOB +vtJ gge jsQ uWO @@ -59318,13 +59318,13 @@ cWf gwt eaE eaE -usH +lsc eaE uWO uWO uWO gcY -vsn +idY uWO vtc vtc @@ -59359,43 +59359,43 @@ slO hJZ hJZ hJZ -pxD -trr -trr -hJS -trr -fQm -sPy +qXU +cWo +cWo +cyd +cWo +kOO +bhg sjY clY clY clY clY sjY -hMH +hfZ nLm -ivd +skg jfZ jfZ sWt fgk tHJ jfZ -eUw +dPD nLm -xHa +rkP yiM yiM yiM yiM yiM -cfL -lWi -rcU -rcU -rcU -rcU -onL +pRt +bYa +lHQ +lHQ +lHQ +lHQ +cWq vXc vXc yiM @@ -59416,7 +59416,7 @@ pnE umf umf vXc -iOD +tEO max max max @@ -59424,14 +59424,14 @@ max max ofi tZh -xfv -fQB -vOI -oZt -ilt -cuM -rhr -qTy +xUt +syk +ycR +asE +fFb +qyF +kBR +oIz pwa pwa pwa @@ -59449,26 +59449,26 @@ pwa pwa pwa pwa -rcu -ybP -ybP -ybP -ybP -ybP -ybP +sPA +bvW +bvW +bvW +bvW +bvW +bvW cpy cpy cpy eYM -pOe +bvs wfP jJF jJF eYM -jBe +oKO jJF wfP -qCm +miB eYM sRM hTe @@ -59488,32 +59488,32 @@ saC saC saC saC -xek -xek -xek -xek -xek -xek -qxA +nXg +nXg +nXg +nXg +nXg +nXg +nAe uPc uPc uPc uPc -haV -szE +bDO +bEI uPc uPc uPc uPc -hdi -sUv -sUv -sUv -sUv -sUv -sUv -xek -xek +onQ +eJC +eJC +eJC +eJC +eJC +eJC +nXg +nXg saC saC saC @@ -59529,15 +59529,15 @@ bzC bzC bzC xpg -btG +kHN bkE -xZO +dxj uWO oTX -iyc -tFS +mvt +ajf eaE -usH +lsc doF gFp uWO @@ -59545,7 +59545,7 @@ fkB uWO eaE eaE -usH +lsc eaE eaE uWO @@ -59585,45 +59585,45 @@ hJZ slO hJZ hJZ -pxD +qXU oOS nLm -umd -aMJ -umd +vmu +jzb +vmu nLm oOS -sPy +bhg sjY clY clY sjY sjY -hMH -xtq -bnE +hfZ +qiK +pav uOs tUM eAm uOs tUM uOs -iAH -xtq -xHa +pxI +qiK +rkP yiM yiM yiM yiM -cfL +pRt gbB nLm -umd -umd -umd +vmu +vmu +vmu nLm rMF -onL +cWq vXc vXc yiM @@ -59638,27 +59638,27 @@ yiM yiM vXc vXc -cfL -rcU -rcU -rcU -rcU -iOD -uQc +pRt +lHQ +lHQ +lHQ +lHQ +tEO +iEv max max max max ofi tZh -xfv -fQB -wnd -mWK -rIc -jap -rhr -qTy +xUt +syk +qWR +eAp +muG +sut +kBR +oIz pwa pwa pxb @@ -59667,33 +59667,33 @@ pxb pxb pxb pwa -hmZ -prO -hmh -pjk -waP -prO -nHL +aBU +hnc +uyF +stP +gyr +hnc +ylA pwa pwa -mCO +qJs tFx tFx -aBf -aBf -aBf +eKs +eKs +eKs tFx tFx cpy cpy eYM -cnV +ddh wfP jJF eYM eYM eYM -dmK +gLc wfP wfP eYM @@ -59714,32 +59714,32 @@ saC saC saC saC -xek -xek -xek -xek -xek -xek -xek -coe +nXg +nXg +nXg +nXg +nXg +nXg +nXg +ajc uPc -sUv -sUv -sUv -szE -szE -sUv -sUv -sUv +eJC +eJC +eJC +bEI +bEI +eJC +eJC +eJC uPc -hdi -xek -hLk -xek -xek -xek -xek -xek +onQ +nXg +fyq +nXg +nXg +nXg +nXg +nXg saC saC saC @@ -59756,15 +59756,15 @@ bzC bzC xpg xpg -lHD +gpX bkE -tEh +oEo uWO uWO -iyc -tFS +mvt +ajf eaE -usH +lsc doF eaE gSw @@ -59772,7 +59772,7 @@ gFp eaE gIv eaE -ktZ +qeN eaE eaE uWO @@ -59811,47 +59811,47 @@ hJZ hJZ slO hJZ -pxD +qXU oOS nLm nLm -tNJ -xcb -hYA +qdq +tDc +beZ nLm nLm oOS -trr -trr -trr -trr -trr +cWo +cWo +cWo +cWo +cWo oOS -khI -bnE +uVG +pav oPu uOs -oxB -evQ +xcj +mnZ fjP uOs -sYE -khI +laC +uVG rMF -rcU -rcU -rcU -rcU +lHQ +lHQ +lHQ +lHQ rMF nLm nLm -lhf -aKc -ojM +vPJ +ych +wyp nLm nLm rVa -onL +cWq vXc vXc vXc @@ -59864,7 +59864,7 @@ yiM yiM vXc vXc -cfL +pRt rMF mBF rMF @@ -59872,20 +59872,20 @@ mBF rMF mBF fnA -uQc +iEv max max max tZh -ksF +eGo fnA tFx -rhr -bmY -rhr +kBR +ocs +kBR tFx tFx -qTy +oIz pxb pxb cpy @@ -59893,35 +59893,35 @@ cpy pxb pxb pxb -hmZ -uSz +aBU +wCk tFx tFx -bmY +ocs tFx tFx -wih -ybP -ybP -aSe +bUR +bvW +bvW +sSd tFx -tFw -hfC -uSm -hfC -xUU +joY +opK +qAL +opK +ijf tFx eYM eYM eYM eYM -aAJ +qaq eYM eYM eYM eYM eYM -aAJ +qaq eYM eYM sRM @@ -59940,32 +59940,32 @@ saC saC saC saC -xek -xek -xek -xek -xek -xek -xek -xek -qxA -szE -szE -szE -szE -szE -szE -szE -dHo -szE -oQI -rNR -aeK -aeK -aeK -aeK -aeK -aeK +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nAe +bEI +bEI +bEI +bEI +bEI +bEI +bEI +dGQ +bEI +bbq +sgp +rKU +rKU +rKU +rKU +rKU +rKU eLV saC saC @@ -59973,9 +59973,9 @@ saC saC saC tiQ -xFa +iKD tiQ -jvR +dAO oJS oJS oJS @@ -59983,15 +59983,15 @@ bzC bzC bzC xpg -btG +kHN bkE -wDl +eOR uWO uWO -iyc -nlS +mvt +wPp enS -usH +lsc dqr eaE egV @@ -59999,7 +59999,7 @@ eaE eaE gJm eaE -usH +lsc eaE eaE aNw @@ -60037,49 +60037,49 @@ hJZ hJZ hJZ slO -pxD +qXU gKO nLm nLm -mEM -bnE +jko +pav lnQ -bnE -fsu +pav +wOf nLm nwj -tBA -tBA +biV +biV nwj -tBA -tBA +biV +biV nwj nLm -oph -hHg -vRa -rLU -qIO -gPy -mwB -vlu +vJI +lpS +rFo +dHK +euJ +fBw +fhf +gXe nLm nwj -tBA -tBA -tBA -tBA +biV +biV +biV +biV nwj nLm -qpa -jjw +biw +xWI fms -dSm -dSm +xIG +xIG nLm nLm rMF -onL +cWq vXc vXc umf @@ -60090,7 +60090,7 @@ yiM yiM vXc vXc -cfL +pRt gbB mBF mBF @@ -60100,19 +60100,19 @@ mBF mBF mBF fnA -uQc +iEv max max tZh -xfv +xUt tFx tFx -ljc -mWK -rco +qXu +eAp +kRe tFx tFx -qTy +oIz pxb pxb pxb @@ -60120,37 +60120,37 @@ pxb pxb pxb pwa -goQ +akj tFx tFx -wAS -hfC -ctF +bul +opK +kFq tFx tFx cpy cpy -aSe +sSd tFx -ilj -iuh -uSm -hfC -dMR +mmS +pSz +qAL +opK +ctk tFx eYM -twy -qHL +cnC +fDE wfP jJF jJF eYM eYM eYM -lLg +rNf wfP jJF -oXD +qnm sRM eYM eYM @@ -60166,33 +60166,33 @@ tiQ saC saC saC -xek -xek -xek -xek -xek -xek -xek -xek -xek -qxA +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nAe uPc uPc uPc kmd -sUv -sUv +eJC +eJC uPc uPc kmd uPc -gKI -xek -xek -xek -xek -xek -xek +oYg +nXg +nXg +nXg +nXg +nXg +nXg eLV eLV saC @@ -60200,25 +60200,25 @@ saC saC saC tiQ -aIm -xQU -gBJ -xRd +fvG +aUg +pGJ +wab oJS oJS oJS bzC xpg xpg -wwD -fNR -wDl +mzg +aDp +eOR uWO uWO -iyc -nlS +mvt +wPp eaE -fGb +kAL dBC dTv eaE @@ -60226,10 +60226,10 @@ jsQ eaE heB eaE -fEX -fEX -fEX -fEX +uRH +uRH +uRH +uRH uWO uWO uWO @@ -60241,7 +60241,7 @@ ien hmz nfU hJZ -gFS +ddL clY clY clY @@ -60256,57 +60256,57 @@ lsG qDl clY vjG -krx -trr -trr -trr -trr -sPy +vLX +cWo +cWo +cWo +cWo +bhg xGk slO -hMH +hfZ nLm nLm -cLG -bnE +fKD +pav uOs eAm uOs -xxA +gxT nLm -mWb -xqP -ifj -uMH -wvM -wvM -oza +hyt +olu +gcf +cIq +iAg +iAg +rBc nLm nLm nLm -umd -mFC -omp -umd +vmu +fsM +iIb +vmu nLm nLm nLm -oAk -kBO -wfg -eFj -vhN -pdE +jdu +qcB +aAs +vIB +vtC +tJb nLm -iOg +vGl lUi fjP guB -fvC -uBS +qbK +epp nLm nLm -xHa +rkP vXc vXc vXc @@ -60316,30 +60316,30 @@ vXc yiM vXc umf -cfL +pRt rMF mBF mBF -ouq -qBH -mUf -cqt -rbx +ceO +fJj +iJm +iyU +sXL mBF mBF kmq -uQc +iEv max max -xfv -fQB -mlM -for -ilt -ilt -mWK -rhr -qTy +xUt +syk +rWr +dmg +fFb +fFb +eAp +kBR +oIz pxb pxb pxb @@ -60347,37 +60347,37 @@ pxb pxb pxb pwa -goQ +akj tFx -aHT -mWK -uSm -diu -kQe +xdL +eAp +qAL +gyW +kvA tFx cpy cpy cpy tFx -lQE -hfC -hfC -hfC -lQE +bJb +opK +opK +opK +bJb tFx -pKY -usR +gNL +hRI wfP wfP wfP jJF -jBe +oKO eYM -pkL +tUw jJF wfP wfP -oXD +qnm sRM eYM cpy @@ -60393,32 +60393,32 @@ tiQ saC saC saC -xek -xek -xek -xek -xek -xek -xek -xek -xek -qxA +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nXg +nAe uPc tKo -rcY +jts tiQ -sUv -sUv +eJC +eJC tKo -rcY +jts tiQ -vUT -gKI -xek -xek -xek +oTQ +oYg +nXg +nXg +nXg eLV -xek +nXg eLV eLV eLV @@ -60427,25 +60427,25 @@ saC saC saC tiQ -eTB -klu -kLT -tFG -uBk +aVh +phH +ffq +xUz +fQh kOU oJS bzC xpg pPC sDS -fNR -wDl +aDp +eOR uWO uWO -iyc -tFS +mvt +ajf eaE -usH +lsc eaE eaE bex @@ -60453,7 +60453,7 @@ eaE gFp eaE hZZ -dhI +uwq eaE eaE eaE @@ -60468,7 +60468,7 @@ ien hmM clY hJZ -gFS +ddL clY clY clY @@ -60483,57 +60483,57 @@ xkO lUh clY clY -iRX -vZE -mlD -omj -pOF -cET +pAK +mlb +nkp +spF +wSH +cuV tPv slO -hMH +hfZ nLm -cLG -bnE +fKD +pav uOs mQy mMv uOs -bnE -umd -vtq +pav +vmu +mzF bkl vUf qfu qfu vUf -qWg -vyj -umd -oZF -hOo -jMh -oCp -iAH -pGP -umd -bCQ -eMF +kWL +oAM +vmu +hCs +nLk +bnm +lXI +pxI +pJi +vmu +tVJ +kPd ruS rYE ruS ruS -rwD -umd -sFd +lUb +vmu +ydg trj tUM uOs fjP -bnE -kHQ +pav +qPH nLm -xHa +rkP vXc vXc vXc @@ -60543,30 +60543,30 @@ vXc vXc vXc vXc -bTO +jUs mBF mBF -beP -xaP -tgY -wBu -pXC -pXC -dvQ +xdE +kES +dOG +rIL +ePF +ePF +hQo mBF mBF -pGI +whB max max -xfv -fQB -uDE -lgB -uSm -oZt -mWK -sTu -qTy +xUt +syk +owZ +mPm +qAL +asE +eAp +kCH +oIz pxb pxb pxb @@ -60574,37 +60574,37 @@ pxb pxb pwa pwa -goQ -rhr -pcd -vvj -uSm -sYs -gHt +akj +kBR +xUj +nYp +qAL +lXJ +pum tFx tFx tFx tFx tFx -lQE -vQm -uSm -lQE -ofV -bec -jNn +bJb +dqN +qAL +bJb +xjT +dCS +qzN wfP wfP wfP wfP wfP -gvX +fKh eYM -cee +eVx wfP wfP wfP -oqt +ygA sRM eYM cpy @@ -60620,30 +60620,30 @@ tiQ tiQ saC saC -bDX -xek -cgD -xek +vfP +nXg +ckN +nXg chm chm saC -xek -xek -qxA +nXg +nXg +nAe tiQ tiQ tiQ tiQ -sUv -sUv +eJC +eJC tiQ tiQ tiQ tiQ -fgF -oSp -oSp -dwq +jhv +eNs +eNs +fjK eLV eLV eLV @@ -60654,25 +60654,25 @@ saC saC tiQ tiQ -jvR -xMF -jht -jht -bai -ecl +dAO +wbm +cNW +cNW +euW +mMO oJS bzC xpg xpg -wwD -kUG -wDl +mzg +toa +eOR uWO uWO -iyc -nlS +mvt +wPp eaE -bNQ +mQW eaE dYK gFp @@ -60680,7 +60680,7 @@ eaE eaE eaE hUZ -usH +lsc enS eaE eaE @@ -60695,7 +60695,7 @@ ien ien hAs hJZ -gFS +ddL clY hJZ clY @@ -60705,29 +60705,29 @@ clY clY rmX xkO -bAX +wJv xkO lUh clY clY -ssm -aXu -vJe -vJe -nUn -cET +uWX +vSG +gVe +gVe +jvt +cuV tPv slO -hMH -umd -kIT +hfZ +vmu +ctZ fjP ltC jMZ prW sPk sPk -fqH +ibH xrH jDA akh @@ -60735,32 +60735,32 @@ akh iIK uUB lLl -dxB -dfg -xHc +lZn +goX +dlD pQA jhl sPk dnM -lIE -xsa -nqn +bZH +tCb +eqA cDH cDH gbe vyz czd cDH -dwc +smw dnM rou xXN tUM uOs uOs -bnE -umd -xHa +pav +vmu +rkP vXc vXc jue @@ -60770,68 +60770,68 @@ cpy vXc vXc yiM -bTO +jUs rMF -qWy -wic -pXC +fZX +xoe +ePF nqY -jre +apC cem -dzu -opC -qWy +xmQ +uHo +fZX kbS -pGI +whB max max -xfv -fQB -seR -ahL -oZt -oZt -asc -rhr -aSe -ybP +xUt +syk +bdI +vEo +asE +asE +emQ +kBR +sSd +bvW ien -ybP -ybP -ybP +bvW +bvW +bvW ien -ybP -lAU -rhr -hCy -hfC -uEx -uCD -uSm -tXb -vMP -saw -wku -tXb -dMR -vQm -uSm -lQE -hwJ +bvW +euE +kBR +kpU +opK +lke +bqJ +qAL +xSq +oOU +huK +oAD +xSq +ctk +dqN +qAL +bJb +gZn tFx cLB -rNw +jrt jJF -itB +dGO jJF -jBe +oKO eYM eYM -wCX +uBd wfP jJF jJF -oqt +ygA sRM eYM cpy @@ -60846,60 +60846,60 @@ cpy cpy tiQ saC -ucJ -nwv -osG -oSp +aSW +jDX +atN +eNs chm chm saC saC saC -xek -qxA +nXg +nAe wTv tJk -mLd +ufq tiQ -sUv -sUv +eJC +eJC tJk rUX tiQ fwo -gKI -xek -xek +oYg +nXg +nXg eLV eLV eLV -xek -xek +nXg +nXg eLV eLV saC saC tiQ -aIm -gBJ -xMF -jht -jht -bai -aNq +fvG +pGJ +wbm +cNW +cNW +euW +jii bzC bzC bzC xpg -wwD -kUG -wDl +mzg +toa +eOR oTX uWO -iyc -nlS +mvt +wPp eaE -usH +lsc eaE eaE doF @@ -60907,7 +60907,7 @@ eaE eaE bex eaE -fZt +cHE eaE jvf eaE @@ -60922,7 +60922,7 @@ ien prZ pza hJZ -gFS +ddL hJZ hJZ clY @@ -60932,62 +60932,62 @@ hJZ clY rmX xkO -qNL +veY xkO lUh clY clY -hMH -aXu -vJe -lKZ -gtV -cET +hfZ +vSG +gVe +mDs +jmQ +cuV tPv slO -hMH -umd -iOg +hfZ +vmu +vGl xEB trj fjP fjP rox -dSm -umd -vKd +xIG +vmu +tSY klY klY rbj qfu qfu qfu -fhw -umd -fSa -fqF +hoG +vmu +wRu +iFF eAm uOs -kHM -iAH -umd -kBO +eeD +pxI +vmu +qcB ruS xNe ruS mtt aFN -pDB -umd -dSm +qXq +vmu +xIG rox fjP uOs uOs lsD -qnZ -umd -xHa +wFn +vmu +rkP vXc vXc upz @@ -60997,54 +60997,54 @@ cpy yiM yiM yiM -bTO +jUs rMF -qWy -lbF -pXC +fZX +bYE +ePF nqY -gYD +meP gKY -wQX -vWb -uBA +rIo +iXj +rBW fnA -mek +vTs max max -xfv +xUt tFx tFx -mVz -tyr -syT +mgi +qGo +cFT tFx tFx -qJe -qJe +yja +yja ien -qJe -qJe -qJe +yja +yja +yja ien -qJe -rxW +yja +huC tFx -tJL -hfC -uCD -uCD -ljw +tVn +opK +bqJ +bqJ +mvg tFx tFx tFx tFx tFx -ilj -vDZ -lQE -ofV -cnP +mmS +eQr +bJb +xjT +ryk tFx eYM eYM @@ -61054,11 +61054,11 @@ eYM eYM eYM eYM -wCX +uBd wfP wfP wfP -oXD +qnm sRM eYM cpy @@ -61073,60 +61073,60 @@ cpy cpy tiQ tiQ -ucJ -szE -jtU -xek +aSW +bEI +rHK +nXg chm saC saC saC saC -xek -qxA +nXg +nAe wTv uPc uPc kmd -sUv -sUv +eJC +eJC uPc saC saC uPc -gKI -xek -xek -xek +oYg +nXg +nXg +nXg eLV -xek -xek -xek -qxA +nXg +nXg +nXg +nAe eLV eLV tiQ tiQ -fJI -klu -wym -jht -jht -joX -hAU -jZx +uMp +phH +cNf +cNW +cNW +huT +rLz +efE bzC xpg xpg -wwD -kUG -wDl +mzg +toa +eOR uWO uWO -iyc -nlS +mvt +wPp eaE -usH +lsc gSw eaE eaE @@ -61134,7 +61134,7 @@ fvx eaE eaE eaE -mES +igd eaE jFr eaE @@ -61149,7 +61149,7 @@ ien qzy eyM gfi -gFS +ddL hJZ hJZ clY @@ -61164,57 +61164,57 @@ sek qma clY hJZ -hMH -hnX -xaC -tUn -vIp -cET +hfZ +fGa +gZa +sld +iFU +cuV kfq slO -oDp +nzz nLm -qVn -vwx -eOW -iAH -gXw -ckE -tNJ +bxl +eJh +dsD +pxI +qzf +foS +qdq nLm -jBb -qTF -vyj -nBy -cmY -cmY -wSu -wSu +tzI +yce +oAM +mKR +pXJ +pXJ +dRG +dRG nLm nLm -grN +aKN trj uOs -tDC +cMI nLm nLm -sdO -kHi -vHe -fSY -tbq -rPr -wzQ +slB +vIL +vTL +rqf +xLh +aIn +myY nLm -ttq -aCG -mMB -xoD -bnE -ckE -ttq -umd -xHa +vtO +uxM +eZo +uFb +pav +foS +vtO +vmu +rkP vXc vXc vXc @@ -61224,53 +61224,53 @@ yiM yiM yiM yiM -bTO +jUs mBF mBF -ubE -jre +ucy +apC nqY -ioj +euw gKY -wBu -boO +rIL +dSM mBF mBF -pGI +whB max max -bzM +jDl fnA tFx -wPU -wPU -wPU +gqI +gqI +gqI tFx fnA -cso -cso +kcA +kcA ien -cso -cso -cso +kcA +kcA +kcA ien -cso -wkq -fQB -fas -uCD -lXN -hfC -hPm +kcA +ycK +syk +rAV +bqJ +fbj +opK +nkG tFx cpy cpy cpy tFx tFx -adu -dMR -hwJ +uJB +ctk +gZn tFx tFx cpy @@ -61283,7 +61283,7 @@ cpy eYM eYM jJF -fkA +tvc jJF jJF eYM @@ -61301,56 +61301,56 @@ cpy cpy tiQ tiQ -szE -nKb -bDX -xek +bEI +cOY +vfP +nXg saC saC saC chm -pSH -ptN -paV -paV -aeK -aeK -aeK -aeK -aeK -aeK -oal -aeK -sqW -xek -xek -xek -oSp -xek -xek -caj -qza -szE -tiQ -tiQ -fym -uwf -mda -jht -jht -nUQ -hbU +lwE +gxr +wPf +wPf +rKU +rKU +rKU +rKU +rKU +rKU +plL +rKU +hLI +nXg +nXg +nXg +eNs +nXg +nXg +vHO +sin +bEI +tiQ +tiQ +sjc +kZz +cGV +cNW +cNW +nrm +jJA kQK -ecl +mMO bzC xpg pPt sDS -kUG -wDl +toa +eOR uWO uWO -iyc +mvt uWO uWO iTW @@ -61361,7 +61361,7 @@ eaE eaE eaE eaE -kwS +ikt eaE jFG eaE @@ -61376,7 +61376,7 @@ ien ien pzo hJZ -gFS +ddL hJZ qNh clY @@ -61391,20 +61391,20 @@ yhK yhK wBA wBA -fpy -aBt -aBt -ucu -prV -gwd +reP +prv +prv +ddd +jGW +vzf hJZ eUt -rDO +cIi nLm nLm nLm nLm -bUF +lIH nLm nLm nLm @@ -61418,12 +61418,12 @@ nLm nLm nLm nLm -vDE -xfP +wVt +lCW gRw xPo -oqH -rWU +sdh +xuF nLm nLm nLm @@ -61437,11 +61437,11 @@ nLm nLm nLm nLm -bUF +lIH nLm nLm nLm -xHa +rkP vXc umf vXc @@ -61451,29 +61451,29 @@ yiM yiM yiM yiM -bTO +jUs rMF -qWy -bSk -vnZ +fZX +hzi +uoK eKH -uBC +lCN mVt -pXC -nNe -qWy +ePF +oVX +fZX fnA -pGI +whB max max max -bzM -cso -cso -cso -cso -cso -gKi +jDl +kcA +kcA +kcA +kcA +kcA +loR ofi max max @@ -61482,13 +61482,13 @@ max max max max -cvI -fQB -fbT -mWK -uSm -cuM -cDz +qen +syk +own +eAp +qAL +qyF +mMt tFx cpy cpy @@ -61511,7 +61511,7 @@ cpy eYM eYM eYM -qyz +bHp eYM eYM cpy @@ -61528,53 +61528,53 @@ cpy cpy cpy tiQ -ucJ -szE -nKb -bDX -xek +aSW +bEI +cOY +vfP +nXg saC chm chm chm -pSH -pSH -xek -xek -xek -xek -xek -xek -xek -oSp -xek -hdi -xek -xek -cgD -oSp -xek -caj -qza -szE -szE -tiQ -xFO -uwf -jeZ -kPg -jId -jId -bai -hAU -aBz -evt +lwE +lwE +nXg +nXg +nXg +nXg +nXg +nXg +nXg +eNs +nXg +onQ +nXg +nXg +ckN +eNs +nXg +vHO +sin +bEI +bEI +tiQ +req +kZz +anP +vxs +djY +djY +euW +rLz +lrc +lQf bzC nDM nDM -bjW -iJa -gVF +rlR +bNd +bop tfP tfP tfP @@ -61588,7 +61588,7 @@ eaE tfP jsQ eaE -usH +lsc eaE tfP eaE @@ -61602,21 +61602,21 @@ tfP ien hJZ hJZ -pxD -gFS -trr -trr -trr -trr -trr -trr -trr -trr -trr -trr -trr -trr -sPy +qXU +ddL +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +bhg hJZ hJZ clY @@ -61626,49 +61626,49 @@ wBA wBA wBA ldM -hMH +hfZ nLm -iOg -und -skd -wZO -cTv -wsh -lhf -cTv -wZO -pPS -cTv -wsh -lYc -cTv -wsh -vOm -cTv -jGM -xfP +vGl +ddb +aMM +vNn +dFk +uOF +vPJ +dFk +vNn +xCr +dFk +uOF +fPf +dFk +uOF +mXr +dFk +vyM +lCW dNm tUM -gZk -vnd -cTv -skd -wsh -cTv -xSp -wZO -cTv -hGp -wsh -cTv -skd -wZO -cTv -wsh -hGf -tVt +hkc +xJN +dFk +aMM +uOF +dFk +fbR +vNn +dFk +tXq +uOF +dFk +aMM +vNn +dFk +uOF +frR +bec nLm -xHa +rkP vXc umf vXc @@ -61678,19 +61678,19 @@ umf yiM yiM yiM -bTO +jUs rMF -qWy -iKp -iGe -vIi -pXC -pXC -jre -nNe -qWy +fZX +uLB +qHX +wXF +ePF +ePF +apC +oVX +fZX fnA -pGI +whB ofi ofi max @@ -61709,24 +61709,24 @@ max max max max -cvI +qen tFx tFx -gpH -flK -keW +dqf +djf +jiI tFx tFx cpy fnA -cso -cso -cso -cso -cso -cso -cso -cso +kcA +kcA +kcA +kcA +kcA +kcA +kcA +kcA fnA cpy cpy @@ -61737,9 +61737,9 @@ cpy cpy cpy eYM -nnV -sEh -pio +qYe +ldp +foq eYM cpy cpy @@ -61756,52 +61756,52 @@ cpy cpy tiQ tiQ -szE -szE -nKb -bDX +bEI +bEI +cOY +vfP chm chm chm chm -pSH -pSH -xek -xek -xek -saC -saC -pSH -pSH -pSH -xek -hdi -xek -xek -xek -oSp -caj -qza -szE -szE -tiQ -tiQ -jvR -jeZ -kPg -jId -jId -saC -bai -piI +lwE +lwE +nXg +nXg +nXg +saC +saC +lwE +lwE +lwE +nXg +onQ +nXg +nXg +nXg +eNs +vHO +sin +bEI +bEI +tiQ +tiQ +dAO +anP +vxs +djY +djY +saC +euW +jdp bzC bzC bzC bzC nDM -bjW -iJa -gVF +rlR +bNd +bop tfP ylC qyG @@ -61815,7 +61815,7 @@ hfS hfS hPO hWV -feC +fbO hfS hfS hfS @@ -61829,13 +61829,13 @@ uSY ien pAp hJZ -hMH +hfZ xtb xtb xtb -fMU -fMU -fMU +qxx +qxx +qxx xtb xtb xtb @@ -61843,7 +61843,7 @@ xtb xtb xtb xtb -cET +cuV clY hJZ hJZ @@ -61853,49 +61853,49 @@ hJZ hJZ clY clY -hMH +hfZ nLm -fjH +pfn eJm hDE -aZg +kvV nLm -mzf -rWY +xkq +scR nLm -vkW -pMq +koS +jRn nLm -mzf -rWY +xkq +scR nLm -mzf -xNv +xkq +bOz nLm -ssx -mcT +aZL +qDf dNm qEi -gZk -aIL +hkc +haX nLm -txG -pML +cMS +kSG nLm -txG -mzf +cMS +xkq nLm -grY -mzf +irJ +xkq nLm -txG -mzf +cMS +xkq nLm -nRx +dtp koj -gXK +uhp nLm -xHa +rkP vXc vXc vXc @@ -61905,19 +61905,19 @@ vXc umf yiM yiM -bTO +jUs mBF mBF -pvh -poh -voW -pXC -jre -nzW +lEt +bsJ +qMT +ePF +apC +aQW mBF mBF mBF -pGI +whB ofi ofi ofi @@ -61936,16 +61936,16 @@ max max max max -eSB -gdH +tLq +foc tFx -wPU -wPU -wPU +gqI +gqI +gqI tFx -oap -lQW -gKi +hYO +kNE +loR ofi ofi ofi @@ -61954,22 +61954,22 @@ ofi ofi ofi ofi -bzM -cso -cso +jDl +kcA +kcA fnA -lIm -lIm -lIm -lIm -lIm -lIm -kkw -gDN -qaJ -lIm -lIm -lIm +kRI +kRI +kRI +kRI +kRI +kRI +vMI +oPv +gSv +kRI +kRI +kRI cpy cpy cpy @@ -61984,51 +61984,51 @@ cpy cpy tiQ tiQ -szE -szE -nKb -hlT +bEI +bEI +cOY +jYV chm chm chm chm -pSH -oSp -oSp -saC -saC -xek -xek -oSp -xek -xek -hdi -xek -xek -caj -lDY -qza -szE -szE +lwE +eNs +eNs +saC +saC +nXg +nXg +eNs +nXg +nXg +onQ +nXg +nXg +vHO +erm +sin +bEI +bEI uPc tiQ -aIm -gBJ -xMF -jht -jId +fvG +pGJ +wbm +cNW +djY saC saC -bai -fWI -dnU -mRI +euW +nSB +ssY +pgK lqb lqb lqb lUK -iJa -gVF +bNd +bop tfP yim bou @@ -62037,15 +62037,15 @@ tfP tfP tfP eaE -yjR +giL eaE eaE eaE hZZ -fEX -fEX -fEX -fEX +uRH +uRH +uRH +uRH tfP tfP tfP @@ -62056,73 +62056,73 @@ ien ien ien pAp -hMH +hfZ xtb -uXD -ruM -oYy -uOY -iNg -ddn -akZ +auX +kKd +jPX +gUU +fiO +btQ +iiX xtb -usp -vcW -egS +qIr +mKW +oGK xtb jyf -trr -trr -mMd -kKX -cTS -trr -trr -trr -mMd +cWo +cWo +cvV +drh +qrG +cWo +cWo +cWo +cvV xWb nLm weR nLm nLm -ndE +nCn nLm nLm -tEq +qTY nLm nLm -tEq +qTY nLm nLm -tEq +qTY nLm nLm -tEq +qTY nLm nLm -bYa +esE eAm fjP -vRA +rRH nLm nLm -ndE +nCn nLm nLm -xap +vCa nLm nLm -ndE +nCn nLm nLm -ndE +nCn nLm nLm -xap +vCa weR nLm nLm -xHa +rkP vXc vXc vXc @@ -62132,19 +62132,19 @@ vXc vXc vXc yiM -bTO +jUs rMF mBF -osH -jcj -lGO -pXC -cME -oOz +ajZ +rOr +jQI +ePF +daf +dvd mBF fnA fnA -gKi +loR tZh tZh ofi @@ -62164,14 +62164,14 @@ max max max ofi -eSB -crf -crf -crf -crf -crf -nDN -gKi +tLq +jCg +jCg +jCg +jCg +jCg +vxn +loR ofi ofi max @@ -62184,19 +62184,19 @@ ofi ofi ofi ofi -xfv -lIm -dJw -bvl -cRq -wYF -lIm -mfI -qoe -gDN -vPg -jkK -lIm +xUt +kRI +fOx +qoT +vlZ +qYL +kRI +bTl +wxK +oPv +dyu +rxf +kRI cpy cpy cpy @@ -62211,51 +62211,51 @@ cpy cpy cpy tiQ -szE -kcT -szE -szE +bEI +vUd +bEI +bEI chm chm saC chm -xek -xek -xek -xek -xek -xek -cTm -sQz -sbs -sbs -fAU -xek -caj -qza -saC -tiQ -qSd -mCU -mCU -tiQ -jvR -xRd -fkS -jht -gpe +nXg +nXg +nXg +nXg +nXg +nXg +qOk +nvl +sII +sII +nFH +nXg +vHO +sin saC +tiQ +ofl +jqU +jqU +tiQ +dAO +wab +iHi +cNW +eII saC -ucZ -tRO -oDt -ecl -mRI +saC +jaX +hdv +lcZ +mMO +pgK sWn -bRq +gPh lUK -iJa -gVF +bNd +bop tfP yim tfP @@ -62264,12 +62264,12 @@ tfP tfP eaE eaE -yjR +giL bex eaE eaE eaE -usH +lsc eaE eaE tfP @@ -62283,71 +62283,71 @@ tfP ien cwE hJZ -hMH -fMU -mvF -oYy -sFo -cRt -sFo -ibK -vIB -fMU -igO -dMa -dRc +hfZ +qxx +nNm +jPX +xjQ +biJ +xjQ +rwl +kJa +qxx +aaK +bEJ +cFg xtb xtb -fMU -fMU +qxx +qxx xtb nTv -dgT +fyf iiE iiE iiE oYa nTv nLm -rhQ -dSm -uBS -tZK -xLb -dSm -eHK -loH -neP -eHK -rhQ -dSm -eHK -iAH -niv -eHK +als +xIG +epp +kjC +eVo +xIG +fbl +neJ +rAn +fbl +als +xIG +fbl +pxI +sHG +fbl nLm -kOl -umO +ngk +qes maF uOs -kHM -xAY +eeD +eih nLm -eHK -hOo -loH -eHK -gzt -asa -eHK -bfM -tVp +fbl +nLk +neJ +fbl +iHu +rub +fbl +huZ +giI dNm -hEV -iAH -eHK -iAH -cob +jVE +pxI +fbl +pxI +ohi nLm aiQ vXc @@ -62359,18 +62359,18 @@ vXc vXc vXc umf -bTO +jUs rMF mBF mBF mBF -jAi -uXE +lWz +wwu mBF mBF mBF mBF -pGI +whB max tZh ofi @@ -62411,20 +62411,20 @@ ofi ofi ofi ofi -xfv -aJl -dUu -nOD -nOD -axb -aJl -mnK -wYS -gDN -gDN -qdo -lIm -lIm +xUt +ogq +vdJ +pfP +pfP +qey +ogq +fQG +nTN +oPv +oPv +ycN +kRI +kRI cpy cpy bMX @@ -62438,51 +62438,51 @@ cpy cpy cpy tiQ -szE -szE +bEI +bEI uPc -szE -szE +bEI +bEI saC saC chm -xek -xek -xek -xek -xek -xek -hdi -pSH -pSH -cgD -caj -hlT -qza +nXg +nXg +nXg +nXg +nXg +nXg +onQ +lwE +lwE +ckN +vHO +jYV +sin saC saC tiQ -wst -roc -fnZ +pOg +mHB +uBw tiQ -rQn -mmP -rPf -jht +jaR +uLD +qez +cNW saC saC saC saC -jht -bxY -tRO -gAu -idK -lqK +cNW +frv +hdv +dzW +mYC +aoC lUK -iJa -gVF +bNd +bop tfP yim tfP @@ -62491,12 +62491,12 @@ tfP tfP eaE eaE -yjR +giL fFA gzu eaE gFp -usH +lsc jqa enS tfP @@ -62510,73 +62510,73 @@ tfP ien clY clY -nfc +xxj xtb -iRR -hcH -nGp -jJz -iRR -nUb -iRR +iGf +tlm +wRE +wuB +iGf +fTC +iGf xtb -fSE -epJ -bXy -igO -bXy -bXy -bXy +sWL +jeK +cVp +aaK +cVp +cVp +cVp xtb -gGi -fqA -gGi -gGi -gGi -dxR -gGi +nlF +rvU +nlF +nlF +nlF +iaP +nlF nLm -iAH -iwH -dUo -tNI -dUo -dUo -tqz -qUV -qUV -iwm -qUV -qUV -fSS -iAH -mAH -gJS +pxI +ruL +nfp +gRN +nfp +nfp +fsU +cqV +cqV +fYp +cqV +cqV +sVI +pxI +tsc +tVH nLm -oQq -fqF +hNG +iFF pJW tUM -kHM -wrp +eeD +tqZ nLm -oxB -dUo -dUo +xcj +nfp +nfp gRw -qUV -qUV +cqV +cqV xfX -iXw -dUo -oxB -dUo -dUo -oxB -lwB -izW +fRp +nfp +xcj +nfp +nfp +xcj +wkU +xjB nLm -iKj +mXw vXc nRs vXc @@ -62585,19 +62585,19 @@ vXc vXc vXc umf -cfL +pRt gbB mBF mBF fdn xci -het -aJh -aJh -vvc -qWy +wOk +jyo +jyo +oMt +fZX fnA -pGI +whB max max ofi @@ -62638,21 +62638,21 @@ ofi ofi tZh ofi -xfv -lIm -pNl -dSq -jaP -cZi -lIm -ain -gDN -qdL -gDN -gDN -ayl -lIm -lIm +xUt +kRI +qTw +pMb +ebL +gXr +kRI +khS +oPv +nIi +oPv +oPv +xLI +kRI +kRI cpy bMX "} @@ -62665,51 +62665,51 @@ cpy cpy cpy tiQ -szE -szE -szE -szE -szE +bEI +bEI +bEI +bEI +bEI saC saC saC -hlT -hlT -hlT -bDX -xek -xek -atY -dQI -dQI -dQI -jIV +jYV +jYV +jYV +vfP +nXg +nXg +vGs +tie +tie +tie +jmb saC saC saC tiQ tiQ -mCU -mCU -mzx +jqU +jqU +nbm tiQ -jvR -mmP -rPf -jht -jht +dAO +uLD +qez +cNW +cNW saC saC saC -bah -cbw -nkM -kVf -puc -evB +sZm +did +uCl +bem +eHG +efN aaX -fcu -ntt +oPS +pNR qyG rOf bIe @@ -62723,7 +62723,7 @@ eaE gFp eaE eaE -usH +lsc hUZ eaE tfP @@ -62737,34 +62737,34 @@ ien ien ien clY -vNt -xVh -ibK -oYy -oYy -nxw -oYy -ibK -ibK -xVh -igO -epJ -dMa -dMa -epJ -epJ -bXy -xVh -usF +wdp +hwo +rwl +jPX +jPX +xnK +jPX +rwl +rwl +hwo +aaK +jeK +bEJ +bEJ +jeK +jeK +cVp +hwo +nCF tYZ kdy kdy kdy tMk -ndd -xtq -bnE -fqF +cmt +qiK +pav +iFF fjP pJW fjP @@ -62776,17 +62776,17 @@ weR weR nLm ktx -vXC -bDM -lqp -gnD -eml +clJ +kVB +cIn +tei +bSJ uyP esa qvJ jDJ -eml -qFm +bSJ +hTU enP dnM dnM @@ -62800,10 +62800,10 @@ xIW sPk dnM esa -gWn -iAH -xtq -iKj +lnh +pxI +qiK +mXw vXc wth vXc @@ -62811,20 +62811,20 @@ wYa vXc vXc yiM -cfL +pRt rMF mBF mBF tPB fdn xci -pNb -aJh -aJh -qxu -qWy +uCZ +jyo +jyo +jHK +fZX fnA -pGI +whB max max ofi @@ -62865,21 +62865,21 @@ max ofi tZh ofi -xfv -lIm -lIm -lIm -lIm -lIm -lIm -lIm -rmx -gDN -gDN -gDN -gDN -nAK -lIm +xUt +kRI +kRI +kRI +kRI +kRI +kRI +kRI +qvw +oPv +oPv +oPv +oPv +jsU +kRI cpy bMX "} @@ -62893,70 +62893,70 @@ cpy cpy tiQ cNV -fje -fje -fje +dWW +dWW +dWW cNV cNV saC saC saC -ucJ -ucJ -nKb -hlT -hlT -kbt -ucJ -ucJ -ucJ +aSW +aSW +cOY +jYV +jYV +bfK +aSW +aSW +aSW saC saC tiQ tiQ tiQ -twL -roc +fAX +mHB hDa -roc +mHB hDy -jvR -mmP -rPf -jht -jht -bah -saC -bah -bah -jQu -jht -bai -idK -lqK +dAO +uLD +qez +cNW +cNW +sZm +saC +sZm +sZm +sSe +cNW +euW +mYC +aoC lUK -iJa -eTa +bNd +uuw tfP tfP tfP tfP tfP bcf -hBY -gzO -bNQ -usH -usH +qlt +lCR +mQW +lsc +lsc tfP -usH -usH +lsc +lsc jtu gSw tfP tfP tfP -gVF +bop pjJ yim tfP @@ -62964,34 +62964,34 @@ tfP ien clY clY -boF -kUK -wtV -dCH +qYn +vcl +quV +lvR qYo rpu lAm -jwU -wtV -kUK -pWO -agp -agp -cMP -agp -cMP -eZC -kUK -bGh +uAs +quV +vcl +wnh +bqP +bqP +jPJ +bqP +jPJ +lQx +vcl +qRe opO xfp xfp xfp wWX -rKJ -jwi -anL -xiL +dii +nrl +mhv +tQf sPm wwe sPk @@ -63004,16 +63004,16 @@ nLm weR dNm tTR -uMW -jTI -khI -vcb +qHM +qLA +uVG +uzc fuq eAm uOs fjP -vcb -khI +uzc +uVG fjP uOs uOs @@ -63021,37 +63021,37 @@ trj nLm nLm nLm -spA +bzw uMM uOs fjP uOs trj -kHM -bnE -khI -iKj +eeD +pav +uVG +mXw vXc wth vXc wYa yiM yiM -cfL +pRt rMF mBF mBF -iSE +pxT qhO qhO geH -pCQ -aJh -aJh +aIq +jyo +jyo mBF mBF mBF -pGI +whB max max ofi @@ -63092,21 +63092,21 @@ max max ofi ofi -bzM -cso +jDl +kcA cpy cpy cpy cpy -lIm -lIm -arj -gDN -gDN -gDN -qoe -nAK -lIm +kRI +kRI +wYD +oPv +oPv +oPv +wxK +jsU +kRI cpy bMX "} @@ -63119,51 +63119,51 @@ cpy cpy cpy tiQ -atu -atu -atu -atu -atu +pUs +pUs +pUs +pUs +pUs cNV saC saC saC tiQ -ucJ -qRM -wut -qRM -tEl +aSW +jVp +uGh +jVp +kma tiQ tiQ saC saC saC tiQ -tLx -hTz -qpu -bUz -vab -roc +mSF +sal +bff +vBe +cuS +mHB hDy -jvR -mmP -rPf -jht -jht -jht -bah -bah -jht -exA -eIO -hbU -idK -lqK +dAO +uLD +qez +cNW +cNW +cNW +sZm +sZm +cNW +rHI +aUE +jJA +mYC +aoC lUK -pCE -eTa +xiX +uuw tfP tfP tfP @@ -63183,7 +63183,7 @@ eaE eFT tfP bIJ -gVF +bop pjJ yim tfP @@ -63191,94 +63191,94 @@ tfP ien sjY clY -kwh +fgp xtb -wgs -sFo -eDR +xQW +xjQ +mZp moO -eDR -eDR -dlo +mZp +mZp +btA xtb -knF -mvv -cxc -epJ -epJ -epJ -bXy +mZa +nwI +gnl +jeK +jeK +jeK +cVp xtb -jCj -fqA -gGi -gGi -gGi -gGi -jCj +ndm +rvU +nlF +nlF +nlF +nlF +ndm nLm -iAH -aSz -evQ -eHK -vxi -taR -vxi -vxi -vxi -vxi -vxi -vcb -eHK -uRG -cOi -bnE +pxI +qln +mnZ +fbl +sJw +wjt +sJw +sJw +sJw +sJw +sJw +uzc +fbl +nSS +cZt +pav nLm -hma -umO +rfh +qes dNm tUM -kHM -eRa +eeD +knP nLm -taR -taR -vxi +wjt +wjt +sJw dNm fjP -vxi -taR -taR -vxi -taR -vxi -evQ +sJw +wjt +wjt +sJw +wjt +sJw +mnZ pJW -mkG -cSs +qPV +hHW nLm -iKj +mXw vXc puY yiM wsY yiM -cfL +pRt gbB mBF mBF -iZs -uOz -aJh -aJh -joS -aJh -ybo +eeE +nTi +jyo +jyo +fCD +jyo +lmG mBF mBF mBF fnA -pGI +whB max max ofi @@ -63326,14 +63326,14 @@ cpy cpy cpy cpy -lIm -esK -gDN -gDN -gDN -klZ -owP -lIm +kRI +qDF +oPv +oPv +oPv +fZD +lin +kRI cpy bMX "} @@ -63346,71 +63346,71 @@ cpy cpy cpy tiQ -atu -rEY -atu -rEY -atu +pUs +aXV +pUs +aXV +pUs cNV saC saC saC saC -qbz -qbz -qbz -qbz -gzV -qbz +rYs +rYs +rYs +rYs +rZt +rYs saC saC saC saC tiQ -tSs +tHa gYT -obp -lkJ -pZN -roc +bhA +uWu +tnj +mHB hDy -mou -mmP -dhm -jht -jht -jht -jht -nUQ -qIk -urm -mRI -mRI +uuI +uLD +rdL +cNW +cNW +cNW +cNW +nrm +cPg +rgJ +pgK +pgK lqb -lqK +aoC wgn -pim -eTa +jKp +uuw tfP tfP tfP bIJ bIJ tfP -fbH -fbH +wza +wza eUf fLz -fbH -tDA -fbH -fvc -hiQ -fbH +wza +rip +wza +toy +ayQ +wza tfP bIJ bIJ -gVF +bop pjJ lCH tfP @@ -63418,23 +63418,23 @@ ien ien ien sjY -nMQ -fMU -ilP -oYy -sFo -cRt -sFo -oYy -hya -fMU -knF -qgb -dMa -epJ -epJ -epJ -bXy +oUi +qxx +qzM +jPX +xjQ +biJ +xjQ +jPX +kdF +qxx +mZa +jGA +bEJ +jeK +jeK +jeK +cVp xtb nTv oTc @@ -63444,45 +63444,45 @@ iIw ovT nTv nLm -hOo -aFB -evQ -eHK -iAH -iAH -xoD -dSm -dSm -vsv -xoD -evQ -eHK -iAH -cKM -fyE +nLk +tZT +mnZ +fbl +pxI +pxI +uFb +xIG +xIG +sKt +uFb +mnZ +fbl +pxI +mHu +igX nLm -kzY -fqF +rSr +iFF dNm tUM -gZk -fUF +hkc +mMi nLm -mjJ -pNm -iAH -eHK -evQ -iAH -vsv -fyE -uBS -iAH -iAH -evQ -eHK -kvD -dSm +heW +tRg +pxI +fbl +mnZ +pxI +sKt +igX +epp +pxI +pxI +mnZ +fbl +lnB +xIG nLm aiQ vXc @@ -63490,23 +63490,23 @@ yiM yiM wsY yiM -bTO +jUs mBF mBF viC cjv ycE -aJh -aJh -pNb -aJh +jyo +jyo +uCZ +jyo mBF mBF -uTf +bHK mBF mBF fnA -uQc +iEv max ofi tZh @@ -63553,14 +63553,14 @@ cpy cpy cpy cpy -lIm -lIm -pJB -gDN -gDN -iXC -gDN -lIm +kRI +kRI +fkE +oPv +oPv +qLl +oPv +kRI cpy bMX "} @@ -63573,51 +63573,51 @@ cpy cpy cpy tiQ -atu +pUs kwJ -xZY +gty kwJ -atu +pUs cNV saC saC saC saC -atu -rEY -rEY -rEY -kyM -atu -rEY +pUs +aXV +aXV +aXV +cOT +pUs +aXV saC saC saC tiQ -rPn -roc -dDv -rcJ -qSn -vbl +mPD +mHB +qlP +oYT +fgX +aGC hDy -gkX -xOf -iIO -mNZ -jht -jht -jht -bai -hAU -ewx -mRI +aIX +xms +wzb +aZa +cNW +cNW +cNW +euW +rLz +bKe +pgK lqb lqb lqb -feM -osu -eTa +jmm +tSf +uuw tfP bcf tfP @@ -63625,19 +63625,19 @@ tfP tfP tfP cpy -gUh +wHM cpy cpy -gBr -gUh -gUh +uND +wHM +wHM tfP pjJ -gUh -gUh -gUh -gUh -xJf +wHM +wHM +wHM +wHM +jXL pjJ lCH tfP @@ -63645,36 +63645,36 @@ tfP ien sjY clY -hMH +hfZ xtb -raf -mhP -ibK -nxw -oYy -oXm -qhG +pmo +gxq +rwl +xnK +jPX +rmP +gJN xtb -rQS -eiB -igO -epJ -epJ -epJ -oVd +dTz +sBO +aaK +jeK +jeK +jeK +aok xtb vGb -wMV -gDI -gDI -nxf -hyN +xos +rfR +rfR +dYc +gmj gIc nLm nLm weR -xkV -nBI +mFY +nzV weR weR nLm @@ -63682,58 +63682,58 @@ nLm weR weR nLm -xkV -nBI +mFY +nzV nLm weR nLm nLm nLm -hRK +rNb xno emb -ifr +mVJ nLm nLm nLm weR nLm -mFC -uIt +fsM +xqI nLm nLm nLm nLm weR nLm -khI -dAa +uVG +sbI weR nLm nLm -xHa +rkP vXc yiM yiM wsY yiM -bTO +jUs rMF -qWy +fZX xYn -nPB +uYu xci -aJh -uOz -pNb -igY +jyo +nTi +uCZ +cQM mBF -xjJ -uOz -hem +mTu +nTi +mts mBF mBF -pGI +whB ofi ofi max @@ -63781,13 +63781,13 @@ cpy cpy cpy cpy -lIm -lIm -jWL -xcA -qaR -lIm -lIm +kRI +kRI +bXd +pms +swq +kRI +kRI cpy bMX "} @@ -63800,51 +63800,51 @@ cpy cpy cpy tiQ -atu +pUs kwJ -atu +pUs kwJ -atu +pUs cNV saC saC saC saC -atu -rEY -rEY -rEY -kyM -atu -rEY +pUs +aXV +aXV +aXV +cOT +pUs +aXV saC saC saC tiQ tiQ -teV -cNv -uDH -qSn -oNX +psN +uYh +vCD +fgX +eeI hDy -tCY -ntw -psk -mNZ -jht -jht -jht -bai -piI +jEU +hIk +hET +aZa +cNW +cNW +cNW +euW +jdp bzC bzC bzC bzC nDM gWI -gUh -mtk +wHM +jWl tfP tfP tfP @@ -63872,95 +63872,95 @@ tfP ien sjY clY -hMH +hfZ xtb xtb xtb -fMU -xtr -fMU +qxx +upC +qxx xtb xtb xtb xtb xtb -aQP -epJ -epJ -epJ -nNY +eDa +jeK +jeK +jeK +rqF xtb -vyS +qdK jXQ iKF iKF iKF iKF -rpr +cnk nLm -wsh +uOF hfU uOs trj inB lep -myY +wQN nLm -wwI -qOV -nVZ +eUI +aZf +uwW sPk -dZV -amX +kXO +eAT hGX -rWU +xuF nLm -hma -jih +rfh +xkb dNm tUM -jqT -tWr +fNP +dJS nLm -eHh +uhj xXN tpZ vdf vqm wNl wNl -dTQ +tbG nLm -nSj +qCK adk xLg smi mNX -pAc +qMn nLm -xHa +rkP yiM yiM yiM wsY yiM -bTO +jUs rMF -qWy +fZX viR fdn dHy -aJh +jyo xQj jmE xQj mBF mBF -oQE +wNt mBF mBF fnA -pGI +whB ofi max max @@ -63991,10 +63991,10 @@ max iiV iKY bZK -rFa -rFa -rFa -rFa +weg +weg +weg +weg bZK jTH fgv @@ -64009,12 +64009,12 @@ cpy cpy cpy cpy -lIm -gDN -gDN -gDN -hqV -lIm +kRI +oPv +oPv +oPv +vqK +kRI cpy bMX "} @@ -64029,7 +64029,7 @@ cpy tiQ cNV kwJ -atu +pUs kwJ cNV cNV @@ -64038,38 +64038,38 @@ saC saC saC saC -hrG -hrG -hrG -lzF +wkF +wkF +wkF +wAn saC saC saC saC saC tiQ -bgw -ojq -dDv -uDH -qSn -mRN +ezV +wdE +qlP +vCD +fgX +hBX hDy iMC rBz npD -jht -jht -jht -cyh -cFp -fWI -kTT -ecl +cNW +cNW +cNW +nvK +xnM +nSB +nIL +mMO bzC nDM nDM -gVF +bop pjJ yim tfP @@ -64099,95 +64099,95 @@ ien ien ien clY -hMH +hfZ xtb xtb xtb -khb -iRv -dkK -sMu -xrd -xrd -xrd +cEh +oJz +usQ +nWr +qeX +qeX +qeX xtb -jnN -epJ -epJ -dMa -bXy +mTj +jeK +jeK +bEJ +cVp xtb -vyS +qdK fjr fjr fjr fjr fjr -pyX +vDd nLm -wsh -ozu -aSj -osS +uOF +xVZ +lTw +sZI xeA uOs -iPm +iJy nLm -kRI -sBc +hPf +yeP nLm vjB fyC npT cve -ntX +xvM nLm -eIJ -fqF +rhZ +iFF eAm oPu -jqT -hoL +fNP +gNa nLm -ikH -oSt -tIm -bnE +tjd +iKe +eNr +pav eAm iqa rox -bnE -cTv -wQv +pav +dFk +bpt ruf -dzI -hVt -bnE -ngy +nNU +pxQ +pav +ngS nLm -xHa +rkP yiM yiM yiM wsY vXc -bTO +jUs mBF mBF mBF mBF -cVP -iSE +khh +pxT hMI pCg nAa -ksW -aOj -uOz -kKJ +lCC +yha +nTi +hAR mBF kmq -pGI +whB max max max @@ -64198,11 +64198,11 @@ max max max xKk -tWe -tWe -tWe -tWe -tWe +eOh +eOh +eOh +eOh +eOh xKk ofi ofi @@ -64218,10 +64218,10 @@ iiV iKY bZK bZK -gMK -uqf -rtQ -mqd +hOM +hhM +aVR +sRg bZK bZK jTH @@ -64236,12 +64236,12 @@ cpy cpy cpy cpy -lIm -lIm -gDN -qdL -lIm -lIm +kRI +kRI +oPv +nIi +kRI +kRI cpy bMX "} @@ -64255,48 +64255,48 @@ cpy cpy tiQ cNV -rEY -atu -rEY +aXV +pUs +aXV cNV cNV saC saC tiQ tiQ -bYA -ocQ -ocQ -ocQ -dDg +loF +mmZ +mmZ +mmZ +qAq ixD saC tiQ tiQ saC tiQ -uPe +csD gYT -dDv -uDH -pZN -roc +qlP +vCD +tnj +mHB hDy itz iMv tCh -jht -jht -xSB +cNW +cNW +crN kky jTx -paI +pGy kSC -jZx +efE bzC nDM pRh -gVF +bop pjJ lCH tfP @@ -64326,39 +64326,39 @@ tfP ien clY clY -hMH +hfZ xtb -oSn -fSk -igO -dMa -dMa -owx -dMa -dMa -jXV +pbS +bEP +aaK +bEJ +bEJ +aIU +bEJ +bEJ +gUE xtb -tKw -dMa -epJ -dMa -uxq +oPn +bEJ +jeK +bEJ +hMf xtb xXR -hfN -hfN -hfN -fSG +pLd +pLd +pLd +oww fjr -pyX +vDd nLm nLm -hgh +fFy nLm -jjw +xWI tUM tUM -xBp +fqY nLm nLm weR @@ -64367,54 +64367,54 @@ fjP pOd qvM uOs -bnE +pav nLm -mIX -uOW +eEO +sEF pJW rWu -jqT -toa +fNP +jCr nLm nLm nLm nLm -uBS +epp trj aSE -mpx -snj +eaC +ydq nLm -tIm +eNr dZP -wZb +cSa nLm nLm nLm nLm -xHa +rkP yiM yiM yiM wYa vXc -bTO +jUs rMF -qWy -xCk +fZX +lAg mBF mBF -svu +oAd xQj pCg nAa -xHp -uOz -uOz -kKJ +gOh +nTi +nTi +hAR mBF mBF -pGI +whB ofi tZh ofi @@ -64424,13 +64424,13 @@ max max max max -cOE -iqT -wPM -wPM -iVq -qAe -cOE +uhX +qzi +cKj +cKj +bLn +ewS +uhX max ofi ofi @@ -64444,12 +64444,12 @@ max fni bZK bZK -oRa +jSI wvt wHF wHF txK -dki +fks bZK bZK gol @@ -64464,11 +64464,11 @@ cpy cpy cpy cpy -lIm -gDN -gDN -qdL -lIm +kRI +oPv +oPv +nIi +kRI cpy bMX "} @@ -64483,47 +64483,47 @@ cpy tiQ cNV kwJ -atu +pUs kwJ cNV cNV unt -jiH -svM -atu -hSv -rEY -atu -atu -kyM -oDY +lbW +tJh +pUs +tuR +aXV +pUs +pUs +cOT +ggw saC saC -qbz -eML +rYs +xKV tiQ -rhw -ojq -dDv -uDH -bPc -roc +rPV +wdE +qlP +vCD +vHb +mHB hDy eCO xVG vda -gpe -fRa +eII +gth jTx kll -bwS -bai -hCn -ecl +wzo +euW +hVV +mMO bzC nDM nDM -gVF +bop pjJ lCH pjJ @@ -64553,111 +64553,111 @@ tfP ien clY clY -hMH +hfZ xtb -aYf -epJ -epJ -epJ -dMa -aFQ -dMa -fRj -lhN -fMU -cOn -dMa -lwd -epJ -kul +rnb +jeK +jeK +jeK +bEJ +xJh +bEJ +gPL +rgl +qxx +cvX +bEJ +khI +jeK +iXD xtb xtb xtb xtb xtb -xvN +dln fjr -pyX +vDd nLm -rNY -wrd +kIk +txl nLm -mNO +tQh sPk sPk -pPS +xCr nLm -fwZ +hVE xXN dZP fjP fjP fjP fjP -bnE +pav nLm nLm -ohE +mJp pJW tUM -hSj +wAc nLm nLm -rNY -uAG +kIk +akq nLm -bsT +aOq eAm qBE crP -bnE +pav nLm -qOx +jIq xXN -jjw +xWI nLm -vTN -wGl +kSp +xWR nLm -pNE +kUv yiM yiM vXc wYa vXc -bTO +jUs rMF -qWy -mxM +fZX +uyr vyD -qWy -nXn +fZX +qSs xQj pCg lpq -dIE -uOz -uOz -wpp +hHw +nTi +nTi +aAk mBF mBF fnA -jwZ -jwZ -jwZ -jwZ -jwZ -jwZ -uQc +yei +yei +yei +yei +yei +yei +iEv max max -cOE -lmf -nAU -nAU -wfm -nmV -cOE +uhX +ena +oFR +oFR +rsd +kad +uhX max ofi ofi @@ -64670,14 +64670,14 @@ max max fni bZK -pYK +nFq wvt wHF -gZG -bab +sIP +enc wHF wjI -wVv +vuN bZK gol max @@ -64691,11 +64691,11 @@ cpy cpy cpy cpy -lIm -sZr -gDN -jac -lIm +kRI +jWj +oPv +hFB +kRI cpy bMX "} @@ -64708,49 +64708,49 @@ cpy cpy cpy tiQ -atu +pUs kwJ -atu +pUs kwJ -xZY +gty cNV -atu -bjz -qbz -atu -hSv -atu +pUs +qVU +rYs +pUs +tuR +pUs kwJ kwJ -oxK -oDY -atu -qbz -qbz -ssz +gAy +ggw +pUs +rYs +rYs +jen tiQ tiQ tiQ -pyH -ece +hrN +dAZ hDy hDy hDy hDy -ecl -mmP -jht -jht +mMO +uLD +cNW +cNW jUe -uFg -jht -bai -aCZ +gCy +cNW +euW +mmR bzC bzC bzC nDM -gVF +bop vjW lCH pjJ @@ -64780,111 +64780,111 @@ ien ien ien clY -hMH +hfZ xtb -smC -lyo -fza -fza -fza -wOv -dMa -dMa -lhN -fMU -dSU -dMa +dpY +nwX +bJV +bJV +bJV +fWX +bEJ +bEJ +rgl +qxx +oLx +bEJ jLF -dMa -xGl +bEJ +kCj xtb -ecN -sOD -nEy +glT +eaY +oop xtb -vyS +qdK fjr -pyX +vDd nLm -qob -nST +dOv +lrA nLm -mzf -iAH -fJB -rhQ +xkq +pxI +rko +als nLm -ikH -tkp -wjn -iAH -bnE -wZO -wZO -wZO -cTv -rfF -tPj +tjd +qXy +qrE +pxI +pav +vNn +vNn +vNn +dFk +jES +jtN eAm uar -wKX -gwv +iJH +xsa nLm -hLG -sAG -nVZ -scj -qaZ -fvC -sVX -vsv +oIS +aGz +uwW +pre +mAj +qbK +jrA +sKt nLm -wsh -iAH -eIa -sgr -ePV -nST +uOF +pxI +xYR +pNQ +qRZ +lrA nLm -xHa +rkP yiM yiM gAa uLF vXc -bTO +jUs mBF mBF -rJp +erH vzn mBF -kbk -uOz -moj -fjW -tnz -uOz -aJh -rra -qWy +rts +nTi +tIK +sLr +jch +nTi +jyo +poJ +fZX fnA fnA fnA tSL -cYk -cYk -cYk +saf +saf +saf tSL fnA -uQc +iEv max -cOE -spu -jBV -jBV -gIj -ctD -cOE +uhX +iUr +nUJ +nUJ +qVO +hih +uhX max ofi ofi @@ -64897,14 +64897,14 @@ max max fni bZK -hDw +hvb wvt wHF wHF fPa wHF nvS -wgp +crO bZK gol max @@ -64915,14 +64915,14 @@ max max max max -xfv -lIm -lIm -lIm -tOQ -klZ -nAK -lIm +xUt +kRI +kRI +kRI +iUB +fZD +jsU +kRI cpy bMX "} @@ -64935,49 +64935,49 @@ cpy cpy cpy tiQ -atu +pUs kwJ -atu +pUs kwJ -atu +pUs cNV -atu -cJT -ayf -atu -hSv -atu +pUs +paP +prF +pUs +tuR +pUs kwJ kwJ -oxK -oDY -atu -qbz -qbz -cAR -tiQ -dDw -ojq -dDv -hbi -siG -xmJ -roc +gAy +ggw +pUs +rYs +rYs +tqv +tiQ +fzt +wdE +qlP +cJM +eiv +fAW +mHB hDy -dlK -mmP -jht +vuV +uLD +cNW saC saC saC -bah -bai -hCn -ecl +sZm +euW +hVV +mMO bzC nDM nDM -gVF +bop vjW eDS pjJ @@ -65007,37 +65007,37 @@ tfP ien rzq clY -hMH +hfZ xtb rmt qdc raS uIJ rmt -kiz -epJ -dMa -wYp +fcr +jeK +bEJ +kuA xtb -kTg -miK +iVI +mkL pAW -dMa -xGl +bEJ +kCj xtb -igO -bXy -owx +aaK +cVp +aIU xtb -vyS +qdK fjr -pyX +vDd nLm nLm nLm nLm nLm -bUF +lIH nLm nLm nLm @@ -65050,12 +65050,12 @@ nLm nLm nLm nLm -bBq -fqF +jXR +iFF eAm uOs -vDc -iRq +htL +tGc nLm nLm nLm @@ -65068,49 +65068,49 @@ nLm nLm nLm nLm -bUF +lIH nLm nLm nLm nLm -oLI +sWO vXc yiM tiJ mAE vXc -bTO +jUs rMF -gZq -nNe -ixB -gZq -hmx -aJh -pNb -uOz +nHj +oVX +vMv +nHj +jdC +jyo +uCZ +nTi mBF -aRS -xpB -oLj -hRh +iLE +rGq +gWy +tpT fnA fnA tSL tSL -ftj -ftj -jkq +nJL +nJL +xzx tSL tSL -pGI +whB max xKk -cOE -cOE -cOE -cOE -cOE +uhX +uhX +uhX +uhX +uhX xKk max max @@ -65124,14 +65124,14 @@ max max omT bZK -rvJ +bOX wHF wvt -fpP -nFS +nzA +nxv wHF wjI -gDd +kVD bZK czG max @@ -65142,14 +65142,14 @@ max max max max -bzM +jDl fnA -lIm -lIm -cOv -klZ -nAK -lIm +kRI +kRI +utG +fZD +jsU +kRI cpy bMX "} @@ -65162,64 +65162,64 @@ cpy cpy cpy tiQ -atu -rEY -atu -rEY -atu +pUs +aXV +pUs +aXV +pUs cNV -fwd -vFk -qbz -atu -hSv -atu +kYw +jAk +rYs +pUs +tuR +pUs kwJ kwJ -oxK -oDY -atu -qbz -qXE -ljh -tiQ -rdp -igB -kDm +gAy +ggw +pUs +rYs +lPB +ltr +tiQ +tOF +kgo +xmv hka -sHC -vab -roc -iuZ -ecl -mmP -jht +hpx +cuS +mHB +tiG +mMO +uLD +cNW saC saC saC -bah -bai +sZm +euW kQK -ecl +mMO bzC nDM pRh -gVF +bop vjW eDS pjJ pjJ -qzX -ehk -ehk -xMH -ehk -ehk -ehk -ehk -ehk -ehk -agK +tTj +nTb +nTb +qId +nTb +nTb +nTb +nTb +nTb +nTb +gtC pjJ pjJ pjJ @@ -65234,111 +65234,111 @@ tfP ien puV clY -hMH -fMU +hfZ +qxx qBe mqk hLo sTA rwR -kiz -tdf -epJ -igO +fcr +tug +jeK +aaK xtb -vFq -tdf +sOG +tug pAW -dMa -vFY +bEJ +bQU xtb -vTB -gZA +aQa +iJq jLF xtb -vyS +qdK fjr -pyX +vDd nLm -aYN -moh -oCj -skd -iAH -arc -gXq +kfN +nVE +cJS +aMM +pxI +kLb +jJs nLm -voU +eXb nLm -voU +eXb nLm nLm -voU +eXb nLm -voU +eXb nLm -tgy -dWy +eEt +nlo pJW tUM -vDc -wsL +htL +iIy nLm -ioQ +tZa nLm -ioQ +tZa nLm -ioQ +tZa nLm -ioQ +tZa nLm -acV -tml -tml -iAH -aqZ -vRr -vRr +qxr +qpV +qpV +pxI +ldr +aZU +aZU nLm -ccz +dyg vXc vXc yiM tDd rXb -hce +spN qGf -ewA -aEn -nXp -ewA +viK +qkv +aca +viK rAf rAf toF -oeY -xUt -vkP -gjC -igC +mDi +wfr +uNy +fFR +eRW mBF mBF -rQF +hPD tSL -fzz -vRk -xVW -iAh -vds +cdR +sjH +cDd +ykd +iZh tSL -pGI +whB max -cOE -iqT -wPM -wPM -iVq -qAe -cOE +uhX +qzi +cKj +cKj +bLn +ewS +uhX max ofi ofi @@ -65350,16 +65350,16 @@ cpy max max yjT -laM -gdT +uaB +jWG wvt -nFS -uKp -qKz -aiL +nxv +bDG +tnn +qXF aGQ -vpy -cmg +suA +nUy wzH max cpy @@ -65370,13 +65370,13 @@ max max max max -xfv -lIm -qwv -lMs -gDN -owP -lIm +xUt +kRI +dpw +edI +oPv +lin +kRI cpy bMX "} @@ -65389,53 +65389,53 @@ cpy cpy cpy tiQ -atu -atu -atu -atu -atu +pUs +pUs +pUs +pUs +pUs cNV -bbU -vFk -qbz -atu -hSv -rEY -atu -xZY -kyM -oDY -atu -qbz -qbz -atu -tiQ -kDG -sNz -ePv -gEO -aXw -sTS -fhi -wHm -fcc -xqt -grC -saC -saC -saC -bah -bai -hCn -evt +vBZ +jAk +rYs +pUs +tuR +aXV +pUs +gty +cOT +ggw +pUs +rYs +rYs +pUs +tiQ +lYw +sDu +nEM +eve +caQ +hFI +svB +rtE +oJk +xOE +rJL +saC +saC +saC +sZm +euW +hVV +lQf bzC nDM nDM gWI -ehk -eGD -ehk -ehk +nTb +gDZ +nTb +nTb gWI iAv bZB @@ -65446,7 +65446,7 @@ iAv iAv iAv iAv -gVF +bop pjJ pjJ pjJ @@ -65461,111 +65461,111 @@ ien ien ien clY -hMH -fMU +hfZ +qxx xPA igv hLo tLw aiw -kiz -tdf -dMa -bXy -xVh -wLm -epJ -aFQ -epJ -igO -xVh -bXy +fcr +tug +bEJ +cVp +hwo +jLW +jeK +xJh +jeK +aaK +hwo +cVp gvT jLF -fMU -vyS +qxx +qdK fjr -tkV -msK -qGD +udk +tjk +wPu dmm -pxj +thw vWl fjP guB -vZB +dvB nLm -nrt +hDe nLm -nrt +hDe nLm nLm -nrt +hDe nLm -nrt +hDe nLm nLm -fqF +iFF pJW xXN -tjc +ivw nLm nLm -pPE +gZq nLm -pPE +gZq nLm -pPE +gZq nLm -pPE +gZq nLm -sIb +oym ruf ruf fjP fjP fjP -fwC -umd -qkN +oJo +vmu +kPt sDq faQ yiM sPs vXc -fag +prb mBF mBF -dNV -bQI +lso +vlw mBF spm jaO lYR -kbD +eXM mBF -uOz -jgw +nTi +vcS mBF mBF rMF rMF tSL -eFn +ibv wnM exu -vRk -eKu -vlt -pGI +sjH +xdl +kVC +whB max -cOE -lmf -nAU -nAU -wfm -nmV -cOE +uhX +ena +oFR +oFR +rsd +kad +uhX max ofi ofi @@ -65577,16 +65577,16 @@ ofi tZh tZh yjT -mWl -eVt +bWc +wDd wHF -nFS -ghU -ghU -nFS +nxv +vCC +vCC +nxv ufu -eVt -mWl +wDd +bWc tSb max cpy @@ -65597,13 +65597,13 @@ max max max max -xfv -lIm -iRo -nRE -gDN -gDN -lIm +xUt +kRI +wmw +vFR +oPv +oPv +kRI cpy bMX "} @@ -65617,43 +65617,43 @@ cpy cpy tiQ cNV -fje -fje -fje +dWW +dWW +dWW cNV cNV -dsm -qXE -qbz -atu -hSv -rEY -rEY -saC -qKn -iao -atu -qbz -qbz -atu -tiQ -hKQ -nYj -laI -tOC -tOC -vIw -roc +svk +lPB +rYs +pUs +tuR +aXV +aXV +saC +iDJ +gsO +pUs +rYs +rYs +pUs +tiQ +eBG +iSl +kzS +rLr +rLr +eBY +mHB hDy -qIP -nxR -uFb +oNP +amI +foA saC saC saC -oOt -xZa -vLn +xgG +rDB +jJQ bzC bzC bzC @@ -65673,7 +65673,7 @@ saC saC saC iAv -gVF +bop pjJ pjJ tfP @@ -65688,111 +65688,111 @@ tfP ien clY clY -oOJ +iyu xtb xPA bID rSd bNf aiw -gYJ -slS -cMP -eZC -kUK -eZC -agp -eCC -agp -eZC -kUK -eZC +sYY +oGQ +jPJ +lQx +vcl +lQx +bqP +sdP +bqP +lQx +vcl +lQx jxz jLX -sAQ -pkF +mzm +pUj iKF -wnA -hDF -tYD +qPI +krA +cmK dnM nqo xTJ fjP fjP -sOJ -umd -rwD +mtB +vmu +lUb wLU aFN mPB aFN aFN wLU -kBO -umd -btI -afM +qcB +vmu +pXM +eCa gGW qSw -kHM -rLL +eeD +vrN nLm -ima +vGS nLm -ima +vGS nLm -ima +vGS nLm -ima +vGS nLm -exY +mhN fjP xXN uOs uar fjP -lIS -umd -dVZ +blV +vmu +ykF hgr fRP vTn cmF qHI -gBq +faz ums mBF mBF mBF mBF mBF -qWy -qWy +fZX +fZX mBF mBF -jkx +xqf mBF mBF rMF rMF rMF tSL -fyS +aqs kzT xgX -vRk -eKu -vlt -pGI +sjH +xdl +kVC +whB max -cOE -spu -jBV -jBV -gIj -ctD -cOE +uhX +iUr +nUJ +nUJ +qVO +hih +uhX max ofi ofi @@ -65805,14 +65805,14 @@ tZh tZh yjT bZK -lUo +nuq wHF wHF -nFS -fpP +nxv +nzA wvt wvt -oLS +cNX bZK tSb max @@ -65824,13 +65824,13 @@ max max max max -xfv -aJl -fZz -nRE -gDN -lIm -lIm +xUt +ogq +yji +vFR +oPv +kRI +kRI cpy bMX "} @@ -65843,64 +65843,64 @@ cpy cpy cpy tiQ -atu -atu -atu -atu -atu +pUs +pUs +pUs +pUs +pUs cNV -dsm -qbz -qbz -atu -hSv -ceA -saC -saC -saC -ron -kcB -qbz -qbz -atu -tiQ -aFL -roc -qpu -roc -roc -pjO +svk +rYs +rYs +pUs +tuR +cvL +saC +saC +saC +aDo +avd +rYs +rYs +pUs +tiQ +ydc +mHB +bff +mHB +mHB +ktS hDy hDy -ecl -mmP +mMO +uLD jiY saC saC saC -jht -bai -hCn -evt +cNW +euW +hVV +lQf bzC iAv jUY -uMK -uMK -kRK +edM +edM +kEq iAv iAv iAv xzn xzn -uMA -uMA +npk +npk saC saC tjR tjR -lnE -gVF +vcA +bop oeX tfP tfP @@ -65915,40 +65915,40 @@ uSY ien clY clY -oOJ +iyu xtb xPA hLo hLo hLo aiw -fWy -tdf -epJ -igO +pCL +tug +jeK +aaK xtb -lGk -lBv +cCR +vBt xtb -lGk -lBv +cCR +vBt xtb -igO -epJ +aaK +jeK wmk xtb -vyS +qdK fjr -pyX -msK -wBT +vDd +tjk +niX qjC tCs mbH dnM sPk aWl -xOR +nSc vra bFn xrH @@ -65956,39 +65956,39 @@ xrH cDH xrH xrH -hYW -src -lIE +gIf +ndQ +bZH sPk qDR dnM sPk -lIE -qFm -hUp +bZH +hTU +qyN oFr lOi xrH nEX amP lOi -iEN +aLP sPk dnM wDZ -amX +eAT mum rGE -nDQ -umd -wFk +oRa +vmu +qDc mpN vXc grq grq kqJ mAR -ias +sZF jrd mBF ums @@ -66005,20 +66005,20 @@ rMF rMF tSL tSL -vQZ +jpt kzT -bzQ -vRk -vQZ -vlt -pGI +qzT +sjH +jpt +kVC +whB max xKk -cOE -cOE -cOE -cOE -cOE +uhX +uhX +uhX +uhX +uhX xKk max ofi @@ -66032,14 +66032,14 @@ ofi ofi yjT bZK -vPP +bWJ wvt wHF wHF qJT wvt wHF -oFJ +mMJ bZK tSb max @@ -66051,13 +66051,13 @@ ofi max max max -xfv -lIm -xSs -rob -gDN -ocs -lIm +xUt +kRI +kJf +rTq +oPv +vXO +kRI cpy bMX "} @@ -66070,64 +66070,64 @@ cpy cpy cpy tiQ -atu -atu -atu +pUs +pUs +pUs kwJ -atu +pUs cNV -dsm -hrG -hrG -pCK -cla +svk +wkF +wkF +xub +kvn saC saC saC saC saC -ptQ -pCK -pCK +wWB +xub +xub hDy hDy hDy hDy -pyH -ece +hrN +dAZ hDy hDy hDy -ecl -ecl -mmP +mMO +mMO +uLD ipB -jht +cNW saC -jht -jht -ucZ -oDt -ecl +cNW +cNW +jaX +lcZ +mMO bzC iAv iAv -rVu -rVu -esO +hCo +hCo +hAP iAv iAv mWw nmK -uMA -uMA +npk +npk xzn xzn fLS xzn hHd -lnE -gVF +vcA +bop ylC qyG qyG @@ -66142,17 +66142,17 @@ ien ien ien clY -hMH -fMU +hfZ +qxx xPA hLo hLo hLo aiw -iRv -tdf -epJ -dMP +oJz +tug +jeK +dQj xtb xtb xtb @@ -66160,22 +66160,22 @@ xtb xtb xtb xtb -upA -bXy -epJ +uZK +cVp +jeK xtb -vyS +qdK fjr -pyX -iwv -pXW +vDd +qzo +vHh jFc nhs qcy tUM nBv vxM -khI +uVG bkl aFN txY @@ -66183,32 +66183,32 @@ pbp txY pbp aFN -mjB -khI -vcb +ryp +uVG +uzc oPu trj uOs uOs -vKt -khI -sIU +hDi +uVG +vOs ruS txY pbp pbp sMV ruS -khI +uVG uOs fjP hxt tUM eAm rGE -dSm -umd -xHa +xIG +vmu +rkP tVv qgj tvq @@ -66216,29 +66216,29 @@ ftl yiM rwB gBe -bTO +jUs vjP rMF rMF -oYh +mZH rMF rMF -oYh +mZH rMF rMF -ugK +mfl rMF tSL tSL tSL -bNl -sdz +cOD +eDJ wnM kzT -iAh -bcC -vlt -pGI +ykd +dkR +kVC +whB ofi max max @@ -66259,14 +66259,14 @@ ofi ofi yjT bZK -eqd +hQv wvt wvt -bab -bab +enc +enc wvt wvt -bOH +niB bZK juY mse @@ -66277,14 +66277,14 @@ aYO ofi ofi max -ksF +eGo fnA -lIm -lIm -lFZ -klZ -lIm -lIm +kRI +kRI +wWL +fZD +kRI +kRI cpy bMX "} @@ -66297,64 +66297,64 @@ cpy cpy tiQ tiQ -atu -atu -bYA -uKt -atu +pUs +pUs +loF +jBe +pUs cNV -dsm -qbz -qbz -atu -hSv +svk +rYs +rYs +pUs +tuR saC saC saC saC saC -dDg -ocQ -uKt -ecl -upH -rWi -ecl -hCn -ecl -ecl -ecl -qVg -ecl -xRd -ueG -jQu -jht -jht -iFw -jht -jht -hrr -mRI +qAq +mmZ +jBe +mMO +wvh +oLQ +mMO +hVV +mMO +mMO +mMO +lbf +mMO +wab +oEi +sSe +cNW +cNW +iZd +cNW +cNW +eyA +pgK bzC iAv iAv -pAs -pAs -ggm +fdr +fdr +oxr iAv iAv saC eYA akp hHd -vom -wOz +ijH +onq xzn xzn hHd -lnE -gVF +vcA +bop yim tfP tfP @@ -66369,7 +66369,7 @@ pjJ ien esw clY -hMH +hfZ xtb qBc jZo @@ -66377,65 +66377,65 @@ rbb jZo rwK hzk -pIF -epJ -aZz +jgz +jeK +jPB xtb -aUw -vgD +lwx +iXw xtb -aUw -vgD +lwx +iXw xtb -jxp -oCb -bXy +sXA +xnf +cVp xtb -vyS +qdK fjr -pyX +vDd nLm -upN -bnE +hvB +pav gdt uOs grw uOs -etR -umd -wfg +nkV +vmu +aAs jnk jnk mPR nbx nbx aFN -kBO -umd -jdk -cqc +qcB +vmu +dnc +eXC trj gVg -rYd -aGG -umd -rwD +eUv +ntd +vmu +lUb ruS aFN mQq aFN sMV -neH -umd -lIS +pjE +vmu +blV fjP tUM uOs vzp -dSm -ejb +xIG +wVw nLm -wad +ucQ ofy sPs grq @@ -66443,7 +66443,7 @@ grq yiM xly wYa -bTO +jUs rMF tSL qKr @@ -66456,16 +66456,16 @@ tSL tSL tSL tSL -tmg -fkk -vRk +eyj +uhi +sjH wnM wnM kzT -iAh -hLU +ykd +wWZ tSL -pGI +whB tZh ofi max @@ -66487,12 +66487,12 @@ ofi yjT bZK bZK -lky +bxf wvt wHF wHF wHF -gdT +jWG bZK bZK gol @@ -66504,14 +66504,14 @@ erA ofi ofi ofi -xfv -lIm -lIm -lIm -eOi -klZ -gDN -lIm +xUt +kRI +kRI +kRI +nuW +fZD +oPv +kRI cpy bMX "} @@ -66523,65 +66523,65 @@ cpy cpy tiQ tiQ -atu -atu -bYA -eMG -oDY -atu +pUs +pUs +loF +owN +ggw +pUs cNV -dsm -qbz -qbz -atu -hSv -rEY -saC -saC -saC -saC -kyM -rEY -oDY -ecl -idK -hfM -oHL -vfm -tRO -tRO -bQw -luQ -lBM -mxE -nkM -oZz -nkM -nkM -nkM +svk +rYs +rYs +pUs +tuR +aXV +saC +saC +saC +saC +cOT +aXV +ggw +mMO +mYC +pfb +qKf +xDk +hdv +hdv +nov +iQW +rFb +wOl +uCl +tiN +uCl +uCl +uCl krw -eLk -jGn +wvb +oQT saC bzC iAv -wJe -kic -kic -oBz -nYD +meU +eaz +eaz +ggq +hiv iAv saC saC saC hHd -vom -vom +ijH +ijH xzn hHd xzn -jlD -gVF +vaW +bop yim tfP cpy @@ -66596,103 +66596,103 @@ pjJ ien dWc clY -hMH -fMU +hfZ +qxx xPA hLo hLo hLo aiw -fWy -dMa -dMa -aZz +pCL +bEJ +bEJ +jPB xtb -aUw -vgD +lwx +iXw xtb -aUw -bsr +lwx +lEC xtb xtb -fMU +qxx xtb xtb -vyS +qdK fjr -pyX +vDd nLm nLm -uBS -gOa +epp +hxr uOs fjP fjP -qGb +cWM nLm -ybJ -eMF -eMF +cSV +kPd +kPd nwj -eRo -eMF -eqQ -vtq +xCA +kPd +vzI +mzF nLm -fSa -fyE -oxB -vcb -fyE -rLL +wRu +igX +xcj +uzc +igX +vrN nLm -hVQ -qvm -ots +lpB +dOE +ryE nwj -vtq -wfg -hwI +mzF +aAs +ifD nLm -xxA +gxT lsD fjP fjP -faE -nDQ +ePQ +oRa nLm nLm -oLI +sWO vXc jrL qig yiM yiM twT -rkA +bqb rMF tSL tSL -cYk +saf tSL tSL -emd +wXu tSL -tqC -srD -kFJ +fEa +urJ +yma tSL -vds -vRk -vds +iZh +sjH +iZh wnM wnM tSL phn kzT -vRk -hjg -pGI +sjH +rVm +whB ofi ofi tZh @@ -66701,44 +66701,44 @@ max max max max -ksF -jwZ -jwZ -jwZ -jwZ -jwZ -jwZ -uQc +eGo +yei +yei +yei +yei +yei +yei +iEv ofi ofi hov sOB bZK bZK -rph -ohp -stt -xAG +gfz +jiV +peR +quC anG bZK vVd lUV max -ksF -jwZ -jwZ -qPM -jwZ -jwZ -jwZ +eGo +yei +yei +tuY +yei +yei +yei fnA cpy cpy -lIm -gDN -klZ -jac -lIm +kRI +oPv +fZD +hFB +kRI cpy bMX "} @@ -66749,66 +66749,66 @@ cpy cpy cpy tiQ -jpH -atu -bYA -fis -vuJ -oMg -atu +xVv +pUs +loF +aNf +wrR +xRF +pUs cNV -dsm -iaF -qbz -atu -hSv -rEY +svk +oOr +rYs +pUs +tuR +aXV saC saC saC saC -uxy -dqj -ckg -fcc -phL -jyW -nkM +fBA +aaB +tpj +oJk +vFE +ilt +uCl hlf tso tso -dfy -oOt -jht -jht -jht -vdO -jht -jht -jht -jht -bah +aiz +xgG +cNW +cNW +cNW +tuf +cNW +cNW +cNW +cNW +sZm saC saC bzC iAv -iTR -aqx -qxz -ssZ -nYD +iyB +ipJ +uAg +wMr +hiv iAv saC saC jPC xzn -wOz -wOz +onq +onq xzn xzn vZP -jlD -gVF +vaW +bop yim tfP cpy @@ -66823,149 +66823,149 @@ ien ien ien clY -hMH +hfZ xtb xPA hLo hLo hLo aiw -kiz -tdf -dMa -aZz +fcr +tug +bEJ +jPB xtb -uCa -bsr +cFB +lEC xtb -uCa -xmE +cFB +xzU xtb xAO xAO xAO xtb -vyS +qdK ugV -bKG +jIh yjm nLm nLm -xoD -bnE +uFb +pav rGE -iJt -jzx +qxy +szm nLm nwj -tBA -tBA +biV +biV nwj -tBA -tBA +biV +biV nwj nwj nLm nLm nLm -mFC -fFv +fsM +pUu nLm nLm nLm nwj -tBA -tBA +biV +biV nwj -tBA -tBA +biV +biV nwj nLm -yeq -rhQ +tUO +als cve -bnE -rWU +pav +xuF nLm nLm rMF -gQC +sPl yiM yiM sPw yiM vXc vXc -lhr +dzh tSL tSL -kUS -qEs -qEs -kYt -iAh -aWD -vRk -iAh -wJS -vlt -eKu -vRk -eKu +wNw +dwS +dwS +efp +ykd +eSz +sjH +ykd +kaA +kVC +xdl +sjH +xdl wnM kzT yfH xDl -vRk -bsF +sjH +qoO tSL fnA -jwZ -jwZ -uQc +yei +yei +iEv max max max max -ksF +eGo fnA wIr wIr -rkp -fJR +jeE +kRT wIr wIr kmq -uQc +iEv ofi ofi hov sOB bZK -rFa -rFa -rFa -rFa +weg +weg +weg +weg bZK vVd nGB max -ksF +eGo kmq wIr -rkp -hfW -rkp -rkp +jeE +vDS +jeE +jeE wIr cpy cpy cpy -lIm -gDN -ayl -nAK -lIm +kRI +oPv +xLI +jsU +kRI cpy bMX "} @@ -66976,54 +66976,54 @@ cpy cpy cpy tiQ -oxK -bYA -fis -rEY -oDY -atu -atu +gAy +loF +aNf +aXV +ggw +pUs +pUs cNV -dsm -iaF -qbz -atu -hSv -rEY +svk +oOr +rYs +pUs +tuR +aXV saC saC saC saC -kyM -dHp -oDY -ecl -idK -acF -eIO -kmh -eIO -eIO -eIO -gJO -qIk -dUh -jht -jQu -jht -jht -jht -bah +cOT +lMR +ggw +mMO +mYC +dkj +aUE +bnc +aUE +aUE +aUE +pIt +cPg +vFh +cNW +sSe +cNW +cNW +cNW +sZm saC saC saC bzC iAv -haz -vWX -qTD -wug -rvm +fGd +lOF +ajO +knf +aah iAv saC lqd @@ -67034,8 +67034,8 @@ hHd hHd xzn xzn -jlD -gVF +vaW +bop yim tfP cpy @@ -67050,149 +67050,149 @@ pjJ ien nBs clY -hMH +hfZ xtb xPA wiz rwx tyy aiw -kiz -tdf -epJ -oNG +fcr +tug +jeK +vDf xtb -rnW -rnW +uNw +uNw xtb -rnW -rnW +uNw +uNw xtb xAO xAO xAO -fMU -hgD +qxx +nUf ugV hNR -lVd +nwE yjm nLm nLm -upN -sQW -mWB +hvB +rjs +wfH nLm nLm ahP -gDI -gDI -gDI -gDI -nGH -fUm -agG -uRm +rfR +rfR +rfR +rfR +tjy +ttR +gjb +grf pQE -jyc -pLe -pDQ -ted +txM +hEi +rgj +anj pQE -rHo +xBF rMF -vly -vly -vly -vly -vly +rLu +rLu +rLu +rLu +rLu rMF nLm nLm -nDQ -sVS -snj +oRa +aDT +ydq nLm nLm rMF -gQC +sPl vXc bMN yiM yiM pWR rXb -wNw +pba oXp tSL -uYN -cmM -iAh -edZ -iAh -vRk -vRk +vuG +cUQ +ykd +fVH +ykd +sjH +sjH rtk -edZ -ftj -vlt -eKu -vRk -eKu +fVH +nJL +kVC +xdl +sjH +xdl kzT xSm yfH xDp -vRk -rUO +sjH +jkg tSL fnA fnA tSL kmq -uQc +iEv max max -ksF +eGo kmq wIr wIr -xSj -gae -gae -rtb +kMS +uOM +uOM +xLO wIr wIr dbP -nOq -jwZ -jwZ -oFt -dnz -dnz -dnz -dnz -dnz -qrC -ibI -uOI -qwA +kwG +yei +yei +npR +aKX +aKX +aKX +aKX +aKX +rsx +iDR +dTb +niQ dbP wIr wIr -dcp -dRW -gae -hGZ +wSS +poC +uOM +dTS wIr wIr cpy -lIm -lIm -gDN -gDN -nAK -lIm +kRI +kRI +oPv +oPv +jsU +kRI cpy bMX "} @@ -67203,54 +67203,54 @@ cpy cpy cpy tiQ -oxK -nRe -rEY -rEY -oDY -atu +gAy +qmQ +aXV +aXV +ggw +pUs cNV cNV cNV -nEI -atu -atu -nRe +bwZ +pUs +pUs +qmQ saC saC saC saC -mpt -vyx -utG -oMg -ecl -idK -rWi -ecl -hCn -ecl -ecl +lqD +uEo +vwP +xRF +mMO +mYC +oLQ +mMO +hVV +mMO +mMO saC saC saC -hJK -psw -jQu -jht -jht -jht +sTc +lyp +sSe +cNW +cNW +cNW saC saC saC saC bzC iAv -haz -eyS -qTD -wug -rOk +fGd +fqE +ajO +knf +mhx iAv saC saC @@ -67261,8 +67261,8 @@ hHd xzn xzn xzn -jlD -gVF +vaW +bop yim tfP cpy @@ -67277,71 +67277,71 @@ pjJ ien hmM clY -hMH +hfZ xtb xPA piE hLo tLw aiw -kiz -tdf -dMa -bXy +fcr +tug +bEJ +cVp xtb -heG -yaR +aai +kXt xtb -fMJ -fro +wQL +ktP xtb xAO xAO xAO -fMU -vyS +qxx +qdK ugV hNR ugV -sFY +ftQ yjm nLm -msK -iwv -msK +tjk +qzo +tjk nLm ahP -wcU +vqJ fjr -rCV +xfD fjr fjr bPH dox tGl -pyx -diD -jDW +xSO +lfk +gLW uPy qGK -ted -diD -rHo -xHa +anj +lfk +xBF +rkP vXc vXc mqC pwz dFg -pdG +waC rMF nLm -umd -umd -umd +vmu +vmu +vmu nLm rMF -gQC +sPl vXc vXc upz @@ -67349,10 +67349,10 @@ yiM yiM wsY vXc -bTO +jUs tSL tSL -ihH +hDq wnM qEf eAX @@ -67360,66 +67360,66 @@ suF wnM wnM tuJ -bbb -tDO -vlt -eKu -iAh -eKu +hyd +pRj +kVC +xdl +ykd +xdl kzT rXH yfH nBY -gOd -mih +frn +flN tSL tSL tSL tSL tSL fnA -jwZ -jwZ +yei +yei fnA wIr wIr -chC -gae +owR +uOM fTP qzQ -gae -fHr +uOM +pie wIr wIr -afG -lwS -lwS -lwS -lwS -lwS -lwS -lwS -lwS -lwS -lwS -lwS -iQq +hfI +rPx +rPx +rPx +rPx +rPx +rPx +rPx +rPx +rPx +rPx +rPx +vnu wIr wIr -pCJ -gae +mhU +uOM oqp qzQ -gae -pCJ +uOM +mhU wIr wIr -lIm -wuE -gDN -gDN -lIm -lIm +kRI +xCc +oPv +oPv +kRI +kRI cpy bMX "} @@ -67430,42 +67430,42 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -rEY -oDY -atu -atu -hrG -atu -bYA -ocQ -ocQ -fis +gAy +tuR +aXV +aXV +ggw +pUs +pUs +wkF +pUs +loF +mmZ +mmZ +aNf saC saC saC saC -wzq -pCK -pCK -pCK +pdL +xub +xub +xub hDy hDy hDy hDy -pyH -ece +hrN +dAZ hDy hDy hDy saC saC -mmP -jQu -jht -jht +uLD +sSe +cNW +cNW saC saC saC @@ -67473,11 +67473,11 @@ saC saC bzC iAv -ybm -dpx -qTD -wug -kic +loz +owF +ajO +knf +eaz iAv saC hHd @@ -67488,8 +67488,8 @@ jxI jxI jxI jxI -tqi -qWI +cAv +lkw rOf cpy cpy @@ -67504,40 +67504,40 @@ ien ien ien sjY -hMH -fMU +hfZ +qxx qBe sKz hLo kmE rwR -gcK -luw -rJx -eQS -dYs -eQS -pWO -amD -igO -vFW +ggi +odw +paN +ncw +nQc +ncw +wnh +kdY +aaK +yfb xtb xAO xAO xAO xtb -vyS +qdK ugV hNR ugV ugV -rOd -uDQ -uDQ -gDI -gwJ -gDI -wcU +fTf +dqZ +dqZ +rfR +bRu +rfR +vqJ ugV ugV kGX @@ -67546,28 +67546,28 @@ fjr rZc dox tGl -pyx -diD -ted +xSO +lfk +anj xeg uMO -jDW -diD -rHo -xHa +gLW +lfk +xBF +rkP laX dFH vXc vXc vXc vXc -pdG -vly -vly -vly -vly -vly -gQC +waC +rLu +rLu +rLu +rLu +rLu +sPl vXc vXc vXc @@ -67576,10 +67576,10 @@ vXc yiM wsY yiM -bTO +jUs tSL tSL -sEo +cCs wnM qEf hjW @@ -67587,65 +67587,65 @@ dbG eKL wnM fMN -oMd -tDO -vlt -vQZ -vRk -vQZ +iiz +pRj +kVC +jpt +sjH +jpt kzT pCP yfH xDl -mqp -lBe +hYz +poA tSL -icp -csf -eKu +efJ +rRt +xdl tSL wIr wIr -rcp +nbY wIr wIr -sCY -gae +lkh +uOM fTP oLa oLa qzQ -gae -cVj +uOM +jdg wIr wIr wIr -rcp -rcp -rcp -rcp +nbY +nbY +nbY +nbY wIr wIr -rcp -rcp -rcp -rcp +nbY +nbY +nbY +nbY wIr wIr -pCJ -kka +mhU +fwC fTP xgH oLa qzQ -ygs -pCJ +iQG +mhU wIr wIr -rVF -ayl -gDN -lIm +ueb +xLI +oPv +kRI cpy cpy bMX @@ -67657,41 +67657,41 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -rEY -ehb -uKt -atu -hrG -atu -hSv -rEY -rEY +gAy +tuR +aXV +aXV +nHD +jBe +pUs +wkF +pUs +tuR +aXV +aXV saC saC saC saC -rEY -cxL -atu -qbz -qbz -nPj -tiQ -gvo -roc -qpu -roc -roc -xmJ +aXV +kek +pUs +rYs +rYs +aNM +tiQ +kxH +mHB +bff +mHB +mHB +fAW hDy hDy saC -nxR -uFb -oOt +amI +foA +xgG saC saC saC @@ -67700,23 +67700,23 @@ saC saC bzC iAv -ijw -eyS -qTD -wug -kic +xcC +fqE +ajO +knf +eaz iAv lqd xzn sQN -wOz -wOz -lrW +onq +onq +bMF hHd xzn xzn -lnE -gVF +vcA +bop tfP cpy cpy @@ -67731,33 +67731,33 @@ pjJ ien fkD clY -hMH +hfZ xtb rmt bBt rcP qyS rmt -fWy -dMa -epJ -igO -fMU -igO -dMa -owx -epJ -igO -nDJ +pCL +bEJ +jeK +aaK +qxx +aaK +bEJ +aIU +jeK +aaK +kjw xAO xAO xAO -fMU -vyS +qxx +qdK ugV hNR ugV -pOb +nDo ugV fjr fjr @@ -67766,22 +67766,22 @@ fjr ugV ugV ugV -wft +xQZ ugV ugV fjr rZc dox tGl -pyx -diD -ted +xSO +lfk +anj xeg uMO -jDW -diD -rHo -xHa +gLW +lfk +xBF +rkP rjn bVu vXc @@ -67803,10 +67803,10 @@ vXc vXc wsY yiM -pdG +waC rMF tSL -tYY +waW kzT qEf msn @@ -67814,65 +67814,65 @@ wfl eKL kzT hsh -ikf -vmJ +pjd +oyt tSL -hvL -vRk +lna +sjH gse kzT xDl tSL pJZ drz -lNF +ooN tSL -ftj -tay nJL -jkq +maK +fiF +xzx wIr -lEg -uOu -mGJ +hrt +mrQ +hLv wIr -juo -gae +djZ +uOM oLa -eKu -eKu +xdl +xdl tkf qzQ -gae -aYG +uOM +uEa wIr -lEg -uOu -tqf -uOu -uOu +hrt +mrQ +kgp +mrQ +mrQ wIr wIr -uOu -uOu -tqf -uOu -mGJ +mrQ +mrQ +kgp +mrQ +hLv wIr -upD -swO +uUG +dSQ pOs uNu pKl oLa qzQ -ygs -gub +iQG +fqA wIr -wFi -rIu -gDN -lIm +uVY +iJX +oPv +kRI cpy cpy bMX @@ -67883,42 +67883,42 @@ cpy cpy cpy cpy -aaJ -tvw -bvq -jqX -vaf -tok -qdU -wyc -egr -wyc -bvq -dqj -gpG +lca +lyJ +uyZ +mSj +anJ +vnC +anU +bmV +rXB +bmV +uyZ +aaB +uqm saC saC saC saC -rEY -cxL -atu -qbz -qbz -nPj +aXV +kek +pUs +rYs +rYs +aNM tiQ -sfH -blu -jlq -fua -vab -roc -roc +wfm +bos +cRu +wff +cuS +mHB +mHB hDy -dlK -mmP -jQu -jht +vuV +uLD +sSe +cNW saC saC saC @@ -67927,23 +67927,23 @@ saC saC bzC iAv -wJe -eyS -qTD -wug -haz +meU +fqE +ajO +knf +fGd iAv hHd xzn sQN -wOz -vom -wOz +onq +ijH +onq ufA hHd xzn -lnE -gVF +vcA +bop tfP cpy cpy @@ -67958,35 +67958,35 @@ pjJ ien bHA clY -hMH -fMU -nOh -nOh -oCb -oCb -oCb -ouX -epJ -epJ -xrd -fMU -igO -dMa +hfZ +qxx +vyX +vyX +xnf +xnf +xnf +rzN +jeK +jeK +qeX +qxx +aaK +bEJ rsa -epJ -igO -nDJ +jeK +aaK +kjw xAO xAO xAO -fMU -vyS +qxx +qdK ugV spe -uBs +hcX vwi vwi -gEx +gRS vwi vwi vwi @@ -67995,20 +67995,20 @@ vwi vwi vwi vwi -lqI +pqX nQx rvx fZy hAg -pyx -diD -bQY +xSO +lfk +uWV xeg qGK -jDW -diD -rHo -xHa +gLW +lfk +xBF +rkP qbI qlD qpz @@ -68031,20 +68031,20 @@ tpD tBQ yiM yiM -bTO -jXu -vRk +jUs +gEW +sjH wnM kzT hsh -vnf +nNz eKL qNl kzT wnM -iAh -lkb -iAh +ykd +uoy +ykd wnM wnM wnM @@ -68053,53 +68053,53 @@ kzT kzT kzT kDY -wev -vRk -iAh -iAh -iAh -jSd -osf +vQl +sjH +ykd +ykd +ykd +cAE +sAI tkf -eyt -jSd -gae +qAK +cAE +uOM qzQ oLa -eKu -eKu +xdl +xdl tkf fTP fTP -wdp -jSd -osf +pSS +cAE +sAI oLa oLa oLa tkf -fdg -nSX +kFE +geQ tkf tkf tkf tkf -eyt -jSd -wvP +qAK +cAE +waB oqp oLa pKl pKl tkf qzQ -ygs -tIN +iQG +cjt wIr -qaU -lMU -qoe -lIm +awN +wef +wxK +kRI cpy cpy bMX @@ -68110,42 +68110,42 @@ cpy cpy cpy cpy -aaJ -oxK -hSv -rEY -rEY -oDY -sxq -atu -hrG -atu -xzX -utG -xTe -bFq +lca +gAy +tuR +aXV +aXV +ggw +wQH +pUs +wkF +pUs +brg +vwP +qPa +hQF saC saC saC -rEY -cxL -atu -qbz -qbz -atu +aXV +kek +pUs +rYs +rYs +pUs tiQ xce -tgQ -dDv -uDH -aks -vab -roc -iuZ -ecl -mmP -jQu -eib +csV +qlP +vCD +jHC +cuS +mHB +tiG +mMO +uLD +sSe +pRE saC saC saC @@ -68154,23 +68154,23 @@ saC saC bzC iAv -fcY -eyS -qTD -gdF -haz +soO +fqE +ajO +uuF +fGd iAv xzn -oYI -hmI -oYI -oYI +dEE +xoc +dEE +dEE xzn gBi saC hHd -lnE -gVF +vcA +bop pjJ pjJ pjJ @@ -68185,57 +68185,57 @@ ien ien ien uSo -hMH +hfZ xtb -bXy -igO -eiB -igO -bXy -wOv -bXy -nOh -xrd -fMU -bXy +cVp +aaK +sBO +aaK +cVp +fWX +cVp +vyX +qeX +qxx +cVp wmk jLF wmk -bXy +cVp xtb xAO xAO xAO xtb -vyS -pOb +qdK +nDo ugV hNR -giC -mGV -onS -qtj -jwR -pRd -ouR -tnI -aBy -ico -fSG +sgR +hws +fJp +dxX +xox +mAc +mSC +gHA +eIp +wtw +oww ugV spe nQx fjr -rCV -pyx +xfD +xSO pQE pQE -pLe -pDQ +hEi +rgj pQE pQE -rHo -xHa +xBF +rkP vXc vXc vXc @@ -68258,75 +68258,75 @@ vXc tDd rwE bXS -imR -aYs -fGO +tIv +cBd +lfg lUv msj hIP uOJ mCA qYG -fGO -eFz -jGU -aYs -eFz -eFz +lfg +bQF +inO +cBd +bQF +bQF mCA msj eNf -hdB -tYq -eFz +iLT +bog +bQF xAF -aYs +cBd msj msj -eFz -fGO -sDw -lEU +bQF +lfg +sTh +pMo pOs -lEU -sDw -pWe +pMo +sTh +gQl iXM uIk -eKu -eKu +xdl +xdl eng iXM vUe -mfs -sDw -eKG +tQP +sTh +vQC fzp fzp pOs pOs -ugP -lEU +dUt +pMo fzp fzp pOs pOs -eKG -sDw -qjD +vQC +sTh +feO huu tkf pKl pKl tkf qzQ -gae -osf -mmT -mci -yhQ -rIu -lIm +uOM +sAI +iTR +oeg +fDm +iJX +kRI cpy cpy bMX @@ -68337,43 +68337,43 @@ cpy cpy cpy cpy -aaJ -oxK -hSv -rEY -rEY -oDY -atu +lca +gAy +tuR +aXV +aXV +ggw +pUs cNV cNV cNV -sxq -atu -oxK -hSv +wQH +pUs +gAy +tuR saC saC -atu -rEY -cxL -atu -qbz -qbz -atu -tiQ -mtz -roc -pDw -aXw -sPR -gAp -myK -wHm -fcc -xqt -sVm -cyi -jht +pUs +aXV +kek +pUs +rYs +rYs +pUs +tiQ +kaW +mHB +qBz +caQ +mBI +hjd +dlj +rtE +oJk +xOE +fsl +cIL +cNW saC saC saC @@ -68381,23 +68381,23 @@ saC saC bzC iAv -kic -gUO -qTD -gdF -haz +eaz +jTI +ajO +uuF +fGd iAv pbi -uUY -ptB -uUY -uUY +bBV +iBJ +bBV +bBV iAv iAv iAv iAv iAv -gVF +bop vjW pjJ pjJ @@ -68412,57 +68412,57 @@ pjJ ien hJZ hJZ -hMH +hfZ xtb -fMU -fMU +qxx +qxx xtb xtb xtb -qap -bQM +bUj +gRe xtb xtb xtb -bXy +cVp wmk jLF wmk -bXy +cVp xtb xtb -fMU +qxx xtb xtb -xvN +dln fjr ugV hNR -hJf -enX -aOG -kwO -bcN -naz -qWA -qtF -kwO -oRw -nXN -epe +rPY +fnM +wbd +lKV +jRL +uQX +jtt +lcN +lKV +cKE +sbW +pqk ugV jXQ nQx fjr -pyx -diD -rDA +xSO +lfk +asc xeg uMO -vmO -diD -rHo -xHa +kqM +lfk +xBF +rkP vXc vXc vXc @@ -68484,76 +68484,76 @@ yiM yiM vXc vXc -rkA +bqb rMF tSL -jHS -vRk +qwm +sjH kzT -pZS -aml +nEo +pau wnM -iAh -rlc +ykd +pDH tSL tSL tSL -sQf -bNl -jkq -ftj -oHa -ftj -jkq -ftj -jkq +xzo +cOD +xzx +nJL +xOH +nJL +xzx +nJL +xzx tSL -kcM -ftj -ftj -hvF +ekk +nJL +nJL +xRP wIr -lEg -tqf -mGJ +hrt +kgp +hLv wIr -eyt -gae +qAK +uOM xgH -eKu -eKu +xdl +xdl xgH fTP -mKf -sjm +ftb +wcg wIr -xQv -tqf -tqf -uOu -uOu +kyi +kgp +kgp +mrQ +mrQ wIr wIr -tqf -uOu -uOu -uOu -irr +kgp +mrQ +mrQ +mrQ +gBB wIr -pol -tIL +eFM +xkt aft pKl ipx tkf fTP -gae -xHx +uOM +hbE wIr -oIg -rIu -gDN -lIm +ncp +iJX +oPv +kRI cpy cpy bMX @@ -68564,74 +68564,74 @@ cpy cpy cpy cpy -aaJ -oxK -hSv -rEY -rEY -oDY -atu -atu +lca +gAy +tuR +aXV +aXV +ggw +pUs +pUs cNV -nHa -uPB -qXE -oxK -hSv +jvQ +bgW +lPB +gAy +tuR saC saC kwJ -atu -cxL -atu -qbz -qbz -atu +pUs +kek +pUs +rYs +rYs +pUs tiQ -tSs +tHa gYT -dDv -fQG -gxH -roc -roc +qlP +fZb +tEI +mHB +mHB hDy -vXD -mmP -jQu -jht -jht -peQ +uon +uLD +sSe +cNW +cNW +njb saC saC saC saC bzC iAv -lHW -eyS -diM -gdF -kic +bei +fqE +uER +uuF +eaz iAv -rOk -kic -vCj -kic -kic -iHt -gcF +mhx +eaz +fOw +eaz +eaz +gTP +nsP iAv iAv iAv jEX -ehk -ehk -ehk -ehk -ehk -ehk -agK +nTb +nTb +nTb +nTb +nTb +nTb +gtC pjJ lCH vjW @@ -68639,57 +68639,57 @@ pjJ clY hJZ hJZ -qeY -kNB -gDI +tnJ +wgh +rfR ahP -fMU -fSE -bXy -aFQ -epJ -igO -jYQ +qxx +sWL +cVp +xJh +jeK +aaK +xWX xtb -vJY -epJ +bkp +jeK jLF -mBb -tnu -fMU +ruC +pUf +qxx ahP -gDI -gDI -gDI -wcU +rfR +rfR +rfR +vqJ fjr ugV hNR -hJf -duk -vvO -cgE -hbA -cvf -cvf -kzm -yhh -pYr -aMu -epe +rPY +oTS +wFo +aFV +gcd +pkA +pkA +fTE +rgF +luV +oKu +pqk ugV -lXO +ibS jXQ iKF -sqt -foD -tpA +upR +aRZ +lwt ocn qGK -nwG -feD -rHo -xHa +biQ +xHv +xBF +rkP pgm vXc yiM @@ -68698,89 +68698,89 @@ yiM nfk yiM yiM -mPX -jMY -jMY -jMY -jMY -wTg -rxn -rxn -kFN +mAS +fhR +fhR +fhR +fhR +gPB +aZG +aZG +qVY yiM yiM yiM vXc -lhr +dzh tSL tSL tSL -cYk -cYk -flZ -mVv -cYk -cYk +saf +saf +pbX +iYU +saf +saf tSL tSL tSL tSL tSL tSL -oAv -lAH +dlh +rAm tSL -vMy -cXh -dpL -uvc +dOV +wqZ +kFl +qUm tSL -eKu -csf -eKu +xdl +rRt +xdl tSL wIr wIr -rcp +nbY wIr wIr -ufe -gae +rUf +uOM bpN uDT pOs poD -gae -vqr +uOM +cyw wIr wIr wIr -rcp -rcp -rcp -rcp +nbY +nbY +nbY +nbY wIr wIr -rcp -rcp -rcp -rcp +nbY +nbY +nbY +nbY wIr wIr -pCJ -gae +mhU +uOM bpN uIk oLa fTP -gae -fuM +uOM +nvp wIr wIr -lMU -gDN -klZ -lIm +wef +oPv +fZD +kRI cpy cpy bMX @@ -68791,64 +68791,64 @@ cpy cpy cpy cpy -aaJ -oxK -hSv -rEY -rEY -ehb -uKt -atu +lca +gAy +tuR +aXV +aXV +nHD +jBe +pUs cNV -deT -uPB -qbz -oxK -hSv +bMS +bgW +rYs +gAy +tuR saC kwJ kwJ -atu -cxL -atu -qbz -qXE +pUs +kek +pUs +rYs +lPB saC tiQ -uyQ -roc -cNv -hKw -roc -pjO +yfe +mHB +uYh +iUE +mHB +ktS hDy hDy -cRF -wUN -jQu -jht -jht -sWl -bah +tMa +ioL +sSe +cNW +cNW +rJx +sZm saC saC saC bzC iAv -kic -eyS -qTD -gdF -kic +eaz +fqE +ajO +uuF +eaz iAv -tBr -ydO -mDe -qxz -qxz -uXK -haz -deH +wzF +xpe +iuV +uAg +uAg +xyT +fGd +wrL iAv iAv kdf @@ -68858,7 +68858,7 @@ ciw lPf qqJ jEX -gVF +bop pjJ lCH pjJ @@ -68867,56 +68867,56 @@ clY clY hJZ hJZ -kNB +wgh fjr -rQw -fMU -rYP +bgx +qxx +qkM jxz -rpQ -dMa +nLT +bEJ gvT -jSJ +dkG xtb -vEO -epJ -owx -mBb -qVP -fMU -vyS +pin +jeK +aIU +ruC +lfo +qxx +qdK fjr fjr fjr fjr fjr fjr -vHd -gCd -bLT -wRw -hbw +fUQ +upA +kyG +kVf +naM uAa -oMX -faJ -nyv -cvf -srK -mLh +fto +uDF +mQo +pkA +cZz +vhY ugV fjr fjr fjr -lXO -pyx -fJP -nwG +ibS +xSO +koO +biQ iaY bGT -nwG -fJP -rHo -xHa +biQ +koO +xBF +rkP tpD qQi qQi @@ -68925,7 +68925,7 @@ qQi sMa yiM yiM -rKZ +idQ trZ trZ trZ @@ -68933,22 +68933,22 @@ trZ trZ trZ trZ -cqp +mxL yiM yiM yiM vXc -lhr +dzh tSL tSL -edj -fGO +kBy +lfg lUv -vAL -wia +lyh +arJ kzT -vRk -cLf +sjH +owS tSL tSL tSL @@ -68958,8 +68958,8 @@ tSL tSL tSL tSL -cYk -cYk +saf +saf tSL tSL tSL @@ -68967,47 +68967,47 @@ tSL tSL tSL tOo -miO -miO +oWp +oWp tOo wIr wIr -isJ -dCf +dGc +qVL spJ fTP -pnG -qTQ +oHw +heI wIr wIr -sAA -iNa -iNa -iNa -iNa -iNa -iNa -iNa -iNa -iNa -iNa -iNa -inf +lbq +iIB +iIB +iIB +iIB +iIB +iIB +iIB +iIB +iIB +iIB +iIB +mOY wIr wIr -pCJ -ygs +mhU +iQG oqp qzQ -gae -pCJ +uOM +mhU wIr wIr -esK -gDN -klZ -klZ -lIm +qDF +oPv +fZD +fZD +kRI cpy cpy bMX @@ -69019,73 +69019,73 @@ cpy cpy cpy tiQ -olP -hSv -rEY -rEY -rEY -oDY -atu +oOq +tuR +aXV +aXV +aXV +ggw +pUs cNV saC -qbz -qbz -oxK -hSv -pCK +rYs +rYs +gAy +tuR +xub kwJ ezU -atu -cxL -atu -qbz +pUs +kek +pUs +rYs saC saC tiQ xce xce -pyH -ece +hrN +dAZ hDy hDy hDy -opN -ecl -mmP -jQu -bOO -jht -gpe -bah +fhk +mMO +uLD +sSe +fyY +cNW +eII +sZm saC saC saC bzC iAv -xJJ -plm -qTD -wug -kic -sxV -haz -vWX -gvR -vVF -uXK -rIU -uXK -haz +gkC +lQF +ajO +knf +eaz +jeu +fGd +lOF +uTX +gYV +xyT +rtJ +xyT +fGd iAv iAv -owm -nZk -nZk -sAz +sBF +pIs +pIs +fsv aea -vty +iOL alx -gVF +bop vjW lCH pjJ @@ -69094,56 +69094,56 @@ clY clY clY clY -kNB +wgh fjr -rQw -fMU -egS -eiB -owx -dMa -tCc -cXE +bgx +qxx +oGK +sBO +aIU +bEJ +flY +tYd xtb -sky -bXy -wOv -oqR -sII -fMU -vyS +fnR +cVp +fWX +hzo +kSE +qxx +qdK fjr fjr fjr cpy -sQA +bKf fjr -tzM -gCd -wcS -wuh -mNs -kzm -tzE -yhh -vvO -cvf -srK -iwi +nKZ +upA +pdZ +wuf +qSF +fTE +lQJ +rgF +wFo +pkA +cZz +oFI ugV -rCV +xfD cpy fjr fjr -pyx -diD -qFj +xSO +lfk +rCF xeg qGK -qFj -diD -rHo -xHa +rCF +lfk +xBF +rkP yiM yiM yiM @@ -69152,30 +69152,30 @@ yiM sMa yiM vXc -tpg +dUL trZ -cJb -mPo -gxy -eVh -qGT +vtf +loW +rPB +oxJ +rMI trZ -cqp +mxL yiM yiM vXc vXc -lhr +dzh rMF tSL -dEB -bUT -iAh -jSa -vRk -vRk -vRk -cLf +man +fxR +ykd +kcu +sjH +sjH +sjH +owS tSL tSL gbB @@ -69193,48 +69193,48 @@ tOo tOo tSL dGD -gsv +iUz mPr hFX -xRT +cXY bYV wIr wIr -jMz -cnU -uqK -qej +oyy +eoP +qzX +doc wIr wIr -wzN -qlS -miO -miO -miO -miO -miO -miO -miO -miO -miO -miO -miO -xBa -fWJ +uJx +ipG +oWp +oWp +oWp +oWp +oWp +oWp +oWp +oWp +oWp +oWp +oWp +btR +wQx wIr wIr -lJE -bTQ -gae -amI +gIu +uAY +uOM +bsv wIr wIr -arj -arj -gDN -klZ -lIm -lIm +wYD +wYD +oPv +fZD +kRI +kRI cpy cpy bMX @@ -69246,73 +69246,73 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -rEY -rEY -oDY -atu +gAy +tuR +aXV +aXV +aXV +ggw +pUs saC saC -qbz -qbz -pTA -bvq -mJN -wyc -wyc -dqj -oFi -atu -qbz +rYs +rYs +maJ +uyZ +sMr +bmV +bmV +aaB +fbX +pUs +rYs saC saC tiQ -tSs -ojq -jWo -pZN -cIu -jvc +tHa +wdE +xLW +tnj +iqB +myu hDy -uzZ -xRd -ueG -jQu +gvm +wab +oEi +sSe jBy uAm -bah +sZm saC saC saC saC uAm iAv -lnD -vWX -qTD -wug -kic -sxV -kic -vWX -vow -qTD -bmQ -qTD -jHd -pGp +jVV +lOF +ajO +knf +eaz +jeu +eaz +lOF +sEC +ajO +eIV +ajO +fkG +mLv iAv iAv -dDN -aUs -kpv -dDN +udP +jdJ +eVl +udP iAv iAv alx -gVF +bop vjW hdu nCa @@ -69321,56 +69321,56 @@ yhK yhK yhK iSf -yiJ +ktf nQx -rQw +bgx xtb xtb xtb -qap -bQM +bUj +gRe xtb xtb xtb xtb xtb -qap -bQM +bUj +gRe xtb xtb -vyS +qdK fjr fjr cpy cpy cpy -fGw -lHk -rQw -qQR -bOA -rUW -sLE -eWV -xxi -pkP -uvl -urj -vgd +xDz +bAn +bgx +wCv +nqc +vKz +dBB +pCI +koV +sUD +sia +uBK +hSA fjr fjr cpy cpy fjr -pyx +xSO pQE pQE -kbI -oFq +kLm +whr pQE pQE -rHo -xHa +xBF +rkP yiM yiM iBY @@ -69379,61 +69379,61 @@ yiM sMa vXc umf -tpg +dUL trZ -bdC -yhB -mub -kPX -dad -kLF -cqp +alg +hBv +bZw +mcp +hjL +sah +mxL yiM yiM vXc vXc -uQO +iae rMF tSL tSL -mbf -dXk -sBj -rLp -crV -oKn +bHB +xHK +tZy +ohz +eUp +ovS tSL tSL rMF -vly -vly -vly -vly -vly -vly -vly -vly -vly -vly -vOw -miO -miO -miO -gsv +rLu +rLu +rLu +rLu +rLu +rLu +rLu +rLu +rLu +rLu +rsn +oWp +oWp +oWp +iUz mPr mPr hFX hFX -mRW -ppb +bPL +rho wIr wIr -hfW -fJR +vDS +kRT wIr wIr -tWB -jmn +eyv +ple mPr mPr mPr @@ -69447,20 +69447,20 @@ mPr mPr mPr mPr -xRT +cXY tOo wIr -rkp -iuU -thg -rkp +jeE +wnc +dBN +jeE wIr -lIm -pCk -gDN -gDN -gDN -lIm +kRI +iEm +oPv +oPv +oPv +kRI cpy cpy cpy @@ -69473,40 +69473,40 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -rEY -rEY -oDY +gAy +tuR +aXV +aXV +aXV +ggw saC saC saC saC -qbz -atu -hSv -agQ -rEY -rEY -rEY -oDY -atu +rYs +pUs +tuR +jbQ +aXV +aXV +aXV +ggw +pUs saC saC saC tiQ -tSs +tHa gYT -dDv -pZN +qlP +tnj hDa -jvc +myu hDy -anA -mmP -jht -jQu +wmN +uLD +cNW +sSe uAm uAm klW @@ -69516,88 +69516,88 @@ saC saC uAm lLA -lnn -lrD -kUT -fmx -eEY -jSz -kaf -ajJ -lwU -mUW -nMx -mYH -nMx -iht -kxA -mnn +cJL +wqz +mKh +kTe +pnV +uPq +efg +uce +kFe +cEA +ylM +qUJ +ylM +jIH +xya +rLn eLU -aNJ -fDL +fyL +qaM mjF -tqj -dDN -dtm +jEr +udP +lRW gWI -ehk -ehk -ehk -ehk -trr -trr -sPy +nTb +nTb +nTb +nTb +cWo +cWo +bhg sjY -kNB +wgh jDO -nOU -gDI -gDI -hdt -ped -oSq -xzk -gDI +pBi +rfR +rfR +oOt +ocx +jaQ +qgy +rfR ahP qDL -ofj -grO -dIV -kLv +oAf +izQ +twR +pZF qDL -xvN +dln fjr cpy cpy cpy cpy cpy -gwH -nOU -kXE -gDI -kXE -aMy -wCH -gDI -gDI -mhm -sHO -goq +dBQ +pBi +kZF +rfR +kZF +jpJ +isP +rfR +rfR +dhx +cYw +qJc fjr cpy cpy cpy fjr -pyx -diD -eaI +xSO +lfk +usi uPy uMO -gCY -diD -rHo -xHa +dwk +lfk +xBF +rkP yiM yiM qCY @@ -69606,32 +69606,32 @@ yiM puY vXc umf -tpg +dUL trZ -kFj -dad -fly -dad -plq +uSN +hjL +rim +hjL +cWE trZ -cqp +mxL yiM vXc vXc vXc wYa -pdG +waC gbB tSL tSL -vuX +qAQ tSL tSL -cYk +saf tSL tSL rMF -gQC +sPl yiM yiM vXc @@ -69642,7 +69642,7 @@ umf umf vXc vXc -vOw +rsn nax nax nax @@ -69652,15 +69652,15 @@ mPr mPr hFX hFX -rWK -hbz -uOu -stQ -osf -uOu -hbz -pTb -ugf +jnA +vci +mrQ +lgl +sAI +mrQ +vci +llt +dNW mPr tNc gUj @@ -69675,19 +69675,19 @@ mPr mPr mPr mPr -xRT -miO -miO -nWM -miO +cXY +oWp +oWp +qwU +oWp tOo -lIm -lIm -xfo -gDN -gDN -gDN -lIm +kRI +kRI +dVc +oPv +oPv +oPv +kRI cpy cpy cpy @@ -69700,77 +69700,77 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -rEY -rEY -jAD +gAy +tuR +aXV +aXV +aXV +cAl saC saC saC saC saC saC -xzX -wPe -utG -utG -utG -oMg +brg +fDN +vwP +vwP +vwP +xRF tiQ tiQ tiQ saC tiQ -tSs -ojq -dDv -pZN -roc -jvc +tHa +wdE +qlP +tnj +mHB +myu hDy -kxu -fCA -vNK -jQu -nzL -elH +uqB +jxc +lHA +sSe +dWF +beo saC saC saC saC -sQU +hmT lko lLA -kic -rka -kyy -opW -nYD +eaz +dTo +sqo +lWG +hiv jUY -vCj -esv -kUT -klN -svx -ozb -kic -lAv -aUs -wJG +fOw +vLw +mKh +hrz +gsK +nsn +eaz +fbm +jdJ +qVA myz -uMK -kRK +edM +kEq kEj -ohi -dDN +aWC +udP gWI gWI oUq oUq -lgE -lgE +iaE +iaE oUq oUq oUq @@ -69785,46 +69785,46 @@ iKo fjr fjr fjr -rQw -xiQ -kLv +bgx +pah +pZF uLw vlX -kLv -xiQ -vyS +pZF +pah +qdK fjr cpy cpy cpy cpy fjr -nQL +lRi ugV ugV ugV -qrG -bRv +xyU +tSF ugV ugV -epe -bHk +pqk +tIQ ugV ugV -geI +gUT cpy cpy cpy fjr -pyx -diD -ted +xSO +lfk +anj xeg qGK -ted -diD -rHo -xHa +anj +lfk +xBF +rkP yiM yiM qCY @@ -69833,22 +69833,22 @@ yiM yiM yiM vXc -tpg +dUL trZ -rjV -eZh -mub -eZh -lSI -skM -cqp +xaH +wSx +bZw +wSx +uTp +jtW +mxL yiM vXc vXc vXc wYa umf -pdG +waC rMF tSL rMF @@ -69857,7 +69857,7 @@ tSL rMF tSL rMF -gQC +sPl yiM yiM yiM @@ -69869,7 +69869,7 @@ umf vXc vXc yiM -vOw +rsn nax nax mPr @@ -69879,15 +69879,15 @@ mPr mPr mPr hFX -rWK -hbz -uOu +jnA +vci +mrQ xgH tkf -uOu -hbz -pTb -ugf +mrQ +vci +llt +dNW mPr tNc nax @@ -69907,14 +69907,14 @@ mPr kOa jyM nax -umk +ixi ouj -lIm -dLJ -gDN -gDN -gDN -lIm +kRI +aqR +oPv +oPv +oPv +kRI cpy cpy cpy @@ -69927,10 +69927,10 @@ cpy cpy cpy tiQ -ptQ -cla -agQ -agQ +wWB +kvn +jbQ +jbQ saC saC saC @@ -69941,64 +69941,64 @@ saC saC saC saC -qbz -qbz -qbz -qbz +rYs +rYs +rYs +rYs saC saC saC saC tiQ xce -uQW -dDv -bPc -fnZ +snh +qlP +vHb +uBw xce hDy -ecl -lLe -dIb -lmc -jht -rRc +mMO +rCS +lFU +xjE +cNW +duw saC saC saC -bai -wfa +euW +doG uAm lLA ntL -kic -dlB -pMH +eaz +xDN +ioZ iAv iAv -ayA -mWD -rOk -uFP -dJe -haz -pGp +uXV +uTz +mhx +eEN +aJm +fGd +mLv iAv iAv iAv -dDN -aUs -ihT -dDN +udP +jdJ +lRI +udP iAv iAv iAv oUq oUq -gaL -xIS -aBw -bSr +kkK +msl +wjL +roG oUq oUq oUq @@ -70012,14 +70012,14 @@ ugV fjr fjr fjr -rQw -xiQ -kLv +bgx +pah +pZF uNt vlX -kLv -xiQ -vyS +pZF +pah +qdK fjr cpy cpy @@ -70028,30 +70028,30 @@ fjr fjr hNR ugV -pFl -hfN -imL -etX -wRr -hfN -jwR -xst +rEZ +pLd +eiG +iPX +rsk +pLd +xox +eIt fjr fjr fjr -ldr +prs cpy fjr fjr -dWa -diD -ugU +sZo +lfk +xBZ xeg qGK -ted -diD -rHo -xHa +anj +lfk +xBF +rkP yiM yiM qCY @@ -70060,15 +70060,15 @@ yiM yiM yiM yiM -tpg +dUL trZ -hDD -qmv -slP -dad -maC -skM -cqp +nBg +pqc +pOw +hjL +kIz +jtW +mxL yiM yiM vXc @@ -70076,14 +70076,14 @@ vXc wYa vXc umf -pdG -oYh -vly -vly -vly -vly -vly -gQC +waC +mZH +rLu +rLu +rLu +rLu +rLu +sPl yiM yiM yiM @@ -70096,7 +70096,7 @@ vXc yiM yiM yiM -vOw +rsn nax nax mPr @@ -70106,15 +70106,15 @@ mPr mPr mPr mPr -rWK -hbz -uOu +jnA +vci +mrQ xgH tkf -uOu -hbz -pTb -ugf +mrQ +vci +llt +dNW mPr mPr iCb @@ -70134,14 +70134,14 @@ mPr tKB nax nax -umk +ixi gmu -bfi -jXr -gDN -klZ -klZ -lIm +jgb +mNF +oPv +fZD +fZD +kRI cpy cpy cpy @@ -70154,11 +70154,11 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -rEY -ceA +gAy +tuR +aXV +aXV +cvL saC saC saC @@ -70169,7 +70169,7 @@ saC saC saC saC -rEY +aXV saC saC saC @@ -70177,24 +70177,24 @@ saC saC saC tiQ -qLq -roc -dDv -pZN -pzK -pfi +kDr +mHB +qlP +tnj +neP +wJE hDy -ecl -lLe -hJH -xCe -jht -jht +mMO +rCS +hbg +smv +cNW +cNW saC saC -fRZ -aUy -hnq +bFd +kvs +xfx uAm uAm lLA @@ -70203,30 +70203,30 @@ iAv iAv iAv iAv -aUs -lFT -miP +jdJ +rff +oLM iAv iAv -ccX +qyp iAv iAv iAv iAv -aFp -pAs -jAO -pqb -pqb -iRT -pqb -eUl -iCW -iCW +cwY +fdr +uzO +rEy +rEy +oRB +rEy +cuy +qSf +qSf kXY kXY -xIS -bSr +msl +roG oUq oUq fjr @@ -70239,14 +70239,14 @@ ugV ugV fjr rxI -rQw -xiQ -jNP +bgx +pah +bRR uNt vlX -jNP -xiQ -vyS +bRR +pah +qdK fjr fjr cpy @@ -70254,7 +70254,7 @@ fjr hxy iKF kdo -pFl +rEZ yjp sjy sjy @@ -70262,23 +70262,23 @@ sjy sjy sjy sjy -pXR -fSG +evQ +oww fjr fjr fjr fjr fjr nVN -lml -diD -ted +uDO +lfk +anj xeg qGK -jDW -diD -rHo -xHa +gLW +lfk +xBF +rkP yiM yiM bYS @@ -70287,15 +70287,15 @@ yiM yiM yiM yiM -tpg +dUL trZ -fgg -kPX -tMY -kPX -oeE -skM -cqp +nAl +mcp +cZq +mcp +wiS +jtW +mxL yiM yiM yiM @@ -70304,7 +70304,7 @@ wYa vXc vXc vXc -oYh +mZH yiM yiM yiM @@ -70323,7 +70323,7 @@ vXc vXc yiM yiM -vOw +rsn nax mPr mPr @@ -70333,15 +70333,15 @@ mPr mPr mPr mPr -rWK -hbz -tqf +jnA +vci +kgp qEk tkf -uOu -hbz -pTb -ugf +mrQ +vci +llt +dNW mPr nax bjX @@ -70361,14 +70361,14 @@ nax pCv nax mPr -umk +ixi gmu -lIm -obR -gDN -klZ -lIm -lIm +kRI +gDt +oPv +fZD +kRI +kRI cpy cpy cpy @@ -70381,12 +70381,12 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -rEY -vuJ -oMg +gAy +tuR +aXV +aXV +wrR +xRF saC saC saC @@ -70404,24 +70404,24 @@ saC saC saC tiQ -mtz +kaW gYT -dDv -aks -riA -pfi +qlP +jHC +liP +wJE hDy -ecl -mmP -irU -hed -kfk -jht -jht -saC -rxx -bwQ -ecl +mMO +uLD +oBJ +nFA +xbw +cNW +cNW +saC +uMZ +lIF +mMO hao uAm uAm @@ -70430,8 +70430,8 @@ bzC bzC bzC iAv -aUs -aUs +jdJ +jdJ iAv iAv lLA @@ -70439,21 +70439,21 @@ lLA xUq xUq iAv -muc -pqb +vyn +rEy nMl wrc mjF mGb -ozE -xQE -lyE -ncr +ezr +tMf +ykz +gUZ kXY nFc rqE kXY -aIU +rKX oUq oUq oUq @@ -70466,63 +70466,63 @@ ugV ugV ugV rxI -rQw +bgx qDL -jNP -tWN -tAx -kLv +bRR +heH +vkJ +pZF qDL ahP -fSG +oww fjr fjr fjr jDO fjr ugV -rQw +bgx sjy sjy -nSM -lWt -xXl -mfK +pGM +bMG +eYW +ckI sjy sjy ahP -hfN -hfN -hfN -hfN -itu -hUs -kek +pLd +pLd +pLd +pLd +xAB +ydR +csB pQE -jDW -jGx -rHB -jDW +gLW +teX +rNJ +gLW pQE -ncN +dJn vSN -mky -mky -mky -mky -mky -mLY +ldj +ldj +ldj +ldj +ldj +hWF yiM yiM -tpg +dUL trZ -ker -gJk -eZh -gJk -eZh +uQG +gpA +wSx +gpA +wSx trZ -cqp +mxL yiM yiM vXc @@ -70531,7 +70531,7 @@ tDd rXb rXb rXb -eCr +kAF rXb rwE rwE @@ -70550,7 +70550,7 @@ umf vXc vXc yiM -vOw +rsn nax nax mPr @@ -70560,15 +70560,15 @@ hFX hFX mPr mPr -rWK +jnA wIr wIr -amp -eyt +fNC +qAK wIr wIr -pTb -eRY +llt +pgx mPr bjX yhj @@ -70588,13 +70588,13 @@ nax pCv nax mPr -umk +ixi eDq -lIm -uQM -gDN -gDN -lIm +kRI +tKK +oPv +oPv +kRI cpy cpy cpy @@ -70608,13 +70608,13 @@ cpy cpy cpy tiQ -oxK -hSv -rEY -uwK -oMg -atu -atu +gAy +tuR +aXV +uQB +xRF +pUs +pUs cNV saC saC @@ -70622,35 +70622,35 @@ saC saC saC saC -qbz -qbz -qbz +rYs +rYs +rYs saC saC saC saC saC tiQ -mtz -roc -wJD -tOC -gxH -mtz +kaW +mHB +vHi +rLr +tEI +kaW hDy saC -mmP -jht -rnO -jht -jht -jht -oOt -dEF -qWO -dQo -ecl -xHb +uLD +cNW +fTh +cNW +cNW +cNW +xgG +hDU +bkR +hid +mMO +jzQ saC saC saC @@ -70665,22 +70665,22 @@ lLA lLA lLA xUq -kwA -pqb -dBT -pqb -pqb -eKO -xHd -erR -qPk -lgE -nUU +rtm +rEy +nco +rEy +rEy +ofP +fLB +czc +cVh +iaE +abz kXY nFc dwI kXY -xIS +msl oUq oUq rxI @@ -70689,33 +70689,33 @@ fjr fjr ugV ugV -pFl -hfN -hfN -hfN +rEZ +pLd +pLd +pLd yjp beB beB -oib -eMZ +hlM +bTt beB wrC wrC xXR -hfN -hfN -fSG -gwH +pLd +pLd +oww +dBQ fjr -pFl -rJB +rEZ +uuy sjy -mCr -cZx +xav +jFT jQk cXF -svj -aux +nBD +vDk sjy sjy sjy @@ -70727,101 +70727,101 @@ sjy sjy kqb kqb -pGz -tDZ +kdD +rsZ kqb kqb lVp lVp -xIm -xCi -tCx +dqU +aUw +dcb lVp lVp aHH -mLY +hWF yiM -tpg +dUL trZ -skM +jtW trZ -skM +jtW trZ -skM +jtW trZ -cqp +mxL vXc vXc vXc -cfL -rcU -rcU -rcU -rcU -oYh -rcU -rcU -rcU -rcU -rcU -rcU -rcU -rcU -eNx -rcU -rcU -rcU -rcU -rcU -rcU -rcU -rcU -rcU -vOw -yds -yds -yds -yds -yds -sDp +pRt +lHQ +lHQ +lHQ +lHQ +mZH +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +nKp +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +rsn +mrT +mrT +mrT +mrT +mrT +fnh hFX hFX mPr -rWK +jnA wIr wIr -lLb -eyt +dcA +qAK wIr wIr -pTb -ugf +llt +dNW mPr aPe ylo ylo -uKI -tUf +qZl +wPJ ylo ylo hdG mPr mPr -lHQ -yds -yds -yds -yds -ler -yds -yds +jYa +mrT +mrT +mrT +mrT +hFJ +mrT +mrT tOo -lIm -lIm -aZa -gDN -fZU -lIm +kRI +kRI +mBe +oPv +gxm +kRI cpy cpy cpy @@ -70835,12 +70835,12 @@ cpy cpy cpy tiQ -oxK -hSv -vuJ -oMg -atu -atu +gAy +tuR +wrR +xRF +pUs +pUs cNV cNV saC @@ -70848,38 +70848,38 @@ saC saC saC wLp -qtB -qtB -qtB -qtB -qtB +dfo +dfo +dfo +dfo +dfo saC saC tiQ saC tiQ tiQ -otF -oyA -roc +lde +bvF +mHB hIS -jDh +vwm hDy saC saC -jht -aCg -nkM -nkM -nkM -nAQ -nkM -nkM -fRL -lBM +cNW +ins +uCl +uCl +uCl +ixv +uCl +uCl +jmY +rFb lvH -uSM -ljM +jNj +gEc saC saC saC @@ -70902,12 +70902,12 @@ iAv iAv iAv oUq -kke +oFY nMX rmA nMX nMX -aqi +ozv oUq oUq rxI @@ -70916,70 +70916,70 @@ fjr ugV ugV ugV -rQw +bgx beB beB beB beB beB -vnL -bHe -tyo -bTt +gwv +sEO +kpO +aaJ wrC wrC wrC wrC wrC -vyS +qdK jDO fjr -rQw +bgx sjy sjy -gqW -rna +iew +xaW urM xxs uDb -anr +vKy sjy sjy -ukE -uuF -crU -icI -ydr -ydr +gSZ +sWX +lyR +lxV +gCJ +gCJ sjy -oFO -vOc +pxt +wGw lkj lxL -cFT -uWc +jsW +mgg lVp lVp -lcd -ntb -ntb -jHx +wPn +fvF +fvF +rRD lVp lVp -oEt +cjI vXc -apT -bsU -bsU -bsU -bsU -bsU -bsU -bsU -eXS +cTv +uNX +uNX +uNX +uNX +uNX +uNX +uNX +lgs vXc vXc -cfL +pRt rMF jmG jmG @@ -70994,9 +70994,9 @@ jmG rMF rMF jmG -pYg -ebd -ebd +qCv +kcy +kcy jmG rMF rMF @@ -71011,44 +71011,44 @@ tOo jmG jmG pqR -sDp +fnh hFX mPr -rWK -hbz -uOu +jnA +vci +mrQ xgH tkf -tqf -hbz -pTb -ugf +kgp +vci +llt +dNW mPr uXp ylo -qLj +xSn yfu nXO -tUf +wPJ ylo hdG mPr -lHQ +jYa tOo jas jas jas -rMw -nyt -rMw +uPl +qqb +uPl jas jas jas jas -uFU -dlN -trS -lIm +sEu +pwG +rWN +kRI cpy cpy cpy @@ -71062,52 +71062,52 @@ cpy cpy cpy tiQ -oxK -xzX -oMg -atu +gAy +brg +xRF +pUs cNV cNV cNV -gUG -gUG +nuV +nuV saC saC wLp -oXT -oXT -oXT -oXT -oXT -deJ -oXT -oXT -oXT +hoj +hoj +hoj +hoj +hoj +uxa +hoj +hoj +hoj saC saC tiQ -kBx -kBx -kBx +oFa +oFa +oFa tiQ -qLq +kDr tiQ saC saC saC -jht -jht -gpe -yac -oOt -jht -jht -jht -jht -jht -jht -jQu -jId +cNW +cNW +eII +wRK +xgG +cNW +cNW +cNW +cNW +cNW +cNW +sSe +djY saC saC saC @@ -71129,12 +71129,12 @@ oUq oUq oUq oUq -rCY -yfY -vcs -ntR -ntR -sYw +sAr +mOk +rMT +uFj +uFj +iJd oUq oUq oUq @@ -71143,29 +71143,29 @@ ugV ugV ugV ugV -rQw +bgx beB -eLK -jOl -iOW -hGH -fNn -dwT -qTS -rqL +hZf +bpz +wVS +xrj +tJL +bYm +hFD +bVb wrC -sLe -gsN -mnM +eaK +adr +qvD wrC -vyS +qdK jDO -pFl -xlU +rEZ +qxe sjy sjy sjy -cPL +vCO sjy tpa tpa @@ -71177,23 +71177,23 @@ kBk iJu uDs jUg -anr +vKy sjy -uWc +mgg oud dbQ lxL nTD -oTQ +aiJ lVp -sLf -fkE +vUy +qhu oXa awj -nhh -lpo +wlB +nxI lVp -oEt +cjI vXc vXc yiM @@ -71205,7 +71205,7 @@ yiM vXc vXc vXc -cfL +pRt rMF jmG jmG @@ -71238,42 +71238,42 @@ jmG jmG jmG jmG -ugf +dNW hFX mPr -rWK -hbz -uOu +jnA +vci +mrQ xgH tkf -uOu -hbz -pTb -hxS +mrQ +vci +llt +mIs bwF aPe -eHQ +ost yfu yfu yfu -dAI +eYv ylo hdG jAd -umk +ixi jas jas -ija +ojY jas -xLu +lYk vjr -oGv +rMW jas -okm -dib +fse +txE jas jas -mmi +ahi jas jas cpy @@ -71289,33 +71289,33 @@ cpy cpy cpy tiQ -oxK -atu -atu +gAy +pUs +pUs cNV cNV cNV cNV -klX -exO -kty -kty -kty -vme -vme -vme -vme -vme -vme -vme -vme +kEM +wve +kaB +kaB +kaB +pDO +pDO +pDO +pDO +pDO +pDO +pDO +pDO saC saC saC tiQ -qQF -tGr -nXu +lhx +cum +mJC tiQ tiQ tiQ @@ -71323,19 +71323,19 @@ saC saC saC saC -jht -jht -jht -oOt -jht -jht -jht -jht -jht -jht -jQu -gpe -mgF +cNW +cNW +cNW +xgG +cNW +cNW +cNW +cNW +cNW +cNW +sSe +eII +hsW saC saC saC @@ -71348,20 +71348,20 @@ saC saC saC oUq -ndt -dRx -owU -ndt -cbv -oGf +iDd +hmH +ivl +iDd +mxj +leR oUq oUq -nQE +fHk bJN jbn kXY kXY -mPZ +jDh oUq oUq ugV @@ -71370,57 +71370,57 @@ ugV ugV ugV ugV -rQw +bgx beB sLa -jOl -wQm -wQm -wQm -smf -qTS -bIT -bxq -qDM -nZT -uxp +bpz +iHc +iHc +iHc +dwq +hFD +hEl +eBe +bZa +jfQ +lDj wrC -vyS +qdK jDO -rQw +bgx sjy sjy -mEF -tTc -miw -tgd -vaI -gJo -gJo +bIi +hzn +mOC +ckv +nvq +xSR +xSR sjy sjy -cbm -ooo -cfD -ksE -jYM -mgm +icD +fjE +pBJ +uSC +eKl +xrY sjy -qtm +mVX xYx oLd wob nTD -niZ +kON lVp -sLf +vUy vAn yca yca wSt -dcQ -iLV -oEt +kjM +nxx +cjI vXc gsP qtN @@ -71431,7 +71431,7 @@ yiM yiM yiM vXc -cfL +pRt rMF jmG jmG @@ -71446,62 +71446,62 @@ tnM wHU woq qsC -olv +ggC jmG uKS ild ild jmG -fIu -fRt +dEX +eqS unS jwM -eay -aWb +cua +icg qvN gwP -ktF -gqr +pfZ +qum dUW dUW jmG -ugf +dNW mPr mPr -rWK -hbz -tqf +jnA +vci +kgp qEk oLa -uOu -hbz -pTb -ugf +mrQ +vci +llt +dNW qbG aPe -eHQ +ost yfu yfu yfu -fbo +qfy ylo hdG mPr -eot +kfR jas -jDU +hmi vpe aAI -riL +lRA wwc -riL +lRA aAI -xth +gle eso -fGK +lzZ jas nQu -uYk +tms jas cpy cpy @@ -71516,33 +71516,33 @@ cpy cpy cpy tiQ -gzV -qbz -qbz +rZt +rYs +rYs cNV cNV cNV cNV -oXT -dpX -qtB -qtB -sod -xuj -xuj -xuj -qtB -xuj -xuj -qtB +hoj +bot +dfo +dfo +rZB +bYs +bYs +bYs +dfo +bYs +bYs +dfo saC saC saC saC tiQ -mot -mot -mot +ecd +ecd +ecd tiQ tiQ tiQ @@ -71551,103 +71551,103 @@ saC saC saC saC -jht -jht +cNW +cNW saC -jht -jht -jht -jht -jht -jht -jQu -jht -jId +cNW +cNW +cNW +cNW +cNW +cNW +sSe +cNW +djY saC saC saC saC saC saC -gDq +vSt saC saC saC -hsu -uQa -ihC -cyf -hLg -lmL -ezr -wIV -jIF -qiv -xIS +dFU +xiw +oGs +qMK +muN +fSp +bJe +wvT +hVf +oYG +msl har jbn awI kXY -iCW -iCW -lgE -hfN -hfN -hfN -hfN -hfN -hfN +qSf +qSf +iaE +pLd +pLd +pLd +pLd +pLd +pLd ahP beB sLU -rsf -aeo -mck -jJf -smf -wQm -bIT +gYx +vzo +xSi +hEo +dwq +iHc +hEl wrC -fXA -eYH -ryW +oLn +mUM +ayW wrC jBU -fNM +avS nKm sjy -phy -eoj +buU +aMx qGC azl qGC mqH mqH -eoj +aMx sjy sjy -xhh +xYf sjy -ohC +fKM sjy -xhh +xYf sjy sjy -niZ +kON xYx oLd wob nZd -oFO +pxt lVp -egU +xMm jfO yca owg jfO -ieK -gmY -oEt +kxR +eBf +cjI vXc uWD xkO @@ -71658,7 +71658,7 @@ yiM aOi yiM vXc -bTO +jUs jmG jmG ubJ @@ -71679,56 +71679,56 @@ vVS ild ild jmG -fIu -pXN +dEX +nxl vVS afI -pWT -qnE +kdW +uxj qvN eHF -ktF -gqr +pfZ +qum jwM nBP jmG -ugf +dNW mPr mPr -rWK -hbz -uOu +jnA +vci +mrQ qEk oLa -uOu -hbz -pTb -lya +mrQ +vci +llt +sif nax glO vOb -qLj +xSn yfu yfu -rZh +jPb ylo nJr mPr -umk +ixi jas -vcl +kAw vpe aAI -riL +lRA wwc -riL +lRA aAI -cXI +aIt vpe -ejg +amu jas nQu -wbo +bWv jas cpy cpy @@ -71743,33 +71743,33 @@ cpy cpy cpy tiQ -qlY -tGa -tGa +rPP +rIP +rIP dOa -kVS -dHL +gev +nVY dOa -pOg -dpX -xuj -xuj -sod -xuj -xuj -xuj -qtB -xuj -xuj -qtB +iEW +bot +bYs +bYs +rZB +bYs +bYs +bYs +dfo +bYs +bYs +dfo saC saC saC saC tiQ -rZk -hza -fzy +xMI +amJ +gHb saC saC saC @@ -71781,111 +71781,111 @@ saC saC saC saC -dUh -yac -jht -jht -jht -jht -jQu -jht -jht -hEN +vFh +wRK +cNW +cNW +cNW +cNW +sSe +cNW +cNW +iiD saC saC saC saC -sWI +eOx kwg kwg saC kwg -bra +laK aYd -qWh +gZo kwg kwg kwg -bra +laK kXY -jIF -iKV +hVf +vSI kwg iZS -hSd -bpc -ozH +kCL +uEm +taA kXY -iCW +qSf oUq beB -jul -jul -jul -jul +lzn +lzn +lzn +lzn beB beB beB sMY -gfR -uAi -uAi -qTS -aJs -wQm -rqL +pgO +blH +blH +hFD +pEU +iHc +bVb wrC wrC wrC -eGV +eMR wrC -fvi +jZQ mJS -yaO +fRZ sjy -vMG +vWm jpc sAU den xDP awK mqH -eoj +aMx sjy -gKf -jYM -wgG -wHM -mZz +rTs +eKl +xTB +wSf +gqo xxs -wGW +eVC sjy -hwX +kvd asF oLd wTr tfi -eaT +rRz lVp -eEg +rHP wSt -pni +qcq yca gXT -gzz -slZ -oEt +vnE +uYI +cjI vXc uWD xkO -xyz -iib +jdH +qGm qJN vXc vHN yiM vXc -bTO +jUs jmG ubJ ubJ @@ -71897,7 +71897,7 @@ ldC nbn kaV izz -pEL +yfk ild jwM qsr @@ -71906,53 +71906,53 @@ vVS ild rGD jmG -hMM -ktF +mXP +pfZ vVS ild -uwO -ktF +fue +pfZ jwM jwM -uwO -uwO +fue +fue fhu brk jmG -ugf +dNW mPr mPr -rWK -hbz -uOu +jnA +vci +mrQ qEk oLa -uOu -hbz -pTb -uim +mrQ +vci +llt +tdJ lty aPe ylo ylo -fYN -uKI +pmm +qZl ylo ylo tyc xSQ -dEq +rSv jas -iOL +eup eso jas -oGv +rMW wwc -riL +lRA jas -ocA +kBh eso -eyR +uED jas nQu nQu @@ -71970,33 +71970,33 @@ cpy cpy cpy tiQ -fsd -tGa -tGa -iyd -tGa -tGa +cRW +rIP +rIP +gzI +rIP +rIP dOa -oXT -dpX -xuj -xuj -sod -qtB -qtB -qtB -oxo -tmE -tmE -sod -hZh +hoj +bot +bYs +bYs +rZB +dfo +dfo +dfo +aPd +tvW +tvW +rZB +nIn saC saC saC saC -tGr -ppg -wLX +cum +cLr +mdR saC saC saC @@ -72008,100 +72008,100 @@ tiQ saC saC saC -hJK -eIO -eIO -jsJ -jsJ -eIO -kmh -eIO -eIO +sTc +aUE +aUE +tvd +tvd +aUE +bnc +aUE +aUE saC saC saC saC -thV +qtw kwg mOI pcH pcH pcH -gcq +cUO pco -rsj +tKT pcH sGF pcH -gcq +cUO nMX -qNt -enK +uJM +hHP pcH pcH -unA -xio -kyC +ezZ +awr +iji kXY -fou +cPw oUq -lLM -mnd -gMt -gMt -mnd -sNf +llD +pWF +jzh +jzh +pWF +uRo beB -qbx -fKB -hVD -aeo -mck -jJf -aJs -wQm -rqL -oLb +iNT +jpF +nnw +vzo +xSi +hEo +pEU +iHc +bVb +hjY wrC -eLi -ryW +vuQ +ayW wrC -yhh -njc -cvf +rgF +kPp +pkA sjy -vMG +vWm qGC eSx dsA mqH asz xDP -kZC -idU +pvI +lmB ndb vbX vbX vZy uDb xxs -hGo +rxy sjy -ncU +cDg fJq gZL lxL pli -hmr +oiq lVp -okw +dJG jfO jfO yca jfO qiZ -slZ -oEt +uYI +cjI vXc uWD xkO @@ -72112,7 +72112,7 @@ vXc vHN yiM vXc -bTO +jUs jmG ubJ ubJ @@ -72146,18 +72146,18 @@ ild ild dco jmG -ugf +dNW mPr mPr -rWK -hbz -lbc +jnA +vci +ulP qEk tkf -tqf -hbz -eNI -ugf +kgp +vci +xea +dNW nax uvg cfT @@ -72168,19 +72168,19 @@ ylo oSA jnF mPr -umk +ixi jas -xpp +tff fhl -loI +bvo xcX ueg xcX -loI +bvo kwj kwj cxo -cGu +tmt nQu nQu jas @@ -72197,149 +72197,149 @@ cpy cpy cpy tiQ -kZI -iFp -idZ -idZ -qcC -mWH +cuQ +phO +xVR +xVR +fEJ +fLW cKp -oXT -dpX -xuj -xuj -sod -qtB -qtB -oxo -oxo -xuj -xuj -qtB -xuj -xuj -uTq -oXT +hoj +bot +bYs +bYs +rZB +dfo +dfo +aPd +aPd +bYs +bYs +dfo +bYs +bYs +wfJ +hoj vlq -tGr -ppg -wLX -gCR +cum +cLr +mdR +pZe saC saC saC saC -qNZ -oBQ +bXf +gqV tiQ tiQ tiQ saC -uDN -ecl -rHe +tLW +mMO +pJa saC saC -mRI -hCn -ecl -ecl +pgK +hVV +mMO +mMO saC saC saC -ndt -thV +iDd +qtw kwg jkJ kwg -uWv -nCM -bpc -pEK -bpc +sWq +foD +uEm +poW +uEm saC saC saC -efU -qfM -jIF -eiE -xIS +lFP +vFI +hVf +qpx +msl kXY -xtM -gap -kyC +ogc +jnR +iji kwg -vkN -vfe -nxk +mxN +bmM +dRY xDu xDu xDu raI -nxk -wxE -gLp -wQm -qTS -qTS -wQm -wQm -aJs -wQm -fHa -rqL -vKT -qDM -fcK -ixa -mun +dRY +kSP +vmt +iHc +hFD +hFD +iHc +iHc +pEU +iHc +xWj +bVb +clj +bZa +dPh +oaZ +wzY mLO -yhh +rgF sjy -jvN +bAF uUj kUo sjy -xvI +shl lpY qGC -nAR +kpX sjy -hGo -hGo -xMJ -wGW -wGW -hjh -eUn +rxy +rxy +vOV +eVC +eVC +tDv +xYe sjy -tHW +oju lxL hnk xGf xGf -oOM -pEJ -cqE +asR +sjz +rBP yca jfO jfO gLg -ufY +fHr lVp -oEt +cjI vXc uWD xkO -rKk -iib +tYS +qGm qJN vXc eLG yiM vXc -bTO +jUs jmG jmG dUW @@ -72355,36 +72355,36 @@ ild ild ild jwM -ebd +kcy uKS jwM ild -ebd +kcy eHF ild -amE -uwO +sWj +fue ild ild -uwO -uwO +fue +fue jwM ild gwP psF jmG -ugf +dNW mPr mPr -rWK +jnA wIr wIr -boE -osf +xkf +sAI wIr wIr -qys -ugf +hmI +dNW nax nax uvg @@ -72395,18 +72395,18 @@ jhe jnF mPr mPr -umk +ixi jas -xpp +tff vjr jas -riL +lRA wwc -oGv +rMW jas jas jas -oFv +wah jas nQu nQu @@ -72424,46 +72424,46 @@ cpy cpy cpy tiQ -dbg -kMO -ksD -ksD -ksD -lxP +cpA +tWQ +tDx +tDx +tDx +uwI cKp -oXT -dpX -xuj -xuj -oxo -oxo -saC -saC -oxo -qtB -qtB -rIi -eVx -eVx -nrK -gFF +hoj +bot +bYs +bYs +aPd +aPd +saC +saC +aPd +dfo +dfo +aLQ +fUP +fUP +bEl +kBN oVt -pKi -ppg -wLX -gCR +aKd +cLr +mdR +pZe saC lmY -qQF -hza -noB -aWK -nZI -riw +lhx +amJ +wHX +voq +qXe +jGv tiQ tiQ -hYb -lTI +qHm +jqj tiQ saC saC @@ -72474,14 +72474,14 @@ pwX qjG saC oUq -ndt -thV +iDd +qtw iZS jkJ -dYD -iov -ndt -cbv +gOl +vPa +iDd +mxj oUq bUN saC @@ -72491,38 +72491,38 @@ saC saC oUq mVm -yfJ +bvJ kXY -gXZ -pXo -bfH +uYw +gYo +aOZ pcH -rsj -lyE -rfM +tKT +ykz +uSO lxN lxN lxN fJg -pLO -nIc -dUk -nES -rXw -pIp -pIp -nES -ckl -qTS -ely -dUk -url -pdP -wma -sih -cvf +uOr +iJU +fPL +rQZ +xll +dNa +dNa +rQZ +hPW +hFD +mEX +fPL +jnZ +xGo +kRN +muf +pkA mOE -yhh +rgF sjy sjy sjy @@ -72531,7 +72531,7 @@ sjy lhK nKo mqH -aAK +rXA sjy sjy sjy @@ -72542,20 +72542,20 @@ sjy sjy sjy kqb -piU +gke bTT srJ lxL -vsJ -woQ -vnB +bol +tuO +pUn yca yca wSt tjV -mjv +fBW lVp -oEt +cjI vXc uWD xkO @@ -72566,7 +72566,7 @@ vXc vXc yiM vXc -pdG +waC rMF jmG jmG @@ -72582,11 +72582,11 @@ ldC ldC ldC iqw -coT +rcS haY ldC ldC -coT +rcS ldC ldC uqa @@ -72600,18 +72600,18 @@ ldC jtg liN jmG -ugf +dNW mPr mPr -rWK +jnA wIr wIr -stQ -osf +lgl +sAI wIr wIr -pTb -ugf +llt +dNW nax nax nax @@ -72622,20 +72622,20 @@ mPr mPr mPr mPr -umk +ixi jas -buZ +nnX aNr aAI -riL +lRA wwc -riL +lRA aAI -gsb +aRG eso vpe jas -wbo +bWv nQu jas cpy @@ -72651,45 +72651,45 @@ cpy cpy cpy tiQ -qlY -hDU -ksD -ksD -ksD -pXZ +rPP +kqv +tDx +tDx +tDx +igl cKp -dmi -dpX -vtR -qtB -oxo -saC -saC -saC -cED -oxo -qtB -knb -vtR -qtB -uTq -oXT +kTE +bot +vum +dfo +aPd +saC +saC +saC +fmz +aPd +dfo +fDk +vum +dfo +wfJ +hoj pwX -qPw +hrJ qjG -wLX -gCR -fjJ +mdR +pZe +bbr ujg -stk -iHq -nFe -fzy -noB -tGr -tGr +odn +pJR +vsK +gHb +wHX +cum +cum tiQ -utr +pJH seF tiQ saC @@ -72701,13 +72701,13 @@ qjG qjG pwC oUq -oED -yhm +kLB +bvp iZS jkJ -xNK -ndt -ndt +kDy +iDd +iDd oUq oUq oUq @@ -72718,38 +72718,38 @@ saC oUq oUq mVm -akO +wnZ kXY -hwv -kvs -xHH +vEu +xqz +raL kXY -bng +orR oUq -lLM -mnd -gMt -mnd -jge -sNf +llD +pWF +jzh +pWF +pYH +uRo beB -tSu -xrO -yaI -uYw -sub -rtP -aEh -tpp -lCb -wQS +xYp +xac +ixC +hFQ +sZl +oci +paG +xjD +cRx +lwP wrC -oWz -mWW +sdI +pUx wrC -cvf +pkA mOE -cvf +pkA sjy sjy sjy @@ -72758,31 +72758,31 @@ sjy lhK azl mnU -upd +oEM sjy -ula -anr -eHP -sTc -dlj -sob -nza +jGy +vKy +bLi +xfV +tyO +rVf +siO sjy -gdD +qds lxL hnk lxL lxL -vsJ -pEJ -fZK +bol +sjz +auJ jfO xXo lNs jfO -tAy +lEq lVp -oEt +cjI vXc hxn eOE @@ -72794,7 +72794,7 @@ yiM yiM vXc vXc -pdG +waC rMF jmG upr @@ -72823,22 +72823,22 @@ xPa iwF jwM ild -uwO -rNA -dPM +fue +wPa +eSZ jmG -ugf +dNW mPr mPr -rWK -hbz -tqf +jnA +vci +kgp xgH tkf -tqf -hbz -pTb -ugf +kgp +vci +llt +dNW mPr nax nax @@ -72849,20 +72849,20 @@ mPr mPr mPr mPr -xih +kcF jas -bmb +bqm vpe aAI -riL +lRA wwc -riL +lRA aAI -mrC +uUz vpe -qCI +gQK jas -wbo +bWv nQu jas cpy @@ -72878,62 +72878,62 @@ cpy cpy cpy tiQ -qlY -hDU -ksD -ksD -pqw -xim +rPP +kqv +tDx +tDx +hob +uCe dOa -gUG -dpX -xuj -xuj -oxo +nuV +bot +bYs +bYs +aPd saC saC saC saC -oxo -oxo -knb -xuj -xuj -uTq -oXT +aPd +aPd +fDk +bYs +bYs +wfJ +hoj pwX -qPw +hrJ qjG -wLX -gCR -fjJ +mdR +pZe +bbr ujg -qNZ -ppg -wLX -efh -nFe -noB -tGr -tGr -xRj -tHO +bXf +cLr +mdR +pPT +vsK +wHX +cum +cum +uHj +xLo saC saC saC -ech +idF yaj qjG qjG -iKZ +iZe pwC oUq -ndt -lFh -spH -rgs -xNK -ndt +iDd +spR +fsh +ifN +kDy +iDd oUq oUq oUq @@ -72945,19 +72945,19 @@ oUq oUq oUq oUq -rMK +vvu oeU kXY aYd kXY -iCW -wtE +qSf +bId oUq beB -jul -jul -jul -mnC +lzn +lzn +lzn +sSz beB beB beB @@ -72967,49 +72967,49 @@ beB beB beB beB -ctg -aWR +uXA +eHW wrC sgT sgT sgT sgT -cvf +pkA mOE -cvf +pkA sjy -woM +pje aPN -bCA +tIW sjy lhK azl qGC -iAI +ppf sjy -cai +eiF bRP xxs xxs szY wYE -aUi -wFI -oOM +vyB +fBV +asR xGf hnk lxL xGf -oOM +asR lVp -fNQ +dWf yca xXo lNs yca qiZ -slZ -oEt +uYI +cjI vXc yiM yiM @@ -73022,14 +73022,14 @@ vXc vXc vXc vXc -bTO +jUs jmG biN -uwO -hVY +fue +pBI ild -uwO -uwO +fue +fue uKS jwM ild @@ -73050,22 +73050,22 @@ iwF xDD jwM amY -eOG -tGE -aDP +fmf +ity +quJ jmG -ugf +dNW mPr hFX -rWK -hbz -uOu +jnA +vci +mrQ xgH tkf -uOu -hbz -pTb -ugf +mrQ +vci +llt +dNW mPr nax nax @@ -73075,21 +73075,21 @@ mPr mPr mPr mPr -bkA +rIW mjz jas -pow -kvo +cza +wZL jas -oGv +rMW vjr -riL +lRA jas -iCA -pBN -okp +edK +mML +eXf jas -uYk +tms nQu jas cpy @@ -73105,138 +73105,138 @@ cpy cpy cpy tiQ -isz -gZQ -vWQ -vWQ -afo -lkL +srV +nFo +cEY +cEY +qPe +vki dOa -gUG -dpX -xuj -xuj +nuV +bot +bYs +bYs saC saC saC saC saC saC -oxo -knb -xuj -xuj -uTq -oXT +aPd +fDk +bYs +bYs +wfJ +hoj vlq -qPw -ppg -wLX -gCR -aYV +hrJ +cLr +mdR +pZe +hIT ujg -fWc -udL -bEC -bEC -bEC -bxj +jxf +rcC +qeC +qeC +qeC +bXb xYD kry -gHh -tHO +gjM +xLo saC saC saC -wxc +ahy yaj qjG qjG qjG -wxc +ahy oUq oUq -apg +fud nMX pco -ndD +wtr oUq oUq oUq oUq -qTn -lQU +aIP +gaB oUq oUq oUq -vDD -kTK +tUI +dhY oUq -awq -xIS +eLS +msl kXY aYd nPV -dmM +pgk oUq oUq -gDI -gDI -gDI -gDI -hMa -qwg +rfR +rfR +rfR +rfR +pXa +jeW ahP yjp wrC wrC -wdb -kqo -kqo +aJz +rBG +rBG wrC -dvI -adw -jHE +eHl +dYP +bXN sgT wUL alI sgT -yhh +rgF mOE -cvf +pkA sjy -eXm +fua kRZ sAU qGC jpc azl qGC -eoj +aMx sjy -sls +rYh dZx uDb eUh uDb uDb -anr -wFI -mFX +vKy +fBV +bBZ pli oLd ndf xGf -oOM +asR lVp -eys +jXy yca gXz eAC yca -dcQ -slZ -oEt +kjM +uYI +cjI vXc vXc yiM @@ -73249,14 +73249,14 @@ vXc vXc vXc yiM -bTO +jUs jmG oQN -uwO -sMq -dKD -uwO -qdp +fue +jzf +ceW +fue +wmp vVS jwM gwP @@ -73281,18 +73281,18 @@ ora ild jmG jmG -ugf +dNW mPr hFX -rWK -hbz -uOu +jnA +vci +mrQ qEk oLa -uOu -hbz -pTb -ugf +mrQ +vci +llt +dNW mPr mPr nax @@ -73301,23 +73301,23 @@ mPr mPr mPr mPr -dyO +xzQ oaN jas jas jas jas jas -rMw -nyt -ayJ +uPl +qqb +omC jas jas jas jas jas jas -eau +kIP jas cpy cpy @@ -73332,17 +73332,17 @@ cpy cpy cpy tiQ -qlY -tGa -tGa -kwI -qJn +rPP +rIP +rIP +geh +eFR dOa dOa -gUG -upb -sod -sod +nuV +kis +rZB +rZB saC saC saC @@ -73350,61 +73350,61 @@ saC saC saC saC -voq -tmE -tmE -ktB -gUG -saC -qPw -ppg -wLX -gCR -fjJ +lgb +tvW +tvW +uPb +nuV +saC +hrJ +cLr +mdR +pZe +bbr lmY -pCa -qNZ -aWK -muu -rUm -eFZ -wla -tGr -xRj -tQC +gFK +bXf +voq +acW +cha +uQP +gTG +cum +uHj +hXg saC saC saC -wxc +ahy yaj qjG qjG qjG -wxc +ahy saC saC afL -nci -qQx -cDM -cbv +pqt +jDZ +pQy +mxj oUq oUq -bbt -kip -tXj -xEG -gMY -pDm -qfx -plu +pJN +fag +gUc +tzX +wvc +rsj +eWs +qAO oUq oUq -fXh -bSr -nUU -ydL -dFF +wck +roG +abz +mHT +bzg oUq oUq pGh @@ -73413,57 +73413,57 @@ ugV ugV fjr jDO -rQw +bgx wrC wrC -uFH -wqi -uun -oVh +nSX +fPM +lix +bnr uSv -qDM -nqc -omB -cZK +bZa +lPk +fBa +ghQ jPw qgr sgT -yhh +rgF uAa -cvf +pkA sjy -jvN +bAF mqH dsv pcQ sAU asz xDP -kZC -lZg +pvI +xkd ndb jQk sLk nel eUh xxs -viQ +qdo sjy kqb uVy itG -xhc +atQ gaS kqb lVp -kvY +qKA yca gXz eAC jfO -dcQ -slZ -oEt +kjM +uYI +cjI yiM vXc vXc @@ -73476,14 +73476,14 @@ vXc yiM yiM yiM -bTO +jUs jmG qxm -uwO -tEA +fue +xUH wsT -uwO -pXN +fue +nxl liN ild eHF @@ -73504,22 +73504,22 @@ xDD xDD jwM aTm -bEQ -tGE +auI +ity jmG tOo -gsv +iUz hFX hFX -rWK -hbz -tqf -xHm -eyt -uOu -hbz -pTb -ugf +jnA +vci +kgp +hBE +qAK +mrQ +vci +llt +dNW mPr mPr mPr @@ -73527,24 +73527,24 @@ mPr mPr mPr mPr -lHQ +jYa rot jas jas -kVM -sEF -lJz -qqj -riL +tgn +xCs +aGP +kpH +lRA vjr -oGv -wRY -jzY -jdy -wUs +rMW +eNd +bcB +nnE +jPq jas -njq -dPa +pJY +lWp jas jas jas @@ -73559,17 +73559,17 @@ cpy cpy cpy tiQ -qlY -dkS -ufI +rPP +giA +aeY dOa dOa dOa dZs -bsp -dpX -xuj -xuj +pCX +bot +bYs +bYs saC saC saC @@ -73577,15 +73577,15 @@ saC saC saC saC -vBf -xuj -xuj -uTq -deJ +mEh +bYs +bYs +wfJ +uxa saC -qPw -ppg -wLX +hrJ +cLr +mdR saC saC lmY @@ -73595,8 +73595,8 @@ ujg ujg lmY lmY -gPG -bZH +psu +iQZ lmY saC saC @@ -73613,23 +73613,23 @@ saC hXt saC jkJ -oHE -cbv +dnW +mxj oUq oUq -rZJ -qZq +piV +piw kXY xZE kXY xZE kXY -ugk -kro +iTx +tIH oUq oUq oUq -suW +wki oUq oUq oUq @@ -73640,57 +73640,57 @@ ugV ugV ugV jDO -rQw +bgx wrC -xJG -pJF -jyA -kJY -qDM +mHd +uJw +lmT +ksM +bZa wrC -xlt -cXy -cDj +uXy +hVq +oEO sgT wVF alI sgT -yhh -yhh -cvf +rgF +rgF +pkA sjy -jvN -eoj +bAF +aMx mqH sxp ukK azl qGC -vaI +nvq sjy -mTI +iub xxs xxs nrP uDb xxs -jYM -wFI -wpb +eKl +fBV +pSC tiZ dMl -uCx +dbm iDD -cvo +aGs lVp -mQX +vdR yca yca jfO jfO -dcQ -slZ -oEt +kjM +uYI +cjI yiM yiM vXc @@ -73699,10 +73699,10 @@ vXc vXc vXc vXc -cfL -rcU -rcU -rcU +pRt +lHQ +lHQ +lHQ rMF jmG jmG @@ -73718,9 +73718,9 @@ jmG jmG jmG jmG -bDm +eig wZy -eHJ +hlN jmG aZj aZj @@ -73731,22 +73731,22 @@ vXY qPA ild ild -uwO -uwO +fue +fue jmG -ugf +dNW mPr hFX -duG -smL +xhs +iNV wIr wIr -hfW -fJR +vDS +kRT wIr wIr -xZc -xzN +pPY +nRi mPr mPr mPr @@ -73754,12 +73754,12 @@ mPr mPr mPr mPr -umk +ixi jas jas -xur -vez -ogI +snC +gno +ayV xPg vpe eso @@ -73768,12 +73768,12 @@ eso eso uMl vWI -jdy +nnE aAI -ibX +qqj wIu -hfZ -mMx +tvV +gVy jas cpy cpy @@ -73786,17 +73786,17 @@ cpy cpy cpy tiQ -nAh +ils dOa dOa dOa -fIZ -xcT +kWo +fmT dZs -gUG -bjr -xuj -xuj +nuV +mzb +bYs +bYs saC saC saC @@ -73804,30 +73804,30 @@ saC saC saC saC -knb -xuj -xuj -uTq +fDk +bYs +bYs +wfJ saC saC -qPw -ppg -wLX +hrJ +cLr +mdR saC saC saC saC -tGr -tGr -tGr -pEV -tGr -qPw -tGr +cum +cum +cum +rEq +cum +hrJ +cum saC saC saC -bwB +pzU qjG qjG yaj @@ -73837,22 +73837,22 @@ saC saC saC bUN -thV +qtw kwg jkJ -xNK -cbv +kDy +mxj oUq oUq oUq -sLK +fuW kXY wwG hCH hCH mzX har -wcx +sgX oUq bYZ kVO @@ -73867,57 +73867,57 @@ fjr ugV fjr jDO -rQw +bgx wrC -wyl -oVh -oVh -qDM -sdt +iMj +bnr +bnr +bZa +kgL wrC -qRR -sRD +cmD +lEi wrC sgT sgT sgT sgT -huA -huA -huA +jvz +jvz +jvz sjy sjy -rnk -nBR +fTB +xyb qpq qGC bmj mqH -seq +sZh sjy -sxb +but mHo xxs mrM uDb mHo -dun -wFI +hod +fBV egW bBI -akg +nsS sqQ qiN nBe lVp -eyq -lpo +aQC +nxI tjV yca -aKW -mkP +xdM +pZX lVp -oEt +cjI vXc yiM yiM @@ -73925,33 +73925,33 @@ yiM yiM yiM vXc -cfL +pRt rMF jmG -ebd -dEU +kcy +gkc jmG jmG jmG -jIq -kTb +phd +czz jmG -kaz -oXs -uvQ +igP +sUo +gdP jmG -bWj -oXs -gFn -xCn +vWD +sUo +kZc +iwS wZy jmz uTh -pgo -ppW -jCV -jCV -iKe +sKE +uiR +wXM +wXM +sIj jmG jmG jzF @@ -73961,29 +73961,29 @@ jwM ild meb jmG -ugf +dNW mPr -lHQ +jYa bYV wIr wIr -kcq -oMf -pTQ -vzI +reG +vUh +gAd +yhc wIr wIr -iAw -tDs +mzs +foZ mPr mPr mPr mPr mPr nax -umk +ixi jas -qdq +fbn vpe vpe sVJ @@ -73995,12 +73995,12 @@ eso eso eso vWI -jdy +nnE aAI -qKW +xtq vpe uEE -lTK +dEg jas cpy cpy @@ -74013,48 +74013,48 @@ cpy cpy cpy tiQ -qlY -hDU +rPP +kqv bIr -ksD -ksD -vaR +tDx +tDx +smm dZs -oXT -dpX -xuj -xuj +hoj +bot +bYs +bYs saC saC saC saC saC saC -qtB -knb -qtB -qtB -uTq +dfo +fDk +dfo +dfo +wfJ saC saC -qPw -ppg -hbh -nFe -ouN -fzy -fzy -fzy -fzy -fzy -gPx -icd -gtk -fzy -saC -saC -eBl -noB +hrJ +cLr +xIe +vsK +jjY +gHb +gHb +gHb +gHb +gHb +pWM +peT +yag +gHb +saC +saC +eco +wHX qjG qjG yaj @@ -74064,22 +74064,22 @@ saC saC saC bUN -ixu +fAr kwg jkJ -xNK -ivi +kDy +wcf oUq oUq -pPD -kyC +xHM +iji aVj hCH hCH tpV kXY har -bpV +yib oUq xQq kVO @@ -74094,92 +74094,92 @@ fjr fjr fjr jDO -rQw +bgx wrC wrC wrC -kfg +pCB wrC wrC wrC -qKy -kNv -oLb -lDV -xIT -omJ -fsx -xqL -bYw -bYw +lmt +hcN +hjY +fEv +uvW +irg +lTC +vUv +chX +chX sjy sjy sjy -vJB -mKc -gJo -pOD -hSY -omg +rhd +hGc +xSR +aJx +brv +sKd sjy -oBr -nll -uwZ -nXe -oBr -nll -qrT +plS +kks +agv +izl +plS +kks +xOI sjy -ssy +gjD ogA oLo efK etx -fGL +bQb lVp lVp -oLs -ucn -rxd -wZR +dbl +fwT +gVH +epu lVp lVp eyc -rcU -rcU -rcU -rcU -rcU -rcU -rcU +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ +lHQ rMF jmG jmG -cdG -cdG -rtj +xuC +xuC +pja jmG -wrk +sme khN -ekg +hha jmG -mqV +pFS jBR -uvQ +gdP jmG -viq +rxa wly dIK -cOX +tBs wZy -gGs +wCg unC -lDa +vNc wdd mFZ qNR ifB -gzJ +ukH jmG jmG ycH @@ -74189,28 +74189,28 @@ piY aDh jmG tOo -yds +mrT tOo wIr wIr -fYJ -bYq +qWD +uFX oqp qzQ -mtY -uSA +dVi +hec wIr wIr tyh -sDp +fnh mPr mPr mPr mPr nax -umk +ixi jas -rPm +sXu vpe vpe kpB @@ -74222,12 +74222,12 @@ vpe eso eso lzB -ant +jUN jas -oxz +aQA sKx vpe -qKW +xtq jas cpy cpy @@ -74240,48 +74240,48 @@ cpy cpy cpy tiQ -qlY -hDU +rPP +kqv bIr -ksD -ksD -vaR +tDx +tDx +smm cKw -oXT -dpX -xuj -vMT -qtB +hoj +bot +bYs +pnK +dfo saC saC saC saC saC -vtR -knb -qtB -qtB +vum +fDk +dfo +dfo saC saC saC -qPw -ppg -wLX -wLX -kkX -hbh -wLX -ecL -xLG -xLG -cwv -wLX -wLX +hrJ +cLr +mdR +mdR +oaC +xIe +mdR +iOB +sFu +sFu +bOx +mdR +mdR saC saC saC saC -grj +fDx pwX pwX uhx @@ -74290,26 +74290,26 @@ vlq saC saC saC -cbv -thV -khi -rgs -xNK -ndt +mxj +qtw +utX +ifN +kDy +iDd oUq oUq -ogH -qZq +yap +piw kXY aVj har qts nMX nMX -jzj -xyU +xuM +xcw raH -fGs +bof sMA oMo oUq @@ -74321,53 +74321,53 @@ fjr fjr fjr jDO -rQw +bgx wrC -wzW -nWE -uzd -bCR -sZF +nkJ +fzi +uNY +fhH +sHl wuY -bIT -qrO -qTS -wQm -qTS -wQm -wQm -qTS -qTS -wQm -dfY +hEl +sZR +hFD +iHc +hFD +iHc +iHc +hFD +hFD +iHc +jPP sjy sjy sjy sjy -uMI -vau +pUS +cqD sjy sjy sjy sjy -nxM -nxM +ecr +ecr sjy -nxM -nxM +ecr +ecr sjy sjy kqb ovr -lAW -tAp +vIp +qlE rRP kqb lVp lVp lVp -pQw -lJA +tQI +iNL lVp kqb kqb @@ -74381,63 +74381,63 @@ rJC wZy jmG jmG -tcD +qEZ bnP wiE -imz +xPd jmG -lZt +rLw wly -aqs +jmK jmG -kaz +igP wly -uvQ +gdP jmG -miN +rby wly -aKm +glZ jmG jmG -lxV +grO unC -bRG +wAd gXc wiE wEW ifB yhi -fqS +akQ jmG jmG -hqw -hqw -hqw +fvl +fvl +fvl jmG jmG wIr -rcp +nbY wIr wIr -kFs -ygs +jEz +iQG fIa iQo tkf fTP -gae -rqD +uOM +iWa wIr wIr -vLe +sEX mPr mPr mPr mPr nax -cHF +hYU jas -ybv +jxe rqP rqP vrW @@ -74449,12 +74449,12 @@ vpe eso eso lzB -rHz +lwb jas -czL +rFe xFv vpe -chs +bRV jas cpy cpy @@ -74467,48 +74467,48 @@ cpy cpy cpy tiQ -dTy -uvd -ksD -ksD -ksD -xOs +ubC +iAs +tDx +tDx +tDx +azV eXe -dmi -dpX -qtB -qtB -qtB -tmE -xuj -xuj +kTE +bot +dfo +dfo +dfo +tvW +bYs +bYs saC -qsj -etk -nfA -xuj -xuj +hOv +sGn +dhe +bYs +bYs saC saC saC -dJj -dIo -xLG -xLG -kYD -xLG -xLG -wLj -wLX -wLX -wLX -wLX +vDj +esD +sFu +sFu +afy +sFu +sFu +hFn +mdR +mdR +mdR +mdR saC saC saC saC -wLX -hbh +mdR +xIe qjG qjG yaj @@ -74517,23 +74517,23 @@ saC saC saC tTv -pNM -sWI +cfV +eOx kXY aYd -osO -lfN +rYQ +nBh tTv oUq oUq -fJh -xkw -xIS -xIS -tfw -iCW -tMn -dfX +iJe +aME +msl +msl +klH +qSf +gkK +mrG oUq kVO pGQ @@ -74548,81 +74548,81 @@ fjr fjr fjr jDO -rQw +bgx wrC -wzW -uun -gWe -xNq -ugz +nkJ +lix +udy +qkO +kFV uiS -rqL -aJs -fuV -kcn -qTS -wQm -wQm -wQm -qTS -wQm -dfY +bVb +pEU +xBy +yin +hFD +iHc +iHc +iHc +hFD +iHc +jPP sjy -cjA -dlX -anr -xFA -szG -anr -anr -izK -jYM -jYM -anr -dlX -nuF -xai -ffI -wFI -wlu +qjg +lXG +vKy +hUW +jLo +vKy +vKy +wqx +eKl +eKl +vKy +lXG +kTf +iDc +jDV +fBV +dSu fuc pNs lxL dEp -vsJ -otn -nhd -kIU -axF -oOM -tPN +bol +iye +epn +eqm +fGe +asR +tno kqb -cVB -cVB -xCC -xCC +kYX +kYX +mSY +mSY kqb jmG -pPq -cye -ntU -ntU +alv +lJv +agb +agb jmG -kNS +xru wly wiE -ezk +rqI jmG jmG -rLI +sak jmG jmG jmG -sFg +edU jmG jmG wZy -aIi +xhF wZy jmG gOS @@ -74634,37 +74634,37 @@ krm wiE wGJ vNi -rBW +xOe jmG -erQ -wxr -wxr -wxr -mLJ +aYB +pxK +pxK +pxK +xRv jmG -xQv -tqf -irr +kyi +kgp +gBB aee -sGP +oov fTP xgH -eKu -eKu +xdl +xdl tkf fTP -ygs -lik -hbz -xoZ +iQG +ubs +vci +iXW mPr mPr mPr nax nax -cHF +hYU jas -ixb +mTi eso eso eso @@ -74676,12 +74676,12 @@ iqV ixO eso eso -fRQ +pUp aAI -jjp +iOu vjr vpe -xqw +uIg jas cpy cpy @@ -74693,49 +74693,49 @@ cpy cpy cpy cpy -aaJ -hdf -goJ -goJ -goJ -goJ -wcc +lca +ccA +jpw +jpw +jpw +jpw +vDG cKy -gFF -gwn -etk -etk -etk -suT -lJm -eVx -eVx -hJM -qtB -qtB -xuj +kBN +lnD +sGn +sGn +sGn +iKv +cHv +fUP +fUP +jmS +dfo +dfo +bYs saC saC saC tiQ -rZk -ppg -wLX -wLX -kkX -wLX -wLX -kMl -wLX -wLX -wLX +xMI +cLr +mdR +mdR +oaC +mdR +mdR +ePH +mdR +mdR +mdR saC saC saC saC -wLX -ecL -xLG +mdR +iOB +sFu pHT pHT mlE @@ -74745,10 +74745,10 @@ saC tiQ tTv tTv -hVP -hVP -nqZ -hVP +axX +axX +eCT +axX tTv tTv tTv @@ -74756,8 +74756,8 @@ oUq oUq oUq oUq -aOQ -djN +mlN +poI oUq oUq oUq @@ -74775,27 +74775,27 @@ fjr rxI fjr jDO -rQw +bgx wrC wrC -vka -eBw -wqy -wpS -nDH -tng -hkc -vUz -wQm -aeo -mck -jJf -wQm -wQm -wQm -rqL +pXy +gde +bcb +gXN +ibY +cxQ +fer +iUb +iHc +vzo +xSi +hEo +iHc +iHc +iHc +bVb sjy -anr +vKy kOS uDb xxs @@ -74809,48 +74809,48 @@ sLk sLk jQk ndb -itk -sUd -jXL +sel +uCP +gRY sbV ucM cpJ cLi -sRj -xVc -sRj +kMv +wNr +kMv uKa ucM uKa -sRj -xVc -sRj +kMv +wNr +kMv uKa uKa veP -gaT -ogq +xhn +bvM eSY tPs tPs -hFq -auX +hQS +kFI grP jze grP grP -auX +kFI xNd iYt -hUA -wEV +mkK +cMx ogB sBt grP fiu grP -iSr -hUA +mgQ +mkK cCN kGa wfo @@ -74862,36 +74862,36 @@ grP aVA xNd xNd -auX -hUA +kFI +mkK tPs tPs tPs -hUA -iWH -sVz +mkK +nTu +aNl pOs -sVz -lJP +aNl +mgy vUe hoy qzU -eKu -eKu +xdl +xdl tkf qzQ -vrU -vEr -hbz -pNj +dUe +skF +vci +otN mPr mPr bwd nax -lHQ +jYa mCq jas -aOr +bdy eso eso eso @@ -74899,16 +74899,16 @@ xFv bxr iqV iqV -oda -jVV +xHj +gvU boQ vpe -wUs +jPq aAI -tAk +eho urh vpe -hfZ +tvV jas cpy cpy @@ -74920,72 +74920,72 @@ cpy cpy cpy cpy -aaJ -ksD -ksD -ksD -ksD -ksD -lxP +lca +tDx +tDx +tDx +tDx +tDx +uwI eXe -oXT -dpX -rjp -iKX -iKX -oqq -kFg -vzh -iKX -iKX -iKX -iKX -iKX +hoj +bot +lfT +iQN +iQN +vKk +pWP +ahd +iQN +iQN +iQN +iQN +iQN saC saC saC tiQ saC -ppg -wLX -wLX +cLr +mdR +mdR saC saC -wLX -kMl -wLX -wLX +mdR +ePH +mdR +mdR saC saC saC saC -wLX -wLX -kMl -wLX -wLX +mdR +mdR +ePH +mdR +mdR saC saC saC saC tiQ tiQ -boj -slU -lrC -iru -rmj -dDD -pOH -rBR +wgy +wqc +mRa +cSN +wts +lZF +bHw +vrl tiQ tiQ tiQ bjd -hvg -bYR -fSm -fGG +gaW +nmp +kNb +sBV oUq oUq oUq @@ -75002,27 +75002,27 @@ fjr rxI fjr jXQ -obP +iME ahP wrC wrC -ntd -aDF -gsB +eDe +svm +elK uTv -rqL -smf -qTS -wQm -wQm -wQm -wQm -wQm -wQm -wQm -rqL -fTC -fhX +bVb +dwq +hFD +iHc +iHc +iHc +iHc +iHc +iHc +iHc +bVb +cYp +aGZ xxs eUh eUh @@ -75036,37 +75036,37 @@ gLk uDb uDb dXt -xFA -lHB -xxj +hUW +irB +fKV lxL oLd wTr xDJ -oOM -qaq -vsJ +asR +dLd +bol wTr qQS wTr -vsJ -qaq -vsJ +bol +dLd +bol wTr wTr wTr -vsJ -ezk +bol +rqI qic unC unC -ezk -ebd +rqI +kcy yhi wYe wiE yhi -ebd +kcy wiE wiE qic @@ -75089,36 +75089,36 @@ wiE yhi wdd jAI -ebd -nvw +kcy +pol qic qic qic -nvw -ebd -oXg +pol +kcy +kEH tkf -oXg -ndh +kEH +gEf oqp fTP xgH -eKu -eKu +xdl +xdl oLa cpX -gkb -lmG -mXz -sLB +jbD +tmR +mQL +tLI mPr mPr nax gvG -cHF +hYU jas jas -wIS +qXK eso eso nLy @@ -75126,16 +75126,16 @@ qHr kce jas jas -kjN -qLp -nTE -ihk +pGb +oqF +gLQ +rPr jas jas -iAE +guJ vjr iJZ -hfZ +tvV jas cpy cpy @@ -75147,26 +75147,26 @@ cpy cpy cpy cpy -aaJ -ksD -ksD -ksD -ksD -ksD -xOs +lca +tDx +tDx +tDx +tDx +tDx +azV cKC -dmi -ppI -wlk -oXT -oXT -uMG -bcd -oXT -oXT -oXT -oXT -oXT +kTE +cyF +beG +hoj +hoj +lYo +qOR +hoj +hoj +hoj +hoj +hoj saC saC saC @@ -75179,132 +75179,132 @@ saC saC saC saC -yek -kkX -kkX +ewh +oaC +oaC saC saC saC saC -wLX -wLX -kMl -wLX +mdR +mdR +ePH +mdR saC saC saC saC -xsx -fjJ +jfb +bbr tiQ -boj -qwa +wgy +sIu qjG -fzy -vNe -eqo -noB -sWM -xgw -ufv +gHb +cWP +rgb +wHX +aUF +hVd +bxF tiQ bjd -iGi -pcE -pcE -tdc -pcE +oTv +frJ +frJ +laa +frJ bjd -gLl -gLl -rdV -bSb -gLl -gLl -gLl +eSs +eSs +udq +rFn +eSs +eSs +eSs ien rxI -qSg -aXs -huS +aJl +iun +bKw fjr fjr jDO -nOU +pBi ahP wrC wuY uiS wuY wrC -cEs -aJs -qpb +bKi +pEU +xSt beB -jul -jul -jul +lzn +lzn +lzn beB -pYL -wQm -bIT -lth -xFA +dSN +iHc +hEl +sDT +hUW xxs uDb uDb xtO nPo uDb -anr -jYM -jYM -hvb -odS -anr -eXv -qaA -wFI -oOM +vKy +eKl +eKl +xyj +xoR +vKy +aiB +szN +fBV +asR cHg pNs xGf lxL -vsJ -otn -uWl -vsJ -kPh -oOM -tPN +bol +iye +rgB +bol +tVD +asR +tno kqb -xCC -cVB -cVB -xCC +mSY +kYX +kYX +mSY kqb jmG -wxr -ntU -ntU -cye +pxK +agb +agb +lJv jmG -euE +lRP wly wiE -imz +xPd jmG -mah +oFZ yhi -nvw -lDa +pol +vNc pCm yhi yhi vjR wiE -nvw -nvw +pol +pol wiE yhi wLd @@ -75315,35 +75315,35 @@ yhi wiE yhi gXc -imz +xPd jmG -erQ -wxr -wxr -wxr -mLJ +aYB +pxK +pxK +pxK +xRv jmG -xQv -uOu -irr +kyi +mrQ +gBB wIr -jjs +qgo fTP xgH -eKu -eKu +xdl +xdl oLa fTP -ygs -tEi -hbz -rDD +iQG +dKB +vci +eKZ mPr nax nax nax -umk -rMw +ixi +uPl vpe eso vpe @@ -75359,10 +75359,10 @@ xPF xPF ljr jas -unZ +bAk tOx eso -bgj +xnb jas cpy cpy @@ -75374,24 +75374,24 @@ cpy cpy cpy cpy -aaJ -ksD -ksD -ksD -fVm -vWQ -enY -tiQ -sdj -kLE -kLE -kLE +lca +tDx +tDx +tDx +rgV +cEY +wKC +tiQ +hBc +lor +lor +lor jEu nTl -kBp -bSR -bSR -bSR +fCz +fXK +fXK +fXK nTl jEu saC @@ -75406,90 +75406,90 @@ saC saC saC saC -kMl -wLX -wLX -wLX +ePH +mdR +mdR +mdR saC saC saC -kkX -kkX -uXd -lpb +oaC +oaC +lSd +pNj saC saC -gpb -cgy -tGr +aYE +hzY +cum xQc xQc xQc -fmN +xry ehO qjG -wLX -wLX -nFe -rwl -kWr -lLw +mdR +mdR +vsK +fcQ +hIm +kBr tiQ bjd pqQ -onR -iym -tdc -pcE +iVb +swE +laa +frJ bjd -gLl -dxE -azo -azo -mdo -nYd -gLl +eSs +jxb +mgs +mgs +eRz +fak +eSs ien ien -wjG -oEL -atd +mAH +laT +xgP fjr fjr jDO fjr -nOU -gDI -gDI -gDI +pBi +rfR +rfR +rfR ahP wrC -iQK -aJs -wQm -wQm -wQm -qTS -qTS -wQm -wQm -qTS -skJ +bhq +pEU +iHc +iHc +iHc +hFD +hFD +iHc +iHc +hFD +lRD sjy -jYM +eKl xxs uDb kBB nrP xxs -anr -nfX +vKy +rAe sjy -nxM -nxM +ecr +ecr sjy -nxM -nxM +ecr +ecr sjy sjy kqb @@ -75501,8 +75501,8 @@ kqb kqb kqb kqb -pGz -jFt +kdD +unn kqb kqb kqb @@ -75516,12 +75516,12 @@ wZy wZy jmG jmG -eOF +fpQ wly yhi -imz +xPd jmG -imz +xPd oet yhi onX @@ -75534,43 +75534,43 @@ vMu wiE yhi vNi -kGQ -jlt -lDa +bZT +jih +vNc gXc yhi wiE wiE hft -hmB +fpx jmG jmG -hqw -hqw -hqw +fvl +fvl +fvl jmG jmG wIr -rcp +nbY wIr wIr -uYv -gae +poB +uOM spJ oLa oLa fTP -gae -rnx +uOM +cqE wIr wIr -ugf +dNW mPr nax nax nax -umk -rMw +ixi +uPl vpe eso eso @@ -75578,18 +75578,18 @@ eso aTj vpe jMv -poq +gnX tzd -jRz -rXf -fkX -ghq +cVf +rTd +nYr +jRB tzd jas -vgl +dhy lTQ nQG -qgC +qVK jas cpy cpy @@ -75601,25 +75601,25 @@ cpy cpy cpy cpy -aaJ -ksD -ksD -fPk -thm -tGa -tGa +lca +tDx +tDx +ntt +nBE +rIP +rIP tiQ tiQ tiQ tiQ tiQ tiQ -vjp -vnT -tqO -vjp -vjp -vjp +bwE +wbM +xkJ +bwE +bwE +bwE tiQ tiQ tiQ @@ -75632,55 +75632,55 @@ saC saC saC saC -lpb -kMl -wLX -wLX -wLX +pNj +ePH +mdR +mdR +mdR saC saC -rJt -wLX -wLX -bhY +uoG +mdR +mdR +bfq saC saC saC -dCS -aWK -tGr +vca +voq +cum qjG -fjJ +bbr xQc -fjJ -fjJ +bbr +bbr qjG -wLX +mdR qjG qjG -kMl -gCR -oVw +ePH +pZe +djn tiQ bjd qEQ lYK hvh pqQ -pcE +frJ bjd -gLl -ipM -cBt -bLt -sTV -nYd -gLl +eSs +jEm +uvY +fvR +jEH +fak +eSs ien rxI -hfa -qoA -auM +dcr +uba +gmm fjr fjr jXQ @@ -75689,27 +75689,27 @@ fjr ugV ugV ugV -rQw -huA -bIT -smf -wQm -wQm -yjN -gXy -jJf -wQm -wQm -qTS -wCe +bgx +jvz +hEl +dwq +iHc +iHc +sNG +xzv +hEo +iHc +iHc +hFD +qKE sjy -yeE -pEC +nkl +kpY uDb uDb xtO uDb -anr +vKy sjy sjy ape @@ -75719,36 +75719,36 @@ dXI kRQ uVI sjy -uoK +vCw xGf pNs kVV xGf -lvh +kCt kqb -kyF -vQD -tjI -hpC -wmG +sen +umE +sCZ +hWA +tjp kqb kqb xXg xXg xXg -oxg -oxg -oxg -oxg -oxg +mBd +mBd +mBd +mBd +mBd xXg jmG jmG -rPV -qMM -sJt +gRc +wKU +sch jmG -fAu +ouZ yhi yhi yhi @@ -75761,43 +75761,43 @@ wiE tex yhi yhi -eDO +fjI qic -lDa +vNc wdd yhi yhi xPK -wfF +xeN jmG jmG -tHb -gJJ +rRM +pLS opQ -gJJ -gJJ +pLS +pLS jmG xzK -ttb +dsZ xzK wIr wIr -wrJ -tIL +vDb +xkt hoy afr -kka -wxN +fwC +rmx wIr wIr xzK -xqC +dXK fWG uwT uwT uwT -mGF -rMw +exl +uPl vpe vpe eso @@ -75805,16 +75805,16 @@ vpe aTj vpe crT -jNx -qaO -fvP -ecF -ecF -uMu +iLB +jWN +fcb +wKf +wKf +omE tzd jas jas -czk +ipy qsN aAI jas @@ -75828,12 +75828,12 @@ cpy cpy cpy cpy -aaJ -fPk -vWQ -enY -rQu -tGa +lca +ntt +cEY +wKC +nRS +rIP tiQ tiQ tiQ @@ -75841,12 +75841,12 @@ hBg hBg hBg tiQ -nns -nns -dmD -nns -nns -nns +cDk +cDk +wHl +cDk +cDk +cDk tiQ dgb fLK @@ -75859,50 +75859,50 @@ saC saC saC saC -lpb -kMl -wLX -wLX -wLX -saC -rJt -wLX -wLX -wLX -kMl -rJt -saC -vSX -waa -tGr +pNj +ePH +mdR +mdR +mdR +saC +uoG +mdR +mdR +mdR +ePH +uoG +saC +xrg +lOc +cum qjG qjG -fjJ +bbr xQc xQc -amR -tNM -srH -wLX +jMV +rbp +mEH +mdR acD -kMl -gCR -cpf +ePH +pZe +lCV tiQ bjd qEQ lYK hvh pqQ -pcE +frJ bjd -gLl -mCb -jQW -mXj -sLq -azo -gLl +eSs +ugb +cwl +sbP +dyj +mgs +eSs ien ien rxI @@ -75916,28 +75916,28 @@ vwi vwi vpa ugV -rQw -huA -glT -smf -qTS -wQm -wQm -wQm -wQm -wQm -wQm -wQm -wCe +bgx +jvz +hiT +dwq +hFD +iHc +iHc +iHc +iHc +iHc +iHc +iHc +qKE sjy sjy -umS +koR xxs uDb lui uDb -anr -wFI +vKy +fBV kpP iXT pLT @@ -75946,85 +75946,85 @@ flI gMb nOB bAe -vsJ +bol bDR pNs pli lxL -vsJ +bol pGl -kyF -eLT -hpC -eLT -bGJ +sen +cLa +hWA +cLa +dKx kqb kqb kqb xXg -mZi +qnL tTD tTD tTD tTD tTD -rWN +nCh xXg jmG -pYg -dEU +qCv +gkc jmG jmG jmG -qfR -loo -qFa +qxQ +aqS +jwn jmG -miN -miN -nBN -wfF +rby +rby +wZb +xeN woy yhi rlV tex -unE +dFN xMX -wsR +qpn yhi wdd -dEZ -dEZ +rET +rET jmG jmG -hVY +pBI aVX meb meb meb aVX jmG -pue +iZT fWG -etK +oGP xzK wIr wIr -ozY -ygs -rpw -tNF +pKA +iQG +oMQ +bUA wIr wIr teD -xqC +dXK gme sMN sMN sMN sMN -xyR -oFo +skZ +llB kwj wiU lWf @@ -76032,18 +76032,18 @@ lWf mOy vpe kZs -ayJ -qEo -aKd -aKd -aKd -qEo +omC +vwe +fPQ +fPQ +fPQ +vwe tzd jas -bxO +rfH xFv eso -bxO +rfH jas cpy cpy @@ -76055,81 +76055,81 @@ cpy cpy cpy cpy -aaJ -enY -uCb -tGa -uNv -tiQ -tiQ -kxT -kxT -kxT -kxT -vjp -vjp -vjp -vjp -nIT -jDD -jDD -jDD -jDD -jDD -icA -tqO -saC -saC -tiQ -tiQ -saC -saC -saC -lpb -lpb -kMl -wLX -wLX -wLX -kkX -wLX -ecL -xLG -xLG -eGp -xLG -lTw -rkt -tGr -tGr -mso -mzH -fjJ -fjJ -gkB -tvK -amR -mln -xnT -bqR -tXD -fhq -tGr +lca +wKC +ozN +rIP +oEV +tiQ +tiQ +mJi +mJi +mJi +mJi +bwE +bwE +bwE +bwE +pYa +jqW +jqW +jqW +jqW +jqW +wYA +xkJ +saC +saC +tiQ +tiQ +saC +saC +saC +pNj +pNj +ePH +mdR +mdR +mdR +oaC +mdR +iOB +sFu +sFu +xhi +sFu +gtL +eew +cum +cum +bGY +vjm +bbr +bbr +aLW +xre +jMV +sFj +nfo +pUm +rkJ +meK +cum tiQ bjd qEQ lYK hvh pqQ -pcE +frJ bjd -gLl -caR -jQW -jDB -sLq -azo -gLl +eSs +oqI +cwl +wsd +dyj +mgs +eSs ien ien ien @@ -76138,33 +76138,33 @@ ien ien ien ien -efQ -nUX -sSY +qAV +wNW +xmg hNR -trT +uAV rYi wrC -qYH -iqN -ikK -rqL -rqL -wQS -dfZ -dfZ -dfZ -vJN +aPc +gzA +xus +bVb +bVb +lwP +gzi +gzi +gzi +jcw sjy sjy sjy -lzg +vQE xxs uDb xtO qDr -jYM -wFI +eKl +fBV mty mvB pVA @@ -76173,33 +76173,33 @@ jvk rLx nOB bAe -oOM +asR xGf pNs lxL xGf -oOM -otn -xyM -lmn -hpC -eLT -eLT -fXw -sjF +asR +iye +dYM +hCz +hWA +cLa +cLa +wcM +nyN kqb kqb xXg -kZU +eOs tTD rnB rnB tTD tTD -rWN -oxg -lTW -oxg +nCh +mBd +fwP +mBd wIi vNk vNk @@ -76211,47 +76211,47 @@ uIZ wpn vNk vNk -hmB +fpx xPK yhi yhi saz -iCB +avX qot yhi -lwp +irb jmG jmG jmG -uwO +fue brk rdF ild jwM -oMy -gBO +gZW +beQ jmG -pue +iZT fWG fWG -etK +oGP xzK wIr wIr -rkp -pLp +jeE +gxd wIr wIr xzK -xqC +dXK uwT tKe uwT uwT uwT uwT -mGF -rMw +exl +uPl vpe vpe eso @@ -76259,18 +76259,18 @@ lNl tcK vpe vpe -psJ -qEo -xgx -qEo -qEo -qEo +eKB +vwe +lco +vwe +vwe +vwe tzd jas -hfZ +tvV xFv nQG -iYl +nlj jas jas cpy @@ -76282,30 +76282,30 @@ cpy cpy cpy cpy -aaJ -tGa -ybV +lca +rIP +vvy tiQ tiQ tiQ -xer -kxT +jqv +mJi cTX iZI iZI iZI svW -qno -bob -owK -bob -fBW -eXa +rEl +rzg +gka +rzg +mKd +quW svW -abq -jbC -izA -hdc +aXC +hqS +oJB +reM saC saC tiQ @@ -76313,50 +76313,50 @@ tiQ tiQ saC saC -lpb -mrR -xLG -xLG -xLG -kYD -xLG -cwv -wLX -wLX -wLX -wLX -xCg -lbi -fjJ +pNj +mtp +sFu +sFu +sFu +afy +sFu +bOx +mdR +mdR +mdR +mdR +cTb +jvJ +bbr qjG qjG -tGr +cum mPY -fjJ +bbr xQc xQc -kAz -nQW -jXt -kkX -sNZ -hrA -wkl +fyJ +fZm +odA +oaC +mMW +rKw +rxU tiQ bjd -iGi +oTv lYK hvh -iGi -pcE +oTv +frJ bjd -gLl -mCb -xab -qXa -sLq -azo -gLl +eSs +ugb +eox +qeB +dyj +mgs +eSs ien ien cpy @@ -76367,31 +76367,31 @@ ien rME nQQ qSH -sjn +swp umR -kXd +iwz wKg wKg wKg -cVz -opG +dEG +itN wKg wKg wKg -tZE -tZE -tZE -tZE +vEs +vEs +vEs +vEs sjy sjy sjy -bzr +oNs uDb uDb xtO uDb -jYM -wFI +eKl +fBV eDc jjP biL @@ -76401,23 +76401,23 @@ iAU wiI sjy kqb -ufV +xsk nfP wob lxL -vsJ -otn -bGJ -hpC -xfE -cGk -hpC -acG -hpC -uvV +bol +iye +dKx +hWA +xXs +kzx +hWA +aoc +hWA +oTw kqb xXg -mZi +qnL tTD tTD rnB @@ -76427,19 +76427,19 @@ tTD rnB kcN rnB -xlF +hsD vNk vNk -jKj -mwn -nZB +cus +rgI +xTP vNk -aLZ -gqO -qdz +cca +dxh +rTA vNk vNk -wfF +xeN yhi wiE wly @@ -76447,29 +76447,29 @@ qMo sJI yhi wiE -lIV +fsc jmG -eBk +lGo ild dco -dkW +hBZ jwM liN ild jwM -ebd -pue +kcy +iZT fWG fWG fWG -etK -ttb -ttb -ttb -aXG -osg -osg -buO +oGP +dsZ +dsZ +dsZ +sre +muM +muM +hCx weJ weJ qUh @@ -76477,8 +76477,8 @@ uwT uwT uwT fWG -mGF -ayJ +exl +omC eso vpe vpe @@ -76486,19 +76486,19 @@ aBY vjr vpe vpe -ayJ -uPZ -uPZ -qEo -qEo -uPZ +omC +xUE +xUE +vwe +vwe +xUE tzd jas -api +nEL vZS vpe -qgC -dUe +qVK +vSe jas cpy bMX @@ -76510,29 +76510,29 @@ cpy cpy cpy tiQ -tGa +rIP tiQ tiQ -mYR -kxT -kxT +sLJ +mJi +mJi aLJ dDS iZI iZI svW svW -pyV -abq -pId -abq -abq -lMD +iav +aXC +eya +aXC +aXC +cSX svW svW -pId -abq -abq +eya +aXC +aXC saC saC saC @@ -76541,49 +76541,49 @@ tiQ tiQ saC saC -lpb -wLX -wLX -wLX -kkX -wLX -wLX -wLX -wLX -wLX -wLX -oFu -tGr -fjJ +pNj +mdR +mdR +mdR +oaC +mdR +mdR +mdR +mdR +mdR +mdR +mzY +cum +bbr qjG -tGr -tGr +cum +cum mPY -fjJ -fjJ +bbr +bbr xQc -pSz -waf -mln -wLX -oFu -mcU -cam +oDh +slx +sFj +mdR +mzY +hYa +wQt tiQ bjd pqQ lYK hvh -iGi -pcE +oTv +frJ bjd -gLl -ipM -kVr -eUg -gUr -nYd -gLl +eSs +jEm +scm +nrR +hRh +fak +eSs cpy cpy cpy @@ -76594,57 +76594,57 @@ ien rMR jGa qSH -sjn +swp umR -tGU +mFl wKg wKg -ixG -xRc -hpa -hpa +myo +kTV +pVM +pVM wKg wKg -noF -noF -noF -fXz -fXz -qbj +ylK +ylK +ylK +ppO +ppO +mQI sjy -anr +vKy qDr xxs nrP uDb -viQ +qdo sjy sjy -hlk +dba sjy sjy sjy -pyW +jfX sjy sjy -aKA +blE xDJ nfP wTr xGf -vsJ -otn -eBc -eLT -eLT -lRd -hpC -eLT -cGk -gRb +bol +iye +dOD +cLa +cLa +pMA +hWA +cLa +kzx +aMo kqb kqb -mZi +qnL rnB tTD rnB @@ -76654,19 +76654,19 @@ tTD sTX oCt tTD -xlF +hsD vNk -ilc +hVG ozn xMO xMO -rsb +kWT xMO ovA xMO -beK +oIl wpn -upj +jhB yhi yhi wly @@ -76674,18 +76674,18 @@ wiE wiE onX wiE -aiB -hqw +rhE +fvl jCU -dkW +hBZ ild ild -ktF -amE +pfZ +sWj ild ild -rlm -pue +fZJ +iZT fWG fWG fWG @@ -76704,8 +76704,8 @@ uwT fWG fWG fWG -mGF -ayJ +exl +omC eso eso vpe @@ -76713,19 +76713,19 @@ xAP vjr vpe kZs -uAD +dSn tzd -dgU -nPs -uPZ -dgU +jsR +xpT +xUE +jsR tzd jas -fIc +oKv vjr sTG -fIc -mzg +oKv +aOM jas cpy bMX @@ -76739,8 +76739,8 @@ cpy tiQ tiQ tiQ -kxT -kxT +mJi +mJi aLJ aLJ aLJ @@ -76748,19 +76748,19 @@ dDS iZI fFw iZI -vjp -pyV -vJa -eVI -vjp -abq -lMD -vjp -abq -sNc -pqM -nMJ -ezA +bwE +iav +ybn +oCE +bwE +aXC +cSX +bwE +aXC +vLY +xQk +wOC +lwy saC saC saC @@ -76769,32 +76769,32 @@ saC saC saC saC -lpb -lpb -wLX -kkX -wLX -wLX -wLX -wLX -wLX -wLX -oFu -tGr +pNj +pNj +mdR +oaC +mdR +mdR +mdR +mdR +mdR +mdR +mzY +cum qjG qjG -aWK -ewH -fzy -kSv -fjJ +voq +wNj +gHb +uWJ +bbr xQc xQc -nSs -mln -wLX -oFu -quT +eQc +sFj +mdR +mzY +nFe xQc tiQ bjd @@ -76802,15 +76802,15 @@ pqQ lYK hvh pqQ -pcE +frJ bjd -gLl -ipM -azo -sJy -azo -nYd -gLl +eSs +jEm +mgs +lTn +mgs +fak +eSs cpy cpy cpy @@ -76821,32 +76821,32 @@ ien ien ssh qSH -sjn +swp pRv -cUV -ayb -eOu +qRN +ljY +hQH gIa kRg gIa gIa -oIc -dtk +lLn +enu gIa opl opl opl kEN -ojG -rlJ -fvG +iAa +ceg +qJP ndb vbX tjM ndb -fvG -nzA -twv +qJP +qkI +mZY nLD xen oXQ @@ -76854,24 +76854,24 @@ jQk uMc xxs bAe -oOM +asR xDJ nfP wob xDJ -vsJ -otn -eLT -cGk -hpC -lTE -mhx -hpC -eLT -eLT -lSj +bol +iye +cLa +kzx +hWA +lLV +jSy +hWA +cLa +cLa +nNx kqb -mZi +qnL rnB tTD cpy @@ -76881,9 +76881,9 @@ lzw tTD oCt tTD -xlF +hsD vNk -ilc +hVG ozn ozn eZM @@ -76891,9 +76891,9 @@ xMO eZM xMO ozn -beK +oIl wpn -kaz +igP yhi yhi wYe @@ -76901,19 +76901,19 @@ vMu yhi tex bJZ -sqO +mbJ jmG -nrg +pCe ojy ild ild -uwO -amE +fue +sWj ild jwM -rlm +fZJ xzK -oaB +gJn fWG fWG fWG @@ -76931,10 +76931,10 @@ fWG fWG uje fWG -mGF +exl jas jas -rJD +dRV mNc eso xFv @@ -76948,11 +76948,11 @@ xPF xPF dFz jas -hxs +bgF bUV vpe -fIc -dUe +oKv +vSe jas cpy bMX @@ -76965,8 +76965,8 @@ cpy cpy tiQ tiQ -kxT -kxT +mJi +mJi aLJ aLJ aLJ @@ -76975,19 +76975,19 @@ dDS iZI iZI iZI -vjp -pyV -jRL +bwE +iav +fzH nTl nTl -vjp -lMD -vjp +bwE +cSX +bwE iZI -sdg -nns -nns -nns +dSp +cDk +cDk +cDk saC saC saC @@ -76997,47 +76997,47 @@ saC saC saC saC -lpb +pNj saC saC -wLX -vHW -wLX -wLX -wLX -ctS -hoJ -tGr +mdR +jjE +mdR +mdR +mdR +omH +jjT +cum qjG -fjJ -bwB -xdS -wLX -eun -fjJ -fjJ +bbr +pzU +cee +mdR +eeQ +bbr +bbr seF -iMn -udL +qDn +rcC qjG -oFu -tGr -ejd +mzY +cum +sGK tiQ bjd -iGi +oTv lYK hvh pqQ -pcE +frJ bjd -gLl -gLl -gLl -gLl -gLl -gLl -gLl +eSs +eSs +eSs +eSs +eSs +eSs +eSs cpy cpy cpy @@ -77048,32 +77048,32 @@ ien tNQ qSH qSH -sjn +swp umR -lTo -bkb -ebs +nUA +bkM +iqM tQi jdn tQi tQi -ebs -lvs +iqM +plE tQi gwb gwb xZz yjr -mvr -ufT -xFA +eHk +kTx +hUW xxs qDr nrP xxs -xFA -lHB -fhX +hUW +irB +aGZ uDb eUh nud @@ -77081,24 +77081,24 @@ nud uDb xxs bAe -dtY +uvo lxL pNs xGf xGf -dLL +smq kqb -bHV -hpC -eLT -lmn -dGT -hpC -hpC -blX -eAB -gGO -mZi +mYn +hWA +cLa +hCz +mpG +hWA +hWA +lJm +bzt +pEM +qnL rnB tTD tTD @@ -77107,20 +77107,20 @@ cpy lzw tTD oCt -nkT +jHV xXg vNk -ilc +hVG wGh gij mHv nlW -anp +eHY ozn xMO -beK +oIl wpn -kaz +igP wiE tex fiS @@ -77128,8 +77128,8 @@ bJZ wdd yhi yhi -mtT -ebd +mrX +kcy jCU jwM jwM @@ -77141,7 +77141,7 @@ jwM qEc jmG gkY -oaB +gJn fWG fWG uwT @@ -77158,10 +77158,10 @@ fWG fWG fWG fWG -etK +oGP xzK jas -qNa +hCe rwC eso wwc @@ -77169,16 +77169,16 @@ eso vpe jas jas -tbB -xHE -xHE -lng +mhV +fZq +fZq +jhH jas jas -bxO +rfH xFv vWI -fIc +oKv jas jas cpy @@ -77191,8 +77191,8 @@ cpy cpy cpy tiQ -kxT -kxT +mJi +mJi aLJ aLJ aLJ @@ -77202,20 +77202,20 @@ fXU fib fib aLJ -vjp -pyV -qiO +bwE +iav +eta nTl nTl -mAb -mlC -icU -crC -sdg -nns -nns -nns -pyV +wTQ +sat +jIV +pVB +dSp +cDk +cDk +cDk +iav saC saC saC @@ -77228,35 +77228,35 @@ saC saC vjl vjl -wLX -wLX -wLX -wLX -gCR -qPw -wno +mdR +mdR +mdR +mdR +pZe +hrJ +huf qjG -fjJ -ewH -jvW -wLX -nFe -kSv -fjJ +bbr +wNj +iSq +mdR +vsK +uWJ +bbr seF -lEi -iHW +ucc +qpQ qjG -iYC -tQn -lLw +fnq +qiR +kBr tiQ bjd pqQ lYK hvh qEQ -pcE +frJ mPj mPj mPj @@ -77275,57 +77275,57 @@ ien rNm jOw qSH -sjn +swp umR -jvs +woE wKg wKg -noF -fXz -fXz -noF -lvs -lvs -fXz -fDT -noF -noF -egn -noF +ylK +ppO +ppO +ylK +plE +plE +ppO +koz +ylK +ylK +fkw +ylK sjy -anr -goP +vKy +xUb cvi tLE iXT -jYM +eKl sjy -cjA -anr -nSM -qzS -hjc -dnF -cjA +qjg +vKy +pGM +ioj +mPv +viS +qjg sjy -orA -sVB +nkx +tEK htA vNO -sVB -cZJ +tEK +hNe kqb -jLZ -aRF -hpC -eLT -eLT -hpC -bGJ -eLT -wzo +xIN +cbI +hWA +cLa +cLa +hWA +dKx +cLa +slz kqb -mZi +qnL rnB tTD tTD @@ -77333,30 +77333,30 @@ cpy cpy lzw fgB -xTq +iSg xXg vNk vNk -gMa +msF xMO xMO mHv vBB vMJ xMO -pLy +sMe vNk vNk vNk -hJy +hSg wiE -hdm +cos rtz -nvw +pol yhi qHj yhi -ebd +kcy jCU jwM jwM @@ -77369,7 +77369,7 @@ phZ jmG jmG hkO -oaB +gJn fWG uwT uwT @@ -77386,9 +77386,9 @@ fWG fWG fWG fWG -mGF +exl jas -ant +jUN nbE vpe oKe @@ -77401,10 +77401,10 @@ tNl tNl tNl tNl -amz +baB njm qup -hfZ +tvV jas jas cpy @@ -77418,7 +77418,7 @@ cpy cpy tiQ tiQ -kxT +mJi aLJ aLJ dFT @@ -77429,20 +77429,20 @@ dDS iZI iZI aLJ -icU -sdL -boP +jIV +pWG +pvH nTl nTl -iDw -lMD -vjp -crC -sdg -nns -nns -nns -pyV +slv +cSX +bwE +pVB +dSp +cDk +cDk +cDk +iav saC saC saC @@ -77456,39 +77456,39 @@ saC vjl vjl vjl -rJt -rJt -efh -gCR -qPw +uoG +uoG +pPT +pZe +hrJ qjG qjG -xrY -xdS -wLX -wLX -hbh -oyZ -fjJ +mUi +cee +mdR +mdR +xIe +qgJ +bbr xQc xQc -iru -ppg -kMl -sAZ -qNZ +cSN +cLr +ePH +syo +bXf tiQ bjd pqQ lYK hvh qEQ -pcE +frJ mPj -kMm -vIn -wzD -pcE +rQv +rMC +skr +frJ bjd mPj mPj @@ -77502,17 +77502,17 @@ ien ien svK qSH -jog +rYe umR -dCF +niw wKg wKg xjF xjF xjF xjF -icJ -cOT +eYP +xJu xjF xjF xjF @@ -77520,12 +77520,12 @@ xjF sjy sjy sjy -exm -vII +qUt +mzB xUJ -mwM -jYM -goP +tCy +eKl +xUb sjy sjy tpa @@ -77537,22 +77537,22 @@ sjy sjy kqb kqb -pGz -aRQ +kdD +rKk kqb kqb kqb kqb kqb -kji -eLT -iNy -hpC -eLT -hpC +qPl +cLa +lUw +hWA +cLa +hWA kqb kqb -mZi +qnL rnB rnB tTD @@ -77560,10 +77560,10 @@ cpy cpy tTD tTD -gMJ +cBA vNk vNk -bqH +ocK kuD xMO xMO @@ -77571,19 +77571,19 @@ xMO ekO ekO wGh -qdY +ipQ vNk vNk vNk -ddF +bKz yhi -lDa +vNc dfk -hUA +mkK grP xNd xNd -coT +rcS rns ldC xcF @@ -77593,10 +77593,10 @@ taP ojy uqP wjF -umF +lwM jmG jmG -dQA +umN fWG uwT uwT @@ -77613,23 +77613,23 @@ dWD fWG fWG fWG -swN +qny jas -rHz +lwb xKH vpe wwc vpe vpe -oGv -oGv -oGv -oGv -kJl -oGv -oGv +rMW +rMW +rMW +rMW +hyD +rMW +rMW jas -eau +kIP jas jas jas @@ -77644,8 +77644,8 @@ cpy cpy tiQ tiQ -kxT -kxT +mJi +mJi aLJ aLJ iZI @@ -77656,21 +77656,21 @@ cHj azz azz eFP -jDD -uWq -sOq -awN -awN -qlL -lMD -vjp -crC -wri +jqW +eLo +nza +iDX +iDX +fLt +cSX +bwE +pVB +kDK tiQ tiQ tiQ -pyV -nns +iav +cDk saC saC saC @@ -77685,39 +77685,39 @@ vjl vjl vjl vlq -kkX -rkt -cPD +oaC +eew +iVJ qjG -fjJ -fjJ -mln -kkX -kkX -lpb -rkt -fjJ -fjJ +bbr +bbr +sFj +oaC +oaC +pNj +eew +bbr +bbr xQc -bUd -gVp -kMl -gCR -tGr +eEA +pMk +ePH +pZe +cum tiQ bjd pqQ lYK hvh -iGi -pcE -rAm -rAm -gLx -gLx -pcE -pcE -pcE +oTv +frJ +fFX +fFX +oOj +oOj +frJ +frJ +frJ bjd mPj cpy @@ -77729,14 +77729,14 @@ ien iqb kdx vGp -sjn +swp umR -akc +mUZ umg xjF xjF -lNS -aEv +xKX +nsg xjF giX giX @@ -77749,12 +77749,12 @@ sjy sjy sjy sjy -lDT -iAk +gwc +dOA sjy sjy sjy -nIg +iIp ulZ ulZ ulZ @@ -77763,23 +77763,23 @@ twY ulZ ulZ pKX -oUS -flV -lTe -oUS +dvs +kGw +wkP +dvs pKX -xOl +uVF xXg kqb kqb -uyE -gjs -bAd -oAQ +pmW +gAI +cwS +aZZ kqb kqb xXg -tch +mPf rnB tTD tTD @@ -77787,8 +77787,8 @@ cpy cpy tTD tTD -gMJ -phR +cBA +xlg sCr uew xMO @@ -77799,31 +77799,31 @@ ozn xMO xMO xMO -mHY +gMx wpn -uIG +rvb wJH wEW -lDa +vNc sLG -lDa +vNc wiE wiE -imz -ebd +xPd +kcy jCU jwM ild -uwO -ktF +fue +pfZ vVS jwM ild ild -uwO -eSr +fue +vvD jmG -xFN +ljT fWG uwT uwT @@ -77842,13 +77842,13 @@ xbM fWG xzK jas -oCP +nrK eso vpe xFv eso -oGv -oGv +rMW +rMW jas jas jas @@ -77870,8 +77870,8 @@ bMX cpy cpy tiQ -xer -kxT +jqv +mJi aLJ aLJ iZI @@ -77883,21 +77883,21 @@ dDS iZI iZI svW -vjp -pyV -abq -vOU -abq -abq -lMD -vjp +bwE +iav +aXC +kHe +aXC +aXC +cSX +bwE iZI -sdg -nns -nns -nns -pyV -nns +dSp +cDk +cDk +cDk +iav +cDk saC saC saC @@ -77913,39 +77913,39 @@ saC dxc ntq qjG -gCR -qPw -jHU -tGr -ewH -jvW -wLX -wLX -wLX -nFe -noB -fOO +pZe +hrJ +mUN +cum +wNj +iSq +mdR +mdR +mdR +vsK +wHX +uCD yhz -tGr -gVp -kMl +cum +pMk +ePH qjG hKK tiQ bjd -iGi +oTv lYK hvh eTQ -bYR +nmp woU woU woU woU -qWc -pcE -pcE -pcE +dUO +frJ +frJ +frJ mPj cpy cpy @@ -77956,16 +77956,16 @@ ien isa svK sRI -sjn +swp umR qSH -xZI +kSa xjF -nzg -nSo -uOa +sas +uxg +mFS xjF -hCI +fdm uog uog xBo @@ -77974,38 +77974,38 @@ oVD xjF xFp xZP -ghv -dAu -rsY +ugK +dti +vrG gNJ -oUS -ghv +dvs +ugK ulZ ulZ ulZ -qAP -kER -xOK +lTJ +cmN +qyx jZc wIE ulZ -ghv -oUS +ugK +dvs djM xAZ -oUS -ghv -xOl +dvs +ugK +uVF xXg wIi kqb kqb -kCx -kCx +nvh +nvh kqb kqb wIi -tch +mPf rnB rnB tTD @@ -78014,8 +78014,8 @@ cpy tTD tTD rnB -aBU -mAK +lrI +qvO oGZ uNd xFG @@ -78026,9 +78026,9 @@ rKW uNd oaH xMO -aLZ +cca wpH -tbc +ceQ wGJ wiE wiE @@ -78036,52 +78036,52 @@ wYe yhi yhi wiE -lwp +irb jmG -xzt +qPC jwM ild -uwO -ktF +fue +pfZ vVS ild uqP wjF -umF -bsX +lwM +fdG jmG -xFN +ljT fWG uwT uwT fWG wVo -tBm -wLs -hDO -hDO -wLs -wLs -gVH -wLs -wLs -wLs -wLs +miw +tHx +shv +shv +tHx +tHx +rRE +tHx +tHx +tHx +tHx jas jas -meX -oGv +fKe +rMW eso xFv uhv -oGv +rMW jas jas -wqM -bZE +jgA +jVc jas -mdZ -xds +snk +gEO jas nQu uTY @@ -78097,7 +78097,7 @@ bMX cpy tiQ tiQ -kxT +mJi aLJ aLJ iZI @@ -78110,22 +78110,22 @@ cUg iZI dHj vNr -vjp -wIR -abq -abq -abq -abq -lMD -vjp -abq -sdg -nns -nns -nns -pyV -nns -kUB +bwE +cpK +aXC +aXC +aXC +aXC +cSX +bwE +aXC +dSp +cDk +cDk +cDk +iav +cDk +shB saC tiQ saC @@ -78140,39 +78140,39 @@ saC saC vjl qjG -gCR -qPw -mso -tGr -ppg -wLX -wLX -wLX -wLX -qXd -cgy -fOO +pZe +hrJ +bGY +cum +cLr +mdR +mdR +mdR +mdR +fuY +hzY +uCD aiO -muK -aPQ -lxO -cgy +eMa +kym +poF +hzY pAw tiQ bjd -tdc +laa abL -dQF +wTZ hNP hNP hNP hNP hNP vFD -vUg -qWc -pcE -pcE +rvA +dUO +frJ +frJ mPj cpy cpy @@ -78183,55 +78183,55 @@ ien ien ruv ilU -sjn +swp umR qSH -xZI +kSa xjF xjF xjF -aNx +gZG xjF gCO -wJE +sER wgW wgW jRT jRT -vFt +fLQ xFp xZP -ghv -dAu +ugK +dti xAZ -etd -oUS -ghv +stB +dvs +ugK ulZ ulZ wIE -jDg -naR -ogh +nhC +eDh +aEX hre oTY ulZ -ghv -dAu +ugK +dti xOw ykT -dAu -ghv -xOl +dti +ugK +uVF xXg -oxg -oxg -oxg -oxg -oxg -oxg -oxg -tch +mBd +mBd +mBd +mBd +mBd +mBd +mBd +mPf rnB rnB rnB @@ -78241,10 +78241,10 @@ cpy tTD tTD rnB -xlF +hsD vNk vNk -iIv +awO xMO ozn xMO @@ -78253,9 +78253,9 @@ xMO nFN tQb mHv -lrH +kuz wpH -tbc +ceQ wiE wiE wiE @@ -78263,26 +78263,26 @@ wly yhi wiE wEW -bcw -hqw +scP +fvl jCU ild jwM -uwO -uwO +fue +fue vVS ild ild ild -uwO +fue jmG jmG -vyu +aXS uwT uwT uwT fWG -jnI +vXt xzK jas jas @@ -78297,18 +78297,18 @@ jas jas jas jas -riL +lRA eso mYS fnm -vSo +hVR jas -voN -xds -xds +xxv +gEO +gEO jas -mts -xds +dKP +gEO jas nQu aEF @@ -78323,8 +78323,8 @@ bMX bMX cpy tiQ -xoF -jbW +hPK +aln aLJ dFR azz @@ -78337,22 +78337,22 @@ eJw iZI iZI fib -vjp -pyV -abq -abq -abq -abq -lMD -vjp -abq -sdg -nns -nns -nns -pyV -nns -nns +bwE +iav +aXC +aXC +aXC +aXC +cSX +bwE +aXC +dSp +cDk +cDk +cDk +iav +cDk +cDk tiQ tiQ saC @@ -78366,29 +78366,29 @@ saC saC qjG qjG -wLX -gCR -qPw -nmQ -tGr -eja -hbh -wLX -wLX -wLX -gCR +mdR +pZe +hrJ +njN +cum +eIM +xIe +mdR +mdR +mdR +pZe saC saC xQc -lmE -lxS -qPw -tGr -rMo +vRX +dYx +hrJ +cum +baV tiQ bjd -tdc -pcE +laa +frJ abL qsW qsW @@ -78396,10 +78396,10 @@ qsW cgn mqx jZE -ckV +qkt pqQ -rci -wzD +gdn +skr mPj cpy cpy @@ -78410,12 +78410,12 @@ ien iel iel iel -sjn +swp pZo qSH -xZI +kSa xjF -vxT +pTJ eHy vSU xjF @@ -78424,33 +78424,33 @@ xCN xPW wgW jRT -egw -vFt +lol +fLQ xFp xZP -ghv -oUS +ugK +dvs xAZ djM -dAu -ghv +dti +ugK ulZ wIE eKm -xbO -fUw -aZb +vkQ +lXk +fZa wIE bWA ulZ -ghv -dAu +ugK +dti xOw ykT -dAu -ghv -xOl -mZi +dti +ugK +uVF +qnL tTD sKJ sKJ @@ -78468,29 +78468,29 @@ tTD tTD rnB rnB -xlF +hsD xXg vNk vNk -tyz -ksp -mqa -pBc -kuw -sUt +jNO +fdi +ebc +mSQ +fcY +vkV gFs pDU -nYG +ibG vNk -lIV -woz -kMG +fsc +tKJ +uzH pwu wly wiE taw -sfC -qJj +tzO +iIi jmG jCU ild @@ -78504,38 +78504,38 @@ jkC jmG jmG ifx -meV +dkN uwT uwT uwT fWG -otv +vLx jas jas -mNS -bew -fYo -poK -jdy -ant -xZJ -dCy -riL -riL +sVQ +uwi +gHE +mjO +nnE +jUN +tda +eQA +lRA +lRA xcP -rMw +uPl vpe tJN rNv cYE -vSo +hVR aAI -txV -xds -aRn +eKV +gEO +oWm jas jas -wVz +pQe jas rmp aEF @@ -78550,7 +78550,7 @@ bMX bMX cpy tiQ -oos +nda iZI bNE dDS @@ -78564,22 +78564,22 @@ iZI iZI iZI aLJ -vjp -pyV -sdF -nns -lnW -nwN -lMD -vjp -abq -sdg +bwE +iav +igD +cDk +toA +cLD +cSX +bwE +aXC +dSp tiQ tiQ tiQ -llk -nns -nns +mHE +cDk +cDk tiQ saC saC @@ -78587,46 +78587,46 @@ saC saC saC tiQ -agt +vIo saC qjG qjG -wLX -wLX -wLX -dVN -hQZ -mso +mdR +mdR +mdR +qsZ +miE +bGY mnw qjG -wLX -wLX -wLX -wLX +mdR +mdR +mdR +mdR saC saC tiQ tiQ tiQ seF -gPG -iYK +psu +jBS yhz tiQ bjd eTQ -jeM +vJq kbb pMz yaH -rWf +jYi lYK mqx mqx -bTz +dsO pqQ -rci -wzD +gdn +skr mPj cpy cpy @@ -78637,10 +78637,10 @@ ien iel iel iel -sjn +swp pZo vGp -xZI +kSa xjF vuc wgW @@ -78651,16 +78651,16 @@ wgW jiP wgW ydb -ubt -vFt +gFL +fLQ xFp xZP -ghv -oUS +ugK +dvs ykT djM -oUS -ghv +dvs +ugK ulZ ulZ ulZ @@ -78670,14 +78670,14 @@ ulZ ulZ ulZ ulZ -ghv -dRb +ugK +nPE xOw xAZ -oUS -ghv -xOl -mZi +dvs +ugK +uVF +qnL tTD sKJ tTD @@ -78695,7 +78695,7 @@ tTD tTD rnB rnB -xlF +hsD xXg vNk vNk @@ -78705,8 +78705,8 @@ vNk vNk vNk vNk -wZF -rzf +mif +cKt vNk vNk vNk @@ -78720,25 +78720,25 @@ jmG jmG jmG jmG -ebd -ebd +kcy +kcy jmG jmG -ebd -ebd +kcy +kcy jmG jmG jmG xzK -xqC +dXK uwT uwT uwT uwT fWG -otv +vLx jas -bRr +cpD vpe vpe vpe @@ -78750,21 +78750,21 @@ vpe fhl ijR ijR -wml +wDB myE hvD kjj naH kwj -ddO -ecH -wNu -xds -aRn -xds -urw +vxW +jlH +nkg +gEO +oWm +gEO +lXH jas -wcM +wFC aEF jas cpy @@ -78777,8 +78777,8 @@ bMX bMX cpy tiQ -kxT -vwj +mJi +pHX azz aZD iZI @@ -78791,22 +78791,22 @@ ciS iZI iZI fFp -crC +pVB nTl nTl nTl nTl nTl nTl -nns -abq -sdg -nns -nns -nns -pyV -nns -nns +cDk +aXC +dSp +cDk +cDk +cDk +iav +cDk +cDk tiQ saC saC @@ -78814,46 +78814,46 @@ saC saC saC tiQ -pYo -tGr -toh -ntE -hBF -ork -qvE -wTZ -nEr -noS +jAs +cum +rED +fjS +hAZ +vcD +jgK +mCp +bzI +vgp ugN pHT -koz -wLX -wLX -wLX -gCR -fOO -nkB -jFv -nkB -tGr -qPw -tGr -vbf +ndY +mdR +mdR +mdR +pZe +uCD +iKX +buR +iKX +cum +hrJ +cum +vOJ lTi bjd bjd -umI -ihE +kxf +sZC bjd -psI -pgK +vVz +dbb lYK mqx mqx -bTz +dsO pqQ -rci -wzD +gdn +skr mPj cpy cpy @@ -78864,10 +78864,10 @@ ien ien khG isa -sjn +swp pZo vGp -xZI +kSa xjF dFn wWe @@ -78884,27 +78884,27 @@ xFp xZP pKX pKX -hgn -tPC +ieE +cQl pKX pKX ojp -kIq -kIq -kIq +sii +sii +sii ojp -kIq -kIq -kIq +sii +sii +sii ojp pKX pKX -eeL -wnw +jDG +frU pKX pKX -xOl -mZi +uVF +qnL tTD tTD tTD @@ -78922,26 +78922,26 @@ rnB rnB rnB rnB -xlF +hsD vNk vNk vdZ urd -jty +tvv vdZ vNk -srZ -qWD +rjZ +mbc ngx xMO vNk -orv -gEr -oJE +qEt +gXZ +jHh vNk xvl -mBo -qBp +owc +jBv xvl xvl jmG @@ -78956,15 +78956,15 @@ xzK jmG jmG xzK -xqC +dXK uwT uwT uwT uwT uwT fWG -otv -rMw +vLx +uPl vpe eso vpe @@ -78977,21 +78977,21 @@ eso vjr eso eso -rMw +uPl eso eso ipw vpe -riL +lRA aAI -xds -unI -bsB -xds -xds -ccT +gEO +tBz +mgv +gEO +gEO +klT jas -wbo +bWv aEF jas cpy @@ -79005,35 +79005,35 @@ bMX cpy tiQ jEu -kxT +mJi svW svW -vjp -vjp -vjp -vjp -vwj -vjp -bON -eeP -kxT -crC -crC +bwE +bwE +bwE +bwE +pHX +bwE +iBC +jaa +mJi +pVB +pVB nTl nTl nTl nTl nTl nTl -nns -nns -sdg -nns -nns -nns -pyV -nns -nns +cDk +cDk +dSp +cDk +cDk +cDk +iav +cDk +cDk tiQ tiQ saC @@ -79042,45 +79042,45 @@ saC saC tiQ jEu -tGr +cum xYD fxh -iHW +qpQ saC -cli -aCD -tGr +szg +iAT +cum saC saC qjG yaj -wLX -lKb -wLX -sdU -wkl -nkB -iru -dDB -aCD -hqE -noB -iru +mdR +msL +mdR +kRu +rxU +iKX +cSN +tBZ +iAT +ixr +wHX +cSN qjG lTi bjd -qQL -iGi +uwO +oTv bjd bjd bjd lYK mqx mqx -bTz +dsO pqQ -rci -wzD +gdn +skr mPj cpy cpy @@ -79091,15 +79091,15 @@ ien ssh tNQ vGp -sjn +swp pZo vGp -xZI +kSa xjF xjF vwl fUx -xpC +qmw wZw ydb jll @@ -79110,28 +79110,28 @@ xjF xFp xZP pKX -tuO +knG ykT kGb -bAS +dQz pKX -lni -uec -fKU -ifO +uVM +dvP +fJT +exP ojp -ifO -nvb -fKU -uec +exP +xKt +fJT +dvP pKX -mJp +bcK kcd oig -ucv +lrf pKX -xOl -mZi +uVF +qnL tTD tTD tTD @@ -79143,13 +79143,13 @@ cpy cpy cpy rnB -hVW -noR -wUH +bWG +moJ +xlv rnB rnB rnB -xlF +hsD vNk pZA tGo @@ -79162,27 +79162,27 @@ ikZ vYL ozn vNk -eiK +dQw ozn pUo -oJE +jHh xvl -xkc -qsB +sEf +oge xvl xvl teD xzK -ttb -ttb -ttb -ttb -ttb -ttb -ttb -ttb -ttb -xqC +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dXK uwT uwT cpy @@ -79190,8 +79190,8 @@ cpy uwT uwT fWG -ezt -oFo +wsF +llB kwj xcX nyJ @@ -79203,22 +79203,22 @@ lWf lWf cxo vpe -riL -rMw -oGv -riL +lRA +uPl +rMW +lRA xFv -biF -riL +uaj +lRA jas -ycZ -dQy -gML -mKl -myr +kYR +qqt +gvv +hwV +aMr jas jas -wbo +bWv aEF jas cpy @@ -79231,19 +79231,19 @@ bMX bMX cpy cpy -buX -xtc -sFB -bob -bob -bob -bob -bob -fBW -bob -sDL -kkU -uHM +nJw +hgl +fIX +rzg +rzg +rzg +rzg +rzg +mKd +rzg +jxr +ppl +rKb nTl nTl nTl @@ -79254,13 +79254,13 @@ nTl nTl nTl nTl -sdg -nns -nns -nns -pyV -nns -nns +dSp +cDk +cDk +cDk +iav +cDk +cDk saC saC saC @@ -79269,45 +79269,45 @@ saC saC saC tiQ -iVp +llq xYD -qPw -xVS +hrJ +eNK saC saC -jkl -omb +vfM +hEU saC saC myV yaj qjG -wLX -wLX -gCR -oxU -dDB -tGr -dDB -tGr -pDW -gCR +mdR +mdR +pZe +dbH +tBZ +cum +tBZ +cum +rVK +pZe vDw -iKZ +iZe qjG bjd -qQL -iGi +uwO +oTv bjd fSf cZH -nmM +jhd mqx -nJW -bTz -iGi -pcE -pcE +mKC +dsO +oTv +frJ +frJ mPj cpy cpy @@ -79315,13 +79315,13 @@ cpy cpy cpy ien -qcl -cRC -cRC -sjn -mHp +jgo +wFh +wFh +swp +pOe vGp -fbN +mqa xFp xjF xjF @@ -79334,31 +79334,31 @@ xjF xjF xjF xFp -ikA +bhw xZP -gSo +pDF xAZ xAZ xOw ykT -ksX -btv +wGg +nCz mSe nYF mSe -fUB +srb mSe nDn hYV -tRg -ksX +hqP +wGg xAZ qqx pag bia -gSo -xOl -mZi +pDF +uVF +qnL rnB tTD tTD @@ -79370,13 +79370,13 @@ cpy cpy cpy rnB -rbt -hGc -vFE +gMD +pgW +kdE tTD rnB rnB -xlF +hsD vJD tGh uUk @@ -79387,19 +79387,19 @@ vNk gyb xMO tQb -awi +xVc vNk -orv +qEt xMO tQb -qSN +asX xvl -gtf -aLt +mta +sVf xvl xvl -bWs -pue +gTV +iZT fWG fWG fWG @@ -79417,8 +79417,8 @@ cpy uwT uwT uwT -mGF -rMw +exl +uPl vpe vpe wwc @@ -79429,12 +79429,12 @@ eso vpe eso vpe -riL +lRA jas jas jas jas -sLO +ayx jas jas jas @@ -79458,19 +79458,19 @@ bMX bMX cpy cpy -buX -vjp -veu -abq -ctp -abq -abq -abq -abq -thA -gUf -thA -qvO +nJw +bwE +ehs +aXC +wUd +aXC +aXC +aXC +aXC +vCW +tqT +vCW +aBj nTl nTl nTl @@ -79481,13 +79481,13 @@ nTl nTl nTl nTl -tCS -bob -bob -bob -eYF -nns -nns +xnY +rzg +rzg +rzg +nik +cDk +cDk saC saC saC @@ -79496,34 +79496,34 @@ saC saC saC xQc -rZk +xMI xYD -kNt +bAT saC saC ncA -pFz -sRl +qmm +wHe saC -omb -hVd +hEU +fTd lNA -xLG -jtm -xLG -neN -qYT -nUo -dDD -nUo -dDD -kXP -nFe -noB +sFu +oDA +sFu +eNI +jjA +hwR +lZF +hwR +lZF +uXM +vsK +wHX qjG qjG bjd -pcE +frJ pqQ bjd fSf @@ -79531,10 +79531,10 @@ cZH mqx mqx mqx -bTz +dsO pqQ -rci -wzD +gdn +skr mPj cpy cpy @@ -79542,50 +79542,50 @@ cpy wDj wDj wDj -lhY -lhY +meQ +meQ wDj wDj -bBL +qlC vGp vGp -fbN -ikA -ikA -lna -ikA -mVK -dlP -ikA -rbg -ikA -uBH -nei -qSH -lTo -bOo +mqa +bhw +bhw +jKG +bhw +pgA +ctJ +bhw +xWq +bhw +wKT +eFj +qSH +nUA +hzD ykT axD kGb vKe -iwG -mdy +pYy +pio dbF mHC mSZ -gUX +jRg aXx mSZ rsX -bEm -iwG +eCM +pYy qtx mTK sdC dvp -bOo -xOl -mZi +hzD +uVF +qnL rnB rnB tTD @@ -79597,36 +79597,36 @@ cpy cpy cpy rnB -ewI -yfb -qsv +atu +sCt +gkm tTD rnB rnB -xlF +hsD vJD tGh pBK -tWL +iEN pTZ tGh vNk nYW vkD ngx -pbk -uca -fYk +pVZ +pQH +ada qDw ngx -ksp -uca +fdi +pQH xgA bsG -xdf -bXg -elT -pue +bWS +htH +aCW +iZT fWG fWG fWG @@ -79644,18 +79644,18 @@ cpy uwT uwT uwT -mGF +exl jas -oGv -riL -tiA -riL +rMW +lRA +moM +lRA vpe vpe eso eso vpe -dCy +eQA jas jas cEj @@ -79664,9 +79664,9 @@ myE qHr vpe vxa -imo -wbo -wbo +jcQ +bWv +bWv nQu nQu nQu @@ -79685,19 +79685,19 @@ bMX bMX cpy cpy -buX -nNJ -tFI -nns -nns -nns -nns -nns -nns -jPR -sVI -pRV -crC +nJw +cUY +udc +cDk +cDk +cDk +cDk +cDk +cDk +yec +qFI +ndn +pVB nTl nTl nTl @@ -79708,13 +79708,13 @@ nTl nTl nTl nTl -jTN -nrI -qgg -nrI -nrI -nrI -ssu +jVl +hCW +mbd +hCW +hCW +hCW +tYm saC saC saC @@ -79723,63 +79723,63 @@ saC saC saC xQc -tGr -tGr -qPw +cum +cum +hrJ kFo saC -tuh -uAt -sgu -sgu -jkl -qPw -ppg -wLX -wLX -lpb -hAP -fjJ -dDB -tGr -dDB -iru -ppg -wLX -gOV -iru +stK +qmW +mKF +mKF +vfM +hrJ +cLr +mdR +mdR +pNj +wpJ +bbr +tBZ +cum +tBZ +cSN +cLr +mdR +xma +cSN vKP bjd -pcE +frJ pqQ bjd fSf -dNf +czp qsW qsW qsW -vlP +xOC pqQ -rci -wzD +gdn +skr mPj cpy cpy wDj nJV -gdS -dkf -qSU -skY -ijs +cPc +hst +fPF +kMa +phY wDj -pMJ +ccF vGp vGp vGp vGp vGp -lna +jKG vGp vxg vGp @@ -79789,30 +79789,30 @@ qSH qSH qSH qSH -lTo +nUA pKX -pHX +oiU ykT djM -vdM +rpc pKX -lni -aLF -lni -fKU +uVM +ubo +uVM +fJT ojp -cIP -fKU -pIU -lni +jiz +fJT +was +uVM pKX -vWA +aTq gNn mgb -iMJ +tnE pKX -xOl -mZi +uVF +qnL rnB rnB tTD @@ -79830,7 +79830,7 @@ tTD rnB rnB rnB -xlF +hsD vJD tGo ugR @@ -79841,19 +79841,19 @@ vNk xMO xMO kwK -nTS -mAK -eac +mNN +qvO +ctR hIx nNM -wck -mAK +deI +qvO aSZ acE -xdf -bXg -elT -pue +bWS +htH +aCW +iZT fWG fWG cpy @@ -79871,18 +79871,18 @@ uwT uwT uwT uwT -mGF +exl jas jas jas jas jas -suk +avG vpe vpe eso vpe -vYC +kMP jas cEj vpe @@ -79893,13 +79893,13 @@ vpe ahZ jas jas -jfP -mKZ +mwn +xxz pYO pYO -apC -apC -tWv +afa +afa +nUF jas jas cpy @@ -79912,19 +79912,19 @@ bMX bMX cpy cpy -buX -rKu -leZ -nns -nns -kUB -qKH -nns -elP +nJw +vLm +wTt +cDk +cDk +shB +smd +cDk +iCB eBi cUl dhX -eka +xpN nTl nTl nTl @@ -79935,13 +79935,13 @@ nTl nTl nTl nTl -crC -crC -nns -nns -nns -nns -nns +pVB +pVB +cDk +cDk +cDk +cDk +cDk saC saC saC @@ -79950,63 +79950,63 @@ saC saC saC xQc -mso -mso -gPG -omb -xNN -bNd +bGY +bGY +psu +hEU +ibd +hCk xYD -aeZ -sgu -bIs -qPw -ppg -wLX -wLX -wLX -rkt -tGr -dDB -tGr -dDB -wWD -ppg -hbh -gCR -baH +cvZ +mKF +nZc +hrJ +cLr +mdR +mdR +mdR +eew +cum +tBZ +cum +tBZ +qAG +cLr +xIe +pZe +mgL qjG bjd -pcE +frJ pqQ bjd bjd bjd -qQL -qQL -qQL -pcE +uwO +uwO +uwO +frJ pqQ -rci -wzD +gdn +skr mPj cpy cpy wDj -aTM +bhK ezo eJR iDH eJR -bVV -pss -gJQ +hqA +hkB +ppX vGp vGp vGp vGp vGp -lna +jKG nUO hqZ vGp @@ -80016,30 +80016,30 @@ rMR qSH qSH vGp -lTo +nUA pKX pKX -xra -nuw +qHo +dQb pKX pKX ojp -kIq -kIq -kIq +sii +sii +sii ojp -kIq -kIq -kIq +sii +sii +sii ojp pKX pKX -kBW -tff +ljo +eWw pKX pKX -xOl -mZi +uVF +qnL rnB rnB tTD @@ -80057,10 +80057,10 @@ tTD rnB rnB rnB -xlF +hsD vJD tGo -fGP +tCL vmG pTZ cbW @@ -80068,19 +80068,19 @@ vNk hAy xMO ngx -jRp +kum vNk vNk vNk vNk vNk xvl -cGK -dJX +qPt +jKt xvl xvl -elT -pue +aCW +iZT fWG cpy uwT @@ -80098,26 +80098,26 @@ uwT uwT uwT uwT -etK -ttb -ttb -ttb +oGP +dsZ +dsZ +dsZ xzK jas jas -goH +mUI vpe eso -hZC -dCy +gRi +eQA jas -hFj +jAr vpe -hFj +jAr eso -hFj +jAr vpe -fhB +rvc jas jas jas @@ -80139,19 +80139,19 @@ bMX bMX cpy cpy -buX -dMI -pyV -abq -abq -abq -xgS -abq -abq -pKZ -swv -nfJ -eQN +nJw +gwG +iav +aXC +aXC +aXC +sYj +aXC +aXC +cUr +osm +cxM +our nTl nTl nTl @@ -80162,13 +80162,13 @@ nTl nTl nTl nTl -cEK -ggR -ggR -ezA -xcG -nns -nns +peI +mwg +mwg +lwy +bjG +cDk +cDk saC saC saC @@ -80177,63 +80177,63 @@ saC saC saC xQc -xsx -tGr -qPw -omb -kra -hyb -gig -rHK -scS -omb -eHz -ppg -wLX -wLX -wLX -rkt -tGr -nkB -icb -dDB -wWD -bgY -bEC -cgy -pYo +jfb +cum +hrJ +hEU +bXH +wJK +sXC +sAY +vkx +hEU +uAU +cLr +mdR +mdR +mdR +eew +cum +iKX +dOR +tBZ +qAG +vVV +qeC +hzY +jAs lTi bjd -pcE -vUg -bYR -iZz -hEe -qZX -qZX -qZX -pcE +frJ +rvA +nmp +sCd +axi +hqo +hqo +hqo +frJ pqQ -rci +gdn mPj mPj mPj mPj wDj -iGg +tFH eJR kbH iHD ksk -bzB -afJ -jrk +jat +uqr +fiD qSH vGp vGp vGp vGp -lna +jKG nWq vGp qSH @@ -80243,13 +80243,13 @@ qSH qSH vGp vGp -lTo -ghv -dAu +nUA +ugK +dti ykT xOw -dAu -ghv +dti +ugK fkj fkj fkj @@ -80259,14 +80259,14 @@ fkj fkj fkj fkj -ghv -nwe +ugK +dIP iGn uOp -sEz -ghv -xOl -mZi +wWD +ugK +uVF +qnL rnB rnB rnB @@ -80284,30 +80284,30 @@ tTD rnB tTD rnB -xlF +hsD vNk qfK wjf wjf uNp tGo -uHP +udQ xMO eZM hZL -ksp +fdi vNk vNk -vxr -qSN +jsj +asX vNk xvl -ahC -uZo +pXF +sYE xvl xvl -elT -pue +aCW +iZT dBD sps sps @@ -80329,28 +80329,28 @@ uwT uwT uwT uwT -mGF +exl xzK jas -uJg +tRV vpe eso eso -dCy +eQA jas -fhB +rvc oJj -fhB +rvc eFb -hFj +jAr eso -fhB +rvc jas ctE jas aEF nQu -wcM +wFC jas cpy cpy @@ -80366,19 +80366,19 @@ bMX bMX cpy cpy -buX -oPM -agr -ezA -ezA -ezA -ezA -ezA -ezA -ezA -iFq -kit -ezA +nJw +aoj +uCA +lwy +lwy +lwy +lwy +lwy +lwy +lwy +nIy +gmo +lwy nTl nTl nTl @@ -80389,13 +80389,13 @@ nTl nTl nTl nTl -tZL -nns -nns -nns -pyV -nns -nns +nJO +cDk +cDk +cDk +iav +cDk +cDk saC saC saC @@ -80404,63 +80404,63 @@ saC saC saC tiQ -coD +hIH xYD -tQO -omb -omb -rzV -tzl -xOJ -omb -omb -qPw -ppg -cPu -wLX -qXd -hrA -qxq -nkB -fbk -dDB -aWK -iru -sln -aWK -abF +xnH +hEU +hEU +tql +jpT +iuM +hEU +hEU +hrJ +cLr +mAv +mdR +fuY +rKw +nvP +iKX +bfz +tBZ +voq +cSN +bzo +voq +cAA tiQ bjd -poa -qQL -qQL -xBU -iGi -qZX -qZX -qZX -pcE -iGi -pcE -pcE -pcE +pIP +uwO +uwO +cqg +oTv +hqo +hqo +hqo +frJ +oTv +frJ +frJ +frJ bjd bjd mPj -mVn +hRw ftd lTd iJE -iSp -oiQ +hmR +cQP wDj -oec +cKm qSH qSH vGp vGp vGp -lna +jKG tkL vGp qSH @@ -80470,30 +80470,30 @@ qSH qSH vGp vGp -lTo -ghv -dAu +nUA +ugK +dti xAZ djM -oUS -ghv +dvs +ugK fkj mtI mHU -qAP -kER -xOK +lTJ +cmN +qyx bWd jHi fkj -ghv -jBl +ugK +lDB sAp vHw -uEw -ghv -xOl -mZi +qWQ +ugK +uVF +qnL rnB sKJ sKJ @@ -80511,30 +80511,30 @@ tTD tTD rnB rnB -tNi +iyr vNk xHr xez xez xez veT -uTF +dPK uQr -lei +ngb hMT -eac -owf -wck +ctR +niD +deI qAt -aFI +fbd vNk -xdf +bWS xhD acE -xdf -bXg -elT -pue +bWS +htH +aCW +iZT qjO ylo ylo @@ -80550,19 +80550,19 @@ ybj uwT uwT uwT -tBm -wLs -wLs -wLs -wLs -wLs +miw +tHx +tHx +tHx +tHx +tHx xzK xzK jas jas -rMw -rMw -rMw +uPl +uPl +uPl jas jas jas @@ -80577,7 +80577,7 @@ ctE jas kFd nQu -qIt +jwO jas cpy cpy @@ -80594,35 +80594,35 @@ bMX cpy tiQ jEu -oPM +aoj svW svW -rLj -vjp -vjp -vjp -vjp -vjp -bON -lMD -vjp -nns -nns +qsA +bwE +bwE +bwE +bwE +bwE +iBC +cSX +bwE +cDk +cDk nTl nTl nTl nTl nTl nTl -crC -nns -lMD -nns -nns -nns -eoE -nns -nns +pVB +cDk +cSX +cDk +cDk +cDk +lwl +cDk +cDk hOy saC saC @@ -80631,63 +80631,63 @@ saC saC tiQ jEu -tGr +cum xYD -tQO -tGr -omb -omb -jkl -omb -omb -cbN -qPw -eja -lKb -wLX -gCR +xnH +cum +hEU +hEU +vfM +hEU +hEU +bbY +hrJ +eIM +msL +mdR +pZe saC saC tiQ tiQ tiQ seF -mso -iYK +bGY +jBS seF tiQ tiQ bjd -hFw -kEK -pcE +cPs +iyJ +frJ bjd -tdc -qZX -qZX -qZX -qZX -glp -xan -xan -xan -vKy -lIT +laa +hqo +hqo +hqo +hqo +skX +kZW +kZW +kZW +djk +dOf mPj -iuV +vJA axN eJR -kFz +viu wDj wDj wDj -fqc +tFt xSv xSv xSv lTV lTV -kAo +bMs lTV dCY qSH @@ -80697,38 +80697,38 @@ qSH vGp vGp vGp -lTo -ghv -oUS +nUA +ugK +dvs xAZ xOw -grK -ghv +xFq +ugK gUi jHi fkj -jDg -naR -ogh +nhC +eDh +aEX mHU fkj fkj -ghv -dAu +ugK +dti xOw snb -bsS -ghv -xOl +udY +ugK +uVF xXg -dlY -dlY -dlY -dlY -dlY -dlY -dlY -dlY +kpj +kpj +kpj +kpj +kpj +kpj +kpj +kpj rnB rnB rnB @@ -80738,35 +80738,35 @@ tTD tTD rnB rnB -xlF +hsD vNk qfK uNp uNp ugR tGh -uHP +udQ cct gbm ozn -fYk +ada vNk -bhs +xmr chR -qOJ +sgS vNk -fnc +qQK xgA acE -xdf -bXg -elT -pue +bWS +htH +aCW +iZT qjO ylo -xUD -qNk -bDf +rnC +rmR +sYu ylo yaf uwT @@ -80777,7 +80777,7 @@ uwT uwT uwT uwT -mGF +exl uzI dDq dDq @@ -80788,9 +80788,9 @@ uzI uzI uzI ybz -gfT -gfT -gfT +whu +whu +whu cpy cpy cpy @@ -80802,9 +80802,9 @@ ctE ctE ctE jas -wHX +wFL nQu -sZz +hbO jas cpy cpy @@ -80820,8 +80820,8 @@ bMX bMX saC tiQ -uyp -vwj +qTn +pHX azz azz azz @@ -80834,22 +80834,22 @@ dDS fFw iZI iZI -nns +cDk nTl nTl nTl nTl nTl nTl -nns -abq -lMD -nns -nns -nns -pyV -nns -nns +cDk +aXC +cSX +cDk +cDk +cDk +iav +cDk +cDk tiQ saC saC @@ -80857,64 +80857,64 @@ saC saC saC tiQ -xsx -tGr +jfb +cum xYD fxh -aWK -mso -lpE -tGr -tGr -tGr -tGr -hqE -rWt +voq +bGY +asw +cum +cum +cum +cum +ixr +pAB saC saC saC saC tiQ tiQ -cam -iru -iru -tGr -tGr -wFa +wQt +cSN +cSN +cum +cum +xNr tiQ tiQ bjd -aCt -aCt +oZE +oZE bjd bjd -eYQ -dXZ -qZX -qZX -qZX -qZX -qZX -qZX -qZX -kHm -qiT -iZz +reg +voQ +hqo +hqo +hqo +hqo +hqo +hqo +hqo +wSA +hYe +sCd lAa gjA -bVV +hqA wDj wDj xFp xFp -bBL +qlC qSH qSH qSH qSH vGp -lna +jKG vGp umR qSH @@ -80923,30 +80923,30 @@ qSH qSH vGp vGp -iew +urQ xZP -ghv -dAu -pHX -lUx -dAu -ghv +ugK +dti +oiU +llI +dti +ugK fkj fkj mHU -xbO -fUw -aZb +vkQ +lXk +fZa fkj mtI fkj -ghv -oUS -bSa +ugK +dvs +fuV xAZ -dAu -ghv -xOl +dti +ugK +uVF xXg wIi tTK @@ -80956,7 +80956,7 @@ tTK tTK tTK xXg -kZU +eOs rnB rnB cpy @@ -80965,7 +80965,7 @@ rnB tTD rnB rnB -xlF +hsD vJD tGh uNp @@ -80976,24 +80976,24 @@ vNk hAy xMO ozn -fYk +ada vNk -rnl +fGC ozn -ksp +fdi vNk xvl -xdx -dJX +gPe +jKt xvl xvl -elT -pue +aCW +iZT qjO ylo -bDf +sYu ttC -xUD +rnC ylo mkm uwT @@ -81004,17 +81004,17 @@ pLu uwT uwT uwT -mGF -mSE -oTB -oTB -nYB -nYB -nYB -kdt -heM +exl +kdj +fSZ +fSZ +tko +tko +tko +wXm +oLJ tos -moR +ifV wQa wQa wQa @@ -81029,7 +81029,7 @@ ctE ctE ctE jas -wHX +wFL nQu fZA jas @@ -81061,22 +81061,22 @@ dDS iZI iZI iZI -vjp -pyV -xUa -crC -crC -ung -lMD -vjp -pxz -lMD +bwE +iav +rJn +pVB +pVB +ila +cSX +bwE +gCn +cSX tiQ tiQ tiQ -pyV -nns -nns +iav +cDk +cDk tiQ saC saC @@ -81084,64 +81084,64 @@ saC saC saC tiQ -xsx -ewH -fzy -gJg +jfb +wNj +gHb +uMG pEs -noS -sot +vgp +ddJ pEs -dgr -icd -icd -daY -wLX -wLX +oro +peT +peT +ylt +mdR +mdR saC saC saC tiQ -giQ -rLP -ewH -fzy -fzy -noB -dTh -xLP +qUN +wTX +wNj +gHb +gHb +wHX +lxB +byU tiQ bjd -jWn -gey +mlr +jVu bjd bjd -cKg -laU -dXZ -qZX -qZX -qZX -qZX -qZX -qZX -aZV -cDt -xBU +cbc +hiP +voQ +hqo +hqo +hqo +hqo +hqo +hqo +yjb +fUd +cqg iJE gok -bVV -lhY -lRN -sMW -ykz -bBL +hqA +meQ +sip +xlr +aBA +qlC qSH qSH qSH vGp vGp -lna +jKG qSH umR qSH @@ -81149,13 +81149,13 @@ qSH qSH vGp vGp -iew +urQ xFp pKX pKX pKX -iUe -qmL +rqk +qQU pKX pKX pKX @@ -81168,12 +81168,12 @@ fkj fkj fkj pKX -oUS -aLV -vdM -dAu +dvs +dNj +rpc +dti pKX -xOl +uVF xXg tTK tTK @@ -81184,7 +81184,7 @@ tTK tTK tTK gjt -kZU +eOs cpy cpy rnB @@ -81192,7 +81192,7 @@ rnB tTD rnB sKJ -xlF +hsD vJD fMP uNp @@ -81203,24 +81203,24 @@ vNk bXO xMO ozn -rVp +lFG vNk -xSe +fLR ddK -dVI +hri vNk xvl -oYS -cHx +mCG +lBc xvl xvl -elT -pue +aCW +iZT qjO jOF -noA +clz pLs -pIA +eYY ylo mkm uwT @@ -81231,17 +81231,17 @@ tXW uwT uwT uwT -mGF -mSE -oTB -cSU -cSU +exl +kdj +fSZ +vTh +vTh xPH -cSU -kdt -heM +vTh +wXm +oLJ tos -moR +ifV wQa wQa wQa @@ -81274,8 +81274,8 @@ bMX bMX saC saC -ifo -fZN +jSm +vrp aLJ aLJ iZI @@ -81288,22 +81288,22 @@ eOe iZI iZI fFw -vjp -pyV -abq -xXc -xXc -xXc -lMD -vjp -abq -lMD -nns -nns -nns -pyV -nns -nns +bwE +iav +aXC +qjc +qjc +qjc +cSX +bwE +aXC +cSX +cDk +cDk +cDk +iav +cDk +cDk tiQ tiQ saC @@ -81311,93 +81311,93 @@ saC saC saC tiQ -tGr -ppg -wLX -gCR -tGr -mso -lpE -tGr -aDD -wLX -wLX -kMl -wLX -wLX -wLX -saC -saC -tiQ -jMN -hza -gDt -tPU -cQK -nFe -noB -uxK +cum +cLr +mdR +pZe +cum +bGY +asw +cum +kDE +mdR +mdR +ePH +mdR +mdR +mdR +saC +saC +tiQ +rnR +amJ +xwr +mEY +wTS +vsK +wHX +kIB tiQ bjd -jWn -gey -jWn +mlr +jVu +mlr bjd bjd -qQL -glp -xan -nZc -nZc -nZc -xan -xan -aei -hYo +uwO +skX +kZW +qhd +qhd +qhd +kZW +kZW +mRo +jxT mPj -bVV +hqA iJE -bVV -lhY -aJE -rnf -vfA -bBL +hqA +meQ +mVQ +rdZ +vQy +qlC qSH qSH vGp vGp -iew -lna -cRC -cZy -bqt -cRC -cRC -cRC -cRC +urQ +jKG +wFh +rVk +lSm +wFh +wFh +wFh +wFh xFp tDS tDS -xKA -nJi -ntA -cZW -jdL -jhm +uVD +gHh +sza +bsu +nNe +uHl tDS -krg -krg +veE +veE tDS tDS -krg -krg +veE +veE tDS gdO gdO gdO -uPW -mlh +fzn +qjZ gdO gdO tTK @@ -81411,7 +81411,7 @@ tTK tTK tTK tTK -mZi +qnL rnB cpy cpy @@ -81419,7 +81419,7 @@ rnB tTD tTD tTD -xlF +hsD vJD qdS ugR @@ -81430,24 +81430,24 @@ vNk vwH xMO ozn -ksp +fdi vNk -rnl +fGC kSs -dVI +hri vNk -sNE +pMP xhD bsG -sNE -bXg -elT -pue +pMP +htH +aCW +iZT qjO ylo -fuY -jLN -fuY +qDK +uoP +qDK ylo syB uwT @@ -81458,17 +81458,17 @@ fWG uwT uwT uwT -mGF -irt -oTB -cSU -cSU +exl +lEL +fSZ +vTh +vTh acp -cSU -kdt -heM +vTh +wXm +oLJ tos -moR +ifV wQa wQa wQa @@ -81502,7 +81502,7 @@ bMX saC saC saC -ifo +jSm aLJ aLJ aLJ @@ -81515,23 +81515,23 @@ dDS fpn iZI oim -vjp -pyV -abq -abq -xXc -eIU -mlC -icU -xXc -lMD -nns -nns -nns -eoE -nns -nns -xXc +bwE +iav +aXC +aXC +qjc +qKy +sat +jIV +qjc +cSX +cDk +cDk +cDk +lwl +cDk +cDk +qjc tiQ saC saC @@ -81539,106 +81539,106 @@ saC tiQ tiQ vjl -ppg -wLX -gCR -nXu -tiQ -tiQ -rZk -lvZ -wLX -wLX -kMl -wLX -wLX -wLX -gCR -tGr +cLr +mdR +pZe +mJC +tiQ +tiQ +xMI +cRF +mdR +mdR +ePH +mdR +mdR +mdR +pZe +cum idX -mJf -cFh -ewH -sOn -lje -noB -dUU -fML +ffV +bpH +wNj +rvY +oYn +wHX +vFL +hzf vKP bjd -qQL -wzD -qQL +uwO +skr +uwO bjd bjd -qQL -qZX -qZX -qZX -qZX -qQL -qQL -qQL +uwO +hqo +hqo +hqo +hqo +uwO +uwO +uwO bjd bjd mPj -ola -bVV -pYd +vnv +hqA +xwY wDj -hLV -tET -cBB -bBL +nVr +eFY +fHm +qlC qSH vGp vGp -iew +urQ xFp tDS tDS -aEo -krg +dGS +veE tDS -krg -krg +veE +veE tDS tDS tDS -xFd -cWD -jNm +rZv +lxo +srP xDM lwW -kch -nJi -cCk -qwk -qwk +lxv +gHh +aRL +dTK +dTK tDS -nxt -dJQ -aNj -aje +aQi +bok +jaZ +mSI gdO -oFn -vrh -rfL -oTW -hzH -iyN +ozi +ijS +xBt +lRL +jFL +kdt tTK -qUj -rMS -lDj -riW +szR +kUY +mWB +vus tTK -rLz -wyH -miX +lpl +fRL +rOx tTK tTK -mZi +qnL rnB cpy cpy @@ -81646,7 +81646,7 @@ tTD tTD tTD tTD -xlF +hsD vJD xcJ ugR @@ -81657,23 +81657,23 @@ vNk fko xMO xMO -ksp +fdi urv -ksp +fdi xMO -fYk +ada vNk -sNE +pMP xhD bsG -xdf -bXg -elT -pue +bWS +htH +aCW +iZT qjO ylo ylo -lpm +qyh ylo ylo syB @@ -81685,17 +81685,17 @@ fWG uwT uwT uwT -mGF +exl uzI -nYB -cSU -alC +tko +vTh +ewu acp xPH -kdt -heM +wXm +oLJ tos -moR +ifV wQa wQa wQa @@ -81730,7 +81730,7 @@ saC saC saC saC -ifo +jSm aLJ aLJ dFT @@ -81742,23 +81742,23 @@ cVy iZI dJs svW -vjp -pyV -abq -abq -abq -abq -lMD -vjp -crC -lMD -nns -nns -nns -pyV -nns -crC -xXc +bwE +iav +aXC +aXC +aXC +aXC +cSX +bwE +pVB +cSX +cDk +cDk +cDk +iav +cDk +pVB +qjc saC saC saC @@ -81767,105 +81767,105 @@ saC saC saC saC -wLX +mdR saC saC tiQ tiQ -tGr -ppg -wLX -ecL -cwv -wLX -wLX -vHW -gCR -aWK -rOT -tGr -ppg -qgP +cum +cLr +mdR +iOB +bOx +mdR +mdR +jjE +pZe +voq +eUd +cum +cLr +dJF lmY lmY -xel -gCR -tGr +tVc +pZe +cum qjG bjd -qQL -pcE -pcE -jWn +uwO +frJ +frJ +mlr bjd -qQL -qZX -qZX -qZX -qQL +uwO +hqo +hqo +hqo +uwO wDj wDj wDj wDj wDj wDj -lhY -fwJ -lhY +meQ +tMy +meQ wDj xFp xFp -ikA -pEn +bhw +tBu vGp vGp vGp -xZI +kSa tDS tDS -ams -xoP -jdL -ciM -jdL -iRc -sXD -ldQ +hRY +jTL +nNe +gQQ +nNe +fnQ +wAv +jrs tDS -rYG -vke +poo +iqW kYH lkH lwZ jUn -lvJ -dik -uAE -qwk +ovG +mXK +qjw +dTK tDS -baK -xFc -pUS -vEu +vZB +vqY +uCS +cxn gdO gdO -mfc +cCh oyr pbN -cPb +qUw gdO tTK -qUj -scL -mLn +szR +wDf +sTT tTK tTK -tRL -cHk -ePD -bwv +xhj +qkR +aYP +nzw tTK -mZi +qnL cpy cpy rnB @@ -81873,7 +81873,7 @@ tTD tTD tTD tTD -xlF +hsD vNk wlw tGh @@ -81884,19 +81884,19 @@ vNk bXO ozn xMO -ksp +fdi urv -ksp +fdi ozn -ksp +fdi vNk xvl -xkc -qsB +sEf +oge xvl xvl -elT -pue +aCW +iZT gBy mUr kSm @@ -81912,17 +81912,17 @@ fWG uwT uwT uwT -mGF +exl uzI -nYB +tko xPH acp xPH xPH -eVb -heM +oZT +oLJ tos -moR +ifV wQa wQa wQa @@ -81969,23 +81969,23 @@ dDS fFw iZI svW -vjp -pyV -abq -vjp -vjp -abq -lMD -vjp -crC -dds -tiQ -tiQ -tiQ -vvX -crC -crC -eIU +bwE +iav +aXC +bwE +bwE +aXC +cSX +bwE +pVB +azp +tiQ +tiQ +tiQ +uGz +pVB +pVB +qKy saC saC saC @@ -82000,99 +82000,99 @@ saC tiQ tiQ saC -toh -ntE -fzd -bEC -bEC -bEC -bEC -cgy -tGr -mso -tGr -ppg -qgP +rED +fjS +wLK +qeC +qeC +qeC +qeC +hzY +cum +bGY +cum +cLr +dJF lmY lmY -xel -gCR -iru +tVc +pZe +cSN qjG bjd -pcE -wzD -wzD -qQL -xBU -qQL -qZX -qZX -qQL +frJ +skr +skr +uwO +cqg +uwO +hqo +hqo +uwO wDj wDj -dUJ -dUJ -dUJ +jfF +jfF +jfF wDj -mnW -dUJ -dUJ -dUJ +cxF +jfF +jfF +jfF wDj xFp -qac +iAP qSH umR vGp vGp vGp -xZI -qyH -gUL -dJQ -taz -aYB -bzJ -vdS -vdS -pin -dzO -pJJ -tAG -nhJ +kSa +bdP +byO +bok +smf +fIy +wZd +eON +eON +jjr +kTG +uCf +oWn +hQY kZj oGF pVo wGY fRS iXZ -fnr -dJQ +gWz +bok tDS -leS -nTe -qut -dzO -wYD -mEt -tYX +goG +xkY +dWP +kTG +jJu +eVb +tdj uuH pej -xvv -mpv +riQ +dmt tTK -eAe -pjy -mLn +gYu +oed +sTT tTK -cYw -aql -upW -jkA -fub +bdf +izB +lqz +nzS +utE tTK -mZi +qnL cpy rnB tTD @@ -82100,7 +82100,7 @@ rnB rnB tTD rnB -xlF +hsD vNk vNk tFB @@ -82108,22 +82108,22 @@ uuB uuB tMT vNk -ozf -ksp -ksp -tTj +fcI +fdi +fdi +koD vNk -sbO +eeS ozn -qdY +ipQ vNk -oIn +hht xgA acE -sNE +pMP xvl -elT -pue +aCW +iZT fWG fWG uwT @@ -82139,17 +82139,17 @@ fWG uwT uwT uwT -mGF -mSE -oTB -cSU -cSU -cSU -cSU -eVb -heM +exl +kdj +fSZ +vTh +vTh +vTh +vTh +oZT +oLJ tos -moR +ifV wQa wQa cex @@ -82165,7 +82165,7 @@ ctE ctE jas jas -eau +kIP jas jas cpy @@ -82195,23 +82195,23 @@ fib gbQ jYj jYj -nrI -jDD -uWq -tqO +hCW +jqW +eLo +xkJ nTl nTl -vjp -lMD -vjp -nns -lMD -nns -nns -nns -vvX -crC -crC +bwE +cSX +bwE +cDk +cSX +cDk +cDk +cDk +uGz +pVB +pVB saC saC saC @@ -82226,100 +82226,100 @@ saC saC tiQ tiQ -tGr -tGr -qPw -tGr -tGr -tGr -fbk -tGr -tGr -tGr +cum +cum +hrJ +cum +cum +cum +bfz +cum +cum +cum idX -qNZ -cFh -bgY -qzI -iIA -cgy -iNl -fML +bXf +bpH +vVV +vsw +vEi +hzY +oMG +hzf qjG bjd -ubO -wzD -wzD -pcE -xBU -pmw -fjc -fjc -yik +wwN +skr +skr +frJ +cqg +beN +avN +avN +jge wDj -dUJ +jfF eJR eJR -mqX -lhY -dUJ +nEU +meQ +jfF eJR eJR -eVo -lhY +oaS +meQ xFp -qac +iAP qSH umR vGp vGp vGp -xZI -pJJ -xTt -wap +kSa +uCf +kol +ake mhT sWr wGY sWr krK -cJP -kai +tfj +doY tDS -ttg -jmD +wWy +pKJ kZB lHV lwW sWr qBb iXZ -nTA -oOc +xsg +amH tDS -baY -hhZ -cJP -pfs -thn -pXc -xFX +bsD +qOm +tfj +eoL +eiH +wrS +nMN xxw pej -xvv -teb +riQ +dvt tTK -hOa -vIY -ioL +mfg +okn +leq tTK tTK tTK -cDU +rRb tTK tTK tTK -mZi +qnL cpy tTD tTD @@ -82327,7 +82327,7 @@ tTD tTD tTD tTD -xlF +hsD wIi vNk vNk @@ -82336,21 +82336,21 @@ vJD vNk vNk vNk -xry +uGU vNk vNk vNk -gVo +rKY xiu -joW +lXV vNk -xdf +bWS xgA acE -sNE -lOG -elT -pue +pMP +aer +aCW +iZT cpy cpy uwT @@ -82366,17 +82366,17 @@ uwT uwT uwT uwT -mGF -mSE -oTB -cSU -cSU -cSU -alC -eVb -heM +exl +kdj +fSZ +vTh +vTh +vTh +ewu +oZT +oLJ tos -moR +ifV cex cex eXG @@ -82391,9 +82391,9 @@ abo abo jas jas -eNh +aml vpe -oGv +rMW jas jas cpy @@ -82422,21 +82422,21 @@ iZI dDS iZI iZI -nns -icU -sdL -uNQ +cDk +jIV +pWG +gDX nTl nTl -bGY -lMD -vjp -nns -lMD -nns -nns -crC -vvX +uti +cSX +bwE +cDk +cSX +cDk +cDk +pVB +uGz saC saC saC @@ -82454,66 +82454,66 @@ tiQ tiQ tiQ tiQ -fNl -rGW -fNl -fNl +jPF +ddk +jPF +jPF tiQ tiQ tiQ tiQ tiQ tiQ -muK -qqT -vai -whI -vGS -jzp -ayk -sln +eMa +uxc +dyA +bQa +izM +dGs +eld +bzo lTi bjd -ubO -pcE -sBZ -qQL +wwN +frJ +lgv +uwO bjd bjd -jEH -mvn -jEH +obC +eLL +obC wDj -dUJ +jfF eJR iJE -dSE -lhY -dUJ +mLi +meQ +jfF rlB azE -oDM -lhY +iJC +meQ xFp -qac +iAP qSH umR vGp vGp vGp -xZI +kSa tDS -btZ -haC +hWS +qGE xcE tDS -rZf +sxL xuk kHP wxZ -hlm -ghx -qjS +slo +sYr +ltO nIa jvu qZT @@ -82522,31 +82522,31 @@ ngY vEW iYm wgf -kyv -iDI -bJW -haC -fnr -dJQ -cSg -kbr -tYX +alq +qfv +brB +qGE +gWz +bok +vih +juv +tdj nhD pfN -xvv -mpv +riQ +dmt tTK -gGc -xdW -dUC -cNl -gBM -pmh -sKt -blB -xtx -mel -mZi +kEv +sqv +tFW +efh +aiY +wCN +wHQ +sKV +kOW +qhn +qnL tTD tTD rnB @@ -82554,9 +82554,9 @@ tTD tTD tTD tTD -xlF +hsD xXg -gEI +mGr aGE uvC vfC @@ -82567,17 +82567,17 @@ rMz xXg vNk vNk -scJ -scJ +oFD +oFD vNk vNk -fnc +qQK xgA bsG -sNE +pMP xvl -elT -pue +aCW +iZT cpy uwT uwT @@ -82593,17 +82593,17 @@ uwT uwT uwT uwT -mGF -irt -oTB -oTB -nYB -nYB -oTB -eVb -heM +exl +lEL +fSZ +fSZ +tko +tko +fSZ +oZT +oLJ tos -moR +ifV eXG eXG eXG @@ -82617,11 +82617,11 @@ cpy cpy abo jas -rsT +vaA vpe eso eso -amv +iPh jas cpy cpy @@ -82641,7 +82641,7 @@ saC saC saC saC -oHH +jwU aLJ aLJ aLJ @@ -82649,20 +82649,20 @@ iZI dDS iZI iZI -nns -vjp -pyV -jRL +cDk +bwE +iav +fzH nTl nTl -vjp -lMD -vjp -nns -lMD -nns -nns -crC +bwE +cSX +bwE +cDk +cSX +cDk +cDk +pVB saC saC saC @@ -82676,34 +82676,34 @@ saC saC saC tiQ -rGM -tBu -pcv -tGA -jeg -oaM -khQ -nwh -nwh -fEl -iZE +rGH +unv +fMr +qmg +xzY +mQa +jyI +mnF +mnF +vtx +cVZ mQd nbj saC tiQ -bvU -rLP -bgY -bEC -bEC -cgy -cjs -gDy +hcW +wTX +vVV +qeC +qeC +hzY +bdE +iOT tiQ bjd bjd -mjh -knx +fLD +bod bjd bjd bjd @@ -82711,36 +82711,36 @@ bjd bjd bjd wDj -dUJ -qVJ -dUJ -dUJ -lhY -dUJ +jfF +din +jfF +jfF +meQ +jfF rlB eJR -pyq -lhY +wxX +meQ xFp -qac +iAP qSH umR vGp vGp vGp -xZI +kSa tDS -qRP -haC +akd +qGE lbA hMb -uSH +pGH xSP leV wCM -kKe -uPK -tjX +xPI +cZk +ksY waZ pVo wGY @@ -82749,31 +82749,31 @@ mEz iwt anM jUn -vUZ -ruI -ucs -gQw -iek -dJQ +rXN +mFP +gmc +aTI +xQt +bok gdO gdO -nDr -rfL -vJM -stH +eAs +xBt +lcX +rcF gdO tTK -gmW -wIo -rpO -swH -cwd -cwd -hPK -tXI -tNa -mel -mZi +umQ +oFQ +lNk +aDH +fzD +fzD +eBb +jrW +dhz +qhn +qnL rnB tTD rnB @@ -82781,9 +82781,9 @@ tTD tTD tTD rnB -xlF +hsD xXg -gEI +mGr xXg xXg xXg @@ -82799,12 +82799,12 @@ vNk vNk vNk xvl -xkc -uNk +sEf +rGy xvl xvl -elT -pue +aCW +iZT fWG uwT uwT @@ -82820,17 +82820,17 @@ uwT uwT uwT uwT -mGF +exl uzI -kxJ -kxJ +eRQ +eRQ uzI -kxJ -kxJ +eRQ +eRQ uzI uzI uzI -moR +ifV eXG eXG eXG @@ -82844,11 +82844,11 @@ wQa cpy cpy jas -mhf +mpx cTZ suh vpe -iZZ +sVV jas cpy cpy @@ -82868,8 +82868,8 @@ saC saC saC saC -rLj -kxT +qsA +mJi aLJ aLJ iZI @@ -82877,18 +82877,18 @@ dDS iZI iZI iZI -vjp -pyV -iOy -tqO -vjp -vJa -rfn -jDD -rmg -jzT -jnj -kVQ +bwE +iav +xZj +xkJ +bwE +ybn +vTF +jqW +xjI +grW +iNr +jfl tiQ saC saC @@ -82903,28 +82903,28 @@ saC saC saC saC -rGM -rGM -pcv -nwh -cnp -nwh +rGH +rGH +fMr +mnF +rWi +mnF mdD woG -nwh -fEl -nwh +mnF +vtx +mnF mQd nbj sZq tiQ tiQ -lXG -iru -iru -iru -baH -gOQ +jaA +cSN +cSN +cSN +mgL +vGe tiQ tiQ saC @@ -82940,67 +82940,67 @@ saC wDj wDj wDj -hQz -ilN +cOy +wgj uaY -jNN +sUM eJR eJR -sSc +fXP wDj -xWj -qac +xdZ +iAP qSH umR qSH vGp vGp -xZI -qyH -jpI -pFM +kSa +bdP +gdq +fXb gaw sWr wGY xJL olI -cJP -dzO +tfj +kTG tDS -unu -haC +kcG +qGE ixQ mEz koM wGY lRF ojt -cJP -gEt +tfj +wWs tDS -mxA -tuf -qRd -qOC -sZn -htG +bhb +xEZ +ccT +uKG +gZZ +ged tNC -gwY -bCG +pkm +bcp tNC -tPo -wVN -oCB -iEQ -oDe -dxO -cXp -bqk -tCU -dHZ -hHT -mel -mZi +roi +kmZ +lxt +rHT +fmM +iHG +uBV +vpS +spi +piu +uxJ +qhn +qnL tTD tTD tTD @@ -83008,9 +83008,9 @@ tTD tTD tTD rnB -rWN +nCh xXg -gEI +mGr xXg mJQ xXg @@ -83023,15 +83023,15 @@ xXg xXg hxY rHX -unF -bXg -sNE +cIE +htH +pMP xhD bsG -sNE -bXg -elT -pue +pMP +htH +aCW +iZT fWG fWG uwT @@ -83047,7 +83047,7 @@ uwT uwT uwT uwT -mGF +exl cwL ybz ybz @@ -83057,7 +83057,7 @@ ybz ybz cwL ybz -moR +ifV wPN eXG eXG @@ -83071,11 +83071,11 @@ wQa wQa cpy jas -jjO +aTs eso wJq wNX -dBH +iKB jas cpy cpy @@ -83096,27 +83096,27 @@ saC saC saC saC -kxT -kxT -kxT +mJi +mJi +mJi aLJ dDS iZI iZI svW svW -pyV -abq -mRk -rmg -lPe -lMD +iav +aXC +cQi +xjI +ida +cSX svW svW -abq -abq -pId -vjp +aXC +aXC +eya +bwE saC saC saC @@ -83130,17 +83130,17 @@ saC saC saC saC -rGM -rGM -pcv -nwh -cnp -nwh +rGH +rGH +fMr +mnF +rWi +mnF mdD woG -sdQ -fEl -nwh +hpQ +vtx +mnF mQd nbj sZq @@ -83169,65 +83169,65 @@ utq saC qSH qSH -ojm -dUJ +pjR +jfF rlB eJR -bVV -pss -tMG -qac +hqA +hkB +ilu +iAP qSH umR qSH vGp vGp -xZI -osQ -tAG -dCe -scP -bpF -bpF -bJx -aaP -qWb -dJQ -kde -jIt -pFM -uNa -nIx -aaP -bpF -bpF -odC -myk -gEt +kSa +hzR +oWn +fan +hbQ +efw +efw +tAl +vyb +cIt +bok +axf +jzO +fXb +fJt +jhR +vyb +efw +efw +nce +uAM +wWs tDS -mQc -haC -uvI -dzO +pRC +qGE +tnc +kTG gdO -pXc -ghK +wrS +neh uuH pfN -cfQ -tJP +wsO +osp tTK -lDj -ajW -nvM -rQo -omz -xhU -mcM -dHZ +mWB +vTE +hQK +ffc +cIP +nph +asl +piu tTK tTK -mZi +qnL sKJ tTD tTD @@ -83236,8 +83236,8 @@ tTD tTD rnB rnB -xlF -gEI +hsD +mGr gIg ceG sRY @@ -83250,15 +83250,15 @@ xXg xXg xXg qLQ -pyT -bXg -sNE +vib +htH +pMP xhD bsG -sNE -bXg -elT -pue +pMP +htH +aCW +iZT fWG fWG uwT @@ -83274,7 +83274,7 @@ uwT uwT uwT uwT -mGF +exl ybz ybz ybz @@ -83284,7 +83284,7 @@ ybz ybz ybz ybz -moR +ifV uja uja uja @@ -83296,15 +83296,15 @@ wQa wQa wQa wQa -suC +wJp jas -goS +nzE vpe eso wNX -qIU +sbY jas -moR +ifV eXG cpy cpy @@ -83325,25 +83325,25 @@ saC saC saC tiQ -kxT -kxT +mJi +mJi cTX iZI iZI iZI svW -iiP -ezA -ezA -ezA -iBE -iAL +hGD +lwy +lwy +lwy +hBa +fdN svW -abq -abq -abq -hdc -vjp +aXC +aXC +aXC +reM +bwE saC saC saC @@ -83353,21 +83353,21 @@ saC saC saC saC -jtH -kZP -jPe -jPe -kZP -skL +lAW +mIj +pfG +pfG +mIj +gsw tiQ -nwh -cnp -nwh +mnF +rWi +mnF mdD woG -nwh -fEl -nwh +mnF +vtx +mnF mQd nbj sZq @@ -83400,61 +83400,61 @@ qSH eJR rlB iJE -bVV -hQz -tMG -qac +hqA +cOy +ilu +iAP qSH umR qSH qSH vGp -xZI +kSa tDS tDS -sNG -dJQ -fUK -plH -nAX -fUK -jWS -rmJ +tRA +bok +uPR +diq +mqF +uPR +nsA +iil tDS -pfs -mnJ -soa -qRn -tDf -lRJ -dzO -oOc -dJQ -dJQ +eoL +wPP +ptx +iaa +uSr +tpC +kTG +amH +bok +bok tDS -rNJ -pFM -myk -jOy -lYr -nzD +xVN +fXb +uAM +hvS +faw +tkN mWF -xEN -vJM +cBp +lcX poQ -fHj -xFh -mLn -ajW -ngr -eRq -nrn -gkG -dRQ -vKH -xEL +enI +qVM +sTT +vTE +fvb +twC +fMo +uRA +bdQ +gOB +aYC tTK -mZi +qnL sKJ tTD tTD @@ -83462,7 +83462,7 @@ tTD tTD tTD rnB -mzz +xDm xXg uuD uuD @@ -83480,12 +83480,12 @@ gIg imT xvl xvl -xdx -dJX +gPe +jKt xvl xvl -elT -pue +aCW +iZT uwT fWG fWG @@ -83501,7 +83501,7 @@ uwT uwT uwT uwT -mGF +exl ybz ybz ybz @@ -83511,7 +83511,7 @@ ybz ybz ybz ybz -moR +ifV eXG eXG eXG @@ -83523,15 +83523,15 @@ wQa wQa wQa wQa -suC +wJp jas jas -riL +lRA eso -riL +lRA jas jas -moR +ifV eXG cpy cpy @@ -83553,24 +83553,24 @@ saC saC tiQ tiQ -bAf -kxT -rLj -vjp -vjp -icU -vjp -vjp -vjp -vjp -jRL -vjp -vjp -vjp -vjp -vjp -vjp -sFB +oQM +mJi +qsA +bwE +bwE +jIV +bwE +bwE +bwE +bwE +fzH +bwE +bwE +bwE +bwE +bwE +bwE +fIX saC saC saC @@ -83578,23 +83578,23 @@ saC saC saC saC -rGM -unw -cAh +rGH +lDe +oNh jHb jHb jHb jIR -qjT -tiQ -jOq -cnp -nwh -ruP -nwh -nwh -fEl -jOq +mGx +tiQ +yjB +rWi +mnF +pPL +mnF +mnF +vtx +yjB mQd nbj sZq @@ -83619,7 +83619,7 @@ qSH qSH qSH qSH -bVV +hqA eJR eJR eJR @@ -83627,61 +83627,61 @@ eJR eJR hcE sjQ -aTM +bhK wDj -sMP -qac +nEJ +iAP qSH umR qSH qSH qSH -fbN +mqa xFp tDS tDS -krg -eNa +veE +cjo tDS -qdR -krg +oJX +veE tDS tDS tDS -krg -iUe -qmL -krg +veE +rqk +qQU +veE tDS tDS -krg -krg -krg +veE +veE +veE tDS tDS -dgS -mGE -dzO -dUX +nSx +oZb +kTG +uoi gdO gdO -iQP -rfL -oTW -rDc +nkc +xBt +lRL +iYr gdO tTK -hsv -xdW -tUY +ktX +sqv +nxk tTK tTK tTK -xOi -vpg -lvq +atq +jBI +eHm tTK -mZi +qnL rnB cpy cpy @@ -83689,30 +83689,30 @@ tTD rnB tTD rnB -xlF +hsD uuD uuD -xmu -kiR +fTt +muC uuD -vRE -xLv +fMB +tWx uuD uuD -cAP -lOY +eVQ +kFg uuD uuD xXg imT xvl xvl -ahC -cHx +pXF +lBc xvl xvl -elT -pue +aCW +iZT uwT uwT fWG @@ -83728,7 +83728,7 @@ uwT uwT uwT uwT -mGF +exl cwL ybz ybz @@ -83738,7 +83738,7 @@ ybz ybz cwL ybz -moR +ifV eXG eXG eXG @@ -83750,15 +83750,15 @@ wQa wQa fdh wQa -bho +rMe ybz jas jas -eau +kIP jas jas ybz -cvx +rDU eXG eXG cpy @@ -83786,12 +83786,12 @@ dkC dkC dkC tiQ -nns -nns -nns -nns -dmD -nns +cDk +cDk +cDk +cDk +wHl +cDk tiQ tiQ cYQ @@ -83805,21 +83805,21 @@ saC saC saC saC -rGM -rGM -cAh +rGH +rGH +oNh jHb jHb jHb jHb -qjT +mGx tiQ mua mua -bwc -hkU -bwc -bwc +xaL +iwA +xaL +xaL mua mua mua @@ -83854,61 +83854,61 @@ eJR iJE eJR azE -aTM +bhK wDj xFp -qac +iAP qSH qQB qDV xSv xSv xSv -mLe -xcm -xcm -xcm -xcm -xcm -xcm -xcm -fqR +hRS +vLi +vLi +vLi +vLi +vLi +vLi +vLi +eKq xFp tDS -euL -fRW -opE -sWH +cMn +lMw +pZv +dVq tDS -uJG -iRc -jdL -jdL -tdn +hAI +fnQ +nNe +nNe +rlJ tDS tDS nfe uAv tDS gdO -ujx -xBb +sEQ +wVG uuH pej -cfQ -ovo -axo -tAA -xdW -mEX +wsO +jEs +tuy +aHd +sqv +dNE tTK tTK tTK -uhA -vpg -rpP +fll +jBI +wzc tTK -mZi +qnL rnB rnB cpy @@ -83916,30 +83916,30 @@ sKJ tTD tTD rnB -xlF +hsD uuD -ecM -oOZ +dtP +hFE rOg -odq +xpk sop pNY mTY mco pNY -mTZ -xCJ +hUr +ayi uuD xXg imT -sxJ -uZo +eEI +sYE xhD bsG -sNE -bXg -elT -pue +pMP +htH +aCW +iZT uwT uwT fWG @@ -83955,17 +83955,17 @@ uwT uwT uwT uwT -mGF +exl uzI -kxJ -kxJ +eRQ +eRQ uzI -kxJ -kxJ +eRQ +eRQ uzI uzI uzI -moR +ifV wQa eXG eXG @@ -83978,13 +83978,13 @@ fII wQa wQa eXG -bho -gfT -gfT -gfT -gfT -gfT -cvx +rMe +whu +whu +whu +whu +whu +rDU eXG eXG eXG @@ -84013,18 +84013,18 @@ tiQ tiQ tiQ tiQ -vjp -vjp -vjp -vjp -jRL -vjp +bwE +bwE +bwE +bwE +fzH +bwE tiQ -rSk -hXw -hXw -hXw -fHO +jtk +vbD +vbD +vbD +sNl tiQ saC saC @@ -84032,22 +84032,22 @@ saC saC saC saC -rGM -rGM -cAh +rGH +rGH +oNh jHb jIR jHb jHb -qjT +mGx tiQ saC -wPj -sdQ -ruP -nwh -nwh -fEl +hLg +hpQ +pPL +mnF +mnF +vtx cPx ljA woR @@ -84081,10 +84081,10 @@ bha eJR eJR eJR -lCp +aiq wDj xFp -qac +iAP qSH qSH umR @@ -84100,42 +84100,42 @@ vGp vGp vGp pZo -xZI +kSa tDS -uAN +otm iss lbA -tHs -aKH -cOh -qIK -dfz -klT -dJQ -cXY -oNr -dzO -rZP -vFT +bNe +mHH +xbe +lKy +dLa +fQu +bok +aQu +qli +kTG +xWJ +pcI gdO -pzI -tYX +myT +tdj oNl pej -cfQ -ovo -axo -wFz -xdW -rpO -xfx -mhN -xvm -hif -sMO -xEL +wsO +jEs +tuy +vJk +sqv +lNk +jqM +kKj +urn +nUz +eIQ +aYC tTK -mZi +qnL rnB rnB cpy @@ -84143,30 +84143,30 @@ sKJ tTD tTD rnB -xlF -aTd -imq +hsD +eaS +vKG rMd xBs uuD -nrc +xFN pNY -wDH -pxc +sMw +wcJ pNY oGE -bBp -bke +xwp +pNx xXg imT -nIj -cHx +vVG +lBc xgA bsG -xdf -bXg -elT -pue +bWS +htH +aCW +iZT uxT sps sps @@ -84182,17 +84182,17 @@ uwT uwT uwT uwT -mGF -mSE -ktq -cub -rTe -oTB -oTB -kdt -heM +exl +kdj +oOL +fsT +kqR +fSZ +fSZ +wXm +oLJ tos -moR +ifV eXG eXG eXG @@ -84235,47 +84235,47 @@ saC saC saC tiQ -qxE -tEK -qxE -qxE +fKN +oYE +fKN +fKN jEu nTl -bSR -bSR -bSR -kBp +fXK +fXK +fXK +fCz nTl tiQ -bct +tPL fNm get get -uky +tYE saC saC saC saC saC -rGM -rGM -rGM -uaD -cAh +rGH +rGH +rGH +wst +oNh jHb jHb jHb jHb -qjT +mGx tiQ saC -cnp -nwh -ruP -nwh -nwh -fEl -jRl +rWi +mnF +pPL +mnF +mnF +vtx +omI mQw sZq sZq @@ -84304,20 +84304,20 @@ tOt qSH cYn xei -akw -nZm -dUJ -dUJ -dUJ +qvx +uTx +jfF +jfF +jfF wDj -jpt -jpt -giL -giL -fdo -giL -giL -nHq +sOT +sOT +qQg +qQg +nTA +qQg +qQg +dtk qSH qSH qSH @@ -84327,42 +84327,42 @@ vGp cpy vGp pZo -xZI +kSa tDS -vrK +rVV vkj lbD -kKe -uPK -sRK +xPI +cZk +aJR dPG pVo jzR -vdS -kNT -cnH -vdS -wvS -cCk -hmE -uZK -kkJ +eON +rJl +umk +eON +lZX +aRL +jug +hyX +xst uuH pfN -xvv -tJP -axo -tfS -xdW -dGk -pQk -fSd -mcM -pvc -mLo +riQ +osp +tuy +vhX +sqv +kOf +rMA +hVy +asl +tch +deh tTK tTK -mZi +qnL rnB rnB tTD @@ -84370,30 +84370,30 @@ tTD rnB tTD rnB -xlF -lrT -oOZ +hsD +qbQ +hFE oGE rPu uuD -gRx -kGD +uxt +wHY dwO mbr -qLi +ewc rOg -oVe -bke +qWV +pNx xXg imT xvl xvl -xdx -dJX +gPe +jKt xvl xvl -elT -pue +aCW +iZT ppD xkO xkO @@ -84409,17 +84409,17 @@ tXW uwT uwT uwT -mGF -mSE -ktq -pfC -cSU +exl +kdj +oOL +jsx +vTh xPH -cSU -kdt -heM +vTh +wXm +oLJ tos -moR +ifV eXG eXG eXG @@ -84461,47 +84461,47 @@ saC saC saC saC -aaJ -qxE -nYf -bvu -qxE -qxE -tEK -qxE -qxE -qxE -uLo -tEK -tiQ -hXw +lca +fKN +ken +mWK +fKN +fKN +oYE +fKN +fKN +fKN +fHG +oYE +tiQ +vbD fOM geu get -hXw +vbD tiQ saC tiQ saC saC -rGM -rGM -rGM -rGM -cAh +rGH +rGH +rGH +rGH +oNh jHb jHb jHb jHb -qjT +mGx tiQ saC -cnp -nwh +rWi +mnF mdD woG -nwh -fEl +mnF +vtx cPx mSl mZX @@ -84533,19 +84533,19 @@ dRL dRL dRL dRL -jqH -tbZ -jqH +uFu +sZS +uFu dRL dRL dRL -jqH -jqH -iRx -jqH +uFu +uFu +wib +uFu dRL guE -nHq +dtk qSH qSH qSH @@ -84554,42 +84554,42 @@ vGp cpy cpy pZo -xZI +kSa tDS -lhv -ouy -kAg -uYu +nxa +huM +xUI +fhC tDS -tMC -nHR +kVI +bVf pVo sWr ngY ngY qKk oXU -fnr -fNN +gWz +fSL gdO gdO -oaT +thE uuH pfN -rFZ +lZU gdO tTK -cBa -vqb -cld -ryF -sZD -waU -dTX -lMP -oUD -mel -mZi +rPM +byF +mvj +crA +mMo +olO +rKE +nhQ +fuM +qhn +qnL rnB rnB tTD @@ -84597,34 +84597,34 @@ rnB rnB tTD rnB -xlF -bke -nvK +hsD +pNx +fJN ozF xvo mxO -meT +ubW ugX -llT -gLe +oRw +gks qnM rOg -iQl -bke +hOr +pNx xXg imT xvl xvl -ahC -cHx +pXF +lBc xvl xvl -elT -pue +aCW +iZT ppD xkO -xyz -iib +jdH +qGm ujy uwT uwT @@ -84636,17 +84636,17 @@ uwT uwT uwT uwT -mGF -irt -uBO -pfC -cSU +exl +lEL +eAt +jsx +vTh xPH -cSU -kdt -heM +vTh +wXm +oLJ tos -moR +ifV eXG eXG eXG @@ -84688,47 +84688,47 @@ saC saC saC saC -aaJ -qxE -ndw -vwd -bXm -bXm -nUs -vBo -vBo -vBo -odW -nBd -tiQ -lGh -nbA -cxS -hXw -vtu -tiQ -saC -tiQ -rGM -tLZ -rGM -rGM -akS -rGM -cAh +lca +fKN +loh +qpt +aco +aco +hvd +kAs +kAs +kAs +ixF +aFy +tiQ +hhs +dpi +eml +vbD +mHG +tiQ +saC +tiQ +rGH +wMj +rGH +rGH +hPx +rGH +oNh jHb jHb jHb jIR -qjT +mGx tiQ saC -cnp -llh +rWi +jKL mdD woG -nwh -fEl +mnF +vtx tiQ tiQ nbj @@ -84757,23 +84757,23 @@ cpy cpy dRL dRL -bVO +wGE dRL dRL -xpG -xpG -rik +aPC +aPC +vik dRL dRL dRL -rEb -xpG -ukO -fDG +ufJ +aPC +nQR +aBd dRL dRL guE -nHq +dtk qSH qSH qSH @@ -84781,42 +84781,42 @@ vGp vGp cpy pZo -ttA +htc tDS tDS -krg -krg +veE +veE tDS tDS -tMC -nHR +kVI +bVf mhT sWr xOx wGY azK iYm -cJP -dzO -hmE -qEn -kkJ -rfL -vJM -xvv -pIm +tfj +kTG +jug +pHy +xst +xBt +lcX +riQ +lTX tTK -sLN -xdW -mIP -hwB -nRk -qQw -ruV -evn -oUD -mel -mZi +pBr +sqv +lOu +rNj +vPX +mMY +rXu +uYU +fuM +qhn +qnL rnB rnB tTD @@ -84824,30 +84824,30 @@ rnB rnB tTD tTD -xlF +hsD uuD -qrB -qRI -hUf +jXK +gmY +drE mxO -vkk +oPk pNY ylp scc pNY -rAP -oqK +fjq +tJH uuD xXg imT -bXg -sNE +htH +pMP xhD bsG -sNE -bXg -elT -pue +pMP +htH +aCW +iZT ppD xkO xkO @@ -84863,17 +84863,17 @@ uwT uwT uwT fWG -mGF +exl uzI -nYB +tko xPH acp acp xPH -kdt -heM +wXm +oLJ tos -moR +ifV eXG eXG wQa @@ -84916,46 +84916,46 @@ saC saC saC tiQ -qxE -ndw -qeP -qeP -qeP -qeP -qeP -qeP -rtO -vwr -uLo +fKN +loh +deW +deW +deW +deW +deW +deW +sMP +lfP +fHG tiQ tiQ -aqM +cVS get get -xuY +ssG tiQ tiQ tiQ -rGM -rGM -rGM -rGM -rGM -rGM -cAh +rGH +rGH +rGH +rGH +rGH +rGH +oNh jHb jHb jHb jHb -qjT +mGx tiQ saC -cnp -pNG +rWi +yfY mdD woG -nwh -fEl +mnF +vtx tiQ jPw jPw @@ -84983,67 +84983,67 @@ cpy cpy cpy dRL -vdQ +jap xCT -vdQ +jap dRL -xpG +aPC xCT -rik +vik dRL dRL -dxt +uEk xCT xCT qMd xCT -jbX +iyV dRL dRL guE -nHq +dtk qSH qSH qSH vGp vGp pZo -kXd +iwz tDS -sna -wjJ -wjJ -wyX -bXI -pFn -smQ +psP +hoI +hoI +cxN +gWK +nYh +aiN ylY wGY -bpF -bpF -jSZ -bpF -ylu -jhX +efw +efw +eWu +efw +arz +cye gdO -oXv -tYX -aID -oTW -mmC -oRp +fvA +tdj +gyL +lRL +vMo +mne tTK -wkT -opb -dUC -vdI -ujH -dTP -dkG -ujH -lXc -mel -mZi +dQG +dap +tFW +oVu +mIl +ufZ +xeV +mIl +aQq +qhn +qnL rnB rnB tTD @@ -85051,34 +85051,34 @@ rnB tTD tTD tTD -xlF +hsD uuD uuD -qRI -qRI +gmY +gmY mxO -ezq -kiR +hqc +muC pNY -vXv -ipi -gJq +vcf +ccI +fkQ uuD uuD xXg imT -bXg -xdf +htH +bWS xhD bsG -xdf -bXg -elT -pue +bWS +htH +aCW +iZT ppD xkO -rKk -iib +tYS +qGm ujy uwT uwT @@ -85090,17 +85090,17 @@ uwT uwT uwT fWG -mGF +exl uzI -nYB -cSU -cSU +tko +vTh +vTh acp -cSU -kdt -heM +vTh +wXm +oLJ tos -moR +ifV wQa cex cex @@ -85142,47 +85142,47 @@ saC saC saC saC -aaJ -qxE -owb -qpk -qpk +lca +fKN +tVE +fRQ +fRQ mNm mNm -qeP -qeP -qeP -gHJ -rfz -nBd +deW +deW +deW +xeo +flc +aFy tiQ tiQ get get -xGI +ioE tiQ tiQ -rGM -rGM -rGM -rGM -rGM -jlb -rGM -cAh +rGH +rGH +rGH +rGH +rGH +coe +rGH +oNh jIR kba kba jHb -qjT +mGx tiQ saC -cnp -nwh -ruP -nwh -nwh -fEl +rWi +mnF +pPL +mnF +mnF +vtx tiQ jPw jPw @@ -85214,63 +85214,63 @@ dRL dVM dRL dRL -pVP +cgg xCT -lHb +rkp dRL -oRx -mTX +yit +bvU xCT tMp qjr xCT xCT -wSH +ttZ dRL dRL -kOi +eBs qSH qSH qSH vGp vGp pZo -kXd -osQ -tMC -hzo -vdS -gOf -tdI -kNT +iwz +hzR +kVI +qkm +eON +dNl +dxd +rJl sWr pVo -fnr -pWE -npa -rjs -bgW -rjs -bKD +gWz +gkt +oaX +gaL +bAP +gaL +dYE gdO -tse -kkJ +hHp +xst cNU rdT -mmC -pXc +vMo +wrS tTK -hOa -flc -hab +mfg +ayU +neQ tTK tTK tTK -cDU +rRb tTK tTK tTK -mZi +qnL rnB rnB tTD @@ -85278,16 +85278,16 @@ tTD tTD tTD tTD -tvG +gEp xXg uuD uuD uuD uuD uuD -ygf +vfZ rWP -mVM +mFn uuD uuD uuD @@ -85296,12 +85296,12 @@ xXg imT xvl xvl -pPN -cHx +hBW +lBc xvl xvl -elT -pue +aCW +iZT ppD xkO xkO @@ -85317,26 +85317,26 @@ uwT uwT uwT fWG -mGF +exl uzI -oTB +fSZ mWd xPH xPH xPH -eVb -heM +oZT +oLJ tos -moR +ifV wQa wQa eXG dkX rBd ewE -kLm -kLm -kLm +uMU +uMU +uMU iIQ rBd sfO @@ -85369,47 +85369,47 @@ saC saC saC saC -aaJ -qxE -vWm -qxE -qxE -qxE -ndw -qeP -qeP -qeP -vwd -bvu -uLo -qxE -tiQ -vtu -hXw -tiQ -tiQ -tiQ -rGM -rGM -rGM -rGM -rGM -rGM -rGM -qDo -vPu -vPu -vPu -vPu -icc -tiQ -bSO -dGs -oaM -khQ -nwh -nwh -fEl +lca +fKN +iXc +fKN +fKN +fKN +loh +deW +deW +deW +qpt +mWK +fHG +fKN +tiQ +mHG +vbD +tiQ +tiQ +tiQ +rGH +rGH +rGH +rGH +rGH +rGH +rGH +lxK +xxg +xxg +xxg +xxg +ccD +tiQ +obd +cTq +mQa +jyI +mnF +mnF +vtx tiQ jPw jPw @@ -85437,15 +85437,15 @@ cpy cpy cpy dRL -ykI +gWS uSJ -vdQ +jap dRL -hue +iKg fzE -xpG -jqH -hok +aPC +uFu +qwf oBf xCT tMp @@ -85453,51 +85453,51 @@ qsi xCT rsq xCT -xpG -jqH -kOi +aPC +uFu +eBs qSH qSH qSH qSH vGp pZo -kXd -pJJ -kPR -nhQ +iwz +uCf +dfe +eES ngY oGF iTF sWr sWr oMi -cJP -wWT +tfj +nON tDS -oUc -djK -kKe -myl +bWp +vHk +xPI +gMk gdO gdO -eUk +aTO uuH tov -stH +rcF gdO tTK -mLn -ajW -fZJ +sTT +vTE +fJb tTK -vDf -ksS -upW -oSS -fub +uRK +nts +lqz +sZD +utE tTK -mZi +qnL rnB rnB tTD @@ -85506,15 +85506,15 @@ tTD rnB rnB rnB -xlF +hsD xXg xXg xXg xXg rWP -kiR +muC rOg -vXv +vcf rWP xXg xXg @@ -85523,12 +85523,12 @@ xXg imT xvl xvl -xkc -uNk +sEf +rGy xvl xvl -elT -pue +aCW +iZT kIV mUr mUr @@ -85544,28 +85544,28 @@ uwT uwT uwT fWG -mGF -ooL -uBO -nvY -rTC +exl +dPw +eAt +lRm +jeR vcR -cSU -eVb -heM +vTh +oZT +oLJ tos -moR +ifV wQa dkX rBd nPb -wRu -gSM -kLm -sGE -laD -laD -mlk +xes +rxA +uMU +vbT +oLO +oLO +fdJ jGp rBd sfO @@ -85601,41 +85601,41 @@ czC czC czC czC -qxE -ndw -qeP -ibN -noz -hwP -vwd -qwd -qxE +fKN +loh +deW +eaA +qCc +qav +qpt +pra +fKN tiQ -ptj +bPA tiQ tiQ tiQ tiQ tiQ -pcv -pcv -pcv +fMr +fMr +fMr tiQ tiQ tiQ tiQ tiQ -pcv -pcv -pcv +fMr +fMr +fMr tiQ tiQ mua mua -bYg -crh -iXQ -bYg +iHb +aud +hJu +iHb mua tiQ tiQ @@ -85664,15 +85664,15 @@ cpy cpy cpy dRL -qxJ +fyG msB oBx -gNt -vii +wlG +rNq qxX -jIN -lYp -uFD +ooB +bEZ +gry oBx nTg nTg @@ -85680,68 +85680,68 @@ iAZ xCT xCT xCT -xpG -jqH -kOi +aPC +uFu +eBs qSH qSH qSH qSH vGp pZo -kXd -pJJ -tMC -hhZ +iwz +uCf +kVI +qOm kNe sWr dPG wGY sWr xxU -gHe -kJs -gin -cOh -qIK -tBn -kaS +dRP +rAC +qed +xbe +lKy +uWH +kAh gdO -pIm -pfP -iTZ -oTW -uhw -aoF +lTX +tPJ +wpr +lRL +gjS +iny tTK -ioi -fjx -rve +smJ +rWs +taU tTK -eJT -ePD -upW -ksL -klJ +sIM +aYP +lqz +wRb +wUT tTK -mZi +qnL rnB rnB tTD rnB rnB -nkT -dlY -dlY +jHV +kpj +kpj xXg xXg xXg xXg xXg rWP -dlM +cyj pNY -eyC +cGC rWP xXg xXg @@ -85750,12 +85750,12 @@ xXg imT xvl xvl -mBo -thM +owc +fXM xvl xvl -elT -pue +aCW +iZT uwT uwT fWG @@ -85771,30 +85771,30 @@ fWG uwT uwT fWG -mGF -ooL -uBO -nvY -rkb +exl +dPw +eAt +lRm +xxL xJB -xOZ -eVb -heM +kIm +oZT +oLJ tos -moR +ifV dkX nPb -mlk -laD -laD -hRl -hRl -sGE -xoW -oST -laD -laD -kLm +fdJ +oLO +oLO +dHt +dHt +vbT +kOu +jbF +oLO +oLO +uMU jGp sfO eXG @@ -85824,60 +85824,60 @@ saC saC saC tiQ -qnQ -bXm -bvu -qUc -qxE -ndw -qeP -qeP +uyY +aco +mWK +kRE +fKN +loh +deW +deW mNm -qeP -qeP -mmS -qxE -tEK -qxE -qxE +deW +deW +gnP +fKN +oYE +fKN +fKN saC tiQ tiQ tiQ -nwh -nwh -nwh +mnF +mnF +mnF saC saC saC saC -nwh -nwh -nwh -nwh -vgj +mnF +mnF +mnF +mnF +jiZ mua -eMR -dAC -oaM +hux +ftk +mQa bOE woG -nwh -kTz -pyS +mnF +jCi +wdC tiQ saC saC tiQ -gBp -gBp -gBp -gBp -bYg -gBp -gBp -gBp -gBp +vPF +vPF +vPF +vPF +iHb +vPF +vPF +vPF +vPF tiQ tiQ tiQ @@ -85891,15 +85891,15 @@ cpy cpy cpy dRL -vSP +vLV gQu -vdQ +jap dRL -xpG +aPC jAV -xpG -jqH -svb +aPC +uFu +pTf oBR pjT qly @@ -85907,56 +85907,56 @@ qty reo xCT xCT -xpG -jqH -kOi +aPC +uFu +eBs vGp qSH qSH qSH qSH pZo -kXd -pJJ -kPR -dve +iwz +uCf +dfe +rqx mEx sWr lxZ lHV wGY sWr -vzK -clL -kKe -haC +mhj +qLt +xPI +qGE oGF -nng -cyC +rbf +fuv gdO -isE -glZ -rfL -oTW -cfQ -xDX +mYK +tiF +xBt +lRL +wsO +gpQ tTK tTK -tbw -vEJ +dAJ +mJT tTK tTK -iUJ -qKc -miX -suQ +hWQ +xWa +rOx +xAt tTK -mZi +qnL rnB tTD tTD rnB -nkT +jHV xXg cUG cUG @@ -85966,9 +85966,9 @@ cUG cUG cUG cUG -tUF +omZ wao -pok +sYs cUG cUG cUG @@ -85976,13 +85976,13 @@ cUG cUG cUG cUG -kWA +dRw swF fzV -aup +xvV cUG -hFi -pue +lmK +iZT uwT uwT fWG @@ -85998,31 +85998,31 @@ tXW uwT uwT fWG -mGF -ooL -oTB -avs -nYB -rJo -rJo -eVb -heM +exl +dPw +fSZ +vFy +tko +ovQ +ovQ +oZT +oLJ sbh -bWR +pgD nPb -kLm -vdg +uMU +uXr jMy qGI uMr uMr -sGE +vbT wDa vbF kBj dIi -sNP -sNP +gHx +gHx jGp rBd sfO @@ -86051,61 +86051,61 @@ saC saC saC tiQ -wlv -qeP -gHJ -apE -qxE -ndw -qeP -qeP -qeP +kVs +deW +xeo +ePM +fKN +loh +deW +deW +deW mNm mNm -hQa -bXm -bXm -bXm -bvu +lbQ +aco +aco +aco +mWK saC saC saC -gBp -fpU -fpU -fpU -fpU +vPF +bpo +bpo +bpo +bpo saC saC -fpU -oZb -tFE -pQe -fpU -haa -vUC -kJq -nwh -nwh +bpo +vMd +vgu +oQL +bpo +iec +hdm +hqX +mnF +mnF woG woG -nwh -nwh -kTz -bSV -fpU -pfZ -fpU -fpU -fpU -fpU -haa -haa -fpU -fpU -fpU -fpU -mfl +mnF +mnF +jCi +fgn +bpo +kkz +bpo +bpo +bpo +bpo +iec +iec +bpo +bpo +bpo +bpo +kNT saC saC saC @@ -86122,94 +86122,94 @@ dRL dVM dRL dRL -pVP +cgg xCT -lHb +rkp dRL -bGO +aMu oBR ppK qws qNK reQ xCT -jzg +obn dRL dRL -kOi +eBs vGp vGp qSH qSH qSH umR -kXd +iwz tDS -wXo -uDW +ulB +jFe nSG gbk rcd lHY mBc -fnr -cUZ -uuS -mnJ -tuf +gWz +anf +lBq +wPP +xEZ oGF -mTJ -vCZ +crC +sEV gdO -xNA -glZ +xQG +tiF uuH pfN -xbl -pzI +lEa +myT tTK -mLn -fAN -pYn -rSC +sTT +bQf +jad +jor tTK tTK tTK tTK tTK tTK -mZi +qnL rnB rnB tTD rnB -xlF +hsD cUG cUG -bfy -xIn -dEh -beq -dxD -oaD -tci -ejW +mJa +bPo +iXm +mfa +tfw +hvo +ktT +hnZ tID -avU +nEG cUG -nNK -udt -iRP -dZu -vFr -vNb -fiZ +uvp +fBi +oVp +cyT +wVE +mbV +glJ xRw uaI -jgq +quH cUG xzK -xqC +dXK uwT uwT fWG @@ -86225,7 +86225,7 @@ uwT uwT uwT uwT -mGF +exl uzI dDq dDq @@ -86235,23 +86235,23 @@ uzI uzI uzI uzI -kLm -kLm -kLm -jgl +uMU +uMU +uMU +ebS pXu -thf -cyw -hRl -sGE -xoW -cIT -xoW +evF +miC +dHt +vbT +kOu +kaJ +kOu wDa -xoW -kLm -mDi -kLm +kOu +uMU +gVL +uMU rnq rnq sfO @@ -86278,61 +86278,61 @@ saC saC saC tiQ -bqp -qpk -vZp +pgV +fRQ +coO cYQ -qxE +fKN mNm mNm -qeP -qeP +deW +deW mNm mNm -bAH -qeP -qeP -qeP -gHJ -qxE -saC -nwh -gBp -nwh -faj -oaM -oaM -oaM -gkf -oaM -vQM -oaM -oaM -oaM -iLp -boe -nwh -nwh +ouJ +deW +deW +deW +xeo +fKN +saC +mnF +vPF +mnF +uYE +mQa +mQa +mQa +ybk +mQa +prt +mQa +mQa +mQa +yaX +tsk +mnF +mnF woG mua mua woG -nwh -nwh -bSV -nwh -cJu -nwh -nwh -nwh -vgj -vgj -vgj -vgj -vgj -nwh -nwh -mfl +mnF +mnF +fgn +mnF +oSy +mnF +mnF +mnF +jiZ +jiZ +jiZ +jiZ +jiZ +mnF +mnF +kNT saC saC saC @@ -86345,74 +86345,74 @@ eCe cpy cpy dRL -vdQ +jap xCT -vdQ +jap dRL -mHu +sIV xCT -xpG +aPC dRL dRL -jtF +eTJ pGg qxg qPU rfk -lYZ +fMl dRL dRL qYP -mkQ +xDK vGp vGp qSH qSH qSH umR -kXd -osQ -gjS -tuf +iwz +hzR +ciI +xEZ kAj -kcY +azJ tgj svo bqo -tjK -wWT +orT +nON tDS -aeJ -qLH +qkX +kOw ngY -nng -cyC +rbf +fuv gdO gdO -kkJ +xst uuH pfN -xvv +riQ gdO tTK -aBe -dGk -dGk -vIh -hOa -uoc -mLn -lDj -mLn +xah +kOf +kOf +xla +mfg +sCa +sTT +mWB +sTT tTK -mZi +qnL rnB rnB tTD rnB -xlF +hsD cUG -ipj +mBv wgR tum pRH @@ -86423,7 +86423,7 @@ tum tum pRH gEd -leW +anq pRH pRH pRH @@ -86433,9 +86433,9 @@ pRH tum pYu pRH -uIw +djO cUG -pue +iZT xxk ycM tGb @@ -86452,35 +86452,35 @@ uwT uwT uwT uwT -etK -ttb +oGP +dsZ xzK xzK uzI uzI uzI uzI -kLm -kLm -kLm -xoW -xoW -uEm -vzz -iEh -xoW -xoW -sGE -xoW -xoW -xoW +uMU +uMU +uMU +kOu +kOu +mae +jpb +veC +kOu +kOu +vbT +kOu +kOu +kOu wDa -xoW -xoW -xoW -kLm -kLm -kLm +kOu +kOu +kOu +uMU +uMU +uMU jGp sfO eXG @@ -86509,35 +86509,35 @@ tiQ tiQ dKO cYQ -qxE +fKN uDC mNm mNm -qeP +deW mNm mNm -bAH -kdF -swe -kdF -gHJ -qxE -udC -nwh -gBp -nwh +ouJ +khD +ajE +khD +xeo +fKN +muZ +mnF +vPF +mnF mdD woG woG -nwh -cJu -nwh +mnF +oSy +mnF woG woG woG -nwh -aLg -bYg +mnF +aol +iHb woG woG mua @@ -86546,20 +86546,20 @@ mua mua woG woG -bSV -nwh -cJu +fgn +mnF +oSy woG woG woG -vgj -vgj -vgj +jiZ +jiZ +jiZ mee mee lpy -akG -mfl +nRR +kNT saC saC saC @@ -86573,23 +86573,23 @@ eCe cpy dRL dRL -pVP +cgg dRL dRL -xVl -vCI -ovf +nUi +xtd +vha dRL dRL dRL -pVP -wLr -fnP -uPx +cgg +hpE +tDT +fvr dRL dRL qYP -mkQ +xDK vGp vGp vGp @@ -86597,60 +86597,60 @@ vGp qSH qSH umR -kXd -pJJ -tAG -nhJ +iwz +uCf +oWn +hQY dFd arV bkt dsL iQL -cJP -uMx -mnJ -hkL +tfj +lex +wPP +xGW azK wGY -fnr -oNr +gWz +qli ehy -pXc -tYX +wrS +tdj uuH pej -cfQ -vPA +wsO +fmW tTK -cfO -vIh -dGk -dGk -tFz -dGk -oqC -vIh -uLZ +wNL +xla +kOf +kOf +ivf +kOf +qkF +xla +kVi tTK -mZi +qnL rnB tTD tTD tTD -xlF +hsD cUG -aVe +mSf tID -tCf -yiR -tCf -ejW -ejW -ejW -ejW +pQd +eFQ +pQd +hnZ +hnZ +hnZ +hnZ uaI tID -vms +ayy tID tID fld @@ -86660,9 +86660,9 @@ uaI tID xRw tID -cRQ +itY cUG -pue +iZT rcO tBb xdb @@ -86681,12 +86681,12 @@ uwT uwT uwT fWG -mGF +exl xzK uzI uzI uzI -kLm +uMU jVq gxp fPO @@ -86708,7 +86708,7 @@ gxp fPO ufR jVq -kLm +uMU jGp sfO eXG @@ -86738,33 +86738,33 @@ tiQ tiQ tiQ tiQ -iQy -owb -dgD +mYq +tVE +pbP mNm foO -mTf -lht -fiW -vGf -dBV -arT -oIo -oaM -ygt -oaM +gzm +pWo +fzd +pWh +ciN +uUL +sKQ +mQa +sPN +mQa bOE woG woG -nwh -cJu -nwh +mnF +oSy +mnF woG woG woG -nwh -nwh -jZF +mnF +mnF +gKZ woG woG tiQ @@ -86773,20 +86773,20 @@ tiQ mua woG woG -bSV -nwh -vgj +fgn +mnF +jiZ lpy lpy lpy -vgj -vgj -vgj +jiZ +jiZ +jiZ mee woG woG -nwh -mfl +mnF +kNT saC saC saC @@ -86809,13 +86809,13 @@ dRL dRL dRL dRL -jqH -jqH -iRx -jqH +uFu +uFu +wib +uFu dRL pGY -mkQ +xDK vGp vGp vGp @@ -86824,72 +86824,72 @@ vGp vGp qSH umR -kXd -osQ -tAG -qZL +iwz +hzR +oWn +aen oGF dkq iBr wGY eUX -fnr -mEC -fim -tuf +gWz +fsJ +opx +xEZ wGY wGY -nng -cyC +rbf +fuv gdO -lbx -aYr +tbd +okR hmJ poQ -pmC -cmo +xZO +pxo tTK -mLn -vIh -vIh -dGk -tFz -vIh -dGk -dGk -sBu +sTT +xla +xla +kOf +ivf +xla +kOf +kOf +jwb tTK -mZi +qnL rnB rnB tTD rnB -xlF +hsD cUG -wgE +jOA tID -jND +iIq uQf fsz -tCf +pQd uQf vgb -ejW +hnZ vDr -kGp +uMk cUG -bTN +aHh uaI vBN arq anv -lkm +aOj tID rzR uaI -rFu +dxS cUG -pue +iZT fWW tlr xdt @@ -86908,11 +86908,11 @@ uwT uwT uwT uwT -mGF +exl uzI uzI uzI -mlk +fdJ pab xYA aiP @@ -86936,7 +86936,7 @@ xYA aiP xYA jYr -mlk +fdJ aVa eXG eXG @@ -86958,62 +86958,62 @@ saC saC tiQ tiQ -uJT -oSK -vcO -diV -rbI +uJa +evs +rRj +duL +rZn tiQ tiQ mNm -qxE -ndw +fKN +loh mNm -qeP -bAH -fmR -izX -fmR -gHJ -qxE -udC -sdQ -gBp -nwh -nwh -nwh -nwh -llh -cJu -nwh -uwl -cIp -sdQ -nwh -pNG -bYg -nwh -rXd +deW +ouJ +cNK +qMb +cNK +xeo +fKN +muZ +hpQ +vPF +mnF +mnF +mnF +mnF +jKL +oSy +mnF +ura +ttP +hpQ +mnF +yfY +iHb +mnF +exO woG tiQ mua woG -nwh -nwh -bSV -vgj -vgj -nwh -nwh -nwh -rXd -vgj -vgj -nwh -nwh -yay -sdQ -mfl +mnF +mnF +fgn +jiZ +jiZ +mnF +mnF +mnF +exO +jiZ +jiZ +mnF +mnF +cJR +hpQ +kNT saC saC saC @@ -87035,13 +87035,13 @@ cpy ien ien ien -fdY -fdY -fdY -siq -jpn -ibQ -mkQ +tXQ +tXQ +tXQ +lXF +dlF +xOk +xDK vGp vGp vGp @@ -87051,61 +87051,61 @@ vGp vGp qSH yaF -tvh -osQ -tMC -tdy +uWd +hzR +kVI +nWt kNe rUr waZ wGY oGF -fnr -hcl -cwm -tuf +gWz +sYx +bIH +xEZ lCh -rmY -ubm -uNo +cpG +rPA +fPZ gdO -aGa -aHp -xEN -mxx -oky -kbO +acX +sOx +cBp +grv +cXk +jTQ tTK -krl -krl -krl -krl +qkN +qkN +qkN +qkN tTK -xIu -mLn -mLn -ujm +sar +sTT +sTT +xtW tTK -mZi +qnL rnB tTD tTD rnB -xlF +hsD cUG -taZ -jND -hwi +iPl +iIq +aZV uQn vPz -tBF +hvF uQn vgw -rFu +dxS vDr -kGp +uMk wao -kGp +uMk tID uaI kxq @@ -87114,9 +87114,9 @@ cIA uKw dKd oaq -ary +reT cUG -pue +iZT uwT uwT uwT @@ -87135,11 +87135,11 @@ uwT uwT uwT uwT -mGF +exl xzK uzI -guN -kLm +qXc +uMU gVf xYA xYA @@ -87163,7 +87163,7 @@ xYA xYA aIp kcR -kLm +uMU cDi eXG wQa @@ -87184,63 +87184,63 @@ saC saC saC tiQ -flL -gIG -wsa -wsa -eHt -cbA -psm +nqr +hHc +sgU +sgU +lvk +ayu +dof tiQ tiQ ezp eGQ eGQ -qOF -cCz -qeP +tLT +mHc +deW mNm mNm -gHJ -qxE -udC -nwh -gBp -laS -axd -axd -axd -axd -saC -saC -axd -cTW -axd -axd -laS -emD -akK -nwh -nwh +xeo +fKN +muZ +mnF +vPF +wxk +ovY +ovY +ovY +ovY +saC +saC +ovY +iJP +ovY +ovY +wxk +unH +lkZ +mnF +mnF woG woG -nwh -nwh -qAb -cYq -laS -axd -axd -axd -axd -axd -axd -axd -axd -axd -axd -axd -mfl +mnF +mnF +tQd +wHm +wxk +ovY +ovY +ovY +ovY +ovY +ovY +ovY +ovY +ovY +ovY +ovY +kNT saC saC bUN @@ -87278,28 +87278,28 @@ lTV lTV xSv tWE -kXd +iwz tDS -kPR -pdk +dfe +plT vqv iIs lHV pfX ngY -fnr -hcl -pKT -tuf +gWz +sYx +mEJ +xEZ lOq oGF -rjW -loz +dJC +aLI gdO gdO gdO -uPW -mlh +fzn +qjZ gdO gdO tTK @@ -87313,12 +87313,12 @@ tTK tTK tTK tTK -mZi +qnL rnB tTD tTD tTD -tNi +iyr cUG sLw sXZ @@ -87332,7 +87332,7 @@ nKK fzf sHY wao -iUQ +ipz tID uaI wqA @@ -87341,9 +87341,9 @@ tID tID rzR vBN -ejn +ibz cUG -pue +iZT uwT uwT uwT @@ -87356,17 +87356,17 @@ kcC uwT uwT uwT -epx -mzn -mzn -mzn -mzn -mzn +cOs +eeg +eeg +eeg +eeg +eeg lPq lPq uzI -guN -gSM +qXc +rxA xyC xYA xYA @@ -87390,7 +87390,7 @@ aIp xYA aIp wBx -kLm +uMU lSF eXG eXG @@ -87411,62 +87411,62 @@ saC saC saC tiQ -nvT -mxT -xAf -nVA -uRM -nVA -eQQ -qWe +wJT +svs +xoJ +vOn +myK +vOn +uVQ +phl eof -qxE -ndw -qeP -qeP -qeP -qeP +fKN +loh +deW +deW +deW +deW mNm mNm -gHJ -qxE +xeo +fKN tiQ saC saC -vgj -vgj -nwh -kMk +jiZ +jiZ +mnF +jzU saC saC saC saC -nwh -nwh -vgj -vgj +mnF +mnF +jiZ +jiZ mua -ehw -akK -nwh +caM +lkZ +mnF woG woG -sNK -qAb -qMp +tyE +tQd +bgq tiQ saC saC tiQ -gBp -gBp -gBp -gBp -gBp -gBp -gBp -gBp -gBp +vPF +vPF +vPF +vPF +vPF +vPF +vPF +vPF +vPF tiQ tiQ tiQ @@ -87501,51 +87501,51 @@ vGp vGp vGp vGp -lRN -sMW -ykz +sip +xlr +aBA umR -kXd -pqP +iwz +qaA jAz -nhQ +eES sWr -oey +lZH sWr oNe hfy -xCt -hcl -fim -tuf +rNV +sYx +opx +xEZ ngY ngY -cJP -sXb +tfj +xXE gdO -spR -cNr -joi -giG -deV -ulx +bFr +sOC +fQf +ifd +qbq +fKg gdO -wSG -rAp -rAp -rAp -buc -buc -nQm -jDw -xOL -gVe -mZi +jdx +aWE +aWE +aWE +vRl +vRl +kHu +wQS +fxD +uJF +qnL rnB rnB tTD tTD -xlF +hsD cUG sLR vpD @@ -87559,18 +87559,18 @@ cSO aqH vPz wao -bXK +vJz uaI tID uaI -ejW -jSg -hIK +hnZ +thf +xQw xRw -ccH -aWV +fXV +qif cUG -pue +iZT uwT uwT uwT @@ -87582,7 +87582,7 @@ uwT fWG uwT uwT -epx +cOs waQ snX snX @@ -87592,8 +87592,8 @@ vpp vpp snX snX -xoW -gSM +kOu +rxA qle aIp aIp @@ -87617,7 +87617,7 @@ aIp aIp aIp jzZ -kLm +uMU lSF eXG eXG @@ -87639,46 +87639,46 @@ saC saC tiQ tiQ -tcA -bSB +vzq +jyP akM dLZ akM -nVA -tfX -elm -qxE -ndw -qeP -qeP -qeP -qeP -qeP -qeP -gHJ +vOn +tWS +meT +fKN +loh +deW +deW +deW +deW +deW +deW +xeo saC saC saC saC saC -pcv -pcv +fMr +fMr tiQ tiQ tiQ tiQ tiQ -pcv -pcv -pcv +fMr +fMr +fMr tiQ tiQ mua mua -bYg -bYg -bYg -bYg +iHb +iHb +iHb +iHb mua tiQ tiQ @@ -87728,51 +87728,51 @@ vGp vGp vGp vGp -aJE -rnf -vfA +mVQ +rdZ +vQy umR -pna +gOF sRu -pKz +yby vgx -aYc -elv -hEv -uMY -sUc -iTV -mEC -fim -sRK -uMY -bpF -kuf -cHm +uEY +asU +wQp +tBE +riR +frt +fsJ +opx +aJR +tBE +efw +hUR +oyJ gdO -pXc -vJM +wrS +lcX bHF kpN -bCG -htG -hff -sGx -tCw -cfc -crR -fIt -oqe -jTW -bWr -xzZ -gVe -mZi +bcp +ged +egI +alw +boR +iUu +gVP +dfa +pVW +swI +onh +kHx +uJF +qnL rnB rnB tTD tTD -xlF +hsD cUG cSO vpD @@ -87786,18 +87786,18 @@ cSO cSO hWz wao -iyX +rDA mkW tID -ejW -sZA +hnZ +vvC cUG cUG -pok +sYs cUG cUG cUG -pue +iZT uwT uwT uwT @@ -87809,18 +87809,18 @@ fWG cpy fWG uwT -pgf +wzV snX snX -juA -qld +dVJ +hQB aTw sGQ -dMj -uRY +rDF +hZq snX snX -gSM +rxA sol aIp aIp @@ -87844,7 +87844,7 @@ aIp xYA xYA srS -kLm +uMU lSF eXG eXG @@ -87865,48 +87865,48 @@ saC saC saC tiQ -rqW -gIG -tFR -rvY -jyH -tXy -dVJ -hki +hDc +hHc +ofT +wZY +puX +qyj +lPc +sHx tiQ -qxE -owb -qpk -qpk -qpk -qpk -qpk -qpk -vZp +fKN +tVE +fRQ +fRQ +fRQ +fRQ +fRQ +fRQ +coO saC saC tiQ saC saC saC -rGM -rGM -rGM -uaD -jtH -kZP -aAO -aAO -kZP -skL +rGH +rGH +rGH +wst +lAW +mIj +oFA +oFA +mIj +gsw tiQ -kMk -cnp -nwh -nwh -sdQ -nwh -fEl +jzU +rWi +mnF +mnF +hpQ +mnF +vtx tiQ jPw jPw @@ -87955,51 +87955,51 @@ lyP vGp vGp vGp -hLV -tET -cBB +nVr +eFY +fHm umR -fAh +evB rrf tDS -lLs +oMS uqo -kYN -tPu -tPu -gDj -aIF -iIU -dzO -dzO -kBN -ohY -bCv -cCk +oeO +hbY +hbY +djH +gDN +liV +kTG +kTG +lLS +kTu +tTT +aRL gdO -egi -efp +lPE +tLd vDa pfN -oTW -aIG +lRL +eSV gdO gdO gdO -iSI +bhj gdO gdO -iSI +bhj gdO gdO gdO gdO -mZi +qnL rnB rnB tTD rnB -xlF +hsD cUG xlN cSO @@ -88013,10 +88013,10 @@ cSO vpD fEe wao -wZj +jpX tMD tID -tCf +pQd cUG cUG nTJ @@ -88024,7 +88024,7 @@ mPc xlQ cUG xzK -xqC +dXK uwT uwT uwT @@ -88036,18 +88036,18 @@ cpy cpy fWG uwT -pgf +wzV vpp -bTP -qxc -kGq -kGq -kGq -oCw -nYB -rcg +ggI +uDw +wEN +wEN +wEN +fAh +tko +sTL vpp -kLm +uMU rFT aIp aIp @@ -88059,7 +88059,7 @@ aIp aIp aIp aIp -iCr +iEB aIp aIp aIp @@ -88071,7 +88071,7 @@ aIp xYA xYA iqX -gSM +rxA lSF eXG eXG @@ -88092,48 +88092,48 @@ saC saC saC tiQ -teP -diG -xPO -fXX -wsa -eSh -axQ +jRe +aho +bxe +jSc +sgU +dfc +hMx tiQ tiQ -iDQ -vWm -rJn -qxE -qxE -qxE -vWm -qxE +qFV +iXc +xNQ +fKN +fKN +fKN +iXc +fKN saC saC saC tiQ -rGM -rGM -tLZ -rGM -rGM -rGM -rGM -cAh +rGH +rGH +wMj +rGH +rGH +rGH +rGH +oNh jMJ kco kco kti -qjT -pcv -kMk -cnp -vgj -nwh -nwh -nwh -fEl +mGx +fMr +jzU +rWi +jiZ +mnF +mnF +mnF +vtx tiQ jPw jPw @@ -88186,47 +88186,47 @@ vGp qSH qSH umR -fbN +mqa fAq evS -tjH +pKN bCl tDS -krg -krg -krg +veE +veE +veE tDS tDS tDS -krg -krg -krg -krg +veE +veE +veE +veE tDS gdO -hLW -vJM +uzG +lcX vDa pfN -oTW -hLW +lRL +uzG gdO -lBm -kRe -jNr -oTW +cBT +ofc +jlR +lRL gdO -mui -pPX -eAS -dAV +ybm +olf +hZD +moN gdO -mZi +qnL rnB rnB tTD rnB -xlF +hsD cUG tKF vpD @@ -88240,20 +88240,20 @@ cSO ngd omX wao -yaT +kgl wzt uaI -ejW +hnZ cUG oqD inA qQe inA -ufW -pue -tCC -qyE -vpF +eaj +iZT +pJd +seo +szy uwT uwT uwT @@ -88263,17 +88263,17 @@ cpy cpy cpy uwT -pgf +wzV vpp -uHI -lnp +hnl +wmJ piD -pmo -kGq +sVg +wEN piD piD -oTB -dCN +fSZ +bSX wDa vJr aIp @@ -88298,7 +88298,7 @@ aIp xYA xYA wBx -gSM +rxA lSF eXG eXG @@ -88320,11 +88320,11 @@ saC saC tiQ tiQ -qah -xgF -pmk -mHF -bHo +bUo +hDK +nTQ +bjZ +snz tiQ tiQ tiQ @@ -88341,26 +88341,26 @@ saC saC tiQ tiQ -rGM -rGM -rGM -rGM -akS -rGM -cAh +rGH +rGH +rGH +rGH +hPx +rGH +oNh jOh jPw jPw ktp -qjT -pcv -nwh -cnp -vgj +mGx +fMr +mnF +rWi +jiZ mee woG -nwh -fEl +mnF +vtx tiQ jPw jPw @@ -88414,46 +88414,46 @@ qSH qSH umR qSH -fbN -iKi -fdY -ibQ -fdY -fdY -fdY -fdY -fdY -pPh -fdY -fdY -fdY -fdY -fdY +mqa +gnz +tXQ +xOk +tXQ +tXQ +tXQ +tXQ +tXQ +izI +tXQ +tXQ +tXQ +tXQ +tXQ umg gdO -kMz -oTW +jSz +lRL uuH pej -vJM -dmz +lcX +nxK gdO -qBt +ecC dsQ pej -tOP +uAo gdO -nyc +pXc tby -gfH +sKw gdO gdO -mZi +qnL rnB tTD tTD rnB -xlF +hsD cUG cSO tdi @@ -88467,20 +88467,20 @@ sOA cSO vPs wao -lxz +tFp tID uaI -ejW -ufW +hnZ +eaj inA gDL -woN +anc inA -ufW -pue -yel -xga -uMt +eaj +iZT +uwe +ajj +eSL uwT uwT uwT @@ -88490,18 +88490,18 @@ cpy cpy cpy uwT -pgf +wzV vpp -mXd -qxc -kGq -tzk -pCh -pmo -oTB -mfE +fqh +uDw +wEN +suq +qAz +sVg +fSZ +jaI vpp -kLm +uMU kFB aIp aIp @@ -88525,7 +88525,7 @@ aIp aIp aIp yfK -gSM +rxA lSF eXG eXG @@ -88568,26 +88568,26 @@ cpy saC saC tiQ -rGM -rGM -rGM -rGM -rGM -rGM -cAh +rGH +rGH +rGH +rGH +rGH +rGH +oNh jOh jPw jPw ktp -qjT -pcv -nwh -cnp -nwh +mGx +fMr +mnF +rWi +mnF mee woG -nwh -fEl +mnF +vtx tiQ tiQ ndP @@ -88656,31 +88656,31 @@ vcn lyP lyP vGp -xZI +kSa gdO -pWV -nDv -mdF -oTW -pXc -egi +ngy +rTn +oYq +lRL +wrS +lPE gdO -tLt -nyc -jPG -luK +huP +pXc +kox +mzj gdO -hyI -yen +aqz +nEi gdO gdO gjt -tch +mPf rnB tTD tTD rnB -xlF +hsD cUG cSO cSO @@ -88694,20 +88694,20 @@ vpD cSO vPz cUG -jhv +mck uaI bdH -mJc -ufW +sOK +eaj dIj kEd nmh lHL -ufW -pue -sda -idM -nyy +eaj +iZT +dNL +eAN +nko uwT uwT fWG @@ -88717,18 +88717,18 @@ cpy cpy cpy uwT -pgf +wzV snX snX -eEo -kkL -fyn +fyP +oBQ +fMX lVA -oTB -dEN +fSZ +iiN snX snX -gSM +rxA sol xYA xYA @@ -88752,7 +88752,7 @@ aIp xYA aIp jYr -kLm +uMU lSF eXG eXG @@ -88797,25 +88797,25 @@ saC saC saC saC -rGM -rGM -jlb -rGM -cAh +rGH +rGH +coe +rGH +oNh jOh jPw jPw ktp -qjT -pcv -nwh -cnp -nwh +mGx +fMr +mnF +rWi +mnF woG woG -nwh -fEl -bYg +mnF +vtx +iHb mUh ngo wbR @@ -88883,12 +88883,12 @@ umR vGp vGp vGp -ove +qyH gdO gdO gdO -uPW -mlh +fzn +qjZ gdO gdO gdO @@ -88901,13 +88901,13 @@ gdO gdO gdO xXg -tch +mPf rnB rnB tTD tTD rnB -cRh +hpi cUG cUG aYg @@ -88922,16 +88922,16 @@ nVc cUG cUG cUG -gqT -xiX -sHc +dGP +bIC +dRO cUG dfE inA wTy cUG cUG -pue +iZT uwT uwT uwT @@ -88944,7 +88944,7 @@ cpy cpy tXW uwT -jxa +tjB lum snX snX @@ -88955,7 +88955,7 @@ vpp snX snX oYO -gSM +rxA gVf xYA xYA @@ -88979,7 +88979,7 @@ xYA xYA aIp kcR -kLm +uMU slq eXG eXG @@ -89024,25 +89024,25 @@ saC saC saC saC -rGM -rGM -rGM -rGM -cAh +rGH +rGH +rGH +rGH +oNh jOh jPw jPw ktp -qjT -pcv -nwh -xLz -nwh -nwh -nwh -nwh -fEl -bYg +mGx +fMr +mnF +ryy +mnF +mnF +mnF +mnF +vtx +iHb mUl wbR wbR @@ -89091,9 +89091,9 @@ vGv oQC lzU wsC -vCq -vCq -vCq +vLF +vLF +vLF sfI lzU gRD @@ -89110,40 +89110,40 @@ umR qSH vGp vGp -fbN +mqa xZP gdO -ocd -lPu -pXc -aqD +cWw +sMM +wrS +ezO gdO -xOl +uVF xXg -oxg -oxg -oxg -oxg -oxg -oxg -oxg -tch +mBd +mBd +mBd +mBd +mBd +mBd +mBd +mPf rnB rnB tTD tTD tTD ruc -rWN +nCh wIi cUG cUG cUG -vms -vms -vms -vms -vms +ayy +ayy +ayy +ayy +ayy cUG cUG cUG @@ -89154,11 +89154,11 @@ cUG cUG cUG cUG -ufW -ufW +eaj +eaj cUG xzK -pue +iZT uwT uwT uwT @@ -89172,17 +89172,17 @@ cpy tXW uwT uwT -jxa -hBI -hBI -hBI -hBI -hBI -hBI +tjB +kAE +kAE +kAE +kAE +kAE +kAE cpy cpy nDt -mlk +fdJ xyC xYA aiP @@ -89206,7 +89206,7 @@ xYA aiP xYA wBx -mlk +fdJ aVa eXG eXG @@ -89253,23 +89253,23 @@ saC saC saC saC -rGM -unw -cAh +rGH +lDe +oNh jOh jPw jPw ktp -qjT -pcv -nwh -cnp -pNG -nwh -nwh -nwh -fEl -emD +mGx +fMr +mnF +rWi +yfY +mnF +mnF +mnF +vtx +unH mUl wbR wbR @@ -89316,13 +89316,13 @@ qSH oQC lzU qnb -xNZ -vCq -vCq -mDy -vCq -vCq -xNZ +rbK +vLF +vLF +jnP +vLF +vLF +rbK oAu lzU gRD @@ -89338,15 +89338,15 @@ qSH vGp vGp vGp -qdT -rRu -ocd +uaZ +aAz +cWw vDa pej -aqD -gVe -jGL -mZi +ezO +uJF +rKB +qnL tTD rnB rnB @@ -89362,30 +89362,30 @@ tTD rnB tSm rnB -bbl -xTh -vbv -tOn -oxg -oxg -ttb -ttb -ttb -ttb -npK -ttb -ttb -ttb -ttb -ttb -ttb -ttb -ttb -ttb -ttb -ttb -ttb -xqC +jqJ +eZw +uKz +qRo +mBd +mBd +dsZ +dsZ +dsZ +dsZ +fcl +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dsZ +dXK uwT uwT uwT @@ -89410,7 +89410,7 @@ cpy cpy iWN jxD -kLm +uMU sTR udA xsq @@ -89432,7 +89432,7 @@ udA xsq res sTR -kLm +uMU sAt svG eXG @@ -89480,23 +89480,23 @@ cpy saC saC saC -rGM -rGM -cAh +rGH +rGH +oNh jOh jPw jPw ktp -qjT -pcv -nwh -cnp -nwh -nwh -nwh -nwh -suH -emD +mGx +fMr +mnF +rWi +mnF +mnF +mnF +mnF +xuq +unH mUl wbR wbR @@ -89541,17 +89541,17 @@ qSH qSH oQC qnb -vCq -vCq -gJX -bRX -bRX -uNI -tnq -tnq -gJX -vCq -vbY +vLF +vLF +cuO +lxe +lxe +axv +sdF +sdF +cuO +vLF +cPI oAu gRD qSH @@ -89565,15 +89565,15 @@ qSH qSH vGp vGp -sAR +dYw gdO -ocd +cWw vDa pej -xVv +jMC gdO -jGL -mZi +rKB +qnL rnB rnB rnB @@ -89638,27 +89638,27 @@ cpy cpy iWN jxD -kLm -kLm -kLm -xoW -xoW -xoW +uMU +uMU +uMU +kOu +kOu +kOu dEm -hRl -xoW -udP -sGE -xoW -phD -xoW +dHt +kOu +pMH +vbT +kOu +rJm +kOu uMr -koW -hdj -koW -kNp -aGU -aGU +dyV +oKJ +dyV +oAF +ojl +ojl sAt svG eXG @@ -89708,22 +89708,22 @@ cpy tiQ saC saC -rGM -cAh +rGH +oNh jOG kdL kdL kwt -qjT -pcv -nwh -cnp -nwh +mGx +fMr +mnF +rWi +mnF woG woG -vgj -suH -emD +jiZ +xuq +unH mUl wbR wbR @@ -89767,19 +89767,19 @@ qSH oQC gRj qnb -vCq -vCq +vLF +vLF xIv xIv kqT xIv -mDy +jnP xIv buD xIv kqT -qhc -wCm +sbn +qWW oAu lzU gRD @@ -89792,15 +89792,15 @@ uet aoi aoi dcc -sIV -xIc +cVW +nsk vCG -mVc -pXc +voV +wrS pej -nAf -jGL -mZi +oeP +rKB +qnL rnB rnB rnB @@ -89867,23 +89867,23 @@ eXG iWN rnq rnq -gSM -gSM -kLm -xoW +rxA +rxA +uMU +kOu qXH -hRl -hRl -phD -sGE -xoW -phD -xoW +dHt +dHt +rJm +vbT +kOu +rJm +kOu uMr -dnl -dlS -rsB -aGU +uEA +epC +ltb +ojl rnq rnq svG @@ -89936,21 +89936,21 @@ cpy saC saC saC -qDo -vPu -fci -fci -vPu -icc -pcv -nwh -cnp -nwh +lxK +xxg +bMK +bMK +xxg +ccD +fMr +mnF +rWi +mnF woG woG -nwh -suH -gBp +mnF +xuq +vPF mUl wbR wbR @@ -89992,23 +89992,23 @@ qSH oQC lzU qnb -vCq -vCq -vCq -rrK +vLF +vLF +vLF +wTI taJ -ewS -kvV -qKt -mDy -tnq -lyV -tnq +alD +mzE +tjE +jnP +sdF +dDu +sdF xIv -uQN -qhc -vCq -vCq +rqv +sbn +vLF +vLF oAu lzU gRD @@ -90019,15 +90019,15 @@ qSH vGp vGp qoG -lTo -lTu +nUA +kbW pfN -pXc -pXc +wrS +wrS pej -etO -jGL -mZi +niy +rKB +qnL rnB rnB rnB @@ -90096,19 +90096,19 @@ eXG iWN jru jxD -gSM -gSM +rxA +rxA crM wDa ffL baN -sGE +vbT wDa sIr wDa wDa -wWB -laD +bWe +oLO sAt jru svG @@ -90167,17 +90167,17 @@ saC saC saC saC -rGM -tBu -pcv -nwh -cnp -nwh +rGH +unv +fMr +mnF +rWi +mnF woG woG -nwh -ivG -gBp +mnF +fFJ +vPF mUl wbR wbR @@ -90217,27 +90217,27 @@ rMR qSH oQC qnb -vCq -vCq -vCq -tnq -tnq -fXI +vLF +vLF +vLF +sdF +sdF +eOD trD -kXu -tnq -tnq -mDy -pEi -tnq -tnq +abW +sdF +sdF +jnP +mtC +sdF +sdF xIv -tnq -tnq -tnq -vCq -vCq -vCq +sdF +sdF +sdF +vLF +vLF +vLF oAu gRD qSH @@ -90246,15 +90246,15 @@ vGp vGp vGp vGp -lGs +tDF gdO -ocd +cWw pej pej -aqD +ezO gdO -jGL -mZi +rKB +qnL rnB rnB rnB @@ -90324,17 +90324,17 @@ wQa eXG iWN jxD -gSM -kLm -kLm -xoW -xoW -sGE -xoW -xoW -kLm -kLm -kLm +rxA +uMU +uMU +kOu +kOu +vbT +kOu +kOu +uMU +uMU +uMU sAt svG eXG @@ -90394,17 +90394,17 @@ saC saC saC saC -rGM -rGM -pcv -nwh -cnp -nwh -nwh -nwh -sdQ -ivG -gBp +rGH +rGH +fMr +mnF +rWi +mnF +mnF +mnF +hpQ +fFJ +vPF mUl nhb wbR @@ -90443,29 +90443,29 @@ ien rMR oQC qnb -vCq -vCq -mDy -mDy -mDy -mDy -mDy -dWe -kkI -mDy -mDy -mDy -mDy -xHq -mDy -mDy -mDy -mDy -mDy -mDy -mDy -vCq -vCq +vLF +vLF +jnP +jnP +jnP +jnP +jnP +rjK +heL +jnP +jnP +jnP +jnP +kWd +jnP +jnP +jnP +jnP +jnP +jnP +jnP +vLF +vLF oAu gRD qSH @@ -90473,15 +90473,15 @@ vGp vGp vGp lyP -lGs -rRu -ocd +tDF +aAz +cWw pej pej -aqD -gVe -jGL -mZi +ezO +uJF +rKB +qnL rnB rnB rnB @@ -90553,13 +90553,13 @@ cex iWN jru jxD -mlk -kLm -kLm -cMG -gSM -kLm -mlk +fdJ +uMU +uMU +iEe +rxA +uMU +fdJ sAt jru svG @@ -90621,16 +90621,16 @@ saC saC saC tiQ -rGM -rGM +rGH +rGH tiQ -fUl -fUl -fUl -fUl -fUl -fUl -fUl +oeA +oeA +oeA +oeA +oeA +oeA +oeA tiQ mVE niu @@ -90669,8 +90669,8 @@ ien cpy qSH oZN -xNZ -vCq +rbK +vLF qUL qUL qUL @@ -90680,35 +90680,35 @@ qUL nSF qUL qUL -kQo -kQo -eHZ -frt -dFL -keN +vcK +vcK +cPf +woD +gEF +bjA iRl qUL qUL qUL aDs qUL -vCq -xNZ +vLF +rbK ltf qSH vGp vGp kQJ tPb -lTo +nUA gdO -ocd -pXc -pXc -ocd +cWw +wrS +wrS +cWw gdO cpy -mZi +qnL rnB rnB rnB @@ -90782,9 +90782,9 @@ cex iWN jru jxD -gSM -gSM -gSM +rxA +rxA +rxA sAt jru svG @@ -90896,7 +90896,7 @@ ien cpy qSH pet -vCq +vLF xIv qUL qUL @@ -90904,23 +90904,23 @@ qUL qUL qUL qUL -xqc -nvx -dGl +ajn +iYW +gSL qUL qUL -lIF -cYI -sja -dmc -eHZ -frt -dFL -keN -rgr +pDZ +rcl +clQ +pcS +cPf +woD +gEF +bjA +swy qUL -mDy -vCq +jnP +vLF jaq vGp vGp @@ -91123,31 +91123,31 @@ ien ien qSH pFH -vCq +vLF xIv qUL qUL nSF qUL qUL -tMX -psy -uwQ -wzg -boA -boA -bpZ -wRL -pAd -hPb -lIF -cYI -sja -dmc -cRU +eYJ +uSd +vep +xbP +btM +btM +bfZ +pIK +xnC +rxh +pDZ +rcl +clQ +pcS +img qUL -mDy -vCq +jnP +vLF nTp vGp vGp @@ -91346,35 +91346,35 @@ qSH qSH qSH qSH -cQP +gOe qSH qSH pFH -vCq +vLF xIv qUL qUL nSF qUL -eHZ -jhZ -hdU -ooB -hdU -rOB -rOB -hdU -vfV -hdU -fLa -bpZ -wRL -pAd -bpZ -oDl +cPf +bjR +rAy +sDV +rAy +ukO +ukO +rAy +jJH +rAy +tmO +bfZ +pIK +xnC +bfZ +oWg qUL -qgw -vCq +fCk +vLF nTp vGp vGp @@ -91573,35 +91573,35 @@ qSH qSH qSH qSH -cQP +gOe qSH qSH pFH -vCq +vLF xIv qUL qUL -hRx -xsz -hsC -bhp -jCa -gyo -gyo -gyo -gyo -diw -gyo -fSx -jYq -pAi -ooB -hdU -vYQ -aFJ -iPv -mDy -vCq +onE +cZl +paV +wIB +pFW +pwM +pwM +pwM +pwM +evw +pwM +dbj +xQb +fkh +sDV +rAy +qoL +nLr +klG +jnP +vLF nTp vGp vGp @@ -91800,35 +91800,35 @@ qSH qSH qSH qSH -cQP +gOe qSH qSH pFH -vCq +vLF xIv qUL qUL -vdk -vAx -wZQ -dYT -slG -xJO -eyF -lPA -lPA -uDw -tCR -slG -dge -gyo -gyo -hfv -vxq +hqv +ieF +srn +tmJ +ari +wVY +ndk +aHX +aHX +pLL +kWO +ari +vHn +pwM +pwM +rQS +dyX qUL -mzL -mDy -vCq +enV +jnP +vLF nTp vGp vGp @@ -92031,31 +92031,31 @@ ien ien qSH pFH -vCq +vLF xIv qUL qUL -uBu -liB -aBJ -bhp -kKq -gyo -gyo -gyo -gyo -gyo -gyo -jQO -oVv -was -qQg -hYy -aOY -vaw -xOe -mDy -vCq +wkv +kKK +gyx +wIB +ykO +pwM +pwM +pwM +pwM +pwM +pwM +cQX +wTg +nED +fvE +ehQ +egu +jWu +osF +jnP +vLF nTp vGp cpy @@ -92258,31 +92258,31 @@ ien qSH qSH pFH -vCq +vLF xIv qUL qUL qUL pTW -lIF -jhZ -hYy -qQg -fKx -rOB -rOB -hYy -iUj -hYy -twB -fXn -uSB -ecP -fXn -ujK +pDZ +bjR +ehQ +fvE +eez +ukO +ukO +ehQ +srH +ehQ +jUZ +xXd +qZz +wSu +xXd +xQh qUL -mDy -vCq +jnP +vLF nTp vGp cpy @@ -92485,31 +92485,31 @@ ien qSH qSH pFH -vCq +vLF xIv qUL qUL qUL qUL qUL -gtn -kXG -vjv -wCr -boA -boA -fXn -uSB -ecP -iwo -eHZ -sNr -pKN -keN -adr +qmP +mBC +vjd +nBU +btM +btM +xXd +qZz +wSu +lQs +cPf +qAk +qHK +bjA +nlU qUL -mDy -vCq +jnP +vLF nTp vGp cpy @@ -92712,7 +92712,7 @@ ien ien qSH pVn -vCq +vLF xIv qUL qUL @@ -92720,23 +92720,23 @@ qUL qUL nSF qUL -xcp -xoX -lJR +vvK +lBO +ete qUL qUL -eHZ -sNr -pKN -keN -lIF -sTj -ipK -nFF -jwI +cPf +qAk +qHK +bjA +pDZ +hzE +bbf +oab +wjk qUL -mDy -vCq +jnP +vLF keq vGp cpy @@ -92939,8 +92939,8 @@ ien qSH qSH oZN -xNZ -vbY +rbK +cPI qUL qUL qUL @@ -92952,18 +92952,18 @@ qUL dBd iRl qUL -lIF -sTj -ipK -dmc +pDZ +hzE +bbf +pcS iRl pTW qUL qUL qUL qUL -vCq -xNZ +vLF +rbK ltf vGp cpy @@ -93167,29 +93167,29 @@ vGp qSH pYN qqG -qhc -vCq -mDy -mDy -mDy -mDy -mDy -aSb -aSb -mDy -mDy -mDy -mDy -uNI -lOb -mDy -mDy -mDy -mDy -mDy -mDy -vCq -vCq +sbn +vLF +jnP +jnP +jnP +jnP +jnP +mza +mza +jnP +jnP +jnP +jnP +axv +dkK +jnP +jnP +jnP +jnP +jnP +jnP +vLF +vLF mil wYJ vGp @@ -93395,27 +93395,27 @@ vGp qSH pYN qqG -vCq -vCq -vCq -uQN -uQN -tnq +vLF +vLF +vLF +rqv +rqv +sdF xIv -tnq -tnq -tnq -mDy -uQN -uQN -lyV +sdF +sdF +sdF +jnP +rqv +rqv +dDu xIv -tnq -tnq -tnq -vCq -vCq -vCq +sdF +sdF +sdF +vLF +vLF +vLF mil wYJ qSH @@ -93624,23 +93624,23 @@ qSH pYN qXY qqG -vCq -vCq -vCq -fXI +vLF +vLF +vLF +eOD uGT -tnq -tnq -iPs -lZS -wew -uXy -pyg +sdF +sdF +dsi +oOa +djE +xbs +pYR xIv -tnq -vCq -vCq -vCq +sdF +vLF +vLF +vLF mil qXY wYJ @@ -93853,19 +93853,19 @@ qSH pYN qXY qqG -vCq -vCq +vLF +vLF xIv xIv xIv xIv -mDy +jnP xIv xIv xIv kVh -vCq -vCq +vLF +vLF mil qXY wYJ @@ -94081,17 +94081,17 @@ qSH qSH pYN qqG -vCq -vCq -vCq -tnq -tnq -mDy -tnq -tnq -vCq -vCq -vCq +vLF +vLF +vLF +sdF +sdF +jnP +sdF +sdF +vLF +vLF +vLF mil wYJ qSH @@ -94310,13 +94310,13 @@ qSH pYN qXY qqG -xNZ -vCq -vCq -mDy -vCq -vCq -xNZ +rbK +vLF +vLF +jnP +vLF +vLF +rbK mil qXY wYJ @@ -94539,9 +94539,9 @@ qSH pYN qXY xpH -vCq -vCq -vCq +vLF +vLF +vLF qzE qXY wYJ diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index 2e6f29e0de..e7da325747 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -13,6 +13,13 @@ icon_state = "pwall" }, /area/space) +"aae" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "aag" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) @@ -359,6 +366,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"acR" = ( +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) "acS" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -391,9 +401,6 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"adj" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) "adk" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -464,6 +471,17 @@ /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"adR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"adW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/east_caves) "adX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, @@ -629,10 +647,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"afD" = ( -/obj/structure/bed/stool, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "afF" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, @@ -818,10 +832,6 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"agO" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/barrens/central_barrens) "agR" = ( /obj/structure/surface/table/reinforced{ dir = 8; @@ -916,6 +926,9 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"aht" = ( +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) "ahv" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) @@ -981,6 +994,18 @@ /obj/structure/flora/jungle/planttop1, /turf/closed/wall, /area/lv624/ground/barrens/east_barrens/ceiling) +"ajk" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "ajp" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, @@ -1191,6 +1216,10 @@ /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"alm" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/central_barrens) "alo" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_east, @@ -1226,9 +1255,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/coast/east, /area/lv624/ground/river/central_river) -"alI" = ( -/turf/open/floor/white, -/area/lv624/lazarus/research) "alL" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -1286,9 +1312,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"amq" = ( -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "amr" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, @@ -1421,10 +1444,6 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_east_jungle) -"aoe" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "aon" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -1433,6 +1452,15 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) +"aoy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) +"aoG" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "aoX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -1502,6 +1530,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) +"aqo" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "aqr" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/lv624/fog_blocker, @@ -1525,10 +1557,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"aqD" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "aqF" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -1692,9 +1720,6 @@ /obj/structure/barricade/wooden, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"asE" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/caves/sand_temple) "asF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, @@ -1759,6 +1784,10 @@ "ati" = ( /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"atl" = ( +/obj/item/tool/soap, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "atn" = ( /obj/structure/window_frame/colony/reinforced, /obj/structure/machinery/door/poddoor/almayer{ @@ -1900,12 +1929,6 @@ "auE" = ( /turf/open/gm/river, /area/lv624/lazarus/fitness) -"auL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "auM" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/south, @@ -2084,13 +2107,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"axs" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "axw" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/jungle/west_jungle) @@ -2237,6 +2253,10 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) +"azH" = ( +/obj/structure/bed/stool, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "azK" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ density = 0; @@ -2801,9 +2821,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"aGT" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/barrens/east_barrens/ceiling) "aGU" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, @@ -2862,6 +2879,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_west_jungle) +"aIk" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "aIm" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -2901,6 +2922,12 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) +"aIR" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "aIV" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -3030,6 +3057,11 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/floor/plating, /area/lv624/lazarus/yggdrasil) +"aKw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "aKy" = ( /obj/effect/decal/cleanable/blood{ pixel_y = 12 @@ -3172,8 +3204,10 @@ /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) "aLx" = ( -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/central_barrens) +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "aLF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -3223,6 +3257,12 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"aMx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) "aMz" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -3300,10 +3340,12 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"aNs" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"aNv" = ( +/obj/structure/machinery/requests_console{ + pixel_x = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "aNB" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, @@ -3317,6 +3359,14 @@ /obj/structure/flora/jungle/cart_wreck, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) +"aNE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "aNF" = ( /obj/structure/flora/jungle/treeblocker, /obj/structure/machinery/colony_floodlight, @@ -3355,6 +3405,9 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_jungle) +"aOg" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/west_caves) "aOs" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/west, @@ -3438,6 +3491,18 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) +"aPl" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "aPm" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -3451,6 +3516,10 @@ /obj/effect/landmark/crap_item, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) +"aPF" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) "aPH" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible, @@ -3543,14 +3612,6 @@ "aQM" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/hop) -"aQU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "aQX" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/light_2, @@ -3614,6 +3675,13 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"aRS" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) "aRV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass2, @@ -3657,11 +3725,6 @@ /obj/structure/foamed_metal, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aSr" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) "aSv" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -3706,13 +3769,6 @@ "aTg" = ( /turf/closed/wall, /area/lv624/lazarus/comms) -"aTp" = ( -/obj/item/reagent_container/food/snacks/grown/banana{ - pixel_x = -8 - }, -/obj/structure/surface/rack, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) "aTt" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, @@ -4199,6 +4255,18 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) +"aZp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"aZy" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "aZO" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, @@ -4207,9 +4275,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/lazarus/landing_zones/lz2) -"aZQ" = ( -/turf/open/floor/whitebluecorner/north, -/area/lv624/lazarus/corporate_dome) "aZT" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -4236,11 +4301,10 @@ /obj/effect/decal/cleanable/blood/gibs/xeno/up, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"baH" = ( -/obj/effect/spawner/random/powercell, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"bax" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "baN" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass2, @@ -4314,17 +4378,42 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"bdo" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "bdu" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"bdO" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "bei" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"bel" = ( +/obj/structure/largecrate/random, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "beB" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -4332,15 +4421,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"beM" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "bfc" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -4348,34 +4428,18 @@ "bfe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_east_jungle) -"bfW" = ( -/obj/structure/closet, -/obj/item/clothing/under/blackskirt, -/obj/item/stack/medical/advanced/ointment, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"bff" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "bfY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"bgt" = ( -/obj/effect/landmark/lizard_spawn, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_east_jungle) -"bgA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light, -/obj/item/reagent_container/glass/fertilizer, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"bgG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) +"bfZ" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) "bgL" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -4384,50 +4448,49 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"bgX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "bhr" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_east_jungle) -"bhR" = ( -/obj/structure/prop/mech/armor_booster, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"bih" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "bit" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"biE" = ( -/obj/effect/decal/remains/xeno, -/obj/item/stack/sheet/metal, -/turf/open/gm/dirt, -/area/lv624/ground/colony/west_tcomms_road) +"biZ" = ( +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "bje" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"bjS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8; - pixel_y = 7 +"bjn" = ( +/obj/item/clothing/under/shorts/black{ + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/vault2/west, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"bkm" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) -"bkh" = ( -/obj/item/stack/rods/plasteel, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/lv624/lazarus/secure_storage) "bkG" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) @@ -4445,10 +4508,33 @@ "bkY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_west_jungle) -"blr" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) +"blg" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"bmQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"bnt" = ( +/obj/structure/closet, +/obj/item/weapon/baseballbat, +/obj/item/clothing/head/beret/jan, +/obj/item/stack/medical/splint, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"bnC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "bnE" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -4463,17 +4549,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/central_river) -"bob" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "boe" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) @@ -4481,6 +4556,23 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"bpq" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"bpt" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"bqc" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "bqf" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/smokebomb{ @@ -4497,36 +4589,40 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"bql" = ( -/obj/item/stack/sheet/wood{ +"bqt" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold{ amount = 2 }, -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz2) +/obj/item/stack/sheet/mineral/platinum{ + pixel_x = -6 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"bqC" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "brh" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"bsm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null +"brB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) +/obj/item/prop/alien/hugger, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "bsR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) -"bsS" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "btb" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -4564,6 +4660,15 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"btG" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "btS" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/east_jungle) @@ -4582,6 +4687,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"buS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "buW" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -4589,15 +4698,12 @@ "bvj" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"bvk" = ( -/obj/effect/landmark/lizard_spawn, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"bvm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"bvn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/red, +/area/lv624/lazarus/security) "bvS" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -4606,51 +4712,46 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"bwb" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "bwc" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/west_barrens) "bwk" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) +"bwG" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "bwR" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"bwT" = ( +/obj/item/bananapeel, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "bxb" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"bxt" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southeast, -/area/lv624/lazarus/landing_zones/lz2) -"bxJ" = ( -/obj/structure/machinery/shower{ +"bxk" = ( +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"bxV" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/glowshroom, /turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"bxN" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/barrens/central_barrens) -"bxY" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/platebot, -/area/lv624/lazarus/engineering) -"byb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/area/lv624/lazarus/kitchen) "byl" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -4668,23 +4769,21 @@ "byY" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"bzR" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"bAc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +"bzI" = ( +/obj/structure/computerframe, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"bzS" = ( +/obj/structure/surface/table/reinforced{ dir = 1; - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null + flipped = 1 }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) -"bAo" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) "bAB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_east_jungle) @@ -4695,11 +4794,6 @@ "bBu" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/jungle/west_jungle) -"bBM" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "bBT" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -4711,14 +4805,6 @@ "bCe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_east_jungle) -"bCj" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"bCq" = ( -/obj/structure/inflatable, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) "bCH" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -4729,6 +4815,19 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"bDb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/showcase, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "bEj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -4740,19 +4839,6 @@ "bEq" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) -"bEr" = ( -/obj/item/stack/rods, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"bEz" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/lv624/lazarus/secure_storage) -"bEK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "bEU" = ( /obj/structure/showcase{ color = "#95948B"; @@ -4775,127 +4861,153 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"bEY" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "bFa" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"bFn" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -10; - pixel_y = -2 +"bFE" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"bFX" = ( +/obj/structure/prop/mech/parts/chassis/gygax, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"bFY" = ( +/obj/structure/prop/tower, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "bGb" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"bGf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) -"bGo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"bHg" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/engineering) -"bHy" = ( +"bGU" = ( +/obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - locked = 1; - name = "\improper Nexus Dome Marshal's Quarters"; - req_access_txt = "100" +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"bHg" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"bIz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/cult, -/area/lv624/lazarus/captain) -"bIo" = ( -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/jungle/west_central_jungle) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "bIO" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/sand_temple) +"bJn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) +"bJo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "bJz" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"bJE" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "bJQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"bKN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"bJR" = ( +/obj/structure/girder, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"bKw" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10 }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) +"bKY" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_9_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"bLe" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "bLs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"bLu" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) "bLE" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"bLG" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "bMu" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) -"bMN" = ( -/obj/item/clothing/head/helmet/augment{ - desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; - name = "alien mask"; - unacidable = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/cult, -/area/lv624/ground/caves/west_caves) +"bNa" = ( +/obj/item/stack/rods/plasteel, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) "bNn" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) +"bNP" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "bOg" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"bOx" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/east, -/area/lv624/lazarus/landing_zones/lz1) "bOy" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -4904,14 +5016,10 @@ }, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz2) -"bOA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz2) -"bPq" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/river/central_river) +"bPo" = ( +/obj/item/clothing/under/shorts/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "bPy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -4922,16 +5030,25 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"bPH" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 +"bPL" = ( +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_west_jungle) +"bQl" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"bQy" = ( +/obj/structure/fence, +/turf/open/floor/warning/northwest, +/area/lv624/ground/barrens/containers) "bQz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -4947,67 +5064,81 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"bQL" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "bQP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_east_jungle) -"bRq" = ( -/obj/item/trash/cheesie, -/obj/structure/pipes/standard/simple/hidden/cyan, +"bQT" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"bRk" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_central_jungle) +"bRB" = ( +/obj/structure/closet, +/obj/item/tool/crowbar, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/medical/bruise_pack, /turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) -"bRL" = ( -/turf/open/floor/chapel, -/area/lv624/lazarus/chapel) "bSm" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"bSr" = ( -/obj/item/ammo_casing, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/barrens/central_barrens) -"bSI" = ( +"bSt" = ( /obj/structure/surface/table, -/obj/item/poster, -/obj/item/clothing/glasses/regular/hipster, +/obj/item/tool/crowbar, +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"bTB" = ( -/obj/structure/bed/chair{ +/turf/open/floor/dark, +/area/lv624/lazarus/comms) +"bSv" = ( +/obj/item/clothing/suit/redtag, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"bTi" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"bVQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"bUI" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -12 +/obj/item/prop/alien/hugger, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"bVT" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"bWV" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"bXD" = ( +/obj/item/stack/medical/ointment, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"bVu" = ( -/obj/structure/holohoop, -/turf/open/floor/warnwhite/north, -/area/lv624/lazarus/fitness) -"bVv" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/dirt/desert2, -/area/lv624/ground/barrens/south_eastern_barrens) -"bVZ" = ( -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/west_barrens) -"bWG" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"bXZ" = ( -/obj/structure/machinery/vending/coffee, /turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "bZb" = ( @@ -5016,13 +5147,30 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"bZH" = ( -/obj/structure/fence, -/turf/open/floor/plating/asteroidwarning, -/area/lv624/ground/river/central_river) +"bZL" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "cag" = ( /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) +"caz" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset{ + frequency = 1469; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/headset{ + frequency = 1469 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "caX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -5030,47 +5178,53 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "cbq" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/weapon/gun/smg/mp5, +/obj/structure/holohoop{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/warnwhite, +/area/lv624/lazarus/fitness) +"cbu" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, /turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"cbK" = ( -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) +/area/lv624/lazarus/research) "ccn" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"ccK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 +"ccv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 }, -/turf/open/floor/whiteblue/east, -/area/lv624/lazarus/corporate_dome) -"cdp" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "cdF" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-centralcaves" }, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) -"ceA" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" +"cea" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "cfD" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage/outdoors) @@ -5086,42 +5240,34 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_central_jungle) -"cgS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"cha" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"chb" = ( -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/secure_storage) +"cgI" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "chf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"chB" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) +"chw" = ( +/obj/item/storage/firstaid, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "cij" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"cil" = ( +/obj/structure/surface/rack, +/obj/item/stack/sandbags/large_stack{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/stack/sandbags/large_stack{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "ciz" = ( /obj/item/device/assembly/signaller{ pixel_x = -6; @@ -5147,85 +5293,111 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"cja" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"cjL" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"cjO" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/canteen) -"ckA" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"ckE" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"cli" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"clO" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 +"cje" = ( +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) -"cmb" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +/obj/structure/platform, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) +"cjf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/machinery/photocopier{ + pixel_y = 12 + }, +/obj/item/tool/wrench, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"cjE" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/laceup, +/obj/item/stack/medical/advanced/ointment, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"clz" = ( +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"clD" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"clO" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "cmf" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"cnb" = ( -/obj/structure/fence, -/turf/open/floor/warning/north, -/area/lv624/ground/barrens/containers) -"cnD" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/west_barrens) -"cnG" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"cmq" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"coj" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "cop" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"cpj" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/cargo) "cpQ" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) +"cpX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "cpY" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"cqa" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) +"cqg" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/carpet/bcarpet07, +/area/lv624/ground/caves/north_central_caves) "cqm" = ( /obj/structure/powerloader_wreckage/ft, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) +"cqv" = ( +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/medbay) "cqw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, @@ -5253,50 +5425,25 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"cqO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/baton/cattleprod{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/weapon/baton/cattleprod{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"crg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"cqP" = ( +/obj/structure/surface/table, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "crn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"crq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/comms) +"crD" = ( +/obj/item/storage/firstaid/toxin/empty, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "crF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) -"crQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Female Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "csu" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/south, @@ -5305,6 +5452,26 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) +"ctv" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"cuu" = ( +/obj/structure/surface/rack, +/obj/item/ore/silver, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"cuC" = ( +/obj/item/tool/crowbar, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"cvY" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_east_jungle) "cwv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -5317,75 +5484,31 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"cye" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) "cys" = ( /obj/structure/foamed_metal, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) -"cyt" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/window_frame/colony, -/obj/item/shard, -/turf/open/floor/plating, -/area/lv624/lazarus/yggdrasil) -"cyR" = ( -/obj/structure/surface/table, -/obj/item/trash/chips, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"czn" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "czu" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"czK" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_id = "Cargo"; - pixel_y = 24 - }, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) -"cAd" = ( -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) -"cAg" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "cAl" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/blood/oil, /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"cAL" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"cAQ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +"cAo" = ( +/obj/structure/flora/jungle/vines/light_3, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) "cAZ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -5396,42 +5519,38 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"cBx" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/bed/chair, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"cBJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "cCr" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"cCz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) -"cDq" = ( -/obj/structure/closet, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"cCJ" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "cDr" = ( /obj/structure/girder, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) "cDv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + color = "#524e4e"; + desc = "An old hide from a fearsome creature."; + name = "hunter hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "cDQ" = ( /obj/item/ammo_magazine/sentry{ current_rounds = 0; @@ -5458,44 +5577,63 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"cEk" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/west_caves) "cEn" = ( /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"cEJ" = ( -/obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"cEK" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) "cEQ" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"cFY" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/warningcorner/north, +/area/lv624/lazarus/landing_zones/lz1) "cGb" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"cHl" = ( -/obj/structure/girder/displaced, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_central_jungle) +"cGH" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"cGW" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/river/central_river) "cHW" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"cIs" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"cIx" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/corporate_dome) +"cIy" = ( +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "cIL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"cIP" = ( +/turf/open/floor/chapel, +/area/lv624/lazarus/chapel) "cIQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -5509,60 +5647,80 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"cIZ" = ( -/obj/structure/cargo_container/seegson/mid, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"cJt" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/south_eastern_barrens) +"cJa" = ( +/obj/structure/closet/crate/secure/hydrosec, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"cJg" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"cJx" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) "cJA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"cJV" = ( -/turf/open/floor/asteroidwarning/west, -/area/lv624/ground/colony/telecomm/sw_lz2) -"cKc" = ( -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +"cJE" = ( +/obj/item/shard, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "cKj" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"cKE" = ( -/turf/open/floor/whitegreen, -/area/lv624/lazarus/main_hall) -"cKL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Corporate Liaison" +"cKo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"cLs" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"cMi" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"cKq" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; - pixel_y = 30 + pixel_x = -30 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) +"cLa" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "casing_1_1" }, -/turf/open/floor/chapel/east, -/area/lv624/lazarus/chapel) +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"cLr" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) "cMj" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"cMu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "cMD" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/strata_ice/jungle, @@ -5573,46 +5731,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"cMZ" = ( -/turf/open/gm/dirt, -/area/lv624/lazarus/secure_storage) +"cML" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"cNz" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "cNH" = ( /obj/structure/surface/rack, /obj/item/storage/box/beakers, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"cNO" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/caves/south_west_caves) -"cOg" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"cOo" = ( -/obj/item/frame/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"cOr" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ +"cNX" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "cOs" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/quartstorage/outdoors) @@ -5623,53 +5762,33 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"cPi" = ( -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/barrens/central_barrens) +"cOT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/mob/living/simple_animal/corgi/puppy{ + desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; + name = "\improper Mister Wiggles" + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "cPV" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"cPW" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 11; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"cQu" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) "cQB" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"cQG" = ( -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "cQJ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"cQP" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/corporate_dome) +"cQQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "cQX" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -5679,76 +5798,63 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"cRa" = ( -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/engineering) "cRm" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) -"cRp" = ( -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) -"cRK" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +"cRr" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"cRL" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_jungle) "cRT" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"cSi" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"cSp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) "cSs" = ( /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"cSG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "cSL" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"cTc" = ( +/obj/structure/surface/table, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "cTi" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"cTF" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 +"cTv" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"cTV" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz1) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"cTW" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "cUk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_east_jungle) @@ -5756,26 +5862,39 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"cVd" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/caves/south_west_caves) -"cVR" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +"cVq" = ( +/obj/item/trash/chips, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"cVw" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"cVx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"cVT" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"cWa" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "cWm" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"cWq" = ( -/turf/open/floor/plating/asteroidwarning, -/area/lv624/ground/river/central_river) "cWr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -5786,22 +5905,27 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"cWt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/chips, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Director's Office" +"cWH" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/snacks/syndicake{ + layer = 2.6 }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"cWO" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"cWW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "cXd" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/heavy, @@ -5810,31 +5934,41 @@ "cXk" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/west_barrens) -"cYr" = ( -/obj/structure/surface/rack, -/obj/item/device/multitool, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"cZq" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"cZe" = ( +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"cZj" = ( +/obj/structure/computerframe, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"cZn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/engineering) +"cZH" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) +"cZM" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz1) "daz" = ( /obj/structure/prop/brazier/torch, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"daT" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/reagent_container/glass/bucket{ - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "daY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -5843,69 +5977,83 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"dbw" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/lv624/ground/colony/telecomm/cargo) +"dbF" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"dbG" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dbY" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"ddR" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/structure/flora/pottedplant, -/obj/structure/pipes/vents/pump, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"ddv" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ddx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) "ddS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"deD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"dfb" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 +"deC" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_jungle) +"deY" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window/westright{ + layer = 2.9 }, -/obj/structure/window/reinforced/tinted, -/obj/item/clothing/under/colonist, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"dfa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Corporation Office"; + req_access_txt = "100" }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"dfk" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"dfD" = ( +/obj/structure/machinery/gibber, +/obj/effect/landmark/good_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "dfJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/scientist, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"dgn" = ( -/turf/open/floor/loadingarea/west, -/area/lv624/lazarus/landing_zones/lz1) -"dgq" = ( -/turf/open/floor/red/northwest, -/area/lv624/lazarus/security) -"dgQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "dhp" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -5921,33 +6069,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"diq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) -"dir" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"div" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"diB" = ( -/turf/open/floor/whiteyellow/west, -/area/lv624/lazarus/main_hall) +"diJ" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/south_west_caves) "diW" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -5958,18 +6082,23 @@ /obj/item/tool/crowbar, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"djG" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"dji" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "djI" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"djV" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +"dkJ" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "dkN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, @@ -5978,23 +6107,25 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"dkP" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 8 - }, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) "dlh" = ( /obj/structure/bed/chair/comfy/black, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) +"dlQ" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz2) "dmf" = ( /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) +"dmI" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "dmS" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -6005,51 +6136,122 @@ "dmZ" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"dob" = ( +"dna" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) +"dnn" = ( +/obj/item/stack/sheet/wood, +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 0 + }, /turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) +"dno" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/cigbutt/cigarbutt, +/obj/structure/machinery/cell_charger, +/obj/item/storage/fancy/cigarettes/wypacket, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"dnA" = ( +/obj/structure/largecrate/random, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 5 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) +"dnC" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"dnR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"dnZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Forced Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "doe" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"dog" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/obj/effect/landmark/lizard_spawn, -/turf/open/gm/grass/grass1, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) "dop" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"doU" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"dpt" = ( -/obj/structure/girder, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) +"doJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"dpg" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"dpL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "dqK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) "dqX" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"drc" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"drR" = ( -/obj/structure/prop/mech/parts/chassis/gygax, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"drq" = ( +/obj/structure/machinery/sleep_console, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"drD" = ( +/obj/item/device/flashlight/on, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "dsi" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"dsk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"dsE" = ( +/obj/item/folder/red, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"dsW" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv624/lazarus/yggdrasil) "dtr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -6057,46 +6259,50 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"dtv" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"duc" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"duM" = ( +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) +"duX" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"dtC" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grilledcheese, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"duo" = ( -/obj/item/bananapeel, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) -"duE" = ( -/obj/structure/computerframe, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dvf" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"dvt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - locked = 1; - name = "\improper Corporation Dome"; - req_access_txt = "100" +"dvl" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dvF" = ( /obj/structure/flora/bush/ausbushes/pointybush, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"dvH" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/shoes/dress, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"dwd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "dwt" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -6108,37 +6314,11 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"dxD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/computerframe{ - anchored = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"dxS" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/barrens/central_barrens) -"dyl" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/caves/west_caves) -"dyA" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/device/radio/off{ - frequency = 1469 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"dzF" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +"dxT" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "dzM" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -6149,33 +6329,44 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"dAw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"dAI" = ( -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/cargo) -"dBM" = ( -/obj/structure/surface/rack, -/obj/item/ore/silver, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"dBZ" = ( -/obj/structure/largecrate/random, +"dAA" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/loadingarea/east, -/area/lv624/lazarus/quartstorage) +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"dBI" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"dCa" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "dCD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"dCS" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "dCZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -6187,6 +6378,19 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"dDB" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"dDN" = ( +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "dEc" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_central_jungle) @@ -6197,15 +6401,20 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"dEx" = ( -/obj/structure/fence, -/turf/open/gm/dirt, -/area/lv624/ground/colony/west_tcomms_road) "dEI" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"dEV" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"dFg" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) "dFk" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -6221,42 +6430,65 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"dFW" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "dGc" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"dGq" = ( -/obj/item/bedsheet/rd, -/obj/item/weapon/pole/fancy_cane, -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/pipes/vents/pump{ +"dGm" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dGG" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/central_river) +"dGI" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "dGQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"dHg" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"dHo" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +"dGU" = ( +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) +"dGV" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) +"dHg" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"dHo" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"dHs" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/warnwhite/east, -/area/lv624/lazarus/fitness) +"dHS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) +"dHT" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "dIj" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, @@ -6269,16 +6501,13 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"dIx" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"dIM" = ( -/obj/structure/surface/table, -/obj/item/trash/candy, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"dJd" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/robotics) +"dJl" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "dJG" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -6289,30 +6518,49 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "dKk" = ( -/obj/structure/closet/coffin{ - density = 0; - icon_state = "coffin_open"; - opened = 1 - }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "dKl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"dKu" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/river/east_river) -"dLl" = ( -/obj/structure/barricade/metal{ - health = 250 +"dKn" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"dKx" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"dKB" = ( +/obj/structure/window_frame/colony, +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/medbay) +"dKE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"dKS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"dLl" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/effect/glowshroom, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "dLm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ @@ -6330,6 +6578,16 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) +"dLK" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/sleep_female) +"dLV" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/east_barrens/ceiling) "dLW" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -6339,14 +6597,6 @@ "dLY" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"dMc" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_central_jungle) -"dMn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "dMF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -6361,18 +6611,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"dMG" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) -"dMT" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) +"dMQ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) "dNj" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) @@ -6381,16 +6623,22 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"dNK" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "dNN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"dNS" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) "dOb" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, @@ -6404,113 +6652,173 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"dOJ" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/chefhat, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"dOE" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "dOQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"dQg" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"dQA" = ( -/obj/structure/reagent_dispensers/watertank, +"dOX" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"dOZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"dPq" = ( +/obj/item/weapon/sword{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"dPQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"dQm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"dQH" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/lv624/ground/colony/west_tcomms_road) +"dRd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"dRY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"dSf" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"dSr" = ( +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/lazarus/landing_zones/lz2) +"dSG" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"dRe" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"dRK" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"dSP" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"dST" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/east, -/area/lv624/lazarus/landing_zones/lz2) -"dSb" = ( -/obj/item/trash/cheesie, -/turf/open/floor/wood/wood_broken4, -/area/lv624/lazarus/hop) -"dSc" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/main_hall) -"dSN" = ( -/obj/structure/lamarr{ - density = 0; - destroyed = 1; - icon_state = "labcageb0"; - occupied = 0 +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"dTQ" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) +"dUV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/shard, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"dTl" = ( -/obj/structure/ore_box, -/obj/structure/fence, -/turf/open/floor/warning/east, -/area/lv624/ground/barrens/containers) -"dTA" = ( -/obj/structure/safe{ - spawnkey = 0 +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"dVw" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 }, -/obj/item/cell/high, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"dUH" = ( -/turf/open/floor/asteroidplating, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "dVH" = ( /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"dVK" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_jungle) +"dWl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "dWM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"dWS" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/jungle/west_jungle/ceiling) "dXq" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "dXG" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/item/device/flashlight, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"dXJ" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "dYx" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -6521,13 +6829,31 @@ /obj/structure/fence, /turf/open/gm/dirt, /area/lv624/ground/colony/west_nexus_road) +"dYR" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/river/east_river) +"dZn" = ( +/obj/structure/barricade/metal{ + health = 250 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "dZp" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"dZJ" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/whiteyellowfull/east, +"dZt" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"dZE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "dZY" = ( /obj/structure/flora/jungle/vines/light_3, @@ -6541,21 +6867,25 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"ebr" = ( -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/jungle/south_central_jungle) +"ebQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"ebR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Hydroponics" + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "ebS" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/south_nexus_road) -"ecd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright{ - dir = 2; - layer = 2.9 - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) "ecn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -6567,45 +6897,44 @@ "ecy" = ( /turf/closed/wall/sulaco, /area/lv624/lazarus/crashed_ship_containers) -"ecI" = ( -/obj/structure/target, -/turf/open/floor/red/northwest, -/area/lv624/lazarus/security) "ecO" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) -"edf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) +"edE" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "edS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"eeo" = ( +/obj/structure/closet/wardrobe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "eeW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"eeZ" = ( -/obj/structure/prop/tower, -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) -"efk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"efa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Female Dormitories"; + req_access_txt = "100" }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "efp" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"efr" = ( -/turf/open/floor/dark, -/area/lv624/lazarus/comms) "eft" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -6621,20 +6950,63 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"egL" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "egU" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"ehz" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) +"ehO" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) +"ehY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "eil" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"eix" = ( +/obj/structure/bed, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"eiD" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "eiP" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/river/east_river) +"eiU" = ( +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "eji" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, @@ -6661,17 +7033,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"ekR" = ( -/obj/structure/cargo_container/seegson/right, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"ekS" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "elp" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -6681,10 +7042,28 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"emb" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/white, -/area/lv624/lazarus/research) +"elU" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"emv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"emJ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "enn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -6692,94 +7071,57 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"enw" = ( -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +"ens" = ( +/turf/open/floor/plating/asteroidwarning/southwest, +/area/lv624/lazarus/landing_zones/lz2) +"enx" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "eny" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"enP" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "eoo" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"eoF" = ( -/obj/item/stock_parts/matter_bin/super, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) -"eoL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/door_control{ - id = "science_blast"; - name = "Science Wing Lockdown"; - pixel_x = 25 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"eoN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) "eoW" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"epF" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"epM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whitepurple/northeast, +"eph" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"epN" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) -"eqb" = ( -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz1) -"eqj" = ( -/obj/structure/bed, -/obj/item/bedsheet/mime, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"eqp" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 +"epo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"epq" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 26 }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"epF" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "eqs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -6789,12 +7131,6 @@ "eqF" = ( /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"eqM" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "eqS" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -6802,84 +7138,95 @@ "erx" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/jungle/west_jungle) +"erU" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"erY" = ( +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "esc" = ( -/obj/structure/surface/table, -/obj/item/device/mmi/radio_enabled, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "esi" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/west_barrens) -"esD" = ( -/obj/effect/glowshroom, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"etk" = ( -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"esq" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "etU" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"eus" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"evb" = ( -/obj/structure/barricade/metal/wired{ - health = 300 +"euK" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"evK" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "evT" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"ewE" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"ewO" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +"ewQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "exf" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) -"eyn" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/jungle/central_jungle) -"eyW" = ( -/obj/structure/machinery/vending/snack, +"exh" = ( +/obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/whiteblue/southwest, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) -"ezb" = ( -/obj/item/prop/alien/hugger{ - pixel_x = -20; - pixel_y = 8 - }, -/obj/item/tool/hatchet{ - pixel_x = -14; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/brown/northwest, +"exo" = ( +/obj/item/shard, +/turf/open/floor/dark, /area/lv624/lazarus/comms) -"ezv" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"eyn" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/jungle/central_jungle) "ezz" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) +"eAo" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) "eAr" = ( /obj/structure/showcase{ color = "#95948B"; @@ -6900,10 +7247,25 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"eAu" = ( +/obj/structure/surface/table, +/turf/open/floor/plating, +/area/lv624/ground/barrens/central_barrens) +"eAV" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/sand_temple) "eBu" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"eCo" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "eCx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -6913,23 +7275,6 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/gm/dirt, /area/lv624/landing/console2) -"eCX" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/lazarus/engineering) -"eDg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) -"eDp" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "eDy" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -6939,48 +7284,48 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"eEw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 26 +"eEy" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/repair_droid{ + layer = 2; + pixel_y = -10 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "eER" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"eFe" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz1) +"eFk" = ( +/obj/structure/largecrate/random, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) +"eFp" = ( +/turf/open/gm/dirtgrassborder/desert_dug, +/area/lv624/ground/barrens/south_eastern_barrens) +"eFI" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "eFS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"eGd" = ( +/obj/structure/closet, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "eGg" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"eGi" = ( -/obj/item/storage/firstaid, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"eGC" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "eGD" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) @@ -6992,72 +7337,68 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"eHJ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) "eHQ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_west_jungle) -"eIj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"eIt" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"eJN" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/fitness) +"eIa" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/apron, +/obj/item/tool/shovel, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"eJV" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern, +/obj/structure/barricade/sandbags/wired, +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "eKs" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"eKX" = ( -/obj/item/bedsheet/medical, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) "eMe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"eMn" = ( -/obj/structure/closet, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"eNf" = ( +"eMg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"eMz" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8 +/obj/item/storage/belt/shotgun/full, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -6 }, -/turf/open/floor/vault2/west, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"eMC" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) +"eNj" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) -"eNq" = ( -/obj/structure/fence, -/turf/open/floor/warning/northwest, -/area/lv624/ground/barrens/containers) +"eNC" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "eNK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_east_jungle) +"eNZ" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/sand_temple) "eOk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/east_jungle) @@ -7065,20 +7406,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"eOy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "ePu" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -7087,16 +7414,6 @@ "ePw" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_east_jungle) -"ePJ" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "ePV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -7105,100 +7422,102 @@ /obj/structure/largecrate/random, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"eQL" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) -"eRk" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"eRX" = ( -/obj/structure/largecrate/random, +"eQz" = ( +/obj/structure/closet/coffin{ + density = 0; + icon_state = "coffin_open"; + opened = 1 + }, +/obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"eQL" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "eSg" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"eSQ" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 +"eSR" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, -/obj/item/ammo_casing, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/central_barrens) +/obj/item/trash/cheesie, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"eSW" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "eTd" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) +"eTw" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "eTI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"eTM" = ( -/obj/structure/filingcabinet/security{ - desc = "A large cabinet with hard copy security records."; - name = "Security Records" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/redcorner/north, -/area/lv624/lazarus/security) "eTQ" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_east_jungle) -"eTR" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, +"eUq" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"eUt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) +"eUD" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"eVc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"eVp" = ( +/mob/living/simple_animal/mouse, /turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) -"eUN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - locked = 1; - name = "\improper Corporate Liaison" +"eVX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"eUX" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 6; - pixel_y = -8 +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) -"eVl" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"eVC" = ( -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/medbay) -"eWs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Corporation Office"; - req_access_txt = "100" +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"eWO" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"eXw" = ( -/obj/structure/machinery/light/small, /turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) +/area/lv624/lazarus/engineering) "eYb" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"eYf" = ( -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/central_barrens) "eYD" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/effect/landmark/lv624/fog_blocker, @@ -7208,17 +7527,10 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"eZq" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -5 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +"eZh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "eZC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -7226,96 +7538,54 @@ /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"faD" = ( -/obj/item/device/flashlight/on, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"faS" = ( -/obj/item/tool/weldingtool, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_central_jungle) +"fah" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "fbb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"fbk" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "fbD" = ( /obj/structure/flora/jungle/planttop1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"fcK" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) -"fcU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "fdl" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) -"fdt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"feY" = ( -/turf/open/floor/plating/warnplate/north, +"fdw" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"feB" = ( +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/barrens/central_barrens) +"feC" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/medbay) "ffC" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"ffH" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"ffK" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor, -/area/lv624/lazarus/fitness) -"ffS" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"ffJ" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "fgS" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/south_eastern_barrens) +"fgU" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "fhd" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"fho" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/tritium{ - pixel_x = -4 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"fhE" = ( -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/secure_storage) "fhJ" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -7324,14 +7594,14 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"fhV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"fhS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/red, +/area/lv624/lazarus/security) +"fin" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "fio" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -7347,6 +7617,16 @@ /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"fiJ" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/landmark/monkey_spawn, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "fiZ" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, @@ -7360,6 +7640,18 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"fjk" = ( +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"fjy" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/east_river) +"fjz" = ( +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "fjM" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) @@ -7372,20 +7664,18 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"fjT" = ( -/turf/open/floor/plating/asteroidwarning/southeast, -/area/lv624/lazarus/landing_zones/lz2) -"fkn" = ( -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) -"flt" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"fmC" = ( -/obj/structure/window_frame/colony, -/obj/item/shard, -/turf/open/floor/plating, +"flg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) +"fmJ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/processor, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "fmV" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -7393,23 +7683,44 @@ "fmW" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"foU" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 +"fog" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"fpd" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"foT" = ( +/obj/structure/surface/table, +/obj/item/trash/candy, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"foY" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/sw_lz2) "fpn" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/east_barrens) +"fpB" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/central_barrens) +"fpK" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"fqe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "fqh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) @@ -7419,49 +7730,72 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"fqB" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/foamed_metal{ - layer = 3.01 +"fqK" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"fqQ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 15 + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) +"frH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/main_hall) +"frQ" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cargospecial2" }, -/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/area/lv624/lazarus/quartstorage) "frV" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"frY" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +"frW" = ( +/obj/effect/decal/remains/human, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"frX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "fsc" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"fsq" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"fsz" = ( -/turf/open/floor/bot/north, -/area/lv624/lazarus/quartstorage) -"fth" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/caves/north_central_caves) +"fst" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"ftp" = ( +/obj/effect/decal/remains/human, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"ftI" = ( +/obj/structure/coatrack, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"ftS" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "fur" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) @@ -7469,78 +7803,50 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz2) +"fuE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) "fuY" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"fvI" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"fwf" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"fwq" = ( -/turf/open/floor/chapel/west, -/area/lv624/lazarus/chapel) -"fwv" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "corporatedome" +"fvr" = ( +/obj/structure/surface/table, +/obj/item/poster, +/obj/item/clothing/glasses/regular/hipster, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"fwx" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) +"fxJ" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"fxZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome"; + req_access_txt = "100" }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/colony/west_tcomms_road) -"fwE" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/candle, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) -"fwJ" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) -"fxe" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_3_1" +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"fyq" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/white, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/corporate_dome) -"fxy" = ( -/obj/item/frame/table, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"fyd" = ( -/obj/structure/surface/table, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "fyA" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"fyG" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/obj/item/tool/wrench, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"fzz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"fAg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"fyW" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "fAD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -7553,15 +7859,23 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"fBN" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/warningcorner/west, -/area/lv624/lazarus/landing_zones/lz1) -"fDb" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, +"fBb" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/engineering) +"fBE" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"fDp" = ( +/obj/effect/landmark/good_item, /turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +/area/lv624/lazarus/robotics) "fDE" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) @@ -7577,10 +7891,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"fEP" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "fEU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -7590,18 +7900,30 @@ /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv624/lazarus/engineering) +"fFU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "fGn" = ( /obj/effect/decal/grass_overlay/grass1, /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"fGv" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) -"fGK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteblue/northeast, +"fGp" = ( +/obj/structure/bookcase, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/atmospipes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"fGr" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "fGO" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -7618,10 +7940,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"fHQ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) +"fHA" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "fIj" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -7635,14 +7957,19 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/medbay) -"fIP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/robotics) "fIW" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"fIZ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "fJQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -7653,100 +7980,78 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"fKp" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/lv624/lazarus/corporate_dome) -"fLb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"fLf" = ( -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz1) +"fKh" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/central_river) "fLh" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"fLy" = ( -/obj/structure/bookcase, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/book/manual/security_space_law, -/turf/open/floor/whiteblue/northeast, +"fMj" = ( +/obj/structure/machinery/vending, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"fOa" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) +"fOp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/under/liaison_suit/blue, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) -"fLP" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null +"fOs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, /turf/open/floor/bar, -/area/lv624/lazarus/kitchen) -"fLY" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) -"fMD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) -"fML" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"fNn" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/central_barrens) +/area/lv624/lazarus/canteen) +"fOY" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "fPi" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) -"fPl" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"fPo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 }, -/turf/open/floor/dark, +/obj/item/tool/pen/clicky, +/turf/open/floor/whitebluecorner, /area/lv624/lazarus/corporate_dome) -"fPu" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "fPH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"fPJ" = ( -/obj/structure/girder, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"fQh" = ( -/obj/item/reagent_container/food/drinks/flask/barflask, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"fPW" = ( +/turf/open/floor/white, +/area/lv624/lazarus/research) +"fQk" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/west_jungle) +"fQn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "fQL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) +"fQP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/central_barrens) +"fRq" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) "fRD" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -7755,13 +8060,23 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"fSd" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/barricade/wooden{ - dir = 4 +"fSr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"fSM" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"fSW" = ( +/obj/item/bananapeel, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "fSX" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) @@ -7769,19 +8084,15 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) -"fTl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) -"fTm" = ( -/obj/item/shard, -/obj/item/stack/rods, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"fTp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"fTr" = ( +/obj/structure/filingcabinet, +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) "fTE" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -7791,6 +8102,16 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) +"fTJ" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "fTM" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) @@ -7802,62 +8123,59 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"fUO" = ( -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/corporate_dome) -"fVk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +"fUr" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/storage/firstaid/adv, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"fWR" = ( +/obj/item/ammo_magazine/rifle/extended, /turf/open/floor/greengrid, -/area/lv624/lazarus/corporate_dome) -"fVY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/mob/living/simple_animal/corgi/puppy{ - desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; - name = "\improper Mister Wiggles" - }, +/area/lv624/lazarus/secure_storage) +"fWT" = ( +/obj/structure/filingcabinet/chestdrawer, /turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"fWO" = ( -/obj/structure/flora/jungle/vines/light_2, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/yggdrasil) +/area/lv624/lazarus/hop) +"fWU" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"fXq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/research) "fXr" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_nexus_road) +"fXB" = ( +/obj/structure/barricade/wooden, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"fXC" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "fXD" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/coast/east, /area/lv624/ground/river/east_river) -"fYf" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/river/east_river) -"fYj" = ( -/obj/structure/closet/lawcloset, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) +"fYc" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "fYl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"fYD" = ( -/obj/structure/girder, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/secure_storage) "fYG" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -7865,19 +8183,52 @@ "fZO" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_west_jungle) -"gaV" = ( -/obj/item/weapon/twohanded/fireaxe, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"gbl" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/quartstorage/outdoors) -"gbz" = ( +"gaB" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"gaO" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"gbl" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/quartstorage/outdoors) +"gbz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) +"gbK" = ( +/obj/structure/surface/table, +/obj/item/tool/pen{ + layer = 3.1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"gbO" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"gbQ" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/ground/river/central_river) +"gcd" = ( +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) "gcn" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -7886,11 +8237,17 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) -"gcE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/pie, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +"gcy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"gcY" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "gdr" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -7902,167 +8259,194 @@ "gdx" = ( /turf/open/gm/coast/north, /area/lv624/ground/barrens/west_barrens) -"gdF" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 6; - pixel_y = -8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) -"geG" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage/outdoors) -"gfj" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"gfs" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) -"gfI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, +"gdQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/megaphone, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"gdS" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) +"gfk" = ( +/obj/item/tool/pickaxe, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "ggl" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"ghR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/candle, -/turf/open/floor/chapel/west, -/area/lv624/lazarus/chapel) -"gih" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) +"ggV" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"ghk" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"ghK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "git" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"gjd" = ( -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"gjP" = ( -/obj/structure/bed/chair{ +"gjx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/obj/structure/showcase, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"gjD" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"gjZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "gkh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"gkA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 + }, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) "gkC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"glc" = ( -/turf/open/floor/whiteyellowcorner, -/area/lv624/lazarus/corporate_dome) -"glk" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/main_hall) +"gkL" = ( +/obj/item/stack/rods, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) "glp" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) -"glN" = ( -/obj/item/stack/sheet/wood, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"glr" = ( +/obj/structure/closet, +/obj/item/clothing/under/blackskirt, +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"glz" = ( +/obj/structure/bed/stool, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "glS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"gmn" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/shotgun/full, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -6 +"gmO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/rdconsole, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"gmY" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/east_barrens/ceiling) +"gnm" = ( +/obj/structure/device/broken_piano, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"gno" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "god" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) +"gog" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"gon" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "gos" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"goR" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_central_jungle) +"goP" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "gpC" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_central_jungle) -"gqe" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/jungle/west_jungle) -"grf" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/bar, -/area/lv624/lazarus/kitchen) +"gpZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "corporatedome" + }, +/turf/open/gm/grass/grass1, +/area/lv624/ground/colony/west_tcomms_road) "grl" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"grz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/box/matches, -/obj/item/tool/candle, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) +"grD" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "grW" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"gsh" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Lurker Hide" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "gsq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -8074,33 +8458,31 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"gsH" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) "gsT" = ( -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) -"gtX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/item/tool/crowbar, +/obj/structure/closet/coffin, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) +"gsU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"guj" = ( -/obj/structure/surface/table, -/obj/effect/decal/remains/human, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"guq" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"gta" = ( +/turf/open/floor/asteroidwarning/west, +/area/lv624/ground/colony/telecomm/sw_lz2) +"gtv" = ( +/obj/structure/filingcabinet/security{ + desc = "A large cabinet with hard copy security records."; + name = "Security Records" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/redcorner/north, +/area/lv624/lazarus/security) +"gtA" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "guW" = ( /obj/effect/landmark/nightmare{ insert_tag = "storage-crashed-ship" @@ -8111,17 +8493,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"gva" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = -7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "gve" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -8137,54 +8508,41 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"gvF" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/river/east_river) +"gwg" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz2) +"gwL" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "gwP" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "gxd" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) -"gxf" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 +"gxp" = ( +/obj/item/trash/candy, +/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/door_control{ + id = "secure_outer_blast"; + name = "Secure Outer Doors"; + pixel_x = 25; + pixel_y = -5 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) -"gxT" = ( -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage) -"gxW" = ( -/obj/item/frame/table, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"gyL" = ( -/obj/structure/surface/table, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"gyz" = ( +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "gyP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_west_jungle) -"gyR" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/corporate_dome) "gyY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/river/east_river) @@ -8200,42 +8558,39 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"gzG" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -2 + }, +/obj/structure/machinery/light, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "gzH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"gzK" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_y = 3 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "gzW" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"gzX" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "gAI" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"gAX" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"gBl" = ( -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/landing_zones/lz2) "gBG" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -8244,30 +8599,29 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/river/east_river) -"gBL" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) +"gCb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen/north, +/area/lv624/lazarus/main_hall) "gCh" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"gCS" = ( -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/machinery/light{ +/obj/structure/showcase, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"gCo" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"gCy" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "gDu" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/colony/west_tcomms_road) @@ -8281,81 +8635,109 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"gEv" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cargospecial1" + }, +/turf/open/floor/vault, +/area/lv624/lazarus/quartstorage) "gFm" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"gFs" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"gFK" = ( -/turf/open/floor/plating/asteroidwarning/northeast, -/area/lv624/lazarus/landing_zones/lz2) "gGd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"gGp" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/lazarus/robotics) -"gGu" = ( -/obj/item/tool/soap, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"gGF" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"gIY" = ( -/obj/item/stack/sheet/wood{ - amount = 2 +"gGE" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/south_west_caves) +"gGG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) -"gJI" = ( -/turf/open/floor/warnwhite/west, -/area/lv624/lazarus/fitness) -"gMc" = ( -/obj/item/stack/sheet/metal, -/turf/open/gm/dirt, -/area/lv624/ground/colony/west_tcomms_road) +/obj/effect/landmark/good_item, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"gHt" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor, +/area/lv624/ground/barrens/containers) +"gIM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"gIZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"gKw" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/jungle/south_central_jungle) +"gLy" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "gMe" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-rightsidepass" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"gMX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gMF" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"gMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"gNm" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/fertilizer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "gNo" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"gOB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/computer/telecomms/traffic{ - layer = 3.1; - pixel_y = 16 - }, -/obj/structure/bed/chair/office/light{ +"gNA" = ( +/obj/structure/stairs/perspective{ dir = 1; - layer = 3.2 + icon_state = "p_stair_full" }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) +"gOG" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"gPs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "gPu" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -8365,18 +8747,18 @@ "gPN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/barrens/south_eastern_barrens) +"gPT" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "gQr" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) -"gRi" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"gQB" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "gRk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -8385,13 +8767,27 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) +"gRp" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "gRx" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) -"gRz" = ( -/obj/structure/closet, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"gSG" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"gTg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "gTj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -8403,6 +8799,10 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"gTD" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "gTM" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -8412,30 +8812,18 @@ "gUq" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) -"gUN" = ( -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "gVw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"gVG" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "gVR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"gWc" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_west_jungle) "gWE" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -8446,40 +8834,58 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"gWX" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light{ - dir = 4 +"gXj" = ( +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"gXE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/tool/wrench, +/obj/item/tool/weldingtool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"gXM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red, +/area/lv624/lazarus/security) +"gXS" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"gYc" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "gYs" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/north_nexus_road) +"gYI" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "gZh" = ( /obj/structure/prop/brazier, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"gZx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) -"gZZ" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/surgical, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/belt/medical/full, -/turf/open/floor/whiteblue/north, +"gZu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) +"gZy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "han" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -8497,10 +8903,10 @@ "hba" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"hbn" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"hbz" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/ground/river/central_river) "hbK" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -8518,44 +8924,90 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"hcR" = ( -/turf/open/floor/vault2/west, +"hdD" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/main_hall) +"hea" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + locked = 1; + name = "\improper Nexus Dome Marshal's Quarters"; + req_access_txt = "100" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/captain) +"hek" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) -"hej" = ( -/obj/item/clothing/suit/armor/yautja_flavor, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +"hev" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "heC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"heT" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/east_caves) +"heU" = ( +/obj/item/reagent_container/food/snacks/grown/banana{ + pixel_x = -8 + }, +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "heZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"hfc" = ( +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "hfX" = ( /obj/effect/decal/remains/xeno, /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"hgh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) "hgt" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"hgv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/soap/deluxe{ + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"hgx" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"hgB" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 14 + }, +/obj/item/clothing/head/soft/blue{ + pixel_x = 7; + pixel_y = 28 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hgO" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -8571,6 +9023,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"hiJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hjl" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, @@ -8581,10 +9040,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"hjS" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"hjw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/lv624/lazarus/research) "hke" = ( /obj/structure/platform/mineral/sandstone/runed, /obj/structure/stairs/perspective{ @@ -8594,22 +9056,12 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"hkp" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "hkT" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"hlj" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "hmq" = ( /obj/structure/flora/bush/ausbushes/ausbush, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -8627,58 +9079,51 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"hnp" = ( -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"hny" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"hnJ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hnX" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_central_jungle) -"hoe" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"hoQ" = ( -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"hpJ" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; +"hob" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"hoc" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"hpe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 + icon_state = "door_open"; + name = "\improper Storage Dome"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"hqy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) +/turf/open/floor/white, +/area/lv624/lazarus/quartstorage) +"hpg" = ( +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) +"hpp" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/platebot, +/area/lv624/ground/barrens/east_barrens/ceiling) "hqQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"hqR" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/plantbgone{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "hqS" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -8688,54 +9133,70 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) +"hrS" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/main_hall) "hsc" = ( /turf/closed/wall/r_wall, /area/lv624/ground/river/central_river) -"hsr" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"hsv" = ( -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/sw_lz2) -"htG" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Water Filtration Plant"; - req_access_txt = "100" - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/east_barrens/ceiling) +"huF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "huH" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"huI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"huS" = ( +/obj/structure/surface/table, +/obj/item/trash/cheesie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"huT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen, +/area/lv624/lazarus/main_hall) +"hvR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) +"hwc" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) +"hwE" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"hwI" = ( +/obj/structure/surface/table, +/obj/item/handset, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"hwJ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"huY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/multitool, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "hwR" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/central_river) -"hxz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/red, -/area/lv624/lazarus/security) +"hxt" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/sheet/mineral/sandstone{ + amount = 50 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "hxL" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -8747,9 +9208,6 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"hyc" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/caves/south_west_caves) "hyF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -8761,96 +9219,103 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"hze" = ( -/obj/item/weapon/sword{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"hzk" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 +"hzR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"hAE" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/chefhat, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"hzO" = ( +/obj/item/tool/kitchen/rollingpin, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/chapel/east, -/area/lv624/lazarus/chapel) -"hzR" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"hAJ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"hBg" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) +"hBj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"hBl" = ( +/obj/structure/largecrate, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"hBL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"hzS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"hAe" = ( +/area/lv624/ground/caves/central_caves) +"hCf" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"hCl" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) +"hDh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + locked = 1; + name = "\improper Corporate Liaison" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"hDn" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; light_range = 1; light_system = 1; - pixel_x = 6; - pixel_y = -8 + pixel_x = 11; + pixel_y = -2 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"hAt" = ( +/area/lv624/ground/caves/south_central_caves) +"hDD" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"hDE" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; light_range = 1; light_system = 1; - pixel_x = 4 + pixel_x = -10 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"hAP" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"hBL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"hDI" = ( -/obj/item/clothing/under/shorts/black{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "hDX" = ( /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) +"hEb" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "hEe" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, @@ -8863,57 +9328,50 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_nexus_road) -"hFI" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/jungle/west_jungle) "hFO" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/north_tcomms_road) -"hFS" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 30 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"hGd" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/main_hall) -"hGr" = ( -/obj/structure/platform_decoration{ +"hGN" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/lv624/ground/jungle/south_central_jungle) +"hGQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"hGV" = ( +/obj/item/reagent_container/food/drinks/flask/barflask, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "hHc" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv624/lazarus/engineering) -"hHt" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"hHp" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "hHA" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"hHJ" = ( -/turf/open/floor/plating/asteroidwarning/east, -/area/lv624/lazarus/landing_zones/lz2) "hHR" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/east_barrens) +"hHZ" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "hIh" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -8923,49 +9381,67 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"hIw" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/carpet/bcarpet09, +/area/lv624/ground/caves/north_central_caves) +"hIJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hJa" = ( /obj/structure/cargo_container/lockmart/left, /turf/open/floor, /area/lv624/ground/barrens/containers) -"hJb" = ( -/obj/structure/machinery/light{ +"hJI" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "hJW" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_jungle) -"hKj" = ( -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"hKc" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/central_barrens) "hKk" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) +"hKI" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) "hKP" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"hKU" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/cult, -/area/lv624/ground/caves/east_caves) +"hKR" = ( +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/corporate_dome) "hLu" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) -"hLQ" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) "hMr" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -8984,26 +9460,10 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"hMM" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"hMR" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"hNj" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"hMF" = ( +/obj/structure/fence, +/turf/open/floor/warning/west, +/area/lv624/ground/barrens/containers) "hNq" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, @@ -9017,45 +9477,37 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"hPf" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/regular, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"hNW" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"hPh" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "hPV" = ( /obj/effect/decal/remains/xeno{ pixel_x = 31 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"hQg" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"hQu" = ( -/obj/structure/machinery/light{ - dir = 1 +"hQD" = ( +/obj/item/prop/alien/hugger{ + pixel_x = -20; + pixel_y = 8 }, -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"hQT" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"hQY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/monitor, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 15 +/obj/item/tool/hatchet{ + pixel_x = -14; + pixel_y = 6 }, +/obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "hRB" = ( @@ -9065,22 +9517,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"hRC" = ( -/obj/structure/foamed_metal, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) "hRI" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"hRR" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_6_1" - }, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) "hRS" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -9088,13 +9528,14 @@ "hSn" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"hSr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"hSv" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "hSz" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, @@ -9103,38 +9544,31 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) -"hTK" = ( -/turf/closed/wall, -/area/lv624/lazarus/yggdrasil) +"hSR" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/lv624/ground/colony/telecomm/sw_lz2) +"hTB" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "hTR" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"hUg" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"hTY" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "hUs" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"hUx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) "hUD" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"hVd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"hVY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +"hVo" = ( +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "hWj" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/east_river) @@ -9142,10 +9576,48 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"hYU" = ( -/obj/item/stool, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"hXq" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) +"hXE" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"hXU" = ( +/obj/structure/machinery/constructable_frame, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) +"hYb" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"hYC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/shovel, +/obj/item/stack/sheet/wood{ + amount = 16 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "hZn" = ( /obj/item/stack/sheet/metal{ pixel_x = 6; @@ -9153,39 +9625,43 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"hZS" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"hZX" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_central_jungle) "iab" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_jungle) -"iaj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Garage"; - req_access_txt = "100"; - req_one_access = null +"iac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/monitor, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 15 }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"iah" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "iap" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) -"iaB" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) -"ibn" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/asteroidfloor/north, +"iby" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "ibS" = ( /obj/structure/flora/jungle/vines/light_2, @@ -9196,28 +9672,12 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"icY" = ( -/obj/structure/window/reinforced{ +"iea" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/red/northwest, -/area/lv624/lazarus/security) -"iee" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Nexus Cargo Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "ieH" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -9233,19 +9693,30 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"ifu" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"ifC" = ( +/obj/structure/grille, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "ifF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_east_jungle) -"ifS" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +"ifI" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 5 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"ifP" = ( +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "ifX" = ( /obj/structure/machinery/colony_floodlight, /obj/effect/landmark/nightmare{ @@ -9253,32 +9724,23 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"igG" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "casing_1_1" - }, -/obj/item/ammo_magazine/smg/mp5, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +"igp" = ( +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "igN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"ihy" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +"ihi" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"iho" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "ihS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/lemon_lime{ @@ -9290,41 +9752,38 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"iic" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_id = "Medbay" - }, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"iiF" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/carpet/bcarpet09, -/area/lv624/ground/caves/north_central_caves) +"iip" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"iiw" = ( +/turf/open/gm/dirtgrassborder/desert, +/area/lv624/ground/barrens/south_eastern_barrens) "iiK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"ije" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"ijG" = ( +/obj/item/stack/sheet/wood, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"iky" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) "ikA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"ikS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "ilf" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -9332,6 +9791,12 @@ /obj/structure/flora/jungle/planttop1, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) +"ils" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ilF" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -9339,75 +9804,55 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"imf" = ( -/obj/item/device/flashlight, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/red/east, -/area/lv624/lazarus/security) -"imr" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/fitness) -"inr" = ( -/obj/structure/dispenser, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"ioz" = ( +"ini" = ( /obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/tool/match{ - pixel_x = 6; - pixel_y = 3 +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7 }, -/turf/open/floor/carpet/bcarpet08, +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood/wood_broken4, /area/lv624/ground/caves/north_central_caves) +"ioy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "ioC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_jungle) -"ioG" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"ipJ" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Forced Blast Door" +"ioP" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"ioQ" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) +"iri" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"irD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"irI" = ( +/obj/effect/landmark/good_item, /turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"iqb" = ( -/turf/open/floor/warning/east, -/area/lv624/lazarus/landing_zones/lz1) -"iqS" = ( -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"irh" = ( -/obj/effect/landmark/lizard_spawn, -/turf/open/gm/grass/grass1, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) "isF" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -9426,16 +9871,14 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"itg" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/obj/item/tool/mop, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"itI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"itu" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/secure_storage) +"itX" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) "iuf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -9443,56 +9886,47 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"ivi" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "ivl" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_central_jungle) "ivu" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/caves/sand_temple) -"ivv" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"ivz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - locked = 1; - name = "\improper Storage Room" - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"ivR" = ( -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/main_hall) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/caves/sand_temple) +"ivE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "iwh" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_nexus_road) -"iwC" = ( -/obj/structure/bed, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"iwF" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"ixc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/glasses/sunglasses, -/obj/item/trash/cheesie, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"iwo" = ( +/obj/item/tool/shovel, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"iwU" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel{ + pixel_y = 12 }, +/obj/structure/machinery/light, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "iye" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -9505,21 +9939,15 @@ /obj/effect/landmark/corpsespawner/doctor, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"iyN" = ( -/obj/structure/machinery/chem_master/condimaster, -/obj/structure/surface/table, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "izh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "izG" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/obj/structure/bed, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "izX" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -9534,11 +9962,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"iAz" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/main_hall) "iAA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -9548,90 +9971,77 @@ "iAH" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_central_jungle) -"iBl" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) +"iBf" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/west_caves) "iBy" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) -"iBN" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/turf/open/floor/carpet/bcarpet03, -/area/lv624/ground/caves/north_central_caves) -"iCx" = ( -/obj/structure/bed/chair/wood/wings{ +"iBI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"iCq" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) "iCB" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "iCN" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_nexus_road) +"iDm" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"iDP" = ( +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"iDW" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "iDX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"iEx" = ( -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"iFK" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/river/east_river) "iGf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"iGl" = ( +/turf/open/floor/warnwhite/northwest, +/area/lv624/lazarus/fitness) "iGn" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"iGp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "iGx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"iHh" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +"iHD" = ( +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "iHQ" = ( /obj/structure/xenoautopsy/tank/broken, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"iHV" = ( +/turf/open/floor/white, +/area/lv624/lazarus/fitness) "iIB" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_central_caves) @@ -9642,12 +10052,18 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) -"iIX" = ( -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/barrens/central_barrens) "iJs" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"iJu" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/plantbgone{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "iJA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -9655,21 +10071,15 @@ "iJJ" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"iKG" = ( -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_y = -28 - }, -/turf/open/floor/plating/asteroidwarning, -/area/lv624/lazarus/landing_zones/lz2) -"iLG" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"iJK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) +"iKg" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "iLL" = ( /obj/effect/decal/remains/human, /turf/open/gm/dirt, @@ -9684,32 +10094,25 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"iMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) -"iMy" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" +"iMe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_id = "Research Dome"; + pixel_y = 24 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"iMk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"iMQ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "iNB" = ( /obj/structure/ore_box, /turf/open/gm/dirt, @@ -9718,54 +10121,29 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"iOy" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -10 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "iOz" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) -"iON" = ( -/turf/open/floor/white, -/area/lv624/lazarus/fitness) "iOX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"iPr" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/colony/north_tcomms_road) -"iPt" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "iPB" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"iQA" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" +"iQX" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/engineering) "iRb" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass2, @@ -9774,29 +10152,17 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"iSl" = ( -/obj/item/ammo_magazine/rifle/extended, -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) -"iSx" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/barrens/east_barrens/ceiling) -"iSD" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"iSP" = ( +"iSH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"iTu" = ( /obj/structure/barricade/wooden{ - dir = 8 + dir = 4 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"iTK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/west_jungle) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "iTQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -9805,6 +10171,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"iTY" = ( +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) +"iUi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/device/flashlight{ + pixel_y = 5 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "iUm" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -9812,31 +10188,25 @@ "iUF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_central_jungle) -"iVI" = ( -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"iWa" = ( -/obj/structure/machinery/requests_console{ - pixel_x = 30 +"iVr" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "iWC" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"iWJ" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"iWS" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "iXj" = ( /turf/closed/wall, /area/lv624/ground/barrens/east_barrens/ceiling) @@ -9851,135 +10221,129 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"iYe" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "iYJ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"iZk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/box/matches, +/obj/item/tool/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "iZG" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"iZH" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "iZZ" = ( /obj/effect/landmark/lv624/xeno_tunnel, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"jaq" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "jas" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/sand_temple) -"jaI" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"jaK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Bathroom"; - req_access_txt = "100" - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"jaU" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"jaY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "jbd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"jbe" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/off{ - frequency = 1469 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"jbz" = ( -/obj/structure/machinery/light{ - dir = 8 +"jbh" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 }, -/obj/structure/surface/table, -/obj/item/trash/cheesie, -/obj/effect/landmark/crap_item, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) +"jbv" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/area/lv624/lazarus/corporate_dome) "jbB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"jbM" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"jbX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/warnwhite/east, +/area/lv624/lazarus/fitness) "jcn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"jcz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"jcK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"jcX" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "jdi" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"jeL" = ( -/turf/closed/wall/r_wall, -/area/lv624/ground/caves/north_central_caves) -"jeT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"jeW" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"jfb" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"jfF" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +"jeA" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, /obj/structure/foamed_metal{ - layer = 3.1 + layer = 3.01 }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/dark, /area/lv624/lazarus/engineering) +"jeL" = ( +/turf/closed/wall/r_wall, +/area/lv624/ground/caves/north_central_caves) +"jeY" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"jfw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"jfH" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "jga" = ( /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) @@ -10000,10 +10364,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/south_nexus_road) -"jgP" = ( -/obj/structure/largecrate, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "jhj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -10011,24 +10371,12 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"jhs" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) "jhG" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) -"jhZ" = ( -/obj/item/device/multitool, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "jic" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -10036,81 +10384,44 @@ "jik" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"jjt" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -1; - pixel_y = 7 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"jlc" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/jungle/west_jungle/ceiling) -"jlh" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt, -/area/lv624/ground/colony/north_tcomms_road) -"jlt" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) -"jlI" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +"jjs" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/grey_multi_tiles, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"jmi" = ( +"jjQ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"jmP" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"jnn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) -"jnu" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) +"jkh" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/tool/minihoe{ - pixel_y = -2 +/obj/structure/bed/chair, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"jkV" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) +"jlh" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt, +/area/lv624/ground/colony/north_tcomms_road) +"jlt" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"jmi" = ( +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "jnG" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -10120,29 +10431,10 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"jop" = ( -/obj/structure/surface/table, -/obj/item/tool/pen{ - layer = 3.1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "jow" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"joP" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"jpo" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/river/west_river) "jpX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -10158,197 +10450,73 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"jqw" = ( -/obj/structure/machinery/bot/mulebot{ - auto_pickup = 0; - auto_return = 0; - health = 1; - on = 0 +"jqy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"jqA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"jqR" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) "jrb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"jrl" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/item/device/assembly/voice, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) +"jru" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome Office"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/dark, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "jsd" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"jsh" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +"jsu" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/river/east_river) "jtg" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"jth" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_x = -28 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"jtG" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) -"jtI" = ( -/obj/structure/curtain/red, -/turf/open/shuttle/red, +"juC" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) +"juW" = ( +/turf/open/gm/dirt/desert0, /area/lv624/ground/caves/sand_temple) -"jtZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"jug" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"juA" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"juT" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "jvl" = ( /obj/structure/cargo_container/lockmart/mid, /turf/open/floor, /area/lv624/ground/barrens/containers) -"jvn" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/landmark/monkey_spawn, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) -"jvx" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/sleep_female) -"jvK" = ( -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) -"jvM" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"jvN" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "jvQ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"jwd" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/river/central_river) -"jwx" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor, -/area/lv624/ground/barrens/containers) -"jwL" = ( -/obj/structure/surface/table, -/obj/item/trash/snack_bowl{ - pixel_y = 9 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"jxe" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 +"jvU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/barrens/central_barrens) -"jxl" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) -"jxo" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot{ - dir = 1 +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) +"jxg" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/white, /area/lv624/lazarus/main_hall) @@ -10369,26 +10537,36 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"jyu" = ( -/obj/structure/machinery/gibber, -/obj/effect/landmark/good_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"jyZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"jyU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"jzD" = ( +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" + }, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) +"jzO" = ( +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "jzZ" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"jAh" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz-containers_swapped" - }, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz1) "jAo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -10400,15 +10578,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"jBL" = ( +"jBY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"jCp" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/lmg, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "jCO" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -10416,22 +10592,24 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"jCT" = ( -/obj/item/bananapeel, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"jDj" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/megaphone, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"jDv" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"jCS" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) +"jDL" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) +"jDT" = ( +/obj/structure/foamed_metal, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "jDY" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, /turf/open/gm/dirt, @@ -10440,26 +10618,53 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/colony/north_tcomms_road) -"jEi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whiteyellowcorner/west, -/area/lv624/lazarus/corporate_dome) +"jEt" = ( +/obj/item/trash/cheesie, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"jEx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "jFc" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) -"jFw" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -10 +"jFe" = ( +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) +"jFv" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "jFF" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"jFI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100" + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"jFS" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"jFZ" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "jGo" = ( /obj/structure/girder, /obj/structure/foamed_metal, @@ -10478,38 +10683,15 @@ "jGW" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/central_jungle) -"jHb" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) "jHd" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-science" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"jHx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) "jHN" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"jHQ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/main_hall) "jHT" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -10521,21 +10703,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"jIR" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"jJb" = ( -/obj/structure/lamarr{ - density = 0; - destroyed = 1; - icon_state = "labcageb0"; - occupied = 0 - }, -/obj/item/shard, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "jJg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, @@ -10546,21 +10713,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"jKk" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) "jKu" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_central_jungle) -"jKz" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_y = -30 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) "jLc" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, @@ -10584,18 +10741,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"jMj" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - pixel_y = 16 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"jMv" = ( +"jMi" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) +"jMo" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) "jMD" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -10607,33 +10766,40 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"jMU" = ( -/obj/structure/surface/table, -/obj/item/book/manual/research_and_development, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"jNe" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/platingdmg1, -/area/lv624/lazarus/secure_storage) -"jOe" = ( -/turf/open/floor/loadingarea/east, -/area/lv624/lazarus/quartstorage) -"jOG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/bronze, -/obj/item/storage/donut_box, -/turf/open/floor/red/west, -/area/lv624/lazarus/security) -"jPZ" = ( +"jMY" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/landmark/good_item, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"jNx" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/reagent_container/glass/bucket{ + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"jNJ" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/west_caves) +"jNV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"jPj" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/lmg, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"jPX" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "jQj" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -10642,21 +10808,19 @@ "jQJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_central_jungle) -"jRg" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) +"jQY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "jRm" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) -"jRn" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/whiteblue/northwest, +"jRt" = ( +/obj/structure/barricade/metal{ + dir = 8; + health = 70 + }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "jRJ" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -10667,6 +10831,17 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/east_river) +"jRN" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"jSh" = ( +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "jSp" = ( /obj/structure/showcase{ color = "#95948B"; @@ -10689,82 +10864,103 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"jSC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"jSE" = ( -/obj/item/stack/sheet/wood, -/obj/item/ammo_magazine/rifle/nsg23{ - current_rounds = 0 +"jSr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"jSZ" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "jTm" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"jTG" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"jTx" = ( +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) +"jTE" = ( +/obj/structure/sink{ + pixel_y = 30 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"jTI" = ( +/turf/open/floor/whitegreen, +/area/lv624/lazarus/main_hall) "jTP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"jVa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/soap/deluxe{ - pixel_x = 4; - pixel_y = 13 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) -"jVc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) -"jVA" = ( -/obj/structure/surface/table, -/obj/item/ashtray/plastic, -/obj/item/stack/flag/red, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"jWD" = ( +"jUf" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; light_range = 1; light_system = 1; - pixel_x = 2; - pixel_y = 7 + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"jVf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"jVT" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"jWv" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "jWM" = ( /obj/structure/girder, /turf/closed/shuttle{ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) -"jXq" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor/bot/north, -/area/lv624/ground/caves/north_central_caves) +"jWW" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "jXT" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_east_jungle) -"jXV" = ( -/turf/open/floor/asteroidwarning/east, -/area/lv624/ground/colony/telecomm/cargo) -"jYh" = ( -/obj/item/tool/crowbar, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"jYd" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"jYp" = ( +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"jZB" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "jZL" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -10783,19 +10979,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"kaJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/whitegreen/north, -/area/lv624/lazarus/main_hall) -"kaW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) +"kas" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "kcP" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/rock/brown, @@ -10804,35 +10992,20 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"kdx" = ( -/turf/open/floor/asteroidwarning/north, -/area/lv624/ground/colony/telecomm/cargo) -"kez" = ( -/obj/structure/surface/rack, +"kev" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"keE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/banana, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"keF" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southeast, -/area/lv624/lazarus/landing_zones/lz1) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "keS" = ( /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) -"kfd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg1, -/area/lv624/lazarus/secure_storage) "kff" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, @@ -10841,39 +11014,64 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"kgg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"kgj" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"kgl" = ( +/obj/structure/flora/jungle/vines/light_2, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Atmospherics Condenser" }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) +"kgt" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_10_1" }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"kgx" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"kgD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"kgZ" = ( +/obj/structure/closet/crate, +/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, +/obj/item/ammo_magazine/rifle/mar40/extended, +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"khs" = ( +/obj/structure/holohoop, +/turf/open/floor/warnwhite/north, +/area/lv624/lazarus/fitness) +"khw" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/stack/sheet/mineral/sandstone{ - amount = 50 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"khz" = ( +/obj/item/ammo_casing, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating, +/area/lv624/ground/barrens/central_barrens) "kip" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"kiv" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"kjj" = ( +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "kjp" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -10885,29 +11083,12 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"kkN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"kle" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "klD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"kmg" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/lv624/lazarus/main_hall) "kmH" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -10918,17 +11099,24 @@ /obj/item/stool, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"kmQ" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "knd" = ( /turf/open/gm/coast/west, /area/lv624/ground/jungle/west_jungle) +"knh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "knp" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"knI" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"knq" = ( +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "koh" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirt, @@ -10937,91 +11125,33 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"koO" = ( -/turf/open/floor/whitebluecorner/west, -/area/lv624/lazarus/corporate_dome) -"koS" = ( -/obj/structure/bookcase, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_hacking, -/obj/item/book/manual/atmospipes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"koW" = ( -/turf/open/floor/plating/asteroidwarning, -/area/lv624/lazarus/landing_zones/lz2) -"kpe" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"kpk" = ( -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"kpq" = ( -/obj/item/tool/crowbar, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"kpr" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"kpt" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) "kpx" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"kpE" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/red/east, -/area/lv624/lazarus/security) -"kpS" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"kpy" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, -/obj/structure/platform, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/sand_temple) "kpT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +/turf/open/gm/dirtgrassborder/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "kqx" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"kqE" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"kqG" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "kqL" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"kro" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) "ksc" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ icon_state = "fernybush_2"; @@ -11029,14 +11159,24 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"ksj" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz1) "ksB" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"ksM" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_central_jungle) +"ksC" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Nexus Cargo Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "ktf" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -11046,6 +11186,10 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) +"ktl" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/main_hall) "ktr" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -11053,23 +11197,38 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "ktu" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/south_eastern_barrens) -"kuA" = ( -/obj/effect/landmark/lizard_spawn, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_west_jungle/ceiling) +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"kub" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "kuZ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"kvg" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"kvk" = ( +/obj/structure/barricade/wooden, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "kvo" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_central_jungle) @@ -11077,44 +11236,66 @@ /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"kwD" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = -2 +"kwp" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "kwG" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "kxd" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "kxv" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"kxw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "red"; + phone_id = "Marshal Office" + }, +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) +"kxE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "kxI" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"kxK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/lv624/lazarus/research) "kyc" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/central_river) +"kyp" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "kyt" = ( /obj/effect/decal/grass_overlay/grass1/inner, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -11131,18 +11312,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"kzj" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "nexuscenter_barricaded" - }, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) -"kzk" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "kzn" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 @@ -11165,9 +11334,9 @@ /obj/structure/cargo_container/lockmart/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"kzX" = ( -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) +"kzK" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/main_hall) "kAg" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -11176,55 +11345,36 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_west_jungle) -"kBi" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"kBq" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/lv624/ground/jungle/south_west_jungle) +"kAw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"kBn" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/main_hall) +"kCg" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "kCD" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"kCT" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) -"kDy" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/west_barrens) -"kEb" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/caves/west_caves) -"kEG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"kFf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) -"kFg" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"kFl" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/glowshroom, +"kFs" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +/turf/open/floor/whitegreencorner/west, +/area/lv624/lazarus/main_hall) "kFx" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -11232,9 +11382,6 @@ "kFV" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/west_barrens) -"kGe" = ( -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/caves/north_central_caves) "kGk" = ( /obj/item/storage/toolkit/empty{ pixel_x = 5; @@ -11242,30 +11389,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"kGH" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 11; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) -"kHj" = ( -/obj/item/tool/minihoe{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"kHA" = ( -/obj/structure/barricade/metal{ - dir = 8; - health = 70 - }, +"kHs" = ( +/obj/item/frame/table, /turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/main_hall) "kHU" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) @@ -11285,11 +11412,8 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "kJZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/central_barrens) "kKa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -11298,29 +11422,22 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) "kKo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"kLg" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/central_jungle) +/obj/effect/landmark/crap_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"kKq" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"kKM" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "kLl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"kLn" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/tool/pen, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) "kLP" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_2, @@ -11333,39 +11450,70 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"kNb" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 2 + }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"kNc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/corporate_dome) "kNm" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"kOe" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 6; - pixel_y = -8 +"kNx" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) -"kOR" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern, -/obj/structure/barricade/sandbags/wired, -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + name = "Lurker Hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"kNF" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/sw_lz2) +"kNQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light/small, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"kOG" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"kOT" = ( +/obj/structure/filingcabinet, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"kPD" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/secure_storage) "kPU" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"kQH" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 15 +"kQG" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/delivery, -/area/lv624/lazarus/comms) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "kQY" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/jungle/west_jungle) @@ -11373,39 +11521,66 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"kRm" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/obj/item/trash/cheesie, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "kRR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"kSG" = ( -/turf/open/floor/redcorner/west, -/area/lv624/lazarus/security) +"kSg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) +"kSm" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "kSH" = ( /obj/structure/bed/alien{ color = "#aba9a9" }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"kSJ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Garage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "kSR" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/south_medbay_road) -"kTa" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/sand_temple) +"kTB" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "kUr" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_tcomms_road) +"kUA" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/carpet/bcarpet01, +/area/lv624/ground/caves/north_central_caves) +"kVi" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) "kVG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -11416,69 +11591,38 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"kVW" = ( -/obj/structure/largecrate/random, -/turf/open/floor/loadingarea/east, -/area/lv624/lazarus/quartstorage) +"kWG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "kWJ" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"kWK" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "kWV" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"kXp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "kXE" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_central_jungle) -"kXI" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"kYm" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz1) "kYx" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"kYH" = ( -/obj/structure/bed, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"kYy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "kZk" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"kZr" = ( -/obj/structure/window_frame/colony, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) "kZs" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -11494,6 +11638,29 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"kZP" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) +"lal" = ( +/obj/structure/sink/kitchen{ + pixel_y = 30 + }, +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "laY" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -11508,27 +11675,36 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"lbW" = ( -/obj/effect/landmark/crap_item, +"lbA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) +/area/lv624/lazarus/engineering) "lbX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"lce" = ( -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage/outdoors) -"ldf" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/whitebluecorner/west, -/area/lv624/lazarus/medbay) -"ldh" = ( -/obj/effect/landmark/lizard_spawn, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_east_jungle) +"lcj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/banana, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"lcA" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "ldi" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -11539,75 +11715,52 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"ldM" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz2) -"ldO" = ( -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/robotics) +"ldJ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "ldZ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_jungle) -"lea" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - color = "#524e4e"; - desc = "An old hide from a fearsome creature."; - name = "hunter hide" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"leh" = ( -/obj/structure/largecrate, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "lfy" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/south_nexus_road) +"lfV" = ( +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"lgk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright{ + dir = 2; + layer = 2.9 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "lgu" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"lgC" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "lhE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"lhF" = ( +/obj/item/reagent_container/hypospray, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "lhH" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"lhU" = ( -/obj/effect/decal/remains/human, -/obj/structure/machinery/light{ +"lin" = ( +/obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/white, -/area/lv624/lazarus/research) -"lir" = ( -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/area/lv624/lazarus/main_hall) "liI" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -11616,9 +11769,26 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"ljn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "lju" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/central_river) +"ljA" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"ljG" = ( +/turf/open/floor/warningcorner/east, +/area/lv624/lazarus/landing_zones/lz1) "lke" = ( /obj/effect/landmark/crap_item, /turf/open/floor, @@ -11632,52 +11802,39 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"lkW" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/laceup, -/obj/item/stack/medical/advanced/ointment, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"lli" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"llQ" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/gm/dirt, -/area/lv624/lazarus/secure_storage) +"lkT" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) +"llo" = ( +/obj/structure/surface/table, +/obj/item/trash/chips, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"llF" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) "llW" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"lmE" = ( -/turf/open/floor/redcorner/east, -/area/lv624/lazarus/security) -"lmJ" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) -"lmV" = ( -/obj/item/tool/shovel, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"lnc" = ( -/turf/open/floor/dark, +/obj/item/storage/firstaid, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 + }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) +"lmr" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "lnr" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"lnC" = ( +/obj/structure/closet/lawcloset, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "lnK" = ( /obj/structure/flora/bush/ausbushes/genericbush, /obj/effect/landmark/nightmare{ @@ -11693,10 +11850,10 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_east_jungle) -"lox" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) +"loi" = ( +/obj/structure/girder/displaced, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_central_jungle) "loP" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -11707,38 +11864,51 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"loS" = ( -/obj/item/device/flash, -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/flashbang{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"lpg" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/tool/match{ + pixel_x = 6; + pixel_y = 3 }, -/turf/open/floor/redcorner, -/area/lv624/lazarus/security) -"loV" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"lpC" = ( +/turf/open/floor/carpet/bcarpet08, +/area/lv624/ground/caves/north_central_caves) +"lpI" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) +"lpL" = ( /obj/structure/barricade/wooden{ dir = 1; pixel_y = 7 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"lqG" = ( +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"lpM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, /turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/comms) +"lpR" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/sw_lz2) +"lqn" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 200 + }, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"lqF" = ( +/obj/structure/surface/rack, +/obj/item/weapon/baton/cattleprod{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/weapon/baton/cattleprod{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "lqI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -11747,12 +11917,18 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"lqX" = ( -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/medbay) -"lre" = ( -/turf/open/gm/dirtgrassborder/desert0, -/area/lv624/ground/barrens/south_eastern_barrens) +"lrv" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"lrX" = ( +/obj/structure/bookcase, +/obj/item/bananapeel, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "lse" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -11764,24 +11940,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"lsk" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/caves/north_central_caves) -"lso" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "lsq" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"lsz" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "lsK" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/west_barrens) @@ -11789,85 +11952,40 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"luu" = ( -/obj/structure/girder, -/turf/open/floor/asteroidplating, -/area/lv624/ground/caves/north_central_caves) -"luR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"lvg" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 11; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"lvu" = ( -/obj/structure/foamed_metal{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"lvy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"lvF" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/caves/sand_temple) -"lwS" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "lxr" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) +"lxO" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "lxX" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"lyh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "lyj" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/jungle/west_jungle) "lyz" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/jungle/south_west_jungle/ceiling) +"lyB" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "lyL" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"lyN" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) "lyS" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage) @@ -11884,60 +12002,21 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"lzn" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) -"lzy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"lzA" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"lzD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4; - pixel_y = 4 - }, +"lAi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/adv, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"lAI" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"lAM" = ( -/obj/item/storage/toolbox/syndicate, -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) +/turf/open/floor/red/north, +/area/lv624/lazarus/security) +"lAp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "lAX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"lBb" = ( -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "lBl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -11971,57 +12050,18 @@ /obj/structure/machinery/light, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) -"lFM" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz2) -"lFW" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/ammo_magazine/rifle/nsg23{ - current_rounds = 0 - }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"lFY" = ( -/obj/item/trash/chips, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"lGj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome Office"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) -"lGI" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) -"lGO" = ( +"lHb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; name = "\improper Nexus Dome"; req_access_txt = "100" }, /turf/open/floor/white, /area/lv624/lazarus/main_hall) -"lGZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) -"lHh" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/hud/health, -/obj/effect/landmark/crap_item, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +"lHE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) "lHL" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -12040,46 +12080,56 @@ "lIU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_central_jungle) +"lJd" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "lJo" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) +"lJz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) "lJC" = ( /mob/living/simple_animal/bat, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) +"lJZ" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/medbay) +"lKd" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "lKF" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/containers) +"lLd" = ( +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "lLi" = ( /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"lLm" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 11; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"lLp" = ( -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/barrens/central_barrens) -"lLF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" +"lLt" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) +"lLz" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_6_1" }, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "lLK" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -12090,6 +12140,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"lLS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "lLU" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -12097,44 +12151,32 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"lOs" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Mining Storage"; - req_access_txt = "100" - }, -/turf/open/floor/dark, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"lPo" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +"lMa" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) "lQC" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"lQO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup{ - desc = "Why would you ever drink this? Its full of mold and yucky slime!"; - pixel_y = 3 - }, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "It's a spoon. Covered in red slime and mold."; - pixel_x = 10; - pixel_y = 5 +"lQP" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) +"lQY" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/obj/item/clothing/gloves/yellow, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) "lRy" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"lRZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "lSs" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -12145,34 +12187,60 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"lSD" = ( +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"lSH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "lSN" = ( /obj/effect/decal/grass_overlay/grass1/inner, /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"lSQ" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"lTb" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - locked = 1; - name = "\improper Nexus Dome Director's Quarters"; - req_access_txt = "100" +"lSW" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"lSX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/cult, -/area/lv624/lazarus/hop) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "lTv" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"lTz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"lTN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) +"lTV" = ( +/obj/structure/fence, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/ground/river/central_river) "lTZ" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, @@ -12185,6 +12253,10 @@ /obj/structure/prop/brazier/torch, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) +"lUM" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "lUQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -12194,10 +12266,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"lVK" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/central_barrens) +"lVt" = ( +/obj/structure/prop/mech/parts/gygax_torso, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "lWh" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -12208,10 +12280,6 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"lWp" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) "lWw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -12221,25 +12289,30 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"lWJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "lWO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_west_jungle) -"lXg" = ( -/turf/open/floor/loadingarea/north, -/area/lv624/lazarus/quartstorage) -"lXD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Corporation Dome"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"lYs" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"lXt" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/warningcorner/north, -/area/lv624/lazarus/landing_zones/lz1) +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"lXW" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "lYt" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -12259,25 +12332,38 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz2) -"lYJ" = ( +"lYL" = ( +/obj/structure/bed/stool, +/obj/item/prop/alien/hugger, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"lYS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"lZd" = ( +/obj/structure/prop/mech/drill, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"lZE" = ( +/turf/open/floor/warnwhite/west, +/area/lv624/lazarus/fitness) +"mam" = ( +/obj/structure/prop/mech/tesla_energy_relay{ + layer = 2.5 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"maV" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; pixel_x = -30 }, /turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"lYL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Hydroponics" - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"lYX" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/lv624/lazarus/comms) "mbp" = ( /obj/structure/flora/jungle/alienplant1{ layer = 4.13; @@ -12291,24 +12377,29 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"mbE" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/engineering) "mbN" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"mcB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"mcS" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz2) -"mdz" = ( +"mcf" = ( /obj/structure/surface/table, -/obj/item/trash/cheesie, +/obj/item/trash/snack_bowl{ + pixel_y = 9 + }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"mcu" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) +"mcw" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "mdQ" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/west_caves) @@ -12316,17 +12407,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"mfs" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "mfu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -12341,42 +12421,42 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"mfO" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "mgi" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"mgY" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"mhE" = ( -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"miC" = ( -/turf/open/floor/red/southwest, -/area/lv624/lazarus/security) -"mjq" = ( +"mjx" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 + dir = 4; + icon_state = "p_stair_full" }, /turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"mki" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage) -"mkn" = ( -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) +/area/lv624/ground/caves/south_east_caves) +"mjA" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "mko" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -12386,20 +12466,32 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"mkF" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) "mkW" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"mmf" = ( +/obj/structure/bookcase, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/security_space_law, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "mmu" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"mne" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"mmM" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "mnr" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/east_jungle) @@ -12410,10 +12502,18 @@ "mnQ" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/west_barrens) -"mol" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"moh" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "casing_9_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"moD" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "moM" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -12424,48 +12524,63 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"mpe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/whitegreen, -/area/lv624/lazarus/main_hall) -"mpi" = ( -/obj/structure/machinery/light/small{ +"mpb" = ( +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/obj/item/weapon/baseballbat/metal, +/obj/item/device/lightreplacer, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"mpx" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"mpt" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/scientist, -/obj/structure/window/reinforced/tinted, -/obj/item/stack/medical/advanced/bruise_pack, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"mqo" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/barrens/central_barrens) +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"mpU" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"mqe" = ( +/obj/structure/machinery/atm{ + name = "Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"mql" = ( +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "mqJ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/east_river) +"mra" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "mrg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"mrq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/cigbutt/cigarbutt, -/obj/structure/machinery/cell_charger, -/obj/item/storage/fancy/cigarettes/wypacket, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"mrr" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) "mrQ" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -12494,48 +12609,38 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"mvb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) "mvr" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"mwb" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/tool/wrench, -/obj/item/tool/weldingtool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"mwh" = ( -/obj/structure/surface/table, -/obj/item/handset, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"mwQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"mvX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/obj/effect/decal/cleanable/dirt, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"mvY" = ( +/obj/item/bedsheet/rd, +/obj/item/weapon/pole/fancy_cane, +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"mwM" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "mxd" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -12545,84 +12650,70 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"myk" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"mys" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) -"myA" = ( -/obj/item/stack/medical/advanced/bruise_pack, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"myd" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) +"myf" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "myI" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"mAC" = ( -/turf/open/floor/whitegreencorner/west, -/area/lv624/lazarus/main_hall) -"mAG" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/warning, +"mzm" = ( +/turf/open/floor/warning/east, /area/lv624/lazarus/landing_zones/lz1) -"mBp" = ( -/obj/effect/landmark/crap_item, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"mBD" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -10; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"mBP" = ( -/turf/open/floor/asteroidwarning/north, -/area/lv624/ground/colony/telecomm/sw_lz2) -"mCb" = ( -/obj/structure/lattice{ - layer = 2.9 +"mAt" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) +"mAA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/east, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"mAW" = ( +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/engineering) -"mCj" = ( -/obj/structure/bed/chair{ +"mBj" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"mBK" = ( +/obj/structure/surface/table, +/obj/item/device/mmi/radio_enabled, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"mCQ" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, /turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"mCL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/framed/colony, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) -"mCR" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/lv624/lazarus/main_hall) +"mCT" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/quartstorage) +"mDr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"mDa" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"mDE" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "mEo" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -12637,40 +12728,40 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) -"mFw" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "mFZ" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"mGa" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 8 + }, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) +"mGj" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "mGG" = ( /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"mHg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "mHk" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"mHp" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) "mHM" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/south_medbay_road) @@ -12679,29 +12770,23 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"mIt" = ( -/obj/item/stock_parts/scanning_module/phasic, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) -"mJg" = ( -/obj/structure/bookcase, -/obj/item/bananapeel, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +"mIZ" = ( +/obj/structure/machinery/still, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"mJp" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/west_caves) "mJF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"mKc" = ( +/obj/structure/surface/table, +/obj/effect/decal/remains/human, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "mKf" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/west_nexus_road) @@ -12711,55 +12796,38 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"mLm" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"mLn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"mLs" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +"mLo" = ( +/turf/open/floor/plating/asteroidwarning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "mLv" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"mLV" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "mMq" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"mMV" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"mMP" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "mNl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"mNw" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"mNm" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "mNz" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -12783,65 +12851,51 @@ "mPt" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"mPx" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"mPA" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "mPK" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"mQj" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) -"mQm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"mQT" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"mQW" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/cult, -/area/lv624/ground/caves/west_caves) +"mQR" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/east_barrens) "mSN" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"mUm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/lv624/lazarus/secure_storage) -"mUO" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"mUo" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "mUQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"mUS" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "mUZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) +"mVc" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "mVg" = ( /obj/item/weapon/harpoon/yautja{ anchored = 1; @@ -12872,96 +12926,88 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"mVT" = ( -/obj/structure/surface/table, -/obj/structure/prop/mech/drill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "mVV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_jungle) "mWe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_west_jungle) -"mWv" = ( -/obj/structure/cargo_container/seegson/left, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "mWA" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"mXx" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/lv624/ground/colony/telecomm/sw_lz2) +"mXv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "mXR" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) +"mYQ" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "mZf" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"mZk" = ( +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"nad" = ( +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/cargo) +"nax" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "naR" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_tcomms_road) -"naT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"naU" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"naW" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"nbd" = ( +/turf/open/floor/warnwhite/southwest, +/area/lv624/lazarus/fitness) "nbw" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/north_east_barrens) -"nbW" = ( -/obj/structure/closet, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/shoes/centcom, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "ncg" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/obj/structure/window_frame/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/chapel) "ncq" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz1) +"ncJ" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "red"; + phone_id = "Secure Storage"; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "ndk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"ndv" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"ndF" = ( -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) +"ndw" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "ndK" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, @@ -12974,18 +13020,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"neB" = ( -/turf/open/floor/warningcorner/west, -/area/lv624/lazarus/landing_zones/lz1) -"neX" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"neH" = ( +/turf/open/gm/dirtgrassborder/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) "nfD" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -12994,12 +13031,26 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"nfR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "nfX" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"ngv" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "nha" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -13008,61 +13059,56 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"nhh" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 + }, +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "nhi" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"nhu" = ( -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/turf/open/floor/whitebluecorner/east, -/area/lv624/lazarus/corporate_dome) -"nhw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Male Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"nhO" = ( -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 +"nil" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"nhR" = ( -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "niF" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"niG" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"niI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/microwave{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "njl" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"nju" = ( -/obj/item/clothing/suit/redtag, -/obj/structure/closet/athletic_mixed, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "njC" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) -"njX" = ( -/obj/structure/showcase{ - layer = 3.1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "nkg" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, @@ -13073,75 +13119,56 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"nkA" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "nkU" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-bridge-east" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"nmm" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) -"nmC" = ( -/obj/item/shard, -/turf/open/floor/whiteyellow/southwest, -/area/lv624/lazarus/corporate_dome) -"nmJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) "nmO" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"nne" = ( -/obj/structure/barricade/wooden, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"nnl" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"nnd" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_y = -30 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "nnq" = ( /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"nnB" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "yellow"; - phone_id = "Engineering"; - pixel_y = 24 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "nnL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/east_barrens) -"nnX" = ( -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"nog" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "npf" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) -"npA" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/river/east_river) "npQ" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"nqe" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "nqv" = ( /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) @@ -13149,47 +13176,23 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"nqR" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"nqV" = ( -/turf/open/gm/dirtgrassborder/desert, -/area/lv624/ground/barrens/south_eastern_barrens) -"nrr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"nsb" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"nsi" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) "nsk" = ( /turf/open/gm/dirt, /area/lv624/ground/river/west_river) +"nsl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/robotics, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "nsA" = ( /obj/structure/lz_sign/lazarus_sign{ layer = 4 }, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"nsR" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"ntq" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_central_jungle) -"ntr" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/barrens/north_east_barrens) -"ntK" = ( +"nsC" = ( /obj/structure/stairs/perspective{ color = "#b29082"; dir = 10; @@ -13197,30 +13200,35 @@ }, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) +"ntr" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/barrens/north_east_barrens) "ntL" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_tcomms_road) -"ntM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) "ntQ" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"ntT" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/red/east, -/area/lv624/lazarus/security) -"nuI" = ( -/obj/structure/machinery/light{ - dir = 1 +"nub" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"nug" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/tritium{ + pixel_x = -4 }, -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"nus" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "nuU" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass2, @@ -13228,6 +13236,13 @@ "nuW" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) +"nvo" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"nvD" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/west_barrens) "nvS" = ( /obj/structure/showcase{ color = "#95948B"; @@ -13257,67 +13272,80 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"nwb" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"nvT" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "nwI" = ( /obj/item/bananapeel, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) +"nyk" = ( +/obj/structure/surface/rack, +/obj/item/shard{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "nys" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"nzq" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "nzw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"nAE" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/taperecorder, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +"nzQ" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"nzS" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"nAB" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"nAC" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"nAD" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_central_jungle) +"nBy" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) "nBM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nCl" = ( -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"nCt" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/central_barrens) -"nCN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/white, +"nBO" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"nCr" = ( +/obj/item/tool/crowbar, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"nCT" = ( -/obj/structure/barricade/wooden, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"nDK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) +"nCI" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "nEd" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/robotics) @@ -13348,23 +13376,31 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nEJ" = ( -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/engineering) -"nEO" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 4 +"nFc" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" }, -/turf/open/floor/whiteyellow/southeast, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) -"nFK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +"nFH" = ( +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"nGe" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) +"nGz" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "nHq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -13372,6 +13408,12 @@ /obj/effect/landmark/corpsespawner/miner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"nHA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "nHE" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/genericbush, @@ -13385,35 +13427,33 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"nIT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"nJt" = ( -/obj/structure/prop/mech/parts/gygax_torso, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +"nIh" = ( +/obj/item/storage/toolbox/syndicate, +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "nJF" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/west_nexus_road) +"nJM" = ( +/obj/structure/girder, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) +"nLd" = ( +/turf/open/floor/red/west, +/area/lv624/lazarus/security) "nLf" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) -"nLg" = ( -/turf/open/floor/wood/wood_broken4, -/area/lv624/ground/caves/north_central_caves) "nLk" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"nLA" = ( -/obj/item/storage/toolbox, -/turf/open/gm/dirt, -/area/lv624/ground/colony/west_tcomms_road) "nLF" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -13424,6 +13464,18 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"nLN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"nLO" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"nLS" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "nMJ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, @@ -13432,13 +13484,30 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/west_nexus_road) -"nNW" = ( -/turf/open/floor/whiteyellow/west, -/area/lv624/lazarus/corporate_dome) -"nON" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"nND" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"nOw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/tomatosoup{ + desc = "Why would you ever drink this? Its full of mold and yucky slime!"; + pixel_y = 3 + }, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"nOJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "nOX" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -13446,27 +13515,32 @@ "nPd" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/central_river) -"nPx" = ( -/obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"nQq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"nQy" = ( -/obj/effect/landmark/survivor_spawner, +"nPz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"nQa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/foamed_metal, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"nRn" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +"nQt" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) +"nQw" = ( +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_y = -28 + }, +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) +"nQR" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "nRA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -13480,24 +13554,16 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"nTP" = ( -/obj/structure/target/syndicate, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"nTU" = ( -/obj/structure/bed/chair{ +"nTG" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"nUr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 1; - name = "\improper Nexus Dome Armory"; - req_one_access_txt = "19;106" - }, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"nTQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "nUy" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/robotics) @@ -13508,24 +13574,27 @@ /obj/structure/barricade/wooden, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"nUJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "nUZ" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"nVg" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Forced Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" +"nVv" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/jungle/west_jungle/ceiling) "nVC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -13551,53 +13620,29 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nWk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "red"; - phone_id = "Marshal Office" - }, -/turf/open/floor/redcorner/west, -/area/lv624/lazarus/security) -"nWE" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) +"nWF" = ( +/obj/item/storage/firstaid/toxin, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) "nWJ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"nXA" = ( -/obj/structure/computerframe, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"nXI" = ( -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 +"nWT" = ( +/obj/structure/largecrate/random, +/obj/item/storage/fancy/crayons{ + pixel_x = 1; + pixel_y = 8 }, -/obj/structure/surface/rack, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"nXX" = ( -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"nYe" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"nXu" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/effect/landmark/good_item, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) "nYx" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, @@ -13611,33 +13656,34 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"oae" = ( -/obj/item/clothing/glasses/regular, -/turf/open/floor/white, +"nZT" = ( +/obj/structure/surface/table, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"oaz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, +"oag" = ( +/obj/structure/barricade/wooden, /turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/quartstorage/outdoors) "oaL" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"obe" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"oaQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"obn" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + pixel_y = 16 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "obp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/east_barrens) -"obr" = ( -/turf/open/floor/dark, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "obC" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -13646,6 +13692,11 @@ /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"obP" = ( +/obj/structure/surface/table, +/obj/item/trash/cheesie, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "ock" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass2, @@ -13657,26 +13708,10 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/east_river) -"odm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"odp" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"odt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +"odf" = ( +/obj/item/tool/crowbar, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "odw" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -13690,6 +13725,10 @@ }, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) +"odQ" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) "oek" = ( /turf/open/gm/coast/north, /area/lv624/ground/jungle/west_jungle) @@ -13704,9 +13743,10 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"ofK" = ( -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/engineering) +"ofH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) "ogJ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -13746,74 +13786,62 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"ohI" = ( -/obj/item/tool/kitchen/knife/butcher, +"ohR" = ( +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 + }, /obj/structure/surface/rack, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"oiO" = ( +/obj/structure/flora/jungle/vines/light_3, +/obj/item/stack/sheet/wood{ + amount = 2 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"okG" = ( -/obj/effect/landmark/hunter_primary, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) +"oja" = ( +/obj/item/storage/toolbox, /turf/open/gm/dirt, -/area/lv624/ground/jungle/west_jungle) -"olG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"omt" = ( -/obj/structure/surface/rack, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/area/lv624/ground/colony/west_tcomms_road) +"oly" = ( +/turf/open/floor/warningcorner/north, +/area/lv624/lazarus/landing_zones/lz1) +"omf" = ( +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "omu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) -"omJ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/costume/butler, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "omK" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/barrens/west_barrens) -"onc" = ( -/turf/open/floor/whitebluecorner/north, -/area/lv624/lazarus/medbay) -"one" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100" - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"onw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "onP" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"onQ" = ( -/turf/open/floor/whitebluecorner/west, -/area/lv624/lazarus/medbay) "onU" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/west_caves) -"ooc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"oog" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/platingdmg1, -/area/lv624/lazarus/secure_storage) "oov" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) +"ooJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Water Filtration Plant"; + req_access_txt = "100" + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) "ooM" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -13823,34 +13851,19 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"opp" = ( -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "opP" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) "opS" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) -"opZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"oqD" = ( -/obj/structure/closet, -/obj/item/weapon/baseballbat, -/obj/item/clothing/head/beret/jan, -/obj/item/stack/medical/splint, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"oqu" = ( +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) +"oqx" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "oqO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/north_nexus_road) @@ -13859,54 +13872,54 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"osi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/power/apc/no_power/north, +"orI" = ( +/obj/structure/barricade/metal/wired{ + health = 300 + }, /turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/area/lv624/lazarus/corporate_dome) +"osO" = ( +/obj/structure/surface/table, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "otl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"otB" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"otO" = ( -/obj/item/stack/medical/ointment, -/obj/structure/machinery/light{ +"ots" = ( +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"otC" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "oua" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"oub" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"ouv" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) -"ouB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitebluecorner/north, -/area/lv624/lazarus/corporate_dome) -"ouX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"ouG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/structure/prop/mech/hydralic_clamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"ouO" = ( +/obj/structure/surface/table, +/obj/item/book/manual/research_and_development, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "ovg" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -13922,40 +13935,19 @@ /obj/item/stack/sheet/wood, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"ovY" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +"ovF" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/obj/item/clothing/under/colonist, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) "owe" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"owK" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -32 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/effect/spawner/random/powercell, -/obj/item/device/assembly/infra, -/obj/effect/spawner/random/powercell, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "owQ" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) @@ -13965,20 +13957,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"oxx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/fertilizer{ - pixel_x = 6; - pixel_y = 2 +"oxp" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 }, -/obj/item/reagent_container/glass/fertilizer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"oxC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) +"oxD" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) +"oxI" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "oxY" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -13999,10 +13994,6 @@ "oyx" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"oyD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "oAD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -14014,28 +14005,32 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"oBe" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/engineering) "oBi" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-medbay" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"oBn" = ( -/turf/open/floor/warnwhite/northeast, -/area/lv624/lazarus/fitness) -"oBT" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_3_1" +"oBu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) +"oBV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/adjustable/cable/white{ + pixel_y = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, +/obj/item/restraint/adjustable/cable/white, +/turf/open/floor/whiteyellow, /area/lv624/lazarus/corporate_dome) -"oCP" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) +"oDk" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) "oDE" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -14058,9 +14053,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"oEt" = ( -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) "oED" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -14068,16 +14060,6 @@ "oEI" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/east_barrens) -"oEJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Hydroponics" - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"oEL" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/caves/north_central_caves) "oER" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -14099,6 +14081,16 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"oFW" = ( +/obj/structure/machinery/bot/mulebot{ + auto_pickup = 0; + auto_return = 0; + health = 1; + on = 0 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "oGj" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -14114,10 +14106,13 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_tcomms_road) -"oGM" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/corporate_dome) +"oGI" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_west_jungle) +"oGO" = ( +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/colony/north_tcomms_road) "oHu" = ( /turf/open/gm/coast/north, /area/lv624/ground/river/east_river) @@ -14125,124 +14120,106 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"oIb" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/roller, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"oIx" = ( -/obj/item/ammo_magazine/rifle/nsg23{ - current_rounds = 0 +"oHF" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"oIS" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"oHH" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"oIT" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz2) +"oJo" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "oJL" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"oKj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/obj/item/storage/firstaid/adv, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) -"oKv" = ( -/turf/open/floor/podhatchfloor, -/area/lv624/lazarus/comms) +"oKH" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/east_barrens) "oLk" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/west_nexus_road) -"oMb" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"oMM" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +"oLo" = ( +/obj/structure/bed, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/under/colonist, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"oLF" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "oMZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"oNn" = ( -/obj/structure/surface/table, -/obj/item/toy/deck, -/obj/item/storage/fancy/cigarettes/wypacket, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "oOd" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"oOi" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"oOp" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) "oOB" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"oPM" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset{ - frequency = 1469; - pixel_x = 4; - pixel_y = 4 +"oPH" = ( +/obj/structure/showcase{ + layer = 3.1 }, -/obj/item/device/radio/headset{ - frequency = 1469 +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"oPQ" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 1 +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"oQi" = ( +/turf/open/floor/wood/wood_broken4, +/area/lv624/ground/caves/north_central_caves) +"oQl" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "oQm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"oRu" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/river/east_river) +"oQM" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) +"oRc" = ( +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "oRH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) @@ -14252,6 +14229,9 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"oSn" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "oSp" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/gm/dirt, @@ -14266,27 +14246,9 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"oSW" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz2) -"oTq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"oTr" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"oSM" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/corporate_dome) "oTt" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/central_river) @@ -14305,27 +14267,42 @@ "oUa" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"oUb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"oUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "oUy" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) "oUL" = ( -/obj/item/stack/rods, -/turf/open/gm/dirt, -/area/lv624/ground/colony/west_tcomms_road) -"oWf" = ( -/obj/structure/lattice{ - layer = 2.9 - }, +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/engineering) -"oWw" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"oUN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_central_jungle) +"oWH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) "oWN" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, @@ -14333,6 +14310,15 @@ "oXl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_west_jungle) +"oXz" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "oXI" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/landing_zones/lz2) @@ -14347,17 +14333,20 @@ "oYM" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/west_barrens) -"oZG" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"oZg" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/east_barrens) +"oZp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken6, +/area/lv624/lazarus/hop) "pab" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"pac" = ( -/turf/open/floor/cult, -/area/lv624/ground/caves/east_caves) "pas" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/north, @@ -14382,23 +14371,12 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/south_nexus_road) -"pbB" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/grass/grass1, -/area/lv624/ground/colony/west_tcomms_road) -"pbL" = ( -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) "pcd" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/east_barrens) "pci" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/east_barrens) -"pcs" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/airless/asteroidfloor/northeast, -/area/lv624/ground/barrens/north_east_barrens) "pcu" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -14406,26 +14384,66 @@ "pcA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_central_jungle) -"pdq" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/obj/structure/largecrate/supply/ammo/shotgun{ - pixel_y = 8 +"pcX" = ( +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) -"peU" = ( -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) +"pdW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"pdY" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"peB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"peZ" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "pfl" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/chef, /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"pft" = ( -/obj/item/trash/raisins, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"pfI" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "pfK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -14433,59 +14451,85 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) +"pfR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) +"pfZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "pgc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"pgn" = ( +"phT" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -12 + }, /turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "phU" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"pii" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"pig" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_west_jungle) "pim" = ( /turf/open/floor, /area/lv624/ground/barrens/east_barrens) -"pip" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz2) -"pjd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = -2; - pixel_y = 6 +"piw" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_west_jungle) +"piG" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"piJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"pje" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = 4; - pixel_y = 4 +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"pji" = ( +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "pjk" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/river/east_river) -"pjR" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "pjY" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"pki" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"pkp" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "pkU" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -14499,42 +14543,42 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"plw" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -10; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +"plo" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/structure/surface/rack, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "ply" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"pmF" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz1) -"pmL" = ( -/obj/structure/sink/kitchen{ - pixel_y = 30 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/donkpocket{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/donkpocket{ - pixel_x = -4; - pixel_y = -4 +"plB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"plV" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"pmv" = ( +/turf/open/gm/dirtgrassborder/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) +"pmw" = ( +/obj/item/tool/shovel, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "pnl" = ( /obj/structure/largecrate/random, /turf/open/floor/greengrid, @@ -14546,10 +14590,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"ppl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/loadingarea/west, -/area/lv624/lazarus/landing_zones/lz1) +"ppH" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"ppQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/platinum, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "ppR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/north_nexus_road) @@ -14559,40 +14616,39 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"pqL" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/river/central_river) -"prh" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/medbay) -"prp" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -5; - pixel_y = -5 +"pqp" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) +"pqz" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"prB" = ( -/obj/structure/largecrate/random, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 5 +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"prj" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Forced Blast Door" }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/robotics) -"prF" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "casing_9_1" +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"prt" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, /turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/main_hall) "prQ" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -14607,95 +14663,34 @@ "psh" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"psx" = ( -/obj/effect/decal/remains/human, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"psy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken6, -/area/lv624/lazarus/hop) "psH" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"ptj" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "ptr" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"ptZ" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "puo" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) -"puw" = ( -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/ground/river/central_river) -"puF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) -"puG" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_9_1" - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"puW" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"pvk" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/lv624/lazarus/secure_storage) -"pvv" = ( +"pvd" = ( /obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; + dir = 1; icon_state = "p_stair_full" }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"pvw" = ( -/turf/open/floor/plating/warnplate/northeast, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) -"pvS" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/colony/north_tcomms_road) -"pwb" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"pwz" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"pwT" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "pxc" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, @@ -14704,82 +14699,42 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"pxF" = ( -/obj/effect/decal/remains/xeno, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) -"pxS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"pyg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"pxt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = 6 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = -6 }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"pyD" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/obj/item/tool/mop, /turf/open/floor/white, /area/lv624/lazarus/main_hall) -"pyH" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/lazarus/engineering) -"pyL" = ( -/obj/structure/inflatable, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"pyO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "pyS" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"pyV" = ( -/obj/structure/prop/mech/tesla_energy_relay{ - layer = 2.5 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"pzP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) "pAE" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"pAH" = ( +"pAI" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 4; icon_state = "p_stair_full" }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"pAW" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/platform, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) "pBk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -14788,43 +14743,31 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"pCF" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +"pBR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"pBZ" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "pDt" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"pDC" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "pDI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"pEe" = ( -/obj/structure/foamed_metal, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) "pEl" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"pEz" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"pEK" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz1) "pET" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -14834,30 +14777,40 @@ "pFe" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) -"pFt" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) +"pFq" = ( +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "pFB" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"pFZ" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/barrens/central_barrens) +"pFF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"pFJ" = ( +/obj/item/stack/rods{ + amount = 20 + }, +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "pGD" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"pGJ" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Robotics Landing Zone" - }, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz2) +"pGF" = ( +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) +"pGG" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) "pGL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -14866,6 +14819,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"pHd" = ( +/obj/structure/girder, +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) "pHn" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, @@ -14874,25 +14831,23 @@ /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) -"pHC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"pHS" = ( -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "pIl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"pIt" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) +"pIx" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) "pIy" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -14909,6 +14864,15 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"pJq" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "pJr" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -14917,20 +14881,10 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"pKc" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"pKQ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"pKM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/central_barrens) "pKS" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_2, @@ -14940,23 +14894,9 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/west_nexus_road) -"pMf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/crowbar, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/whiteyellow/northwest, -/area/lv624/lazarus/corporate_dome) -"pMy" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +"pLQ" = ( +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "pMM" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, @@ -14965,26 +14905,18 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"pMZ" = ( -/obj/structure/fence, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/asteroidwarning/north, -/area/lv624/ground/river/central_river) "pNr" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"pNx" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"pNE" = ( -/obj/item/tool/pickaxe, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"pOe" = ( -/turf/open/floor/white, -/area/lv624/lazarus/chapel) +"pNt" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"pNu" = ( +/obj/item/stool, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "pOC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -14992,54 +14924,27 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"pPl" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"pPv" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/engineering) -"pPB" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"pPY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_id = "Research Dome"; - pixel_y = 24 +"pPI" = ( +/obj/structure/safe/floor{ + name = "safe"; + spawnkey = 0 }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"pQb" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"pPV" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"pQK" = ( +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) "pQV" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"pQY" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "pRx" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -15067,58 +14972,53 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/west_nexus_road) +"pSF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"pSM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"pTf" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "pUm" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/east_caves) -"pUD" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"pUH" = ( -/obj/item/tool/crowbar, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/main_hall) -"pUL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"pUV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"pVh" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"pVq" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/southeast, -/area/lv624/lazarus/landing_zones/lz1) -"pVG" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window, -/obj/structure/toilet{ - dir = 4 +"pWl" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"pVO" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/yggdrasil) -"pXC" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "pXI" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"pYk" = ( +/turf/open/floor/redcorner/east, +/area/lv624/lazarus/security) "pYp" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -15136,52 +15036,50 @@ "pZb" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_east_caves) +"pZH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "pZM" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"pZR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"qaf" = ( -/obj/item/storage/firstaid/toxin/empty, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"qam" = ( -/turf/open/floor/whiteyellow/north, -/area/lv624/lazarus/main_hall) "qaE" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/queen_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"qcl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"qaS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/jungle/west_jungle) +"qcj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grilledcheese, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "qcz" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"qcD" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "qcX" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"qcY" = ( +/obj/structure/lamarr{ + density = 0; + destroyed = 1; + icon_state = "labcageb0"; + occupied = 0 + }, +/obj/item/shard, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "qdx" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -15192,13 +15090,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"qdS" = ( -/turf/open/floor/chapel/east, -/area/lv624/lazarus/chapel) -"qen" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/bot/north, -/area/lv624/lazarus/quartstorage) "qeW" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/caves/sand_temple) @@ -15210,17 +15101,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"qfk" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) -"qfl" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz2) "qfr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper LZ2 Access"; @@ -15229,42 +15109,57 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz2) -"qfy" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) +"qfA" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"qfI" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/canteen) "qfK" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"qgf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) +"qfX" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/jungle/west_jungle) "qgA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_east_jungle) -"qgU" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light/small{ - dir = 8 +"qgF" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz1) +"qhb" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "qhl" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"qhJ" = ( -/obj/structure/largecrate/random, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/barrens/east_barrens/ceiling) +"qhn" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) +"qhI" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"qix" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "qiL" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -15272,51 +15167,57 @@ "qjf" = ( /turf/open/floor, /area/lv624/ground/barrens/containers) -"qjm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/corporate_dome) +"qjo" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) "qjt" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"qjB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"qmb" = ( -/obj/item/circuitboard/airlock{ - pixel_x = 12 - }, -/turf/open/floor/asteroidwarning/north, -/area/lv624/ground/colony/telecomm/cargo) -"qmq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"qjy" = ( +/obj/effect/decal/remains/xeno, +/obj/item/stack/sheet/metal, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"qkf" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/east_barrens/ceiling) +"qkJ" = ( +/obj/structure/surface/table, +/obj/item/toy/deck, +/obj/item/storage/fancy/cigarettes/wypacket, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) -"qmv" = ( -/obj/item/clothing/under/shorts/red, -/obj/structure/surface/rack, -/turf/open/floor/whitepurplecorner/east, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"qkQ" = ( +/turf/open/floor/warnwhite/southeast, /area/lv624/lazarus/fitness) -"qmz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 +"qle" = ( +/obj/item/tool/weldingtool, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_central_jungle) +"qlp" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/tool/pen/clicky, -/turf/open/floor/whitebluecorner, -/area/lv624/lazarus/corporate_dome) -"qmP" = ( -/obj/structure/prop/mech/drill, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) +/obj/effect/landmark/good_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"qma" = ( +/obj/item/device/flashlight/on, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"qmg" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "qns" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -15325,40 +15226,27 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"qnZ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" +"qpS" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"qqi" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/white, -/area/lv624/lazarus/research) -"qoZ" = ( -/obj/structure/grille, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) -"qpo" = ( -/turf/open/floor/loadingarea/north, -/area/lv624/lazarus/landing_zones/lz1) -"qqs" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +/area/lv624/lazarus/main_hall) "qqJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"qrw" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +"qqN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "qrH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -15376,9 +15264,6 @@ "qtj" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_central_jungle) -"qtz" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/caves/south_west_caves) "qtK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -15387,25 +15272,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"qtP" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "qtS" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"qut" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/red, -/area/lv624/lazarus/security) -"quV" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "qvf" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/north, @@ -15414,27 +15284,50 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/west_nexus_road) -"qvQ" = ( -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/robotics) -"qwd" = ( +"qvG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/tool/crowbar, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"qvH" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"qxa" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/river/east_river) +"qxe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"qxP" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; light_range = 1; light_system = 1; - pixel_x = -10 + pixel_x = 2; + pixel_y = 7 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"qwf" = ( -/obj/item/stack/sheet/wood{ - amount = 2 +"qxY" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "yellow"; + phone_id = "Engineering"; + pixel_y = 24 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"qww" = ( -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "qxZ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/stack/sheet/metal{ @@ -15444,35 +15337,34 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"qyk" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"qyw" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"qyA" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) -"qzp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 +"qzb" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/showcase, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) +"qzy" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"qzI" = ( +/obj/structure/sink{ + pixel_y = 30 }, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"qzM" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"qzO" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "qAc" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -15499,24 +15391,11 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) "qBl" = ( -/obj/structure/surface/rack, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"qBF" = ( -/obj/item/handset{ - desc = "A model of an ancient Earth communication device."; - force = 8 - }, -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "qBQ" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -15535,26 +15414,15 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"qCf" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"qCG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"qDv" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) +"qCb" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_east_jungle) +"qCz" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/turf/open/floor/carpet/bcarpet03, +/area/lv624/ground/caves/north_central_caves) "qDx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -15572,6 +15440,43 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"qEs" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/south_west_caves) +"qEy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"qFi" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/obj/item/reagent_container/glass/fertilizer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"qGl" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"qGz" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "qGH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, @@ -15580,20 +15485,24 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"qGW" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating/asteroidwarning/east, -/area/lv624/lazarus/landing_zones/lz2) -"qHm" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"qHe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "qHC" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"qIt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "qIw" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -15601,38 +15510,16 @@ "qIO" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) -"qIQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +"qIW" = ( +/obj/item/circuitboard/airlock{ + pixel_x = 12 }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) "qJe" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"qJi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"qJo" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"qJu" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) "qJx" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -15643,81 +15530,89 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"qJR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "qKl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_nexus_road) +"qKr" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/colony/north_tcomms_road) +"qKO" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "qLc" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"qLm" = ( -/obj/structure/surface/table, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"qLA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"qMk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/main_hall) +"qLg" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) +"qLp" = ( +/obj/structure/morgue/sarcophagus, +/obj/item/weapon/twohanded/yautja/glaive/damaged{ + name = "damaged war glaive" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"qLV" = ( +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"qMg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics" + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "qMX" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"qNi" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, -/area/lv624/lazarus/landing_zones/lz2) -"qNA" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/caves/west_caves) +"qNu" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/item/clothing/under/colonist, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "qNQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"qOd" = ( -/obj/effect/landmark/corpsespawner/security/liaison, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"qOi" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/west_barrens) -"qOB" = ( -/obj/structure/machinery/light/small, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"qOY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"qPg" = ( -/obj/structure/fence, -/turf/open/floor/warning/east, -/area/lv624/ground/barrens/containers) -"qPk" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +"qOn" = ( +/obj/structure/bed, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"qOZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/carpet/bcarpet01, -/area/lv624/ground/caves/north_central_caves) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "qPx" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -15730,42 +15625,22 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"qQB" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet/bcarpet07, -/area/lv624/ground/caves/north_central_caves) -"qQL" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"qRa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +"qQF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "qRj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"qRl" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -10; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"qRU" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/snacks/syndicake{ - layer = 2.6 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) "qSn" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -15776,6 +15651,12 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"qSR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "qSS" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 @@ -15793,16 +15674,23 @@ /obj/item/shard, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"qTB" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"qTR" = ( +/obj/item/device/analyzer, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"qUv" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"qTQ" = ( -/obj/structure/surface/table, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "qUM" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/west_central_jungle) @@ -15810,36 +15698,71 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"qVr" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) "qVN" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"qWe" = ( -/obj/structure/lattice{ - layer = 2.9 +"qWb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) +"qWc" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory"; + req_one_access_txt = "19;106" }, -/obj/structure/platform, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "qWf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/west_nexus_road) +"qWq" = ( +/obj/structure/dispenser, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "qWI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"qXG" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"qXj" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"qXu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) +"qXL" = ( +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/main_hall) +"qYl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"qYp" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) +"qYw" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/secure_storage) "qYF" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirt, @@ -15852,42 +15775,54 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"qYX" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +"qZc" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) "qZv" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"qZG" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ - dir = 1 +"qZF" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "rac" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"raK" = ( -/obj/structure/bed/stool, -/obj/item/prop/alien/hugger, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"raQ" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/lv624/ground/jungle/west_jungle) -"raW" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"rak" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"raC" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/east_river) +"raY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/taperecorder, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "rbs" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -15898,15 +15833,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"rbz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/structure/prop/mech/hydralic_clamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "rck" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -15922,22 +15848,14 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "rdE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/structure/largecrate/random, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "rfH" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"rfY" = ( -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) "rgj" = ( /obj/effect/decal/remains/xeno, /obj/effect/decal/grass_overlay/grass1{ @@ -15945,87 +15863,56 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"rgz" = ( -/obj/structure/largecrate/random, -/obj/item/storage/fancy/crayons{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) -"rgD" = ( -/obj/structure/surface/rack, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"rgI" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/bot/north, -/area/lv624/lazarus/quartstorage) +"rgk" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "rgQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"rih" = ( -/obj/structure/morgue/sarcophagus, -/obj/item/weapon/twohanded/yautja/glaive/damaged{ - name = "damaged war glaive" +"rhz" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 26 }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +/obj/item/prop/alien/hugger, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "rio" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, +/obj/structure/largecrate/random, /turf/open/floor/white, /area/lv624/lazarus/main_hall) "rit" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) -"riu" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/corporate_dome) -"rjx" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/main_hall) -"rjT" = ( -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"rka" = ( -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) -"rla" = ( -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"rlo" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/west_barrens) -"rlr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"rnq" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/central_barrens) -"rnC" = ( +"rix" = ( +/obj/structure/surface/table, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"rmj" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"rmB" = ( /obj/structure/phone_base/colony_net{ phone_category = "Lazarus Landing"; - phone_color = "red"; - phone_id = "Secure Storage"; - pixel_y = 24 + phone_id = "Lakeside Bar"; + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) +/turf/open/floor/wood, +/area/lv624/ground/caves/north_central_caves) +"rnJ" = ( +/obj/structure/inflatable, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"rod" = ( +/obj/item/frame/table, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "rox" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -16034,13 +15921,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"rpa" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/caves/west_caves) -"rpk" = ( -/obj/item/trash/popcorn, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "rpx" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -16049,55 +15929,38 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"rqA" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/barrens/central_barrens) -"rrd" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 +"rqy" = ( +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 0 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"rqF" = ( +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "rrz" = ( /obj/structure/curtain/red, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"rsc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"rsm" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"rsy" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"rsA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"rtq" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "rtD" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"rtS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/adjustable/cable/white{ - pixel_y = 4 - }, -/obj/item/restraint/adjustable/cable/white, -/turf/open/floor/whiteyellow, -/area/lv624/lazarus/corporate_dome) "rua" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -16111,36 +15974,18 @@ }, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) -"rvd" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"rvi" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 2 - }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_x = -6 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "rvW" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/river/east_river) +"rwc" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "rwg" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"rwi" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) "rwx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -16156,71 +16001,82 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"ryg" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/corporate_dome) +"rxk" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/cell/high, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"rxM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"rxP" = ( +/obj/item/weapon/twohanded/fireaxe, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "ryp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"ryQ" = ( -/obj/structure/machinery/atm{ - name = "Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "rze" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"rzL" = ( -/obj/item/clothing/under/colonist, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"rzZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light{ - dir = 1 +"rzA" = ( +/obj/structure/foamed_metal{ + layer = 3.1 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"rAg" = ( +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) "rBF" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"rCN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"rBY" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) +"rCy" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/corporate_dome) +"rCV" = ( +/turf/open/gm/grass/grass2, +/area/lv624/ground/jungle/south_central_jungle) +"rDg" = ( +/obj/structure/bed/chair{ dir = 4 }, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"rCV" = ( -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/south_central_jungle) -"rDf" = ( -/obj/structure/fence, -/turf/open/floor/warning/west, -/area/lv624/ground/barrens/containers) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"rDk" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "rDl" = ( -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/west_caves) -"rEm" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +/obj/structure/surface/rack, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"rEd" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/central_barrens) "rER" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -16228,33 +16084,14 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"rFS" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"rFV" = ( +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "rGd" = ( /obj/structure/girder/displaced, /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"rGh" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/engineering) -"rGj" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/machinery/light, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "rGu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -16268,6 +16105,19 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"rGH" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"rGN" = ( +/obj/structure/inflatable, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"rGS" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "rGW" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/south, @@ -16276,6 +16126,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"rHn" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/jungle/west_jungle/ceiling) "rHp" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -16294,6 +16149,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"rIi" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/vault, +/area/lv624/lazarus/quartstorage) "rIm" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -16303,62 +16162,66 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"rIy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Chapel"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/chapel) "rID" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"rIL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"rIQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "rJd" = ( /obj/structure/bed/alien{ color = "#aba9a9" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"rJS" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/closed/wall/r_wall, -/area/lv624/lazarus/landing_zones/lz2) -"rKb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/machinery/light/small{ - dir = 8 +"rJo" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"rKl" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) +"rJP" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"rJS" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/closed/wall/r_wall, +/area/lv624/lazarus/landing_zones/lz2) +"rJX" = ( +/obj/structure/prop/mech/armor_booster, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "rKv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" +/obj/effect/landmark/nightmare{ + insert_tag = "nexuscenter_barricaded" }, -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/main_hall) -"rKM" = ( -/turf/open/floor/red/west, +/turf/open/floor/redfull/northwest, /area/lv624/lazarus/security) +"rKC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "rKQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -16370,45 +16233,54 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"rLn" = ( -/obj/item/storage/firstaid/adv/empty, -/obj/structure/machinery/door_control{ - id = "secure_outer_blast"; - name = "Secure Outer Doors"; - pixel_x = 25; - pixel_y = -5 +"rMM" = ( +/obj/item/stock_parts/scanning_module/phasic, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Corporate Office"; - pixel_y = 24 +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/whiteyellow/northeast, -/area/lv624/lazarus/corporate_dome) -"rMj" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"rNL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Bay" +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"rNb" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"rNt" = ( +/obj/item/clothing/under/colonist, /turf/open/floor/white, /area/lv624/lazarus/medbay) -"rNX" = ( -/turf/open/floor/warningcorner/north, -/area/lv624/lazarus/landing_zones/lz1) -"rOm" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"rOt" = ( -/obj/item/ammo_magazine/rifle/extended, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) +"rNK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"rOr" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "yellow"; + phone_id = "Communications"; + pixel_y = 24 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "rON" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -16441,20 +16313,37 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"rRx" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"rQx" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"rRA" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "rSy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_jungle) -"rTA" = ( -/obj/item/clothing/glasses/regular, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +"rSN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "rTG" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/flora/jungle/vines/light_3, @@ -16467,28 +16356,49 @@ "rTT" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"rUR" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/hud/health, +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "rUX" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"rVo" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "rWs" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"rWQ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "rWW" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"rXt" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"rXV" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "rXW" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/structure/flora/jungle/vines/light_3, @@ -16499,103 +16409,105 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"rYl" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/west_jungle) +"rYy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "rYA" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"rYR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light/small, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"rZY" = ( -/obj/item/trash/candy, -/obj/structure/machinery/power/apc/power/north, -/obj/structure/machinery/door_control{ - id = "secure_outer_blast"; - name = "Secure Outer Doors"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"sat" = ( -/obj/structure/bed/chair{ - dir = 1 +"rYB" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"rZE" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) +"rZW" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "sau" = ( /obj/effect/landmark/crap_item, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"saI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/cult, -/area/lv624/ground/caves/east_caves) -"sbY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +"sbm" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "scs" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"scH" = ( -/obj/structure/device/broken_piano, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"sdg" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) +"scT" = ( +/obj/item/frame/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "sdh" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"sdj" = ( -/obj/item/stack/sheet/wood{ - amount = 2 +"seb" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) +"sed" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) -"sdO" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, +/obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"sew" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz1) -"sfd" = ( -/obj/structure/surface/table, -/obj/item/folder, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"sex" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "sfH" = ( /obj/structure/inflatable, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"sgb" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/secure_storage) +"sfN" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"sfP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"sfR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "sgc" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, @@ -16605,18 +16517,16 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/north_nexus_road) -"sgw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"sgN" = ( -/obj/structure/machinery/light{ - dir = 4 +"sgl" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 30 }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"sgM" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "sgU" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, /turf/open/auto_turf/strata_grass/layer1, @@ -16627,9 +16537,9 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"shi" = ( +"she" = ( /obj/structure/fence, -/turf/open/floor/plating/asteroidfloor/north, +/turf/open/floor/plating/asteroidwarning, /area/lv624/ground/river/central_river) "shq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -16637,58 +16547,39 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"sja" = ( -/obj/structure/safe{ - spawnkey = 0 +"sit" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/item/coin/diamond, -/obj/item/m_gift, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"siW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"sjg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_x = -28 }, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/clothing/under/marine/veteran/pmc, -/obj/item/storage/fancy/cigar, -/turf/open/floor/whiteyellow/northeast, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) -"skL" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"skT" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"slq" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"slV" = ( -/obj/structure/computerframe{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) +"sjr" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) +"sky" = ( +/obj/structure/target, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "slW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) -"smw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "smx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) @@ -16698,13 +16589,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"smW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +"smL" = ( +/obj/item/frame/apc, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "snm" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/colony/west_nexus_road) @@ -16718,18 +16606,16 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"soP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "soY" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"soZ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "spm" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -16738,6 +16624,16 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"spO" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "sqj" = ( /turf/open/gm/river, /area/lv624/ground/river/central_river) @@ -16753,51 +16649,41 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"sqM" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"srg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"srk" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"sqz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"sri" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "srn" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"srG" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 8 +"srB" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Mining Storage"; + req_access_txt = "100" }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "ssc" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_central_jungle) -"ssm" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "ssG" = ( -/turf/open/floor/warningcorner/east, -/area/lv624/lazarus/landing_zones/lz1) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "ssK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed, @@ -16807,41 +16693,33 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"sun" = ( +/obj/structure/closet, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "suv" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"suZ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) -"svg" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/wood_broken4, -/area/lv624/lazarus/hop) "svh" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"svM" = ( -/obj/structure/kitchenspike, -/obj/structure/machinery/light/small{ +"svz" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"swz" = ( -/obj/structure/bed/chair, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"swB" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "swR" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -16851,11 +16729,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"sxc" = ( -/obj/structure/machinery/constructable_frame, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/barrens/east_barrens/ceiling) "sxl" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -16871,6 +16744,14 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"sxz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"sxL" = ( +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "sxY" = ( /obj/structure/surface/rack, /obj/item/moneybag, @@ -16884,16 +16765,19 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) +"syQ" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/ground/river/central_river) "szy" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) -"szN" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +"szL" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "sAh" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -16904,24 +16788,29 @@ /obj/structure/flora/jungle/planttop1, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"sAR" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -10; - pixel_y = -2 +"sAY" = ( +/obj/structure/inflatable/door, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"sBf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"sBz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "sBC" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/west_tcomms_road) -"sBD" = ( -/obj/item/frame/apc, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "sBJ" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -16929,47 +16818,36 @@ "sBY" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"sBZ" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"sCu" = ( -/turf/open/floor/bot/north, -/area/lv624/ground/caves/north_central_caves) -"sCA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) "sCX" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"sDl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "sDE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"sEf" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/structure/machinery/microwave{ - pixel_x = 2; - pixel_y = 3 +"sEO" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 }, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) -"sES" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/corporate_dome) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "sET" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -16981,36 +16859,36 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"sFg" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "sFD" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"sFQ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"sFR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "sGg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"sGT" = ( -/obj/structure/machinery/vending, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"sGE" = ( +/turf/open/floor/warnwhite/northeast, +/area/lv624/lazarus/fitness) +"sHo" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) +"sHI" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/central_river) +"sHQ" = ( +/obj/structure/surface/table, +/obj/structure/prop/mech/drill, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "sHT" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -17022,68 +16900,60 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"sIH" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/south_east_caves) -"sIM" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"sJM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"sJT" = ( -/turf/open/floor/whitebluecorner/east, -/area/lv624/lazarus/corporate_dome) -"sJW" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"sJZ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"sIH" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/south_east_caves) +"sIM" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 }, /obj/structure/stairs/perspective{ - dir = 4; + color = "#b29082"; + dir = 5; icon_state = "p_stair_full" }, -/obj/structure/platform/stair_cut, -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"sKG" = ( -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"sKJ" = ( -/obj/structure/machinery/shower{ - dir = 4 +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"sIU" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"sLF" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"sJk" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"sJm" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/under/liaison_suit/blue, -/turf/open/floor/whiteyellow/southeast, -/area/lv624/lazarus/corporate_dome) +/obj/item/tool/lighter, +/obj/item/device/analyzer, +/obj/item/device/multitool, +/obj/item/device/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"sJq" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) +"sJM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"sJV" = ( +/turf/open/floor/red/southwest, +/area/lv624/lazarus/security) "sLT" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -17108,56 +16978,68 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"sMH" = ( -/obj/structure/surface/rack, -/obj/item/shard{ - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"sMD" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "sMK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"sMQ" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/cargo) -"sMV" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz2) -"sNo" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 6; - pixel_y = -8 +"sNf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + locked = 1; + name = "\improper Storage Room" }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "sNq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"sOh" = ( -/turf/open/gm/dirtgrassborder/desert2, -/area/lv624/ground/barrens/south_eastern_barrens) +"sNx" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "garage_lv"; + name = "\improper Garage" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"sNz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"sNB" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"sNC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "sOp" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"sOx" = ( -/turf/open/floor/warnwhite/southeast, -/area/lv624/lazarus/fitness) "sOC" = ( /obj/item/stack/sheet/metal{ pixel_x = 16; @@ -17165,10 +17047,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"sOF" = ( -/obj/structure/bed/stool, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "sOZ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, @@ -17185,31 +17063,10 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"sPU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"sQP" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/lv624/lazarus/comms) -"sQU" = ( -/obj/item/stack/rods{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "sRg" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) +/obj/structure/surface/table/reinforced, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "sRH" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -17217,17 +17074,28 @@ "sRW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) -"sSz" = ( -/obj/structure/grille, +"sRZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, /turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) +/area/lv624/ground/river/west_river) "sSE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"sTk" = ( -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) +"sSU" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"sTs" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/lv624/ground/jungle/west_jungle) "sTB" = ( /turf/open/gm/coast/east, /area/lv624/ground/jungle/west_jungle) @@ -17243,6 +17111,28 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"sUs" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"sUB" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) "sUT" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -17251,24 +17141,13 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/hydroponics) -"sVn" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"sVt" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/south_west_caves) +"sVv" = ( +/obj/structure/target/syndicate, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "sVx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -17277,16 +17156,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"sWb" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"sWe" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/east_barrens/ceiling) "sWy" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -17295,97 +17164,129 @@ /obj/structure/largecrate, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"sWZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/chips, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Director's Office" + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "sXi" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"sYK" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/cobweb, +"sYc" = ( +/turf/closed/wall, +/area/lv624/lazarus/yggdrasil) +"sYf" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/cult, /area/lv624/lazarus/armory) +"sYA" = ( +/obj/structure/machinery/chem_master/condimaster, +/obj/structure/surface/table, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "sYY" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"sZx" = ( +"sZE" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Robotics Landing Zone" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"tan" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) -"sZG" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"sZH" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 200 - }, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"sZU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) -"tay" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"tbM" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/asteroidwarning/north, -/area/lv624/ground/river/central_river) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"tbT" = ( +/obj/structure/largecrate, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "tbV" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"tce" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/newscaster{ - pixel_x = -30 - }, -/obj/structure/machinery/photocopier{ - pixel_y = 12 - }, -/obj/item/tool/wrench, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"tcD" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet/bcarpet02, -/area/lv624/ground/caves/north_central_caves) "tcF" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"tcV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 0 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"tdc" = ( +/obj/item/device/flash, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/flashbang{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/redcorner, +/area/lv624/lazarus/security) +"tdd" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "tde" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"tdh" = ( -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) +"tdO" = ( +/obj/structure/closet, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/shoes/centcom, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "tdX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"teh" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/platebot, +"teo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) +"tes" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "teJ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -17398,83 +17299,74 @@ "teS" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_west_jungle) -"tfr" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) -"tfw" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) +"teX" = ( +/obj/structure/fence, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) "tfA" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"tfF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/comms) -"tfN" = ( -/obj/structure/bed/chair{ +"tfB" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"tgo" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"tgp" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"tgt" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "tgL" = ( /mob/living/simple_animal/bat, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"tgT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"tgM" = ( +/obj/item/tool/pickaxe/jackhammer{ + desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; + force = 3; + name = "display jackhammer" }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "tgV" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) -"thq" = ( -/obj/structure/flora/pottedplant, -/obj/item/trash/cheesie, -/obj/structure/pipes/vents/pump, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"thu" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/barrens/east_barrens/ceiling) -"thG" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 14 +"tho" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" }, -/obj/item/clothing/head/soft/blue{ - pixel_x = 7; - pixel_y = 28 +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "thI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -17489,18 +17381,34 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"tim" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"tiw" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/central_jungle) -"tjt" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"tic" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) +"tiT" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"tjb" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/secure_storage) +"tjc" = ( +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) +"tjw" = ( +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"tjY" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "tka" = ( /obj/item/ammo_casing/bullet{ icon_state = "casing_9_1" @@ -17513,13 +17421,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tkC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "tlk" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, @@ -17531,12 +17432,6 @@ "tlE" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_west_jungle) -"tlH" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "tlQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid{ @@ -17547,43 +17442,54 @@ }, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"tlV" = ( -/obj/structure/girder, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage/outdoors) -"tmA" = ( -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" +"tmp" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" +/obj/item/clothing/mask/surgical, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) +/obj/item/storage/belt/medical/full, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "tmE" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"ton" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = -5; - pixel_y = -5 +"tmK" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/parts/gygax_armor{ + layer = 1 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"tne" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) +"tnq" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/central_river) +"tnK" = ( +/obj/item/tool/minihoe{ + pixel_x = 1; + pixel_y = -1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"tos" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/mime, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"tnL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "toz" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -17605,36 +17511,20 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"tpc" = ( -/obj/structure/bed, -/obj/structure/machinery/light, +"tpS" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"tpu" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"tpv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/showcase, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "tqe" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"tqp" = ( -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) +"tqt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/medbay) "tqH" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -17647,6 +17537,25 @@ /obj/item/tool/shovel, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"trv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Male Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"trz" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = -4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "trJ" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -17658,29 +17567,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"trX" = ( -/turf/open/floor/airless/asteroidfloor/northeast, -/area/lv624/ground/barrens/north_east_barrens) "tsa" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) -"tsB" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" +"tsr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "tsK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) -"tsN" = ( -/obj/structure/foamed_metal, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) +"tsZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "tti" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -17692,6 +17599,20 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"ttA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "ttI" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -17703,39 +17624,22 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"tui" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_x = 30 - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"tuN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel, -/obj/item/stack/sheet/wood{ - amount = 16 - }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "tvC" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) -"tvE" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/whiteyellow/southeast, -/area/lv624/lazarus/corporate_dome) +"tvU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "twg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"twn" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) "twC" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/east_barrens) @@ -17754,30 +17658,48 @@ "tyG" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"tyJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +"tyN" = ( +/obj/effect/landmark/corpsespawner/security/liaison, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "tzB" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) +"tzG" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/structure/flora/pottedplant, +/obj/structure/pipes/vents/pump, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "tzK" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"tzY" = ( -/obj/structure/closet/crate/secure/hydrosec, -/turf/open/floor/whitepurplecorner/east, +"tAb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"tBh" = ( +/obj/structure/surface/table/reinforced{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) +"tBx" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor, /area/lv624/lazarus/fitness) -"tBs" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "tBB" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -17786,17 +17708,20 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tBY" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks{ - pixel_x = -4 +"tBN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 4 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"tCO" = ( +/obj/item/ammo_casing, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/central_barrens) "tDa" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -17816,30 +17741,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"tFr" = ( -/turf/open/floor/whiteyellow, -/area/lv624/lazarus/main_hall) -"tGp" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) -"tGy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) -"tGQ" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) +"tGr" = ( +/obj/item/reagent_container/food/snacks/grown/banana, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "tHc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"tHE" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"tIj" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz2) +"tIG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Bathroom"; + req_access_txt = "100" + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "tIZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -17870,9 +17797,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"tKR" = ( -/turf/open/floor/whiteblue/east, -/area/lv624/lazarus/medbay) +"tLr" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/west_river) "tLQ" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -17882,10 +17810,11 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"tLW" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"tMa" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "tMh" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/flora/jungle/vines/heavy, @@ -17901,10 +17830,33 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"tOz" = ( -/obj/item/storage/firstaid/toxin, -/turf/open/floor/whiteblue/southwest, +"tNl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) +"tNq" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"tNV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/greengrid, +/area/lv624/lazarus/corporate_dome) +"tNX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"tNY" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "tOS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -17921,34 +17873,30 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"tQc" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) -"tQo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/prop/alien/hugger, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) -"tQt" = ( +"tPQ" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/whitepurplecorner/east, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) -"tQG" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz2) -"tRq" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/central_barrens) +"tQe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/binoculars, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"tQK" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_9_1" + }, +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) +"tQQ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"tRb" = ( +/obj/structure/largecrate, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "tRu" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -17972,17 +17920,24 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"tSw" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/central_barrens) -"tSM" = ( -/obj/structure/coatrack, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) +"tSu" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "tSN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"tTc" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "tTh" = ( /obj/effect/landmark/lv624/xeno_tunnel, /obj/structure/flora/jungle/vines/light_3, @@ -17993,64 +17948,30 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tUs" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/rdconsole, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"tUu" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/apron, -/obj/item/tool/shovel, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"tUE" = ( -/obj/structure/surface/table, -/obj/item/trash/cheesie, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"tUG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/medbay) +"tVf" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_central_jungle) "tVw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"tWb" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/costume/butler, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "tWK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"tXp" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "tXO" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) -"tYo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"tYC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/processor, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "tYW" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -18061,31 +17982,33 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/east_river) -"tZd" = ( -/obj/structure/largecrate, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "tZe" = ( /obj/item/tank/oxygen/yellow, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"tZq" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "tZD" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"tZT" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"uai" = ( -/obj/structure/machinery/light{ - dir = 4 +"uaj" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"uaI" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"uaq" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/device/radio/off{ + frequency = 1469 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "uaL" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, @@ -18098,34 +18021,31 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, /area/lv624/ground/river/central_river) +"ubD" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/weapon/twohanded/yautja/spear, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "ubN" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"ucf" = ( -/turf/open/floor/warnwhite/east, -/area/lv624/lazarus/fitness) -"ucs" = ( -/obj/structure/surface/table, -/obj/item/alien_embryo{ - pixel_y = 4 - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"ucv" = ( +"ucr" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"ucZ" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) +"udh" = ( /obj/structure/surface/table, -/obj/item/tool/surgery/scalpel{ - pixel_y = 12 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"ucB" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/shard, -/turf/open/floor/plating, -/area/lv624/lazarus/comms) +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/east_barrens/ceiling) "udj" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 @@ -18142,13 +18062,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"ufF" = ( -/obj/structure/safe/floor{ - name = "safe"; - spawnkey = 0 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) "ufG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -18169,13 +18082,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"uhM" = ( -/turf/open/floor/plating/asteroidwarning/west, -/area/lv624/lazarus/landing_zones/lz2) -"uhV" = ( -/obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"uhU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/multitool, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "uiz" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -18192,29 +18103,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"uiZ" = ( -/obj/structure/bed, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "ujd" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"ujr" = ( -/obj/item/stack/rods, -/obj/item/shard, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) -"ujT" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/west_jungle) +"ujX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "ukh" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_6_1" @@ -18230,16 +18128,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"ukD" = ( -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) -"ukU" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_10_1" - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) "ukY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -18248,57 +18136,31 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"uma" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/west_barrens) "umb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"umr" = ( -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) -"umM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) "unp" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_east_caves) -"unO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "unT" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"unU" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"uod" = ( -/obj/structure/surface/rack, -/obj/item/stack/sandbags/large_stack{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/stack/sandbags/large_stack{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "uop" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"uoR" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"uoS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "upM" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -18309,65 +18171,58 @@ /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"uqf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Chapel"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/chapel) "uqm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"uqS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"ura" = ( -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/jungle/west_jungle/ceiling) -"urG" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"urO" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_id = "Cargo"; + pixel_y = 24 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/vault, +/area/lv624/lazarus/quartstorage) "urY" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"usb" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/obj/structure/largecrate/supply/ammo/shotgun{ + pixel_y = 8 + }, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"usj" = ( +/obj/structure/surface/table, +/obj/item/alien_embryo{ + pixel_y = 4 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "usE" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"ute" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"usP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"utl" = ( -/obj/structure/fence, -/turf/open/floor/warning/east, -/area/lv624/ground/barrens/east_barrens) -"uue" = ( -/turf/open/floor/whiteyellowcorner/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"utR" = ( +/turf/open/floor/whiteyellow, /area/lv624/lazarus/main_hall) "uuf" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"uuK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "uuV" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/south, @@ -18378,44 +18233,40 @@ "uvh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"uvj" = ( -/turf/open/gm/dirtgrassborder/desert1, -/area/lv624/ground/barrens/south_eastern_barrens) -"uvs" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) +"uvU" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "uwG" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"uwL" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Nexus Landing Zone" - }, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz1) "uxh" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"uxi" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/south_west_caves) +"uxp" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/off{ + frequency = 1469 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "uxq" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"uxs" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/south_eastern_barrens) +"uxu" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/jungle/west_central_jungle) "uxT" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -18432,39 +18283,49 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"uAm" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "uAp" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) -"uAA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/corporate_dome) -"uBD" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "yellow"; - phone_id = "Communications"; - pixel_y = 24 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"uBG" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"uAK" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "uBR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"uDm" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"uCA" = ( +/obj/effect/spawner/random/powercell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"uDk" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) "uDs" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_central_jungle) @@ -18472,23 +18333,15 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"uDF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/cult, -/area/lv624/ground/caves/west_caves) -"uDI" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) "uDL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/structure/surface/table, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/obj/item/trash/cheesie, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "uEb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -18500,110 +18353,88 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"uEs" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"uEn" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/landing_zones/lz1) +"uEq" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) +"uEw" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"uEA" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"uFm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southeast, -/area/lv624/lazarus/landing_zones/lz2) -"uEC" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cargospecial2" +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_id = "Medbay" }, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "uFB" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"uGk" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"uGq" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) -"uGw" = ( -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) +"uGr" = ( +/turf/open/floor/warnwhite/east, +/area/lv624/lazarus/fitness) "uHc" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"uHn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "uHI" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"uIg" = ( -/obj/structure/machinery/sleep_console, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"uIi" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/chapel) -"uJt" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"uJO" = ( -/turf/open/floor/plating/platingdmg1, -/area/lv624/lazarus/secure_storage) -"uKh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) -"uKp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"uKu" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/east_barrens) +"uHK" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"uKl" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/cargo) "uKT" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"uLc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whiteyellowcorner/west, -/area/lv624/lazarus/corporate_dome) -"uLi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null +"uKZ" = ( +/obj/item/storage/box/beakers, +/obj/structure/surface/table, +/obj/structure/sign/safety/biohazard{ + pixel_x = -18 }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) -"uLH" = ( -/obj/item/trash/cheesie, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"uLs" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/sunglasses/big, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"uMa" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) "uMd" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -18621,21 +18452,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) -"uNj" = ( -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) -"uNo" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/sw_lz2) -"uNS" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/parts/gygax_armor{ - layer = 1 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"uMJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"uNZ" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"uOe" = ( +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "uOi" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -18654,16 +18482,53 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"uQs" = ( -/obj/structure/platform_decoration{ - dir = 8 +"uOQ" = ( +/obj/item/stack/cable_coil/random{ + pixel_x = 7; + pixel_y = 9 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"uQC" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, -/area/lv624/ground/jungle/west_jungle) +/area/lv624/ground/jungle/east_jungle) +"uPp" = ( +/obj/structure/lamarr{ + density = 0; + destroyed = 1; + icon_state = "labcageb0"; + occupied = 0 + }, +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/item/shard, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"uQS" = ( +/obj/item/stock_parts/matter_bin/super, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"uQU" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"uQV" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "uRb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -18672,31 +18537,24 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"uRB" = ( +/obj/item/device/assembly/timer, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "uRE" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/lazarus/landing_zones/lz2) -"uRU" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +"uRT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) +"uSa" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "uSq" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -18704,6 +18562,10 @@ "uSy" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/east_barrens) +"uSB" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "uSF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, @@ -18714,30 +18576,13 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"uTh" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz2) -"uTG" = ( -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) -"uTI" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "uUl" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_west_jungle) -"uUR" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"uUY" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) "uVU" = ( /obj/effect/landmark/lv624/xeno_tunnel, /obj/structure/flora/jungle/vines/light_3, @@ -18746,45 +18591,57 @@ "uWJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_west_caves) -"uXV" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_central_jungle) +"uXO" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"uXP" = ( +/obj/item/trash/cheesie, +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) "uYj" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"uYk" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/central_barrens) -"uYu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/whiteblue/east, -/area/lv624/lazarus/corporate_dome) "uYC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"uZf" = ( -/obj/item/tool/pickaxe/jackhammer{ - desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; - force = 3; - name = "display jackhammer" +"uYF" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"uYM" = ( +/obj/structure/ore_box, +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) +"uYR" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Nexus Landing Zone" }, -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) +"uYW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +/obj/structure/platform/stair_cut, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "uZp" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -18794,25 +18651,7 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"uZU" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"uZX" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"vam" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_east_jungle) -"vaP" = ( +"uZT" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; light_range = 1; @@ -18821,7 +18660,15 @@ pixel_y = -8 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/south_east_caves) +"vae" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"vam" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_east_jungle) "vbh" = ( /obj/item/device/radio/off{ frequency = 1469; @@ -18830,6 +18677,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"vbq" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"vbx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "vbK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -18837,10 +18694,19 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"vcS" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) +"vbX" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"vcr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "vcY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -18850,44 +18716,36 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"vdv" = ( +/obj/item/clothing/suit/armor/yautja_flavor, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"veb" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "ver" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"vfA" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "vfR" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"vfU" = ( -/obj/structure/bed, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/under/colonist, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"vgz" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_id = "Lakeside Bar"; - pixel_y = 32 +"vfS" = ( +/obj/item/ammo_magazine/rifle/extended, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) +"vgy" = ( +/obj/structure/foamed_metal{ + layer = 3.1 }, -/turf/open/floor/wood, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vgJ" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -18901,17 +18759,28 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"vgV" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/jungle/south_central_jungle) +"vgQ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "vhx" = ( /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"vhP" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/podhatchfloor, -/area/lv624/lazarus/comms) +"vhz" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/lv624/ground/jungle/south_west_jungle) "vih" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -18919,26 +18788,35 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"viy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 3 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +"vij" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/jungle/west_jungle) "viC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"vjf" = ( -/obj/structure/machinery/still, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"viI" = ( +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/jungle/west_jungle/ceiling) +"viW" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"vju" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -32 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/effect/spawner/random/powercell, +/obj/item/device/assembly/infra, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vjH" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -18951,76 +18829,82 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/south_nexus_road) +"vjT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/crowbar, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whiteyellow/northwest, +/area/lv624/lazarus/corporate_dome) "vle" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"vlh" = ( -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) "vly" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"vlT" = ( +/turf/open/floor/plating/asteroidwarning/southeast, +/area/lv624/lazarus/landing_zones/lz2) "vmv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"vmE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"vmy" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"vmF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"vnt" = ( -/obj/item/device/assembly/timer, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) +"vnj" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/central_river) "vnW" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"vox" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 +"voc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"vod" = ( +/obj/structure/kitchenspike, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/whiteyellow/northeast, -/area/lv624/lazarus/corporate_dome) -"voy" = ( -/obj/structure/foamed_metal{ - layer = 3.1 +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"von" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) +"vou" = ( +/obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"voS" = ( -/obj/item/reagent_container/hypospray, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"vpk" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"vpm" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, -/area/lv624/lazarus/landing_zones/lz1) +"vpj" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "vpu" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -19030,41 +18914,35 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"vpQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +"vqc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"vqK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "vqT" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"vrr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"vrc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"vrF" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) +"vss" = ( +/obj/structure/bed/chair/wood/wings{ dir = 4 }, -/turf/open/floor/whitegreencorner/west, -/area/lv624/lazarus/main_hall) -"vry" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"vrK" = ( -/obj/structure/filingcabinet, -/turf/open/floor/whiteyellow/southwest, -/area/lv624/lazarus/corporate_dome) -"vse" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome SMES"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "vsT" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -19077,6 +18955,22 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"vtq" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"vts" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "vtt" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -19084,39 +18978,67 @@ "vty" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"vtC" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"vtH" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"vum" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"vuv" = ( +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/jungle/south_central_jungle) "vuy" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"vuE" = ( +/obj/structure/fence, +/turf/open/floor/warning/north, +/area/lv624/ground/barrens/containers) +"vuU" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/river/central_river) +"vvo" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "vvs" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"vwc" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/red, -/area/lv624/lazarus/security) -"vwv" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"vwO" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/barrens/east_barrens/ceiling) -"vwX" = ( +"vvz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"vvR" = ( +/obj/item/tool/mop, /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) +"vvU" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"vvW" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) "vxa" = ( /obj/structure/flora/jungle/vines/light_3, /obj/item/stack/sheet/wood{ @@ -19131,54 +19053,34 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"vxS" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "vxU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"vyc" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/freezerfloor, +"vxV" = ( +/obj/item/clothing/glasses/regular, +/turf/open/floor/white, /area/lv624/lazarus/research) -"vyg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, +"vzm" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) -"vyy" = ( -/obj/structure/inflatable/door, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"vzh" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"vzm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, +"vzs" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) +"vzw" = ( +/obj/item/tool/kitchen/utensil/fork, /turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"vzU" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) +/area/lv624/lazarus/medbay) +"vzI" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "vAg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"vAr" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/north_jungle) -"vAA" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "vAB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -19196,73 +19098,93 @@ "vBe" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) +"vBs" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/obj/item/device/assembly/voice, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vBu" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"vBv" = ( -/obj/item/shard, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"vCg" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 +"vCd" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/central_barrens) +"vCt" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz-containers_swapped" }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) "vCG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"vDr" = ( +"vCT" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "vDy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"vDE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) +"vDB" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "vDW" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"vEh" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) +"vEe" = ( +/obj/effect/landmark/crap_item, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "vEp" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"vFf" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) -"vFK" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 9 +"vEP" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/lv624/lazarus/landing_zones/lz2) +"vEV" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/whitebluefull, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"vEX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"vFD" = ( +/obj/item/bedsheet/medical, +/turf/open/floor/white, /area/lv624/lazarus/medbay) +"vFE" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/main_hall) +"vGc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "vGg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -19282,19 +19204,34 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"vHS" = ( -/obj/effect/decal/remains/human, +"vIq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"vJl" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 + }, /turf/open/floor/white, -/area/lv624/lazarus/research) -"vJi" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/area/lv624/lazarus/corporate_dome) "vJs" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/item/bananapeel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"vJz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vKc" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -19303,37 +19240,35 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"vLc" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"vKx" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"vLv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) "vLO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/quartstorage/outdoors) -"vMw" = ( -/obj/structure/surface/table, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"vMG" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"vLU" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window, +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "vMV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"vNr" = ( -/obj/item/storage/box/beakers, -/obj/structure/surface/table, -/obj/structure/sign/safety/biohazard{ - pixel_x = -18 - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "vNs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -19341,14 +19276,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"vNK" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) -"vNL" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) "vNP" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -19370,19 +19297,18 @@ "vOF" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_central_jungle) -"vOG" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +"vPf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/lazarus/robotics) -"vPj" = ( -/obj/structure/machinery/computer/telecomms/server{ +/obj/structure/machinery/computer/telecomms/traffic{ + layer = 3.1; pixel_y = 16 }, /obj/structure/bed/chair/office/light{ - dir = 1 + dir = 1; + layer = 3.2 }, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) @@ -19394,79 +19320,61 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"vPV" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/jungle/east_jungle) -"vPW" = ( -/obj/structure/foamed_metal{ - layer = 3.1 +"vPM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/weapon/baseballbat/metal, -/obj/item/device/lightreplacer, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"vQi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/high_explosive/stick, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = 6 - }, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = -6 +"vPV" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/jungle/east_jungle) +"vQH" = ( +/obj/structure/closet, +/obj/item/clothing/under/rank/scientist, +/obj/structure/window/reinforced/tinted, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"vQK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"vQA" = ( -/obj/item/ammo_casing, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) -"vQQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vQR" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"vQV" = ( -/obj/item/folder/red, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) -"vRB" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"vRY" = ( -/obj/item/shard, -/turf/open/floor/podhatchfloor, -/area/lv624/lazarus/comms) -"vSo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"vSG" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_east_jungle) -"vSU" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz2) -"vTB" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 +"vQY" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"vSE" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/whiteblue/northeast, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/prop/alien/hugger, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) +"vSG" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_east_jungle) +"vTY" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) -"vUj" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_west_jungle) "vUw" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -19476,18 +19384,23 @@ /turf/closed/wall/cult, /area/lv624/ground/caves/south_west_caves) "vUA" = ( -/obj/item/clothing/under/shorts/blue, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"vUD" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/stack/sheet/wood{ + amount = 2 }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"vVe" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/lv624/ground/jungle/south_central_jungle) +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) +"vUQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/bronze, +/obj/item/storage/donut_box, +/turf/open/floor/red/west, +/area/lv624/lazarus/security) +"vVj" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) "vVC" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/east_caves) @@ -19495,36 +19408,22 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/rock/brown, /area/lv624/ground/jungle/west_jungle) -"vVK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"vWe" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "vWs" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"vWA" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"vXk" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, +"vWZ" = ( +/obj/structure/surface/table/holotable, /turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"vXl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) "vXP" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -19536,56 +19435,22 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"vYY" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, -/obj/effect/landmark/crap_item, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"vZx" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) -"vZQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "waw" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"waA" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/river/central_river) -"waH" = ( -/obj/item/device/analyzer, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"waS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/robotics) +"waU" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) "wbg" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"wbC" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "wbK" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -19603,10 +19468,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"wcB" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) +"wco" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) +"wcs" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) "wcK" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -19625,34 +19493,24 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) -"wdD" = ( +"weu" = ( +/obj/structure/machinery/vending/cigarette/colony, /obj/effect/landmark/crap_item, /turf/open/floor/white, /area/lv624/lazarus/main_hall) -"wdV" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 2 - }, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) "weH" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"weI" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 +"weJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/turf/open/floor/whiteblue/east, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"wfh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "wgk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -19660,25 +19518,29 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/caves/sand_temple) -"whq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/pole/fancy_cane, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +"wgJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"wgR" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) +"whc" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "whx" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"whP" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -3 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"whN" = ( +/obj/structure/largecrate/random, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "whQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -19696,28 +19558,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) -"wjA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/lighter, -/obj/item/device/analyzer, -/obj/item/device/multitool, -/obj/item/device/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"wjI" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) "wjT" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 40 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"wkr" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"wjX" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "wkt" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/east_river) @@ -19725,14 +19579,19 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"wkN" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "wkP" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"wkT" = ( +/obj/structure/machinery/light, +/obj/structure/bed/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "wkZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/east, @@ -19748,12 +19607,53 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"wlB" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"wlY" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "wmj" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"wmD" = ( +/obj/item/clothing/glasses/regular, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"wmM" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"wmV" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"wnM" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "woF" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/barricade/metal/wired{ @@ -19769,23 +19669,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"woV" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) "wpw" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"wpz" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/east_barrens) +"wpH" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "wpY" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) +"wqd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Bay" + }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "wqy" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -19799,57 +19699,40 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"wrg" = ( -/turf/open/floor/whiteyellowcorner, -/area/lv624/lazarus/main_hall) "wrN" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"wrZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"wsD" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) +"wsR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) "wsZ" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"wtf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100" - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/fitness) -"wtv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"wte" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/banana, /turf/open/floor/bar, /area/lv624/lazarus/canteen) "wty" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"wuN" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"wvt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) +"wtA" = ( +/obj/item/trash/cheesie, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"wtL" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/jungle/south_central_jungle) "wvO" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -19858,20 +19741,29 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) +"wwn" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"wwH" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wxg" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "wxP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_jungle) -"wyU" = ( -/obj/item/tool/shovel, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"wzi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +"wyr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "wzG" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -19881,9 +19773,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"wAu" = ( -/turf/open/floor/cult, -/area/lv624/ground/caves/west_caves) "wAF" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -19898,38 +19787,26 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"wAR" = ( -/obj/item/clothing/head/welding, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_west_jungle) -"wAV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) -"wBB" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "wBS" = ( /obj/item/clothing/suit/armor/yautja_flavor, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"wBU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wCa" = ( +/obj/item/trash/raisins, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "wCs" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"wDr" = ( -/turf/open/floor/whitebluecorner, -/area/lv624/lazarus/medbay) "wEO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -19940,60 +19817,125 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"wET" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "wFp" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/river/east_river) -"wHf" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/barrens/central_barrens) +"wGW" = ( +/obj/item/stack/rods, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "wHh" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"wHU" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"wHY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Corporation Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"wIx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"wIU" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"wIX" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/item/coin/diamond, +/obj/item/m_gift, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/clothing/under/marine/veteran/pmc, +/obj/item/storage/fancy/cigar, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) "wJA" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"wJE" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/caves/sand_temple) +"wJD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Corporate Liaison" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "wJG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"wJL" = ( +/turf/open/gm/dirtgrassborder/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) "wJT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"wKL" = ( -/obj/structure/machinery/light, -/obj/structure/bed/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"wJX" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/regular, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"wKk" = ( +/obj/structure/flora/pottedplant, +/obj/item/trash/cheesie, +/obj/structure/pipes/vents/pump, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"wKC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"wLa" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "wLf" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/repair_droid{ - layer = 2; - pixel_y = -10 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"wLv" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/corporate_dome) "wLT" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -20002,34 +19944,45 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"wNb" = ( -/obj/item/device/flashlight/on, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"wNN" = ( -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"wPF" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ +"wNw" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"wNz" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) +/obj/structure/computerframe{ + anchored = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"wNO" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) +"wOJ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"wOU" = ( +/obj/item/trash/popcorn, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "wPN" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) -"wQc" = ( -/obj/structure/largecrate, -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) -"wQf" = ( -/obj/structure/holohoop{ - dir = 1 +"wPX" = ( +/obj/structure/platform_decoration, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"wPZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/warnwhite, -/area/lv624/lazarus/fitness) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "wQj" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/mar40, @@ -20043,6 +19996,13 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"wQt" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "wQK" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -20067,10 +20027,6 @@ "wSo" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/west_barrens) -"wSP" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) "wTa" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -20082,15 +20038,25 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"wTD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "wTL" = ( /obj/item/storage/firstaid, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"wUk" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"wUq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "wUv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/flora/jungle/vines/heavy, @@ -20100,28 +20066,12 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"wUB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"wUD" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/whitegreencorner, -/area/lv624/lazarus/main_hall) -"wUL" = ( -/turf/open/floor/whitebluecorner/east, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"wUT" = ( -/obj/structure/foamed_metal, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) -"wUU" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) -"wVd" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) "wVk" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) @@ -20131,6 +20081,20 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"wWd" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wWf" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "wWm" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/north_east_jungle) @@ -20138,13 +20102,20 @@ /obj/structure/surface/rack, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"wWv" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/lv624/ground/colony/telecomm/sw_lz2) +"wWL" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "wWS" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"wWW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "wXg" = ( /obj/item/stack/sheet/metal{ pixel_x = 16; @@ -20155,34 +20126,17 @@ "wXp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/west_central_jungle) -"wXs" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_9_1" - }, -/turf/open/floor/whiteyellow, -/area/lv624/lazarus/corporate_dome) "wXy" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"wXL" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/shoes/dress, -/turf/open/floor/whiteblue/northwest, +"wYn" = ( +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "wYp" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"wYw" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cargospecial1" - }, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) "wYz" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -20195,13 +20149,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"wYO" = ( -/obj/structure/closet, -/obj/item/tool/crowbar, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "wZc" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -20210,16 +20157,23 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"wZn" = ( -/obj/structure/platform_decoration{ - dir = 8 +"wZQ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "wZW" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"xaj" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "xak" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 @@ -20230,70 +20184,96 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"xaz" = ( +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) +"xaS" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/stack/flag/red, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"xbf" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) +"xbG" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "xch" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"xck" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "xcC" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"xda" = ( -/obj/structure/closet/crate, -/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, -/obj/item/ammo_magazine/rifle/mar40/extended, -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/dark, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"xcM" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/structure/surface/rack, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "xdb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"xdk" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "xdO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_west_jungle) -"xdP" = ( -/turf/open/floor/warnwhite/southwest, -/area/lv624/lazarus/fitness) "xei" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"xex" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "xeT" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"xfe" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"xfU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null +"xfb" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/delivery, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"xfs" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + name = "Warrior hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"xgm" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/engineering) -"xgc" = ( -/turf/open/floor/plating/asteroidwarning/north, -/area/lv624/lazarus/landing_zones/lz2) "xgE" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) @@ -20304,20 +20284,17 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"xhj" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz2) -"xhp" = ( -/obj/structure/machinery/light{ - dir = 4 +"xhi" = ( +/obj/item/shard, +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) +"xhs" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "xhv" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -20325,63 +20302,31 @@ "xhC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"xhX" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"xid" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"xip" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7 +"xhI" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 }, -/obj/item/tool/kitchen/knife/butcher, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood/wood_broken4, -/area/lv624/ground/caves/north_central_caves) -"xiA" = ( -/obj/structure/cargo_container/wy/mid, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) +"xhY" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) +"xjC" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) +"xlz" = ( +/obj/structure/cargo_container/wy/right, /turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) -"xjc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"xjk" = ( -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"xlj" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/river/central_river) -"xlR" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ +"xlL" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Warrior hide" + icon_state = "p_stair_full" }, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) @@ -20389,28 +20334,9 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"xns" = ( -/obj/item/stack/cable_coil/random{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/east_jungle) -"xnx" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/asteroidwarning/east, -/area/lv624/ground/colony/telecomm/sw_lz2) -"xob" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +"xnv" = ( +/turf/open/floor/whitegreencorner/west, +/area/lv624/lazarus/main_hall) "xov" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -20424,126 +20350,137 @@ "xpf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) -"xpk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/robotics) +"xpg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/pie, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "xpz" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"xpL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"xpG" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"xpM" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "xpR" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_east_caves) -"xqR" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"xqU" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/carpet/bcarpet02, +/area/lv624/ground/caves/north_central_caves) +"xry" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/foamed_metal, /turf/open/floor/dark, -/area/lv624/lazarus/comms) -"xrd" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"xsi" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"xso" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"xsw" = ( -/turf/open/gm/dirtgrassborder/desert_dug, -/area/lv624/ground/barrens/south_eastern_barrens) +/area/lv624/lazarus/engineering) +"xse" = ( +/obj/item/device/flashlight, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) +"xsK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/candle, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) "xsN" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"xto" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 26 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"xts" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"xsX" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirt/desert1, +/area/lv624/ground/river/east_river) "xuk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_central_jungle) -"xuz" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/platebot, -/area/lv624/lazarus/engineering) +"xux" = ( +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) "xuK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) +"xuU" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"xvq" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"xvv" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "xvV" = ( /obj/effect/landmark/nightmare{ insert_tag = "sandtemple-lz1" }, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"xvY" = ( +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) +"xwq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + locked = 1; + name = "\improper Corporation Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "xwr" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"xwt" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"xwu" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/light/small{ +"xwM" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "xwN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"xxx" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"xyF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"xyf" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) "xyH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -20552,32 +20489,49 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"xyJ" = ( -/obj/structure/closet/coffin, -/turf/open/floor/chapel/west, -/area/lv624/lazarus/chapel) +"xyL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"xyZ" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) "xze" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"xzq" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass2, +/area/lv624/ground/jungle/north_jungle) +"xzu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "xzD" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_jungle) -"xzF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"xAw" = ( -/obj/structure/foamed_metal, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"xAR" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/whiteyellowfull/east, +"xAs" = ( +/obj/structure/surface/table, +/obj/item/folder, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"xAv" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) +"xAZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/pole/fancy_cane, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "xBm" = ( /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) @@ -20585,14 +20539,39 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"xBR" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) -"xBS" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"xCa" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"xCz" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"xCB" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"xCP" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + locked = 1; + name = "\improper Nexus Dome Director's Quarters"; + req_access_txt = "100" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/hop) "xDl" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/west, @@ -20600,20 +20579,50 @@ "xDw" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/ground/colony/telecomm/cargo) +"xDz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"xDC" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"xDE" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/cult, +/area/lv624/ground/caves/east_caves) "xDR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"xDX" = ( +"xDT" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/jungle/west_jungle) +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "xEt" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) -"xFh" = ( -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/south_west_caves) +"xFt" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"xFL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"xFV" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/mime, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "xGd" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -20627,41 +20636,41 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"xGS" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) +"xGZ" = ( +/turf/open/floor/white, +/area/lv624/lazarus/chapel) "xHa" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"xHP" = ( -/turf/open/shuttle/bright_red, -/area/lv624/ground/barrens/north_east_barrens) +"xHM" = ( +/turf/open/floor/whiteyellow/north, +/area/lv624/lazarus/main_hall) "xHW" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"xHX" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"xIS" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -2 +"xIi" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"xII" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) +"xJv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "xJA" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"xJE" = ( +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "xJG" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-skylight" @@ -20682,43 +20691,57 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"xKW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"xLe" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/obj/item/tool/wrench, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "xLi" = ( /obj/structure/surface/rack, /obj/item/storage/box/lights/mixed, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"xLq" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"xLO" = ( +"xLu" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"xMg" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/east_river) +"xMG" = ( +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) +"xMN" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"xMZ" = ( /obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 }, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) -"xLP" = ( -/turf/open/floor/whitegreencorner, -/area/lv624/lazarus/main_hall) -"xMC" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"xMP" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "xNi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -20726,24 +20749,25 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"xNA" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"xNE" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "xNK" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) -"xNQ" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/jungle/south_central_jungle) -"xOr" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"xOG" = ( -/turf/open/gm/dirtgrassborder/desert3, -/area/lv624/ground/barrens/south_eastern_barrens) +"xOT" = ( +/obj/structure/surface/rack, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "xPk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/south_medbay_road) @@ -20755,41 +20779,15 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) +"xPO" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "xPS" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"xPT" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) -"xQd" = ( -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"xQj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"xQs" = ( -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"xQz" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "garage_lv"; - name = "\improper Garage" - }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) "xQI" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -20808,19 +20806,21 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"xRB" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ +"xRI" = ( +/obj/structure/girder, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"xRR" = ( +/obj/structure/barricade/wooden{ dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" + pixel_y = 7 }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"xRK" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirt/desert1, -/area/lv624/ground/river/east_river) +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/robotics) +"xSj" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "xSk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, @@ -20831,18 +20831,48 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"xTb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/dark, +"xTc" = ( +/obj/item/clothing/head/helmet/augment{ + desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; + name = "alien mask"; + unacidable = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) +"xTC" = ( +/obj/item/storage/firstaid/adv/empty, +/obj/structure/machinery/door_control{ + id = "secure_outer_blast"; + name = "Secure Outer Doors"; + pixel_x = 25; + pixel_y = -5 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Corporate Office"; + pixel_y = 24 + }, +/turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) -"xTq" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage) +"xTK" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "xTM" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) +"xTQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) "xTT" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle) @@ -20853,40 +20883,60 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"xVz" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) "xVN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/south_central_jungle) -"xVR" = ( -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/robotics) "xWy" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"xWJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"xWK" = ( -/obj/effect/decal/remains/human, +"xWN" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"xWZ" = ( /obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/door_control{ + id = "science_blast"; + name = "Science Wing Lockdown"; + pixel_x = 25 + }, +/obj/effect/landmark/crap_item, /turf/open/floor/white, /area/lv624/lazarus/research) +"xXe" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "xXB" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"xXM" = ( -/obj/structure/surface/table, -/obj/structure/machinery/door/window/westright{ - layer = 2.9 +"xXH" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome SMES"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "xXZ" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) @@ -20900,44 +20950,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"xYO" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"xZz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/robotics, +"xZi" = ( +/obj/structure/machinery/recharge_station, /turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) -"xZD" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/sunglasses/big, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "xZE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"yaq" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"yaW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"yah" = ( +/obj/structure/fence, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/ground/river/central_river) "ybu" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, @@ -20948,6 +20974,23 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) +"ycd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"ycy" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/west_barrens) +"ydc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "ydp" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -20956,44 +20999,36 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"ydO" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"yei" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) -"yew" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - light_on = 1; - light_range = 1; - light_system = 1; - pixel_x = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"yeZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Storage Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/white, -/area/lv624/lazarus/quartstorage) "yfe" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"yfk" = ( +/obj/item/device/multitool, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"yfM" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "yga" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_east_jungle) +"ygg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/glasses/sunglasses, +/obj/item/trash/cheesie, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "ygn" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -21002,63 +21037,34 @@ /obj/structure/surface/rack, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"ygw" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"ygy" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"ygA" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz2) +"ygF" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/river/central_river) -"ygO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/device/flashlight{ - pixel_y = 5 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "yhd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"yhB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "yhY" = ( /obj/structure/inflatable/door, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"yie" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/structure/surface/rack, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) "yiE" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"yiV" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "yjh" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -21067,11 +21073,6 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"yjD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "yjN" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ @@ -21079,12 +21080,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"yjS" = ( -/turf/open/floor/plating/asteroidwarning/southwest, -/area/lv624/lazarus/landing_zones/lz2) "yjV" = ( -/turf/open/floor/warnwhite/northwest, -/area/lv624/lazarus/fitness) +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"yku" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "ykM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/pointybush, @@ -21097,9 +21100,6 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"ylQ" = ( -/turf/open/floor/wood, -/area/lv624/lazarus/hop) (1,1,1) = {" aac @@ -21722,7 +21722,7 @@ gbz nsk aZb aqS -qfy +cRL atC npQ atC @@ -21950,10 +21950,10 @@ nsk nsk aun ase -raQ +sTs atC vVD -hFI +vij atu asx aro @@ -22181,7 +22181,7 @@ aAl ase pbd avf -rYl +jkV aAl ase atu @@ -22225,7 +22225,7 @@ tMh aKb aVS aVS -lBb +pFq aVS aXy aKf @@ -22344,7 +22344,7 @@ mdQ mdQ gwP gwP -kEb +iBf mdQ mdQ mdQ @@ -22680,11 +22680,11 @@ wEQ aKb aKb lyz -qtP -kuA -ewE -ewE -qtP +dKx +dCS +mYQ +mYQ +dKx aVS aLi aVK @@ -22813,16 +22813,16 @@ mdQ ane afV afV -rjT -rjT -rjT +fdw +fdw +fdw afV -rjT -rjT -rjT -rjT -tim -rjT +fdw +fdw +fdw +fdw +tQQ +fdw afV afV afV @@ -22869,10 +22869,10 @@ aAl aAl aAl aAl -iTK +lHE aAl aAl -gqe +qfX atu atu atu @@ -22908,9 +22908,9 @@ aVK aKf aId aVS -pPB -ewE -ewE +cGH +mYQ +mYQ qBW aXQ aVS @@ -23030,30 +23030,30 @@ dmT grW xKL gwP -kEb +iBf tOS gwP -qNA +aOg gwP gwP gwP gwP gwP -dRe -rjT -rjT -rjT -rjT -rjT -rjT -vDE -rjT -rjT -rjT -rjT -rjT -rjT -rjT +ujX +fdw +fdw +fdw +fdw +fdw +fdw +bgX +fdw +fdw +fdw +fdw +fdw +fdw +fdw afV ane ane @@ -23136,11 +23136,11 @@ hqQ aLj aVT acr -nhO -ewE +jSh +mYQ jGs qBW -ewE +mYQ aVS aYm aXh @@ -23245,16 +23245,16 @@ mdQ mdQ mdQ gwP -qNA +aOg gwP -rpa +cEk tOS gwP wQK cQB dmT dmT -kGH +dNK ndk grW xKL @@ -23267,21 +23267,21 @@ tOS gwP gwP gwP -dRe -rjT -rjT -jfb -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT +ujX +fdw +fdw +dOE +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw afV ahF ahF @@ -23293,7 +23293,7 @@ amy ane ane ane -cVd +sVt ahF ane ane @@ -23364,10 +23364,10 @@ aKf aLj exf acr -pwT +mGj aWP -ewE -ewE +mYQ +mYQ qBW axR xdO @@ -23495,25 +23495,25 @@ gwP gwP gwP tOS -dRe -rjT -rjT -vDE -rjT -jfb -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT +ujX +fdw +fdw +bgX +fdw +dOE +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw afV ahF ahF -hyc +uxi ahF ahF ahF @@ -23592,10 +23592,10 @@ aVK aPf auy aVS -qtP -ewE -bvk -ewE +dKx +mYQ +nBO +mYQ qBW aVS aYo @@ -23719,25 +23719,25 @@ gwP mdQ gwP gwP -kEb +iBf gwP gwP gwP -dRe -rjT -jfb -rjT -jfb -rjT +ujX +fdw +dOE +fdw +dOE +fdw afV -rjT -rjT -vDE -rjT -rjT -rjT -vDE -rjT +fdw +fdw +bgX +fdw +fdw +fdw +bgX +fdw afV ahF ahF @@ -23820,11 +23820,11 @@ gds aKb aKb aVS -joP -ewE +vtq +mYQ qBW -fbk -qtP +nQR +dKx lyz aYp aYv @@ -23953,19 +23953,19 @@ gwP ane afV afV -rjT -rjT -rjT +fdw +fdw +fdw afV -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT -rjT +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw +fdw afV ahF ahF @@ -23978,7 +23978,7 @@ ahF ahF ahF ahF -qtz +gGE ahF ane ane @@ -24050,9 +24050,9 @@ aVw aVS axR qBW -ewE -ewE -vry +mYQ +mYQ +hTB lyz aLw aXh @@ -24185,15 +24185,15 @@ afV afV afV afV -rjT -vDE -rjT -rjT -rjT -rjT -rjT -rjT -rjT +fdw +bgX +fdw +fdw +fdw +fdw +fdw +fdw +fdw afV ahF ahH @@ -24234,7 +24234,7 @@ aAl aAl aAl aAl -okG +uUY aAl kQY ayV @@ -24277,8 +24277,8 @@ aXh aKf aVS aXS -joP -qtP +vtq +dKx aVS aXS aVS @@ -24382,7 +24382,7 @@ mdQ mdQ mdQ mdQ -dyl +mJp gwP gwP gwP @@ -24397,7 +24397,7 @@ mdQ gwP gwP gwP -qNA +aOg gwP gwP mdQ @@ -24416,8 +24416,8 @@ afV afV afV afV -cNO -hyc +diJ +uxi ahF afV afV @@ -24610,7 +24610,7 @@ gwP mdQ mdQ gwP -qNA +aOg gwP gwP gwP @@ -24618,7 +24618,7 @@ wQK dmT dmT nRA -fcK +bqc onU mdQ uRe @@ -24642,7 +24642,7 @@ ahF ahF ahF ahF -hyc +uxi ahF ahF ahF @@ -24653,7 +24653,7 @@ ahF ahF ahF ahF -cVd +sVt ahF ane ane @@ -24837,10 +24837,10 @@ gwP gwP mdQ mdQ -rDl +jNJ gwP gwP -dyl +mJp gwP hjo gvm @@ -24876,7 +24876,7 @@ ahF ahF ahF ahF -xFh +qEs ahF ahF ahF @@ -25102,7 +25102,7 @@ ahF ahF ahF ahF -cVd +sVt ahF ahF ahH @@ -25110,14 +25110,14 @@ ahF ahF ahF ahF -qtz +gGE ahF ane -xFh +qEs ahF ahF ahF -hyc +uxi ahF ahF ane @@ -25293,7 +25293,7 @@ gwP gwP gwP aca -qNA +aOg gwP gwP gwP @@ -25306,8 +25306,8 @@ qhl qhl wHh gwP -qNA -kEb +aOg +iBf gwP mdQ mdQ @@ -25555,7 +25555,7 @@ ahF xYD hmq lYt -mBD +kCg fmW rHV nys @@ -25573,9 +25573,9 @@ ane ahF ahF ahF -cNO -cNO -xFh +diJ +diJ +qEs afV ane ane @@ -25791,7 +25791,7 @@ nys ahF ahF ahF -hyc +uxi ahF ahH ahF @@ -26008,7 +26008,7 @@ ane ane ahF wAF -lvg +kxd fmW uWJ uWJ @@ -26050,7 +26050,7 @@ asp aud auP aAl -uQC +fRq aAl aAl aAl @@ -26137,7 +26137,7 @@ tgL abN abN lTv -yew +oxp sBY amk amk @@ -26174,7 +26174,7 @@ sBY onU onU onU -kOe +pTf tRM uRe gwP @@ -26248,7 +26248,7 @@ rHV vXP nys ahF -hyc +uxi ahF ahF ahF @@ -26286,7 +26286,7 @@ aFm aAl aAl aAl -xDX +qaS asa asa asa @@ -26371,7 +26371,7 @@ sBY sBY amk amk -eDp +nGe qVN sBY qVh @@ -26507,14 +26507,14 @@ amG auP aAl aFm -ura +viI auf aXC aFm aAl aqi aAl -ujT +fQk aAp aAp baN @@ -26535,9 +26535,9 @@ aAp sqw cIL cIL -sMV -mcS -lFM +cAo +ygA +wnM aKd cIL sqw @@ -26649,7 +26649,7 @@ jGU hhs hhs hhs -fcK +bqc dOA fRU grW @@ -26689,7 +26689,7 @@ ane ane ane ahF -hyc +uxi ahF ahF doe @@ -26702,7 +26702,7 @@ ikA fmW fmW wty -mBD +kCg ane ane ane @@ -26715,7 +26715,7 @@ ane ahF ahF ahH -qtz +gGE ahF ane ane @@ -26737,7 +26737,7 @@ aAl aFm auf auf -jlc +rHn aFm aAl omu @@ -26935,8 +26935,8 @@ ane ane afV afV -cNO -cVd +diJ +sVt afV afV ane @@ -26991,9 +26991,9 @@ cIL aAp tZD vxa -xhj -dRK -uEs +xbf +gwg +tIj vxa tZD aAp @@ -27149,12 +27149,12 @@ ane ane ane ahF -xFh +qEs ahF wAF fmW fmW -iPt +jYd fmW uWJ uWJ @@ -27163,7 +27163,7 @@ ane ane afV ahF -hyc +uxi ahF ahF afV @@ -27238,7 +27238,7 @@ aXh aXh aXh vxU -sdg +oGI nLk ddS jHT @@ -27276,7 +27276,7 @@ sBY sBY sBY sBY -yew +oxp sBY sBY hKP @@ -27378,7 +27378,7 @@ afV afV afV ahF -qtz +gGE wAF fmW fmW @@ -27420,7 +27420,7 @@ aAl aAl aFm aIH -dWS +nVv auf aFm aAl @@ -27428,7 +27428,7 @@ aAl aAl aAp aXX -qNi +oIT aJF aJF aJF @@ -27442,7 +27442,7 @@ aJF aJF aJF aJF -qNi +oIT aJF aJF aJF @@ -27499,7 +27499,7 @@ abN abN vGy sBY -vCg +jCS sBY amk amk @@ -27533,7 +27533,7 @@ dhD vGy sBY sBY -eDp +nGe sBY amk amk @@ -27602,7 +27602,7 @@ ahF ahF ahF ahF -qtz +gGE ahF afJ xYD @@ -27622,7 +27622,7 @@ ahF ahF ahF ahF -qtz +gGE ahF ahF ahF @@ -27652,38 +27652,38 @@ aFQ aFm aFm aAl -wWv -cJV +hSR +gta aAp nmO aZP -xgc -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -uhM -yjS -qNi +dSr +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +vEP +ens +oIT tZD aKb aXh @@ -27824,7 +27824,7 @@ acp ane ane ahF -xFh +qEs ahF ahF ahH @@ -27878,14 +27878,14 @@ oTJ uiW sqs oTJ -wWv -cJV -hsv -uNo +hSR +gta +pGG +mcu aAp nmO aZP -xgc +dSr aRg aCh kWJ @@ -27910,7 +27910,7 @@ qNQ aCh aRg aRg -koW +lpI tZD tZD aPf @@ -28062,7 +28062,7 @@ gTj nys afV wAF -wuN +xpM uWJ uWJ ane @@ -28079,7 +28079,7 @@ ahF ahF ahF ahF -cVd +sVt ahF ahF ahF @@ -28106,14 +28106,14 @@ azB sOC oTJ oTJ -mBP -hsv -hsv -hsv +kNF +pGG +pGG +pGG aAp aXX aZP -xgc +dSr oOB aRg aCi @@ -28138,7 +28138,7 @@ aCi aRg odw aRg -koW +lpI tZD aAp aXj @@ -28151,8 +28151,8 @@ aTf aTf aTf aTf -dqX -dTA +sRg +rxk aUj aTf aTf @@ -28251,9 +28251,9 @@ mdQ mdQ mdQ acp -wAu -wAu -wAu +kro +kro +kro acp acp gwP @@ -28334,14 +28334,14 @@ jRJ oTJ ukh njl -mXx -xnx +lpR +foY oXI aAp fuy aXX aZP -xgc +dSr aTv aRg aRg @@ -28366,7 +28366,7 @@ aKO aRg aEw aRg -koW +lpI tZD aAp rTG @@ -28478,11 +28478,11 @@ mdQ mdQ mdQ acp -wAu -wAu -wAu -mQW -wAu +kro +kro +kro +hwc +kro acp gwP gwP @@ -28513,10 +28513,10 @@ vMV lUQ bJQ uWJ -hAe +qpS fmW lWl -cVd +sVt afV ane ane @@ -28530,7 +28530,7 @@ ahF ahF ahF ahF -cVd +sVt ahF ahV ahF @@ -28569,7 +28569,7 @@ aAp cIL nmO aZP -xgc +dSr kvE aRg aRg @@ -28594,7 +28594,7 @@ aRg aRg byK aRg -koW +lpI tZD tZD nmO @@ -28636,7 +28636,7 @@ abN abN cMG waw -yew +oxp abM abM abM @@ -28706,12 +28706,12 @@ mdQ mdQ mdQ acp -wAu -wAu -uDF -wAu -mQW -wAu +kro +kro +bJn +kro +hwc +kro gwP gwP gwP @@ -28754,7 +28754,7 @@ afV ahF ahF ahF -xFh +qEs ahF ahH ahF @@ -28764,7 +28764,7 @@ ahF ahF ahF ahF -hyc +uxi ahF ane ane @@ -28797,7 +28797,7 @@ aAp aAp nmO aZP -xgc +dSr aTt aRg aRg @@ -28822,25 +28822,25 @@ aRg aRg aZT aRg -koW -bOA +lpI +dMQ rJS -ldM +uvU aVK vxU aXh aTf aTf aTf -sZH +lqn aUQ aVX aUQ aWT aUQ -gih +nub aUQ -qmP +lZd aTf aTf aTf @@ -28934,11 +28934,11 @@ mdQ mdQ mdQ acp -wAu -mQW -wAu -wAu -wAu +kro +hwc +kro +kro +kro acp gwP gwP @@ -28972,10 +28972,10 @@ uWJ uWJ dOb lWl -hyc +uxi ahF ahF -cVd +sVt ahF ahF ahF @@ -29025,7 +29025,7 @@ aAp aAp aXX aZP -xgc +dSr oOB aRg aRg @@ -29050,10 +29050,10 @@ aRg aRg odw aRg -koW -qfl +lpI +ovF bOy -pip +cZH aKf aVK aXh @@ -29062,7 +29062,7 @@ aTf aUj aUQ aUQ -gih +nub aUQ ygp aUQ @@ -29163,9 +29163,9 @@ mdQ mdQ xZE acp -wAu -wAu -wAu +kro +kro +kro acp xZE gwP @@ -29192,7 +29192,7 @@ acp ane ane ane -cVd +sVt ahF wAF fmW @@ -29205,7 +29205,7 @@ ahF ahF ahF ahF -cVd +sVt ahF ahF ahF @@ -29253,7 +29253,7 @@ aAp nmO aXX aZP -xgc +dSr aTv aRg aRg @@ -29265,7 +29265,7 @@ aRg aKO aRg aRg -pGJ +sZE aRg aRg aRg @@ -29278,10 +29278,10 @@ aRg aRg aEw aRg -koW -oSW +lpI +vUA mxW -tQG +waU aVK aXh aXh @@ -29290,7 +29290,7 @@ aTf aUj aUQ aUQ -dBM +cuu aUQ aWU aUQ @@ -29437,7 +29437,7 @@ ahF ahF ahF ahF -cVd +sVt ahF ahF ahF @@ -29481,7 +29481,7 @@ aAp cIL nmO aZP -xgc +dSr kvE aRg aRg @@ -29506,10 +29506,10 @@ aRg aRg byK aRg -koW -uTh +lpI +mkF lYI -vSU +dTQ haN aXh wXy @@ -29519,11 +29519,11 @@ aUj aUQ aUQ aVZ -rOt +fWR ygp aUQ aXE -lox +rxM aUQ aYu aTf @@ -29660,7 +29660,7 @@ fmW qSG ahF ahF -qtz +gGE ahF ahH ahF @@ -29709,7 +29709,7 @@ aAp aAp nmO aZP -xgc +dSr aTt aRg aRg @@ -29734,24 +29734,24 @@ aRg aRg aZT aRg -koW -bql +lpI +whc tZD -bxt +dlQ aVK aXh aXh aTf aTf aTf -rnC -gih +ncJ +nub aWa -mUm -oCP +aoy +rDk aUQ -hkp -hlj +dHT +bax aUQ aTf aTf @@ -29875,12 +29875,12 @@ acp ane ane ahF -qtz +gGE ahF ahF ahF wYz -mBD +kCg uWJ ane uWJ @@ -29937,7 +29937,7 @@ aAp nmO aXX aZP -xgc +dSr oOB aRg aRg @@ -29962,7 +29962,7 @@ aRg aRg odw aRg -koW +lpI tZD tZD jsd @@ -29973,13 +29973,13 @@ vxU aTf aTf aUS -uJO +qLg ygp -lox -tlH -mkn -cWO -gih +rxM +rgk +qhn +oHH +nub aYf aTf aTf @@ -30004,7 +30004,7 @@ abN pSe kzn sBY -iOy +vmy stt abM abM @@ -30165,7 +30165,7 @@ aAp aXX aXX aZP -xgc +dSr aTv aRg aRg @@ -30190,7 +30190,7 @@ aRg aRg aEw aRg -koW +lpI tZD aAp rTG @@ -30201,13 +30201,13 @@ aXh aTf aTf aTf -bkh +bNa aUQ -mkn -lox -sgb +qhn +rxM +tjb aUQ -kfd +iJK aTf aTf aTf @@ -30393,7 +30393,7 @@ aAp nmO aXX aZP -xgc +dSr kvE aRg aCi @@ -30418,7 +30418,7 @@ aCi aRg byK aRg -koW +lpI tZD aAp aAp @@ -30431,11 +30431,11 @@ aTf aTf aTf aTf -wvt -uJO -cMZ -kfd -fYD +lTN +qLg +hpg +iJK +kPD aTf aTf aXh @@ -30567,7 +30567,7 @@ ahF ahF doe pIl -ihy +xCa uWJ ane ane @@ -30578,7 +30578,7 @@ ahF ahF ahF ahF -cVd +sVt ahF ahF ahF @@ -30621,7 +30621,7 @@ cIL cIL nmO aZP -xgc +dSr aRg aAJ aGX @@ -30646,7 +30646,7 @@ aDO aAJ aRg aRg -koW +lpI tZD aAp aAp @@ -30658,14 +30658,14 @@ aXh efp aTf aTf -slV -pvk -iSl -chb -lGI -bEz -jNe -kBq +lJd +myd +vfS +qYw +hBg +qZc +xVz +vhz aXh aXh aKb @@ -30787,8 +30787,8 @@ mdQ ane afV ahF -hyc -cVd +uxi +sVt ahF ahF ahF @@ -30803,10 +30803,10 @@ uWJ fmW lWl ahF -cNO -cNO -cNO -cNO +diJ +diJ +diJ +diJ ahF ahF ahF @@ -30849,32 +30849,32 @@ aAp nmO aXX aZP -gFK -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -qGW -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -hHJ -fjT +mLo +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +cLr +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +vlT tZD tZD aAp @@ -30886,14 +30886,14 @@ bSm efp efp aTf -vZx -oog -fhE -llQ -uJO -wAR -gWc -vUj +fin +uRT +itu +qjo +qLg +bPL +piw +pig qGH aLj aXk @@ -31020,14 +31020,14 @@ ahF ahF ahF ahF -xFh +qEs ahF ahF pIl fmW uWJ uWJ -jjt +ljA fmW lWl ahF @@ -31076,7 +31076,7 @@ aAp aAp cIL nmO -qNi +oIT aDv aDv aDv @@ -31086,7 +31086,7 @@ aJO aJO aJO aJO -qNi +oIT eCF aDv aDv @@ -31095,15 +31095,15 @@ aDv aDv aDv aDv -xgc -gBl -koW +dSr +nQt +lpI aDv aDv aDv aDv aDv -qNi +oIT tZD aAp aVK @@ -31115,13 +31115,13 @@ buw efp efp uSq -nLA +oja qIO qIO -gMc -uXV -faS -dMc +nzQ +nAD +qle +bRk knp iIU kZw @@ -31323,9 +31323,9 @@ aDv aDv aDv aDv -xgc -gBl -koW +dSr +nQt +lpI aDv tZD tZD @@ -31339,7 +31339,7 @@ aXh wTC kjp kjp -fwv +gpZ efp efp uSq @@ -31347,9 +31347,9 @@ njC qIO qIO qIO -cHl +loi qtj -ksM +hZX rox wqz kZw @@ -31442,7 +31442,7 @@ mdQ mdQ mdQ onU -kOe +pTf dmT dmT uRe @@ -31474,9 +31474,9 @@ ahF ane ane ane -cNO -cNO -cNO +diJ +diJ +diJ ahF ahF doe @@ -31551,9 +31551,9 @@ aGh aJO aJO aEs -xgc -gBl -koW +dSr +nQt +lpI tZD tZD aAp @@ -31571,13 +31571,13 @@ efp efp gDu uSq -biE +qjy qIO qIO aXH -ebr -xNQ -vVe +vuv +gKw +hGN kxI wbK rHp @@ -31665,7 +31665,7 @@ mdQ mdQ onU onU -ePJ +cmq kWV xZE xyH @@ -31702,7 +31702,7 @@ ahF ahF ane ane -cVd +sVt afV afV afV @@ -31779,9 +31779,9 @@ aRx anP aXX aZP -xgc -gBl -iKG +dSr +nQt +nQw xgE xgE xgE @@ -31799,9 +31799,9 @@ efp efp efp uSq -oUL +gkL qIO -gMc +nzQ ntL kxI kxI @@ -31930,20 +31930,20 @@ ahF ahF ane ane -qtz +gGE afV ahF ahF ahF ahF ane -hyc +uxi ahF ahF ane ahF -hyc -xFh +uxi +qEs ahF ane ane @@ -32007,14 +32007,14 @@ aRx vcY svh xgE -xQz -xQz -xQz +sNx +sNx +sNx xgE -cZq -lqG -mQT -cZq +hwE +dnC +duc +hwE xgE xgE xgE @@ -32217,9 +32217,9 @@ nUy nUy nUy nUy -prB -ldO -xpk +dnA +lMa +qXu avH ado ado @@ -32235,18 +32235,18 @@ aRx twg aXX xgE -lqG -lqG -lqG -jth -xTb -pUD -lqG -lqG +dnC +dnC +dnC +sjg +tNY +iMk +dnC +dnC xgE -ibn -woV -rgz +yku +bdO +nWT xgE efp gDu @@ -32441,17 +32441,17 @@ hIq psh nuW ado -xQs -sdO -duE +tHE +dXJ +cZj avH -qLm -hcR -nXX +osO +sSU +lSD avH -pyV -uNS -xex +mam +tmK +kYy ado aXX aXX @@ -32463,18 +32463,18 @@ aRx aXX aXX xgE -lqG -lqG -lqG -lqG -lqG -lqG -lqG -lqG -qDv -uTG -uTG -uTG +dnC +dnC +dnC +dnC +dnC +dnC +dnC +dnC +mXv +eSW +eSW +eSW xgE efp efp @@ -32669,17 +32669,17 @@ oAD psh psh ado -oZG -hYU -xQs -nQq -gVG -hcR -nXX -nQq -xQs -dMn -xex +xZi +pNu +tHE +dUV +hek +sSU +lSD +dUV +tHE +jQY +kYy ado aXX aXX @@ -32691,20 +32691,20 @@ aRx aXX svh xgE -lqG -fPl -lqG -lqG -fPl -oaz -lqG -vSo +dnC +tnL +dnC +dnC +tnL +hBj +dnC +dKk xgE -jVa -tQc -uTG +hgv +dpL +eSW xgE -pbB +dQH efp efp efp @@ -32897,17 +32897,17 @@ fio psh psh ado -xZz -xQs -neX +nsl +tHE +ygF avH -jhZ -hcR -nRn +yfk +sSU +siW avH -wLf -xQs -eVl +eEy +tHE +tRb ado aXX aXX @@ -32925,12 +32925,12 @@ xgE xgE xgE xgE -iaj +kSJ xgE xgE xgE xgE -bsm +ydc xgE xgE bgL @@ -33126,15 +33126,15 @@ psh avH avH avH -cCz +aNE avH avH -yaq -hcR -xrd +fah +sSU +kKq avH avH -cCz +aNE avH avH avH @@ -33146,20 +33146,20 @@ aDv aDv aDv xgE -wPF -ryg -sES -eyW +dmI +wsR +dHS +mpx xgE -srG -aZQ -kpt -koO -qzp +pje +cIx +xpG +oSM +bDb xgE -qyA -fUO -dMG +gCo +seb +wNw xgE qIO qIO @@ -33271,7 +33271,7 @@ mdQ mdQ onU onU -fcK +bqc dmT dmT dmT @@ -33352,19 +33352,19 @@ nuW psh cGb ado -gGp -frY -kEG -lzA -nXX -nXX -hcR -nXX -nXX -nXX -vAA -nXX -fIP +dJd +lpL +knh +nTG +lSD +lSD +sSU +lSD +lSD +lSD +hHZ +lSD +qWb ado aDv aEu @@ -33373,22 +33373,22 @@ aDv aDv nwI aDv -dvt -uJt -prF -sCA -xjk -lXD -xjk -xjk -cbq -oIb -ukU -lXD -xjk -sCA -dLl -lXD +xwq +hny +moh +iby +wYn +wHY +wYn +wYn +ucr +pki +kgt +wHY +wYn +iby +dZn +wHY qIO qIO qIO @@ -33563,7 +33563,7 @@ auP asH oTJ teS -fGv +lJz eny eny fio @@ -33580,19 +33580,19 @@ psh psh psh awh -gGp -hcR -hcR -blr -hcR -wSP -fwJ -drR -hcR -jTG -hcR -hcR -xVR +dJd +sSU +sSU +eUq +sSU +fDp +uQU +bFX +sSU +dOX +sSU +sSU +dFg awh aDv aDv @@ -33601,22 +33601,22 @@ aDv aDv aDv aDv -xjk -xjk -sCA -xjk -xjk -xjk -igG -sCA -xjk -djV -xjk -xjk -xjk -xjk -evb -xjk +wYn +wYn +iby +wYn +wYn +wYn +cLa +iby +wYn +kub +wYn +wYn +wYn +wYn +orI +wYn qIO qIO njC @@ -33761,9 +33761,9 @@ xwr xwr ahx ahx -bCq -bCq -bCq +rnJ +rnJ +rnJ ahx ahx xwr @@ -33808,19 +33808,19 @@ psh psh psh ado -vOG -nXX -nXX -nXX -vAA -nJt -hcR -nXX -nXX -vZQ -nXX -gFs -xVR +xRR +lSD +lSD +lSD +hHZ +lVt +sSU +lSD +lSD +bJo +lSD +gOG +dFg ado aDv aDv @@ -33830,20 +33830,20 @@ aDv aDv aDv dLn -vTB -uYu -uYu -gWX +khw +fyq +fyq +exh xgE -gyR -sJT -xjk -xjk -tpv +dbF +jMo +wYn +wYn +gjx xgE -qjm -ccK -mHp +sfP +jMi +cWa xgE qIO qIO @@ -33988,11 +33988,11 @@ xwr xwr xwr ahx -fPJ -lmV -peU -peU -fPJ +bJR +iwo +eiU +eiU +bJR ahx xwr xwr @@ -34038,15 +34038,15 @@ psh avH avH avH -cCz +aNE avH avH -hVY -hcR -kEG +buS +sSU +knh avH avH -iaB +mpU avH nEd nEd @@ -34065,15 +34065,15 @@ xgE xgE xgE xgE -xjk -eWs +wYn +dfa xgE xgE xgE xgE xgE xgE -bIo +uxu yjh qIO qIO @@ -34156,9 +34156,9 @@ jqr sxl xZE acp -wAu -wAu -wAu +kro +kro +kro acp xZE xZE @@ -34189,7 +34189,7 @@ abS abS iIB iIB -hAt +jUf rTT tde vtk @@ -34215,13 +34215,13 @@ xwr xwr xwr xwr -bCq -waH -peU -peU -peU -peU -bCq +rnJ +qTR +eiU +eiU +eiU +eiU +rnJ xwr xwr xwr @@ -34265,17 +34265,17 @@ psh psh psh ado -bhR -xQs -xwu +rJX +tHE +wQt avH -lvy -hcR -pQb +jVT +sSU +fog avH -nXA -xQs -cdp +bzI +tHE +sMD ado cPV bbH @@ -34289,18 +34289,18 @@ laY xEt xgE xgE -cRK -fUO -uKh +qUv +seb +dSP paJ -xjk -sCA -kaW +wYn +iby +sBz xgE sxY sxY xgE -goR +tVf cPV uSq qIO @@ -34383,11 +34383,11 @@ mdQ fLh uRe acp -wAu -wAu -mQW -wAu -wAu +kro +kro +hwc +kro +kro acp xZE gwP @@ -34443,13 +34443,13 @@ xwr xwr xwr xwr -vyy -peU -peU -jSC -mDa -peU -vyy +sAY +eiU +eiU +cML +kOG +eiU +sAY xwr xwr xwr @@ -34489,21 +34489,21 @@ nuW psh psh psh -hqy +fuE psh tLQ ado -xQs -dMn -xQs -nQq -nXX -hcR -nXX -nQq -xQs -hYU -xex +tHE +jQY +tHE +dUV +lSD +sSU +lSD +dUV +tHE +pNu +kYy ado ifk cPV @@ -34516,15 +34516,15 @@ iAH xEt xgE xgE -jRn -aZQ -hRR -cQP -ecd -xjk -fxe -xjk -ivz +szL +cIx +lLz +fqK +lgk +wYn +nFc +wYn +sNf puo lFv xgE @@ -34610,12 +34610,12 @@ mdQ onU gRk uRe -wAu -wAu -wAu -bMN -wAu -mQW +kro +kro +kro +xTc +kro +hwc acp xZE gwP @@ -34671,13 +34671,13 @@ xwr xwr xwr xwr -bCq -peU -peU -peU -peU -peU -bCq +rnJ +eiU +eiU +eiU +eiU +eiU +rnJ xwr lTZ xwr @@ -34721,17 +34721,17 @@ psh psh psh ado -xQs -oZG -kpT +tHE +xZi +jeY avH -kxd -wUU -mVT +rdE +cgI +sHQ avH -rbz -oZG -xex +ouG +xZi +kYy ado cPV aGl @@ -34743,17 +34743,17 @@ laY cPV xEt xgE -wXL -ouB -oBT -sCA -uAA +dvH +kNc +vWe +iby +xTQ paJ -xjk -sCA -jHx +wYn +iby +ehY xgE -fVk +tNV pnl xgE cPV @@ -34839,11 +34839,11 @@ onU dmT uRe acp -wAu -mQW -wAu -mQW -wAu +kro +hwc +kro +hwc +kro acp xZE gwP @@ -34900,11 +34900,11 @@ xwr xwr xwr ahx -fPJ -peU -fHQ -peU -fPJ +bJR +eiU +xLu +eiU +bJR ahx xwr xwr @@ -34953,9 +34953,9 @@ ado ado ado avH -waS -qvQ -qvQ +hvR +eMC +eMC avH ado ado @@ -34971,14 +34971,14 @@ wMk qGK xEt xgE -fLy -nhu -xjk -qmz -mvb +mmf +tjc +wYn +fPo +cWW xgE -xjk -eWs +wYn +dfa xgE xgE xgE @@ -35068,9 +35068,9 @@ dmT grW xZE acp -wAu -wAu -wAu +kro +kro +kro acp xZE xZE @@ -35129,9 +35129,9 @@ xwr jTP ahx ahx -bCq -bCq -bCq +rnJ +rnJ +rnJ ahx ahx xwr @@ -35201,15 +35201,15 @@ xEt xgE xgE dhw -eUN +hDh xgE xgE xgE -kHA -sCA -uLc -nNW -vrK +jRt +iby +aMx +wLv +fTr oYx wMk wMk @@ -35351,7 +35351,7 @@ afJ afJ xwr xwr -cnD +nvD xwr xwr xwr @@ -35427,17 +35427,17 @@ xEt bCH aDP xgE -pMf -fKp -xjk -jEi -nmC +vjT +rCy +wYn +uEq +xhi mGG -xjk -vpk -puG -xjk -rtS +wYn +jbv +bKY +wYn +oBV ilf lsq wMk @@ -35520,7 +35520,7 @@ acf mdQ onU mdQ -fcK +bqc dmT grW xKL @@ -35655,17 +35655,17 @@ xEt bbU mfI xgE -sja -riu -qOd -olG -wXs +wIX +wco +tyN +vJl +tQK qTu -xjk -xjk -qaf -glc -sLF +wYn +wYn +crD +hKR +fOp wJA wMk wMk @@ -35674,8 +35674,8 @@ uSq qIO qIO qIO -dEx -dEx +teX +teX ntL kxI kxI @@ -35699,10 +35699,10 @@ abm abm abk ach -kGe +acR avm avm -gsH +sNB abk aaF aaF @@ -35884,15 +35884,15 @@ wMk laY xgE xgE -rLn -oGM -whq -xjk -cKL -sCA -xjk -glc -nEO +xTC +hXq +xAZ +wYn +wJD +iby +wYn +hKR +bwb nMJ rfH rIq @@ -35902,9 +35902,9 @@ uSq njC qIO qIO -dEx -vgV -vVe +teX +wtL +hGN kxI jxG qZv @@ -35926,7 +35926,7 @@ aac abm abm abk -xip +ini aqz avm avm @@ -36019,7 +36019,7 @@ tPH rTT pIB rTT -qRl +ddv rTT ohf onP @@ -36113,13 +36113,13 @@ mfI xEt xgE xgE -vox -uvs -ujr +gkA +wlY +jRN paJ -uaI -uGq -tvE +uSB +xck +vTY nMJ nMJ bbp @@ -36130,11 +36130,11 @@ uSq qIO qIO qIO -dEx +teX hLu kxI kxI -ntq +oUN qZv tWK qZv @@ -36156,9 +36156,9 @@ abm abk acC avm -nLg +oQi avm -sEf +niI abk aaF aaF @@ -36356,7 +36356,7 @@ bCH qGK aPt aPT -crq +vLv aPT aPt hLu @@ -36382,9 +36382,9 @@ aac abm abm abk -oEL +yjV avm -kGe +acR avm qxZ abk @@ -36438,7 +36438,7 @@ mdQ onU onU onU -sAR +nfR dmT tlk uRe @@ -36583,9 +36583,9 @@ aPT aPT aPT aPt -qcl -amq -jcz +nax +igp +dSG aPt aPT aPT @@ -36612,7 +36612,7 @@ abm abk atv avm -rfY +jSZ avm avm avm @@ -36722,9 +36722,9 @@ xwr xwr jTP xwr -qOi -rlo -rlo +iky +ycy +ycy xwr xwr xwr @@ -36733,16 +36733,16 @@ xwr xwr xwr xwr -jpo -cAd -bGf -jhs -diq -diq -rwi -diq -xPT -fYf +tLr +hCf +sRZ +xaj +jEx +jEx +pSM +jEx +cTv +fjy nsk asr cfN @@ -36807,17 +36807,17 @@ bwR cPV bCH aPT -oPM -jvN -amq -vQQ -vQQ -amq -amq -vQQ -amq -dyA -mwb +caz +tsZ +igp +qqN +qqN +igp +igp +qqN +igp +uaq +gXE aPT ooM nuU @@ -36839,11 +36839,11 @@ abm abm abk aec -nLg +oQi avm aqz avm -kGe +acR sdh aHT aaV @@ -36943,7 +36943,7 @@ xwr xwr xwr xwr -kDy +uma xwr xwr xwr @@ -36961,7 +36961,7 @@ xwr xwr xwr xwr -ygw +cGW hsc hsc hsc @@ -36970,7 +36970,7 @@ hsc hsc hsc hsc -pqL +vuU asr cfN tyG @@ -36999,7 +36999,7 @@ psh psh asT atO -qnZ +mjA atO asT psh @@ -37035,17 +37035,17 @@ cPV cPV akq aPT -esc -amq -amq -amq -ckE -amq -amq -amq -amq -amq -yhB +mBK +igp +igp +igp +nCI +igp +igp +igp +igp +igp +hiJ aPT kxI kxI @@ -37070,7 +37070,7 @@ afU adQ avm avm -nLg +oQi aqz sdh aHT @@ -37189,16 +37189,16 @@ jTP xwr xwr xwr -bPq -ukD -ukD -iMp -pzP -lLF -cSp -ukD -ukD -waA +vnj +qzy +qzy +ebQ +wgJ +dWl +vqc +qzy +qzy +fKh hJW tyG tyG @@ -37226,9 +37226,9 @@ atO atO atO asT -jyZ -alI -gUN +xPO +fPW +jYp asT atO atO @@ -37261,19 +37261,19 @@ byY fTf nhi cPV -goR +tVf aPT -vPj -amq -mNw +xvq +igp +hnJ aTg -eEw -amq -amq +rhz +igp +igp aTg -thG -amq -vQQ +hgB +igp +qqN aPT kxI kxI @@ -37293,13 +37293,13 @@ aaa aac abm abk -pdq +usb avm -kGe +acR avm uxq avm -rfY +jSZ sdh aHT aah @@ -37450,17 +37450,17 @@ psh oBi bnE atn -ucs -gUN -ucv +usj +jYp +iwU atU -guj -kKo -rvd +mKc +rKC +piJ atU -qgf -duo -uGw +vGc +fSW +wNO asU psh cGb @@ -37491,17 +37491,17 @@ oGs oGs aPt aPt -ije -amq +qOZ +igp aTg aTg -uKp -amq -pii +uoS +igp +gsU aTg aTg -oTq -amq +qBl +igp aPt aPt kxI @@ -37525,7 +37525,7 @@ abp avm avm avm -wVd +bnC wTL avm avm @@ -37678,17 +37678,17 @@ psh psh psh atn -jJb -xts -gUN -xRB -gUN -qyw -hQT -xRB -uGw -vyc -uGw +qcY +dsk +jYp +xNE +jYp +uNZ +lRZ +xNE +wNO +goP +wNO asU psh psh @@ -37717,20 +37717,20 @@ byY byY byY byY -lYX -hJb -vQQ -amq -amq -amq -amq -amq -amq -huY -vQQ -amq -amq -dQA +wsD +bmQ +qqN +igp +igp +igp +igp +igp +igp +uhU +qqN +igp +igp +nog aPT kxI lAX @@ -37750,12 +37750,12 @@ aac abm abk abA -rfY +jSZ avm aqz avm avm -tqp +cIy avm obJ aah @@ -37843,7 +37843,7 @@ abS abS abS cdF -bVZ +lkT xwr xwr xwr @@ -37893,10 +37893,10 @@ tyG mUQ tyG anS -qQL -qQL -kZr -qQL +iSH +iSH +dKB +iSH anF psh psh @@ -37906,17 +37906,17 @@ psh tLQ psh atn -dSN -ezv -hPf +uPp +ptZ +wJX atU -gUN -alI -gUN +jYp +fPW +jYp atU -jvn -uGw -tQo +fiJ +wNO +vSE asU nVG psh @@ -37945,21 +37945,21 @@ byY byY byY byY -tfF -amq -amq -fTm -amq -vQQ -amq +oWH +igp +igp +fjk +igp +qqN +igp aTg -uBD -amq -amq -mNw -amq -amq -tfF +rOr +igp +igp +hnJ +igp +igp +oWH kxI kxI kxI @@ -37980,7 +37980,7 @@ abk avm avm avm -kGe +acR atM avm avm @@ -38055,7 +38055,7 @@ dGQ wbg xdb rTT -xYO +evK rTT rTT onP @@ -38121,13 +38121,13 @@ anS anS anS anS -ntM -odp -cSi -ntM +tNl +xMN +cCJ +tNl anF -qQL -qQL +iSH +iSH anF kSR ast @@ -38135,15 +38135,15 @@ ast asT asT atS -bsS +hSv atU atU atU -jHb +cVw atU atU atU -vXk +qvH atU asT asT @@ -38173,20 +38173,20 @@ byY byY byY byY -ucB -xzF -pUV -amq -amq -vQQ -vQQ -ezb -oyD -lAI -lAI -uQs -quV -wZn +vVj +voc +vqK +igp +igp +qqN +qqN +hQD +wPX +dGm +dGm +dvl +blg +flg aPT kxI lIU @@ -38208,8 +38208,8 @@ abk avm avm aCG -qPk -qQB +kUA +cqg moV bJz sdh @@ -38307,8 +38307,8 @@ xwr xwr jTP xwr -rlo -rlo +ycy +ycy xwr xwr xwr @@ -38346,34 +38346,34 @@ tyG tyG tyG anS -lHh -tBY +rUR +trz anF anF -kFf -eKX -onQ -tfr -vEh -aSr -qQL +jqy +vFD +llF +eeo +mDE +eVc +iSH opP udP udP asU -fyd -fyd -gUN -loV +nZT +nZT +jYp +kTB atU -kxK -alI -jmi +hjw +fPW +fXq atU -mcB -gUN -vNr -jyZ +lLS +jYp +uKZ +xPO asU byY byY @@ -38400,20 +38400,20 @@ kUr byY ylL byY -pvS +qKr aPt aPt -amq -amq +igp +igp aTg aTg -bob -pxS -kpS +kev +oUl +fBE aTg aTg -nqR -rsm +enx +lXt aPt aPt kxI @@ -38434,10 +38434,10 @@ aac abm abk avm -tqp +cIy aCG -tcD -ioz +xqU +lpg moV aEI sdh @@ -38540,8 +38540,8 @@ xwr xwr xwr xwr -rlo -rlo +ycy +ycy xwr xwr xwr @@ -38574,35 +38574,35 @@ tyG tyG tyG anS -gZZ -rka -tOz +tmp +iDm +nWF anF -otO -wNN -wNN -rzL -wNN -hUx -qQL +bXD +lLd +lLd +rNt +lLd +vrc +iSH opP udP udP -oMb -alI -alI -psx -alI -oOp -alI -emb -sqM -oOp -alI -alI -vHS -alI -oMb +vgQ +fPW +fPW +frW +fPW +cbu +fPW +piG +vae +cbu +fPW +fPW +tNq +fPW +vgQ byY byY byY @@ -38628,20 +38628,20 @@ uiN byY byY byY -iPr +oGO aPT -dXG -vQQ -amq -amq +pFF +qqN +igp +igp aTg -kQH -qjB -pXC +fqQ +wPZ +duX aTg -jMj -efr -efr +obn +bLe +bLe aPT kxI kxI @@ -38661,14 +38661,14 @@ aaa aac abm abk -kGe +acR aqz aCG -iBN -iiF +qCz +hIw moV lRy -lsk +vbq aHT aah aah @@ -38766,7 +38766,7 @@ wVk wVk wVk wVk -dxS +vCd wVk wVk wVk @@ -38802,34 +38802,34 @@ tyG tyG anS anS -fMD -wNN -sFQ -oxC -wNN -sFQ -wNN -wNN -wNN -nmJ +emv +lLd +dJl +qEy +lLd +dJl +lLd +lLd +lLd +gZu anF anF udP udP asU -vJi -tYo -gUN -jCT +dQm +bVQ +jYp +bwT atU -eoL -alI -lhU +xWZ +fPW +ftp atU -sgN -gUN -gUN -rMj +aZp +jYp +jYp +iip asU aAq byY @@ -38856,20 +38856,20 @@ uiN byY byY byY -iPr +oGO aPT -gMX -qJi -pxS -amq -amq -efk -tgT -pXC -efr -efr -efr -xqR +usP +brB +oUl +igp +igp +cVx +cSG +duX +bLe +bLe +bLe +bSt aPT kxI kxI @@ -38891,9 +38891,9 @@ abm abk avm avm -kGe +acR avm -tqp +cIy avm avm avm @@ -39029,33 +39029,33 @@ tyG tyG tyG anS -oIS -onc -voS -wNN -wNN -wNN -wNN -wNN -rla -wNN -ldf -lqX -qQL +jPX +feC +lhF +lLd +lLd +lLd +lLd +lLd +vzw +lLd +pIt +xvY +iSH udP udP asT asT atU -bsS +hSv atU asT asT -hoe +vbX asT asT atU -vXk +qvH atU asT asT @@ -39084,20 +39084,20 @@ uiN byY byY byY -iPr +oGO aPT -oKv -vhP -gtX -amq -amq -amq -amq -pXC -cEJ -efr -cDv -jbe +dDN +bwG +qvG +igp +igp +igp +igp +duX +sHo +bLe +gPs +uxp aPT sBJ kxI @@ -39123,7 +39123,7 @@ aEI pfl avm avm -rfY +jSZ avm abk aah @@ -39231,7 +39231,7 @@ wVk wVk wvP wVk -dxS +vCd wVk csM wVk @@ -39257,34 +39257,34 @@ vqT tyG tyG anS -uIg -wNN -wNN -vpQ +drq +lLd +lLd +qxe anF -bXZ -wNN -gcE -jvK -wNN -wNN -wNN -oxC +vvz +lLd +xpg +nFH +lLd +lLd +lLd +qEy udP udP udP atn -fyd -gUN -rvd +nZT +jYp +piJ asT -gUN -alI -gUN +jYp +fPW +jYp asT -pPY -gUN -mdz +iMe +jYp +huS asU aJr aJr @@ -39307,24 +39307,24 @@ aLv aJr iSg aJr -tiw +xyZ aIO aMN -pVO +hCl aMN aIO aPt -vRY -oKv -qjB -amq -amq -amq -amq -pXC -efr -gaV -lzy +cJE +dDN +wPZ +igp +igp +igp +igp +duX +bLe +rxP +lpM aPt aPt tzK @@ -39345,12 +39345,12 @@ aaa aac abm abk -vgz -tqp +rmB +cIy avm aEI -fth -wVd +wOJ +bnC avm sdh aHT @@ -39446,7 +39446,7 @@ wVk wVk wVk wVk -tRq +fpB wVk wVk afF @@ -39464,9 +39464,9 @@ wVk wVk wVk wVk -tRq -uYk -uYk +fpB +rEd +rEd wVk wVk ajq @@ -39485,34 +39485,34 @@ tyG tyG tyG anS -cTF -wNN -wNN -gGF +gRp +lLd +lLd +tSu anF -umM -wNN -vFK -jvK -wNN -wNN -wNN -wNN +gTg +lLd +xCB +nFH +lLd +lLd +lLd +lLd udP asI udP atn -jDv -qRa -gUN -xRB -gUN -xWK -xBS -xRB -gUN -wkr -sfd +veb +cNX +jYp +xNE +jYp +nND +irI +xNE +jYp +jaq +xAs asU wkE aJr @@ -39541,19 +39541,19 @@ aMO aKB aMP aIO -sBZ -gOB -huI -rIL -amq -amq -amq -amq -iWJ -efr -efr -bEr -sQP +tgp +vPf +jSr +hIJ +igp +igp +igp +igp +dbG +bLe +bLe +wGW +mAt kxI kxI tsa @@ -39573,10 +39573,10 @@ aaa aac abm abk -tqp +cIy avm aFr -tqp +cIy avm avm avm @@ -39713,34 +39713,34 @@ tyG dvf tyG anS -pVh -wUL -sFQ -wNN -oxC -wNN -wNN -eGi -wNN -wdV -wDr -eVC -qQL +wxg +lJZ +dJl +lLd +qEy +lLd +lLd +chw +lLd +kNb +cqv +xux +iSH udP udP udP asU -ffS -gUN -gfj +vWZ +jYp +gSG asT -dtv -oae -vJi +oXz +vxV +dQm asT -jMU -fyd -bvm +ouO +nZT +eUD asU aJr jGW @@ -39769,19 +39769,19 @@ aMP aNB aNJ aIO -cyt +dsW aIL -hTK -hQY -rzZ -cBJ -ygO -vQQ -beM -vBv -efr -kgg -fmC +sYc +iac +tan +jVf +iUi +qqN +gNA +exo +bLe +ljn +sJq kxI kxI kxI @@ -39808,7 +39808,7 @@ avm avm avm avm -mrr +rwc aHT aah aah @@ -39904,19 +39904,19 @@ wVk csM wVk afk -bSr -bxN -jxe -bxN -bxN -cPi -cPi -wHf -bxN -bxN -bxN -bxN -agO +tCO +uSa +bqC +uSa +uSa +jcX +jcX +xSj +uSa +uSa +uSa +uSa +fQP wVk wVk wVk @@ -39942,16 +39942,16 @@ tyG tyG anS anS -jvK -wNN -wNN -wNN -wNN -wNN -wNN -wNN -wNN -vFf +nFH +lLd +lLd +lLd +lLd +lLd +lLd +lLd +lLd +dxT anF anF udP @@ -39962,9 +39962,9 @@ atO atO atO asT -cnG -jmi -rvd +nGz +fXq +piJ asT atO atO @@ -40001,14 +40001,14 @@ aNB aQo aJz aIO -jcK +bel aPt -cYr -xpL +dSf +ils aSL -xfU +qYl aVB -xfU +qYl aSL sBJ kxI @@ -40060,7 +40060,7 @@ aaH aaw aaw aaw -luu +pHd aaw aaw cDr @@ -40126,13 +40126,13 @@ abS wVk wVk wVk -uYk +rEd wVk wVk wVk wVk afk -nCt +rJo ajW ajW afI @@ -40144,7 +40144,7 @@ ajW ajW afX ajW -rnq +tdd wVk wVk wVk @@ -40170,17 +40170,17 @@ xze tyG tyG anS -tUG -tKR -prh +tqt +oqu +hKI anF -tGy -wNN -wNN -sFQ -fdt -pFt -qQL +mra +lLd +lLd +dJl +wUD +rGS +iSH opP udP udP @@ -40191,8 +40191,8 @@ jHN jHN asT asT -nVg -ipJ +dnZ +prj asT aJr aKg @@ -40229,14 +40229,14 @@ aEt aQp aRo aIO -jcK +bel aSL aSL aSL aSL -aQU -etk -etk +mvX +iHD +iHD aSL aSL aVB @@ -40260,9 +40260,9 @@ abm abk avn avm -nLg +oQi abk -kGe +acR avm fiE aHT @@ -40290,7 +40290,7 @@ aaw aaw aaw aaw -dUH +pQK wbM jeL aaF @@ -40343,7 +40343,7 @@ abS iIB iIB iIB -xYO +evK rTT tde uwG @@ -40360,7 +40360,7 @@ wVk wVk wVk wVk -nCt +rJo afI afX agf @@ -40372,7 +40372,7 @@ ajW ajW afX agk -fNn +cTW afk wVk wVk @@ -40389,7 +40389,7 @@ sqj rit wqy hJW -dVK +deC xei tyG amB @@ -40398,17 +40398,17 @@ tyG tyG tyG anS -rlr -fsq +weJ +rak anF anF -kFf -wNN -wDr -iic -weI -kLn -qQL +jqy +lLd +cqv +uFm +oQM +uXO +iSH opP udP udP @@ -40430,7 +40430,7 @@ aJr aJr vKc aJr -kLg +cJx kAg kAg iAA @@ -40459,16 +40459,16 @@ aQo aIO aSL aSL -mCb -bHg -qWe -crg -etk -etk +pcX +sUB +oJo +nQa +iHD +iHD aSX -vfA -vPW -voy +bdo +mpb +vgy aWz kxI kxI @@ -40486,13 +40486,13 @@ aac abm abm abk -qVr +oqx avm rQf abk aqz avm -kOR +eJV aHT aah aah @@ -40518,7 +40518,7 @@ aaw aaw aaw wbM -jXq +uMa wbM jeL abm @@ -40588,7 +40588,7 @@ wVk wVk wvP afk -eSQ +bzS afK afN ajW @@ -40600,7 +40600,7 @@ aVn afN afN ajW -fNn +cTW wVk wVk wVk @@ -40617,7 +40617,7 @@ sqj rit dVH hJW -vAr +xzq toL tyG amC @@ -40629,13 +40629,13 @@ anS anS anS anS -ntM -wNN -wNN -ntM +tNl +lLd +lLd +tNl anF -qQL -qQL +iSH +iSH anF szy udP @@ -40648,7 +40648,7 @@ jHN jHN adp awu -ffK +tBx adp aJr uTe @@ -40678,7 +40678,7 @@ aKF aLe aLe aMS -xBR +wgR aNG aPh aPS @@ -40686,17 +40686,17 @@ aQr aQo aSi aSL -mQj -pyH -cRa -jaU -kpk -etk -crg -lGj -kpk -kpk -lvu +pIx +fBb +bfZ +xyf +wpH +iHD +nQa +jru +wpH +wpH +rzA aVB kxI kxI @@ -40716,10 +40716,10 @@ abm abk avn avm -kCT +sbm abk avm -tqp +cIy fiE aHT aah @@ -40745,8 +40745,8 @@ aaz aay aaw aaw -dUH -sCu +pQK +nBy wbM jeL abm @@ -40816,7 +40816,7 @@ wVk wVk wVk afk -nCt +rJo afL afX agg @@ -40828,7 +40828,7 @@ afN ajW afN ajW -fNn +cTW wVk wVk wvP @@ -40858,8 +40858,8 @@ tyG tyG anS anS -wNN -rNL +lLd +wqd anS anS jHN @@ -40875,8 +40875,8 @@ jHN ofv jHN atw -epM -wtf +rIQ +rYy atw atw aJr @@ -40899,7 +40899,7 @@ mKf qAP mKf mKf -fWO +kgl aJv aKl aKG @@ -40913,18 +40913,18 @@ aLN aQs aQo aSi -wUT -tsN -eCX -nEJ -sRg -kpk -tBs -fqB +elU +vtC +mAW +mbE +pvd +wpH +hTY +jeA aSX -vfU -xhp -koS +oLo +pSF +fGp aSL mnK kxI @@ -40975,7 +40975,7 @@ aaw aaw wbM wbM -dUH +pQK jeL abm abm @@ -41044,7 +41044,7 @@ wVk wVk wVk wvP -feY +pqp ajW afN agh @@ -41056,7 +41056,7 @@ ajW ahk afN afN -aLx +fwx wVk afk csM @@ -41074,7 +41074,7 @@ sqj rit mVV wxP -dVK +deC jbB amB tyG @@ -41103,9 +41103,9 @@ adp adp adp atw -bCj -mne -pHS +fSr +oUb +gyz atw adp adp @@ -41141,14 +41141,14 @@ aPU aQt aQo aSj -hRC -pEe -eCX -nEJ -sRg -vWA -kpk -qcD +niG +sJk +mAW +mbE +pvd +nAB +wpH +fYc aSX aSX aSX @@ -41269,22 +41269,22 @@ abS wVk wVk wVk -dxS +vCd wVk wVk -feY +pqp agf ajW agi ajW -qTQ -vQA +eAu +khz agT ahh ahl afN ajW -lVK +esc afk wVk wVk @@ -41327,17 +41327,17 @@ udP udP gRx adp -vwX -pHS -cAL -wHU -pHS -mne -pHS -ioG -vwX -rgD -sMH +bHg +gyz +clD +gbO +gyz +oUb +gyz +moD +bHg +mql +nyk atY aLv aJr @@ -41370,18 +41370,18 @@ aQr aQo aSi aSL -mQj -pvw -ofK -fLY -kpk -kpk -owK +pIx +oBe +rZE +ioQ +wpH +wpH +vju aSX -eGC -kXI -jaI -jqA +iVr +hZS +lbA +epo aVB kxI kxI @@ -41485,7 +41485,7 @@ abS iIB iIB rTT -cPW +hDn onP eGD abS @@ -41500,7 +41500,7 @@ wVk wVk wVk wVk -feY +pqp ajW afX agj @@ -41512,7 +41512,7 @@ afN ahm ajW ajW -aLx +fwx wVk wVk wVk @@ -41555,17 +41555,17 @@ udP udP mHM adp -itI -pHS -pHS -vRB -puW -pHS -yjV -gJI -gJI -gJI -xdP +xDz +gyz +gyz +cVT +pkp +gyz +iGl +lZE +lZE +lZE +nbd adp aJr aJr @@ -41599,18 +41599,18 @@ aGk aQo aSL aSL -rGh -oWf -pAW -yaW -vVK -uUR +dGV +xgm +cje +wTD +cZn +enP aSX -nFK -kpk -nQy -jqA -bAc +cMu +wpH +eZh +epo +vIq kyN kxI tsa @@ -41728,7 +41728,7 @@ wvP wVk wVk wVk -nCt +rJo afN ajW afX @@ -41740,7 +41740,7 @@ ajW ajW afN ajW -fNn +cTW wVk wVk wVk @@ -41783,17 +41783,17 @@ udP udP udP atw -pwb -pHS -pHS -gGu -pHS -pHS -bVu -iON -iON -iON -wQf +iDW +gyz +gyz +atl +gyz +gyz +khs +iHV +iHV +iHV +cbq atw aJr cwv @@ -41830,14 +41830,14 @@ aSX aSX aSX aSX -eoN -iGp -kpk -uLi -kpk -kBi -kpk -kpk +vum +vJz +wpH +qHe +wpH +dKE +wpH +wpH aWz kxI kxI @@ -41956,7 +41956,7 @@ wVk wVk wVk wVk -nCt +rJo ajW afN ajW @@ -41968,7 +41968,7 @@ ahi ajW afN agp -fNn +cTW wVk wVk wVk @@ -41998,8 +41998,8 @@ tyG eDy anG anG -hnp -lYL +biZ +ebR anG anG jHN @@ -42011,17 +42011,17 @@ udP udP atw atw -nju -pHS -pHS -pHS -pHS -pHS -oBn -dHs -ucf -ucf -sOx +bSv +gyz +gyz +gyz +gyz +gyz +sGE +jbX +uGr +uGr +qkQ atw atw hEu @@ -42041,7 +42041,7 @@ rGu mNz hSn aJz -yei +iCq aKI aLh aLg @@ -42054,17 +42054,17 @@ aQw aJz aJz aSL -pPv -bxY -gCh +iQX +nXu +fTJ aSX -xQj -fhV -vnt -tdh -kpk -kpk -wjA +fqe +tsr +uRB +gXj +wpH +wpH +sJm aSL aSL aYw @@ -42184,7 +42184,7 @@ wVk wVk afk afk -nCt +rJo afN afY agk @@ -42196,7 +42196,7 @@ ajW ajW ahs ajW -fNn +cTW wVk wVk wVk @@ -42222,35 +42222,35 @@ tyG tyG sUT anG -cmb -cmb +fHA +fHA anG -hzS -kpq -hnp -lli +kWG +odf +biZ +rJP anG -cmb -cmb +fHA +fHA anG szy udP udP udP adp -lYJ -qmv -pHS -pHS -pHS -pHS -pHS -pHS -pHS -pHS -pHS -pHS -nON +maV +lrv +gyz +gyz +gyz +gyz +gyz +gyz +gyz +gyz +gyz +gyz +hNW adp mKf mKf @@ -42282,17 +42282,17 @@ aIL aPk uDs aSL -pPv -xuz -wKL +iQX +lQY +wkT aSX -sJZ -qCG -mUS +uYW +kQG +mPx aSX -nnB -sOF -guq +qxY +glz +bpt aVB dEp kxI @@ -42397,7 +42397,7 @@ abS abS rTT rTT -qRl +ddv xdb onP eGD @@ -42412,7 +42412,7 @@ wVk wVk wVk afk -nCt +rJo ajW ajW agl @@ -42424,10 +42424,10 @@ afN ajW ajW ajW -fNn +cTW wVk wVk -dxS +vCd csM wVk wVk @@ -42449,37 +42449,37 @@ ldZ tyG tyG tyG -cmb -doU -hnp -hnp -hnp -hnp -hnp -hnp -jbM -fML -daT -cmb +fHA +wWW +biZ +biZ +biZ +biZ +biZ +biZ +edE +rYB +jNx +fHA xPk udP udP udP -eJN -pHS -fkn -fkn -lmJ -qfk -fkn -tQt -pHS -pHS -pHS -pHS -pHS -pHS -eJN +eUt +gyz +pji +pji +bNP +tPQ +pji +qhI +gyz +gyz +gyz +gyz +gyz +gyz +eUt mKf mKf mKf @@ -42510,17 +42510,17 @@ tXO xuk oUy aSL -jrl -kle -qIQ -vse -hGr -raK -pHC +vBs +eWO +lSH +xXH +xry +lYL +vPM aSX -odm -baH -eRk +dRd +uCA +vou aVB kxI kxI @@ -42640,19 +42640,19 @@ wVk wVk wVk wVk -mqo -lLp -lLp -lLp -lLp -iIX -iIX -rqA -lLp -lLp -lLp -lLp -pFZ +pKM +tBh +tBh +tBh +tBh +feB +feB +ehz +tBh +tBh +tBh +tBh +alm wVk wVk wVk @@ -42677,36 +42677,36 @@ tyG tyG tyG tyG -cmb -mLV -hnp -lso -kWK -hnp -hnp -hnp -hnp -hnp -tUu -cmb +fHA +gon +biZ +rXV +dBI +biZ +biZ +biZ +biZ +biZ +eIa +fHA udP udP udP udP atz -pHS -fkn +gyz +pji auE auE auE -fkn -pHS -pHS -pHS -hDI -pHS -pHS -hAP +pji +gyz +gyz +gyz +bjn +gyz +gyz +xvv adp mKf mKf @@ -42738,17 +42738,17 @@ dEg kvo mNO fFN -kpk -kpk -jYh +wpH +wpH +cuC aSX -hQu -etk -fLb +lWJ +iHD +ivE aSX -tgo -eus -jfF +lAp +iKg +grD aWz kxI kxI @@ -42906,16 +42906,16 @@ tyG tyG anG anG -ekS -hnp -hnp -tpu -hnp -hnp -tpu -hnp -hnp -jnu +xWN +biZ +biZ +wLf +biZ +biZ +wLf +biZ +biZ +gzG anG anG udP @@ -42923,17 +42923,17 @@ udP udP atw atw -fkn +pji auE avw auE -fkn -pHS -pHS -pHS -pHS -pHS -knI +pji +gyz +gyz +gyz +gyz +gyz +eph atw atw iXG @@ -42970,9 +42970,9 @@ fFN hHc aSL aSL -etk -etk -wBB +iHD +iHD +hAJ aSL aVB aVB @@ -43132,36 +43132,36 @@ tyG tyG nqy tyG -cmb -hnp -hnp -hnp -tpu -tpu -hnp -hnp -tpu -tpu -hnp -hnp -kHj -cmb +fHA +biZ +biZ +biZ +wLf +wLf +biZ +biZ +wLf +wLf +biZ +biZ +tnK +fHA jRm jRm jRm jRm atw -nuI +xII auZ auE auE -fkn -pHS -pHS -pHS -vRB -pHS -mMV +pji +gyz +gyz +gyz +cVT +gyz +aIR atw oUy oUy @@ -43199,7 +43199,7 @@ aSm oUy aSL aVB -xfU +qYl aVB aSL iUm @@ -43360,36 +43360,36 @@ tyG tyG tyG tyG -oEJ -vLc -hnp -hnp -hnp -hnp -hnp -hnp -hnp -lso -hnp -hnp -hnp -oEJ +qMg +hev +biZ +biZ +biZ +biZ +biZ +biZ +biZ +rXV +biZ +biZ +biZ +qMg jRm jRm jRm ppR atY -fkn -fkn -fkn -fkn -fkn -pHS -pHS -pHS -pHS -pHS -aqD +pji +pji +pji +pji +pji +gyz +gyz +gyz +gyz +gyz +ldJ adp oUy aRa @@ -43507,7 +43507,7 @@ acf uxU uxU fDE -sNo +iZH fDE acf acf @@ -43588,36 +43588,36 @@ tyG qJx tyG tyG -hnp -hnp -hnp -hnp -hnp -hnp -hnp -hnp -hnp -cQG -hnp -hnp -hnp -hnp +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +mZk +biZ +biZ +biZ +biZ jRm jRm ppR oqO adp -tzY -pHS -pHS -pHS -pHS -vUA -pHS -pZR -xMC -nXI -vwX +cJa +gyz +gyz +gyz +gyz +bPo +gyz +peB +vvR +ohR +bHg adp oUy bbI @@ -43634,11 +43634,11 @@ oUy oUy ayP ayu -rjx -rKv +ggV +fxZ aJA -rjx -rKv +ggV +fxZ aJA ayP ezz @@ -43764,21 +43764,21 @@ abS iIB iIB rTT -hAt +jUf rTT onP abS abS abS -eNq -rDf -rDf -rDf -rDf -rDf -rDf -rDf -rDf +bQy +hMF +hMF +hMF +hMF +hMF +hMF +hMF +hMF wVk wVk wVk @@ -43816,20 +43816,20 @@ tyG tyG tyG tyG -cmb -hnp -hnp -hnp -tpu -tpu -iVI -hnp -tpu -tpu -hnp -hnp -hnp -cmb +fHA +biZ +biZ +biZ +wLf +wLf +kjj +biZ +wLf +wLf +biZ +biZ +biZ +fHA jRm jRm iwh @@ -43839,9 +43839,9 @@ atz adp adp atw -pQY -pHS -pHS +bTi +gyz +gyz atw adp adp @@ -43861,13 +43861,13 @@ aDS aDS aDS aDS -hoQ -hoQ -pKQ -hoQ -hoQ -hoQ -hoQ +erU +erU +iWS +erU +erU +erU +erU aLk aLk aLk @@ -43998,7 +43998,7 @@ onP abS abS abS -cnb +vuE qjf qjf qjf @@ -44046,16 +44046,16 @@ xze tyG anG anG -qZG -hnp -hnp -tpu -hnp -hnp -tpu -hnp -hnp -bgA +wIU +biZ +biZ +wLf +biZ +biZ +wLf +biZ +biZ +qFi anG anG jRm @@ -44068,7 +44068,7 @@ oUy oUy atw adp -imr +bEY adp atw oUy @@ -44086,19 +44086,19 @@ oUy aDS aDS aDS -pVG -pVG +vLU +vLU aDy -byb -hoQ -iSP -pKQ -iSP -iSP -iSP +ghK +erU +wwH +iWS +wwH +wwH +wwH aLk -sYK -hMR +dpg +kmQ aLk aLk aLk @@ -44197,7 +44197,7 @@ fDE uxU uxU uxU -fPu +bQT fDE spK acf @@ -44226,29 +44226,29 @@ abS abS abS abS -cnb +vuE qjf -cRp -cRp +iho +iho xNK -cRp -cRp -cRp -cRp -cRp -cRp +iho +iho +iho +iho +iho +iho wVk wVk wVk wVk csM -eYf -tSw -tSw -tSw +kJZ +hKc +hKc +hKc wVk wVk -dxS +vCd wVk wVk wVk @@ -44273,18 +44273,18 @@ tyG tyG tyG tyG -cmb -vYY -hnp -hnp -hnp -lso -hnp -hnp -hnp -hnp -oxx -cmb +fHA +cNz +biZ +biZ +biZ +rXV +biZ +biZ +biZ +biZ +gNm +fHA jRm jRm jRm @@ -44312,23 +44312,23 @@ bbO oUy aDS aDS -pVG -pVG -esD -gjd +vLU +vLU +erY +gYI aDy aDy -ifu -hoQ -hoQ -hoQ -rio +mCQ +erU +erU +erU +wWd aLk aLk -jrb -iEx -kgx -iEx +otC +gtA +sYf +gtA aLk aQx aQx @@ -44454,9 +44454,9 @@ abS pDt pDt pDt -cnb +vuE qjf -cRp +iho qjf qjf qjf @@ -44464,7 +44464,7 @@ qjf qjf qjf qjf -cRp +iho wVk wVk wVk @@ -44483,15 +44483,15 @@ wVk wVk wVk wVk -pMZ -shi -shi +yah +lTV +lTV ajX sqj sqj ajX ajX -bZH +she amr hJW tyG @@ -44501,18 +44501,18 @@ tyG tyG tyG tyG -cmb -lsz -hqR -kpe -hnp -hnp -hnp -hnp -hnp -hnp -dIx -cmb +fHA +gYc +iJu +oUL +biZ +biZ +biZ +biZ +biZ +biZ +eNC +fHA xpf jRm mFu @@ -44539,26 +44539,26 @@ oUy azp azp aDS -rsc -gjd -gjd -xsi -gjd -jKz +ioy +gYI +gYI +hob +gYI +nnd aDy -hoQ -hoQ -hoQ -hoQ -hoQ +erU +erU +erU +erU +erU aLk -nDK -iEx -iEx -iEx -lWp +sfN +gtA +gtA +gtA +tNX aLk -xto +epq aQx aQx oUy @@ -44682,9 +44682,9 @@ pDt pDt pDt pDt -cnb +vuE qjf -vNK +fOa qjf qjf qjf @@ -44692,7 +44692,7 @@ qjf aff qjf qjf -cRp +iho wVk csM lQC @@ -44711,15 +44711,15 @@ wVk wVk wVk wVk -tbM -puw +hbz +syQ whR sqj sqj sqj whR -puw -cWq +syQ +gbQ amr hJW tyG @@ -44730,16 +44730,16 @@ tyG tyG tyG anG -cmb -cmb +fHA +fHA anG -hnp -hnp -hnp -hnp +biZ +biZ +biZ +biZ anG -cmb -cmb +fHA +fHA anG gYs jRm @@ -44765,29 +44765,29 @@ azp azq azq azp -cLs +hgx aDy -lSQ -cVR -cVR -cVR -gjd -pNx +jFZ +gaO +gaO +gaO +gYI +lUM aDy -wdD -hoQ -hoQ -hoQ -hoQ +gcY +erU +erU +erU +erU aLk -yie -cEK -cEK -lAM -iEx +plo +nkA +nkA +nIh +gtA aLk -mgY -nYe +gog +oHF aQx aSv aTw @@ -44910,9 +44910,9 @@ pDt pDt qRj pDt -cnb +vuE qjf -wcB +mcw qjf qjf qjf @@ -44920,7 +44920,7 @@ qjf afg qjf qjf -cRp +iho qjf lQC lQC @@ -44937,17 +44937,17 @@ wVk csM xov wVk -uYk +rEd wVk -tbM +hbz whR sqj kft sqj whR whR -puw -cWq +syQ +gbQ amr hJW tyG @@ -44961,10 +44961,10 @@ tyG tyG tyG anG -cmb -hnp -lYL -cmb +fHA +biZ +ebR +fHA anG tyG tyG @@ -44990,35 +44990,35 @@ oUy wAP oUy azq -nCl -bGo -iCx -nCl +uOe +wKC +bih +uOe aDy aEC aDy aDy aDy -szN -gjd -jaK -hoQ -wrg -ivR -rjx -hoQ +jTE +gYI +tIG +erU +qXL +bLu +ggV +erU aLk aLk aLk aLk aLk -nUr +qWc aLk -sTk -bKN -qCf -sTk -sTk +fjz +eMg +nzq +fjz +fjz aSv oUy fjP @@ -45127,7 +45127,7 @@ eQL pgc iIB iIB -uDI +xhI xhv abS pDt @@ -45138,9 +45138,9 @@ pDt pDt pDt pDt -cnb +vuE qjf -nWE +qYp qjf qjf xNK @@ -45148,7 +45148,7 @@ xNK afh qjf qjf -cRp +iho qjf lQC lQC @@ -45167,15 +45167,15 @@ wVk wVk wVk wVk -tbM -puw +hbz +syQ whR sqj sqj sqj -puw +syQ whR -cWq +gbQ amr hJW tyG @@ -45218,35 +45218,35 @@ oUy oUy oUy azq -hjS -tUE -ooc -nCl +uYF +obP +rsA +uOe aDT -kFl -sKJ -sJW -jaK -jBL -gjd +dLl +rZW +cRr +tIG +vEX +gYI aDy -hoQ -tFr -qBF -qam -hoQ +erU +utR +nhh +xHM +erU aLl -nTP -mpi -mhE -jtZ -mhE +sVv +eFI +gjD +xKW +gjD aLl -kgj -fVY -sTk -sTk -jDj +dAA +cOT +fjz +fjz +gdQ aSv oUy oUy @@ -45366,9 +45366,9 @@ pDt pDt pDt wWS -cnb +vuE qjf -cRp +iho qjf qjf xNK @@ -45376,7 +45376,7 @@ xNK xNK qjf qjf -cRp +iho qjf qjf lQC @@ -45395,15 +45395,15 @@ wVk wVk wVk wVk -pMZ +yah ajX ajX sqj sqj ybu -shi -shi -bZH +lTV +lTV +she amr hJW tyG @@ -45446,35 +45446,35 @@ oUy azp azp azp -fAg -ooc -jop -mLm +jFS +rsA +gbK +jWv aDy -cAQ -qJo -bxJ +hJI +xDC +xwM aDy -cQu -tui +hDD +btG aDy -naT -tFr -smW -qam -hoQ +sBf +utR +adR +xHM +erU aLl -ecI -dgq -dgq -icY -dgq +sky +xaz +xaz +sfR +xaz aLl -qRU -bKN -tSM -ufF -rYR +cWH +eMg +ftI +pPI +kNQ aQx oUy oaL @@ -45594,9 +45594,9 @@ pDt pDt pDt guW -cnb +vuE qjf -cRp +iho qjf qjf qjf @@ -45604,7 +45604,7 @@ qjf qjf afl qjf -cRp +iho qjf qjf lQC @@ -45672,12 +45672,12 @@ aKo oUy oUy azq -vMw -thq -bBM -cgS -bRq -bBM +rix +wKk +nzS +bFE +wtA +nzS aDU aEF aDT @@ -45686,11 +45686,11 @@ aDy aDy aDy aDy -pyg -tFr -lyN -qam -qOB +rSN +utR +gCh +xHM +aae aLl aKQ aKQ @@ -45699,7 +45699,7 @@ aKQ aNT aLl aQx -bHy +hea aQx aQx aQx @@ -45802,7 +45802,7 @@ fDE fDE fDE fDE -lLm +sEO hNT ydz xhv @@ -45822,9 +45822,9 @@ pDt pDt pDt pDt -cnb +vuE qjf -cRp +iho qjf qjf qjf @@ -45832,7 +45832,7 @@ qjf qjf afn qjf -cRp +iho qjf qjf lQC @@ -45900,39 +45900,39 @@ oUy oUy oUy azq -bSI -nCl -myA +fvr +uOe +omf azP azP azP azP -dKk -ghR -grz -ghR -fwE -xyJ +eQz +xsK +iZk +xsK +iCB +gsT aGW -osi -tFr -smW -qam -cOo +eTw +utR +adR +xHM +scT aLl -loS -imf -ntT -kpE -lmE +tdc +xse +dna +tne +pYk aLl -pCF -tyJ -svg +wjX +oaQ +aRS aQM -rKb -rTA -dGq +wIx +wmD +mvY aQM oUy tBJ @@ -46044,15 +46044,15 @@ xhv pDt oeN oeN -lOs +srB oeN oeN oeN pDt pDt -cnb +vuE qjf -xGS +lXW aeF aeL qjf @@ -46060,10 +46060,10 @@ qjf qjf afo qjf -rDf -rDf -rDf -rDf +hMF +hMF +hMF +hMF lQC lQC fpn @@ -46128,39 +46128,39 @@ oUy pBk azp azp -oNn -vMG -nCl -vzh -uiZ -rGj +qkJ +vCT +uOe +qix +eix +uEw azP -cMi -bRL -qdS -bRL -qdS -bRL +eAo +cIP +dGU +cIP +dGU +cIP acl -nTU -tFr -uZf -qam -hoQ +lYS +utR +tgM +xHM +erU aKQ -qut -cbK -cbK -cbK -jxl +bvn +jmi +jmi +jmi +jDL aLl -mJg -odt -rpk +lrX +jBY +wOU aQM -tUs -vDr -xyF +gmO +xDT +sNC aQM aQM oUy @@ -46271,16 +46271,16 @@ hEe xhv pDt oeN -rvi -obr -obr -fho +bqt +iDP +iDP +nug oeN pDt pDt -cnb +vuE qjf -cRp +iho qjf qjf qjf @@ -46288,7 +46288,7 @@ qjf qjf qjf qjf -cRp +iho qjf qjf qjf @@ -46355,13 +46355,13 @@ oUy oUy oUy azp -oTr -nCl -bGo -nCl -wYO -hQg -gRz +qlp +uOe +wKC +uOe +bRB +qKO +eGd azP aOF aFo @@ -46369,27 +46369,27 @@ aFo aFo aFo aFo -uqf -hoQ -uue -diB -kmg -hoQ +rIy +erU +hrS +hdD +kzK +erU aKQ -hxz -sZx -vQV -kzj -fYj +gXM +wUq +dsE +rKv +lnC aLl -njX -psy -ylQ +oPH +oZp +mUo aQM aQM aQM -xyF -vmF +sNC +kOT aQM aXV oUy @@ -46472,7 +46472,7 @@ cSL ryp fDE fDE -jFw +hDE fDE fDE acf @@ -46495,20 +46495,20 @@ crn nbw ntr ntr -gdF +spO xhv pDt oeN -xdk -obr -obr -otB +xuU +iDP +iDP +jfw oeN pDt pDt -cnb +vuE qjf -cRp +iho qjf qjf qjf @@ -46516,7 +46516,7 @@ qjf qjf aeN qjf -cRp +iho qjf qjf qjf @@ -46585,8 +46585,8 @@ azp azp azP azP -nCl -sFR +uOe +kKo azP azP azP @@ -46597,27 +46597,27 @@ aFo aFo aFo aFo -pOe -hoQ -hoQ -hoQ -hoQ -hoQ +xGZ +erU +erU +erU +erU +erU aKQ -nWk -jOG -miC -jMv -edf +kxw +vUQ +sJV +tQe +oBu aLl -kRm -tyJ -sFg -tce -ylQ -lTb -nIT -jmP +eSR +oaQ +vss +cjf +mUo +xCP +jaY +fWT aQM aQM oUy @@ -46727,16 +46727,16 @@ eQL xhv pDt oeN -xwt -obr -obr -whP +ajk +iDP +iDP +uQV oeN pDt pDt -cnb +vuE qjf -cRp +iho qjf qjf qjf @@ -46810,43 +46810,43 @@ oUy oUy oUy azq -xso -rKl -iwC -nCl -nCl -vzh -uiZ -oub +tMa +cJg +qOn +uOe +uOe +qix +eix +aoG azP -qmq -fwq -umr -fwq +hGQ +xMG +xJE +xMG aGs aGs aGs -hoQ -dSc -rjx -hoQ -hoQ +erU +jfH +ggV +erU +erU aLl aKQ aLl -vwc -twn -oKj +fhS +viW +lAi aLl -hMM -ixc -mrq -cWt -srg +dST +ygg +dno +sWZ +dnR aQM -juA -dQg -xxx +qQF +fgU +mPA aSB oUy mko @@ -46934,7 +46934,7 @@ jgy abl acf uxU -lLm +sEO fDE qWI abl @@ -46955,16 +46955,16 @@ aTy hRB pDt oeN -jCp -obr -obr -fDb +jPj +iDP +iDP +uAK oeN qRj pDt -cnb +vuE qjf -cRp +iho qjf qjf qjf @@ -46988,7 +46988,7 @@ lQC lQC iXj iXj -htG +ooJ iXj lQC lQC @@ -47038,43 +47038,43 @@ oUy oUy oUy azq -tXp -oqD -mpt -bGo -nCl -uGk -ssm -cDq +pfI +bnt +vQH +wKC +uOe +pWl +gwL +ifP azP -hzO -bRL -qdS -bRL +ddx +cIP +dGU +cIP aGs -glk -fpd -hoQ -dSc -dSc -rjx -hoQ -fpd -jHQ +ktl +nLN +erU +jfH +jfH +ggV +erU +nLN +kBn aKQ -kSG -rKM -eTM +duM +nLd +gtv aLl -rZY -jPZ -ylQ -ylQ -dSb +gxp +cKo +mUo +mUo +uXP aQM -sPU -jug -nAE +gcy +xfb +raY aSB oUy mko @@ -47183,14 +47183,14 @@ pDt pDt pDt oeN -uTI -nwb -vQi -xda +rtq +ppQ +pxt +kgZ oeN pDt pDt -cnb +vuE xNK xNK qjf @@ -47215,8 +47215,8 @@ lQC lQC lQC iXj -sxc -iSx +hXU +qkf iXj ajq ako @@ -47269,26 +47269,26 @@ azp azP azP azP -nCl -nhw +uOe +trv azP azP azP azP acc -uIi +ncg acl acl aGs -jxo -hoQ -hoQ +fGr +erU +erU aJb -dSc -dSc -rjx -hoQ -vxS +jfH +jfH +ggV +erU +xFt aLl aNT aKQ @@ -47428,7 +47428,7 @@ qjf xNK qjf qjf -cRp +iho qjf xNK qjf @@ -47442,10 +47442,10 @@ lQC lQC lQC lQC -sWe -sBD -cKc -sWe +aPF +smL +kKM +aPF ajr sqj sqj @@ -47493,45 +47493,45 @@ oUy sgj mXR ayu -kqE -hoQ -wfh -hoQ -hoQ -hoQ -hoQ -hoQ -swz -jbz -mCj -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -lFY +weu +erU +ycd +erU +erU +erU +erU +erU +hHp +uDL +vts +erU +erU +erU +erU +erU +erU +cVq aJb aJc -xAR -dSc -pUL -pft -hoQ -hoQ -wdD -swz -uZX -deD -auL -hoQ -hoQ -hoQ -sGT -auL -wfh -sZG -hoQ +yfM +jfH +uMJ +wCa +erU +erU +gcY +hHp +gjZ +vbx +wBU +erU +erU +erU +fMj +wBU +ycd +nvT +erU aWK yle yle @@ -47656,24 +47656,24 @@ qjf qjf qjf qjf -cRp +iho qjf qjf qjf pim lQC lQC -uKu +oKH lQC lQC lQC lQC lQC lQC -sWe -ifS -hSr -mCL +aPF +mBj +mAA +sxz aju ajF ajG @@ -47721,46 +47721,46 @@ tsK axW jRm ayQ -hoQ -hoQ -lpC -hoQ -kFg -hoQ -hoQ -hoQ -hoQ -hoQ -auL -hoQ -hoQ -hoQ -hoQ -hoQ -kFg -hoQ +erU +erU +xhs +erU +vKx +erU +erU +erU +erU +erU +wBU +erU +erU +erU +erU +erU +vKx +erU aJc -dZJ -pUH -xAR -pUL -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -auL -wdD -hoQ -hoQ -hoQ -auL -hoQ -pKQ -sZG -lGO +gdS +nCr +yfM +uMJ +erU +erU +erU +erU +erU +erU +erU +wBU +gcY +erU +erU +erU +wBU +erU +iWS +nvT +dPQ yle yle yle @@ -47879,15 +47879,15 @@ xNK xNK xNK qjf -jwx +gHt qjf qjf qjf qjf -qPg -qPg -qPg -utl +rBY +rBY +rBY +oZg lQC lQC lQC @@ -47898,10 +47898,10 @@ lQC tMB lQC lQC -sWe -drc -hLQ -mCL +aPF +fxJ +xXe +sxz aju ajF ajZ @@ -47949,46 +47949,46 @@ jRm mFu jRm ayw -hoQ -hoQ -lpC -urG -hoQ -hoQ -xLP -xLP -xLP -xLP -wUB -xLP -xLP -xLP -xLP -ckA -hoQ -pUL -iAz -dZJ -xAR +erU +erU +xhs +lin +erU +erU +pGF +pGF +pGF +pGF +jvU +pGF +pGF +pGF +pGF +xAv +erU +uMJ +ehO +gdS +yfM aJc -hoQ -hoQ -xLP -xLP -xLP -xLP -xLP -xLP -wUB -xLP -xLP -hoQ -hoQ -auL -hoQ -wdD -sZG -hoQ +erU +erU +pGF +pGF +pGF +pGF +pGF +pGF +jvU +pGF +pGF +erU +erU +wBU +erU +gcY +nvT +erU yle yle yle @@ -48069,7 +48069,7 @@ acf uxU uxU mrg -ton +pBR ogJ jgy abl @@ -48107,17 +48107,17 @@ xNK xNK qjf qjf -jwx +gHt qjf qjf qjf qjf -cRp +iho qjf qjf -wpz -wpz -uKu +mQR +mQR +oKH lQC lQC lQC @@ -48127,8 +48127,8 @@ lQC lQC lQC iXj -jeW -gZx +vvo +dwd ajh ajs sqj @@ -48177,12 +48177,12 @@ jRm jRm jRm ayu -pKQ -pKQ -hoQ -hoQ -hoQ -cKE +iWS +iWS +erU +erU +erU +jTI aCx aCX aDw @@ -48192,15 +48192,15 @@ aFt aFT aFt aGN -kaJ -ouX -nCN -hGd +gCb +nPz +tpS +jjQ aJJ aKy aKM -nCN -mpe +tpS +huT aNj aFt aOM @@ -48210,12 +48210,12 @@ aFt aRN aFt aSV -kaJ -qLA -vzm -hoQ -hoQ -hoQ +gCb +aKw +pfZ +erU +erU +erU aWM yle yle @@ -48311,12 +48311,12 @@ acf acf ecy acH -nPx +aqo adk -ydO +kyp kZk -wkN -jgP +lmr +tbT ecy ecy ecy @@ -48335,12 +48335,12 @@ xNK xNK qjf qjf -jwx +gHt qjf qjf qjf qjf -cRp +iho afR qjf lQC @@ -48355,8 +48355,8 @@ lQC lQC oeS iXj -enw -gZx +clz +dwd iXj ajr sqj @@ -48405,46 +48405,46 @@ jRm jRm jRm ayQ -pKQ -hoQ -lpC -iSP -hoQ -hoQ -mAC -mAC -mAC -mAC -vrr -mAC -mAC -mAC -mAC -hoQ -hoQ -pUL -xAR -xAR -dZJ +iWS +erU +xhs +wwH +erU +erU +xnv +xnv +xnv +xnv +kFs +xnv +xnv +xnv +xnv +erU +erU +uMJ +yfM +yfM +gdS aJc -hoQ -hoQ -mAC -mAC -mAC -mAC -mAC -mAC -vrr -mAC -mAC -hoQ -hoQ -auL -hoQ -sZG -sZG -lGO +erU +erU +xnv +xnv +xnv +xnv +xnv +xnv +kFs +xnv +xnv +erU +erU +wBU +erU +nvT +nvT +dPQ yle yle yle @@ -48539,22 +48539,22 @@ acf acf ecy acH -xAw -wNb -dob -mBp -oIx -nsb -dob -pyL +jDT +drD +hfc +vEe +rqy +sgM +hfc +rGN vhx sfH adw pDt pDt pDt -pcs -xHP +vDB +aht qRj pDt pDt @@ -48568,7 +48568,7 @@ qjf qjf qjf qjf -cRp +iho qjf qjf lQC @@ -48583,9 +48583,9 @@ lQC lQC iXj iXj -cha -gZx -sWe +qzI +dwd +aPF ajt sqj sqj @@ -48633,46 +48633,46 @@ aWh god jRm ayw -pKQ -lpC -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -auL -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ +iWS +xhs +erU +erU +erU +erU +erU +erU +erU +erU +wBU +erU +erU +erU +erU +erU +erU +erU aJc -xAR -dSc -xAR -hoQ -ckA -hoQ -kFg -hoQ -hoQ -hoQ -hoQ -auL -hoQ -hoQ -hoQ -hoQ -auL -pKQ -nne -pUL -hoQ +yfM +jfH +yfM +erU +xAv +erU +vKx +erU +erU +erU +erU +wBU +erU +erU +erU +erU +wBU +iWS +fXB +uMJ +erU yle yle nfD @@ -48766,13 +48766,13 @@ acf acf acf ecy -xAw -pNE -qqs -gmn -tuN -hKj -dob +jDT +gfk +gZy +eMz +hYC +tgt +hfc nUC sfH wcK @@ -48789,14 +48789,14 @@ pDt aen xNK xNK -cRp -cRp -cRp -cRp -cRp +iho +iho +iho +iho +iho xNK -cRp -cRp +iho +iho qjf qjf lQC @@ -48810,10 +48810,10 @@ lQC eOq lQC iXj -qhJ +eFk keS -wzi -sWe +teo +aPF ajr kft sqj @@ -48861,52 +48861,52 @@ fjM aVm qKl ayR -uLH -pKQ -uai -hoQ -hoQ -hoQ -hoQ -hoQ -swz -gfI -mCj -hoQ -hoQ -hoQ -hoQ -uLH -hoQ -hoQ +jEt +iWS +jxg +erU +erU +erU +erU +erU +hHp +dZE +vts +erU +erU +erU +erU +jEt +erU +erU aJb aJb -dSc -dSc -hoQ -hoQ -hoQ -hoQ -hoQ -swz -gxW -deD -mHg -hoQ -hoQ -hoQ -hoQ -xLq -hoQ -hoQ -hoQ +jfH +jfH +erU +erU +erU +erU +erU +hHp +kHs +vbx +ssG +erU +erU +erU +erU +fXC +erU +erU +erU aWK yle yle yle yle cqw -ntq +oUN qZv bFa tsa @@ -48994,14 +48994,14 @@ acf acf acf acE -sWb -ffH -lFW -uoR +dqX +pPV +tcV +lxO qHC -glN -nCT -mBp +ijG +kvk +vEe lkj uya wSg @@ -49037,11 +49037,11 @@ lQC lQC lQC lQC -sWe -lyh +aPF +rVo aiF -gZx -sWe +dwd +aPF ajr sqj sqj @@ -49093,32 +49093,32 @@ azw azR azR azR -iqS -crQ +pLQ +efa azR azR azR aDY aET -iee -iee +ksC +ksC aDY aDY -jxo -hoQ -hoQ +fGr +erU +erU aJb -dSc -dSc -kmg -hoQ -vxS +jfH +jfH +kzK +erU +xFt aNk -grf -fLP -grf -grf -grf +ofH +qzb +ofH +ofH +ofH aUJ aNk aNk @@ -49134,7 +49134,7 @@ ebS ebS ebS vjO -ntq +oUN qZv hxL tsa @@ -49222,13 +49222,13 @@ acf acf acf ecy -xAw -hUg -mBp -skL +jDT +pdW +vEe +qzO tlQ hfX -faD +qma xPD ovw qSn @@ -49245,15 +49245,15 @@ pDt aen aen aen -qPg -qPg -qPg -qPg -qPg -qPg -dTl -qPg -qPg +rBY +rBY +rBY +rBY +rBY +rBY +uYM +rBY +rBY agc lQC lQC @@ -49265,11 +49265,11 @@ lQC lQC lQC lQC -sWe -jVA +aPF +xaS aiG -gZx -sWe +dwd +aPF ajr sqj sqj @@ -49318,43 +49318,43 @@ fjM fjM fjM azx -eMn -lkW -dfb -skT -skT -nbW -ovY -bfW +sun +cjE +qNu +wWL +wWL +tdO +dXG +glr aDY -foU -flt -flt -tkC +jWW +rmj +rmj +gGG aDY -fGK -fpd -hoQ -dSc -dSc -kmg -hoQ -itg -qMk +vFE +nLN +erU +jfH +jfH +kzK +erU +pyD +frH aNk -wrZ -nhR -aoe -tYC -lgC -dOJ -bAo -dtC +qJR +tjw +gQB +fmJ +pZH +hAE +euK +qcj aNk -svM -mCR -nnX -aTp +vod +bGU +hoc +heU aVu dZp wpw @@ -49451,24 +49451,24 @@ acf acf jGo acD -xAw -wyU -oIx +jDT +pmw +rqy vuy dOf -jSE -nCT -pyL +dnn +kvk +rGN ecy ecy ads pDt -trX +knq pDt adi lLi -trX -xHP +knq +aht pDt lKF xNK @@ -49493,10 +49493,10 @@ lQC lQC lQC lQC -sWe -pPl +aPF +qmg keS -gZx +dwd iXj ajr sqj @@ -49545,44 +49545,44 @@ cOs cOs fjM ayS -jvx -rFS -cli -kYH -iqS -iqS -fwf -cli -ivv +dLK +gMF +qGz +izG +pLQ +pLQ +wmV +qGz +wwn aDY -kvg -jqw -uuK -lir +dKn +oFW +vzm +jzO aDY aDY aDY -soP -dSc -kmg -hoQ -soP +jFv +jfH +kzK +erU +jFv aLp aLp aLp -pmL -nhR -nhR -nhR -nhR -hVd -dAw -eTR +lal +tjw +tjw +tjw +tjw +frX +iea +iah aNk -cja -hVd -oWw -mol +ptj +frX +eVp +nvo aVu wpw wpw @@ -49679,19 +49679,19 @@ acf acf acE ecy -xAw -xAw +jDT +jDT acX -hbn +gCy iHQ -hNj +hXE ecy ecy ecy adu oSp -trX -xHP +knq +aht pDt pDt pDt @@ -49722,9 +49722,9 @@ lQC lQC lQC iXj -fEP +ngv aiH -gZx +dwd iXj ajv sqj @@ -49777,39 +49777,39 @@ azw azw azR azR -skT -bQL +wWL +wlB azR azR azR aDY -xhX -dxD -xXM -nsR -vyg -axs +svz +wNz +deY +uEA +tfB +cea aDY -kpr -hoQ -hoQ -hoQ -kpr -oOi -scH -afD -uDm -nhR -iyN -juT -nhR -fzz -nnX -vNL +aZy +erU +erU +erU +aZy +gzX +gnm +azH +kAw +tjw +sYA +dkJ +tjw +jMY +hoc +vzI aNk -ohI -fzz -xHX +xcM +jMY +huF aVu aVu wpw @@ -49949,11 +49949,11 @@ hHR hHR tMB lQC -sWe -rEm +aPF +xFL keS -oMM -mCL +qXj +sxz aju ajG sqj @@ -50003,41 +50003,41 @@ fjM fjM fjM azw -gCS -gRi -iqS -iqS -eMn -tos -eMn +cZe +gXS +pLQ +pLQ +sun +xFV +sun aDY -inr -flt -gjP -flt -flt -jIR +qWq +rmj +qSR +rmj +rmj +dGI aDY -ryQ -wrg -ivR -rjx -nTU -oOi -nnl -afD -jwL -nhR -nhR -nhR -nhR -rCN -iWa -nnX +mqe +qXL +bLu +ggV +lYS +gzX +fOs +azH +mcf +tjw +tjw +tjw +tjw +tBN +aNv +hoc aTD -nnX -sgw -jyu +hoc +bxV +dfD aVu wpw tIZ @@ -50177,11 +50177,11 @@ hHR lQC lQC lQC -sWe -rEm +aPF +xFL keS -vXl -mCL +iri +sxz aju ajG sqj @@ -50232,33 +50232,33 @@ fjM fjM azw azw -ddR -xWJ -xWJ -raW -eqj -tpc +tzG +sqz +sqz +lcA +tZq +nqe aEa -qHm -omJ -flt -omt -flt -kzk +rGH +tWb +rmj +xOT +rmj +ihi aDY -eqM -tFr -eoF -qam -hoQ -one -xQd -afD -nhR -nhR -nhR -nhR -uhV +prt +utR +uQS +xHM +erU +jFI +qLV +azH +tjw +tjw +tjw +tjw +tGr aUJ aNk aTb @@ -50405,11 +50405,11 @@ lQC lQC lQC lQC -sWe -div +aPF +bWV aiI -qYX -sWe +nLO +aPF ajr sqj ybu @@ -50459,40 +50459,40 @@ fjM fjM fjM azU -jvx -mwh -iqS -iqS +dLK +hwI +pLQ +pLQ azR azR azR aDY -kvg -llW -flt -kJZ -flt -iSD +dKn +nHA +rmj +dKS +rmj +dEV aDY -vmE -tFr -lGZ -qam -wdD -xQd -xQd -afD -lgC -gyL -uqS -kXp -tLW +pqz +utR +irD +xHM +gcY +qLV +qLV +azH +pZH +cTc +fTp +ikS +egL aUJ -mwQ -bTB -ute -xQd -xQd +ewQ +qhb +rDg +qLV +qLV aNo eeW wpw @@ -50613,9 +50613,9 @@ pDt ahv aeg aeg -naW -rih -pEz +fSM +qLp +pAI aeg aeg ahv @@ -50634,9 +50634,9 @@ lQC lQC lQC iXj -vwO -thu -aGT +udh +dLV +gmY iXj ajr sqj @@ -50687,39 +50687,39 @@ fjM pJN cOs azU -jvx -xjc -oPQ -iqS -fQh -iqS -hHt +dLK +aLx +eiD +pLQ +hGV +pLQ +kwp aEb -kvg -kJZ -flt -xMP -flt -tay +dKn +dKS +rmj +rDl +rmj +vQY aDY -ifu -tFr -iHh -qam -hoQ -oOi -xQd -xQd -xQd -xQd +mCQ +utR +tho +xHM +erU +gzX +qLV +qLV +qLV +qLV aNk aNk aNk aUJ -cBx -cyR -lzD -sat +jkh +llo +tAb +cQQ aNo aNo wpw @@ -50840,11 +50840,11 @@ ahv ahv ahv slW -epF -xid -pbL -pEz -epF +fOY +kSm +bxk +pAI +fOY aeg ahv ahv @@ -50862,9 +50862,9 @@ lQC lQC lQC iXj -sWe -teh -sWe +aPF +hpp +aPF iXj ajr ajH @@ -50903,8 +50903,8 @@ aqW aqW arH aqW -tlV -opp +nJM +ygy arK avR vLO @@ -50918,35 +50918,35 @@ fjM azw aBg azR -vUD -slq -kqG -xZD +gIZ +iMQ +soZ +uLs aDY -eRX -mLn -flt -iSD -flt -vjf +gLy +plB +rmj +dEV +rmj +mIZ aDY -hFS -tFr -lGZ -qam -kFg -oOi -tjt -xQd -xQd -xQd -xQd -rRx -djG -wtv -xQd -fxy -fxy +sgl +utR +irD +xHM +vKx +gzX +cIs +qLV +qLV +qLV +qLV +qIt +sri +iBI +qLV +rod +rod aNo aNo cMj @@ -51032,7 +51032,7 @@ pUm pUm vVC vVC -mLs +wZQ etU xar pUm @@ -51068,11 +51068,11 @@ ahv ahv ahv aeg -mUO -vwv -pAH -iwF -mUO +nAC +plV +iYe +jjs +nAC slW ahv ahv @@ -51131,9 +51131,9 @@ aqW asi aqW aqW -lce -opp -opp +nsi +ygy +ygy arK arK fjM @@ -51148,33 +51148,33 @@ ati azR azR azR -fyG -xjc +xLe +aLx aDY -gAX -kez -flt -kJZ +bJE +sed +rmj +dKS aDY aDY aDY -hoQ -tFr -mIt -qam -hoQ +erU +utR +rMM +xHM +erU aLp aLp aLp -xQd -bTB -bTB -eIj -bTB -wtv -hsr -xQd -xQd +qLV +qhb +qhb +nus +qhb +iBI +aIk +qLV +qLV aTe wpw wpw @@ -51251,7 +51251,7 @@ vVC vVC vVC bvj -jWD +vpj bvj bvj pUm @@ -51296,11 +51296,11 @@ ahv ahv ahv aeg -epF -pbL -pbL -pbL -epF +fOY +bxk +bxk +bxk +fOY aeg ahv ahv @@ -51359,10 +51359,10 @@ aqW arH aqW aua -lce -mWv -opp -opp +nsi +tiT +ygy +ygy arK arK fjM @@ -51384,25 +51384,25 @@ aDY aEb aDY aDY -lwS -hoQ -hoQ -uue -diB -kmg -hoQ -hoQ -qgU +fpK +erU +erU +hrS +hdD +kzK +erU +erU +mwM aLp -mQm -obe -uBG -uDL -keE -wtv -xQd -hsr -xQd +fUr +oLF +wyr +cqP +lcj +iBI +qLV +aIk +qLV aUh aUO wpw @@ -51524,11 +51524,11 @@ ahv ahv afS aej -pvv -lzn -eHJ -chB -dir +lTz +dCa +sit +nUJ +ccv aej ssK rYA @@ -51587,11 +51587,11 @@ asz aqW aqW aqW -lce -cIZ -opp -opp -opp +nsi +oxI +ygy +ygy +ygy arK arK fjM @@ -51606,28 +51606,28 @@ ati wWs ati asN -kVW -dBZ -kVW -jOe +whN +kZP +whN +rqF aGw asN -naT -hoQ -fvI -hoQ -hoQ -hoQ -hoQ -hoQ -hoQ -oOi -xQd -dIM -yjD -uDL -izG -pjR +sBf +erU +tes +erU +erU +erU +erU +erU +erU +gzX +qLV +foT +wte +cqP +uHK +pJq aNo aNo aNo @@ -51728,7 +51728,7 @@ whU whU unp vAT -rrd +qxP vAT lBl uyn @@ -51751,13 +51751,13 @@ ahv ahv ahv aeg -srk -bLG -kzX -kzX -kzX -sKG -epF +tjY +fWU +ots +ots +ots +xNA +fOY cRm rYA agX @@ -51778,16 +51778,16 @@ xch xch xch xch -xlj -sSz -puF -dfk -jVc -fTl -dfk -jVc -tGp -jwd +tnq +jZB +xyL +gPT +fQn +tvU +gPT +fQn +ghk +sHI cpY dmZ dmZ @@ -51812,15 +51812,15 @@ arH aqW aqW aqW -lce -lce -geG -lce -ekR -opp -opp -opp -opp +nsi +nsi +oag +nsi +pNt +ygy +ygy +ygy +ygy arK axY abY @@ -51834,27 +51834,27 @@ ati aAD ati axZ -rgI -fsz -fsz -fsz -lXg -yeZ -hoQ -hoQ -hoQ -uLH -hoQ -hoQ -hoQ -hoQ -hoQ -opZ -xQd -tfN -kkN -kkN -kkN +lLt +jTx +jTx +jTx +mCT +hpe +erU +erU +erU +jEt +erU +erU +erU +erU +erU +vQK +qLV +rNb +uaj +uaj +uaj aNo aNo aky @@ -51933,7 +51933,7 @@ pUm pUm vVC bvj -kwD +jbh bvj bvj pUm @@ -51966,7 +51966,7 @@ tSi bkK vAT jJg -qwd +bKw whU whU pDt @@ -51979,13 +51979,13 @@ ahv ahv ahv slW -jvM -sKG -kzX -kzX -kzX -hej -aNs +hYb +xNA +ots +ots +ots +vdv +vtH ssK rYA agX @@ -52006,7 +52006,7 @@ xch xch xch xch -ygw +cGW hsc hsc hsc @@ -52015,7 +52015,7 @@ hsc hsc hsc hsc -pqL +vuU dmZ dmZ amW @@ -52040,15 +52040,15 @@ aqW aqW asz aqW -tlV -opp -opp -opp -opp -opp -opp -opp -opp +nJM +ygy +ygy +ygy +ygy +ygy +ygy +ygy +ygy arK asN asN @@ -52062,25 +52062,25 @@ ati wWs ati axZ -fsz -fsz -qen -fsz -lXg -yeZ -hoQ -hoQ -urG -hoQ -hoQ -hoQ -hoQ -urG -nrr -oOi -xQd -fcU -xQd +jTx +jTx +uHn +jTx +mCT +hpe +erU +erU +lin +erU +erU +erU +erU +lin +rio +gzX +qLV +nOJ +qLV aNo aNo aNo @@ -52207,13 +52207,13 @@ ahv ahv ahv slW -srk -sKG -kzX -kzX -kzX -sKG -cye +tjY +xNA +ots +ots +ots +xNA +oQl jFc rYA agX @@ -52227,23 +52227,23 @@ wJT xch xch xch -ktu -cJt +vrF +ucZ xch xch xch xch xch -oRu -qoZ -ceA -mys -bgG -bgG -sZU -uNj -uNj -gvF +xMg +ifC +hwJ +gMJ +kas +kas +jyU +fst +fst +raC cpY dmZ dmZ @@ -52268,16 +52268,16 @@ aqW aqW aqW aqW -tlV -pDC -opp -opp -opp -opp -opp -tGQ -opp -opp +nJM +gTD +ygy +ygy +ygy +ygy +ygy +xbG +ygy +ygy asN ayC ati @@ -52296,22 +52296,22 @@ aFF aFF aGy asN -wUk -hoQ -hoQ -hoQ -hoQ -urG -hoQ -hoQ -ncg +xIi +erU +erU +erU +erU +lin +erU +erU +qqi aLp -hsr +aIk aNo -xOr +ivi aNo -ndF -gsT +oRc +rFV aky btF muv @@ -52375,7 +52375,7 @@ pZb uYj eqS uYj -prp +sIU xpR xpR xpR @@ -52435,13 +52435,13 @@ ahv ahv ahv slW -jvM -sKG -kzX -kzX -kzX -sKG -hpJ +hYb +xNA +ots +ots +ots +xNA +wET aeg rYA gxd @@ -52492,20 +52492,20 @@ cpY aqG aqX aqW -tlV -lce -geG -lce -lce -opp -opp -opp -opp -gBL -opp -opp -opp -opp +nJM +nsi +oag +nsi +nsi +ygy +ygy +ygy +ygy +vvU +ygy +ygy +ygy +ygy axZ ati ati @@ -52517,7 +52517,7 @@ aBH ati wWs ati -ouv +rIi atE asN aFG @@ -52525,21 +52525,21 @@ aFZ aFZ aFG aGW -nrr -urG -urG -qwf -hoQ -urG -qwf +rio +lin +lin +ppH +erU +lin +ppH ayP aNo -cjO +qfI aNo aGz aGz aGz -eqb +iTY aky btF muv @@ -52591,7 +52591,7 @@ aag aag dzM uYj -prp +sIU gzH qfK pRD @@ -52663,13 +52663,13 @@ ahv ahv ahv aeg -cye -sKG -kzX -kzX -kzX -sKG -srk +oQl +xNA +ots +ots +ots +xNA +tjY slW rYA fPi @@ -52686,9 +52686,9 @@ xch ffC xch xch -ktu -uxs -ktu +vrF +uDk +vrF jic xch ajw @@ -52720,20 +52720,20 @@ cpY aqI aqY aqY -rOm -opp -opp -opp -opp -opp -opp -tZT -opp -opp -opp -opp -opp -opp +mmM +ygy +ygy +ygy +ygy +ygy +ygy +pBZ +ygy +ygy +ygy +ygy +ygy +ygy axZ ati ati @@ -52749,25 +52749,25 @@ ati ati ati axZ -fLf -ndF -gsT +gcd +oRc +rFV ayP ayu -hoQ -qOY +erU +lHb ayu -hoQ -qOY +erU +lHb ayu ayP aky aky -oEt -vlh -jnn -vlh -eqb +sxL +lfV +fFU +lfV +iTY aGS btF akj @@ -52891,13 +52891,13 @@ ahv ahv ahv afS -eqp -sKG -kzX -kzX -kzX -sKG -sVn +qZF +xNA +ots +ots +ots +xNA +peZ aeg vgJ mUZ @@ -52950,18 +52950,18 @@ aqK aqK arK arK -opp -opp -dpt -dpt -opp -xiA -opp -opp -opp -opp -opp -opp +ygy +ygy +xRI +xRI +ygy +dZt +ygy +ygy +ygy +ygy +ygy +ygy asN ayC ati @@ -52977,26 +52977,26 @@ ati ati ati aFH -eDg +dRY aGz -rNX -hgh -ndF -ndF -ndF -dkP -ndF -ndF -ndF -suZ -ndF -ndF -ssG +oly +cKq +oRc +oRc +oRc +mGa +oRc +oRc +oRc +coj +oRc +oRc +ljG aGz aGz aGz -jAh -gsT +vCt +rFV btF aky muv @@ -53120,18 +53120,18 @@ ahv afS afS afS -qrw -jtI -jtI -jtI -qrw +kiv +wLa +wLa +wLa +kiv afS afS aeg wcW gQr agX -asE +eAV agX agX ahv @@ -53178,17 +53178,17 @@ fuY cpY cpY arK -opp -opp -opp -opp -opp -ndv -tGQ -opp -opp -unO -unO +ygy +ygy +ygy +ygy +ygy +xlz +xbG +ygy +ygy +lSW +lSW cfD lyS lyS @@ -53205,26 +53205,26 @@ aDF ayE asN asN -qww -iqb -iqb -fBN -sdj -dgn -ppl -dgn -dgn -dgn -vlh -eqb -sdj -vlh -wQc -sdj -vlh -jnn -eqb -eqb +hVo +mzm +mzm +sjr +nil +jFe +oDk +jFe +jFe +jFe +lfV +iTY +nil +lfV +qzM +nil +lfV +fFU +iTY +iTY btF btF akj @@ -53348,11 +53348,11 @@ ahv aeg wcj lse -xLO -rWQ -rWQ -rWQ -cOg +sDl +esq +esq +esq +gno trJ oDY aeg @@ -53405,17 +53405,17 @@ lBu cpY cpY cpY -opp -opp -tGQ -opp -opp -opp -opp -opp -opp -unO -unO +ygy +ygy +xbG +ygy +ygy +ygy +ygy +ygy +ygy +lSW +lSW cfD cfD apu @@ -53436,23 +53436,23 @@ aky aky aky aGS -oEt -wQc +sxL +qzM aGz -vlh +lfV aGz -vlh +lfV aGz -jnn -eqb -qpo +fFU +iTY +uEn aGz aGz aGz aGz aGz -eqb -eqb +iTY +iTY aky btF aky @@ -53633,16 +53633,16 @@ cpY cpY oER cpY -opp -opp -opp -unO -unO -opp -opp -opp -unO -unO +ygy +ygy +ygy +lSW +lSW +ygy +ygy +ygy +lSW +lSW cfD cfD apu @@ -53664,23 +53664,23 @@ aky jtg aky aPR -oEt -vlh +sxL +lfV aGz -jnn +fFU adh -sdj +nil aGz -sdj -eqb -qpo -vlh -vlh -jnn -vlh -wQc -eqb -eqb +nil +iTY +uEn +lfV +lfV +fFU +lfV +qzM +iTY +iTY aky btF aky @@ -53756,7 +53756,7 @@ bvj bvj oQm bvj -kwD +jbh mHk egU acg @@ -53796,28 +53796,28 @@ vAT fIW fTM agd -pxF -tsB -tmA +dji +lSX +jzD dkN ufW ufW aAd -uRU +uAm wmj boe boe boe qAc -hze +dPq qsM ufW -mfs -unU -unU -unU -unU -unU +wmM +mfO +mfO +mfO +mfO +mfO slW afS ahv @@ -53828,11 +53828,11 @@ xch xch dXq qBQ -smw +eVX cQX nnq oGj -rdE +wWf nVZ udj ajw @@ -53861,14 +53861,14 @@ cpY fuY cpY cpY -opp -opp +ygy +ygy arK arK arK -opp -opp -opp +ygy +ygy +ygy cfD cfD cfD @@ -53888,27 +53888,27 @@ ati ati ati abY -ndF -gsT +oRc +rFV aky aky -oEt -vlh +sxL +lfV aGz -vlh +lfV aJS -vlh +lfV aGz -wQc -eqb -qpo +qzM +iTY +uEn aGz eQh aGz aGz aGz -eqb -eqb +iTY +iTY aky btF btF @@ -53960,7 +53960,7 @@ pZb xpR pZb rYe -prp +sIU uYj rIm aag @@ -54020,7 +54020,7 @@ whU whU whU unp -eUX +uZT fIW akL adZ @@ -54050,9 +54050,9 @@ wUz afS aeg lUy -mjq -iQA -iQA +cpX +eCo +eCo pRx vpu jSp @@ -54094,9 +54094,9 @@ cpY cpY aya arK -gxT -gxT -gxT +vvW +vvW +vvW cfD apu apu @@ -54108,7 +54108,7 @@ lyS lyS lyS asN -czK +urO ati ati asN @@ -54116,27 +54116,27 @@ abY abY abY asN -eeZ -eqb +bFY +iTY aky aRq -oEt -jnn +sxL +fFU aGz -vlh +lfV aGz -sdj +nil aGz -vlh -eqb -sdj -vlh -vlh -vlh -jnn -sdj -eqb -eqb +lfV +iTY +nil +lfV +lfV +lfV +fFU +nil +iTY +iTY aky aky aky @@ -54262,8 +54262,8 @@ agX agX boe adY -unU -ntK +mfO +nsC fur kRR ksB @@ -54283,13 +54283,13 @@ ahB wZW wZW oFO -gfs +kSg bEq -xOG -nqV -sOh +kpT +iiw +wJL dGc -nmm +jrb gTM jLc aqu @@ -54322,9 +54322,9 @@ abY abY abY asN -lnc -pwz -lnc +rQx +xCz +rQx lyS lyS lyS @@ -54336,43 +54336,43 @@ apu apu apu asN -mki +wjI avS -mki +wjI asN -vpm -ndF -ndF -ndF -ssG -rNX -ndF -ndF -ssG +qgF +oRc +oRc +oRc +ljG +oly +oRc +oRc +ljG aGz aGz aGz -vpm +qgF aGz aGz aGz -rNX -ndF -ndF -ndF -ndF -ndF -ndF -ndF -vpm +oly +oRc +oRc +oRc +oRc +oRc +oRc +oRc +qgF aky aky aky aky pab -cTV +itX apN -dNS +xjC meP wYp cJA @@ -54490,16 +54490,16 @@ agX boe boe oys -iLG -jsh +ubD +ctv ufW qvf kqL kff -lvF +eNZ boe boe -lvF +eNZ yhd ufW agX @@ -54511,13 +54511,13 @@ wZW wZW wZW wZW -qJu +xzu bEq -nqV -xsw -nqV +iiw +eFp +iiw dGc -vcS +lQP gTM xch ajw @@ -54546,17 +54546,17 @@ uaP cpY cpY abY -luR -pjd -uEC -lnc -lnc +mDr +ttA +frQ +rQx +rQx ati -lnc -qTB -lnc -bjS -eZq +rQx +kxE +rQx +rNK +ifI lyS apu apu @@ -54564,11 +54564,11 @@ apu apu pab btF -gIY +bVT btb -lYs -ndF -ssG +cFY +oRc +ljG ank aGB aEj @@ -54592,15 +54592,15 @@ aFK aGe aGB ank -eqb +iTY aky aky aky aky aky -dMT +xTK fTE -mAG +odQ meP wVK fEn @@ -54718,8 +54718,8 @@ boe boe boe ekB -naU -lPo +xlL +bZL nLf aev wUz @@ -54739,13 +54739,13 @@ wZW wZW wZW pIz -iBl +pfR bEq -uvj -nqV -lre +pmv +iiw +neH dGc -jRg +ftS gTM xch ajw @@ -54774,17 +54774,17 @@ cpY cpY cpY abY -eNf -lnc -lnc -lnc +llW +rQx +rQx +rQx ati ati ati -lnc -lnc -lnc -lQO +rQx +rQx +rQx +nOw lyS apu apu @@ -54792,7 +54792,7 @@ apu phU muv btF -oEt +sxL lke aGz aGz @@ -54820,15 +54820,15 @@ ank ano ank aRZ -eqb +iTY aky aky aky aky aky -iCB +ffJ aqf -sew +tic wYp wYp meP @@ -54962,9 +54962,9 @@ kqL aeg aeg lUy -hzk -dzF -dzF +aPl +sex +sex bQA lWw eAr @@ -54975,7 +54975,7 @@ iOz ttZ mVg gTM -bVv +cqa ajw ajI ajI @@ -55002,17 +55002,17 @@ cpY cpY alD abY -dgQ -lnc -lnc +qfA +rQx +rQx ave ati -ewO +ndw ati wQj -lnc -lnc -pwz +rQx +rQx +xCz lyS apu apu @@ -55020,11 +55020,11 @@ apu muv pab btF -qww -iqb -iqb -iqb -neB +hVo +mzm +mzm +mzm +rAg aDK ank ank @@ -55048,15 +55048,15 @@ ank ank ank aSa -eqb +iTY aky aky aky aky muv -tfw +mVc jnG -mAG +odQ fEn meP xcC @@ -55085,7 +55085,7 @@ pZb xpR xpR uYj -pKc +vEV uYj rpx aag @@ -55164,28 +55164,28 @@ vCG fTM fTM aer -jtG -wAV -jtG +mjx +bIz +mjx ahv aeg aeg qAc -jlI +ktu rYA yhd dxy agX hNq -iMy +qGl afq ufW -cOr -naU -naU -naU -naU -naU +xMZ +xlL +xlL +xlL +xlL +xlL aeg aeg ahv @@ -55196,11 +55196,11 @@ xch xch bOg tDa -xob +hPh hke nnq sIM -pMy +dVw kZs ekJ rGZ @@ -55230,17 +55230,17 @@ dLY dLY asN asN -xfe -lnc +bkm +rQx ati tfA aub -qBl +dFW ati awY ati -lbW -eXw +nTQ +doJ lyS lyS apu @@ -55252,7 +55252,7 @@ btF btF btF btF -oEt +sxL aDL ank ank @@ -55276,15 +55276,15 @@ ank ank ank aSb -eqb +iTY aky aky aky aky muv -kYm +oiO apN -keF +oxD meP wYp jzZ @@ -55456,20 +55456,20 @@ jik fED jik dLY -xTq -lnc -lnc +jqR +rQx +rQx ati atE rGB ati -uZU +fyW ati -myk +onw ati ati -lnc -bPH +rQx +pdY lyS apu phU @@ -55480,7 +55480,7 @@ aky aky dbY btF -oEt +sxL aDI ank ank @@ -55504,7 +55504,7 @@ ank ank ank aSc -eqb +iTY aky aky aky @@ -55622,7 +55622,7 @@ fTM fTM vNT vAT -gxf +emJ ahv ahv slW @@ -55685,19 +55685,19 @@ dLY dLY dLY asP -lnc +rQx ati ati ati avg ati -cAg +vcr ati -mFw +dOZ atE -lnc -pgn -gva +rQx +bff +lyB lyS apu apu @@ -55708,7 +55708,7 @@ kFx aky aky btF -oEt +sxL aDJ ank ank @@ -55732,7 +55732,7 @@ ank ank ank aRZ -eqb +iTY aky btF btF @@ -55810,7 +55810,7 @@ pUm pUm vVC vVC -mLs +wZQ bvj mNl oDE @@ -55855,13 +55855,13 @@ ahv ahv aeg aeg -cOr -naU -naU -naU -naU -naU -cjL +xMZ +xlL +xlL +xlL +xlL +xlL +fIZ afS afS rYA @@ -55877,7 +55877,7 @@ xch xch xch xch -cJt +ucZ xch xch xch @@ -55912,20 +55912,20 @@ dLY dLY dLY dLY -xTq -lnc -lnc +jqR +rQx +rQx ati ati avh ati -sQU +pFJ aub -qBl +dFW ati ati -lnc -bUI +rQx +phT lyS apu apu @@ -55936,7 +55936,7 @@ vGg nSR aky btF -oEt +sxL aDK ank ank @@ -55948,7 +55948,7 @@ ank ank ank ank -uwL +uYR ank ank ank @@ -55960,7 +55960,7 @@ ank ank ank aSa -eqb +iTY aky btF aky @@ -56092,7 +56092,7 @@ boe kPU afS ahv -kTa +kpy agX agX agX @@ -56142,17 +56142,17 @@ dLY eCx asN asN -viy -leh -wYw +dDB +nLS +gEv bqf ati -gzK +mNm atE ave ati -lnc -lnc +rQx +rQx lyS lyS apu @@ -56160,11 +56160,11 @@ apu apu muv akj -pmF +ksj qBX nSR btF -oEt +sxL aDL ank ank @@ -56188,7 +56188,7 @@ ank ank ank aSb -eqb +iTY aky btF aky @@ -56370,17 +56370,17 @@ dLY dLY dLY abY -bEK -lnc -lnc +gIM +rQx +rQx cNH ati -cqO +lqF ati xLi -lnc -lnc -tZd +rQx +rQx +hBl lyS apu apu @@ -56388,11 +56388,11 @@ apu apu pab phU -pmF +ksj qBX tKI btF -oEt +sxL aDI ank ank @@ -56416,7 +56416,7 @@ ank ank ank aSc -eqb +iTY btF btF aky @@ -56523,7 +56523,7 @@ whU aco vAT vAT -bFn +rRA vAT whx lBl @@ -56598,17 +56598,17 @@ dLY dLY dLY abY -bEK -lnc -lnc -lnc +gIM +rQx +rQx +rQx ati ati ati -lnc -lnc -lnc -sbY +rQx +rQx +rQx +czn lyS apu apu @@ -56620,7 +56620,7 @@ shq qBX tKI btF -oEt +sxL aDJ ank ank @@ -56644,7 +56644,7 @@ ank ank ank aRZ -eqb +iTY btF aky aky @@ -56721,7 +56721,7 @@ pUm pUm pUm aaQ -pac +heT aaQ acg acg @@ -56779,7 +56779,7 @@ ufW rac agX agX -wJE +juW agX agX rGZ @@ -56826,17 +56826,17 @@ dLY qcX dLY abY -xIS -lnc -lnc -lbW -lnc +sUs +rQx +rQx +nTQ +rQx ati -lnc -eIt -uod -jeT -qyk +rQx +eNj +cil +pyO +xJv lyS apu apu @@ -56848,7 +56848,7 @@ aky shq rKQ btF -oEt +sxL aDK ank ank @@ -56872,7 +56872,7 @@ ank ank ank aSa -eqb +iTY btF anv akj @@ -56948,9 +56948,9 @@ pUm pUm pUm aaQ -pac -pac -pac +heT +heT +heT aaQ acg acg @@ -57028,7 +57028,7 @@ vty glS vty iJs -vzU +epF hba hba hba @@ -57058,9 +57058,9 @@ atI abY abY asN -lnc -lnc -lnc +rQx +rQx +rQx asN aFG aFG @@ -57076,7 +57076,7 @@ phU aky jtg btF -oEt +sxL aDL ank ano @@ -57100,7 +57100,7 @@ ank ano ank aSb -eqb +iTY btF aky aky @@ -57175,11 +57175,11 @@ pZb pUm pUm aaQ -pac -hKU -pac -pac -pac +heT +xDE +heT +heT +heT aaQ acg aaN @@ -57293,8 +57293,8 @@ asN ihS oUa oUa -qmb -cpj +qIW +kVi xDw apu apu @@ -57304,7 +57304,7 @@ pab aky aky btF -oEt +sxL ank aGE aEl @@ -57328,7 +57328,7 @@ aFM aGf aGE ank -eqb +iTY btF aky aky @@ -57403,11 +57403,11 @@ pZb pUm pUm aaQ -pac -pac -saI -pac -pac +heT +heT +adW +heT +heT aaQ acg acg @@ -57488,7 +57488,7 @@ hba hba nWe hba -adj +myf hba hba mOA @@ -57521,9 +57521,9 @@ oUa isJ oUa kGk -kdx -dAI -sMQ +vzs +rsy +wcs apu apu apu @@ -57532,31 +57532,31 @@ phU eHr aky btF -vpm -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -vpm -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -iqb -vpm +qgF +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +qgF +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +mzm +qgF btF aky akj @@ -57631,11 +57631,11 @@ pZb pUm vVC aaQ -pac -pac -hKU -pac -pac +heT +heT +xDE +heT +heT aaQ acg acg @@ -57676,7 +57676,7 @@ agm whU ahv afS -yiV +rXt agX agX agX @@ -57688,7 +57688,7 @@ agX boe boe boe -qXG +jNV afS ahv agX @@ -57749,9 +57749,9 @@ oUa vbh dsi oUa -kdx -dAI -dAI +vzs +rsy +rsy apu apu apu @@ -57828,7 +57828,7 @@ pZb cfL rYe uYj -plw +gaB egc uYj mEo @@ -57860,9 +57860,9 @@ vVC vVC uBR aaQ -pac -pac -pac +heT +heT +heT aaQ nzw acg @@ -57916,7 +57916,7 @@ kRR agX boe boe -wbC +bQl afS ahv ahv @@ -57946,7 +57946,7 @@ ePV dKg syc hba -bzR +bpq hba hba ajw @@ -57975,10 +57975,10 @@ oUa oUa oUa oUa -xns +uOQ oUa -dbw -jXV +uKl +nad apu apu oUa @@ -58144,7 +58144,7 @@ cpQ agX boe boe -lea +cDv jFc ahv ahv @@ -58372,7 +58372,7 @@ aev agX boe boe -xlR +xfs jFc ahv ahv @@ -58404,7 +58404,7 @@ vty uve iJs hba -bzR +bpq ajw ajI ajI @@ -58465,9 +58465,9 @@ apu apu apN phU -pEK -fSd -epN +von +lKd +iTu akj ncq apu @@ -58600,7 +58600,7 @@ agX boe boe boe -gsh +kNx jFc ahv ahv @@ -58828,7 +58828,7 @@ boe boe boe boe -eOy +sNz afS ahv ahv @@ -58921,9 +58921,9 @@ apu aHN phU ugk -eFe -bOx -pVq +mMP +cZM +juC phU phU eDS @@ -58938,7 +58938,7 @@ lBw eTQ opS opS -ldh +cvY wpw lBw lBw @@ -59015,7 +59015,7 @@ eZC uBR pUm vVC -vaP +tTc lhE acg acg @@ -59088,7 +59088,7 @@ uve uve iJs hba -jKk +oSn hba hIh kJm @@ -59392,7 +59392,7 @@ qjt wpw wpw eTQ -bgt +qCb lnV qgA lBw @@ -59519,7 +59519,7 @@ ahv ahv xch xch -cJt +ucZ xch ahr xch @@ -59548,7 +59548,7 @@ hba nWe hba hba -xRK +xsX ogM oHu ajI @@ -59557,7 +59557,7 @@ wkt efX efX hWj -npA +qxa mqJ cCr dLY @@ -59728,7 +59728,7 @@ whU whU ahv ahv -kgD +hxt agX nEo hcN @@ -59758,7 +59758,7 @@ jxR uve uve uve -irh +hEb git vty moM @@ -59774,7 +59774,7 @@ uve iJs hba hba -bWG +ioP hba mqJ ogM @@ -59783,7 +59783,7 @@ fXD efX tZa ogM -iFK +jsu ogM ogM mqJ @@ -60006,10 +60006,10 @@ hba hba mqJ ogM -dKu +dYR ogM ogM -npA +qxa ogM ogM ogM @@ -60216,7 +60216,7 @@ uve vty vty nED -dog +swB vty uve uve diff --git a/maps/map_files/LV624/armory/10.cheese.dmm b/maps/map_files/LV624/armory/10.cheese.dmm index a19d87a207..a522d3b07c 100644 --- a/maps/map_files/LV624/armory/10.cheese.dmm +++ b/maps/map_files/LV624/armory/10.cheese.dmm @@ -1,79 +1,92 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/white, +"aa" = ( +/turf/open/floor{ + icon_state = "white" + }, /area/lv624/lazarus/main_hall) -"b" = ( +"ab" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"c" = ( -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/main_hall) -"d" = ( -/obj/item/handset{ - desc = "A model of an ancient Earth communication device."; - force = 8 - }, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor{ + icon_state = "white" }, -/obj/structure/window/reinforced{ - dir = 1 +/area/lv624/lazarus/main_hall) +"ac" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellow" }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, /area/lv624/lazarus/main_hall) -"e" = ( +"ad" = ( +/obj/structure/target/syndicate, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"ae" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/lv624/lazarus/main_hall) -"f" = ( -/turf/open/floor/whiteyellowcorner/east, +"af" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowcorner" + }, /area/lv624/lazarus/main_hall) -"g" = ( -/turf/open/floor/whiteyellow/north, +"ag" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteyellow" + }, /area/lv624/lazarus/main_hall) -"h" = ( +"ah" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/lv624/lazarus/main_hall) -"i" = ( +"ai" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/armory) -"j" = ( +"aj" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/security) -"k" = ( +"ak" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/cult, +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"l" = ( +"al" = ( /obj/effect/decal/cleanable/cobweb2, /obj/item/reagent_container/hypospray/autoinjector/tricord, /obj/structure/surface/rack, /obj/item/reagent_container/hypospray/autoinjector/tricord, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, -/turf/open/floor/cult, +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"m" = ( +"am" = ( /obj/structure/target/syndicate, -/turf/open/floor/red/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "red" + }, /area/lv624/lazarus/security) -"n" = ( +"an" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/cult, +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"o" = ( +"ao" = ( /obj/structure/machinery/light/small{ dir = 1 }, @@ -82,33 +95,53 @@ /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor/cult, +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"p" = ( -/turf/open/floor/cult, +"ap" = ( +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"q" = ( +"aq" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, -/turf/open/floor/cult, +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"r" = ( +"ar" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/red/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "red" + }, /area/lv624/lazarus/security) -"s" = ( +"as" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/cult, +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"t" = ( -/turf/open/floor/red/northeast, +"at" = ( +/turf/open/floor{ + dir = 5; + icon_state = "red" + }, /area/lv624/lazarus/security) -"u" = ( +"au" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + name = "Secure Vault APC"; + pixel_x = -28; + start_charge = 0 + }, /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/cheesewedge/verymature{ pixel_x = -7; @@ -121,21 +154,28 @@ /obj/item/reagent_container/food/snacks/cheesewedge/verymature{ pixel_y = 6 }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"w" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/mousetraps{ - pixel_x = -5 +/turf/open/floor{ + icon_state = "cult" }, -/obj/item/paper/lv_624/cheese{ - pixel_x = 8; - pixel_y = -4 +/area/lv624/lazarus/armory) +"av" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"aw" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"ax" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"y" = ( +"ay" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -144,23 +184,170 @@ /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/red/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "red" + }, /area/lv624/lazarus/security) -"z" = ( +"az" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) -"A" = ( +"aA" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/cult, +/turf/open/floor{ + icon_state = "cult" + }, /area/lv624/lazarus/armory) -"B" = ( +"aB" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ locked = 1; name = "\improper Nexus Dome Armory" }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/lazarus/armory) +"aC" = ( +/obj/structure/machinery/door_control{ + id = "garage_blast"; + name = "Garage Shutters"; + pixel_x = -26; + range = 200 + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_y = -6 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/lazarus/armory) +"aD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"aE" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"aF" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/cheesewedge/verymature{ + pixel_x = -7; + pixel_y = -3 + }, +/obj/item/reagent_container/food/snacks/cheesewedge/verymature{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/reagent_container/food/snacks/cheesewedge/verymature{ + pixel_y = 6 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aG" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aH" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"aI" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"aJ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aK" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/structure/surface/rack, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aL" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/mousetraps{ + pixel_x = -5 + }, +/obj/item/paper/lv_624/cheese{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/lazarus/armory) +"aM" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) +"aN" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"C" = ( +"aO" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 + }, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor{ + icon_state = "wood" + }, +/area/lv624/lazarus/main_hall) +"aP" = ( +/turf/open/floor/whiteyellow/north, +/area/lv624/lazarus/main_hall) +"aQ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/cheesewedge/extramature{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/lazarus/armory) +"aR" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aS" = ( /obj/structure/machinery/door_control{ id = "garage_blast"; name = "Garage Shutters"; @@ -176,7 +363,7 @@ }, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"Q" = ( +"aT" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, @@ -189,88 +376,144 @@ }, /turf/open/floor/cult, /area/lv624/lazarus/armory) +"aU" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aV" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"aX" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"aY" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"aZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/mousetraps{ + pixel_x = -5 + }, +/obj/item/paper/lv_624/cheese{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"mE" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 + }, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) (1,1,1) = {" -a -a -a -a -i -i -i -i -z -z +aX +aX +aX +aX +ai +ai +ai +ai +az +az "} (2,1,1) = {" -b -e -e -e -i -n -s -i -i -i +aH +aE +aE +aE +ai +aN +aG +ai +ai +ai "} (3,1,1) = {" -a -a -h -i -i -o -p -u -C -i +aX +aX +aI +ai +ai +ax +aV +aF +aS +ai "} (4,1,1) = {" -a -a -a -i -k -p -p -p -A -i +aX +aX +aX +ai +aJ +aV +aV +aV +aU +ai "} (5,1,1) = {" -a -a -a -i -l -q -Q -w -p -i +aX +aX +aX +ai +aK +aR +aT +aZ +aV +ai "} (6,1,1) = {" -c -f -a -i -i -i -i -i -B -i +aM +aw +aX +ai +ai +ai +ai +ai +aY +ai "} (7,1,1) = {" -d -g -a -j -m -r -t -y -t -j +mE +aP +aX +aj +ad +aD +av +aW +av +aj "} diff --git a/maps/map_files/LV624/armory/10.extra.dmm b/maps/map_files/LV624/armory/10.extra.dmm index c515c56a20..67b62dc7fd 100644 --- a/maps/map_files/LV624/armory/10.extra.dmm +++ b/maps/map_files/LV624/armory/10.extra.dmm @@ -1,4 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"d" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "i" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/armory) @@ -6,50 +9,87 @@ /turf/closed/wall/r_wall, /area/lv624/lazarus/security) "v" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/structure/machinery/door_control{ + id = "garage_blast"; + name = "Garage Shutters"; + pixel_x = -26; + range = 200 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"x" = ( -/obj/effect/landmark/crap_item, /turf/open/floor/cult, /area/lv624/lazarus/armory) +"w" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/flechette, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"x" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) "z" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) "D" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/item/storage/toolbox/syndicate, /obj/structure/surface/rack{ layer = 2.5 }, -/obj/item/reagent_container/hypospray/autoinjector/dexalinp{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/reagent_container/hypospray/autoinjector/tricord, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, +/obj/item/ammo_magazine/smg/m39/extended, +/obj/item/weapon/gun/smg/m39, /turf/open/floor/cult, /area/lv624/lazarus/armory) "E" = ( +/obj/structure/target/syndicate, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"G" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"H" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"I" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"F" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 1; - name = "\improper Nexus Dome Armory" +"J" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"K" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) +"M" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/ammo_magazine/smg/m39/extended, +/obj/item/weapon/gun/smg/m39, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"G" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"I" = ( +"N" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"O" = ( /obj/item/handset{ desc = "A model of an ancient Earth communication device."; force = 8 @@ -66,13 +106,44 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/lv624/lazarus/main_hall) -"J" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"P" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"Q" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/structure/surface/rack{ + layer = 2.5 }, +/obj/item/reagent_container/hypospray/autoinjector/dexalinp{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"R" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, /turf/open/floor/red/northeast, /area/lv624/lazarus/security) -"K" = ( +"S" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"T" = ( /obj/structure/machinery/light/small{ dir = 1 }, @@ -88,105 +159,34 @@ /obj/item/ammo_magazine/shotgun/beanbag, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"L" = ( -/obj/structure/target/syndicate, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"M" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/flechette, -/obj/item/ammo_magazine/shotgun/incendiary, +"U" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"N" = ( +"V" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, /turf/open/floor/white, /area/lv624/lazarus/main_hall) -"O" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"P" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/effect/landmark/crap_item, +"W" = ( /obj/effect/landmark/crap_item, -/obj/item/ammo_magazine/smg/m39/extended, -/obj/item/weapon/gun/smg/m39, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"Q" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"R" = ( -/obj/item/storage/toolbox/syndicate, -/obj/structure/surface/rack{ - layer = 2.5 +"X" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/ammo_magazine/smg/m39/extended, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"S" = ( -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/main_hall) -"T" = ( -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"U" = ( /turf/open/floor/red/northeast, /area/lv624/lazarus/security) -"V" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/structure/machinery/door_control{ - id = "garage_blast"; - name = "Garage Shutters"; - pixel_x = -26; - range = 200 - }, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"W" = ( -/turf/open/floor/whiteyellow/north, -/area/lv624/lazarus/main_hall) -"X" = ( -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "Y" = ( -/turf/open/floor/whiteyellowcorner/east, +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) -"Z" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) (1,1,1) = {" -X -X -X -X +H +H +H +H i i i @@ -195,74 +195,74 @@ z z "} (2,1,1) = {" -Q -v -v -v +J +N +N +N i -E -Z +I +S i i i "} (3,1,1) = {" -X -X -N +H +H +V i i -K T G -V +U +v i "} (4,1,1) = {" -X -X -X +H +H +H i -M -T -T -T -x +w +G +G +G +W i "} (5,1,1) = {" -X -X -X +H +H +H i +Q +M +M D -P -P -R -T +G i "} (6,1,1) = {" -S -Y -X +K +x +H i i i i i -F +P i "} (7,1,1) = {" -I -W -X -j -L -J -U O -U +Y +H +j +E +X +d +R +d j "} diff --git a/maps/map_files/LV624/armory/10.looted.dmm b/maps/map_files/LV624/armory/10.looted.dmm index 25ef34c701..ec29591b3d 100644 --- a/maps/map_files/LV624/armory/10.looted.dmm +++ b/maps/map_files/LV624/armory/10.looted.dmm @@ -1,4 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"d" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "i" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/armory) @@ -6,84 +10,54 @@ /turf/closed/wall/r_wall, /area/lv624/lazarus/security) "v" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, /turf/open/floor/red/northeast, /area/lv624/lazarus/security) "x" = ( -/obj/structure/target/syndicate, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) +/turf/open/floor/whiteyellow/north, +/area/lv624/lazarus/main_hall) "z" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) -"C" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) "D" = ( /turf/open/floor/white, /area/lv624/lazarus/main_hall) "E" = ( -/turf/open/floor/whiteyellow/north, -/area/lv624/lazarus/main_hall) -"F" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 1; - name = "\improper Nexus Dome Armory" - }, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"G" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, +/obj/structure/target/syndicate, /turf/open/floor/red/northeast, /area/lv624/lazarus/security) -"H" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/main_hall) -"I" = ( -/turf/open/floor/platingdmg3, -/area/lv624/lazarus/main_hall) -"J" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/main_hall) -"K" = ( -/obj/item/stack/sheet/wood, +"F" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, /turf/open/floor/white, /area/lv624/lazarus/main_hall) -"L" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/cobweb, +"G" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"M" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, +"H" = ( /turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) -"N" = ( -/obj/structure/machinery/deployable/barrier, +"I" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"O" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"J" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"P" = ( /obj/item/stack/sheet/metal, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"Q" = ( +"K" = ( /obj/structure/machinery/door_control{ id = "garage_blast"; name = "Garage Shutters"; @@ -92,22 +66,50 @@ }, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"R" = ( +"L" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg3, +/area/lv624/lazarus/main_hall) +"M" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"N" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, -/obj/item/stack/sheet/metal, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"O" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/cult, /area/lv624/lazarus/armory) -"S" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/cult, +"P" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"R" = ( +/turf/open/floor/platingdmg3, /area/lv624/lazarus/armory) +"S" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/item/stack/tile/plasteel, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "U" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "V" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"W" = ( /obj/item/handset{ desc = "A model of an ancient Earth communication device."; force = 8 @@ -124,19 +126,17 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/lv624/lazarus/main_hall) -"W" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/item/stack/tile/plasteel, +"X" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/white, /area/lv624/lazarus/main_hall) -"X" = ( -/turf/open/floor/platingdmg3, -/area/lv624/lazarus/armory) +"Y" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) "Z" = ( -/turf/open/floor/cult, -/area/lv624/lazarus/armory) +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) (1,1,1) = {" D @@ -151,13 +151,13 @@ z z "} (2,1,1) = {" -K -W -O -O +X +S +F +F i -L -N +O +d i i i @@ -165,25 +165,25 @@ i (3,1,1) = {" D D -M +L i i -R -Z -S -Q +J +M +I +K i "} (4,1,1) = {" D D -I -X -P -Z -Z -Z -Z +H +R +G +M +M +M +M i "} (5,1,1) = {" @@ -191,34 +191,34 @@ D D U i -P -P -P -P -Z +G +G +G +G +M i "} (6,1,1) = {" -J -H +Y +P D i i i i i -F +V i "} (7,1,1) = {" -V -E +W +x D j -x -C -v -G +E +N +Z v +Z j "} diff --git a/maps/map_files/LV624_Fixed/LV624_repaired.dmm b/maps/map_files/LV624_Fixed/LV624_repaired.dmm index 771d2896b9..86bc818279 100644 --- a/maps/map_files/LV624_Fixed/LV624_repaired.dmm +++ b/maps/map_files/LV624_Fixed/LV624_repaired.dmm @@ -11,23 +11,33 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"abi" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "abo" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"abp" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/scientist, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"abE" = ( +/obj/item/device/analyzer, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "acc" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) -"acR" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) +"ach" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/item/clothing/under/colonist/clf, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"acM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "acW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -39,47 +49,32 @@ "adJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_east_caves) -"adK" = ( -/obj/structure/cargo_container/seegson/left, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) +"aeb" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) "aes" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"aeE" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) +"aew" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"aeJ" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "aeR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"aeW" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_central_jungle) -"afE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/main_hall) "agr" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"agx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"agN" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/whiteblue/east, -/area/lv624/lazarus/medbay) "ahb" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -92,21 +87,32 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"ahX" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/sleep_female) +"ahJ" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) "aih" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/robotics) -"aip" = ( -/turf/open/floor/asteroidwarning/north, -/area/lv624/ground/colony/telecomm/cargo) "ais" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"aiB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Storage Room" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"ajq" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"ajr" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "ajs" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -121,10 +127,14 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"ake" = ( -/obj/structure/bed/stool, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"ajZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "akj" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, @@ -149,29 +159,16 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"akv" = ( -/obj/structure/closet/coffin, -/turf/open/floor/chapel/west, -/area/lv624/lazarus/chapel) "alv" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"amU" = ( -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "amX" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"anm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "anv" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -187,21 +184,40 @@ "aom" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/north_east_barrens) +"aoo" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "aou" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"aoD" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "aoM" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/barrens/west_barrens) -"aoV" = ( -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"apj" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "apA" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"apE" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/quartstorage) "apP" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/south, @@ -209,39 +225,102 @@ "aqp" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/north_central_caves) +"aqx" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) "aqI" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"arc" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/tritium{ + pixel_x = -4 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "arg" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"aro" = ( +/obj/item/circuitboard/airlock{ + pixel_x = 12 + }, +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) "arw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/west_tcomms_road) +"arx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ary" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"arB" = ( +/obj/structure/dispenser, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "arF" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/floor, /area/lv624/ground/barrens/containers) -"asu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"arO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"arT" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"ass" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"asz" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) "asY" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"atl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "atn" = ( /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) +"atC" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/fries, +/turf/open/floor/carpet/bcarpet07, +/area/lv624/ground/caves/north_central_caves) "atO" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -264,21 +343,33 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) +"auj" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "aun" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"auA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Chapel"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/chapel) "auD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"auN" = ( -/obj/structure/largecrate, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "avg" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, @@ -287,6 +378,15 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"awk" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 8 + }, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "awE" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -296,29 +396,31 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"axc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken6, +/area/lv624/lazarus/hop) "axr" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"axM" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/platform, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) "axZ" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"ayq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/tool/wrench, +/obj/item/tool/weldingtool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ayu" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_jungle) -"ayD" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) "ayG" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -327,41 +429,10 @@ /obj/item/clothing/suit/armor/yautja_flavor, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"azy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"azB" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "aAm" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"aAC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) "aBa" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -378,21 +449,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/west_river) -"aBI" = ( -/obj/structure/girder, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"aCc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) "aCh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -408,13 +464,6 @@ "aDe" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/east_barrens) -"aDo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) "aDB" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) @@ -430,6 +479,12 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"aEr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "aEK" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, @@ -438,6 +493,10 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) +"aFx" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "aFE" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -448,16 +507,18 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"aFI" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"aFP" = ( -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"aFS" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) "aFY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/river/east_river) +"aGf" = ( +/obj/structure/fence, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/central_river) "aGr" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, @@ -466,6 +527,13 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"aGF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/north{ + name = "Geothermal APC" + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "aGN" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/flora/jungle/vines/heavy, @@ -483,23 +551,22 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"aHi" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/reactor/colony{ - fail_rate = 5 +"aHf" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"aHu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Garage"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/platform, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "aHz" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"aHI" = ( -/turf/open/floor/whitegreencorner/west, -/area/lv624/lazarus/main_hall) "aHO" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 @@ -516,12 +583,22 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) +"aIb" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "aIc" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"aIf" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/east_barrens) "aIk" = ( /obj/item/weapon/unathiknife{ desc = "A curved blade made of a strange material. It looks both old and very sharp."; @@ -538,9 +615,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aIS" = ( -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) "aIU" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/prop/brazier/torch, @@ -553,14 +627,18 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"aJG" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/laceup, -/obj/structure/machinery/light{ - dir = 8 +"aJk" = ( +/obj/structure/flora/jungle/vines/light_2, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Atmospherics Condenser" }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) +"aJA" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) "aJX" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 @@ -577,19 +655,19 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"aKH" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/engineering) "aLj" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"aLn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"aLl" = ( +/obj/structure/closet/lawcloset, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "aLC" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) @@ -597,6 +675,11 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"aLZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/blue, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) "aMa" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -607,34 +690,30 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) -"aMJ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"aMr" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "aNe" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aNy" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/river/east_river) +"aNf" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/apron, +/obj/item/tool/shovel, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "aNA" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"aNU" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) -"aOd" = ( -/turf/open/floor/whiteyellow/west, -/area/lv624/lazarus/main_hall) +"aNE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "aOE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -642,6 +721,10 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/chapel) +"aOJ" = ( +/obj/item/clothing/glasses/sunglasses/aviator, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "aOU" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -656,6 +739,9 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"aPm" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/engineering) "aPD" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/jungle/west_jungle) @@ -663,18 +749,13 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"aPY" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "aQf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"aQx" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"aRi" = ( -/obj/item/device/analyzer, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) "aRG" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_west, @@ -682,11 +763,6 @@ "aRL" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) -"aRY" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/taperecorder, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) "aSh" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -697,21 +773,38 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"aST" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/corporate_dome) -"aTd" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) +"aSG" = ( +/obj/structure/prop/mech/parts/chassis/gygax, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "aTg" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/river/east_river) +"aTF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + name = "Lurker Hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"aTM" = ( +/obj/structure/surface/table/reinforced{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) "aUc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -722,14 +815,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/quartstorage/outdoors) -"aUA" = ( -/turf/open/floor/warnwhite/southwest, -/area/lv624/lazarus/fitness) -"aUG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/crew/colony, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) "aVf" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -737,10 +822,6 @@ "aVn" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/jungle/west_jungle) -"aVt" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/medbay) "aVH" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) @@ -748,47 +829,25 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"aVR" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 +"aWw" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"aWK" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/obj/item/clothing/under/colonist, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) -"aWH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "aXq" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_east_jungle) -"aXZ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "aYG" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"aZe" = ( -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "aZu" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -799,23 +858,26 @@ "aZH" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_central_caves) -"bab" = ( -/obj/structure/window/reinforced{ - dir = 8 +"aZJ" = ( +/obj/item/storage/medicomp/full, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"bap" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"aZN" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform{ - layer = 3.1 - }, +/obj/structure/platform/stair_cut/alt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"aZV" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) "bat" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -824,24 +886,47 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"baP" = ( -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/east_central_jungle) -"bbA" = ( -/obj/item/stack/sheet/metal{ - amount = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 3 +"baD" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/item/clothing/shoes/yautja/hunter{ +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"baK" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/wood/wood_broken4, +/area/lv624/ground/caves/north_central_caves) +"baP" = ( +/turf/open/gm/grass/grass2, +/area/lv624/ground/jungle/east_central_jungle) +"baS" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/central_barrens) +"bbr" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"bbA" = ( +/obj/item/stack/sheet/metal{ + amount = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 3 + }, +/obj/item/clothing/shoes/yautja/hunter{ anchored = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"bbQ" = ( -/turf/open/floor/whiteyellowcorner/west, -/area/lv624/lazarus/corporate_dome) "bbS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, @@ -850,11 +935,14 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"bcv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"bce" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "bcU" = ( /obj/structure/surface/table/woodentable/poor, /turf/open/floor/wood, @@ -867,16 +955,18 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_tcomms_road) -"bdf" = ( -/obj/structure/surface/rack, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "bdt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/river, /area/lv624/ground/river/central_river) +"bdB" = ( +/obj/structure/machinery/requests_console{ + pixel_x = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "bdI" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 6; @@ -887,14 +977,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"bdZ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 1; - name = "\improper Nexus Dome Armory"; - req_one_access_txt = "19;106" - }, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) "bee" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, @@ -902,24 +984,11 @@ "beo" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz2) -"bey" = ( -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"beA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/lighter, -/obj/item/device/analyzer, -/obj/item/device/multitool, -/obj/item/device/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"beK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"beL" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "beX" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -929,6 +998,16 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) +"bfi" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "bfz" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -937,10 +1016,17 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_central_jungle) -"bgv" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/river/east_river) +"bfU" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) +"bgA" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "bhm" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -954,11 +1040,35 @@ "bie" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/south_eastern_barrens) -"biQ" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/snacks/chocolatecakeslice, +"bik" = ( +/obj/structure/closet/cabinet, /turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) +"bil" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"bis" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"biI" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "bja" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -978,14 +1088,9 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"bjY" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/fitness) +"bkj" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/sand_temple) "bkN" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -997,26 +1102,29 @@ }, /turf/closed/wall, /area/lv624/lazarus/toilet) -"blk" = ( -/turf/open/floor/loadingarea/west, -/area/lv624/lazarus/landing_zones/lz1) +"blj" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/ground/river/central_river) "blw" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"blC" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window{ - dir = 8 +"blY" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Chapel APC" }, -/obj/structure/toilet{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "bmX" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) +"bnb" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "bnc" = ( /obj/structure/window_frame/colony/reinforced, /obj/structure/machinery/door/poddoor/almayer{ @@ -1026,14 +1134,15 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) +"bnq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup/wy, +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) "bnr" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"bnF" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "boa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_central_jungle) @@ -1041,28 +1150,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/north_nexus_road) -"boC" = ( -/obj/structure/sink/kitchen{ - pixel_y = 30 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/donkpocket{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/donkpocket{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"boN" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "bpl" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/jungle/west_jungle) @@ -1070,9 +1157,21 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"bqv" = ( -/turf/open/floor/plating/asteroidwarning/east, -/area/lv624/lazarus/landing_zones/lz2) +"bpI" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"bqy" = ( +/obj/structure/closet/coffin{ + density = 0; + icon_state = "coffin_open"; + opened = 1 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "bqL" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -1083,10 +1182,6 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"bqV" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) "brg" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -1097,13 +1192,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"brl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"brn" = ( -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) "brz" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -1138,24 +1226,22 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"buq" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "buB" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/west_nexus_road) -"buH" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "bvx" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) -"bvB" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/hotdog, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "bvL" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -1171,16 +1257,10 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"byv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"byy" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"byk" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "byF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1205,47 +1285,40 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_east_jungle) -"bzG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) -"bzH" = ( -/turf/open/floor/asteroidplating, -/area/lv624/ground/caves/north_central_caves) -"bAI" = ( -/obj/structure/surface/rack, -/obj/item/stack/sandbags/large_stack{ - pixel_x = 1; - pixel_y = 3 +"bzz" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"bAt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/monitor, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 15 }, -/obj/item/stack/sandbags/large_stack{ - pixel_x = -3; - pixel_y = -3 +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"bAE" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"bAP" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/main_hall) -"bBr" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"bBg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "bBv" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"bCa" = ( -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"bCp" = ( -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz1) "bCs" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -1261,12 +1334,24 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/gbcorner/south_west, /area/lv624/lazarus/yggdrasil) -"bCO" = ( -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 +"bDe" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, /turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) +/area/lv624/ground/barrens/south_eastern_barrens) +"bDI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Bay" + }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "bDM" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) @@ -1280,53 +1365,74 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"bEZ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"bFk" = ( +/obj/item/hunting_trap, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "bFQ" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"bFS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null +"bFU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 }, -/turf/open/floor/delivery, -/area/lv624/lazarus/comms) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "bGb" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"bGD" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"bGF" = ( +/obj/structure/bed/bedroll, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "bGL" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"bHa" = ( +/turf/open/gm/dirtgrassborder/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "bHr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"bHA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/computerframe{ - anchored = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "bHI" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"bHO" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"bIb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"bId" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) "bIj" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle) +"bIy" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "bIE" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1336,14 +1442,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"bKg" = ( -/obj/structure/surface/rack, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"bKL" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz2) +"bIW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Corporate Liason Office" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"bIX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"bJv" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/east_river) "bLa" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) @@ -1351,29 +1470,16 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"bLm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"bLo" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) "bLw" = ( /turf/open/gm/coast/north, /area/lv624/ground/barrens/east_barrens) +"bLK" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "bMd" = ( /obj/structure/surface/rack, /turf/open/floor/vault, @@ -1388,28 +1494,25 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"bNj" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "Cafeteria APC" - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"bNo" = ( +"bMf" = ( /turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/barrens/central_barrens) +"bMS" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"bNv" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "bNA" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"bNB" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "bNI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ @@ -1423,6 +1526,40 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"bOI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"bOY" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/item/coin/diamond, +/obj/item/m_gift, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/clothing/under/marine/veteran/pmc, +/obj/item/storage/fancy/cigar, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"bPc" = ( +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "bPf" = ( /obj/item/bananapeel, /turf/open/gm/dirt, @@ -1439,31 +1576,29 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"bPL" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"bPR" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"bPU" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"bPW" = ( -/obj/structure/computerframe, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "bQd" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"bQO" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"bQW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/processor, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"bRb" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "bRn" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -1473,34 +1608,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"bSN" = ( -/obj/structure/surface/table, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"bTt" = ( -/obj/structure/machinery/atm{ - name = "Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ +"bTe" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"bTS" = ( -/obj/structure/prop/mech/armor_booster, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"bUi" = ( -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "bUm" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/east_barrens) -"bUA" = ( -/turf/open/floor/whitebluecorner/east, -/area/lv624/lazarus/medbay) "bUY" = ( /turf/closed/wall/sulaco, /area/lv624/lazarus/crashed_ship_containers) @@ -1517,9 +1634,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"bVG" = ( -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) "bVH" = ( /obj/structure/flora/jungle/alienplant1{ layer = 4.13; @@ -1527,48 +1641,38 @@ }, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"bVS" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"bWy" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"bVM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/reagent_container/glass/fertilizer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"bWk" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = 10; + pixel_y = 5 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"bWC" = ( -/turf/closed/wall, -/area/lv624/lazarus/toilet) -"bWH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"bXf" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"bWn" = ( +/obj/item/clothing/head/helmet/augment{ + desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; + name = "alien mask"; + unacidable = 1 }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/river/central_river) -"bXh" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/caves/west_caves) -"bXM" = ( -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"bWC" = ( +/turf/closed/wall, +/area/lv624/lazarus/toilet) "bXX" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/north_tcomms_road) -"bYJ" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/whiteyellow/southeast, -/area/lv624/lazarus/corporate_dome) "bYS" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grassbeach/south, @@ -1583,16 +1687,55 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"bZR" = ( -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/robotics) +"bZE" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_y = -30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"bZY" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"cai" = ( +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) +"caE" = ( +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"caM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "caR" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/west_barrens) +"cbp" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "cbZ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) +"ccq" = ( +/obj/structure/surface/table, +/obj/item/tool/pen{ + layer = 3.1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "ccz" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -1603,48 +1746,56 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/jungle/west_jungle) -"ccK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "ccP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"ccT" = ( -/turf/open/floor/plating/asteroidwarning/southeast, -/area/lv624/lazarus/landing_zones/lz2) +"ccS" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"cdm" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) +"cdD" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Men's Dorms APC" + }, +/obj/structure/surface/table, +/obj/item/toy/deck, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "cee" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/central_river) -"cef" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"ceO" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"cfi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"ceg" = ( +/obj/structure/computerframe, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"cez" = ( +/obj/structure/surface/table, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) +"cfb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "cfj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -1655,35 +1806,23 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"cgk" = ( +"cgg" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "cgm" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"cgC" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "Commandant's Quarters APC" - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) "cgY" = ( /obj/structure/sign/safety/maint, /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_nexus_road) -"chm" = ( -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"chp" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "chK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -1694,50 +1833,42 @@ "ciz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/caves/north_central_caves) -"ciR" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "cjr" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"cjt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "cjM" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"cjO" = ( -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz1) -"cks" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/light/small{ - dir = 8 +"ckg" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"ckt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"ckW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"ckm" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) "cla" = ( /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"cmi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/gun/clf_primary/midchance, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"cli" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "cml" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/west_central_jungle) @@ -1745,6 +1876,10 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"cmD" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "cnz" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirt, @@ -1769,10 +1904,13 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"cqh" = ( -/obj/structure/fence, -/turf/open/floor/warning/north, -/area/lv624/ground/barrens/containers) +"cpA" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "cqG" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -1783,6 +1921,12 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/east_river) +"crm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red, +/area/lv624/lazarus/security) "crD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -1792,40 +1936,35 @@ "crY" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/west_barrens) +"csy" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "csU" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/crap_item, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"csW" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "cta" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"ctP" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"ctX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/machinery/light/small{ +"ctq" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/grimy, -/area/lv624/lazarus/hop) +/area/lv624/lazarus/captain) +"ctV" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) "cuy" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"cuV" = ( -/turf/open/gm/dirtgrassborder/desert1, -/area/lv624/ground/barrens/south_eastern_barrens) "cvp" = ( /obj/structure/largecrate, /turf/open/floor/vault, @@ -1838,12 +1977,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"cvL" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Hydroponics APC" - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "cvN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/light_3, @@ -1857,27 +1990,16 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"cwR" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) "cwX" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"cxH" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"cxS" = ( +/obj/structure/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "cxX" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_central_jungle) @@ -1887,15 +2009,15 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"cyF" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/river/central_river) "cza" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) +"czb" = ( +/obj/item/stool, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "czo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -1910,15 +2032,10 @@ "cAp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) -"cAu" = ( -/obj/structure/bookcase, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_hacking, -/obj/item/book/manual/atmospipes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"cAy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "cAS" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_x = -28 @@ -1930,15 +2047,6 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"cAZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "cBl" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass2, @@ -1949,16 +2057,20 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"cCj" = ( -/obj/structure/girder, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"cCl" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "cCJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) "cCX" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"cDc" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/central_river) "cDi" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -1969,15 +2081,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"cDq" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Chapel APC" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) "cDz" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -1986,14 +2089,22 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/jungle/west_jungle) -"cEm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "cEI" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"cFm" = ( +/obj/item/stock_parts/scanning_module/phasic, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "cFr" = ( /obj/structure/prop/brazier/torch, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -2009,16 +2120,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"cHi" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome Office"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) +"cHl" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "cHQ" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -2038,12 +2143,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"cIr" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/east_barrens) -"cIF" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/lazarus/engineering) "cIG" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -2059,54 +2158,6 @@ }, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"cJN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"cKJ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_x = -28 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"cKN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"cLd" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) -"cLz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/fertilizer{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"cLE" = ( -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) -"cLG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) "cML" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -2116,6 +2167,19 @@ "cMY" = ( /turf/open/gm/grass/grassbeach/east, /area/lv624/lazarus/yggdrasil) +"cNn" = ( +/turf/open/gm/dirtgrassborder/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) +"cNK" = ( +/obj/structure/safe/floor{ + name = "safe"; + spawnkey = 0 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"cNL" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/south_west_caves) "cNY" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 8; @@ -2127,11 +2191,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"cOb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "cOm" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) +"cOE" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/pastatomato, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"cOT" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "cOY" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, @@ -2151,13 +2236,14 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"cQg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light{ - dir = 1 +"cPM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "cQy" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -2170,33 +2256,18 @@ "cQR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_jungle) -"cRn" = ( -/turf/open/floor/asteroidwarning/east, -/area/lv624/ground/colony/telecomm/cargo) "cRs" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"cRx" = ( -/obj/structure/surface/table, -/obj/item/toy/deck, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"cRT" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"cRv" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/mime, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "cSb" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/west_caves) -"cSd" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/parts/gygax_armor{ - layer = 1 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "cSF" = ( /turf/open/floor, /area/lv624/lazarus/fitness) @@ -2204,61 +2275,32 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_nexus_road) +"cTe" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "cTj" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"cTA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"cTB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Nexus Cargo Storage"; - req_access_txt = "100"; - req_one_access = null +"cTQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "cUc" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"cUs" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"cUU" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/obj/item/reagent_container/food/drinks/flask/barflask, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "cVm" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"cVZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "cWd" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -2270,10 +2312,17 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"cWq" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "cWv" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/central_river) +"cWG" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "cWT" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -2283,10 +2332,9 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"cXr" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +"cWW" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/west_caves) "cXL" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -2297,38 +2345,79 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"cYd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 +"cXT" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" }, -/obj/item/tool/pen/clicky, -/turf/open/floor/whitebluecorner, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"cYb" = ( +/obj/item/shard, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "cYh" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"cZd" = ( -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/west_barrens) +"cYi" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/east{ + name = "Women's Dorms APC" + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"cYN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) "cZD" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) -"dat" = ( -/obj/structure/platform_decoration{ - dir = 4 +"cZG" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"cZR" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"daC" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"daM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"dbt" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"daQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"dbd" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_jungle) +"dbt" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -5; + pixel_y = -5; + light_on = 1; light_range = 1; light_system = 1 }, @@ -2338,33 +2427,22 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/yggdrasil) -"dbx" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"dbS" = ( -/obj/item/device/flash, -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/flashbang{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/redcorner, -/area/lv624/lazarus/security) "dbY" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"dcC" = ( +/obj/structure/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quart) +"ddw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "def" = ( /obj/structure/showcase{ color = "#95948B"; @@ -2396,22 +2474,19 @@ }, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"deN" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage) "deS" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/west, /area/lv624/ground/river/west_river) -"deV" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz2) "deW" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"dft" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/wy_chips/pepper, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "dfv" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -2421,17 +2496,15 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"dfE" = ( -/obj/structure/machinery/conveyor{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"dfU" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"dfy" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/stack/flag/red, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"dfY" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/corporate_dome) "dgj" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -2442,15 +2515,15 @@ /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"dgy" = ( +/turf/open/floor/warnwhite/southeast, +/area/lv624/lazarus/fitness) "dgE" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"dgH" = ( -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/central_barrens) "dgN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -2458,17 +2531,19 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"dhe" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +"dgW" = ( +/obj/structure/largecrate/random, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"dhl" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "dhq" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/west_nexus_road) +"dhu" = ( +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) "dih" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) @@ -2477,31 +2552,25 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"diI" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/machinery/light, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"djy" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) "djO" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_west_jungle) -"djR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "dkc" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"dkn" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Nexus Dome Command Quarter"; + req_access_txt = "100" + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"dkv" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "dkT" = ( /obj/item/storage/firstaid, /obj/structure/surface/rack, @@ -2515,6 +2584,13 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"dlo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "dlM" = ( /turf/open/floor, /area/lv624/ground/caves/north_central_caves) @@ -2522,6 +2598,28 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"dmx" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grilledcheese, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"dnz" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"dnJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"dnM" = ( +/obj/structure/bed, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "dol" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/heavy, @@ -2543,36 +2641,59 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"doS" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "doY" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"doZ" = ( +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "dpc" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_east_jungle) +"dpH" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "dpX" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"dqg" = ( -/obj/effect/spawner/random/powercell, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"dqk" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz2) "dqo" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/quartstorage/outdoors) +"dqp" = ( +/obj/item/clothing/suit/armor/yautja_flavor, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "dqr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"dqs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/bronze, +/obj/item/storage/donut_box, +/turf/open/floor/red/west, +/area/lv624/lazarus/security) +"dqv" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/east_barrens/ceiling) "dqG" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -2603,16 +2724,11 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"dra" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -32 +"drd" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/effect/spawner/random/powercell, -/obj/item/device/assembly/infra, -/obj/effect/spawner/random/powercell, /turf/open/floor/dark, /area/lv624/lazarus/engineering) "drq" = ( @@ -2624,16 +2740,12 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) -"dsx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"dsr" = ( +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"dsA" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "dsB" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -2642,43 +2754,65 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/sand_temple) -"dsQ" = ( -/obj/structure/bookcase, -/obj/item/bananapeel, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"dsV" = ( -/obj/structure/surface/table, -/obj/item/poster, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"dtl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/tomatosoup{ + desc = "Why would you ever drink this? Its full of mold and yucky slime!"; + pixel_y = 3 + }, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"dtu" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/central_barrens) "dtP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"duc" = ( -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/main_hall) +"dtQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/candle, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) +"dub" = ( +/obj/item/clothing/suit/storage/militia/brace, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "duq" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) -"duJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright{ - dir = 2; - layer = 2.9 +"dut" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Forced Blast Door" }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"duB" = ( +/obj/item/reagent_container/food/snacks/grown/banana, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "duW" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"dvV" = ( -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) +"dvX" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/lmg, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "dvY" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -2690,20 +2824,16 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"dwk" = ( -/turf/open/floor/plating/asteroidwarning/northeast, -/area/lv624/lazarus/landing_zones/lz2) +"dws" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) "dwv" = ( /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"dwE" = ( -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/obj/structure/surface/rack, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "dwF" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, @@ -2724,39 +2854,34 @@ "dxi" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) -"dyq" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"dyy" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"dyI" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" +"dxN" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"dyX" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"dzD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Corporate Dome"; +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"dyU" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Water Filtration Plant"; req_access_txt = "100" }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) +"dzu" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_central_jungle) +"dzM" = ( +/obj/effect/spawner/random/powercell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "dzT" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -2764,23 +2889,18 @@ "dzU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"dzZ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) "dAn" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"dAo" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"dAq" = ( +/turf/open/floor/asteroidwarning/west, +/area/lv624/ground/colony/telecomm/sw_lz2) +"dAw" = ( +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "dAC" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -2789,13 +2909,26 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"dAK" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"dAZ" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/west_barrens) +"dAP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Freezer"; + req_access_txt = "100" + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"dBc" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"dBd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/corporate_dome) "dBl" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -2809,52 +2942,37 @@ "dCh" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/barrens/east_barrens) -"dCy" = ( -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz2) -"dCS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/chapel/east, -/area/lv624/lazarus/chapel) +"dCj" = ( +/obj/structure/fence, +/turf/open/floor/warning/north, +/area/lv624/ground/barrens/containers) +"dCC" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/costume/butler, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"dDh" = ( +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) "dDj" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"dDD" = ( -/obj/structure/largecrate, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"dDx" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "dEk" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) -"dEs" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/clothing/under/colonist, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"dEu" = ( -/turf/open/floor/plating/asteroidwarning/west, -/area/lv624/lazarus/landing_zones/lz2) -"dEP" = ( -/obj/structure/fence, -/turf/open/floor/warning/northwest, -/area/lv624/ground/barrens/containers) "dFu" = ( /obj/structure/fence, /obj/structure/machinery/door_control{ @@ -2872,31 +2990,39 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"dFW" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "dFY" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"dGd" = ( +/obj/structure/kitchenspike, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "dGm" = ( /turf/closed/wall, /area/lv624/lazarus/comms) -"dGO" = ( -/obj/item/clothing/under/chainshirt/hunter, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"dHa" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz1) -"dHf" = ( -/obj/structure/holohoop{ - dir = 1 +"dGB" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) +"dHg" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + pixel_y = 16 }, -/obj/structure/machinery/light, -/turf/open/floor/warnwhite, -/area/lv624/lazarus/fitness) +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "dHl" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -2905,12 +3031,28 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"dHX" = ( +/obj/structure/largecrate/random, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) +"dIg" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "dII" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"dIX" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dIZ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_east, @@ -2919,32 +3061,34 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"dJz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"dKv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, +"dJo" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"dJD" = ( +/turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/south_eastern_barrens) -"dKO" = ( -/obj/structure/machinery/light{ - dir = 8 +"dKD" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "dLa" = ( /obj/item/tool/pickaxe/diamonddrill, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"dLr" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "dLy" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/effect/landmark/lv624/fog_blocker, @@ -2963,16 +3107,25 @@ }, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"dNh" = ( -/turf/open/floor/white, -/area/lv624/lazarus/chapel) "dNi" = ( /turf/open/floor, /area/lv624/lazarus/research) +"dNE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dNH" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"dOg" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "dOn" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -2983,11 +3136,17 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"dOq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup/wy, -/turf/open/floor/whiteyellow, -/area/lv624/lazarus/corporate_dome) +"dOF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "dOP" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -3000,26 +3159,58 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"dPu" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz2) "dPz" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"dQF" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/landmark/good_item, -/turf/open/floor, +"dPU" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"dPX" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"dQF" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/landmark/good_item, +/turf/open/floor, /area/lv624/ground/barrens/containers) "dRv" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) +"dRw" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Commandant's Quarters APC" + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"dRY" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "dSk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_east_jungle) +"dSw" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "dSU" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -3032,15 +3223,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"dTi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) "dTw" = ( /obj/item/weapon/harpoon/yautja{ anchored = 1; @@ -3063,9 +3245,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"dTE" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/river/east_river) "dUj" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -3074,12 +3253,6 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"dUp" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) "dUJ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -3095,9 +3268,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"dVl" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/caves/sand_temple) +"dVc" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz2) +"dVf" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/meatballsoup, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"dVi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "dVt" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, @@ -3116,6 +3301,34 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"dWo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"dWp" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz2) +"dWq" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "dWD" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -3123,27 +3336,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"dWP" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/hud/health, -/obj/effect/landmark/crap_item, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) "dXc" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"dXF" = ( -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"dYn" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/engineering) "dYp" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -3154,6 +3350,13 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"dZh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "dZn" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -3170,37 +3373,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_tcomms_road) -"dZL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"dZT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/whiteyellow/southwest, -/area/lv624/lazarus/corporate_dome) -"ead" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"eaw" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/barrens/east_barrens/ceiling) -"eaS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"ebc" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "ebl" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/central_river) @@ -3216,14 +3388,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"ecv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "ecY" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -3232,32 +3396,42 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"edu" = ( +/obj/item/device/assembly/timer, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "edx" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"edZ" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +"edG" = ( +/obj/structure/surface/table, +/obj/item/device/mmi/radio_enabled, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"eeh" = ( +/obj/structure/grille, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "eeU" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"efs" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/sunglasses/aviator, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "efD" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"efG" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "egk" = ( /obj/item/prop/almayer/flight_recorder, /turf/open/gm/dirt, @@ -3266,74 +3440,63 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"ehf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/tomato, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "eho" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"eic" = ( -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz1) -"eiq" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) +"eiF" = ( +/obj/item/tool/shovel, +/obj/structure/surface/table, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "eiI" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"eiP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "eiX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"eiY" = ( +/turf/open/floor/white, +/area/lv624/lazarus/fitness) "ejh" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ejY" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) "eld" = ( /obj/structure/girder, /turf/closed/shuttle{ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"elf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) +"elr" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) "elH" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"elQ" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"emA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/platform, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/item/tool/weldingtool/hugetank, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "emI" = ( /obj/structure/machinery/landinglight/ds1, /turf/open/floor/plating, @@ -3368,6 +3531,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"enh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "enr" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -3376,21 +3543,27 @@ /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"enN" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"enV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"enT" = ( +/obj/structure/bed, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"eoo" = ( +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) +"eor" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/robotics) "epb" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) +"eps" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "epE" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/south, @@ -3413,37 +3586,45 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"eqz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "eqF" = ( /turf/closed/wall, /area/lv624/lazarus/engineering) -"eqW" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"eqV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"err" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"erC" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "erK" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_jungle) "erP" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"esc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) +"erZ" = ( +/obj/item/tool/pickaxe/jackhammer{ + desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; + force = 3; + name = "display jackhammer" }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "esf" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -3457,6 +3638,13 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz2) +"eso" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/corporate_dome) +"esB" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "esM" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid, @@ -3466,6 +3654,13 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"eth" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"etj" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/west_barrens) "eue" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -3475,14 +3670,16 @@ "euq" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) -"euM" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/power/apc/power/north{ - name = "Kitchen APC" +"eva" = ( +/obj/structure/fence, +/turf/open/floor/warning/west, +/area/lv624/ground/barrens/containers) +"evs" = ( +/obj/structure/bed/chair/hunter{ + dir = 4 }, -/obj/effect/landmark/good_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "evV" = ( /obj/structure/fence, /obj/structure/flora/jungle/vines/heavy, @@ -3492,33 +3689,18 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/west_tcomms_road) -"ewK" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"ewS" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "exc" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) -"exh" = ( -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 +"exe" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "exi" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -3527,16 +3709,38 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"exQ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"exI" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Telecomms APC"; + start_charge = 15 + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) "eyd" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"eyq" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) +"eys" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/central_barrens) +"eyD" = ( +/turf/open/floor/whitegreen, +/area/lv624/lazarus/main_hall) "eyJ" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -3552,28 +3756,20 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"ezR" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) "ezX" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"eAM" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -3 +"eAT" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"eBA" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"eBH" = ( -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "eBT" = ( /obj/structure/bed/chair/wheelchair{ dir = 4 @@ -3590,32 +3786,17 @@ "eCK" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_west_jungle) +"eCL" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "eCO" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) -"eCR" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) "eDp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -3623,6 +3804,25 @@ "eDs" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_central_jungle) +"eDu" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"eDw" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) +"eDL" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"eDZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "eEc" = ( /obj/structure/bed/chair/comfy/black, /obj/structure/flora/jungle/vines/light_3, @@ -3632,12 +3832,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"eED" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/red, -/area/lv624/lazarus/security) "eEL" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/light_2, @@ -3649,19 +3843,41 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"eEW" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"eFe" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"eFC" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) "eFG" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/north_central_caves) -"eFH" = ( -/turf/open/floor/whitebluecorner, -/area/lv624/lazarus/medbay) "eFJ" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"eGf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "eGC" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -3684,15 +3900,12 @@ /obj/structure/closet/cabinet, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"eHj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"eHP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"eHs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "eIm" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/gm/dirt, @@ -3701,24 +3914,36 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"eJc" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/tool/extinguisher, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"eJv" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "eJG" = ( /obj/structure/flora/jungle/vines/light_3, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"eKb" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Medbay APC" + }, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "eKD" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"eKW" = ( -/turf/open/floor/chapel, -/area/lv624/lazarus/chapel) +"eKF" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/main_hall) +"eKL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "eLl" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -3728,52 +3953,34 @@ /obj/item/tool/pickaxe/hammer, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"eLP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"eLZ" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"eMk" = ( -/obj/structure/noticeboard{ - pixel_y = 30 +"eMe" = ( +/obj/structure/closet/wardrobe, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +/obj/item/clothing/under/colonist, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"eMR" = ( +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) "eNn" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"eOd" = ( -/turf/open/floor/plating/asteroidwarning, -/area/lv624/lazarus/landing_zones/lz2) +"eNs" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) "eOn" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"eOy" = ( -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) "eOG" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"eOU" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "ePq" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/north, @@ -3798,12 +4005,22 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"eRj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "eRG" = ( /obj/item/tool/warning_cone{ pixel_x = -9 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"eRQ" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "eRU" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -3814,19 +4031,27 @@ "eSa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/south_central_jungle) +"eSd" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "eSg" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) -"eSL" = ( -/obj/structure/largecrate/random, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/barrens/east_barrens/ceiling) -"eSW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"eSk" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/platinum, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "eSY" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -3846,13 +4071,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"eTP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Chapel"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/chapel) "eUm" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, @@ -3869,23 +4087,11 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) -"eVE" = ( -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz2) -"eWD" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"eVH" = ( +/obj/structure/machinery/chem_master/condimaster, +/obj/structure/surface/table, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "eWP" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -3896,6 +4102,10 @@ "eXp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"eXr" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "eXu" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, @@ -3914,62 +4124,71 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"eXZ" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "eYe" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/west_caves) -"eYJ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"eYO" = ( -/turf/open/gm/dirtgrassborder/desert_dug, -/area/lv624/ground/barrens/south_eastern_barrens) +"eYm" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "eYT" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/gbcorner/south_west, /area/lv624/lazarus/yggdrasil) -"eZx" = ( -/obj/structure/bed/chair, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"faf" = ( -/obj/structure/surface/table, -/obj/item/handset, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"fam" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Research APC" - }, -/obj/structure/machinery/light/small{ +"eZM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/surface/table, -/obj/item/clothing/accessory/armband/science, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"faz" = ( -/turf/open/floor/podhatchfloor, -/area/lv624/lazarus/comms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "faD" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"faG" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "faY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_central_jungle) -"faZ" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"fci" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 +"fbH" = ( +/obj/structure/bed/alien, +/obj/item/clothing/yautja_cape, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"fcm" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/barrens/central_barrens) +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "fcF" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -3991,26 +4210,26 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) -"feC" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/barrens/central_barrens) -"feD" = ( -/turf/open/floor/whiteyellowcorner, -/area/lv624/lazarus/corporate_dome) -"ffB" = ( -/obj/item/clothing/suit/storage/militia/brace, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"fes" = ( +/obj/item/stock_parts/matter_bin/super, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "ffS" = ( /obj/structure/ore_box, /turf/open/floor, /area/lv624/ground/barrens/containers) -"fgo" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +"fga" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/sand_temple) "fgt" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -4021,6 +4240,16 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"fgZ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "fhl" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -4031,31 +4260,20 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"fhS" = ( -/turf/open/floor/asteroidwarning/west, -/area/lv624/ground/colony/telecomm/sw_lz2) "fhU" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"fiW" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) +"fiu" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "fjh" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"fji" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/item/clothing/under/colonist/clf, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "fjo" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, @@ -4072,10 +4290,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"fkP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/robotics, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "flc" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, @@ -4129,9 +4343,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/west_river) -"fow" = ( -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "foA" = ( /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) @@ -4139,13 +4350,6 @@ /obj/item/device/analyzer, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"fpo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) "fpz" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -4157,11 +4361,25 @@ "fqS" = ( /turf/open/gm/coast/north, /area/lv624/ground/jungle/west_jungle) -"fro" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) +"fqU" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset{ + frequency = 1469; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/headset{ + frequency = 1469 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"frj" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "frJ" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/planttop1, @@ -4179,51 +4397,52 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/sand_temple) -"fsB" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/glowshroom, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) "fsE" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"ftj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"ftF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"ftb" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"fuo" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "fuq" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"fuu" = ( +/turf/open/gm/dirtgrassborder/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) "fuS" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"fvm" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) "fvJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/quartstorage/outdoors) +"fwQ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"fxh" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "fxs" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/vault, @@ -4236,6 +4455,14 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/east, /area/lv624/lazarus/yggdrasil) +"fxK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright{ + dir = 2; + layer = 2.9 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "fya" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -4250,43 +4477,78 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_tcomms_road) +"fyI" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"fzh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "fzi" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"fAe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "fAM" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"fAR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"fBd" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) "fBI" = ( /obj/item/tool/warning_cone{ pixel_x = -20 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"fBL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/bronze, -/obj/item/storage/donut_box, -/turf/open/floor/red/west, -/area/lv624/lazarus/security) +"fBK" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "fBN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"fBS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome"; - req_access_txt = "100" +"fBO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"fCF" = ( +/obj/vehicle/powerloader/jd{ + dir = 1 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"fCg" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "fCL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -4298,32 +4560,55 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"fDI" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"fDM" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"fDz" = ( +/obj/structure/closet, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"fEb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Female Dormitories"; + req_access_txt = "100" }, -/turf/open/floor/dark, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"fEf" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "fEn" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) +"fEs" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "fEw" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"fEJ" = ( +/obj/item/tool/soap, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "fFc" = ( /obj/item/tool/warning_cone, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"fFB" = ( +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) "fFD" = ( /obj/structure/cargo_container/ferret/left, /turf/open/floor, @@ -4334,30 +4619,12 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"fGc" = ( -/turf/open/gm/dirtgrassborder/desert2, -/area/lv624/ground/barrens/south_eastern_barrens) -"fGy" = ( -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "fGC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"fHs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "fHE" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/slugs, @@ -4371,10 +4638,6 @@ "fHW" = ( /turf/closed/wall, /area/lv624/lazarus/sleep_female) -"fIj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "fIk" = ( /obj/structure/lz_sign/lazarus_sign{ density = 0 @@ -4392,26 +4655,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"fIy" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/packaged_burrito, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"fIJ" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) -"fJl" = ( -/obj/effect/landmark/crap_item, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "fJz" = ( /mob/living/simple_animal/bat, /turf/open/gm/dirt, @@ -4419,11 +4662,9 @@ "fJO" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/west_barrens) -"fKt" = ( -/obj/structure/surface/table, -/obj/structure/machinery/processor, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"fKm" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/lv624/lazarus/landing_zones/lz2) "fKG" = ( /obj/item/weapon/harpoon/yautja{ anchored = 1; @@ -4447,6 +4688,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"fKK" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/landing_zones/lz1) +"fKP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/main_hall) "fKS" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -4454,15 +4702,6 @@ "fKW" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"fLi" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel{ - pixel_y = 12 - }, -/obj/structure/machinery/light, -/obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "fLD" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -4485,37 +4724,32 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"fMg" = ( -/obj/structure/inflatable, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"fMs" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/central_barrens) -"fME" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, +"fMy" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"fMC" = ( /turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +/area/lv624/ground/jungle/south_west_jungle/ceiling) "fMN" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"fNf" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Director's Office" +"fNa" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"fNp" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"fNA" = ( +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "fND" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -4535,6 +4769,12 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"fOb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/red, +/area/lv624/lazarus/security) "fOl" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -4553,21 +4793,14 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"fPt" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "fPu" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/jungle/west_jungle) -"fPx" = ( -/obj/structure/closet/coffin{ - density = 0; - icon_state = "coffin_open"; - opened = 1 - }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) "fQs" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass2, @@ -4581,29 +4814,30 @@ "fQL" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/east_river) -"fQX" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 4 +"fRm" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/obj/structure/bed/chair, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "fSd" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/lazarus/quartstorage/outdoors) +"fSs" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "fSB" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/east, /area/lv624/ground/jungle/west_jungle) -"fTc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"fTM" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "fTZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/west_jungle) @@ -4622,6 +4856,10 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"fUY" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "fVB" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -4630,6 +4868,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"fVQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "fWf" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -4643,30 +4885,51 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"fWO" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "fXL" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/west_river) -"fXZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 +"fYu" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"fZl" = ( +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"fYD" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) +"fYQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"fZl" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/south_medbay_road) +"fZr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/hotdog, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "fZy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_west_jungle) -"fZS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Bay" +"fZB" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/laceup, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "fZT" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -4683,12 +4946,13 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"gaN" = ( -/obj/vehicle/powerloader/jd{ - dir = 1 +"gaw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "gbo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, @@ -4713,33 +4977,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) -"gco" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Mining Storage"; - req_access_txt = "100" - }, -/turf/open/floor/dark, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"gcP" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "gdw" = ( /obj/structure/sign/safety/high_voltage{ pixel_x = 7; @@ -4747,27 +4984,29 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"gdV" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"geq" = ( -/obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"gft" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "gfx" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"ggM" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) +"ggy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) +"ggF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) +"ggJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/wy_chips/pepper, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) "ghf" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -4788,35 +5027,35 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"ghJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold{ + amount = 2 + }, +/obj/item/stack/sheet/mineral/platinum{ + pixel_x = -6 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"gir" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "giB" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"giK" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) "giL" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"giP" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/loadingarea/east, -/area/lv624/lazarus/quartstorage) -"giS" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/machinery/power/apc/power/north{ - name = "Atmospherics Processing APC" - }, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) "giX" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper LZ2 Access"; @@ -4838,48 +5077,75 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"gkd" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/turf/open/floor/whitebluefull, +"gkn" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"gkv" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"gkV" = ( -/obj/structure/girder, -/turf/open/floor/asteroidplating, -/area/lv624/ground/caves/north_central_caves) +"gkB" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "glt" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) -"glG" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"glu" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 + }, +/obj/item/reagent_container/food/drinks/flask/barflask, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"glB" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) +/area/lv624/lazarus/engineering) +"glH" = ( +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "glX" = ( /turf/closed/wall, /area/lv624/ground/barrens/east_barrens/ceiling) +"gmm" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/main_hall) "gmI" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"gmL" = ( +/obj/structure/machinery/door_control{ + id = "science_blast"; + name = "Science Wing Lockdown"; + pixel_x = 25 + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "gmU" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"gmY" = ( +/obj/structure/machinery/sleep_console, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "gnc" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"gnA" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "gnL" = ( /turf/open/floor, /area/lv624/lazarus/medbay) @@ -4889,6 +5155,14 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"gok" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "gov" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -4898,16 +5172,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"goG" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"gpu" = ( -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "gpD" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_jungle) @@ -4915,19 +5179,39 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/medbay) +"gpJ" = ( +/obj/item/device/multitool, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "gqn" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) +"gqE" = ( +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"gqN" = ( +/obj/structure/surface/table, +/obj/item/handset, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "gru" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/central_jungle) -"grv" = ( -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/engineering) +"grG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "grH" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -4935,44 +5219,53 @@ "grT" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/north_central_caves) -"gsC" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"gti" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/central_barrens) -"gtZ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" +"gsy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"guB" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/window/reinforced{ - dir = 8 +/obj/item/clothing/mask/gas/yautja/damaged, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"gsU" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Security Office APC" }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/turf/open/floor/red, +/area/lv624/lazarus/security) +"gth" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"gtD" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"gtG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"guE" = ( +/obj/structure/prop/mech/parts/gygax_torso, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "guV" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"gvM" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/reactor/colony{ - fail_rate = 5 +"gvN" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"gwe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "gwi" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/grass_overlay/grass1{ @@ -4988,14 +5281,6 @@ /obj/structure/closet/crate, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"gwT" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"gwU" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) "gxa" = ( /obj/structure/prop/dam/truck/mining, /turf/open/gm/dirt, @@ -5006,10 +5291,8 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"gxv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine/corporate/liaison, -/turf/open/floor/whiteyellow/northwest, +"gxP" = ( +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "gxU" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -5025,6 +5308,10 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/gm/dirt, /area/lv624/landing/console2) +"gzH" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) "gzJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -5058,13 +5345,17 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/landing_zones/lz2) -"gCO" = ( -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/engineering) "gDf" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"gDo" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "gDp" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, @@ -5073,6 +5364,11 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) +"gDI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "gDU" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -5092,16 +5388,22 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/west_river) -"gEq" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Corporate Lobby APC" - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +"gEk" = ( +/obj/item/storage/toolbox/syndicate, +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "gEy" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_jungle) +"gET" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "gEW" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/north_central_caves) @@ -5115,17 +5417,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"gFa" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "gFd" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -5136,13 +5427,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"gFf" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/bed/chair, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "gFi" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, @@ -5150,20 +5434,17 @@ "gFN" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"gGb" = ( -/obj/structure/lattice{ - layer = 2.9 +"gFZ" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/repair_droid{ + layer = 2; + pixel_y = -10 }, -/obj/structure/machinery/power/reactor/colony{ - fail_rate = 5 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/engineering) -"gGi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "gGl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) @@ -5187,10 +5468,15 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"gIq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) +"gIL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "gIU" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/west_barrens) @@ -5209,10 +5495,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"gJk" = ( -/obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "gKb" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -5239,29 +5521,29 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"gLu" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"gLF" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/plantbgone{ - pixel_x = 4; - pixel_y = 6 +"gLQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Nexus Cargo Storage"; + req_access_txt = "100"; + req_one_access = null }, -/obj/effect/landmark/crap_item, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"gMm" = ( -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "gMz" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"gNz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "gNJ" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -5280,6 +5562,12 @@ "gOl" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) +"gOy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "gOD" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) @@ -5287,20 +5575,31 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/lazarus/quartstorage/outdoors) -"gPl" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southeast, -/area/lv624/lazarus/landing_zones/lz1) "gPz" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"gPV" = ( -/obj/structure/surface/table, -/obj/item/folder, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"gPK" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "gPX" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -5321,22 +5620,30 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"gQJ" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) "gQT" = ( /obj/structure/barricade/sandbags, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"gRh" = ( -/obj/effect/landmark/crap_item, +"gRm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Nexus Dome Marshal's Quarters"; + req_access_txt = "100" + }, /turf/open/floor/cult, -/area/lv624/lazarus/armory) +/area/lv624/lazarus/captain) "gRy" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"gRU" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"gRZ" = ( +/turf/open/floor/warningcorner/east, +/area/lv624/lazarus/landing_zones/lz1) "gSw" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_jungle) @@ -5350,34 +5657,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) -"gSL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/power/apc/no_power/north{ - name = "Unisex Bathrooms APC" - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"gSP" = ( -/obj/item/handset{ - desc = "A model of an ancient Earth communication device."; - force = 8 - }, -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) -"gTn" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) "gTy" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -5398,30 +5677,14 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"gUm" = ( -/obj/structure/largecrate, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "gUt" = ( /obj/structure/prop/fishing/line/long, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/caves/north_central_caves) -"gUy" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) "gUP" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"gVj" = ( -/obj/item/tool/shovel, -/obj/structure/surface/table, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) "gVy" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/flamer, @@ -5438,15 +5701,28 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"gWq" = ( -/obj/structure/bed/chair{ - dir = 1 +"gWk" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Corporate Office"; + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "secure_outer_blast"; + name = "Secure Outer Doors"; + pixel_x = 25; + pixel_y = -5 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"gWt" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "gWz" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -5460,15 +5736,13 @@ /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, /area/lv624/ground/colony/south_nexus_road) +"gWO" = ( +/turf/open/gm/dirtgrassborder/desert_dug, +/area/lv624/ground/barrens/south_eastern_barrens) "gXe" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"gXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) "gXn" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/north, @@ -5478,15 +5752,15 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"gXB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) -"gYa" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +"gXM" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/jungle/west_jungle/ceiling) +"gXV" = ( +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) "gYp" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -5505,15 +5779,16 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"hai" = ( +"gZP" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"hai" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/central_jungle) -"hao" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/red, -/area/lv624/lazarus/security) "hap" = ( /obj/item/tool/pickaxe/jackhammer, /obj/structure/prop/rock, @@ -5524,6 +5799,11 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/east_jungle) +"haC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "haJ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -5533,10 +5813,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"haS" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "haW" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/security) @@ -5553,47 +5829,25 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"hbq" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"hbu" = ( -/obj/structure/machinery/conveyor{ - dir = 4 - }, -/turf/open/floor/bot/north, -/area/lv624/lazarus/quart) -"hbG" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/central_barrens) "hbZ" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"hca" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/shotgun/full, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -6 - }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "hcb" = ( /turf/open/gm/river, /area/lv624/ground/river/west_river) +"hcR" = ( +/obj/structure/surface/table, +/obj/item/toy/deck, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"hcS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "hcX" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/river, @@ -5619,6 +5873,13 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"hey" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "heF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Nexus Dome"; @@ -5645,18 +5906,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"hfR" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) "hgd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass2, @@ -5671,14 +5920,22 @@ "hhv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/north_central_caves) +"hhQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "hhR" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/south_nexus_road) -"hib" = ( -/obj/structure/kitchenspike, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/caves/north_central_caves) "hiv" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/gm/dirt, @@ -5699,24 +5956,34 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"hjJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) +"hkh" = ( +/obj/structure/morgue/sarcophagus, +/obj/item/weapon/twohanded/yautja/glaive/damaged{ + name = "damaged war glaive" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "hkv" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/west_barrens) -"hlZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "hma" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hmu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "hmC" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -5727,12 +5994,11 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"hmT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/whitegreencorner/west, -/area/lv624/lazarus/main_hall) +"hmW" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/enchiladas, +/turf/open/floor/carpet/bcarpet02, +/area/lv624/ground/caves/north_central_caves) "hnc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -5758,16 +6024,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"hoi" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"hot" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "how" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass2, @@ -5785,38 +6041,24 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hpo" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/surgical, -/obj/structure/machinery/light{ - dir = 1 +"hpt" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/obj/item/storage/belt/medical/full, -/obj/item/reagent_container/hypospray, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) -"hpv" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "hpG" = ( /obj/structure/flora/jungle/treeblocker, /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"hpN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null +"hpS" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/machinery/power/apc/power/north{ + name = "Atmospherics Processing APC" }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) "hpU" = ( /obj/structure/bed/chair{ dir = 8 @@ -5853,19 +6095,23 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"hqo" = ( +"hqX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/crew/colony, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"hrm" = ( /obj/structure/surface/table, -/obj/item/device/mmi/radio_enabled, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"hqZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) -"hre" = ( -/turf/open/floor/whitegreencorner, -/area/lv624/lazarus/main_hall) +/obj/item/clothing/head/chefhat, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "hrs" = ( /obj/structure/surface/table/reinforced{ dir = 1; @@ -5877,46 +6123,36 @@ /obj/effect/landmark/crap_item, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"hrM" = ( -/obj/structure/dispenser, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "hsc" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"hsS" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "hta" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"htw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100" - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "htX" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) -"hul" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "huu" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 8 @@ -5927,6 +6163,16 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) +"hvf" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"hvU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/tool/extinguisher, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "hvV" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) @@ -5934,6 +6180,16 @@ /obj/item/tool/warning_cone, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"hxe" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/effect/glowshroom, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "hxk" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -5945,27 +6201,31 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"hxu" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 30 +"hxT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"hyS" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/west_barrens) +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"hyV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "hyX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"hyY" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window/westright{ + layer = 2.9 + }, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "hzy" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -5975,23 +6235,18 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"hzK" = ( -/obj/item/device/flashlight, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/red/east, -/area/lv624/lazarus/security) -"hzU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"hzG" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -5; + pixel_y = -1 }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) -"hzW" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/river/central_river) +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "hAo" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -6000,6 +6255,16 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"hBc" = ( +/obj/structure/filingcabinet/security{ + desc = "A large cabinet with hard copy security records."; + name = "Security Records" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/redcorner/north, +/area/lv624/lazarus/security) "hBy" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ density = 0; @@ -6011,16 +6276,6 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"hCr" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Fitness APC" - }, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"hCu" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz1) "hCG" = ( /obj/item/device/radio/off{ frequency = 1469; @@ -6036,18 +6291,19 @@ "hDv" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_west_jungle) -"hDw" = ( -/obj/structure/bed/stool, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "hEm" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/hydroponics) -"hEH" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"hEZ" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "hFe" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -6065,17 +6321,28 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"hGa" = ( -/obj/structure/closet/crate, -/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, -/obj/item/ammo_magazine/rifle/mar40/extended, -/obj/item/ammo_magazine/rifle/mar40/extended, +"hFI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/lighter, +/obj/item/device/analyzer, +/obj/item/device/multitool, +/obj/item/device/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +/area/lv624/lazarus/engineering) +"hFJ" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/hud/health, +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"hGg" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "hGo" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/item/bananapeel, @@ -6091,16 +6358,20 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"hHr" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"hHA" = ( -/obj/structure/noticeboard{ - pixel_y = 30 +"hHj" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 }, -/turf/open/floor/white, +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "hHP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -6109,18 +6380,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hHS" = ( -/obj/item/clothing/glasses/sunglasses/aviator, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"hHX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) "hIa" = ( /obj/effect/landmark/crap_item, /obj/structure/fence, @@ -6135,31 +6394,31 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grassbeach/north, /area/lv624/lazarus/yggdrasil) -"hIv" = ( -/obj/structure/surface/table, -/obj/item/tool/pen{ - layer = 3.1 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"hIU" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"hIN" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "hJh" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hJu" = ( -/turf/open/floor/red/northwest, -/area/lv624/lazarus/security) -"hJI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"hJN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"hKr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north{ + name = "Research Director's APC" + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "hKF" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -6169,27 +6428,15 @@ "hKW" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/west_barrens) +"hKX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "hLe" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) -"hLD" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) -"hMk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) -"hMq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"hMO" = ( +"hLz" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/lv624/lazarus/hop) @@ -6200,6 +6447,17 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"hMV" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"hMX" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) "hNE" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -6211,10 +6469,12 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"hNP" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"hNX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "hNY" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -6226,6 +6486,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"hOd" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "hOq" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -6233,14 +6514,6 @@ "hOB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/north_central_caves) -"hOC" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "hOD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -6251,92 +6524,57 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/lazarus/landing_zones/lz2) -"hOP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) +"hOT" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "hPf" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"hPv" = ( -/obj/item/frame/apc, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "hPw" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"hQh" = ( -/turf/open/floor/airless/asteroidfloor/northeast, -/area/lv624/ground/barrens/north_east_barrens) -"hQC" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" +"hPE" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"hRc" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"hRq" = ( -/turf/open/gm/coast/west, -/area/lv624/ground/jungle/west_jungle) -"hRv" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"hRA" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"hQT" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"hRq" = ( +/turf/open/gm/coast/west, +/area/lv624/ground/jungle/west_jungle) "hSv" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"hSA" = ( +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"hSL" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "hSV" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"hTy" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"hTJ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"hTM" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/platebot, -/area/lv624/ground/barrens/east_barrens/ceiling) "hUg" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"hUG" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) "hUO" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor, @@ -6348,61 +6586,10 @@ "hVk" = ( /turf/open/gm/coast/south, /area/lv624/ground/caves/north_central_caves) -"hVH" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"hVL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) -"hVU" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"hWl" = ( -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_y = -28 - }, -/turf/open/floor/plating/asteroidwarning, -/area/lv624/lazarus/landing_zones/lz2) "hWv" = ( /obj/structure/flora/tree/jungle/bigtreeTR, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"hWA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Dome SMES"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) -"hXC" = ( -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/medbay) "hXE" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -6415,6 +6602,22 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"hYh" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"hYL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/cable_coil, +/obj/item/tool/screwdriver{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "hYR" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -6422,36 +6625,10 @@ "iaO" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"iaU" = ( -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"ibc" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 30 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "icM" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"icO" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"ier" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/wy_chips/pepper, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"ies" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "iev" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/north_east, @@ -6464,6 +6641,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/central_jungle) +"ifa" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "ifo" = ( /obj/item/weapon/unathiknife{ desc = "A curved blade made of a strange material. It looks both old and very sharp."; @@ -6492,6 +6673,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"igz" = ( +/obj/structure/surface/table, +/obj/item/toy/dice, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "igE" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -6499,33 +6685,20 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"igK" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/box/matches, -/obj/item/tool/candle, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) -"igY" = ( -/obj/structure/inflatable/door, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) +"igL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics" + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"ihl" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "ihp" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"ihU" = ( -/obj/item/stock_parts/matter_bin/super, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) "iic" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -6533,13 +6706,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"iiE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/device/flashlight{ - pixel_y = 5 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "ijT" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_east, @@ -6547,35 +6713,35 @@ "ijV" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/sleep_female) -"ijW" = ( -/turf/open/floor/white, -/area/lv624/lazarus/medbay) "ike" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_central_jungle) -"ikn" = ( -/obj/structure/window/reinforced{ - dir = 8 +"ikm" = ( +/obj/structure/machinery/constructable_frame, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) +"ikv" = ( +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"ikD" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/turf/open/floor/carpet/bcarpet03, +/area/lv624/ground/caves/north_central_caves) +"ilb" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/lv624/ground/caves/north_central_caves) +"ilk" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/obj/structure/window/reinforced, +/obj/effect/landmark/monkey_spawn, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/corporate_dome) -"ilb" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/lv624/ground/caves/north_central_caves) -"ilq" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "ilx" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 @@ -6589,93 +6755,85 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"ilH" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"ilQ" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/beret/sec/hos{ + pixel_y = 10 }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"imb" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "imd" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"imp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "imF" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"imO" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) "imT" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_east_jungle) "inc" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"inE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "It's a spoon. Covered in red slime and mold."; - pixel_x = 10; - pixel_y = 5 +"inF" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "ioa" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage) -"iof" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Hydroponics" - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"iol" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"ioC" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) -"ioM" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/east_barrens/ceiling) "ioW" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"ioY" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 14 + }, +/obj/item/clothing/head/soft/blue{ + pixel_x = 7; + pixel_y = 28 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ipd" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/east_river) +"ipt" = ( +/turf/open/floor/warnwhite/northeast, +/area/lv624/lazarus/fitness) "ipD" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) -"ipF" = ( -/obj/structure/bed/chair{ - dir = 4 +"iqw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/medbay) "iqz" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) @@ -6685,14 +6843,25 @@ }, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) +"irK" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"irV" = ( +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) +"isb" = ( +/obj/structure/computerframe, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "ism" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/central_jungle) -"isn" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, -/area/lv624/lazarus/landing_zones/lz1) +"iss" = ( +/obj/structure/ore_box, +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) "isJ" = ( /obj/vehicle/train/cargo/trolley, /turf/open/gm/dirt, @@ -6704,41 +6873,24 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"itX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"iul" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"iub" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/area/lv624/lazarus/corporate_dome) "ium" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"iup" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"iuv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"iuF" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/effect/landmark/good_item, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "iuQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -6747,13 +6899,11 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"ivj" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"ivi" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "iwh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_central_jungle) @@ -6762,35 +6912,38 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_jungle) -"iwz" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"iwH" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "iwJ" = ( /obj/structure/machinery/conveyor_switch, /turf/open/floor, /area/lv624/lazarus/quartstorage) +"iwW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 + }, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"ixd" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "ixg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_jungle) "ixp" = ( /turf/closed/wall, /area/lv624/lazarus/canteen) -"ixN" = ( +"ixD" = ( /obj/structure/surface/table, -/obj/item/ashtray/plastic, -/obj/item/stack/flag/red, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +/obj/item/storage/firstaid/toxin, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"ixI" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) "iyu" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, @@ -6804,6 +6957,24 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) +"iyY" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/surgical, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/storage/belt/medical/full, +/obj/item/reagent_container/hypospray, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"izJ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass2, +/area/lv624/ground/jungle/north_jungle) "izW" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -6812,49 +6983,69 @@ "izY" = ( /turf/closed/wall, /area/lv624/lazarus/kitchen) -"iAd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/whitegreen/north, -/area/lv624/lazarus/main_hall) +"iAn" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "iAI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/caves/north_central_caves) "iAV" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) +"iBd" = ( +/obj/item/weapon/sword{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "iBy" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) +"iCi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "iCu" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"iCW" = ( -/obj/structure/machinery/light{ - dir = 1 +"iDk" = ( +/obj/structure/filingcabinet, +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) +"iDB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/red, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"iDE" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/off{ + frequency = 1469 }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/random/tool, /turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"iDu" = ( -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"iDz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"iEc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/comms) "iEk" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -6883,18 +7074,35 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"iED" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/warning/northeast, -/area/lv624/lazarus/landing_zones/lz1) "iFa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"iFs" = ( -/obj/structure/fence, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) +"iFz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) +"iFJ" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"iGu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "iGy" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/heavy, @@ -6916,10 +7124,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"iIc" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) +"iIh" = ( +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) "iIj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -6927,6 +7134,22 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"iIm" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 5 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"iIv" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "iIC" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -6940,24 +7163,16 @@ "iJq" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/west_river) +"iLj" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "iLy" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"iLL" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Security Office APC" - }, -/turf/open/floor/red, -/area/lv624/lazarus/security) -"iLM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) "iLN" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, @@ -6972,11 +7187,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"iMe" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "iMk" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -6987,11 +7197,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"iNH" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) "iNV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/item/tool/hatchet{ @@ -7006,6 +7211,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"iOq" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "iPd" = ( /obj/structure/phone_base/colony_net{ phone_category = "Lazarus Landing"; @@ -7015,11 +7224,13 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"iPI" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"iPj" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "iPU" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -7031,13 +7242,13 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"iRw" = ( -/turf/open/floor/whiteyellowcorner/west, +"iRK" = ( +/turf/open/floor/whiteyellow, /area/lv624/lazarus/main_hall) -"iRB" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"iRV" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/sw_lz2) "iSf" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -7046,39 +7257,19 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"iSz" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, +"iSJ" = ( +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) +"iTQ" = ( /obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"iTR" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Secure Vault APC"; - start_charge = 200 - }, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"iTY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/matchbook/wy_gold, -/turf/open/floor/whiteblue/east, -/area/lv624/lazarus/corporate_dome) -"iUb" = ( -/turf/open/floor/whiteyellow/west, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) "iUj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_east_jungle) +"iUq" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/river/east_river) "iVA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -7088,15 +7279,32 @@ "iVR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/west_jungle) +"iWh" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) +"iWo" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome Office"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "iWB" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_nexus_road) -"iWO" = ( -/obj/structure/fence, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/river/central_river) +"iWH" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"iWZ" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) "iXv" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_west_caves) @@ -7104,15 +7312,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"iXK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "iXP" = ( /obj/item/stack/sheet/wood{ amount = 50 @@ -7123,10 +7322,9 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"iYj" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/cargo) +"iYa" = ( +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "iYx" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, @@ -7135,39 +7333,76 @@ /obj/effect/spawner/random/tech_supply, /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) +"iZn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"iZO" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/south_west_caves) "iZU" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"jam" = ( -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) +"jag" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz2) "jaB" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) +"jaO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "jbc" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall, /area/lv624/lazarus/toilet) -"jbu" = ( -/obj/structure/target/syndicate, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"jch" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "jcl" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) +"jcn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "jcy" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"jcC" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "jcV" = ( /obj/effect/landmark/crap_item, /turf/open/floor, @@ -7176,13 +7411,15 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"jdz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"jdm" = ( +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/cargo) +"jdq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/tool/pen/clicky, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "jdA" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "Nexus Landing Zone" @@ -7193,6 +7430,11 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"jem" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "jeG" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -7210,10 +7452,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"jfp" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "jfv" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /turf/open/floor/wood, @@ -7225,26 +7463,10 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/east_river) -"jfM" = ( -/turf/open/floor/warnwhite/west, -/area/lv624/lazarus/fitness) -"jfY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"jgn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_id = "Medbay" - }, +"jgb" = ( +/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/white, -/area/lv624/lazarus/medbay) +/area/lv624/lazarus/corporate_dome) "jgv" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -7254,9 +7476,53 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"jgM" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"jgS" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) +"jhd" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "jhm" = ( /turf/open/gm/coast/north, /area/lv624/ground/barrens/west_barrens) +"jhr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "jht" = ( /turf/open/floor/grass, /area/lv624/lazarus/main_hall) @@ -7267,14 +7533,6 @@ "jij" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz1) -"jjf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"jjt" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "jkb" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/river, @@ -7286,19 +7544,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"jkQ" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/engineering) -"jkS" = ( -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/cargo) "jle" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 6; @@ -7316,11 +7561,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"jlw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "jlB" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, @@ -7328,6 +7568,17 @@ "jlL" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/north_central_caves) +"jlQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"jmF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "jmN" = ( /obj/effect/landmark/hunter_primary, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -7341,24 +7592,22 @@ }, /turf/closed/wall, /area/lv624/lazarus/kitchen) -"jnw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/main_hall) "jnQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) -"jon" = ( -/turf/open/floor/warningcorner/west, -/area/lv624/lazarus/landing_zones/lz1) +"jox" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "joE" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_west_jungle) +"jpA" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "jpQ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -7382,31 +7631,63 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"jro" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"jrt" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "jrx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"jry" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Storage Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/white, -/area/lv624/lazarus/quartstorage) +"jrI" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) "jrM" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"jsb" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) +"jsk" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Storage Pods APC" + }, +/turf/open/floor/vault, +/area/lv624/lazarus/quartstorage) "jsl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"jsq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "jsy" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -7415,54 +7696,36 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"jtg" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/main_hall) "jtl" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"jty" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"jtD" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/central_barrens) "jud" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"jue" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/carpet/bcarpet09, -/area/lv624/ground/caves/north_central_caves) +"juO" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "juS" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/yggdrasil) -"jva" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) "jvi" = ( /obj/structure/fence, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_central_jungle) -"jvl" = ( -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) -"jvo" = ( -/obj/item/stack/rods, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "jvA" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -7477,6 +7740,10 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"jwK" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "jxe" = ( /obj/structure/surface/rack, /obj/item/moneybag, @@ -7488,14 +7755,6 @@ }, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"jxJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "jxM" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -7503,60 +7762,44 @@ "jyw" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/east_jungle) -"jzX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"jzc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"jzW" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "jAg" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"jAL" = ( +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/main_hall) "jAP" = ( /turf/closed/wall, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"jBw" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"jBL" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"jBP" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/main_hall) -"jBW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"jCg" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "jCk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/jungle/west_jungle) -"jCw" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz2) -"jCY" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"jDq" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/CMB{ - pixel_y = 10 +"jDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/item/clothing/suit/storage/CMB, -/turf/open/shuttle/bright_red, -/area/lv624/ground/barrens/north_east_barrens) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "jDs" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/dirt, @@ -7587,17 +7830,25 @@ /obj/item/storage/backpack, /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) +"jFG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "jFM" = ( /obj/structure/bed/chair/wood/normal, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/north_central_caves) -"jFN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "jFX" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) @@ -7619,13 +7870,17 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_east_jungle) -"jIa" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +"jIq" = ( +/obj/structure/bookcase, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/security_space_law, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"jJa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "jJc" = ( /turf/closed/wall, /area/lv624/lazarus/main_hall) @@ -7641,14 +7896,15 @@ "jJq" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"jJx" = ( +"jJw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating/asteroidwarning/east, -/area/lv624/lazarus/landing_zones/lz2) -"jJQ" = ( -/obj/item/tool/crowbar, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"jJE" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "jJU" = ( /turf/open/gm/coast/west, /area/lv624/ground/river/central_river) @@ -7656,36 +7912,41 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"jKR" = ( -/obj/structure/ore_box, -/obj/structure/fence, -/turf/open/floor/warning/east, -/area/lv624/ground/barrens/containers) +"jKv" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "jLd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) +"jLe" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) +"jLu" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) "jLG" = ( /obj/structure/girder/displaced, /obj/structure/shuttle/engine/propulsion, /obj/structure/prop/invuln/fire, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"jLJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) "jMp" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"jMN" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "jMT" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -7699,10 +7960,6 @@ "jNI" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/caves/north_central_caves) -"jNN" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) "jNU" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -7717,9 +7974,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"jOL" = ( -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "jOO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -7729,26 +7983,46 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"jPl" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"jPJ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 +"jPd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_east_jungle) -"jPM" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/lv624/ground/jungle/south_east_jungle) -"jQn" = ( +/obj/item/weapon/gun/energy/yautja/plasma_caster{ + anchored = 1; + desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; + name = "damaged plasma caster" + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"jPx" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) +"jPJ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_east_jungle) +"jPM" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/lv624/ground/jungle/south_east_jungle) +"jQn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"jQH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/taperecorder, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "jQR" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -7760,6 +8034,12 @@ "jRf" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) +"jRu" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "jRD" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/north_central_caves) @@ -7767,26 +8047,46 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) -"jSc" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"jRR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"jSl" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "jSt" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"jTl" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"jTw" = ( -/obj/structure/machinery/light/small{ +"jSv" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"jSx" = ( +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"jSN" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "jTI" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -7795,6 +8095,20 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"jUc" = ( +/obj/structure/largecrate/random, +/obj/item/storage/fancy/crayons{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"jUf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whitegreencorner/west, +/area/lv624/lazarus/main_hall) "jUM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -7805,10 +8119,6 @@ "jUU" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/east_caves) -"jUY" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) "jVg" = ( /obj/structure/target, /obj/item/clothing/head/militia/bucket{ @@ -7817,9 +8127,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"jVL" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/barrens/east_barrens/ceiling) +"jVM" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"jWL" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "jWO" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -7834,12 +8153,6 @@ /obj/structure/largecrate/random, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"jXm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "jXS" = ( /obj/item/toy/inflatable_duck, /turf/open/gm/river, @@ -7848,10 +8161,6 @@ /obj/effect/landmark/crap_item, /turf/open/gm/coast/west, /area/lv624/ground/barrens/west_barrens) -"jYU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "jZh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -7860,41 +8169,25 @@ /obj/effect/landmark/survivor_spawner, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) +"jZA" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "jZC" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"kab" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100" - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/fitness) "kaw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"kaB" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz2) -"kaM" = ( -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) -"kaW" = ( -/turf/open/floor/red/southwest, -/area/lv624/lazarus/security) -"kbi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"kbK" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +"kaH" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "kbO" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -7904,6 +8197,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"kbX" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "kcd" = ( /obj/structure/flora/tree/dead/tree_1, /obj/structure/flora/jungle/vines/light_2, @@ -7912,12 +8209,10 @@ "kcg" = ( /turf/open/gm/coast/east, /area/lv624/ground/jungle/west_jungle) -"kcK" = ( -/turf/open/floor/red/west, -/area/lv624/lazarus/security) -"kcX" = ( -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"kcE" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "kdt" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ @@ -7925,14 +8220,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"kdy" = ( -/obj/item/shard, -/turf/open/floor/podhatchfloor, -/area/lv624/lazarus/comms) -"kdK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) "ker" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, @@ -7941,14 +8228,34 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) +"keu" = ( +/obj/item/clothing/under/shorts/black{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) +"keI" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "kfh" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"kfA" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/west_caves) "kfV" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"kgc" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Secure Vault APC" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "kgd" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -7969,15 +8276,26 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"kil" = ( -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/caves/north_central_caves) "kiJ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"kiV" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"kjf" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "kjv" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -7993,57 +8311,23 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/north_tcomms_road) -"kkx" = ( -/obj/item/tool/crowbar, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/main_hall) +"kkp" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Robotics Lab APC" + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "kkG" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"klc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) -"klk" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "klm" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) "klv" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/west_caves) -"klF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/red, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "kma" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -8055,14 +8339,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"kmL" = ( -/obj/structure/grille, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"kmx" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/central_river) "kna" = ( /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"kno" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 9 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "knt" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -8073,16 +8364,17 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"knS" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "knZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/east_jungle) +"kor" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "koG" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, @@ -8091,29 +8383,62 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"koN" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/jungle/west_jungle/ceiling) +"koQ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "koY" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"kpz" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"kpD" = ( -/obj/structure/surface/table, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +"kpo" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"kpB" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "kpM" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) -"kpX" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"kpN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"kpY" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"kqg" = ( +/obj/structure/closet, +/obj/item/weapon/baseballbat, +/obj/item/clothing/head/beret/jan, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"kql" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) +"kqm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "kqo" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -8122,14 +8447,15 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"kqB" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ +"kqv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; dir = 1; - name = "\improper Nexus Dome Director's Quarters"; - req_access_txt = "100" + icon_state = "p_stair_full" }, -/turf/open/floor/cult, -/area/lv624/lazarus/hop) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "kqQ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, @@ -8138,11 +8464,6 @@ /obj/structure/prop/rock/black_ground, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"krg" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/costume/butler, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "krA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -8163,32 +8484,20 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"ksM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) +"ksW" = ( +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "ksY" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/north_nexus_road) +"kte" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) "ktZ" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"kuY" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"kve" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) "kvQ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, @@ -8197,10 +8506,14 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"kwd" = ( -/obj/structure/bed/chair, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +"kvW" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/CMB{ + pixel_y = 10 + }, +/obj/item/clothing/suit/storage/CMB, +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) "kwx" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -8210,6 +8523,10 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) +"kwB" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "kwG" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -8232,6 +8549,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"kxX" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "kxY" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -8242,9 +8563,24 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"kyk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 + }, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) "kyl" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) +"kys" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "kyR" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 11; @@ -8255,12 +8591,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"kyX" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) "kzi" = ( /obj/structure/flora/tree/jungle/bigtreeTL, /obj/structure/flora/jungle/vines/heavy, @@ -8270,12 +8600,20 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"kzI" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "kzM" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_west_jungle) "kzX" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"kAc" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "kAx" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -8284,6 +8622,12 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) +"kAN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/adv, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "kBi" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -8302,10 +8646,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"kCg" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) "kCo" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_west_caves) @@ -8315,10 +8655,22 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"kCV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/under/liaison_suit/suspenders, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "kCY" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/north_tcomms_road) +"kDV" = ( +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) "kDX" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/plating, @@ -8331,10 +8683,10 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"kEI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/whitegreen, -/area/lv624/lazarus/main_hall) +"kEU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/sleep_female) "kFe" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ icon_state = "fernybush_2"; @@ -8342,12 +8694,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"kFm" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) "kFp" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirtgrassborder/south, @@ -8363,26 +8709,16 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"kGV" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"kHv" = ( -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" - }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) "kIc" = ( /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"kIi" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Corporate Lobby APC" + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "kIj" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, @@ -8392,30 +8728,47 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"kIU" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) -"kJh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) +"kIN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"kJi" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"kJv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "kKi" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/central_river) -"kKO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Male Dormitories"; - req_access_txt = "100" +"kKq" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"kKX" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"kKW" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"kLE" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/engineering) "kLF" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -8431,43 +8784,56 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_nexus_road) -"kMS" = ( -/turf/open/floor/plating/asteroidwarning/southwest, +"kMw" = ( +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/lazarus/landing_zones/lz2) -"kNf" = ( -/obj/structure/surface/table, -/obj/item/toy/dice, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"kMH" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"kNd" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"kNx" = ( +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) +"kNV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/computer/telecomms/traffic{ + layer = 3.1; + pixel_y = 16 + }, +/obj/structure/bed/chair/office/light{ + dir = 1; + layer = 3.2 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "kOr" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"kOw" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/vault2/west, +"kOu" = ( +/obj/structure/surface/table, +/obj/structure/prop/mech/drill, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "kON" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/jungle/west_jungle) +"kOZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "kPc" = ( /turf/open/gm/grass/grassbeach/south, /area/lv624/lazarus/yggdrasil) -"kPj" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"kPu" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -12 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "kPL" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -8475,29 +8841,29 @@ "kPZ" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/east_barrens) -"kQd" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) +"kQa" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "kQi" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"kQO" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/barrens/south_eastern_barrens) -"kRs" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"kQK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "kRE" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) +"kRO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) "kRZ" = ( /obj/structure/disposalpipe/segment{ layer = 5.1; @@ -8505,67 +8871,26 @@ }, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"kSc" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/canteen) -"kTk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/corporate_dome) +"kST" = ( +/turf/open/floor/white, +/area/lv624/lazarus/chapel) "kTl" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"kTs" = ( -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"kTt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) "kTK" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"kTS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup{ - desc = "Why would you ever drink this? Its full of mold and yucky slime!"; - pixel_y = 3 - }, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "It's a spoon. Covered in red slime and mold."; - pixel_x = 10; - pixel_y = 5 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "kTV" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"kTY" = ( -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/central_barrens) -"kVk" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz2) -"kVq" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/lazarus/engineering) +"kVh" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "kVx" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_jungle) @@ -8575,21 +8900,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"kWB" = ( -/obj/item/device/assembly/timer, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"kWG" = ( -/turf/open/floor/bot/north, -/area/lv624/lazarus/quartstorage) -"kWK" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, +"kWw" = ( +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"kWX" = ( /turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "kXi" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_jungle) +"kXn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_id = "Research Dome"; + pixel_y = 24 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"kXq" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "kXD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -8600,6 +8936,22 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"kXV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "kXZ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 11; @@ -8639,11 +8991,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"kZS" = ( -/obj/structure/closet, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "kZX" = ( /turf/open/gm/grass/grass1/weedable, /area/lv624/ground/caves/north_east_caves) @@ -8656,13 +9003,16 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"lbo" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"lbm" = ( +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/obj/structure/platform, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "lbW" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass2, @@ -8674,71 +9024,74 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"lch" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "lcj" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) -"lcM" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 +"lcl" = ( +/obj/structure/closet, +/obj/item/clothing/under/rank/scientist, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"lcT" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/device/flashlight, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"ldd" = ( +/obj/item/storage/box/beakers, +/obj/structure/surface/table, +/obj/structure/sign/safety/biohazard{ + pixel_x = -18 }, -/obj/item/clothing/under/colonist, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "ldF" = ( /obj/structure/cargo_container/lockmart/mid, /turf/open/floor, /area/lv624/ground/barrens/containers) +"ldR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "leh" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) -"leo" = ( -/obj/structure/surface/table, -/obj/structure/prop/mech/drill, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "let" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"lfk" = ( -/turf/open/floor/whiteyellow/north, -/area/lv624/lazarus/main_hall) -"lgg" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"lfi" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"lga" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/flower_vase/bluewhiteflowers, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "lgx" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"lgG" = ( -/turf/open/floor/redcorner/east, -/area/lv624/lazarus/security) -"lgV" = ( -/turf/open/floor/whiteyellow, -/area/lv624/lazarus/corporate_dome) +"lhF" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray, +/obj/item/stack/medical/ointment, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"lhV" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "lhX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/vault, @@ -8747,29 +9100,26 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"liM" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 30 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "ljl" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"ljx" = ( -/obj/structure/device/broken_piano, -/obj/structure/machinery/light/small{ - dir = 8 +"ljA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "ljG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"ljH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/bot/north, -/area/lv624/lazarus/quartstorage) -"ljO" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "lki" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -8778,23 +9128,60 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"lkL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/blue, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/corporate_dome) +"lkE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"lkM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz1) "lln" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"llt" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Fitness APC" + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"llK" = ( +/obj/structure/closet/crate/secure/hydrosec, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "lmg" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"lnb" = ( +/turf/open/floor/warnwhite/west, +/area/lv624/lazarus/fitness) "lnn" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"lnq" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) +"lnw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "lnK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/east, @@ -8820,9 +9207,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"lpb" = ( -/turf/open/floor/wood/wood_broken4, -/area/lv624/ground/caves/north_central_caves) "lpf" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 @@ -8840,11 +9224,6 @@ /mob/living/simple_animal/bat, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"lpL" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "lpV" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/dirt, @@ -8856,12 +9235,46 @@ "lqD" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_west_jungle) -"lrA" = ( -/obj/structure/bed/chair/office/light{ +"lqQ" = ( +/obj/structure/machinery/atm{ + name = "Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"lqZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -2 + }, +/obj/structure/machinery/light, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"lrb" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"lrw" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) "lrI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -8869,30 +9282,19 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"lsm" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/lv624/ground/colony/telecomm/cargo) -"lsV" = ( -/obj/structure/cargo_container/seegson/right, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "lte" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"lth" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) -"ltm" = ( -/turf/open/floor/warningcorner/east, -/area/lv624/lazarus/landing_zones/lz1) "lts" = ( /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) +"ltx" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "ltA" = ( /obj/structure/cargo_container/lockmart/right, /turf/open/floor, @@ -8904,23 +9306,19 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"lub" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "luf" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"luq" = ( +"luH" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"luL" = ( /obj/structure/girder, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage/outdoors) -"luQ" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "lvd" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, @@ -8935,12 +9333,15 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_tcomms_road) -"lwr" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/central_barrens) "lwG" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) +"lwO" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "lwZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -8951,21 +9352,14 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_central_jungle) -"lxD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood/wood_broken3, -/area/lv624/ground/caves/north_central_caves) -"lxI" = ( -/obj/item/device/multitool, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +"lyG" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"lye" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/asteroidwarning/north, -/area/lv624/ground/river/central_river) +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "lyV" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) @@ -8974,18 +9368,10 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grassbeach/south, /area/lv624/lazarus/yggdrasil) -"lzr" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/sw_lz2) "lzU" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"lAn" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "lBg" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ @@ -8993,21 +9379,12 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"lBG" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 2 - }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_x = -6 +"lBT" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"lBO" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "lBW" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -9017,9 +9394,14 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"lCm" = ( -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/landing_zones/lz2) +"lCp" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "lCt" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -9035,21 +9417,14 @@ /obj/structure/largecrate/random, /turf/open/floor, /area/lv624/ground/barrens/containers) +"lCy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "lCF" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"lCJ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks{ - pixel_x = -4 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) "lCS" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -9060,24 +9435,22 @@ "lDp" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/comms) -"lDE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north{ - name = "Research Director's APC" +"lDs" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) +"lEy" = ( +/obj/structure/surface/rack, +/obj/item/weapon/baton/cattleprod{ + pixel_x = -2; + pixel_y = 1 }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"lEo" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Robotics Lab APC" +/obj/item/weapon/baton/cattleprod{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"lEz" = ( -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "lEK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -9116,40 +9489,10 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"lFK" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) -"lFN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/comms) "lFX" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) -"lGF" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"lGX" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/reagent_container/glass/bucket{ - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "lHp" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) @@ -9162,6 +9505,14 @@ "lIs" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/east_barrens) +"lIz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "lIH" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -9188,33 +9539,23 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"lJy" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/tool/match{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/carpet/bcarpet08, -/area/lv624/ground/caves/north_central_caves) "lKb" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"lKj" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "lKk" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"lKl" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "lKp" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, @@ -9230,14 +9571,18 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/west_nexus_road) -"lKJ" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor/bot/north, -/area/lv624/ground/caves/north_central_caves) "lLf" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"lLl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "lLt" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -9245,23 +9590,16 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"lLB" = ( -/turf/open/floor/warning/east, -/area/lv624/lazarus/landing_zones/lz1) +"lLv" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "lLF" = ( /obj/structure/prop/fishing/line/long/part2, /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) -"lLH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"lMe" = ( -/turf/open/gm/dirtgrassborder/desert0, -/area/lv624/ground/barrens/south_eastern_barrens) "lMx" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -9270,17 +9608,17 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"lNa" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"lNK" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot{ - dir = 1 +"lMQ" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/device/radio/off{ + frequency = 1469 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"lNI" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "lNZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/west_jungle) @@ -9291,6 +9629,26 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"lOh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) +"lOF" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "lPg" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_x = -28 @@ -9298,14 +9656,24 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"lPv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "lPB" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"lPR" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/cyan, +"lQn" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/sunglasses/big, /turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "lQD" = ( @@ -9320,28 +9688,14 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"lRb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"lRc" = ( -/obj/structure/largecrate/random, -/obj/item/storage/fancy/crayons{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) -"lRR" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/south_east_caves) +"lRh" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) +"lRq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "lSl" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat/orange{ @@ -9366,16 +9720,6 @@ /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"lTH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "lTU" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -9385,11 +9729,13 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) -"lUG" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"lVg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "lVq" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -9413,62 +9759,52 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) -"lVz" = ( -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"lVY" = ( -/obj/item/storage/medicomp/full, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"lWj" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 8 +"lWI" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "lWP" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"lXy" = ( -/turf/open/floor/asteroidwarning/north, -/area/lv624/ground/colony/telecomm/sw_lz2) +"lXC" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"lXE" = ( +/obj/item/tool/crowbar, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "lXF" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"lXX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"lYa" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser" +"lXH" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/yggdrasil) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "lYs" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall, /area/lv624/lazarus/quart) -"lYz" = ( -/obj/structure/machinery/constructable_frame, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/barrens/east_barrens/ceiling) "lZw" = ( /obj/effect/landmark/crap_item, /turf/open/gm/river, @@ -9483,18 +9819,15 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"may" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) "maF" = ( /obj/structure/closet/crate, /obj/item/storage/firstaid, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"maK" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "maL" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/river/east_river) @@ -9502,15 +9835,16 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"mbL" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_west_jungle) "mcb" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) -"mcH" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/white, +"mcu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/main_hall) "mdp" = ( /obj/structure/machinery/landinglight/ds1/delaythree, @@ -9538,29 +9872,37 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"meU" = ( -/obj/structure/closet/cabinet, -/obj/item/weapon/baseballbat/metal, -/obj/item/clothing/under/colonist, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +"meY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"mfc" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"mfJ" = ( +/obj/structure/flora/pottedplant, +/obj/structure/pipes/vents/pump, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"mfX" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "mgr" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"mgH" = ( -/obj/structure/surface/table, -/obj/item/trash/snack_bowl{ - pixel_y = 9 - }, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"mgN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/main_hall) "mhi" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -9569,17 +9911,27 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"mie" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"mhQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"mhV" = ( +/obj/structure/kitchenspike, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "mig" = ( /obj/structure/inflatable, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"mir" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "miu" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -9618,11 +9970,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_tcomms_road) -"mjq" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "mjI" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, @@ -9633,9 +9980,49 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"mky" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Cafeteria APC" + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"mla" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/hardhat{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "mlw" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"mlz" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/tool/match{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/carpet/bcarpet08, +/area/lv624/ground/caves/north_central_caves) +"mlD" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/obj/item/device/assembly/voice, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"mlE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "mlU" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 @@ -9650,20 +10037,28 @@ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"mmU" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"mmX" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "mmY" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"mnh" = ( -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/barrens/central_barrens) "mnY" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"mot" = ( -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +"moy" = ( +/obj/structure/holohoop, +/turf/open/floor/warnwhite/north, +/area/lv624/lazarus/fitness) "moU" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, @@ -9680,17 +10075,38 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"mpT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = 6 + }, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = -6 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"mqq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "mrj" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"mrP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"mrz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, +/turf/open/floor/dark, /area/lv624/lazarus/comms) +"mrF" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"msP" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "msU" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -9698,43 +10114,58 @@ "msX" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"mtd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "mtZ" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"mue" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"muo" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "muv" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"muL" = ( +/obj/structure/girder, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) +"muX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "mwe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"mwh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) "mwi" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"mwn" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 +"mwv" = ( +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"mwU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/item/folder/black, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "mwV" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -9743,44 +10174,30 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) -"mxo" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "mxB" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"mxS" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_x = 30 - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"mym" = ( -/obj/structure/bed/chair/hunter{ - dir = 4 - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "myt" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/jungle/west_jungle) -"mzY" = ( -/obj/structure/machinery/shower{ +"mzD" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "mAx" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"mAH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "mAI" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/light_1, @@ -9790,12 +10207,25 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"mBE" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"mAM" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) +/area/lv624/lazarus/engineering) +"mBi" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"mBw" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "mBQ" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) @@ -9807,6 +10237,11 @@ "mDH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/east_jungle) +"mDX" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "mDZ" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -9820,6 +10255,10 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"mEU" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "mEX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/north, @@ -9828,28 +10267,31 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) -"mGo" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) -"mGD" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mFq" = ( +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"mFZ" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"mGX" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/caves/sand_temple) -"mHb" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/pastatomato, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"mGv" = ( +/obj/structure/closet, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"mGM" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"mHm" = ( +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"mHr" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "mHG" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -9861,27 +10303,18 @@ "mHO" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) -"mHX" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - pixel_y = 16 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) +"mHS" = ( +/obj/structure/closet, +/obj/item/clothing/under/blackskirt, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "mIq" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"mIs" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"mIG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whiteyellowcorner/west, -/area/lv624/lazarus/corporate_dome) +"mJf" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/ground/river/central_river) "mJs" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -9896,11 +10329,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) -"mJX" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/turf/open/floor/carpet/bcarpet01, -/area/lv624/ground/caves/north_central_caves) "mKi" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/containers) @@ -9921,6 +10349,15 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"mLS" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"mMd" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "mMu" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/mineral/gold{ @@ -9928,6 +10365,10 @@ name = "Statue of the Sky" }, /area/lv624/lazarus/main_hall) +"mNi" = ( +/obj/structure/girder, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "mNk" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 40 @@ -9938,10 +10379,29 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/lazarus/quartstorage/outdoors) +"mNp" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/main_hall) +"mNu" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "mOe" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"mOO" = ( +/obj/item/clothing/head/militia, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"mOR" = ( +/obj/structure/largecrate/random, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 5 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) "mPA" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -9961,6 +10421,28 @@ "mPU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_west_jungle) +"mPV" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) +"mPX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) +"mPZ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory"; + req_one_access_txt = "19;106" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "mQd" = ( /obj/structure/surface/table/reinforced{ dir = 4; @@ -9978,25 +10460,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) -"mQk" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Corporate Office"; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "secure_outer_blast"; - name = "Secure Outer Doors"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/open/floor/whiteyellow/northeast, -/area/lv624/lazarus/corporate_dome) -"mQz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "mQA" = ( /turf/closed/wall/wood, /area/lv624/ground/jungle/west_jungle/ceiling) @@ -10005,12 +10468,7 @@ /obj/item/reagent_container/food/snacks/boiledspagetti, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"mQJ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, +"mQN" = ( /turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "mQU" = ( @@ -10019,51 +10477,44 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"mRc" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"mRf" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/warningcorner/west, -/area/lv624/lazarus/landing_zones/lz1) "mRM" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"mSo" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) +"mSa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "mTy" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"mTE" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "mUx" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/north_central_caves) +"mUM" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "mUV" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Nexus Dome Marshal Office" }, /turf/open/floor, /area/lv624/lazarus/security) -"mVp" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/pie, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"mVs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/wy_chips/pepper, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/corporate_dome) "mVt" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -10072,18 +10523,20 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"mVI" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/corporate_dome) -"mVX" = ( -/obj/structure/curtain/red, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) +"mVA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "mWN" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/colony/west_nexus_road) +"mWW" = ( +/obj/structure/closet/coffin, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) "mWY" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -10091,22 +10544,10 @@ }, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"mXY" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 14 - }, -/obj/item/clothing/head/soft/blue{ - pixel_x = 7; - pixel_y = 28 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"mYJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/framed/colony, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +"mYh" = ( +/obj/structure/girder, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "mYT" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -10120,6 +10561,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"mZh" = ( +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "mZl" = ( /obj/item/storage/beer_pack{ pixel_y = 9 @@ -10130,49 +10577,29 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) +"mZv" = ( +/obj/structure/surface/rack, +/obj/item/stack/sandbags/large_stack{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/stack/sandbags/large_stack{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "mZB" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"mZY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) "nag" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/west_central_jungle) -"nap" = ( -/obj/structure/surface/rack, -/obj/item/weapon/baton/cattleprod{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/weapon/baton/cattleprod{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"naZ" = ( -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/ground/river/central_river) -"nbj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Forced Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +"naT" = ( +/turf/open/floor/redcorner/east, +/area/lv624/lazarus/security) "nbw" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -10185,31 +10612,10 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"nbQ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/main_hall) -"ncv" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "ncL" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"ndb" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/chapel/east, -/area/lv624/lazarus/chapel) "nds" = ( /obj/item/weapon/gun/rifle/l42a/abr40, /obj/structure/barricade/sandbags, @@ -10228,9 +10634,10 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) -"ndO" = ( -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/fitness) +"ndK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "ndU" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -10239,18 +10646,14 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/hydroponics) -"net" = ( -/obj/structure/largecrate, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "neB" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"neT" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) +"neO" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "nfe" = ( /obj/structure/surface/table/reinforced{ dir = 4; @@ -10263,17 +10666,46 @@ /obj/item/xenos_claw, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"nga" = ( -/obj/structure/closet/lawcloset, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) +"nfQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "ngi" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_nexus_road) +"ngD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) "ngH" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"nhk" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "nhK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -10282,45 +10714,16 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"nhY" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "nhZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/west_jungle) -"nip" = ( -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage/outdoors) -"niC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/under/liaison_suit/suspenders, -/turf/open/floor/whiteyellow/southeast, -/area/lv624/lazarus/corporate_dome) +"nii" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/sw_lz2) "niL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"njv" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) -"njI" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/barrens/central_barrens) "nkr" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, @@ -10332,20 +10735,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"nkx" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"nkE" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"nkK" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/podhatchfloor, -/area/lv624/lazarus/comms) "nkN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -10356,37 +10745,32 @@ /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"nlh" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"nlx" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +"nlA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) "nmr" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"nmP" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "nmU" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"nnh" = ( -/obj/structure/closet/lasertag/red, +"nng" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_x = -30 + }, /turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "nnw" = ( @@ -10398,18 +10782,14 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"nnR" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz1) +"noh" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "noE" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"noT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "npf" = ( /obj/structure/surface/table/reinforced{ dir = 8; @@ -10421,6 +10801,12 @@ /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"npz" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "npI" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -10439,20 +10825,21 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/lazarus/landing_zones/lz2) +"nqU" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"nrA" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/east_river) "nrQ" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"nrY" = ( -/obj/item/stack/rods{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"nsg" = ( -/turf/open/shuttle/bright_red, -/area/lv624/ground/barrens/north_east_barrens) "nsi" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/mar40, @@ -10469,9 +10856,12 @@ "nsz" = ( /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"nsA" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/lazarus/engineering) +"nsZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "ntI" = ( /obj/structure/largecrate/lisa, /turf/open/floor/greengrid, @@ -10480,24 +10870,23 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"nul" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nuA" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) "nuF" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"nuH" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +"nuP" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "nvr" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 @@ -10512,15 +10901,35 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"nvU" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/caves/west_caves) +"nvX" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) +"nwd" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz1) "nwF" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) "nwZ" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) +"nxi" = ( +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"nxT" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "garage_lv"; + name = "\improper Garage" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "nyg" = ( /obj/structure/girder/displaced, /turf/closed/shuttle{ @@ -10545,6 +10954,9 @@ "nyC" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_east_jungle) +"nyL" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/medbay) "nzo" = ( /obj/effect/landmark/good_item, /obj/structure/flora/jungle/vines/heavy, @@ -10562,18 +10974,21 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"nAi" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, +"nAj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"nAt" = ( +/obj/structure/bed/stool, /turf/open/floor/dark, /area/lv624/lazarus/engineering) +"nBi" = ( +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "nBy" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -10582,18 +10997,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_nexus_road) -"nBR" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"nCa" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Garage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) "nCh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -10606,9 +11009,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"nCN" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/central_barrens) +"nCn" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"nCA" = ( +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) "nCP" = ( /turf/open/gm/river, /area/lv624/lazarus/fitness) @@ -10625,25 +11032,58 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/gbcorner/north_east, /area/lv624/lazarus/yggdrasil) +"nDs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "nDM" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nDU" = ( -/obj/structure/lattice{ - layer = 2.9 +"nDT" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/parts/gygax_armor{ + layer = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"nDX" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/machinery/power/reactor/colony{ - fail_rate = 5 +/obj/structure/computerframe{ + anchored = 1 }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/engineering) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"nEf" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"nEk" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"nEl" = ( +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) "nEp" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"nEv" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/canteen) "nEF" = ( /obj/structure/inflatable/door, /turf/open/gm/dirt, @@ -10652,6 +11092,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"nFm" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "nFT" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -10671,39 +11115,50 @@ /obj/item/explosive/plastic, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"nHo" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "nHw" = ( /obj/item/disk/nuclear, /obj/structure/surface/rack, /obj/item/tool/crowbar, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"nHz" = ( +/obj/structure/largecrate, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"nHM" = ( +/obj/structure/surface/table, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "nHP" = ( /obj/structure/surface/rack, /obj/item/storage/box/mousetraps, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"nIs" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/caves/south_west_caves) -"nIv" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) -"nJB" = ( -/obj/structure/machinery/light{ - dir = 1 +"nJk" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" }, -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "nJG" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"nKH" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"nKn" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) +"nLd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "nLe" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -10712,42 +11167,10 @@ "nLt" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"nLF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/power/apc/no_power/east{ - name = "Women's Dorms APC" - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"nLK" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"nLS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "nLT" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) -"nMb" = ( -/turf/open/floor/loadingarea/north, -/area/lv624/lazarus/landing_zones/lz1) "nMK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -10755,10 +11178,6 @@ "nNm" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"nNH" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "nNK" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) @@ -10770,50 +11189,40 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) +"nPt" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"nPD" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "nQb" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"nQc" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Telecomms APC"; - start_charge = 15 - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/comms) "nQl" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"nQo" = ( +"nQX" = ( +/obj/item/stack/rods{ + amount = 20 + }, /obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"nQJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, /turf/open/floor/dark, /area/lv624/lazarus/quartstorage) -"nRc" = ( -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "nRg" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/east_river) -"nRv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/tool/wrench, -/obj/item/tool/weldingtool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"nSF" = ( -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) +"nSK" = ( +/turf/open/floor/red/west, +/area/lv624/lazarus/security) "nSM" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -10822,10 +11231,10 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) -"nUg" = ( +"nTm" = ( /obj/structure/fence, -/turf/open/floor/warning/west, -/area/lv624/ground/barrens/containers) +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/east_barrens) "nUz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -10834,16 +11243,19 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"nVl" = ( -/obj/structure/bed/chair/hunter{ - dir = 8 - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) +"nUT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "nVt" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"nVG" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "nWm" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, @@ -10854,70 +11266,40 @@ "nWM" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"nXa" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/chefhat, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"nWW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"nXI" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "nXL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"nXN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/corporate_dome) -"nXV" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/red/east, -/area/lv624/lazarus/security) -"nXZ" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/lv624/lazarus/main_hall) -"nYf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"nYi" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/barrens/east_barrens/ceiling) "nYl" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"nYx" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/structure/surface/rack, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "nYF" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/jungle/west_jungle) -"nZk" = ( -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) -"nZy" = ( +"nYL" = ( /obj/structure/surface/table, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "nZI" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -10931,26 +11313,16 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"occ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "ock" = ( /obj/structure/surface/rack, /obj/item/ore/diamond, /obj/effect/landmark/good_item, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"ocv" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "ocI" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/central_river) @@ -10958,46 +11330,69 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"ocS" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/central_jungle) "odo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/west_river) -"odF" = ( -/turf/open/floor/whiteblue/east, -/area/lv624/lazarus/medbay) +"odD" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "oeF" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/west_barrens) +"oeG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"off" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"ofl" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"ofB" = ( +/obj/structure/surface/rack, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "ofV" = ( /obj/structure/flora/jungle/vines/light_3, /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"ofX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Corporate Liason Office" - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"ogh" = ( -/turf/open/floor/warnwhite/northeast, -/area/lv624/lazarus/fitness) "ogn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ogz" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"ogG" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "ogW" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -11005,11 +11400,27 @@ "ohr" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_central_caves) -"ohO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/red, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) +"ohE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Director's Office" + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"ohX" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"oik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "oio" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -11017,16 +11428,48 @@ /obj/structure/flora/jungle/planttop1, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) +"oiz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "oiA" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"oja" = ( +/obj/structure/inflatable/door, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "ojg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"oji" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"ojz" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/east_barrens) +"okp" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Dome SMES"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "okr" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/sand_temple) @@ -11035,52 +11478,44 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"olj" = ( -/obj/structure/prop/mech/tesla_energy_relay{ - layer = 2.5 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"okQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/pie, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "olA" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"olB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 26 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"olG" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "olH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/south_medbay_road) +"omg" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"omo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "omw" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"onh" = ( -/turf/open/floor/white, -/area/lv624/lazarus/research) -"ont" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/dirt/desert2, -/area/lv624/ground/barrens/south_eastern_barrens) +"omF" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"onc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "onE" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) @@ -11103,6 +11538,15 @@ "ooz" = ( /turf/closed/wall/cult, /area/lv624/ground/caves/south_west_caves) +"opd" = ( +/obj/structure/closet, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/shoes/centcom, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "opC" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -11116,17 +11560,19 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"oqz" = ( -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"oqO" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 4 +"oqA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/tool/pen, -/turf/open/floor/white, -/area/lv624/lazarus/medbay) +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"oqG" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "orc" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/canteen) @@ -11138,18 +11584,41 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/river, /area/lv624/ground/caves/west_caves) -"osi" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, +"orM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"orN" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"orV" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/item/device/flashlight, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/obj/item/clothing/under/colonist, /turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "osk" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/east_caves) -"oso" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) +"osy" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "osD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -11166,34 +11635,24 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"ota" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/central_barrens) -"otr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"osS" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) "otv" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"otM" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_y = 3 +"otW" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "oum" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -11201,23 +11660,31 @@ "ouL" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"ovA" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"ovj" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/corsat/squareswood/north, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) -"ovC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"ovr" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"ovB" = ( +/turf/open/floor/white, +/area/lv624/lazarus/research) "ovE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"ovM" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Secure Vault APC"; + start_charge = 200 + }, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "own" = ( /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) @@ -11227,6 +11694,19 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"owF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "oxo" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -11240,68 +11720,50 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"oxT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/tomato, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"oyc" = ( +/obj/structure/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "oyq" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"oyI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/obj/item/storage/firstaid/adv, -/turf/open/floor/red/north, -/area/lv624/lazarus/security) +"oyT" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "oyV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"ozj" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/obj/item/device/assembly/voice, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "ozt" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"ozx" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"ozA" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "oAa" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"oAn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "oAG" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"oAH" = ( -/obj/structure/computerframe, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"oBR" = ( +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "oCc" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -11328,41 +11790,26 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"oCY" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray, -/obj/item/stack/medical/ointment, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/medbay) -"oDa" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/turf/open/floor/carpet/bcarpet03, -/area/lv624/ground/caves/north_central_caves) +"oDg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "oDu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"oDx" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/wood_broken4, -/area/lv624/lazarus/hop) "oDI" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_central_jungle) -"oEj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "oEm" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -11371,73 +11818,66 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"oEB" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "oFP" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) "oGs" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/quartstorage) +"oGA" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/river/central_river) "oGE" = ( /obj/item/trash/cigbutt, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"oGH" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Water Filtration Plant"; - req_access_txt = "100" +"oHd" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/east_barrens/ceiling) -"oHk" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"oIc" = ( -/obj/structure/inflatable, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "oIE" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"oIT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whiteblue, -/area/lv624/lazarus/medbay) "oIU" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"oJt" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) +"oJC" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "oKa" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"oKt" = ( -/obj/structure/fence, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/river/central_river) "oKP" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_jungle) -"oMh" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"oLH" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/warnwhite, +/area/lv624/lazarus/fitness) +"oLK" = ( +/obj/item/pipe, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "oMn" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -11446,42 +11886,50 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"oNt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) +"oMM" = ( +/obj/structure/fence, +/turf/open/floor/warning/northeast, +/area/lv624/ground/barrens/containers) +"oMS" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"oNm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen/north, +/area/lv624/lazarus/main_hall) "oNu" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"oNN" = ( -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "oNX" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/east_river) +"oOV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "oPf" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) +"oPE" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 9 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "oPZ" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"oRH" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/clothing/mask/gas/yautja/damaged, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) +"oQX" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) "oRP" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, @@ -11498,48 +11946,22 @@ "oSd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_east_jungle) -"oSe" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "oTq" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"oTD" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/power/apc/power/north{ + name = "Kitchen APC" + }, +/obj/effect/landmark/good_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "oTT" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"oUh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_id = "Research Dome"; - pixel_y = 24 - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"oUq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/flower_vase/bluewhiteflowers, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) -"oUx" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "oUy" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_central_jungle) @@ -11550,36 +11972,29 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"oVe" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" +"oUI" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/corporate_dome) +"oVh" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"oVi" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, -/area/lv624/lazarus/landing_zones/lz2) -"oVw" = ( -/obj/structure/filingcabinet/medical, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"oVk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, /turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"oVO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +"oVo" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"oVR" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "oVU" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -11595,10 +12010,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"oWG" = ( -/obj/structure/fence, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) "oWP" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 @@ -11637,26 +12048,43 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"oZs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"oYE" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/east_barrens/ceiling) +"oYX" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"oZi" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/cargo) +"oZD" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) +"oZQ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "pan" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"paN" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/beret/sec/hos{ - pixel_y = 10 +"pau" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "paO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, @@ -11697,29 +12125,37 @@ /obj/structure/bed/stool, /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) +"pek" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "pen" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"peR" = ( -/obj/structure/target, -/turf/open/floor/red/northwest, -/area/lv624/lazarus/security) +"peM" = ( +/obj/structure/sink/kitchen{ + pixel_y = 30 + }, +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "pfj" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"pfF" = ( -/obj/structure/machinery/light/small, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"pfT" = ( -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/engineering) "pfY" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -11735,9 +12171,26 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"pgu" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/central_barrens) "pgJ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"phs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "piP" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -11746,6 +12199,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/south_nexus_road) +"pjf" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/west_river) "pjl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -11762,14 +12219,22 @@ "pjH" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_west_caves) +"pjZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "pkE" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"pkV" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/robotics) "pkY" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -11779,22 +12244,11 @@ "ple" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) -"plj" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"pls" = ( -/obj/structure/prop/mech/parts/gygax_torso, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "plL" = ( /obj/structure/flora/jungle/plantbot1, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"plP" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz2) "plS" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_west, @@ -11811,6 +12265,31 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/jungle/south_west_jungle/ceiling) +"pmb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"pmp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"pmv" = ( +/obj/item/device/flashlight, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) +"pmF" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) "pnc" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -11818,12 +12297,6 @@ "pnj" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_east_caves) -"pnm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) "pno" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -11834,6 +12307,13 @@ }, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/west_caves) +"pnu" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "pnB" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -11842,17 +12322,10 @@ /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"pnD" = ( -/obj/item/clothing/head/helmet/augment{ - desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; - name = "alien mask"; - unacidable = 1 - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"pnG" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/south_eastern_barrens) +"pnK" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "pnM" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, @@ -11865,6 +12338,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"pox" = ( +/obj/structure/inflatable, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "poI" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/grass/grass1, @@ -11878,14 +12355,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_central_jungle) -"pqy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "pqJ" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -11894,6 +12363,19 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) +"pqS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"pqY" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "prG" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) @@ -11907,93 +12389,76 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"pse" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "psw" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"psz" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Quartermaster APC" - }, -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"psF" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "psG" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"ptj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/plantbgone{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "ptP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"pub" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window, -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"puv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/corporate_dome) -"puI" = ( -/obj/structure/extinguisher_cabinet{ +"ptZ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; pixel_y = 30 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"pvj" = ( -/turf/open/floor/plating/asteroidwarning, -/area/lv624/ground/river/central_river) +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"pvE" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/fertilizer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "pvG" = ( /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"pvM" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"pvO" = ( -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "pvT" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/space) +"pws" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "pwE" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"pwP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "pxo" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_jungle) -"pxp" = ( -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) +"pxu" = ( +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "pxv" = ( /obj/structure/surface/table/reinforced{ flipped = 1 @@ -12007,37 +12472,50 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"pyU" = ( -/obj/structure/bed, -/obj/item/bedsheet/mime, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"pzh" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"pzR" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "pAb" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"pAh" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 9 - }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"pAn" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) +"pAK" = ( +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) "pAL" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"pBT" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/glowshroom, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"pBC" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"pCw" = ( +/obj/structure/machinery/bot/mulebot{ + auto_pickup = 0; + auto_return = 0; + health = 1; + on = 0 }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "pCL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/gbcorner/north_east, @@ -12048,35 +12526,43 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"pDC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) +"pDO" = ( +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 + }, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "pEd" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"pEM" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"pEN" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/engineering) "pEY" = ( /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) -"pEZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"pFi" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "Storage Pods APC" - }, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) -"pFG" = ( -/obj/structure/machinery/sleep_console, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +"pFq" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) "pGc" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/barrens/west_barrens) @@ -12091,20 +12577,29 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"pHB" = ( -/obj/item/circuitboard/airlock{ - pixel_x = 12 +"pHD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/turf/open/floor/asteroidwarning/north, -/area/lv624/ground/colony/telecomm/cargo) -"pHH" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) +"pHF" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/south_west_caves) "pHO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) +"pIb" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "pIw" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_east_jungle) @@ -12112,6 +12607,12 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"pIT" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "pJc" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/effect/landmark/lv624/fog_blocker, @@ -12123,6 +12624,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"pJy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "pJN" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -12132,82 +12640,49 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"pKe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "pKf" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"pKD" = ( -/obj/structure/bed, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "pKL" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"pLd" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/tritium{ - pixel_x = -4 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "pLs" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage/outdoors) -"pLw" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/device/radio/off{ - frequency = 1469 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "pMr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"pMK" = ( -/obj/structure/machinery/requests_console{ - pixel_x = 30 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"pNa" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"pME" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/sw_lz2) +"pMW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "pNp" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"pNr" = ( +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/corporate_dome) "pNu" = ( /turf/open/gm/river, /area/lv624/ground/caves/west_caves) -"pNA" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "pNM" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"pOf" = ( -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/corporate_dome) "pOo" = ( /obj/structure/surface/table/reinforced{ dir = 1; @@ -12220,6 +12695,11 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"pPW" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "pQh" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, @@ -12242,11 +12722,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"pRc" = ( -/obj/structure/flora/pottedplant, -/obj/structure/pipes/vents/pump, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "pRo" = ( /obj/vehicle/train/cargo/engine{ dir = 8 @@ -12261,10 +12736,6 @@ "pSi" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"pSu" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/barrens/central_barrens) "pSF" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) @@ -12278,15 +12749,32 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"pTO" = ( -/turf/open/floor/warningcorner/north, -/area/lv624/lazarus/landing_zones/lz1) +"pUf" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "pUx" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/east_river) -"pVc" = ( -/turf/open/floor/whiteyellow/southwest, -/area/lv624/lazarus/corporate_dome) +"pUA" = ( +/obj/structure/surface/table, +/obj/item/folder, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"pUD" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"pUL" = ( +/obj/structure/bed/alien, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"pUS" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) "pVi" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -12301,6 +12789,9 @@ "pVp" = ( /turf/open/floor, /area/lv624/ground/barrens/containers) +"pVw" = ( +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "pVE" = ( /obj/item/tool/warning_cone{ pixel_x = -9; @@ -12326,6 +12817,9 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) +"pXV" = ( +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "pYI" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -12345,10 +12839,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/quartstorage/outdoors) -"pYX" = ( -/obj/item/hunting_trap, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "pZi" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -12364,54 +12854,18 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"pZT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) -"qab" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/high_explosive/stick, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = 6 - }, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = -6 - }, +"qaw" = ( +/obj/structure/machinery/mecha_part_fabricator, /turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"qai" = ( -/turf/open/floor/wood/wood_broken4, -/area/lv624/lazarus/hop) -"qbD" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southeast, -/area/lv624/lazarus/landing_zones/lz2) -"qck" = ( -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) -"qcy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/area/lv624/lazarus/robotics) +"qaC" = ( +/obj/item/tool/pickaxe, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "qdJ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"qdL" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) "qec" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -12420,62 +12874,59 @@ /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"qet" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"qeB" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/sunglasses/aviator, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "qeD" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"qeQ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"qfc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/main_hall) "qfu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"qgq" = ( -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/robotics) -"qgx" = ( -/turf/open/floor/bot/north, -/area/lv624/ground/caves/north_central_caves) -"qgJ" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) +"qfL" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "qgK" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) -"qhb" = ( -/turf/open/floor/whiteyellowcorner, -/area/lv624/lazarus/main_hall) -"qhe" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Men's Dorms APC" +"qgP" = ( +/obj/structure/machinery/light, +/obj/structure/bed/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/surface/table, -/obj/item/toy/deck, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "qhg" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"qih" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) -"qim" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/caves/south_west_caves) +"qhk" = ( +/obj/item/frame/apc, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"qiJ" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "qjl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -12492,13 +12943,18 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"qkp" = ( -/obj/structure/machinery/light{ - dir = 1 +"qkk" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/effect/landmark/good_item, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"qkN" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "qkS" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/gm/dirt, @@ -12541,6 +12997,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"qmN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"qnd" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "qne" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/flora/jungle/vines/light_2, @@ -12550,15 +13014,17 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"qnn" = ( +/obj/structure/bed/chair/hunter{ + dir = 8 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "qnt" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"qnH" = ( -/obj/item/clothing/suit/armor/yautja_flavor, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "qnP" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -12568,6 +13034,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) +"qnV" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "qov" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -12576,57 +13046,34 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"qoZ" = ( -/turf/open/floor/white, -/area/lv624/lazarus/fitness) "qpb" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"qpg" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) "qpt" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) "qpE" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"qpF" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"qpP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "qqk" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"qqB" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"qqF" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/obj/item/coin/diamond, -/obj/item/m_gift, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/clothing/under/marine/veteran/pmc, -/obj/item/storage/fancy/cigar, -/turf/open/floor/whiteyellow/northeast, -/area/lv624/lazarus/corporate_dome) +"qri" = ( +/obj/structure/largecrate/black_market/clf_supplies, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "qrv" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/central_caves) @@ -12634,6 +13081,11 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"qrY" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "qsg" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -12648,12 +13100,9 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"qsE" = ( -/turf/open/gm/dirtgrassborder/desert, -/area/lv624/ground/barrens/south_eastern_barrens) -"qsN" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/lv624/lazarus/corporate_dome) +"qsQ" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/south_west_caves) "qsZ" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -12664,19 +13113,6 @@ /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"quj" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/caves/west_caves) -"quk" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "quF" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -1; @@ -12687,12 +13123,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"quP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +"quI" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/east_barrens/ceiling) "quW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_jungle) @@ -12715,9 +13151,6 @@ /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"qvS" = ( -/turf/open/floor/warnwhite/northwest, -/area/lv624/lazarus/fitness) "qwp" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass2, @@ -12726,26 +13159,44 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"qwA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "qwC" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"qwG" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/clf, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "qwT" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"qxg" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) +"qxm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + color = "#524e4e"; + desc = "An old hide from a fearsome creature."; + name = "hunter hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "qxs" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -12758,21 +13209,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"qxA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"qxG" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/device/flashlight{ + pixel_y = 5 }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"qyz" = ( -/obj/structure/closet, -/obj/item/weapon/baseballbat, -/obj/item/clothing/head/beret/jan, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"qyN" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Central Hallway APC" }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "qzH" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -12783,17 +13234,10 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"qAR" = ( -/turf/open/floor/redcorner/west, -/area/lv624/lazarus/security) "qBF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"qBN" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/river/east_river) "qCo" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/river, @@ -12808,12 +13252,6 @@ "qCq" = ( /turf/closed/wall/r_wall, /area/lv624/ground/caves/north_central_caves) -"qCt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "qCG" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/flora/jungle/vines/light_2, @@ -12823,6 +13261,13 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"qCQ" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/west_barrens) +"qDk" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) "qDX" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -12831,22 +13276,39 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/closed/wall, /area/lv624/lazarus/toilet) +"qFe" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "qFh" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"qFn" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "qFw" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"qFB" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"qFJ" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "qFY" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) @@ -12854,29 +13316,22 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"qGz" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -2 +"qGD" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"qHd" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/central_river) "qHk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_west_jungle) -"qHu" = ( -/turf/open/floor/warnwhite/southeast, -/area/lv624/lazarus/fitness) +"qHr" = ( +/turf/open/gm/dirtgrassborder/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) "qHL" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -12892,30 +13347,10 @@ "qIM" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"qJD" = ( -/obj/item/bedsheet/rd, -/obj/item/weapon/pole/fancy_cane, -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"qKe" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/structure/machinery/microwave{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) -"qKD" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/north_jungle) +"qJR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "qLP" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) @@ -12938,59 +13373,36 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"qMH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Nexus Dome Marshal's Quarters"; - req_access_txt = "100" - }, -/turf/open/floor/cult, -/area/lv624/lazarus/captain) -"qMX" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/bar, -/area/lv624/lazarus/kitchen) +"qMU" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"qNa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "qNS" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/central_river) -"qOi" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/river/west_river) -"qOu" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/bot/north, -/area/lv624/lazarus/quartstorage) "qPx" = ( /obj/structure/inflatable, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens/ceiling) -"qPK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) -"qPV" = ( -/obj/item/tool/pickaxe, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"qQi" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/caves/sand_temple) +"qQp" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "qQq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"qQJ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"qQP" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "qQU" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -13008,21 +13420,42 @@ "qSw" = ( /turf/closed/wall/r_wall, /area/lv624/ground/river/central_river) -"qSD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "qSG" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"qSV" = ( -/obj/structure/closet, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +"qSY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100" + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "qTs" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) +"qTC" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"qTS" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "qTU" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/blood/oil, @@ -13046,15 +13479,10 @@ "qUy" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"qUz" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"qVa" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) +"qVm" = ( +/obj/structure/machinery/still, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "qVP" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, @@ -13063,21 +13491,13 @@ "qWn" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"qWq" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin/wy, -/obj/item/tool/pen/clicky, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +"qWA" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "qWD" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"qWT" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "qXf" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -13088,16 +13508,18 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"qXx" = ( -/turf/open/floor/chapel/west, -/area/lv624/lazarus/chapel) +"qXq" = ( +/obj/structure/bed, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"qXt" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "qXL" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"qYa" = ( -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "qYd" = ( /obj/structure/phone_base/colony_net{ phone_category = "Lazarus Landing"; @@ -13110,68 +13532,41 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"qYi" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"qYw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"qZb" = ( -/obj/structure/largecrate/black_market/clf_supplies, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) +"qYA" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "qZU" = ( /obj/structure/machinery/light/small, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"raw" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/east, -/area/lv624/lazarus/landing_zones/lz1) -"raP" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +"rab" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/engineering) "raQ" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"rbg" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 +"rbr" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"rbG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"rbh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "rce" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/south_medbay_road) -"rcq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "rcN" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"rcW" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "rde" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -13181,6 +13576,17 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"rdj" = ( +/obj/structure/closet/crate, +/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, +/obj/item/ammo_magazine/rifle/mar40/extended, +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "rds" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/north_central_caves) @@ -13191,35 +13597,26 @@ /obj/effect/landmark/crap_item, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"rey" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "rfb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"rfN" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) +"rge" = ( +/obj/structure/surface/table, +/obj/item/trash/tray, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "rgp" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) -"rha" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/obj/effect/decal/cleanable/dirt, +"rgq" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/area/lv624/lazarus/corporate_dome) +"rgA" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "rhe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -13230,6 +13627,14 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) +"rhm" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/microwave{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "rhK" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -13243,51 +13648,26 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"rjf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "rjs" = ( /obj/structure/surface/rack, /obj/item/storage/box/bodybags, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"rju" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) -"rks" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) "rkx" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"rkC" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) "rkH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"rlb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"rln" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "rls" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) +"rlw" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "rlB" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -13296,26 +13676,42 @@ "rlI" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/central_river) -"rmM" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -5; - pixel_y = -1 +"rlV" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"rmb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -2 +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"rmB" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"rog" = ( -/obj/item/storage/toolbox/syndicate, -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"rmW" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"rnx" = ( +/obj/structure/surface/table, +/obj/item/book/manual/research_and_development, +/obj/item/cell/hyper, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "ros" = ( /obj/structure/platform/mineral/sandstone/runed, /obj/structure/stairs/perspective{ @@ -13339,31 +13735,33 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) -"roT" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "rpz" = ( /obj/item/tool/warning_cone{ pixel_x = -11 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"rpF" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +"rqr" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz2) "rqw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"rqF" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Research APC" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/table, +/obj/item/clothing/accessory/armband/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "rqH" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -5; @@ -13374,13 +13772,33 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"rqY" = ( -/turf/open/floor/whitebluecorner/north, +"rrg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "rrl" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"rry" = ( +/obj/structure/largecrate, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"rsu" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) "rsS" = ( /obj/structure/girder, /obj/structure/prop/invuln/fire{ @@ -13393,6 +13811,10 @@ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"rsX" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "rta" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -13401,19 +13823,6 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"rtq" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"rts" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) "rtv" = ( /obj/item/tool/warning_cone{ pixel_x = -11; @@ -13429,13 +13838,16 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"rtK" = ( +"rup" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"ruO" = ( /obj/structure/largecrate/random, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 5 - }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/robotics) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "rwb" = ( /obj/structure/largecrate, /turf/open/gm/dirt, @@ -13446,6 +13858,10 @@ /obj/item/explosive/grenade/high_explosive/stick, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"rwi" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "rwm" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) @@ -13453,56 +13869,58 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"rwC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/robotics) "rxq" = ( /obj/item/tool/warning_cone{ pixel_x = -20 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"rxD" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" +"rxu" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"rzm" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"ryD" = ( +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" }, -/turf/open/floor/white, -/area/lv624/lazarus/research) -"rzX" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/asteroidfloor/north, -/area/lv624/ground/colony/telecomm/cargo) -"rzY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/item/tool/pen/clicky, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) +"rzl" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"rzZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "rAp" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"rAx" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"rBe" = ( +/obj/structure/bed/stool, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "rBg" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, @@ -13510,70 +13928,79 @@ "rBu" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_central_jungle) -"rBR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 10; - pixel_y = 6 +"rBD" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"rBT" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8; - pixel_y = 7 +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"rCh" = ( +/obj/structure/platform_decoration, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "rCp" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"rCz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/coatrack, +/obj/item/clothing/head/soft/sec/corp{ + pixel_y = 11; + pixel_x = -4 + }, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "rCB" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"rCP" = ( -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) "rCV" = ( /obj/structure/flora/bush, /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"rCX" = ( -/obj/structure/fence, -/turf/open/floor/warning/east, -/area/lv624/ground/barrens/containers) -"rCY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/lv624/lazarus/comms) -"rDl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) -"rDK" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "rDR" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"rEi" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) +"rEk" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "rEw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/north_nexus_road) +"rEC" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "rFc" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"rFe" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "rFr" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grassbeach/south, @@ -13581,39 +14008,18 @@ "rFN" = ( /turf/closed/wall, /area/lv624/lazarus/robotics) -"rGg" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/lv624/ground/colony/telecomm/sw_lz2) -"rGj" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/obj/item/tool/mop, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "rGO" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"rGU" = ( -/obj/structure/fence, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northeast, -/area/lv624/ground/river/central_river) -"rGX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "rHG" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"rHH" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) +"rIu" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "rIy" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/secure_storage) @@ -13624,9 +14030,6 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) -"rJA" = ( -/turf/open/floor/warning/west, -/area/lv624/lazarus/landing_zones/lz1) "rJG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) @@ -13634,65 +14037,45 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"rKf" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 +"rKl" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) +/obj/item/folder/black, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "rKP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"rKX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"rLa" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset{ - frequency = 1469; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio/headset{ - frequency = 1469 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "rLd" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"rLg" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/west_barrens) "rLo" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"rLq" = ( -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) +"rLr" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "rLB" = ( /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"rLI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "red"; - phone_id = "Marshal Office" - }, -/turf/open/floor/redcorner/west, -/area/lv624/lazarus/security) +"rLM" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "rLQ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, @@ -13716,22 +14099,23 @@ "rMX" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) -"rOo" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"rPu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/megaphone, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"rPQ" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/river/east_river) +"rNp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"rPP" = ( +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "rPT" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/barrens/south_eastern_barrens) +"rPY" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "rQH" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -13740,6 +14124,15 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"rRj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"rRG" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/jungle/west_jungle/ceiling) "rRZ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 11; @@ -13762,29 +14155,25 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"rUh" = ( +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "rUl" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"rUE" = ( +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "rUY" = ( /obj/structure/flora/tree/jungle/bigtreeBOT, /obj/structure/flora/bush/ausbushes/var3/leafybush, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"rVj" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) -"rVX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/barrens/east_barrens/ceiling) +"rWq" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) "rWv" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -13794,28 +14183,25 @@ /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"rWX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) +"rXb" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"rXe" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/river/east_river) "rXj" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"rXw" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) "rXz" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/east_river) -"rXR" = ( -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) "rXX" = ( /obj/structure/flora/grass/ice/both, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -13828,19 +14214,6 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"rYI" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Nexus Dome Command Quarter"; - req_access_txt = "100" - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) -"rZh" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "Secure Vault APC" - }, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) "rZn" = ( /obj/structure/flora/jungle/vines/light_1, /obj/effect/landmark/lv624/fog_blocker, @@ -13872,32 +14245,19 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"sbJ" = ( -/turf/open/floor/chapel/east, -/area/lv624/lazarus/chapel) -"scn" = ( -/obj/structure/flora/pottedplant, -/obj/structure/pipes/vents/pump, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"scO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/reagent_container/glass/fertilizer, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"sdn" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/snacks/fries, -/turf/open/floor/carpet/bcarpet07, -/area/lv624/ground/caves/north_central_caves) -"sdx" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ - dir = 8 +"sca" = ( +/obj/structure/flora/jungle/vines/light_3, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) +"sdw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Corporate Office"; + req_access_txt = "100" }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "sdO" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -13919,6 +14279,17 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"seL" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "seQ" = ( /obj/item/tool/warning_cone{ pixel_x = -8 @@ -13929,14 +14300,11 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"sfA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, +"sfI" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, /turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) +/area/lv624/lazarus/quartstorage) "sfO" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_east_jungle) @@ -13944,26 +14312,31 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"shy" = ( -/obj/structure/machinery/chem_master/condimaster, -/obj/structure/surface/table, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"sig" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/whitebluecorner/west, -/area/lv624/lazarus/medbay) +"sik" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "sit" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"siI" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/caves/south_west_caves) -"sjy" = ( -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +"siY" = ( +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"sjv" = ( +/obj/structure/surface/table, +/obj/item/poster, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "sjK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -13971,6 +14344,10 @@ "sjL" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) +"sjM" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "sks" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -13986,25 +14363,16 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"skN" = ( -/turf/open/floor/bot/north, +"skD" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz1) -"slt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 +"slS" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) -"slR" = ( -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/barrens/central_barrens) -"sma" = ( -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/sand_temple) "smd" = ( /turf/open/gm/grass/grassbeach/north, /area/lv624/lazarus/yggdrasil) @@ -14012,61 +14380,26 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) -"smO" = ( -/obj/structure/machinery/light, -/obj/structure/bed/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "sne" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"snE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"snH" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"soa" = ( -/turf/open/floor/loadingarea/north, -/area/lv624/lazarus/quartstorage) -"soF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"spe" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_x = -30 - }, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"snt" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"snL" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/obj/item/tool/mop, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "spj" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/west_river) -"spq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) "spX" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -14087,19 +14420,15 @@ "sqU" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"sre" = ( -/obj/structure/machinery/vending, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "srN" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"srZ" = ( -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) +"ssf" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "ssg" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, @@ -14112,19 +14441,19 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"stn" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/corporate_dome) -"stq" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"ssI" = ( +/obj/structure/flora/pottedplant, +/obj/structure/pipes/vents/pump, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"stp" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +/obj/item/bedsheet/hos, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "sts" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -14134,10 +14463,18 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/caves/sand_temple) -"stW" = ( -/obj/structure/bed/bedroll, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) +"suh" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) +"sul" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) +"suR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "svb" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -14147,27 +14484,35 @@ /obj/item/reagent_container/food/snacks/cheeseburger, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"svA" = ( -/obj/item/storage/box/beakers, -/obj/structure/surface/table, -/obj/structure/sign/safety/biohazard{ - pixel_x = -18 - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "svB" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"svG" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "swe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"swl" = ( +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "swD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/caves/north_central_caves) +"swL" = ( +/obj/structure/prop/mech/tesla_energy_relay{ + layer = 2.5 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "swO" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -14176,6 +14521,13 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) +"swW" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/river/central_river) "sxA" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -14187,10 +14539,6 @@ "syl" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/robotics) -"syP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "syU" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -14202,86 +14550,84 @@ /obj/structure/machinery/light, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"szp" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"szq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"szB" = ( -/turf/open/floor/warning/north, -/area/lv624/lazarus/landing_zones/lz1) "szD" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"szR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"sAt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whitegreencorner, -/area/lv624/lazarus/main_hall) -"sAe" = ( -/obj/structure/closet, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"sAo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"sAv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) +"sAL" = ( +/obj/item/device/flash, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/flashbang{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/redcorner, +/area/lv624/lazarus/security) "sAV" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"sBs" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"sBD" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, +"sBu" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, /turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"sCE" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 +"sBH" = ( +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz1) +"sCO" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"sCU" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "sDl" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grassbeach/west, /area/lv624/lazarus/yggdrasil) -"sDw" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"sDN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"sDI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/central_river) +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + name = "Warrior hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "sEi" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/barrens/east_barrens) @@ -14307,10 +14653,6 @@ /obj/structure/prop/brazier, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"sHk" = ( -/obj/item/clothing/head/militia, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "sHx" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -14320,34 +14662,42 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"sHO" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) "sIf" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/sleep_male) -"sJm" = ( -/obj/structure/bookcase, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/book/manual/security_space_law, -/turf/open/floor/whiteblue/northeast, -/area/lv624/lazarus/corporate_dome) +"sIQ" = ( +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_y = -28 + }, +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) +"sJi" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/shotgun/full, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -6 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"sJI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "sJM" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) +"sJX" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) "sKi" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"sKj" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/ground/river/central_river) "sKE" = ( /turf/closed/wall, /area/lv624/lazarus/chapel) @@ -14372,14 +14722,21 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"sLB" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ - dir = 4 +"sLa" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/east_river) +"sLC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/bedsheet/hos, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"sMF" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/east_barrens/ceiling) "sNb" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -14393,12 +14750,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"sOk" = ( -/obj/structure/surface/table, -/obj/item/book/manual/research_and_development, -/obj/item/cell/hyper, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "sOD" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) @@ -14406,33 +14757,28 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"sOP" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "sOR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/east_river) -"sOZ" = ( -/obj/structure/barricade/handrail/strata{ +"sPe" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"sPA" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) -"sPa" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"sPK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Storage Room" +/obj/structure/machinery/power/apc/no_power/north{ + name = "Unisex Bathrooms APC" }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "sPZ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, /turf/open/auto_turf/strata_grass/layer1, @@ -14445,6 +14791,11 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"sQw" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "sQz" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/central_caves) @@ -14459,12 +14810,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) -"sRx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) "sRG" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, @@ -14473,27 +14818,6 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"sRR" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"sSf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"sSo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "sSw" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -14510,23 +14834,31 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"sTG" = ( -/obj/item/pipe, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "sTK" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"sUd" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirt/desert1, -/area/lv624/ground/river/east_river) +"sTZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"sUq" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "sUS" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/river/east_river) +"sUV" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/central_barrens) "sVw" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -14538,20 +14870,6 @@ "sVL" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_jungle) -"sVW" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"sWe" = ( -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) "sWm" = ( /obj/effect/landmark/good_item, /turf/open/floor/plating, @@ -14564,10 +14882,13 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"sXr" = ( -/obj/structure/bed, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) +"sXx" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"sXC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "sXF" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/main_hall) @@ -14575,68 +14896,23 @@ /obj/item/tool/shovel, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"sXX" = ( -/obj/structure/machinery/conveyor{ - dir = 4 - }, -/turf/open/floor/loadingarea/east, -/area/lv624/lazarus/quartstorage) -"sYp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"sYQ" = ( -/turf/open/gm/dirt/desert0, -/area/lv624/ground/barrens/east_barrens) -"sYU" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"sZf" = ( -/obj/structure/surface/rack, -/obj/item/device/multitool, -/obj/item/device/multitool, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "sZs" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"taH" = ( -/turf/open/floor/whitebluecorner/east, -/area/lv624/lazarus/corporate_dome) -"taQ" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/apron, -/obj/item/tool/shovel, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"sZx" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "tba" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_central_jungle) -"tcL" = ( -/obj/structure/girder, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) -"tdy" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"tdG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/lmg, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"tbn" = ( +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) +"tbB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/robotics, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "tdL" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -14673,74 +14949,64 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"tfI" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +"tfl" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/platebot, -/area/lv624/lazarus/engineering) -"tgQ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"thm" = ( -/obj/item/stock_parts/scanning_module/phasic, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"tfo" = ( +/turf/open/floor/wood/wood_broken4, +/area/lv624/ground/caves/north_central_caves) +"tfE" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) +"ths" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "thv" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"thA" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"thE" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Hydroponics APC" }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"thH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, /turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"thC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/lv624/lazarus/medbay) +"thR" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "thU" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) -"tir" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "garage_lv"; - name = "\improper Garage" - }, -/turf/open/floor/dark, +"tiS" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"tjk" = ( +/turf/open/floor/whitebluecorner/north, /area/lv624/lazarus/corporate_dome) -"tiG" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"tja" = ( -/obj/structure/fence, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/ground/river/central_river) "tjo" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) @@ -14748,221 +15014,202 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"tjY" = ( +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"tka" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "red"; + phone_id = "Marshal Office" + }, +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) "tke" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"tkg" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) -"tkY" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"tlp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"tlH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) -"tlP" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"tlT" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/platebot, -/area/lv624/lazarus/engineering) -"tmT" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +"tkK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"tkY" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"tnh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"tnr" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"toj" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) "toI" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/south_nexus_road) -"toN" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/jungle/west_jungle/ceiling) -"tpc" = ( -/turf/open/floor/whiteyellow, +"tpB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"tpD" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"tpt" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "tpS" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"tpY" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +"tqd" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "tqT" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"tqX" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/airless/asteroidfloor/northeast, -/area/lv624/ground/barrens/north_east_barrens) -"tst" = ( -/turf/open/floor/asteroidfloor/north, +"trH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"trL" = ( +/turf/open/floor/asteroidwarning/northwest, /area/lv624/ground/colony/telecomm/sw_lz2) "tsJ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"tsY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Bathroom"; + req_access_txt = "100" + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"tsZ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"ttn" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) "tty" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) -"ttE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "ttG" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) -"tud" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"ttY" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) +/obj/item/weapon/twohanded/yautja/spear, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "tup" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"tuz" = ( -/turf/open/floor/redfull/northwest, -/area/lv624/lazarus/security) "tuR" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"tuX" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, +"tvK" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) +"tvN" = ( /obj/structure/window/reinforced{ - dir = 8; - health = 80 + dir = 4 }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ - dir = 4; - health = 80 + dir = 8 }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Warrior hide" +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"twb" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"tuZ" = ( -/obj/item/stool, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"tvq" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) -"tvK" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) +"twc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"twf" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"twZ" = ( +/obj/structure/fence, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/central_river) "txK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_tcomms_road) -"txW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/red/northeast, -/area/lv624/lazarus/security) -"tyj" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"tym" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"tyx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) "tyH" = ( /obj/effect/landmark/crap_item, /turf/open/gm/river, @@ -14978,19 +15225,19 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"tzV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"tAE" = ( -/obj/structure/window/reinforced{ - dir = 1 +"tAb" = ( +/obj/structure/inflatable, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"tAh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Mining Storage"; + req_access_txt = "100" }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "tAN" = ( /obj/structure/showcase{ color = "#95948B"; @@ -15034,13 +15281,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"tCN" = ( -/obj/structure/morgue/sarcophagus, -/obj/item/weapon/twohanded/yautja/glaive/damaged{ - name = "damaged war glaive" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) "tCQ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/carrotcakeslice, @@ -15050,58 +15290,23 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"tDa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/candle, -/turf/open/floor/chapel/north, -/area/lv624/lazarus/chapel) "tDe" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tDn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Corporate Liason Office" - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"tDB" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) "tEl" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"tEq" = ( -/obj/item/tool/minihoe{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "tEA" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"tED" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate, -/area/lv624/ground/river/central_river) -"tFB" = ( -/turf/open/floor/whitebluecorner/north, -/area/lv624/lazarus/medbay) +"tFe" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "tFF" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -15116,6 +15321,9 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) +"tFU" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "tFW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed, @@ -15126,37 +15334,33 @@ }, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"tGs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/hardhat{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) -"tHg" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/off{ - frequency = 1469 +"tGD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen, +/area/lv624/lazarus/main_hall) +"tHj" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/dark, +/turf/open/floor/delivery, /area/lv624/lazarus/comms) -"tHn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/medbay) -"tHt" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/loadingarea/west, -/area/lv624/lazarus/landing_zones/lz1) "tHB" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"tHC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"tIt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "tJC" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -15164,19 +15368,38 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"tJN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "tKs" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"tKt" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/jungle/west_jungle/ceiling) "tKE" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"tLk" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "tLo" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) +"tLp" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "tLC" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ pixel_x = 12; @@ -15184,20 +15407,26 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"tLH" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) "tMe" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"tMh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) "tMm" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"tMn" = ( +/obj/structure/bed/chair, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "tME" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, @@ -15220,14 +15449,9 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"tNL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/item/tool/crowbar, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"tNT" = ( +/turf/open/floor/whitegreencorner/west, +/area/lv624/lazarus/main_hall) "tOc" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -15236,6 +15460,10 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"tOv" = ( +/obj/structure/grille, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "tOA" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -9; @@ -15247,38 +15475,9 @@ /obj/effect/decal/cleanable/blood/gibs/xeno/limb, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tON" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"tPx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/whiteblue/east, +"tOP" = ( +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) -"tPE" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/river/central_river) -"tQG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"tQN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Freezer"; - req_access_txt = "100" - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) "tQV" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -15294,18 +15493,16 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"tRV" = ( -/obj/structure/largecrate/random, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"tRF" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "tSe" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"tSo" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "tSC" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -15328,66 +15525,37 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tTU" = ( -/obj/structure/machinery/light{ +"tTl" = ( +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) +"tUe" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"tUD" = ( -/obj/structure/machinery/door_control{ - id = "science_blast"; - name = "Science Wing Lockdown"; - pixel_x = 25 - }, /turf/open/floor/white, -/area/lv624/lazarus/research) -"tVa" = ( -/obj/structure/closet, -/obj/item/clothing/under/blackskirt, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/area/lv624/lazarus/main_hall) +"tUs" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"tUV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) "tVi" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/central_river) +"tVE" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) "tVR" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/east_barrens) -"tWc" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"tWg" = ( -/obj/item/weapon/sword{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "tWk" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/river, @@ -15395,21 +15563,6 @@ "tWv" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/east_barrens) -"tWI" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/structure/surface/rack, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"tWK" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "tWP" = ( /obj/structure/lz_sign/lazarus_sign{ layer = 4 @@ -15420,6 +15573,14 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) +"tXd" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "tXk" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, @@ -15428,12 +15589,34 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"tXD" = ( +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/medbay) +"tXF" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Quartermaster APC" + }, +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"tXG" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "tXR" = ( /obj/item/trash/cigbutt{ pixel_x = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"tYs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "tYv" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -15462,17 +15645,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"uab" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/cable_coil, -/obj/item/tool/screwdriver{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "uaq" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -15499,101 +15671,62 @@ /area/lv624/ground/jungle/east_jungle) "ubi" = ( /obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"ubM" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_jungle) -"uca" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/caves/sand_temple) -"ucr" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/lv624/lazarus/fitness) -"ucs" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grilledcheese, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"ucQ" = ( -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/lazarus/landing_zones/lz2) -"ucX" = ( -/obj/structure/holohoop, -/turf/open/floor/warnwhite/north, -/area/lv624/lazarus/fitness) -"udd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"udH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"ubY" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/whiteblue, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) -"udT" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"uet" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"ufc" = ( -/obj/structure/machinery/still, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"uca" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/caves/sand_temple) +"ucr" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv624/lazarus/fitness) +"ucQ" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/east, +/area/lv624/lazarus/landing_zones/lz2) +"ueB" = ( +/turf/open/floor/chapel, +/area/lv624/lazarus/chapel) +"ufe" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) "ufg" = ( /obj/structure/surface/rack, /obj/item/clothing/under/colonist, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"ufF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) "ufZ" = ( /mob/living/simple_animal/bat, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) -"ugj" = ( -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) -"ugv" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"ugk" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/central_river) +"ugC" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) "ugM" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -15604,22 +15737,39 @@ "ugW" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_east_caves) +"uhf" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "uhm" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"uht" = ( -/obj/structure/surface/table, -/turf/open/floor/vault2, -/area/lv624/lazarus/robotics) -"uik" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +"uhV" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"uhW" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = 7 }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"uia" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/megaphone, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"uip" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) "uiI" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -15634,11 +15784,28 @@ "uiN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) -"uje" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/candle, -/turf/open/floor/chapel/west, -/area/lv624/lazarus/chapel) +"uiY" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 26 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"ujq" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "ujE" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, @@ -15650,27 +15817,19 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"ukl" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 +"ukv" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "ukz" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"ulp" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/glowshroom, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) +"ukQ" = ( +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "ulr" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -15697,10 +15856,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"uma" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "umK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"umL" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/platebot, +/area/lv624/ground/barrens/east_barrens/ceiling) +"umM" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/central_river) +"unC" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) "unM" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -15711,10 +15892,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"uon" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/white, -/area/lv624/lazarus/research) "uoH" = ( /obj/structure/surface/table, /turf/open/floor/plating, @@ -15750,10 +15927,24 @@ "upT" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"upZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/binoculars, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"uqv" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/central_river) "uqA" = ( /obj/structure/cargo_container/ferret/right, /turf/open/floor, /area/lv624/ground/barrens/containers) +"uqI" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "uro" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/ground/colony/telecomm/cargo) @@ -15761,25 +15952,36 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) +"urV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "usf" = ( /obj/structure/largecrate/random, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"usj" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) +"ush" = ( +/obj/effect/landmark/crap_item, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "usx" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/river/east_river) +"usC" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"usH" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Nexus Dome Director's Quarters"; + req_access_txt = "100" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/hop) "uts" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -15795,20 +15997,25 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"uuf" = ( +"uug" = ( /obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 3 + dir = 4 }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) -"uuD" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"uux" = ( +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"uuz" = ( +/obj/structure/bookcase, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/atmospipes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "uvs" = ( /obj/item/stool, /turf/open/gm/dirt, @@ -15821,53 +16028,22 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"uvC" = ( -/obj/structure/largecrate/random, -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) "uvJ" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) -"uvO" = ( -/obj/structure/platform_decoration, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"uwb" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"uwh" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/weldingtool/hugetank, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "uxL" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"uyh" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/bot/north, -/area/lv624/ground/barrens/containers) "uyq" = ( /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"uyu" = ( -/obj/structure/fence, -/turf/open/floor/warning/east, -/area/lv624/ground/barrens/east_barrens) "uzf" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"uzk" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/redyellowfull, -/area/lv624/ground/barrens/west_barrens/ceiling) "uzr" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -15883,14 +16059,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"uzA" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 9 - }, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "uzT" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -15917,18 +16085,20 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_tcomms_road) -"uBd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/monitor, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 15 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"uBf" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "uBg" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) +"uCt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Corporate Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "uDh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/adv{ @@ -15942,15 +16112,29 @@ /obj/structure/flora/jungle/planttop1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"uDq" = ( +"uDv" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"uDB" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"uDE" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; dir = 1; - name = "\improper Robotics Dome"; + icon_state = "door_open"; + name = "\improper Storage Dome"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) +/turf/open/floor/white, +/area/lv624/lazarus/quartstorage) "uDS" = ( /obj/structure/cargo_container/wy/left, /turf/open/floor, @@ -15966,6 +16150,20 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) +"uEP" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"uEY" = ( +/obj/structure/device/broken_piano, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"uFt" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/south_west_caves) "uFR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -15996,62 +16194,35 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"uHA" = ( -/obj/structure/filingcabinet/security{ - desc = "A large cabinet with hard copy security records."; - name = "Security Records" +"uHz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"uIb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/redcorner/north, -/area/lv624/lazarus/security) +/obj/effect/landmark/good_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"uId" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "uIe" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"uIh" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) "uIj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"uIm" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_y = -30 - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) -"uIs" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood/wood_broken, -/area/lv624/ground/jungle/west_jungle/ceiling) -"uIL" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"uIM" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "uJr" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -16076,30 +16247,24 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"uLq" = ( -/obj/item/tool/pickaxe/jackhammer{ - desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; - force = 3; - name = "display jackhammer" - }, -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/lv624/lazarus/main_hall) -"uLN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"uLo" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_x = 30 }, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"uLu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"uLx" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "uLZ" = ( /obj/structure/surface/rack, /obj/item/storage/fancy/cigarettes/wypacket, @@ -16109,24 +16274,14 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"uMr" = ( -/obj/structure/bed/alien, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"uMx" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) +"uMC" = ( +/obj/structure/filingcabinet, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "uNa" = ( /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"uNn" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/shuttle/bright_red, -/area/lv624/lazarus/crashed_ship_containers) "uNz" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -16146,6 +16301,10 @@ /obj/item/spacecash/c10, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"uOn" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/white, +/area/lv624/lazarus/research) "uOy" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -16157,19 +16316,35 @@ "uOZ" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_nexus_road) +"uPh" = ( +/obj/item/stack/rods, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "uPJ" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"uQS" = ( -/obj/structure/machinery/vending/cola, +"uQj" = ( +/obj/item/tool/crowbar, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) +"uQG" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"uQT" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "uRi" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -16177,11 +16352,6 @@ "uRr" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"uRt" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) "uRY" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/machinery/door/poddoor/almayer{ @@ -16197,25 +16367,41 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"uSH" = ( +"uSC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_x = -28 + }, /turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) +/area/lv624/lazarus/corporate_dome) "uSU" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"uTn" = ( -/obj/structure/window/reinforced{ - dir = 8 +"uTe" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/red/northwest, -/area/lv624/lazarus/security) +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"uTg" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/carpet/bcarpet09, +/area/lv624/ground/caves/north_central_caves) +"uTC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy, +/obj/item/tool/pen/clicky, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "uTG" = ( /turf/closed/wall/sulaco, /area/lv624/ground/barrens/north_east_barrens) @@ -16223,18 +16409,26 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/north, /area/lv624/lazarus/yggdrasil) +"uTK" = ( +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"uUy" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "uUD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"uUL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) "uVT" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -16258,45 +16452,34 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"uWB" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/central_river) -"uWF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/tool/pen/clicky, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"uWI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/turf/open/floor/whiteblue/west, -/area/lv624/lazarus/corporate_dome) "uWM" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) -"uWO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/door/window/westright{ - layer = 2.9 - }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) "uWU" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/west_nexus_road) +"uXz" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) "uXS" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"uYc" = ( +/obj/structure/surface/table, +/obj/item/trash/snack_bowl{ + pixel_y = 9 + }, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "uYB" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, @@ -16304,6 +16487,23 @@ "uYE" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_east_jungle) +"uYO" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) +"uYU" = ( +/obj/structure/closet, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"uYX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "uZf" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/hunter_primary, @@ -16312,47 +16512,29 @@ "uZu" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) -"uZZ" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern, -/turf/open/floor/wood/wood_broken6, -/area/lv624/ground/caves/north_central_caves) -"vaF" = ( -/obj/structure/bed, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"vaV" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"uZU" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Lurker Hide" +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"vaA" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/central_barrens) +"vbt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vbO" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"vcl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/coatrack, -/obj/item/clothing/head/soft/sec/corp{ - pixel_y = 11; - pixel_x = -4 - }, -/turf/open/floor/whiteyellow/southeast, -/area/lv624/lazarus/corporate_dome) "vct" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, @@ -16365,13 +16547,28 @@ "vcR" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_east_jungle) +"vdm" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "vdz" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/east_river) -"veN" = ( -/turf/open/floor/whitebluecorner/west, -/area/lv624/lazarus/medbay) +"vdK" = ( +/obj/item/bedsheet/rd, +/obj/item/weapon/pole/fancy_cane, +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "veW" = ( /obj/item/ammo_magazine/rifle/l42a/abr40, /obj/structure/barricade/sandbags, @@ -16395,42 +16592,13 @@ "vgI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"vhi" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"viw" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 26 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) "viB" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"viO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "vja" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/north_nexus_road) -"vjD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/research) "vkv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_central_jungle) @@ -16468,24 +16636,17 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/east_river) -"vmC" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/lv624/ground/colony/telecomm/sw_lz2) "vmU" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) -"vnw" = ( -/obj/structure/safe/floor{ - name = "safe"; - spawnkey = 0 +"vnF" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"vnG" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "vnV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -16508,15 +16669,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"voL" = ( -/turf/open/floor/dark, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"vpa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Hydroponics" - }, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) "vpc" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/robotics) @@ -16530,27 +16682,19 @@ }, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"vpZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"vqp" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/river/east_river) +"vpy" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "vqx" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"vqB" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/turf/open/floor/vault2/west, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"vqU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vqW" = ( /obj/structure/bed/alien{ color = "#aba9a9" @@ -16560,47 +16704,30 @@ "vra" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_jungle) -"vrb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "vrg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_central_jungle) +"vrv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/central_barrens) "vrI" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"vrK" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/chocolatecakeslice, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "vsp" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"vsD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/gun/energy/yautja/plasma_caster{ - anchored = 1; - desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; - name = "damaged plasma caster" - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "vsT" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"vsV" = ( -/turf/open/gm/dirtgrassborder/desert3, -/area/lv624/ground/barrens/south_eastern_barrens) -"vtq" = ( -/turf/open/floor/plating/asteroidwarning/north, -/area/lv624/lazarus/landing_zones/lz2) -"vtv" = ( -/obj/structure/surface/table, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) "vtJ" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/south, @@ -16609,19 +16736,22 @@ /obj/item/tank/oxygen/yellow, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"vtU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vui" = ( /obj/structure/largecrate/random, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"vuJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/fitness) +"vvl" = ( +/obj/structure/largecrate, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "vvm" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/heavy, @@ -16642,9 +16772,25 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/river/central_river) +"vwq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vwE" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_central_jungle) +"vwY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/tool/crowbar, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "vxL" = ( /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) @@ -16680,40 +16826,33 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"vzR" = ( -/obj/structure/bed/chair{ - dir = 8 +"vzM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Corporate Liason Office" }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "vzS" = ( /obj/structure/bed/alien{ color = "#aba9a9" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"vAi" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/lv624/lazarus/corporate_dome) -"vBa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/whiteblue/southeast, -/area/lv624/lazarus/main_hall) -"vBb" = ( -/obj/structure/bed, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +"vAD" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"vBh" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"vBe" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/snacks/enchiladas, -/turf/open/floor/carpet/bcarpet02, -/area/lv624/ground/caves/north_central_caves) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "vBD" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -16734,20 +16873,6 @@ "vBH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"vBP" = ( -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz1) -"vBT" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -5 - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "vBY" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/south, @@ -16759,6 +16884,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) +"vCg" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "vDx" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -16766,47 +16903,38 @@ "vDH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) -"vEg" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Central Hallway APC" +"vDL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/whiteyellow/northwest, +/area/lv624/lazarus/corporate_dome) +"vEm" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vEy" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"vES" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor/grimy, -/area/lv624/lazarus/captain) -"vEU" = ( -/obj/item/clothing/under/shorts/black{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/barber/west, -/area/lv624/lazarus/fitness) -"vFv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "vFz" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) +"vFC" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/ground/river/central_river) +"vFN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/red, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "vFX" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -16817,10 +16945,19 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"vGC" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/obj/item/device/multitool, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "vHb" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) +"vHD" = ( +/turf/open/floor/warnwhite/northwest, +/area/lv624/lazarus/fitness) "vHT" = ( /obj/item/weapon/broken_bottle, /obj/effect/landmark/lv624/fog_blocker, @@ -16840,11 +16977,9 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"vII" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"vIE" = ( +/turf/open/floor/plating/asteroidwarning/southeast, +/area/lv624/lazarus/landing_zones/lz2) "vJq" = ( /obj/effect/decal/grass_overlay/grass1/inner, /obj/structure/flora/bush/ausbushes/ausbush, @@ -16858,16 +16993,11 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"vKU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"vLc" = ( -/obj/structure/grille, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) +"vLg" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "vLo" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -16886,10 +17016,6 @@ /obj/structure/surface/rack, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"vLU" = ( -/obj/structure/closet/crate/secure/hydrosec, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) "vMj" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ id = "colony_sec_armory"; @@ -16915,18 +17041,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"vNg" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/lazarus/robotics) -"vNh" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "vNk" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_2, @@ -16940,25 +17054,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"vOc" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"vOo" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7 - }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/wood/wood_broken4, -/area/lv624/ground/caves/north_central_caves) "vPJ" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -16977,14 +17072,24 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) +"vQt" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/reagent_container/glass/bucket{ + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "vQz" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) -"vRf" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"vQW" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "vRi" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/flora/jungle/vines/light_1, @@ -17002,68 +17107,51 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"vTz" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/grimy, -/area/lv624/lazarus/hop) -"vUg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 +"vTM" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whiteyellow/northeast, -/area/lv624/lazarus/corporate_dome) +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "vUo" = ( /obj/item/stool, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"vUL" = ( -/obj/structure/largecrate, -/turf/open/floor/bot/north, -/area/lv624/lazarus/landing_zones/lz1) +"vUB" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"vUX" = ( +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) "vVx" = ( /turf/closed/wall/wood, /area/lv624/ground/caves/north_central_caves) -"vVA" = ( -/obj/structure/machinery/power/apc/no_power/north{ - name = "Medbay APC" - }, -/turf/open/floor/whiteblue/north, -/area/lv624/lazarus/medbay) -"vVE" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate, -/area/lv624/lazarus/engineering) "vWv" = ( /turf/open/gm/river, /area/lv624/ground/caves/sand_temple) -"vWw" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) "vXT" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) -"vYg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"vYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"vXX" = ( +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) +"vYy" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/grille, -/turf/open/floor/plating/warnplate/west, -/area/lv624/ground/river/west_river) -"vYw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vYz" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -17074,129 +17162,80 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"vZN" = ( -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 +"vYQ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"vZk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/barrens/central_barrens) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"vZK" = ( +/obj/structure/girder, +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) "vZZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_west_jungle) -"waq" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/airless/asteroidfloor/northeast, -/area/lv624/ground/barrens/north_east_barrens) -"waB" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"wbj" = ( -/obj/structure/fence, -/turf/open/floor/warning/northeast, -/area/lv624/ground/barrens/containers) "wbp" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"wbN" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_central_caves) -"wbQ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/north_east_jungle) -"wcu" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"wcD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"wbq" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"wbx" = ( +/turf/open/gm/dirtgrassborder/desert, +/area/lv624/ground/barrens/south_eastern_barrens) +"wbN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/obj/item/stack/sheet/animalhide/xeno{ - color = "#524e4e"; - desc = "An old hide from a fearsome creature."; - name = "hunter hide" +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_central_caves) +"wbQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) -"wcI" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"wdK" = ( -/turf/open/floor/whitebluecorner/west, -/area/lv624/lazarus/corporate_dome) -"wea" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" +/turf/open/gm/grass/grass2, +/area/lv624/ground/jungle/north_east_jungle) +"wci" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wcY" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"wdJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "weT" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"weW" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) "wfE" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"wfK" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = -7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) "wgg" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"wgl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "wgv" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -17206,51 +17245,33 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/east_river) -"whl" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) -"whL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/no_power/north{ - name = "Geothermal APC" - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) +"why" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "whT" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"wie" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/barrens/west_barrens) "wiV" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"wju" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "wjK" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"wkz" = ( -/obj/structure/grille, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating/warnplate/east, -/area/lv624/ground/river/east_river) +"wky" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "wkZ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, @@ -17261,15 +17282,19 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"wmd" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"wmf" = ( -/obj/structure/cargo_container/seegson/mid, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage/outdoors) +"wlH" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/west_caves) +"wmG" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "wnx" = ( /obj/structure/prop/brazier/campfire, /turf/open/gm/dirt, @@ -17291,22 +17316,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"wpe" = ( -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/machinery/light{ - dir = 1 +"woV" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"woX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"wpm" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/sand_temple) "wpq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall, /area/lv624/lazarus/quart) +"wpO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "wpT" = ( /obj/structure/bed/alien, /turf/open/floor/wood, @@ -17319,15 +17354,22 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"wqW" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/loadout/clf, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"wro" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "wrp" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"wrt" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/science, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "wrz" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -17356,6 +17398,9 @@ "wtn" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) +"wtt" = ( +/turf/open/floor/warnwhite/east, +/area/lv624/lazarus/fitness) "wtF" = ( /obj/structure/safe{ spawnkey = 0 @@ -17366,6 +17411,9 @@ /obj/item/cell/high, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"wtU" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/river/east_river) "wtV" = ( /obj/item/reagent_container/food/snacks/wy_chips/pepper, /obj/structure/surface/table/woodentable/poor, @@ -17380,40 +17428,38 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"wuB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/research) "wuE" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"wvt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor/whiteblue/northwest, -/area/lv624/lazarus/corporate_dome) "wvv" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"wvC" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "wvN" = ( /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"wwn" = ( -/turf/open/floor/dark, -/area/lv624/lazarus/comms) "wwI" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/west_barrens) @@ -17421,39 +17467,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/rock/brown, /area/lv624/ground/jungle/west_jungle) -"wxo" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) -"wxL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) -"wxV" = ( -/obj/structure/flora/jungle/vines/light_2, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/yggdrasil) "wxX" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"wyb" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/red/east, -/area/lv624/lazarus/security) "wzq" = ( /obj/structure/flora/jungle/planttop1, /turf/closed/wall, @@ -17496,6 +17513,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"wBd" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "wBK" = ( /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) @@ -17521,35 +17542,17 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"wEn" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) +"wEp" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) "wED" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"wFz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteblue/northeast, +"wEM" = ( +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) -"wGi" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, -/obj/effect/landmark/crap_item, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) -"wGk" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/southeast, -/area/lv624/lazarus/landing_zones/lz1) "wGF" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/plating, @@ -17561,51 +17564,41 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"wHM" = ( +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"wHS" = ( +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "wHW" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/rock/brown, /area/lv624/ground/river/west_river) +"wHY" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel{ + pixel_y = 12 + }, +/obj/structure/machinery/light, +/obj/item/clothing/suit/storage/labcoat/researcher, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "wIn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_jungle) -"wIx" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) -"wIE" = ( -/obj/structure/machinery/bot/mulebot{ - auto_pickup = 0; - auto_return = 0; - health = 1; - on = 0 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/lazarus/quart) +"wIB" = ( +/turf/open/floor/warnwhite/southwest, +/area/lv624/lazarus/fitness) "wJi" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"wJp" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/barrens/west_barrens) "wJt" = ( /obj/item/fishing_pole{ anchored = 1 }, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/caves/north_central_caves) -"wJD" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/quartstorage) "wKl" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -17623,14 +17616,41 @@ /obj/structure/flora/jungle/planttop1, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"wKy" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "wKI" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_jungle) +"wKZ" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -12 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"wLI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"wLJ" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "wLU" = ( /obj/structure/surface/rack, /obj/item/ore/silver, @@ -17640,14 +17660,13 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) -"wMx" = ( -/obj/structure/surface/table, -/obj/item/trash/tray, +"wML" = ( +/obj/structure/target/syndicate, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"wNd" = ( /turf/open/floor/barber/west, -/area/lv624/lazarus/kitchen) -"wMT" = ( -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/south_west_caves) +/area/lv624/lazarus/fitness) "wNw" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -17655,6 +17674,17 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) +"wNC" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/baseballbat/metal, +/obj/item/clothing/under/colonist, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"wOg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "wOs" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -17663,6 +17693,9 @@ "wOA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"wOF" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/west_caves) "wOJ" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -17673,14 +17706,27 @@ "wPx" = ( /turf/open/floor, /area/lv624/lazarus/main_hall) -"wQv" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"wPG" = ( +/turf/open/floor/warningcorner/north, +/area/lv624/lazarus/landing_zones/lz1) +"wPX" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"wQn" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 26 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"wQw" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "wQM" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirtgrassborder/west, @@ -17696,17 +17742,33 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"wRA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/main_hall) +"wSJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) "wSP" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/lazarus/landing_zones/lz2) -"wTf" = ( -/turf/open/gm/dirt/desert3, -/area/lv624/ground/caves/west_caves) +"wSU" = ( +/obj/item/clothing/under/shorts/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"wTa" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_id = "Medbay" + }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "wTl" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/effect/landmark/lv624/fog_blocker, @@ -17722,6 +17784,17 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"wTT" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "wUB" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_west_jungle) @@ -17734,34 +17807,30 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"wUY" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/green/northwest, -/area/lv624/lazarus/hydroponics) +"wVW" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirt/desert1, +/area/lv624/ground/river/east_river) "wWl" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"wWm" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning, -/area/lv624/lazarus/landing_zones/lz2) "wWn" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/west, /area/lv624/ground/river/east_river) -"wWU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 +"wWr" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 }, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/sand_temple) -"wXA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"wXl" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/white, /area/lv624/lazarus/main_hall) @@ -17769,18 +17838,21 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"wYU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Male Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"wYY" = ( +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "wZx" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"wZy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "wZL" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/south, @@ -17801,9 +17873,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"xaL" = ( -/turf/open/floor/plating/platebotc, -/area/lv624/lazarus/quartstorage) "xba" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -17813,65 +17882,40 @@ "xbz" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_east_caves) -"xbA" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) +"xbW" = ( +/turf/open/floor/plating/asteroidwarning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "xbY" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"xci" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"xdV" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/warnplate/northwest, -/area/lv624/ground/barrens/central_barrens) -"xen" = ( +"xcf" = ( /obj/structure/surface/rack, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) -"xeM" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"xch" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -32 }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/effect/spawner/random/powercell, +/obj/item/device/assembly/infra, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"xdK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Hydroponics" }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"xeX" = ( +/obj/structure/machinery/vending, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "xfl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) @@ -17879,10 +17923,10 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"xfv" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/warning/east, -/area/lv624/lazarus/landing_zones/lz2) +"xfY" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "xgm" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -17898,46 +17942,48 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"xgE" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "xgF" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"xgO" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/southwest, -/area/lv624/lazarus/landing_zones/lz2) "xin" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"xiC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"xiJ" = ( +/obj/item/clothing/under/chainshirt/hunter, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) -"xjr" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/warning/northwest, -/area/lv624/lazarus/landing_zones/lz1) -"xkq" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"xjK" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) "xky" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"xlz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burrito, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "xlC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -17945,21 +17991,41 @@ "xlJ" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/landing_zones/lz2) +"xlT" = ( +/obj/structure/bed, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "xlU" = ( /obj/structure/closet/bodybag, /obj/effect/landmark/corpsespawner/clf, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"xnj" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/whiteyellow/east, -/area/lv624/lazarus/corporate_dome) +"xmn" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = -4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "xnz" = ( /obj/structure/prop/dam/truck{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"xnC" = ( +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "xpb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -17968,34 +18034,11 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"xpi" = ( -/turf/open/gm/dirt/desert2, -/area/lv624/ground/barrens/central_barrens) -"xpn" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/bluecorner, -/area/lv624/lazarus/sleep_male) -"xpt" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/bar, -/area/lv624/lazarus/kitchen) "xpM" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"xpS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Female Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) "xpY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -18007,59 +18050,50 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"xrs" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/asteroidwarning/east, -/area/lv624/ground/colony/telecomm/sw_lz2) +"xrC" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "xso" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"xsJ" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/cult, -/area/lv624/lazarus/armory) -"xsO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) -"xsR" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/mime, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) -"xtq" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +"xto" = ( +/obj/item/tool/minihoe{ + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "xtX" = ( /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ name = "\improper Strange Temple" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"xuu" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "xuI" = ( /obj/structure/largecrate/black_market/clf_supplies, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"xvL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Bathroom"; - req_access_txt = "100" - }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/toilet) "xvU" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"xwk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "xws" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/south, @@ -18068,47 +18102,39 @@ /obj/structure/fence, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"xwH" = ( -/obj/item/clothing/under/shorts/blue, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"xxg" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"xxA" = ( -/obj/structure/machinery/vending/snack, +"xxH" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/corporate_dome) -"xyb" = ( -/obj/structure/closet, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"xxP" = ( +/obj/structure/bookcase, +/obj/item/bananapeel, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"xyn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/shoes/centcom, -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "xyG" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"xyH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "xyJ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_west, @@ -18121,21 +18147,10 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"xzO" = ( -/turf/open/gm/dirt/desert1, -/area/lv624/ground/caves/south_west_caves) "xzQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"xAl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "xAZ" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/incendiary/molotov{ @@ -18143,36 +18158,23 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"xBf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"xBk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/whitepurple/northeast, -/area/lv624/lazarus/research) "xBp" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"xBA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) +"xBU" = ( +/turf/open/floor/red/southwest, +/area/lv624/lazarus/security) "xCo" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"xCI" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz1) "xCM" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -18198,24 +18200,11 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"xEw" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/reactor/colony{ - fail_rate = 5 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/engineering) -"xEC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"xEU" = ( +/obj/structure/prop/mech/armor_booster, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "xFB" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor, @@ -18228,28 +18217,32 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) +"xGn" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "xGC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/caves/north_central_caves) -"xGV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/meatballsoup, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) -"xHp" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/landmark/monkey_spawn, -/obj/structure/machinery/light{ - dir = 4 - }, +"xGP" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/freezerfloor, -/area/lv624/lazarus/research) +/area/lv624/lazarus/kitchen) "xHs" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) +"xHx" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) +"xHy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/box/matches, +/obj/item/tool/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "xHz" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -18267,10 +18260,16 @@ /obj/item/device/aicard, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"xJq" = ( -/obj/item/tool/soap, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) +"xIV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"xJs" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) "xJB" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -18279,6 +18278,16 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_central_jungle) +"xKr" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "xKy" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -18297,40 +18306,32 @@ /obj/item/bananapeel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"xMy" = ( -/obj/structure/bed/chair, -/turf/open/floor/white, -/area/lv624/lazarus/main_hall) +"xMq" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "xMA" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"xMX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken6, -/area/lv624/lazarus/hop) "xNj" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"xNx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "xNz" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"xNQ" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "xNX" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, @@ -18341,14 +18342,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"xOR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/corporate_dome) "xOT" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -18359,6 +18352,25 @@ "xPe" = ( /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"xPn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"xPw" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) +"xPB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "xQe" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -18368,17 +18380,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"xQh" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/repair_droid{ - layer = 2; - pixel_y = -10 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "xQn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -18393,14 +18394,6 @@ "xRe" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/east_river) -"xRf" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/plating/platebot, -/area/lv624/lazarus/robotics) "xRl" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/kitchen) @@ -18416,6 +18409,9 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"xSW" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/medbay) "xTp" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, @@ -18428,21 +18424,20 @@ /obj/item/stool, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"xUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/computer/telecomms/traffic{ - layer = 3.1; - pixel_y = 16 - }, -/obj/structure/bed/chair/office/light{ - dir = 1; - layer = 3.2 +"xTL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"xUp" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"xUB" = ( +/obj/structure/target, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "xUI" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -18454,12 +18449,9 @@ "xVp" = ( /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"xVu" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +"xVs" = ( +/turf/open/floor/plating/asteroidwarning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "xVK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -18475,19 +18467,14 @@ "xWN" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) -"xXk" = ( -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/robotics) -"xXT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"xWU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/obj/effect/landmark/crap_item, -/turf/open/floor/bar, -/area/lv624/lazarus/canteen) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "xXU" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -5; @@ -18498,6 +18485,10 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"xYe" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) "xYf" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -18512,6 +18503,11 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"xYI" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "xYP" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -18519,26 +18515,10 @@ "xYV" = ( /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"xZs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Corporate Office"; - req_access_txt = "100" - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) "xZL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"xZP" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating/warnplate/north, -/area/lv624/ground/barrens/east_barrens/ceiling) "yap" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, @@ -18575,6 +18555,19 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"ycp" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"ycF" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "ycJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -18597,13 +18590,10 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"ydl" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 - }, -/turf/open/floor/white, -/area/lv624/lazarus/corporate_dome) +"ycZ" = ( +/obj/structure/bed/chair, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "ydr" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -18614,45 +18604,58 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"ydN" = ( +/obj/structure/fence, +/turf/open/floor/warning/northwest, +/area/lv624/ground/barrens/containers) "yep" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"yew" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/whitepurplecorner/east, -/area/lv624/lazarus/fitness) -"yfL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/warnplate/west, -/area/lv624/lazarus/robotics) -"yfR" = ( -/obj/structure/kitchenspike, -/obj/structure/machinery/light/small{ - dir = 8 +"yfo" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/freezerfloor, -/area/lv624/lazarus/kitchen) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "yfX" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"ygb" = ( -/turf/open/floor/whiteblue/southwest, -/area/lv624/lazarus/medbay) +"ygG" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"yhb" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/item/clothing/under/colonist, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "yhs" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/sleep_male) "yhx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/north_central_caves) -"yhG" = ( -/obj/structure/prop/mech/parts/chassis/gygax, -/turf/open/floor/vault2/west, -/area/lv624/lazarus/robotics) +"yhJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "yid" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -18666,36 +18669,36 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"yiQ" = ( -/obj/structure/bed/alien, -/obj/item/clothing/yautja_cape, -/turf/open/floor/cult, -/area/lv624/ground/caves/south_west_caves) "yiY" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"yju" = ( -/turf/open/floor/warnwhite/east, -/area/lv624/lazarus/fitness) -"yjT" = ( -/obj/structure/largecrate/random, -/turf/open/floor/loadingarea/east, -/area/lv624/lazarus/quartstorage) +"yjq" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "yjV" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"yjY" = ( +/turf/open/floor/whiteyellow/north, +/area/lv624/lazarus/main_hall) +"yjZ" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/west_caves) "yke" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"ykO" = ( -/turf/open/floor/whitegreen, -/area/lv624/lazarus/main_hall) +"ykv" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/turf/open/floor/carpet/bcarpet01, +/area/lv624/ground/caves/north_central_caves) "ylf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -18704,9 +18707,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/river/east_river) -"ylV" = ( -/turf/open/floor/purple/northwest, -/area/lv624/lazarus/sleep_female) (1,1,1) = {" pvT @@ -19816,7 +19816,7 @@ szD oFP fds fds -pvO +kWw fds gUP shg @@ -19931,7 +19931,7 @@ cSb cSb mlw mlw -quj +yjZ cSb cSb cSb @@ -20263,11 +20263,11 @@ oEm oFP oFP wfE -aQx +cCl bLa -vhi -vhi -aQx +fMC +fMC +cCl fds vpn sjK @@ -20392,16 +20392,16 @@ cSb prG ooz ooz -uMr -pxp -uMr +pUL +pws +pUL ooz -oRH -lVY -jvo -dGO -uwb -pxp +gsy +aZJ +uPh +xiJ +eXr +pws ooz ooz ooz @@ -20487,9 +20487,9 @@ sjK shg esf fds -rKf -vhi -vhi +uDB +fMC +fMC bLa ulF fds @@ -20605,30 +20605,30 @@ kzX mkc rhK mlw -quj +yjZ mlw mlw -nvU +kfA uvs mlw iHB mlw hap -rHH -pYX -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp +bEZ +bFk +pws +pws +pws +pws +pws +pws +pws +pws +pws +pws +pws +pws +pws ooz prG prG @@ -20711,11 +20711,11 @@ oTT miz pXJ hnA -bCO -vhi +dsr +fMC lpV bLa -vhi +fMC fds ksC uRr @@ -20816,9 +20816,9 @@ cSb cSb cSb mlw -nvU +kfA mlw -wTf +cWW mlw mlw xHz @@ -20838,21 +20838,21 @@ mlw hMS kqV mlw -rHH -pxp -pnD -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -mym -pxp -mym +bEZ +pws +bWn +pws +pws +pws +pws +pws +pws +pws +pws +pws +evs +pws +evs ooz prG prG @@ -20864,7 +20864,7 @@ cwz prG prG prG -nIs +uFt cwz prG prG @@ -20935,10 +20935,10 @@ shg miz pom hnA -iup +wWr jUM -vhi -vhi +fMC +fMC bLa bee lqD @@ -21062,25 +21062,25 @@ mlw mlw qCp mlw -rHH -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -inE -qQJ -quk +bEZ +pws +pws +pws +pws +pws +pws +pws +pws +pws +pws +pws +bWk +sJI +jaO ooz prG cwz -qim +cNL cwz cwz cwz @@ -21159,10 +21159,10 @@ sjK mIq djO fds -aQx -vhi -vhi -vhi +cCl +fMC +fMC +fMC bLa fds kLF @@ -21282,25 +21282,25 @@ mlw cSb elH mlw -quj +yjZ dLa lmg cSb -rHH -pxp -pYX -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -tWc -qQJ -wxo +bEZ +pws +bFk +pws +pws +pws +pws +pws +pws +pws +pws +pws +xgE +sJI +oqA ooz prG cwz @@ -21383,11 +21383,11 @@ rKe oFP oFP fds -uIM -vhi +oJC +fMC bLa -wKy -aQx +uhV +cCl wfE wBP frJ @@ -21512,19 +21512,19 @@ hiv prG ooz ooz -pxp -yiQ -pxp +pws +fbH +pws ooz -pxp -pxp -pxp -pxp -pxp -pxp -nVl -pxp -nVl +pws +pws +pws +pws +pws +pws +qnn +pws +qnn ooz prG cwz @@ -21537,7 +21537,7 @@ cwz cwz cwz cwz -xzO +iZO cwz prG prG @@ -21609,9 +21609,9 @@ tNA fds bee bLa -vhi -vhi -hoi +fMC +fMC +cZG wfE ugM uRr @@ -21740,15 +21740,15 @@ ooz ooz ooz ooz -uab -vsD -uwh -pxp -pxp -pxp -pxp -pxp -pxp +hYL +jPd +emA +pws +pws +pws +pws +pws +pws ooz prG cwz @@ -21832,8 +21832,8 @@ uRr shg fds dZn -uIM -aQx +oJC +cCl fds dZn fds @@ -21933,7 +21933,7 @@ cSb cSb cSb cSb -bXh +wlH mlw mlw mlw @@ -21948,7 +21948,7 @@ cSb mlw mlw mlw -nvU +kfA mlw mlw cSb @@ -22157,7 +22157,7 @@ mlw cSb cSb mlw -nvU +kfA mlw mlw mlw @@ -22200,7 +22200,7 @@ prG prG prG cwz -nIs +uFt cwz prG prG @@ -22380,10 +22380,10 @@ mlw mlw cSb cSb -bNo +wOF mlw mlw -bXh +wlH mlw bNA cML @@ -22419,7 +22419,7 @@ cwz cwz cwz cwz -wMT +pHF cwz cwz cwz @@ -22641,7 +22641,7 @@ cwz cwz cwz cwz -nIs +uFt cwz cwz cwz @@ -22649,14 +22649,14 @@ cwz cwz cwz cwz -xzO +iZO cwz prG -wMT +pHF cwz cwz cwz -qim +cNL cwz cwz prG @@ -22828,7 +22828,7 @@ mlw mlw mlw mlw -nvU +kfA mlw mlw mlw @@ -22841,8 +22841,8 @@ cML cML jAg mlw -nvU -quj +kfA +yjZ mlw cSb cSb @@ -23104,9 +23104,9 @@ prG cwz cwz cwz -siI -siI -wMT +qsQ +qsQ +pHF cwz prG prG @@ -23318,7 +23318,7 @@ xCM cwz cwz cwz -qim +cNL cwz cwz cwz @@ -23767,7 +23767,7 @@ hKF iHI xCM cwz -qim +cNL cwz cwz cwz @@ -24022,7 +24022,7 @@ tKE lvd gSw mQA -koN +tKt uyq dSU mQA @@ -24050,9 +24050,9 @@ beo hGN tZc tZc -kVk -bKL -xgO +sca +dWp +aoo nLe tZc hGN @@ -24200,7 +24200,7 @@ prG prG prG cwz -qim +cNL cwz cwz wvv @@ -24226,7 +24226,7 @@ prG prG cwz cwz -xzO +iZO cwz prG prG @@ -24248,7 +24248,7 @@ gSw mQA jfv uyq -toN +rRG mQA byJ dsB @@ -24442,8 +24442,8 @@ prG prG prG prG -siI -nIs +qsQ +uFt prG prG prG @@ -24498,9 +24498,9 @@ tZc beo chW oTq -dPu -xfv -qbD +rEk +jag +rqr oTq chW beo @@ -24652,7 +24652,7 @@ prG prG prG cwz -wMT +pHF cwz amX hPw @@ -24666,7 +24666,7 @@ prG prG prG cwz -qim +cNL cwz cwz prG @@ -24741,7 +24741,7 @@ uRr uRr uRr qec -iIc +mbL lnn lFx lwZ @@ -24877,7 +24877,7 @@ cwz cwz cwz cwz -xzO +iZO amX hPw hPw @@ -24919,7 +24919,7 @@ byJ byJ mQA tEl -uIs +gXM uyq mQA byJ @@ -24927,7 +24927,7 @@ byJ byJ beo cuy -oVi +dVc eHd eHd eHd @@ -24941,7 +24941,7 @@ eHd eHd eHd eHd -oVi +dVc eHd eHd eHd @@ -25097,7 +25097,7 @@ cwz cwz cwz cwz -xzO +iZO cwz cwz sFn @@ -25117,7 +25117,7 @@ cwz cwz cwz cwz -xzO +iZO cwz cwz cwz @@ -25147,38 +25147,38 @@ lIR mQA mQA byJ -vmC -fhS +trL +dAq beo oTq ndU -vtq -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -kMS -oVi +kMw +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +fKm +xbW +dVc chW oFP uRr @@ -25315,7 +25315,7 @@ pNu prG prG cwz -wMT +pHF cwz cwz cwz @@ -25369,14 +25369,14 @@ nQl nQl nQl nQl -vmC -fhS -tst -lzr +trL +dAq +ckm +jrI beo oTq ndU -vtq +kMw nEp vkI tCe @@ -25401,7 +25401,7 @@ mwi vkI nEp nEp -eOd +pAn chW chW mIq @@ -25566,7 +25566,7 @@ cwz cwz cwz cwz -nIs +uFt cwz cwz cwz @@ -25593,14 +25593,14 @@ lSX nQl nQl nQl -lXy -tst -tst -tst +pME +ckm +ckm +ckm beo cuy ndU -vtq +kMw pnC nEp nEp @@ -25625,7 +25625,7 @@ nEp nEp jeG nEp -eOd +pAn chW beo wWl @@ -25817,14 +25817,14 @@ nQl nQl nQl nQl -rGg -xrs +nii +iRV xlJ beo moU cuy ndU -vtq +kMw qRO nEp nEp @@ -25849,7 +25849,7 @@ enI nEp aHO nEp -eOd +pAn chW beo qlO @@ -25995,7 +25995,7 @@ kCo gDZ hPw ubi -nIs +uFt wvv prG prG @@ -26009,7 +26009,7 @@ cwz cwz cwz cwz -nIs +uFt cwz kIL cwz @@ -26048,7 +26048,7 @@ beo tZc oTq ndU -vtq +kMw rAp nEp nEp @@ -26073,7 +26073,7 @@ nEp nEp fhu nEp -eOd +pAn chW chW oTq @@ -26229,7 +26229,7 @@ cwz cwz cwz cwz -wMT +pHF cwz cwz cwz @@ -26239,7 +26239,7 @@ cwz cwz cwz cwz -qim +cNL cwz prG prG @@ -26272,7 +26272,7 @@ beo beo oTq ndU -vtq +kMw uYB nEp nEp @@ -26297,17 +26297,17 @@ nEp nEp aFE nEp -eOd -dCy +pAn +dhu iXY -deV +nFm sjK qec uRr rIy rIy rIy -iTR +ovM mAx nHw mAx @@ -26443,10 +26443,10 @@ kCo kCo hbo ubi -qim +cNL cwz cwz -nIs +uFt cwz cwz cwz @@ -26496,7 +26496,7 @@ beo beo cuy ndU -vtq +kMw pnC nEp nEp @@ -26521,10 +26521,10 @@ nEp nEp jeG nEp -eOd -plP +pAn +nKn jQR -jCw +xYe shg sjK uRr @@ -26659,7 +26659,7 @@ pNu prG prG prG -nIs +uFt cwz amX hPw @@ -26672,7 +26672,7 @@ cwz cwz cwz cwz -nIs +uFt cwz cwz cwz @@ -26720,7 +26720,7 @@ beo oTq cuy ndU -vtq +kMw qRO nEp nEp @@ -26745,10 +26745,10 @@ nEp nEp aHO nEp -eOd -kaB +pAn +aZV qne -dqk +iTQ sjK uRr uRr @@ -26900,7 +26900,7 @@ cwz cwz cwz cwz -nIs +uFt cwz cwz cwz @@ -26944,7 +26944,7 @@ beo tZc oTq ndU -vtq +kMw rAp nEp nEp @@ -26969,10 +26969,10 @@ nEp nEp fhu nEp -eOd -plP +pAn +nKn esi -wWm +xHx nDn uRr jrx @@ -27119,7 +27119,7 @@ hPw xDW cwz cwz -xzO +iZO cwz cwz cwz @@ -27168,7 +27168,7 @@ beo beo oTq ndU -vtq +kMw uYB nEp nEp @@ -27193,10 +27193,10 @@ nEp nEp aFE nEp -eOd -eVE +pAn +ukQ chW -qbD +rqr sjK uRr uRr @@ -27330,7 +27330,7 @@ pNu prG prG cwz -xzO +iZO cwz cwz cwz @@ -27392,7 +27392,7 @@ beo oTq cuy ndU -vtq +kMw pnC nEp nEp @@ -27417,7 +27417,7 @@ nEp nEp jeG nEp -eOd +pAn chW chW uIe @@ -27616,7 +27616,7 @@ beo cuy cuy ndU -vtq +kMw qRO nEp nEp @@ -27641,7 +27641,7 @@ nEp nEp aHO nEp -eOd +pAn chW beo qlO @@ -27840,7 +27840,7 @@ beo oTq cuy ndU -vtq +kMw rAp nEp nEp @@ -27865,7 +27865,7 @@ nEp nEp fhu nEp -eOd +pAn chW beo beo @@ -28021,7 +28021,7 @@ cwz cwz cwz cwz -nIs +uFt cwz cwz cwz @@ -28064,7 +28064,7 @@ tZc tZc oTq ndU -vtq +kMw nEp ilx wzr @@ -28089,7 +28089,7 @@ qUt ilx nEp nEp -eOd +pAn chW beo beo @@ -28226,8 +28226,8 @@ cSb prG cwz cwz -qim -nIs +cNL +uFt cwz cwz cwz @@ -28242,10 +28242,10 @@ kCo hPw ubi cwz -siI -siI -siI -siI +qsQ +qsQ +qsQ +qsQ cwz cwz cwz @@ -28288,32 +28288,32 @@ beo oTq cuy ndU -dwk -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -jJx -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -ccT +xVs +toj +toj +toj +toj +toj +toj +toj +toj +toj +toj +toj +qDk +toj +toj +toj +toj +toj +toj +toj +toj +toj +toj +toj +toj +vIE chW chW beo @@ -28455,7 +28455,7 @@ cwz cwz cwz cwz -wMT +pHF cwz cwz aIc @@ -28511,7 +28511,7 @@ beo beo tZc oTq -oVi +dVc dwv dwv dwv @@ -28521,7 +28521,7 @@ ucQ ucQ ucQ ucQ -oVi +dVc gza dwv dwv @@ -28530,15 +28530,15 @@ dwv dwv dwv dwv -vtq -lCm -eOd +kMw +aFS +pAn dwv dwv dwv dwv dwv -oVi +dVc chW beo sjK @@ -28754,9 +28754,9 @@ dwv dwv dwv dwv -vtq -lCm -eOd +kMw +aFS +pAn dwv chW chW @@ -28901,9 +28901,9 @@ cwz prG prG prG -siI -siI -siI +qsQ +qsQ +qsQ cwz cwz wvv @@ -28978,9 +28978,9 @@ nqn ucQ ucQ nMK -vtq -lCm -eOd +kMw +aFS +pAn chW chW beo @@ -29125,7 +29125,7 @@ cwz cwz prG prG -nIs +uFt prG prG prG @@ -29202,9 +29202,9 @@ gCx ovE cuy ndU -vtq -lCm -hWl +kMw +aFS +sIQ iAV iAV iAV @@ -29349,20 +29349,20 @@ cwz cwz prG prG -xzO +iZO prG cwz cwz cwz cwz prG -qim +cNL cwz cwz prG cwz -qim -wMT +cNL +pHF cwz prG prG @@ -29426,14 +29426,14 @@ gCx dkc bHI iAV -tir -tir -tir +nxT +nxT +nxT iAV -fDM -dXF -nkx -fDM +lwO +gtD +qFe +lwO iAV iAV iAV @@ -29632,9 +29632,9 @@ syl syl syl syl -rtK -xXk -yfL +mOR +ixI +ggy rFN aih aih @@ -29650,18 +29650,18 @@ gCx mnY cuy iAV -dXF -dXF -dXF -cKJ -bPU -puv -dXF -dXF +gtD +gtD +gtD +uSC +eth +enh +gtD +gtD iAV -dzZ -gUy -lRc +xMq +bGD +jUc iAV ssy aDI @@ -29852,17 +29852,17 @@ ojg hSv sOD aih -sjy -ctP -bPW +bpI +ivi +isb rFN -uht -eOy -lVz +nYL +ovr +hSA rFN -olj -cSd -kpX +swL +nDT +aNE aih cuy cuy @@ -29874,18 +29874,18 @@ gCx cuy cuy iAV -dXF -dXF -dXF -dXF -dXF -dXF -dXF -dXF -oNt -sWe -sWe -sWe +gtD +gtD +gtD +gtD +gtD +gtD +gtD +gtD +iub +gxP +gxP +gxP iAV ssy ssy @@ -30076,17 +30076,17 @@ hnc hSv hSv aih -jSc -tuZ -sjy -uDq -rbh -eOy -lVz -uDq -sjy -rln -kpX +faG +czb +bpI +rmb +gnA +ovr +hSA +rmb +bpI +tFe +aNE aih cuy cuy @@ -30098,18 +30098,18 @@ gCx cuy bHI iAV -dXF -mBE -dXF -dXF -mBE -jfY -dXF -eLP +gtD +uDv +gtD +gtD +uDv +xPn +gtD +rgq iAV -xOR -fpo -sWe +grG +bIb +gxP iAV ssy ssy @@ -30300,17 +30300,17 @@ gHE hSv hSv aih -fkP -sjy -wIx +tbB +bpI +vBh rFN -lxI -eOy -eYJ +gpJ +ovr +qmN rFN -xQh -sjy -auN +gFZ +bpI +vvl aih cuy cuy @@ -30328,12 +30328,12 @@ iAV iAV iAV iAV -nCa +aHu iAV iAV iAV iAV -iEc +lyG iAV iAV dZH @@ -30525,15 +30525,15 @@ hSv rFN rFN rFN -sfA +bce rFN rFN -sPa -eOy -dyq +kwB +ovr +mAH rFN rFN -sfA +bce rFN rFN rFN @@ -30545,20 +30545,20 @@ dwv dwv dwv iAV -sCE -mVs -uWI -xxA +lKl +ggJ +cYN +uUy iAV -wvt -rqY -ugj -wdK -tlH +rrg +tjk +fNA +dfY +dWo iAV -qdL -pOf -jvl +fEf +ahJ +tOP iAV gOl gOl @@ -30747,19 +30747,19 @@ sOD hSv sbk aih -vNg -lVz -sAv -fHs -lVz -lVz -eOy -lVz -lVz -lVz -lVz -lVz -rwC +eor +hSA +arO +bNv +hSA +hSA +ovr +hSA +hSA +hSA +hSA +hSA +rEi aih dwv dRv @@ -30768,22 +30768,22 @@ dwv dwv bPf dwv -dzD -ugj -ugj -ugj -ugj -dzD -ugj -ugj -ugj -ugj -ugj -dzD -ugj -ugj -ugj -dzD +uCt +fNA +fNA +fNA +fNA +uCt +fNA +fNA +fNA +fNA +fNA +uCt +fNA +fNA +fNA +uCt gOl gOl gOl @@ -30954,7 +30954,7 @@ lvd tDe nQl qmw -jUY +mPV pno pno gHE @@ -30971,19 +30971,19 @@ hSv hSv hSv atW -vNg -eOy -eOy -qgJ -eOy -ioC -ayD -yhG -eOy -kOw -eOy -eOy -qgq +eor +ovr +ovr +neO +ovr +sjM +qaw +aSG +ovr +qQP +ovr +ovr +xJs atW dwv dwv @@ -30992,22 +30992,22 @@ dwv dwv dwv dwv -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA +fNA gOl gOl onX @@ -31148,9 +31148,9 @@ pSi pSi qPx qPx -fMg -fMg -fMg +tAb +tAb +tAb qPx qPx pSi @@ -31195,19 +31195,19 @@ hSv hSv hSv aih -vNg -lVz -lVz -lVz -lVz -pls -eOy -lVz -lVz -oEj -lVz -spq -qgq +eor +hSA +hSA +hSA +hSA +guE +ovr +hSA +hSA +wdJ +hSA +cbp +xJs aih dwv dwv @@ -31217,20 +31217,20 @@ dwv dwv dwv iAV -nXN -tPx -tPx -stn +gIL +kRO +kRO +uhf iAV -ikn -taH -ugj -ugj -udH +kXV +pFq +fNA +fNA +wLI iAV -kTk -iTY -oUq +ifa +wSJ +lga iAV gOl gOl @@ -31371,11 +31371,11 @@ pSi pSi pSi qPx -aBI -gVj -giK -stW -aBI +mNi +eiF +oVR +bGF +mNi qPx pSi pSi @@ -31421,15 +31421,15 @@ hSv rFN rFN rFN -sfA +bce rFN rFN -lEo -eOy -sAv +kkp +ovr +arO rFN rFN -xBA +tsZ rFN vpc vpc @@ -31448,8 +31448,8 @@ iAV iAV iAV iAV -ugj -xZs +fNA +sdw iAV iAV iAV @@ -31594,13 +31594,13 @@ pSi pSi pSi pSi -fMg -aRi -kaM -kaM -kaM -stW -fMg +tAb +abE +wHM +wHM +wHM +bGF +tAb pSi pSi pSi @@ -31644,17 +31644,17 @@ hSv hSv hSv aih -bTS -sjy -cks +xEU +bpI +erC rFN -bNB -eOy -stq +uQT +ovr +wLJ rFN -oAH -sjy -pNA +ceg +bpI +tUs aih oAG wnz @@ -31668,13 +31668,13 @@ nST jDT iAV iAV -cwR -pOf -qVa +ujq +ahJ +oOV xGm -ugj -ugj -slt +fNA +fNA +ubY iAV jxe jxe @@ -31818,13 +31818,13 @@ pSi pSi pSi pSi -igY -kaM -kaM -kaM -kaM -kaM -igY +oja +wHM +wHM +wHM +wHM +wHM +oja pSi pSi pSi @@ -31868,17 +31868,17 @@ hSv hSv qrK aih -sjy -rln -sjy -uDq -lVz -eOy -lVz -uDq -sjy -tuZ -kpX +bpI +tFe +bpI +rmb +hSA +ovr +hSA +rmb +bpI +czb +aNE aih eGN oAG @@ -31891,15 +31891,15 @@ cxX jDT iAV iAV -acR -rqY -ugj -aST -duJ -ugj -ugj -ugj -sPK +kxX +tjk +fNA +gzH +fxK +fNA +fNA +fNA +aiB aRL eBT iAV @@ -32042,13 +32042,13 @@ pSi pSi pSi pSi -fMg -stW -kaM -stW -kaM -hHr -fMg +tAb +bGF +wHM +bGF +wHM +hMV +tAb pSi sXL pSi @@ -32092,17 +32092,17 @@ hSv hSv hSv aih -sjy -jSc -tlP +bpI +faG +jzW rFN -tnh -eOy -leo +lCy +ovr +kOu rFN -xRf -jSc -kpX +ycF +faG +aNE aih oAG epb @@ -32114,15 +32114,15 @@ nST oAG jDT iAV -mwn -rqY -ugj -ugj -lkL +rKl +tjk +fNA +fNA +aLZ xGm -ugj -ugj -dTi +fNA +fNA +lOh iAV uDh gVM @@ -32267,11 +32267,11 @@ pSi pSi pSi qPx -aBI -kaM -uzk -stW -aBI +mNi +wHM +dBc +bGF +mNi qPx pSi pSi @@ -32320,9 +32320,9 @@ aih aih aih rFN -pkV -bZR -bZR +sul +rXw +rXw rFN aih aih @@ -32338,14 +32338,14 @@ aAm eJa jDT iAV -sJm -taH -ugj -cYd -kTt +jIq +pFq +fNA +dBd +hjJ iAV -ugj -xZs +fNA +sdw iAV iAV iAV @@ -32492,9 +32492,9 @@ pSi pSi qPx qPx -fMg -fMg -fMg +tAb +tAb +tAb qPx qPx pSi @@ -32564,15 +32564,15 @@ jDT iAV iAV iAV -tDn +bIW iAV iAV iAV -ugj -ugj -mIG -iUb -dZT +fNA +fNA +iFz +eso +iDk mZB aAm aAm @@ -32710,7 +32710,7 @@ cwz cwz pSi pSi -hyS +etj pSi pSi pSi @@ -32786,17 +32786,17 @@ jDT lEK cPj iAV -gxv -qsN -ugj -bbQ -pVc +vDL +oUI +fNA +ctV +eMR xGm -ugj -ugj -ugj -ugj -dOq +fNA +fNA +fNA +fNA +bnq oio czA aAm @@ -33010,17 +33010,17 @@ jDT lEK fCL iAV -qqF -vAi -ugj -ydl -lgV +bOY +eDw +fNA +tfl +iIh xGm -ugj -ugj -ugj -feD -niC +fNA +fNA +fNA +pNr +kCV eKD aAm aAm @@ -33050,10 +33050,10 @@ eRV eRV vVx fdy -kil +nEl vxL vxL -hib +mhV vVx ohr ohr @@ -33235,15 +33235,15 @@ aAm nST iAV iAV -mQk -mVI -gQJ -ugj -ofX -ugj -ugj -feD -vcl +gWk +dGB +jgb +fNA +vzM +fNA +fNA +pNr +rCz dwF rlB cOY @@ -33273,7 +33273,7 @@ pvT eRV eRV vVx -vOo +baK hrJ vxL vxL @@ -33460,13 +33460,13 @@ fCL jDT iAV iAV -vUg -aCc -nZk +kyk +cOb +qiJ xGm -aNU -xnj -bYJ +wbq +doS +rlw dwF dwF eUm @@ -33481,7 +33481,7 @@ tOc tOc fcJ mdK -aeW +dzu bZf ydC bZf @@ -33499,9 +33499,9 @@ eRV vVx doB vxL -lpb +tfo vxL -qKe +rhm vVx ohr ohr @@ -33699,7 +33699,7 @@ lEK eJa lDp fMc -bFS +ngD fMc lDp faY @@ -33721,9 +33721,9 @@ pvT eRV eRV vVx -hpv +ufe vxL -kil +nEl vxL bcU vVx @@ -33922,9 +33922,9 @@ fMc fMc fMc lDp -jdz -bey -vrb +jro +oBR +pMW lDp fMc fMc @@ -33947,7 +33947,7 @@ eRV vVx maF vxL -qck +orN vxL vxL vxL @@ -34057,9 +34057,9 @@ pSi pSi pSi pSi -wie -wJp -wJp +aqx +rLg +rLg pSi pSi pSi @@ -34068,16 +34068,16 @@ pSi pSi pSi pSi -qOi -rXR -vYq -nuA -gXB -gXB -nuA -gXB -aTd -qBN +pjf +tiS +daM +orM +onc +onc +orM +onc +iPj +bJv xVp ixg dzU @@ -34142,17 +34142,17 @@ ljG oAG lEK fMc -rLa -jBW -bey -djR -djR -bey -bey -djR -bey -pLw -nRv +fqU +mMd +oBR +xwk +xwk +oBR +oBR +xwk +oBR +lMQ +ayq fMc lkx swS @@ -34170,11 +34170,11 @@ eRV eRV vVx svo -lpb +tfo vxL hrJ vxL -kil +nEl vxL koG hOB @@ -34274,7 +34274,7 @@ pSi pSi pSi pSi -dAZ +qCQ pSi pSi pSi @@ -34292,7 +34292,7 @@ pSi pSi pSi pSi -bXf +oGA qSw qSw qSw @@ -34301,7 +34301,7 @@ qSw qSw qSw qSw -tED +swW ixg dzU tjo @@ -34330,7 +34330,7 @@ hSv hSv wUM uRY -vjD +lXC uRY wUM hSv @@ -34366,17 +34366,17 @@ oAG oAG lPB fMc -hqo -bey -bey -bey -snH -bey -bey -bey -bey -bey -dJz +edG +oBR +oBR +oBR +pnK +oBR +oBR +oBR +oBR +oBR +jDj fMc mdK mdK @@ -34397,7 +34397,7 @@ mQI vxL vxL vxL -lpb +tfo hrJ vxL koG @@ -34516,16 +34516,16 @@ pSi pSi pSi pSi -hzW -jam -jam -hzU -jLJ -jLJ -sDN -jam -jam -sKj +cDc +off +off +ajZ +gtG +gtG +sLC +off +off +qHd kXi tjo tjo @@ -34553,9 +34553,9 @@ uRY uRY uRY wUM -xBk -onh -kTs +oVk +ovB +uux wUM uRY uRY @@ -34590,17 +34590,17 @@ bPD oAG grH fMc -fGy -bey -hJI +oHd +oBR +lRq dGm -olB -bey -bey +uiY +oBR +oBR dGm -mXY -bey -djR +ioY +oBR +xwk fMc mdK mdK @@ -34616,13 +34616,13 @@ pvT pvT eRV vVx -biQ +vrK tCQ -kil +nEl vxL vxL vxL -qck +orN vxL koG lyV @@ -34773,17 +34773,17 @@ hSv hSv xSl bnc -bSN -jfp -fLi +nHM +uId +wHY ifT -bSN -lRb -tym +nHM +eRj +qMU ifT -vtv -bUi -bUi +iLj +cWq +cWq gjx hSv sbk @@ -34814,17 +34814,17 @@ pnB pnB lDp lDp -jFN -bey +xIV +oBR dGm dGm -sSo -bey -jBw +kqm +oBR +hvf dGm dGm -vKU -bey +wpO +oBR lDp lDp mdK @@ -34844,7 +34844,7 @@ vxL vxL vxL vxL -qck +orN vxL vxL vxL @@ -34997,17 +34997,17 @@ hSv hSv hSv bnc -hNP -qCt -kTs -vNh -kTs -onh -whl -vNh -bUi -bUi -bUi +bMS +rNp +uux +nJk +uux +ovB +nHo +nJk +cWq +cWq +cWq gjx hSv hSv @@ -35037,19 +35037,19 @@ fUn fUn fUn fMc -cgk -djR -bey -bey -bey -bey -bey -bey -djR -djR -bey -bey -sBs +wgl +xwk +oBR +oBR +oBR +oBR +oBR +oBR +xwk +xwk +oBR +oBR +uLu fMc mdK hFh @@ -35065,12 +35065,12 @@ pvT eRV vVx vxL -qck +orN vxL hrJ vxL vxL -gMm +ksW vxL cla lyV @@ -35158,7 +35158,7 @@ sjL sjL sjL sjL -cZd +rWq pSi pSi pSi @@ -35208,10 +35208,10 @@ tjo pGI tjo btX -nIv -nIv -nIv -nIv +gkn +gkn +gkn +gkn pWR hSv hSv @@ -35221,17 +35221,17 @@ hSv qrK hSv bnc -iaU -kTs -wrt +uTK +uux +fPt ifT -kTs -onh -kTs +uux +ovB +uux ifT -xHp -bUi -sHO +ilk +cWq +dlo gjx msU hSv @@ -35260,21 +35260,21 @@ fUn fUn fUn fUn -lFN -bey -bey -bey -bey -djR -bey +tHj +oBR +oBR +oBR +oBR +xwk +oBR dGm -bey -bey -bey -hJI -bey -bey -lFN +oBR +oBR +oBR +lRq +oBR +oBR +tHj mdK mdK mdK @@ -35291,7 +35291,7 @@ vVx vxL vxL vxL -kil +nEl vxL vxL vxL @@ -35432,13 +35432,13 @@ btX btX btX btX -tHn -ezR -ezR -tHn +xyH +luH +luH +xyH pWR -nIv -nIv +gkn +gkn pWR rce fZl @@ -35446,15 +35446,15 @@ fZl wUM wUM ifT -jxJ +osy ifT ifT ifT -hQC +wmG ifT ifT ifT -iwz +cpA ifT wUM wUM @@ -35485,19 +35485,19 @@ fUn fUn fUn fMc -fTc -djR -bey -bey -djR -djR -bey -uvO -mxo -mxo -cTA -udT -mrP +kJv +xwk +oBR +oBR +xwk +xwk +oBR +rCh +rmB +rmB +gOy +iWH +dIX fMc mdK ujI @@ -35515,8 +35515,8 @@ vVx vxL vxL gWc -mJX -sdn +ykv +atC fjh vxL vxL @@ -35614,8 +35614,8 @@ pSi pSi pSi pSi -wJp -wJp +rLg +rLg pSi pSi pSi @@ -35653,34 +35653,34 @@ tjo tjo tjo btX -dWP -lCJ +hFJ +xmn pWR pWR -pZT -ijW -veN -kQd -oCY -hLD -nIv +auj +mHm +uip +eMe +lhF +ixD +gkn kpM lwG lwG gjx -bSN -ckt -kTs -kTs +nHM +xPB +uux +uux ifT -cJN -onh -onh +wuB +ovB +ovB ifT -eqz -kTs -svA -xBk +uLx +uux +ldd +oVk gjx fUn fUn @@ -35710,17 +35710,17 @@ fUn upQ lDp lDp -bey -bey +oBR +oBR dGm dGm -ttE -lXX -elQ +fzh +pmp +wvC dGm dGm -udd -xNQ +aZN +baD lDp lDp mdK @@ -35737,10 +35737,10 @@ pvT eRV vVx vxL -gMm +ksW gWc -vBe -lJy +hmW +mlz fjh vxL vxL @@ -35843,8 +35843,8 @@ pSi pSi pSi pSi -wJp -wJp +rLg +rLg pSi pSi pSi @@ -35877,35 +35877,35 @@ tjo tjo tjo btX -hpo -cLE -ygb +iyY +dOg +tbn pWR -aAC -ijW -ijW -ijW -ijW -oIT -nIv +rbG +mHm +mHm +mHm +mHm +jJa +gkn kpM lwG lwG -qqB -onh -onh -onh -onh -rxD -onh -uon -onh -rxD -onh -onh -onh -onh -qqB +fxh +ovB +ovB +ovB +ovB +jcC +ovB +uOn +ovB +jcC +ovB +ovB +ovB +ovB +fxh fUn fUn fUn @@ -35933,18 +35933,18 @@ fUn fUn pHO fMc -wju -djR -bey -bey +urV +xwk +oBR +oBR dGm -nQc -lLH -ivj +exI +lVg +jmF dGm -mHX -wwn -wwn +dHg +hSL +hSL fMc mdK mdK @@ -35960,14 +35960,14 @@ pvT pvT eRV vVx -kil +nEl hrJ gWc -oDa -jue +ikD +uTg fjh hrJ -kil +nEl koG lyV lyV @@ -36065,7 +36065,7 @@ nWM nWM nWM nWM -xpi +baS nWM nWM nWM @@ -36101,34 +36101,34 @@ tjo tjo btX btX -vVA -ijW -ksM -kdK -ijW -ksM -ijW -ijW -ijW -bzG +eKb +mHm +nfQ +thH +mHm +nfQ +mHm +mHm +mHm +gDI pWR pWR lwG lwG gjx -kTs -tTU -kTs -kTs +uux +mlE +uux +uux ifT -tUD -onh -rzm +gmL +ovB +eHs ifT -tTU -kTs -kTs -kTs +mlE +uux +uux +uux gjx fUn fUn @@ -36157,18 +36157,18 @@ fUn fUn pHO fMc -jty -otr -lXX -bey -bey -dsx -szq -ivj -wwn -wwn -wwn -djy +dNE +muX +pmp +oBR +oBR +gNz +lLl +jmF +hSL +hSL +hSL +jKv fMc mdK mdK @@ -36186,9 +36186,9 @@ eRV vVx vxL vxL -kil +nEl vxL -gMm +ksW vxL vxL vxL @@ -36324,33 +36324,33 @@ tjo tjo tjo btX -bPR -tFB -ijW -ijW -ijW -ijW -ijW -ijW -ijW -ijW -sig -ygb -nIv +eRQ +xSW +mHm +mHm +mHm +mHm +mHm +mHm +mHm +mHm +xjK +tbn +gkn lwG lwG wUM wUM ifT -jxJ +osy ifT wUM wUM -may +hey wUM wUM ifT -iwz +cpA ifT wUM wUM @@ -36381,18 +36381,18 @@ fUn fUn pHO fMc -faz -nkK -tNL -bey -bey -bey -bey -ivj -neT -wwn -gXf -tHg +kNx +dkv +vwY +oBR +oBR +oBR +oBR +jmF +oqG +hSL +wOg +iDE fMc qFw mdK @@ -36414,7 +36414,7 @@ vxL vxL vxL vxL -qck +orN vxL vVx lyV @@ -36522,7 +36522,7 @@ nWM nWM nWM nWM -xpi +baS nWM nWM nWM @@ -36548,34 +36548,34 @@ nwF tjo tjo btX -pFG -ijW -ijW -rzZ +gmY +mHm +mHm +pwP pWR -gIq -ijW -mVp -srZ -ijW -ijW -ijW -kdK +ndK +mHm +okQ +siY +mHm +mHm +mHm +thH lwG lwG lwG bnc -bSN -kTs -tym +nHM +uux +qMU wUM -kTs -onh -oVw +uux +ovB +maK wUM -oUh -kTs -bSN +kXn +uux +nHM gjx uhm uhm @@ -36601,21 +36601,21 @@ uhm uhm qgK mCI -lYa +imO mCI qgK lDp -kdy -faz -lLH -bey -bey -bey -bey -ivj -wwn -wwn -pDC +cYb +kNx +lVg +oBR +oBR +oBR +oBR +jmF +hSL +hSL +mrz lDp lDp jtl @@ -36633,11 +36633,11 @@ pvT eRV vVx pQs -gMm +ksW vxL vxL -lxD -qck +rXb +orN vxL vxL koG @@ -36733,7 +36733,7 @@ nWM nWM nWM nWM -fMs +pgu nWM nWM nWM @@ -36751,9 +36751,9 @@ nWM nWM nWM nWM -fMs -nCN -nCN +pgu +sUV +sUV nWM nWM lcj @@ -36772,34 +36772,34 @@ tjo tjo tjo btX -dyX -ijW -ijW -gYa +mfc +mHm +mHm +sZx pWR -mwh -ijW -hHX -srZ -ijW -ijW -ijW -ijW +qnd +mHm +fYQ +siY +mHm +mHm +mHm +mHm lwG oGE lwG bnc -pHH -kbi -kTs -vNh -kTs -onh -kTs -vNh -kTs -exQ -gPV +vLg +oiz +uux +nJk +uux +ovB +uux +nJk +uux +fNa +pUA gjx pTi uhm @@ -36828,18 +36828,18 @@ vfA fkl fAM qgK -hbq -xUi -uet -vpZ -bey -bey -bey -bey -wZy -wwn -wwn -wwn +hPE +kNV +oeG +dnJ +oBR +oBR +oBR +oBR +jhr +hSL +hSL +hSL fMc mdK mdK @@ -36856,10 +36856,10 @@ pvT pvT eRV vVx -gMm +ksW vxL vxL -gMm +ksW vxL vxL vxL @@ -36996,34 +36996,34 @@ tjo pIL tjo btX -ceO -bUA -ksM -ijW -kdK -ijW -ijW -ijW -ijW -ijW -eFH -hXC -nIv +fWO +nyL +nfQ +mHm +thH +mHm +mHm +mHm +mHm +mHm +tXD +wEM +gkn lwG lwG lwG gjx -nXI -kTs -tSo +wBd +uux +esB wUM -fam -onh -kTs +rqF +ovB +uux wUM -sOk -xBk -bSN +rnx +oVk +nHM gjx uhm hai @@ -37055,15 +37055,15 @@ qgK mCI mCI drq -uBd -cQg -hlZ -iiE -djR -wZy -wwn -wwn -rCY +bAt +pau +tYs +qxG +xwk +jhr +hSL +hSL +ggF fMc mdK mdK @@ -37087,7 +37087,7 @@ vxL vxL vxL vxL -gMm +ksW koG lyV lyV @@ -37183,19 +37183,19 @@ nWM nWM nWM nWM -xdV -fci -fci -fci -fci -slR -slR -slR -fci -fci -fci -fci -feC +eys +bLK +bLK +bLK +bLK +kql +kql +kql +bLK +bLK +bLK +bLK +vrv nWM nWM nWM @@ -37221,16 +37221,16 @@ tjo tjo btX btX -srZ -ijW -ijW -ijW -ijW -ijW -ijW -ijW -ijW -iNH +siY +mHm +mHm +mHm +mHm +mHm +mHm +mHm +mHm +gft pWR pWR lwG @@ -37241,9 +37241,9 @@ uRY uRY uRY wUM -luQ -onh -tym +uqI +ovB +qMU wUM uRY uRY @@ -37280,14 +37280,14 @@ qVP xso uEu qgK -tRV +dgW lDp -sZf -xVu +vGC +nEf xKU -rju +aew xah -rju +aew xKU qFw mdK @@ -37335,7 +37335,7 @@ fnn mHO mHO mHO -gkV +vZK mHO mHO vMX @@ -37401,13 +37401,13 @@ sjL nWM nWM nWM -nCN +sUV nWM nWM nWM nWM nWM -hbG +dws foA foA hnn @@ -37419,7 +37419,7 @@ foA foA foA foA -ota +mmX nWM nWM nWM @@ -37445,17 +37445,17 @@ dAH tjo tjo btX -wFz -odF -aVt +iqw +fFB +fYD pWR -aAC -ijW -ijW -ksM -mZY -fiW -nIv +rbG +mHm +mHm +nfQ +gwe +sCO +gkn kpM lwG lwG @@ -37466,8 +37466,8 @@ msX msX wUM wUM -nbj -nbj +dut +dut wUM uhm vFX @@ -37504,14 +37504,14 @@ bqL bCH dol qgK -tRV +dgW xKU xKU xKU xKU -qcy -fow -fow +vbt +dhl +dhl xKU xKU xah @@ -37531,9 +37531,9 @@ eRV vVx wpT vxL -lpb +tfo vVx -kil +nEl vxL wpT koG @@ -37561,7 +37561,7 @@ mHO mHO mHO mHO -bzH +dDh dlM qCq ohr @@ -37631,7 +37631,7 @@ nWM nWM nWM nWM -hbG +dws hnn foA foA @@ -37643,7 +37643,7 @@ foA foA foA hnn -ota +mmX nWM nWM nWM @@ -37660,7 +37660,7 @@ xLx nNK olA kXi -ubM +dbd sSw tjo oRP @@ -37669,17 +37669,17 @@ tjo tjo tjo btX -rWX -gkd +lnw +muo pWR pWR -pZT -ijW -eFH -jgn -agN -oqO -nIv +auj +mHm +tXD +wTa +unC +ogG +gkn kpM lwG lwG @@ -37701,7 +37701,7 @@ uhm uhm fKS uhm -ocS +nvX edj edj gbE @@ -37730,16 +37730,16 @@ xso qgK xKU xKU -gGb -jkQ -aHi -jYU -fow -fow +lrw +lnq +lbm +hyV +dhl +dhl eqF -eWD -byv -meU +qFJ +mtd +wNC xah mdK mdK @@ -37753,13 +37753,13 @@ pvT eRV eRV vVx -bqV +bik vxL gwH vVx hrJ vxL -uZZ +qeQ koG lyV lyV @@ -37785,7 +37785,7 @@ mHO mHO mHO dlM -lKJ +ttn dlM qCq eRV @@ -37855,7 +37855,7 @@ nWM nWM nWM nWM -hbG +dws foA foA foA @@ -37867,7 +37867,7 @@ npf foA foA foA -ota +mmX nWM nWM nWM @@ -37884,7 +37884,7 @@ xLx nNK pvG kXi -qKD +izJ tke tjo vNT @@ -37896,13 +37896,13 @@ btX btX btX btX -tHn -ijW -ijW -tHn +xyH +mHm +mHm +xyH pWR -nIv -nIv +gkn +gkn pWR jRJ lwG @@ -37953,17 +37953,17 @@ iGy xso xso xKU -lth -nsA -gCO -xiC -fow -fow -jYU -cHi -fow -fow -vFv +pUS +aKH +hUG +mPX +dhl +dhl +hyV +iWo +dhl +dhl +nDs xah mdK mdK @@ -37979,10 +37979,10 @@ eRV vVx wpT vxL -rDl +mrF vVx vxL -gMm +ksW wpT koG lyV @@ -38008,8 +38008,8 @@ qRj iAI mHO mHO -bzH -qgx +dDh +bId dlM qCq eRV @@ -38079,7 +38079,7 @@ nWM nWM nWM nWM -hbG +dws foA foA foA @@ -38091,7 +38091,7 @@ foA foA foA foA -ota +mmX nWM nWM nWM @@ -38121,8 +38121,8 @@ tjo tjo btX btX -ijW -fZS +mHm +bDI btX btX msX @@ -38138,8 +38138,8 @@ msX msX msX fnX -ndO -kab +doZ +caM fnX fnX uhm @@ -38162,7 +38162,7 @@ ena gKb ena ena -wxV +aJk pVK vPP uzu @@ -38177,17 +38177,17 @@ bYS xso xso xKU -vVE -kVq -grv -uLN -fow -fow -fDI +iWZ +rab +kLE +tUV +dhl +dhl +eps eqF -pKD -tQG -cAu +qXq +vZk +uuz xKU mtZ mdK @@ -38234,7 +38234,7 @@ mHO mHO dlM dlM -bzH +dDh qCq eRV eRV @@ -38303,7 +38303,7 @@ nWM nWM nWM nWM -gti +rsu foA foA hrs @@ -38315,7 +38315,7 @@ foA pxv foA foA -kTY +hIN nWM nWM nWM @@ -38333,7 +38333,7 @@ xLx nNK wIn cQR -ubM +dbd iVA oRP tjo @@ -38362,9 +38362,9 @@ ucr ucr ucr fnX -hCr -nRc -nRc +llt +iYa +iYa fnX ucr ucr @@ -38401,13 +38401,13 @@ lyX xso uub xKU -vVE -kVq -grv -uLN -tyj -fow -waB +iWZ +rab +kLE +tUV +mHr +dhl +bAE eqF eqF eqF @@ -38524,10 +38524,10 @@ sjL nWM nWM nWM -xpi +baS nWM nWM -gti +rsu foA foA ahi @@ -38539,7 +38539,7 @@ foA tGo foA foA -kTY +hIN nWM nWM nWM @@ -38582,17 +38582,17 @@ lwG lwG wtn ucr -klF -nRc -nnh -szp -nRc -nRc -nRc -kRs -rtq -rtq -rtq +iDB +iYa +qWA +wcY +iYa +iYa +iYa +mNu +wky +wky +wky ucr ism uhm @@ -38625,18 +38625,18 @@ iGy xso xso xKU -gvM -cIF -pfT -wQv -fow -fow -dra +eFe +aPm +jLu +xPw +dhl +dhl +xch eqF -rha -roT -nAi -jYU +otW +jWL +kpo +hyV xah mdK mdK @@ -38751,7 +38751,7 @@ nWM nWM nWM nWM -gti +rsu foA foA hrs @@ -38763,7 +38763,7 @@ foA tGo foA foA -kTY +hIN nWM nWM nWM @@ -38806,17 +38806,17 @@ lwG lwG olH ucr -tlp -nRc -nRc -nRc -nRc -nRc -qvS -jfM -jfM -jfM -aUA +tJN +iYa +iYa +iYa +iYa +iYa +vHD +lnb +lnb +lnb +wIB ucr uhm uhm @@ -38850,18 +38850,18 @@ xgm xso xKU xKU -xEw -nDU -axM -xAl -bLm -hul +ugC +eyq +jPx +uYX +vtU +tXd eqF -puI -fow -mQz -jYU -hpN +dZh +dhl +pBC +hyV +pmb umK mdK tZH @@ -38975,7 +38975,7 @@ nWM nWM nWM nWM -hbG +dws foA foA foA @@ -38987,7 +38987,7 @@ foA foA foA foA -ota +mmX nWM nWM nWM @@ -39030,17 +39030,17 @@ lwG lwG lwG fnX -dAo -nRc -nRc -xJq -nRc -nRc -ucX -qoZ -qoZ -qoZ -dHf +dSw +iYa +iYa +fEJ +iYa +iYa +moy +eiY +eiY +eiY +oLH fnX uhm gBF @@ -39077,14 +39077,14 @@ eqF eqF eqF eqF -whL -aLn -fow -qih -fow -jjf -fow -fow +aGF +pJy +dhl +tpB +dhl +vqU +dhl +dhl xah mdK mdK @@ -39199,7 +39199,7 @@ nWM nWM nWM nWM -hbG +dws foA foA foA @@ -39211,7 +39211,7 @@ mQd foA foA xFI -ota +mmX nWM nWM nWM @@ -39241,8 +39241,8 @@ tjo wAl hEm hEm -qYa -iof +swl +xdK hEm hEm msX @@ -39254,17 +39254,17 @@ lwG lwG fnX fnX -lub -nRc -nRc -nRc -nRc -nRc -ogh -yju -yju -yju -qHu +ajq +iYa +iYa +iYa +iYa +iYa +ipt +wtt +wtt +wtt +dgy fnX fnX nBH @@ -39284,7 +39284,7 @@ qsA xOT lgx uEu -giS +hpS dbw jfg pCL @@ -39297,17 +39297,17 @@ wur uEu uEu xKU -dYn -tfI -iul +pEN +bfU +rzl eqF -rcq -rKX -kWB -rLq -fow -fow -beA +mSa +uHz +edu +gqE +dhl +dhl +hFI xKU xKU gdw @@ -39423,7 +39423,7 @@ nWM nWM nWM nWM -hbG +dws foA foA hnn @@ -39435,7 +39435,7 @@ foA foA sWm foA -ota +mmX nWM nWM nWM @@ -39461,35 +39461,35 @@ tjo tjo hdV hEm -wUY -wUY +jVM +jVM hEm -cvL -qYa -qYa -cef +thE +swl +swl +bis hEm -wUY -wUY +jVM +jVM hEm jRJ lwG lwG lwG ucr -spe -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -ogz +nng +iYa +iYa +iYa +iYa +iYa +iYa +iYa +iYa +iYa +iYa +iYa +noh ucr ena ena @@ -39521,17 +39521,17 @@ mCI fem baP xKU -dYn -tlT -smO +pEN +asz +qgP eqF -pse -agx -bap +qTC +drd +wTT eqF -lUG -hDw -mIs +vYQ +nAt +jox xah fDa mdK @@ -39647,7 +39647,7 @@ nWM nWM nWM nWM -hbG +dws foA foA foA @@ -39659,10 +39659,10 @@ foA foA foA foA -ota +mmX nWM nWM -xpi +baS nWM nWM nWM @@ -39684,37 +39684,37 @@ vra tjo tjo tjo -wUY -eJc -haS -qYa -qYa -qYa -qYa -qYa -sdx -bHO -lGX -wUY +jVM +hvU +ass +swl +swl +swl +swl +swl +kJi +qfL +vQt +jVM mms lwG lwG lwG -vuJ -nRc -nSF -nSF -jNN -oso -nSF -goG -nRc -nRc -nRc -nRc -nRc -nRc -vuJ +qxg +iYa +wNd +wNd +kbX +oyT +wNd +msP +iYa +iYa +iYa +iYa +iYa +iYa +qxg ena ena ena @@ -39745,17 +39745,17 @@ jRf eDs upT xKU -ozj -ead -pKe -hWA -dat -hDw -lTH +mlD +fyI +oik +okp +glB +nAt +eZM eqF -iCW -dqg -chp +daQ +dzM +aeJ xah mdK mdK @@ -39871,19 +39871,19 @@ nWM nWM nWM nWM -pSu -vZN -vZN -vZN -vZN -mnh -mnh -mnh -vZN -vZN -vZN -vZN -njI +jtD +aTM +aTM +aTM +aTM +sJX +sJX +sJX +aTM +aTM +aTM +aTM +vaA nWM nWM nWM @@ -39908,36 +39908,36 @@ tjo tjo tjo tjo -wUY -qet -qYa -jMN -qYa -qYa -qYa -qYa -qYa -qYa -taQ -wUY +jVM +xUp +swl +eDL +swl +swl +swl +swl +swl +swl +aNf +jVM lwG lwG lwG lwG ucr -nRc -nSF +iYa +wNd nCP nCP nCP -nSF -nRc -nRc -nRc -nRc -nRc -nRc -kGV +wNd +iYa +iYa +iYa +iYa +iYa +iYa +fuo ucr ena ena @@ -39969,17 +39969,17 @@ wZS vkv xJO xah -fow -fow -jJQ +dhl +dhl +lXE eqF -qYw -fow -ftj +mAM +dhl +ldR eqF -jzX -wmd -kmL +fwQ +arx +tOv xah mdK mdK @@ -40133,16 +40133,16 @@ tjo tjo hEm hEm -bPL -qYa -qYa -ckW -qYa -qYa -ckW -qYa -qYa -qGz +rLr +swl +swl +hKX +swl +swl +hKX +swl +swl +lqZ hEm hEm lwG @@ -40150,17 +40150,17 @@ lwG lwG fnX fnX -nSF +wNd nCP nCP nCP -vEU -nRc -nRc -nRc -nRc -nRc -mTE +keu +iYa +iYa +iYa +iYa +iYa +rwi fnX fnX uWU @@ -40197,9 +40197,9 @@ xah xah xKU xKU -fow -fow -vYw +dhl +dhl +woX xKU xah xah @@ -40355,36 +40355,36 @@ tjo tjo ozt tjo -wUY -qYa -qYa -qYa -ckW -ckW -qYa -qYa -ckW -ckW -qYa -qYa -tEq -wUY +jVM +swl +swl +swl +hKX +hKX +swl +swl +hKX +hKX +swl +swl +xto +jVM wOL wOL wOL wOL fnX -nJB +sAt jXS nCP nCP -nSF -nRc -nRc -nRc -nRc -nRc -nQo +wNd +iYa +iYa +iYa +iYa +iYa +csy fnX upT upT @@ -40422,7 +40422,7 @@ upT upT xKU xah -rju +aew xah xKU rLo @@ -40579,36 +40579,36 @@ tjo tjo tjo tjo -vpa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -jMN -qYa -qYa -qYa -vpa +igL +swl +swl +swl +swl +swl +swl +swl +swl +eDL +swl +swl +swl +igL wOL wOL wOL qRz ucr -nSF -nSF -nSF -nSF -nSF -nRc -nRc -nRc -nRc -nRc -ljO +wNd +wNd +wNd +wNd +wNd +iYa +iYa +iYa +iYa +iYa +uEP ucr upT dqW @@ -40803,36 +40803,36 @@ tjo sxA tjo tjo -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa +swl +swl +swl +swl +swl +swl +swl +swl +swl +swl +swl +swl +swl +swl wOL wOL qRz nGZ ucr -vLU -nRc -nRc -nRc -nRc -xwH -nRc -fXZ -yew -dwE -cUs +llK +iYa +iYa +iYa +iYa +wSU +iYa +bFU +tXG +pDO +ccS ucr upT aCh @@ -40849,11 +40849,11 @@ upT upT sXF ttG -jBP -jnw +eNs +nAj ttG -jBP -jnw +eNs +nAj ttG sXF cPy @@ -40981,15 +40981,15 @@ uiI sjL sjL sjL -dEP -nUg -nUg -nUg -nUg -nUg -nUg -nUg -nUg +ydN +eva +eva +eva +eva +eva +eva +eva +eva nWM nWM nWM @@ -41027,20 +41027,20 @@ tjo tjo tjo tjo -wUY -qYa -qYa -qYa -ckW -ckW -exh -qYa -ckW -ckW -qYa -qYa -qYa -wUY +jVM +swl +swl +swl +hKX +hKX +nxi +swl +hKX +hKX +swl +swl +swl +jVM wOL wOL kMu @@ -41050,9 +41050,9 @@ ucr ucr ucr fnX -eqW -nRc -nRc +ptZ +iYa +iYa fnX ucr ucr @@ -41072,13 +41072,13 @@ jFZ jFZ jFZ jFZ -aFP -aFP -aFP -aFP -aFP -aFP -aFP +usC +usC +usC +usC +usC +usC +usC dBu dBu dBu @@ -41205,7 +41205,7 @@ uiI sjL sjL sjL -cqh +dCj pVp pVp pVp @@ -41253,16 +41253,16 @@ dAH tjo hEm hEm -aWH -qYa -qYa -ckW -qYa -qYa -ckW -qYa -qYa -scO +vTM +swl +swl +hKX +swl +swl +hKX +swl +swl +bVM hEm hEm wOL @@ -41275,7 +41275,7 @@ upT upT fnX ucr -bjY +rEC ucr fnX upT @@ -41293,19 +41293,19 @@ upT jFZ jFZ jFZ -pub -pub +kor +kor bWC -mRc -aFP -aFP -aFP -aFP -aFP -gdV +jRR +usC +usC +usC +usC +usC +pzR dBu -uIh -xsJ +beL +arT dBu dBu dBu @@ -41429,29 +41429,29 @@ sjL sjL sjL sjL -cqh +dCj pVp -brn -brn -brn -brn -brn -brn -brn -brn -brn +bIy +bIy +bIy +bIy +bIy +bIy +bIy +bIy +bIy nWM nWM nWM nWM nWM -dgH -lwr -lwr -lwr +bMf +dtu +dtu +dtu nWM nWM -xpi +baS nWM nWM nWM @@ -41476,18 +41476,18 @@ tjo tjo tjo tjo -wUY -wGi -qYa -qYa -qYa -jMN -qYa -qYa -qYa -qYa -cLz -wUY +jVM +gvN +swl +swl +swl +eDL +swl +swl +swl +swl +pvE +jVM wOL wOL wOL @@ -41515,23 +41515,23 @@ aUc yhs jFZ jFZ -pub -pub -lEz -lEz +kor +kor +oMS +oMS bWC bWC -thA -aFP -aFP -aFP -dbx +hGg +usC +usC +usC +fMy dBu dBu -tDB -iDu -rZh -iDu +nEk +gRU +kgc +gRU dBu saw saw @@ -41653,9 +41653,9 @@ sjL pSF pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -41663,7 +41663,7 @@ pVp pVp pVp pVp -brn +bIy nWM nWM nWM @@ -41682,15 +41682,15 @@ nWM nWM nWM nWM -iWO -oWG -oWG -oWG -oWG -oWG -oWG -oWG -tja +aGf +cZR +cZR +cZR +cZR +cZR +cZR +cZR +kmx kBn kXi tjo @@ -41700,18 +41700,18 @@ tjo tjo tjo tjo -wUY -hTy -gLF -hOC -qYa -qYa -qYa -qYa -qYa -qYa -mjq -wUY +jVM +imb +ptj +bZY +swl +swl +swl +swl +swl +swl +vAD +jVM uiN wOL urB @@ -41738,26 +41738,26 @@ upT sIf sIf jFZ -gSL -lEz -lEz -hRc -lEz -uIm +sPA +oMS +oMS +koQ +oMS +bZE bWC -aFP -aFP -aFP -aFP -aFP +usC +usC +usC +usC +usC dBu -sDw -iDu -iDu -iDu -gRh +rup +gRU +gRU +gRU +rgA dBu -viw +wQn saw saw upT @@ -41877,9 +41877,9 @@ pSF pSF pSF pSF -cqh +dCj pVp -gTn +bgA pVp pVp pVp @@ -41887,7 +41887,7 @@ pVp uDS pVp pVp -brn +bIy nWM nWM aLC @@ -41906,15 +41906,15 @@ nWM nWM nWM nWM -lye -naZ -naZ -naZ -naZ -naZ -naZ -naZ -pvj +vFC +mJf +mJf +mJf +mJf +mJf +mJf +mJf +blj kBn kXi tjo @@ -41925,16 +41925,16 @@ tjo tjo tjo hEm -wUY -wUY +jVM +jVM hEm -qYa -qYa -qYa -qYa +swl +swl +swl +swl hEm -wUY -wUY +jVM +jVM hEm vja wOL @@ -41960,29 +41960,29 @@ sIf ayG ayG sIf -kuY +fBK bWC -eLZ -blC -blC -blC -lEz -nLK +uTe +rAx +rAx +rAx +oMS +fiu bWC -jjt -aFP -aFP -aFP -aFP +suR +usC +usC +usC +usC dBu -tWI -oJt -oJt -rog -iDu +nYx +wro +wro +gEk +gRU dBu -lrA -sLB +ctq +stp saw xWu xWu @@ -42101,9 +42101,9 @@ pSF pSF pSF pSF -cqh +dCj pVp -uyh +aFx pVp pVp pVp @@ -42111,7 +42111,7 @@ pVp gwz pVp pVp -brn +bIy pVp aLC aLC @@ -42128,17 +42128,17 @@ nWM nWM ncL nWM -nCN -nWM -lye -naZ -naZ -naZ -naZ -naZ -naZ -naZ -pvj +sUV +nWM +vFC +mJf +mJf +mJf +mJf +mJf +mJf +mJf +blj kBn kXi tjo @@ -42152,10 +42152,10 @@ tjo tjo tjo hEm -wUY -qYa -iof -wUY +jVM +swl +xdK +jVM hEm tjo tjo @@ -42181,35 +42181,35 @@ upT oIU upT ayG -kcX -kcX -ewK -kcX +rUh +rUh +dKD +rUh bWC bla bWC bWC bWC -kFm -lEz -xvL -aFP -qhb -duc -jBP -aFP +lLv +oMS +tsY +usC +jAL +pmF +eNs +usC dBu dBu dBu dBu dBu -bdZ +mPZ dBu -bVG -iLM -cgC -bVG -bVG +ikv +cTQ +dRw +ikv +ikv xWu upT qov @@ -42325,9 +42325,9 @@ pSF pSF pSF pSF -cqh +dCj pVp -kIU +aMr pVp pVp pVp @@ -42335,7 +42335,7 @@ pVp omw pVp pVp -brn +bIy pVp aLC aLC @@ -42354,15 +42354,15 @@ nWM nWM nWM nWM -lye -naZ -naZ -naZ -naZ -naZ -naZ -naZ -pvj +vFC +mJf +mJf +mJf +mJf +mJf +mJf +mJf +blj kBn kXi tjo @@ -42405,35 +42405,35 @@ upT upT upT ayG -xpn -ier -cRx -kcX +dIg +dft +hcR +rUh bWC -pBT -edZ -ulp -xvL -qpg -lEz +hxe +buq +aIb +tsY +qnV +oMS bWC -aFP -tpc -gSP -lfk -aFP +usC +iRK +hHj +yjY +usC haW -jbu -rfN -aIS -txW -aIS +wML +lcT +tFU +jSv +tFU haW -vES -iLM -bVG -bVG -rPu +pjZ +cTQ +ikv +ikv +uia xWu upT upT @@ -42549,9 +42549,9 @@ pSF pSF pSF pZP -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -42559,7 +42559,7 @@ pVp pVp pVp pVp -brn +bIy pVp pVp aLC @@ -42578,15 +42578,15 @@ nWM nWM nWM nWM -rGU -iFs -iFs -iFs -iFs -iFs -iFs -iFs -oKt +twZ +juO +juO +juO +juO +juO +juO +juO +uqv kBn kXi tjo @@ -42629,35 +42629,35 @@ upT sIf sIf sIf -tzV -kNf -hIv -tON +sTZ +igz +ccq +aWK bWC -bLo -mzY -fsB +dxN +ukv +kKq bWC -hVH -mxS +iFJ +uLo bWC -anm -tpc -tAE -lfk -aFP +bil +iRK +mFZ +yjY +usC haW -peR -hJu -hJu -uTn -hJu +xUB +rUE +rUE +hhQ +rUE haW -jCY -iLM -paN -vnw -pnm +ocv +cTQ +ilQ +cNK +fBO saw upT lIN @@ -42773,9 +42773,9 @@ pSF pSF pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -42783,7 +42783,7 @@ pVp pVp fFD pVp -brn +bIy pVp pVp aLC @@ -42851,12 +42851,12 @@ cCJ upT upT ayG -efs -pRc -cEm -sSf -cEm -cEm +qeB +mfJ +nLd +nqU +nLd +nLd jbc qEj bWC @@ -42865,11 +42865,11 @@ bWC bWC bWC bWC -azy -tpc -oVO -lfk -pfF +jFG +iRK +owF +yjY +woV haW jZh jZh @@ -42878,7 +42878,7 @@ jZh mUV haW saw -qMH +gRm saw saw saw @@ -42997,9 +42997,9 @@ pSF pSF pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -43007,7 +43007,7 @@ pVp pVp lqx pVp -brn +bIy pVp pVp aLC @@ -43075,39 +43075,39 @@ upT upT upT ayG -dsV -kcX -kcX +sjv +rUh +rUh gye gye gye gye -fPx -uje -igK -uje -tDa -akv +bqy +dtQ +xHy +dtQ +rPY +mWW jJc -vEg -tpc -tAE -lfk -qUz +qyN +iRK +mFZ +yjY +xYI haW -dbS -hzK -nXV -wyb -lgG +sAL +pmv +elr +hMX +naT haW -jPl -tud -oDx +rlV +ddw +uXz lQD -ctX -hHS -qJD +eGf +aOJ +vdK lQD upT vnV @@ -43215,15 +43215,15 @@ eho pSF jAP jAP -gco +tAh jAP jAP jAP pSF pSF -cqh +dCj pVp -tvq +kcE qUf sXi pVp @@ -43231,10 +43231,10 @@ pVp pVp uqA pVp -nUg -nUg -nUg -nUg +eva +eva +eva +eva aLC aLC lIs @@ -43299,39 +43299,39 @@ upT rZR sIf sIf -qhe -tLH -kcX -cRT -vBb -diI +cdD +ckg +rUh +dLr +xlT +vdm gye -ndb -eKW -sbJ -eKW -sbJ -eKW +pHD +ueB +vUX +ueB +vUX +ueB sVw -aFP -tpc -uLq -lfk -beK +usC +iRK +erZ +yjY +aEr jZh -eED -tuz -tuz -tuz -hMk +fOb +mwv +mwv +mwv +kys haW -dsQ -tud -hMO +xxP +ddw +hLz lQD -aUG -hVU -uUL +hqX +kQK +hxT lQD lQD upT @@ -43438,16 +43438,16 @@ hNK eho pSF jAP -lBG -voL -voL -pLd +ghJ +nBi +nBi +arc jAP pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -43455,7 +43455,7 @@ pVp pVp pVp pVp -brn +bIy pVp pVp pVp @@ -43522,13 +43522,13 @@ upT upT upT sIf -qkp -kcX -kcX -kcX -hEH -aVR -sAe +uIb +rUh +rUh +rUh +uYU +mUM +fDz gye fya sGh @@ -43536,27 +43536,27 @@ sGh sGh sGh sGh -eTP -aFP -iRw -aOd -nXZ -aFP +auA +usC +gmm +eKF +mNp +usC jZh -hao -dUp -tuz -tuz -nga +crm +eSd +mwv +mwv +aLl haW -nLS -xMX -jOL +tvN +axc +lNI lQD lQD lQD -uUL -eHj +hxT +uMC lQD ghg upT @@ -43662,16 +43662,16 @@ jle eho pSF jAP -jBL -voL -voL -hMq +oji +nBi +nBi +jZA jAP pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -43679,7 +43679,7 @@ pVp pVp lKs pVp -brn +bIy pVp pVp pVp @@ -43748,8 +43748,8 @@ sIf sIf gye gye -kcX -gwT +rUh +rIu gye gye gye @@ -43760,27 +43760,27 @@ sGh sGh sGh sGh -dNh -aFP -aFP -aFP -aFP -aFP +kST +usC +usC +usC +usC +usC jZh -rLI -fBL -kaW -gGi -ohO +tka +dqs +xBU +upZ +vFN haW -eMk -tud -rbg -pqy -jOL -kqB -uUL -kpz +npz +ddw +jRu +sPe +lNI +usH +hxT +rsX lQD lQD upT @@ -43886,16 +43886,16 @@ jWV eho pSF jAP -hxu -voL -voL -eAM +sik +nBi +nBi +fgZ jAP pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -43969,43 +43969,43 @@ upT upT upT ayG -mue -uIL -sXr -kcX -kcX -cRT -vBb -gLu +vpy +seL +enT +rUh +rUh +dLr +xlT +oYX gye -cDq -qXx -dvV -qXx +blY +tTl +mFq +tTl sKE sKE sKE -aFP -bAP -jBP -aFP -aFP +usC +ssf +eNs +usC +usC haW jZh haW -iLL -kJh -oyI +gsU +dJo +kAN haW -imp -rzY -hmu -fNf -eaS +vCg +lPv +hcS +ohE +jlQ lQD -usj -vTz -qWq +jsq +ftb +uTC dUJ upT chK @@ -44110,16 +44110,16 @@ gAk nmr pSF jAP -tdG -voL -voL -tWK +dvX +nBi +nBi +jSN jAP pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -44143,7 +44143,7 @@ aLC aLC glX glX -oGH +dyU glX aLC aLC @@ -44193,43 +44193,43 @@ upT upT upT ayG -tdy -qyz -abp -kcX -kcX -hRv -bVS -kZS +lXH +kqg +lcl +rUh +rUh +ths +nmP +caE gye -dCS -eKW -sbJ -eKW +elf +ueB +vUX +ueB sKE -mgN -rjf -aFP -bAP -bAP -jBP -aFP -rjf -wRA +fKP +wci +usC +ssf +ssf +eNs +usC +wci +jtg jZh -qAR -kcK -uHA +nCA +nSK +hBc haW -gEq -iuv -jOL -jOL -qai +kIi +meY +lNI +lNI +pAK lQD -lDE -quP -aRY +hKr +nsZ +jQH dUJ upT chK @@ -44334,16 +44334,16 @@ pSF pSF pSF jAP -vqB -sVW -qab -hGa +cOT +eSk +mpT +rdj jAP pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -44366,8 +44366,8 @@ aLC aLC aLC glX -lYz -jVL +ikm +sMF glX lcj ybU @@ -44420,8 +44420,8 @@ sIf gye gye gye -kcX -kKO +rUh +wYU gye gye gye @@ -44431,15 +44431,15 @@ sVw sVw sVw sKE -lNK -aFP -aFP +nPt +usC +usC wPx -bAP -bAP -jBP -aFP -vII +ssf +ssf +eNs +usC +qrY haW mUV jZh @@ -44448,7 +44448,7 @@ haW lQD cId dUJ -rYI +dkn dUJ lQD cId @@ -44565,9 +44565,9 @@ jAP jAP pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -44575,7 +44575,7 @@ pVp pVp pVp pVp -brn +bIy pVp pVp pVp @@ -44589,10 +44589,10 @@ aLC aLC aLC aLC -ioM -hPv -mot -ioM +wEp +qhk +aoD +wEp nkr xLx xLx @@ -44640,45 +44640,45 @@ upT fND kyl ttG -qwA -aFP -dKO -aFP -aFP -aFP -aFP -aFP -xMy -ecv -gWq -aFP -aFP -aFP -aFP -aFP -aFP -aFP +iGu +usC +wXl +usC +usC +usC +usC +usC +kNd +mhQ +tpD +usC +usC +usC +usC +usC +usC +usC wPx wPx -bAP -bAP -aFP -aFP -aFP -aFP -jjt -xMy -enV -wxL -hot -aFP -aFP -aFP -sre -hot -dKO -aFP -aFP +ssf +ssf +usC +usC +usC +usC +suR +kNd +cPM +lkE +mVA +usC +usC +usC +xeX +mVA +wXl +usC +usC ttG ngi ngi @@ -44789,9 +44789,9 @@ pSF pSF kxY pSF -cqh +dCj pVp -brn +bIy pVp pVp pVp @@ -44799,24 +44799,24 @@ pVp pVp pVp pVp -brn +bIy pVp pVp pVp eXn aLC aLC -sYQ +aIf aLC aLC aLC aLC aLC aLC -ioM -tpY -mie -mYJ +wEp +ohX +eDZ +why cvK kRZ cJy @@ -44864,46 +44864,46 @@ mFg ksY wOL heF -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -hot -aFP -aFP -aFP -aFP -aFP -aFP -aFP +usC +usC +usC +usC +usC +usC +usC +usC +usC +usC +mVA +usC +usC +usC +usC +usC +usC +usC wPx -bAP -kkx -bAP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -hot -jjt -aFP -aFP -aFP -hot -aFP -aFP -aFP -fBS +ssf +uQj +ssf +usC +usC +usC +usC +usC +usC +usC +usC +mVA +suR +usC +usC +usC +mVA +usC +usC +usC +omo ngi ngi ngi @@ -45013,9 +45013,9 @@ pSF gxa pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp hdW @@ -45023,10 +45023,10 @@ pVp pVp pVp pVp -rCX -rCX -rCX -uyu +aJA +aJA +aJA +nTm aLC aLC aLC @@ -45037,10 +45037,10 @@ aLC aLC aLC aLC -ioM -kbK -lbo -mYJ +wEp +aPY +qTS +why cvK kRZ hiO @@ -45088,46 +45088,46 @@ wOL urB wOL wAc -aFP -aFP -aFP -aFP -aFP -aFP -hre -hre -hre -hre -szR -hre -hre -hre -hre -lAn -aFP -aFP -bAP -bAP -bAP +usC +usC +usC +usC +usC +usC +vXX +vXX +vXX +vXX +nlA +vXX +vXX +vXX +vXX +keI +usC +usC +ssf +ssf +ssf wPx -aFP -aFP -hre -hre -hre -hre -hre -hre -szR -hre -hre -aFP -aFP -hot -aFP -jjt -aFP -aFP +usC +usC +vXX +vXX +vXX +vXX +vXX +vXX +nlA +vXX +vXX +usC +usC +mVA +usC +suR +usC +usC ngi ngi ngi @@ -45237,9 +45237,9 @@ pSF pSF pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp hdW @@ -45247,12 +45247,12 @@ pVp pVp pVp pVp -brn +bIy pVp pVp -cIr -cIr -sYQ +ojz +ojz +aIf aLC aLC aLC @@ -45262,8 +45262,8 @@ aLC aLC aLC glX -xsO -cLG +iuF +eqV wzq plL xLx @@ -45312,12 +45312,12 @@ wOL wOL wOL ttG -aFP -aFP -aFP -aFP -aFP -ykO +usC +usC +usC +usC +usC +eyD kqp jht poX @@ -45327,15 +45327,15 @@ jcl cOm jcl cIG -iAd -pEZ -noT -afE +oNm +jJw +sXC +iCi mMu pdf pdf -noT -kEI +sXC +tGD lXF jcl sit @@ -45345,12 +45345,12 @@ jcl rCV jcl qqk -iAd -xEC -dZL -aFP -aFP -aFP +oNm +tHC +tIt +usC +usC +usC ttG ngi ngi @@ -45442,12 +45442,12 @@ qrv qrv xUI egk -geq +nCn pVi -qZb +qri kTK -eSW -dDD +bnb +rry wnL bUY bUY @@ -45461,9 +45461,9 @@ pSF pSF pSF pSF -cqh +dCj pVp -brn +bIy pVp pVp hdW @@ -45471,7 +45471,7 @@ pVp pVp pVp pVp -brn +bIy ffS pVp aLC @@ -45486,8 +45486,8 @@ aLC aLC aLC glX -aZe -cLG +bPc +eqV glX nkr xLx @@ -45536,46 +45536,46 @@ wOL wOL wOL heF -aFP -aFP -aFP -aFP -aFP -aFP -aHI -aHI -aHI -aHI -hmT -aHI -aHI -aHI -aHI -aFP -aFP -aFP -bAP -bAP -bAP +usC +usC +usC +usC +usC +usC +tNT +tNT +tNT +tNT +jUf +tNT +tNT +tNT +tNT +usC +usC +usC +ssf +ssf +ssf wPx -aFP -aFP -aHI -aHI -aHI -aHI -aHI -aHI -hmT -aHI -aHI -aFP -aFP -hot -aFP -aFP -aFP -fBS +usC +usC +tNT +tNT +tNT +tNT +tNT +tNT +jUf +tNT +tNT +usC +usC +mVA +usC +usC +usC +omo ngi ngi ngi @@ -45666,28 +45666,28 @@ qrv qrv bUY fOX -oNN -pAh -oNN -fJl -sHk -oNN -pvM -oIc +pVw +kno +pVw +ush +mOO +pVw +qkN +pox xUI mig uEe pSF nHa pSF -waq -nsg +lDs +eoo pSF rxq pSF -cqh +dCj pVp -brn +bIy lCv pVp dQF @@ -45695,7 +45695,7 @@ pVp pVp pVp pVp -brn +bIy pVp pVp aLC @@ -45710,9 +45710,9 @@ aLC aLC glX glX -uMx -cLG -ioM +svG +eqV +wEp vHT xLx xLx @@ -45760,46 +45760,46 @@ cSP htX wOL wAc -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -hot -aFP -aFP -aFP -aFP -aFP -aFP -aFP +usC +usC +usC +usC +usC +usC +usC +usC +usC +usC +mVA +usC +usC +usC +usC +usC +usC +usC wPx -bAP -bAP -bAP -aFP -lAn -aFP -aFP -aFP -aFP -aFP -aFP -hot -aFP -aFP -aFP -aFP -hot -aFP -jjt -aFP -aFP +ssf +ssf +ssf +usC +keI +usC +usC +usC +usC +usC +usC +mVA +usC +usC +usC +usC +mVA +usC +suR +usC +usC ngi ngi gWD @@ -45889,13 +45889,13 @@ qrv qrv qrv bUY -oNN -qPV -uzA -hca -tGs -oNN -oNN +pVw +qaC +oPE +sJi +mla +pVw +pVw vkX mig wvN @@ -45909,17 +45909,17 @@ uTG pSF lFH pSF -cqh +dCj pVp -brn -brn -brn -brn -brn -brn -brn -brn -brn +bIy +bIy +bIy +bIy +bIy +bIy +bIy +bIy +bIy pVp pVp aLC @@ -45933,10 +45933,10 @@ aLC rfb aLC glX -eSL +dHX san -rVX -ioM +tkK +wEp nkr kwJ xLx @@ -45984,52 +45984,52 @@ lKt eRU uOZ ttG -asu -aFP -sRx -aFP -aFP -aFP -aFP -aFP -xMy -cAZ -gWq -aFP -aFP -aFP -aFP -aFP -aFP -aFP +cAy +usC +eKL +usC +usC +usC +usC +usC +kNd +xxH +tpD +usC +usC +usC +usC +usC +usC +usC wPx wPx -bAP -bAP -aFP -aFP -aFP -aFP -aFP -xMy -bnF -wxL -oZs -aFP -aFP -aFP -aFP -mcH -aFP -aFP -aFP +ssf +ssf +usC +usC +usC +usC +usC +kNd +fUY +lkE +ofl +usC +usC +usC +usC +tUe +usC +usC +usC ttG ngi ngi ngi ngi btc -aeW +dzu bZf uVT tZH @@ -46113,14 +46113,14 @@ qrv qrv qrv muv -bBr -fji -sTG -qwG +wPX +ach +oLK +wqW rUl -oNN -gaN -fJl +pVw +fCF +ush nEF wvN mig @@ -46133,7 +46133,7 @@ pSF pSF pSF pSF -cqh +dCj pVp lCv pVp @@ -46156,11 +46156,11 @@ aLC aLC aLC aLC -ioM -viO +wEp +cTe san -cLG -ioM +eqV +wEp nkr xLx xLx @@ -46212,32 +46212,32 @@ ijV fHW fHW fHW -ylV -xpS +kWX +fEb fHW fHW fHW mLm wpq -cTB -cTB +gLQ +gLQ mLm mLm -lNK -aFP -aFP +nPt +usC +usC wPx -bAP -bAP -nXZ -aFP -vII +ssf +ssf +mNp +usC +qrY izY -qMX -xpt -qMX -qMX -qMX +oQX +tMh +oQX +oQX +oQX jnf izY izY @@ -46253,7 +46253,7 @@ toI toI toI awE -aeW +dzu bZf uiK tZH @@ -46337,13 +46337,13 @@ qrv qrv qrv bUY -oNN -oNN -fJl -cmi +pVw +pVw +ush +kVh eTx wvN -oNN +pVw eLB mig tSC @@ -46357,19 +46357,19 @@ xlU pSF eRG pSF -wbj -rCX -rCX -rCX -rCX -rCX -rCX -rCX -rCX -jKR -rCX -rCX -rCX +oMM +aJA +aJA +aJA +aJA +aJA +aJA +aJA +aJA +iss +aJA +aJA +aJA aLC aLC xPa @@ -46380,11 +46380,11 @@ aLC aLC aLC aLC -ioM -ixN +wEp +dfy jFp -cLG -ioM +eqV +wEp nkr xLx xLx @@ -46433,43 +46433,43 @@ lKt lKt lKt wqj -byy -aJG -dEs -ylV -ylV -xyb -lcM -tVa +sQw +fZB +yhb +kWX +kWX +opd +orV +mHS mLm -ukl -ugv -ugv -rGX +jgM +pUf +pUf +cfb mLm -nbQ -rjf -aFP -bAP -bAP -nXZ -aFP -rGj -vBa +mcu +wci +usC +ssf +ssf +mNp +usC +snL +qfc izY -nZy -aoV -wcI -fKt -uRt -nXa -nKH -ucs +iwW +xnC +cHl +bQW +tnr +hrm +hYh +dmx izY -yfR -soF -rCP -pNa +dGd +xTL +mLS +eYm xRl xNz aDB @@ -46562,24 +46562,24 @@ qrv qrv xUI rwh -pvM -uNn -oNN +qkN +cmD +pVw rDR rDR -oNN -ffB -oIc +pVw +dub +pox bUY bUY gnc mdO -hQh +pxu pSF lFH uvz -hQh -nsg +pxu +eoo pSF mKi bDM @@ -46604,10 +46604,10 @@ aLC aLC aLC aLC -ioM -fgo +wEp +tLk san -cLG +eqV glX nkr xLx @@ -46656,44 +46656,44 @@ fvJ fvJ lKt sKH -ahX -osi -kWK -vaF -ylV -ylV -oEB -kWK -rey +kEU +pPW +ycp +dnM +kWX +kWX +eCL +ycp +abi mLm -mGD -wIE -ugv -gpu +fNp +pCw +pUf +mZh mLm mLm mLm -ipF -bAP -nXZ -aFP -ipF +fAR +ssf +mNp +usC +fAR ixp ixp ixp -boC -aoV -aoV -aoV -aoV -soF -jva -cxH +peM +xnC +xnC +xnC +xnC +xTL +tLp +qXt izY -euM -soF -fCg -iol +oTD +xTL +rcW +kQa xRl aDB aDB @@ -46786,19 +46786,19 @@ qrv qrv muv wnL -oNN -oNN +pVw +pVw tMe -qZb +qri xuI -qZb +qri wnL bUY bUY mmF -eZx -tqX -jDq +ycZ +pIb +kvW nku pSF pSF @@ -46829,9 +46829,9 @@ aLC aLC aLC glX -nBR +bQO iYS -cLG +eqV glX cwJ xLx @@ -46884,39 +46884,39 @@ ijV ijV fHW fHW -ylV -brl +kWX +fVQ fHW fHW fHW mLm -tkg -bHA -uWO -csW -bab -guB +biI +nDX +hyY +irK +kpN +gWt mLm -iPI -aFP -aFP -aFP -iPI -rlb -ljx -ake -ehf -aoV -shy -dyy -aoV -aDo -rCP -vWw +tqd +usC +usC +usC +tqd +aHf +uEY +rBe +oxT +xnC +eVH +nVG +xnC +gaw +mLS +jpA izY -xen -soF -vYg +ofB +xTL +xGP xRl xRl aDB @@ -47012,10 +47012,10 @@ qrv bUY muv muv -cCj +luL wnL bUY -cCj +luL bUY rsS qTU @@ -47052,11 +47052,11 @@ xPa xPa aLC aLC -ioM -boN +wEp +lWI san -njv -mYJ +nPD +why cvK cJy xLx @@ -47106,41 +47106,41 @@ lKt lKt lKt ijV -wpe -uik -ylV -ylV -qSV -xsR -qSV +jSx +twc +kWX +kWX +mGv +cRv +mGv mLm -hrM -ugv -vzR -ugv -ugv -bdf +arB +pUf +qGD +pUf +pUf +xcf mLm -bTt -qhb -duc -jBP -beK -rlb -itX -ake -mgH -aoV -aoV -aoV -aoV -cfi -pMK -rCP -tQN -rCP -ovC -raP +lqQ +jAL +pmF +eNs +aEr +aHf +rxu +rBe +uYc +xnC +xnC +xnC +xnC +oDg +bdB +mLS +dAP +mLS +kXq +bzz xRl aDB oXJ @@ -47276,11 +47276,11 @@ xPa aLC aLC aLC -ioM -boN +wEp +lWI san -qPK -mYJ +xyn +why cvK cJy xLx @@ -47331,33 +47331,33 @@ lKt lKt ijV ijV -scn -bWH -bWH -qWT -pyU -lPR +ssI +oAn +oAn +tRF +pIT +mBw lYs -dfU -krg -ugv -bdf -ugv -gsC +vQW +dCC +pUf +xcf +pUf +omF mLm -hHA -tpc -ihU -lfk -aFP -htw -bCa -ake -kpD -aoV -aoV -aoV -gJk +dWq +iRK +fes +yjY +usC +qSY +wHS +rBe +cez +xnC +xnC +xnC +duB jnf izY izY @@ -47500,11 +47500,11 @@ aLC aLC aLC aLC -ioM -xZP +wEp +gok pdP -kKX -ioM +kiV +wEp nkr xLx cnI @@ -47554,40 +47554,40 @@ lKt lKt lKt lKt -ahX -faf -ylV -ylV +kEU +gqN +kWX +kWX fHW fHW fHW mLm -mGD -sAo -ugv -kPj -ugv -jlw +fNp +snt +pUf +jzc +pUf +nUT mLm -sYp -tpc -jIa -lfk -jjt -bCa -bCa -ake -kpD -wMx -bcv -jTw -iRB +kIN +iRK +sUq +yjY +suR +wHS +wHS +rBe +cez +rge +haC +uug +qpF jnf -xXT -eiP -iXK -bCa -bCa +kjf +oVh +vEm +wHS +wHS orc aqI aDB @@ -47704,9 +47704,9 @@ pSF uvJ tFW tFW -aMJ -tCN -gkv +kqv +hkh +gZP tFW tFW uvJ @@ -47725,9 +47725,9 @@ aLC aLC aLC glX -nYi -eaw -dsA +quI +oYE +dqv glX nkr xLx @@ -47778,39 +47778,39 @@ lKt kZO fvJ lKt -ahX -lgg -hIU -ylV -uik -ylV -cUU +kEU +qFB +mBi +kWX +twc +kWX +glu mLm -mGD -kPj -ugv -nYf -ugv -lNa +fNp +jzc +pUf +trH +pUf +hOT mLm -thA -tpc -fIJ -lfk -aFP -rlb -eiP -bCa -ake -ake +hGg +iRK +lOF +yjY +usC +aHf +oVh +wHS +rBe +rBe izY izY izY jnf -gFf -iMe -cVZ -xBf +fRm +gth +bBg +dVi orc orc aDB @@ -47927,11 +47927,11 @@ uvJ uvJ uvJ acW -gwU -xtq -chm -gkv -gwU +lrb +exe +glH +gZP +lrb tFW uvJ uvJ @@ -47949,9 +47949,9 @@ aLC aLC aLC glX -ioM -hTM -ioM +wEp +umL +wEp glX nkr tyH @@ -47990,8 +47990,8 @@ nsz nsz qtl nsz -luq -amU +muL +eAT oxy pnc dqo @@ -48005,35 +48005,35 @@ lKt ijV fHW fHW -nLF -ylV -nNH -uWF +cYi +kWX +kzI +jdq mLm -psz -jch -ugv -jlw -ugv -ufc +tXF +mqq +pUf +nUT +pUf +qVm mLm -ibc -tpc -jIa -lfk -aFP -rlb -lBO -xBf -bCa -bCa -bCa -oHk -bNj -qxA -kwd -bvB -fIy +liM +iRK +sUq +yjY +usC +aHf +jCg +dVi +wHS +wHS +wHS +vYy +mky +hNX +tMn +fZr +xlz orc orc eOG @@ -48151,11 +48151,11 @@ uvJ uvJ uvJ tFW -uuD -wea -gtZ -hRA -uuD +cWG +xWU +mwU +lCp +cWG acW uvJ uvJ @@ -48214,9 +48214,9 @@ nsz sOL nsz nsz -nip -amU -amU +osS +eAT +eAT oxy oxy lKt @@ -48231,33 +48231,33 @@ xYV fHW fHW fHW -ncv -ciR +rLM +lQn mLm -nhY -fQX -dfE -kPj +hEZ +cgg +oyc +jzc mLm mLm mLm -aFP -tpc -thm -lfk -aFP +usC +iRK +cFm +yjY +usC ixp ixp ixp -bCa -eiP -eiP -iDz -eiP -qxA -bCa -ftF -ftF +wHS +oVh +oVh +eBA +oVh +hNX +wHS +fYu +fYu aVf aDB aDB @@ -48375,11 +48375,11 @@ uvJ uvJ uvJ tFW -gwU -chm -chm -chm -gwU +lrb +glH +glH +glH +lrb tFW uvJ uvJ @@ -48438,10 +48438,10 @@ nsz qtl nsz xzi -nip -adK -amU -amU +osS +kKW +eAT +eAT oxy oxy lKt @@ -48460,28 +48460,28 @@ eul mLm mLm mLm -hbu +dcC mLm mLm -knS -aFP -aFP -iRw -aOd -nXZ -aFP -aFP -uQS +pnu +usC +usC +gmm +eKF +mNp +usC +usC +efG ixp -jXm -ebc -eHP -faZ -mHb -qxA -bCa -bCa -bCa +uma +eJv +fSs +iIv +cOE +hNX +wHS +wHS +wHS aVf bLd aDB @@ -48599,11 +48599,11 @@ uvJ uvJ klm aIU -iSz -hfR -mQJ -xbA -lch +xuu +dpH +lIz +rBT +rmW aIU ioW gNJ @@ -48662,11 +48662,11 @@ nsz nsz nsz nsz -nip -wmf -amU -amU -amU +osS +xfY +eAT +eAT +eAT oxy oxy lKt @@ -48681,28 +48681,28 @@ xYV bMd xYV eul -yjT -giP -yjT -sXX +qJR +ixd +qJR +cxS iwJ eul -anm -aFP -vRf -aFP -aFP -aFP -aFP -aFP -aFP -rlb -bCa -jTl -lpL -xGV -ebc -bWy +bil +usC +lhV +usC +usC +usC +usC +usC +usC +aHf +wHS +jem +dPX +dVf +eJv +pqS orc orc orc @@ -48822,13 +48822,13 @@ uvJ uvJ uvJ tFW -ejY -nuH -eBH -eBH -eBH -oqz -gwU +sCU +xGn +mQN +mQN +mQN +psF +lrb hLe gNJ iaO @@ -48849,16 +48849,16 @@ gGS gGS gGS gGS -tPE -sma -thC -uWB -fro -fro -uWB -fro -fvm -cyF +ugk +mmU +iZn +gkB +qNa +qNa +gkB +qNa +gDo +umM agr fxy fxy @@ -48883,15 +48883,15 @@ qtl nsz nsz nsz -nip -nip -nip -nip -lsV -amU -amU -amU -amU +osS +osS +osS +osS +omg +eAT +eAT +eAT +eAT oxy lKt rls @@ -48905,27 +48905,27 @@ xYV aPh xYV sKY -qOu -kWG -kWG -kWG -soa -jry -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -qYi -bCa -ccK -ftF -ftF -ftF +jwK +pXV +pXV +pXV +apE +uDE +usC +usC +usC +usC +usC +usC +usC +usC +usC +hJN +wHS +fAe +fYu +fYu +fYu orc orc jUO @@ -49046,13 +49046,13 @@ uvJ uvJ uvJ acW -tmT -oqz -eBH -eBH -eBH -qnH -vnG +hOd +psF +mQN +mQN +mQN +dqp +ihl ioW gNJ iaO @@ -49073,7 +49073,7 @@ gGS gGS gGS gGS -bXf +oGA qSw qSw qSw @@ -49082,7 +49082,7 @@ qSw qSw qSw qSw -tED +swW fxy fxy xvU @@ -49107,15 +49107,15 @@ nsz nsz nsz nsz -luq -amU -amU -amU -amU -amU -amU -amU -amU +muL +eAT +eAT +eAT +eAT +eAT +eAT +eAT +eAT oxy eul eul @@ -49129,25 +49129,25 @@ xYV bMd xYV sKY -kWG -kWG -ljH -kWG -soa -jry -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -rlb -bCa -ufF -bCa +pXV +pXV +cli +pXV +apE +uDE +usC +usC +usC +usC +usC +usC +usC +usC +usC +aHf +wHS +jSl +wHS orc orc orc @@ -49270,13 +49270,13 @@ uvJ uvJ uvJ acW -ejY -oqz -eBH -eBH -eBH -oqz -dhe +sCU +psF +mQN +mQN +mQN +psF +uQG pds gNJ iaO @@ -49290,23 +49290,23 @@ iaO gGS gGS gGS -err -pnG +rFe +iWh gGS gGS gGS gGS gGS -bgv -wkz -vLc -rts -hOP -hOP -hVL -vLc -vLc -rPQ +nrA +eeh +iOq +cjt +kOZ +kOZ +dRY +iOq +iOq +sLa agr fxy fxy @@ -49331,16 +49331,16 @@ nsz nsz nsz nsz -luq -mSo -amU -amU -amU -amU -amU -dAK -amU -amU +muL +mEU +eAT +eAT +eAT +eAT +eAT +wQw +eAT +eAT eul fFc xYV @@ -49359,22 +49359,22 @@ gVK gVK gVK eul -oMh -aFP -aFP -aFP -aFP -aFP -aFP -aFP -asu +ygG +usC +usC +usC +usC +usC +usC +usC +cAy ixp -bCa +wHS orc -oUx +vwq orc -rJA -vBP +irV +wYY jUO jOZ ezX @@ -49494,13 +49494,13 @@ uvJ uvJ uvJ acW -tmT -oqz -eBH -eBH -eBH -oqz -xxg +hOd +psF +mQN +mQN +mQN +psF +eXZ tFW gNJ nwZ @@ -49551,20 +49551,20 @@ agr yid hOq nsz -luq -nip -nip -nip -nip -amU -amU -amU -amU -ozx -amU -amU -amU -amU +muL +osS +osS +osS +osS +eAT +eAT +eAT +eAT +mGM +eAT +eAT +eAT +eAT sKY xYV xYV @@ -49576,7 +49576,7 @@ dkT xYV bMd xYV -pFi +jsk xYV eul oGs @@ -49584,21 +49584,21 @@ cbZ cbZ oGs jJc -aFP -aFP -aFP -aFP -aFP -aFP -aFP +usC +usC +usC +usC +usC +usC +usC sXF orc -kSc +nEv orc rLB rLB rLB -bCp +iSJ jUO jOZ ezX @@ -49718,13 +49718,13 @@ uvJ uvJ uvJ tFW -dhe -oqz -eBH -eBH -eBH -oqz -ejY +uQG +psF +mQN +mQN +mQN +psF +sCU acW gNJ dih @@ -49741,9 +49741,9 @@ gGS jcy gGS gGS -err -kQO -err +rFe +dJD +rFe tEA gGS kvQ @@ -49776,19 +49776,19 @@ fSd jHz jHz oxy -amU -amU -amU -amU -amU -amU -rOo -amU -amU -amU -amU -amU -amU +eAT +eAT +eAT +eAT +eAT +eAT +odD +eAT +eAT +eAT +eAT +eAT +eAT sKY xYV xYV @@ -49804,25 +49804,25 @@ xYV xYV xYV sKY -cjO -rJA -vBP +kDV +irV +wYY sXF ttG -aFP -wXA +usC +xNx ttG -aFP -wXA +usC +xNx ttG sXF jUO jUO -szB -skN -uvC -skN -bCp +dAw +tjY +yhJ +tjY +iSJ aLH jOZ gTy @@ -49942,13 +49942,13 @@ uvJ uvJ uvJ klm -eCR -oqz -eBH -eBH -eBH -oqz -weW +gPK +psF +mQN +mQN +mQN +psF +hsS tFW nyx cZD @@ -50001,18 +50001,18 @@ gDp gDp oxy oxy -amU -amU -tcL -tcL -amU -ewS -amU -amU -amU -amU -amU -amU +eAT +eAT +mYh +mYh +eAT +qQp +eAT +eAT +eAT +eAT +eAT +eAT eul fFc xYV @@ -50028,26 +50028,26 @@ xYV xYV xYV lVq -hqZ +acM rLB -pTO -kve -rJA -rJA -rJA -lWj -rJA -rJA -rJA -klc -rJA -rJA -ltm +wPG +jLe +irV +irV +irV +awk +irV +irV +irV +fEs +irV +irV +gRZ rLB rLB rLB -bCp -vBP +iSJ +wYY jOZ jUO ezX @@ -50167,18 +50167,18 @@ uvJ klm klm klm -cXr -mVX -mVX -mVX -cXr +aWw +twf +twf +twf +aWw klm klm tFW rIX sEs iaO -mGX +fga iaO iaO uvJ @@ -50225,17 +50225,17 @@ qTs agr agr oxy -amU -amU -amU -amU -amU -icO -dAK -amU -amU -tyx -tyx +eAT +eAT +eAT +eAT +eAT +ajr +wQw +eAT +eAT +rRj +rRj pLs ioa ioa @@ -50252,26 +50252,26 @@ lhX qZU eul eul -eic -lLB -lLB -mRf -kyX -blk -tHt -blk -blk -blk -skN -bCp -kyX -skN -vUL -kyX -skN -uvC -bCp -bCp +rPP +sBH +sBH +uYO +sBu +cai +lRh +cai +cai +cai +tjY +iSJ +sBu +tjY +byk +sBu +tjY +yhJ +iSJ +iSJ jOZ jOZ gTy @@ -50391,11 +50391,11 @@ uvJ tFW jMp aBa -gFa -lKj -lKj -lKj -aXZ +fcm +atl +atl +atl +jrt kma eCO tFW @@ -50449,16 +50449,16 @@ agr agr agr pYT -amU -dAK -amU -amU -amU -amU -amU -amU -tyx -tyx +eAT +wQw +eAT +eAT +eAT +eAT +eAT +eAT +rRj +rRj pLs pLs jFX @@ -50479,23 +50479,23 @@ jUO jUO jUO aLH -szB -vUL +dAw +byk rLB -skN +tjY rLB -skN +tjY rLB -uvC -bCp -nMb +yhJ +iSJ +fKK rLB rLB rLB rLB rLB -bCp -bCp +iSJ +iSJ jUO jOZ jUO @@ -50673,15 +50673,15 @@ agr iGU agr pYT -amU -amU -tyx -tyx -amU -amU -amU -tyx -tyx +eAT +eAT +rRj +rRj +eAT +eAT +eAT +rRj +rRj pLs pLs jFX @@ -50703,23 +50703,23 @@ jUO gQe jUO fIk -szB -skN +dAw +tjY rLB -uvC +yhJ uGq -kyX +sBu rLB -kyX -bCp -nMb -uvC -skN -uvC -skN -vUL -bCp -bCp +sBu +iSJ +fKK +yhJ +tjY +yhJ +tjY +byk +iSJ +iSJ jUO jOZ jUO @@ -50831,28 +50831,28 @@ sqU wYK aVH cIo -lRR -lRR -kHv +cdm +cdm +ryD jLd dsK dsK sRJ -klk +jhd sTK hgx hgx hgx ulr -tWg +iBd fFU dsK -vOc -hTJ -hTJ -hTJ -hTJ -hTJ +bIX +yfo +yfo +yfo +yfo +yfo acW klm uvJ @@ -50863,11 +50863,11 @@ gGS gGS wxX lor -tiG +vUB gJa uNa wRo -oVe +dFW tdY aJX kvQ @@ -50901,9 +50901,9 @@ pYT pYT pYT oxy -amU -amU -amU +eAT +eAT +eAT pLs pLs pLs @@ -50923,27 +50923,27 @@ xYV xYV xYV rls -rJA -vBP +irV +wYY jUO jUO -szB -skN +dAw +tjY rLB -skN +tjY hUO -skN +tjY rLB -vUL -bCp -nMb +byk +iSJ +fKK rLB usf rLB rLB rLB -bCp -bCp +iSJ +iSJ jUO jOZ jOZ @@ -51081,9 +51081,9 @@ tRv klm tFW fIu -fME -nlh -nlh +apj +qkk +qkk mPA yij qmA @@ -51125,9 +51125,9 @@ agr agr agr oxy -xaL -xaL -xaL +jsb +jsb +jsb pLs jFX jFX @@ -51147,27 +51147,27 @@ rls rls rls eul -sBD -bCp +dnz +iSJ jUO pOo -szB -uvC +dAw +yhJ rLB -uvC +yhJ rLB -kyX +sBu rLB -skN -bCp -kyX -skN -skN -skN -uvC -kyX -bCp -bCp +tjY +iSJ +sBu +tjY +tjY +tjY +yhJ +sBu +iSJ +iSJ jUO jUO jUO @@ -51289,8 +51289,8 @@ iaO iaO hgx aHd -hTJ -sRR +yfo +inF gOD wOA uOy @@ -51310,13 +51310,13 @@ pwE pwE pwE wjK -dKv +mzD ple -vsV -qsE -fGc +bHa +wbx +qHr rkH -mGo +bTe pKf iLN ijT @@ -51349,9 +51349,9 @@ rls rls rls eul -uSH -wJD -uSH +xrC +hpt +xrC ioa ioa ioa @@ -51363,43 +51363,43 @@ jFX jFX jFX eul -deN +eFC vzK -deN +eFC eul -isn -rJA -rJA -rJA -ltm -pTO -rJA -rJA -ltm +xCI +irV +irV +irV +gRZ +wPG +irV +irV +gRZ rLB rLB rLB -isn +xCI rLB rLB rLB -pTO -rJA -rJA -rJA -rJA -rJA -rJA -rJA -isn +wPG +irV +irV +irV +irV +irV +irV +irV +xCI jUO jUO jUO jUO kqo -xjr +tfE jij -aeE +oZD hHQ bLd hma @@ -51513,16 +51513,16 @@ iaO hgx hgx nvs -ovA -qFn +ttY +thR dsK pjm lKp iFa -dVl +bkj hgx hgx -dVl +bkj abo dsK iaO @@ -51534,13 +51534,13 @@ pwE pwE pwE pwE -sOZ +ltx ple -qsE -eYO -qsE +wbx +gWO +wbx rkH -eiq +iAn pKf gGS kvQ @@ -51569,17 +51569,17 @@ bGL agr agr rls -cKN -snE -uSH -uSH -uSH +nWW +phs +xrC +xrC +xrC xYV -uSH -glG -uSH -rBR -vBT +xrC +lBT +xrC +bOI +iIm ioa jFX jFX @@ -51587,11 +51587,11 @@ jFX jFX kqo jOZ -szB +dAw rLB -pTO -rJA -ltm +wPG +irV +gRZ gmI fgV hyX @@ -51615,15 +51615,15 @@ oao cTj fgV gmI -bCp +iSJ jUO jUO jUO jUO jUO -rkC +mDX wKl -nnR +skD hHQ gMz hJh @@ -51737,8 +51737,8 @@ hgx hgx hgx fVB -lGF -eOU +ovj +cXT jEY gGl tRv @@ -51758,13 +51758,13 @@ pwE pwE pwE oCM -wEn +dDx ple -cuV -qsE -lMe +fuu +wbx +cNn rkH -ilH +vnF pKf gGS kvQ @@ -51793,17 +51793,17 @@ agr agr agr rls -rDK -uSH -uSH -uSH +uZU +xrC +xrC +xrC xYV xYV xYV -uSH -uSH -uSH -kTS +xrC +xrC +xrC +dtl ioa jFX jFX @@ -51811,7 +51811,7 @@ jFX rty ezX jOZ -szB +dAw jcV rLB rLB @@ -51839,15 +51839,15 @@ gmI tSe gmI kCp -bCp +iSJ jUO jUO jUO jUO jUO -lFK +kMH qCG -ilq +jgS bLd bLd hHQ @@ -51977,9 +51977,9 @@ lKp tFW tFW fIu -ozA -dyI -dyI +pzh +oZQ +oZQ uHf qvf aks @@ -51990,7 +51990,7 @@ dEk wNw dTw pKf -ont +suh kvQ vMB vMB @@ -52017,17 +52017,17 @@ agr agr hAI rls -xkq -uSH -uSH +mir +xrC +xrC nsi xYV -rpF +kpY xYV nsi -uSH -uSH -wJD +xrC +xrC +hpt ioa jFX jFX @@ -52035,11 +52035,11 @@ jFX ezX kqo jOZ -eic -lLB -lLB -lLB -jon +rPP +sBH +sBH +sBH +gXV emI gmI gmI @@ -52063,15 +52063,15 @@ gmI gmI gmI hdI -bCp +iSJ jUO jUO jUO jUO ezX -rks +pqY kwx -nnR +skD hJh hHQ kfV @@ -52175,28 +52175,28 @@ oYz aVH aVH fZT -ggM -ggM -ggM +bRb +bRb +bRb uvJ tFW tFW ulr -xeM +nhk gNJ abo tLC iaO uJU -gcP +twb mgr dsK -olG -lGF -lGF -lGF -lGF -lGF +pEM +ovj +ovj +ovj +ovj +ovj tFW tFW uvJ @@ -52207,11 +52207,11 @@ gGS gGS cXP hxk -xci +bDe ros uNa lCt -nlx +nuP dqG mQU gGS @@ -52241,17 +52241,17 @@ gFN gFN eul eul -syP -uSH +kpB +xrC xYV esM cvp -bKg +fTM xYV vld xYV -buH -fIj +gET +pUD ioa ioa jFX @@ -52263,7 +52263,7 @@ jOZ jOZ jOZ jOZ -szB +dAw mdp gmI gmI @@ -52287,15 +52287,15 @@ gmI gmI gmI nbO -bCp +iSJ jUO jUO jUO jUO ezX -hCu +jJE jij -gPl +tVE hHQ bLd kQi @@ -52463,20 +52463,20 @@ oad vPJ oad gFN -deN -uSH -uSH +eFC +xrC +xrC xYV lvq xAZ xYV -rVj +pek xYV -sYU +bbr xYV xYV -uSH -azB +xrC +xKr ioa jFX rty @@ -52487,7 +52487,7 @@ jUO jUO dDj jOZ -szB +dAw kDX gmI gmI @@ -52511,7 +52511,7 @@ gmI gmI gmI nzq -bCp +iSJ jUO jUO jUO @@ -52688,19 +52688,19 @@ gFN gFN gFN hBy -uSH +xrC xYV xYV xYV whT xYV -nkE +eDu xYV -sOP +sfI lvq -uSH -bXM -wfK +xrC +hQT +uhW ioa jFX jFX @@ -52711,7 +52711,7 @@ tBg jUO jUO jOZ -szB +dAw wGF gmI gmI @@ -52735,7 +52735,7 @@ gmI gmI gmI kCp -bCp +iSJ jUO jOZ jOZ @@ -52854,13 +52854,13 @@ uvJ uvJ tFW tFW -olG -lGF -lGF -lGF -lGF -lGF -wcu +pEM +ovj +ovj +ovj +ovj +ovj +gir klm klm gNJ @@ -52876,7 +52876,7 @@ gGS gGS gGS gGS -pnG +iWh gGS gGS gGS @@ -52911,20 +52911,20 @@ gFN gFN gFN gFN -deN -uSH -uSH +eFC +xrC +xrC xYV xYV rjs xYV -nrY +nQX cvp -bKg +fTM xYV xYV -uSH -kPu +xrC +wKZ ioa jFX jFX @@ -52935,7 +52935,7 @@ tdL gxp jUO jOZ -szB +dAw emI gmI gmI @@ -52959,7 +52959,7 @@ gmI gmI gmI hdI -bCp +iSJ jUO jOZ jUO @@ -53087,7 +53087,7 @@ hgx pQM klm uvJ -wWU +slS iaO iaO iaO @@ -53137,17 +53137,17 @@ gFN xDn eul eul -uuf -net +bfi +uBf xYV ycY xYV -otM +dOF lvq nsi xYV -uSH -uSH +xrC +xrC ioa ioa jFX @@ -53155,11 +53155,11 @@ jFX jFX ezX gTy -dHa +lkM xYG gxp jOZ -szB +dAw mdp gmI gmI @@ -53183,7 +53183,7 @@ gmI gmI gmI nbO -bCp +iSJ jUO jOZ jUO @@ -53361,17 +53361,17 @@ gFN gFN gFN rls -ies -uSH -uSH +ruO +xrC +xrC vlS xYV -nap +lEy xYV jwI -uSH -uSH -gUm +xrC +xrC +nHz ioa jFX jFX @@ -53379,11 +53379,11 @@ jFX jFX kqo rty -dHa +lkM xYG ybC jOZ -szB +dAw kDX gmI gmI @@ -53407,7 +53407,7 @@ gmI gmI gmI nzq -bCp +iSJ jOZ jOZ jUO @@ -53585,17 +53585,17 @@ gFN gFN gFN rls -ies -uSH -uSH -uSH +ruO +xrC +xrC +xrC xYV xYV xYV -uSH -uSH -uSH -esc +xrC +xrC +xrC +lfi ioa jFX jFX @@ -53607,7 +53607,7 @@ ezc xYG ybC jOZ -szB +dAw wGF gmI gmI @@ -53631,7 +53631,7 @@ gmI gmI gmI kCp -bCp +iSJ jOZ jUO jUO @@ -53762,7 +53762,7 @@ dsK fzi iaO iaO -qQi +wpm qkS iaO gGS @@ -53809,17 +53809,17 @@ gFN ccP gFN rls -rmM -uSH -uSH -buH -uSH +hzG +xrC +xrC +gET +xrC xYV -uSH -nQJ -bAI -tpt -qSD +xrC +frj +mZv +qpP +oVo ioa jFX jFX @@ -53831,7 +53831,7 @@ jUO ezc aod jOZ -szB +dAw emI gmI gmI @@ -53855,7 +53855,7 @@ gmI gmI gmI hdI -bCp +iSJ jOZ jZC gTy @@ -54007,7 +54007,7 @@ lcb nFg lcb fmM -aFI +rBD hNE hNE hNE @@ -54037,9 +54037,9 @@ rls rls rls eul -uSH -uSH -uSH +xrC +xrC +xrC eul oGs oGs @@ -54055,7 +54055,7 @@ rty jUO gQe jOZ -szB +dAw mdp gmI gmI @@ -54079,7 +54079,7 @@ gmI tSe gmI nbO -bCp +iSJ jOZ jUO jUO @@ -54268,8 +54268,8 @@ eul dUT qLP qLP -pHB -iYj +aro +rbr uro jFX jFX @@ -54279,7 +54279,7 @@ kqo jUO jUO jOZ -szB +dAw gmI iLy nuF @@ -54303,7 +54303,7 @@ gJe vBD iLy gmI -bCp +iSJ jOZ jUO jUO @@ -54459,7 +54459,7 @@ hNE hNE hNE hNE -plj +mfX hNE hNE pnM @@ -54492,9 +54492,9 @@ qLP hfy qLP uHe -aip -jkS -rzX +kte +fBd +daC jFX jFX jFX @@ -54503,31 +54503,31 @@ rty lMO jUO jOZ -isn -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -isn -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -isn +xCI +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +xCI +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +xCI jOZ jUO gTy @@ -54655,7 +54655,7 @@ iaO hgx hgx hgx -iwH +ljA klm uvJ iaO @@ -54716,9 +54716,9 @@ qLP hCG ksI qLP -aip -jkS -jkS +kte +fBd +fBd jFX jFX jFX @@ -54879,7 +54879,7 @@ wOA iaO hgx hgx -oSe +dPU klm uvJ uvJ @@ -54909,7 +54909,7 @@ wED qIM sQd hNE -enN +qYA hNE hNE kvQ @@ -54940,8 +54940,8 @@ qLP qLP fNO qLP -lsm -cRn +oZi +jdm jFX jFX qLP @@ -55103,7 +55103,7 @@ sTl iaO hgx hgx -wcD +qxm pds uvJ uvJ @@ -55327,7 +55327,7 @@ gGl iaO hgx hgx -tuX +sDI pds uvJ uvJ @@ -55359,7 +55359,7 @@ lcb lCS fmM hNE -enN +qYA kvQ vMB vMB @@ -55420,9 +55420,9 @@ jFX jFX jij rty -cjO -cLd -kCg +kDV +kaH +kAc gTy plV jFX @@ -55551,7 +55551,7 @@ iaO hgx hgx hgx -vaV +aTF pds uvJ uvJ @@ -55775,7 +55775,7 @@ hgx hgx hgx hgx -occ +jcn klm uvJ uvJ @@ -55868,9 +55868,9 @@ jFX lUf rty mPH -iED -raw -wGk +yjq +nwd +aeb rty rty lQO @@ -56031,7 +56031,7 @@ lCS lCS fmM hNE -nul +sXx hNE eue tFF @@ -56454,7 +56454,7 @@ uvJ uvJ gGS gGS -pnG +iWh gGS jDs gGS @@ -56483,7 +56483,7 @@ hNE hNE hNE hNE -sUd +wVW gTH rYg vMB @@ -56492,7 +56492,7 @@ lEU fQL fQL xRe -aNy +wtU ipd gbt gFN @@ -56705,7 +56705,7 @@ lCS fmM hNE hNE -tgQ +eEW hNE ipd gTH @@ -56714,7 +56714,7 @@ ieK fQL nRg gTH -dTE +rXe gTH gTH ipd @@ -56933,10 +56933,10 @@ hNE hNE ipd gTH -vqp +iUq gTH gTH -aNy +wtU gTH gTH gTH diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index 50369891a9..5321acdbc9 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -14,32 +14,31 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"aaj" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"aaz" = ( -/obj/item/tool/wrench{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) "aaG" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) -"aaR" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) +"aaZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"abe" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"abj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "abu" = ( /obj/item/stack/sheet/wood, /obj/item/shard{ @@ -60,33 +59,37 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) +"abH" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/exterior/lz1_near) "abL" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"abO" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/mirror{ - pixel_y = -28 +"ach" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"acY" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"abR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"acj" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"adf" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "adw" = ( /turf/closed/wall/r_wall, /area/varadero/interior/cargo) +"adz" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "adC" = ( /obj/item/clipboard{ pixel_x = 4; @@ -94,65 +97,29 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"aeg" = ( -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 - }, +"adN" = ( /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"aej" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"aek" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/varadero/interior/medical) +"aed" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "aer" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"aeD" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"aeN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"afa" = ( -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) "afg" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 }, /area/varadero/interior/hall_N) -"afo" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) -"afw" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 - }, -/obj/structure/flora/bush/desert{ - pixel_y = 14 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_NW) "agi" = ( /obj/structure/window/reinforced{ dir = 4; @@ -181,17 +148,18 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"agm" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"ago" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"agr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/varadero/interior/electrical) +"agq" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "agM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/secure{ @@ -204,18 +172,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/electrical) -"agR" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) "ahb" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -228,42 +184,54 @@ "ahg" = ( /turf/closed/wall, /area/varadero/interior/dock_control) -"aij" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" +"ahz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"aiw" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"ahB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 + dir = 5 }, -/obj/structure/prop/static_tank{ - pixel_y = 8 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"ajw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"ajI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +/area/varadero/interior/hall_NW) +"ahG" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) +"ahL" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"ahV" = ( +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"aiq" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"aiX" = ( +/obj/structure/cryofeed, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"ajc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"akd" = ( +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/hall_N) "akk" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -282,51 +250,55 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"akv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +"akt" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 12 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"akx" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) -"akz" = ( -/obj/structure/window/framed/colony/reinforced, +/area/varadero/interior/hall_NW) +"akI" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"akE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"akK" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/area/varadero/exterior/lz1_near) +"akJ" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/carpet, +/area/varadero/interior/library) +"akM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"akU" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Engine Room" }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"akN" = ( -/obj/structure/machinery/light{ +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"alp" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"alb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"alj" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "alD" = ( /obj/structure/filtration/coagulation_arm{ indestructible = 1; @@ -343,16 +315,19 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"alV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Main Hallway" +"alJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"alV" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"amg" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) +/area/varadero/interior/administration) "ami" = ( /obj/structure/prop/dam/crane/damaged{ dir = 4 @@ -360,11 +335,28 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"ank" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"amC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Research Laboratory"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"amE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"amQ" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/monsoon) +"anm" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "anA" = ( @@ -373,29 +365,26 @@ /obj/item/storage/box/drinkingglasses, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"anS" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aoh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" +"anK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"aoj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"anT" = ( +/obj/item/device/camera, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "aoC" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/comms2) @@ -403,10 +392,13 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/research) -"api" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"aoJ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"aph" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) "apj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -414,10 +406,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"aps" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) "apG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, @@ -431,13 +419,38 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) +"aqA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = -4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "aqK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/structure/machinery/flasher_button{ + id = "sec_checkpoint"; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 36 + }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "ara" = ( /turf/open/floor/wood, /area/varadero/interior/court) +"arz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "arF" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/ceramic_plate, @@ -447,163 +460,211 @@ /obj/item/tool/lighter/zippo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"arI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) -"asy" = ( -/obj/structure/bed/chair{ - dir = 4 +"arR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/obj/item/storage/firstaid/rad{ + pixel_y = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"asB" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "asG" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, +/area/varadero/interior/security) +"asH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks{ + pixel_x = -7; + pixel_y = 8 }, -/obj/effect/landmark/xeno_spawn, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"atb" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/obj/item/tool/lighter/zippo/black{ + pixel_x = -5; + pixel_y = 7 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"atc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/item/ashtray/plastic{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/hall_SE) -"atn" = ( -/obj/structure/bed/chair{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"atN" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"ats" = ( -/obj/structure/pipes/unary/freezer{ - dir = 8; - icon_state = "freezer_1" - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"atU" = ( +"atZ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"auw" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"avb" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"aux" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/disposals) -"auA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/storm_siren{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"avB" = ( +/obj/structure/window/reinforced{ dir = 8; - pixel_x = 3 + health = 80 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"auQ" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/window/reinforced{ dir = 4; - climb_delay = 1; - layer = 2.99 + health = 80 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"auT" = ( -/obj/structure/plasticflaps/mining, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/weapon/gun/rifle/sniper/svd, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"avD" = ( +/turf/closed/wall/huntership, +/area/varadero/interior_protected/vessel) +"avH" = ( +/turf/open/floor/darkgreencorners2/west, +/area/varadero/interior/hall_SE) +"avX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/gm/coast/beachcorner/north_east, +/area/varadero/exterior/comms4) +"awc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"avn" = ( -/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/static_tank/water{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"awm" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"avD" = ( -/turf/closed/wall/huntership, -/area/varadero/interior_protected/vessel) -"avX" = ( +/area/varadero/interior/maintenance/north) +"awC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/coast/beachcorner/north_east, -/area/varadero/exterior/comms4) -"awm" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "awJ" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"axf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"axB" = ( -/obj/structure/bed/chair{ - dir = 1 +"axb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"axK" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/marine_law{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"axS" = ( +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/morgue) "axY" = ( /obj/structure/bed/chair/comfy/lime, /turf/open/floor/wood, /area/varadero/interior/research) +"ayb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"ayj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "ayF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"aza" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/co2_cartridge{ - pixel_x = 13; - pixel_y = 7 +"ayL" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"ayY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"azt" = ( -/obj/structure/xenoautopsy/tank/larva, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"azd" = ( +/obj/structure/curtain/red, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"azE" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 +"azy" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"azz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"azA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"azR" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "aAg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -611,95 +672,80 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"aAi" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aAo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 +"aBg" = ( +/mob/living/simple_animal/cat{ + desc = "A domesticated, feline pet. The collar says 'Orion'."; + name = "Orion"; + real_name = "Orion" }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"aAq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"aAD" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"aBq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -11; + pixel_y = 16 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"aBs" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -9; + pixel_y = 13 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "aBK" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers{ icon_state = "brflowers_3" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"aBR" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"aCc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"aCx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) +"aBX" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"aCj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"aCP" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "aCW" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"aDi" = ( -/obj/item/device/multitool, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aDw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +"aDt" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"aDv" = ( +/obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"aDD" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"aEq" = ( -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"aEe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"aER" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"aES" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"aEr" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "aFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -712,15 +758,44 @@ "aFt" = ( /turf/closed/wall, /area/varadero/interior_protected/maintenance/south) -"aFQ" = ( +"aFL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"aFO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"aFQ" = ( +/obj/item/paper, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"aGe" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "aGr" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"aGs" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "aGx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -730,88 +805,104 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"aGz" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/largecrate/random/mini/wooden{ - desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." +"aGC" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "aGM" = ( -/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) +"aHc" = ( /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"aHA" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, +"aHv" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"aHL" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/pontoon_beach/lz) "aHM" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/wood, /area/varadero/interior/security) -"aId" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 +"aIl" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aIt" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"aIu" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/maintenance) -"aIF" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8 + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"aIL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"aIv" = ( +/obj/structure/prop/dam/van{ + desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; + icon_state = "crawler_crate_wy"; + name = "crawler"; + pixel_y = 7 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"aJi" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"aIB" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -10; - pixel_y = 15 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"aIM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"aIP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"aJy" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"aJb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"aJd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "aJF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -822,19 +913,59 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"aJM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "aJP" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, /area/varadero/interior/library) -"aJZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/hall_SE) +"aKi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"aKl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"aKt" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"aKw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "aKA" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + layer = 3.1; + pixel_x = 8; + pixel_y = 21 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + layer = 3.2; + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/varadero/interior/administration) "aKJ" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -844,97 +975,99 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"aKL" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"aKQ" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - name = "barge float"; - desc = "A supportive lattice connected to two floating pontoons." - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"aKW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"aLK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"aMk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, +"aKK" = ( /turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"aMr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/area/varadero/interior/administration) +"aLv" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"aMz" = ( +/turf/open/floor/shiva/redcorners/west, +/area/varadero/interior/security) "aMC" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"aMF" = ( -/obj/structure/surface/table/reinforced/prison, +"aMU" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"aMY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"aMG" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva/wred/northeast, -/area/varadero/interior/medical) -"aNC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/interior/comms1) +"aNb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, /turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) -"aND" = ( +"aNl" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"aNN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"aNR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/varadero/interior/cargo) +"aNm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/electrical) +"aNn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"aNt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/morgue) +"aNv" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"aNV" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"aOa" = ( +/obj/structure/bed/chair, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) "aOg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"aOu" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"aOw" = ( -/obj/structure/closet/crate, -/obj/item/clothing/head/helmet, +"aOt" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/eastbeach) +"aOx" = ( +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/electrical) "aOG" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -1; @@ -944,82 +1077,75 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"aON" = ( +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "aPe" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aPt" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aPL" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"aQi" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"aQf" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"aQn" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "aQq" = ( /obj/structure/window/framed/colony/reinforced/hull, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"aRf" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"aRp" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"aRH" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"aRU" = ( -/obj/effect/landmark/survivor_spawner, +"aRs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"aRZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/area/varadero/interior/hall_N) +"aRz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = -16; - pixel_y = 13 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"aSc" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"aSd" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"aRN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"aRV" = ( +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"aRW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "aSe" = ( /obj/item/reagent_container/food/snacks/birthdaycakeslice, /obj/effect/decal/cleanable/blood/drip, @@ -1032,48 +1158,31 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"aSk" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) "aSt" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"aSv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"aSK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"aSM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"aSS" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/sosjerky, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"aSw" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) "aSU" = ( /obj/structure/catwalk, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance/north) +"aTK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"aUb" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"aUq" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "aUA" = ( /obj/structure/prop/rock/brown, /obj/structure/prop/invuln/lattice_prop, @@ -1089,112 +1198,132 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"aUF" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - layer = 3.1; - pixel_x = 8; - pixel_y = 21 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - layer = 3.2; - pixel_x = 8; - pixel_y = 10 +"aUV" = ( +/obj/structure/surface/table, +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 }, -/turf/open/floor/wood, -/area/varadero/interior/administration) -"aUT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = -1 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"aVr" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"aVa" = ( +/obj/structure/bedsheetbin, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"aVb" = ( +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) -"aVB" = ( -/obj/structure/closet/crate/construction, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"aVG" = ( +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"aVg" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"aVl" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"aVA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"aVH" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"aVI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) +/area/varadero/interior/hall_NW) "aVQ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, /area/varadero/interior/hall_N) -"aVS" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"aWs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"aWt" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"aWZ" = ( +"aWj" = ( +/obj/item/prop/helmetgarb/bullet_pipe{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/fertilizer/l4z{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"aWk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"aWL" = ( /obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "aXb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) +"aXs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "aXA" = ( /obj/structure/largecrate/supply/medicine/iv, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"aXU" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"aYA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) +"aXK" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/toy/plush/farwa, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"aYc" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"aZp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "aZv" = ( /obj/structure/bed/chair{ dir = 4; @@ -1202,56 +1331,62 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"aZA" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"bae" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) +"baj" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"aZF" = ( +/obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) -"aZI" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/mess) -"aZK" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"bad" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"baB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"bai" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"baj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"baF" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"baQ" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - name = "LZ1 Pontoon Dock computer" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_console) -"bar" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random{ - pixel_y = 5 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"baY" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/green{ + pixel_x = -4; + pixel_y = -4 }, -/obj/item/clothing/glasses/science{ - pixel_y = 9 +/obj/item/clothing/under/shorts/blue{ + pixel_x = -2; + pixel_y = -2 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/red{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "bbt" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand_white/layer1, @@ -1260,26 +1395,30 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"bbH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"bbI" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "bbK" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bbT" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, +"bbU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"bbV" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"bbZ" = ( +/area/varadero/exterior/comms4) +"bcB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"bdh" = ( /obj/structure/catwalk, /obj/structure/platform{ layer = 2.15; @@ -1288,73 +1427,46 @@ }, /turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) -"bcz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray/tricordrazine{ - pixel_x = -14; - pixel_y = 2 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"bcE" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 +"bdC" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"bcP" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"bdj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - name = "Television set"; - network = null; - pixel_x = -3; - pixel_y = 6 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/wood, -/area/varadero/interior/research) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "bdH" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/north_research) -"bdT" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"beI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"beo" = ( +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"beu" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/light{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "beK" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/lz2_near) -"beL" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +"beS" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/hall_NW) "bfg" = ( /obj/structure/surface/table, /obj/item/ashtray/plastic, @@ -1369,91 +1481,85 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"bfr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"bfx" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"bfT" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bga" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"bfv" = ( +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -13; + pixel_y = 12 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"bfx" = ( +/obj/structure/prop/rock/brown, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"bfB" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bge" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "bgE" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"bgM" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"bhz" = ( -/obj/structure/closet/crate/secure/weapon, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"bhD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"bgF" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"bhp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"bhv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" + icon_state = "p_stair_full" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"bhB" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = 15; + pixel_y = -9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "bhF" = ( /obj/structure/sign/safety/water{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"bhZ" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +"bhJ" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bhU" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "bio" = ( /obj/structure/surface/table/woodentable, /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/chapel) -"biL" = ( -/obj/structure/largecrate/random/case/double{ - anchored = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"biO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/bayonet/co2{ - pixel_y = 7 - }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "biS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1466,133 +1572,134 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"biX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) +"biW" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "bjC" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"bjR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_y = 5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"bjS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "bko" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) +"bkq" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "bkx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -13; + pixel_y = 11 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "bkM" = ( /turf/closed/wall, /area/varadero/interior/hall_SE) "bkP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"bkZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"bkX" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"bld" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"blh" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) "bls" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"blv" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"blD" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"blE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 6; - pixel_y = 9 +"blt" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, +/obj/item/tool/warning_cone, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bmm" = ( -/obj/item/trash/barcardine, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"bmr" = ( -/obj/structure/surface/table, -/obj/item/device/binoculars, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"bmG" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) +/area/varadero/exterior/pontoon_beach) "bmI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bmN" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) +"bni" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"bnl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "bnm" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/cargo) +"bno" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/med_large_stack, +/obj/item/trash/boonie, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "bnH" = ( /obj/structure/prop/dam/truck/damaged, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bnQ" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) -"bof" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"bnJ" = ( +/obj/structure/surface/table, +/obj/item/storage/wallet/random{ + pixel_y = 3 }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"bou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"boJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +/area/varadero/interior/maintenance/north) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1601,6 +1708,43 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"bqv" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"bqx" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"bqy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"bqI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random{ + pixel_y = 5 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 9 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"brc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"brI" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) "brT" = ( /turf/closed/wall/huntership/destructible, /area/varadero/interior_protected/vessel) @@ -1610,15 +1754,35 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"bsc" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "bsf" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bsk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bsO" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/cargo) +"btc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "bte" = ( /obj/structure/closet/crate/radiation, /obj/item/stack/sheet/mineral/phoron/medium_stack{ @@ -1635,11 +1799,45 @@ }, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"btQ" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, +"btk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"btm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/area/varadero/interior/hall_NW) +"btu" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"btz" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"btL" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "btU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -1647,96 +1845,101 @@ }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) +"btX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"btZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "bum" = ( /obj/structure/machinery/shower{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance) -"buq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) "bur" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, /area/varadero/interior/administration) -"buF" = ( -/obj/structure/disposalpipe/segment{ +"buw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/varadero/interior/administration) +"bvm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"bvB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "pipe-c" + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/disposals) -"buJ" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/shiva/blue/north, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) -"buU" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) -"bvw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"bwp" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/chunk, -/obj/item/trash/raisins, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"bwN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"bvI" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_NW) -"bxl" = ( -/obj/structure/largecrate/random{ - anchored = 1 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"bvO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"bxo" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"bvP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"bxq" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) -"bxI" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"bwg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"bxJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"bwY" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"bxe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_N) -"bxW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"byj" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/obj/item/device/flashlight, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"bxt" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "bys" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -1748,13 +1951,6 @@ /obj/item/folder/black, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"byD" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) "byF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1763,6 +1959,12 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"byQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "bzz" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1771,14 +1973,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bAz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"bzR" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "bAE" = ( /obj/structure/window/reinforced{ dir = 4; @@ -1810,6 +2011,22 @@ /obj/item/ammo_magazine/rifle/m4ra, /turf/open/floor/wood, /area/varadero/interior/bunks) +"bAK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"bBc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Disposals"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) "bBt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -1826,92 +2043,77 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"bCb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"bCl" = ( -/turf/open/floor/white, -/area/varadero/interior/laundry) -"bCp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"bCF" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"bCJ" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"bCU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"bDl" = ( -/obj/structure/machinery/door/window/northright{ - name = "Disposals Chute" - }, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) -"bDq" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"bDG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"bDT" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"bDW" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 +"bCg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"bEt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bEw" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +/area/varadero/interior/maintenance) +"bCz" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"bDe" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 7 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/area/varadero/exterior/lz1_near) +"bDt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"bDH" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"bDP" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"bDR" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"bEo" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/storage/belt/medical{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"bEG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"bEI" = ( +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/morgue) +"bEM" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"bEN" = ( +/turf/open/floor/shiva/wred/west, +/area/varadero/interior/medical) "bEY" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -1925,101 +2127,125 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) +"bFa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) "bFo" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bFp" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = 11; - pixel_y = 9 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = 10; - pixel_y = 20 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"bGd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"bFK" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"bGh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"bGu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "bGC" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall, /area/varadero/interior/dock_control) -"bGI" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 1; - name = "\improper Underground Command Center"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) "bGU" = ( /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bGV" = ( -/obj/structure/bed/chair/office/light{ +"bHk" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_3_1" +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 1 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"bGW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bHw" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"bHA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"bHZ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"bHt" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/red/southwest, +/obj/item/ammo_magazine/pistol{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol{ + pixel_x = 4 + }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) -"bIj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"bIi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance) +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/pontoon_beach/lz) "bIt" = ( /turf/closed/wall, /area/varadero/interior/technical_storage) -"bIR" = ( -/obj/item/toy/deck/uno{ - pixel_y = 6 +"bIX" = ( +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"bJd" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"bIS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"bJi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"bJo" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/turf/open/floor/white, +/area/varadero/interior/laundry) +"bJl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"bJD" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "bJH" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ @@ -2030,44 +2256,54 @@ "bJI" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) -"bLo" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"bKM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/technical_storage) +"bKS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "bLp" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/administration) -"bLt" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "bLB" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/chapel) -"bLJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"bLT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"bLO" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -7; + pixel_y = -11; + desc = "A chest... filled with the wildest riches!" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"bLU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "bLV" = ( /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"bMb" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"bMc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "bMf" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -2078,74 +2314,34 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) +"bMw" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "bMx" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"bMH" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"bMS" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"bMX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"bNa" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"bNb" = ( -/obj/structure/lamarr, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bNh" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"bNE" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"bNk" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/shiva/yellowfull/west, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) -"bNn" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, +"bNR" = ( +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"bNS" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"bNW" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 3; - pixel_y = 15; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"bOs" = ( +/area/varadero/interior/maintenance/security) +"bOm" = ( /obj/structure/filingcabinet{ density = 0; icon_state = "chestdrawer"; @@ -2160,42 +2356,63 @@ }, /turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) -"bOt" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"bOA" = ( +"bOw" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"bQd" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/red{ - pixel_x = -2; - pixel_y = -4 +/area/varadero/interior/hall_NW) +"bOM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"bOW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"bOY" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"bQE" = ( +/turf/open/floor/white, +/area/varadero/interior/security) +"bPd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"bQf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) +"bQi" = ( +/obj/effect/landmark/crap_item, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) "bQM" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/varadero/interior/security) +"bRc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"bRf" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2205,15 +2422,35 @@ "bRi" = ( /turf/open/floor/shiva, /area/varadero/interior/disposals) +"bRx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "bRS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"bRZ" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/electrical) +"bRX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/security, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"bSi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Armory"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "bSj" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -2225,6 +2462,15 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"bSp" = ( +/obj/structure/surface/table, +/obj/item/prop/helmetgarb/flair_uscm, +/obj/item/storage/box/uscm_mre{ + pixel_x = -4; + pixel_y = 13 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "bSu" = ( /obj/structure/closet/crate/supply, /obj/effect/spawner/random/attachment, @@ -2234,20 +2480,67 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"bTc" = ( +/turf/open/floor/white, +/area/varadero/interior/laundry) "bTf" = ( /obj/item/clothing/mask/rebreather, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"bTi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"bTp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"bTq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "bTA" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/records) -"bUS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"bTS" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) +"bUc" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"bUm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"bUu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "bUZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, @@ -2263,27 +2556,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bVw" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bVL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"bVv" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/area/varadero/interior/maintenance/research) "bVQ" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -2297,83 +2579,79 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"bVR" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "bVX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz1_near) -"bWf" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"bWv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"bWB" = ( -/obj/structure/sink{ - pixel_y = 15 +"bWa" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/obj/structure/mirror{ - pixel_y = 28 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"bWf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"bWC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"bWv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Lobby"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bWY" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"bXq" = ( +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"bXa" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"bXU" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"bYb" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"bYl" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 14 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"bXQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"bYs" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/varadero/exterior/lz1_near) -"bYx" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/item/storage/box/pillbottles{ + pixel_x = -4; + pixel_y = 7 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"bYp" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"bYB" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "bYO" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -2385,52 +2663,92 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"bZo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) "bZv" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"bZS" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) +"bZM" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"bZR" = ( +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "bZU" = ( /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"bZY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/court) "cak" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"caG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/suit/fire/firefighter{ - pixel_x = 3; - pixel_y = 7 +"caz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"caH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"caQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"cbA" = ( -/obj/item/tool/shovel, +"caT" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"caY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"cbG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/varadero/interior/comms1) +"cbd" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"cbH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "cbK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -2442,14 +2760,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"cbT" = ( +"ccg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) "ccp" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -2457,84 +2772,138 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"ccX" = ( -/obj/structure/machinery/power/apc/no_power/north, +"ccu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Underground Lavatory"; + req_access_txt = "100" + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/area/varadero/interior/laundry) "cdb" = ( /turf/closed/wall, /area/varadero/interior/maintenance/security) -"cdn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"cdv" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"cdh" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"cdt" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "cdL" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"cdM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_N) "cdS" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"cee" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"cek" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + name = "Incendiary Ammunition Order"; + desc = "An order manifest for incendiary ammo that has yet to be filled out." }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "cel" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"ceD" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "ceJ" = ( /obj/item/storage/fancy/candle_box, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cfr" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 +"cfg" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cfE" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cgc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/sign/safety/waterhazard, +/obj/structure/sign/safety/water{ + pixel_x = 15 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"cfV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/rods, +/obj/item/storage/donut_box, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "cgr" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/north, /area/varadero/interior/caves/north_research) -"chk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 +"cgt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"cgI" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 14 }, -/obj/item/tool/stamp, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) +/turf/open/floor/white, +/area/varadero/interior/laundry) +"cgZ" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "chr" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -2547,12 +2916,6 @@ "chs" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"chI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) "chU" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -2563,39 +2926,70 @@ /obj/effect/landmark/railgun_camera_pos, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"ciz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/trackimp, -/obj/item/device/binoculars, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"ciK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/north, -/area/varadero/interior/hall_N) -"ciU" = ( -/obj/structure/closet/secure_closet/personal{ +"cie" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"cio" = ( +/obj/structure/filingcabinet{ density = 0; - pixel_x = 9; - pixel_y = 15 + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/obj/structure/closet/secure_closet/personal{ +/obj/structure/filingcabinet{ density = 0; - pixel_x = -6; - pixel_y = 15 + icon_state = "chestdrawer"; + pixel_x = -8 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"cjR" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 1 +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"cir" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"cjc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"cje" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"cka" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + name = "Television set"; + network = null; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/varadero/interior/research) +"ckn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "ckG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/queen_spawn, @@ -2605,55 +2999,74 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"ckO" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"clf" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" +"ckS" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"clo" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/machinery/light/small{ +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = 6 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"clp" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"cli" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"clw" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"clC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"clE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"clT" = ( -/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"clU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"clW" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/area/varadero/exterior/lz1_near) "clX" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance) -"clY" = ( +"cmo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "cmr" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -2661,55 +3074,94 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"cmw" = ( -/obj/structure/bed/chair/hunter{ - dir = 4 +"cmY" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"cnz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"cnM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/shuttle/red, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"con" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"cmP" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"cnH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) -"cok" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"coy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 2 }, -/obj/item/clothing/under/shorts/grey, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"cox" = ( -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "coz" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"cpx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/northright, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 6 +"coE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/tool/pen/blue, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 5 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"coV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/redfull, +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"cpe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cpj" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"cpr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) +"cpz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "cpH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance) "cql" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -2724,38 +3176,39 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cqt" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -24; - indestructible = 1 +"cqz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "cqA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "cqC" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) +"cqE" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"cqI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "cqZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/maintenance/south) -"cre" = ( -/obj/structure/catwalk, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 - }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) +"cra" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/eastbeach) "crn" = ( -/obj/structure/closet/hydrant{ +/obj/structure/noticeboard{ pixel_y = 32 }, /turf/open/floor/shiva/red/north, @@ -2764,238 +3217,176 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"crr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"crG" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"crO" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"csv" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"crt" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) -"csl" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"cth" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "cty" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) -"ctG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"cus" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"cuQ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/hydro{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_container/spray/hydro{ - pixel_x = 4; - pixel_y = 4 +"cuw" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"cuX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"cux" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 11 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"cvr" = ( -/obj/structure/surface/table, /obj/item/stack/sheet/plasteel{ amount = 24 }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/cargo) -"cvt" = ( -/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"cuF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"cvh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ + pixel_x = -6; + pixel_y = 10 + }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) +"cvO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "cwE" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/north) -"cwP" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "cwQ" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/bible/booze, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cwT" = ( -/obj/structure/bed/chair{ - dir = 1 +"cxo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cxT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"cxY" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"cwW" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"cxc" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"cxh" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"cxk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"cyb" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"cxq" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"cxG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"cyf" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"cxI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"cyg" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"cyj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray/tricordrazine{ + pixel_x = -14; + pixel_y = 2 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"cyN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"cxT" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) -"cyF" = ( +"cyQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/shiva/multi_tiles/east, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) -"cyM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"czu" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/surface/table, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"cyO" = ( +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"czC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"czs" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/snow_mat/east, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"czT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) -"czu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) -"czE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/court) -"czY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) +"cAn" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "cAx" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"cAD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"cAE" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"cAM" = ( +"cBm" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"cBh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) -"cBn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8 +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "cBq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -3007,36 +3398,55 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cBR" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"cCi" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +"cBL" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) +"cBU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/white, +/area/varadero/interior/toilets) +"cBX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "cCk" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"cCv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"cCo" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"cDx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"cDO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 7; + pixel_y = 13 }, -/turf/open/floor/shiva/north, +/obj/item/implantcase/explosive{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"cCW" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"cEM" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) +"cDT" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"cEy" = ( +/obj/item/stack/cable_coil/random, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "cFh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, @@ -3047,14 +3457,17 @@ "cFz" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/interior/caves/east) -"cFB" = ( -/obj/item/device/flashlight/flare, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "cFZ" = ( /obj/structure/cargo_container/kelland/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"cGg" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"cGw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "cGD" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -3065,50 +3478,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cGE" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"cGN" = ( -/turf/open/floor/white, -/area/varadero/interior/security) "cGP" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 +/obj/item/stool{ + icon_state = "stool_alt" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) "cGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/records) -"cGX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - icon_state = "chair" +"cHs" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"cHk" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"cHq" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"cHC" = ( -/obj/structure/morgue, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/turf/open/floor/white, +/area/varadero/interior/toilets) +"cHQ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "cHV" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -3127,72 +3527,91 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"cIm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"cIu" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +"cJm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"cIA" = ( -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) -"cJQ" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"cJr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"cKa" = ( -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) -"cKs" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) +"cJG" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"cJM" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"cKl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "cKK" = ( /obj/item/paper/crumpled/bloody, /obj/effect/landmark/corpsespawner/security, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"cKQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"cKU" = ( -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"cKW" = ( -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) -"cLa" = ( -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"cLh" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "cLP" = ( /turf/open/space, /area/space) -"cMW" = ( -/turf/open/floor/shiva/floor3, +"cMI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + layer = 2.99; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/camera{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/technical_storage) -"cNp" = ( -/obj/structure/closet/secure_closet/medical2, +"cMJ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"cNg" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "cNt" = ( @@ -3220,36 +3639,35 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"cNL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"cNW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"cOl" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"cNY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/court) -"cOi" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "cOs" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -3257,63 +3675,45 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cOC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"cOG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"cOQ" = ( -/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) +"cPz" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) -"cOS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/varadero/interior/maintenance/security) +"cQV" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"cRs" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"cOZ" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"cPM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"cPY" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "cRx" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"cRE" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"cRM" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"cRV" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "cSa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_3" @@ -3327,34 +3727,46 @@ "cSq" = ( /turf/open/floor/wood, /area/varadero/interior/chapel) -"cTa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"cSr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"cSD" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"cTA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"cTR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"cTm" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"cTu" = ( -/obj/structure/closet/toolcloset, +"cUq" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"cTx" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"cUU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"cUY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"cUh" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"cVb" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "cVd" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/lv624/fog_blocker{ @@ -3362,12 +3774,87 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cVn" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) "cVq" = ( /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) +"cVM" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + name = "barge float"; + desc = "A supportive lattice connected to two floating pontoons." + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"cVT" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"cVV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"cVW" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"cWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"cWw" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"cWz" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 3; + pixel_y = 15; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"cWB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"cWP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + icon_state = "chair" + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "cXa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -3380,90 +3867,59 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"cXC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"cXT" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) -"cXV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"cXY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "cYa" = ( /obj/item/storage/firstaid/adv, /turf/open/floor/wood, /area/varadero/interior/security) "cYk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 3; + pixel_y = 17 }, -/turf/open/floor/shiva/north, +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) +"cYl" = ( +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "cYC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"cYI" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +"cYG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/obj/structure/machinery/light/small{ +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "cYV" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cZk" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"cZs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/warning_stripes, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"cZt" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel/pict_system, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"cZD" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"cZI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cZL" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/area/varadero/interior/maintenance) "cZR" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/r_wall/unmeltable, @@ -3472,31 +3928,66 @@ /obj/item/stack/tile/plasteel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"dax" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"daT" = ( +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"dba" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "dbu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"dcM" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"dcQ" = ( -/obj/structure/machinery/storm_siren{ +"dbE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/encryptionkey/dutch, +/obj/item/device/encryptionkey/dutch{ + pixel_x = -6 + }, +/obj/item/device/encryptionkey/dutch{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/book/manual/marine_law{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/obj/structure/machinery/alarm{ dir = 8; - pixel_x = 3 + pixel_x = 24 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"dbR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"dca" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/maintenance/research) +"dcB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "dda" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, @@ -3508,16 +3999,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ddg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) "ddz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -3528,23 +4009,31 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"ddU" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/varadero/exterior/lz1_near) "deg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating, /area/varadero/interior/research) -"deo" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"dei" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"dem" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"den" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "deq" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -3558,10 +4047,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"dex" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) "deE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -3570,176 +4055,212 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"deS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dfj" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/item/device/cassette_tape/pop2{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +"dfp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "dfs" = ( /obj/item/storage/belt/utility, /obj/structure/surface/rack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"dfH" = ( +"dfu" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"dfF" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"dgf" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"dgn" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"dgI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) -"dfQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"dfU" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dgK" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"dgd" = ( -/obj/item/clothing/gloves/yautja{ - anchored = 1; - can_block_movement = 1; - charge = 1; - charge_max = 1; - color = "#a8a7a5"; - density = 1; - desc = "The ship's on-board self destruct system, let's hope you never have to use it."; - name = "Self Destruct System"; - pixel_y = 24 - }, -/obj/structure/bed/chair/hunter{ - dir = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"dgr" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) +/area/varadero/exterior/pool) "dgY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"dht" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"did" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"dim" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"dhD" = ( -/obj/structure/machinery/landinglight/ds1/spoke{ - pixel_y = -5; - pixel_x = 13 +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"diy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) -"dhQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/obj/item/weapon/sword/katana, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) -"dhR" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = 12; - pixel_y = 13 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"diM" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"diN" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"diM" = ( +/obj/structure/bed/chair/hunter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"diZ" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"diS" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"djm" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"djp" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"djI" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/redfull/west, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "djP" = ( /obj/structure/bed/chair, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"dkc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"dke" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"dkK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"dki" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"dkO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"dkK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"dkR" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "dkS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) +"dkZ" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"dle" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/paper/research_notes/grant/high{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "dlh" = ( /obj/structure/machinery/chem_dispenser/soda{ density = 0; @@ -3748,13 +4269,25 @@ /obj/item/frame/table/wood/poor, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"dll" = ( -/obj/structure/morgue, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) -"dlp" = ( +"dlt" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dlz" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"dlD" = ( +/obj/structure/prop/rock/brown_degree, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"dlE" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"dlG" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, @@ -3763,45 +4296,33 @@ climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"dlx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) -"dlD" = ( -/obj/structure/prop/rock/brown_degree, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) -"dlK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 8 +/area/varadero/exterior/comms4) +"dlR" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"dmw" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"dmz" = ( -/obj/item/roller{ - pixel_x = 2; - pixel_y = 7 +"dlT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/surface/table, -/obj/item/roller{ - pixel_x = 4; - pixel_y = 14 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"dmE" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/maintenance/south) "dmN" = ( /turf/closed/wall/r_wall/elevator{ dir = 5 @@ -3812,43 +4333,28 @@ /obj/item/storage/pouch/medkit/full_advanced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"dmU" = ( -/obj/item/stack/cable_coil/cyan, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"dnf" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_3_1" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) "dnh" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"dnk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"dnD" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"dog" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/maintenance/security) "dos" = ( /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/security) +"doB" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "doH" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, @@ -3867,117 +4373,135 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/varadero/interior/research) -"dpC" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/blue, +"doX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"dpf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"dps" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dpD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"dpG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"dpS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "dpW" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"dqj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"dqa" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"dqq" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "dqx" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"dqT" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"drI" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"drU" = ( -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 11 +"dri" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"dsg" = ( +/obj/structure/window_frame/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/area/varadero/exterior/eastbeach) "dsi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"dsR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -13; - pixel_y = 16 - }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = 6 +"dsj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/reagent_container/food/snacks/xenoburger{ - pixel_x = 5; - pixel_y = 7 +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"dsx" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"dsU" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "dtj" = ( /obj/structure/sign/poster/propaganda, /turf/closed/wall, /area/varadero/interior/technical_storage) -"dts" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, +"dto" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/area/varadero/interior/security) "dtu" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, /turf/open/floor/wood, /area/varadero/interior/security) -"dtG" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "dtH" = ( /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"duc" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"dug" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dub" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"duv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"dud" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "duw" = ( /obj/effect/decal/cleanable/cobweb2{ pixel_x = 11; @@ -4005,13 +4529,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"duI" = ( -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +"duJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "duN" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; @@ -4021,48 +4542,103 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"dvs" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"duP" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"duU" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"dwb" = ( -/obj/structure/closet/secure_closet/engineering_welding, +/area/varadero/exterior/pontoon_beach) +"duW" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"dvo" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"dvU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) +"dvV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"dvX" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dwo" = ( +/turf/open/floor/white, +/area/varadero/interior/toilets) +"dwF" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"dxr" = ( +/area/varadero/exterior/eastbeach) +"dxb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"dxl" = ( +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +/area/varadero/interior_protected/maintenance/south) +"dxC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + name = "Television set"; + network = null; + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "dxK" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"dxL" = ( -/obj/structure/bed/alien{ - can_buckle = 0; - color = "#aba9a9" +"dyh" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ + pixel_x = -10; + pixel_y = 15 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/item/reagent_container/blood/empty{ + pixel_x = 6; + pixel_y = 5 }, -/obj/structure/bed/alien{ - buckling_y = 13; - color = "#aba9a9"; - layer = 3.5; - pixel_y = 13 +/obj/item/storage/box/cups{ + pixel_x = -13; + pixel_y = 3 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "dyo" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -4077,78 +4653,86 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"dyI" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"dzx" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" +"dyu" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) +"dyy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/item/storage/fancy/cigar, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"dyL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "dzH" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"dzY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/device/flashlight, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"dAD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"dBs" = ( -/obj/structure/catwalk, -/obj/structure/largecrate/random, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"dBR" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"dzQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"dAb" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "cargobay"; + name = "Cargo Bay Lock"; + pixel_y = 20 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"dCa" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"dAB" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"dAC" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"dCk" = ( -/turf/open/floor/asteroidwarning/north, -/area/varadero/exterior/lz1_near) -"dCx" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"dCH" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"dBU" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"dBW" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; pixel_x = 3 }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 7 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"dCR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/item/reagent_container/food/drinks/cup{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dDf" = ( +/obj/item/stack/tile/plasteel{ pixel_x = 8; - pixel_y = -8 + pixel_y = 6 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"dCW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 +/area/varadero/interior/caves/east) +"dDk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick{ + pixel_x = -4; + pixel_y = 11 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/obj/item/reagent_container/glass/pressurized_canister, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/technical_storage) "dDn" = ( /obj/item/shard{ icon_state = "large"; @@ -4161,28 +4745,36 @@ /obj/item/tool/wirecutters, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"dDC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/inflatable, -/obj/item/inflatable/door, -/obj/item/storage/box/engineer, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +"dDz" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "dDG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"dDY" = ( +"dDR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "dEb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 8 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"dEz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "dEJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -4190,20 +4782,45 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) +"dEK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"dEY" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"dFc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"dFf" = ( +/obj/structure/window/framed/colony, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/open/floor/dark2, +/area/varadero/interior/hall_N) +"dFi" = ( +/obj/item/device/flashlight/flare, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "dFm" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"dFs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) "dFt" = ( /obj/structure/prop/fishing/line/long, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) +"dFv" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/disposals) "dFC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -4224,16 +4841,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"dFG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"dGj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"dFL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "dGr" = ( /turf/closed/shuttle{ dir = 1; @@ -4244,18 +4857,34 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"dHg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"dHO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"dGC" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard{ + icon_state = "medium" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"dGD" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"dGW" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Pontoon Dock" + }, +/turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) +"dHF" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "dHY" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -4288,71 +4917,130 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"dIe" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/administration) "dIk" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"dIV" = ( +"dIH" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"dIR" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; + icon_state = "lattice12"; pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"dIW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"dJd" = ( +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"dJv" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "dJX" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) -"dKU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"dKC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/suit/fire/firefighter{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"dLa" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"dMf" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"dMg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dKY" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"dLG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"dMc" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/item/tool/wet_sign, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"dMd" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) +"dMe" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dMV" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "dNb" = ( -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) -"dNn" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"dNr" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"dNP" = ( -/obj/effect/decal/cleanable/vomit, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/white, -/area/varadero/interior/toilets) +/area/varadero/interior/security) +"dNF" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"dNL" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"dOc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "dOl" = ( /obj/item/prop/colony/used_flare, /turf/open/gm/dirt, @@ -4361,141 +5049,141 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dOv" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"dOH" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/maintenance/north) -"dOL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"dOU" = ( -/obj/item/weapon/gun/shotgun/pump, -/obj/structure/machinery/light{ - dir = 4 +"dOG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) +"dOT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/red/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"dPi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) -"dPd" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"dPh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ +"dPD" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "dPR" = ( /obj/item/reagent_container/glass/bucket, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"dRb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"dQf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"dQm" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"dQn" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dQu" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) -"dRJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"dQO" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"dRO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dQZ" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"dRf" = ( +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"dRL" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/tool/surgery/hemostat/predatorhemostat, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"dRT" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"dSf" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) -"dSu" = ( -/obj/item/prop/helmetgarb/bullet_pipe{ +"dSo" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ pixel_x = -8; - pixel_y = 15 + pixel_y = 4 }, -/obj/item/reagent_container/glass/fertilizer/l4z{ - pixel_x = 10; - pixel_y = 10 +/turf/open/floor/wood, +/area/varadero/interior/maintenance/north) +"dSH" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"dTo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"dTp" = ( +/obj/structure/bed/roller, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"dSy" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +/area/varadero/interior/maintenance) "dTu" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"dTD" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) "dTG" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastocean) -"dTH" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"dUx" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"dUC" = ( -/obj/structure/machinery/light, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) -"dUD" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) -"dUY" = ( -/obj/item/tool/minihoe, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"dVk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"dVZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ +"dUs" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/obj/structure/bed/chair/office/dark{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"dWu" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"dWB" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"dWK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/electrical) +/area/varadero/interior/maintenance/security) +"dUy" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) +"dUU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"dVA" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves/central) "dWN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine{ @@ -4506,22 +5194,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"dWR" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) -"dWT" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) "dWV" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"dXb" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "dXd" = ( /turf/closed/wall/r_wall/elevator{ dir = 5 @@ -4530,32 +5212,24 @@ "dXg" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"dXp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) +"dXi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"dXp" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "dXr" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"dXS" = ( -/obj/item/cpr_dummy, +"dXN" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"dXV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) "dYd" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -4567,70 +5241,72 @@ /obj/item/book/manual/hydroponics_beekeeping, /turf/open/floor/carpet, /area/varadero/interior/library) -"dYw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"dYz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"dYF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "dYX" = ( /obj/structure/machinery/light, /turf/open/floor/carpet, /area/varadero/interior/library) -"dZy" = ( +"dZl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Showers"; - req_access_txt = "100" - }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"dZJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"eal" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/mess) +"dZC" = ( +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) +"eaf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "eat" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"eau" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) "eaC" = ( /obj/item/packageWrap, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"eaI" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, +"eaO" = ( +/obj/structure/prop/rock/brown, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +/area/varadero/exterior/pontoon_beach/lz) +"eaY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/tool/plantspray/pests/old/phosmet{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/weapon/wirerod{ + pixel_x = 8 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"ebd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "ebi" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, @@ -4646,127 +5322,121 @@ "ebr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves) -"ebs" = ( -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/tool/pen/blue{ - pixel_x = 7 +"ebt" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"ebP" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" +/turf/open/floor/white, +/area/varadero/interior/toilets) +"ebv" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/records) +"ecD" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"ebR" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"ece" = ( -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"ecK" = ( -/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) +/area/varadero/exterior/lz1_near) "ecX" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"eei" = ( -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"eeq" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"eeZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/red/west, +"ecZ" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eds" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"edK" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/device/flashlight, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"efk" = ( -/obj/structure/closet/emcloset, +"edP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/mineral/plastic{ + amount = 3 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/area/varadero/interior/bunks) +"edX" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"eeh" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"eep" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"eer" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"efv" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/white, +/area/varadero/interior/laundry) "efy" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastocean) -"efB" = ( -/obj/item/weapon/gun/shotgun/pump, +"efX" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/eat, +/obj/item/trash/cheesie, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"efN" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/cargo) -"efV" = ( -/mob/living/simple_animal/cat{ - desc = "A domesticated, feline pet. The collar says 'Orion'."; - name = "Orion"; - real_name = "Orion" +"egb" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"egd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "egj" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"egD" = ( -/obj/structure/prop/mech/drill, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"egQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"egR" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, +"egl" = ( +/obj/item/book/manual/detective, +/turf/open/floor/wood, +/area/varadero/interior/library) +"egS" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/area/varadero/interior/maintenance/security) "egV" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"ehn" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ehI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "ehM" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -4801,58 +5471,31 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"eif" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"eiy" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) "eiK" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"eiT" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"eja" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"eiQ" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) +"eiU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"eiZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "ejk" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -4866,18 +5509,22 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ejs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) "ejM" = ( /turf/open/gm/coast/north, /area/varadero/exterior/monsoon) -"ekD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +"ekd" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"eku" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) "ekE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -4893,43 +5540,49 @@ "elI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastocean) -"emh" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -13; - pixel_y = -3 - }, -/obj/structure/bed/chair{ +"emf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"emD" = ( -/obj/structure/bed/chair, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 +/area/varadero/interior/maintenance/security) +"emm" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"emI" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/wood, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"emo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "emP" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"emU" = ( -/obj/structure/platform_decoration/kutjevo{ +"emW" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"enx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"enQ" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"enV" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "enZ" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -4942,45 +5595,20 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"eok" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) +"eor" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "eov" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"eoz" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"eoS" = ( -/obj/item/clothing/shoes/swimmingfins, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) "eoV" = ( /obj/structure/prop/resin_prop, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"eoX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"epc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) +"eph" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) "epN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -4992,9 +5620,6 @@ "epQ" = ( /turf/closed/wall, /area/varadero/interior/morgue) -"epV" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) "eqg" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -5003,60 +5628,74 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"eql" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eqx" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"eqE" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"eqP" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"eqV" = ( +/obj/structure/surface/table, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"eqm" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/varadero/interior/electrical) +"eqX" = ( +/obj/structure/bed/alien{ + can_buckle = 0; + color = "#aba9a9" }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"eqO" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed/alien{ + buckling_y = 13; + color = "#aba9a9"; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"ers" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/hall_SE) -"erj" = ( -/obj/structure/barricade/wooden, -/obj/structure/safe/floor, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance/research) "erQ" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"erR" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"esd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva/wred/southwest, -/area/varadero/interior/medical) -"esI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"esc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"esg" = ( +/obj/item/circuitboard/apc, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance/north) "esK" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -5064,10 +5703,10 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"etc" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"esN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "etE" = ( /obj/structure/filingcabinet{ density = 0; @@ -5075,94 +5714,49 @@ pixel_x = -8; pixel_y = 11 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/varadero/interior/security) -"etS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"etT" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"etU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/wood, +/area/varadero/interior/security) +"etL" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "etV" = ( /obj/item/stack/sheet/metal, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"euY" = ( -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"evh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"euv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Colony Offices"; + req_access_txt = "100" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"evp" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) -"evx" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/pontoon_beach) -"evR" = ( -/obj/item/device/flashlight, /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"ewe" = ( +/area/varadero/interior/administration) +"euG" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"euY" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"ewh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"ewZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) +/area/varadero/interior/maintenance/north) +"evt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "exj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"exn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "exs" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -5170,19 +5764,23 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"exG" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) -"exO" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Pontoon Dock" +"exJ" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"eyg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "eyt" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/east) +"eyI" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "eyL" = ( /obj/structure/surface/table, /turf/open/floor/interior/plastic, @@ -5195,10 +5793,24 @@ /obj/item/frame/table, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) +"ezr" = ( +/obj/structure/girder, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"ezE" = ( +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"ezH" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "ezM" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "ezU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -5212,74 +5824,93 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"eAR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = 7; - pixel_y = 5 +"eAn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/item/trash/plate{ - pixel_x = -6 +/turf/open/floor/white, +/area/varadero/interior/toilets) +"eAr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"eAS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -7; - pixel_y = 8 +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"eAT" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"eBh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) "eBs" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 }, /area/varadero/interior/records) -"eBC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"eBH" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"eBE" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"eBI" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"eBX" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "eCg" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"eCk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +"eCh" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"eCn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/varadero/interior/library) +"eCp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) "eCu" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/interior_protected/caves/central) -"eDk" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" +"eDw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"eDu" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "eDF" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -5299,21 +5930,29 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"eEf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"eEC" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"eEj" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"eEp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"eEA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 1; + name = "LZ1 Pontoon Dock computer" + }, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_console) "eET" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) "eEY" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -5323,29 +5962,16 @@ }, /turf/open/floor/plating, /area/varadero/interior/research) -"eFf" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/defibrillator{ - pixel_y = 5 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"eFo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/paint/black{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/tool/wirecutters/clippers, -/obj/item/reagent_container/food/drinks/h_chocolate{ - pixel_x = -6; - pixel_y = 12 +"eFc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"eFq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "eFB" = ( /obj/structure/prop/fishing/line/long{ dir = 8 @@ -5353,21 +5979,24 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"eFD" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"eFZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/flare, -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) +"eFP" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "eGP" = ( /obj/structure/closet/cabinet, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/research) +"eGT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "eGX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) @@ -5375,12 +6004,19 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/toilets) -"eHq" = ( +"eHo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/hall_SE) +"eHr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "eHs" = ( /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, @@ -5393,105 +6029,69 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"eIG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; +"eIu" = ( +/obj/structure/machinery/alarm{ + dir = 8; pixel_x = 24 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"eIR" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) +"eJi" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eJr" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"eJG" = ( +/obj/structure/prop/turbine_extras/left, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"eJo" = ( +/area/varadero/exterior/lz1_near) +"eKj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"eKb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"eKm" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"eKJ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "eKL" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"eLh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"eKY" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/maintenance/north) +"eLj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"eLD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"eLy" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"eMe" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"eMf" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/purple/southeast, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"eLH" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"eMa" = ( +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) -"eMg" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/sling, -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "eMi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -5516,62 +6116,52 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/varadero/interior/court) -"eMP" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"eMy" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"eMM" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"eMW" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"eMY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"eNc" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"eNg" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/central) -"eNj" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/comms2) +"eMY" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "eNk" = ( /obj/item/toy/sword, /obj/item/clothing/head/pirate, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"eNl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "eNA" = ( /obj/item/weapon/twohanded/fireaxe, /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"eNQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"eNY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) "eOa" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -5583,39 +6173,27 @@ /obj/item/circuitboard/airlock, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"ePr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" +"eOK" = ( +/turf/open/floor/plating, +/area/varadero/interior_protected/caves/central) +"ePj" = ( +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ePp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ePz" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 6 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ePH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"ePZ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"eQe" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) "eQm" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, @@ -5624,6 +6202,10 @@ /obj/structure/largecrate/supply/supplies/water, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) +"eRC" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "eRD" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, @@ -5634,25 +6216,35 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"eSc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"eRN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"eSd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"eSa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + pixel_y = 17 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/weapon/gun/revolver/spearhead{ + pixel_y = 2 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 2; + pixel_y = 8 }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"eSt" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "eTb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -5662,42 +6254,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"eTj" = ( -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"eTm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"eTr" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +"eTs" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"eTO" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "eTP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -5709,27 +6273,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"eTS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"eUl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +"eUx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +/obj/item/tool/crowbar, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) "eUH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5739,63 +6289,66 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"eUL" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eVe" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"eUY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"eVq" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"eWf" = ( -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = -3; - pixel_y = 3 +/area/varadero/interior/maintenance/research) +"eVa" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + unacidable = 0 }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 5; - pixel_y = -3 +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) -"eXj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/item/device/flashlight/slime, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"eWi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"eXz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eXB" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"eXF" = ( -/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"eWN" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"eWS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"eXp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"eXE" = ( /obj/structure/machinery/storm_siren{ - pixel_y = 5 + dir = 4; + pixel_x = -3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/obj/structure/closet/firecloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "eXN" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -5812,51 +6365,57 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"eYc" = ( -/obj/effect/landmark/hunter_primary, +"eXV" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"eYk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"eYI" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"eZp" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"eYB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"eZa" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz2_near) -"eZd" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/area/varadero/interior/cargo) +"eZG" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "eZI" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"eZW" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_x = -5; - pixel_y = 6 - }, +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"far" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/area/varadero/interior_protected/caves) +"eZL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/hall_SE) +"faa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"fab" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fay" = ( /turf/closed/wall/r_wall, /area/varadero/interior/research) @@ -5865,32 +6424,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"faJ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"fbk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"fbm" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"fbo" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 +"faY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "fbr" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/auto_turf/sand_white/layer1, @@ -5902,23 +6442,6 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) -"fbD" = ( -/obj/structure/closet/crate/construction, -/obj/item/grown/log, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/monsoon) -"fbF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"fbK" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "fbQ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -5933,49 +6456,77 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) +"fbR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "fbZ" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"fcd" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +"fcb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "fcf" = ( /obj/structure/surface/table, /obj/item/device/camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fco" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) "fcp" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"fcv" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +"fcz" = ( +/obj/item/card/id/silver{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fcF" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"fdT" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Research Chamber" +"fdi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"fdI" = ( +/obj/structure/pipes/unary/freezer{ + dir = 8; + icon_state = "freezer_1" + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"fdL" = ( +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"fej" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"fen" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"feF" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "feH" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -5990,21 +6541,6 @@ /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"fff" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"fft" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) "ffx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6012,21 +6548,20 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ffM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"fgi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/item/storage/fancy/cigar, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"fgy" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor/asteroidplating, +"ffA" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"fgs" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"fgN" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) "fgW" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -6037,35 +6572,65 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fih" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_NW) -"fiy" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +"fhd" = ( +/turf/open/floor/white, +/area/varadero/interior/security) +"fhl" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"fhz" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"fiY" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"fiw" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/obj/item/stack/sheet/metal, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fiB" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fiG" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"fiR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"fja" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "fjg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"fjm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +"fjq" = ( +/turf/open/floor/shiva/purple/northwest, +/area/varadero/interior/research) "fjC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -6094,13 +6659,25 @@ /obj/item/toy/beach_ball, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"fkr" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/records) +"fkG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"fkO" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "fkR" = ( /turf/closed/wall, /area/varadero/interior/court) +"fkS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "fla" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, @@ -6111,170 +6688,152 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"fml" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, +"fll" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"fly" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"flz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"flL" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"flW" = ( /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"fmm" = ( -/turf/open/shuttle/elevator, -/area/varadero/interior/records) +/area/varadero/interior/maintenance/north) "fmu" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"fmM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/large_holster/ceremonial_sword/full, -/turf/open/floor/wood, -/area/varadero/interior/security) -"fmS" = ( -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/beach_bar) -"fmV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Lobby" +"foc" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"fnu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 +/area/varadero/interior/hall_SE) +"foB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"fnL" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"foq" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, +/area/varadero/interior/administration) +"foD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"fox" = ( -/obj/structure/computer3frame, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"foI" = ( -/obj/item/restraint/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/area/varadero/interior_protected/caves) +"foJ" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"foL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "foQ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"foS" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +"fpj" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "fpq" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/lz2_near) -"fpB" = ( -/obj/structure/girder, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"fpC" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"fpD" = ( +"fpy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"fpQ" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, +/area/varadero/interior/hall_NW) +"fpF" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/area/varadero/interior_protected/maintenance/south) "fpY" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"fqr" = ( -/obj/structure/surface/table, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds{ +"fqc" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"fqD" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 + pixel_y = 13 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"fqW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"fqv" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) +"fqM" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"fri" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"fre" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/varadero/interior/maintenance/research) +"frt" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"frw" = ( /turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"frH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"frO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/exterior/pontoon_beach) +"frD" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/shiva/snow_mat/east, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "frR" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"frW" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"fsl" = ( -/turf/open/gm/coast/beachcorner2/south_west, -/area/varadero/exterior/pontoon_beach/lz) -"fso" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +"fsd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fsC" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -6284,13 +6843,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"fti" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ftc" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/reagent_dispensers/fueltank, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/comms1) "ftm" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -6298,13 +6857,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"ftv" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/varadero/interior/toilets) "ftA" = ( /obj/structure/sign/safety/coffee, /obj/structure/sign/safety/galley{ @@ -6312,33 +6864,38 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"fug" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 +"ftE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/redfull/west, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"fuD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"ftO" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"ftQ" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"fuQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/pontoon_beach/lz) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "fuS" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/disposals) -"fuU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) "fvd" = ( /obj/structure/filingcabinet{ density = 0; @@ -6354,29 +6911,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fvp" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"fvR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) "fvV" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/machinery/light/small{ @@ -6384,45 +6918,62 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"fwm" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) "fwo" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"fwp" = ( +"fwM" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/cooler, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/peach, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fwS" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"fxd" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks{ - pixel_x = -7; - pixel_y = 8 +/obj/item/storage/box/cdeathalarm_kit{ + pixel_x = -8; + pixel_y = 1 }, -/obj/item/tool/lighter/zippo/black{ - pixel_x = -5; - pixel_y = 7 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"fxi" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"fxN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/ashtray/plastic{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/court) +"fxP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"fxE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"fxG" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"fxH" = ( +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"fxT" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "fxX" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -6431,22 +6982,26 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"fyv" = ( -/obj/item/storage/firstaid, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"fyL" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 6 +"fyi" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/item/weapon/sword/katana, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) +"fyE" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/marine_law{ - pixel_x = -6; - pixel_y = 5 +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "fyP" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/candelabra{ @@ -6456,115 +7011,159 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"fyT" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "fzc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"fzd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/yellowcorners/west, -/area/varadero/interior/cargo) -"fzq" = ( +"fzY" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"fAG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"fAp" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"fAK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "fAO" = ( /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"fBk" = ( -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/court) -"fBx" = ( -/obj/structure/bedsheetbin{ - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) -"fBT" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "fBV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fCj" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"fCC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"fDb" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/light/small{ - dir = 4 +"fCp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"fDG" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"fCt" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"fCV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"fCZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"fDo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/co2_cartridge{ + pixel_x = 13; + pixel_y = 7 + }, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"fDz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "fDH" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"fEd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/plasticflaps/mining, +"fDK" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"fEE" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"fFp" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"fEg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"fEC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"fFr" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "fFw" = ( /obj/item/stack/sheet/wood, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"fFA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "fFH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -6573,14 +7172,30 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fGA" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"fGD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/research) +"fFW" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"fFY" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "fGM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -6594,12 +7209,6 @@ /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"fHd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) "fHg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, @@ -6608,97 +7217,130 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"fIe" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/purplefull/west, +"fHG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"fIb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"fIg" = ( +/turf/open/floor/shiva/purple/northeast, /area/varadero/interior/research) -"fIo" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) +"fIh" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "fIv" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"fJD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = -6; - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = 7; - pixel_y = 3 +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"fIx" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/hall_SE) +"fIG" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"fJk" = ( +/obj/item/tool/soap, +/turf/open/floor/white, +/area/varadero/interior/security) +"fJA" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"fKp" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"fLo" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/shiva/north, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"fKK" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) -"fLI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fKN" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"fLX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"fLO" = ( -/obj/structure/reagent_dispensers/beerkeg/alt_dark, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"fLW" = ( -/obj/structure/machinery/alarm{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_x = -24 + pixel_x = -16; + pixel_y = 13 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "fLY" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) -"fMz" = ( -/obj/structure/girder/displaced, -/obj/structure/prop/invuln/overhead_pipe, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"fME" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 +"fMx" = ( +/obj/structure/machinery/door/window/northright{ + name = "Disposals Chute" }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"fMC" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/bed/chair/comfy{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = 7; - pixel_y = 12 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fMH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/area/varadero/interior/oob) "fMI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"fMU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "fNm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -6717,76 +7359,52 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fNw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"fNI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"fNO" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fOm" = ( +/turf/open/floor/wood, +/area/varadero/interior/records) +"fOq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fOO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"fOZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) "fPp" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_2" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"fPB" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "fPJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) "fPM" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"fPN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"fQb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"fQf" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/pontoon_beach) +/area/varadero/exterior/farocean) "fQh" = ( /obj/item/shard{ icon_state = "large"; @@ -6798,18 +7416,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fQz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) "fQK" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) +"fQM" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"fQR" = ( +/obj/item/clothing/shoes/swimmingfins, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "fRl" = ( /obj/structure/largecrate/random/case, /obj/item/spacecash/c10{ @@ -6822,94 +7444,136 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"fRK" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/caphat{ - pixel_x = 2; - pixel_y = 9 +"fSa" = ( +/obj/structure/window_frame/colony, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"fSe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"fSE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/obj/item/clothing/head/cmcap, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"fRY" = ( -/obj/effect/decal/cleanable/cobweb{ +/area/varadero/interior/electrical) +"fSQ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"fSa" = ( -/obj/structure/window_frame/colony, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) -"fSi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fSC" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"fSN" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 +"fTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/stack/cable_coil/pink{ - pixel_x = -7; - pixel_y = -4 +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"fUd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance) +"fUp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fUs" = ( /obj/structure/machinery/light/small, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"fUz" = ( -/obj/structure/machinery/light{ - dir = 8 +"fUx" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"fUB" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fUJ" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fVo" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"fVp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/disposals) "fVw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"fWd" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/eastocean) -"fWt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastocean) -"fWL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fVx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"fVy" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"fVH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"fVJ" = ( +/obj/structure/closet/crate/construction, +/obj/item/tool/extinguisher, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"fVN" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"fVP" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"fVQ" = ( +/obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"fWd" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/eastocean) "fWR" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -6958,68 +7622,67 @@ /turf/open/floor/wood, /area/varadero/interior/hall_SE) "fYz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"fYI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"fZh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stack/sheet/plasteel{ - amount = 24 +/area/varadero/interior/hall_N) +"fZK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"fZD" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/paper/research_notes/grant/high{ - pixel_x = -2; - pixel_y = -2 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"fZW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "fZX" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"gak" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "gaG" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"gbu" = ( -/obj/structure/machinery/light/small{ +"gaR" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva/yellow/east, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"gbi" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"gbj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) +"gbo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "gbE" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -7029,48 +7692,34 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"gcd" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"gce" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"gct" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8 - }, -/obj/structure/machinery/light{ +"gbJ" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) +"gbL" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"gbT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - layer = 3.1; - pixel_x = -5; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - layer = 3.1; - pixel_x = -10; - pixel_y = 16 - }, -/obj/item/storage/pill_bottle/kelotane/skillless{ - pixel_x = -5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) +/obj/structure/surface/table, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"gcu" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "gcB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"gcE" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "gcF" = ( /obj/structure/prop/wooden_cross{ desc = "A grave to a fishing buddy, long gone" @@ -7080,14 +7729,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gcL" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"gdr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"gdG" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) "gdJ" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -7107,6 +7752,18 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) +"gdP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"ged" = ( +/obj/structure/machinery/light, +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "geo" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) @@ -7115,16 +7772,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"geD" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/eat, -/obj/item/trash/cheesie, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "geK" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -7153,6 +7800,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"gfd" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "gfe" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -7161,15 +7812,22 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"gff" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "gfk" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gft" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/nanopaste, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) "gfA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -7189,31 +7847,43 @@ /obj/item/device/binoculars, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"ggK" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +"ggu" = ( +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"ggw" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"ggO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/crew{ - pixel_x = -5; - pixel_y = 8 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/item/storage/box/trackimp{ - pixel_x = 5; - pixel_y = 1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"ggL" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"ggV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 +/obj/item/bedsheet{ + anchored = 1; + desc = "A console used by the Hunters for navigation purposes."; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "security_cam"; + name = "Hunter Nav Console" }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "ggX" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -7228,44 +7898,51 @@ }, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance/north) -"ghK" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "ghN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/monsoon) -"gij" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"ghY" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"giy" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"gih" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "giN" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"gjo" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"gjx" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "gjC" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gjM" = ( -/obj/structure/surface/rack, -/obj/item/pizzabox/meat, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"gjG" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/chunk, +/obj/item/trash/raisins, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"gjX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"gkb" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/large_holster/ceremonial_sword/full, +/turf/open/floor/wood, +/area/varadero/interior/security) "gkx" = ( /obj/item/stack/tile/plasteel{ pixel_y = 6 @@ -7278,55 +7955,62 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance) -"gkU" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/greencorners/north, -/area/varadero/interior/hall_SE) -"gkW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) "glp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"glD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"glW" = ( +"gls" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/obj/item/tool/pen/sleepypen{ - pixel_x = -4; +/obj/structure/largecrate/random/mini/ammo{ pixel_y = 4 }, -/obj/item/tool/lighter/zippo/fluff{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/shiva/bluefull/west, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"glG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/paper/research_notes, +/obj/item/storage/belt/shotgun, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) -"gnV" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"glU" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"gmr" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior_protected/caves) +"gmS" = ( +/obj/item/device/taperecorder, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"gnd" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"gnp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) +"goc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "god" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -7339,6 +8023,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"gom" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "gor" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -7347,85 +8035,131 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"goK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"gpk" = ( -/obj/structure/machinery/light{ +"goy" = ( +/obj/structure/surface/table, +/obj/item/trash/chips{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"goU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/comms3) -"gqy" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"goX" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"gpo" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/green, +/turf/open/floor/shiva/yellow, /area/varadero/interior/hall_SE) -"gqz" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1; - locked = 1; - name = "\improper Engine Room" +"gqe" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "gqE" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"gqI" = ( -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/court) -"gri" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "grG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"grM" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"grH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "grT" = ( /obj/structure/sign/safety/water, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"grY" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) +"gsb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"gsj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "gsm" = ( /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"gsB" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"gsp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_NW) "gsC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz2_near) +"gsD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/prop/static_tank{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "gsP" = ( /turf/open/space/basic, /area/space) @@ -7448,105 +8182,52 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gsZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - icon_state = "door_locked"; - id = "engine_electrical_maintenance"; - locked = 1; - name = "Underground Power Substation"; - req_access_txt = "100" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"gtc" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"gtq" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"gtW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"guj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +"gtY" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) +"guf" = ( +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "gux" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gvo" = ( -/obj/item/ore/diamond, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) -"gvp" = ( -/obj/structure/bed/chair{ - dir = 8 +"guI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"gvs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"gvD" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 9 +"guM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"gvU" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"gvk" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"gvo" = ( +/obj/item/ore/diamond, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) +"gwp" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"gws" = ( +/obj/item/tool/pickaxe/plasmacutter, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"gwh" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) -"gwm" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) +"gww" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "gwD" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -7555,43 +8236,6 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"gwK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"gwL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"gxa" = ( -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/vessel) "gxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -7600,10 +8244,30 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"gxr" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"gxG" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "gxQ" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"gxR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/nanopaste, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"gyh" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "gyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7617,12 +8281,6 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"gyI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) "gyX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, @@ -7636,22 +8294,23 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gzO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"gzP" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"gBc" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"gBr" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"gAr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"gAG" = ( -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "gBP" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -7670,6 +8329,13 @@ /obj/item/stack/sandbags_empty/half, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"gCc" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "gCe" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, @@ -7679,6 +8345,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"gCj" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"gCD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "gCH" = ( /obj/item/ammo_casing{ dir = 6; @@ -7712,278 +8386,168 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gDd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker/ethanol{ - desc = "The beaker stares at you lecherously. Its contents... irresistible."; - pixel_y = 7 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"gDk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +"gDm" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "gDr" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"gDs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"gDu" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"gDB" = ( -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"gDI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"gDJ" = ( -/obj/structure/machinery/light, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"gEf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"gEi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"gEm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) -"gEo" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gDH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"gEM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"gDI" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "gEP" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"gEZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/technical_storage) -"gFp" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"gFr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "gFx" = ( /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"gFD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/device/flashlight/lamp/candelabra{ - pixel_x = -6; - pixel_y = 22 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/administration) "gFH" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"gFQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "gFY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gGi" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"gGL" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"gGr" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) -"gGw" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/interior/maintenance/north) -"gGH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) -"gGT" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"gGX" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"gHo" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"gHA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) -"gHD" = ( -/obj/structure/surface/table, -/obj/item/inflatable{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/inflatable{ - pixel_x = 6 - }, -/obj/item/inflatable{ - pixel_x = -1; - pixel_y = 7 +/area/varadero/interior/maintenance/security) +"gGM" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"gHc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"gHC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "gHJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gIE" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +"gIh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"gIQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"gIV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowcorners/west, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) "gIX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"gJe" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/white, -/area/varadero/interior/security) -"gJh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/area/varadero/exterior/lz1_near) +"gJp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "gJy" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gJA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) "gJN" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"gJX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"gKf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/obj/item/tool/stamp, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"gKh" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) -"gKL" = ( -/obj/structure/barricade/handrail/wire{ +"gKj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"gKk" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"gKq" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"gLm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"gLp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/area/varadero/exterior/lz1_near) +"gLq" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -10; + pixel_y = 19 }, -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/pontoon_beach/lz) +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "gLw" = ( /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"gLF" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"gLQ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "gLV" = ( /obj/structure/closet/crate, /obj/item/tool/lighter, @@ -7998,33 +8562,44 @@ /obj/item/tool/pen/red/clicky, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gMS" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = 7 +"gMR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Custodial Closet"; + req_access_txt = "100" }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"gMZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "gNb" = ( /obj/structure/closet/wardrobe/chaplain_black, /turf/open/floor/wood, /area/varadero/interior/chapel) +"gNj" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "gNE" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gNO" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"gNR" = ( -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) +"gOa" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "gOj" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -8033,12 +8608,21 @@ /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"gOQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "gPi" = ( /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) -"gPk" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) "gPL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -8053,159 +8637,107 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"gQi" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, +"gPR" = ( +/obj/item/lightstick/variant/planted, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"gQo" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -4; - pixel_y = 11 +/area/varadero/exterior/monsoon) +"gQd" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"gRj" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"gQt" = ( -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 +/obj/item/grown/log, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"gRP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"gRU" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"gSg" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) -"gQz" = ( +"gSk" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior_protected/caves/central) +"gSz" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = 3; - pixel_y = 9 +/obj/item/storage/box/lights, +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"gSF" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/obj/item/device/cassette_tape/ocean{ - pixel_x = 6; - pixel_y = 4 +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"gSN" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/device/cassette_tape/pop2, +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"gQG" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 +"gSR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"gRj" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"gTa" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/item/grown/log, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) -"gRr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"gRt" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/mess) -"gSD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "gTe" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"gTu" = ( -/obj/item/circuitboard/apc, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"gTB" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "gTC" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/disposals) -"gTE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gTI" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/mask/cigarette/ucigarette{ - pixel_x = -5; - pixel_y = 2 +"gTH" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"gUh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/greenfull/west, +/turf/open/floor/shiva/greencorners/north, /area/varadero/interior/hall_SE) +"gUe" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "gUq" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"gUM" = ( +/turf/open/floor/shiva/purplecorners/west, +/area/varadero/interior/research) "gUP" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/caves) -"gUW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) -"gVc" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) "gVd" = ( /obj/structure/fence, /turf/open/gm/coast/north, @@ -8214,23 +8746,27 @@ /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"gVr" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_N) -"gVM" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"gVA" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"gVB" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "gVO" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) +"gVT" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"gVX" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "gWd" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -8241,37 +8777,46 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gWq" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = -26 +"gWe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"gWE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light, -/obj/item/circuitboard/computer/powermonitor, -/obj/item/stack/cable_coil/cut{ - pixel_y = 12 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gWm" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"gWJ" = ( -/obj/effect/decal/warning_stripes/asteroid{ +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "warning_s" + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/plasticflaps/mining, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"gWA" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/varadero/interior/research) "gWL" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gWY" = ( +"gWT" = ( /obj/structure/catwalk, /turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) @@ -8289,66 +8834,70 @@ /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) +"gXp" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"gXE" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"gXZ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"gXv" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"gXD" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/carpet, -/area/varadero/interior/library) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "gYh" = ( /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"gYo" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior_protected/caves/central) -"gZh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) -"gZD" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 +"gYm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/caves/digsite) -"gZZ" = ( +/obj/item/clothing/under/shorts/grey, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"gYx" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gYI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"hae" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"gYR" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/varadero/exterior/lz1_near) +"gZn" = ( /obj/structure/surface/table/woodentable, -/obj/item/restraint/handcuffs, -/obj/item/weapon/baton, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, /turf/open/floor/wood, /area/varadero/interior/security) +"gZs" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"gZJ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) "haq" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -8357,41 +8906,13 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/administration) -"haF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"haH" = ( -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +"haL" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "haP" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms1) -"hbJ" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/varadero/exterior/lz1_near) -"hcc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/laundry) -"hco" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "hcI" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -8399,27 +8920,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"hdj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"hds" = ( -/turf/open/gm/coast/north, -/area/varadero/exterior/eastocean) -"hdL" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"hdX" = ( +"hcN" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, @@ -8429,118 +8936,137 @@ icon_state = "hr_kutjevo"; name = "support struts" }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"heb" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/area/varadero/exterior/pontoon_beach/lz) +"hdc" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"hdg" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"hds" = ( +/turf/open/gm/coast/north, +/area/varadero/exterior/eastocean) "hej" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hel" = ( -/obj/structure/barricade/wooden{ +"heY" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/sling, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"hfc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"heq" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"hev" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) +"hff" = ( +/obj/structure/machinery/light/small, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"heM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"heX" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/tool/warning_cone, +"hfg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"hfa" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"hfJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +/area/varadero/interior_protected/caves/central) +"hfv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"hgw" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"hge" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"hgw" = ( -/obj/structure/machinery/light{ +"hgC" = ( +/obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"hgy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"hhb" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"hgP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"hht" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hhB" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) "hhM" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/north_research) -"hhS" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"hih" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hio" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"hiu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"hix" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"hiA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) +/area/varadero/interior/maintenance/north) "hiE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redcorners/east, +"hiK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "hjn" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -8551,11 +9077,25 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"hjr" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) +"hjw" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "HotlineAlt" + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"hjC" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "\improper Theta-V Research Laboratory Director's Office"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "hjK" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -8570,25 +9110,24 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"hkF" = ( -/obj/structure/bed/chair{ - dir = 8 +"hks" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"hkE" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"hkG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"hkH" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastocean) +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "hkQ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"hkY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "hkZ" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/red, @@ -8611,6 +9150,17 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"hlI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"hlJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "hlK" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses{ @@ -8627,17 +9177,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"hlU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) "hmg" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -8645,96 +9184,78 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"hmn" = ( -/obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) -"hmz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +"hmy" = ( +/obj/structure/machinery/constructable_frame, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"hmE" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"hmK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Treatment"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) +/area/varadero/exterior/eastbeach) +"hmN" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) "hmR" = ( /obj/item/tool/crowbar, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hmX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/sheet/metal, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"hna" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) "hni" = ( /obj/structure/sign/safety/fire_haz{ pixel_y = 7 }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"hns" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"hnk" = ( +/obj/item/paper, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"hnl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"hny" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"hnM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"hnS" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"hnt" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"hnv" = ( -/obj/structure/machinery/power/smes/magical{ - capacity = 9e+008; - charge = 9e+008; - dir = 4; - name = "plasma power generator" +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"hnC" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/pontoon_beach) -"hnD" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"hoy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) +"hoB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow/north, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"hoj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) "hoC" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"hoD" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) "hoK" = ( /obj/item/stack/tile/plasteel{ pixel_x = -4; @@ -8746,82 +9267,105 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance) -"hoX" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "colony_sec_armory"; - name = "Secure Armory" +"hpd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"hpZ" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/hall_N) +"hqq" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"hqr" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"hqv" = ( +/obj/structure/bed, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"hpa" = ( -/obj/item/shard{ - icon_state = "medium" +"hqO" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/trash/crushed_cup, +/obj/item/prop/magazine/dirty/torn, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"hqS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/atmos_alert, +/obj/item/circuitboard/machine/smes{ + pixel_x = -7; + pixel_y = 7 }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/item/storage/box/mousetraps{ + pixel_x = 5; + pixel_y = 13 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"hpf" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"hpr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"hpG" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"hqR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"hqT" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/technical_storage) +"hrd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/paper{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/paper/research_notes/good{ + pixel_x = -15; + pixel_y = 2 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "hre" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"hrl" = ( +"hrf" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/pontoon_beach) +"hrg" = ( /obj/structure/blocker/invisible_wall/water, -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) -"hrF" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"hrD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless{ + pixel_x = 7; + pixel_y = 9 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"hrH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"hrK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"hrW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -4; + pixel_y = 8 }, -/turf/open/floor/shiva/blue/north, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) -"hse" = ( -/obj/structure/bed/chair, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) +"hrU" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "hso" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8831,21 +9375,20 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) -"htc" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/surface/table, +"hsw" = ( +/obj/structure/window/framed/colony, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/maintenance/north) +"hsD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"hsW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "hte" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/vessel) @@ -8864,27 +9407,38 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"huw" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"htA" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/item/paper/crumpled{ + pixel_x = 9 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"huz" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"htR" = ( +/obj/structure/machinery/landinglight/ds1/spoke{ + pixel_y = -5; + pixel_x = 13 + }, +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"htT" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -6; + pixel_y = -3 }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"hub" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "huE" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -8894,38 +9448,17 @@ "huF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"hvr" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/redcorners, -/area/varadero/interior/morgue) -"hvK" = ( -/obj/structure/disposalpipe/segment, -/obj/item/trash/chunk{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"hvW" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"hvY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"hwm" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/technical_storage) -"hwK" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/storage/belt/medical{ - pixel_x = -3; - pixel_y = 1 +"huN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"hwl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "hwL" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/gm/dirt, @@ -8934,17 +9467,30 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"hxr" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 12 +"hxm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"hxu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"hxw" = ( -/obj/structure/ladder, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) +/area/varadero/exterior/eastbeach) "hxO" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -8952,26 +9498,45 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) "hxV" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"hxY" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) +"hyg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/disposals) +"hyM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "hyT" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_4" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"hzr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "hzx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"hzA" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/maintenance/north) "hzK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -8984,16 +9549,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"hzN" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) "hzQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"hzY" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) "hAg" = ( /obj/structure/largecrate/random/case/double, /turf/open/gm/dirt, @@ -9002,51 +9564,43 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/varadero/interior/court) -"hAE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" +"hAl" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) -"hAL" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"hAP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 16 }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hAs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"hAX" = ( +/area/varadero/interior/administration) +"hAD" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"hBm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "Underground Morgue"; - req_access_txt = "100" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"hBs" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 }, -/turf/open/floor/dark2, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"hBt" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "hBA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"hCb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) "hCw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -9060,27 +9614,41 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"hCx" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"hCT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"hDg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"hCz" = ( +/obj/structure/ladder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"hCB" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Sports Center"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"hCN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"hDe" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = 11; + pixel_y = 9 }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = 10; + pixel_y = 20 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"hDj" = ( /turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"hDu" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/area/varadero/interior/security) "hDw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -9089,13 +9657,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hDy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/window/framed/colony, +"hDD" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior_protected/caves) "hDY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "windsock"; @@ -9104,11 +9669,23 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"hEQ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/key/cargo_train, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) +"hEx" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"hES" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "hET" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -9117,63 +9694,63 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hEU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +"hEX" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz2_near) +"hFv" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "hFM" = ( /obj/structure/window_frame/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"hFR" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) -"hGd" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"hFS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"hGb" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "hGl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"hGn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) "hHn" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hHG" = ( +"hHH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"hHN" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"hHL" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/digsite) +/area/varadero/interior_protected/caves) "hHR" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -9185,29 +9762,12 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/security) -"hIf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/swcaves) -"hJi" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"hJm" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"hJn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hIT" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "hJq" = ( /obj/structure/bed/chair{ dir = 4 @@ -9231,39 +9791,73 @@ /obj/structure/blocker/fog, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) +"hJJ" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"hJK" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/red{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"hKH" = ( +/obj/structure/surface/rack, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "hKK" = ( /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"hMn" = ( +"hLj" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"hMw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/area/varadero/interior/caves/north_research) +"hLo" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"hMy" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"hLt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/security) +/obj/structure/closet/crate, +/obj/item/trash/crushed_cup, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"hLI" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/varadero/interior/administration) "hMG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9279,16 +9873,6 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastbeach) -"hML" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) -"hMY" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "hNb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -9308,19 +9892,12 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"hNB" = ( -/obj/structure/closet/crate, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"hNG" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) -"hOu" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"hNt" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "hOv" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -9333,17 +9910,49 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"hOy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/administration) +"hOJ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "hPj" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/security) -"hPl" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "hPq" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"hPI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"hQA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "hQP" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot{ pixel_x = 4; @@ -9351,39 +9960,52 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hRL" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"hRQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +"hRe" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) +"hRY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"hTg" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"hSl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 }, -/obj/structure/machinery/firealarm{ +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hSE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"hSV" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - pixel_y = -24 + health = 300 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"hTs" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/structure/machinery/light, -/turf/open/floor/shiva/red/north, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"hTi" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hTn" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) -"hTG" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) "hTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -9393,84 +10015,65 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/vessel) -"hTS" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"hUo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"hUe" = ( +/obj/structure/closet/crate/construction, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"hUG" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3{ + pixel_y = -3 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "hUU" = ( /obj/structure/machinery/requests_console{ icon_state = "req_comp_open" }, /turf/closed/wall, /area/varadero/interior/cargo) -"hVa" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"hVb" = ( +"hUZ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hVK" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) +"hWb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"hVi" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"hVF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/beach_bar) -"hVI" = ( -/obj/structure/sink{ - pixel_y = 15 +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Showers"; + req_access_txt = "100" }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "hWv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"hWF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "hWG" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"hWZ" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ +"hWL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"hWV" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "hXe" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/knife{ @@ -9484,107 +10087,97 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hXx" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) -"hXR" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/pontoon_beach) -"hXW" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"hYc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"hYB" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"hXf" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = -26 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"hYL" = ( +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"hXj" = ( /obj/structure/platform_decoration/kutjevo{ - dir = 1 + dir = 8 }, -/turf/open/gm/river/ocean/deep_ocean, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"hXD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"hXR" = ( +/turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"hYT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hXT" = ( +/obj/structure/prop/static_tank/water{ + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"hYW" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"hXX" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"hYk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"hZa" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"hYz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"hZq" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) -"hZb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) "hZx" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"hZB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "hZE" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/north, /area/varadero/exterior/lz1_near) -"iap" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"hZS" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 }, -/obj/structure/blocker/invisible_wall/water, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/area/varadero/interior/maintenance/north) "iax" = ( /turf/open/gm/coast/south, /area/varadero/interior/oob) -"iaF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 +"iaE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance/research) "iaH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -9602,24 +10195,19 @@ /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ibb" = ( -/obj/structure/pipes/vents/pump{ +"ibr" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/beach_bar) "ibs" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"ibw" = ( -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) -"ibS" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "ibV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, @@ -9642,28 +10230,14 @@ /obj/structure/surface/table, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"icd" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "icf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) "icl" = ( /obj/structure/prop/rock/brown, /turf/closed/wall/rock/brown, @@ -9674,70 +10248,40 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ics" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"icv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/storage/firstaid/rad{ - pixel_y = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "idr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"idw" = ( -/turf/open/floor/wood, -/area/varadero/interior/security) -"idJ" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Palm Airfield" - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"iei" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"idv" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"iek" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/red/southeast, +"idw" = ( +/turf/open/floor/wood, /area/varadero/interior/security) -"ieB" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ife" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"idN" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/pontoon_beach/lz) +"idS" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 12 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/area/varadero/exterior/lz1_near) +"iem" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"ien" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "ifO" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -9746,6 +10290,10 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/farocean) +"ifV" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "ifZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -9753,30 +10301,15 @@ /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/wood, /area/varadero/interior/court) -"igd" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 - }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"igv" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_N) -"igw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 +"igc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Lobby"; + req_access_txt = "100" }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"igA" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "igB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -9791,29 +10324,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"igG" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/greencorners/east, -/area/varadero/interior/hall_SE) "igH" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"ihQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"ihP" = ( -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"ihW" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/area/varadero/interior/maintenance/research) "ihX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -9829,45 +10354,49 @@ "ihY" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"iib" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +"ihZ" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Evidence Storage"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"iir" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"iiE" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"iiG" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"iiJ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"ijV" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +/area/varadero/interior/security) +"iif" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"ijZ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/swcaves) -"ikc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"ikq" = ( +/area/varadero/interior/maintenance/security) +"iiq" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"iiA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp78, +/obj/item/weapon/gun/pistol/vp78{ + pixel_y = -4 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"iiJ" = ( +/obj/item/device/flashlight/slime{ + mouse_opacity = 0; + invisibility = 1; + indestructible = 1; + alpha = 0 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"iiN" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/chapel) +"iiU" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; icon_state = "planter_box_soil" @@ -9879,70 +10408,97 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"iji" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ijV" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"ijZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/swcaves) +"ikk" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "iks" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"ikA" = ( -/obj/structure/surface/table/woodentable, +"ikx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"ilB" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"ikC" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"ikO" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1; + locked = 1; + name = "\improper Engine Room" }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/technical_storage) -"ilE" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"imn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"ilq" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"imc" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"imr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "imz" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/records) -"imB" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/pontoon_beach) -"ino" = ( +"imL" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"imZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"inq" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3{ +/obj/item/tool/pickaxe/drill{ + pixel_x = -2; pixel_y = -3 }, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"inv" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 }, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"inG" = ( -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"inX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) +/area/varadero/interior/comms1) +"inv" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "ioc" = ( /obj/structure/surface/table/woodentable, /obj/item/evidencebag, @@ -9953,17 +10509,51 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"ion" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iol" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "iop" = ( /obj/structure/closet/medical_wall, /turf/closed/wall, /area/varadero/interior/medical) +"ioG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"ioI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) +"ioZ" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"ipf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "ipi" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -9975,11 +10565,6 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"ips" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "ipC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" @@ -9990,6 +10575,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"ipD" = ( +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = 3 + }, +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) +"ipR" = ( +/obj/structure/bed/chair, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "ipZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -9997,107 +10596,88 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iqg" = ( -/turf/open/floor/white, -/area/varadero/interior/toilets) -"iqp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/bible{ - pixel_x = -2; - pixel_y = 3 +"iqk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"iqP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "ira" = ( /obj/item/frame/apc, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"irh" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"irL" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"irP" = ( -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/morgue) -"isg" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"irr" = ( +/obj/item/clothing/gloves/yautja{ + anchored = 1; + can_block_movement = 1; + charge = 1; + charge_max = 1; + color = "#a8a7a5"; + density = 1; + desc = "The ship's on-board self destruct system, let's hope you never have to use it."; + name = "Self Destruct System"; + pixel_y = 24 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"isS" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/bed/chair/hunter{ + dir = 1 }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"irA" = ( /obj/structure/bed/chair{ - buckling_y = 18; dir = 8 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"irM" = ( +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"isQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"isX" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"isY" = ( +/obj/item/tool/crowbar, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "itb" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/administration) -"ith" = ( +"itg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"itu" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"itw" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, +/obj/structure/machinery/light, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"ith" = ( +/obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"itB" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) +/area/varadero/interior_protected/maintenance/south) "itP" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 @@ -10121,29 +10701,41 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iuC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_one_access = null; - req_access = null +"iuz" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"ivk" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"iuY" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "ivo" = ( /obj/structure/airlock_assembly, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ivy" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) +"ivt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) +"ivu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "iwf" = ( /mob/living/simple_animal/mouse, /turf/open/floor/wood, @@ -10152,17 +10744,30 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/wood, /area/varadero/interior/court) -"iwu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" +"iwh" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "iwT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"iwY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) +"ixb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "ixl" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, @@ -10170,22 +10775,34 @@ "ixr" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) +"ixs" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "ixw" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"ixJ" = ( -/obj/structure/prop/static_tank/water{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) +"ixA" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "ixQ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"iyh" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/toilets) "iyk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10195,6 +10812,16 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"iyp" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "iyv" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/item/stack/tile/plasteel{ @@ -10203,21 +10830,29 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"iyH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"iyZ" = ( +"iyA" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"iyD" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"izk" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/dock_control) +"izx" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "izy" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -10225,15 +10860,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"izG" = ( -/obj/structure/bedsheetbin, -/obj/item/storage/box/attachments{ - pixel_x = -2; - pixel_y = 8 +"izH" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "iAc" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 4 @@ -10241,10 +10873,35 @@ /obj/item/clothing/suit/armor/vest, /turf/open/floor/carpet, /area/varadero/interior/bunks) +"iAw" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -10; + pixel_y = -9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"iAy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "iAE" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) +"iAO" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "iAP" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -10255,81 +10912,43 @@ "iAX" = ( /turf/open/floor/carpet, /area/varadero/interior/administration) -"iBB" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"iBN" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"iBQ" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"iBS" = ( -/obj/structure/machinery/light{ +"iCp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"iCt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"iCb" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/security) +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "iCB" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"iCL" = ( +"iCI" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"iCP" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/wred/southeast, +/area/varadero/interior/medical) "iDn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"iDo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"iDC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"iDI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ - pixel_x = -10; - pixel_y = 15 - }, -/obj/item/reagent_container/blood/empty{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/storage/box/cups{ - pixel_x = -13; - pixel_y = 3 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) "iDM" = ( /obj/structure/machinery/bot/medbot{ name = "FOXYBOT 3000"; @@ -10337,15 +10956,16 @@ }, /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"iDP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"iDV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/green/north, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) +"iDZ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "iEe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10353,28 +10973,21 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"iEn" = ( -/obj/structure/prop/rock/brown{ - layer = 2 - }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"iEj" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/vessel) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "iFb" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) -"iFh" = ( -/turf/open/floor/shiva/purple/northwest, -/area/varadero/interior/research) +"iFf" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "iFm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/guestpass{ @@ -10390,37 +11003,51 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"iGA" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/wood, -/area/varadero/interior/library) -"iGW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +"iGd" = ( /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"iHa" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/electrical) +/area/varadero/interior/maintenance/north) +"iGT" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "iHh" = ( /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/carpet, /area/varadero/interior/security) -"iHx" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) +"iHp" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"iHt" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"iHD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "iHE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"iHS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"iHJ" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"iHQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "iIc" = ( /obj/item/device/flashlight/slime{ mouse_opacity = 0; @@ -10430,59 +11057,50 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pool) -"iIq" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/turf/open/floor/wood, -/area/varadero/interior/library) "iIt" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, /area/varadero/interior/records) -"iIK" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) "iIY" = ( /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"iJy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"iJc" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"iJv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/device/cassette_tape/ocean{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/device/cassette_tape/pop2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "iJD" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"iKB" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) -"iKC" = ( -/obj/structure/machinery/light{ - dir = 4 +"iJW" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/beach_bar) +"iKl" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"iLb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"iKt" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz1_near) "iLd" = ( /obj/structure/window/reinforced{ dir = 4; @@ -10512,39 +11130,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"iLv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "iLD" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"iMB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"iLW" = ( +/obj/item/shard{ + icon_state = "medium" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"iNo" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"iNC" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"iNW" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"iNX" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/area/varadero/interior/caves/east) +"iNp" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"iOe" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "iOi" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -10556,55 +11169,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"iOC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Sample Isolation"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"iOG" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) "iOQ" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/varadero/interior/records) -"iOT" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"iPi" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"iPp" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/maintenance/south) -"iPr" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, +"iOR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"iOU" = ( +/turf/open/floor/asteroidwarning/northeast, /area/varadero/exterior/lz1_near) +"iPe" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "iPw" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -10617,30 +11197,49 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"iQb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"iQB" = ( -/obj/item/device/flashlight/lamp/tripod, +"iPX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"iQK" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"iQQ" = ( -/obj/structure/prop/turbine_extras/left, +/area/varadero/interior/oob) +"iQL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"iQX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 6 +/area/varadero/exterior/lz2_near) +"iQP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"iRm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/technical_storage) "iRw" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -10648,26 +11247,66 @@ /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"iSW" = ( -/turf/open/gm/dirt, -/area/varadero/interior/maintenance/north) -"iSZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"iRP" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"iSw" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"iTt" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"iSW" = ( +/turf/open/gm/dirt, +/area/varadero/interior/maintenance/north) +"iSX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"iTg" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/storage/marine/veteran/dutch{ + layer = 3.1 + }, +/obj/item/clothing/under/gimmick/dutch, +/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ + pixel_y = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"iTu" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "iTP" = ( /obj/structure/filingcabinet{ density = 0; @@ -10688,52 +11327,97 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iUg" = ( -/obj/structure/disposalpipe/segment{ +"iTU" = ( +/obj/structure/surface/table, +/obj/item/inflatable{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/inflatable{ + pixel_x = 6 + }, +/obj/item/inflatable{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/technical_storage) +"iUi" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"iUL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"iUM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +"iUN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"iUX" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) "iUZ" = ( /obj/structure/ore_box, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iVF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/trash/crushed_cup, +"iVM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/area/varadero/interior/security) "iWj" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"iWR" = ( -/obj/structure/bed/chair{ - dir = 4 +"iWz" = ( +/obj/structure/closet, +/obj/item/device/flashlight/lantern, +/obj/item/map/current_map, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"iWQ" = ( +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 11 }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/cargo) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iWV" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) +"iWX" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"iXh" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"iXi" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "iXy" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -10743,23 +11427,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iXC" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"iYd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) "iYi" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 @@ -10769,140 +11436,132 @@ /obj/item/device/camera_film, /turf/open/floor/wood, /area/varadero/interior/security) -"iZl" = ( -/obj/structure/target/syndicate, +"iYF" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"iZA" = ( -/obj/structure/window/framed/colony/reinforced, +/area/varadero/exterior/lz2_near) +"iYJ" = ( +/obj/structure/window_frame/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"iZP" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"iZU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"iZX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"jaC" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"jaF" = ( -/turf/open/gm/coast/east, -/area/varadero/exterior/pontoon_beach) -"jaR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/area/varadero/exterior/eastbeach) +"iYN" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"jbm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"jbs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/technical_storage) +"iYS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) -"jbD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/encryptionkey/dutch, -/obj/item/device/encryptionkey/dutch{ - pixel_x = -6 - }, -/obj/item/device/encryptionkey/dutch{ - pixel_x = 8; - pixel_y = 3 +"iYY" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/obj/item/book/manual/marine_law{ - pixel_x = 8 +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -5; - pixel_y = 1 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"iZc" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/obj/item/restraint/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"iZd" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"iZP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) +"jap" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"jar" = ( +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/turf/open/floor/shiva/redfull, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) -"jbL" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"jaF" = ( +/turf/open/gm/coast/east, +/area/varadero/exterior/pontoon_beach) +"jaX" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"jbl" = ( +/obj/structure/bed/chair/hunter{ + dir = 1 }, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"jce" = ( -/obj/structure/disposalpipe/segment{ +"jbG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"jbH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"jbJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "jcr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/swcaves) -"jcH" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"jcu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "jcT" = ( /turf/closed/wall, /area/varadero/interior/maintenance) -"jdc" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 +"jcX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + icon_state = "door_locked"; + id = "engine_electrical_maintenance"; + locked = 1; + name = "Underground Power Substation"; + req_access_txt = "100" }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +/area/varadero/interior/electrical) "jdm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"jdt" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) "jdu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10917,17 +11576,19 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"jdx" = ( -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"jdZ" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) +"jdO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "jek" = ( /turf/open/gm/coast/west, /area/varadero/exterior/eastocean) +"jen" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "jeO" = ( /obj/structure/machinery/conveyor, /obj/structure/plasticflaps, @@ -10937,37 +11598,56 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"jeX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/sheet/mineral/plastic{ - amount = 3 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +"jff" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/wood, +/area/varadero/interior/records) +"jfi" = ( +/obj/structure/prop/broken_arcade, +/turf/open/floor/wood, +/area/varadero/interior/library) "jfA" = ( /obj/item/device/motiondetector/hacked, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"jge" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/attachment, +"jfM" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/item/device/cassette_tape/pop2{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 7 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"jfX" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/security) +"jgE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"jgF" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/area/varadero/interior/maintenance/security) +"jgJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "jgV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jhh" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) "jhu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10981,11 +11661,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"jjd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/camera, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) "jjj" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -10994,51 +11669,45 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"jjs" = ( +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/disposals) "jju" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jjK" = ( +"jjB" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"jjM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"jkv" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"jlK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"jkk" = ( +/obj/structure/bedsheetbin, +/obj/item/storage/box/attachments{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"jkp" = ( +/obj/structure/closet/crate, +/obj/item/trash/chunk, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"jkF" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"jma" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) +"jlW" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "jmb" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -11052,48 +11721,32 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jmg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"jmA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"jnb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"jnv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"jmK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"jne" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/varadero/interior/cargo) -"jnt" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"jnS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/obj/structure/machinery/computer/communications{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"jnO" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) "joe" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -11105,6 +11758,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"jot" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"joy" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"joM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "joO" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/structure/cable/heavyduty{ @@ -11116,12 +11782,10 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"joX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/yellowcorners/east, -/area/varadero/interior/cargo) +"joY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "jpm" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -11130,12 +11794,20 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jpr" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "jpD" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves) +"jpQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jpT" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "jqd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -11144,6 +11816,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"jqg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 1; + name = "\improper Underground Security Interrogation Observation"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"jql" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "jqu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, @@ -11152,14 +11839,6 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"jqz" = ( -/obj/structure/surface/rack, -/obj/item/clipboard, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"jqP" = ( -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) "jrq" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -11173,95 +11852,91 @@ /obj/structure/prop/invuln/overhead_pipe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jrB" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"jrH" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/green/north, +"jrw" = ( +/turf/open/floor/shiva/red/east, /area/varadero/interior/hall_N) -"jrW" = ( -/obj/item/clothing/head/helmet, +"jrx" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"jsj" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) -"jsk" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ +/area/varadero/interior/cargo) +"jrC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) -"jsn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) -"jsw" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"jrD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"jrR" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "jsx" = ( /obj/item/prop/almayer/comp_open, /obj/structure/surface/table, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"jsF" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "jsG" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jtO" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"jut" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"jsV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) -"juE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"juF" = ( -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/hall_SE) +"jtk" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"jul" = ( +/obj/structure/girder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "juW" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms3) -"jvo" = ( +"jvf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"jvg" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "jwf" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jwz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Brig"; - req_access_txt = "100" +"jwP" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) -"jwT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) "jwX" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -11273,55 +11948,107 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jyY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, +"jxn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"jxv" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, /turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance/north) -"jzv" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/oil, +/area/varadero/interior/mess) +"jxM" = ( +/obj/structure/pipes/binary/passive_gate, /turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) -"jzP" = ( -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"jzS" = ( -/obj/structure/catwalk, -/obj/structure/machinery/light{ - dir = 8 +"jxU" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"jyt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/obj/structure/filtration/flacculation_arm{ +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/structure_lattice{ density = 0; - layer = 2.1 + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" }, -/turf/open/gm/river/desert/deep/no_slowdown, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) +"jzk" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"jzT" = ( -/obj/structure/machinery/light{ - dir = 8 +"jzC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"jzW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = -5; + pixel_y = 17 }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "jzZ" = ( /turf/open/floor/carpet, /area/varadero/interior/library) -"jAq" = ( -/obj/structure/closet/toolcloset, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +"jAa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "jAI" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"jBr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"jBv" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/caphat{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/clothing/head/cmcap, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "jBw" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 4; @@ -11329,94 +12056,64 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"jBB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/northeast, -/area/varadero/interior/disposals) -"jBI" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"jCk" = ( +"jBK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"jCm" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"jCj" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) "jCs" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jCt" = ( -/obj/structure/machinery/computer/atmos_alert{ +"jDm" = ( +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/disposals) -"jCw" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) -"jDq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"jDy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) -"jDR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"jDU" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 +/turf/open/floor/darkgreencorners2/north, +/area/varadero/interior/hall_SE) +"jDE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"jEa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"jEt" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"jEf" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/interior/oob) +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) "jEv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -11428,10 +12125,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jEx" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) "jEG" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -11440,27 +12133,14 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"jEP" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"jES" = ( +"jFa" = ( /obj/structure/bed/chair/office/dark{ - dir = 1 + dir = 8; + pixel_x = -6; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"jEU" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_N) -"jFd" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +/area/varadero/interior/maintenance/security) "jFt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/wood/normal{ @@ -11471,38 +12151,48 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jFG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"jFR" = ( +/obj/item/weapon/baton, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"jFZ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70{ + pixel_y = -2 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"jGB" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"jHa" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"jGc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) "jHb" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"jHH" = ( -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) +"jHv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"jHE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/varadero/interior/toilets) "jHJ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/toolbox/mechanical{ @@ -11515,84 +12205,40 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jHT" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"jIt" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, +"jHP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"jHR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"jIc" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"jIR" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"jIH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/area/varadero/interior/electrical) "jJf" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/interior/caves/east) -"jJh" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/varadero/exterior/lz1_near) "jJn" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"jJs" = ( -/obj/structure/shuttle/engine/router{ - dir = 4; - unacidable = 0 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"jJu" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/obj/item/tool/pen/clicky{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) "jJw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"jJx" = ( -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/hall_N) +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "jJC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -11602,31 +12248,12 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jJV" = ( -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"jKp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"jJH" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"jKJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/paper/janitor{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) "jKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11657,51 +12284,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jLc" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"jLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"jLu" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "jLU" = ( /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jNk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"jLX" = ( +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"jMP" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"jNl" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "jNn" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -11729,46 +12325,6 @@ /obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jNV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"jOi" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"jOB" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"jOD" = ( -/obj/structure/lz_sign/new_varadero, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"jOE" = ( -/obj/structure/largecrate/random/mini/chest/b, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"jOM" = ( -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"jPi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastocean) -"jPt" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) "jPM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11781,9 +12337,6 @@ "jQa" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jQl" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) "jQB" = ( /obj/structure/surface/table/woodentable, /obj/item/clipboard, @@ -11794,30 +12347,41 @@ /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/varadero/interior/security) -"jQF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"jRt" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"jRi" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarwest"; - unacidable = 1; - name = "Pontoon West Door"; - openspeed = 17; +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"jRX" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/varadero/interior/cargo) -"jSs" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"jSb" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"jSc" = ( +/obj/item/trash/boonie, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"jSd" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"jSD" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/barcardine, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/exterior/lz1_near) "jSN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/woodentable{ @@ -11825,118 +12389,127 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"jSR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "jSX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) +"jTb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "Underground Morgue"; + req_access_txt = "100" + }, +/turf/open/floor/dark2, +/area/varadero/interior/morgue) "jTj" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) +"jTn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"jTB" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "jTR" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"jUd" = ( +"jUy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"jUh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Library"; + req_one_access = null; + req_access = null }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"jUB" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"jVP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"jUX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"jVS" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"jVk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"jWi" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 5; + pixel_y = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"jVO" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/clothing/mask/cigarette/ucigarette{ + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"jWg" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"jWU" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"jWr" = ( -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"jWT" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "jXp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jXz" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"jXJ" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"jXU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jXA" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"jYo" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"jXT" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "jYZ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jZf" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/turf/open/floor/wood, -/area/varadero/interior/library) +"jZi" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "jZE" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"jZF" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "jZG" = ( /obj/structure/window/reinforced{ dir = 4; @@ -11959,164 +12532,175 @@ /obj/item/clothing/suit/storage/bomber/alt, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jZK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"jZR" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance/north) -"jZU" = ( -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/cargo) -"jZX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"jZM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null + name = "\improper Theta-V Research Laboratory"; + req_one_access = null; + req_access = null }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"kaI" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"kaU" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"kby" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior/hall_NW) +"kaE" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"kaH" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"kba" = ( +/obj/item/book/manual/evaguide, +/turf/open/floor/wood, +/area/varadero/interior/library) +"kbr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "kbQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"kbX" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 +"kbT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"kcd" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "kce" = ( -/turf/open/floor/plating, -/area/varadero/interior_protected/caves/central) -"kch" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"kci" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) "kcn" = ( /obj/item/stack/sandbags_empty/full, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"kcQ" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"kda" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "kdq" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"kdD" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"kdv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"kdH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"kdK" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/area/varadero/interior_protected/maintenance/south) +"kdO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"kdQ" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kdT" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/varadero/exterior/lz1_near) -"kem" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/interior/maintenance/security) +"kdW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/closet/crate/ammo/alt, -/obj/item/storage/belt/utility, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"kex" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/monsoon) -"keD" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"keG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/varadero/interior/hall_NW) +"keB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"keS" = ( -/obj/structure/surface/rack, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) "keY" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"kfb" = ( -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "kfc" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kfi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/wood, -/area/varadero/interior/library) -"kfp" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"kfr" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) "kfG" = ( /turf/closed/wall, /area/varadero/interior/caves/east) -"kfI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +"kfO" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"kfS" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -32; + pixel_y = -18; + indestructible = 1 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) +"kfW" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) +"kfX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "kgm" = ( /obj/effect/vehicle_spawner/van/decrepit{ layer = 3.1 @@ -12133,44 +12717,56 @@ "kgA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastbeach) -"khI" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kic" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +"kgG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light, +/obj/item/circuitboard/computer/powermonitor, +/obj/item/stack/cable_coil/cut{ + pixel_y = 12 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"kip" = ( -/obj/structure/closet/crate/construction, -/obj/item/storage/belt/utility/full, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastbeach) -"kir" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"kgN" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/obj/structure/disposalpipe/junction, +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"kiA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless{ - pixel_x = 7; - pixel_y = 9 +/area/varadero/interior/disposals) +"khV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"kiI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -4; - pixel_y = 8 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"kiT" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"kjo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"kiC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"kjq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "kjr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -12179,12 +12775,12 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"kjJ" = ( -/obj/structure/morgue{ - dir = 8 +"kjG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "kjN" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, @@ -12193,15 +12789,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"kkj" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Sample Isolation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +"kkk" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) "kkt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -12214,91 +12805,74 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"kkx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "kkF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"kll" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/swcaves) -"klm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7 +"kkO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"klA" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; - icon = 'icons/turf/walls/hunter.dmi'; - icon_state = "globe"; - name = "Hunter Globe"; - pixel_y = 16 +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"klJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "klT" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/research) -"kmg" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/eastbeach) -"kmH" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) +"kme" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"kmK" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "kmW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"kmX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Underground Lavatory"; - req_access_txt = "100" +"knF" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -6; + pixel_y = 6 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"knl" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/trash/crushed_cup, -/obj/item/prop/magazine/dirty/torn, -/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"knD" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"knE" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"koc" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ +"knH" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"koh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"koP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"koQ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "koZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -12307,57 +12881,115 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"kpa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"kpb" = ( -/obj/structure/machinery/light{ +"kpk" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"kpW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"kpi" = ( -/obj/structure/girder/displaced, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"kql" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"kqq" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) "kqs" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"kqy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "kqA" = ( /obj/structure/window/framed/colony, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"kqD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "kqF" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"kqM" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/varadero/interior/administration) +/obj/structure/prop/power_transformer, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"kqG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "kqN" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"kqY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -11; - pixel_y = 16 +"kqP" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -9; - pixel_y = 13 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"kqZ" = ( +/obj/item/tool/mop, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"krs" = ( +/obj/structure/prop/rock/brown{ + layer = 2 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) +"krF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "krL" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green, @@ -12367,14 +12999,10 @@ /obj/item/paper, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"krX" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, +"krW" = ( +/obj/item/clothing/head/helmet, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/interior/maintenance/security) "ksf" = ( /obj/structure/machinery/light{ dir = 4 @@ -12385,9 +13013,21 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ksp" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) +"ksl" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"kso" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/stamp, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"kss" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "ksu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -12400,40 +13040,24 @@ layer = 2.99 }, /turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"ksX" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior_protected/maintenance/south) -"ktv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"ktK" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"kuu" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"kuG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/area/varadero/exterior/lz2_near) +"ksX" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior_protected/maintenance/south) +"ktf" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) +"ktl" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_N) +"kuk" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kuO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -12441,25 +13065,32 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"kvb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "kvj" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "kvC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"kvE" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "kvG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -12467,47 +13098,101 @@ }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"kwb" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +"kvM" = ( +/obj/structure/machinery/light, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"kwf" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"kwg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/varadero/interior/electrical) +"kwL" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"kwV" = ( +/obj/structure/machinery/power/smes/magical{ + capacity = 9e+008; + charge = 9e+008; + dir = 4; + name = "plasma power generator" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kxb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"kxc" = ( +/obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/area/varadero/interior_protected/caves) "kxe" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/interior_protected/caves/central) -"kxh" = ( -/obj/structure/pipes/vents/pump{ +"kxl" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) +"kxq" = ( +/obj/structure/catwalk, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"kxL" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"kxW" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/bedsheet/hos{ + layer = 3.1 + }, +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"kxX" = ( +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"kyd" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = "brg" +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) "kyj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) -"kyl" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"kyn" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "kyp" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastocean) @@ -12522,41 +13207,49 @@ "kyG" = ( /turf/closed/wall, /area/varadero/interior/disposals) -"kyN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/crowbar, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) "kyP" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"kyV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Sample Isolation"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "kyY" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kzb" = ( -/turf/open/floor/shiva/wred/west, -/area/varadero/interior/medical) -"kzj" = ( -/obj/item/tool/kitchen/knife, -/obj/structure/surface/table, -/turf/open/floor/asteroidwarning/east, -/area/varadero/exterior/lz1_near) +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/hall_SE) "kzp" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, /obj/item/tool/weldingtool, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"kzD" = ( -/obj/structure/bed/chair/hunter, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"kzr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 17 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "kzE" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/holywater, @@ -12566,50 +13259,38 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"kzX" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"kAd" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"kzV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 9 }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"kAe" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kAm" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"kAq" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"kAs" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 +"kAz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"kAG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) "kAH" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -12628,20 +13309,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kAQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"kBl" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -7; - pixel_y = -11; - desc = "A chest... filled with the wildest riches!" - }, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz2_near) "kBo" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -12658,89 +13325,61 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"kBv" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"kBD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/hall_SE) -"kBL" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "kBZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/security) -"kCg" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"kCx" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +"kCm" = ( +/obj/structure/closet/toolcloset, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"kCz" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"kCD" = ( +/obj/item/tank/anesthetic, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"kCP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "kDa" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/obj/structure/machinery/flasher_button{ - id = "sec_checkpoint"; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 36 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "kDk" = ( /obj/item/tool/screwdriver, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kDm" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"kEd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kDn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"kEe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"kDS" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -1; + pixel_y = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_y = 9 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"kEw" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"kEf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "kEB" = ( /obj/structure/prop/invuln/static_corpse/afric_zimmer{ desc = "A card lays in his lap. 'Happy birthday, Steve. Here's to another fruitful year!'"; @@ -12750,15 +13389,38 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kFr" = ( -/obj/structure/prop/power_transformer, +"kFa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"kFi" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"kFp" = ( +/obj/structure/largecrate/random/mini/chest/b, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"kFI" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/area/varadero/interior/maintenance/north) +"kFF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"kFO" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "kFV" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -12767,80 +13429,39 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"kGj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/rods, -/obj/item/storage/donut_box, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"kGn" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "kGq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) +"kGA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "kGJ" = ( /turf/open/gm/coast/east, /area/varadero/exterior/eastocean) -"kGL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/lz2_near) "kGM" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_NW) -"kGN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"kGR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 +"kGO" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"kHn" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"kHy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security Interrogation"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"kHx" = ( -/obj/item/weapon/gun/flare{ - current_mag = null - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"kHB" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 12 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_NW) -"kHU" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"kHZ" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/laundry) +/area/varadero/interior/security) "kIb" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -12864,106 +13485,82 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kIp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"kJg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"kJB" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"kJG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"kJU" = ( -/obj/structure/bed/chair/hunter, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"kJX" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; +"kIm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"kJY" = ( -/obj/structure/machinery/landinglight/ds2{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"kIH" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"kIN" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"kJd" = ( +/obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"kKm" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"kKn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kJe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Breakroom"; - req_one_access = null; - req_access = null +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"kJo" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"kKr" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/phoronglass{ - amount = 32 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"kJp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"kKE" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"kKN" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) -"kKP" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/filingcabinet{ +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"kJw" = ( +/obj/structure/machinery/prop/almayer/CICmap{ density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 + desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; + icon = 'icons/turf/walls/hunter.dmi'; + icon_state = "globe"; + name = "Hunter Globe"; + pixel_y = 16 }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -7; - pixel_y = 13 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"kJG" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"kKk" = ( +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/wood, -/area/varadero/interior/records) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "kKS" = ( /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"kKV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/east, +/area/varadero/interior/disposals) "kKX" = ( /obj/item/device/reagent_scanner{ pixel_x = 7; @@ -12977,45 +13574,44 @@ /obj/item/paper_bin, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"kKZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"kLt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) "kLF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"kLJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"kLV" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/item/shard{ - icon_state = "medium" +"kLT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"kLY" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"kLW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"kLZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "kMf" = ( /obj/structure/window/framed/colony/reinforced/tinted, /turf/open/floor/plating, /area/varadero/interior/security) +"kMv" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "kNa" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -13023,72 +13619,55 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"kOs" = ( -/obj/item/moneybag{ - anchored = 1; - desc = "A console designed by the Hunters to assist in flight pathing and navigation."; - dir = 8; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "overwatch"; - name = "Hunter Flight Console"; - pixel_x = -17 - }, -/obj/structure/bed/chair/hunter{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"kOz" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"kOB" = ( +"kNb" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/varadero/interior/library) +"kNu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_1_1" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/shiva/redfull, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"kOw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kOC" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"kOF" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/item/stack/sheet/wood, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"kOR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"kPI" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) +"kPa" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"kPH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "kPZ" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kQd" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"kQm" = ( -/obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"kQt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) "kQy" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -13101,32 +13680,13 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kQH" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -32; - pixel_y = -18; - indestructible = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/exterior/lz1_near) -"kQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"kQI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"kRn" = ( -/obj/item/device/mass_spectrometer, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "kRH" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz1_near) @@ -13138,13 +13698,6 @@ /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"kSh" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"kSq" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) "kTs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13155,25 +13708,76 @@ /obj/item/tool/pickaxe/silver, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kTW" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +"kTw" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"kTO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) "kUj" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/toolbox, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kUm" = ( +"kUo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"kUp" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"kUA" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/maintenance/north) +"kUG" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"kUW" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 + }, +/obj/structure/flora/bush/desert{ + pixel_y = 14 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_NW) +"kVj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"kVl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "kVq" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -13181,10 +13785,6 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"kVz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) "kVL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -13199,86 +13799,79 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kWl" = ( -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 +"kVU" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"kWs" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"kWw" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"kVW" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"kVX" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"kWn" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"kWA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/area/varadero/exterior/lz1_near) "kWB" = ( /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"kXH" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "kXQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"kYl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz1_near) -"kYw" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/comms3) -"kYG" = ( +"kYT" = ( /obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"kYL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/green{ - pixel_x = -4; - pixel_y = -4 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/clothing/under/shorts/blue{ - pixel_x = -2; - pixel_y = -2 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"kYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/red{ - pixel_x = 2; - pixel_y = 2 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"kZz" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"kZx" = ( -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/mess) -"kZK" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"kZA" = ( /obj/structure/machinery/power/apc/no_power/north, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"kZZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"kZF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) "laa" = ( /obj/structure/bed/chair{ dir = 1; @@ -13286,183 +13879,118 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"laB" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/maintenance/north) -"lbe" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"lbj" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"lbt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"lby" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"laj" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"lbL" = ( +/area/varadero/interior/hall_SE) +"laI" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"laV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"laZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"lbX" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/vessel) -"lbY" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) -"lci" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt, -/area/varadero/exterior/eastocean) -"lck" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"lcq" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"lcw" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"lcV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Sports Center"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"ldc" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"ldw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/gm/coast/beachcorner/north_east, -/area/varadero/interior/caves/east) -"ldE" = ( -/obj/item/clothing/head/helmet, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ldK" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"ldL" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "\improper Theta-V Research Laboratory Director's Office"; - req_access = null; - req_one_access = null +/area/varadero/interior/court) +"lbj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"lea" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"led" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"lbH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"lei" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"lfG" = ( -/obj/item/cell/high, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"lfL" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"lgJ" = ( -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"lhj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"lhs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) +"lbM" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"lbX" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/vessel) +"lcd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"lhu" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"lce" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"lci" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"ldw" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"lhA" = ( -/obj/structure/bed/chair{ +/turf/open/gm/coast/beachcorner/north_east, +/area/varadero/interior/caves/east) +"ldB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"ldR" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lfm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"lfO" = ( +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"lhC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "lhJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -13472,29 +14000,13 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"lhQ" = ( +"lhV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/tool/wirecutters/clippers, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"lib" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) -"lid" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"lie" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +/area/varadero/interior/maintenance/security) "liq" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -13502,6 +14014,16 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"lir" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) +"lit" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "liz" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -13511,144 +14033,102 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"liC" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ljH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/floodlight{ - name = "Floodlight" +"liI" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"lkF" = ( -/obj/item/ammo_magazine/smg/nailgun, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = -6; - pixel_y = -1 +/turf/open/floor/shiva/greencorners/east, +/area/varadero/interior/hall_SE) +"ljg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = 6; - pixel_y = 1 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"ljP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "lkH" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"llh" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt/desert_dug, -/area/varadero/interior/maintenance/north) -"lls" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) -"llw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"llA" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/hall_N) -"llI" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 +"lkU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"lll" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"llL" = ( -/obj/structure/sink{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - pixel_y = -10 - }, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"lmK" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"lmT" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 + icon_state = "hr_kutjevo"; + name = "support struts" }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"llJ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/storage/large_holster/katana/full, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"lnf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"lnh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"lnl" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"llS" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"lnb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"lni" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lnn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "lnO" = ( /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"loc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"lnQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"loo" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"loq" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"log" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lom" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) "loA" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -13656,15 +14136,10 @@ }, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"loJ" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +"loK" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) "loO" = ( /obj/structure/blocker/invisible_wall/water, /turf/closed/wall/r_wall/unmeltable, @@ -13676,17 +14151,32 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"lpi" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 +"loV" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"lpw" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"lpe" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) +"lpM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "lqa" = ( /obj/item/tool/warning_cone{ pixel_x = -11 @@ -13696,14 +14186,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lqd" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"lqr" = ( -/turf/open/floor/shiva/red/west, +"lqh" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "lqF" = ( /obj/structure/platform/kutjevo/smooth{ @@ -13721,72 +14206,78 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lrs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"lrf" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"lru" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"lrL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 7; - pixel_y = 13 +/area/varadero/interior/maintenance/security) +"lrH" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/implantcase/explosive{ - pixel_x = -3; - pixel_y = 3 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lrT" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"lsa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"lrO" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"lrY" = ( -/turf/open/floor/shiva/multi_tiles/north, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) -"lsr" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"lsI" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +"lsj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"lsA" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "colony_sec_armory"; + name = "Secure Armory" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "lsN" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"lsS" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "lsU" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_N) "lsZ" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"ltv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 11 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"lta" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ltt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "ltB" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -13794,16 +14285,22 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"ltH" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) -"ltJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 +"ltF" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"luf" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "luu" = ( /obj/item/tool/warning_cone{ pixel_x = -20 @@ -13821,26 +14318,15 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) +"luL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "luZ" = ( /obj/structure/closet/secure_closet/miner, /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"lvy" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"lwc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"lwl" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) "lwm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -13854,24 +14340,6 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"lwz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"lwB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"lxb" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) "lxe" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -13885,140 +14353,122 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) -"lxn" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) -"lxL" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/technical_storage) -"lyI" = ( -/obj/structure/bed/chair/hunter{ - dir = 1 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"lyJ" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) -"lyP" = ( -/turf/closed/wall/rock/brown, -/area/varadero/exterior/comms4) -"lza" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"lzd" = ( -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; - dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 - }, +"lxj" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"lzC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"lzD" = ( -/obj/effect/overlay/palmtree_r, -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/exterior/pontoon_beach) -"lzT" = ( -/turf/closed/wall/rock/brown, -/area/varadero/exterior/monsoon) -"lAC" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"lBd" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 6 - }, -/turf/open/floor/shiva/snow_mat, +/area/varadero/exterior/lz2_near) +"lxu" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/security) -"lBF" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"lBI" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"lCc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"lCn" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, +"lyP" = ( +/turf/closed/wall/rock/brown, /area/varadero/exterior/comms4) -"lCA" = ( -/obj/structure/largecrate/random/mini/chest, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"lCM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, +"lzp" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"lzC" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"lDF" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"lzD" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/pontoon_beach) +"lzT" = ( /turf/closed/wall/rock/brown, -/area/varadero/interior_protected/caves/digsite) -"lEN" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +/area/varadero/exterior/monsoon) +"lzW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) +"lAI" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"lER" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"lBC" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"lBG" = ( /obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, /turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) +"lBK" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"lBN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"lCz" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"lDF" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior_protected/caves/digsite) +"lDT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"lDV" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"lEg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"lEn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/maintenance/research) "lEV" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -14036,10 +14486,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"lFd" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "lFk" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, @@ -14051,33 +14497,39 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lFQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"lGc" = ( -/obj/structure/surface/table, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"lFW" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "lGp" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) +"lGu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) +"lGA" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/stamp{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "lGD" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"lGP" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "lGT" = ( /obj/structure/barricade/handrail/wire{ dir = 4; @@ -14088,29 +14540,25 @@ }, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"lHa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"lIn" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"lHu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"lIM" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"lHy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"lHB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) +/obj/structure/disposalpipe/segment, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White"; @@ -14122,98 +14570,73 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/carpet, /area/varadero/interior/administration) -"lJb" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"lKc" = ( +/obj/item/clothing/ears/earmuffs{ + layer = 3.1; + pixel_x = 2; + pixel_y = 18 }, -/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"lJg" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"lJs" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz2_near) -"lJS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/key/cargo_train, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"lKy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"lKH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/area/varadero/interior_protected/caves) +"lKl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"lKZ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"lLo" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"lMh" = ( -/obj/item/facepaint/sunscreen_stick, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"lMm" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"lMo" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/area/varadero/interior/maintenance/security) +"lKt" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"lKC" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"lLD" = ( +/obj/structure/plasticflaps/mining, /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"lLR" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"lLT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"lMu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) +"lMV" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/disposals) "lNb" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"lNv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) "lNw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/server_equipment/laptop/closed{ @@ -14229,45 +14652,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"lNU" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/technical_storage) -"lNY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"lOr" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/flora/pottedplant{ - desc = "How did that get in there?"; - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"lOH" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "lPk" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 1; @@ -14275,15 +14659,29 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"lQe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"lPI" = ( +/obj/structure/prop/mech/drill, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"lPK" = ( +/obj/item/moneybag{ + anchored = 1; + desc = "A console designed by the Hunters to assist in flight pathing and navigation."; + dir = 8; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "overwatch"; + name = "Hunter Flight Console"; + pixel_x = -17 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) +/obj/structure/bed/chair/hunter{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"lQb" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "lQg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -14297,69 +14695,94 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lQv" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"lQw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) -"lQN" = ( +"lQs" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "Revolting beyond description."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_teeth"; - name = "human-ish teeth"; - pixel_x = 1; - pixel_y = -2 +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"lQI" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"lQK" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) -"lRg" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) +"lRp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "lRz" = ( /obj/item/ammo_casing{ icon_state = "casing_7_1" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"lRB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Morgue"; - req_access_txt = "100" +"lRP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark2, -/area/varadero/interior/morgue) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"lRT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"lSl" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "lSG" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"lSN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"lSH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"lSS" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"lSU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "lTg" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"lTk" = ( +/obj/structure/target/syndicate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "lTv" = ( /obj/item/tool/warning_cone{ pixel_x = -13; @@ -14370,32 +14793,20 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lTP" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, +"lTw" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lUq" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"lUF" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, +/area/varadero/interior/hall_SE) +"lUr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"lUM" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/area/varadero/interior/medical) "lVf" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -14405,13 +14816,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lVy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) "lVB" = ( /obj/item/device/camera, /turf/open/floor/wood, @@ -14420,10 +14824,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"lVS" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "lVW" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -14453,13 +14853,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lWr" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/bonesetter/predatorbonesetter, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) "lWJ" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -14467,49 +14860,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lWK" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"lXg" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) "lXv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/holostool, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"lYf" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +"lXX" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) "lYo" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -14521,16 +14882,12 @@ /obj/structure/largecrate/random/case, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lYR" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"lYR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/white, +/area/varadero/interior/toilets) "lZa" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -14552,10 +14909,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lZn" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/hall_N) +"lZq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"lZE" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "lZU" = ( /obj/item/ammo_casing/shell{ dir = 10; @@ -14564,58 +14929,53 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/security) -"mac" = ( -/obj/item/shard{ - icon_state = "medium" - }, +"lZZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"mao" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"maG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/varadero/interior/maintenance) +"mai" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"maE" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"mbf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/pwine{ + pixel_x = 6; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/storage/box/drinkingglasses{ + pixel_x = -6; + pixel_y = 13 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" +/obj/item/reagent_container/glass/rag{ + pixel_x = -3; + pixel_y = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"mbs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stool, -/turf/open/floor/shiva/purplefull/west, +/turf/open/floor/carpet, /area/varadero/interior/research) -"mce" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, +"mbw" = ( +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"mct" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"mcA" = ( +/area/varadero/interior_protected/maintenance/south) +"mbU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"mcA" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "mcB" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/lightstick/red/spoke/planted{ @@ -14626,11 +14986,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"mcD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "mcN" = ( /obj/structure/coatrack{ pixel_x = 14; @@ -14648,120 +15003,132 @@ /obj/item/device/flashlight, /turf/open/floor/wood, /area/varadero/interior/administration) -"mcS" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"mcT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, +"mdu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"mdN" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/maintenance/south) -"mdi" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"mds" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"mdI" = ( +"mdW" = ( +/obj/structure/surface/table, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_x = 16; - pixel_y = -8 + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"mdJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_x = -3; - pixel_y = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"mev" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"mdN" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior_protected/maintenance/south) -"men" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance) -"meN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mez" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"meI" = ( +/obj/structure/prop/fishing/line/long/part2, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "meS" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"meY" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "mfa" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"mge" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick/red{ - pixel_x = 4; +"mfe" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"mfh" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -8; pixel_y = 7 }, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"mfG" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "mgq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"mgK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"mgL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mgM" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"mgS" = ( +/obj/structure/machinery/light, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "mgT" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"mgU" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) "mhf" = ( /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"mhh" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"mho" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"mhy" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"mhF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"miq" = ( -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) +/turf/open/floor/white, +/area/varadero/interior/security) +"mhN" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"mim" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mir" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/light_fixture, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "miy" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ @@ -14769,94 +15136,57 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_NW) -"mjm" = ( -/obj/structure/window/reinforced{ +"miK" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"mjc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"mjO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"mkj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"mkf" = ( -/turf/open/floor/shiva/purplecorners/west, -/area/varadero/interior/research) -"mky" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/court) -"mkz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/plasticflaps/mining, +/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"mkE" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"mlu" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"mly" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ +/area/varadero/interior_protected/maintenance/south) +"mkk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) +"mks" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"mkR" = ( +/obj/effect/landmark/good_item, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"mlm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "mlN" = ( /obj/vehicle/powerloader/ft, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"mlY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/snow_mat/east, +"mlQ" = ( +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/medical) -"mlZ" = ( -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"mmm" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 2; - pixel_y = 20 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/technical_storage) +"mmj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "mmq" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -14864,6 +15194,13 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"mmu" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "mmv" = ( /obj/structure/bed/chair{ buckling_y = 18; @@ -14885,12 +15222,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"mmY" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 +"mni" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "mnm" = ( /obj/structure/window/reinforced{ dir = 4; @@ -14916,18 +15257,6 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) -"mnp" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"mnr" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/hall_N) "mnz" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/prop/invuln/fire{ @@ -14943,18 +15272,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"mnO" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"mnR" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"mnP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "mnU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -14982,25 +15305,6 @@ }, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"moI" = ( -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/caves/digsite) "moK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -15012,247 +15316,143 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"moM" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) -"moR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Lobby"; - req_access_txt = "100" +"moN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"mpA" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) +"moR" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mpd" = ( /obj/structure/surface/rack, -/turf/open/floor/shiva/purple, +/obj/item/clipboard, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "mpL" = ( /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mpU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mpN" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"mqp" = ( +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ + pixel_x = 10 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"mqn" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"mqB" = ( +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"mqG" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mqH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"mrn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"mrs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"mrR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) -"mrV" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"mrY" = ( -/obj/structure/prop/rock/brown, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"msC" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"msS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/east, -/area/varadero/interior/disposals) -"msX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"mtk" = ( -/obj/structure/sink{ +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/administration) +"mri" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = -11; - pixel_y = 3 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/mirror{ - pixel_x = -32 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"mrL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"mtH" = ( -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) -"mtI" = ( -/obj/structure/bed/chair/comfy/orange{ - buckling_y = 9; - dir = 8; - pixel_y = 9 +"mrR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"mrY" = ( +/obj/structure/prop/rock/brown, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) +"msI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/device/megaphone{ - layer = 2; - pixel_x = -4; - pixel_y = 6 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"msL" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/obj/item/clothing/suit/storage/hazardvest{ - desc = "It oozes authority, prestige, and sick summer vibes."; - name = "life guard's vest"; - pixel_x = 10; - pixel_y = -9 +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"msO" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"msV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) "mtJ" = ( /obj/structure/barricade/wooden, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"mtN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance) "mtT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) "mtW" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/barricade/handrail/wire{ + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"mug" = ( +/area/varadero/exterior/lz2_near) +"mua" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"mui" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"mus" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"muK" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/interior/maintenance/north) -"muX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"mva" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mvx" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"mvn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"mvC" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/item/toy/plush/farwa, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) -"mvS" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 9; - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) "mwd" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/court) "mwh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"mwv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/item/paper/crumpled/bloody, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"mwn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/c_tube, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mwt" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "mwD" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; @@ -15265,29 +15465,48 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"mxh" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"mwJ" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 }, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"mwO" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mxb" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"mxm" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "mxv" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) "mxA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 7 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "mxB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -15300,16 +15519,39 @@ /obj/item/storage/beer_pack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"myd" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/research) -"mzr" = ( +"mxI" = ( /obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/maintenance) +"mxN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 4 }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva/purple, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mxP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"myz" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"mzj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"mzm" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/research) "mzt" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15321,17 +15563,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"mzz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/donkpocket{ - pixel_x = -5; - pixel_y = 17 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "mzJ" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -15350,93 +15581,32 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"mzP" = ( -/obj/structure/surface/table, -/obj/item/prop/helmetgarb/flair_uscm, -/obj/item/storage/box/uscm_mre{ - pixel_x = -4; - pixel_y = 13 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"mAd" = ( +"mAG" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mBl" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) +"mBV" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"mCg" = ( /obj/item/shard{ icon_state = "large"; pixel_x = -5; pixel_y = -6 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"mAe" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"mAh" = ( -/obj/structure/machinery/power/apc/no_power/west, -/obj/item/stack/sheet/wood, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"mAt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/curtain/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/bunks) -"mAJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"mCC" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"mBC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"mBP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mBU" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) -"mBZ" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"mCm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mCu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"mCD" = ( -/obj/structure/surface/rack, -/obj/item/implantpad, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "mCF" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) @@ -15453,13 +15623,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"mCV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "mCX" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -15479,147 +15642,80 @@ "mCZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/research) +"mDa" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "mDm" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"mDt" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"mDI" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"mEc" = ( -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "mEs" = ( /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"mEC" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/wood, +/area/varadero/interior/library) "mED" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"mEY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"mFd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/pillbottles{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/packet/bicaridine{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"mFo" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) -"mFp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"mEG" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"mFd" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"mGl" = ( -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/disposals) -"mGn" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"mGx" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, +/area/varadero/interior/electrical) +"mFm" = ( /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"mGz" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/area/varadero/interior/hall_NW) +"mFD" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mHz" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"mFV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"mGk" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) +"mHe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"mHB" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"mHK" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"mIh" = ( +/area/varadero/interior/laundry) +"mHu" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"mHD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"mIm" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"mID" = ( -/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"mIN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"mHG" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "mIU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -15635,249 +15731,274 @@ /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) "mJd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) "mJe" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) +"mJq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"mJx" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "mJH" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"mJW" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) +"mJM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "mKb" = ( /obj/structure/sign/safety/medical, /turf/closed/wall, /area/varadero/interior/medical) -"mKc" = ( -/obj/item/tool/hatchet, +"mKe" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"mKl" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor/wood/wood_broken, -/area/varadero/interior/beach_bar) -"mKy" = ( +/area/varadero/interior/maintenance/security) +"mKk" = ( +/obj/item/stool{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"mKH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"mKJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mKO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/tool/stamp{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/storage/box/masks{ + pixel_x = 6; + pixel_y = 3 }, -/obj/structure/noticeboard{ - pixel_y = 32 +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"mKP" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"mKM" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"mLj" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mLI" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"mKR" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"mLe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"mLF" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/disposals) -"mLG" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) "mLJ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"mLL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/disposals) -"mLZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"mMg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"mMn" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) "mMu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"mMw" = ( +/obj/structure/surface/table, +/obj/item/storage/box/sprays{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "mMz" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"mME" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "mMJ" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mMR" = ( -/obj/item/fuel_cell{ - pixel_x = 4; - pixel_y = 22 +"mNe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"mOe" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"mNp" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redcorners, -/area/varadero/interior/security) -"mOP" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"mOW" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) +"mNK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/cell/high, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"mOJ" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 4; + pixel_y = -6 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"mOM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva/blue/southeast, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) +"mPb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "mPh" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/med_large_stack, -/obj/item/trash/boonie, -/turf/open/floor/shiva/floor3, +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) -"mPA" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 +"mPM" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) +"mPV" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/interior/maintenance/north) -"mQu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"mQU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"mQY" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mRf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +/area/varadero/exterior/eastbeach) "mRq" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/library) -"mRW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"mRt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = 6; + pixel_y = 11 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/obj/item/device/reagent_scanner{ + pixel_x = -7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mRM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"mRU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "mSa" = ( /obj/structure/tunnel{ id = "north_research_tunnel" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"mSc" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/wood, -/area/varadero/interior/bunks) -"mSj" = ( -/obj/item/tool/wirecutters, +"mSh" = ( +/obj/item/tool/shovel, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"mSr" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/area/varadero/exterior/lz2_near) "mSu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"mSF" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"mSN" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"mST" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"mTq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "mTD" = ( /obj/structure/machinery/light{ dir = 4 @@ -15885,15 +16006,9 @@ /turf/open/floor/wood, /area/varadero/interior/hall_SE) "mTI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "mUv" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -15911,24 +16026,12 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"mUF" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"mVf" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"mVg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"mUA" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "mVj" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -15946,12 +16049,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"mVl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) "mVn" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -15964,76 +16061,134 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"mVq" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"mYp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"mYK" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"mYN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"mZp" = ( +"mWj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"mWr" = ( /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners/east, +/area/varadero/interior/security) +"mXk" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"mXw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"mYB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_1_1" }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"mYV" = ( +/obj/structure/surface/table, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds{ + pixel_x = 1; + pixel_y = -2 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mZo" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"mZv" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"mZz" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mZD" = ( +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "mZH" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"mZX" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"nao" = ( +"mZV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"naw" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"naW" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"nbt" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +"mZX" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"nab" = ( +/obj/structure/surface/rack, +/obj/item/maintenance_jack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"naD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"nbe" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"nbr" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/morgue) "nbB" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) -"ncb" = ( -/obj/item/stack/cable_coil, +"nbD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"nbN" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/area/varadero/exterior/lz1_near) +"nbP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/hydro{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_container/spray/hydro{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"nbT" = ( +/obj/structure/prop/ice_colony/flamingo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "ncd" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -16044,20 +16199,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"nct" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "ncv" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -16071,6 +16212,12 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"ncz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "ncC" = ( /obj/item/ammo_magazine/handful/lever_action, /obj/structure/machinery/storm_siren{ @@ -16079,10 +16226,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"ncE" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "ncL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) +"ncO" = ( +/obj/structure/largecrate/random/mini, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "ncX" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Underground Security Checkpoint"; @@ -16090,24 +16245,33 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"ndx" = ( -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) -"nea" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) "nee" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"nei" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "neq" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"nez" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "neD" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -16118,38 +16282,44 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"nfi" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/red/east, +"nfl" = ( +/turf/open/floor/shiva/wred/east, /area/varadero/interior/medical) -"nfq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nfu" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"nfO" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"nfM" = ( -/obj/structure/machinery/computer3/powermonitor, +/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"nfW" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/varadero/exterior/monsoon) +"ngg" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior/hall_SE) +"ngu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"ngD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"ngH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/item/clothing/head/uppcap/peaked, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"ngg" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) "ngY" = ( /obj/item/stack/sheet/metal/med_small_stack, /obj/structure/prop/server_equipment/laptop{ @@ -16159,28 +16329,22 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"nhs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"nhu" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"nhy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"nhd" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/comms1) +"nht" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "nhI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -16203,15 +16367,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"nhU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +"nhN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "nhX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -16231,6 +16394,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) +"nib" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "nio" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/hall_N) @@ -16240,6 +16409,32 @@ /obj/item/device/floor_painter, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"niO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"njb" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"njn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"njw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "njC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -16251,15 +16446,7 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"njL" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"njN" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"nkx" = ( +"njO" = ( /obj/structure/prop/structure_lattice{ dir = 1; health = 300 @@ -16273,48 +16460,56 @@ icon_state = "vent4"; pixel_y = 25 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 - }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"nkE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +"nkt" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/varadero/exterior/lz1_near) "nkF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"nkL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"nlz" = ( +"nli" = ( +/obj/item/pizzabox/meat{ + pixel_x = -5; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nlw" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"nlx" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"nlW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"nlX" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"nmb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"nmr" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"nmu" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = -25 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"nmw" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "nmC" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess{ pixel_x = -4 @@ -16335,68 +16530,48 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "nmK" = ( -/obj/item/device/camera, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"nnA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "noj" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"noo" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"noy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"noE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"noH" = ( +/obj/structure/mirror{ + pixel_x = -32 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/floor/white, +/area/varadero/interior/security) "noR" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"npg" = ( -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"npm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"npw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "npF" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"npJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "npW" = ( /obj/item/tool/warning_cone{ pixel_x = -8 @@ -16410,314 +16585,325 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"nqm" = ( -/obj/item/stack/sheet/plasteel{ - amount = 24 +"nqk" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"nqA" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"nqG" = ( -/obj/item/stool, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "nqQ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"nqY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"nqX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "nre" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"nro" = ( +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"nrf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"nrp" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"nrF" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"nrT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 1; - name = "\improper Underground Security Interrogation Observation"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"nsd" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) -"nsi" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"nsN" = ( -/turf/open/gm/coast/south, -/area/varadero/exterior/lz2_near) -"ntg" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "cargobay"; - name = "Cargo Bay Lock"; - pixel_y = 20 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"nrg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/yellow/north, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) -"nti" = ( -/turf/closed/wall/r_wall, -/area/varadero/exterior/lz2_near) -"ntr" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"ntC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"nub" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"nui" = ( -/obj/structure/machinery/microwave{ - pixel_y = 9 +"nrF" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"num" = ( -/obj/effect/overlay/palmtree_r{ - icon_state = "palm2" +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/pontoon_beach) -"nuq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 3 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"nrR" = ( +/obj/structure/prop/static_tank/fuel{ + pixel_y = 8 }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"nuu" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) -"nuC" = ( -/obj/structure/prop/broken_arcade, -/turf/open/floor/wood, -/area/varadero/interior/library) -"nvn" = ( -/obj/item/tool/mop, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"nwk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"nwq" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) -"nwt" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nwu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/varadero/interior/disposals) +"nrW" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"nsa" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"nst" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"nsH" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"nwN" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) +"nsN" = ( +/turf/open/gm/coast/south, +/area/varadero/exterior/lz2_near) +"nti" = ( +/turf/closed/wall/r_wall, +/area/varadero/exterior/lz2_near) +"ntk" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/floor3, /area/varadero/interior/mess) -"nxi" = ( -/obj/structure/cryofeed, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nxt" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/comms3) -"nxF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"nxM" = ( -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"nxW" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/medical) -"nyv" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"nzc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; +"nto" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/varadero/interior/records) +"ntq" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 13; pixel_y = 8 }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/hall_SE) -"nzj" = ( -/obj/structure/largecrate/random/mini/wooden, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"nzA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"ntK" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"nzV" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"ntV" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"nAf" = ( +/area/varadero/exterior/comms4) +"nua" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"nuD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"nuK" = ( +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nvF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"nvH" = ( +/obj/structure/machinery/computer/operating{ + density = 0 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"nvN" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"nvP" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"nAh" = ( +/area/varadero/interior_protected/caves) +"nwq" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"nwz" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nxW" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior/medical) +"nye" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"nyg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"nyw" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/machinery/constructable_frame, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"nyI" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"nzv" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nzA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker/ethanol{ + desc = "The beaker stares at you lecherously. Its contents... irresistible."; + pixel_y = 7 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nzB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"nzL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"nzT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/research) +"nAq" = ( +/turf/open/shuttle/elevator, +/area/varadero/interior/records) "nBc" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz2_near) -"nBG" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" - }, -/obj/structure/curtain/red, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nBR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"nCi" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"nCr" = ( +"nBC" = ( /obj/structure/machinery/light/small{ dir = 4 }, +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"nCB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/area/varadero/interior/maintenance/security) +"nBW" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"nCi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "nCF" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastocean) -"nCQ" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/mess) -"nCU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +"nCG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "nCV" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/research) +"nDb" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"nDc" = ( +/obj/item/tool/wrench{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "nDk" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -16728,6 +16914,29 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"nDz" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/comms3) +"nDD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"nDG" = ( +/obj/item/device/flashlight, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"nDH" = ( +/obj/item/reagent_container/food/snacks/fishfingers{ + pixel_y = 7 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "nDL" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -16744,45 +16953,75 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"nFl" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nFn" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "nFK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"nFL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"nFN" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"nFT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "nFX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"nGn" = ( -/obj/item/book/manual/evaguide, -/turf/open/floor/wood, -/area/varadero/interior/library) -"nGo" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_N) -"nGt" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"nGu" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"nGf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"nGP" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"nGg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"nGj" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"nGo" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"nHb" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "nHy" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -16792,32 +17031,25 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"nHT" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"nHY" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 +"nIc" = ( +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"nIm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -5; + pixel_y = -9 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"nIp" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"nIs" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/varadero/interior_protected/maintenance/south) +"nIz" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nIB" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/area/varadero/interior/security) "nIF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -16829,72 +17061,45 @@ /obj/structure/machinery/vending/dinnerware, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"nIS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "nJd" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"nJf" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "nJn" = ( /obj/structure/bed/chair, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"nJr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"nJz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/folder/white{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/folder/yellow{ - pixel_x = -7 - }, -/obj/item/facepaint/lipstick/jade{ - pixel_x = 5 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"nJE" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"nJv" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"nJM" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"nKe" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/prop/souto_land/pole{ dir = 8; - icon_state = "pipe-j2" + pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"nKh" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/mess) -"nKl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/flora/pottedplant{ + desc = "How did that get in there?"; + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"nJX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"nKq" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "nKy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -16903,73 +17108,53 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"nLf" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"nLD" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/administration) -"nLL" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nLR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"nKC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"nKQ" = ( +/obj/structure/bedsheetbin{ + pixel_y = 4 }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"nLr" = ( +/obj/structure/window/framed/colony, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"nLZ" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastbeach) -"nMm" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"nMt" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/area/varadero/interior/maintenance) +"nLx" = ( +/obj/structure/machinery/storm_siren{ dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 + pixel_x = -3 }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"nLA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"nMl" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "nMJ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"nMS" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/jackhammer, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +"nMY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "nNe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"nNj" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"nNw" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "nNz" = ( /obj/structure/machinery/light{ dir = 4 @@ -16981,6 +17166,10 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"nOs" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "nOz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/station_alert{ @@ -17014,27 +17203,23 @@ /turf/open/floor/carpet, /area/varadero/interior/research) "nPg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) -"nPo" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) -"nPu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"nPH" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"nPB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 2 }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/court) +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) "nPI" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -17044,6 +17229,17 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) +"nQe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "nQo" = ( /obj/structure/machinery/conveyor, /obj/structure/largecrate/random, @@ -17056,183 +17252,138 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) -"nQP" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1; - layer = 2.25; - density = 0; - climb_delay = 0 +"nRK" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"nRL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"nQV" = ( +/obj/item/trash/plate, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"nSi" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/research) +"nSr" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88{ - pixel_y = -2 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/item/tool/pickaxe/jackhammer, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"nSP" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 8 }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"nQX" = ( +/turf/closed/wall, +/area/varadero/interior/medical) +"nSV" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; icon_state = "hr_kutjevo"; name = "support struts" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"nRj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"nRl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) -"nSi" = ( -/obj/structure/largecrate/random/case, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/research) -"nSP" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 8 - }, -/turf/closed/wall, -/area/varadero/interior/medical) -"nST" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"nTs" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"nTG" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/hall_SE) -"nTS" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) -"nUt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"nUE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"nUJ" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 13; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"nVh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"nVr" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nVD" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/roller, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"nVI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"nVL" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/varadero/exterior/comms4) +"nTu" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, /turf/open/floor/shiva/yellow, /area/varadero/interior/hall_SE) -"nVX" = ( +"nTG" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/hall_SE) +"nTS" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva, +/area/varadero/interior/technical_storage) +"nUq" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"nUs" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/flare, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) +"nUv" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/atmos_alert, -/obj/item/circuitboard/machine/smes{ - pixel_x = -7; - pixel_y = 7 +/obj/item/newspaper{ + pixel_x = -3; + pixel_y = 3 }, -/obj/item/storage/box/mousetraps{ - pixel_x = 5; +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nUw" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"nUX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; pixel_y = 13 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/technical_storage) -"nVZ" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"nVE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"nVH" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"nVW" = ( +/obj/structure/cable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"nWb" = ( +/obj/item/stool, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"nWd" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nWa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"nWe" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"nWs" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"nWp" = ( +/obj/structure/machinery/light, /obj/structure/barricade/handrail/wire{ - layer = 3.5 + dir = 8; + layer = 2.991 }, +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"nWP" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"nWK" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"nWO" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/area/varadero/interior_protected/maintenance/south) +"nWR" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "nWS" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -17243,34 +17394,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nWZ" = ( -/obj/structure/machinery/light, -/obj/structure/closet/toolcloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nXo" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp78, -/obj/item/weapon/gun/pistol/vp78{ - pixel_y = -4 +"nWY" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"nXt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/red/northwest, +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) -"nXZ" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/beach_bar) -"nYj" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/administration) -"nYw" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"nYN" = ( -/turf/open/floor/shiva/purple/northeast, -/area/varadero/interior/research) +"nXu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"nXT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "nZk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -17280,36 +17431,18 @@ /turf/open/floor/wood, /area/varadero/interior/court) "nZE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"nZH" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"oaD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, +/area/varadero/interior/caves/east) +"nZF" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"oad" = ( /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"oaF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) +/area/varadero/exterior/pool) +"oax" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) "oaO" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/storage/firstaid/regular{ @@ -17318,46 +17451,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"obj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "obr" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"obw" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel/pict_system, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"obQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"ocx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"odg" = ( -/obj/item/device/camera{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/evidencebag{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"odu" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) "odw" = ( /obj/structure/machinery/photocopier, /obj/item/storage/firstaid/regular{ @@ -17366,6 +17471,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"odR" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"oei" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "oep" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -17374,29 +17496,26 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"oeP" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/purple/east, +"oeD" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) -"oft" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" +"oeP" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) "ofC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"ofF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"ofE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "ofJ" = ( /obj/structure/shuttle/engine/router{ dir = 4; @@ -17404,14 +17523,16 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"ogc" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"ogg" = ( -/obj/structure/prop/ice_colony/flamingo, +"ofZ" = ( +/obj/item/tool/warning_cone, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/area/varadero/exterior/lz1_near) +"ogb" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"ogf" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "ogj" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -17425,30 +17546,9 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"ogA" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 - }, -/obj/item/paper/crumpled{ - pixel_x = 9 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"ogC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"ogF" = ( -/obj/structure/closet, -/obj/item/device/flashlight/lantern, -/obj/item/map/current_map, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +"ogK" = ( +/turf/open/floor/wood, +/area/varadero/interior/library) "ogW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -17457,49 +17557,96 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ohf" = ( +"oha" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"ohW" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"ohZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"oiz" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"ohn" = ( -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/morgue) -"ohD" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"ohG" = ( -/turf/open/floor/shiva/red, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"ojV" = ( -/turf/open/floor/asteroidwarning/east, -/area/varadero/exterior/lz1_near) -"okw" = ( +"oiA" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 2; + pixel_y = 15; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"oiJ" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"oiY" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ojj" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) -"olf" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/white, -/area/varadero/interior/security) -"olt" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1; - icon_state = "chair_alt" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"okC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_N) +"okD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"oly" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "olU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -17508,106 +17655,95 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"olY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"olZ" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"omr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"omA" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"omM" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +"omt" = ( +/obj/structure/prop/turbine_extras/left, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"omI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"omQ" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ona" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "onj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"onq" = ( -/obj/structure/curtain/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/bunks) -"onQ" = ( -/obj/structure/machinery/alarm{ +"onD" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - pixel_x = 24 + icon_state = "pipe-j2" }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/security) +"onH" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/cargo) -"oop" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/wred, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"onK" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, /area/varadero/interior/medical) +"ooa" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"ool" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "oos" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"opf" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"opn" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 +"ooL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +/area/varadero/interior/maintenance/security) +"ope" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "opW" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/stack/sheet/wood{ @@ -17626,24 +17762,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oqd" = ( -/obj/vehicle/train/cargo/trolley, +"oqN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, /turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"oqz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"oqI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oqW" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"oro" = ( -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/maintenance/security) "orr" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -17651,9 +17786,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"orw" = ( -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) "orH" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -17673,13 +17805,43 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) +"osv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "osB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/barricade/handrail{ + density = 0; + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "osE" = ( /obj/structure/largecrate/random/barrel, /turf/open/gm/dirt, @@ -17690,40 +17852,61 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) +"otr" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"otA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "otH" = ( /obj/structure/closet/crate/construction, /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"otI" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) "otO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"otW" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"oua" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +"oul" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"out" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/surface/table, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"oum" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz1_near) "ouy" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/east) -"ouK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"ovh" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +"ovk" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) "ovC" = ( /turf/open/floor/carpet, /area/varadero/interior/research) @@ -17737,14 +17920,25 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"oww" = ( -/obj/item/stack/sheet/metal, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"owA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "owM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) +"owQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "owY" = ( /obj/structure/window/reinforced{ dir = 4; @@ -17770,6 +17964,21 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) +"oxb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"oxe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -17780,31 +17989,56 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oxn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) "oxo" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/item/storage/donut_box{ + pixel_y = 8 }, -/obj/structure/barricade/wooden, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"oxq" = ( -/obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/administration) -"oxK" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"oxv" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Hangar Power Substation"; + req_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"oxE" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper External Airlock" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"oxT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"oyc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "oyl" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -17813,24 +18047,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"oyB" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"oyJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) -"oyM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"oyQ" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) +"oyu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "oyT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -17853,61 +18073,45 @@ }, /turf/open/floor/plating, /area/varadero/interior/security) -"oyW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"ozr" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"ozO" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"ozS" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"oyY" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"oze" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ozw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"ozT" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"oAe" = ( -/obj/structure/blocker/fog, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"oAg" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - climb_delay = 1; - layer = 2.99 + pixel_x = -16; + pixel_y = 13 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"oAt" = ( -/turf/open/floor/shiva/snow_mat/north, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) +"oAu" = ( +/obj/structure/catwalk, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"oAz" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "oAC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/coast/beachcorner2/north_east, @@ -17930,17 +18134,14 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oAT" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"oBn" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"oBo" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +"oBl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/bible{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) "oBq" = ( /obj/item/shard{ icon_state = "medium" @@ -17954,30 +18155,42 @@ /obj/item/tool/soap/syndie, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"oCh" = ( -/obj/structure/largecrate/random/case, +"oBK" = ( +/obj/structure/surface/rack, +/obj/item/broken_device{ + desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." + }, /turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"oCv" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"oDm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lights, -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"oDA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ +"oBY" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) +"oCx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"oCP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - name = "\improper Underground Library"; - req_one_access = null; - req_access = null + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/turf/open/floor/wood, -/area/varadero/interior/library) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"oCX" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"oDo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "oDB" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -17985,6 +18198,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"oDJ" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"oDR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "oDS" = ( /obj/structure/sign/safety/hazard{ pixel_x = 15 @@ -18001,119 +18226,117 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"oEB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oEc" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"oEC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8 + }, +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/item/reagent_container/food/drinks/bottle/sake{ + layer = 3.1; + pixel_x = -5; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + layer = 3.1; + pixel_x = -10; + pixel_y = 16 + }, +/obj/item/storage/pill_bottle/kelotane/skillless{ + pixel_x = -5 + }, +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"oEv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"oEI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "oET" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/security) -"oFO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/technical_storage) -"oGq" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, +"oEY" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"oGs" = ( +"oFf" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/area/varadero/exterior/pontoon_beach/lz) +"oFn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"oGj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "oGv" = ( /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"oGE" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "oHo" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"oHs" = ( -/obj/item/tool/shovel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"oHw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"oHC" = ( -/obj/structure/girder, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"oHP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"oHu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"oHT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"oHY" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "oIc" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"oIe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/prop/magazine/dirty/torn/alt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"oIr" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"oIB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Bay" - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"oIU" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"oIW" = ( +"oIt" = ( +/obj/item/stack/sheet/metal/med_large_stack, /turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) +"oIz" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) "oJb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -18132,19 +18355,6 @@ /obj/item/device/flashlight/slime, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"oKd" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"oKe" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"oKg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "oKo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18163,59 +18373,45 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"oKp" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"oKA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +"oKE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "oKM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) -"oLv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"oLw" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"oLA" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"oLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/disposals) +"oLi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/obj/item/tool/pen/sleepypen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/tool/lighter/zippo/fluff{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"oLz" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "oLM" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/cargo) -"oLW" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "oMa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/packet/bicaridine, @@ -18229,250 +18425,206 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oMi" = ( -/obj/effect/overlay/palmtree_r, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/monsoon) -"oMu" = ( -/obj/structure/platform_decoration/kutjevo{ +"oMm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"oMZ" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"oNl" = ( -/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"oMq" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"oNv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/varadero/interior_protected/maintenance/south) +"oMw" = ( +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/maintenance/north) +"oNg" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "oNy" = ( /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"oNQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/strata/grey_multi_tiles, +"oNE" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"oNG" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/interior/oob) +"oNP" = ( +/obj/structure/bed/chair/hunter, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"oOa" = ( -/turf/open/floor/wood, -/area/varadero/interior/library) -"oOj" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"oOm" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"oOp" = ( /obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"oOI" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) -"oOU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/flamer, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"oOX" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/rifle/m4ra{ - pixel_x = 5 - }, -/obj/item/ammo_magazine/rifle/m4ra{ - pixel_y = -5; - pixel_x = -8 - }, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle{ - pixel_x = 5; - pixel_y = 4 +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/obj/item/ammo_magazine/rifle{ - pixel_x = -7 +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"oOI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/shuttle/elevator/grating, -/area/varadero/interior/hall_N) -"oPg" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "pipe-c" + climb_delay = 1; + layer = 2.99 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"oPj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"oPp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"oPq" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"oPx" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/obj/item/device/flashlight/lamp/tripod, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"oPS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/varadero/interior/oob) +"oOX" = ( +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/shiva/blue/northwest, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "oPV" = ( /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"oPX" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 +"oQm" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) -"oQH" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"oQK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"oQJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"oQK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/hall_SE) -"oQW" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 14 +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"oRv" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"oRc" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -9 + }, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) "oRD" = ( /obj/structure/prop/rock/brown, /obj/structure/prop/invuln/lattice_prop, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"oRE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"oRJ" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"oRL" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "oRP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +/obj/structure/surface/rack, +/obj/item/tool/crowbar, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"oRT" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"oSW" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/exterior/lz1_near) +"oSy" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"oSz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) "oSX" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/electrical) +"oSZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"oTa" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "oTs" = ( /obj/structure/blocker/fog, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) +"oTw" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/pontoon_beach) "oTE" = ( /obj/item/tool/crowbar/red, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"oTF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/hall_SE) -"oTH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, +"oTJ" = ( +/obj/item/clothing/head/helmet, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"oTK" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, +/area/varadero/interior/medical) +"oTM" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/exterior/pontoon_beach) +"oUa" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "oUh" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -18485,47 +18637,66 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"oUj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_y = 5 +"oUl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"oUF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"oUn" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"oUo" = ( +/obj/structure/surface/rack, +/obj/item/pizzabox/meat, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oUG" = ( +/obj/item/paper/crumpled, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"oUT" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"oVi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "oVt" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"oVy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"oVF" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken, -/area/varadero/interior/beach_bar) +"oVw" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "oWg" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"oWo" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "oWs" = ( /obj/effect/decal/strata_decals/grime/grime4, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -18536,14 +18707,20 @@ /obj/item/ammo_magazine/rifle, /turf/open/floor/carpet, /area/varadero/interior/bunks) +"oWu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "oWx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"oXd" = ( -/obj/effect/landmark/good_item, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"oWI" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "oXf" = ( /turf/open/floor/carpet, /area/varadero/interior/chapel) @@ -18551,38 +18728,51 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) +"oXA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "oXC" = ( /obj/structure/surface/table, /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"oXM" = ( -/obj/item/prop/alien/hugger, +"oXD" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"oYC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"oYE" = ( +/obj/structure/closet/crate, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"oZa" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"oZk" = ( +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"oZH" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Navigation Chamber" + }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"oZv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"oZD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) "oZJ" = ( /obj/structure/fence, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"pac" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"pam" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) "pbd" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, @@ -18609,131 +18799,119 @@ /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"pbr" = ( +"pbt" = ( +/turf/closed/wall, +/area/varadero/interior/mess) +"pbA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"pbB" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"pbs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"pbt" = ( -/turf/closed/wall, -/area/varadero/interior/mess) -"pbD" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"pbF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/administration) +/area/varadero/exterior/farocean) "pbT" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"pbZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"pcb" = ( +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"pch" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"pcp" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/surface/table, +/obj/item/spacecash/c1000{ + pixel_y = 6 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"pcu" = ( -/obj/structure/prop/rock/brown, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"pdh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/varadero/interior/hall_NW) +"pcw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"pdd" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/administration) +"pdf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "pdn" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"pds" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"pdQ" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"pdS" = ( +/obj/structure/reagent_dispensers/beerkeg/alt_dark, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"pdX" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, /turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"pdV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) +/area/varadero/interior/disposals) "pea" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/interior/caves/north_research) -"pen" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"peG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"peN" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"pfa" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "pfd" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/pontoon_beach) -"pfh" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"pfk" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "pfv" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"pfJ" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"pgd" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"pfA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "pgg" = ( /obj/item/tool/pickaxe, /turf/open/gm/coast/south, @@ -18746,17 +18924,6 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) -"pgo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"pgR" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "phk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, @@ -18773,16 +18940,44 @@ }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"phC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"phK" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"piC" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/lz1_near) +"piv" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"piz" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"piH" = ( +/obj/structure/barricade/wooden, +/obj/structure/safe/floor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"piL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"piP" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "pja" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -18807,10 +19002,27 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"pjN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/varadero/interior/security) +"pjT" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"pjY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"pke" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "pkj" = ( /obj/item/tool/weldingtool, /turf/open/gm/dirt, @@ -18828,43 +19040,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"pkE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes/asteroid{ +"pla" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "warning_c" - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/court) -"pkF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 5 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 18 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"pkK" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"pkQ" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 + health = 300 }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "pll" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -18876,75 +19058,51 @@ "plq" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/eastocean) +"plI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"plQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "plT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"plX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"plV" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"pmA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/comms3) -"pmG" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol{ - pixel_x = -4 +/area/varadero/interior/maintenance/research) +"pmv" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol{ - pixel_x = 4 +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"pmE" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"pnh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"pnk" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"pnQ" = ( -/obj/item/tool/crowbar/red{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"pnY" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, +"pnM" = ( +/obj/structure/girder/displaced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"poj" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) +/area/varadero/exterior/eastbeach) "pol" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -18964,65 +19122,24 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"ppF" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ppG" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"ppH" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"ppO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +"ppr" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"ppY" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) +/area/varadero/interior/technical_storage) +"pqe" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/roller, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "pqj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"pqo" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/lz2_near) -"pqE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"pra" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/dock_control) +"pri" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "prl" = ( /obj/item/grown/log, /turf/open/gm/dirt, @@ -19045,61 +19162,26 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"psf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/varadero/interior/administration) -"psM" = ( -/obj/structure/machinery/light/small, +"psg" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"psS" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/trash/ceramic_plate, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"psY" = ( -/obj/structure/closet/crate/freezer/cooler/oj, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "pth" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"ptx" = ( -/obj/structure/airlock_assembly, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"pty" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"ptz" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) +"ptm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) +"ptr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ptC" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -19108,91 +19190,70 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"puk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) "puq" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"puv" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"puF" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "puG" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"puY" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"pvB" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"puL" = ( +/obj/structure/largecrate/random{ + anchored = 1 }, -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"puR" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"pvf" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"pvF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/prop/magazine/dirty/torn/alt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "pvQ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"pvR" = ( +"pwf" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"pwt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/light{ - dir = 1 - }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"pvU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"pvW" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"pwm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"pwH" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/varadero/interior_protected/caves) +"pwW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) "pxa" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/largecrate/random/mini/ammo{ @@ -19203,93 +19264,101 @@ }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"pxE" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 +"pxw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"pyJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"pyx" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) +"pyT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/device/flashlight, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"pyL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"pyW" = ( -/obj/item/paper, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"pza" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"pzi" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/turf/open/floor/shiva/north, +/area/varadero/interior/maintenance/research) +"pyU" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/wood, -/area/varadero/interior/records) -"pzu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"pzC" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/obj/structure/closet/firecloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"pAm" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"pzp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Breakroom"; + req_one_access = null; + req_access = null }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"pAw" = ( -/obj/item/tool/weldingtool/experimental, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"pzG" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"pAF" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_1_1" +/area/varadero/interior_protected/maintenance/south) +"pzI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) +"pzT" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"pAc" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/mod88, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/area/varadero/interior/maintenance/research) +"pAG" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"pAR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"pBj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "pBo" = ( /obj/structure/coatrack, /obj/item/clothing/head/fedora{ @@ -19298,17 +19367,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"pBU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/white, -/area/varadero/interior/security) +"pBZ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "pCa" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) +"pCE" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "pCP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 2; @@ -19318,87 +19390,29 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/research) -"pDc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"pDi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"pDj" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva/yellowfull/west, +"pCR" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "pDl" = ( /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"pDu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"pDx" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"pDI" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tank/emergency_oxygen, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "pDX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pEq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "pEG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "pEP" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"pET" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +/area/varadero/interior/electrical) "pFd" = ( /obj/item/storage/pouch/construction, /obj/structure/prop/invuln/lattice_prop{ @@ -19408,16 +19422,26 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"pFm" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 +"pFl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 7 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"pFs" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) +"pFC" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"pFR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "pGc" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -19430,22 +19454,6 @@ "pGs" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"pGB" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"pGF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) "pGJ" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) @@ -19453,29 +19461,24 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"pHT" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"pIa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"pHM" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"pIk" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"pHY" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) +"pIq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "pIC" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/storage/large_holster/m39/full, @@ -19488,86 +19491,92 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"pJv" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/medical) -"pJB" = ( -/obj/item/trash/boonie, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) "pJF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"pJH" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "pKg" = ( /obj/item/book/manual/nuclear, /turf/open/floor/carpet, /area/varadero/interior/library) -"pKl" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) +"pKq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "pKs" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"pKA" = ( +"pKC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"pKH" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"pKI" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) "pKK" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"pKO" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/comms3) -"pKS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"pKW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) +"pKN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"pKY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"pLb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"pLc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "pLF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"pLR" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"pMj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"pMC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pNc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19580,6 +19589,13 @@ /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"pNo" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"pNE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "pNI" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 6; @@ -19587,57 +19603,110 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) +"pNL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "pNR" = ( /obj/effect/decal/cleanable/blood/drip, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) -"pOi" = ( -/obj/item/tool/mop{ - pixel_x = -16; - pixel_y = 26 +"pNX" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"pOb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Treatment"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"pOr" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "pOC" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"pOR" = ( -/obj/structure/machinery/storm_siren{ +"pOO" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"pOS" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"pPy" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = 3 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"pQg" = ( +/turf/open/gm/dirt/desert3, /area/varadero/interior/maintenance/north) -"pPp" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 +"pQh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"pQm" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "pQp" = ( /turf/closed/wall/r_wall, /area/varadero/interior/technical_storage) +"pQE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "pRb" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"pRp" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) "pRs" = ( /obj/structure/prop/souto_land/pole{ dir = 8 @@ -19645,52 +19714,28 @@ /obj/structure/prop/souto_land/pole, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"pRx" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"pRz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Disposals"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) -"pRE" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) +"pRS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) "pRV" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"pSb" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) "pSg" = ( /obj/structure/inflatable/door, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"pSZ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/retractor/predatorretractor, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"pTb" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"pSL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"pSZ" = ( +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/mess) "pTg" = ( /obj/structure/machinery/light{ dir = 1 @@ -19698,13 +19743,17 @@ /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"pTs" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +"pTx" = ( +/obj/structure/girder/displaced, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"pTM" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "pTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -19726,82 +19775,95 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"pUW" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 4; - pixel_y = -6 +"pUj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"pVe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"pUw" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"pUx" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"pVn" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pUy" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"pUH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"pUL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/folder/yellow{ + pixel_x = -7 + }, +/obj/item/facepaint/lipstick/jade{ + pixel_x = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"pUW" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 4; + pixel_y = -6 }, -/obj/item/trash/plate, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) +"pUX" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "pVs" = ( -/obj/structure/girder/displaced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/area/varadero/interior/maintenance/security) "pVN" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/court) -"pVY" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"pWl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"pWu" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"pWU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/metal/med_small_stack, +"pWt" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"pWX" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/area/varadero/interior/hall_SE) +"pWF" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"pXi" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "pXT" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -19809,17 +19871,11 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"pYj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 18 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"pXY" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "pYn" = ( /turf/closed/wall, /area/varadero/interior/records) @@ -19850,12 +19906,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"pYy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) "pYI" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -19863,63 +19913,57 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"pYP" = ( -/obj/structure/surface/table, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 +"pYJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/implanter{ + pixel_x = 10 }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = -1 +/obj/item/ashtray/bronze{ + icon_state = "ashtray_half_br" }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"pYX" = ( -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/hall_SE) -"pZn" = ( +/obj/item/weapon/gun/lever_action/r4t, +/obj/item/ammo_magazine/handful/lever_action, +/turf/open/floor/carpet, +/area/varadero/interior/research) +"pYY" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -4; - pixel_y = 9 +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 }, -/obj/item/storage/bible/booze{ - pixel_x = 10; - pixel_y = 2 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pZf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"pZh" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"pZs" = ( -/obj/structure/bed/chair{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "chair_alt" + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"pZv" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"pZr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +/obj/item/storage/box/donkpockets{ + pixel_x = 5 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 18 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"pZw" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "pZS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -19932,47 +19976,48 @@ "pZT" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/lz2_near) -"qae" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"qas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qal" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) +"qaq" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"qay" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"qaB" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper External Airlock" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qaE" = ( /turf/open/floor/wood, /area/varadero/interior/dock_control) +"qaO" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "qaY" = ( /obj/structure/sign/safety/water, /turf/closed/wall, /area/varadero/interior/library) -"qbG" = ( -/obj/effect/landmark/hunter_primary, +"qbr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"qbK" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) +"qbv" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"qbE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "qbX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -19980,58 +20025,33 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"qbY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) -"qbZ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 +"qcm" = ( +/obj/item/roller{ + pixel_x = 2; + pixel_y = 7 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"qcl" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"qcz" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/surface/table, +/obj/item/roller{ + pixel_x = 4; + pixel_y = 14 }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "qcN" = ( /turf/closed/wall, /area/varadero/interior/medical) -"qdG" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"qdI" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) +"qcP" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/hall_SE) +"qcX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qdl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qdL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/security_space_law{ @@ -20041,9 +20061,6 @@ /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qeb" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) "qeh" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -20053,12 +20070,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"qer" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) "qeu" = ( /obj/structure/window/reinforced{ dir = 4; @@ -20087,10 +20098,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qev" = ( -/obj/item/tank/anesthetic, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +"qeS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "qfr" = ( /turf/open/gm/dirt, /area/varadero/exterior/comms4) @@ -20098,22 +20110,6 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"qfy" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) "qfC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -20126,46 +20122,85 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"qfT" = ( -/obj/structure/platform/kutjevo/smooth{ +"qfG" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - climb_delay = 1; - layer = 2.99 + icon_state = "leftsecure"; + id = "brg" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"qfQ" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"qgg" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"qfW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) +"qgf" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_10" + }, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"qgl" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "qgm" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"qgK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"qgz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"qgG" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"qgS" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"qgT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/hall_SE) +"qhg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"qhi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"qhp" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) "qhF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qhG" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "qhO" = ( /obj/effect/spawner/random/tool, /turf/open/gm/dirt, @@ -20182,9 +20217,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qik" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) "qio" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance) @@ -20198,156 +20230,156 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qiC" = ( -/obj/structure/bed/chair{ - dir = 1 +"qiE" = ( +/obj/structure/lamarr, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"qiG" = ( -/obj/structure/closet/crate, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"qjb" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qju" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qiR" = ( -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/security) +/area/varadero/interior_protected/caves) +"qjC" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"qjI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"qjL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"qjN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) "qjU" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qjV" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"qkd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "qkq" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qks" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"qkJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/paint/black{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/prop/static_tank/water{ - pixel_y = 8 +/obj/item/tool/wirecutters/clippers, +/obj/item/reagent_container/food/drinks/h_chocolate{ + pixel_x = -6; + pixel_y = 12 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"qlc" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/technical_storage) +"qli" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qlu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/area/varadero/interior/electrical) +"qlk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"qlr" = ( +/obj/item/toy/deck/uno{ + pixel_y = 6 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "qlx" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"qlP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"qmb" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"qmH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qmY" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qng" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/stamp{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"qnp" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"qnu" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qnw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"qnC" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick{ - pixel_x = -4; - pixel_y = 11 +"qlE" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz2_near) +"qma" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/obj/item/reagent_container/glass/pressurized_canister, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/technical_storage) -"qnM" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"qmb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"qmc" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_gutted"; - name = "gullible toothfish"; - pixel_x = 1; - pixel_y = -2 +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"qme" = ( +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qmf" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"qmo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"qnS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"qmY" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"qnj" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"qnp" = ( +/obj/item/shard{ + icon_state = "large"; pixel_x = -5; - pixel_y = 5 + pixel_y = -6 }, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) "qnW" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall, @@ -20361,45 +20393,112 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) +"qor" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"qov" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "qoI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/monsoon) "qoL" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/records) -"qpw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/technical_storage) -"qpK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"qoR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/northeast, +/area/varadero/interior/disposals) +"qoT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"qoU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory Storage"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating, -/area/varadero/interior/maintenance/north) -"qqd" = ( +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"qpf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"qph" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"qpz" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"qqo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" +/area/varadero/exterior/pontoon_beach) +"qpK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/turf/open/floor/plating, +/area/varadero/interior/maintenance/north) +"qpT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/technical_storage) +"qqk" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) "qqJ" = ( /obj/structure/sign/safety/bulkhead_door, /obj/structure/machinery/door_control/brbutton{ @@ -20410,46 +20509,9 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz1_near) -"qqU" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qqW" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"qrc" = ( -/obj/structure/surface/table, -/obj/item/trash/plate{ - desc = "For all your soapy needs."; - icon_state = "tray"; - name = "soap dish"; - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/tool/soap/weyland_yutani{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/tool/soap/weyland_yutani{ - pixel_x = 2; - pixel_y = 11 - }, -/obj/item/tool/soap/weyland_yutani{ - desc = "Teetering at the brink! A life's thread, about to be cut short."; - pixel_x = 5; - pixel_y = 15 - }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"qrm" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"qrq" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"qrn" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "qsb" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20463,21 +20525,13 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"qsL" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"qtk" = ( -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -13; - pixel_y = 12 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) +"qsf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"qtd" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "qtv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -20486,26 +20540,17 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"qtz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"qtL" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 +"qtO" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"quh" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/area/varadero/exterior/monsoon) +"quj" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) "qul" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/north_research) @@ -20513,131 +20558,115 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qux" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"quO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) +"quJ" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "quR" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"quS" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "qvo" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/administration) -"qvN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, +"qvr" = ( +/obj/structure/prop/turbine_extras, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/area/varadero/exterior/lz1_near) +"qvR" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "qvS" = ( /turf/open/gm/coast/south, /area/varadero/exterior/eastocean) -"qvV" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"qvU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/obj/structure/platform/kutjevo/smooth{ +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"qwg" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"qwi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - climb_delay = 1; - layer = 2.99 + icon_state = "warning_c" }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"qwl" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"qws" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"qwp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"qwv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"qwr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "qwE" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"qwF" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) -"qxk" = ( -/obj/item/weapon/gun/smg/nailgun{ - pixel_y = 3 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva/purple/northeast, -/area/varadero/interior/research) -"qxx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"qxP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"qxW" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"qxY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qwK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"qyi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_SE) +"qxB" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/varadero/interior/cargo) +"qxK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/mess) +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"qxS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "qyk" = ( /obj/structure/machinery/light{ dir = 8 @@ -20653,33 +20682,36 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"qyx" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +"qyn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"qys" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "qyJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz1_near) "qyN" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) +/obj/item/tool/surgery/retractor/predatorretractor, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "qyT" = ( /obj/structure/largecrate/random/case, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"qyV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qza" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -20700,40 +20732,24 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"qzp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) "qzq" = ( /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qzH" = ( -/obj/structure/filingcabinet, +"qzN" = ( +/obj/item/tool/minihoe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qzQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/area/varadero/interior/security) "qzZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"qAc" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) "qAg" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -20742,31 +20758,22 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) +"qAq" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "qAy" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"qAB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) "qAS" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"qBg" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/blood/OMinus, +"qBq" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/area/varadero/interior/hall_N) "qBy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -20774,49 +20781,36 @@ /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/turf/open/floor/wood, -/area/varadero/interior/court) -"qBQ" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/wood, -/area/varadero/interior/research) -"qBU" = ( -/obj/structure/machinery/space_heater, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 12 - }, -/turf/open/floor/wood, -/area/varadero/interior/research) -"qBZ" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) -"qCa" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/barcardine, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"qCu" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +/turf/open/floor/wood, +/area/varadero/interior/court) +"qBQ" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/wood, +/area/varadero/interior/research) +"qBU" = ( +/obj/structure/machinery/space_heater, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 12 }, /turf/open/floor/wood, /area/varadero/interior/research) -"qCy" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +"qCn" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qCB" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "qCE" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/gin{ @@ -20825,21 +20819,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"qCO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "qCT" = ( /obj/structure/inflatable, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qDe" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 7 - }, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "qDr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20847,10 +20840,15 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"qDD" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +"qDz" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/administration) "qDR" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, @@ -20872,6 +20870,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"qEs" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "qEt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -20880,16 +20888,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qEB" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/varadero/interior/cargo) -"qEQ" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ - pixel_y = 32 +"qED" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "qFI" = ( /obj/item/tool/wet_sign, /turf/open/gm/dirt, @@ -20897,65 +20902,177 @@ "qFZ" = ( /turf/open/floor/wood, /area/varadero/interior/bunks) +"qGk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"qGl" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarsouth"; + unacidable = 1; + name = "Pontoon South Door"; + openspeed = 17 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/interior/maintenance/north) +"qGy" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"qGF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "qHc" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"qHw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 +"qHA" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/barricade/handrail/wire{ +/obj/structure/window/reinforced{ dir = 8; - layer = 2.991 + health = 80 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/largecrate/random/mini/wooden{ + desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "qHJ" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"qIn" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz1_near) -"qIz" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"qIA" = ( +"qHO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/surface/table, -/obj/item/toy/deck/uno{ - pixel_x = -4; - pixel_y = 6 +/obj/item/weapon/gun/flamer, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"qHT" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"qIg" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/item/trash/eat{ - pixel_x = 10; - pixel_y = 10 +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"qIp" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"qIB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "qIF" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"qIT" = ( +"qJi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/closet/crate, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"qJB" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"qJT" = ( -/turf/open/floor/shiva/yellow/northeast, +"qJj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"qJr" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"qJs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"qJw" = ( +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"qJx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" + }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) +"qJB" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) +"qJF" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"qJQ" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"qKm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "qKq" = ( /obj/structure/closet/secure_closet/RD, /turf/open/floor/wood, @@ -20965,31 +21082,13 @@ /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qKO" = ( -/obj/structure/curtain/red, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"qKS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "qKZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"qLe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/monsoon) "qLs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -20998,13 +21097,32 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/court) -"qMk" = ( -/obj/structure/reagent_dispensers/fueltank, +"qLv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"qLU" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"qMN" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) +"qMQ" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "qMW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, @@ -21016,27 +21134,9 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"qOj" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"qOq" = ( -/obj/structure/largecrate/random/case/small, +"qOx" = ( /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"qOC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/comms1) "qOF" = ( /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, @@ -21046,16 +21146,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"qOI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Custodial Closet"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "qOS" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand_white/layer1, @@ -21067,21 +21157,26 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) "qPv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"qPA" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"qQg" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"qPx" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"qPS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "qQt" = ( /obj/structure/window/reinforced{ dir = 4; @@ -21106,62 +21201,62 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qRh" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +"qQu" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"qQE" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"qQK" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) +/obj/item/storage/large_holster/katana/full, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"qQV" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "qRy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 }, /turf/open/floor/wood, /area/varadero/interior/court) -"qRX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"qSm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 1 +"qRF" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"qRL" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"qSB" = ( +/obj/structure/surface/rack, +/obj/item/implantpad, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qSR" = ( /obj/structure/closet/crate/trashcart, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qSV" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"qSZ" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) "qTs" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21174,19 +21269,26 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"qTu" = ( -/obj/item/device/flashlight/slime{ - mouse_opacity = 0; - invisibility = 1; - indestructible = 1; - alpha = 0 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +"qTS" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qTZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) +"qUg" = ( +/obj/item/device/camera{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/evidencebag{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "qUK" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, @@ -21196,83 +21298,64 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"qVr" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/white, -/area/varadero/interior/laundry) +"qVz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"qVF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"qVJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "qVL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qVV" = ( -/obj/structure/surface/table, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"qVZ" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "qWC" = ( /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qWJ" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/pontoon_beach) -"qWS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"qXf" = ( -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"qXp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"qXz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -5; - pixel_y = 1 +"qWH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = 7; - pixel_y = -7 +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"qWZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"qXj" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/turf/open/floor/shiva/purplefull/west, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"qXm" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"qXR" = ( -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/mess) -"qXX" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/kepler, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"qXL" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"qXM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"qYa" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "qYg" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -21281,45 +21364,38 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) "qYh" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"qYX" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/north, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/item/toy/plush/farwa, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/security) -"qZk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"qZu" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/wy_chips_pepper, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"qZF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) +"qYZ" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"qZx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"qZE" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) "qZJ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qZO" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "qZR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"qZU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "qZV" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -21328,73 +21404,74 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"qZW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"ran" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"rau" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) -"qZY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 9; + pixel_y = 25 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"rac" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rav" = ( +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"raF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"raB" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"raE" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"rbc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"rbn" = ( -/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"raW" = ( +/turf/closed/wall, +/area/varadero/interior_protected/caves/central) +"rbl" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"rbw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/varadero/interior/cargo) +"rbn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"rbA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"rbM" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +"rbG" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "rbU" = ( /turf/open/floor/wood, /area/varadero/interior/research) +"rcl" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rcq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, @@ -21403,47 +21480,21 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"rcC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"rdm" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/gm/coast/beachcorner/north_west, -/area/varadero/exterior/pontoon_beach/lz) -"rcY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"rdf" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/technical_storage) -"rds" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "rdx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"rdY" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) "red" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21455,27 +21506,46 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) +"reo" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "reG" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/hall_N) -"reZ" = ( -/obj/structure/machinery/light{ - dir = 4 +"rfc" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"rfu" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"rfN" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = -25 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/pillbottles{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/obj/item/storage/pill_bottle/packet/bicaridine{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"rfp" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "rfV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -21484,35 +21554,81 @@ /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"rgH" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"rgL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" +"rgr" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced, +/obj/item/clothing/head/fedora, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "rhu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"rhR" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"rhS" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"rhX" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) "ria" = ( /obj/structure/bed/sofa/pews/flipped, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"riy" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"rid" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Main Hallway" + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/area/varadero/interior/hall_SE) +"rit" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"riE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "riJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/court) +"riL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "riM" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -21525,22 +21641,40 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"riP" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"riZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "rjn" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 }, /area/varadero/interior/records) -"rjL" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_y = 9 +"rjp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rjw" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/records) +"rjI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "rjM" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -21553,13 +21687,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"rkh" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"rkp" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) "rkC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"rkE" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "rkH" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -21569,53 +21708,38 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"rkK" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rlm" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"rlv" = ( -/obj/item/stack/cable_coil/cut, +"rll" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) +/area/varadero/interior/hall_SE) +"rln" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "rlw" = ( /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rlx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 5; - pixel_y = 16 +"rlK" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"rlA" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/bedsheet{ - anchored = 1; - desc = "A console used by the Hunters for navigation purposes."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "security_cam"; - name = "Hunter Nav Console" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"rlG" = ( +/area/varadero/interior/security) +"rlN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rmf" = ( /obj/structure/barricade/wooden, /turf/open/shuttle/elevator/grating, @@ -21634,56 +21758,48 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rmu" = ( -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ - pixel_x = 10 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"rmw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"rmT" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "rmV" = ( /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rng" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"rnz" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"rnE" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"rmW" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Palm Airfield" }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) -"rnI" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"rnm" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"rnx" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"rnF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"roa" = ( +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "ron" = ( /obj/structure/tunnel{ id = "north_research_tunnel" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"roD" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "rpu" = ( /turf/closed/wall, /area/varadero/interior/oob) @@ -21691,9 +21807,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"rpz" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"rpB" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "rpT" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_9_1" @@ -21706,117 +21825,54 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/monsoon) -"rqh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "rql" = ( /obj/structure/noticeboard{ desc_lore = "Glup Shitto lives!" }, /turf/closed/wall/r_wall, /area/varadero/interior/comms2) -"rqA" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"rqD" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -3 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 6 - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"rrp" = ( -/obj/item/paper_bin, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"rqy" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"rqF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/wood, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) -"rrq" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = -4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"rrt" = ( -/obj/structure/closet/crate, -/obj/item/trash/chunk, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"rry" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -10; - pixel_y = -9 +"rqJ" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 9; + pixel_y = 15 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"rrz" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"rrM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -6; + pixel_y = 15 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/white, +/area/varadero/interior/laundry) +"rqL" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"rrp" = ( +/obj/item/paper_bin, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/wood, +/area/varadero/interior/records) "rsf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rsx" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"rsy" = ( -/obj/structure/surface/table, -/obj/item/storage/box/sprays{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"rsN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) "rsO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -21828,156 +21884,129 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"rsX" = ( -/obj/structure/disposalpipe/segment{ +"rsT" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) +"rtm" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/icefloor, +/area/varadero/exterior/lz1_near) +"rtp" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"rtq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"rtG" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"rtT" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva/redcorners/west, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) -"rtc" = ( +"rtZ" = ( +/obj/structure/machinery/light, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) -"rtm" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor, +"ruf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"rty" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva/multi_tiles, +"ruI" = ( +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) -"rtY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"rus" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/suit/storage/bomber, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"ruE" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"rvk" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rvp" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"ruP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "rvD" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"rvJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"rvQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"rwp" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"rwY" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - name = "Incendiary Ammunition Order"; - desc = "An order manifest for incendiary ammo that has yet to be filled out." - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"rxq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = 3; - pixel_y = 17 +"rvV" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"rxu" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rxg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"ryl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"ryt" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"rys" = ( /obj/structure/largecrate/random, -/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "ryD" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"rzx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"rzG" = ( -/obj/structure/machinery/holosign/surgery{ - id = "otice" - }, -/obj/structure/disposalpipe/segment, +"rzh" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"rzl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"rAw" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"rAt" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior_protected/caves/central) +"rAE" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"rAT" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"rAN" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"rAW" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "rBa" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -21989,39 +22018,40 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rBw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) -"rBC" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"rBG" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"rBQ" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, +"rCa" = ( +/obj/item/tool/warning_cone, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/area/varadero/exterior/lz2_near) "rCf" = ( /obj/structure/largecrate/random/case/small, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rCn" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"rCi" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"rCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"rCv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"rCz" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/area/varadero/interior/maintenance/security) "rCB" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8 @@ -22031,88 +22061,52 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"rCJ" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"rCW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"rCU" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"rDl" = ( +/obj/structure/computer3frame, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"rDX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Lobby" }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"rDi" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"rDv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"rDN" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"rDQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"rEu" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 }, -/turf/open/floor/darkgreencorners2/north, -/area/varadero/interior/hall_SE) -"rDW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"rEa" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"rEw" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/morgue) +"rEL" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 7 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"rEy" = ( +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, /obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - layer = 2.99; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/camera{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) -"rEQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"rEW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat/north, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) +"rFp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "rFv" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/gibs, @@ -22133,20 +22127,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"rFL" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"rGd" = ( -/obj/item/reagent_container/food/snacks/fishfingers{ - pixel_y = 7 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"rGk" = ( +"rFN" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) +/area/varadero/exterior/eastbeach) +"rGp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "rGA" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -22155,26 +22142,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rGG" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"rGT" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/popcorn, -/obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"rGU" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 8 +"rHl" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rHE" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -22182,16 +22155,12 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"rHK" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rIj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") +"rHJ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/shiva/red, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "rIG" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -22199,6 +22168,24 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"rIH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"rIW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"rJh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "rJq" = ( /obj/structure/surface/table, /obj/item/pamphlet/skill/engineer{ @@ -22211,38 +22198,35 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"rJD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rJC" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"rJM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"rJP" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz2_near) -"rKA" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"rJQ" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"rKr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"rKs" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "rKB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -22251,10 +22235,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"rKP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) "rKS" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -22269,18 +22249,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"rLs" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"rLZ" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, +"rLz" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"rLL" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/area/varadero/interior/maintenance/security) +"rLM" = ( +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"rLX" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "rMb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, @@ -22292,44 +22287,93 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) +"rMq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"rMz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "rMP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rNj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "rNm" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/research) "rNz" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"rNM" = ( -/obj/structure/barricade/wooden, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rNN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"rNX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"rOd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"rNS" = ( +"rOz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"rOK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) -"rOf" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/obj/item/device/autopsy_scanner{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/cargo) -"rOy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -16; + pixel_y = 2 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"rPk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "rPB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -22340,40 +22384,33 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/records) -"rPO" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"rPN" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"rPY" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) -"rPZ" = ( -/obj/item/stool, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"rQn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"rQz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rQh" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"rQK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"rQA" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "rQU" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -22383,13 +22420,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rRf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) "rRm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -22397,47 +22427,24 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"rRW" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"rRX" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"rSl" = ( -/obj/item/tool/wrench, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) -"rSw" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"rSy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 +"rRI" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"rSD" = ( -/obj/effect/landmark/xeno_spawn, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"rSR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, +"rRR" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; + icon_state = "lattice2"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"rSl" = ( +/obj/item/tool/wrench, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "rSX" = ( /obj/structure/window/reinforced{ dir = 4; @@ -22467,34 +22474,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"rTm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/demo_scanner{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7; - pixel_y = 3 +"rTf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"rTJ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/court) +"rTH" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "rTK" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "rTT" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -22521,29 +22519,34 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"rUK" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"rUS" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"rUT" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +"rUo" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"rUB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 }, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/comms1) +"rUZ" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "rVi" = ( /obj/item/tool/candle, /turf/open/floor/carpet, @@ -22556,127 +22559,125 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_console/two) -"rVp" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"rVt" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/trash/plate{ - pixel_y = 7 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"rVG" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"rVQ" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"rWc" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/turf/open/floor/corsat/squareswood/north, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"rWL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +"rWy" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rWM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) "rWN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"rXi" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "rXk" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz2_near) -"rXw" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/monsoon) -"rXM" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/hall_N) "rXS" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"rYg" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance) "rYi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"rYs" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"rYL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/clothing/mask/cigarette/cigar{ + desc = "Manufactured in New Space Cuba, a product of Castro LTD."; + name = "comically large cigar"; + pixel_y = 7 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 5; + pixel_y = 12 }, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/weapon/gun/rifle/sniper/svd, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"rYX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"rYT" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"rYV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/white, -/area/varadero/interior/security) -"rZd" = ( -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"rZl" = ( -/obj/structure/surface/rack, -/obj/item/maintenance_jack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"rZn" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) +"rYZ" = ( +/obj/structure/closet/crate/construction, +/obj/item/grown/log, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"rZq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Morgue"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/dark2, +/area/varadero/interior/morgue) "rZr" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 6 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"rZD" = ( +"rZt" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"rZw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"rZP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"rZG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"sae" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/area/varadero/interior/mess) "sah" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -22686,6 +22687,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"saH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "saQ" = ( /obj/structure/barricade/wooden, /obj/item/shard{ @@ -22695,43 +22704,36 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sbD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sbe" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"sbV" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"scc" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sbf" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"sbl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"sci" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/yellowfull/west, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) -"scm" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "HotlineAlt" +"sbL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"scj" = ( +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) +"scx" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "scD" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" @@ -22741,43 +22743,24 @@ "scL" = ( /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"scP" = ( -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"scR" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"scT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"sdt" = ( +"scN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"sdx" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"sdz" = ( -/turf/closed/wall/r_wall, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/hall_NW) -"sdM" = ( +"scR" = ( /turf/open/floor/shiva/green/east, -/area/varadero/interior/court) -"sdU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/wood, -/area/varadero/interior/research) -"seZ" = ( +/area/varadero/interior/hall_N) +"scT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"sdq" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -22796,24 +22779,67 @@ layer = 3.5; pixel_y = 13 }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/bedsheet/hos{ - layer = 3.1 - }, +/obj/item/toy/plush/farwa, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sfb" = ( -/obj/structure/closet/wardrobe/engineering_yellow, +"sdz" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/hall_NW) +"sdI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/exterior/comms4) +"sdU" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/wood, +/area/varadero/interior/research) +"seO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/phoronglass{ + amount = 32 + }, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"seT" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"sfi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/shiva/wred/southwest, +/area/varadero/interior/medical) "sfj" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"sfm" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "sfF" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -22821,6 +22847,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) +"sgd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) "sgk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, @@ -22835,22 +22868,37 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"sgL" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) +"sgZ" = ( +/obj/item/device/mass_spectrometer, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "shb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/medical) -"shy" = ( -/obj/effect/landmark/xeno_spawn, +"shd" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"shM" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/varadero/interior/maintenance/north) +"shj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"shD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "shO" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -22869,81 +22917,95 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"siA" = ( -/obj/structure/platform/kutjevo/smooth{ +"sis" = ( +/obj/structure/disposalpipe/junction{ dir = 1; - climb_delay = 1; - layer = 2.99 + icon_state = "pipe-j2" }, -/obj/structure/barricade/handrail{ - density = 0; - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"siM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"siL" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"sjm" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_N) +"sjC" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"sjZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"ska" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"skd" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo{ +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"ski" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"siZ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/area/varadero/interior/maintenance/research) +"skt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"sku" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"skT" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"skU" = ( +/obj/item/stool, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"skv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -16; - pixel_y = 2 +"skZ" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"sle" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"slt" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -3 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"skW" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 6 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"sld" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"sln" = ( -/obj/structure/safe, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/pwine, -/obj/item/storage/box/stompers, -/turf/open/floor/wood, -/area/varadero/interior/research) -"slq" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "slB" = ( /obj/structure/filingcabinet{ density = 0; @@ -22961,41 +23023,24 @@ /turf/open/floor/wood, /area/varadero/interior/hall_SE) "slL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"smA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"sna" = ( -/obj/structure/machinery/computer/operating{ - density = 0 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"sne" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) +"sma" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"smj" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"smH" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"smM" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "snl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -23006,87 +23051,85 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"snt" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "snE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"soq" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +"sof" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"soD" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"soK" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"soP" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"spV" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance/north) +"sok" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/rack, +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"soS" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"spX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"sqj" = ( -/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"sqw" = ( -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 5; - pixel_y = 2 +/area/varadero/interior/medical) +"sph" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Sample Isolation" }, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -5; - pixel_y = -9 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"sqX" = ( -/obj/structure/machinery/light{ +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"spG" = ( +/obj/structure/pipes/portables_connector{ dir = 8 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"sra" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"spI" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/interior/maintenance/north) +"spY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"spZ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"src" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/trash/plate{ + pixel_y = 7 }, -/obj/structure/pipes/vents/pump, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"squ" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/maintenance/north) +"srb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) "srg" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) @@ -23108,67 +23151,95 @@ }, /turf/closed/wall, /area/varadero/interior/hall_N) -"ssF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) -"ssN" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" +"srZ" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper Underground Command Center"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"ssX" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/area/varadero/interior/administration) +"ssY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"ssY" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/white, -/area/varadero/interior/laundry) +/area/varadero/interior/maintenance/north) "ssZ" = ( /obj/item/storage/belt/marine, /turf/open/floor/carpet, /area/varadero/interior/bunks) +"sth" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) "stl" = ( /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/pontoon_beach) -"stu" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/varadero/interior/disposals) -"stA" = ( -/obj/structure/window_frame/colony, +"stm" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"str" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/tool/stamp, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"stG" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"suo" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +/area/varadero/interior/hall_SE) +"stM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -13; + pixel_y = 16 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"suB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"svi" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/item/reagent_container/food/snacks/xenoburger{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"suB" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"svr" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "svt" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -23196,6 +23267,12 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) +"swe" = ( +/obj/structure/catwalk{ + indestructible = 1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "swi" = ( /obj/item/storage/pouch/shotgun/large, /turf/open/floor/wood, @@ -23208,45 +23285,55 @@ /obj/item/storage/pouch/machete/full, /turf/open/floor/wood, /area/varadero/interior/security) +"swp" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "swD" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/machinery/alarm{ dir = 4; - climb_delay = 1; - layer = 2.99 + pixel_x = -24 }, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"swO" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"swT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "swV" = ( /obj/structure/closet/crate/construction, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "swX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/green/northwest, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"sxt" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"sxs" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"sxv" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"sxF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/shield/riot, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"sxH" = ( +/obj/structure/bed/chair/hunter{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "sxL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -23264,11 +23351,22 @@ /obj/item/weapon/gun/energy/yautja/plasmapistol, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"syf" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "szh" = ( /turf/closed/wall/r_wall/elevator{ dir = 4 }, /area/varadero/interior/records) +"szk" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/medical) "szp" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -23277,151 +23375,126 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"szV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"sAB" = ( -/obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"sBf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"sBX" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/laundry) -"sCe" = ( -/obj/structure/bed/chair, +"sAe" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"sCz" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"sCX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/area/varadero/interior/maintenance/north) +"sAu" = ( /turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"sCZ" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/area/varadero/interior/hall_N) +"sAL" = ( +/obj/structure/morgue{ + dir = 8 }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = null; - name = "Requesitions Desk" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"sBn" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + layer = 3.1; + pixel_y = 7 }, -/obj/structure/machinery/door/window/northright{ - dir = 2; - name = "Requesitions Desk" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"sBG" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"sBU" = ( +/obj/structure/bed/chair/comfy/orange{ + buckling_y = 9; + dir = 8; + pixel_y = 9 }, -/obj/item/clipboard, -/obj/structure/noticeboard{ - pixel_x = 32 +/obj/item/device/megaphone{ + layer = 2; + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"sDz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/clothing/suit/storage/hazardvest{ + desc = "It oozes authority, prestige, and sick summer vibes."; + name = "life guard's vest"; + pixel_x = 10; + pixel_y = -9 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"sBX" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior/laundry) +"sDa" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "sDH" = ( /obj/item/grown/log, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "sDJ" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/wood, -/area/varadero/interior/library) -"sEX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"sDS" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, /turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/area/varadero/interior/hall_SE) "sFc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/barcardine, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sFx" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"sGF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"sFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"sGJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/shield/riot, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"sGA" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 11 +/obj/structure/largecrate/random/mini/med{ + pixel_x = -10; + pixel_y = 15 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"sGX" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"sHo" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/wood, -/area/varadero/interior/records) -"sHl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/item/storage/box/lightstick/red{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"sHr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"sHu" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"sHB" = ( -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/records) -"sHM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) "sHO" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -23430,19 +23503,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"sIb" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) -"sIl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"sIu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) +"sHP" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "sJq" = ( /obj/structure/window/reinforced{ dir = 4; @@ -23464,13 +23528,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sJv" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"sKx" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +"sJT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "sKz" = ( /obj/structure/closet/crate/supply, /obj/item/storage/box/wy_mre, @@ -23486,136 +23549,143 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"sKK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"sKM" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "sKN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sLo" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"sLA" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +"sKO" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = null; + name = "Requesitions Desk" + }, +/obj/structure/machinery/door/window/northright{ + dir = 2; + name = "Requesitions Desk" + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/clipboard, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"sLn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/disposals) +"sLt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"sLZ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "sMn" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, /area/varadero/interior/records) -"sMx" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"sMw" = ( +/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"sMG" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "sMJ" = ( /obj/structure/closet/crate, /obj/item/prop/magazine/dirty, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sNj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"sNm" = ( +"sNq" = ( +/obj/structure/morgue, /turf/open/floor/shiva/floor3, -/area/varadero/interior/comms3) +/area/varadero/interior/morgue) +"sNw" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "sNx" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/farocean) -"sOe" = ( -/obj/structure/machinery/light{ - dir = 8 +"sOu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/floor/shiva/snow_mat/east, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) -"sOn" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "sOw" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"sOB" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"sOY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"sPd" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"sPe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/barricade/wooden, +"sPo" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"sPf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"sPl" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) "sPs" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/wood, /area/varadero/interior/security) -"sPW" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) -"sQd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"sPB" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "sQs" = ( /obj/structure/filingcabinet{ density = 0; @@ -23649,19 +23719,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"sRf" = ( -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/hall_SE) "sRs" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"sRK" = ( -/obj/structure/window/framed/colony, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/open/floor/dark2, -/area/varadero/interior/hall_N) "sRM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -23673,86 +23733,97 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"sRT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"sRU" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"sRX" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"sSd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"sSg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 3 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"sSa" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "sSp" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"sSx" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 +"sSO" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"sSy" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"sSJ" = ( -/obj/item/paper, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"sSX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"sTB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"sUd" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +/area/varadero/interior/maintenance/north) +"sSS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastocean) -"sUg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"sUm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"sTM" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "sUp" = ( /obj/item/toy/beach_ball, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"sUC" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"sUX" = ( -/obj/effect/spawner/random/tool, +"sUF" = ( +/obj/structure/safe, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/pwine, +/obj/item/storage/box/stompers, +/turf/open/floor/wood, +/area/varadero/interior/research) +"sUL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"sUZ" = ( -/obj/item/tool/soap, -/turf/open/floor/white, -/area/varadero/interior/security) +/area/varadero/interior_protected/maintenance/south) +"sUO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/northright, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"sUW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "sVk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -23767,6 +23838,26 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"sVC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/tool/stamp/clown{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/tool/stamp/rd{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "sVH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -23775,201 +23866,126 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"sVS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"sVU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"sWl" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - layer = 3.1; - pixel_y = 7 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"sWI" = ( -/obj/structure/machinery/flasher{ - id = "sec_checkpoint"; - name = "Checkpoint Flash"; - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/shiva/redcorners/north, -/area/varadero/interior/security) -"sWT" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/eastbeach) -"sXb" = ( -/turf/closed/wall, -/area/varadero/interior/library) -"sXc" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/lz2_near) -"sXn" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/farocean) -"sXx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"sXy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) -"sYh" = ( +"sWj" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"sWG" = ( /obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"sYC" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"sYD" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/coast/beachcorner2/north_west, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) -"sYI" = ( -/obj/structure/target/syndicate, +"sWZ" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"sYT" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) -"sZc" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 +/area/varadero/interior/medical) +"sXa" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"sXb" = ( +/turf/closed/wall, +/area/varadero/interior/library) +"sXc" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/lz2_near) +"sXg" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"sXn" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/farocean) +"sYD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "sZd" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"sZf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"sZI" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"sZY" = ( -/obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"sZZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/court) "tak" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"tat" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/shorts/black, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.1; - pixel_x = -5; - pixel_y = 15 +"taI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"tbc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz1_near) +"tbu" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"tbw" = ( +/obj/item/paper_bin{ + pixel_y = 6 }, -/obj/item/reagent_container/glass/rag{ - pixel_x = 6; - pixel_y = 14 +/obj/item/tool/pen/blue{ + pixel_x = 7 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"taK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +/obj/item/device/flash, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"tby" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/court) +"tbT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"taU" = ( -/obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tbg" = ( -/obj/structure/machinery/light{ - dir = 4 + pixel_y = 5 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"tbD" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"tck" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"tbY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"tcm" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"tcv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"tcY" = ( -/obj/item/stack/sandbags/large_stack{ - pixel_y = 4; - pixel_x = -12 +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz2_near) -"tdd" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"tco" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"tcP" = ( +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tcT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"tdh" = ( -/turf/open/floor/shiva/multi_tiles/southeast, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "tdp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -23987,59 +24003,58 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"tdI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purplecorners, -/area/varadero/interior/research) "tdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"tdY" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"tdO" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/hall_N) +"teb" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"tej" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/redcorners/west, +/area/varadero/interior/security) +"tet" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/item/paper/janitor{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "tez" = ( /obj/item/toy/bikehorn/rubberducky, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz2_near) +"teD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "teH" = ( /obj/structure/window/framed/colony, /obj/structure/sign/banners/happybirthdaysteve, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"teP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/wood_broken, -/area/varadero/interior/court) "teT" = ( /obj/structure/largecrate/random/case/small, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"tfo" = ( -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) -"tfx" = ( -/turf/open/floor/shiva/red/east, +"tga" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) "tgk" = ( /obj/structure/filingcabinet{ @@ -24057,23 +24072,6 @@ /obj/item/limb/foot/l_foot, /turf/open/floor/wood, /area/varadero/interior/administration) -"tgl" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/pontoon_beach) -"tgp" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"tgs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) "tgC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -24090,21 +24088,26 @@ /obj/item/stack/sandbags_empty/half, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"tgN" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"thl" = ( -/obj/structure/machinery/landinglight/ds1/spoke{ - pixel_y = -5; - pixel_x = -13 - }, -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) +"tgT" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) "thn" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"thD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"thR" = ( +/obj/structure/prop/static_tank{ + pixel_y = 8 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "thS" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -24113,25 +24116,64 @@ /obj/structure/machinery/conveyor, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"til" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "tiw" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/security) +"tix" = ( +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"tiA" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "tiF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"tiT" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"tjr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"tiX" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "tjs" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -24150,6 +24192,11 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"tjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) "tjO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/stool{ @@ -24157,50 +24204,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"tjW" = ( -/obj/structure/window/framed/colony/reinforced, +"tjX" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +/area/varadero/interior_protected/maintenance/south) "tkF" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"tkI" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"tkS" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/varadero/interior/security) -"tkY" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"tlk" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"tkP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "tlq" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -24210,23 +24228,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tlw" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz2_near) -"tlC" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/rack, -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"tlD" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +"tlx" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) "tlE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -24235,44 +24240,30 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tlF" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"tlI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"tms" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "tmZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz2_near) -"tnr" = ( -/obj/structure/machinery/light/small{ +"tnb" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"tny" = ( -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"toc" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"tnp" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"tnw" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; @@ -24284,13 +24275,52 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"tnH" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"tnP" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"tnS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"tou" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"tow" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"toG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "toN" = ( /obj/item/tool/warning_cone{ pixel_x = 5; @@ -24298,32 +24328,91 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/vessel) -"toQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) "toU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"tpa" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) -"tpO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/swcaves) -"tqh" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/varadero/interior/research) -"tqL" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) +"tpa" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"tpp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" + }, +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/varadero/interior/administration) +"tpv" = ( +/obj/structure/surface/table, +/obj/item/device/binoculars, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"tpD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"tpO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/swcaves) +"tpR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"tqh" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/varadero/interior/research) +"tqy" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tank/emergency_oxygen, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"tqW" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tra" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Requesitions Office"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"trb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"trx" = ( +/obj/structure/inflatable/door, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "trB" = ( /obj/item/stack/sheet/wood{ amount = 40 @@ -24364,74 +24453,56 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"trS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_one_access = null; - req_access = null +"trP" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"trY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"trX" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"tsd" = ( -/obj/structure/catwalk, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"tss" = ( +/obj/item/prop/alien/hugger, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "tsC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tsM" = ( -/obj/structure/bed/chair{ - dir = 1 +"ttx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/court) -"tsY" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva/snow_mat/east, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"tti" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ttt" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"ttX" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/technical_storage) +"ttY" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tuo" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -6; - pixel_y = -3 +/area/varadero/exterior/lz2_near) +"tuh" = ( +/obj/item/weapon/gun/flare{ + current_mag = null }, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tuG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; - pixel_y = 17 - }, -/obj/structure/machinery/recharger, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/area/varadero/exterior/lz2_near) "tuR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -24444,22 +24515,22 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating, /area/varadero/interior/disposals) -"tvq" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, +"tvd" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Research Chamber" + }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"tvu" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"tvn" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tvC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "tvI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/peppermill{ @@ -24468,176 +24539,124 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"tvP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - icon_state = "door_locked"; - locked = 1; - name = "Underground Secure Technical Storage"; - req_access_txt = "100" - }, +"tvR" = ( +/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"twK" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/beach_bar) -"twW" = ( -/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) -"txx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"txP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/tool/stamp{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/box/masks{ - pixel_x = 6; - pixel_y = 3 +"twc" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"tzr" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"twD" = ( +/obj/structure/target/syndicate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"txb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) +"txs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"txB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"tzN" = ( -/obj/item/tool/crowbar, +/obj/structure/machinery/light, /turf/open/floor/shiva/red, /area/varadero/interior/security) -"tAp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +"txI" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/administration) -"tAr" = ( -/obj/structure/filingcabinet{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"txK" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"tyZ" = ( +/obj/structure/reagent_dispensers/water_cooler{ density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 + pixel_y = 19 }, -/obj/structure/filingcabinet{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"tzy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"tAI" = ( +/obj/structure/prop/structure_lattice{ density = 0; - icon_state = "chestdrawer"; - pixel_x = 8 + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/wood, -/area/varadero/interior/bunks) -"tAL" = ( -/obj/item/book/manual/detective, -/turf/open/floor/wood, /area/varadero/interior/library) "tAT" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) "tBb" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tBc" = ( -/obj/structure/surface/table, -/obj/item/storage/wallet/random{ - pixel_y = 3 +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"tBA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"tCl" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior_protected/caves/central) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "tCA" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/caves/east) -"tDx" = ( +"tDw" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 4 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"tDz" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"tDB" = ( -/obj/item/device/flashlight, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"tDC" = ( -/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) -"tDO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"tDC" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"tDQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/court) -"tDX" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/area/varadero/interior/caves/east) +"tDJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"tDP" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) "tEc" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -24645,12 +24664,18 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) -"tEm" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"tEs" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -4; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "tEF" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -24673,41 +24698,52 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tEX" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"tFw" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"tEW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"tEX" = ( /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"tFH" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/item/cell/high, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) +/area/varadero/exterior/pontoon_beach) +"tFG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "tFQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) "tFW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"tGc" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"tGm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"tGp" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "tGw" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -24715,27 +24751,50 @@ }, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"tGF" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"tGU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tGN" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) "tGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/hall_N) -"tHP" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"tGW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/purplecorners, +/area/varadero/interior/research) +"tHd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"tHi" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"tHn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"tHz" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"tHA" = ( +/obj/item/weapon/gun/shotgun/pump, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_N) +"tIC" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "tIV" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -24755,74 +24814,119 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"tJf" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"tKQ" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 - }, +"tJk" = ( +/obj/effect/landmark/static_comms/net_one, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tLu" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/varadero/interior/maintenance/security) -"tLH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/varadero/interior/comms1) +"tJr" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"tJB" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"tKg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"tKk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"tKm" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; + icon_state = "lattice8"; pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"tLI" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = -4; - pixel_y = -5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tKD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = -4; - pixel_y = -5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"tKL" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"tLL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"tKU" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"tLu" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/varadero/interior/maintenance/security) +"tLy" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"tLS" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"tLV" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"tMF" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"tLS" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) -"tMk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "tMJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"tMM" = ( +"tMR" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 + }, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squareswood/north, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) +"tMT" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "tMY" = ( /obj/structure/window/reinforced{ dir = 4; @@ -24851,62 +24955,52 @@ "tMZ" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz2_near) -"tNn" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"tNC" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +"tNa" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"tNk" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/hall_SE) +"tNN" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "tNT" = ( /obj/effect/spawner/random/tool, /turf/open/floor/carpet, /area/varadero/interior/administration) -"tNY" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"tOg" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/monsoon) -"tOU" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"tOj" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"tOo" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"tOs" = ( +/obj/structure/closet/crate/freezer/cooler/oj, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/grape, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/area/varadero/exterior/lz1_near) "tOV" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tOX" = ( -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/hall_NW) -"tPm" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"tPA" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "tPE" = ( /obj/item/tool/pickaxe, /obj/structure/platform_decoration/kutjevo{ @@ -24922,30 +25016,92 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tQt" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = -5 +"tPW" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) -"tQU" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"tPZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"tQj" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"tRb" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_NW) +"tRt" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/chunk{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "tRN" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"tRW" = ( +"tRP" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"tRY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Armory"; - req_access_txt = "100" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"tSc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"tSu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"tSx" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior/mess) +"tSy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "tSK" = ( /obj/structure/window/framed/wood, /obj/effect/decal/cleanable/dirt, @@ -24956,92 +25112,145 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"tSZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tSW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Lobby"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"tTM" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"tTU" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/east) +"tTV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"tUh" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"tTh" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"tTw" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Navigation Chamber" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"tTK" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) -"tTU" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/east) +"tUo" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"tUV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 9 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "tVf" = ( /obj/structure/closet/crate, /obj/item/tool/stamp, /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tVt" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"tVy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"tVx" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) +"tWi" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"tWt" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"tVA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "tWA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"tWC" = ( +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"tWM" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"tWS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "tWT" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"tWX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tXb" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + desc = "For all your soapy needs."; + icon_state = "tray"; + name = "soap dish"; + pixel_x = 4; + pixel_y = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 3; + pixel_y = 7 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/tool/soap/weyland_yutani{ + desc = "Teetering at the brink! A life's thread, about to be cut short."; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"tXh" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "tXu" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/caves/east) @@ -25056,12 +25265,6 @@ "tXE" = ( /turf/open/floor/wood, /area/varadero/interior/administration) -"tXH" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) "tXT" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -25072,38 +25275,16 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tYR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"tZc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"tZi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/stamp{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"tZk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 8 +"tYy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"tYX" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "tZl" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -25113,24 +25294,31 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"tZy" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"tZw" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"tZS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"tZP" = ( -/obj/structure/prop/turbine_extras/left, -/obj/item/tool/crowbar, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"uas" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/area/varadero/interior/electrical) +"tZW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"uaC" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "uaU" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -25138,113 +25326,126 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"ubs" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"ubE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/weapon/gun/rifle/m4ra, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +"ubj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"ubl" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "ubJ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ubY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"uce" = ( -/turf/open/floor/darkgreencorners2/west, +"ubR" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"ucM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) -"ucl" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +"ucT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"ucI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"ude" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"udo" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redcorners/north, -/area/varadero/interior/security) -"ucO" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"ucS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -6; - pixel_y = 3 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"udl" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "udp" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"udA" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"udH" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"udu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/crew{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/storage/box/trackimp{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"udM" = ( +/obj/item/stack/sandbags/large_stack{ + pixel_y = 4; + pixel_x = -12 }, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) +"udN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"udI" = ( +/area/varadero/interior_protected/maintenance/south) +"udX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"udT" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/area/varadero/interior/maintenance/research) "uek" = ( -/obj/structure/window/framed/colony/reinforced, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"uel" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"uel" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"uep" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/surface/rack, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior_protected/maintenance/south) +"uem" = ( +/obj/structure/toilet, +/turf/open/floor/white, +/area/varadero/interior/security) +"uen" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "uet" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/interior/caves/east) -"uew" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves/central) -"ueJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) "ufn" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -25254,6 +25455,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"ufq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"ufz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "ufB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25263,221 +25476,160 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"ufK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"ufD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/pen/blue{ + pixel_x = 4; + pixel_y = 3 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"ufW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"uge" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Hangar Power Substation"; - req_access = null +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = -5; + pixel_y = 11 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"ugl" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"ugB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"ufS" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_SE) +"ugP" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) "ugR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"uhv" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/toy/plush/farwa, +"uhk" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"uhK" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "uhV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"uip" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"uiu" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) -"uiA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"uiH" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"uiI" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"uji" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"ujL" = ( -/obj/structure/largecrate/random/mini, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"ukd" = ( +"uio" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva/blue/northeast, +/turf/open/floor/shiva/blue/southeast, /area/varadero/interior/administration) -"ukj" = ( +"uiD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"uiG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"uiH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/paper/research_notes, -/obj/item/storage/belt/shotgun, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"ukq" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"ujA" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/shorts/black, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.1; + pixel_x = -5; + pixel_y = 15 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"ukC" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/item/reagent_container/glass/rag{ + pixel_x = 6; + pixel_y = 14 }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"ukc" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"ukg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ukr" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"ukB" = ( +/obj/structure/blocker/fog, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"ukS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/mess) +"ulq" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "ulv" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"ulB" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 7 - }, +"ulw" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) +"ulY" = ( +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"umQ" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) +/area/varadero/interior/maintenance/north) +"umj" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) "umT" = ( /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"unC" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +"unt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "unH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"unS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 +"uoN" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"uoe" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"uoQ" = ( -/obj/item/stool{ - pixel_x = -7; - pixel_y = -4 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/turf/open/floor/wood, +/area/varadero/interior/security) "uoU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -25495,18 +25647,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"upk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"upw" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"upo" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "upH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -25515,31 +25670,10 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"uqb" = ( -/obj/item/paper/crumpled, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"uqh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"uqt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"uqR" = ( +/obj/structure/airlock_assembly, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "uqW" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -25551,53 +25685,86 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"urf" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"urp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"urz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) "urE" = ( /obj/structure/bed/chair/comfy/lime{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/research) -"urV" = ( -/obj/structure/pipes/vents/pump{ +"use" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/administration) -"usj" = ( -/obj/item/storage/firstaid/o2{ - layer = 3.1; - pixel_x = 2; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - layer = 3.2; - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/shiva/greenfull/west, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"usL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) "usQ" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"utc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/shiva/wred/northwest, +/area/varadero/interior/medical) +"utg" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "uti" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/comms2) -"utm" = ( -/turf/open/floor/shiva/yellow, +"utk" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) +"utG" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Engine Room" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "utZ" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"uuh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) "uul" = ( /obj/structure/machinery/light{ dir = 1 @@ -25616,6 +25783,40 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"uuD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"uvb" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"uvi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"uvn" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/trash/crushed_cup, +/obj/item/trash/c_tube, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"uvy" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"uvA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Bay" + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "uvB" = ( /obj/structure/machinery/shower{ dir = 8 @@ -25624,195 +25825,138 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"uvK" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"uvY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, +"uvG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"uvV" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) -"uws" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"uwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Women's Restroom" - }, -/turf/open/floor/plating, -/area/varadero/interior/toilets) -"uxb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"uxv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"uxE" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"uxM" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/coast/west, -/area/varadero/exterior/farocean) -"uxZ" = ( -/obj/structure/machinery/power/apc/no_power/north, +"uwb" = ( +/obj/structure/machinery/bot/mulebot, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"uyg" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"uyy" = ( +"uwd" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"uzp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -5; + pixel_y = 5 }, -/obj/structure/blocker/invisible_wall/water, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"uws" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"uzz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"uzA" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +/area/varadero/interior/maintenance/north) +"uwv" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"uwN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/sign/safety/waterhazard, -/obj/structure/sign/safety/water{ - pixel_x = 15 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Women's Restroom" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"uzE" = ( -/obj/structure/bedsheetbin, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/turf/open/floor/plating, +/area/varadero/interior/toilets) +"uxa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"uAk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"uxp" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"uxB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"uAG" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"uxM" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/coast/west, +/area/varadero/exterior/farocean) +"uyg" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"uyw" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/sosjerky, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"uyA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"uzx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, /turf/open/floor/shiva/red/west, /area/varadero/interior/security) +"uzH" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"uAx" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "uAM" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uBu" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/hall_N) -"uBH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"uBN" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_N) -"uBO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"uBT" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, +"uBj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/comms2) +"uBk" = ( +/obj/structure/shuttle/engine/router{ + dir = 4; + unacidable = 0 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "uBV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -25823,45 +25967,24 @@ "uCe" = ( /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) +"uCy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "uCJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uDc" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior_protected/caves/central) -"uDi" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, +"uDp" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"uDB" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"uDE" = ( -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"uDP" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/white, -/area/varadero/interior/security) -"uDT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/maintenance/north) +"uDX" = ( +/obj/structure/closet/crate/construction, +/obj/item/storage/belt/utility/full, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) "uEF" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -25872,29 +25995,27 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"uFa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"uFc" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"uFK" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"uEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"uFb" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/cargo) +/area/varadero/interior/caves/north_research) +"uFn" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "uFO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25902,43 +26023,37 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uGb" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"uGh" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"uGn" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uGq" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz2_near) -"uGF" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"uGU" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"uGe" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -8; + pixel_y = 15 }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = 6 +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 7; + pixel_y = 15 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"uGV" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security Interrogation"; - req_access_txt = "100" +/turf/open/floor/white, +/area/varadero/interior/laundry) +"uGA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/court) +"uGB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior/disposals) +"uHr" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "uHD" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -25946,10 +26061,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"uHQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "uHY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) +"uIc" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "uIl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -25961,22 +26087,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"uIR" = ( -/turf/closed/wall, -/area/varadero/interior_protected/caves/central) +"uIQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "uIW" = ( /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) -"uJz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"uJM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"uJe" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_1_1" }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/vp70, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior_protected/caves) +"uJt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "uJO" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 @@ -25987,17 +26123,29 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"uKs" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" +"uKa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"uKe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"uKz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uKO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "uKZ" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -26006,130 +26154,91 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"uLo" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -8; - pixel_y = 15 - }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 7; - pixel_y = 15 - }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"uLr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = -8; - pixel_y = 1 +"uLX" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"uMd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"uMD" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/monsoon) -"uMZ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"uNk" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/records) -"uNu" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"uNy" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"uMU" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "uNz" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"uOd" = ( +"uNQ" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"uPm" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"uOg" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) -"uOu" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"uOx" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"uOy" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +/area/varadero/interior/hall_SE) +"uPr" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"uOE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/interior/maintenance/security) +"uPy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"uOI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"uOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"uPM" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"uQg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "uQi" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/cargo) -"uQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"uRf" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"uRF" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "uRU" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/hall_N) +"uRV" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"uSc" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "uSx" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -26144,38 +26253,33 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uST" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"uTg" = ( +/obj/item/fuel_cell{ + pixel_x = 4; + pixel_y = 22 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "uTu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) +"uTP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) "uTY" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uUf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"uUi" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uUk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"uUe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "uUl" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -26183,51 +26287,23 @@ /obj/item/storage/bible/booze{ pixel_x = 6 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) -"uUz" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/varadero/interior/maintenance/north) -"uUA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"uUN" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"uVp" = ( -/obj/structure/surface/rack, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) +"uUK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"uVr" = ( -/obj/structure/disposalpipe/segment{ +/area/varadero/interior/comms2) +"uVd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) +/obj/structure/closet/crate/ammo/alt, +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "uVu" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -26235,21 +26311,9 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"uWk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"uWq" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) +"uWv" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) "uWA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26257,18 +26321,34 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"uWU" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/administration) -"uXM" = ( +"uXg" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"uXh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"uXi" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"uXE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "uXR" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -26283,16 +26363,18 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/cargo) -"uYr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"uYs" = ( +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"uYx" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) +/area/varadero/interior/cargo) +"uYA" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "uYL" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -26300,55 +26382,75 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uYO" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" +"uYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"uYX" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/redfull/west, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"uZn" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"uZC" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"uZW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"uZS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"vai" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/yellow/north, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"vaw" = ( +/obj/structure/disposalpipe/segment, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/yellowcorners, /area/varadero/interior/cargo) -"uZX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +"vaM" = ( +/obj/structure/lz_sign/new_varadero, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vaO" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"vbE" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"vbk" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"vbp" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "vbH" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vbJ" = ( -/obj/item/card/id/silver{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"vbO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "vbS" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -26356,12 +26458,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"vbZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "vcc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -26381,6 +26477,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"vcs" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "vcz" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -26391,25 +26494,6 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"vcZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) -"vdp" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"vdu" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"vdA" = ( -/obj/structure/toilet, -/turf/open/floor/white, -/area/varadero/interior/security) "vdL" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, @@ -26418,14 +26502,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"vdT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "vdV" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -26440,6 +26516,21 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/security) +"veB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"veD" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "veV" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) @@ -26451,12 +26542,14 @@ "veZ" = ( /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vfi" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"vfe" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "vfj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -26489,28 +26582,27 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vfw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +"vfn" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"vfz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) -"vfy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"vfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"vgh" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "vgA" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -26522,15 +26614,22 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) +"vgI" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "vgP" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = -7; + pixel_y = 8 }, -/obj/structure/filingcabinet{ - pixel_x = 8 +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 9 }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/administration) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "vhw" = ( /obj/structure/sign/safety/water{ pixel_x = 15 @@ -26558,9 +26657,16 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"via" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) +"vhK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "vio" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -26572,46 +26678,42 @@ /turf/open/floor/wood, /area/varadero/interior/court) "viy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"viS" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"vji" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"vjb" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"vjj" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 2; - pixel_y = 15; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) -"vjI" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 +"vjq" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "vjO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -26624,44 +26726,42 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vkc" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) +"vjR" = ( +/obj/item/trash/barcardine, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "vke" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Visitor Entrance" }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vkw" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"vkj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"vkV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"vkC" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva/wred/north, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"vkR" = ( -/obj/structure/reagent_dispensers/watertank, +"vle" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vlj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance/security) "vll" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/reagent_container/glass/bucket{ @@ -26669,152 +26769,80 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vlt" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "vlB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vlG" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"vlO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"vmi" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vmp" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"vmw" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"vmy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"vmB" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Evidence Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"vmT" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"vnm" = ( -/turf/closed/wall, -/area/varadero/interior/chapel) -"vno" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"vnp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, +"vlE" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) +"vmd" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"vnC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"vmi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_y = 5 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"vnE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/item/clothing/ears/earmuffs{ + pixel_y = 18 }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) -"vom" = ( -/obj/item/storage/beer_pack, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"vmw" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"vor" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, +/area/varadero/exterior/lz1_near) +"vmz" = ( +/obj/structure/girder/displaced, +/obj/structure/prop/invuln/overhead_pipe, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"vow" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"voy" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/area/varadero/exterior/eastbeach) +"vmF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"vmJ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"vmN" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"voA" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/area/varadero/interior/maintenance/research) +"vnm" = ( +/turf/closed/wall, +/area/varadero/interior/chapel) +"vnt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"vnZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"vom" = ( +/obj/item/storage/beer_pack, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "voJ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -26823,10 +26851,26 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"voT" = ( -/obj/structure/bed/chair/comfy/teal, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +"voN" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_gutted"; + name = "gullible toothfish"; + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "vph" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -26834,13 +26878,38 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vpO" = ( -/obj/item/device/flashlight/lamp/tripod{ - pixel_x = 7; - pixel_y = 18 +"vpx" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"vpz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/wrapped/chunk{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vpM" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "vpQ" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -26848,19 +26917,6 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pool) -"vpR" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"vqC" = ( -/turf/open/floor/shiva/redcorners/west, -/area/varadero/interior/security) "vqK" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand_white/layer1, @@ -26876,51 +26932,19 @@ /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vrC" = ( -/obj/item/weapon/baton, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) -"vsy" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"vsZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"vtb" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, +"vrX" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"vtg" = ( +/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"vtc" = ( +/area/varadero/interior/maintenance/security) +"vtG" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"vtd" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"vul" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) +/area/varadero/interior/electrical) "vus" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -26954,92 +26978,102 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"vvA" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"vvC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"vwc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 +"vvi" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"vvs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"vvJ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 12 +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"vvM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"vwl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/item/tool/stamp/clown{ - pixel_x = 8; - pixel_y = 5 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"vwN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/tool/stamp/rd{ - pixel_x = 7; - pixel_y = -2 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"vxb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"vwf" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"vwl" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) -"vwW" = ( -/obj/structure/machinery/power/apc/no_power/west, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"vxc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/shiva/blue, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "vxi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vxt" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"vyo" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 +"vxI" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/obj/structure/machinery/alarm{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = -24 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "vyp" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"vyB" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 6 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"vyC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"vzp" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "vzq" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vzA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) "vzB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27061,95 +27095,39 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"vzR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, +"vAT" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_NW) -"vAf" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/varadero/interior/disposals) +"vBg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"vAm" = ( -/obj/structure/bed/chair{ +/obj/item/storage/bible/booze{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "chair_alt" + pixel_x = -24 }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"vBv" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"vBD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"vAp" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"vAD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"vBf" = ( +/area/varadero/interior_protected/maintenance/south) +"vBU" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/green/west, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"vBz" = ( -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/hall_N) -"vBN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"vBQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"vBU" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"vBV" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/technical_storage) "vBZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -27160,30 +27138,19 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vCA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"vCK" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) "vCQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vCS" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"vDb" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) +/area/varadero/interior_protected/caves/digsite) +"vCZ" = ( +/obj/structure/largecrate/random/mini/chest, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "vDe" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -27210,12 +27177,13 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"vDM" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +"vDD" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/mess) +"vDO" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "vDP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27231,6 +27199,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"vDS" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) "vEe" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -27250,45 +27222,81 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"vEn" = ( -/obj/structure/largecrate/random, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"vEj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/disposals) +"vEu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/interior/maintenance/research) +"vEz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"vEQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"vET" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_NW) "vFf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigar{ + pixel_x = -2; + pixel_y = 3 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/varadero/interior/research) "vFl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"vFI" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"vFA" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vFG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"vFS" = ( -/obj/item/lightstick/variant/planted, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"vGj" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "vGn" = ( /obj/effect/overlay/palmtree_r{ pixel_x = -11; @@ -27307,55 +27315,46 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vGX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Colony Offices"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) "vHs" = ( /turf/closed/wall/r_wall, /area/varadero/interior/records) -"vHy" = ( -/obj/structure/machinery/light{ - dir = 8 +"vHE" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) -"vHz" = ( -/obj/structure/bed/chair, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"vIk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"vJh" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; +"vHT" = ( +/obj/item/tool/mop{ + pixel_x = -16; + pixel_y = 26 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"vHZ" = ( +/obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/mess) +"vId" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"vII" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"vIM" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"vJe" = ( +/turf/open/floor/shiva/green, /area/varadero/interior/mess) -"vKe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/pen/blue{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) "vKv" = ( /obj/structure/window/framed/colony/reinforced/hull{ indestructible = 1 @@ -27363,19 +27362,9 @@ /turf/open/floor/plating/icefloor, /area/varadero/interior/maintenance/north) "vKx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"vKJ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "vLh" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/dirt, @@ -27389,40 +27378,49 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vLs" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +"vLL" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/obj/structure/barricade/handrail/wire{ +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"vMm" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"vMW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/obj/structure/platform_decoration/kutjevo{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"vLN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) +"vMb" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"vNg" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) "vNu" = ( /turf/open/floor/carpet, /area/varadero/interior/bunks) +"vNv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "vNy" = ( /obj/structure/cargo_container/wy/left, /turf/open/gm/dirt, @@ -27431,21 +27429,6 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vND" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/screwdriver{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/tool/plantspray/pests/old/phosmet{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/weapon/wirerod{ - pixel_x = 8 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) "vNG" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/computer/cameras/telescreen/entertainment{ @@ -27458,45 +27441,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"vOk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "vOo" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"vOx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"vOE" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"vOF" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = 7; + pixel_y = 18 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "vOW" = ( /obj/item/clothing/suit/armor/vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"vOY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"vPa" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) "vPi" = ( /obj/structure/closet/secure_closet/personal, /obj/item/attachable/magnetic_harness, @@ -27506,33 +27472,27 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vPA" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +"vPH" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = -8 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"vPJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastocean) "vPK" = ( /obj/item/ammo_casing{ icon_state = "casing_8" }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"vPM" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) -"vPS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "vPY" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/candelabra{ @@ -27542,14 +27502,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/chapel) -"vQa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) "vQe" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -27578,9 +27530,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"vRM" = ( -/turf/closed/wall/rock/brown, -/area/varadero/exterior/pontoon_beach/lz) "vRW" = ( /obj/item/tool/warning_cone{ pixel_x = -9; @@ -27592,72 +27541,76 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"vSc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "vSd" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSs" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"vSx" = ( -/obj/structure/machinery/light{ - dir = 4 +"vSk" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"vSA" = ( -/obj/effect/decal/cleanable/blood/gibs, +/area/varadero/interior/maintenance) +"vSJ" = ( +/obj/item/stack/tile/plasteel, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"vSM" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) "vSN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/court) -"vSX" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"vSU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "vTd" = ( /obj/structure/machinery/conveyor, /obj/item/paper_bin, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vTf" = ( -/obj/structure/prop/fishing/line/long/part2, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"vUb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) -"vUo" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/morgue) -"vUv" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, +"vUs" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/varadero/exterior/lz1_near) +"vUu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"vUK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"vUO" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "Revolting beyond description."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_teeth"; + name = "human-ish teeth"; + pixel_x = 1; + pixel_y = -2 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/area/varadero/exterior/comms4) "vUT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -27665,10 +27618,29 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"vVv" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) +"vVb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"vVh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"vVi" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"vVu" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "vVz" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -27677,9 +27649,6 @@ /obj/structure/prop/invuln/lattice_prop, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pool) -"vVC" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "vVH" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms2) @@ -27687,21 +27656,54 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) -"vWh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, +"vWr" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) -"vWm" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"vWC" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"vXn" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 + }, +/obj/item/stack/cable_coil/pink{ + pixel_x = -7; + pixel_y = -4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior_protected/maintenance/south) +"vXq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"vYn" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"vYq" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "vYy" = ( /obj/item/tool/shovel, /obj/structure/prop/invuln/lattice_prop{ @@ -27711,43 +27713,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vYz" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/exterior/lz1_near) -"vYF" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/clothing/suit/storage/marine/veteran/dutch{ - layer = 3.1 - }, -/obj/item/clothing/under/gimmick/dutch, -/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ - pixel_y = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"vYP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "vYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -27774,9 +27739,19 @@ /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/wood, /area/varadero/interior/bunks) +"vYS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "vYW" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"vZa" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "vZm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27812,17 +27787,62 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"waj" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"was" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"vZP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"vZQ" = ( +/obj/structure/largecrate/random/case/double{ + anchored = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"vZZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/area/varadero/interior/comms3) +"wab" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/stamp{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/pen/blue{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"wag" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior_protected/caves/central) +"war" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"wax" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/dock_control) "waB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27833,17 +27853,10 @@ /obj/structure/largecrate/random, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"wbL" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) -"wbX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/dock_control) +"wbM" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "wcb" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown{ @@ -27854,39 +27867,11 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wcD" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/administration) -"wcS" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) -"wda" = ( -/obj/item/pizzabox/meat{ - pixel_x = -5; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"wcB" = ( +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "wdb" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 4; @@ -27906,28 +27891,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"wdn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/device/flashlight/lamp/candelabra{ + pixel_x = -6; + pixel_y = 22 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/administration) "wdI" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"wdU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"wer" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"wez" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) "weJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -27935,12 +27915,24 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"weS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"wfb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"wfd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "wft" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27959,6 +27951,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"wfu" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"wfF" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"wfJ" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "wfK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -27987,41 +27993,40 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"wfW" = ( -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"wgb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"whg" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz1_near) -"whN" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"whZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"wgg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"wgH" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"wgQ" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"whk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/bayonet/co2{ + pixel_y = 7 }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"wib" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"whC" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"whE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "wic" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -28032,42 +28037,37 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wit" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"wiC" = ( +"wie" = ( +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"wig" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"wiK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/morgue) -"wji" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"wiI" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) +"wiX" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "wjV" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"wjZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/implanter{ - pixel_x = 10 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_half_br" +"wkb" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/item/weapon/gun/lever_action/r4t, -/obj/item/ammo_magazine/handful/lever_action, -/turf/open/floor/carpet, -/area/varadero/interior/research) +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"wki" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "wkq" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ @@ -28075,12 +28075,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wkr" = ( -/obj/structure/prop/static_tank/fuel{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) "wkM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28109,15 +28103,27 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"wll" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"wlp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, +"wlg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"wlj" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"wlm" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/exterior/eastocean) "wlB" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) @@ -28125,45 +28131,101 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"wmd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"wlS" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat{ + pixel_x = 3; + pixel_y = 1 }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wmi" = ( -/obj/structure/bed/chair{ +/obj/item/clothing/head/hardhat/white{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"wlV" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/hall_SE) +"wmk" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "chair_alt" + icon_state = "pipe-c" }, -/turf/open/floor/shiva/redfull/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) +"wml" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarwest"; + unacidable = 1; + name = "Pontoon West Door"; + openspeed = 17; + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/interior/cargo) "wmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"wmF" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" +"wmR" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 9 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"wmX" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"wmY" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"wnp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/demo_scanner{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/device/reagent_scanner{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "wns" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"wnu" = ( -/obj/structure/cable, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) "wnA" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 21; @@ -28177,42 +28239,31 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"wnR" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"wnS" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"woe" = ( -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz2_near) -"wol" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wom" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +"woo" = ( +/obj/item/cpr_dummy, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "wop" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"woy" = ( -/obj/effect/landmark/crap_item, -/obj/structure/window/reinforced{ - dir = 1 +"wou" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"wov" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "woF" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"woH" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "woJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/explosive/grenade/incendiary/molotov{ @@ -28224,97 +28275,44 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"wps" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) -"wpx" = ( -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"wpD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/wet_sign, -/turf/open/floor/white, -/area/varadero/interior/toilets) "wpG" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"wpR" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "wpX" = ( /obj/effect/decal/strata_decals/grime/grime2, /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/carpet, /area/varadero/interior/bunks) +"wpY" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "wqb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/security) -"wqp" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/court) -"wqA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/floor3, +"wqv" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"wqZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, /area/varadero/interior/hall_N) -"wqL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +"wre" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"wqW" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +/area/varadero/interior/caves/east) "wrg" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -28324,25 +28322,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wri" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/paper{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/paper/research_notes/good{ - pixel_x = -15; - pixel_y = 2 +"wrr" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"wrx" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"wrs" = ( -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "wrB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/cable_coil/cut, @@ -28358,33 +28346,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wrL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) "wsn" = ( /obj/item/storage/toolbox/mechanical, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"wsC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/dry_ramen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) "wsG" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -28402,165 +28367,159 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"wsP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"wti" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"wuc" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/chapel) -"wut" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"wsI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"wuy" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"wti" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/technical_storage) +"wtA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"wtD" = ( +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"wus" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/mess) +"wuX" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"wuI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"wuP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/area/varadero/interior/maintenance/north) "wvl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"wvL" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/beach_bar) +"wvV" = ( +/obj/structure/sink{ dir = 1; - name = "\improper Underground Requesitions Office"; - req_access_txt = "100"; - req_one_access = null + pixel_y = -10 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"wvE" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"wwp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"wwF" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; pixel_y = 3 }, -/obj/item/tool/soap{ - pixel_x = 5 +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"wwC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"wwX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) +"wxA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"wxF" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) -"wxx" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"wyg" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"wyk" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = -3; - pixel_y = 14 +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"wxY" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/toilets) "wym" = ( -/obj/structure/inflatable/door, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"wyV" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"wyW" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/wred/southeast, -/area/varadero/interior/medical) -"wzW" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"wyH" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"wyU" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) +"wzC" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"wzR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wAb" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"wAC" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"wzY" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"wAj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"wAE" = ( -/obj/item/shard{ - icon_state = "medium" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/interior/security) +"wAk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "wBc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"wBv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/pwine{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/reagent_container/glass/rag{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/varadero/interior/research) +"wBq" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "wBD" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin/uscm{ @@ -28570,52 +28529,141 @@ /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/carpet, /area/varadero/interior/library) +"wBP" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/mirror{ + pixel_y = -28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"wCh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/prop/magazine/boots, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "wCE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) +"wDd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) +"wDe" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ + pixel_y = 32 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "wDi" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) +"wDo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"wDt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "wDv" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"wEt" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"wEF" = ( +"wDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"wDE" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"wDP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"wEh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"wEo" = ( +/obj/structure/catwalk, +/obj/structure/largecrate/random, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"wEE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/largecrate/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"wEY" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wFa" = ( +/obj/structure/closet/crate, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wFB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/area/varadero/interior/maintenance) +"wFM" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"wFF" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_3_1" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"wFO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/area/varadero/interior/caves/north_research) "wFP" = ( /obj/structure/machinery/door_control/brbutton{ id = "undergroundhangarwest"; @@ -28626,32 +28674,28 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/cargo) -"wGf" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) -"wGj" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +"wFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"wGn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"wGo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"wGG" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +"wGq" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) "wGQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28659,147 +28703,229 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wHb" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"wGU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "wHk" = ( /turf/closed/wall, /area/varadero/interior/maintenance/north) +"wHs" = ( +/obj/structure/machinery/holosign/surgery{ + id = "otice" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "wHt" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wHA" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"wHY" = ( -/obj/structure/catwalk{ - indestructible = 1 +"wHv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"wHN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"wIp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"wIK" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"wIb" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/head/uppcap/peaked, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wIw" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"wIE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"wIG" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wIJ" = ( +/obj/item/tool/crowbar/red{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"wJp" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"wJr" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"wJb" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 8 +"wJs" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"wJD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) -"wKd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -10; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"wJM" = ( +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; + dir = 4; + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"wJU" = ( /turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/area/varadero/interior/technical_storage) +"wKe" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "wKi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"wKW" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"wLm" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_10" +"wKj" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) -"wLs" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/digsite) -"wLM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil/streak, +"wKn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"wLT" = ( +/area/varadero/interior/maintenance) +"wKp" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"wLX" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +/area/varadero/exterior/lz2_near) +"wKW" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"wKZ" = ( +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) +"wLw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/trackimp, +/obj/item/device/binoculars, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"wLA" = ( +/turf/open/floor/asteroidwarning/north, +/area/varadero/exterior/lz1_near) +"wLG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"wLK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"wLS" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"wLW" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/area/varadero/interior/morgue) "wMj" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"wMF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"wMG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"wMO" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/trash/crushed_cup, -/obj/item/trash/c_tube, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"wNo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/prop/magazine/boots, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"wNw" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods{ - pixel_x = 10; - pixel_y = -4 +"wMv" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"wMB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"wMW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "wNz" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -28807,47 +28933,41 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wNO" = ( -/obj/structure/machinery/light{ - dir = 4 +"wNH" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"wOo" = ( -/obj/structure/closet/crate/construction, -/obj/item/tool/extinguisher, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wOm" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/area/varadero/interior/caves/north_research) "wOO" = ( /turf/closed/wall/r_wall, /area/varadero/interior/electrical) "wOP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "wOR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"wOU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"wOX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 +"wOY" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) "wPv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -28863,145 +28983,123 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wPG" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) "wPH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) -"wPK" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wPT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"wPY" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wQz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"wQF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"wQY" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"wRe" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) +"wPK" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"wQo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"wRV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/obj/structure/mirror{ + pixel_x = -32 }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -1 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"wRh" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"wSb" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) -"wSg" = ( -/obj/structure/surface/rack, -/obj/item/broken_device{ - desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." +"wSs" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "wSx" = ( /turf/closed/wall, /area/varadero/interior/laundry) -"wSF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"wSK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"wSV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"wSz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"wTk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wTo" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"wTw" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior/maintenance/north) +"wSK" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "wTJ" = ( /turf/open/floor/plating, /area/varadero/interior/disposals) -"wUl" = ( -/obj/structure/bed/chair{ - dir = 1 +"wTK" = ( +/obj/item/storage/firstaid/o2{ + layer = 3.1; + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + layer = 3.2; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "wUF" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"wUR" = ( -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/hall_N) +"wUL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"wUQ" = ( +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "wUU" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/varadero/interior/oob) +"wUV" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"wUX" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "wVf" = ( /turf/closed/wall/r_wall, /area/varadero/interior/security) +"wVj" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"wVk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/pontoon_beach/lz) "wVp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -29036,55 +29134,26 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"wWA" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"wWF" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 +"wWy" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -5 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"wWJ" = ( -/obj/structure/prop/dam/van{ - desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; - icon_state = "crawler_crate_wy"; - name = "crawler"; - pixel_y = 7 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"wWz" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"wWM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"wWO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"wWP" = ( -/obj/item/clothing/ears/earmuffs{ - layer = 3.1; - pixel_x = 2; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"wWZ" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 +"wWQ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "wXc" = ( /obj/item/reagent_container/glass/bucket{ pixel_y = -3 @@ -29101,17 +29170,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"wXz" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"wXL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"wXH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "wYa" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -29135,126 +29200,109 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wYd" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wYj" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"wYw" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"wYE" = ( +/turf/open/gm/dirt/desert1, /area/varadero/exterior/pontoon_beach) -"wYv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/hall_SE) -"wYy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"wYZ" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"wZb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"wZf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"wYW" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/popcorn, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"wZt" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"wZj" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +/area/varadero/interior/maintenance/north) "wZF" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"xam" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 1 +"wZH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"xan" = ( -/obj/structure/machinery/light{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"wZU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) -"xaJ" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"xaY" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"xbe" = ( +"xab" = ( +/obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"xac" = ( +/obj/item/tool/kitchen/knife, +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"xas" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"xbf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"xaC" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "xbm" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"xbU" = ( +/obj/structure/largecrate/random, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"xbX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"xca" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "xce" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -29271,68 +29319,43 @@ "xcf" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/records) -"xcC" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/chunk{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 5 +"xcx" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xdI" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigar{ - pixel_x = -2; - pixel_y = 3 +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"xds" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/storage/fancy/cigar/tarbacks{ - pixel_x = -3; - pixel_y = 10 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"xdx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/shiva/purple/southeast, /area/varadero/interior/research) -"xdS" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xev" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"xdF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"xeF" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"xee" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -13; + pixel_y = -3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"xeI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "xeO" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -29345,13 +29368,20 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) +"xfi" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "xfo" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) -"xfv" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) +"xfy" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/trash/ceramic_plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "xfz" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -29365,27 +29395,19 @@ "xfQ" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) -"xfV" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"xge" = ( -/obj/structure/machinery/light/small, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"xgb" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "xgG" = ( /turf/closed/wall/r_wall, /area/varadero/interior/administration) +"xgR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "xgY" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, @@ -29405,133 +29427,81 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xhC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced, -/obj/item/clothing/head/fedora, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"xhF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/shiva/wred/northwest, -/area/varadero/interior/medical) -"xhL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xhW" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"xid" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"xhR" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"xix" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"xiW" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/mob/living/simple_animal/mouse, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"xis" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/firealarm{ +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) +"xjb" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ pixel_y = 24 - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"xiH" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"xiL" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"xja" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"xjm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "xjF" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"xkc" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -24; + indestructible = 1 }, -/obj/structure/closet/crate/freezer/cooler, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/peach, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) "xke" = ( /obj/effect/overlay/palmtree_r, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"xkE" = ( +"xly" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"xlR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) -"xkR" = ( -/obj/structure/machinery/light/small{ +"xlU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"xlh" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"xli" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"xlp" = ( -/turf/open/floor/shiva/wred, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"xme" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"xlY" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xmr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "xmL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -29540,152 +29510,115 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xmW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"xnG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xnE" = ( -/obj/item/stack/cable_coil/random, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"xnN" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "xnS" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/eastbeach) -"xoF" = ( -/obj/structure/platform_decoration/kutjevo, +"xoh" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"xoD" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"xpd" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "xpe" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xpC" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) -"xqw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/light_fixture, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"xqJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"xrc" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"xrq" = ( +"xqI" = ( /obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva/redfull, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"xri" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"xry" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) -"xrJ" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - unacidable = 0 - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/item/device/flashlight/slime, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"xsu" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/maintenance/security) -"xsv" = ( -/obj/structure/disposalpipe/segment{ +"xsb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"xsF" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "pipe-c" + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"xsN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - pixel_y = 17 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = 2 +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 2; - pixel_y = 8 +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"xsO" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xth" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/obj/item/clothing/mask/cigarette/cigar{ - desc = "Manufactured in New Space Cuba, a product of Castro LTD."; - name = "comically large cigar"; - pixel_y = 7 +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 5; - pixel_y = 12 +/obj/structure/barricade/handrail/wire, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) +"xsP" = ( +/obj/structure/machinery/landinglight/ds1/spoke{ + pixel_y = -5; + pixel_x = -13 }, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"xtr" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"xtD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"xtE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) +"xtM" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "xtZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -29696,15 +29629,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xuh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/firealarm{ +"xuw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"xuF" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "xuJ" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; @@ -29714,66 +29650,118 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xuK" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"xve" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xvd" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "xvF" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/security) "xvR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/closet/crate/secure, +/obj/item/trash/kepler, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"xwm" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"xwz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/oob) +"xwu" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xwE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"xwK" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xxa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/storage/box/engineer, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "xxk" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xxB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"xxx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "xxI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"xxM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +"xxL" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "xxO" = ( /obj/item/ammo_magazine/handful/lever_action, /turf/open/floor/wood, /area/varadero/interior/research) +"xxP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "xxV" = ( /obj/structure/sign/safety/debark_lounge, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) +"xyp" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "xyO" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, @@ -29782,6 +29770,13 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"xzi" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "xzj" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 @@ -29791,38 +29786,21 @@ "xAg" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms2) -"xAk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) "xAx" = ( /turf/open/gm/coast/east, /area/varadero/interior/caves/east) -"xBp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"xAF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"xBe" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) "xBw" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -29830,20 +29808,19 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"xBV" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"xBX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"xBx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"xBN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/camera, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "xCn" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) @@ -29855,10 +29832,29 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"xCv" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +"xCy" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"xCJ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"xCK" = ( +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/hall_N) "xCZ" = ( /obj/structure/prop/tower, /turf/open/gm/dirt, @@ -29874,45 +29870,30 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"xDm" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "xDE" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"xEe" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"xEi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/central) "xEG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xEJ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xFv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"xFx" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"xEM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/coast/beachcorner2/south_west, -/area/varadero/exterior/pontoon_beach/lz) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "xFE" = ( /turf/open/floor/wood, /area/varadero/interior/records) @@ -29922,10 +29903,20 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"xGb" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"xGl" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"xGC" = ( +/obj/structure/closet/secure_closet/personal/patient, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/area/varadero/interior/bunks) "xGJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -29934,15 +29925,13 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"xGZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"xGW" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"xHr" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "xHt" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -29954,55 +29943,29 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xIi" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"xIU" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xIX" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +"xHy" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"xHB" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"xJk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 5 +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"xJE" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"xJn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xJy" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) "xJH" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) -"xJJ" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"xJR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"xJW" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "xKq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -30032,15 +29995,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xLC" = ( -/obj/structure/disposalpipe/segment{ +"xKw" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "pipe-c" + climb_delay = 1; + layer = 2.99 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "xLE" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -30048,21 +30016,37 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/wood, /area/varadero/interior/security) -"xLJ" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +"xLI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"xMB" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"xMF" = ( -/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"xLR" = ( +/obj/structure/tunnel{ + id = "north_research_tunnel" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"xMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"xMX" = ( +/obj/item/storage/firstaid, /turf/open/floor/shiva/north, -/area/varadero/interior/research) +/area/varadero/interior/morgue) +"xNr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) "xNw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, @@ -30071,57 +30055,52 @@ /obj/structure/fence, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"xNJ" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +"xNB" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/administration) +"xNL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + icon_state = "door_locked"; + locked = 1; + name = "Underground Secure Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "xNR" = ( /turf/closed/wall, /area/varadero/interior/bunks) -"xNW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xOc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) "xOh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"xPl" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light/small, +/area/varadero/interior/maintenance) +"xOW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"xPr" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) -"xQo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/varadero/interior/maintenance/security) +"xPm" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/shiva/yellowcorners, +/turf/open/floor/shiva/yellow/southwest, /area/varadero/interior/cargo) -"xQy" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +"xPW" = ( +/obj/structure/machinery/flasher{ + id = "sec_checkpoint"; + name = "Checkpoint Flash"; + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) "xQJ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, @@ -30130,75 +30109,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xQL" = ( -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"xRf" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/records) -"xRx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/wood, -/area/varadero/interior/security) -"xRz" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"xRB" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"xQQ" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/white, +/area/varadero/interior/laundry) "xRF" = ( /turf/closed/wall, /area/varadero/interior/hall_N) -"xRJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) -"xRT" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) -"xRX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"xSd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, +"xRY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/area/varadero/exterior/lz1_near) "xSl" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, @@ -30217,27 +30139,25 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xTk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xTl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xTM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"xTr" = ( /obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"xTN" = ( +/obj/structure/catwalk, +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "xUp" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, @@ -30247,43 +30167,50 @@ /obj/item/weapon/shield/riot, /turf/open/floor/carpet, /area/varadero/interior/library) -"xUv" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"xUB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -9 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/hall_N) -"xUN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"xUP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/c_tube, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"xVI" = ( +/area/varadero/exterior/lz1_near) +"xUL" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"xVO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"xVm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/closet/crate, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"xVD" = ( +/obj/item/cell/high, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xVL" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"xVN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "xVQ" = ( /obj/structure/sign/safety/reception, /obj/structure/sign/safety/one{ @@ -30291,61 +30218,71 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance/north) -"xWh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"xWO" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ +"xWn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"xWE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "xWU" = ( /obj/item/trash/candle, /turf/open/floor/wood, /area/varadero/interior/chapel) -"xXb" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/medical) "xXp" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/rifle/m4ra{ + pixel_x = 5 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"xXA" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" +/obj/item/ammo_magazine/rifle/m4ra{ + pixel_y = -5; + pixel_x = -8 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/ammo_magazine/rifle{ + pixel_x = -7 + }, +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/hall_N) +"xXv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"xYt" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) "xYB" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"xYN" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 16 +"xYJ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "xZa" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"xZc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) "xZD" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -30356,40 +30293,51 @@ }, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"yae" = ( -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"yao" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"yaK" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz1_near) -"ybf" = ( -/turf/open/floor/shiva/multi_tiles/north, +"yap" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/security) +"ybi" = ( +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) "ybm" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/varadero/interior/library) -"yce" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, +"ybA" = ( /obj/structure/surface/table, -/obj/item/spacecash/c1000{ +/obj/item/toy/deck/uno{ + pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/shiva/floor3, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) -"ycn" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +"ybL" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"ycp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "ycz" = ( /obj/structure/machinery/shower{ dir = 8 @@ -30397,6 +30345,15 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) +"ycO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "ycY" = ( /obj/item/trash/ceramic_plate{ pixel_x = -8; @@ -30405,6 +30362,34 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"yde" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) +"ydj" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"ydm" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"ydw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "ydx" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -30413,54 +30398,35 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) -"ydF" = ( -/obj/structure/surface/table, -/obj/item/trash/chips{ - pixel_x = 2; - pixel_y = 8 +"ydB" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"ydC" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/court) "ydI" = ( /turf/open/floor/carpet, /area/varadero/interior/records) -"yeh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"yei" = ( -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -5 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"yeq" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"yer" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"yeD" = ( -/obj/structure/bed/chair{ +"yek" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "yeJ" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"yeQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "yeR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/tile/plasteel{ @@ -30469,10 +30435,39 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"yeU" = ( -/obj/effect/spawner/random/toolbox, +"yeW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/court) +"yfx" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/oob) +"yfP" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "yfT" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -30498,6 +30493,67 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"ygg" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"ygo" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"ygx" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/defibrillator{ + pixel_y = 5 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"ygC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/trash/plate{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"ygX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"yhm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"yhq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "yhy" = ( /obj/structure/filingcabinet{ density = 0; @@ -30519,29 +30575,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"yhC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"yhK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "yhU" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"yhY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "yhZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -30554,30 +30595,40 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"yic" = ( -/obj/structure/bed, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "yil" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"yiG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"yiy" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"yjk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"yiH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/weapon/gun/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"yjj" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/records) +"yjo" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"yjw" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/turf/open/floor/shiva/snow_mat/east, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "yjH" = ( /obj/structure/cargo_container/kelland/right, @@ -30586,23 +30637,6 @@ "ykc" = ( /turf/closed/wall, /area/varadero/interior/cargo) -"yke" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"ykn" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "yks" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/research) @@ -30616,17 +30650,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"ykQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "ykS" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/gm/dirt, @@ -30635,36 +30658,6 @@ /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ylj" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"yls" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"ylt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "ylB" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -30678,6 +30671,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"yma" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) "ymb" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, @@ -30906,30 +30906,30 @@ pGs pGs pGs pGs -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -31088,30 +31088,30 @@ pGs pGs pGs pGs -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -31270,30 +31270,30 @@ pGs pGs pGs pGs -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -31452,30 +31452,30 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -31522,7 +31522,7 @@ xCn xCn xCn srg -eoz +pla dxK pGs pGs @@ -31634,30 +31634,30 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -31681,7 +31681,7 @@ pGs pGs pGs uHY -eoz +pla xCn xCn xCn @@ -31704,12 +31704,12 @@ xCn xCn xCn xCn -lvy +tQj xCn cBI xCn xCn -eoz +pla pGs pGs pGs @@ -31816,30 +31816,30 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE -vVC -vVC +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ +qjb +qjb pGs pGs pGs @@ -31858,25 +31858,25 @@ pGs pGs srg srg -eoz +pla pGs pGs uHY xCn -lvy +tQj xCn xCn xCn xCn xCn -bDG -lvy +wov +tQj xCn xCn xCn xCn xCn -lvy +tQj xCn xCn srg @@ -31886,12 +31886,12 @@ xCn oVt xCn xCn -lvy +tQj xCn cBI xCn -lvy -lvy +tQj +tQj xCn pGs pGs @@ -31998,31 +31998,31 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ pGs pGs pGs @@ -32040,25 +32040,25 @@ srg xCn xCn xCn -lvy +tQj uHY xCn qYg xCn -lvy +tQj srg xCn srg xCn -lvy -lvy -lvy +tQj +tQj +tQj xCn xCn srg srg xCn -lvy +tQj xCn xCn xCn @@ -32073,7 +32073,7 @@ xCn cBI xCn xCn -lvy +tQj kAL xCn fHk @@ -32180,32 +32180,32 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ pGs pGs pGs @@ -32222,7 +32222,7 @@ xCn xCn fHk xCn -lvy +tQj xCn xCn xCn @@ -32233,14 +32233,14 @@ xCn xCn xCn xCn -lvy -lvy +tQj +tQj xCn xCn oVt xCn sfF -eoz +pla uHY qul qul @@ -32362,33 +32362,33 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -32398,28 +32398,28 @@ xCn xCn xCn xCn -lvy -lvy -lvy +tQj +tQj +tQj xCn xCn oVt xCn xCn -lvy +tQj xCn xCn hGl tMJ wpG -akz +wOP tMJ ncL yks yks ncL tMJ -akz +wOP tMJ yks yks @@ -32544,33 +32544,33 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE -vVC -vVC -vVC -vVC +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ +qjb +qjb +qjb +qjb pGs pGs pGs @@ -32578,44 +32578,44 @@ pGs xCn xCn xCn -vfy +hYz xCn -lvy -lvy -lvy +tQj +tQj +tQj xCn xCn xCn -lvy +tQj xCn xCn srg xCn hGl -sUC +foJ kXQ -sUC +foJ kXQ kXQ -mdI +aFL xCq kXQ -sUC -vmi -sUC -sUC -exn +foJ +psg +foJ +foJ +qeS fay -iFh -fUz -mtH +fjq +tFG +aON fay -qXz -igw -fIe -rvQ -aAo -etc +fCZ +hSl +haL +nUv +mxN +tOj pGc srg xCn @@ -32726,78 +32726,78 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb sNx -vVC -hmE -vVC -hmE +qjb +hJJ +qjb +hJJ pGs pGs pGs pGs xCn xCn -lvy +tQj xCn -lvy +tQj xCn xCn xCn xCn xCn xCn -lvy +tQj xCn uHY xCn xCn -tjW -sUC +wOm +foJ kXQ -sUC -sUC -sUC +foJ +foJ +foJ kXQ -gnV +tKm kXQ -sUC -sUC -sUC -uJM -sUC +foJ +foJ +foJ +pFR +foJ fay -scP -bNb -oro +aNV +qiE +wie fay -tdd -tcm -aaR -dsR -tcm -rUS +gLq +bgF +wfJ +stM +bgF +rOz pGc srg xCn @@ -32908,33 +32908,33 @@ pGs pGs pGs pGs -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb sNx -vVC -vVC -pFm +qjb +qjb +xaC pGs pGs pGs @@ -32950,15 +32950,15 @@ qul uHY srg srg -eoz +pla qul qul qul uHY hhM -cGP -tNn -tNn +xuw +ngD +ngD yks aoE yks @@ -32966,20 +32966,20 @@ yks aoE yks yks -sUC -tGU -sUC -myd -jma -kkj -mjm -myd -gQz -tcm -mus -eBC -tcm -lJS +foJ +ski +foJ +mzm +jRX +sph +czu +mzm +iJv +bgF +bWa +xEM +bgF +cvO tqh dxK xCn @@ -33090,43 +33090,43 @@ pGs pGs pGs pGs -oMZ -vVC -vVC -vVC -oMZ -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ -kfb -hmE -vVC -hmE -dmw +laI +qjb +qjb +qjb +laI +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI +dJd +hJJ +qjb +hJJ +oXD pGs pGs pGs qul -eoz -lvy -lvy -lvy -eoz +pla +tQj +tQj +tQj +pla qul qul qul @@ -33138,30 +33138,30 @@ qul qul qul hhM -sUC -sUC -wGj +foJ +foJ +gKf yks -bdj +cka fla -xdI +vFf eGP -sln +sUF yks -eEC -tGU -sUC +cuw +ski +foJ fay -nYN -bkx -uDE +fIg +pZf +oZk fay -pYj -lrL -tcm -eBC -emD -eAR +vmi +cDO +bgF +xEM +ipR +ygC fay qul qul @@ -33272,43 +33272,43 @@ pGs pGs pGs pGs -rBC -rBC -xlh -tlD -rBC -rBC -rBC -xlh -tlD -rBC -rBC -rBC -rBC -tlD -xlh -rBC -rBC -rBC -tlD -rBC -xlh -rBC -rBC -rBC -kBL -loJ -oAg -bNW +kss +kss +aCP +fPM +kss +kss +kss +aCP +fPM +kss +kss +kss +kss +fPM +aCP +kss +kss +kss +fPM +kss +aCP +kss +kss +kss +bqv +xab +wDt +cWz klT klT klT klT -akz +wOP ncL tMJ yks -akz +wOP yks yks yks @@ -33320,9 +33320,9 @@ yks yks yks yks -sUC -sUC -sUC +foJ +foJ +foJ yks mzJ rbU @@ -33331,17 +33331,17 @@ sdU rbU yks yks -qOC -akz +pyT +wOP fay fay -iOC +kyV fay fay fay -xMF -nGt -kKn +vbk +eJr +pzp ftA fay fay @@ -33351,7 +33351,7 @@ ebr pKK vYW loA -xli +woH vYW vYW vYW @@ -33454,77 +33454,77 @@ pGs pGs pGs pGs -aVH -xNJ -aVH -aVH -aVH -aVH -aVH -aVH -aVH -xNJ -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -xNJ -aVH -aVH -pgR -aVH -lYR -cRV -cRV -cRV -goK -udH -mdI -diN +xHB +nWY +xHB +xHB +xHB +xHB +xHB +xHB +xHB +nWY +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +nWY +xHB +xHB +smH +xHB +xoD +pAc +pAc +pAc +vmN +dca +aFL +bkP kXQ kXQ -sUC -mdI -diN +foJ +aFL +bkP kXQ -sUC -iNX +foJ +bTq xCq kXQ kXQ -sUC -sUC -mdI -diN -sUC -sUC -sUC -sUC +foJ +foJ +aFL +bkP +foJ +foJ +foJ +foJ pCP ovC ovC nOQ lIO rbU -oKd -iFh -pVe -euY -euY -euY -pVe -mOP -atU -gXv -nZH -euY -pVe -mtH +txK +fjq +hyM +fdL +fdL +fdL +hyM +dIH +kDn +eer +vpM +fdL +hyM +aON eEY xhx fay @@ -33636,79 +33636,79 @@ pGs pGs pGs pGs -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB lyP -aVH +xHB lyP -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -qbZ -sUC -sUC -vbZ -tMk -tMk -xwz -tMk -tMk -tMk -tMk -xwz -tMk -tMk -tMk -xwz -tMk -tMk -tMk -tMk -glD -xwz -tMk -eal -oRP -sUC -sUC +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +seT +foJ +foJ +iaE +dba +dba +vEu +dba +dba +dba +dba +vEu +dba +dba +dba +vEu +dba +dba +dba +dba +gKj +vEu +dba +mZV +qXM +foJ +foJ aoE -wBv +mbf ovC ovC ovC rbU -oKd -scP -fQz -nGt -cCv -nGt -fQz -nGt -nGt -nGt -nGt -nGt -fQz -mkf -qYh -dUC +txK +aNV +pKq +eJr +hCB +eJr +pKq +eJr +eJr +eJr +eJr +eJr +pKq +gUM +nre +mgS fay ebr ebr @@ -33716,8 +33716,8 @@ ebr vYW vYW vYW -xli -xli +woH +woH vYW neq vYW @@ -33818,89 +33818,89 @@ pGs pGs pGs pGs -pgR -aVH -aVH -aVH -aVH +smH +xHB +xHB +xHB +xHB lyP -aVH -aVH -aVH +xHB +xHB +xHB lyP -aVH -aVH -aVH -aVH -aVH -aVH -rnz +xHB +xHB +xHB +xHB +xHB +xHB +mXk lyP lyP -aVH -lSS -wLT -mct -wLT -ozS -avn -avn -tGU -sUC -sUC -sUC -gnV -vmi -sUC -sUC -sUC -gnV -sUC -sUC -sUC -gnV -sUC -sUC -sUC +xHB +adz +fdi +aRN +fdi +loV +sku +sku +ski +foJ +foJ +foJ +tKm +psg +foJ +foJ +foJ +tKm +foJ +foJ +foJ +tKm +foJ +foJ +foJ kXQ kXQ -gnV -sUC -pyx -sUC -vkR +tKm +foJ +bxe +foJ +wVj yks qBU rbU ovC adC rbU -oKd -scP -pDu -vKx -xYN -chI -keG -wuP -kZZ -mbs -kZZ -wuP -pDi -kZZ -dFL -gNO +txK +aNV +cJm +wMB +hAl +dYz +nnA +yhK +aEe +ngu +aEe +yhK +ckn +aEe +pAR +hks fay ebr ebr ebr vYW vYW -xli +woH vYW vYW -xli +woH vYW vYW vYW @@ -34000,35 +34000,35 @@ pGs pGs pGs pGs -aVH -aVH -pgR -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH -aVH +xHB +xHB +smH +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB +xHB lyP -rnz -aVH -aVH -pTb -oPx -iOG -iOG -lCn -cGP -tNn -pEq -tNn +mXk +xHB +xHB +vjj +pEG +ntV +ntV +qEs +xuw +ngD +ihQ +ngD yks yks yks @@ -34047,43 +34047,43 @@ yks yks yks yks -raE -tGU -goK -cuQ +kZA +ski +vmN +nbP yks vNG rbU -wjZ +pYJ nCV ovC fay -scP -nGt -xTk -eZd -fQz -nGt -lgJ -rPZ -fZh -wHA -lgJ -rPZ -nGt -fQz -mpA +aNV +eJr +bOM +uYA +pKq +eJr +nuK +nWb +cux +aNv +nuK +nWb +eJr +pKq +oeD fay ebr ebr vYW vYW -xli +woH jAI vYW -xli -xli -xli +woH +woH +woH vYW vYW vYW @@ -34182,35 +34182,35 @@ pGs pGs pGs pGs -aVH -aVH -aVH -aVH -aVH -aVH -aVH -rUK -mct -mct -mct -mct -mct -mct -mct -mct -mct -mct -wLT -mct -uip -vxt -vor -vxt -vor -sUC -sUC -tGU -cGE +xHB +xHB +xHB +xHB +xHB +xHB +xHB +lQK +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +fdi +aRN +tUh +kGO +hSV +kGO +hSV +foJ +foJ +ski +fri yks qul qul @@ -34220,8 +34220,8 @@ uHY uHY qHc qHc -lvy -eoz +tQj +pla qul qul qul @@ -34229,32 +34229,32 @@ qul qul qul yks -ikq -lhQ -sUC -fqr +iiU +shj +foJ +mYV aoE qKq axY lNw urE xNw -ldL -scP -nGt -qxx -uyy -fQz -rPZ -llw -nGt -gDd -rPZ -biO -nGt -nGt -fQz -kFI +hjC +aNV +eJr +gls +tHz +pKq +nWb +kjq +eJr +nzA +nWb +whk +eJr +eJr +pKq +sfm fay ebr vYW @@ -34264,8 +34264,8 @@ vYW vYW vYW vYW -xli -xli +woH +woH vYW vYW vYW @@ -34364,45 +34364,45 @@ pGs pGs pGs pGs -aVH -rnz -aVH -aVH -aVH -aVH -aVH -oLW -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -vxt -sUC -sUC -tGU -sUC +xHB +mXk +xHB +xHB +xHB +xHB +xHB +bvI +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +kGO +foJ +foJ +ski +foJ yks qul qul qul -eoz -lvy +pla +tQj xCn xCn -lvy -lvy +tQj +tQj qHc xCn xCn @@ -34411,32 +34411,32 @@ qul qul qul yks -pVY -tGU -sUC -rsy +bVv +ski +foJ +mMw yks -qCu +gWA xxO rFD ncC qBQ fay -pRp -nGt -xEJ -wri -fQz -rPZ -ykQ -nGt -deS -rPZ -aza -nGt -nGt -tdI -llL +jHR +eJr +bKS +hrd +pKq +nWb +ohZ +eJr +vgP +nWb +fDo +eJr +eJr +tGW +wvV tqh rpw neq @@ -34446,8 +34446,8 @@ vYW ixl hto vYW -xli -xli +woH +woH vYW vYW vYW @@ -34547,43 +34547,43 @@ pGs pGs pGs pRV -aVH -rnz -aVH -aVH -aVH -aVH -ppH -egR -eTm -rDN -rDN -rDN -rDN -rDN -rDN -etT -egR -eTm -rDN -eja -vxt -vxt -vxt -vxt -sUC -sUC -tGU -kSh +xHB +mXk +xHB +xHB +xHB +xHB +ffA +dgn +kfO +mri +mri +mri +mri +mri +mri +sLZ +dgn +kfO +mri +upo +kGO +kGO +kGO +kGO +foJ +foJ +ski +dvo yks yks qul qul -lvy -lvy -lvy +tQj +tQj +tQj xCn -lvy +tQj xCn xCn xCn @@ -34593,10 +34593,10 @@ cgr qul qul yks -vWm -nro -sUC -sUC +ers +faa +foJ +foJ yks yks yks @@ -34604,22 +34604,22 @@ aoE yks yks yks -aJi -nGt -klm -mdJ -fQz -nGt -icv -nGt -lgJ -nGt -cXY -rPZ -nGt -egd -cXT -myd +sGJ +eJr +mRt +fVH +pKq +eJr +arR +eJr +nuK +eJr +war +nWb +eJr +qVF +oQm +mzm rpw neq vYW @@ -34627,9 +34627,9 @@ vYW ebr ebr ebr -xli -xli -xli +woH +woH +woH vYW hto vYW @@ -34729,35 +34729,35 @@ pGs pGs lYo cNt -aVH -pgR -aVH -rnz -tTK -aVH -ppH -egR -cXC -aVH -rnz -aVH -rnz +xHB +smH +xHB +mXk +mgM +xHB +ffA +dgn +uPy +xHB +mXk +xHB +mXk lyP -aVH -oLW -egR -cXC -hPl -xme -vxt -vxt -bCF -vxt -xBV -sUC -tGU -sUC -pVY +xHB +bvI +dgn +uPy +tbu +iyp +kGO +kGO +vKx +kGO +gSF +foJ +ski +foJ +bVv yks qul qul @@ -34765,7 +34765,7 @@ xCn oVt xCn xCn -lvy +tQj xCn xCn xCn @@ -34776,31 +34776,31 @@ pea qul yks yks -nhy -tMk +eUY +dba vSd -tMk -oPj +dba +udX yeR -tMk -dnk -tMk -nao -lru -kZZ -kZZ -vBN -qxP -nGt -rPZ -nGt -nGt -nGt -nGt -nGt -nGt -egd -vPa +dba +bnl +dba +lEn +vId +aEe +aEe +kQI +caz +eJr +nWb +eJr +eJr +eJr +eJr +eJr +eJr +qVF +meY fay rpw vYW @@ -34808,10 +34808,10 @@ vYW vYW vYW ebr -aEr -xli -xli -xli +txI +woH +woH +woH vYW vYW neq @@ -34911,42 +34911,42 @@ pGs qfr nbB cNt -rnz -rnz -aVH -aVH -aVH -aVH -ppH -egR -cXC -rnz -aVH +mXk +mXk +xHB +xHB +xHB +xHB +ffA +dgn +uPy +mXk +xHB lyP lyP -aVH -tTK -oLW -egR -cXC +xHB +mgM +bvI +dgn +uPy lyP -pTb -vxt -vxt -vxt -vxt -sUC -avn -tGU -sUC -pVY +vjj +kGO +kGO +kGO +kGO +foJ +sku +ski +foJ +bVv yks qul uHY xCn xCn xCn -lvy +tQj xCn xCn qul @@ -34958,31 +34958,31 @@ bdH qul qul yks -kuu -sUC -sUC -sUC -vmi -sUC -sUC -tGU -avn +gOa +foJ +foJ +foJ +psg +foJ +foJ +ski +sku aoE -nYN -gAG -gAG -gAG -bkx -gAG -gAG -rzx -oeP -akK -gAG -nGt -nGt -sVS -jsk +fIg +piP +piP +piP +pZf +piP +piP +wAk +qXm +cxY +piP +eJr +eJr +xdx +rdm fay rpw neq @@ -34990,10 +34990,10 @@ vYW vYW vYW vYW -xli -xli -xli -xli +woH +woH +woH +woH vYW vYW vYW @@ -35094,33 +35094,33 @@ nbB qfr dpW oIc -rnz -rnz -pgR -aVH -aVH -ppH -egR -cXC -rnz -aVH +mXk +mXk +smH +xHB +xHB +ffA +dgn +uPy +mXk +xHB lyP -aVH -aVH -aVH -oLW -egR -cXC -rnz -pTb -vxt -vxt -vxt -vxt -sUC -sUC -tGU -mSN +xHB +xHB +xHB +bvI +dgn +uPy +mXk +vjj +kGO +kGO +kGO +kGO +foJ +foJ +ski +mLj yks yks qul @@ -35140,31 +35140,31 @@ xCn qul qul yks -yeD -dSu +mgL +aWj kXQ kXQ qOS -sUC -sUC -tGU -psM +foJ +foJ +ski +laV yks -tlC -cOi -cTx +sok +gSN +dRL fay -mrn +iCt fay -myd +mzm fay fay fay -lgJ -tcm -tcm -weS -gDJ +nuK +bgF +bgF +qGF +kvM fay ebr vYW @@ -35172,10 +35172,10 @@ hto vYW neq vYW -xli -xli -xli -xli +woH +woH +woH +woH vYW vYW vYW @@ -35277,31 +35277,31 @@ rcu fQK dpW pRV -rnz -rnz -rnz -rnz -ppH -lQN -cXC -rnz -tTK -aVH -aVH -aVH -aVH -oLW -egR -eTr +mXk +mXk +mXk +mXk +ffA +vUO +uPy +mXk +mgM +xHB +xHB +xHB +xHB +bvI +dgn +lll lyP -pTb -vxt -vxt -njN -vxt -sUC -avn -tGU +vjj +kGO +kGO +bbV +kGO +foJ +sku +ski yks yks qul @@ -35311,7 +35311,7 @@ xCn xCn qHc xCn -lvy +tQj xCn xCn xCn @@ -35328,25 +35328,25 @@ vSN vSN yks yks -cGP -uqt -tNn +xuw +qGk +ngD yks -iFh -euY -euY -euY -pVe -awm -qrm -rPO -xPr +fjq +fdL +fdL +fdL +hyM +rvp +rVQ +cMJ +cqA fay -vlO -tcm -tcm -weS -wyg +kbT +bgF +bgF +qGF +bXU fay ebr ebr @@ -35354,8 +35354,8 @@ vYW ckM vYW vYW -xli -xli +woH +woH vYW vYW vYW @@ -35460,30 +35460,30 @@ nbB qfr dpW oIc -rnz -rnz -lSS -qnM -egR -hdX -wZf -rnz -rnz -rnz -viS -lSS -tPm -egR -hdX -wWM -pTb -eCk -vor -vxt -vor -cGP -tNn -aLK +mXk +mXk +adz +voN +dgn +nSV +whC +mXk +mXk +mXk +fFr +adz +dlG +dgn +nSV +kUG +vjj +qVJ +hSV +kGO +hSV +xuw +ngD +oHu yks qul qul @@ -35493,7 +35493,7 @@ qHc xCn xCn xCn -lvy +tQj qHc xCn xCn @@ -35510,24 +35510,24 @@ qul qul qul yks -sUC -tGU -wGj +foJ +ski +gKf yks -alb -nGt -nGt -nGt -fQz -nGt -nGt -nGt -uvK +dyL +eJr +eJr +eJr +pKq +eJr +eJr +eJr +nWp fay -xMF -tcm -txx -gEo +vbk +bgF +amC +nHb fay fay ebr @@ -35536,8 +35536,8 @@ ebr vYW vYW vYW -xli -mEY +woH +ubj vYW vYW vYW @@ -35644,28 +35644,28 @@ ykM dpW iIY oIc -ppH -vxt -vxt -vxt +ffA +kGO +kGO +kGO kVL iIY iIY pRV -tTK -ppH -vxt -vxt -vxt -eTr -pTb -rLZ -jmA -vCK -vCK -sUC -sUC -oLv +mgM +ffA +kGO +kGO +kGO +lll +vjj +ukr +sdI +ghY +ghY +foJ +foJ +jnv yks qul qul @@ -35674,8 +35674,8 @@ qHc mJe xCn xCn -lvy -lvy +tQj +tQj xCn tuR xCn @@ -35692,24 +35692,24 @@ cYV qul qul yks -sUC -gzO -tMk -nao -juE -kZZ -kZZ -kZZ -pDi -kZZ -pQm -nGt -mzr +foJ +dvV +dba +lEn +koh +aEe +aEe +aEe +ckn +aEe +gJp +eJr +qPx fay -vlO -tcm -tcm -fOm +kbT +bgF +bgF +pQh fay ebr ebr @@ -35718,8 +35718,8 @@ hto vYW vYW vYW -xli -vMm +woH +myz dGu hto vYW @@ -35817,9 +35817,9 @@ pGs pGs huF haP -hlU -wji -eoX +fbR +quS +cnM haP uQi nbB @@ -35827,27 +35827,27 @@ fQK nbB dpW red -vxt -bEw -vxt +kGO +tTM +kGO nhX gor qoj avX ehT kQy -vxt -bEw -vxt -rKA -hYW -hWF -hWF -hWF -vjb -sUC -sUC -tGU +kGO +tTM +kGO +sSS +ygg +nlW +nlW +nlW +oiA +foJ +foJ +ski yks qul qul @@ -35856,7 +35856,7 @@ xCn xCn fHk xCn -lvy +tQj xCn xCn xCn @@ -35868,30 +35868,30 @@ xCn qHc qHc xCn -vAp +xYt vQe xCn uHY qul yks -cGP -pEq -tNn +xuw +ihQ +ngD aoE -qxk -lkF -oCh -sHM -aXU -wSg -jqz -gAG -eMf +ipD +tix +gwp +eTO +eGT +oBK +mpd +piP +lHy fay -oro -nsd -nsd -bsk +wie +fen +fen +lSH fay ebr ebr @@ -35900,8 +35900,8 @@ vYW vYW vYW vYW -xli -xli +woH +woH jAI vYW ebr @@ -35998,38 +35998,38 @@ pGs pGs huF huF -qWS -oIW -oIW -oIW -gVc +dFc +qOx +qOx +qOx +inq uQi uQi uQi uQi uQi ykc -vxt -reZ -vxt +kGO +naD +kGO ykc -acj +vvi ykc -acj +vvi ykc ykc -pSb -reZ -vxt +dDz +naD +kGO ykc uQi uQi uQi uQi uQi -sUC -sUC -tGU +foJ +foJ +ski yks qul qul @@ -36038,7 +36038,7 @@ xCn jCs xCn xCn -lvy +tQj xCn qHc xCn @@ -36056,24 +36056,24 @@ xCn xCn qul yks -sUC -tGU -wGj +foJ +ski +gKf yks fay fay fay fay -myd -myd +mzm +mzm fay fay fay fay -oro -nsd -nsd -bsk +wie +fen +fen +lSH fay ebr ebr @@ -36082,8 +36082,8 @@ ebr vYW neq vYW -xli -xli +woH +woH vYW vYW hto @@ -36180,38 +36180,38 @@ pGs pGs huF huF -mVg -dsg -dsg -rSw -nMS +lQs +pAG +pAG +oUa +nSr ykc ykc ykc ykc ykc ykc -acj +vvi ykc -akE +mDa ykc -wWA -wWA -pYP -sZY +wBq +wBq +aUV +qCB ykc -acj +vvi ykc -obQ +uHQ ykc ykc ykc ykc ykc ykc -uOd -uOd -xkE +jrx +jrx +bQf adw qul uHY @@ -36219,8 +36219,8 @@ xCn xCn xCn qul -eoz -lvy +pla +tQj xCn xCn xCn @@ -36237,10 +36237,10 @@ mJe xCn xCn xCn -sUC -sUC -tGU -sUC +foJ +foJ +ski +foJ nSi bMx qul @@ -36252,10 +36252,10 @@ qul qul qul fay -oro -nsd -nsd -bsk +wie +fen +fen +lSH fay ebr ebr @@ -36263,9 +36263,9 @@ ebr vYW vYW vYW -xli -xli -xli +woH +woH +woH neq vYW vYW @@ -36362,38 +36362,38 @@ pGs pGs huF huF -rrM -dsg -dsg -qCy -enQ +clE +pAG +pAG +quJ +knH ykc -xis -jOM -cus -dSy -dSy -fLO +gbj +irM +dAC +jen +jen +pdS ykc -jZU -iNW -iNW -iNW -iNW -iNW -wib -rOf +pFs +sle +sle +sle +sle +sle +vcs +xPm uXZ -jZU -lSN -iNW -iNW -iNW -lSN +pFs +kZz +sle +sle +sle +kZz uXZ -lbj -mce -npm +dkO +kIm +grH uSx xCn xCn @@ -36401,9 +36401,9 @@ xCn tuR xCn qul -eoz -lvy -lvy +pla +tQj +tQj xCn xCn xCn @@ -36412,7 +36412,7 @@ qul xCn xCn qYg -eoz +pla hhM hhM xCn @@ -36421,7 +36421,7 @@ qHc xCn kXQ kXQ -tGU +ski kXQ kXQ xCn @@ -36434,23 +36434,23 @@ uHY qul qul fay -hfa -nsd -nsd -lbL +jWU +fen +fen +itg fay ebr hto vYW vYW vYW -xli -aEr -xli -xli +woH +txI +woH +woH vYW -aEr -aEr +txI +txI ebr ebr ebr @@ -36544,38 +36544,38 @@ huF huF huF huF -mVg -dsg -dsg -tZP -bLJ +lQs +pAG +pAG +omt +tDJ ykc -jFd -jOM -jOM -jOM -sra -dSy +oGj +irM +irM +irM +vSc +jen ykc -xRX -mVq -pYy -hhS -hhS -hhS -hhS -utm +tSW +dgf +dPD +rYT +rYT +rYT +rYT +dXp oLM -cRM -rGT -qXX -nJM -qZu -gRr +pUw +wYW +xvR +qRF +gVA +qHT ykc -tOU -fwm -clY +rbl +gKh +lRP uSx xCn xCn @@ -36584,55 +36584,55 @@ qHc qHc uHY cYV -slq -lvy -lvy -lvy -eoz -eoz +ebd +tQj +tQj +tQj +pla +pla xCn -lvy -lvy +tQj +tQj xCn xCn -lvy -lvy -lvy -lvy +tQj +tQj +tQj +tQj qHc -lvy -sUC +tQj +foJ kXQ bRS -sUC +foJ kXQ -lvy -lvy -lvy -lvy -lvy +tQj +tQj +tQj +tQj +tQj xCn xCn -dcM -lvy +aMU +tQj deg -oro -nsd -nsd -bsk +wie +fen +fen +lSH lxe -rCn -vYW -vYW -xli -xli -xli -biL -xuK -xli -xli -xli -xli +hDD +vYW +vYW +woH +woH +woH +vZQ +eZI +woH +woH +woH +woH ebr ebr ebr @@ -36726,38 +36726,38 @@ huF huF huF huF -gIX -oIW -oIW -yae -enQ -uFa -jOM -jOM -jOM -jOM -bQE -dOv +nyw +qOx +qOx +oIt +knH +xdF +irM +irM +irM +irM +bkZ +pwf uXZ -mui -mVq -iVF -knl -pkK -nJM -gRr -fzd -mao -lQw -hhS -hhS -hhS -hhS -hhS +ifV +dgf +hLt +hqO +uwb +qRF +qHT +xJk +qJx +nDD +rYT +rYT +rYT +rYT +rYT oLM -uOd -uOd -xkE +jrx +jrx +bQf bnm qul xCn @@ -36766,55 +36766,55 @@ xCn xCn qHc xCn -lvy -lvy -lvy -lvy -lvy +tQj +tQj +tQj +tQj +tQj xCn xCn qHc xCn -lvy -lvy +tQj +tQj xCn xCn qHc -lvy -lvy -vfy -sUC -sUC +tQj +tQj +hYz +foJ +foJ bRS -sUC +foJ kXQ -lvy -lvy -lvy -lvy +tQj +tQj +tQj +tQj xCn oVt yfT -lvy -lvy +tQj +tQj doW -oro -ibw -vrC -bsk +wie +eMa +jFR +lSH doW -rCn -xli -vYW -xli -xli -xli -iZl -bxl -nHY -xli -xli -xli +hDD +woH +vYW +woH +woH +woH +lTk +puL +gmr +woH +woH +woH ebr ebr ebr @@ -36893,54 +36893,54 @@ pGs pGs pGs pGs -gQi -itw -itw -itw -itw -itw -itw -itw -itw -itw -itw -jNk -itw -itw -tdY -spV -ife -rSy -ntr -enQ +yfx +jBr +jBr +jBr +jBr +jBr +jBr +jBr +jBr +jBr +jBr +wxF +jBr +jBr +tiA +nhd +fIb +aMY +hPI +knH uXZ -rqD -udA -udA -jOM -bQE -xIi +slt +emW +emW +irM +bkZ +utk ykc -ntg -mVq -iJy -hhS -hhS -hhS -hhS -cbG -ssN -jut -nJM -geD -hxV -bwp -eNc -jZX -uOd -uOd -xkE -uOd +dAb +dgf +fCV +rYT +rYT +rYT +rYT +cUY +bLU +oqN +qRF +efX +oUT +gjG +uvb +bGd +jrx +jrx +bQf +jrx qul qul xCn @@ -36964,40 +36964,40 @@ xCn xCn xCn xCn -lvy -sUC +tQj +foJ kXQ -tGU +ski kXQ -sUC -lvy -lvy -lvy +foJ +tQj +tQj +tQj xCn xCn xCn -lvy -lvy -lvy +tQj +tQj +tQj deg -oro -btQ -nsd -bsk +wie +fhl +fen +lSH rNm -rCn -xli -xli -vYW -vYW -xli -xli -xli -xZc -xZc -xli -xli -aEr +hDD +woH +woH +vYW +vYW +woH +woH +woH +foD +foD +woH +woH +txI hto vYW vYW @@ -37075,7 +37075,7 @@ pGs pGs pGs pGs -xBp +anK huF huF huF @@ -37086,44 +37086,44 @@ huF huF huF huF -lCM +xwm huF huF huF -rrM -cZL -wom -oIW -enQ +clE +tJk +ubl +qOx +knH ykc ykc uXZ ykc oLM -ddg +lbj ykc ykc -wqW -mVq -oqI -psS -wMO -rrt -dTH -xQo -rRW -joX -hhS -hhS -hhS -hhS -hhS +vWr +dgf +aES +xfy +uvn +jkp +fpj +eET +pUH +ioI +rYT +rYT +rYT +rYT +rYT uXZ -uOd -uOd -xkE -ePZ -mnp +jrx +jrx +bQf +bwY +jXA qul qul uHY @@ -37141,17 +37141,17 @@ mJe xCn xCn xCn -eoz +pla hhM hhM -eoz -lvy +pla +tQj hhM kXQ kXQ -tGU +ski kXQ -sUC +foJ uHY uHY xCn @@ -37161,11 +37161,11 @@ xCn xCn qYg xCn -fGD -kTW -aps -nsd -bsk +nzT +wLS +lQb +fen +lSH fHg oAE vYW @@ -37173,13 +37173,13 @@ vYW vYW vYW vYW -xli -xli -xZc -xZc -xli -xli -aEr +woH +woH +foD +foD +woH +woH +txI vYW cmr vYW @@ -37257,56 +37257,56 @@ pGs pGs huF huF -xBp +anK huF huF huF huF huF huF -vkw -vkw -vkw -vkw -aHA +diy +diy +diy +diy +dfu huF rpu huF -mVg -oIW -xSd -oIW -enQ -fvR -fJD -rxq -vQa -tZy -qwp -kOz -jAq -ndx -aKL -iJy -hhS -hhS -hhS -hhS -utm +lQs +qOx +plI +qOx +knH +ezH +oha +cYk +bcB +nLx +sbl +gGM +kCm +djm +qaO +fCV +rYT +rYT +rYT +rYT +dXp ykc -ntg -aSS -gRr -nJM -eNc -gRr +dAb +uyw +qHT +qRF +uvb +qHT ykc -ssX -uOd -bGW -aaz -uOd -aSd +mHG +jrx +gYI +nDc +jrx +mPh qul qul qul @@ -37332,7 +37332,7 @@ qul mCZ kXQ bRS -sUC +foJ yks qul qul @@ -37344,10 +37344,10 @@ oVt uHY qul fay -qcz -nsd -nsd -bsk +dke +fen +fen +lSH fay ebr luZ @@ -37355,28 +37355,28 @@ vYW neq vYW vYW -xli +woH vYW vYW -xli -xli -xli +woH +woH +woH vYW -xli -xli -xli +woH +woH +woH vYW vYW vYW -iQB -xli +nVE +woH vYW -xli +woH vYW vYW vYW vYW -aEr +txI vYW vYW vYW @@ -37439,7 +37439,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -37454,41 +37454,41 @@ huF huF rpu huF -mVg -oIW -wom -oIW -enQ -wTo -mqn -mqn -wTo -mVq -fLI -mVq -mVq -mVq -mVq -kem -mPh -gRr -pkK -nJM -utm +lQs +qOx +ubl +qOx +knH +iGT +aVg +aVg +iGT +dgf +mnP +dgf +dgf +dgf +dgf +uVd +bno +qHT +uwb +qRF +dXp ykc -onQ -gbu -mqn -mqn -mqn -gbu +eIu +uYs +aVg +aVg +aVg +uYs ykc -uOd -clT -xkE -wWZ -uFK -clT +jrx +qGy +bQf +qgl +bsO +qGy qul qul qul @@ -37512,24 +37512,24 @@ qul qul qul yks -cGP -pEq -tNn +xuw +ihQ +ngD yks qul -qfT -hHG -pbr +wFO +nhN +uFb qul qul qul qul qul fay -oro -nsd -nsd -bsk +wie +fen +fen +lSH fay ebr ebr @@ -37537,19 +37537,19 @@ hto vYW rZr vYW -xli -xli -xli +woH +woH +woH vYW -xli -xli +woH +woH vYW -xli -xli -xli -xli -xli -xli +woH +woH +woH +woH +woH +woH vYW vYW vYW @@ -37621,7 +37621,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -37636,27 +37636,27 @@ huF huF huF huF -qSm -ntr -lJb -oIW -enQ -hhS -hFR -hFR -hhS -mVq -fLI -mVq -mVq -mVq -mVq -iJy -hhS -hhS -hhS -hhS -utm +coV +hPI +ftc +qOx +knH +rYT +hzQ +hzQ +rYT +dgf +mnP +dgf +dgf +dgf +dgf +fCV +rYT +rYT +rYT +rYT +dXp ykc ykc ykc @@ -37665,12 +37665,12 @@ uXZ uXZ ykc ykc -uOd -xkR -xkE -uOd -uOd -clT +jrx +aNl +bQf +jrx +jrx +qGy qul qul qul @@ -37694,24 +37694,24 @@ qul qul qul yks -kdD -tGU -wGj +plV +ski +gKf yks qul -jEa -lBI -quh -hHG -hHG -bFp -pbr +kfX +nrF +mfG +nhN +nhN +hDe +uFb qul fay -oro -nsd -nsd -bsk +wie +fen +fen +lSH fay ebr ebr @@ -37719,12 +37719,12 @@ ebr ebr ebr fRl -wWP -wLm -ogg -xli -xli -xli +lKc +qgf +nbT +woH +woH +woH vYW vYW vYW @@ -37783,8 +37783,8 @@ wUU "} (40,1,1) = {" wUU -oAe -vVC +ukB +qjb pGs pGs pGs @@ -37803,53 +37803,53 @@ pGs pGs huF huF -lWK -vkw -vkw -vkw -vkw -vkw -vkw -vkw -vkw -vkw -vkw -vkw -vkw -vkw -huw -siL -ife -wqL -oIW -tYR -hhS -hFR -hFR -hhS -mVq -fLI -mVq -mVq -mVq -mVq -fLI -mVq -mVq -mVq -mVq -utm +ioG +diy +diy +diy +diy +diy +diy +diy +diy +diy +diy +diy +diy +diy +cHQ +pWF +fIb +caY +qOx +hCN +rYT +hzQ +hzQ +rYT +dgf +mnP +dgf +dgf +dgf +dgf +mnP +dgf +dgf +dgf +dgf +dXp uXZ -iWR -wAC -lhA -asy -cvr +mNp +jvg +oei +hub +pHY ykc xRF -wGG +eSt pGJ -hUo +goU wVI pGJ lsU @@ -37876,37 +37876,37 @@ sdz sdz qul yks -sUC -tGU -hfJ +foJ +ski +pjY yks qul -slL -pfh -pfh -pfh -pfh -pfh -oaD +hLj +kiI +kiI +kiI +kiI +kiI +dkK qul fay -vlO -tcm -tcm -fOm +kbT +bgF +bgF +pQh fay ebr ebr ebr ebr ebr -pEP -dnf -pAF -xli -xli -xli -xli +btz +wFM +uJe +woH +woH +woH +woH vYW vYW vYW @@ -37922,8 +37922,8 @@ ebr sQN vYW vYW -xli -xli +woH +woH vYW vYW vYW @@ -37965,9 +37965,9 @@ wUU "} (41,1,1) = {" wUU -oAe -vVC -vVC +ukB +qjb +qjb pGs pGs pGs @@ -37985,7 +37985,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -38000,67 +38000,67 @@ huF huF huF huF -mVg -sdx -wom -oIW -enQ -wTo -iNW -xWh -oHw -vWh -rmw -vWh -vWh -vWh -vWh -oPp -vWh -vWh -vWh -vWh -gIV -oIB -cBh -cdn -cdn -xbf -qiC +lQs +hGb +ubl +qOx +knH +iGT +sle +sUW +hzr +czC +cpz +czC +czC +czC +czC +iuz +czC +czC +czC +czC +aIM +uvA +fkG +ran +ran +nrg +mzj oLM -igv -igv -igv -nre -tQU -hgw -kPI -tQU -wAb -tQU -kPI -hgw -qZF -aeN +sjm +sjm +sjm +rMq +scR +aGC +vDO +scR +tga +scR +vDO +aGC +dOG +iYS pGJ pGJ pGJ pGJ pGJ -grM -kQd -qnw -kHB -afw -rGU -yce -wdU +xas +pOO +kdW +akt +kUW +qED +pcp +eXp sdz sdz sdz -uzz -scc -uzz +gDm +coE +gDm sdz sdz kGM @@ -38073,8 +38073,8 @@ kGM sdz sdz kGM -yer -trS +iFf +jZM miy sdz sdz @@ -38082,14 +38082,14 @@ sdz sdz sdz ebr -aej -rCn +kxc +hDD vYW vYW vYW vYW jAI -xli +woH vYW hto ebr @@ -38103,8 +38103,8 @@ vYW vYW vYW vYW -xli -xli +woH +woH vYW vYW vYW @@ -38147,9 +38147,9 @@ wUU "} (42,1,1) = {" wUU -oAe -vVC -vVC +ukB +qjb +qjb pGs pGs pGs @@ -38167,7 +38167,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -38182,96 +38182,96 @@ huF huF huF huF -rrM -oIW -wom -oIW -enQ -cRM -nJM -wWJ -lcq -nJM -oqd -nJM -mVq -mVq -mVq -rBw -vAf -mqn -mqn -mqn -mqn -mqn -qEB -hhS -hhS -iJy -aKW +clE +qOx +ubl +qOx +knH +pUw +qRF +aIv +ckS +qRF +sKM +qRF +dgf +dgf +dgf +vLN +bAK +aVg +aVg +aVg +aVg +aVg +ahG +rYT +rYT +fCV +jsV uXZ -qer -vvA -gVr -xve -csl -csl -csl -csl -csl -csl -csl -csl -csl -kPI -tQU -tQU -tQU -tQU -hgw -qeb -tgs -qeb -qeb -qeb -eFD -qIA -axB -fHd -qeb -qeb -qeb -xjm -qeb -ylj -shM -jqP -mKR -jqP -shM -jqP -jqP -mKR -jqP -shM -gkW -yer -yer -rZD -shM -bfx -eNY -aNN +pUj +ohW +dMd +xds +bYB +bYB +bYB +bYB +bYB +bYB +bYB +bYB +bYB +vDO +scR +scR +scR +scR +aGC +kCz +obj +kCz +kCz +kCz +kaE +ybA +nWd +ayb +kCz +kCz +kCz +dxb +kCz +fIG +clp +sWj +ntK +sWj +clp +sWj +sWj +ntK +sWj +clp +bFa +iFf +iFf +scN +clp +rpB +cqI +txb kGM -vul -tFw -rCn -xli +xKw +lzC +hDD +woH hto vYW vYW vYW -xli +woH hto ebr ebr @@ -38329,10 +38329,10 @@ wUU "} (43,1,1) = {" wUU -oAe -vVC -vVC -vVC +ukB +qjb +qjb +qjb pGs pGs pGs @@ -38349,7 +38349,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -38365,93 +38365,93 @@ huF huF huF xpP -swD -pHT -ukq -fff -oVy -nJM -nJM -utm -jCm -oqd -nJM -mVq -byD -cYk -pDc +dkR +rUB +wsI +jnO +hXj +qRF +qRF +dXp +iHJ +sKM +qRF +dgf +fUx +ycp +jHv ykc uXZ uXZ uXZ uXZ oLM -uZW -cYk -mVq -iJy -nJM -fmV -vvA -uBu -gVr -xve -csl -bkX -csl -csl -csl -csl -csl -ppO -wsP -wXz -csl -csl -csl -csl -csl -cVn -cVn -cvt -cVn -cVn -cVn -lhj -lhj -dqq -cVn -cVn -cVn -abR -cVn -cVn -cVn -cVn -kJX -duI -cVn -cVn -cVn -kJX -cVn -cVn -cVn -cVn -cVn -abR -cVn -cVn -cVn -tOX +hnl +ycp +dgf +fCV +qRF +rDX +ohW +rsT +dMd +xds +bYB +ulq +bYB +bYB +bYB +bYB +bYB +hZq +joY +dPi +bYB +bYB +bYB +bYB +bYB +mFm +mFm +sMw +mFm +mFm +mFm +bOw +bOw +oGE +mFm +mFm +mFm +aVA +mFm +mFm +mFm +mFm +eeh +cYl +mFm +mFm +mFm +eeh +mFm +mFm +mFm +mFm +mFm +aVA +mFm +mFm +mFm +beS kGM -wuI -gvD -vUv +pwt +wmR +inv vYW -xli +woH vYW -xli +woH vYW vYW ebr @@ -38473,7 +38473,7 @@ vYW vYW vYW vYW -xli +woH vYW vYW jQa @@ -38511,10 +38511,10 @@ wUU "} (44,1,1) = {" wUU -oAe -vVC -vVC -vVC +ukB +qjb +qjb +qjb pGs pGs pGs @@ -38531,7 +38531,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -38548,18 +38548,18 @@ huF huF huF huF -fEd +hnS huF huF uQi -was -rsx -utm -tLI -oqd -nJM -mVq -ewh +mEG +knF +dXp +fyE +sKM +qRF +dgf +uXh nQo fjM jeO @@ -38569,69 +38569,69 @@ vrw vrw jeO vrw -loc -fxE -rCW -cIm -cIm -qZk -ciK -cdM -fre -gwK -gwK -iGW -iGW -iGW -iGW -iGW -dax -hns -imn -iGW -gwK -iGW -gwK -iGW -upk -upk -upk -ouK -upk -dCW -upk -upk -upk -upk -upk -lby -eYB -upk -agr -upk -upk -vCA -upk -upk -upk -upk -vCA -lby -upk -upk -upk -upk -gAr -upk -dkc -cVn -tOX +qhg +unt +mni +bGu +bGu +fYz +wqZ +ccg +lHu +pfA +pfA +lBN +lBN +lBN +lBN +lBN +btc +qCO +mmj +lBN +pfA +lBN +pfA +lBN +dXi +dXi +dXi +vvM +dXi +mbU +dXi +dXi +dXi +dXi +dXi +jnb +aZp +dXi +btm +dXi +dXi +lHB +dXi +dXi +dXi +dXi +lHB +jnb +dXi +dXi +dXi +dXi +faY +dXi +ahB +mFm +beS kGM -wuI -bWv -bNa +pwt +wKj +qju vYW -xli +woH vYW vYW vYW @@ -38644,7 +38644,7 @@ vYW vYW pJF neq -ikc +vII vYW vYW vYW @@ -38654,8 +38654,8 @@ vYW vYW vYW vYW -xli -xli +woH +woH vYW vYW jQa @@ -38664,8 +38664,8 @@ jQa jQa jQa jQa -hIf -kll +qjN +tVx jQa jQa jQa @@ -38693,11 +38693,11 @@ wUU "} (45,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb pGs pGs pGs @@ -38713,7 +38713,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -38730,93 +38730,93 @@ huF huF huF huF -vnp +oOI huF huF ykc -lOH -nNw -utm -gRr -oqd -nJM -mVq -guj -guj -epc +wWz +mfh +dXp +qHT +sKM +qRF +dgf +kjG +kjG +bDt oLM -gEi -wNo -gJX -sci +eEp +wCh +kso +dsx hUU -nqY -sUm -mVq -nKe -kEe +tpD +vUK +dgf +mFD +qhi uXZ -qer -vvA -gVr -csl -xve -sRT -csl -csl -csl -csl -csl -csl -hCb -csl -csl -lhu -csl -xve -csl -cVn -cVn -cVn -cVn -cVn -cVn -cVn -cVn -cVn -cVn -cVn -mIN -cVn -cVn -abR -cVn -cVn -kWl -qng -fZD -qVV -sPl -kWl -mIN -cVn -cVn -cVn -cVn -cVn -cVn -nLR -cVn -tOX +pUj +ohW +dMd +bYB +xds +qIB +bYB +bYB +bYB +bYB +bYB +bYB +yhq +bYB +bYB +msI +bYB +xds +bYB +mFm +mFm +mFm +mFm +mFm +mFm +mFm +mFm +mFm +mFm +mFm +ljg +mFm +mFm +aVA +mFm +mFm +wKe +lGA +dle +cvh +tyZ +wKe +ljg +mFm +mFm +mFm +mFm +mFm +mFm +fpy +mFm +beS kGM -qyN -qlu +hHN +nvP ebr vYW vYW vYW vYW -xli +woH vYW ebr ebr @@ -38836,14 +38836,14 @@ ebr ebr hto vYW -xli -xli +woH +woH vYW vYW jQa -kll -kll -kll +tVx +tVx +tVx jQa jQa jQa @@ -38875,12 +38875,12 @@ wUU "} (46,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -38895,7 +38895,7 @@ pGs pGs huF huF -xBp +anK huF huF huF @@ -38912,84 +38912,84 @@ huF huF huF huF -xBp +anK huF huF ykc -uxZ -nJM -utm -nJM -nWK -nJM -mVq -mVq -mVq -qtz -wvl -eNQ -lVy -wSK -ktK -sCZ -ovh -hCT -hEQ -eau -svi +eZp +qRF +dXp +qRF +fqM +qRF +dgf +dgf +dgf +aWk +tra +tRY +xlR +rGp +oTa +sKO +qKS +oyu +vaw +eCp +vNg oLM -igv -igv -igv -gtW -hYT -bNS -gtW -nuu -nuu -xTr -kPI -csl -hCb -kPI -nuu -nuu -ajw -hYT -vvA -bwN -fih -fih -fih -fih -fih -fih -fih -fih -fih -fih -fih -fih -fih -oaF -wez -wez -lOr -ptz -fvp -ogA -wez -rnI -wez -wez -pJB -wez -wez -wez -vzR -nLR -cVn -gkW +sjm +sjm +sjm +vYS +jbJ +wJr +vYS +sAu +sAu +dkZ +vDO +bYB +yhq +vDO +sAu +sAu +njw +jbJ +ohW +vET +tRb +tRb +tRb +tRb +tRb +tRb +tRb +tRb +tRb +tRb +tRb +tRb +tRb +eKj +vBv +vBv +nJv +lce +cVT +htA +vBv +mST +vBv +vBv +jSc +vBv +vBv +vBv +gsp +fpy +mFm +bFa sdz ebr ebr @@ -38997,8 +38997,8 @@ ebr ebr vYW vYW -xli -xli +woH +woH vYW vYW hto @@ -39010,7 +39010,7 @@ vYW fGP vYW vYW -xli +woH vYW gEP ebr @@ -39018,13 +39018,13 @@ ebr ebr vYW vYW -xli -xli +woH +woH vYW vYW jQa -kll -kll +tVx +tVx jQa jQa jQa @@ -39057,12 +39057,12 @@ wUU "} (47,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -39077,7 +39077,7 @@ pGs pGs huF huF -lTP +iQK huF huF huF @@ -39094,35 +39094,35 @@ pGs bZv iUZ huF -mkz +gWm huF huF ykc -tbg -mqn -wTo -mqn -mqn -wTo -mqn -kYG -vsy -rKP +urz +aVg +iGT +aVg +aVg +iGT +aVg +gKq +iHp +kAG ykc -sEX -gJA -wTo -nTs +tSy +nFL +iGT +rhS ykc -qJT -mqn -afa +bae +aVg +lKt ykc uXZ ykc -jyY +sof vnm -wuc +iiN vnm brX vUT @@ -39130,15 +39130,15 @@ uJO bLB bLB vnm -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv cZR nxW nxW -qlP -nWa +lUr +uKa nxW nxW mKb @@ -39152,9 +39152,9 @@ qcN qcN qcN lGp -men -mtN -men +nLr +ivt +nLr bIt bIt pQp @@ -39169,8 +39169,8 @@ ykw bIt bIt kGM -nLR -iwu +fpy +xWE kGM sdz ebr @@ -39201,7 +39201,7 @@ ggX vYW vYW vYW -xZc +foD iOv vYW jQa @@ -39239,13 +39239,13 @@ wUU "} (48,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -39259,7 +39259,7 @@ pGs pGs huF huF -lTP +iQK huF huF huF @@ -39276,16 +39276,16 @@ lYr qjU gvo rlw -lMo +xUB huF huF ykc ykc oDS -wTo -hhS -hhS -wTo +iGT +rYT +rYT +iGT ykc ykc uXZ @@ -39293,18 +39293,18 @@ uXZ ykc ykc uXZ -pds +rIH uXZ ykc uXZ jpm uXZ ykc -cdv -aQi -cdv +fkO +ryt +fkO vnm -bDW +fqc vQz hMG jZE @@ -39312,48 +39312,48 @@ vQz iDM vPY bLB -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv nxW -pyL -usj -qlP -xJJ -uOx -vYP -nJz -uLr -aSK -kKE +tkP +wTK +lUr +ixA +wvl +kqD +pUL +fxd +den +xgb qcN -fug -aAq +qvU +duJ qcN -xhF -esd +utc +sfi qcN -oRc -oNv -uVp +xJE +tKD +rfp ykw -rdf -gGr -ggO -dPh -nVX +ttX +oeP +udu +keB +hqS ykw -gHD -qnC -lNU -lNU -ilB +iTU +dDk +uLX +uLX +iYN bIt -msX -sBf -sKx -nzA +sDS +rMz +trP +bWf nTG ebr ebr @@ -39383,9 +39383,9 @@ vYW vYW vYW vYW -xZc -xZc -xli +foD +foD +woH jQa jQa jQa @@ -39421,14 +39421,14 @@ wUU "} (49,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -39441,7 +39441,7 @@ pGs pGs huF huF -lTP +iQK huF huF huF @@ -39452,90 +39452,90 @@ huF pGs pGs iUZ -piC +grY lYr lYr fwo lYr sQR -lMo +xUB huF huF huF huF ykc -wTo -iNW -iNW -wTo +iGT +sle +sle +iGT uXZ -qMk -bLo -mrV -jzS -qmY -aAi -cdv -ubY -cre -oua -cdv -ubY -mIh -cre -hmz -cdv +sAe +uws +nwz +oAu +rnm +nIz +fkO +xwK +xTN +wxA +fkO +xwK +wSz +xTN +nFl +fkO vnm -iDI +dyh rVi brX oXf jZE -bgM +uNQ bio bLB -epV -csl -hCb -kPI +gUe +bYB +yhq +vDO nxW -nKl -xJJ -qlP -dXS -xJJ -xJJ -xJJ -xJJ -xJJ -eYc +koP +ixA +lUr +woo +ixA +ixA +ixA +ixA +ixA +sWZ qcN -diS -eok +oQK +sjC qcN -iNC -xlp +exJ +guf qcN -ycn -oNv -nUt +oYC +tKD +jbG bIt -aDw -iHx -pnQ -pPp -gWE +mHD +eMy +wIJ +bhB +kgG bIt -mVl +jdO vgA pOC qWC -vBV +fqv ykw -wSb -sBf -sKx -via +wJp +rMz +trP +fgN nTG jpD ebr @@ -39559,15 +39559,15 @@ vYW vYW vYW vYW -xli -xli +woH +woH vYW vYW vYW -xli -xli -xli -xli +woH +woH +woH +woH jQa jQa jQa @@ -39603,17 +39603,17 @@ wUU "} (50,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb pGs pGs pGs @@ -39623,7 +39623,7 @@ pGs pGs huF huF -lTP +iQK huF huF huF @@ -39637,88 +39637,88 @@ fwo lYr lYr qyT -nPo +djp lYr tia -qvV +qJs huF huF huF huF ykc -tEX -efN -hFR -utm -kQt -cdv -cdv -cdv -jzv -cdv -cdv -cdv -ugB -gWY -cdv -cdv -cdv -cdv -jzv -cdv -cdv +bsc +lbM +hzQ +dXp +wfd +fkO +fkO +fkO +eep +fkO +fkO +fkO +iCp +gWT +fkO +fkO +fkO +fkO +eep +fkO +fkO aGx -rZd +nlx gqE mUy uUl ria -nea +lpM cSq vnm -mJd -csl -noE -riy -rDW -ank -lpw -npw -lpw -lpw -lck -oHT -oHT -tti -lpw -iuC -eeZ -bQM +dim +bYB +uYW +sHu +rPk +xMK +kOR +lDV +kOR +kOR +dpf +rNN +rNN +gCD +kOR +aJd +azz +ruI nxW -biX -ibb +wtA +doX nxW -ycn -oNv -ycn +oYC +tKD +oYC bIt -sVU -iIK +tZW +vPH fAO -iHx -vND +eMy +eaY bIt -gTI +jWi qWC eOv rJq -vBV +fqv ykw -wSb -sBf -sKx -via -sSx +wJp +rMz +trP +fgN +emm jpD oAE oAE @@ -39741,13 +39741,13 @@ neq vYW vYW vYW -xli -xli +woH +woH vYW vYW vYW -xli -iQB +woH +nVE vYW vYW gxQ @@ -39785,18 +39785,18 @@ wUU "} (51,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb sNx pGs pGs @@ -39805,7 +39805,7 @@ huF huF huF huF -lTP +iQK huF pGs pGs @@ -39828,85 +39828,85 @@ huF huF huF ykc -pOi -hFR -hFR -utm +vHT +hzQ +hzQ +dXp uXZ -cdv -cOZ -cdv -gWY -sIl -gFp -cdv -cdv -gWY -cdv -ugB -cdv -gFp -gWY -nNj -cdv +fkO +gLF +fkO +gWT +lni +qAq +fkO +fkO +gWT +fkO +iCp +fkO +qAq +gWT +wuX +fkO bLB -qjV +hAD oXf dbu xxI woJ -xVI +tGm cSq bLB -epV -csl -far -peG -gdr -iib -gdr -vOx -uJz -xJJ -xJJ -xJJ -xJJ -xJJ -xJJ +gUe +bYB +kfW +uEJ +dXN +sis +dXN +qmb +ksl +ixA +ixA +ixA +ixA +ixA +ixA qcN -nPg -jQl +aGM +lSl nxW -pkQ -oop +yiy +bjS nxW -ycn -oNv -ycn +oYC +tKD +oYC ykw -dMf -rlv -uvY -iHx -bcz +tDP +dSH +eBH +eMy +cyj ykw -pKW +rjI qDR iRw pjH -hmn +lXX ykw -vdp -sBf -sKx -via -rlx +eEj +rMz +trP +fgN +qLv gUP -gtc -tFw +nGf +lzC oAE -xli -xli +woH +woH vYW vYW vdQ @@ -39923,13 +39923,13 @@ neq vYW vYW vYW -xli -xli +woH +woH cmr vYW vYW -xli -xli +woH +woH vYW vYW pGs @@ -39967,19 +39967,19 @@ wUU "} (52,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb sNx sNx huF @@ -39987,7 +39987,7 @@ huF huF huF huF -iap +beu huF pGs pGs @@ -39999,10 +39999,10 @@ kFV vmw eaC fwo -xEe +tWM hAg lYr -whg +cBL lYr fwo huF @@ -40010,84 +40010,84 @@ huF huF huF ykc -xRX -hFR -hFR -fGA +tSW +hzQ +hzQ +xpd oLM -ugB -nqA +iCp +shd lEV -wHY +swe alD aSU ghI lEV -wHY +swe alD aSU ghI lEV -wHY +swe alD -cdv +fkO bLB -nea +lpM gqE mUy cOs ria -aoj +kJp cSq bLB -epV -csl -hCb -kPI +gUe +bYB +yhq +vDO nxW -naw -xJJ -qas -xJJ -mFp -kQm -jXJ -jXJ -sAB -mFp +nzB +ixA +tnb +ixA +rYV +cGP +adN +adN +mim +rYV nxW -kJg -xXb +fej +mPM qcN -fiy -oop +vHE +bjS qcN -dyI -oNv -ycn +dcB +tKD +oYC ykw -fbm -iHx -qxY -iHx -fpC +lrT +eMy +rNX +eMy +wMv pQp -bWf +nqk vgA bRg fXa -cMW -czY -pDx -sBf -sKx -via -hAP +wJU +ucT +wrr +rMz +trP +fgN +foc gUP -whZ -bWv +kLZ +wKj oAE -wnS +ggL vYW vYW vYW @@ -40105,13 +40105,13 @@ vYW vYW vYW vYW -xli -xli +woH +woH vYW vYW vYW vYW -xli +woH vYW vYW pGs @@ -40149,27 +40149,27 @@ wUU "} (53,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV kkF huF huF pGs bJI ahb -koc +bCz vQK pGs pGs @@ -40178,7 +40178,7 @@ huF huF huF fwo -nPo +djp lYr lYr wKW @@ -40192,83 +40192,83 @@ huF huF huF ykc -cRM -hFR -lxn -utm +pUw +hzQ +bMb +dXp uXZ -nQP -tsd -mlZ -wHY -dog -gWY -fnL -mlZ -wHY -dog -dBs -fnL -mlZ -wHY -dog -bbZ +rhR +kxq +jxM +swe +vmJ +gWT +vvJ +jxM +swe +vmJ +wEo +vvJ +jxM +swe +vmJ +bdh bLB -tGF +oSy jZE mfa -dhQ +fyi krM -dug +viy xWU bLB -epV -hVa -hZa -sIb +gUe +gFr +rKr +uWv nxW -rgH -xJJ -qas -mFp -bCb -tZi -puk -jnS -vKe -txP +dNF +ixA +tnb +rYV +bTp +wab +nQe +oMm +ufD +mKO nxW -phC -toQ -rWL -fEC -oAT -ofF -ycn -oNv -ycn +gRP +hXD +qoU +gom +xoh +wLK +oYC +tKD +oYC ykw -kCx -dgr -jZK -bai -kpa -tvP -kpa +hqq +eRC +urp +ppr +igH +xNL +igH jqu qVL jqu -jwT +mFV ykw -rQn -sTB -lKy -via -pDx +hHH +fFA +fCp +fgN +wrr gUP -wuI -bWv -rCn +pwt +wKj +hDD ebr vYW ckM @@ -40331,38 +40331,38 @@ wUU "} (54,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV kkF -bVL +hdg huF pGs dfs fwo -dVZ +kWn lYr arF pGs huF huF huF -jOD -miq -miq -miq -kdT +vaM +tgT +tgT +tgT +nkt cRx lYr pdn @@ -40374,82 +40374,82 @@ huF huF huF ykc -wTo -mqn -mqn -wTo +iGT +aVg +aVg +iGT ykc -rZn -nqA +rcl +shd lGT -wHY +swe uEF aSU ghI lGT -wHY +swe uEF aSU ghI lGT -wHY +swe uEF -cdv +fkO vnm -rZd +nlx ePz pRb ceJ oXf -dug +viy cSq vnm -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv mKb -dtG -qay -eSc -jXJ -pzu -pLR -bGV -jzP -pLR -jzP +anm +gFQ +xlU +adN +kpW +yjo +rit +tBb +yjo +tBb nxW -rEW -hXx +cOG +mlQ nSP -eMW -oop +fVP +bjS qcN -obw -oNv -ycn +cZt +tKD +oYC bIt -vdu -iHx -lNU -iHx -aSc +uvV +eMy +uLX +eMy +xca bIt -tFH +mNK kvG thn thn -hvK -ePr -tbY -kir -cxI -via -pDx +tRt +iQP +tKk +qyV +joM +fgN +wrr gUP -qyN -qlu +hHN +nvP ebr ebr oAE @@ -40475,10 +40475,10 @@ ebr ggX vYW vYW -xli +woH vYW vYW -xli +woH pGs pGs pGs @@ -40513,121 +40513,121 @@ wUU "} (55,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV kkF -bVL +hdg huF pGs ipZ lYr -ldK +okD fwo rIG pGs huF huF dEJ -soK -soK -dOL -soK -yaK +aHc +aHc +dLG +aHc +iKt lYr -qIn -oum +wyU +oIz lYr gLV -hNB +oYE huF huF huF huF wFP -jne -jne -jne -jne +qxB +qxB +qxB +qxB uQi -cdv -cdv -cdv -gWY -cdv -cdv -gFp -cdv -gWY -ugB -cdv -cdv -cdv -gWY -ugB -cdv +fkO +fkO +fkO +gWT +fkO +fkO +qAq +fkO +gWT +iCp +fkO +fkO +fkO +gWT +iCp +fkO aGx -rZd +nlx fyP cwQ kzE fyP -dug +viy gNb bLB -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv nxW -rgH -xJJ -qas -sAB -cpx -dCa -aKA -rTK -xrq -duc +dNF +ixA +tnb +mim +sUO +xyp +ope +cNg +hqr +gzP nxW -frO -hTS +bqy +csv nxW -bMH -oop +frD +bjS nxW -ycn -oNv -ycn +oYC +tKD +oYC ykw -cxk -iHx -lNU -iHx -fwp +bZo +eMy +uLX +eMy +asH ykw -qXp +nbe waB nTS qWC -buq +qyn ykw -vdp -eql -jce -via +eEj +fuQ +rll +fgN kyG kyG gTC @@ -40695,38 +40695,38 @@ wUU "} (56,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV kkF -bVL +hdg huF huF tlE lYr -ldK +okD lYr lYr hCw -dCk -bIS -pzC -soK -soK -jnt -soK -yaK +wLA +thD +eXE +aHc +aHc +sRU +aHc +iKt rCf nDk lYr @@ -40738,84 +40738,84 @@ huF huF huF uQi -jRi -jRi -jRi -jRi +wml +wml +wml +wml uQi -jQF -cdv -gFp -gWY -jOE -ugB -sZZ -aZK -gWY -nNj -cdv -cdv -gFp -gWY -lfG -tJf +azy +fkO +qAq +gWT +kFp +iCp +ulY +hUZ +gWT +wuX +fkO +fkO +qAq +gWT +xVD +rnx vnm uCe lEY ksf -lbY +blh oXf ugR gNb bLB -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv nxW -rgH -ldE -qas -jXJ -nhU -jzP -wQY -sFO -xQL -nyv +dNF +oTJ +tnb +adN +ldB +tBb +nBW +sxF +fVy +oCX nxW -kyN -jQl +eUx +lSl nxW -vkC -oop +tMT +bjS nxW -aRp -oNv -ycn +dTp +tKD +oYC bIt -lHa -iHx -lNU -iHx -kqY +bhp +eMy +uLX +eMy +aBq bIt -uZX +kdO rRm wph qWC -qpw +oSz ykw -wSb -eql -jce -via +wJp +fuQ +rll +fgN gTC -aeg -mLF -aux -buF -kLY +hIT +vEj +lMV +oLc +kqq rTT fuS oAE @@ -40877,127 +40877,127 @@ wUU "} (57,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -kAq -sCz +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qCn +vmd kkF -unS -uzp -auT -ghK -fYz -kGn -hqT -lwl -eKJ -dCk -soK -soK -soK -soK -soK -meN -soK -hse -baj -miq -dlx -dlx -miq -mMg -upw -tuo -qOq +udo +fMC +lLD +clW +dCR +lnb +ygo +pfv +gXZ +wLA +aHc +aHc +aHc +aHc +aHc +fUp +aHc +aOa +eEA +tgT +mai +mai +tgT +nib +vgh +htT +jkF qqJ -hbJ -hbJ -hbJ -hbJ +abH +abH +abH +abH aMC -cdv -bmr -vSx -gWY -rkK -sIl -rys -tBc -gWY -aZK -pOR -sIl -cdv -gWY -cdv -ugB +fkO +tpv +oMw +gWT +awm +lni +pXY +bnJ +gWT +hUZ +dBW +lni +fkO +gWT +fkO +iCp epQ sKC epQ epQ epQ sKC -hBm +jTb epQ epQ -yao -csl -hCb -sIb +qRL +bYB +yhq +uWv qcN -oRT -xJJ -qas -sPf -kWA -uiI -wyV -kOB -dzY -aBs +qWZ +ixA +tnb +yde +vZa +wGU +yjw +mYB +edK +iwh shb -fOZ -eWf +hZx +rLM iop -gcd -suB -gEm -wQF -rNj -ycn +pOS +bvP +jgJ +jap +cDx +oYC ykw -eFo -gNR -rEy -gHA -hwm +qkJ +ggu +cMI +bYl +wti bIt -oFO -gEZ -lxL -lxL -mmm +bKM +nXu +xri +xri +qpT ykw -wSb -eql -jce -via +wJp +fuQ +rll +fgN gTC -aeg -jLd +hIT +kYZ aae -ozT -woy +cWt +bQi wTJ fuS oAE @@ -41059,19 +41059,19 @@ wUU "} (58,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV xfo xfo ydy @@ -41083,29 +41083,29 @@ itT lYr hkQ bVQ -dCk -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -mYN -huz -soK -tKQ -soK -soK -soK -cfr -soK -soK -soK -mhh +wLA +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +ruf +iOe +aHc +mZz +aHc +aHc +aHc +ecD +aHc +aHc +aHc +nDb ccp qpK qAp @@ -41115,71 +41115,71 @@ qAp qAp bgE bgE -vdT +nMY qAp bgE -cdv -qmY -gWY -mdi -cdv +fkO +rnm +gWT +ePp +fkO sKC -dll -dll -vPM -dll -ohn -rJD -pZn +wgQ +wgQ +aLv +wgQ +axS +tpR +vBg sKC -epV -csl -hCb -jrH +gUe +bYB +yhq +vDS qcN qcN -xJJ -yhC +ixA +soS qcN nxW nxW nxW -tSZ +bWv nxW nSP qcN -pqE -oyQ +aed +qQV qcN -aMG -wyW +onK +iCP qcN -oRc -oNv -ycn +xJE +tKD +oYC bIt ykw -aMk +wZH bIt ykw ykw bIt ykw bIt -aMk +wZH ykw bIt bIt -nVL -eql -jce -via +gpo +fuQ +rll +fgN kyG -mGx -uVr +kgN +vwN bRi -wvE -bDl +sth +fMx tuV kyG ebr @@ -41195,9 +41195,9 @@ ebr ebr ksX ksX -akv -heM -jge +nFT +caQ +crG ksX ebr ebr @@ -41241,128 +41241,128 @@ wUU "} (59,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV aQq -cUh +cDT pxa -pra +wax ahg -uDT -hpG -hpG -fgy +qmc +gHC +gHC +qvr nDL -inv -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -mMg -soK -cZI -frW -soK -cTu -yeq +lZE +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +nib +aHc +xuF +moR +aHc +iyD +ceD qAp -kXH -gTu -aPt +euY +esg +wZt qAp -cdv -cdv -gWY -cdv -cdv -yke -kCg -fso -kCg -kCg -kCg -rJD -hTs +fkO +fkO +gWT +fkO +fkO +hZB +dBU +dQm +dBU +dBU +dBU +tpR +bkq epQ -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv nxW -haF -jzP -fWL -kzb -kzb -kzb -kzb -rav -tfo -vmy -oyQ -wWO -xQL +ftE +tBb +kUo +bEN +bEN +bEN +bEN +qgz +oax +hsW +qQV +iUL +fVy qcN nxW nxW qcN -ycn -oNv -ycn -ycn -ycn -ycn -ycn -ycn -ycn -lea -ycn -ycn -ycn -ycn -nub +oYC +tKD +oYC +oYC +oYC +oYC +oYC +oYC +oYC +cpH +oYC +oYC +oYC +oYC +mXw jcT -vkc -eql -jce -vdp +nTu +fuQ +rll +eEj kyG -nlz -fVp +pdX +hyg bRi -wvE -jBB -msS +sth +qoR +kKV kyG ebr ebr @@ -41375,12 +41375,12 @@ ebr ebr ebr ksX -sxv -iCL -iCL +rAE +bfB +bfB uKZ xxk -peN +mvx ksX ebr ebr @@ -41423,128 +41423,128 @@ wUU "} (60,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV aQq -odu +aSw qaE -wbX +izk nqQ tlE -hpG -hpG -cwP +gHC +gHC +akI nDL -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -hAL -soK -soK -cZI -soK -soK -soK +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +pUX +aHc +aHc +xuF +aHc +aHc +aHc qzi -cIA -cIA -dWR +mBV +mBV +hgC bgE -ugB -ubY -gWY -oua -cdv +iCp +xwK +gWT +wxA +fkO sKC -uqb -nVD -lNv -lNv -wiK -mvn -iNo +oUG +pqe +rzl +rzl +aNt +ayj +aTK sKC -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv nxW -xQL -mwv -ryl -nRj -mTI -fEC -fEC -ocx -cnH -vow -ufW -dFG -xQL +fVy +wMW +ojj +czT +vhK +gom +gom +nKC +wDP +rJh +xXv +qVz +fVy nxW -bcE -tNC -nUt -nUt -oNv -ycn -ycn -ycn -ycn -ycn -ycn -ycn -ycn -uWk -rNz -ycn -ycn -ycn +qJQ +mUA +jbG +jbG +tKD +oYC +oYC +oYC +oYC +oYC +oYC +oYC +oYC +uvi +gjx +oYC +oYC +oYC hoP -wSb -xeI -vIk -bfr -pRz -ejs +wJp +xtE +eWS +cTR +bBc +uGB xZD iJD -omA -uWq -mAe +srb +jJw +hfv kyG ksX ksX @@ -41557,12 +41557,12 @@ ebr ebr ebr ksX -iCL -iCL -nCr -iCL -mva -iCL +bfB +bfB +sUL +bfB +pzG +bfB ksX ebr ebr @@ -41605,146 +41605,146 @@ wUU "} (61,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV aQq -umQ +fhz qaE qdL ahg tlE -hpG -hpG -iQQ +gHC +gHC +eJG lqF -soK -soK -soK -soK -soK -soK -soK -eDu -soK -soK -soK -soK -soK -eDu -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -hnt -soK -hAL -soK -soK -soK -soK -uge -cdv -cdv -cdv -aMr -nQP -gWY -gWY -cdv -cdv +aHc +aHc +aHc +aHc +aHc +aHc +aHc +vFA +aHc +aHc +aHc +aHc +aHc +vFA +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +cUq +aHc +pUX +aHc +aHc +aHc +aHc +oxv +fkO +fkO +fkO +hix +rhR +gWT +gWT +fkO +fkO epQ -omM -jhh -fyv -efV -lMm -rJD -hzY +fiG +mwh +xMX +aBg +aIt +tpR +xCy epQ -cAE -csl -hCb -sIb +vai +bYB +yhq +uWv nxW -tjr -cox -kmH -cox -fWL -diM -cox -tVy -lib -ppG -wmi -pbD -dmz +oEv +nfl +loK +nfl +kUo +tGN +nfl +fxP +uXi +pNX +jZF +hiu +qcm nxW -dyI -ycn -ycn -iMB -szV -wQF -gDk -wQF -wQF -xUN -sSX -wQF -cyO -wQF -wQF -wQF -wQF -wQF -smA -rQn -vPS -sKx -vdp +dcB +oYC +oYC +nzL +kEf +jap +vxc +jap +jap +iHD +lZZ +jap +gSR +jap +jap +jap +jap +jap +goc +hHH +tcT +trP +eEj kyG -mMn +wHv wKi bRi -wvE -uWq -dex +sth +jJw +vAT kyG -peN -iCL -iCL -rZl -gjM +mvx +bfB +bfB +nab +oUo ksX ksX ksX ksX ksX ksX -kyl -iCL +dQO +bfB ksX -wgb -iCL -iCL +skt +bfB +bfB ksX cty cty @@ -41787,89 +41787,89 @@ wUU "} (62,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -kfb -hrl -rBC -wYy +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dJd +oVw +kss +ivk xfo bGC qzq ahg nQA tlE -lsI -uqh -vvC +oRP +xRY +tSc nDL -soK -soK -soK -dOL -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK +aHc +aHc +aHc +dLG +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc qAp -cdv -yeU -cdv +fkO +uDp +fkO qAp -cdv -mrV -gWY -qmY -cdv +fkO +nwz +gWT +rnm +fkO sKC -sSJ -amg -hvr -dNb -ohn -rJD -vUo +hnk +bNh +nbr +joy +axS +tpR +rEw sKC -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv lGp qcN nxW qcN nSP -hmK +pOb qcN nxW rcq @@ -41879,14 +41879,14 @@ qcN nxW nxW qcN -dyI -ycn -ycn -cBn -ycn -pIk -oNv -ycn +dcB +oYC +oYC +wKn +oYC +gjo +tKD +oYC xgG qvo xgG @@ -41898,35 +41898,35 @@ xgG qvo xgG xgG -kHU -sBf -sKx -via +wrx +rMz +trP +fgN kyG -mHB +qYZ wKi bRi -wvE -uWq -rCJ +sth +jJw +uhK gTC -gDB -iCL -dUY -iCL -iCL -iCL -mxh -iCL -mxh -iCL -mxh -vSA -iCL -iCL -iCL -wHb -iCL +ePj +bfB +qzN +bfB +bfB +bfB +bwg +bfB +bwg +bfB +bwg +dxl +bfB +bfB +bfB +aUb +bfB ksX cty cty @@ -41969,146 +41969,146 @@ wUU "} (63,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -hmE -vVC -vVC -rBC -hrl -frw -pKI -irh -taU -mMg -soK -mMg -xBX +ukB +qjb +qjb +qjb +qjb +hJJ +qjb +qjb +kss +oVw +adf +lsS +fFY +rLX +nib +aHc +nib +mcA psd -hpG -hpG -fgy +gHC +gHC +qvr nDL -soK -soK -soK -soK -soK -soK -soK -soK -soK -eDu -soK -soK -soK -soK -soK -soK -soK -soK -eDu -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -nWZ +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +vFA +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +vFA +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +ged bgE -cIA -cIA -lls +mBV +mBV +qqk bgE -rZn -cdv -gWY -cdv -cdv +rcl +fkO +gWT +fkO +fkO sKC -kjJ -kjJ -bXq -aRU -kCg -lCc -kLt -lRB -iir -jbs -hZa -sIb +sAL +sAL +uuh +hTn +dBU +qbE +uvG +rZq +nLA +cTA +rKr +uWv qcN -mzz -voT -eFf -jzT -lxb -kQJ -tfo -vHy -tDC -wcS +jzW +pfa +ygx +vkV +hEx +kkO +oax +oKM +ioZ +dfF qcN -eNj -ycn -iMB -wQF -wQF -wQF -pIa -nub +vSk +oYC +nzL +jap +jap +jap +bCg +mXw clX -etU -ycn +vOk +oYC xgG -vnE -qgg -gUW +ptm +mOM +xTM qvo -oxq -wJb -scm -qnS -vgP +mqG +swD +hjw +uwd +qDz qvo -lBF -sBf -sKx -via +wJs +rMz +trP +fgN gTC -vSX -mLL -stu -wvE -uOI -dWu +wkb +sLn +dFv +sth +iXi +kMv gTC -eHq -nwk -nwk -nwk -nwk -nwk -pKA -nwk -xOh -nwk -pKA -nwk -nwk -nwk -nwk -nwk -dht +kdv +ukg +ukg +ukg +ukg +ukg +pMj +ukg +lSU +ukg +pMj +ukg +ukg +ukg +ukg +ukg +gWe ksX cty hoC @@ -42151,146 +42151,146 @@ wUU "} (64,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -rBC -frw -pKI -jpr -ruE -soK -soK -soK -yaK +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +kss +adf +lsS +feF +aHv +aHc +aHc +aHc +iKt hzK eat -hpG -hpG -cwP +gHC +gHC +akI lqF -soK -bYs -miq -miq -miq -miq -miq -miq -jEx -miq -miq -miq -fIo -miq -miq -miq -miq -miq -miq -miq -miq -miq -miq -miq -miq -kdT -soK -soK -soK -soK -soK +aHc +vUs +tgT +tgT +tgT +tgT +tgT +tgT +xHy +tgT +tgT +tgT +fxi +tgT +tgT +tgT +tgT +tgT +tgT +tgT +tgT +tgT +tgT +tgT +tgT +nkt +aHc +aHc +aHc +aHc +aHc qAp -oTK -drI -pWU +qvR +jzk +kvb qAp -aZK -ugB -gWY -cdv -cdv +hUZ +iCp +gWT +fkO +fkO epQ -cHC -cHC -skv -kCg -irP -ohf -eqm +sNq +sNq +rOK +dBU +bEI +kIN +cWw epQ -mJd -csl -hCb -sIb +dim +bYB +yhq +uWv nxW -tuG -voT -mFd -bad -led -dYw -tfo -yls -xJJ -tDC +kzr +pfa +rfc +mwO +gsj +tDw +oax +vYn +ixA +ioZ nxW -uWk -ycn -oNv -ycn -ycn -ycn -qyx -ycn +uvi +oYC +tKD +oYC +oYC +oYC +rAW +oYC clX -wPT -cyO -xxM -dDY -gZZ -mSr +bPd +gSR +vfz +bbU +rbn +ogb olU -nLD -nYj -nYj -urV -gFD +xNB +qhp +qhp +pyJ +wdn xgG -gQo -sBf -sKx -via +tEs +rMz +trP +fgN kyG -wkr -aiw -jUX -hYc -mKy -mKy -hGn -agm -iCL -erj -iCL -peN -iCL -rAw -iCL -rAw -iCL -rAw -lzd -peN -xLJ -iCL -iCL -hco +nrR +gsD +ahz +eBh +qKm +qKm +lGu +rFp +bfB +piH +bfB +mvx +bfB +dps +bfB +dps +bfB +dps +wJM +mvx +pUx +bfB +bfB +aKi tdN hoC aOg @@ -42333,98 +42333,98 @@ wUU "} (65,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -xlh -hrl -pKI -frw -mgU -jpr -ruE -soK -soK -soK -yaK +ukB +qjb +qjb +qjb +qjb +qjb +aCP +oVw +lsS +adf +wiX +feF +aHv +aHc +aHc +aHc +iKt qhQ -uBH -hpG -hpG -iQQ +dei +gHC +gHC +eJG nDL -soK -dCk -nLL -bxo -bxo -ttt -hRQ -rGG -bxo -ttt -nwt -rAT -uNu -ttt -wRV -rAT -bxo -ttt -nwt -rAT -tvu -ttt -nwt -rAT -nLL -yaK -soK -soK -soK -soK -soK +aHc +wLA +kOC +vCQ +vCQ +rAN +isX +bzR +vCQ +rAN +aiq +ldR +atN +rAN +fiw +ldR +vCQ +rAN +aiq +ldR +wym +rAN +aiq +ldR +kOC +iKt +aHc +aHc +aHc +aHc +aHc weJ qAp coz qAp bgE -cdv -cdv -gWY -cdv -sIl +fkO +fkO +gWT +fkO +lni sKC -ozr -bcP -nVI -kCg -fVo -fso -fnu +nZF +rkp +tYy +dBU +vnZ +dQm +vSU sKC -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv nxW -mZX -jXJ -dCx -jXJ -sbD -dYw -tfo -uRf -xJJ -uhv +etL +adN +uXg +adN +uiG +tDw +oax +gcu +ixA +aXK qcN oHo -ycn -oNv +oYC +tKD xgG xgG qvo @@ -42434,33 +42434,33 @@ xgG qvo xgG xgG -eTj -jCk -mSr +maE +uTP +ogb qvo -wcD -dIe -dIe -pbF -tAp +pdd +qal +qal +lbH +hOy qvo -rjL -sBf -sKx -via +kDS +rMz +trP +fgN kyG -ixJ -qks -jCt -mGl -mDt -mDt +hXT +awc +xcx +jjs +gxr +gxr kyG -icd -iCL -rNM -lFd -peN +gyh +bfB +mbw +iji +mvx ksX ksX ksX @@ -42471,8 +42471,8 @@ ksX ksX ksX mSu -sOn -mQu +tHn +uel ksX mCF aOg @@ -42515,32 +42515,32 @@ wUU "} (66,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -rBC -frw -frw -frw -jpr -frw -ruE -soK -soK -soK -soK -xBX +ukB +qjb +qjb +qjb +qjb +kss +kss +adf +adf +adf +feF +adf +aHv +aHc +aHc +aHc +aHc +mcA jhu fFH lNL fFH wPv -soK -dCk -fml +aHc +wLA +gIX bZU rtm bZU @@ -42562,74 +42562,74 @@ bZU bZU rtm bZU -liC -yaK -soK -soK -soK -soK -soK -upw -dwb -soK -mhh +uHr +iKt +aHc +aHc +aHc +aHc +aHc +vgh +tIC +aHc +nDb aMC -oWo -cdv -gWY -cdv -rkK +qbv +fkO +gWT +fkO +awm epQ -gMS -cYI -uGF -gUq -usL -aij -jmK +gff +acY +fly +wLW +mPb +eCh +tUV epQ -kPI -vvA -cxG -kPI +vDO +ohW +aRs +vDO qcN -ugl -ucl -eEf -xGb -xid -bAz -gGH -xLC -cqA -tDC +mAG +lQI +xry +cpr +tPZ +dOT +lpe +xwE +vVb +ioZ nxW -wnR -ycn -oNv +mTI +oYC +tKD xgG -oPX -bmN -glW -vjI -vwc -nCi -fLW +kFO +ydB +oLi +oOX +sVC +gXE +qIg qvo -cCi -jCk -mSr +sDa +uTP +ogb xgG qvo qvo cNA -psf +tpp qvo xgG -oIU -sBf -sKx -via +bHw +rMz +trP +fgN kyG kyG kyG @@ -42638,11 +42638,11 @@ gTC kyG kyG kyG -hco -iCL -iCL -iCL -jcH +aKi +bfB +bfB +bfB +nWP ksX cty cty @@ -42652,9 +42652,9 @@ cty cty cty iFb -kZK -iCL -hco +fcb +bfB +aKi ksX mCF aOg @@ -42697,32 +42697,32 @@ wUU "} (67,1,1) = {" wUU -oAe -vVC -vVC -vVC -hmE -rBC -frw -pKI -frw -frw -frw -frw -ruE -odg -nqG -soK -soK -soK -inv -inv -inv -inv -inv -soK -dCk -heb +ukB +qjb +qjb +qjb +hJJ +kss +adf +lsS +adf +adf +adf +adf +aHv +qUg +skU +aHc +aHc +aHc +lZE +lZE +lZE +lZE +lZE +aHc +wLA +kJd bZU bZU bZU @@ -42744,23 +42744,23 @@ qOh bZU bZU bZU -iPr -yaK -soK -soK -soK -soK -soK -soK -soK -tKQ -soK +tRP +iKt +aHc +aHc +aHc +aHc +aHc +aHc +aHc +mZz +aHc aMC coz -xiL -vdT -xiL -xiL +sbf +nMY +sbf +sbf epQ sKC epQ @@ -42771,59 +42771,59 @@ epQ sKC epQ lsU -vvA -maG +ohW +nuD lsU nSP qcN -vDM -mVf -jXJ -aIF -jXJ -tfo -qBo -qlP -pWX +hBs +jrR +adN +iJc +adN +oax +uxa +lUr +aNb nxW -wnR -ycn -oNv +mTI +oYC +tKD qvo -eTj -qik -pwm -dts -hDu -pZw -ukj +maE +scj +gDH +aXs +aKK +oAz +glG qvo -eTj -jCk -mSr +maE +uTP +ogb xgG -jKJ -jOi -inG -dVk -czu +tet +qwg +ybi +ofE +pzT xgG -lBF -sBf -sKx -via +wJs +rMz +trP +fgN wSx -xWO -rbM -rbM -rbM -rbM -rbM +jRt +qjC +qjC +qjC +qjC +qjC sBX -hco -iCL -drU -mqB +aKi +bfB +iWQ +fab ksX ksX cty @@ -42835,8 +42835,8 @@ cty cty iFb xxk -iCL -hco +bfB +aKi iDn meS xSl @@ -42879,32 +42879,32 @@ wUU "} (68,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -hrl -frw -frw -mgU -frw -frw -frw -ruE -rGd -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -dCk -lGP +ukB +qjb +qjb +qjb +qjb +oVw +adf +adf +wiX +adf +adf +adf +aHv +nDH +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +wLA +jIc bZU bZU bZU @@ -42926,85 +42926,85 @@ bZU bZU bZU bZU -gIE -yaK -soK -soK -soK -soK -soK -soK -soK -soK -kQH -mPA -cqt -laB -laB -laB -laB -tQU -tQU -tQU -tQU -hgw -tQU -tQU -tQU -tQU -kPI -vvA -cxG -kPI -efk +fiB +iKt +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +kfS +qGl +xjF +eKY +eKY +eKY +eKY +scR +scR +scR +scR +aGC +scR +scR +scR +scR +vDO +ohW +aRs +vDO +uQg qcN -gQG -ats -rty -quO -qDe -pJv -iUg -oKM -nfi +spG +fdI +djI +kDa +rEL +szk +pwW +wZU +lom qcN -ycn -ycn -oNv +oYC +oYC +tKD xgG -pTs -qik -boJ -hDu -hDu -lyJ -fgi +gCc +scj +qwv +aKK +aKK +mZv +dyy qvo -eTj -jCk -mSr +maE +uTP +ogb qvo -jXz -pZw -hgP -gIQ -pbs +qXj +oAz +pRS +pNc +esc xgG -dFs -sBf -sKx -via +jcu +rMz +trP +fgN sBX -ltH -ltH -ltH -ltH -ltH -ltH +qgS +qgS +qgS +qgS +qgS +qgS sBX -hco -iCL -iCL +aKi +bfB +bfB ksX ksX cty @@ -43018,7 +43018,7 @@ cty iFb swV xxk -hco +aKi xEG mCF mCF @@ -43061,32 +43061,32 @@ wUU "} (69,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -frw -frw -frw -frw -frw -jpr -ruE -kzj -ojV -ojV -xkc -htc -xcC -oLA -oLA -oLA -soK -soK -dCk -qqW +ukB +qjb +qjb +qjb +qjb +kss +adf +adf +adf +adf +adf +feF +aHv +xac +beo +beo +fwM +fUB +vpz +guI +guI +guI +aHc +aHc +wLA +uvy bZU bZU bZU @@ -43108,37 +43108,37 @@ bZU bZU bZU bZU -jlK -yaK -soK -soK -soK -hnt -soK -soK -soK -soK -vYz -mPA -sYT -jZR -kUA -jZR -kUA -csl -dUD -csl -dUD -csl -dUD -csl -dUD -csl -dUD -csl -hCb -sIb -efk +gLm +iKt +aHc +aHc +aHc +cUq +aHc +aHc +aHc +aHc +xBe +qGl +rVG +iGd +hzA +iGd +hzA +bYB +wPK +bYB +wPK +bYB +wPK +bYB +wPK +bYB +wPK +bYB +yhq +uWv +uQg qcN qcN nxW @@ -43146,47 +43146,47 @@ qcN nxW qcN qcN -qHw -aNC -eiT +gsb +xly +mKP qcN yil -ycn -oNv +oYC +tKD qvo -eTj -qik -pZw -uWU -ybf -pZw -hDu -bGI -hDu -jCk -mSr +maE +scj +oAz +iwY +aph +oAz +aKK +srZ +aKK +uTP +ogb qvo -hoj -pZw -lyJ -bMX -aek +riL +oAz +mZv +qkd +lnQ qvo -juF -aVG -cxI -vdp +fIx +kNu +joM +eEj sBX -kHZ -lrO -lrO -tat -ltH -mzP +bUc +dQZ +dQZ +ujA +qgS +bSp sBX -hco -iCL -iCL +aKi +bfB +bfB iFb cty cty @@ -43199,13 +43199,13 @@ cty cty iFb wNz -iCL -hco +bfB +aKi iDn iDn ksX ksX -eUL +kAe ksX xxk xxk @@ -43243,32 +43243,32 @@ wUU "} (70,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -xlh -jpr -mgU -frw -frw -jpr -jpr -dBR -emh -hpG -qtL -oRJ -mME -xFx -gLp -rcC -fuD -uzA -atn -dCk -fml +ukB +qjb +qjb +qjb +qjb +aCP +feF +wiX +adf +adf +feF +feF +ydj +xee +gHC +nbN +pPy +mgK +tOo +skd +wVk +bIi +cfE +lLT +wLA +gIX bZU bZU bZU @@ -43290,85 +43290,85 @@ bZU bZU bZU bZU -liC -yaK -soK -soK -soK -soK -mYN -ibS -soK -qrq -vYz -mPA -sYT -jZR -kUA -jZR -kUA -csl -dUD -csl -dUD -csl -dUD -csl -bxq -csl -dUD -csl -hCb -sIb -njL +uHr +iKt +aHc +aHc +aHc +aHc +ruf +aBX +aHc +lTw +xBe +qGl +rVG +iGd +hzA +iGd +hzA +bYB +wPK +bYB +wPK +bYB +wPK +bYB +mHu +bYB +wPK +bYB +yhq +uWv +bDP nxW -tjr -gft -aSM -wwp -tjr +oEv +gxR +btk +kVj +oEv nxW -pgo -evh -oLw +bRx +jVP +ona nxW yil -ycn -dRb -xxM -nIs -fPN -nIs -nIs -nIs -nIs -nBR +oYC +byQ +vfz +alV +foB +alV +alV +alV +alV +wLG krL -dDY -eMY -nIs -wQz -nIs -nIs -nIs -cOC -gSD -qqo -bfr -cOS -xaY -bfr -kmX -okw -gZh -gZh -hOu -ltH -uUA +bbU +hzN +alV +cNW +alV +alV +alV +cKl +hAs +fAG +cTR +yhm +rtp +cTR +ccu +kjo +mHe +mHe +fVx +qgS +dxC wSx -xVO -iCL -iCL +qJi +bfB +bfB iFb cty cty @@ -43381,25 +43381,25 @@ cty iFb owM xxk -iCL -hco -iCL -iCL -rNM -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL +bfB +aKi +bfB +bfB +mbw +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB xxk -iCL -oIr +bfB +tGc iDn mCF mCF @@ -43425,32 +43425,32 @@ wUU "} (71,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -jpr -frw -frw -frw -jpr -frw -dBR -igH -hpG -igH -hYB -jpr -fPB -fsl -sYD -ruE -soK -bIR -dCk -heb +ukB +qjb +qjb +qjb +qjb +kss +feF +adf +adf +adf +feF +adf +ydj +otA +gHC +otA +fFW +feF +eaO +kxL +idN +aHv +aHc +qlr +wLA +kJd bZU bZU bZU @@ -43461,7 +43461,7 @@ bZU bZU bZU bZU -exO +dGW bZU bZU bZU @@ -43472,85 +43472,85 @@ bZU bZU bZU bZU -pWu -yaK -soK -soK -aGM -soK -siZ -soK -soK -soK -vYz -mPA -hML -dOH -dOH -dOH -dOH -nuu -nuu -nuu -nuu -aZF -xTr -nuu -nuu -nuu -kPI -uBN -bxJ -sIb -wUl +jVS +iKt +aHc +aHc +nJf +aHc +ecZ +aHc +aHc +aHc +xBe +qGl +kFa +squ +squ +squ +squ +sAu +sAu +sAu +sAu +xLI +dkZ +sAu +sAu +sAu +vDO +slL +hfc +uWv +tYX nSP -hVI -rng -jQl -kAQ -rDi +log +lCz +lSl +rIW +bYb nSP -kGR -aNC -dUx +eAS +xly +hES nxW -ycn -ycn +oYC +oYC bYT xgG -eTj -uyg -ybf -ybf -pZw -qik -hDu -bGI -hDu -jCk -hDu -hDu -hDu -hDu -hDu -fMH -lnl -hDu -pDx -jjM -lNY -vdp +maE +ipf +aph +aph +oAz +scj +aKK +srZ +aKK +uTP +aKK +aKK +aKK +aKK +aKK +piL +xbX +aKK +wrr +dpD +ivu +eEj wSx -hcc -iiE -iiE -xQy -iiE -dfj +baj +bbI +bbI +vfn +bbI +jfM wSx -wEF -iCL -iCL +rOd +bfB +bfB iFb cty cty @@ -43562,25 +43562,25 @@ cty cty mCF wOR -iCL -iCL -hco +bfB +bfB +aKi xxk -iCL -rNM -iCL -iCL +bfB +mbw +bfB +bfB xxk -iCL -iCL -rNM -ntC -iCL +bfB +bfB +mbw +xqI +bfB xxk -iCL -lrs -iCL -iCL +bfB +ptr +bfB +bfB xxk ksX mCF @@ -43607,32 +43607,32 @@ wUU "} (72,1,1) = {" wUU -oAe -vVC -vVC -hmE -vVC -tlD +ukB +qjb +qjb +hJJ +qjb +fPM dXg dXg -frw -frw -frw -frw -oZv -ulB -lMh -hpG -hYB -jpr -vRM -jpr -jpr -ruE -soK -vbJ -dCk -lGP +adf +adf +adf +adf +sPB +bDe +dud +gHC +fFW +feF +aHL +feF +feF +aHv +aHc +fcz +wLA +jIc bZU bZU bZU @@ -43654,23 +43654,23 @@ bZU qOh bZU bZU -gIE -yaK -soK -soK -soK -aGM -soK -soK -soK -tKQ -mhh +fiB +iKt +aHc +aHc +aHc +nJf +aHc +aHc +aHc +mZz +nDb aMC bgE -xiL -vdT -xiL -xiL +sbf +nMY +sbf +sbf pGJ pGJ pGJ @@ -43678,63 +43678,63 @@ pGJ pGJ pGJ xxV -wqA -vvA -epV -csl -hCb -sIb -wUl -czs -xQL -jQl -oKp -phC -nhs -rzG -vfw -eeZ -aWZ +cir +ohW +gUe +bYB +yhq +uWv +tYX +pke +fVy +lSl +wfu +gRP +jzC +wHs +wmk +azz +dlz qcN -ycn -ycn -oNv +oYC +oYC +tKD xgG -eQe -lyJ -hDu -hDu -kiA -eDk -iHS +pvf +mZv +aKK +aKK +hrD +ugP +rCj itb -lER -dXp -nPu +oCx +sbL +eFc itb -dKU -hvY -gwh -iYd -aek +lBG +oKE +rWM +pLb +lnQ qvo -juF -sBf -sKx -via +fIx +rMz +trP +fgN sBX -qrc -bCl -vHz -bCl -igd -bCl -jaR -hco -iCL -iCL +tXb +bTc +uZn +bTc +bJd +bTc +clC +aKi +bfB +bfB nNe -uew +dVA eCu eov mCF @@ -43744,26 +43744,26 @@ cty hoC mCF wOR -iCL -iCL -hco -iCL -iCL -iCL -iCL -iCL -iCL -iCL +bfB +bfB +aKi +bfB +bfB +bfB +bfB +bfB +bfB +bfB feM -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB ksX mCF aOg @@ -43789,32 +43789,32 @@ wUU "} (73,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -fPM +ukB +qjb +qjb +qjb +qjb +kss +pri dXg dXg -frw -jpr -frw -kBv -ics -vSs -bhD -tVt -jpr -vRM -vRM -fPB -ruE -bmm -jvo -dCk -qqW +adf +feF +adf +sWG +xCJ +mPV +fFp +wzY +feF +aHL +aHL +eaO +aHv +vjR +wRh +wLA +uvy bZU bZU bZU @@ -43836,23 +43836,23 @@ bZU bZU bZU bZU -dqT -kYl -soK -soK -tBb -soK -cPY -soK -qrq -soK -soK -dXV -cdv -tvC -cdv -cdv -sIl +lit +tbc +aHc +aHc +pCE +aHc +fgs +aHc +lTw +aHc +aHc +eRN +fkO +aGs +fkO +fkO +lni pGJ iaO uRU @@ -43860,61 +43860,61 @@ uRU uRU reG pGJ -ccX -vvA -epV -uBN -bxJ -sIb -wUl +axb +ohW +gUe +slL +hfc +uWv +tYX nxW -cNp -jQl -sna -mlY -pGB +uen +lSl +nvH +wzR +sXg qcN -xJJ -qlP -eMg +ixA +lUr +heY qcN yil -ycn -oNv +oYC +tKD qvo -qAB -pZw -hDu -jJw -oUj -qik -pbs +jSR +oAz +aKK +ncz +bjR +scj +esc qvo -eTj -uyg -mSr +maE +ipf +ogb xgG -cIu -pZw -lyJ -nwu -xsv +iYY +oAz +mZv +wDo +aGr xgG -wYv -sBf -sKx -via +eHo +rMz +trP +fgN sBX -oQW -wEt -bCl -bCl -bCl -ssY +cgI +efv +bTc +bTc +bTc +xQQ wSx -icd -wol -iPp +gyh +vSJ +dmE iFb kxe awJ @@ -43926,9 +43926,9 @@ mCF jdm mCF wOR -iCL -iCL -hco +bfB +bfB +aKi xxk ksX ksX @@ -43943,9 +43943,9 @@ ksX ksX ksX ksX -nzj -iCL -iCL +qme +bfB +bfB xxk mCF xGV @@ -43971,32 +43971,32 @@ wUU "} (74,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -iBQ +ukB +qjb +qjb +qjb +qjb +kss +atZ dXg dXg -frw -frw -frw -frw -oZv -vSs -xoF -vAD -vAD -vAD -vAD -vAD -auQ -pZv -soK -dCk -fml +adf +adf +adf +adf +sPB +mPV +hhb +oFf +oFf +oFf +oFf +oFf +awC +njO +aHc +wLA +gIX bZU bZU bZU @@ -44018,23 +44018,23 @@ bZU bZU bZU bZU -liC -yaK -soK -soK -soK -qrq -soK -qrq -soK -qrq -soK -sld -cdv -cdv -cdv -cdv -cdv +uHr +iKt +aHc +aHc +aHc +lTw +aHc +lTw +aHc +lTw +aHc +hsw +fkO +fkO +fkO +fkO +fkO pGJ nio bte @@ -44042,61 +44042,61 @@ mxv qHJ afg pGJ -sHl -peG -wti -wsP -mug -sIb -wUl +brc +uEJ +niO +joY +nbD +uWv +tYX qcN -dNn -xQL -nCU -wWO -eXB +cfg +fVy +use +iUL +pdf nxW -xan -kEd -oyB +kGA +sJT +btL qcN dmR yil -oNv +tKD xgG -lMu -aVS -dlK -viy -bar -gHo -mOW +dzQ +wmY +gdP +coy +bqI +duW +otI qvo -ukd -iBS -qZW +ngH +vEQ +uio xgG -inX -lmK -nMm -wKd -hDu +nPB +xGl +oul +wEE +aKK qvo -lBF -qZY -lKy -via +wJs +mrL +fCp +fgN sBX -ciU -qVr +rqJ +ikC ffe lSG ffe kSd wSx -hco -iCL -iCL +aKi +bfB +bfB iFb kmW mCF @@ -44109,9 +44109,9 @@ mCF mCF wOR noj -iCL -hco -iCL +bfB +aKi +bfB ksX cty cty @@ -44125,9 +44125,9 @@ cty cty cty ksX -iCL -iCL -iCL +bfB +bfB +bfB xxk mCF mCF @@ -44153,32 +44153,32 @@ wUU "} (75,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -fPM -fPM +ukB +qjb +qjb +qjb +qjb +kss +pri +pri dXg dXg dXg -frw -frw -dBR -vSs -toc -hpG -hpG -hpG -hxr -hpG -hpG -upw -soK -dCk -heb +adf +adf +ydj +mPV +hcN +gHC +gHC +gHC +idS +gHC +gHC +vgh +aHc +wLA +kJd bZU bZU bZU @@ -44200,51 +44200,51 @@ bZU bZU bZU bZU -iPr -yaK -soK -soK -soK -soK -soK -soK -pDI -fDb -soK -dXV -cdv -cdv +tRP +iKt +aHc +aHc +aHc +aHc +aHc +aHc +tqy +gQd +aHc +eRN +fkO +fkO giN -tvC -jLc -nGo +aGs +agq +qBq xyO eDQ eDQ eDQ xyO -xfv -gWJ -tQU -kPI -uBN -bxJ -sIb -lpi +hrU +pfk +scR +vDO +slL +hfc +uWv +pHM qcN qcN nxW nSP -yjk +siM nxW qcN nSP -mxA +uXE nxW qcN -bXQ -ycn -oNv +tFW +oYC +tKD xgG xgG qvo @@ -44261,23 +44261,23 @@ xgG xgG xgG qvo -jUh -vGX +rQK +euv xgG -lBF -sBf -sKx -via +wJs +rMz +trP +fgN wSx -uLo -qVr +uGe +ikC dnh osX oBJ osX wSx -hco -iCL +aKi +bfB xxk eov mCF @@ -44292,8 +44292,8 @@ mCF wOR xxk mxB -qIT -iCL +jpQ +bfB ksX cty cty @@ -44307,9 +44307,9 @@ cty cty cty ksX -iCL -iCL -iCL +bfB +bfB +bfB xxk aOg aOg @@ -44335,32 +44335,32 @@ wUU "} (76,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -tlD -fPM -fPM +ukB +qjb +qjb +qjb +qjb fPM +pri +pri +pri dXg dXg dXg dXg -dBR -hpG -hpG -gvp -uBT -uoQ -hpG -bbT -hpG -soK -soK -dCk -lGP +ydj +gHC +gHC +arz +kJo +mKk +gHC +cie +gHC +aHc +aHc +wLA +jIc bZU rtm bZU @@ -44382,74 +44382,74 @@ bZU bZU rtm bZU -gIE -yaK -soK -soK -soK -soK +fiB +iKt +aHc +aHc +aHc +aHc xVQ kyz kqA fOO aMC aMC -jQF +azy giN -ubY -cdv -jLc -jEU +xwK +fkO +agq +okC eDQ svD oNy teT eDQ -kPI -bnQ -csl -dUD -hVa -hZa -sIb -vvA -rYg -tEm -ycn -ycn -oNv -ycn -mtW -bNn -oNv -ycn -iyH -ycn -ycn -oNv -mtW -bNn -ycn -ycn -ycn -ycn -ycn -tEm -ycn +vDO +pmv +bYB +wPK +gFr +rKr +uWv +ohW +fEE +svr +oYC +oYC +tKD +oYC +xOh +toG +tKD +oYC +uAx +oYC +oYC +tKD +xOh +toG +oYC +oYC +oYC +oYC +oYC +svr +oYC sah haq eRE iPw pbf xgG -oPS -jUh -hDu +xxx +rQK +aKK qvo -mmY -sBf -sKx -via +jJH +rMz +trP +fgN wSx wSx wSx @@ -44458,7 +44458,7 @@ wSx wSx wSx wSx -hco +aKi xxk xxk mCF @@ -44472,10 +44472,10 @@ mCF mCF mCF mnL -iCL -iCL -hco -iCL +bfB +bfB +aKi +bfB ksX cty cty @@ -44489,9 +44489,9 @@ cty cty cty ksX -iCL -lrs -iCL +bfB +ptr +bfB ksX aOg aOg @@ -44517,59 +44517,59 @@ wUU "} (77,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -xlh -fPM -jGB -poj -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +aCP +pri +tEX +vji +pri +pri +pri dXg xFS -rTJ -cNL -psY -skW -qCa -hpG -hpG -hpG -soK -soK -dCk -nLL -pvW -pvW -kJY -eMe -uMZ -pvW -kJY -eMe -uMZ -pvW -kJY -cjR -uMZ -pvW -kJY -eMe -uMZ -pvW -kJY -eMe -uMZ -nLL -yaK -soK -ojV -ojV -ojV +iiq +pZh +tOs +urf +jSD +gHC +gHC +gHC +aHc +aHc +wLA +kOC +eJi +eJi +cpj +oze +xYJ +eJi +cpj +oze +xYJ +eJi +cpj +bHk +xYJ +eJi +cpj +oze +xYJ +eJi +cpj +oze +xYJ +kOC +iKt +aHc +beo +beo +beo teH oaO wns @@ -44579,69 +44579,69 @@ kqA giN giN giN -cdv -jLc -jEU +fkO +agq +okC eDQ eDQ oNy eDQ eDQ -kPI -bnQ -csl -dUD -csl -noE -dfH -oTH -bIj -wQF -wQF -wQF -szV -wQF -uAk -wQF -szV -ffM +vDO +pmv +bYB +wPK +bYB +uYW +pzI +sGF +tnS +jap +jap +jap +kEf +jap +cuF +jap +kEf +dDR snE -wQF -wQF +jap +jap pLF -uAk -wQF -wQF -wQF -wQF -wQF -wQF -oyM -ycn +cuF +jap +jap +jap +jap +jap +jap +fUd +oYC qvo vOW rKB jHJ tXE qvo -hrW -deo -tVA +ygX +bVR +bTi qvo -dpC -sBf -sKx -via +oUn +rMz +trP +fgN lNb -rbn -kJG -gce -gce -gce -gce -gce +tNk +rqL +pWt +pWt +pWt +pWt +pWt toU -iCL +bfB xxk mCF aOg @@ -44654,9 +44654,9 @@ mCF mCF hoC owM -jcH -iCL -hco +nWP +bfB +aKi xxk xxk mCF @@ -44671,9 +44671,9 @@ cty cty cty ksX -iCL -iCL -iCL +bfB +bfB +bfB ksX hoC mCF @@ -44699,59 +44699,59 @@ wUU "} (78,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -tlD -fPM -ogc +ukB +qjb +qjb +qjb +qjb fPM +pri +xix +pri gVO jaF qgm -jGB +tEX dXg dXg xFS eqg -oGs -oGs -oGs +aRW +aRW +aRW qTs -hpG -hpG -kaI -jJh -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ojV -ddU -yaK -hpG -hpG -hpG +gHC +gHC +teb +iOU +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +beo +gYR +iKt +gHC +gHC +gHC kqA aSe rFv @@ -44760,70 +44760,70 @@ iFm kqA lGD giN -cdv -cdv +fkO +fkO qOV -jEU +okC eDQ mlN eDQ mxv eDQ -kPI -oOI -nuu -kPI -uBN -bxJ -sIb -vvA -rYg -ycn -ycn -ycn -ycn +vDO +wOY +sAu +vDO +slL +hfc +uWv +ohW +fEE +oYC +oYC +oYC +oYC yil -ycn +oYC gxi -ycn -ycn +oYC +oYC sKN -ycn -ycn -uVp -ycn -qPA -ycn -ycn -ycn -ycn -ycn -oNv -ycn +oYC +oYC +rfp +oYC +mNe +oYC +oYC +oYC +oYC +oYC +tKD +oYC qvo slB tNT bur vRI oxi -gSD -ufK -pbs +hAs +wDD +esc qvo -dpC -qZY -iZX -hnD -vzA -ekD -ekD -ekD -ekD -ekD -ekD -ekD +oUn +mrL +rbA +wgg +iUN +lUq +lUq +lUq +lUq +lUq +lUq +lUq pGP -iCL +bfB xxk mCF aOg @@ -44836,9 +44836,9 @@ mCF mCF hoC owM -peN -iCL -hco +mvx +bfB +aKi xxk xxk mCF @@ -44853,9 +44853,9 @@ mCF cty cty ksX -iCL -iCL -iCL +bfB +bfB +bfB ksX hoC mCF @@ -44881,97 +44881,97 @@ wUU "} (79,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -fPM -fPM -jGB +ukB +qjb +qjb +qjb +qjb +kss +pri +pri +tEX scL vLo lnO -fPM -fPM -fPM +pri +pri +pri dXg -fPM -fPM -fPM -poj +pri +pri +pri +vji rMl -hpG -pZv -hpG -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -yaK -hpG -pZv -hpG +gHC +njO +gHC +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +iKt +gHC +njO +gHC kqA kEB sSp hlw vhJ bgE -kpb +nXT giN -cdv -cdv -cdv +fkO +fkO +fkO pGJ nio lkH -oOX +xXp lYF srW pGJ -vGj -vvA -epV -csl -hCb -sIb -uDB +aYc +ohW +gUe +bYB +yhq +uWv +baF xRF srY -qbY -sRK +xNr +dFf xRF yil qio yil jcT -wnR -oNv -ycn -dyI +mTI +tKD +oYC +dcB clX clX qio @@ -44979,32 +44979,32 @@ qio qio qio qio -ycn -oNv -ycn +oYC +tKD +oYC xgG duw -aUF +aKA mcN aAg xgG -fIv -bMX -pbs +bJl +qkd +esc qvo -dpC -sBf -sKx -qbK +oUn +rMz +trP +sRX lNb -gce -gce -gce -gce +pWt +pWt +pWt +pWt ixr ixr ixr -hco +aKi xxk xxk mCF @@ -45018,9 +45018,9 @@ bls mCF cty owM -iCL -iCL -hco +bfB +bfB +aKi xxk xxk mCF @@ -45035,9 +45035,9 @@ aOg cty cty ksX -iCL -iCL -iCL +bfB +bfB +bfB ksX cty mCF @@ -45063,59 +45063,59 @@ wUU "} (80,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -tlD -fPM -fPM +ukB +qjb +qjb +qjb +qjb fPM +pri +pri +pri eGX hKK fLY -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM +pri +pri +pri +pri +pri +pri +pri +pri btU -hpG -hpG -qDD +gHC +gHC +mxb gsQ icb -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -soK -yaK -hpG -dHO -hpG +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +iKt +gHC +dQn +gHC bgE pTg ycY @@ -45126,7 +45126,7 @@ giN giN giN giN -ehI +krF pGJ dXd tGV @@ -45134,26 +45134,26 @@ tGV tGV itP pGJ -oKA -vvA -epV -uBN -bxJ -sIb -vvA +hkG +ohW +gUe +slL +hfc +uWv +ohW snl -vBz -tfx -mnr +xCK +jrw +tdO snl yil yil tiF yil -wnR -oNv -ycn -ycn +mTI +tKD +oYC +oYC clX qio qio @@ -45161,34 +45161,34 @@ aUA vpQ qio qio -uiu -uOE -lbe +wSs +sKK +wUV xgG xgG qvo xgG xgG xgG -vPA -gIQ -mds +xGW +pNc +lkU xgG -kHU -sBf -pRx -via +wrx +rMz +aQf +fgN bkM ngg bkM ixr -gce +pWt dad ixr ixr toU -iCL -iCL +bfB +bfB iFb mCF mCF @@ -45200,10 +45200,10 @@ mCF cty cty owM -fME -iCL -hco -iCL +oMq +bfB +aKi +bfB ksX mCF aOg @@ -45217,9 +45217,9 @@ aOg cty cty ksX -fSi -fSi -fSi +vBD +vBD +vBD ksX cty mCF @@ -45245,29 +45245,29 @@ wUU "} (81,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -hYL -wYj -mKM +ukB +qjb +qjb +qjb +qjb +kss +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +frt +rvV +bZM gXf unH kKX @@ -45276,9 +45276,9 @@ wfK wfK ebm bJI -hpG -hpG -hpG +gHC +gHC +gHC bJI bJI oJb @@ -45286,9 +45286,9 @@ wfK wfK ebm bJI -hpG -hpG -hpG +gHC +gHC +gHC bJI bJI oJb @@ -45299,15 +45299,15 @@ bJI bJI bJI aMC -uUz +dSo egV bTf cKK duN -cdv -gPk -gPk -arI +fkO +pQg +pQg +kTO giN pGJ pGJ @@ -45316,61 +45316,61 @@ pGJ bhF pGJ pGJ -rBG -vvA -epV -csl -noE -dfH -riy +aUq +ohW +gUe +bYB +uYW +pzI +sHu tIV -kfI -sXy -xUv +gnp +jHP +oRv xRF ira yil yil -ycn -ycn -oNv +oYC +oYC +tKD yil -ycn +oYC qio qio pGj iIc -mcS -tgN -hMn -oHY -oEB -qev +tvn +oad +kpk +hXX +swX +kCD sah jxe orH uIl odw qvo -dIW -bMX -pbs +hpd +qkd +esc xgG -fbk -sBf -sKx -via +hnM +rMz +trP +fgN bkM bkM ngg -mBU +vaO ixr exj ixr -iZA -hco -iCL -iCL +hgw +aKi +bfB +bfB iFb mCF jdm @@ -45383,7 +45383,7 @@ cty cty owM rXS -iCL +bfB toU xxk ksX @@ -45399,9 +45399,9 @@ aOg aOg ksX ksX -shy -lrs -iCL +nzv +ptr +bfB ksX ksX hoC @@ -45427,29 +45427,29 @@ wUU "} (82,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -iBQ -jGB -jGB -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -jGB -fPM -kUm -mKM +ukB +qjb +qjb +qjb +qjb +kss +atZ +tEX +tEX +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +tEX +pri +kFi +bZM gPL hKK srU @@ -45458,100 +45458,100 @@ lYr pdn cRx bJI -hpG -pZv -hpG +gHC +njO +gHC pUi rIG lYr -pKH +xVL lYr -dTD +smM tEc -hpG -nkx -hpG +gHC +cOl +gHC gfc -kDm +cqE lYr lYr lYr kRH bJI -kAd -hpG +phK +gHC aMC -uUz +dSo kUj ixw rmV kqA giN -cdv +fkO giN iSW giN qUW -cdv -sZZ +fkO +ulY giN -lhs -cdv +ssY +fkO thS -vvA -bNS -epV -uBN -bxJ -sIb -vvA +ohW +wJr +gUe +slL +hfc +uWv +ohW snl -rXM -qtk -llA +xiW +bfv +tWi snl yil yil yil gkF -nrp -oNv +wFa +tKD yil -ycn +oYC qio qio vDf -xpC -qTu -cHk -fBT -iKB -oEB -oKe +mCg +iiJ +wEY +wNH +rJC +swX +nRK xgG -kqM +buw iAX lIU tXE xgG -rFL -bMX -pbs +eyI +qkd +esc qvo -qux -sBf -sKx -via -aBR +nCG +rMz +trP +fgN +spY bkM ngg -eVe +stG chs ixr ixr -iZA -hco -iCL +hgw +aKi +bfB xxk iFb mCF @@ -45565,9 +45565,9 @@ hoC cty owM xxk -iCL -hco -jOB +bfB +aKi +hht ksX vOo aOg @@ -45580,11 +45580,11 @@ mCF aOg aOg ksX -cLa -wPY -iCL -iCL -xUP +thR +lta +bfB +bfB +mwn ksX ksX mCF @@ -45609,50 +45609,50 @@ wUU "} (83,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -fPM -snt +ukB +qjb +qjb +qjb +qjb +kss +pri +nKq dXg -snt -fPM -jGB -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -jGB -kUm -mKM -xbe -fbo +nKq +pri +tEX +pri +pri +pri +pri +pri +pri +pri +pri +tEX +kFi +bZM +dEz +rEu eGX wXc -nPo -whg +djp +cBL kRH eOa -hpG -dHO -hpG +gHC +dQn +gHC itQ qKZ qyJ -dWT +ovk vmw kRH eOa -lsr -dHO -hpG +ofZ +dQn +gHC itQ qKZ qyJ @@ -45661,36 +45661,36 @@ lYr hZE bVX eOa -hpG +gHC aMC -uUz +dSo rmo qfC xbm kqA giN -cdv +fkO giN -cdv +fkO ovD hxO hxO -hVi -cdv -vlt -tvC +uzH +fkO +oUl +aGs jrq -vvA -vvA -mBC -vvA -cxG -kPI -vvA -hAE -wUR -dOU -lZn +ohW +ohW +tTV +ohW +aRs +vDO +ohW +icf +akd +tHA +hpZ xRF yil yil @@ -45698,42 +45698,42 @@ yil qio sMJ sKN -ycn -ycn +oYC +oYC qio qio oRD -tgN +oad vVz -tgN -iZU -kVz -dqj -nxM +oad +dgK +vVi +hRY +jtk qvo opW nOz -emI +hLI vRI oxi -aFQ -etS -xsv +nvF +dlT +aGr xgG -jgF -sBf -sKx -via -aBR +caT +rMz +trP +fgN +spY bkM ngg -opn +tJB chs ixr ixr nTG -hco -iCL +aKi +bfB xxk mCF mCF @@ -45746,11 +45746,11 @@ mCF mCF cty vVJ -iCL -iCL -hco -iCL -qSV +bfB +bfB +aKi +bfB +mmu mCF aOg aOg @@ -45762,12 +45762,12 @@ mCF aOg aOg ksX -cLa -kRn -iCL -iCL -pZs -iCL +thR +sgZ +bfB +bfB +lLR +bfB ksX mCF mCF @@ -45791,59 +45791,59 @@ wUU "} (84,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -rBC -rBC -xlh +ukB +qjb +qjb +qjb +qjb +kss +kss +aCP dXg -fPM -jGB +pri +tEX gVO jaF jaF jaF qgm -fPM -fPM -fPM -fPM -fPM -kUm -mKM -xbe -fPM -jGB +pri +pri +pri +pri +pri +kFi +bZM +dEz +pri +tEX scL -fQf +hrf rfV lnO -emU -wYj -mKM -ylt -oMu -jGB +bDH +rvV +bZM +oyc +rvk +tEX scL oGv lsN lnO -emU -wYj -mKM -ylt -oMu -jGB +bDH +rvV +bZM +oyc +rvk +tEX scL oGv -qWJ +wYE lnO -jGB -emU -jFG +tEX +bDH +hFS aMC kqA kqA @@ -45851,22 +45851,22 @@ bgE bgE bgE aMC -rZn -cdv +rcl +fkO iSW giN giN mMJ -tnr -tvC -keS -qmY +lrH +aGs +hKH +rnm wHk -xuh +bHA aVQ lsU -vvA -maG +ohW +nuD lsU fkR fkR @@ -45879,33 +45879,33 @@ pVN pVN fkR fkR -wut -ycn -oAt +kce +oYC +vIM qio qio qio -lcw -tgN -nLf -hMn -uiu -dqj -bMS +nGj +oad +qwl +kpk +wSs +hRY +azR qvo tgk bLp dWN sRM xgG -ssF -bvw -jsn +nrW +pbA +kkk xgG -lBF -sBf -sKx -mJW +wJs +rMz +trP +qmf bkM bkM chs @@ -45914,13 +45914,13 @@ chs ixr poz nTG -hco +aKi xxk xxk mCF -uIR -tCl -tCl +raW +rAt +rAt cty hoC mCF @@ -45928,9 +45928,9 @@ mCF mCF mCF wOR -iCL -iCL -hco +bfB +bfB +aKi xxk xxk mCF @@ -45944,10 +45944,10 @@ ksX ksX ksX loP -mBP -iCL -iCL -mGz +isQ +bfB +bfB +abe mMu xxk iDn @@ -45973,59 +45973,59 @@ wUU "} (85,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -ogc +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +xix dXg -snt +nKq scL lsN gcF wnA lnO -fPM -fPM -fPM -fPM -fPM -kUm -mKM -xbe -fPM -jGB +pri +pri +pri +pri +pri +kFi +bZM +dEz +pri +tEX scL gDI jSX fLY -jGB -kUm -mKM -xbe -jGB -jGB +tEX +kFi +bZM +dEz +tEX +tEX scL kvC jSX fLY -jGB -kUm -mKM -xbe -jGB -jGB +tEX +kFi +bZM +dEz +tEX +tEX scL oGv oGv lnO -jGB +tEX dXg -emU +bDH jEG hET hET @@ -46033,7 +46033,7 @@ koZ hET wft aMC -gDs +iEj giN vFl sXb @@ -46046,34 +46046,34 @@ mRq sXb mRq xzj -rtc -vvA -cxG -mnR +tbT +ohW +aRs +rtZ fkR -cNY -vwl -rnE -vwl -kKN -vwl -vwl -vwl -bZY -nmb -oNv -oAt -oAt -oAt +rTf +hmN +yma +hmN +tnP +hmN +hmN +hmN +ydC +sZI +tKD +vIM +vIM +vIM qio qio -bJo -xpC -msC -hMn -oHY -dqj -nxM +flL +mCg +mOJ +kpk +hXX +hRY +jtk xgG xgG qvo @@ -46084,10 +46084,10 @@ xgG qvo xgG xgG -lBF -sBf -sKx -eiy +wJs +rMz +trP +gdG pKs chs chs @@ -46097,12 +46097,12 @@ ixr ixr ixr toU -iCL +bfB xxk meS -kce -uDc -uDc +eOK +gSk +gSk cty cty mCF @@ -46110,9 +46110,9 @@ mCF mCF mCF wOR -iCL -iCL -hco +bfB +bfB +aKi swV xxk mCF @@ -46123,13 +46123,13 @@ cty mCF mCF iDn -fSN -iCL -iCL -iCL -iCL +vXn +bfB +bfB +bfB +bfB xxk -iCL +bfB xxk xxk xEG @@ -46155,59 +46155,59 @@ wUU "} (86,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -iBQ -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +atZ +tEX scL vom hJq hXe lnO -fPM -poj -fPM -fPM -iBQ -kUm -mKM -xbe -fPM -fPM +pri +vji +pri +pri +atZ +kFi +bZM +dEz +pri +pri eGX hKK fLY -jGB -fPM -kUm -mKM -xbe -jGB -jGB +tEX +pri +kFi +bZM +dEz +tEX +tEX eGX hKK fLY -jGB -jGB -kUm -heX -xbe -jGB -jGB +tEX +tEX +kFi +blt +dEz +tEX +tEX scL oGv oGv lnO dXg -jGB -jGB +tEX +tEX qTZ hKK bbG @@ -46215,61 +46215,61 @@ hKK hKK gdJ vKv -lwz +cUU giN giN sXb -xam -nGn -kJB -oOa -clf -tAL -kJB -kfi +gNj +kba +tAI +ogK +rCi +egl +tAI +eCn sXb -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv pVN -ivy -fCj +plQ +xfi vDe vio dHY wrg -wqp -sgL -pkE +xsO +iZd +qwi pVN -oNv -oAt -wbL +tKD +vIM +vZP gyz clX -nct -mcS -tgN -tgN -hMn -cKW -dqj -bMS -sSa -wSV -tsY -uUf -uUf -wSV -beI -wSV -cHq -wyk -lBF -sBf -sKx -via +tBA +tvn +oad +oad +kpk +rLz +hRY +azR +xnN +xVN +alJ +nUX +nUX +xVN +mQU +xVN +rQh +kvE +wJs +rMz +trP +fgN pKs chs chs @@ -46278,13 +46278,13 @@ ixr ixr ixr exj -hco +aKi xxk xxk aOg -kce -uDc -gYo +eOK +gSk +wag cty aOg aOg @@ -46294,7 +46294,7 @@ mCF wOR xxk xxk -rcY +fOq xxk mrY mCF @@ -46305,15 +46305,15 @@ eoV mCF mCF iDn -lrs -iCL -iCL -wXH +ptr +bfB +bfB +cpe ncd ckG -iCL -iCL -iCL +bfB +bfB +bfB iDn xGV aOg @@ -46337,71 +46337,71 @@ wUU "} (87,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -snt -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +nKq +tEX eGX hKK vDw aag lnO -fPM -jGB -fPM -fPM -jGB -kUm -mKM -xbe -fPM -fPM -jGB -fPM -fPM -fPM -jGB -kUm -mKM -xbe -jGB -jGB -jGB -jGB -jGB -jGB -jGB -kUm +pri +tEX +pri +pri +tEX +kFi +bZM +dEz +pri +pri +tEX +pri +pri +pri +tEX +kFi +bZM +dEz +tEX +tEX +tEX +tEX +tEX +tEX +tEX +kFi iAP -gsB +uRV dXg dXg scL oGv hXR lnO -jGB -jGB -jGB -jGB -jGB -jGB -jGB -snt +tEX +tEX +tEX +tEX +tEX +tEX +tEX +nKq qsb vKv -ksp +flW iSW giN mRq -jZf +kVW jzZ mCY pjn @@ -46410,62 +46410,62 @@ jzZ mCY jzZ mRq -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv pVN -ivy -fCj +plQ +xfi xtZ cbK ara wrC eTP -sgL -tsM +iZd +jjB pVN -oNv -nxM -nxM -kWs -vwW -siA -fbK -tgN -xpC -iZU -xJy -qRX -fzq -fzq -pEG -omr -aRZ -pEG -omr -omr -omr -bIj -rxu -rxu -sDz -dsU -eZI +tKD +jtk +jtk +puR +gZJ +osB +xDm +oad +mCg +dgK +dQu +nPg +aJb +aJb +ozw +bvB +fLX +ozw +bvB +bvB +bvB +tnS +hoB +hoB +ufq +doB +wgH bkM chs chs chs -eqO +kyY ixr ixr ixr toU xxk xxk -kce +eOK mCF -uDc +gSk cty cty aOg @@ -46475,9 +46475,9 @@ mCF mCF owM mxB -iCL -hco -iCL +bfB +aKi +bfB ksX cty mCF @@ -46488,14 +46488,14 @@ mCF mCF xEG xxk -iCL -iCL -iCL -iCL -mGz -iCL -lrs -iCL +bfB +bfB +bfB +bfB +abe +bfB +ptr +bfB ksX aBK aOg @@ -46519,71 +46519,71 @@ wUU "} (88,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM -fPM -snt -fPM -snt +pri +pri +nKq +pri +nKq dFt hKK fLY -jGB -fPM -jGB -fPM -fPM -kUm -mKM -xbe -fPM -fPM -fPM -jDU -fPM -jGB -fPM -kUm -mKM -xbe -jGB -jGB -jGB -snt -jGB -jGB -jGB -kUm -bLt -bLt +tEX +pri +tEX +pri +pri +kFi +bZM +dEz +pri +pri +pri +tKL +pri +tEX +pri +kFi +bZM +dEz +tEX +tEX +tEX +nKq +tEX +tEX +tEX +kFi +baQ +baQ dXg -jGB +tEX scL oGv oGv lnO -jGB -jGB -jGB -jGB -jGB -snt -jGB -jGB +tEX +tEX +tEX +tEX +tEX +nKq +tEX +tEX vEe vKv -ksp +flW giN -cdv +fkO mRq -iIq +eds jzZ lZa gyw @@ -46592,48 +46592,48 @@ jzZ mCY jzZ mRq -epV -csl -hCb -sIb -cAD -cZD -fCj -vSW +gUe +bYB +yhq +uWv +oxT +jot +xfi +moN lQg ara xHt nZk -sgL -mky -cAD -oNv -vDb -loo -nIp -buJ -dlp -cok -qqd -mRW -tTh -iKB -uOE -qMN -qMN -dhR -dhR -dhR -dhR -oxo -nMt -dhR -cHq -pDx -rds -tWX -sKx -tdh +iZd +lzp +oxT +tKD +qQE +nVH +gVB +ikk +cJM +gYm +nye +veB +osv +rJC +sKK +cdt +cdt +xBx +xBx +xBx +xBx +kqG +trY +xBx +rQh +wrr +kxl +iPX +trP +iUX bkM ngg dtH @@ -46642,11 +46642,11 @@ chs ixr ixr ixr -osB +mkj xxk xxk mCF -kce +eOK cty cty cty @@ -46657,9 +46657,9 @@ dda mCF owM xxk -iCL -hco -iCL +bfB +aKi +bfB ksX cty mCF @@ -46672,12 +46672,12 @@ ksX ksX ksX ksX -oRE +wGo xxk -iCL -iCL -bdT -iCL +bfB +bfB +tjX +bfB ksX aOg mCF @@ -46701,71 +46701,71 @@ wUU "} (89,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -xlh -fPM -jGB -fPM -fPM -fPM -vTf -fPM -jGB -fPM -fPM -fPM -fPM -fPM -kUm -mKM -xbe -fPM -poj -jGB -jGB -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +aCP +pri +tEX +pri +pri +pri +meI +pri +tEX +pri +pri +pri +pri +pri +kFi +bZM +dEz +pri +vji +tEX +tEX +pri dXg -fPM -kUm -mKM -xbe -jGB -jGB -snt -jGB -jGB -jGB -jGB -emU -bLt -jGB -jGB +pri +kFi +bZM +dEz +tEX +tEX +nKq +tEX +tEX +tEX +tEX +bDH +baQ +tEX +tEX gVO uTu oGv oGv lnO -jGB -jGB -jGB -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX +tEX +tEX +tEX gVO bEY aMC -cdv +fkO giN mpL sXb -iIq +eds jzZ mCY gyw @@ -46774,34 +46774,34 @@ pKg mCY jzZ mRq -epV -csl -hCb -sIb -sgL -cZD -fCj +gUe +bYB +yhq +uWv +iZd +jot +xfi urd hla lVW lZh nZk -sgL -mky -sgL -oNv -vDb -loo -vOE -eei -aId -wps -mtI -qwF -aId -eei -uOE -axf +iZd +lzp +iZd +tKD +qQE +nVH +cgZ +miK +mxI +mLI +sBU +jyt +mxI +miK +sKK +uCy xNR ydx xNR @@ -46812,10 +46812,10 @@ xNR ydx xNR xNR -pDx -cuX -waj -pDx +wrr +ixb +nmr +wrr bkM bkM bkM @@ -46823,9 +46823,9 @@ bkM pKs pKs bkM -mMR -hco -iCL +uTg +aKi +bfB xxk mCF mCF @@ -46838,10 +46838,10 @@ gCh dda mCF owM -iCL -iCL -hco -iCL +bfB +bfB +aKi +bfB ksX mCF mCF @@ -46854,12 +46854,12 @@ mCF hoC cty ksX -cLa -shy -iCL -iCL -iCL -iCL +thR +nzv +bfB +bfB +bfB +bfB ksX aOg mCF @@ -46883,51 +46883,51 @@ wUU "} (90,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -pcu -ogc -poj -fPM -fPM -fPM -fPM -fPM -poj -fPM -fPM -fPM -fPM -fPM -kUm -mKM -xbe -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +bfx +xix +vji +pri +pri +pri +pri +pri +vji +pri +pri +pri +pri +pri +kFi +bZM +dEz +pri dXg -fPM -fPM +pri +pri dXg -fPM -fPM -kUm -mKM -xbe -jGB -jGB -jGB -jGB -jGB -ogc -jGB -jGB -jGB -jGB -jGB +pri +pri +kFi +bZM +dEz +tEX +tEX +tEX +tEX +tEX +xix +tEX +tEX +tEX +tEX +tEX scL hXR oGv @@ -46935,19 +46935,19 @@ oGv lnO dXg dXg -ogc -jGB -jGB +xix +tEX +tEX gVO jaF aqq cwE cwE -lCA -cdv +vCZ +fkO iSW sXb -sDJ +kNb jzZ jzZ gyw @@ -46956,58 +46956,58 @@ jzZ jzZ sia sXb -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv pVN -ivy -fCj +plQ +xfi qLs iwg ara hAh nZk -sgL -tsM +iZd +jjB pVN -oNv +tKD bum -eoS -hdL -bMS -bMS -knE -kIp -oUF -qsL -nxM -dqj -nxM +fQR +puF +azR +azR +jsF +eLj +pjT +tnH +jtk +hRY +jtk xNR iLd iTP jZG -jJu +wmX vYQ -uzE -uiH -kEw +aVa +ltF +hNt xNR gFx aFg umT gCH gFx -vsZ -ehn -mtk -nvn -mYK -xeF +pFl +uZC +wQo +kqZ +qTS +veD xxk -hco -iCL +aKi +bfB xxk mCF mCF @@ -47020,11 +47020,11 @@ mCF mCF aOg wOR -iCL -iCL +bfB +bfB toU -iCL -eUL +bfB +kAe mCF mCF jdm @@ -47036,11 +47036,11 @@ aOg aOg cty ksX -cLa -shy -iCL +thR +nzv +bfB xxk -iCL +bfB ksX ksX mCF @@ -47065,71 +47065,71 @@ wUU "} (91,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -jGB -snt -fPM -fPM -fPM -snt -jGB -fPM -fPM -fPM -fPM -jGB -fPM -kUm -mKM -xbe -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +tEX +nKq +pri +pri +pri +nKq +tEX +pri +pri +pri +pri +tEX +pri +kFi +bZM +dEz +pri dXg dXg -fPM +pri dXg -fPM -jDU -kUm -mKM -xbe -jGB -jGB -jGB -jGB -jGB -jGB -jGB -kUm -bLt -jGB -jGB +pri +tKL +kFi +bZM +dEz +tEX +tEX +tEX +tEX +tEX +tEX +tEX +kFi +baQ +tEX +tEX scL oGv -imB +iWV hXR lnO dXg -ogc -jGB -jGB -jGB +xix +tEX +tEX +tEX scL oGv cwE cwE -ujL -ksp -cdv +ncO +flW +fkO giN -oDA -oOa +jUy +ogK jzZ jzZ rdx @@ -47137,59 +47137,59 @@ pol pol pol pol -oDA -iir -jbs -hZa -sIb +jUy +nLA +cTA +rKr +uWv pVN -rlm -fCj +uSc +xfi urd mwd ara ara nZk -sgL -tsM +iZd +jjB pVN -dRb -rlG -rlG -oyJ -wOU -wOU -mHz -nVh -rlG -rlG -dYF -xth -kYL +byQ +oWu +oWu +khV +oXA +oXA +oiJ +dGj +oWu +oWu +kVl +rYL +baY ydx -mSc +sdq wpX qQt jNT qeu -jeX -oKg -ubE -mAt +edP +cnz +yiH +pKC qhF ffx umT eDF gFx -dEb -sKx -efB -bhZ -sKx -gce +uIQ +trP +lfO +asB +trP +pWt xxk toU -iCL +bfB xxk mCF mCF @@ -47203,8 +47203,8 @@ aOg xGV wOR xxk -iCL -hco +bfB +aKi xxk ksX aOg @@ -47219,9 +47219,9 @@ aOg cty ksX ksX -shy -iCL -lrs +nzv +bfB +ptr ksX ksX mCF @@ -47247,51 +47247,51 @@ wUU "} (92,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -jGB -fPM -poj -jGB -jGB -jGB -jGB -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM -fPM -fPM -fPM -fPM -kUm -mKM -xbe -fPM -jGB -jGB -fPM -fPM -fPM -fPM -kUm -mKM -xbe -ohD -jGB -jGB -jGB -jGB -jGB -jGB -jGB +tEX +pri +vji +tEX +tEX +tEX +tEX +pri +pri +pri +pri +pri +pri +kFi +bZM +dEz +pri +tEX +tEX +pri +pri +pri +pri +kFi +bZM +dEz +rWy +tEX +tEX +tEX +tEX +tEX +tEX +tEX stl -itu -jGB +rPN +tEX scL oGv hXR @@ -47299,19 +47299,19 @@ oGv pfd qgm dXg -jGB -jGB -jGB +tEX +tEX +tEX scL oGv cwE cwE -ksp -ksp -cdv -cdv +flW +flW +fkO +fkO sXb -mwh +ool dYp wZF fjH @@ -47320,58 +47320,58 @@ wZF jzZ dYX sXb -mJd -csl -noE -dfH +dim +bYB +uYW +pzI riJ -jYo -dki +oly +vVh xtZ ifZ eMi qRy moK -sgL -tsM +iZd +jjB riJ -oNv -ycn -ycn +tKD +oYC +oYC pbt iLD pbt pbt -fYI +rZP iLD iLD pbt pbt iLD xNR -ltv +uyA vNu cdL oWs qFZ -keD -jJV -dWB +gZs +ezE +tou ydx -sRf +qcP aFg aPe qnp gFx -xqJ -xXp -rbw -uji -sKx -pAw -fNO +flz +idv +hWV +bOW +trP +wUQ +kuk toU -iCL +bfB xxk mCF jdm @@ -47385,9 +47385,9 @@ aOg aOg iHE xxk -iCL -hco -iCL +bfB +aKi +bfB xxk mCF mCF @@ -47401,9 +47401,9 @@ aOg aOg cty cqZ -fSi -fSi -fSi +vBD +vBD +vBD ksX mCF mCF @@ -47429,71 +47429,71 @@ wUU "} (93,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -jGB -fPM -fPM -poj -fPM -fPM -fPM -fPM -fPM -fPM -kUm -mKM -xbe -fPM -fPM -fPM -fPM -fPM -fPM -jGB -kUm -mKM -xbe -snt -jGB -jGB -jGB -jGB -sZc -jGB -jGB -jGB -bLt -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +pri +pri +tEX +pri +pri +vji +pri +pri +pri +pri +pri +pri +kFi +bZM +dEz +pri +pri +pri +pri +pri +pri +tEX +kFi +bZM +dEz +nKq +tEX +tEX +tEX +tEX +btu +tEX +tEX +tEX +baQ +tEX scL rMb oGv oGv oGv lnO -jGB -jGB -jGB +tEX +tEX +tEX dXg scL hXR cwE cwE -ksp -ksp +flW +flW giN -cdv +fkO sXb -oOa +ogK aJP svH kBo @@ -47502,54 +47502,54 @@ ybm lWf jzZ mRq -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv pVN -ivy -fCj +plQ +xfi urd ara ara -gqI +tby nZk -sgL -tsM +iZd +jjB pVN -oNv -ycn -nrp +tKD +oYC +wFa iLD -gRt -bYx -rEa -hjr -iyZ -gvs -rSR -lFQ -nCQ +vDD +kVU +lBK +tco +aKl +wUL +uiH +wXL +wus xNR trC yhy sJq -gct +oEc tMY -qIz -qfy -fRK +xGC +wlS +jBv xNR nIF qeh otO qhF tjO -wsC -mqH -jNl -sKx -sKx +wJD +dpS +pKN +trP +trP pKs xxk toU @@ -47567,9 +47567,9 @@ hoC hoC owM xxk -iCL -hco -iCL +bfB +aKi +bfB xxk meS aOg @@ -47583,9 +47583,9 @@ aOg aOg cty cqZ -iCL -iCL -iCL +bfB +bfB +bfB ksX mCF mCF @@ -47611,51 +47611,51 @@ wUU "} (94,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -jGB -iBQ -fPM -fPM -fPM -fPM -fPM -jGB -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +tEX +atZ +pri +pri +pri +pri +pri +tEX +pri +pri dXg -fPM -fPM -kUm -mKM -xbe -fPM -jDU -jGB -fPM -fPM -jGB -fPM -kUm -mKM -xbe -jGB -jGB -snt -jGB -jGB +pri +pri +kFi +bZM +dEz +pri +tKL +tEX +pri +pri +tEX +pri +kFi +bZM +dEz +tEX +tEX +nKq +tEX +tEX dXg -jGB -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX +tEX scL oGv oGv @@ -47663,55 +47663,55 @@ hXR oGv pfd qgm -jGB -jGB -jGB +tEX +tEX +tEX scL oGv cwE bgE yeJ giN -cdv +fkO iSW mRq -oOa +ogK aJP ogj akk xUu -gXD +akJ lWf jzZ mRq -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv pVN -ivy -fCj +plQ +xfi urd hAh ara ara nZk -sgL -tsM +iZd +jjB pVN -oNv -ycn -ycn +tKD +oYC +oYC iLD -jsj -ozO -nWO -jXU -hXW -ozO -nWO -ozO -hTG +kTw +dJv +dIR +eHr +bRf +dJv +dIR +dJv +vJe xNR xNR xNR @@ -47727,14 +47727,14 @@ eUH kIb vPK eDF -nuq -olY -cyF -jjd -sSy +sSg +hQA +fAK +xBN +bXa bkM rXS -hco +aKi xxk xxk mCF @@ -47749,9 +47749,9 @@ cty cty owM ksX -iCL -hco -iCL +bfB +aKi +bfB xxk mCF aOg @@ -47765,9 +47765,9 @@ mCF aOg hoC cqZ -iCL +bfB mxB -iCL +bfB ksX mCF mCF @@ -47793,61 +47793,61 @@ wUU "} (95,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -fPM -jGB -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM -jGB -jGB -jGB -jGB +pri +tEX +pri +pri +pri +pri +tEX +tEX +tEX +tEX dXg -fPM -fPM -kUm -mKM -xbe -poj -fPM -fPM -fPM -sZc -jGB -fPM -kUm -mKM -xbe -jGB -jGB -jGB -jGB -jGB -jGB -jGB -jGB -bLt +pri +pri +kFi +bZM +dEz +vji +pri +pri +pri +btu +tEX +pri +kFi +bZM +dEz +tEX +tEX +tEX +tEX +tEX +tEX +tEX +tEX +baQ gVO jaF uTu -imB +iWV oGv -fQf +hrf hXR oGv lnO -jGB -jGB -jGB +tEX +tEX +tEX scL oGv cwE @@ -47857,7 +47857,7 @@ iks giN iSW mRq -oOa +ogK jzZ oos fGM @@ -47866,49 +47866,49 @@ oos jzZ jzZ mRq -epV -hVa -hZa -sIb -cAD -cZD -fCj -teP +gUe +gFr +rKr +uWv +oxT +jot +xfi +uGA hOv wYa god nZk -sgL -mky -cAD -oNv -ycn -ycn +iZd +lzp +oxT +tKD +oYC +oYC iLD -xRT -lsZ -lGc -cwT -cCW -nkE -tDz -rEQ -hTG +nlw +jxv +mdW +dZl +sjZ +cjc +lBC +lRT +vJe ydx bAE kIg nmC -aVr +cio agi -izG -xIX -uRF +jkk +tow +tNa xNR fvd aFg woF uYL -pYX +wlV chr eDF fXG @@ -47916,9 +47916,9 @@ gFx gFx bkM aFt -hco -iCL -iCL +aKi +bfB +bfB xxk ksX ksX @@ -47931,9 +47931,9 @@ ksX ksX eEd eEd -sOn -mQu -sOn +tHn +uel +tHn eEd mCF mCF @@ -47947,8 +47947,8 @@ mCF mCF mCF cqZ -iCL -iCL +bfB +bfB xxk xEG jdm @@ -47975,49 +47975,49 @@ wUU "} (96,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -xlh -fPM -fPM -fPM -jGB -fPM -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +aCP +pri +pri +pri +tEX +pri +pri +pri +pri dXg dXg -jGB -fPM -poj -kUm -mKM -nQX -loq -loq -loq -loq -loq -loq -loq -nJr -mKM -xbe -jGB -jGB -jGB +tEX +pri +vji +kFi +bZM +aRz +oEI +oEI +oEI +oEI +oEI +oEI +oEI +nua +bZM +dEz +tEX +tEX +tEX dXg dXg dXg -jGB -jGB -jGB +tEX +tEX +tEX scL hXR oGv @@ -48027,65 +48027,65 @@ oGv oGv oGv lnO -jGB -jGB +tEX +tEX gVO lzD upH cwE bgE -llh -gGw +mBl +umj iSW iSW sXb -nuC -oOa -pen -dfQ -iGA -oOa -oOa -oOa +jfi +ogK +tJr +bvm +mEC +ogK +ogK +ogK sXb -yao -csl -hCb -sIb -sgL -cZD -fCj +qRL +bYB +yhq +uWv +iZd +jot +xfi urd pku -fBk +bTS xHt nZk -sgL -mky -sgL -oNv -ycn -ycn +iZd +lzp +iZd +tKD +oYC +oYC iLD -xRT -vlG -nGu -cwT -cCW -voA -vJh -rEQ -pdV +nlw +jTn +iTu +dZl +sjZ +iRP +cBm +lRT +uhk xNR -mvS +rau vNu vNu iAc qFZ -lie -unC -rvJ -onq +qJF +hio +cGw +wKZ gFx aFg qlx @@ -48096,24 +48096,24 @@ gFx sgz qhF qhF -wrL -nwk +nqX +ukg nDl -nwk +ukg qMW qMW -nwk -nwk -nwk +ukg +ukg +ukg qMW -nwk -nwk +ukg +ukg qMW -nwk -nwk -nwk -nwk -nwk +ukg +ukg +ukg +ukg +ukg pGP xxk eEd @@ -48129,9 +48129,9 @@ mCF mCF mCF ksX -iCL -iCL -iCL +bfB +bfB +bfB iDn mCF mCF @@ -48157,49 +48157,49 @@ wUU "} (97,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -iBQ -fPM -fPM -fPM -fPM -fPM -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +atZ +pri +pri +pri +pri +pri +tEX dXg dXg -fPM -fPM -jGB -kUm -bFK -bFK -bFK -bFK -bFK -bFK -bFK -bFK -bFK -bFK -mKM -xbe -jGB -jGB -jGB +pri +pri +tEX +kFi +cAn +cAn +cAn +cAn +cAn +cAn +cAn +cAn +cAn +cAn +bZM +dEz +tEX +tEX +tEX dXg dXg -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX scL oGv oGv @@ -48209,15 +48209,15 @@ oGv oGv hXR lnO -jGB -jGB +tEX +tEX scL oGv hXR cwE -nmK -cdv -mEc +anT +fkO +kKk dPR giN sXb @@ -48230,44 +48230,44 @@ sXb mRq mRq xzj -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv pVN -ivy -fCj +plQ +xfi xtZ vcc ara gfA eTP -sgL -tsM +iZd +jjB pVN -oNv -ycn -nUt +tKD +oYC +jbG iLD -jsj +kTw pbt pbt -cwT -cCW +dZl +sjZ pbt pbt -rEQ -hTG +lRT +vJe ydx -seZ +kxW pbd mnm vNu wkM -jeX -oKg -aoh -mAt +edP +cnz +wEh +pKC wrB ffx ddc @@ -48276,27 +48276,27 @@ nIR agl aZv vZm -sRf +qcP vZs -ezM -iCL -iCL +uPm +bfB +bfB mxB -iCL -iCL +bfB +bfB xxk -iCL -iCL -iCL -iCL -wda -iCL +bfB +bfB +bfB +bfB +nli +bfB xxk -iCL -iCL -iCL -iCL -hco +bfB +bfB +bfB +bfB +aKi mxB ksX cty @@ -48311,9 +48311,9 @@ mCF mCF mCF ksX -iCL -iCL -iCL +bfB +bfB +bfB ksX mCF mCF @@ -48339,116 +48339,116 @@ wUU "} (98,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -fPM -fPM -fPM -fPM -jGB -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +pri +pri +pri +pri +pri +pri +tEX +tEX dXg -fPM -fPM -jGB -kUm -mKM -gwL -oGs -oGs -oGs -oGs -oGs -oGs -oGs -wYj -mKM -xbe -ogc -jGB -jGB -jGB +pri +pri +tEX +kFi +bZM +cRs +aRW +aRW +aRW +aRW +aRW +aRW +aRW +rvV +bZM +dEz +xix +tEX +tEX +tEX dXg -jGB -snt -jGB -jGB +tEX +nKq +tEX +tEX scL oGv hXR oGv -hnC +wiI hXR gJy oGv lnO -jGB -jGB +tEX +tEX scL vcz hXR cwE -sIl -cdv -cdv -gPk -gPk -gPk -gPk -gPk -gPk -jDq -cdv -iPi -vtb -vtb +lni +fkO +fkO +pQg +pQg +pQg +pQg +pQg +pQg +qws +fkO +sSO +fQM +fQM qAp -epV -qbG -hCb -sIb +gUe +gVT +yhq +uWv pVN -ivy -fCj +plQ +xfi xKv gWd vfj qBy fbQ -sgL -tsM +iZd +jjB pVN -oNv -ycn -uVp +tKD +oYC +rfp pbt -lYf -evR -vFI -cwT -cCW -ozO -ozO -nwN -bZS +crO +pJH +tSx +dZl +sjZ +dJv +dJv +ntk +rkh xNR -hEU +ybL vNu pRs ssZ vzH -rus -keD -keD +sma +gZs +gZs ydx hwP vuE @@ -48461,25 +48461,25 @@ bpT hoK lWJ bkM -hxY -rNM -rNM -iCL -iCL -iCL -iCL -iCL -iCL -lza -dCH -gVM -ykn -blE -iCL +iCI +mbw +mbw +bfB +bfB +bfB +bfB +bfB +bfB +pYY +mxA +wwF +pLc +fsd +bfB ubJ -iCL -qIT -xge +bfB +jpQ +hff ksX cty cty @@ -48494,9 +48494,9 @@ aOg wBc glp xxk -iCL -iCL -eUL +bfB +bfB +kAe vOo mCF mCF @@ -48521,49 +48521,49 @@ wUU "} (99,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -iBQ -jGB -fPM -fPM -fPM -fPM -fPM -fPM -jGB -jGB -dLa -fPM -fPM -kUm -mKM -wFF -loq -loq -loq -loq -mkE -loq -wMF +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +atZ +tEX +pri +pri +pri +pri +pri +pri +tEX +tEX +mhN +pri +pri +kFi +bZM +wHN +oEI +oEI +oEI +oEI +vjq +oEI +riP qDr -mKM -xbe -jGB -jGB -jGB +bZM +dEz +tEX +tEX +tEX gVO jaF qgm -jGB -jGB -jGB +tEX +tEX +tEX eGX hKK sRs @@ -48573,64 +48573,64 @@ oGv jSX hKK fLY -jGB -jGB +tEX +tEX scL hXR oGv cwE -ubY -cdv -pyW -cdv +xwK +fkO +aFQ +fkO iSW giN iSW iSW giN -eTS +vbp giN giN -hVi -cdv +uzH +fkO jrq -epV -csl -hCb -jrH +gUe +bYB +yhq +vDS fkR -nPH -sdM -sdM -sdM -tDQ -sdM -sdM -sdM -czE +yeW +qJB +qJB +qJB +nsH +qJB +qJB +qJB +fxN fkR -gTE -ycn -uep +ttx +oYC +oyY pbt -ukS -nKh -nKh -qyi -aZI -nKh -kZx -aZI -qXR +vHZ +oBY +oBY +qfW +eph +oBY +dZC +eph +pSZ xNR pYx sQs rSX -tAr +aIu owY -hwK -bQd -jaC +bEo +hJK +sMG xNR nWS aFg @@ -48643,13 +48643,13 @@ oKo laa gkx pKs -peN -iCL -iCL -nCr -aOw -peN -rNM +mvx +bfB +bfB +sUL +bhJ +mvx +mbw bkM bkM pKs @@ -48659,9 +48659,9 @@ pKs pKs bkM aFt -iCL -hco -iCL +bfB +aKi +bfB ksX cty cty @@ -48676,9 +48676,9 @@ aOg mCF iDn xxk -iCL -iCL -eUL +bfB +bfB +kAe mCF mCF mCF @@ -48703,105 +48703,105 @@ wUU "} (100,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -jGB -fPM -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM -fPM -jGB -fPM -fPM -fPM -fPM -fPM -kUm -mKM -iUM +tEX +pri +pri +pri +pri +pri +pri +tEX +pri +pri +pri +pri +pri +kFi +bZM +qpz gYh gYh tSK eQm gYh rHE -pvR -kUm -mKM -xbe -jGB -snt -jGB +kUp +kFi +bZM +dEz +tEX +nKq +tEX scL vGn lnO -jGB -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX +tEX scL hXR oGv oGv lnO -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX eGX sRs oGv cwE bgE -qmH -bOt -cdv +sHr +hZS +fkO iSW -tnr -pOR +lrH +dBW nKy pth uBV -muK +spI giN -cdv -cdv +fkO +fkO qAp -epV -csl -hCb -sIb +gUe +bYB +yhq +uWv fkR fkR pVN pVN pVN -hDg +laZ pVN pVN pVN fkR fkR -hDy -voy -knD +npJ +imZ +wfF pbt iLD -ozO -bxW +dJv +aNn uWA iLD -ozO -rgL +dJv +eiZ iLD iLD xNR @@ -48814,7 +48814,7 @@ xNR ydx xNR xNR -kBD +qgT aFg umT scD @@ -48833,17 +48833,17 @@ bkM pKs bkM bkM -gUh -jrB -lzC -ajI -lzC -jEP -wiC +bDR +hkE +qor +bni +qor +sxt +xnG aFt -wol -hco -iCL +vSJ +aKi +bfB ksX cty cty @@ -48857,9 +48857,9 @@ phA aOg mCF ksX -iCL -iCL -puv +bfB +bfB +aDt ksX mCF mCF @@ -48885,69 +48885,69 @@ wUU "} (101,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -jGB -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +tEX +pri dXg -fPM -fPM -fPM -fPM -fPM -fPM -jGB -fPM -fPM -jGB -kUm -mKM -iUM +pri +pri +pri +pri +pri +pri +tEX +pri +pri +tEX +kFi +bZM +qpz gYh -ltJ -hVF +aDv +tjE iEe -mAh +kOF rHE -xbe -kUm -mKM -xbe -jGB -jGB -jGB +dEz +kFi +bZM +dEz +tEX +tEX +tEX eGX hKK fLY -jGB -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX +tEX scL oGv hXR oGv lnO -jGB -jGB -jGB -ohD -snt +tEX +tEX +tEX +rWy +nKq scL oGv cwE bgE -oua -kbX -xRB -kcQ +wxA +ftQ +out +qLU bgE pGs pGs @@ -48958,42 +48958,42 @@ iSW uXR pGs pGJ -cAE -csl -hCb -jJx -mhy -hiA -soP -soP -soP -iDC -soP -soP -mhy -wMG -soP -iDC -soP -soP -soP -jrB -hCx -hCx -hdj -jrB -oqz -hCx -jrB -soP -soP -soP -soP -soP -pwH -nCB -gJh -sqj +vai +bYB +yhq +ktl +caH +lfm +fJA +fJA +fJA +kFF +fJA +fJA +caH +fZK +fJA +kFF +fJA +fJA +fJA +hkE +tLy +tLy +cmo +hkE +pNE +tLy +hkE +fJA +fJA +fJA +fJA +fJA +xgR +diZ +vWC +tvR qus scD gFx @@ -49001,30 +49001,30 @@ aFg umT gFx dDu -sRf +qcP gFx vZm pUW quR lPk -mFo -pDx -soP -soP -pwH -soP -jrB +tZw +wrr +fJA +fJA +xgR +fJA +hkE pKs -soD -sKx -sKx -sKx -sKx -sKx -cGX +stm +trP +trP +trP +trP +trP +cWP upL -iCL -hco +bfB +aKi xxk ksX cty @@ -49039,9 +49039,9 @@ aOg aOg mCF cqZ -iCL -iCL -iCL +bfB +bfB +bfB xEG mCF aOg @@ -49067,61 +49067,61 @@ wUU "} (102,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -ogc -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +xix +pri dXg -fPM -jGB -fPM -fPM -fPM -fPM -fPM -fPM -jGB -fPM -kUm -mKM -iUM +pri +tEX +pri +pri +pri +pri +pri +pri +tEX +pri +kFi +bZM +qpz gYh dlh ncn lXv sFc rHE -xbe -kUm -mKM -xbe -jGB -jGB -jGB -jGB -jGB -jGB -jGB -jGB -bLt -jGB -jGB +dEz +kFi +bZM +dEz +tEX +tEX +tEX +tEX +tEX +tEX +tEX +tEX +baQ +tEX +tEX scL oGv -evx +hVK oGv lnO -ogc -jGB -jGB -jGB -jGB +xix +tEX +tEX +tEX +tEX scL oGv foQ @@ -49140,42 +49140,42 @@ pGs pGs pGs pGJ -epV -csl -hCb -csl -sKx -bga -sKx -sKx -sKx -eql -sKx -sKx -sKx -mHK -sKx -eql -sKx -sKx -fcd -sKx -ieB -sKx -eql -sKx -ppF -sKx -sKx -bou -tZc -cxI -sKx -sKx -sKx -kxh -jKp -bCJ +gUe +bYB +yhq +bYB +trP +kme +trP +trP +trP +fuQ +trP +trP +trP +uJt +trP +fuQ +trP +trP +rZw +trP +dGD +trP +fuQ +trP +mdu +trP +trP +kJe +oDR +joM +trP +trP +trP +mCC +njn +ogf tak pJs umT @@ -49188,26 +49188,26 @@ umT kTs lRz umT -olt -uel -bCJ -ieB -sKx -sKx -sKx -pDx -alV -pDx -sKx -sKx -sKx -fcd -sKx -cGX +oZa +aoJ +ogf +dGD +trP +trP +trP +wrr +rid +wrr +trP +trP +trP +rZw +trP +cWP upL -jsw -hco -iCL +eNl +aKi +bfB ksX cty cty @@ -49221,9 +49221,9 @@ aOg mCF hoC cqZ -iCL -iCL -iCL +bfB +bfB +bfB iDn aOg aOg @@ -49249,70 +49249,70 @@ wUU "} (103,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -xlh -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +aCP +pri +pri +pri dXg -fPM -fPM -fPM -jGB -fPM -fPM -fPM -fPM -fPM -kUm -mKM -iUM +pri +pri +pri +tEX +pri +pri +pri +pri +pri +kFi +bZM +qpz rHE -mKl +iJW gyE anA -gwm +jUB ipi -xbe -kUm -mKM -xbe -jGB -jGB -jGB -jGB -jGB -jGB -sZc -jGB +dEz +kFi +bZM +dEz +tEX +tEX +tEX +tEX +tEX +tEX +btu +tEX stl -bLt +baQ gVO uTu -qWJ +wYE oGv oGv lnO -snt -jGB -jGB -jGB -jGB +nKq +tEX +tEX +tEX +tEX scL oGv rMb oGv oGv -bFK -bFK +cAn +cAn gJy -fQf +hrf pGs pGs pGs @@ -49322,42 +49322,42 @@ pGs pGs pGs pGJ -ctG -csl -tlF -iGW -lnf -tLH -lnf -lnf -lnf -bLT -lnf -lnf -lnf -iei -sUg -bLT -lnf -lnf -bLT -lnf -bCp -lnf -bLT -lnf -lnf -lnf -lnf -tDx -uOO -vIk -lnf -lnf -lnf -xvR -iei -aSv +mZo +bYB +ekd +lBN +uuD +lRp +uuD +uuD +uuD +iqk +uuD +uuD +uuD +owQ +puG +iqk +uuD +uuD +iqk +uuD +xmr +uuD +iqk +uuD +uuD +uuD +uuD +wFU +pBj +eWS +uuD +uuD +uuD +mJq +owQ +hlJ hNb fjC hNb @@ -49370,26 +49370,26 @@ hNb rBa hNb mgq -wSF -hkY -aSv -lnf -lnf -lnf -lnf -bfr -bfr -bfr -lnf -lnf -lnf -oPg -sKx -cGX +aJM +eAr +hlJ +uuD +uuD +uuD +uuD +cTR +cTR +cTR +uuD +uuD +uuD +cyN +trP +cWP upL -iCL -hco -iCL +bfB +aKi +bfB ksX ksX ksX @@ -49403,9 +49403,9 @@ mCF mCF mCF cqZ -iCL -iCL -iCL +bfB +bfB +bfB iDn aOg aOg @@ -49431,50 +49431,50 @@ wUU "} (104,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -jGB -fPM -kUm -mKM -vBQ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +tEX +pri +kFi +bZM +oVi rHE rjM gLw hso -fmS +ulw rHE -nQX -nJr -mKM -xbe -jGB -sZc -jGB -jGB -jGB -jGB -jGB -jGB -jGB -jGB +aRz +nua +bZM +dEz +tEX +btu +tEX +tEX +tEX +tEX +tEX +tEX +tEX +tEX scL oGv oGv @@ -49483,16 +49483,16 @@ oGv pfd jaF oAC -jGB -jGB -jGB +tEX +tEX +tEX eGX hKK sRs oGv -bof -bFK -bFK +oTM +cAn +cAn oGv hXR pGs @@ -49504,42 +49504,42 @@ pGs pGs pGs pGJ -aeN -vvA -wIK -kPI -tkY -vBf -tkY -tkY -tkY -tkY -tkY -sCX -tkY -xev -hVb -tkY -tkY -tkY -sCX -jrB -tkY -tkY -ilE -tkY -tkY -akN -pDx -yeh -qgK -akN -lqr -lqr -lqr -wNO -uKs -sSy +iYS +ohW +wlg +vDO +xhR +gbo +xhR +xhR +xhR +xhR +xhR +iDV +xhR +vkj +cyQ +xhR +xhR +xhR +iDV +hkE +xhR +xhR +wlj +xhR +xhR +gHc +wrr +kvj +jrD +gHc +ufS +ufS +ufS +vBU +tPW +bXa gFx vZm qus @@ -49552,30 +49552,30 @@ lFA wba nNz gFx -nfq -moM -aRH -aYA -tkY -sCX -tkY -jrB +btX +bEM +nmK +qjL +xhR +iDV +xhR +hkE pKs -jrB -jrB -jrB -jrB -aVG -tZc -jmg +hkE +hkE +hkE +hkE +kNu +oDR +bvO upL -iCL -hco +bfB +aKi xxk ksX -iRm -iRm -iRm +fpF +fpF +fpF ksX iFb iFb @@ -49584,10 +49584,10 @@ mCF mCF mCF mCF -eUL -iCL -iCL -iCL +kAe +bfB +bfB +bfB ksX aOg aBK @@ -49613,68 +49613,68 @@ wUU "} (105,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -fPM -fPM -fPM -fPM -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM -fPM -fPM -fPM -jGB -jGB -kUm -bFK -bFK +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri +tEX +tEX +kFi +cAn +cAn gLw sKF aSt gLw pNk aSt -bFK -bFK -mKM -xbe -jGB -jGB -jGB -jGB -ogc -jGB -jGB -jGB -jGB -jGB +cAn +cAn +bZM +dEz +tEX +tEX +tEX +tEX +xix +tEX +tEX +tEX +tEX +tEX scL oGv hXR oGv -imB +iWV oGv oGv lnO -jGB -jGB -ogc -jGB -jGB +tEX +tEX +xix +tEX +tEX scL hXR oGv -bFK -nWs +cAn +duP oGv oGv pGs @@ -49686,22 +49686,22 @@ pGs pGs pGs juW -cwW -bDq -xAk -cwW +tUo +kmK +dpG +tUo juW nTG nTG nTG lNb -lcV +pxw lNb nTG nTG nTG pNf -lcV +pxw lNb nTG nTG @@ -49712,15 +49712,15 @@ wVf sPs wVf wVf -uxv -uek -vfP +oFn +fVQ +hYk wVf -fcv +dto wVf -fcv +dto wVf -fcv +dto wVf wjV abE @@ -49746,30 +49746,30 @@ pYn kgw kgw pYn -jrB -mpU -sKx -mUF +hkE +dTo +trP +jpT aFt -iCL +bfB toU -iCL -iCL -caG -iCL -iCL -iCL -peN +bfB +bfB +dKC +bfB +bfB +bfB +mvx iFb cty cty mCF jdm mCF -eUL +kAe xxk xxk -iCL +bfB ksX mCF aOg @@ -49795,70 +49795,70 @@ wUU "} (106,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -ogc -fPM -jGB -fPM -fPM -fPM -fPM -fPM -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +xix +pri +tEX +pri +pri +pri +pri +pri +tEX dXg dXg -fPM -kUm -bFK -aaj +pri +kFi +cAn +ude gLw dXr -twK +jEt idr gLw gLw -aaj -bFK -mKM -nQX -loq -loq -loq -loq -jGB -loq -jGB -jGB -jGB -jGB +ude +cAn +bZM +aRz +oEI +oEI +oEI +oEI +tEX +oEI +tEX +tEX +tEX +tEX scL oGv oGv ibs -xrc +ien gux -iLb +brI kgm -foS -jGB -jGB -snt -jGB +vle +tEX +tEX +nKq +tEX scL oGv nee -bFK -nWs +cAn +duP oGv -num +eiQ oGv pGs pGs @@ -49868,23 +49868,23 @@ pGs pGs pGs juW -xFv -sNm -pmA -fqD +kAz +nDz +vZZ +twc juW -jLu -rpz -rpz -rpz -rpz -rpz -rpz -jLu -kwb -nIm -wzW -rpz +skT +xwu +xwu +xwu +xwu +xwu +xwu +skT +iif +omI +omQ +xwu wqb kBZ hPj @@ -49894,54 +49894,54 @@ qyk jBw hlK wVf -npg -wOP -hpf +otr +uUe +qWH wVf -xOc -aAD -fbF -aAD -bHt +gSg +kYT +pIq +kYT +cQV wVf -gak -nIm -rpz -rXi +wIG +omI +xwu +msO cdb cdb wjV cdb cdb -rHK +vtg cdb -vbO -oQJ +fiR +ljP pYn -qzp -qzH -qzH -wLX -qzH +guM +mxP +mxP +eMY +mxP pYn iIt xFE cBq pYn -uoe -qZY -iZX -qPv +lFW +mrL +rbA +clU mzt -nwk -pdh -nwk -nwk -nwk -eXz -nwk -dht -iCL +ukg +xVm +ukg +ukg +ukg +kOw +ukg +gWe +bfB iFb cty cty @@ -49949,9 +49949,9 @@ hoC mCF jdm ksX -iCL -iCL -iCL +bfB +bfB +bfB xxk mCF aOg @@ -49977,68 +49977,68 @@ wUU "} (107,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM -jGB -fPM -fPM -fPM -fPM -fPM -fPM -jGB +pri +tEX +pri +pri +pri +pri +pri +pri +tEX dXg -jGB +tEX dXg -fPM -kUm -mKM -nAf +pri +kFi +bZM +onH eQm jFt qCE abu -nXZ +wvL hFM -gwL -wYj -bFK -bFK -bFK -bFK -bFK -bFK +cRs +rvV +cAn +cAn +cAn +cAn +cAn +cAn stl -jGB -jGB -jGB -jGB -bLt +tEX +tEX +tEX +tEX +baQ eGX sRs lsN hXR ibs eFB -iLb +brI mnz -jGB -jGB -jGB +tEX +tEX +tEX gVO jaF uTu oGv oGv -bFK -bFK +cAn +cAn oGv oGv oGv @@ -50050,23 +50050,23 @@ juW juW juW juW -kSq -xHr -ueJ -jCw -cwW -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -nIm -wzW -rpz +qSZ +gnd +wIE +iNp +tUo +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +omI +omQ +xwu wqb kBZ hPj @@ -50074,56 +50074,56 @@ wVf xLE ioc vqY -qiR +jfX sPs -npg -wOP -hpf -fcv -npg -nrF -nrF -nrF -ohG -fcv -qBg -nIm -rpz -rpz -rpz -iaF -aMF -eZW -rpz -rpz +otr +uUe +qWH +dto +otr +hDj +hDj +hDj +tLV +dto +aWL +omI +xwu +xwu +xwu +dUs +sPo +aGe +xwu +xwu cdb -bfT -nIm +mKe +omI lhJ -oBo -vtc -vtc -vtc -oBo +gcE +nst +nst +nst +gcE pYn wkq wCE sMn rrp -jrB -sBf -sKx -jrB +hkE +rMz +trP +hkE aFt -bxI -khI -iCL -iCL -iCL -iCL -iCL +tzy +xxL +bfB +bfB +bfB +bfB +bfB toU -iCL +bfB cty cty cty @@ -50132,8 +50132,8 @@ mCF mCF glp xxk -iCL -iCL +bfB +bfB rgg mCF mCF @@ -50159,96 +50159,96 @@ wUU "} (108,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -ogc -jGB -fPM -fPM -fPM -jGB -fPM -jGB -fPM -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +xix +tEX +pri +pri +pri +tEX +pri +tEX +pri +tEX dXg -jGB -fPM -kUm -mKM -iUM +tEX +pri +kFi +bZM +qpz hFM fQh gLw -aCc +bUm mhf eQm -xbe -kUm -mKM -gwL -oGs -oGs -oGs -jGB -oGs -jGB -jGB -jGB -bLt -jGB -jGB +dEz +kFi +bZM +cRs +aRW +aRW +aRW +tEX +aRW +tEX +tEX +tEX +baQ +tEX +tEX scL oGv -bFK +cAn oGv hwL -tgl +oTw oTE -jbm -jGB -jGB +gMZ +tEX +tEX scL lsN oGv -fQf +hrf nee -bFK -nWs +cAn +duP oGv hXR oGv hXR pGs juW -uUN -kYw -nxt -gGT +rtG +jql +vlE +fKN juW -kSq -kGN -sXx -vUb -fNw -fQb -fQb -fQb -fQb -fQb -nUE -fQb -fQb -fQb -xJn -rpz -rpz +qSZ +did +abj +dUU +fSe +egS +egS +egS +egS +egS +ikx +egS +egS +egS +iHQ +xwu +xwu wqb kBZ wVf @@ -50258,44 +50258,44 @@ jQB psb idw sPs -npg -wOP -hpf +otr +uUe +qWH wVf -gyI -dHg -nrF -pMC -oZD +bEG +qys +hDj +kql +xtM wVf -mCm -nIm -rpz -rpz -rpz -rpz -ucS -lwc -rpz -rpz -wYd -jLu -nIm +ooL +omI +xwu +xwu +xwu +xwu +jFa +bkx +xwu +xwu +rzh +skT +omI kgw -iQX -vtc -pvU -wZb -xhW +lDT +nst +rqF +pNL +aIP pYn wic pqj ydI -sGX -jrB -mpU -sKx -jrB +jff +hkE +dTo +trP +hkE bkM pKs bkM @@ -50303,8 +50303,8 @@ bkM bkM pKs bkM -iCL -hco +bfB +aKi xxk cty cty @@ -50313,9 +50313,9 @@ cty mCF mCF iDn -iCL -iCL -iCL +bfB +bfB +bfB ksX hoC mCF @@ -50341,96 +50341,96 @@ wUU "} (109,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -xlh -fPM -jGB -fPM -fPM -fPM -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +aCP +pri +tEX +pri +pri +pri +tEX dXg -jGB -jGB -fPM -jGB -jGB -fPM -kUm -mKM -iUM +tEX +tEX +pri +tEX +tEX +pri +kFi +bZM +qpz gYh xuJ fgW npF trB gYh -nAh -kUm -mKM -xbe -jGB -jGB -jGB -jGB -jGB -jGB -jGB -jGB -jGB -jGB -jGB +ggw +kFi +bZM +dEz +tEX +tEX +tEX +tEX +tEX +tEX +tEX +tEX +tEX +tEX +tEX scL oGv -bFK -bFK +cAn +cAn oGv oGv ecX -jGB -jGB -jGB +tEX +tEX +tEX scL oGv oGv oGv hXR -bFK -nWs +cAn +duP oGv oGv oGv eCg ltB szp -jCw -xHr -bWY -koQ +iNp +gnd +dNL +jCj szp -kSq -xHr -ueJ -jCw -cwW -oGq -atb -rpz -rpz -rpz -rpz -rpz -rpz -rpz -hih -rpz -rpz +qSZ +gnd +wIE +iNp +tUo +avb +ilq +xwu +xwu +xwu +xwu +xwu +xwu +xwu +lhV +xwu +xwu wqb kBZ wVf @@ -50440,54 +50440,54 @@ idw eRD gyX eTb -kby -spX -hpf +qZU +lsj +qWH wVf wVf xvF -vmB -fcv +ihZ +dto wVf wVf -mCD -vCQ -fQb -fQb -fQb -wmd -yeQ -esI -fQb -cee -rpz -rpz -nIm +qSB +mev +egS +egS +egS +gOQ +cxo +fZW +egS +pVs +xwu +xwu +omI pYn -eKb -taK -auA -vFf -sQd +xxP +cqz +jDE +saH +mTq bMf rPD bTA iOQ qOF -noy -aVG -cxI -jrB +pcw +kNu +joM +hkE pKs -oTF -aJZ +lzW +taI bkM -eVq -jdZ +ooa +wzC bkM -iCL -hco -iCL +bfB +aKi +bfB cty cty cty @@ -50495,9 +50495,9 @@ cty cty mCF iDn -iCL -iCL -jcH +bfB +bfB +nWP ksX cty hoC @@ -50523,128 +50523,128 @@ wUU "} (110,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -iBQ -jGB -fPM -fPM -fPM -fPM -jGB -fPM -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +atZ +tEX +pri +pri +pri +pri +tEX +pri +pri +pri +pri dXg -fPM -kUm -mKM -iUM +pri +kFi +bZM +qpz hFM aSt xQJ -oVF +ibr saQ hFM -xbe -kUm -mKM -xbe +dEz +kFi +bZM +dEz dXg dXg -jGB -sZc -jGB -jGB -jGB -jGB -jGB -jGB -jGB +tEX +btu +tEX +tEX +tEX +tEX +tEX +tEX +tEX scL oGv -bFK -bFK +cAn +cAn jSX hKK wDi -jbm -jGB -ogc +gMZ +tEX +xix scL oGv -qWJ +wYE hXR oGv -bFK -bFK +cAn +cAn hmR oGv oGv oGv oDU szp -cKs -alj -rJM -aVI -lQe -aVI -rJM -pET -jCw +rhX +iPe +kxb +aFO +iAy +aFO +kxb +txs +iNp juW wqb -rmT -rpz +nIS +xwu ryD -rpz +xwu ryD joV wqb wqb -nIm -rpz -hGd +omI +xwu +owA wqb kBZ wVf -tkS +uoN idw idw idw idw wVf -lwB -spX -yiG +cVV +lsj +txB wVf -sqX -nbt -nrF -nbt -xCv +hSE +dEb +hDj +dEb +kiT wVf wVf wVf -fcv +dto wVf -fcv +dto wVf -crr -fcv +nez +dto wVf -nIm -rpz -rpz -nIm +omI +xwu +xwu +omI pYn pYn kgw @@ -50652,24 +50652,24 @@ pYn pYn kgw vHs -kKP +nto pqj ydI pYn -mKJ -xtD -jce -jrB +fDz +shD +rll +hkE vke -twW -eBE +qYa +kPa pKs -sLo -wit +gvk +gXp bkM -sxv -hco -iCL +rAE +aKi +bfB iFb cty cty @@ -50677,9 +50677,9 @@ cty cty cty cqZ -peN +mvx xxk -iCL +bfB ksX cty cty @@ -50705,96 +50705,96 @@ wUU "} (111,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -jGB -fPM -jGB -fPM -jGB -fPM -fPM -fPM -fPM -fPM -jGB -fPM -kUm -mKM -iUM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +tEX +pri +tEX +pri +tEX +pri +pri +pri +pri +pri +tEX +pri +kFi +bZM +qpz gYh hFM gYh gYh hFM gYh -pvR -kUm -mKM -xbe +kUp +kFi +bZM +dEz dXg -jGB -ohD -jGB -jGB -jGB +tEX +rWy +tEX +tEX +tEX dXg -kUm -bFK -itu -jGB +kFi +cAn +rPN +tEX scL oGv -fQf +hrf oGv pfd qgm -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX scL hXR oGv -bFK -ggK -sMx -sMx -ggK -ggK -ggK -ggK -ggK -rbc -jCw -xHr -xHr -kSq +cAn +luf +rCU +rCU +luf +luf +luf +luf +luf +izx +iNp +gnd +gnd +qSZ szp -kSq -xHr -ueJ -jCw +qSZ +gnd +wIE +iNp juW kBZ kBZ joV keY -rpz +xwu ryD ryD ryD ryD -nIm -rpz -rHK +omI +xwu +vtg wqb kBZ wVf @@ -50804,54 +50804,54 @@ vPi pBo wVf wVf -ebR -wOP -hpf -fcv -npg -nrF -kLJ -nrF -ohG +jSd +uUe +qWH +dto +otr +hDj +qoT +hDj +tLV kMf -mIm -lqd -rNS +cBX +yek +swT wVf -bhz -src -spX -qBZ -fcv -nIm -rpz -jrW -eJo -wYd -erR -rpz -kwb -rpz -xdS +jTB +uzx +lsj +sTM +dto +omI +xwu +krW +tSu +rzh +rUo +xwu +iif +xwu +sbe pYn -pzi +fNI nkF xGJ ddz -qPv -cTa -jVk -mcA +clU +qbr +nyg +riE veW -tlI -lIM +oxe +evt wWx -jES -rqA +ucM +lAI bkM -iCL -hco -iCL +bfB +aKi +bfB iFb cty cty @@ -50859,9 +50859,9 @@ cty cty cty ksX -iCL -kdK -iCL +bfB +dvX +bfB ksX cty cty @@ -50887,54 +50887,54 @@ wUU "} (112,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -jGB -jGB -fPM -jGB -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +tEX +tEX +pri +tEX +tEX dXg -fPM -fPM -fPM -fPM -fPM -fPM -fPM -kUm -mKM -vMW -oGs -oGs -oGs -dfU -oGs -oGs -lKH -kUm -mKM -xbe -jGB -jGB -jGB -jGB +pri +pri +pri +pri +pri +pri +pri +kFi +bZM +vFG +aRW +aRW +aRW +tKU +aRW +aRW +rNz +kFi +bZM +dEz +tEX +tEX +tEX +tEX dXg -jGB +tEX dXg -jGB -mKM -itu +tEX +bZM +rPN gVO uTu rfV -bFK +cAn oGv oGv pfd @@ -50945,36 +50945,36 @@ jaF uTu oGv nee -bFK +cAn oGv rMb oGv oGv -qWJ +wYE oGv oGv rkH szp -cKs -xHr -xHr -kSq +rhX +gnd +gnd +qSZ szp -kSq -xHr -ueJ -jCw +qSZ +gnd +wIE +iNp juW kBZ kBZ kBZ -rpz -iOT +xwu +mxm ryD fbr ryD ryD -nIm +omI sHO ryD wqb @@ -50986,53 +50986,53 @@ wVf wVf wVf wVf -eXj -wOP -hpf -fcv -npg -mcD -xhL -nST -rIj +nlX +uUe +qWH +dto +otr +aCj +klJ +hiK +cgt kMf -pxE -duv -kby -nrT -kby -kby -spX -ciz -fcv -vCQ -fQb -fQb -ruP -iSZ -fQb -fQb -hqR -fQb -cee -xIU +bdC +nIB +qZU +jqg +qZU +qZU +lsj +wLw +dto +mev +egS +egS +ydw +dgI +egS +egS +ufz +egS +pVs +uPr pYn pYn pYn pYn -wiC -iKC -jrB -jrB +xnG +cje +hkE +hkE pKs -iDP -eBE +oDo +kPa pKs -sLo -uYX +gvk +lqh pKs -iCL -hco +bfB +aKi xxk owM iFb @@ -51041,8 +51041,8 @@ iFb iFb iFb ksX -iCL -iCL +bfB +bfB xxk ksX ksX @@ -51069,39 +51069,39 @@ wUU "} (113,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -fPM -jGB -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM +pri +tEX +pri +pri dXg dXg -jGB -jGB -fPM -jGB -jGB -jGB -fPM -kUm -mKM -nQX -loq -loq -loq -loq -loq -loq -loq -nJr -mKM +tEX +tEX +pri +tEX +tEX +tEX +pri +kFi +bZM +aRz +oEI +oEI +oEI +oEI +oEI +oEI +oEI +nua +bZM dyo jaF jaF @@ -51110,9 +51110,9 @@ jaF qgm dXg dXg -jGB +tEX stl -bLt +baQ scL oGv oGv @@ -51123,12 +51123,12 @@ oGv oGv oGv oGv -imB +iWV oGv oGv -cZk -bFK -bFK +oDJ +cAn +cAn dXg eCg iZP @@ -51137,27 +51137,27 @@ tXv tXv oGv szp -nYw -gpk -pKO -jtO +qsf +gIh +gtY +nWR juW -eUl -sNm -pmA -fqD +baB +nDz +vZZ +twc juW kBZ kBZ kBZ -rpz -rpz +xwu +xwu ryD ryD ryD ryD -nIm -rpz +omI +xwu ryD ryD kBZ @@ -51168,36 +51168,36 @@ vco pja idw wVf -beL -wOP -hpf -fcv -npg -nrF -xNW -nrF -ohG +xjb +uUe +qWH +dto +otr +hDj +swp +hDj +tLV kMf -ewZ -cKa -aWs +amE +dAB +jxn wVf -fcv +dto wVf -qOI +gMR wVf wVf -fRY -kpi -rpz -rpz -rpz -rpz -rpz -rpz -lVS -nIm -rHK +lrf +pTx +xwu +xwu +xwu +xwu +xwu +xwu +bNR +omI +vtg vHs vHs vHs @@ -51207,32 +51207,32 @@ vHs vHs bkM bkM -eSd -eBE +azA +kPa bkM ncX bkM bkM -bVw -hco -iCL -sOn -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -iCL -lFd -iCL -iCL -iCL +udN +aKi +bfB +tHn +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +bfB +iji +bfB +bfB +bfB xxk xEG mCF @@ -51251,55 +51251,55 @@ wUU "} (114,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -ogc -fPM -fPM -jGB -jGB -fPM -fPM -jGB -fPM -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +xix +pri +pri +tEX +tEX +pri +pri +tEX +pri +tEX dXg -fPM -kUm -bFK -bFK -bFK -bFK -bFK -bFK -bFK -bFK -bFK -bFK -mKM +pri +kFi +cAn +cAn +cAn +cAn +cAn +cAn +cAn +cAn +cAn +cAn +bZM hNq oGv oGv oGv oGv lnO -jGB -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX +tEX pgg oGv oGv rMb -bFK +cAn oGv hXR oGv @@ -51308,9 +51308,9 @@ oGv nwq iaH kAN -aeD -aeD -aeD +pSL +pSL +pSL rQU ihY cCk @@ -51322,12 +51322,12 @@ wOO wOO wOO wOO -uNy +kZF wOO -iBB -lrY -egQ -iBB +dSf +suB +mRU +dSf wOO wOO wOO @@ -51338,48 +51338,48 @@ ryD ryD ryD ryD -fti -rpz +eDw +xwu joV ryD kBZ hPj wVf dtu -hae +asG hkZ -xRx +gZn sPs -pam -wOP -hpf +qgG +uUe +qWH wVf -bOs -cKa -nrF -cKa -kzX +bOm +dAB +hDj +dAB +vfe wVf wVf wVf -fcv +dto wVf -rRf -tbD -wOP -vKJ +jrC +fVN +uUe +qlk wVf -fcv +dto wVf -fcv +dto wVf wVf wVf wVf wVf -rpz -nIm -rpz +xwu +omI +xwu vHs eBs xcf @@ -51387,34 +51387,34 @@ xcf xcf cGV vHs -swX -tkY -rDQ -uce -tkY -tkY -atc +wDd +xhR +jDy +avH +xhR +xhR +eiU wMj -iCL -hco -rNM -sOn +bfB +aKi +mbw +tHn mxB -iCL -iCL +bfB +bfB xxk wNz xxk -iCL -iCL -iCL -iCL -iCL +bfB +bfB +bfB +bfB +bfB xxk xxk xxk -iCL -iCL +bfB +bfB xxk iDn mCF @@ -51433,66 +51433,66 @@ wUU "} (115,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -jGB -fPM -fPM -jGB -fPM -fPM -jGB -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +tEX +pri +pri +tEX +pri +pri +tEX +pri dXg dXg -jGB -fPM -kUm -mKM -gwL -oGs -oGs -oGs -oGs -oGs -oGs -oGs -wYj -mKM +tEX +pri +kFi +bZM +cRs +aRW +aRW +aRW +aRW +aRW +aRW +aRW +rvV +bZM hNq hXR oGv oGv oGv lnO -jGB -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX +tEX scL oGv -imB -bFK +iWV +cAn oGv oGv oGv -qWJ +wYE oGv hXR ihY oDB cFw -ips -rkE -rkE +gVX +rFN +rFN epN cFw cFw @@ -51503,16 +51503,16 @@ pGs pGs pGs wOO -cxc -bRZ -bRZ -whN -xjF -uBO -whN -iHa -dWK -hvW +smj +hhB +hhB +qrn +mGk +hoy +qrn +ayL +aNm +mwt wOO kBZ kBZ @@ -51520,8 +51520,8 @@ kBZ ryD kBZ wqb -bbH -rpz +mua +xwu ryD jeW joV @@ -51532,36 +51532,36 @@ iYE dos idw wVf -crn -wOP -hpf +uPM +uUe +qWH wVf wVf -fcv -uGV -fcv +dto +kHy +dto wVf wVf -bCU -vyo -xRJ +qpf +rtT +cJr wVf -mZp -jNV -pbZ -kby -tRW -kby -sZf -gWq +alp +cZs +pKY +qZU +bSi +qZU +cbH +hXf wVf -nXo -uAG -tQt +iiA +cdh +jwP wVf -rpz -nIm -rpz +xwu +omI +xwu vHs imz mwD @@ -51569,35 +51569,35 @@ ezb wWd ggk vHs -vcZ -tZc -xtD -sKx -sKx -sKx -sIu +qxK +oDR +shD +trP +trP +trP +qZx lNb -iCL -hco -rNM -qEQ -iCL -lFd -iCL -iCL +bfB +aKi +mbw +wDe +bfB +iji +bfB +bfB xxk xxk -iCL -iCL -nCr +bfB +bfB +sUL xxk -iCL -iCL -lrs -iCL -iCL -iCL -iCL +bfB +bfB +ptr +bfB +bfB +bfB +bfB ksX hoC mCF @@ -51615,54 +51615,54 @@ wUU "} (116,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -fPM -jGB -jGB -fPM -jGB -fPM -fPM -fPM -fPM -jGB -fPM -fPM -fPM -kUm -mKM -xbe -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM +pri +tEX +tEX +pri +tEX +pri +pri +pri +pri +tEX +pri +pri +pri +kFi +bZM +dEz +tEX +pri dXg -fPM -fPM -jGB +pri +pri +tEX dXg -kUm -mKM +kFi +bZM hNq oGv oGv hXR lsN lnO -jGB -ogc -jGB -jGB -jGB +tEX +xix +tEX +tEX +tEX scL oGv oGv -bFK +cAn gJy hXR oGv @@ -51673,9 +51673,9 @@ ihY cFw cel fSa -rkE -eIR -sWT +rFN +aKt +cra cFw cFw qtv @@ -51685,16 +51685,16 @@ pGs pGs pGs wOO -pty -ubs -ubs -lrY -ubs -tLL -oxn -mYp -dkK -jBI +dXb +yfP +yfP +suB +yfP +lsa +rxg +dbR +bMc +gxG wOO kBZ kBZ @@ -51702,8 +51702,8 @@ kBZ kBZ kBZ wqb -nIm -rpz +omI +xwu ryD ryD ryD @@ -51714,53 +51714,53 @@ iHh eRD jSN ylX -kby -spX -rsX -nbt -nbt -nbt -nrF -nbt -mCV -nbt -sWI -fjm -vqC -mCV -ucI -wOP -nrF -wwC +qZU +lsj +tej +dEb +dEb +dEb +hDj +dEb +qPS +dEb +xPW +oiz +aMz +qPS +fTH +uUe +hDj +uxB wVf -rrz -wOP -nrF -hoX -tny -nrF -aDD +rTH +uUe +hDj +lsA +bIX +hDj +oOp wVf -rpz -nIm -oft -qoL +xwu +omI +njb +eqE fpY eQC kWB kWB fpY -fkr -gkU -sKx -eql -sKx -sKx -sKx -gqy +rjw +gTH +trP +fuQ +trP +trP +trP +foL bkM mdN -wGn +tKg mdN eEd ksX @@ -51779,7 +51779,7 @@ iDn iDn xxk xxk -iCL +bfB ksX hoC mCF @@ -51797,66 +51797,66 @@ wUU "} (117,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -xlh -fPM -jGB -jGB -fPM -fPM -jGB -fPM -fPM -fPM -fPM -fPM -fPM -jGB -kUm -mKM -xbe -fPM -jGB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +aCP +pri +tEX +tEX +pri +pri +tEX +pri +pri +pri +pri +pri +pri +tEX +kFi +bZM +dEz +pri +tEX dXg dXg -fPM -fPM +pri +pri dXg -kUm -mKM +kFi +bZM hNq oGv upH oGv oGv lnO -jGB -jGB -jGB -jGB -jGB +tEX +tEX +tEX +tEX +tEX scL upH oGv hXR -bFK +cAn oGv oGv jju ihY ihY -fpB +ezr vyp cFw -rkE -rkE -rkE +rFN +rFN +rFN cFw cFw cFw @@ -51867,25 +51867,25 @@ pGs pGs pGs wOO -xtr -ubs -iiG -lrY -iiG -gij -lrY -iiG -fLo -jBI -uYO -iiG -ihW +pCR +yfP +aER +suB +aER +fkS +suB +aER +jZi +gxG +odR +aER +uxp kBZ kBZ kBZ wqb -nIm -rpz +omI +xwu ryD ryD ryD @@ -51896,54 +51896,54 @@ lZU vqY tiw sPs -qYX -xmW -mOe -iQb -iQb -frH -iQb -iQb -rZG -iQb -rZG -ogC -eIG -rZG -hjl -nkL -nrF -mly -fcv -rrz -uXM -nrF -hoX -nrF -gQt -rwY +mRM +uKz +onD +nGg +nGg +fMU +nGg +nGg +iVM +nGg +iVM +lEg +xAF +iVM +mWr +jbH +hDj +jDm +dto +rTH +cWB +hDj +lsA +hDj +daT +cek wVf -rpz -nIm -oft -uNk +xwu +omI +njb +gCj kWB kWB -fmm +nAq rmf kWB -xRf -hev -sKx -tFW -iZX -lKy -sKx -hTg +ebv +laj +trP +hlI +rbA +fCp +trP +egb bkM -sOn -mQu -sOn +tHn +uel +tHn eEd cty cty @@ -51961,7 +51961,7 @@ mCF iDn xxk xxk -peN +mvx ksX cty mCF @@ -51979,56 +51979,56 @@ wUU "} (118,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -iBQ -fPM -jGB -fPM -fPM -jGB -jGB -fPM -fPM -fPM -fPM -fPM -fPM -kUm -mKM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +atZ +pri +tEX +pri +pri +tEX +tEX +pri +pri +pri +pri +pri +pri +kFi +bZM mIU jaF jaF jaF jaF qgm -dLa -fPM -kUm -mKM +mhN +pri +kFi +bZM jdu hXR oGv oGv hXR lnO -jGB -jGB -jGB +tEX +tEX +tEX stl -jGB +tEX scL oGv oGv -rkE -dIV -aeD +rFN +rRR +pSL jjj vuQ ihY @@ -52038,9 +52038,9 @@ iaT cFw rSl utZ -eIR +aKt cFw -nLZ +hRe cFw pkj wUF @@ -52049,25 +52049,25 @@ pGs pGs pGs wOO -ljH -ubs -iiG -lrY -bOA -uxb -lrY -muX -ubs -hAX -uYO -iiG -rRX +sLt +yfP +aER +suB +trb +raF +suB +eyg +yfP +tnp +odR +aER +iDZ kBZ kBZ ryD hcI wXs -rpz +xwu ryD ryD ryD @@ -52078,9 +52078,9 @@ idw izy hJw wVf -kfr -fco -iek +ncE +rTK +oSZ wVf wVf wVf @@ -52092,40 +52092,40 @@ oyT xvF wVf wVf -opf -wOP -nrF -ppY -fcv -rrz -lnh -tzN +oWI +uUe +hDj +kxX +dto +rTH +rlK +isY wVf -npg -nrF -agR +otr +hDj +sOu wVf -rpz -nZE -oft -uNk +xwu +eWi +njb +gCj kWB wmt sgp eQC kWB -xRf -hev -sKx -eql -sKx -sKx -sKx -sIu +ebv +laj +trP +fuQ +trP +trP +trP +qZx lNb -sOn -rcY -iCL +tHn +fOq +bfB ksX cty cty @@ -52142,8 +52142,8 @@ mCF mCF ksX mxB -iCL -puv +bfB +aDt ksX cty mCF @@ -52161,43 +52161,43 @@ wUU "} (119,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -fPM -jGB -jGB -fPM -fPM -fPM -fPM -fPM -fPM -jGB -kUm -mKM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +pri +pri +pri +tEX +tEX +pri +pri +pri +pri +pri +pri +tEX +kFi +bZM igB oGv oGv oGv oGv lnO -jGB -jGB -kUm -mKM +tEX +tEX +kFi +bZM igB oGv oGv -imB +iWV oGv pfd jaF @@ -52210,7 +52210,7 @@ oGv hXR ihY cFw -sLA +eYI cFw epN qkq @@ -52220,10 +52220,10 @@ nwq cFw cFw fWW -rkE -rkE +rFN +rFN cFw -kmg +aOt cFw nwq cFw @@ -52231,83 +52231,83 @@ pGs pGs pGs wOO -wFB -ubs -iiG -pza -uxE -icf -mID -iiG -ubs -qdG -vpR -iiG -rLs +cbd +yfP +aER +kIH +uMU +fSE +ezM +aER +yfP +nWe +ltt +aER +vtG kBZ ryD ryD ryD wXs -rpz +xwu ryD ryD ryD wVf wVf pIC -fmM +gkb wVf wVf wVf -fcv -hMy -fcv +dto +wAj +dto wVf eyt eyt eyt eyt wVf -kDa -vnC -nbt -xRJ +aqK +kkx +dEb +cJr wVf -vbE -wOP -foI -nRl +crn +uUe +wtD +ycO wVf -nHT -hWZ -cth +vVu +dqa +gww wVf -nQV -pmG -ino +jFZ +bHZ +hUG wVf -rqh -nIm -oft -uNk +rHl +omI +njb +gCj kWB cAx aXA kWB kWB -sHB -igG -sKx -eql -sKx -sKx -sKx -sIu +yjj +liI +trP +fuQ +trP +trP +trP +qZx lNb -sOn -hco -iCL +tHn +aKi +bfB ksX ksX iFb @@ -52322,10 +52322,10 @@ cty mCF mCF mCF -eUL +kAe xxk -iCL -iCL +bfB +bfB ksX xEG iDn @@ -52343,39 +52343,39 @@ wUU "} (120,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -iBQ -jGB -fPM -fPM -fPM -fPM -jGB -jGB -jGB -jGB -fPM -fPM -jGB -kUm -mKM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +atZ +tEX +pri +pri +pri +pri +tEX +tEX +tEX +tEX +pri +pri +tEX +kFi +bZM igB oGv lsN -imB +iWV hXR pfd jaF jaF tGw -mKM +bZM igB oGv hXR @@ -52393,7 +52393,7 @@ gfk ihY xnS vyp -rkE +rFN cFw cFw cFw @@ -52402,8 +52402,8 @@ cFw cFw gJN wop -rkE -aVB +rFN +hUe nwq cFw cFw @@ -52413,25 +52413,25 @@ nwq cFw pGs qnW -qae -ubs -iiG -pza -qhG -cyM -mID -iiG -ubs -hZx -iiG -nqm -rLs +imL +yfP +aER +kIH +tWC +gbT +ezM +aER +yfP +bNE +aER +roa +vtG kBZ tkF ryD ryD wXs -rpz +xwu ryD ryD eyt @@ -52442,24 +52442,24 @@ wVf wVf eyt wqb -rHK -nIm -rpz +vtg +omI +xwu wqb eyt eyt eyt eyt wVf -ktv -nrF -duv -kby -moR -kby -spX -oSW -pRE +kzV +hDj +nIB +qZU +igc +qZU +lsj +qph +nUq wVf xvF wVf @@ -52469,9 +52469,9 @@ wVf wVf wVf wVf -atb -nIm -rpz +ilq +omI +xwu vHs imz wDv @@ -52479,18 +52479,18 @@ bSu wdI szh vHs -twW -cgc -cTa -iZX -iZX -aIL -ydF +qYa +vwl +qbr +rbA +rbA +pQE +goy bkM -blD -uQF -dht -iCL +dfp +lZq +gWe +bfB xxk iFb hoC @@ -52506,9 +52506,9 @@ aOg mCF ksX xxk -iCL -iCL -iCL +bfB +bfB +bfB xxk xxk ksX @@ -52525,29 +52525,29 @@ wUU "} (121,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +pri +pri +pri +pri +pri +pri +pri +pri +pri dXg -fPM -fPM +pri +pri btU -mKM +bZM igB hXR rMb @@ -52557,63 +52557,63 @@ oGv oGv oGv eoj -mKM +bZM igB oGv oGv oGv -qWJ +wYE fkd oGv hXR svt -bFK +cAn mmO -fQf +hrf oGv dXg ihY xnS -xMB -rkE -rBQ -rBQ -rkE -rkE -rBQ -rBQ -rkE -rkE -dPd +vmF +rFN +btZ +btZ +rFN +rFN +btZ +btZ +rFN +rFN +fDK cFw cFw cFw jsG -rkE +rFN cFw cFw nwq nwq oSX -kKm -ubs -iiG -pza -azE -cyM -mID -iiG -ubs -qdG -mlu -mge -rTm +uwv +yfP +aER +kIH +rZt +gbT +ezM +aER +yfP +nWe +kyn +sHo +wnp kBZ kBZ ryD ryD apj -rpz +xwu ryD ryD kbQ @@ -52624,36 +52624,36 @@ eyt eyt eyt wqb -rpz -nIm -rpz +xwu +omI +xwu wqb eyt eyt eyt eyt wVf -chk -cKa -mLe -ckO +str +dAB +nXt +vgI wVf -dRJ -wOP -nrF -sPW +kHn +uUe +hDj +dMc wVf -lUF -uST -yic +nht +qzQ +hqv wVf -iCb -sOe -qJB +lxu +oOm +aQn wVf -foq -nIm -rpz +fja +omI +xwu vHs dmN iYi @@ -52661,18 +52661,18 @@ iYi iYi rjn vHs -nzc -iDC -lfL -hge -uYx -iDC -oQK +qwK +kFF +hny +auw +vyC +kFF +eZL bkM -raB -sOn -mQu -iPp +mwJ +tHn +uel +dmE xxk iFb mCF @@ -52688,11 +52688,11 @@ aOg mCF iDn xxk -ntC -iCL -iCL -iCL -iCL +xqI +bfB +bfB +bfB +bfB ksX aOg mCF @@ -52707,39 +52707,39 @@ wUU "} (122,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -jGB -fPM -fPM -fPM -fPM -fPM -fPM -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM +tEX +pri +pri +pri +pri +pri +pri +pri +pri dXg dXg -fPM -sxs -nJr -mKM +pri +glU +nua +bZM jKW hej -fQf +hrf oGv oGv -qWJ +wYE oGv fZX nOM -mKM +bZM jKW hej rMb @@ -52749,16 +52749,16 @@ oGv oGv oGv svt -mKM +bZM mmO oGv oGv oGv cFw ngY -rkE -dmU -rkE +rFN +bZR +rFN kPZ cFw cFw @@ -52770,23 +52770,23 @@ jJC pFd vuQ cel -rkE -rkE +rFN +rFN nwq cFw cFw fsC wOO -iXC -ubs -iiG -pza -blv -wOX -mID -cmP -ubs -oDm +rJQ +yfP +aER +kIH +eqV +jBK +ezM +sHP +yfP +gSz wOO wOO wOO @@ -52795,8 +52795,8 @@ wOO oSX wOO jPM -rpz -rpz +xwu +xwu ryD lFk kbQ @@ -52806,9 +52806,9 @@ eyt jqw eyt wqb -rpz -nIm -rpz +xwu +omI +xwu wqb wqb wqb @@ -52820,22 +52820,22 @@ xvF wVf xvF wVf -rtY -ion -nrF -mly -fcv -nrF -fjm -nrF +jlW +bRX +hDj +jDm +dto +hDj +oiz +hDj wVf -fBx -wrs -sFx +nKQ +cGg +wIw wVf -rpz -nIm -rpz +xwu +omI +xwu vHs vHs vHs @@ -52853,10 +52853,10 @@ eHl uXS uXS uXS -mQu -iCL +uel +bfB xxk -xEi +hfg mCF mCF aOg @@ -52871,11 +52871,11 @@ mCF iDn xxk qAS -dAD +wki dDG -kyY -nUJ -eUL +ith +ntq +kAe aOg aOg aOg @@ -52889,96 +52889,96 @@ wUU "} (123,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -fPM -fPM -hNG -hNG -hNG -hNG +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +pri +pri +pri +pri +cVW +cVW +cVW +cVW kgp -hNG -hNG -kGL -dxr -tgp -dxr +cVW +cVW +wKp +lxj +iYF +lxj geK -eZa +hEX wlB wlB wlB -uGq +dUy mnU -dxr -tgp -dxr +lxj +iYF +lxj geK wlB wlB lTg -uGq +dUy wlB mnU -vSM -dxr -jdc +mtW +lxj +eBX lTg wlB wlB -aRf -aRf -lQv -pVs -rkE +oLz +oLz +lKC +pnM +rFN qKM -sWT +cra cFw cFw ihY cFw -eKm -rkE +hmy +rFN nwq gwD cFw -rkE -rkE +rFN +rFN cFw cFw cFw nwq oSX -xqw -ubs -iiG -pza -sWl -oOU -mID -fxH -ubs -jBI +mir +yfP +aER +kIH +sBn +qHO +ezM +uZS +yfP +gxG wOO -aSk -aSk -oxK -lLo -kKr +aOx +aOx +pOr +mJd +seO wOO -sOB -rpz -rpz +lKl +xwu +xwu ryD kbQ kbQ @@ -52988,57 +52988,57 @@ jqw kbQ eyt wqb -rqh -hzQ -fQb -fQb -fQb -fQb -fQb -wlp -fQb -fQb -fQb -fQb -fQb -eLD -mCu -pbZ -sZf -ppY +rHl +emf +egS +egS +egS +egS +egS +hWL +egS +egS +egS +egS +egS +bUu +emo +pKY +cbH +kxX wVf wVf -jVO +qoL wVf wVf -iqp -wrs -qJB -aWt -rpz -fDG +oBl +cGg +aQn +vrX +xwu +dOc ryD -rpz +xwu kfG eyt eyt uXS -hRL +cHs kNa -iqg -hgy -dMg +dwo +rtq +sgd uXS -lbt -hgy -iqg +xWn +rtq +dwo kNa -ftv +iyh uXS -mQu -iCL +uel +bfB mMu -xEi +hfg mCF aOg aOg @@ -53052,12 +53052,12 @@ mCF mCF xEG xxk -iCL -iCL -iCL -noo -sqw -eUL +bfB +bfB +bfB +vYq +nIc +kAe aOg aOg aOg @@ -53071,30 +53071,30 @@ wUU "} (124,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -xlh -fPM -jGB -jGB -fPM -fPM -pqo -pqo -pqo +ukB +qjb +qjb +qjb +qjb +qjb +qjb +aCP +pri +tEX +tEX +pri +pri +qZE +qZE +qZE kgp -hNG -hNG +cVW +cVW fpq kVq -dxr -eif -dxr +lxj +pyU +lxj geK wlB lTg @@ -53102,9 +53102,9 @@ wlB wlB wlB mnU -dxr -jIt -dxr +lxj +reo +lxj geK wlB wlB @@ -53113,16 +53113,16 @@ wlB wlB mnU wlB -sYC -dxr -oHs -eZa +jaX +lxj +mSh +hEX wlB wlB -wer +fll cel -rkE -rkE +rFN +rFN cFw ihY cFw @@ -53130,97 +53130,97 @@ cFw vYy deE nwq -ncb +rqy xfz ihY cel -rkE -rkE -rkE -rkE +rFN +rFN +rFN +rFN cFw nwq oSX -rDv -ubs -iiG -lrY -hkF -sOY -lrY -iiG -ubs -jBI +jvf +yfP +aER +suB +irA +nrf +suB +aER +yfP +gxG oSX -jHH -jHH -jHH -jHH -aCx +bqx +bqx +bqx +bqx +piz oSX -nIm -rpz -rpz +omI +xwu +xwu wqb -udI +hTi kbQ kbQ kbQ kbQ kbQ lFk -nhu -rpz -nIm -rpz -bUS -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -fcv -rwp -ebs -wOP -nRl -fcv -rfu -ith -lUM -fcv -fyL -wrs -lBd -aWt +fzY +xwu +omI +xwu +cPz +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +dto +oxo +tbw +uUe +ycO +dto +wyH +nCi +gbL +dto +axK +cGg +vyB +vrX ryD -nIm -rpz -rpz +omI +xwu +xwu kfG eyt eyt uXS uXS uXS -tXH -hgy -abO +lYR +rtq +wBP uXS -iqg -hJn -mDI +dwo +jGc +ebt uXS uXS uXS -mQu -iCL -iCL -xEi +uel +bfB +bfB +hfg mCF aOg mCF @@ -53235,10 +53235,10 @@ mCF ksX dzH xxk -iCL -iCL -iCL -qqU +bfB +bfB +bfB +oiY ksX lVQ xGV @@ -53253,30 +53253,30 @@ wUU "} (125,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -tlD -fPM -ogc -fPM +ukB +qjb +qjb +qjb +qjb +qjb +qjb fPM -fPM -hNG -hNG -hNG -pqo -hNG -hNG +pri +xix +pri +pri +pri +cVW +cVW +cVW +qZE +cVW +cVW nsN mnU -dxr -dxr -dxr +lxj +lxj +lxj geK vLh hDw @@ -53284,9 +53284,9 @@ qZV qZV oyl mnU -dxr -dxr -dxr +lxj +lxj +lxj geK vLh hDw @@ -53294,114 +53294,114 @@ qZV qZV oyl fmu -tiT +rCa wlB lTg -dxr +lxj wlB lTg wlB cFw cel -rkE -rkE +rFN +rFN cFw cFw -rkE +rFN ebi xmL otH -uOg -rkE +iWX +rFN kDk -nJE +hLo cFw -rkE +rFN uAM cFw cFw cFw tlq oSX -dDC -ubs -iiG -cxq -iiG -fpD -lrY -iiG -ubs -jBI +xxa +yfP +aER +nyI +aER +tEW +suB +aER +yfP +gxG oSX -uGb -uGb -uGb -jHH -aSk +jIR +jIR +jIR +bqx +aOx oSX -nIm -rpz +omI +xwu ryD ryD -udI +hTi kbQ jqw kbQ kbQ kbQ ofC -hrH -rpz -nIm -rpz -rpz -vfi -lVS -rpz -rpz -qiG -lwc -rpz -rpz -jLu -fcv -hna -jjK -wOP -nrF -jwz -nrF -oEC -aqK -fcv -nui -wrs -mvC -aWt +vlj +xwu +omI +xwu +xwu +fSQ +bNR +xwu +xwu +eor +bkx +xwu +xwu +skT +dto +gmS +iSX +uUe +hDj +qPv +hDj +ajc +sDJ +dto +jar +cGg +qYh +vrX ryD wXs -rpz +xwu ryD kfG xAx eyt uXS -hRL +cHs kNa -iqg -xTl -iqg +dwo +msV +dwo uXS -mGn -vOY -iqg +cyf +xUL +dwo kNa -ftv +iyh uXS -mQu -iCL -iCL +uel +bfB +bfB iFb mCF aOg @@ -53435,68 +53435,68 @@ wUU "} (126,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -fPM -fPM -fPM -fPM -pqo -pqo -hNG -hNG -hNG -pqo +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +pri +pri +pri +pri +qZE +qZE +cVW +cVW +cVW +qZE nsN bys kkt -tlk +uek ksu njC riM -dxr -dxr -dxr -tlk +lxj +lxj +lxj +uek xDd rUc -tlk +uek ksu bVe yhZ -dxr -dxr -dxr -tlk +lxj +lxj +lxj +uek wlB -dxr -dxr -scR +lxj +lxj +qXL kgp kgp wlB -uGq +dUy cFw cFw cFw osE cFw cFw -wOo -nLZ +fVJ +hRe cFw tPK -rkE -rkE -rBQ -rkE +rFN +rFN +btZ +rFN qSR wop cFw @@ -53505,38 +53505,38 @@ cFw pGs pGs wOO -kGj -ubs -iiG -gcL -iiG -rQz -oxn -hpr -mYp -dRO +cfV +yfP +aER +qmY +aER +wfb +rxg +vNv +dbR +jAa agM -kKZ -kKZ -pGF -jHH -aSk +uKe +uKe +ago +bqx +aOx oSX -oIe -rpz -rpz -qlc -udI -udI -udI -udI -udI -udI -udI -hrH -rpz -nIm -rpz +pvF +xwu +xwu +dnD +hTi +hTi +hTi +hTi +hTi +hTi +hTi +vlj +xwu +omI +xwu wqb eyt eyt @@ -53548,43 +53548,43 @@ wVf xvF wVf wVf -nrF -nrF -xmW -kby -kby -kby -spX -cTm +hDj +hDj +uKz +qZU +qZU +qZU +lsj +cLh wVf -jDR -wrs -jdt +wig +cGg +rHJ wVf -sOB -nIm -rpz -rpz +lKl +omI +xwu +xwu vph qIF sgk uXS uXS uXS -iiJ -wpD -abO +jHE +fIv +wBP uXS -dNP -hgy -iqg +gBc +rtq +dwo uXS uXS uXS wGQ xxk -iCL -eNg +bfB +dvU mCF jdm mCF @@ -53617,47 +53617,47 @@ wUU "} (127,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -iBQ -wpR -fPM -fPM -jGB -hNG -hNG -hNG -hNG -hNG -pqo +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +atZ +duU +pri +pri +tEX +cVW +cVW +cVW +cVW +cVW +qZE nBc gsC lTg -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj lTg wlB kgp @@ -53675,98 +53675,98 @@ jjj jjj ihY ihY -oHC -rkE -rkE +jul +rFN +rFN cFw cFw gDr -nLZ +hRe nwq cFw cFw pGs wOO -pfJ -ubs -iiG -lrY -fxH -gij -lrY -iiG -ubs -sJv +rVt +yfP +aER +suB +uZS +fkS +suB +aER +yfP +mZX hst -qQg -uGb -sdt -jHH -xPl +pEP +jIR +qli +bqx +kwf wOO -nIm -rpz -rpz +omI +xwu +xwu wqb -udI -udI +hTi +hTi qIF kbQ qIF tTU kbQ -hrH -rpz -nIm -jLu +vlj +xwu +omI +skT wqb eyt eyt eyt eyt wVf -sYI -nrF -nrF -nrF -xsN -nrF -nrF -isS -aJy +twD +hDj +hDj +hDj +eSa +hDj +hDj +uaC +roD wVf -npg -xmW -fCC -kyd -ePH -hZb -bDT +otr +uKz +gjX +qfG +bGh +iLv +cmY wVf -lEN -nIm -rpz -lVS +dHF +omI +xwu +bNR qIF kbQ kbQ uXS -wWF +nvN kNa -aEq -hgy -iqg +cBU +rtq +dwo uXS -bWB -hgy -aEq +qMQ +rtq +cBU kNa -ftv +iyh uXS -mQu -iCL -iCL -eNg +uel +bfB +bfB +dvU mCF mCF mCF @@ -53799,47 +53799,47 @@ wUU "} (128,1,1) = {" wUU -oAe -vVC -vVC -vVC -xJW -vVC -vVC -rBC -iBQ -fPM -fPM -fPM -fPM -hNG -hNG -hNG -hNG -hNG -hNG -pqo +ukB +qjb +qjb +qjb +gqe +qjb +qjb +kss +atZ +pri +pri +pri +pri +cVW +cVW +cVW +cVW +cVW +cVW +qZE nsN usQ -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -dxr -wlB -dxr -dxr +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +lxj +wlB +lxj +lxj wlB kgp kgp @@ -53857,11 +53857,11 @@ cFw epN cFw ihY -fpB -rkE -rkE +ezr +rFN +rFN fSa -rkE +rFN cFw cFw cFw @@ -53869,27 +53869,27 @@ cFw cFw fsC oSX -qae -lRg -hpr -oxn -hpr -mAJ -cbT -aNR -ubs -jPt +imL +sNw +vNv +rxg +vNv +vXq +mJM +teD +yfP +iHt oSX -uGb -mSj -kwg -kKZ -kKZ -gsZ -ruP -fQb -fQb -cee +jIR +fKK +enx +uKe +uKe +jcX +ydw +egS +egS +pVs kbQ kbQ kbQ @@ -53898,9 +53898,9 @@ kbQ sgk eyt wqb -rpz -nIm -rpz +xwu +omI +xwu wqb eyt eyt @@ -53912,23 +53912,23 @@ wVf xvF wVf wVf -pkF -ece -jbD -uFc +pZr +gih +dbE +pFC wVf -itB -xmW -eLh +fKp +uKz +kCP wVf -lKZ -mLG -cAM +kqP +mkk +cyg wVf -vmT -nIm -rpz -rpz +qaq +omI +xwu +xwu kfG nMJ uqW @@ -53936,18 +53936,18 @@ uXS uXS uXS uXS -bkP -abO +qov +wBP uXS -iqg -mrs +dwo +vEz uXS uXS uXS uXS -mQu -iCL -iCL +uel +bfB +bfB iFb hoC mCF @@ -53981,33 +53981,33 @@ wUU "} (129,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -fPM -jGB -ogc -iBQ -fPM -hNG -hNG -hNG -hNG -hNG +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +pri +tEX +xix +atZ +pri +cVW +cVW +cVW +cVW +cVW fpq cVq mtT lTg -fSC -fSC -fSC -dxr -dxr +llS +llS +llS +lxj +lxj kgp kgp kgp @@ -54016,62 +54016,62 @@ kgp kgp kgp kgp -fSC -fSC -fSC -dxr +llS +llS +llS +lxj dOm -dxr -fSC -fSC -fSC -fSC -fSC -dxr +lxj +llS +llS +llS +llS +llS +lxj wlB gDr ihY ihY mgT -qdI -bJi -bJi -bJi -rdY -vmp -bJi -kiC -rkE -vLs -nGP -vLs -nGP -vLs -nGP -vLs -nGP -aUT -mRf -ubs -qmb -lrY -ubs -ubs -cPM -gEM -ubs -jPt +bxt +mjO +mjO +mjO +whE +fxT +mjO +uKO +rFN +cYG +fHG +cYG +fHG +cYG +fHG +cYG +fHG +oCP +kbr +yfP +mFd +suB +yfP +yfP +eFq +imr +yfP +iHt oSX -heq -uGb -qOj -fpQ -fpQ +eTs +jIR +sBG +aIB +aIB wOO -oOj -igA -rpz -nIm +mlm +oEY +xwu +omI kbQ kbQ qIF @@ -54080,9 +54080,9 @@ qIF uet eyt wqb -sCe -nIm -rpz +bJD +omI +xwu wqb eyt eyt @@ -54095,41 +54095,41 @@ xAx kjN wVf xvF -cXV +qmo wVf wVf wVf wVf -dZy +hWb wVf wVf wVf wVf wVf wVf -rqh -nIm -rpz -rpz +rHl +omI +xwu +xwu kbQ kbQ eyt uXS -xfV -aGr +wYw +wxY kNa -uUk -jIH +eAn +kwL uXS -bWB -hgy +qMQ +rtq kNa -iqg -abO +dwo +wBP uXS -mQu -iCL -lFd +uel +bfB +iji iFb cty mCF @@ -54163,24 +54163,24 @@ wUU "} (130,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -rBC -xlh -vBU -qxW -rBC -qVZ -hNG -pqo -hNG -pqo -pqo +ukB +qjb +qjb +qjb +qjb +qjb +qjb +kss +aCP +uFn +hrg +kss +ftO +cVW +qZE +cVW +qZE +qZE nsN wlB kAH @@ -54188,7 +54188,7 @@ kgp kgp wsn wlB -dxr +lxj kgp kgp wlB @@ -54203,27 +54203,27 @@ pNR vll bbK bSQ -cBR -ecK -ecK -cBR -cBR -ecK -cBR -cBR -iDo -soq -uOu -pKS -kfp -uOu -tNY -rQA -lXg -rQA -uOu -uOu -uOu +jXT +til +til +jXT +jXT +til +jXT +jXT +iqP +bMw +bge +dwF +eXV +bge +hBt +wWQ +tck +wWQ +bge +bge +bge cFw cFw nwq @@ -54233,27 +54233,27 @@ gDr cFw mcB oSX -cxh -bmG -bmG -whN -bmG -pac -faJ -uYr -bmG -pDj +ydm +mks +mks +qrn +mks +tHd +hOJ +aaZ +mks +eLH wOO -nfM -fAp -wRe -uws -uws +pTM +syf +tZS +wou +wou oSX -fxG -rpz -rpz -nIm +piv +xwu +xwu +omI ryD ouy ofC @@ -54262,9 +54262,9 @@ jJf cFz eyt wqb -rpz -nIm -rpz +xwu +omI +xwu wqb eyt eyt @@ -54277,40 +54277,40 @@ qIF kbQ qIF kbQ -udI +hTi kbQ eyt wVf -vdA -rYX -uDP +uem +bQM +noH wVf eyt eyt eyt wqb -rpz -nIm -rpz -rpz +xwu +omI +xwu +xwu kbQ kbQ kbQ uXS -hRL -sae +cHs +nfu uXS -hMw -abO +kqy +wBP uXS -uMd -dZJ +kLW +bRc uXS -iqg -ftv +dwo +iyh uXS -mQu -iCL +uel +bfB mxB eHZ aOg @@ -54345,67 +54345,67 @@ wUU "} (131,1,1) = {" wUU -oAe -xJW -vVC -xJW -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -xlh +ukB +gqe +qjb +gqe +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +aCP fpq mwI cVq cVq pZT nsN -lJs +hoD lTg kgp nit wlB -dxr -mSF +lxj +cCo kgp eia lTg -tcY +udM wlB qAy -tlw +wDE wlB -eBI +iQL ggr kgp kyP wlB wlB -ecK -cBR -gKL -ecK -cBR -cBR -cBR -ecK -kuG -lid -lid -mBZ -pKS -pKS -uOu -uOu -iDo -uOu -uOu -uOu -uOu +til +jXT +gTa +til +jXT +jXT +jXT +til +hxm +clw +clw +dEY +dwF +dwF +bge +bge +iqP +bge +bge +bge +bge nwq ebi cFw @@ -54416,14 +54416,14 @@ cFw kuO slE cqC -cRE -whN -bNk +vzp +qrn +nFn wOO wOO -iBB -oyW -iBB +dSf +kda +dSf wOO wOO wOO @@ -54433,10 +54433,10 @@ wOO wOO wOO wqb -rpz -rpz -nIm -rpz +xwu +xwu +omI +xwu tCA kbQ kbQ @@ -54444,9 +54444,9 @@ vcR eyt eyt wqb -rpz -nIm -rpz +xwu +omI +xwu wqb eyt eyt @@ -54459,22 +54459,22 @@ kbQ qIF sgk kbQ -udI +hTi kbQ eyt wVf -olf -pBU -pjN +bOY +mhF +yap wVf eyt eyt wqb wqb -rpz -nIm -rpz -rpz +xwu +omI +xwu +xwu kfG ofC kbQ @@ -54491,8 +54491,8 @@ uXS uXS uXS uXS -mQu -iCL +uel +bfB xxk eHZ aOg @@ -54527,19 +54527,19 @@ wUU "} (132,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -xJW -vVC -oMZ -vVC -tlD +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +gqe +qjb +laI +qjb +fPM nsN xNA xNA @@ -54554,7 +54554,7 @@ wlB bYO lTg wlB -mKc +pcb wlB wlB wlB @@ -54562,36 +54562,36 @@ wlB wlB tgK wlB -dxr +lxj wlB wlB bbK wlB -cBR -cBR +jXT +jXT bSQ -eZa +hEX wlB wlB -dxr +lxj wlB aKJ mrR cFw cFw -sGA -rkE +lsZ +rFN cFw cFw xmL fMI eHv cFw -rkE +rFN cFw cFw cFw -sWT +cra nwq cFw cFw @@ -54603,10 +54603,10 @@ oSX oSX slE xAg -cKQ -plX -kWw -sPd +cyb +uUK +qtd +dyu vVH kBZ kBZ @@ -54615,10 +54615,10 @@ kBZ kBZ kBZ wqb -jLu -rpz -nIm -rpz +skT +xwu +omI +xwu tCA kbQ kbQ @@ -54626,9 +54626,9 @@ eyt eyt eyt wqb -rpz -nIm -rHK +xwu +omI +vtg wqb eyt eyt @@ -54640,40 +54640,40 @@ qIF kbQ kbQ kbQ -yhY -udI -udI +esN +hTi +hTi eyt wVf -sUZ -cGN -gJe +fJk +fhd +dNb wVf eyt eyt wqb -qnu -rpz -bWC -fQb -fQb -fQb -fQb -fQb -bEt -fQb -fQb -fQb -ruP -fQb -tZk -fQb -ruP -xxB -fQb -nwk -cpH -mcT +rLL +xwu +vxb +egS +egS +egS +egS +egS +qcX +egS +egS +egS +ydw +egS +rCv +egS +ydw +ska +egS +ukg +eYk +rjp mMu xhA eHZ @@ -54709,22 +54709,22 @@ wUU "} (133,1,1) = {" wUU -oAe -vVC -vVC -vVC -xJW -vVC -vVC -vVC -vVC -vVC -xJW -vVC +ukB +qjb +qjb +qjb +gqe +qjb +qjb +qjb +qjb +qjb +gqe +qjb wcb wlH tMZ -uGq +dUy wlB beK mtT @@ -54732,33 +54732,33 @@ kgp kgp wlB wlB -tlw +wDE wlB jwX -dxr -dxr +lxj +lxj sKz wlB tez tmZ rXk wlB -dxr -tlw +lxj +wDE wlB bbK -lJs +hoD dWV -ecK -cJQ +til +ttY wlB wlB kgp doH -fSC +llS bbK xmL -wer +fll icm cFw nwq @@ -54769,11 +54769,11 @@ cFw pll jNn eNA -rkE +rFN cFw -rkE -rkE -rkE +rFN +rFN +rFN cFw cFw nwq @@ -54785,10 +54785,10 @@ xSZ qEt biS vVH -rUT -plX -kWw -jkv +mJx +uUK +qtd +enV vVH kBZ kBZ @@ -54797,10 +54797,10 @@ kBZ kBZ kBZ wqb -rqh -rpz -nIm -xsu +rHl +xwu +omI +oqW ouy kbQ kbQ @@ -54808,9 +54808,9 @@ kbQ eyt eyt wqb -rqh -nIm -cKU +rHl +omI +gYx wqb eyt eyt @@ -54822,7 +54822,7 @@ kbQ kbQ ofC tTU -udI +hTi sgk jqw eyt @@ -54834,28 +54834,28 @@ wVf eyt eyt wqb -api -rpz -nIm -rpz -lVS -rpz -rpz +gGL +xwu +omI +xwu +bNR +xwu +xwu ryD -rpz -rpz -rpz -rpz -rpz +xwu +xwu +xwu +xwu +xwu ryD -rpz -rpz -rpz -rpz -rpz -iCL -oQH -ntC +xwu +xwu +xwu +xwu +xwu +bfB +skZ +xqI wNz xxk eHZ @@ -54891,24 +54891,24 @@ wUU "} (134,1,1) = {" wUU -oAe -xJW -vVC -xJW -vVC -vVC -vVC -vVC -vVC -xJW -xJW -xJW +ukB +gqe +qjb +gqe +qjb +qjb +qjb +qjb +qjb +gqe +gqe +gqe pCa tMZ wlB eia wlB -uGq +dUy lTg wlB wlB @@ -54922,22 +54922,22 @@ wlB wlB qNX ehY -pqo +qZE nsN lTg -dxr -dxr +lxj +lxj gjC wlB wlB dWV -cBR -cJQ +jXT +ttY wlB kgp kgp kgp -fSC +llS wlB cFw tPK @@ -54946,16 +54946,16 @@ nwq cFw cFw cel -rkE +rFN cFw tPK qkq xpe -rkE -rkE -rkE -kic -eIR +rFN +rFN +rFN +mQY +aKt cFw cFw cFw @@ -54967,10 +54967,10 @@ nwq nwq oep vVH -xRz -qwr -kWw -jkv +eMM +rnF +qtd +enV vVH kBZ kBZ @@ -54979,20 +54979,20 @@ kBZ kBZ kBZ wqb -jWg -rpz -nIm -rpz -oBn +kdQ +xwu +omI +xwu +pUy kbQ kbQ kbQ eyt eyt wqb -rpz -nIm -rpz +xwu +omI +xwu wqb eyt eyt @@ -55004,7 +55004,7 @@ kbQ kbQ kbQ kbQ -udI +hTi kbQ kbQ kbQ @@ -55017,28 +55017,28 @@ eyt eyt wqb wqb -rpz -nIm -hrK -lVS -pnY -rpz -rpz -rHK +xwu +omI +lnn +bNR +iol +xwu +xwu +vtg ryD ryD -rpz -rpz -rpz -jLu -lVS +xwu +xwu +xwu +skT +bNR ryD -pnk -rpz -lrs -sOn -wHb -iCL +euG +xwu +ptr +tHn +aUb +bfB xxk hBA mCF @@ -55073,18 +55073,18 @@ wUU "} (135,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb wfR dYd wlB @@ -55100,26 +55100,26 @@ wlB lTg wlB wlB -lJs +hoD wlB beK cVq cVq mtT wlB -dxr -dxr +lxj +lxj wlB -rJP +ktf lTg wlB -cBR -cBR +jXT +jXT lTg wlB gjC kgp -fSC +llS wlB cFw ihY @@ -55128,20 +55128,20 @@ ihY cSc jrr jrr -fMz +vmz jrr cSc cCk cFw cFw -rkE -rkE -rkE -eIR +rFN +rFN +rFN +aKt nwq cFw cFw -kmg +aOt cFw nwq wUF @@ -55149,10 +55149,10 @@ cFw cFw uFO vVH -kWw -fft -kWw -kWw +qtd +aKw +qtd +qtd vVH kBZ kBZ @@ -55162,9 +55162,9 @@ kBZ kBZ wqb wqb -rpz -nIm -atb +xwu +omI +ilq ouy kbQ kbQ @@ -55172,10 +55172,10 @@ kbQ eyt eyt wqb -sOB -nIm -rpz -nhu +lKl +omI +xwu +fzY jqw kbQ kbQ @@ -55186,7 +55186,7 @@ kbQ mED kbQ sgk -udI +hTi kbQ kbQ kbQ @@ -55199,19 +55199,19 @@ eyt eyt eyt wqb -rpz -nIm -rpz +xwu +omI +xwu ouy ouy ouy wVp iwT ouy -wIp -wIp -wIp -wIp +dEK +dEK +dEK +dEK ouy ouy ouy @@ -55255,18 +55255,18 @@ wUU "} (136,1,1) = {" wUU -oAe -vVC -xJW -vVC -vVC -vVC -vVC -xJW -vVC -vVC -oPq -xJW +ukB +qjb +gqe +qjb +qjb +qjb +qjb +gqe +qjb +qjb +jxU +gqe xDE wlB wlB @@ -55275,31 +55275,31 @@ lTg wlB wlB wlB -lJs +hoD wlB wlB wlB -uGq +dUy wlB lTg wlB -uGq +dUy wlB wlB lTg wlB wlB -lJs +hoD wlB -eZa +hEX wlB wlB wlB -cBR -vno +jXT +tMF doH -uiA -dxr +dQf +lxj wlB lTg wlB @@ -55311,30 +55311,30 @@ nwq cFw nwq nwq -dPd +fDK ihY ihY cFw ykU -rkE +rFN nwq cFw fSa cFw -rkE -rkE -rkE -rkE +rFN +rFN +rFN +rFN cFw cFw cFw dgY kuO vVH -kWw -fqW -kWw -kWw +qtd +huN +qtd +qtd vVH kBZ kBZ @@ -55344,9 +55344,9 @@ kBZ kBZ kBZ wqb -rpz -nIm -jLu +xwu +omI +skT ouy sgk kbQ @@ -55354,9 +55354,9 @@ qIF eyt eyt wqb -qnu -nIm -rpz +rLL +omI +xwu wqb kbQ sgk @@ -55365,10 +55365,10 @@ kbQ kbQ kbQ kbQ -udI -udI -wYZ -udI +hTi +hTi +dDf +hTi kbQ kbQ sgk @@ -55381,9 +55381,9 @@ jqw eyt eyt eyt -rqh -nIm -rpz +rHl +omI +xwu ouy eyt eyt @@ -55437,21 +55437,21 @@ wUU "} (137,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -xJW -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +gqe +qjb +qjb iWj wlB -lJs +hoD lTg wlB wlB @@ -55476,11 +55476,11 @@ wlB lTg wlB wlB -rPY -ecK -cBR +eku +til +jXT wlB -uGq +dUy wlB wlB rBq @@ -55489,7 +55489,7 @@ xmL deE cFw cFw -rkE +rFN cFw cFw cFw @@ -55498,7 +55498,7 @@ cFw deq cFw cFw -rkE +rFN cFw mEs ihY @@ -55506,17 +55506,17 @@ wop cFw cFw cFw -rkE +rFN cFw cFw -nLZ +hRe cFw kuO vVH -kWw -plX -nmw -kWw +qtd +uUK +iAO +qtd vVH kBZ wqb @@ -55526,19 +55526,19 @@ wqb kBZ kBZ wqb -rpz -nIm -jLu -oBn +xwu +omI +skT +pUy sgk kbQ jqw eyt eyt wqb -rpz -nIm -rpz +xwu +omI +xwu tFQ iyv tTU @@ -55547,10 +55547,10 @@ kbQ jqw kbQ kbQ -udI -udI -udI -udI +hTi +hTi +hTi +hTi eyt eyt kbQ @@ -55563,9 +55563,9 @@ kbQ eyt eyt eyt -rpz +xwu wXs -rpz +xwu ouy eyt kbQ @@ -55619,18 +55619,18 @@ wUU "} (138,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -oMZ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +laI iWj hPq wlB @@ -55651,27 +55651,27 @@ wlB chX lTg lTg -woe +qlE lTg lTg -woe -woe -woe +qlE +qlE +qlE lTg lTg -ecK -cBR +til +jXT wlB wlB wlB wlB -fSC +llS wlB xmL cFw cFw cFw -rkE +rFN cFw cFw cFw @@ -55680,47 +55680,47 @@ cFw tEM hzx cFw -rkE +rFN nwq nwq ihY ihY cFw mDm -nLZ +hRe nwq -rkE +rFN cFw cFw cFw kuO vVH -sfb -plX -kWw -wll +dRT +uUK +qtd +nJX aoC vVH rql -rry -jWT +iAw +mWj vVH wqb kBZ wqb -rpz -nIm -hel +xwu +omI +kaH ouy kbQ sgk kbQ eyt wqb -qiG -rpz -nIm -rpz +eor +xwu +omI +xwu tWA tWA tLu @@ -55729,7 +55729,7 @@ wqb wqb tWA gey -hrH +vlj tWA wqb wqb @@ -55737,17 +55737,17 @@ wqb wqb tLu tLu -rpz -rpz -rpz +xwu +xwu +xwu wqb tLu wqb wqb wqb -rpz -nIm -rpz +xwu +omI +xwu ouy eyt qIF @@ -55801,18 +55801,18 @@ wUU "} (139,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb rJv rXk lTg @@ -55842,18 +55842,18 @@ jqd lTg lTg lTg -pKl +uIc wlB -cBR +jXT wlB lTg -fSC +llS wlB -uOy -rkE +hxu +rFN cFw cFw -rkE +rFN cFw cFw nwq @@ -55861,8 +55861,8 @@ ihY ihY fxX iaH -wxx -aeD +rKs +pSL jjj hjn ihY @@ -55871,65 +55871,65 @@ cFw cFw cFw cFw -rkE -rkE +rFN +rFN cFw cFw kuO uti -dzx -plX -kWw -kWw -kWw -kWw -jSs -kWw -kWw -fuU -qlc -rpz -rpz -rpz -nIm -rpz +qfQ +uUK +qtd +qtd +qtd +qtd +eqP +qtd +qtd +tWS +dnD +xwu +xwu +xwu +omI +xwu ouy tCA kbQ tCA wqb wqb -rpz -rpz -nIm -rpz -rpz -rpz -rpz -rpz -rHK -rpz +xwu +xwu +omI +xwu +xwu +xwu +xwu +xwu +vtg +xwu ryD ryD -rpz +xwu keY -rpz -lVS -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz -rpz +xwu +bNR +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu +xwu wXs -rpz +xwu kbQ kbQ kbQ @@ -55983,21 +55983,21 @@ wUU "} (140,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -olZ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +wUX nsN -uGq +dUy wlB lTg wlB @@ -56022,17 +56022,17 @@ wlB wlB wlB lTg -dhD +htR pXT rhu wlB lTg wlB hPq -dxr +lxj wlB xmL -dPd +fDK cFw cFw cFw @@ -56040,11 +56040,11 @@ ebi cFw ihY ihY -pWl +vUu nwq -rBQ -rkE -rkE +btZ +rFN +rFN cFw epN cFw @@ -56053,65 +56053,65 @@ vbS cFw cFw cFw -rkE -rkE +rFN +rFN cFw nwq ezU uti -fEg -sNj -gGi -gGi -gGi -wLM -gGi -gGi -gGi -gGi -fQb -fQb -fQb -fQb -ruP -fQb -fQb -fQb -fQb -fQb -fQb -iSZ -fQb -fQb -ruP -jUd -fQb -fQb -fQb -fQb -scT -fQb -wlp -fQb -fQb -fQb -fQb -fQb -fQb +sSd +qJj +hsD +hsD +hsD +uBj +hsD +hsD +hsD +hsD +egS +egS +egS +egS +ydw +egS +egS +egS +egS +egS +egS +dgI +egS +egS +ydw +mKH +egS +egS +egS +egS +rlN +egS +hWL +egS +egS +egS +egS +egS +egS xza -fQb -fQb -fQb -wlp -fQb -fQb -fQb -rac -fQb -fQb -fQb -tDO -rpz +egS +egS +egS +hWL +egS +egS +egS +oxb +egS +egS +egS +xOW +xwu kbQ ofC kbQ @@ -56165,19 +56165,19 @@ wUU "} (141,1,1) = {" wUU -oAe -vVC -vVC -vVC -xJW -vVC -vVC -vVC -vVC -vVC -swO -oMZ -xlh +ukB +qjb +qjb +qjb +gqe +qjb +qjb +qjb +qjb +qjb +pdQ +laI +aCP nsN wlB wlB @@ -56208,10 +56208,10 @@ lTg wlB lTg lTg -cBR +jXT kgp kgp -fSC +llS wlB cFw tPK @@ -56224,75 +56224,75 @@ cFw ihY fvV cFw -eIR +aKt cFw cFw -nLZ +hRe nwq cFw cFw cFw nwq cFw -rkE -rkE +rFN +rFN cFw cFw nwq kuO uti -vAm -kWw -kWw -kWw -kWw -kWw -kWw -dcQ -kWw -kWw -rpz -rpz -rpz -rpz -rpz +nei +qtd +qtd +qtd +qtd +qtd +qtd +edX +qtd +qtd +xwu +xwu +xwu +xwu +xwu ryD ryD oPV -rpz -rpz -qZO -nhu -rpz -rpz -rpz -rpz -rpz -rpz -lVS -rpz -rpz -rpz -rpz -vfi -rpz -rpz -rpz -rpz -rpz -wTk -rpz -rpz -vfi -rpz -rpz -rpz -rpz -lVS -rpz -rpz -rpz -pnk +xwu +xwu +hFv +fzY +xwu +xwu +xwu +xwu +xwu +xwu +bNR +xwu +xwu +xwu +xwu +fSQ +xwu +xwu +xwu +xwu +xwu +jgE +xwu +xwu +fSQ +xwu +xwu +xwu +xwu +bNR +xwu +xwu +xwu +euG ryD kbQ kbQ @@ -56347,19 +56347,19 @@ wUU "} (142,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -rBC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +kss nsN wlB wlB @@ -56393,20 +56393,20 @@ rhu wlB kgp kgp -fSC +llS wlB cFw cFw ihY ihY -dPd +fDK cFw cFw nwq cFw -fpB +ezr cFw -eIR +aKt cFw nwq cFw @@ -56416,39 +56416,39 @@ cFw cFw ihY wop -dIV -aeD +rRR +pSL jjj jjj -mLZ +ayY tdt xAg xAg -hJm -jWT -jWT +fwS +mWj +mWj vVH vVH vVH vVH vVH vVH -wPK -rpz -rpz -wPK -vfi +aIl +xwu +xwu +aIl +fSQ sVr ryD ryD -rpz -ikA -sPe -nhu -vfi -rpz -rpz -uGn +xwu +dlt +nBC +fzY +fSQ +xwu +xwu +qdl wqb wqb tLu @@ -56457,21 +56457,21 @@ wqb wqb wqb wqb -nhu +fzY tLu tWA gey tWA wqb wqb -nhu +fzY wqb -nhu +fzY wqb wqb tLu -nhu -nhu +fzY +fzY wqb iwT wVp @@ -56529,18 +56529,18 @@ wUU "} (143,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -oMZ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +laI ovT mtT wlB @@ -56571,11 +56571,11 @@ wlB wlB wlB lTg -crt -cBR +wwX +jXT eia kgp -fSC +llS wlB cFw nwq @@ -56588,18 +56588,18 @@ cFw cFw cFw cFw -rkE +rFN cFw ihY ihY cFw -rkE +rFN cFw ihY ihY xfz cFw -rkE +rFN cFw eHs cFw @@ -56616,20 +56616,20 @@ bzz fNm vVH oET -kAs -uUi +dMe +dem oET oET iwT iwT iwT -oBn +pUy tCA ouy ouy ouy tCA -oBn +pUy ouy ouy kbQ @@ -56642,7 +56642,7 @@ kbQ kbQ kbQ kbQ -udI +hTi kbQ kbQ liq @@ -56711,18 +56711,18 @@ wUU "} (144,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ iWj wlB gjC @@ -56754,11 +56754,11 @@ lTg uHD rhu lTg -dNr +cVb wlB kgp -fSC -uGq +llS +dUy nwq cFw cFw @@ -56766,22 +56766,22 @@ nwq cFw cFw cFw -rBQ +btZ cFw cFw cFw -rkE +rFN cFw uAM ihY cFw -stA +iYJ cFw ejk nwq -eMP +qQu cFw -rkE +rFN nwq cFw cFw @@ -56893,18 +56893,18 @@ wUU "} (145,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ iWj wlB wlB @@ -56923,7 +56923,7 @@ wlB wlB wlB wlB -idJ +rmW wlB wlB wlB @@ -56935,8 +56935,8 @@ wlB lTg lTg lTg -eFZ -cBR +nUs +jXT wlB kgp kgp @@ -56946,19 +56946,19 @@ cFw cFw xfz cel -rkE -rkE -rkE -uGh -rkE -rkE -eIR +rFN +rFN +rFN +xzi +rFN +rFN +aKt cFw cFw cFw cFw cFw -rkE +rFN pll cFw cFw @@ -57075,23 +57075,23 @@ wUU "} (146,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI +pdQ xDE wlB lTg wlB -lJs +hoD wlB lTg lTg @@ -57118,8 +57118,8 @@ lTg pXT lTg cxT -kHx -dxr +tuh +lxj kgp kgp wlB @@ -57146,7 +57146,7 @@ eHs cFw nwq bGU -aND +sYD bGU bGU rvD @@ -57156,7 +57156,7 @@ rvD bGU rvD rvD -tOg +qnj bGU bGU rvD @@ -57257,18 +57257,18 @@ wUU "} (147,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oPq +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +jxU rJv rXk wlB @@ -57308,11 +57308,11 @@ lTg cFw cFw xmL -rkE -rkE +rFN +rFN cFw cFw -kip +uDX cFw cFw cFw @@ -57322,14 +57322,14 @@ nwq nwq cFw cFw -stA +iYJ tPK udp cFw bGU bGU -aND -pfv +sYD +nfO bGU bGU trI @@ -57439,19 +57439,19 @@ wUU "} (148,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -qxW +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hrg nsN wlB lTg @@ -57482,22 +57482,22 @@ uHD wlB lTg dOl -cBR +jXT wlB kgp kgp wlB cFw -wer -qvN -rkE +fll +riZ +rFN nwq wop gDr cFw cFw -rkE -rkE +rFN +rFN udp cFw nwq @@ -57506,7 +57506,7 @@ nwq nwq cFw nwq -kmg +aOt nwq bGU bGU @@ -57518,7 +57518,7 @@ rvD bGU bGU bGU -rXw +aVl bGU rvD bLV @@ -57542,13 +57542,13 @@ eyt eyt qIF uqW -sUX -udI +pBZ +hTi qfu -mAd -udI -udI -udI +wre +hTi +hTi +hTi eyt eyt eyt @@ -57621,19 +57621,19 @@ wUU "} (149,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -qxW +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +hrg nsN wlB wlB @@ -57664,7 +57664,7 @@ lTg wlB lTg wlB -cBR +jXT kgp kgp kgp @@ -57678,7 +57678,7 @@ cFw cFw cFw cFw -rkE +rFN cFw fSa fSa @@ -57697,7 +57697,7 @@ trI bGU bLV bGU -tOg +qnj bGU rvD bGU @@ -57706,13 +57706,13 @@ bGU bGU bGU rvD -rXw +aVl bGU bGU bGU bGU bGU -tOg +qnj rvD bGU bGU @@ -57726,9 +57726,9 @@ tXu tXu ouy ouy -vEn -hMY -wAE +xbU +nZE +iLW ouy ouy tXu @@ -57739,8 +57739,8 @@ tXu tXu tXu tXu -eET -udI +mjc +hTi kbQ qIF qfu @@ -57803,19 +57803,19 @@ wUU "} (150,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -vBU +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +uFn nsN hPq wlB @@ -57842,14 +57842,14 @@ wlB wlB wlB lTg -thl +xsP uHD lTg lTg -cBR -dxr +jXT +lxj kgp -fSC +llS lTg cFw nwq @@ -57884,7 +57884,7 @@ bGU lzT bGU rvD -kex +lir bGU bGU bGU @@ -57906,11 +57906,11 @@ eyt eyt eyt eyt -qLe +xsF ouy -mnO -irL -irL +vMb +ach +ach ouy nhI vjO @@ -57921,8 +57921,8 @@ oAJ liz vDP ouy -eXF -krX +iKl +tDC kkc vqK kbQ @@ -57985,26 +57985,26 @@ wUU "} (151,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -rBC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +kss nsN wlB -eZa +hEX lTg wlB lTg -lJs +hoD lTg lTg lTg @@ -58027,11 +58027,11 @@ lTg lTg lTg lTg -cBR -cBR -dxr +jXT +jXT +lxj wlB -fSC +llS wlB cFw ykU @@ -58050,7 +58050,7 @@ pgn kgA nwq kyp -sUd +wlm kyp kyp kyp @@ -58102,12 +58102,12 @@ fPJ bGU oBq kjr -nzV -hpa -qcl -mho -mac -eET +mfe +eLy +tHi +kPH +ukc +mjc pGs pGs pGs @@ -58167,18 +58167,18 @@ wUU "} (152,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI wHt mtT wlB @@ -58197,12 +58197,12 @@ lTg lTg wlB gjC -lJs +hoD lTg lTg lTg lTg -uGq +dUy wlB lTg wlB @@ -58210,19 +58210,19 @@ wlB lTg wlB wlB -cBR -dxr +jXT +lxj wlB -fSC +llS wlB cFw cFw -qvN -stA +riZ +iYJ nwq cFw cFw -dPd +fDK nNB cFw cFw @@ -58237,8 +58237,8 @@ cFh kyp elI fWd -sbV -sbV +wqv +wqv pjD dTG cFh @@ -58284,11 +58284,11 @@ huE lzT bGU rKS -tkI -uDi -xJR -udI -oNl +dGC +iZc +xsb +hTi +scT pGs pGs pGs @@ -58349,18 +58349,18 @@ wUU "} (153,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ iWj wlB lTg @@ -58370,7 +58370,7 @@ wlB wlB lTg wlB -uGq +dUy wlB wlB wlB @@ -58393,14 +58393,14 @@ wlB lTg wlB wlB -dxr -dxr -fSC +lxj +lxj +llS wlB cFw nwq ihY -ijV +dri gcB jNE cFw @@ -58418,10 +58418,10 @@ dTG kyp kyp hds -puG -wGf -tqL -sbV +oNE +iUi +tNN +wqv qvS hWv bGU @@ -58430,7 +58430,7 @@ rvD lzT bGU vNB -tOg +qnj bGU bGU bGU @@ -58439,7 +58439,7 @@ bGU bGU rvD bGU -kex +lir bGU rvD bGU @@ -58451,7 +58451,7 @@ bGU bGU bGU kyD -kex +lir qZJ bGU kyD @@ -58466,9 +58466,9 @@ huE lzT lzT gzm -irL -krX -kLV +ach +tDC +goX ouy ouy huF @@ -58507,7 +58507,7 @@ bsf bsf bsf bsf -gGX +xLR bsf bsf pDX @@ -58531,25 +58531,25 @@ wUU "} (154,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ rJv rXk wlB wlB wlB wlB -uGq +dUy wlB wlB wlB @@ -58568,7 +58568,7 @@ phk wlB wlB bnH -lJs +hoD wlB wlB lTg @@ -58577,7 +58577,7 @@ wlB lTg hPq kgp -fSC +llS wlB nwq cFw @@ -58588,22 +58588,22 @@ ihY nwq nwq wUF -sUd +wlm lci kyp kyp nCF kGJ plq -sbV +wqv qvS kyp -jPi +kci hds -tqL -sbV -sbV -sbV +tNN +wqv +wqv +wqv qvS kyp bGU @@ -58643,7 +58643,7 @@ kyD bGU bGU kyD -rXw +aVl fFw pYI huE @@ -58713,19 +58713,19 @@ wUU "} (155,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ -rBC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI +kss nsN tLS wlB @@ -58740,7 +58740,7 @@ wlB wlB wlB lTg -lJs +hoD wlB xCZ wlB @@ -58759,7 +58759,7 @@ wlB lTg kgp kgp -dxr +lxj wlB kyp kyp @@ -58777,17 +58777,17 @@ kyp kyp cFh hds -sbV +wqv qvS kyp kyp hds -sbV -wGf -wGf -wGf +wqv +iUi +iUi +iUi qvS -fWt +vPJ bGU rvD bGU @@ -58799,7 +58799,7 @@ bGU lzT lzT bGU -rXw +aVl bLV bGU bGU @@ -58860,7 +58860,7 @@ bsf bsf bsf bsf -aOu +gRU bsf bsf pDX @@ -58878,7 +58878,7 @@ bsf bsf bsf bsf -aOu +gRU bsf bsf bsf @@ -58895,19 +58895,19 @@ wUU "} (156,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss nsN wlB wlB @@ -58918,32 +58918,32 @@ wlB lTg lTg wlB -eZa +hEX wlB wlB wlB wlB wlB pDl -wuy +kJG lTg aCW wlB wlB -eZa +hEX mJH wlB lTg wlB lTg -dxr -kFr +lxj +kqF kgp kgp kyP -dxr +lxj lTg -hkH +gbJ kyp kyp kyp @@ -58959,15 +58959,15 @@ cFh kyp kyp hds -sbV +wqv qvS cFh kyp hds -tqL -sbV -wGf -wGf +tNN +wqv +iUi +iUi pjD dTG bGU @@ -59077,19 +59077,19 @@ wUU "} (157,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -oPq -rBC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +jxU +kss nsN eNk wlB @@ -59107,9 +59107,9 @@ lTg wlB cFZ nti -tcv +akM ayF -wnu +nVW lTg wlB lTg @@ -59118,12 +59118,12 @@ wlB wlB wlB wlB -dxr -dxr +lxj +lxj tMZ pvQ lTg -dxr +lxj wlB kyp cFh @@ -59141,20 +59141,20 @@ elI jek jek fWd -wGf +iUi qvS cFh kyp hds -sbV -wGf -vVv -wGf -sbV +wqv +iUi +wGq +iUi +wqv pjD gPi xfQ -buU +ubR veV jTR bGU @@ -59176,9 +59176,9 @@ bGU rvD lzT bGU -tOg +qnj bLV -rXw +aVl bGU bGU bGU @@ -59192,7 +59192,7 @@ bGU kyD bGU huE -kex +lir bGU huE bGU @@ -59259,21 +59259,21 @@ wUU "} (158,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -xlh +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +aCP nsN -kBl +bLO qAy lTg lTg @@ -59281,7 +59281,7 @@ wlB wlB wlB wlB -uGq +dUy lTg wlB gjC @@ -59289,7 +59289,7 @@ wlB lTg yjH mUv -wZj +fCt sZd wlB gOp @@ -59297,10 +59297,10 @@ wlB qNX rXk wlB -uGq +dUy kAH wlB -dxr +lxj tMZ lTg tmZ @@ -59312,32 +59312,32 @@ kyp jTj elI fWd -wGf -wGf -sbV +iUi +iUi +wqv qvS kyp kyp kyp hds -puG -sbV -wGf -sbV +oNE +wqv +iUi +wqv qvS cFh cFh hds -sbV -wGf -wGf -wGf -sbV -sbV -sbV -buU -buU -buU +wqv +iUi +iUi +iUi +wqv +wqv +wqv +ubR +ubR +ubR ghN rvD bGU @@ -59345,7 +59345,7 @@ qoI gPi gPi jTR -tOg +qnj bGU lzT lzT @@ -59411,16 +59411,16 @@ bsf bsf bsf avD -nxi -nxi +aiX +aiX avD -hnv +kwV cHV wsG -hnv +kwV avD -nxi -nxi +aiX +aiX avD bsf bsf @@ -59441,19 +59441,19 @@ wUU "} (159,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -tlD +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +fPM nBc tmZ rXk @@ -59472,7 +59472,7 @@ tmZ rXk wlB wlB -dxr +lxj lTg kAH wlB @@ -59482,50 +59482,50 @@ wlB lTg wlB wlB -dxr -dxr +lxj +lxj tMZ -cEM -afo -hNG +iem +eqx +cVW pjD jek jek jek fWd -wGf -wGf -wGf -wGf +iUi +iUi +iUi +iUi pjD jek jek jek fWd -wGf -wGf -sbV -wGf +iUi +iUi +wqv +iUi qvS kyp kyp hds -sbV -sbV -sbV -wGf -sbV -sbV -wGf -wGf -wGf -buU +wqv +wqv +wqv +iUi +wqv +wqv +iUi +iUi +iUi +ubR ghN bGU bGU ejM -buU -buU +ubR +ubR veV jTR bGU @@ -59563,7 +59563,7 @@ pYI lzT lzT bGU -rXw +aVl pYI qZJ kyD @@ -59593,16 +59593,16 @@ pDX bsf avD avD -haH -iBN +pNo +biW avD -jWr -orw -orw -jWr +qJw +dRf +dRf +qJw avD -kch -haH +con +pNo avD avD bsf @@ -59623,21 +59623,21 @@ wUU "} (160,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC -hNG -hNG +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss +cVW +cVW jJn wlB wlB @@ -59648,9 +59648,9 @@ nBc tmZ tmZ sXc -hNG -hNG -hNG +cVW +cVW +cVW nsN wlB tLS @@ -59667,48 +59667,48 @@ wlB lTg tMZ fbw -hNG -hNG -hNG -wGf -wGf -wGf -wGf -sbV -wGf -wGf -sbV -wGf -wGf -sbV -wGf -sbV -wGf -sbV -sbV -wGf -wGf +cVW +cVW +cVW +iUi +iUi +iUi +iUi +wqv +iUi +iUi +wqv +iUi +iUi +wqv +iUi +wqv +iUi +wqv +wqv +iUi +iUi pjD jek jek fWd -sbV -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -buU +wqv +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +ubR ghN bGU ylB ejM -buU -wGf -buU +ubR +iUi +ubR veV jTR bGU @@ -59717,7 +59717,7 @@ bGU lzT bGU bGU -rXw +aVl bGU bGU bGU @@ -59733,10 +59733,10 @@ bGU rqg gPi xeU -sbV -eAT -eAT -pAm +wqv +cJG +cJG +eWN kyj gPi bko @@ -59766,7 +59766,7 @@ oWx pDX bsf bsf -aOu +gRU bsf bsf bsf @@ -59774,18 +59774,18 @@ bsf bsf bsf avD -gxa -haH -vwf -xaJ -jWr -jWr -jWr -jWr -xaJ -xXA -haH -haH +hxV +pNo +bhv +utG +qJw +qJw +qJw +qJw +utG +wSK +pNo +pNo avD bsf bsf @@ -59805,34 +59805,34 @@ wUU "} (161,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ -rBC -afo -hNG +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI +kss +eqx +cVW nBc tmZ tmZ tmZ tmZ sXc -afo -hNG -hNG -hNG -pqo -afo -hNG +eqx +cVW +cVW +cVW +qZE +eqx +cVW nBc tmZ tmZ @@ -59849,49 +59849,49 @@ wlB wlB pvQ tMZ -hNG -hNG -hNG -sbV -wGf -wGf -wGf -wGf -wGf -wGf -wGf -sbV -evp -wGf -wGf -wGf -wGf -wGf -wGf -evp -wGf -sbV -sbV -sbV -sbV -sbV -evp -wGf -sbV -wGf -wGf -wGf -puG -wGf -buU +cVW +cVW +cVW +wqv +iUi +iUi +iUi +iUi +iUi +iUi +iUi +wqv +nsa +iUi +iUi +iUi +iUi +iUi +iUi +nsa +iUi +wqv +wqv +wqv +wqv +wqv +nsa +iUi +wqv +iUi +iUi +iUi +oNE +iUi +ubR veV gPi gPi xfQ -buU -wGf -buU -buU +ubR +iUi +ubR +ubR veV jTR bGU @@ -59912,26 +59912,26 @@ bko gPi bko gPi -tzr -sbV -eAT -sbV -eAT -eAT -eAT -sbV -sbV -eAT +gBr +wqv +cJG +wqv +cJG +cJG +cJG +wqv +wqv +cJG ghN pZS kyD bGU bGU pZS -fbD +rYZ bGU bGU -kex +lir rvD bGU rvD @@ -59956,18 +59956,18 @@ bsf bsf bsf avD -iEn -gxa -nVr +krs +hxV +iXh avD -dgd -jWr -jWr -kJU +irr +qJw +qJw +diM avD -wmF -haH -haH +bYp +pNo +pNo avD bsf bsf @@ -59987,42 +59987,42 @@ wUU "} (162,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -qVZ -rBC -tlD -qxW -iuY -qxW -tlD -rBC -rBC -rBC -iuY -qxW -qxW -vBU -rBC -qxW -rBC -tlD -xlh -tlD -rBC -qxW -rBC -iuY +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +ftO +kss +fPM +hrg +rbG +hrg +fPM +kss +kss +kss +rbG +hrg +hrg +uFn +kss +hrg +kss +fPM +aCP +fPM +kss +hrg +kss +rbG rJv tWT uxM @@ -60031,50 +60031,50 @@ tWT uxM loO ifO -rBC -tlD -xlh -tlD -rBC -rBC -tlD -rBC -rBC -xlh -tlD -rBC -rBC -rBC -rBC -xlh -tlD -rBC -rBC -rBC -rBC -tlD -xlh -rBC -qxW -vBU -rBC -qxW -vBU -iuY -vBU -qxW -rBC -wGf -wGf -buU -buU -buU -buU -eaI -wGf -wGf -exG -buU +kss +fPM +aCP +fPM +kss +kss +fPM +kss +kss +aCP +fPM +kss +kss +kss +kss +aCP +fPM +kss +kss +kss +kss +fPM +aCP +kss +hrg +uFn +kss +hrg +uFn +rbG +uFn +hrg +kss +iUi +iUi +ubR +ubR +ubR +ubR +dlE +iUi +iUi +iyA +ubR veV gPi gPi @@ -60090,20 +60090,20 @@ bGU qoI gPi xfQ -eAT -sbV -udl -sbV -udl -sbV -eAT -sbV -sbV -eAT -eAT -sbV -eAT -eAT +cJG +wqv +gKk +wqv +gKk +wqv +cJG +wqv +wqv +cJG +cJG +wqv +cJG +cJG ghN gRj bGU @@ -60113,7 +60113,7 @@ pZS kyD qhO kyD -pfv +nfO bGU bGU rvD @@ -60143,8 +60143,8 @@ avD avD avD avD -lJg -lJg +akU +akU avD avD avD @@ -60169,97 +60169,97 @@ wUU "} (163,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -vVC -oMZ -vVC -vVC -vVC -swO -vVC -oPq -vVC -vVC -vVC -vVC -oMZ -vVC -vVC -vVC -vVC -swO -oPq -swO -swO -vVC -swO -swO -oPq -swO -swO -vtd +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +qjb +laI +qjb +qjb +qjb +pdQ +qjb +jxU +qjb +qjb +qjb +qjb +laI +qjb +qjb +qjb +qjb +pdQ +jxU +pdQ +pdQ +qjb +pdQ +pdQ +jxU +pdQ +pdQ +rln kkF -vVC -vVC -vVC -vVC -oMZ -vVC -vVC -oMZ -vVC -oMZ -vVC -vVC -vVC -vVC -oMZ -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ -vVC -vVC -swO -vVC -vVC -vVC -oPq -swO -vBU -sbV -wGf -wGf -buU -wGf -buU -wGf -wGf -wGf -wGf -buU -buU -buU -buU +qjb +qjb +qjb +qjb +laI +qjb +qjb +laI +qjb +laI +qjb +qjb +qjb +qjb +laI +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI +qjb +qjb +pdQ +qjb +qjb +qjb +jxU +pdQ +uFn +wqv +iUi +iUi +ubR +iUi +ubR +iUi +iUi +iUi +iUi +ubR +ubR +ubR +ubR veV gPi gPi @@ -60270,22 +60270,22 @@ gPi gPi gPi xfQ -buU -buU -eAT -sbV -eAT -tqL -eAT -sbV -sbV -udl -eAT -eAT -sbV -sbV -eAT -sbV +ubR +ubR +cJG +wqv +cJG +tNN +cJG +wqv +wqv +gKk +cJG +cJG +wqv +wqv +cJG +wqv veV bko gPi @@ -60320,18 +60320,18 @@ bsf bsf bsf avD -dxL -qAc -orw -dxL +eqX +rUZ +dRf +eqX brT -yei -jWr +wWy +qJw brT -dxL -qAc -orw -dxL +eqX +rUZ +dRf +eqX avD bsf bsf @@ -60351,130 +60351,130 @@ wUU "} (164,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -swO -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oMZ -vVC -vVC -vVC -vVC -oPq +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +pdQ +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +laI +qjb +qjb +qjb +qjb +jxU kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -qxW -puG -wGf -wGf -wGf -wGf -wGf -wGf -wGf -tqL -sbV -wGf -sbV -wGf -buU -buU -buU -buU -buU -buU -buU -buU -buU -buU -sbV -sbV -eAT -sbV -sbV -eAT -sbV -sbV -eAT -sbV -sbV -sbV -sbV -sbV -sbV -eAT -sbV -sbV -eAT -eaI +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hrg +oNE +iUi +iUi +iUi +iUi +iUi +iUi +iUi +tNN +wqv +iUi +wqv +iUi +ubR +ubR +ubR +ubR +ubR +ubR +ubR +ubR +ubR +ubR +wqv +wqv +cJG +wqv +wqv +cJG +wqv +wqv +cJG +wqv +wqv +wqv +wqv +wqv +wqv +cJG +wqv +wqv +cJG +dlE ghN pZS -nxF -cbA +vnt +scx kyD bGU bGU @@ -60502,18 +60502,18 @@ mMz bsf bsf avD -oRL -jWr -klA -jWr -qKO -jWr -jWr -qKO -jWr -jWr -klA -jWr +sXa +qJw +kJw +qJw +azd +qJw +qJw +azd +qJw +qJw +kJw +qJw avD bsf bsf @@ -60533,131 +60533,131 @@ wUU "} (165,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -lAC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dlR kkF -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -tlD -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -udl -sbV -sbV -eAT -sbV -sbV -eAT -sbV -sbV -sbV -sbV -sbV -eAT -eAT -sbV -eAT -sbV -sbV +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +fPM +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +gKk +wqv +wqv +cJG +wqv +wqv +cJG +wqv +wqv +wqv +wqv +wqv +cJG +cJG +wqv +cJG +wqv +wqv aaG dkS -rsN -qRh -aND +gUq +fyT +sYD bGU qZJ pGs @@ -60680,22 +60680,22 @@ bsf bsf crq ulv -haH +pNo avD bsf avD -dxL -orw -wPG -dxL +eqX +dRf +msL +eqX brT -jWr -jWr +qJw +qJw brT -dxL -orw -orw -dxL +eqX +dRf +dRf +eqX avD bsf gFH @@ -60715,133 +60715,133 @@ wUU "} (166,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -xlh -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -sbV -wGf -wGf -wGf -wGf -sbV -sbV -tqL -sbV -sbV -sbV -sbV -sbV -sbV -eAT -udl -sbV -sbV -eAT -sbV -sbV -sbV -eAT -eAT -sbV -sbV -isg -eAT -sbV -eAT -sbV -sbV -udl -tHP +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +aCP +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +wqv +iUi +iUi +iUi +iUi +wqv +wqv +tNN +wqv +wqv +wqv +wqv +wqv +wqv +cJG +gKk +wqv +wqv +cJG +wqv +wqv +wqv +cJG +cJG +wqv +wqv +pXi +cJG +wqv +cJG +wqv +wqv +gKk +qIp ghN -aND -ewe -vFS -rXw -tOg +sYD +qtO +gPR +aVl +qnj rvD pGs pGs @@ -60861,9 +60861,9 @@ gNE bsf avD ulv -haH -haH -jJs +pNo +pNo +uBk avD avD brT @@ -60871,8 +60871,8 @@ brT brT brT brT -wym -wym +trx +trx brT brT brT @@ -60881,8 +60881,8 @@ brT avD avD ofJ -haH -haH +pNo +pNo crq gFH mMz @@ -60897,127 +60897,127 @@ wUU "} (167,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -lAC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dlR kkF -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -tlD -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -wGf -sbV -wGf -wGf -sbV -wGf -wGf -sbV -sbV -sbV -sbV -sbV -sbV -sbV -udl -eAT -sbV -sbV -eAT -eAT -sbV -sbV -sbV -eAT -udl -eAT -eAT -sbV -sbV -udl -sbV -udl -sbV -buU +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +fPM +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +iUi +wqv +iUi +iUi +wqv +iUi +iUi +wqv +wqv +wqv +wqv +wqv +wqv +wqv +gKk +cJG +wqv +wqv +cJG +cJG +wqv +wqv +wqv +cJG +gKk +cJG +cJG +wqv +wqv +gKk +wqv +gKk +wqv +ubR ghN bGU trI @@ -61044,27 +61044,27 @@ bsf ulv mol mol -xrJ +eVa avD -wTw -wTw -nVZ -wTw -wTw +tXh +tXh +jSb +tXh +tXh brT -orw -jWr -jWr -orw +dRf +qJw +qJw +dRf brT -kqF -kqF -nVZ -rrq -pgd +mez +mez +jSb +aqA +cSr oJX -qXf -haH +tms +pNo ulv gFH bsf @@ -61079,127 +61079,127 @@ wUU "} (168,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC -evp -wGf -wGf -wGf -wGf -wGf -wGf -evp -wGf -wGf -wGf -evp -wGf -wGf -wGf -evp -wGf -sbV -sbV -sbV -puG -sbV -puG -sbV -udl -sbV -giy -sbV -sbV -udl -eAT -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -eAT -eAT -sbV -sbV -buU +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss +nsa +iUi +iUi +iUi +iUi +iUi +iUi +nsa +iUi +iUi +iUi +nsa +iUi +iUi +iUi +nsa +iUi +wqv +wqv +wqv +oNE +wqv +oNE +wqv +gKk +wqv +hdc +wqv +wqv +gKk +cJG +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +cJG +cJG +wqv +wqv +ubR veV jTR bGU @@ -61224,29 +61224,29 @@ bsf bsf mMz crq -haH -haH -haH +pNo +pNo +pNo brT -jWr -orw -nVZ -orw -jWr -wym -lei -jWr -jWr -aDi -fdT -jWr -orw -nVZ -lWr -jdx +qJw +dRf +jSb +dRf +qJw +trx +gws +qJw +qJw +ahV +tvd +qJw +dRf +jSb +qjI +tcP brT -haH -haH +pNo +pNo crq ulv bsf @@ -61261,128 +61261,128 @@ wUU "} (169,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -lAC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dlR kkF -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC -rBC -vBU -qxW -vBU -iuY -tlD -rBC -rBC -rBC -tlD -rBC -xlh -rBC -tlD -rBC -rBC -rBC -xlh -tlD -rBC -rBC -rBC -iuY -rBC -ukC -sbV -sbV -sbV -sbV -sbV -sbV -udl -eAT -sbV -sbV -sbV -sbV -eAT -udl -udl -sbV -sbV -sbV -buU -buU +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss +kss +uFn +hrg +uFn +rbG +fPM +kss +kss +kss +fPM +kss +aCP +kss +fPM +kss +kss +kss +aCP +fPM +kss +kss +kss +rbG +kss +tWt +wqv +wqv +wqv +wqv +wqv +wqv +gKk +cJG +wqv +wqv +wqv +wqv +cJG +gKk +gKk +wqv +wqv +wqv +ubR +ubR ghN bGU bGU @@ -61406,30 +61406,30 @@ bsf bsf bsf ulv -haH +pNo crq -haH +pNo brT -gTB -orw -nVZ -orw -oXM +qxS +dRf +jSb +dRf +tss brT -eeq -pnh -pnh -orw +tGp +vvs +vvs +dRf brT -jWr -orw -nVZ -pSZ -jWr +qJw +dRf +jSb +qyN +qJw brT -haH -oNQ -haH +pNo +gLQ +pNo gFH bsf bsf @@ -61443,128 +61443,128 @@ wUU "} (170,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -oMZ -vVC -vVC -vVC -vVC -vVC -oMZ -vVC -hJi -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -eAT -eAT -eAT -eAT -eAT -eAT -sbV -sbV -sbV -sbV -buU -akx +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +laI +qjb +qjb +qjb +qjb +qjb +laI +qjb +eFP +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +cJG +cJG +cJG +cJG +cJG +cJG +wqv +wqv +wqv +wqv +ubR +gbi ghN bGU bGU @@ -61589,32 +61589,32 @@ bsf bsf ulv ulv -haH -haH +pNo +pNo brT -jWr -orw -nVZ -orw -jWr -nBG -orw -jWr -jWr -orw -nBG -jWr -orw -nVZ -wfW -jWr +qJw +dRf +jSb +dRf +qJw +mpN +dRf +qJw +qJw +dRf +mpN +qJw +dRf +jSb +mZD +qJw brT -haH -haH -haH -haH +pNo +pNo +pNo +pNo bsf -aOu +gRU bsf bsf bsf @@ -61625,128 +61625,128 @@ wUU "} (171,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -lAC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dlR kkF -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -vVC -vVC -vVC -xlh -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -buU +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +qjb +qjb +qjb +aCP +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +ubR ghN bGU bGU @@ -61767,33 +61767,33 @@ pGs pGs bsf bsf -aOu +gRU bsf brT -oNQ -haH -haH +gLQ +pNo +pNo brT -jWr -jWr -wym -jWr -oXd -nBG -orw -jWr -jWr -orw -nBG -oXd -jWr -fdT -gvU -jWr +qJw +qJw +trx +qJw +mkR +mpN +dRf +qJw +qJw +dRf +mpN +mkR +qJw +tvd +pmE +qJw brT -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -61807,132 +61807,132 @@ wUU "} (172,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -oPq -qxW -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -tqL -buU +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +jxU +hrg +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +tNN +ubR veV jTR bGU -oMi +tlx bGU rvD rvD @@ -61952,30 +61952,30 @@ bsf bsf bsf ulv -haH -haH -haH +pNo +pNo +pNo brT -jWr -orw -nVZ -orw -orw -nBG -orw -jWr -jWr -orw -nBG -orw -orw -nVZ -rmu -jWr +qJw +dRf +jSb +dRf +dRf +mpN +dRf +qJw +qJw +dRf +mpN +dRf +dRf +jSb +mqp +qJw brT -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -61989,129 +61989,129 @@ wUU "} (173,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -lAC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dlR kkF -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -tlD -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -buU +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +fPM +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +ubR ghN bGU bGU @@ -62134,30 +62134,30 @@ bsf bsf bsf brT -haH -haH -haH +pNo +pNo +pNo brT -oXM -wTw +tss +tXh brT -orw -orw +dRf +dRf brT -orw -udT -jWr -orw +dRf +nMl +qJw +dRf brT -orw -orw +dRf +dRf brT -oCv -jWr +ahL +qJw brT -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -62171,129 +62171,129 @@ wUU "} (174,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -buU +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +ubR veV jTR bGU @@ -62316,30 +62316,30 @@ bsf bsf bsf ulv -haH -haH -haH +pNo +pNo +pNo brT -jWr -wTw +qJw +tXh brT -ihP +wcB brT brT -orw -jWr -jWr -orw +dRf +qJw +qJw +dRf brT brT -kqF +mez brT -oCv -wpx +ahL +aRV brT -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -62353,130 +62353,130 @@ wUU "} (175,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -lAC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dlR kkF -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -rBC -evp -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -wGf -wGf -buU -buU +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +kss +nsa +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +iUi +iUi +ubR +ubR ghN bGU vNB @@ -62498,30 +62498,30 @@ bsf bsf bsf ulv -haH -haH -haH +pNo +pNo +pNo brT -jWr -wTw +qJw +tXh brT brT brT -puY -orw -jWr -jWr -orw -puY +lcd +dRf +qJw +qJw +dRf +lcd brT brT brT -naW -jWr +nGo +qJw brT -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -62535,130 +62535,130 @@ wUU "} (176,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -xlh -wGf -wGf -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -sbV -wGf -wGf -sbV -sbV -vVv -uMD +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +aCP +iUi +iUi +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +wqv +iUi +iUi +wqv +wqv +wGq +amQ ghN bGU bGU @@ -62680,30 +62680,30 @@ bsf bsf bsf brT -haH -haH -haH +pNo +pNo +pNo brT -rCz +kVX avD brT -ogF -ogF -orw -eeq -jWr -jWr -orw -orw -ogF -ogF +iWz +iWz +dRf +tGp +qJw +qJw +dRf +dRf +iWz +iWz brT avD -azt +wbM brT -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -62717,130 +62717,130 @@ wUU "} (177,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -lAC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dlR kkF -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC -evp -wGf -wGf -wGf -sbV -sbV -sbV -sbV -sbV -sbV -sbV -wGf -sbV -sbV -wGf -sbV -wGf -sbV -sbV -wGf -wGf -uMD +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss +nsa +iUi +iUi +iUi +wqv +wqv +wqv +wqv +wqv +wqv +wqv +iUi +wqv +wqv +iUi +wqv +iUi +wqv +wqv +iUi +iUi +amQ ghN vNB rvD @@ -62862,30 +62862,30 @@ bsf bsf bsf brT -haH -haH -kaU +pNo +pNo +iOR avD avD avD -orw -orw -orw -orw -pnh -jWr -cFB -pnh -orw -orw -orw -orw +dRf +dRf +dRf +dRf +vvs +qJw +dFi +vvs +dRf +dRf +dRf +dRf avD avD avD -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -62899,130 +62899,130 @@ wUU "} (178,1,1) = {" wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb kkF -lAC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC -wGf -wGf -sbV -wGf -evp -sbV -wGf -sbV -evp -wGf -wGf -sbV -evp -sbV -wGf -evp -wGf -wGf -wGf -evp -wGf -puG +dlR +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss +iUi +iUi +wqv +iUi +nsa +wqv +iUi +wqv +nsa +iUi +iUi +wqv +nsa +wqv +iUi +nsa +iUi +iUi +iUi +nsa +iUi +oNE kyj jTR dlD @@ -63044,31 +63044,31 @@ bsf bsf bsf brT -haH -haH -haH -tPA -suo -wym -jWr -jWr -jWr -jWr -jWr -tDB -xja -jWr -jWr -jWr -jWr -egD -gqz -gtq -rOy -haH -haH -haH -haH +pNo +pNo +pNo +wpY +qma +trx +qJw +qJw +qJw +qJw +qJw +nDG +llJ +qJw +qJw +qJw +qJw +lPI +ikO +iSw +gaR +pNo +pNo +pNo +pNo bsf bsf bsf @@ -63081,131 +63081,131 @@ wUU "} (179,1,1) = {" wUU -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB hJB -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -rBC -tlD -xlh -tlD -rBC -rBC -rBC -tlD -rBC -xlh -rBC -rBC -tlD -rBC -rBC -xlh -rBC -tlD -rBC -xlh -tlD -rBC -tlD -xlh +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +kss +fPM +aCP +fPM +kss +kss +kss +fPM +kss +aCP +kss +kss +fPM +kss +kss +aCP +kss +fPM +kss +aCP +fPM +kss +fPM +aCP enZ iAE pGs @@ -63226,30 +63226,30 @@ bsf bsf bsf brT -haH -haH -kdH -haH -vwf -wym -pnh -jWr -jWr -jWr -jWr -puY -puY -jWr -jWr -jWr -jWr -pnh -gqz -xXA -haH -kdH -haH -haH +pNo +pNo +lhC +pNo +bhv +trx +vvs +qJw +qJw +qJw +qJw +lcd +lcd +qJw +qJw +qJw +qJw +vvs +ikO +wSK +pNo +lhC +pNo +pNo ulv bsf bsf @@ -63352,43 +63352,43 @@ wUU wUU wUU wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -oMZ -vVC -vVC -vVC -oMZ -swO -vVC -vVC -vVC -oPq -hmE +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +laI +qjb +qjb +qjb +laI +pdQ +qjb +qjb +qjb +jxU +hJJ rJv iAE pGs @@ -63408,29 +63408,29 @@ bsf bsf bsf brT -haH -haH -haH -ucO -kvj -wym -jWr -orw -jWr -orw -pnh -jWr -jWr -pnh -orw -jWr -orw -orw -ptx -hrF -sYh -haH -haH +pNo +pNo +pNo +utg +dub +trx +qJw +dRf +qJw +dRf +vvs +qJw +qJw +vvs +dRf +qJw +dRf +dRf +uqR +vxI +rRI +pNo +pNo ulv crq bsf @@ -63534,44 +63534,44 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -swO -swO -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE -vVC -swO -hmE +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +pdQ +pdQ +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ +qjb +pdQ +hJJ rJv pGs pGs @@ -63590,31 +63590,31 @@ bsf bsf bsf ulv -haH -haH -haH +pNo +pNo +pNo brT avD avD avD brT -anS -orw -orw -jWr -jWr -orw -eeq -rfN +jMP +dRf +dRf +qJw +qJw +dRf +tGp +nmu brT avD avD avD brT -haH -haH +pNo +pNo ulv -haH +pNo bsf bsf bsf @@ -63716,47 +63716,47 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE -dmw -swO -rBC -hrl -qxW +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ +oXD +pdQ +kss +oVw +hrg mZH kdq tWT @@ -63771,30 +63771,30 @@ hre bsf bsf bsf -haH -haH -haH -haH +pNo +pNo +pNo +pNo ulv bsf bsf -jWr -jbL -jWr -kzD -uGU -jWr -jWr -puY -lyI -wNw -nfW +qJw +tiX +qJw +oNP +clo +qJw +qJw +lcd +jbl +fIh +wIb avD bsf bsf brT -haH -haH +pNo +pNo ulv brT bsf @@ -63898,54 +63898,54 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE -vVC -dmw -swO -hmE -oMZ -dmw -swO -swO -swO -vVC -oPq -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ +qjb +oXD +pdQ +hJJ +laI +oXD +pdQ +pdQ +pdQ +qjb +jxU +pdQ iWj hre bsf @@ -63954,30 +63954,30 @@ hre bsf bsf crq -haH -haH -haH +pNo +pNo +pNo brT bsf bsf avD -xhC -jWr -kzD -puY -jWr -jWr -pVn -lyI -sne -cli +rgr +qJw +oNP +lcd +qJw +qJw +nRL +jbl +uyg +xlY avD bsf bsf brT -haH -haH -haH +pNo +pNo +pNo brT bsf bsf @@ -64080,54 +64080,54 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -vVC -swO -swO -vVC -swO -swO -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +qjb +pdQ +pdQ +qjb +pdQ +pdQ +pdQ +pdQ xDE kkv dsi @@ -64135,32 +64135,32 @@ dsi bsf bsf bsf -haH +pNo eiK -haH -haH +pNo +pNo ulv bsf mMz -jWr -rYs -jWr -kzD -rVp -jWr -jWr -puY -lyI -jHa -lmT -jWr +qJw +avB +qJw +oNP +spZ +qJw +qJw +lcd +jbl +ixs +qQK +qJw bsf mMz -haH -haH -haH -oNQ -haH +pNo +pNo +pNo +gLQ +pNo bsf bsf bsf @@ -64262,89 +64262,89 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE -vVC -vVC -hmE -vVC -vVC -swO -vVC -swO -swO -vVC -swO -vVC -oPq +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ +qjb +qjb +hJJ +qjb +qjb +pdQ +qjb +pdQ +pdQ +qjb +pdQ +qjb +jxU iWj tOV dsi dsi hre -aOu +gRU bsf ulv -kaU -oNQ -haH +iOR +gLQ +pNo ulv bsf bsf -oww -vYF -jWr -kzD -puY -jWr -jWr -pVn -lyI -fiY -aGz -jWr +jLX +iTg +qJw +oNP +lcd +qJw +qJw +nRL +jbl +xvd +qHA +qJw bsf bsf brT -haH -haH +pNo +pNo ulv ulv bsf -aOu +gRU bsf bsf bsf @@ -64444,54 +64444,54 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -hmE -vVC -swO -swO -swO -swO -vVC -swO -swO -swO -vVC -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hJJ +qjb +pdQ +pdQ +pdQ +pdQ +qjb +pdQ +pdQ +pdQ +qjb +pdQ iWj tRN dsi @@ -64500,29 +64500,29 @@ hre bsf bsf brT -haH -haH -haH -oNQ +pNo +pNo +pNo +gLQ kTu bsf avD brT -asG -orw -orw -pnh -pnh -orw -orw -rfN +tMR +dRf +dRf +vvs +vvs +dRf +dRf +nmu brT -jWr +qJw mMz bsf brT -haH -haH +pNo +pNo ulv brT bsf @@ -64626,54 +64626,54 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -swO -swO -vVC -swO -swO -vVC -swO -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +pdQ +pdQ +qjb +pdQ +pdQ +qjb +pdQ +pdQ +pdQ rJv iAE hre @@ -64682,31 +64682,31 @@ hre bsf bsf ulv -haH -haH -haH +pNo +pNo +pNo brT -aOu +gRU mLJ avD brT brT brT -tMM -vpO -jWr -orw +oNg +vOF +qJw +dRf brT brT brT avD -pvB +bhU bsf -haH -haH -haH -haH -haH +pNo +pNo +pNo +pNo +pNo mMz bsf bsf @@ -64808,55 +64808,55 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -tDX -vVC -vVC -swO -vVC -vVC -swO -swO -vVC -aPL -vVC -vVC -oMZ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +vpx +qjb +qjb +pdQ +qjb +qjb +pdQ +pdQ +qjb +eZG +qjb +qjb +laI xDE aOG tRN @@ -64866,27 +64866,27 @@ bsf lqa ulv ulv -haH +pNo brT vdV tPE qza -jWr -wym -jWr -orw -nsi -jWr -orw -jWr -ptx -jWr +qJw +trx +qJw +dRf +vLL +qJw +dRf +qJw +uqR +qJw vus xfD mMz ulv -haH -haH +pNo +pNo brT brT bsf @@ -64990,41 +64990,41 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV xce byF xce @@ -65040,36 +65040,36 @@ xce xce xce gBP -wLs -wLs -wLs -wLs -wLs +vCS +vCS +vCS +vCS +vCS qbX -haH -kdH -haH +pNo +lhC +pNo ulv bsf -moI +aVb lbX -pnh -wym -pnh -xnE -jWr -jWr -jWr -pnh -qaB -pnh -ebP -gZD +vvs +trx +vvs +cEy +qJw +qJw +qJw +vvs +oxE +vvs +tqW +dKY bsf brT -haH -haH -haH +pNo +pNo +pNo bsf bsf bsf @@ -65172,55 +65172,55 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM iWj bsf vxi @@ -65229,28 +65229,28 @@ hre vxi esK vBZ -oNQ +gLQ eiK ulv bsf jwf ehM -jWr -wym -tvq -jWr -orw -orw -jWr -jWr -qaB -jWr +qJw +trx +kcd +qJw +dRf +dRf +qJw +qJw +oxE +qJw cXa rYi bsf brT -haH -hmX +pNo +bld ulv bsf bsf @@ -65354,55 +65354,55 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM rJv sXn hre @@ -65419,21 +65419,21 @@ jXp avD avD brT -tTw -tTw +oZH +oZH brT brT -tTw -tTw +oZH +oZH brT avD avD xfD bsf ulv -haH +pNo ulv -oNQ +gLQ bsf bsf bsf @@ -65536,56 +65536,56 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ rJv apG vxi @@ -65594,27 +65594,27 @@ dsi bsf pTO vxi -haH +pNo brT bsf bsf avD -ldc -jWr -jWr -jWr -orw -orw -jWr -jWr -jWr -fox +cSD +qJw +qJw +qJw +dRf +dRf +qJw +qJw +qJw +rDl avD bsf bsf crq -haH -haH +pNo +pNo bsf bsf bsf @@ -65718,57 +65718,57 @@ cLP cLP cLP wUU -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ rJv iAE bsf @@ -65781,16 +65781,16 @@ ulv gNE gNE avD -lIn -lyI -jWr -pnh -orw -orw -pnh -jWr -kzD -uas +dsj +jbl +qJw +vvs +dRf +dRf +vvs +qJw +oNP +izH avD bsf bsf @@ -65924,34 +65924,34 @@ wUU wUU wUU wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ iWj bsf dsi @@ -65963,16 +65963,16 @@ gFY lqM lqM ulv -oNQ -jWr -jWr -jWr -trX -jHT -gEf -jWr -jWr -fox +gLQ +qJw +qJw +qJw +nFN +pch +luL +qJw +qJw +rDl ulv bsf bsf @@ -66106,34 +66106,34 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ rJv iAE hre @@ -66145,15 +66145,15 @@ bsf bsf vxi ulv -haH -haH -jWr -pnh -orw -orw -pnh -jWr -oNQ +pNo +pNo +qJw +vvs +dRf +dRf +vvs +qJw +gLQ avD sOw bsf @@ -66288,35 +66288,35 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -oPq +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +jxU iWj bsf hre @@ -66328,14 +66328,14 @@ bsf bsf nEY avD -rSD -jWr -oww +gfd +qJw +jLX avD avD -otW +hwl eiK -haH +pNo ulv bsf bsf @@ -66470,34 +66470,34 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO -swO -swO -aKQ -swO -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ +pdQ +pdQ +cVM +pdQ +pdQ +pdQ ovT uNz vxi @@ -66510,13 +66510,13 @@ pDX bsf lVf iyk -xiH +nOs eiK -gDu -kOs -kOs -jWr -jWr +rWc +lPK +lPK +qJw +qJw fcF ulv bsf @@ -66652,17 +66652,17 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -iTt +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +dMV lwm tjs lwm @@ -66680,11 +66680,11 @@ tjs lwm lwm hjK -hHL -wLs -wLs -wLs -wLs +quj +vCS +vCS +vCS +vCS qCT qCT qCT @@ -66693,13 +66693,13 @@ bsf bsf fVw ulv -jWr -jWr -jWr -jWr -jWr +qJw +qJw +qJw +qJw +qJw ulv -haH +pNo ulv uaU bsf @@ -66834,59 +66834,59 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -aPL -vVC -swO -vVC -vVC -swO -swO -vVC -byj -llI -rGk -cOQ -oHP -swO -tDX +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +eZG +qjb +pdQ +qjb +qjb +pdQ +pdQ +qjb +qJr +pbB +uiD +nUw +tnw +pdQ +vpx iWj tRN hre hre -aOu +gRU qCT byw oXC sxR qCT -aOu +gRU bsf luu -haH +pNo crq -jWr -gDu -jWr +qJw +rWc +qJw ulv -oNQ +gLQ ulv nmH hmg bsf bsf -aOu +gRU bsf bsf lDF @@ -67016,33 +67016,33 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -vVC -vVC -swO -swO -swO -swO -iTt -hxw -rGk -rGk -oHP -swO -vVC +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +qjb +qjb +pdQ +pdQ +pdQ +pdQ +dMV +hCz +uiD +uiD +tnw +pdQ +qjb xDE hre gOj @@ -67058,10 +67058,10 @@ bsf bsf hte sOw -xiH +nOs ulv -gDu -xiH +rWc +nOs ulv avD doP @@ -67198,32 +67198,32 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -vVC -swO -gri -dvs -aZA -aZA -xGZ -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +qjb +pdQ +ijV +kLT +eaf +eaf +imc +pdQ fDH ymb hre @@ -67240,10 +67240,10 @@ bsf bBt bsf avD -rlA +ggV crq -cmw -oNQ +sxH +gLQ ulv lqM vRW @@ -67380,31 +67380,31 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -swO -swO -vVC -swO -swO -swO -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +pdQ +pdQ +qjb +pdQ +pdQ +pdQ +pdQ +pdQ ovT ymb hre @@ -67424,7 +67424,7 @@ bsf hte sOw akn -kdH +lhC ulv hte bsf @@ -67562,30 +67562,30 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -vVC -swO -swO -swO -swO -swO -swO +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +qjb +pdQ +pdQ +pdQ +pdQ +pdQ +pdQ ovT dTu gOj @@ -67744,30 +67744,30 @@ cLP cLP cLP wUU -oAe -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -vVC -swO -swO -vVC -swO -swO -swO -swO -oPq +ukB +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +pdQ +pdQ +qjb +pdQ +pdQ +pdQ +pdQ +jxU xDE hre tRN @@ -67926,29 +67926,29 @@ cLP cLP cLP wUU -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe -oAe +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB +ukB oTs vgH pGs @@ -68108,29 +68108,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG iax pGs pGs @@ -68290,29 +68290,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG iax pGs pGs @@ -68335,7 +68335,7 @@ ftm tXT bsf bsf -aOu +gRU bsf bsf bsf @@ -68472,29 +68472,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG iax pGs pGs @@ -68654,29 +68654,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG iax pGs pGs @@ -68836,29 +68836,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -69018,29 +69018,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -69200,29 +69200,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -69382,29 +69382,29 @@ cLP cLP cLP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -69564,29 +69564,29 @@ gsP gsP gsP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -69746,29 +69746,29 @@ gsP gsP gsP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -69928,29 +69928,29 @@ gsP gsP gsP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -70110,21 +70110,21 @@ gsP gsP gsP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -70292,21 +70292,21 @@ gsP gsP gsP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs @@ -70474,21 +70474,21 @@ gsP gsP gsP wUU -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf -jEf +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG +oNG pGs pGs pGs diff --git a/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm b/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm index befddbfb3c..ac0d0f4efc 100644 --- a/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm +++ b/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm @@ -10,29 +10,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"aaA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "aaG" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) -"abf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"abl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) "abu" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -50,21 +33,45 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"abK" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) "abL" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"acO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/shiva/multi_tiles/southeast, +"abW" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"abY" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"acl" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"acv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"acM" = ( +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "ade" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -73,45 +80,71 @@ "adw" = ( /turf/closed/wall/r_wall, /area/varadero/interior/cargo) -"adR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) +"adM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"adT" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"aek" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/varadero/interior/cargo) +"aem" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "aer" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"afg" = ( -/turf/closed/wall/r_wall/elevator{ - dir = 8 - }, -/area/varadero/interior/hall_N) -"afx" = ( +"aeF" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, /turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) -"afz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_N) -"afR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"aeR" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/floor/shiva/yellow, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"aeY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) +"afg" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 8 + }, +/area/varadero/interior/hall_N) +"afK" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "agi" = ( /obj/structure/window/reinforced{ dir = 4; @@ -136,16 +169,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"agn" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"agJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/trackimp, -/obj/item/device/binoculars, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +"agv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"agC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "agM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/secure{ @@ -168,61 +201,59 @@ "ahg" = ( /turf/closed/wall, /area/varadero/interior/dock_control) -"ahD" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods{ - pixel_x = 10; - pixel_y = -4 +"ahy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"aiz" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"aiU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"ahK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"ajf" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"ajJ" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"aiR" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Evidence Storage"; - req_access_txt = "100" +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"aiY" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/area/varadero/interior/cargo) +"ajK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"ajW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/toy/plush/farwa, -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"akf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"akg" = ( -/obj/effect/overlay/palmtree_r, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) "akk" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -236,16 +267,44 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) +"akz" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"akH" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) "akJ" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/varadero/interior/library) -"ald" = ( -/obj/structure/pipes/unary/freezer{ - dir = 8; - icon_state = "freezer_1" +"ale" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/red, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"alg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"alA" = ( +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) +"alB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "alD" = ( /obj/structure/filtration/coagulation_arm{ @@ -263,71 +322,96 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"alG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"alL" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"alM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "ami" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/prop/dam/crane/cargo, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"ani" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/technical_storage) -"anu" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +"anp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "anA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"aoi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"aoo" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" +"anI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"anJ" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"anK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"aom" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"aoA" = ( +/obj/item/device/mass_spectrometer, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "aoC" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/comms2) +"aoD" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "aoE" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/research) +"aoR" = ( +/obj/structure/prop/rock/brown{ + layer = 2 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) +"apf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + name = "Television set"; + network = null; + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "apj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -340,50 +424,17 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"apH" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"apI" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"apY" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"aqb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"aqh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 +"aqg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 11 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"aqk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "aqq" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -392,23 +443,16 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"aqw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "ara" = ( /turf/open/floor/wood, /area/varadero/interior/court) -"arg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"arC" = ( -/obj/effect/decal/cleanable/blood/oil, +"arz" = ( +/obj/item/stack/sheet/wood/small_stack, /turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/area/varadero/exterior/lz1_near) +"arD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "arF" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/ceramic_plate, @@ -418,49 +462,77 @@ /obj/item/tool/lighter/zippo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"asf" = ( -/obj/structure/bed/chair/hunter{ - dir = 1 +"asj" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"asx" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"atz" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) -"atM" = ( -/obj/structure/prop/mech/drill, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"auE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"asS" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"atg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_y = 5 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_NW) -"avl" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/item/clothing/ears/earmuffs{ + pixel_y = 18 }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"atv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"avy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/multi_tiles/north, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) +"auw" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/storage/marine/veteran/dutch{ + layer = 3.1 + }, +/obj/item/clothing/under/gimmick/dutch, +/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ + pixel_y = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"auy" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"avj" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "avD" = ( /turf/closed/wall/huntership, /area/varadero/interior_protected/vessel) -"avF" = ( -/obj/structure/closet/emcloset, +"avH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, /turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) +/area/varadero/interior/cargo) "avX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -469,91 +541,50 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"awr" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"awu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"awJ" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/interior_protected/caves/central) -"axh" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"awe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"axs" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"axv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/area/varadero/interior/maintenance/security) +"awJ" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/interior_protected/caves/central) +"axa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"axo" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/disposals) "axY" = ( /obj/structure/bed/chair/comfy/lime, /turf/open/floor/wood, /area/varadero/interior/research) -"ayo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"ayx" = ( -/obj/structure/prop/power_transformer, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) "ayF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"azh" = ( -/obj/item/clothing/shoes/swimmingfins, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"azr" = ( +"azs" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"azw" = ( -/obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"azK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "aAg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -561,121 +592,56 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"aAr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"aAl" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "aAX" = ( /obj/docking_port/stationary/marine_dropship/lz2{ name = "LZ2 - Palm Airfield" }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"aAY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aBp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/freezerfloor, +"aBl" = ( +/obj/structure/closet/toolcloset, +/obj/structure/barricade/handrail/wire, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) -"aBz" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"aBB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "aBK" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers{ icon_state = "brflowers_3" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"aBO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) -"aCd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"aCl" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Engine Room" +"aCi" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aCz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"aCH" = ( -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; - dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"aCp" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aCM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/exterior/eastbeach) "aCW" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"aCX" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"aCY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aDu" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "aDv" = ( /obj/structure/machinery/light{ dir = 1 @@ -683,52 +649,62 @@ /obj/structure/closet/secure_closet/bar, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"aDF" = ( +"aDH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"aDV" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"aDZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"aEe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"aEm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"aEo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) -"aEf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"aEg" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +"aEu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"aEi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"aED" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"aEW" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"aEQ" = ( -/obj/structure/shuttle/engine/router{ - dir = 4; - unacidable = 0 + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"aFc" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"aFe" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) "aFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -738,45 +714,17 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aFh" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/shorts/black, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.1; - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/rag{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) "aFt" = ( /turf/closed/wall, /area/varadero/interior_protected/maintenance/south) -"aFu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"aFM" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"aFX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +"aFG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/turf/open/floor/shiva/greencorners/east, -/area/varadero/interior/hall_SE) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "aGx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -786,54 +734,32 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"aGX" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"aHu" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"aHw" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"aHy" = ( -/obj/effect/decal/cleanable/blood/oil, +"aGV" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) +"aHn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"aHo" = ( +/obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"aHt" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"aHz" = ( +/obj/structure/surface/rack, +/obj/item/implantpad, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "aHM" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/wood, /area/varadero/interior/security) -"aIm" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aIq" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) "aIu" = ( /obj/structure/filingcabinet{ density = 0; @@ -851,65 +777,24 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"aJc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"aJh" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -13; - pixel_y = 16 - }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/xenoburger{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"aJp" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aJD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"aJy" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "aJF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -925,21 +810,27 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, /area/varadero/interior/library) -"aJW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"aKk" = ( -/obj/structure/machinery/light/small{ +"aKh" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_x = -5; - pixel_y = 6 +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black{ + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/folder/yellow{ + pixel_x = -7 + }, +/obj/item/facepaint/lipstick/jade{ + pixel_x = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "aKA" = ( /obj/structure/filingcabinet{ density = 0; @@ -966,26 +857,61 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"aLc" = ( -/turf/open/floor/shiva/yellowcorners/east, +"aKO" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"aLJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/north, /area/varadero/interior/disposals) -"aLl" = ( -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) -"aLn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"aMp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +"aLX" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/administration) +"aMg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"aMB" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel/pict_system, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "aMC" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) +"aMS" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"aNg" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"aNo" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"aNC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) "aOg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"aOx" = ( +/obj/item/stack/sheet/plasteel{ + amount = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "aOG" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -1; @@ -995,54 +921,62 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"aPU" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" +"aOY" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"aPe" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"aPv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"aQc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"aQg" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/technical_storage) "aQq" = ( /obj/structure/window/framed/colony/reinforced/hull, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"aQG" = ( -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/morgue) -"aQN" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"aQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"aQI" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -8; + pixel_y = 7 }, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"aRr" = ( /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"aRL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - pixel_y = 17 - }, -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = 2 +/area/varadero/interior/cargo) +"aQT" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 2; - pixel_y = 8 +/turf/open/floor/wood, +/area/varadero/interior/library) +"aRd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"aRE" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "aSe" = ( /obj/item/reagent_container/food/snacks/birthdaycakeslice, /obj/structure/surface/table/woodentable, @@ -1062,40 +996,64 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"aSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"aSR" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "aSU" = ( /obj/structure/catwalk, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance/north) -"aTg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"aTh" = ( -/obj/effect/landmark/hunter_primary, +"aTl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"aTm" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"aTr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"aTC" = ( -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 5; - pixel_y = 2 +/area/varadero/interior/security) +"aTL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -5; - pixel_y = -9 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"aUf" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/hydro{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"aTS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/reagent_container/spray/hydro{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"aTY" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "aUD" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -1106,144 +1064,104 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"aUP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 +"aUJ" = ( +/obj/structure/surface/table, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/mirror{ - pixel_x = -32 +/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ + pixel_x = -6; + pixel_y = 10 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"aVs" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 +/area/varadero/interior/hall_NW) +"aVl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/interior/maintenance/north) -"aVt" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"aVD" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"aVL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"aVF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"aVN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"aVP" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) "aVQ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, /area/varadero/interior/hall_N) -"aWA" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"aWP" = ( -/turf/open/floor/darkgreencorners2/west, -/area/varadero/interior/hall_SE) +"aVY" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"aWC" = ( +/obj/item/book/manual/evaguide, +/turf/open/floor/wood, +/area/varadero/interior/library) +"aXa" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) "aXb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"aXm" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aXn" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"aXt" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"aXz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "aXA" = ( /obj/structure/largecrate/supply/medicine/iv, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"aXC" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"aYg" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"aXG" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"aZb" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 5 +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"aXK" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"aZn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"aZq" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/area/varadero/interior/disposals) +"aZo" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "aZv" = ( /obj/structure/bed/chair{ dir = 4; @@ -1251,105 +1169,116 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"aZX" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/comms3) -"baa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"aZC" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 }, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"bag" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"bah" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"bak" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"baH" = ( +"bbc" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = -5 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/obj/item/tool/surgery/hemostat/predatorhemostat, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "bbt" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"bbx" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"bbF" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "bbG" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"bbK" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bbW" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"bcg" = ( +"bcH" = ( /obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70{ + pixel_y = -2 + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"bcM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"bdg" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"bcD" = ( -/obj/item/tool/wet_sign, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"bdc" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/area/varadero/exterior/lz1_near) +"bdw" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"bdC" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "bdH" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/north_research) -"bdJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bel" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/camera, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"bet" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Custodial Closet"; - req_access_txt = "100" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"beE" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced, +/obj/item/clothing/head/fedora, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "beK" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/lz2_near) @@ -1367,25 +1296,66 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"bfq" = ( +"bfo" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"bfp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"bfs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"bfE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"bgz" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"bft" = ( /obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"bgh" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) -"bgl" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +/area/varadero/interior/cargo) "bgE" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"bhe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"bhx" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) "bhF" = ( /obj/structure/sign/safety/water{ pixel_x = 15 @@ -1401,29 +1371,11 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bih" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) "bio" = ( /obj/structure/surface/table/woodentable, /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/chapel) -"biz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) "biS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1436,27 +1388,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"bjd" = ( -/obj/item/weapon/gun/smg/nailgun{ - pixel_y = 3 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva/purple/northeast, -/area/varadero/interior/research) -"bjf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"bjA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) "bjC" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, @@ -1467,100 +1398,134 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) -"bkC" = ( +"bkt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Morgue"; - req_access_txt = "100" - }, -/turf/open/floor/dark2, -/area/varadero/interior/morgue) -"bkG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "bkM" = ( /turf/closed/wall, /area/varadero/interior/hall_SE) -"bmt" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ +"blc" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - health = 80 - }, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"bmV" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"bnc" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 7 + icon_state = "pipe-c" }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 8; - pixel_y = -8 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"blk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bnf" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bng" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bnm" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/cargo) -"bnB" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"blY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bnH" = ( -/obj/structure/prop/dam/truck, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"bmH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + id = "engine_electrical_maintenance"; + name = "Underground Power Substation"; + req_access_txt = "100" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"bmS" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"bnm" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior/cargo) +"bnx" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"bnA" = ( +/turf/open/floor/shiva/redcorners/west, +/area/varadero/interior/security) +"bnH" = ( +/obj/structure/prop/dam/truck, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"boI" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) -"boV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"boc" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"boC" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"boK" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/shiva/snow_mat/west, +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bpe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"bpf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"bpr" = ( +/obj/structure/computer3frame, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"bpP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"bpS" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/maintenance) -"bpI" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1569,26 +1534,33 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"brx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = 5; - pixel_y = 4 +"bqe" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"bqz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/obj/item/paper{ - pixel_x = -11; - pixel_y = 4 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"bra" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"brb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/paper/research_notes/good{ - pixel_x = -15; - pixel_y = 2 +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"brt" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"brM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "brT" = ( /turf/closed/wall/huntership/destructible, /area/varadero/interior_protected/vessel) @@ -1601,10 +1573,17 @@ "bsf" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bst" = ( -/obj/structure/closet/crate/miningcar, +"bsg" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/varadero/exterior/lz1_near) +"bsj" = ( +/obj/structure/lz_sign/new_varadero, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bsU" = ( +/obj/structure/prop/dam/crane, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/exterior/farocean) "bte" = ( /obj/structure/closet/crate/radiation, /obj/item/stack/sheet/mineral/phoron/medium_stack{ @@ -1621,6 +1600,9 @@ }, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) +"bti" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "btU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -1638,76 +1620,75 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, /area/varadero/interior/administration) -"buH" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"bvE" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"bvF" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 +"buF" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"buN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"bvk" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"bvG" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bwm" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"bwz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"bwP" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"bwp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"bye" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" +"bwv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"bxv" = ( +/obj/structure/machinery/power/smes/magical{ + capacity = 9e+008; + charge = 9e+008; + dir = 4; + name = "plasma power generator" }, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"byl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/encryptionkey/dutch, -/obj/item/device/encryptionkey/dutch{ - pixel_x = -6 - }, -/obj/item/device/encryptionkey/dutch{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -5; - pixel_y = 1 +"bxN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/item/restraint/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/machinery/alarm{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = 24 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"byk" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/white, +/area/varadero/interior/laundry) "bys" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -1719,10 +1700,6 @@ /obj/item/folder/black, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"byC" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) "byF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1731,19 +1708,10 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"bzf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) -"bzn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"bzq" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +"bzt" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "bzz" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1752,16 +1720,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bAj" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, +"bAp" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/area/varadero/interior/hall_SE) +"bAx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "bAE" = ( /obj/structure/window/reinforced{ dir = 4; @@ -1793,14 +1759,12 @@ /obj/item/ammo_magazine/rifle/m4ra, /turf/open/floor/wood, /area/varadero/interior/bunks) -"bBo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"bBs" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "bBt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -1817,52 +1781,118 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"bBV" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"bCA" = ( +"bBv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"bCM" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"bBM" = ( +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/morgue) +"bCq" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"bCr" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"bDs" = ( -/obj/item/weapon/gun/flare{ - current_mag = null +/area/varadero/interior/hall_SE) +"bCG" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"bCI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"bEj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"bEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"bCU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bDa" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"bDp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"bDx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"bDG" = ( +/obj/structure/prop/fishing/line/long/part2, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"bDP" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bDR" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"bDT" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"bEd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/comms3) +/area/varadero/interior/hall_N) +"bEf" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"bEq" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"bEu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "bEY" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -1876,47 +1906,15 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"bFj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; - pixel_y = 17 - }, -/obj/structure/machinery/recharger, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "bFo" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bFD" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bFV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"bGe" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"bGy" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) +"bFw" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) "bGC" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall, @@ -1924,30 +1922,18 @@ "bGU" = ( /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bHc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +"bIp" = ( +/turf/open/floor/shiva/purplecorners/west, +/area/varadero/interior/research) "bIt" = ( /turf/closed/wall, /area/varadero/interior/technical_storage) -"bJv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +"bJd" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"bJi" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) "bJH" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ @@ -1958,63 +1944,34 @@ "bJI" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) -"bJV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"bLl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"bKy" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"bKA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"bKD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"bKZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/records) "bLp" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/administration) -"bLy" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) "bLB" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/chapel) -"bLI" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "HotlineAlt" - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) -"bLN" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) "bLV" = ( /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, @@ -2029,126 +1986,62 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"bMk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) "bMx" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"bMG" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/trash/ceramic_plate, +"bML" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bNc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 3; + pixel_y = 17 + }, +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/barricade/handrail/wire, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"bMV" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) -"bNi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"bOP" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"bNt" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/suit/storage/bomber, -/obj/item/storage/belt/marine, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"bNC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"bPn" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"bNN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"bPV" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Evidence Storage"; + req_access_txt = "100" }, -/obj/item/prop/almayer/comp_open, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"bQq" = ( +/obj/structure/largecrate/random, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"bOO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/alarm{ +"bQO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"bPe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"bPk" = ( -/obj/structure/window/framed/colony/reinforced, +/obj/structure/window_frame/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bPl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"bPm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/hall_SE) -"bPx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"bPF" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"bPG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"bQa" = ( -/obj/structure/catwalk, -/obj/structure/largecrate/random, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"bQH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/area/varadero/exterior/eastbeach) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2158,16 +2051,24 @@ "bRi" = ( /turf/open/floor/shiva, /area/varadero/interior/disposals) -"bRo" = ( -/obj/structure/reagent_dispensers/beerkeg/alt_dark, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"bRQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"bRB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"bRR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/court) "bRS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2190,54 +2091,69 @@ /obj/effect/spawner/random/attachment, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"bSD" = ( -/obj/structure/machinery/power/apc/power/north, +"bSP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/maintenance/research) "bSQ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bTg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"bSS" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"bSX" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"bTm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"bTc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"bTt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/cell/high, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "bTA" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/records) -"bTN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"bUg" = ( -/obj/structure/machinery/microwave{ - pixel_y = 9 +"bTI" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"bUK" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"bUj" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) -"bUP" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"bUW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "bUZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, @@ -2253,21 +2169,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bVq" = ( -/obj/structure/machinery/light{ - dir = 4 +"bVm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"bVE" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -13; + pixel_y = -3 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"bVu" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"bVI" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "bVQ" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -2281,19 +2196,37 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"bVS" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz1_near) "bVX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz1_near) -"bWq" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/trash/crushed_cup, -/obj/item/prop/magazine/dirty/torn, -/turf/open/floor/shiva/floor3, +"bWO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) +"bXb" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"bXd" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bXm" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bXY" = ( +/turf/open/floor/wood, +/area/varadero/interior/library) "bYO" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -2305,29 +2238,25 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"bZg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null +"bYZ" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"bZs" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "bZv" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"bZA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"bZI" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_SE) +"bZG" = ( +/obj/item/stack/cable_coil/random, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "bZU" = ( /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) @@ -2337,64 +2266,27 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"caD" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"caB" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"caL" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"caV" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) -"cba" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"cbe" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"cbg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"cbq" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"cbv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/hydro{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_container/spray/hydro{ - pixel_x = 4; - pixel_y = 4 +/area/varadero/exterior/comms4) +"cbb" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/obj/structure/surface/table/reinforced/prison, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "cbK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -2406,6 +2298,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"cbN" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior_protected/caves/central) +"cce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lights, +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "ccp" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -2413,107 +2317,74 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"ccU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"ccD" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "cdb" = ( /turf/closed/wall, /area/varadero/interior/maintenance/security) -"cdy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"cde" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"cdl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"cdO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/hall_SE) +"cdz" = ( +/obj/structure/catwalk{ + indestructible = 1 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"cdW" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cek" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "cel" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ceo" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) "ceJ" = ( /obj/item/storage/fancy/candle_box, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cfq" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, +"cfI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"cfs" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"cgb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"cgj" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) "cgr" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/north, /area/varadero/interior/caves/north_research) -"cgA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -1 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"che" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"chr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tool/wet_sign, -/turf/open/floor/white, -/area/varadero/interior/toilets) "chs" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"chE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"chz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "chU" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -2524,9 +2395,6 @@ /obj/effect/landmark/railgun_camera_pos, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cic" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) "cio" = ( /obj/structure/filingcabinet{ density = 0; @@ -2547,32 +2415,49 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"cit" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +"ciq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"cir" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"cjc" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"cjF" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"cjL" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ciu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) -"ciH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"ciR" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"cjf" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 +/area/varadero/interior/administration) +"cjQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + icon_state = "chair" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "cka" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -2585,78 +2470,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"ckx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ckz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"ckF" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ckI" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) +"cke" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) "ckM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"clv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"clD" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"clG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) +"clw" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) "clX" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance) -"cmf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"cmk" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/freezer/cooler, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/peach, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "cmr" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -2664,88 +2491,63 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"cmU" = ( -/obj/item/reagent_container/food/snacks/fishfingers{ - pixel_y = 7 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cne" = ( -/obj/structure/platform/kutjevo/smooth{ +"cmP" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; dir = 1; - climb_delay = 1; - layer = 2.99 + icon_state = "door_locked"; + locked = 1; + name = "\improper Research Chamber" }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"cnF" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"cnv" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"cnG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8 }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"cox" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"cnW" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"coc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"cog" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "coz" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"coX" = ( +"cpm" = ( /obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"cpy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"cpA" = ( -/obj/structure/morgue, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"cpC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + layer = 3.5 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"cpF" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/area/varadero/exterior/lz2_near) +"cpw" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"cpE" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"cpR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/technical_storage) "cql" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -2767,154 +2569,95 @@ "cqZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/maintenance/south) +"crg" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "crq" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"crC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"csb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"csr" = ( -/obj/structure/prop/ice_colony/flamingo, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"cto" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"ctw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"crz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 7; + pixel_y = 5 }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/obj/item/trash/plate{ + pixel_x = -6 }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) -"cty" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior_protected/caves/central) -"ctE" = ( +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"crQ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"csC" = ( +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"csH" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"cuc" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"cud" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/electrical) -"cug" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"cur" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88{ - pixel_y = -2 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"ctj" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"cty" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior_protected/caves/central) +"cuf" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/turf/open/floor/white, +/area/varadero/interior/toilets) +"cun" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/red/northeast, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"cuQ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) -"cvI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"cvW" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, +"cvl" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"cvX" = ( -/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"cwe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/dry_ramen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"cwk" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"cwp" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior/maintenance/north) +"cvs" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"cvS" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"cwu" = ( +/obj/structure/largecrate/random/mini/chest/b, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "cwE" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/north) @@ -2923,39 +2666,66 @@ /obj/item/storage/bible/booze, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cym" = ( +"cwS" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) +"cxY" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"cyT" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +/area/varadero/exterior/comms4) +"cyt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"czG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"cAw" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"cyH" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"czd" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) +"czP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"cAb" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) "cAx" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"cAX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"cAS" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/hall_N) +"cAW" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "cBq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -2967,93 +2737,88 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cBW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) +"cBT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "cCk" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"cCO" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/laundry) -"cDc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"cDm" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 12 - }, +"cCy" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"cCD" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"cEm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"cEu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/varadero/interior/maintenance/north) +"cDC" = ( +/obj/structure/prop/static_tank/fuel{ + pixel_y = 8 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"cEp" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"cEZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) -"cFe" = ( -/obj/structure/closet/firecloset/full, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/cargo) "cFh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"cFu" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "cFw" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "cFz" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/interior/caves/east) +"cFG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"cFI" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/surface/table, +/obj/item/spacecash/c1000{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "cFZ" = ( /obj/structure/cargo_container/kelland/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cGc" = ( -/obj/item/book/manual/detective, -/turf/open/floor/wood, -/area/varadero/interior/library) -"cGd" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) -"cGx" = ( -/obj/structure/machinery/light{ - dir = 8 +"cGa" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"cGf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"cGs" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "cGD" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -3064,62 +2829,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cGR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"cGT" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) "cGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/records) -"cHf" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"cHl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"cHR" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"cHp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"cHS" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -3 +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"cHQ" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 6 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "cHV" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -3138,131 +2873,120 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"cHY" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cIB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"cIP" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"cIw" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"cIy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"cJa" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 - }, -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"cJL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"cKB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/area/varadero/interior/medical) +"cIJ" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"cKK" = ( -/obj/item/gift, -/turf/open/floor/carpet, -/area/varadero/interior/maintenance/north) -"cKZ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"cIS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowcorners/west, -/area/varadero/interior/cargo) -"cLD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/greenfull/west, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) -"cLP" = ( -/turf/open/space, -/area/space) -"cLV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"cJk" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cJn" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"cJr" = ( /obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/platform_decoration/kutjevo, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"cLX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"cLY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cJy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"cMf" = ( -/obj/structure/bed/chair, /turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"cMw" = ( +/area/varadero/interior/hall_SE) +"cJP" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"cKf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"cMQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"cKj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"cKA" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/item/clothing/head/helmet, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"cNb" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"cKK" = ( +/obj/item/gift, +/turf/open/floor/carpet, +/area/varadero/interior/maintenance/north) +"cLv" = ( /obj/structure/surface/table, /obj/item/device/binoculars, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"cNh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +"cLM" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = 15; + pixel_y = -9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"cLP" = ( +/turf/open/space, +/area/space) +"cLQ" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"cMR" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "cNt" = ( /turf/open/gm/coast/north, /area/varadero/exterior/comms4) -"cNu" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) "cNA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue{ @@ -3285,35 +3009,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"cNC" = ( -/obj/item/fuel_cell{ - pixel_x = 4; - pixel_y = 22 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"cNF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"cNJ" = ( -/obj/structure/closet, -/obj/item/device/flashlight/lantern, -/obj/item/map/current_map, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"cNT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"cOj" = ( -/obj/item/circuitboard/apc, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "cOs" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -3321,51 +3016,54 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cOK" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"cPI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cPm" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"cPy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/mineral/plastic{ + amount = 3 }, -/obj/structure/largecrate/random, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"cPR" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ +/area/varadero/interior/bunks) +"cPA" = ( +/turf/open/floor/shiva/wred/west, +/area/varadero/interior/medical) +"cPP" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"cPX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/shiva/north, -/area/varadero/interior/research) -"cQr" = ( -/obj/item/tool/crowbar/red{ - pixel_x = 9; - pixel_y = 8 +/area/varadero/interior/cargo) +"cQn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"cQu" = ( -/obj/structure/prop/turbine_extras/left, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"cRn" = ( -/obj/item/prop/alien/hugger, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/area/varadero/interior/maintenance/security) +"cRb" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) "cRx" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"cRZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) "cSa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_3" @@ -3376,76 +3074,54 @@ /obj/structure/prop/invuln/overhead_pipe, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) +"cSm" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "cSq" = ( /turf/open/floor/wood, /area/varadero/interior/chapel) -"cTg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"cTr" = ( -/obj/structure/machinery/light{ - dir = 1 +"cSP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"cTi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -5; + pixel_y = 5 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"cTG" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"cTw" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"cTQ" = ( +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/hall_SE) -"cTV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"cUE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"cUF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ +"cVc" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"cUN" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + icon_state = "pipe-c" }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"cUZ" = ( -/obj/structure/largecrate/random/case/double{ - anchored = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "cVd" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/lv624/fog_blocker{ @@ -3453,44 +3129,46 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"cVl" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "cVq" = ( /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"cVG" = ( -/obj/structure/bed/chair{ - dir = 8 +"cVw" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"cVP" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"cWs" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"cWm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"cWM" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_x = 12; + pixel_x = -14; pixel_y = 13 }, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva/snow_mat/west, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) -"cWu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "cXa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -3503,90 +3181,154 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"cXQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"cXd" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"cXs" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) +/area/varadero/interior/electrical) +"cXU" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "cYa" = ( /obj/item/storage/firstaid/adv, /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/varadero/interior/security) -"cYc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"cYr" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cYw" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"cYg" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"cYB" = ( -/obj/structure/window_frame/colony/reinforced, +/area/varadero/interior_protected/caves) +"cYv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/comms1) "cYV" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cYZ" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cZN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) +"cZn" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) "cZR" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) -"cZZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "dad" = ( /obj/item/stack/tile/plasteel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"daA" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"daS" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"dbg" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/technical_storage) +"dam" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"dbk" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"dbl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"dbt" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "dbu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"dbV" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +"dbz" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/sign/safety/waterhazard, +/obj/structure/sign/safety/water{ + pixel_x = 15 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dbR" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"dcB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "ddz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -3597,20 +3339,18 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"ddY" = ( +"ddL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"ddU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"ded" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "deq" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -3624,6 +3364,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"des" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "deE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -3632,155 +3379,93 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"deX" = ( -/obj/item/trash/boonie, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) +"deL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"dfc" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "dfs" = ( /obj/item/storage/belt/utility, /obj/structure/surface/rack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"dfJ" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"dgq" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"dgF" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"dgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"dgn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "dgY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"dhp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"dhV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"dir" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"diu" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 - }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 +"dhv" = ( +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 11 }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"diK" = ( -/obj/structure/machinery/power/apc/no_power/west, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7; - pixel_y = 6 +"diE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"diQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue{ - pixel_x = 6; +/obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"diW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/redcorners/north, -/area/varadero/interior/security) -"djh" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/wood, -/area/varadero/interior/library) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"djv" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) "djP" = ( /obj/structure/bed/chair, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"dkl" = ( -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"dkr" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/research) -"dkC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"dkk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Lobby"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"dkL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Disposals"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) "dkS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"dkV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "dlh" = ( /obj/structure/machinery/chem_dispenser/soda{ density = 0; @@ -3788,27 +3473,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"dlr" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"dlv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dls" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "dlD" = ( /obj/structure/prop/rock/brown_degree, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"dmq" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) +"dlV" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "dmN" = ( /turf/closed/wall/r_wall/elevator{ dir = 5 @@ -3819,50 +3499,42 @@ /obj/item/storage/pouch/medkit/full_advanced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"dmS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +"dmT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "dnh" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"dnU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"dnV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/white, -/area/varadero/interior/security) -"dnW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"doa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"dob" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"doO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/firealarm{ +"dnk" = ( +/obj/structure/machinery/alarm{ dir = 4; - pixel_x = 24 + pixel_x = -24 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"dny" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dnY" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"dnZ" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "doP" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/warning_stripes{ @@ -3871,63 +3543,73 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"doW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Theta-V Research Laboratory"; - req_one_access = null; - req_access = null +"dpc" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"dpq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"dpz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Brig"; - req_access_txt = "100" +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) +"dpv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"dpI" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dpN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "dpW" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"dpZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/yellowcorners/west, -/area/varadero/interior/cargo) "dqx" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"dro" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/alarm{ - pixel_y = 24 +"drj" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"drK" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance/research) "dsi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"dss" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"dta" = ( +/obj/structure/surface/table, +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = -1 + }, /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) -"dsC" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "dtj" = ( /obj/structure/sign/poster/propaganda, /turf/closed/wall, @@ -3938,10 +3620,43 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"dtv" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"dtB" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"dtF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "dtH" = ( /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) +"dtI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"dtT" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "duw" = ( /obj/effect/decal/cleanable/cobweb2{ pixel_x = 11; @@ -3978,40 +3693,34 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"dvw" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) -"dvT" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastbeach) -"dwN" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop, +"dvt" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"dwi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"dwP" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"dxn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; +/area/varadero/interior_protected/maintenance/south) +"dwo" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"dxd" = ( +/obj/structure/surface/table, +/obj/item/paper/janitor{ pixel_y = 8 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"dxt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "dxK" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"dyl" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +"dxV" = ( +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "dyo" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -4026,46 +3735,31 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"dzH" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"dzN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dBA" = ( +"dzu" = ( /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ pixel_x = 10 }, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) -"dBB" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"dCz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"dzH" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) +"dBX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"dCE" = ( -/turf/open/floor/shiva/yellowfull/west, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) +"dDj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) "dDn" = ( /obj/item/shard{ icon_state = "large"; @@ -4078,11 +3772,50 @@ /obj/item/tool/wirecutters, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"dEo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +"dDN" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"dEa" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"dEy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"dEC" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "dEJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -4090,16 +3823,23 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"dFd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dEX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "dFm" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"dFr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "dFt" = ( /obj/structure/prop/fishing/line/long, /turf/open/gm/coast/beachcorner2/south_west, @@ -4124,26 +3864,84 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"dFJ" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"dFL" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"dFP" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"dGl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "dGr" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/space) -"dGR" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ +"dGx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"dHD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"dHY" = ( -/obj/structure/desertdam/decals/road_edge{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"dGZ" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"dHc" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"dHj" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"dHp" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dHA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Lobby" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"dHM" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"dHY" = ( +/obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; pixel_x = -16; pixel_y = -16 @@ -4180,135 +3978,119 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"dID" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"dIK" = ( -/obj/structure/largecrate/random, +"dIL" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"dIO" = ( +/obj/item/tool/minihoe, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"dKc" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -9 +"dJC" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"dJJ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -13; - pixel_y = 12 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"dKx" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/hall_N) -"dKm" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/weapon/gun/rifle/m41a, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"dKy" = ( -/obj/structure/closet/crate/freezer/cooler/oj, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"dLN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"dKD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"dLP" = ( -/obj/item/stool{ - icon_state = "stool_alt" +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"dMm" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"dKI" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - health = 80 - }, -/obj/structure/surface/rack, -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dNh" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" + pixel_x = 12; + pixel_y = 13 }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"dNt" = ( -/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"dKV" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"dNU" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/varadero/interior/hall_SE) +"dLa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"dNW" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"dLj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"dLo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black{ - pixel_x = -7; - pixel_y = 13 +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/item/folder/white{ - pixel_x = -6; - pixel_y = 7 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"dLt" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/folder/yellow{ - pixel_x = -7 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/item/facepaint/lipstick/jade{ - pixel_x = 5 +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"dNY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/obj/item/storage/large_holster/katana/full, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"dLE" = ( +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"dLT" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 6 +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dMS" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"dNZ" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves/central) -"dOk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory Storage"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/white, +/area/varadero/interior/toilets) +"dNl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/structure/closet/crate/ammo/alt, +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"dNq" = ( +/obj/item/book/manual/detective, +/turf/open/floor/wood, +/area/varadero/interior/library) "dOl" = ( /obj/item/prop/colony/used_flare, /turf/open/gm/dirt, @@ -4317,58 +4099,66 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dOS" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/pontoon_beach) +"dOp" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"dOH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"dOW" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "dPR" = ( /obj/item/reagent_container/glass/bucket, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"dQe" = ( -/obj/structure/machinery/light{ - dir = 4 +"dQH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"dQS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center" }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"dQl" = ( -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dQr" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"dRZ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"dQK" = ( -/obj/effect/landmark/static_comms/net_one, /turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"dQT" = ( -/obj/structure/bed/chair/comfy/teal, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"dQV" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"dRs" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"dRI" = ( -/obj/effect/landmark/yautja_teleport, +/area/varadero/exterior/lz1_near) +"dSg" = ( +/obj/item/tool/wrench{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"dRX" = ( +/area/varadero/interior/cargo) +"dSn" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "dSo" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -4386,53 +4176,49 @@ /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/varadero/interior/security) -"dSA" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"dTe" = ( -/obj/item/stack/cable_coil/random, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"dTl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, +"dTd" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance/north) "dTu" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"dTC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) "dTG" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastocean) -"dTS" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"dTK" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"dTV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 2 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"dUh" = ( -/obj/structure/morgue, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) -"dUA" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva/redfull, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"dUa" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"dUr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) +"dUH" = ( +/obj/structure/girder/displaced, +/obj/structure/prop/invuln/overhead_pipe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dUI" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "dUS" = ( /obj/structure/bed/chair{ @@ -4442,37 +4228,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"dVq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Library"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"dWu" = ( -/obj/structure/surface/rack, -/obj/item/broken_device{ - desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"dWE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) -"dWH" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"dWk" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"dWs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "dWN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine{ @@ -4489,6 +4254,17 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"dWZ" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/trash/ceramic_plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"dXc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "dXd" = ( /turf/closed/wall/r_wall/elevator{ dir = 5 @@ -4504,70 +4280,52 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dYn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"dYi" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/maintenance/research) +"dYj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "dYp" = ( /obj/item/book/manual/hydroponics_beekeeping, /turf/open/floor/carpet, /area/varadero/interior/library) -"dYy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"dYW" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "dYX" = ( /obj/structure/machinery/light, /turf/open/floor/carpet, /area/varadero/interior/library) -"dYZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/pen/blue{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"dZT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"dZZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks{ - pixel_x = -7; - pixel_y = 8 +"dZI" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/item/tool/lighter/zippo{ - icon_off = "blackzippo"; - icon_on = "blackzippoon"; - icon_state = "blackzippo"; - pixel_x = -5; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/ashtray/plastic{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"eaa" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Engine Room" }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "eat" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -4578,14 +4336,17 @@ /obj/item/packageWrap, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"eaQ" = ( -/obj/effect/spawner/random/toolbox, +"ebf" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "ebi" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"ebj" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) "ebm" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -4597,146 +4358,85 @@ "ebr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves) -"ebF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"ebJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ +"eby" = ( +/obj/structure/bed/chair/office/dark{ dir = 8; - climb_delay = 1; - layer = 2.99 + pixel_x = -6; + pixel_y = 3 }, -/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"ebN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"ecb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/area/varadero/interior/maintenance/security) +"ebX" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"edz" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"edu" = ( -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) -"edD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"eea" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 +/obj/structure/prop/static_tank/water{ + pixel_y = 8 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"eeg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/technical_storage) -"efw" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"edH" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"eek" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"eeA" = ( +/obj/structure/bed/chair/hunter{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"efe" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"efv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "efy" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastocean) -"efU" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"efK" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "egj" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"egp" = ( -/obj/structure/window/framed/colony, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/open/floor/dark2, -/area/varadero/interior/hall_N) -"egH" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 1 +"egl" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"ego" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"egJ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick{ - pixel_x = -4; - pixel_y = 11 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/item/reagent_container/glass/pressurized_canister, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"egF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "egV" = ( /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"eha" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"ehD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"ehH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) "ehM" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -4771,14 +4471,29 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"eij" = ( -/obj/structure/bed, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +"eiq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"eiJ" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "eiK" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"eiR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "ejk" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -4792,32 +4507,50 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ejK" = ( -/obj/structure/machinery/alarm{ +"ejn" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"ejx" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = 24 + icon_state = "pipe-c" }, -/turf/open/floor/wood, -/area/varadero/interior/library) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"ejA" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"ejE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"ejH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "ejM" = ( /turf/open/gm/coast/north, /area/varadero/exterior/monsoon) -"ejZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ekp" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/sling, -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"ejS" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "ekE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -4830,38 +4563,70 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"ekO" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +"ekR" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"elm" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/largecrate/random/mini/wooden{ + desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"elv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"elw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"elx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"elD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "elI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastocean) -"elP" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/monsoon) -"emC" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel/pict_system, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "emP" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"enu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"enH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"enU" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) +"enP" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "enZ" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -4877,18 +4642,15 @@ "eov" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"eoB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) "eoV" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"epm" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "epN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -4897,40 +4659,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"epO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "epQ" = ( /turf/closed/wall, /area/varadero/interior/morgue) -"epY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"eqe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "eqg" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -4939,52 +4670,40 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"eqn" = ( -/obj/structure/machinery/light{ - dir = 4 +"eqq" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"erb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"eqB" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 2 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"erE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"erK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"erp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "erQ" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"esw" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"esA" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"esr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + pixel_x = 2; + pixel_y = 7 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"esB" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "esK" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -4992,28 +4711,13 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"esM" = ( -/obj/structure/target/syndicate, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"esO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"etf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Main Hallway" +"esU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/green/northeast, /area/varadero/interior/hall_SE) -"etv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "etE" = ( /obj/structure/filingcabinet{ density = 0; @@ -5029,20 +4733,33 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"etH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "etV" = ( /obj/item/stack/sheet/metal, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"euH" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tank/emergency_oxygen, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"euM" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) +"etZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"eur" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "euS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -5051,34 +4768,67 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"evV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"euT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"evy" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"evW" = ( -/obj/item/lightstick/variant/planted, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) -"evX" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +"evA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ewv" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"ewS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"evE" = ( +/obj/item/tool/mop{ + pixel_x = -16; + pixel_y = 26 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"evN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"exc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "exj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -5090,22 +4840,27 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"exH" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"exX" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) "eyt" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/east) +"eyD" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"eyJ" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "eyL" = ( /obj/structure/surface/table, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"eyM" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"eyO" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "ezb" = ( /obj/structure/surface/rack, /obj/item/frame/table, @@ -5114,50 +4869,9 @@ /obj/item/frame/table, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"ezc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"ezd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"ezt" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"ezx" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/sign/safety/waterhazard, -/obj/structure/sign/safety/water{ - pixel_x = 15 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"ezI" = ( +"ezo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, /turf/open/floor/shiva/north, /area/varadero/interior/research) @@ -5174,116 +4888,72 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ezW" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ezZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"eAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"eAJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"eBf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"eAl" = ( +/obj/structure/surface/table, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds{ + pixel_x = 1; + pixel_y = -2 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"eBm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/area/varadero/interior/maintenance/research) +"eAE" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"eBq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "eBs" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 }, /area/varadero/interior/records) -"eBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"eBL" = ( -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"eBS" = ( -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"eBF" = ( +/obj/item/weapon/gun/flare{ + current_mag = null }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"eBT" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"eCb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/closet/crate, +/obj/item/prop/magazine/dirty/torn/alt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance/security) "eCg" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"eCj" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) +"eCn" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) "eCu" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/interior_protected/caves/central) -"eCB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"eCY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 3; - pixel_y = 15; - indestructible = 1; - unacidable = 1 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"eDd" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"eDE" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "eDF" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -5299,17 +4969,35 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"eDY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "eEd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) +"eEv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"eEF" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "eEY" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -5326,29 +5014,22 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"eFJ" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"eFW" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"eGq" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eGL" = ( -/obj/item/stack/sheet/plasteel{ - amount = 24 +"eGB" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"eGD" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"eGF" = ( +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "eGP" = ( /obj/structure/closet/cabinet, /obj/effect/spawner/random/powercell, @@ -5363,6 +5044,11 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/toilets) +"eHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "eHs" = ( /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, @@ -5371,97 +5057,132 @@ /obj/item/stack/sheet/wood/medium_stack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"eHB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"eHJ" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -3 }, -/turf/open/floor/shiva/red/southwest, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 6 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"eHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/shiva/redcorners/west, /area/varadero/interior/security) -"eIr" = ( +"eIv" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"eIT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 +"eIA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"eIL" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"eIV" = ( -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"eJI" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/pillbottles{ - pixel_x = -7; - pixel_y = 6 +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"eIN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = 3; + pixel_y = 9 }, -/obj/item/storage/pill_bottle/packet/bicaridine{ +/obj/item/device/cassette_tape/ocean{ pixel_x = 6; - pixel_y = -2 + pixel_y = 4 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"eJN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/item/device/cassette_tape/pop2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"eIR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Bay" + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"eJr" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"eJO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"eJU" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"eKt" = ( /obj/structure/barricade/handrail/wire{ - dir = 4 + layer = 3.1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"eJS" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"eKy" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"eKA" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/technical_storage) +"eKC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "Underground Morgue"; + req_access_txt = "100" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"eKF" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 +/turf/open/floor/dark2, +/area/varadero/interior/morgue) +"eKK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/hall_SE) "eKL" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"eLZ" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 +"eLM" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "eMi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -5486,9 +5207,26 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/varadero/interior/court) -"eMD" = ( -/turf/open/floor/shiva/red/southwest, +"eMu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) +"eMw" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/research) +"eMS" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" + }, +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "eNk" = ( /obj/item/toy/sword, /obj/item/clothing/head/pirate, @@ -5506,18 +5244,6 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"eOh" = ( -/obj/structure/machinery/optable, -/obj/item/cpr_dummy, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"eOu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) "eOv" = ( /obj/item/circuitboard/airlock, /turf/open/floor/shiva, @@ -5525,72 +5251,34 @@ "eOK" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"eOZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"ePb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"ePB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"eQa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"ePg" = ( +/obj/structure/surface/rack, +/obj/item/broken_device{ + desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"ePT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "eQm" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"eQr" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eQz" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) +"eQo" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) "eQC" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"eQI" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"eQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +"eQK" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/court) "eRD" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, @@ -5601,37 +5289,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"eRM" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"eRO" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"eRQ" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"eSg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eRR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"eSs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) -"eSo" = ( -/obj/structure/closet/crate/construction, -/obj/item/tool/extinguisher, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"eSA" = ( +/obj/item/clothing/shoes/swimmingfins, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "eTb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -5641,6 +5315,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"eTh" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) +"eTl" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "eTP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -5652,23 +5337,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"eUh" = ( -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"eUr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - pixel_x = 2; +"eUA" = ( +/obj/item/reagent_container/food/snacks/fishfingers{ pixel_y = 7 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"eUv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "eUH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5678,93 +5353,47 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"eVn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"eVH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"eVU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"eVW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"eWp" = ( +"eUK" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"eWR" = ( -/turf/open/floor/shiva/purplecorners/west, -/area/varadero/interior/research) -"eWZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/item/clothing/under/shorts/grey, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"eUS" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"eUW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/surface/rack, +/turf/open/floor/shiva/wred/southwest, +/area/varadero/interior/medical) +"eUZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"eVL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"eXg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"eXr" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"eXw" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - name = "barge float"; - desc = "A supportive lattice connected to two floating pontoons." +/area/varadero/interior/maintenance) +"eXJ" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "eXN" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -5781,57 +5410,119 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"eYe" = ( -/obj/structure/bed/chair/office/light{ +"eXQ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"eYG" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eYw" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"eYy" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"eYB" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eYY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Research Laboratory"; + req_one_access = null; + req_access = null + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"eYM" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"eZc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_NW) +"eYZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) -"eZk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"eZe" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"eZL" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"eZN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"fao" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"faq" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"eZO" = ( +/obj/structure/toilet, +/turf/open/floor/white, +/area/varadero/interior/security) +"fam" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "fay" = ( /turf/closed/wall/r_wall, /area/varadero/interior/research) -"faP" = ( +"faJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Underground Lavatory"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"faU" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"fbo" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"fbv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"faX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "fbw" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ desc = "A high-power hydroelectric generator."; @@ -5839,6 +5530,9 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) +"fbz" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "fbQ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -5853,28 +5547,24 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"fbW" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = -4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) "fbZ" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"fca" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) "fcf" = ( /obj/structure/surface/table, /obj/item/device/camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fcg" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) "fcp" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, @@ -5883,85 +5573,45 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"fcK" = ( +"fcG" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"fds" = ( +/obj/item/device/taperecorder, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"fdX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"fdn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"fdw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Sports Center"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/shiva/floor3, /area/varadero/interior/court) -"fdA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"fef" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 7; - pixel_y = 13 +"fet" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/obj/item/implantcase/explosive{ - pixel_x = -3; - pixel_y = 3 +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "feH" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"feR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"feV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) "ffe" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"ffk" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "ffx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5969,24 +5619,50 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ffY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"ffI" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/item/storage/firstaid/adv, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"fge" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"fga" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"fgo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/surface/rack, -/obj/item/tool/wrench, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"fgs" = ( +/obj/structure/closet/crate, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) +"fgL" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"fgS" = ( +/obj/structure/machinery/computer/operating{ + density = 0 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "fgW" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -5995,59 +5671,24 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fhh" = ( -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 - }, +"fhj" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fhu" = ( -/obj/structure/bed/chair, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) -"fhM" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/disposals) -"fhV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 7 - }, +/area/varadero/interior/maintenance/research) +"fhs" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fiv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"fiA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/hall_SE) +/area/varadero/interior/maintenance) +"fhT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "fjg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"fjv" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"fjx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) +"fjj" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) "fjC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -6072,40 +5713,37 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"fjU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) "fkd" = ( /obj/item/toy/beach_ball, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"fkj" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"fky" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"fkl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 12 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fkE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"fkF" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/tool/stamp/clown{ + pixel_x = 8; + pixel_y = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/obj/item/tool/stamp/rd{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"fkw" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "fkR" = ( /turf/closed/wall, /area/varadero/interior/court) @@ -6119,152 +5757,118 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"fli" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"fls" = ( +/obj/structure/prop/static_tank{ + pixel_y = 8 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fmu" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"fmy" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"fnj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fnl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"fnq" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"fnF" = ( +"fnv" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/stamp{ - pixel_x = 8; - pixel_y = 10 +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 5 +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 +/obj/item/tool/stamp, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"fnX" = ( -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"fnw" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"fof" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - unacidable = 0 - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/item/device/flashlight/slime, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"foz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"foE" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"fnx" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"fod" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) +"foP" = ( +/obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"foF" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/mess) "foQ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"foU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ +"foV" = ( +/obj/structure/prop/structure_lattice{ density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"fpe" = ( -/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/wood, /area/varadero/interior/library) -"fpf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) "fpq" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/lz2_near) +"fpL" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) "fpY" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"fqs" = ( +"fqo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"frk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"fqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +/area/varadero/interior_protected/maintenance/south) "frR" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"fso" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "fsC" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -6274,6 +5878,33 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"fsL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/encryptionkey/dutch, +/obj/item/device/encryptionkey/dutch{ + pixel_x = -6 + }, +/obj/item/device/encryptionkey/dutch{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/book/manual/marine_law{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "ftm" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -6281,6 +5912,10 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"fto" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "ftA" = ( /obj/structure/sign/safety/coffee, /obj/structure/sign/safety/galley{ @@ -6288,27 +5923,77 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"ftF" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/comms3) -"fuh" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt/desert_dug, -/area/varadero/interior/maintenance/north) -"fuj" = ( -/obj/structure/safe/floor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fuF" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"ftX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"fun" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"fuw" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/area/varadero/interior/oob) +"fuQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Showers"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "fuS" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/disposals) +"fuT" = ( +/obj/item/tank/anesthetic, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"fuX" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"fva" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "fvd" = ( /obj/structure/filingcabinet{ density = 0; @@ -6324,13 +6009,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fvw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) "fvV" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/machinery/light/small{ @@ -6338,32 +6016,36 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"fwg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "fwo" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"fxK" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"fwJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"fxR" = ( -/obj/item/moneybag{ - anchored = 1; - desc = "A console designed by the Hunters to assist in flight pathing and navigation."; - dir = 8; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "overwatch"; - name = "Hunter Flight Console"; - pixel_x = -17 +/area/varadero/interior/electrical) +"fxb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/bed/chair/hunter{ - dir = 8 +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"fxh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"fxN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "fxX" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -6372,13 +6054,9 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"fys" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) +"fyk" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "fyP" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/candelabra{ @@ -6388,136 +6066,161 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"fyZ" = ( -/mob/living/simple_animal/cat{ - desc = "A domesticated, feline pet. The collar says 'Orion'."; - name = "Orion"; - real_name = "Orion" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) "fzc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"fzx" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"fzy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"fAq" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"fAs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +"fzk" = ( +/turf/open/floor/white, +/area/varadero/interior/laundry) +"fAN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fAO" = ( /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"fAQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +"fBC" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) +"fBL" = ( +/obj/item/device/camera{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/evidencebag{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fBO" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/flora/pottedplant{ + desc = "How did that get in there?"; + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"fBQ" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "fBV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fCB" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 1 +"fCu" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"fDB" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow/east, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"fCv" = ( +/obj/structure/closet/crate, +/obj/item/trash/chunk, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) +"fDu" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/disposals) +"fDy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"fDA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = 6 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "fDH" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"fEm" = ( +"fDI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"fEl" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = -3; - pixel_y = 14 +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"fEt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"fEu" = ( -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"fEz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/records) -"fEA" = ( -/obj/structure/girder/displaced, +/area/varadero/interior/security) +"fEw" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"fEI" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +/area/varadero/interior_protected/maintenance/south) +"fFh" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) +"fFn" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"fER" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"fFm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 3 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"fFs" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 7 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, +/obj/item/toy/plush/farwa, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"fFu" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) "fFw" = ( /obj/item/stack/sheet/wood, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"fFx" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) "fFH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -6526,23 +6229,11 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fFI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"fFK" = ( -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, +"fGD" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/vessel) +/area/varadero/exterior/farocean) "fGM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -6552,116 +6243,56 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"fGN" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) -"fHf" = ( -/obj/structure/platform_decoration/kutjevo{ +"fHc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"fHk" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"fHs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"fHx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"fIk" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"fJb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"fJI" = ( -/obj/item/clothing/gloves/yautja{ - anchored = 1; - can_block_movement = 1; - charge = 1; - charge_max = 1; - color = "#a8a7a5"; - density = 1; - desc = "The ship's on-board self destruct system, let's hope you never have to use it."; - name = "Self Destruct System"; - pixel_y = 24 - }, -/obj/structure/bed/chair/hunter{ - dir = 1 +"fHk" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"fHL" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"fJR" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"fKz" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"fIN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"fJt" = ( +/turf/open/floor/darkgreencorners2/west, +/area/varadero/interior/hall_SE) +"fKk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Sample Isolation"; - req_access = null; - req_one_access = null - }, +/obj/structure/xenoautopsy/tank/hugger, /turf/open/floor/shiva/north, /area/varadero/interior/research) -"fLn" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = "brg" +"fKQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) +/turf/open/floor/shiva/purplecorners, +/area/varadero/interior/research) +"fLe" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "fLY" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) -"fLZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/comms3) -"fMq" = ( -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 5; - pixel_y = -3 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) "fMI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -6684,98 +6315,85 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fND" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"fNw" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"fOG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/area/varadero/interior/maintenance/security) +"fNX" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"fOL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "fOO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"fPn" = ( -/obj/structure/disposalpipe/segment{ +"fPd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"fPm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"fPo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/item/storage/fancy/cigar, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "fPp" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_2" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"fPq" = ( -/obj/structure/machinery/power/apc/no_power/north, +"fPs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"fPy" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) +/area/varadero/interior/maintenance) "fPJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fPU" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/flora/pottedplant{ - desc = "How did that get in there?"; - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"fQr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"fQE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/mess) "fQK" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"fQW" = ( -/obj/structure/prop/turbine_extras, +"fQR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"fRh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/area/varadero/interior_protected/maintenance/south) "fRl" = ( /obj/structure/largecrate/random/case, /obj/item/spacecash/c10{ @@ -6788,41 +6406,45 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"fRr" = ( +/obj/structure/machinery/light, +/obj/structure/closet/toolcloset, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fRV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "fSa" = ( /obj/structure/window_frame/colony, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"fTh" = ( -/obj/item/tool/shovel, +"fSs" = ( +/obj/structure/surface/rack, +/obj/item/clipboard, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"fSE" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"fUn" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance/north) -"fUs" = ( -/obj/structure/machinery/light/small, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior/caves/north_research) -"fUF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/area/varadero/interior/maintenance) +"fTn" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"fUJ" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"fUY" = ( -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"fUZ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "HotlineAlt" }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/disposals) -"fVt" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"fTF" = ( /obj/structure/machinery/door_control{ id = "colony_sec_armory"; name = "Colony Secure Armory"; @@ -6830,38 +6452,61 @@ }, /turf/open/floor/shiva/red, /area/varadero/interior/security) +"fTO" = ( +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"fTT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"fUs" = ( +/obj/structure/machinery/light/small, +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior/caves/north_research) +"fUB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, +/area/varadero/interior/security) +"fUJ" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) "fVw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"fVW" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "fWd" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/eastocean) -"fWn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"fWr" = ( -/obj/structure/machinery/light{ - dir = 8 +"fWk" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"fWz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"fWA" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "fWE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -6886,10 +6531,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fWU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) "fWW" = ( /obj/structure/surface/rack, /obj/structure/surface/rack, @@ -6905,14 +6546,36 @@ /obj/item/ashtray/plastic, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"fXu" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 5; - pixel_y = 12 +"fXh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/trash/barcardine, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"fXj" = ( +/obj/structure/bedsheetbin, +/obj/item/storage/box/attachments{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"fXo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"fXp" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "fXA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -6932,109 +6595,55 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fXH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"fXX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/trash/crushed_cup, -/obj/item/trash/c_tube, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"fYA" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_N) -"fYH" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"fYQ" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) -"fYV" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"fZd" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"fZe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"fZx" = ( -/obj/item/stool{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"fZB" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"fZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"fZP" = ( -/obj/item/shard{ - icon_state = "medium" +"fYl" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"fYt" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "fZX" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"gan" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) -"gar" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"gaw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"gam" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "gaG" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"gaJ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +"gbs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "gbE" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -7044,17 +6653,47 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"gbG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - icon_state = "chair" +"gbU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"gcr" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "gcB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"gcE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "gcF" = ( /obj/structure/prop/wooden_cross{ desc = "A grave to a fishing buddy, long gone" @@ -7064,12 +6703,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gcK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/cargo) +"gcG" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gds" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz1_near) "gdJ" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -7089,6 +6730,9 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) +"gdY" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) "geo" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) @@ -7128,61 +6772,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gfg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"gfj" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "gfk" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gfp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"gfr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/tool/stamp{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/box/masks{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"gfs" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"gfu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "gfA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -7193,10 +6786,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gfG" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"gfN" = ( +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "ggk" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 @@ -7213,25 +6806,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gha" = ( -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"ghb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ghi" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"ghE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/surface/table, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"ghs" = ( -/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance/security) "ghI" = ( /obj/structure/catwalk, /obj/structure/barricade/handrail/wire{ @@ -7242,71 +6831,51 @@ "ghN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/monsoon) -"ghW" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz2_near) -"gia" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"ghX" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"gif" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"giz" = ( +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "giN" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"gja" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"gjs" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gjw" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"gjy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"gjz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"giO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"giZ" = ( +/obj/structure/inflatable/door, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "gjC" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gka" = ( -/obj/structure/machinery/shower{ - dir = 1 +"gjO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"gjT" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) "gkb" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/pouch/shotgun/large, @@ -7315,73 +6884,106 @@ /obj/item/storage/large_holster/m39/full, /turf/open/floor/wood, /area/varadero/interior/security) -"gkw" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +"gke" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/varadero/exterior/lz1_near) +"gkg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"gkk" = ( +/obj/item/storage/firstaid, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"gkx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "gkF" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/maintenance) -"gkG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 +"gkK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"gkL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 2 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) +"gkR" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"gkS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"gms" = ( -/obj/effect/landmark/good_item, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"gmK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/southeast, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) -"gmT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"gkT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"gnm" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clothing/head/helmet, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"gkZ" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"glk" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"glW" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, +/obj/item/tool/crowbar/red, +/obj/item/tank/emergency_oxygen, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"gmt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"gmy" = ( +/obj/structure/closet/crate/construction, +/obj/item/tool/extinguisher, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"gnx" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/area/varadero/exterior/eastbeach) +"gnF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"gnY" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"gnC" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 7 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"gnZ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/white, -/area/varadero/interior/security) +/area/varadero/exterior/lz2_near) "god" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -7394,6 +6996,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"goe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gop" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "gor" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -7402,49 +7018,51 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"gpJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"gox" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) +"goN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "gqE" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"gqN" = ( -/obj/item/tool/soap, -/turf/open/floor/white, -/area/varadero/interior/security) -"gqX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) "grG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) +"grH" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/maintenance) "grT" = ( /obj/structure/sign/safety/water, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"gsd" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "gsm" = ( /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"gsq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) "gsC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, @@ -7471,49 +7089,93 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gtv" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +"gti" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"gtE" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"gtT" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"gun" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +/area/varadero/interior/hall_SE) +"guu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "gux" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"guE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +"guH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"gve" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) "gvo" = ( /obj/item/ore/diamond, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"gvE" = ( -/obj/structure/machinery/light{ +"gwp" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"gwu" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"gwD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/closed/wall/rock/brown, +/area/varadero/exterior/eastbeach) +"gwS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"gvF" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/administration) -"gvM" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/maintenance/north) -"gvR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"gwt" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"gwV" = ( /obj/structure/filingcabinet{ density = 0; icon_state = "chestdrawer"; @@ -7526,33 +7188,8 @@ pixel_x = -8; pixel_y = 11 }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"gwB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"gwC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"gwD" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/closed/wall/rock/brown, -/area/varadero/exterior/eastbeach) -"gwG" = ( -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"gwO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) "gxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -7561,13 +7198,45 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"gxj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"gxo" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "gxQ" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"gxX" = ( -/obj/structure/window/framed/colony/reinforced, +"gxU" = ( +/obj/structure/closet/crate, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"gyb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "gyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7578,6 +7247,18 @@ "gyz" = ( /turf/closed/wall/mineral/gold, /area/varadero/interior/maintenance) +"gyD" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "gyE" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, @@ -7586,21 +7267,18 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/security) -"gze" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/machinery/light{ - dir = 1 +"gyZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 }, -/obj/item/clothing/mask/cigarette/ucigarette{ - pixel_x = -5; - pixel_y = 2 +/obj/item/paper/janitor{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "gzm" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -7610,40 +7288,75 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gAl" = ( -/obj/structure/bed/chair{ - dir = 4 +"gzw" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"gzy" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/interior/maintenance/north) +"gzQ" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"gzZ" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, /turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"gAK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/interior/hall_NW) +"gAG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"gBi" = ( -/obj/item/stool{ - icon_state = "stool_alt" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"gBa" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/chapel) +"gBn" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"gBq" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"gBM" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"gBG" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "gBP" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -7658,24 +7371,36 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"gBV" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) "gBW" = ( /obj/item/stack/sandbags_empty/half, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"gBZ" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "gCe" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gCi" = ( -/obj/structure/machinery/light{ - dir = 1 +"gCm" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"gCw" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"gCL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/blue, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "gCQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -7684,6 +7409,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"gCV" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "gCZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -7703,142 +7435,190 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "gDr" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"gDt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "gDI" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gEy" = ( -/obj/structure/machinery/light, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) -"gEz" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"gEO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3{ - pixel_y = -3 +"gEf" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"gEh" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/maintenance/north) +"gEq" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"gEt" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) "gEP" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"gFt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) +"gFi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Requesitions Office"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"gFn" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gFq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "gFx" = ( /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"gFA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) "gFH" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"gFW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"gFL" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "gFY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gHH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"gIB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"gJs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gGf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/area/varadero/interior/cargo) +"gIx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"gJn" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"gJo" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) "gJy" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"gJI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "gJN" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"gKn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" +"gKG" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/court) -"gKs" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/interior/oob) -"gKw" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"gLo" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/wood, +/area/varadero/interior/library) +"gKM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) "gLw" = ( /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"gLE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"gLJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 9 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"gLL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "gLV" = ( /obj/structure/closet/crate, /obj/item/tool/lighter, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gMi" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"gMm" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/maintenance/south) "gMp" = ( /obj/structure/surface/table, /obj/item/paper_bin{ @@ -7848,32 +7628,36 @@ /obj/item/tool/pen/red/clicky, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gMV" = ( +"gMs" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/obj/structure/machinery/constructable_frame, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"gMv" = ( +/obj/structure/machinery/door/window/northright{ + name = "Disposals Chute" + }, +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"gMR" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "gNb" = ( /obj/structure/closet/wardrobe/chaplain_black, /turf/open/floor/wood, /area/varadero/interior/chapel) -"gNe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +"gNc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "gNE" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gOe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/records) "gOj" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -7885,18 +7669,10 @@ "gPi" = ( /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) -"gPA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +"gPw" = ( +/obj/structure/surface/table, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gPE" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior_protected/caves/central) -"gPG" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/maintenance/security) "gPL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -7911,24 +7687,16 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"gPY" = ( -/obj/structure/surface/table, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"gPZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, +"gQr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/administration) +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Custodial Closet"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "gRj" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -7936,62 +7704,65 @@ /obj/item/grown/log, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gRN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/bedsheet{ - anchored = 1; - desc = "A console used by the Hunters for navigation purposes."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "security_cam"; - name = "Hunter Nav Console" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"gRS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"gRT" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "gRU" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gSn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gSD" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/light/small{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"gSF" = ( +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gSC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gSY" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -6; +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; pixel_y = -3 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/maintenance/south) +"gSO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "gTe" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"gTf" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "gTC" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/disposals) +"gTI" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"gUu" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "gUP" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -8007,13 +7778,21 @@ "gVO" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"gVP" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"gVQ" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"gVR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"gVU" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) "gWd" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -8024,11 +7803,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gWu" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) "gWA" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -8064,54 +7838,60 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gXh" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/cargo) -"gXN" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"gXO" = ( -/obj/structure/machinery/light{ - dir = 4 +"gXz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" }, -/turf/open/floor/shiva/yellow/east, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"gXY" = ( +/turf/open/floor/shiva/yellow, /area/varadero/interior/comms3) -"gYg" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "gYh" = ( /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"gZq" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"hay" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 9 +"gYz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) +"gYZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/item/storage/box/donkpockets{ - pixel_x = 5 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"gZc" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"gZw" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"gZV" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 18 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"haC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"haH" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "haP" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms1) @@ -8119,50 +7899,38 @@ /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) -"haT" = ( +"haS" = ( /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"haX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"hbi" = ( +/area/varadero/interior/bunks) +"hcr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/device/flashlight, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"hbD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"hbP" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 +/area/varadero/interior/maintenance/research) +"hcv" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"hcw" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"hca" = ( -/obj/structure/disposalpipe/segment{ +/area/varadero/interior/laundry) +"hcE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"hcz" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "hcI" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -8170,99 +7938,110 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"hcJ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"hcY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hdo" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "hds" = ( /turf/open/gm/coast/north, /area/varadero/exterior/eastocean) -"hdV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"hdx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"hdC" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -8; + pixel_y = 15 + }, +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 7; + pixel_y = 15 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"heg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "hej" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hek" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"hen" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"heu" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"hfo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"hfR" = ( -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"hfX" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Sample Isolation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"heT" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"hfl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"hfZ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"hgc" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hgB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/area/varadero/interior/maintenance/security) +"hgb" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"hgC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"hgD" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"hhi" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "hhM" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/north_research) -"hhW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"hic" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"hiD" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/mess) "hiE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hjf" = ( -/obj/structure/platform_decoration/kutjevo{ +"hiS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"hji" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "hjn" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -8286,6 +8065,14 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"hjS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) +"hkC" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "hkQ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, @@ -8308,17 +8095,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hli" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) "hlw" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/bed/chair/comfy/beige{ @@ -8326,16 +8102,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hlG" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "hlK" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses{ @@ -8352,6 +8118,24 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"hlY" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hlZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"hmd" = ( +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "hmg" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -8359,104 +8143,85 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"hmh" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz2_near) -"hmm" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/item/device/cassette_tape/pop2{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"hmR" = ( +"hmt" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"hmR" = ( /obj/item/tool/crowbar, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"hmT" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"hmY" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"hmZ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"hnd" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "hni" = ( /obj/structure/sign/safety/fire_haz{ pixel_y = 7 }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"hnR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +"hnC" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_SE) +"hor" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hos" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "hoC" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"hoG" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) "hoP" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance) -"hoU" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"hrc" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +"hpA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/bayonet/co2{ + pixel_y = 7 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hpV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"hqg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"hqF" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "hre" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"hrG" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_N) -"hrI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/hall_SE) -"hsa" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hsl" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) "hso" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8467,10 +8232,12 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) -"hsF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"hsv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "hte" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/vessel) @@ -8489,24 +8256,25 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"huf" = ( -/obj/structure/machinery/light{ - dir = 4 +"htD" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"htY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) +"hup" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"hus" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"huA" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"hux" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"huy" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "huE" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -8516,93 +8284,90 @@ "huF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"hvh" = ( -/obj/structure/machinery/light{ - dir = 8 +"hvA" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) +"hvL" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"hvO" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"hwa" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"hwE" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +/area/varadero/exterior/pontoon_beach) "hwL" = ( /obj/structure/prop/dam/crane, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hwP" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"hxi" = ( +/obj/structure/girder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"hxz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hxE" = ( /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"hwZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/demo_scanner{ - pixel_x = 5; - pixel_y = 8 +/area/varadero/interior/research) +"hyw" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/device/reagent_scanner{ - pixel_x = -7; - pixel_y = 3 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"hxa" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/administration) -"hyd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/tool/crowbar, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) -"hyp" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"hyr" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"hys" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"hyQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/obj/item/clothing/head/uppcap/peaked, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"hyP" = ( +/obj/structure/shuttle/engine/router{ + dir = 4; + unacidable = 0 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "hyT" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_4" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hza" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"hzm" = ( -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +"hyY" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "hzx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"hzA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"hzB" = ( +/obj/structure/inflatable, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "hzK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -8623,15 +8388,32 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/varadero/interior/court) -"hAI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"hAK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = -6; + pixel_y = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"hBX" = ( -/turf/open/floor/shiva/purple/southwest, +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"hAX" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) +"hBG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"hCf" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "hCw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -8645,22 +8427,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"hCZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"hDk" = ( -/obj/structure/bedsheetbin, -/obj/item/storage/box/attachments{ - pixel_x = -2; - pixel_y = 8 +"hCX" = ( +/obj/structure/bedsheetbin{ + pixel_y = 4 }, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) "hDw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -8669,14 +8441,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hDA" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"hDX" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +"hDz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "hDY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "windsock"; @@ -8685,14 +8456,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"hEv" = ( +"hEw" = ( +/obj/structure/window_frame/colony/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastocean) -"hEN" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hEJ" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "hET" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -8701,39 +8479,35 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hFE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, +"hFw" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) -"hGz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/wredfull, +/area/varadero/interior/hall_SE) +"hFM" = ( +/obj/structure/safe/floor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hGf" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) +"hHk" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "hHn" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hHE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"hHK" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"hHp" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"hHA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "hHR" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -8745,13 +8519,21 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/security) -"hJl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"hIe" = ( +/obj/structure/surface/table, +/obj/item/storage/box/sprays{ + pixel_x = -1; + pixel_y = 3 }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"hIW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "hJq" = ( /obj/structure/bed/chair{ dir = 4 @@ -8769,51 +8551,43 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"hJx" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) "hJB" = ( /obj/structure/blocker/fog, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"hJO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) -"hKe" = ( -/obj/structure/bed/chair/office/dark{ +"hKD" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/hall_N) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "hKK" = ( /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"hLE" = ( +"hLe" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"hLf" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 1 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"hLF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"hLp" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"hLG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "hLI" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable/fancy, @@ -8821,25 +8595,9 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood, /area/varadero/interior/administration) -"hMg" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hMh" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"hMC" = ( -/obj/item/clothing/ears/earmuffs{ - layer = 3.1; - pixel_x = 2; - pixel_y = 18 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +"hMu" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "hMG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8855,25 +8613,11 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastbeach) -"hMV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) "hNb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"hNc" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) "hNq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -8888,14 +8632,31 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"hOp" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"hNN" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/maintenance) +"hOh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"hOn" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "hOv" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -8908,9 +8669,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hPd" = ( +"hPa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_one_access = null; + req_access = null + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +/area/varadero/interior/medical) "hPj" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/security) @@ -8918,64 +8686,61 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hPD" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"hPF" = ( -/obj/item/paper/crumpled, -/turf/open/floor/shiva/red/west, +"hQv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/red/north, /area/varadero/interior/morgue) -"hQb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"hQl" = ( -/obj/structure/girder, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"hQo" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "hQP" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hQV" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +"hQT" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 5; + pixel_y = 8 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 +/obj/item/clothing/mask/cigarette/ucigarette{ + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hRs" = ( -/obj/structure/machinery/power/smes/magical{ - capacity = 9e+008; - charge = 9e+008; - dir = 4; - name = "plasma power generator" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"hRi" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) +"hRq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 }, -/turf/open/floor/strata/grey_multi_tiles, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"hSB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"hTs" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "hTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -8985,38 +8750,8 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/vessel) -"hTX" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"hTZ" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_y = 9 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"hUp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"hUs" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"hUx" = ( -/turf/open/floor/shiva/red/west, +"hUS" = ( +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) "hUU" = ( /obj/structure/machinery/requests_console{ @@ -9024,28 +8759,60 @@ }, /turf/closed/wall, /area/varadero/interior/cargo) -"hUY" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva/yellow, +"hVh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"hVr" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) -"hVL" = ( -/obj/item/stack/sandbags/large_stack{ - pixel_y = 4; - pixel_x = -12 +"hVG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"hVO" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_N) +"hVT" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hVW" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"hWc" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/storage/belt/medical{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "hWv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"hWA" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, +"hWQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"hXc" = ( /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/area/varadero/interior/security) "hXe" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/knife{ @@ -9059,41 +8826,27 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hXq" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/digsite) -"hXv" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) "hXR" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"hYp" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance) -"hZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"hZt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"hZD" = ( -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +/area/varadero/interior/hall_NW) "hZE" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/north, /area/varadero/exterior/lz1_near) -"iad" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) -"iah" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +"hZP" = ( +/obj/structure/closet, +/obj/item/device/flashlight/lantern, +/obj/item/map/current_map, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "ias" = ( /obj/structure/machinery/camera/autoname/lz_camera, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -9113,10 +8866,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iaM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "iaO" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 @@ -9126,38 +8875,17 @@ /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ibi" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"ibo" = ( -/obj/structure/prop/broken_arcade, -/turf/open/floor/wood, -/area/varadero/interior/library) "ibs" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iby" = ( -/obj/structure/machinery/light{ +"ibE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"ibP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "ibV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, @@ -9180,6 +8908,16 @@ /obj/structure/surface/table, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"icf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "icl" = ( /obj/structure/prop/rock/brown, /turf/closed/wall/rock/brown, @@ -9190,58 +8928,59 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"icn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"icZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"ico" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"idw" = ( +/turf/open/floor/wood, +/area/varadero/interior/security) +"ief" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"icM" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/varadero/interior/maintenance/security) +"ieD" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"idn" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/window/reinforced{ +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 8; - health = 80 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"ieR" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/item/clothing/head/uppcap/peaked, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"idw" = ( -/turf/open/floor/wood, -/area/varadero/interior/security) -"iet" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/wood, -/area/varadero/interior/library) -"ieu" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva/snow_mat/north, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners, /area/varadero/interior/security) -"ifB" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) "ifO" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -9250,6 +8989,9 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/farocean) +"igw" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_NW) "igB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -9264,42 +9006,52 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"igQ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"igU" = ( -/obj/item/roller{ - pixel_x = 2; - pixel_y = 7 +"igC" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/surface/table, -/obj/item/roller{ - pixel_x = 4; - pixel_y = 14 +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"ihn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"igN" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"ihg" = ( +/obj/structure/bed/chair/hunter{ + dir = 1 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"iht" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"ihs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"ihC" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"ihv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"ihW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "ihX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -9315,104 +9067,112 @@ "ihY" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"iig" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"iil" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/storage/box/engineer, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"iiN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"ijl" = ( +/obj/structure/prop/turbine_extras/left, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"iir" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/kepler, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"iiX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Secure Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) +/area/varadero/exterior/lz1_near) "ijO" = ( /obj/structure/holostool, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"ijZ" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -10; + pixel_y = -9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "iks" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"ilQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iku" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"ilr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/disposalpipe/segment{ +/obj/item/bedsheet{ + anchored = 1; + desc = "A console used by the Hunters for navigation purposes."; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "security_cam"; + name = "Hunter Nav Console" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"ilx" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"ilZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Armory"; - req_access_txt = "100" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"ilB" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/white, /area/varadero/interior/security) -"imd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellow, +"imb" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"iml" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_N) -"imk" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"imu" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "imz" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/records) -"inj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"inN" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, +"imS" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"inV" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/area/varadero/interior/caves/east) +"inn" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, -/obj/item/shard{ - icon_state = "medium" +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, -/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"inJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/c_tube, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/interior_protected/maintenance/south) +"inY" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "ioc" = ( /obj/structure/surface/table/woodentable, /obj/item/evidencebag, @@ -9427,8 +9187,24 @@ /obj/structure/closet/medical_wall, /turf/closed/wall, /area/varadero/interior/medical) -"ioA" = ( -/obj/structure/machinery/vending/cigarette/colony, +"ioQ" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ioR" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"ioS" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"ioV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "ipi" = ( @@ -9442,17 +9218,33 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"ipl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"ipo" = ( +/obj/structure/bed/alien{ + can_buckle = 0; + color = "#aba9a9" }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed/alien{ + buckling_y = 13; + color = "#aba9a9"; + layer = 3.5; + pixel_y = 13 }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"ipz" = ( +/obj/item/stack/cable_coil/cyan, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +/area/varadero/exterior/eastbeach) "ipC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" @@ -9463,6 +9255,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"ipO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "ipZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -9470,67 +9270,69 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iqv" = ( +"iql" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"iqU" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"iqW" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - name = "Incendiary Ammunition Order"; - desc = "An order manifest for incendiary ammo that has yet to be filled out." +/area/varadero/interior/maintenance/security) +"iqn" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iqz" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "ira" = ( /obj/item/frame/apc, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"irj" = ( -/turf/open/floor/shiva/redcorners/west, -/area/varadero/interior/security) -"irk" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"irw" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 +"isp" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) -"isK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = -6; - pixel_y = 4 +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = 7; - pixel_y = 3 +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/administration) +"isu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/area/varadero/interior/hall_N) +"isQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "itb" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/administration) -"itL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"itM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "itP" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 @@ -9554,72 +9356,73 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"itZ" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -8; - pixel_y = 7 +"iue" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"iuq" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = -2; + pixel_y = 6 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"ivo" = ( -/obj/structure/airlock_assembly, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) -"ivD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/varadero/interior/hall_NW) +"iuA" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/structure/disposalpipe/junction{ +/obj/item/prop/almayer/comp_open, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ivi" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"ivO" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"ivX" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/area/varadero/interior/comms1) +"ivo" = ( +/obj/structure/airlock_assembly, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"ivA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "iwf" = ( /mob/living/simple_animal/mouse, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"iwV" = ( -/obj/structure/inflatable, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"ixd" = ( -/obj/structure/machinery/computer/communications{ +"iwy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"ixh" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp78, -/obj/item/weapon/gun/pistol/vp78{ - pixel_y = -4 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"iwM" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"iwQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) "ixl" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"ixq" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) "ixr" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) @@ -9629,13 +9432,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"ixH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "ixQ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"iyd" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/varadero/exterior/lz1_near) "iyk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -9653,24 +9459,29 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"izl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"iyw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) +"iyD" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" + health = 300 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"izs" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"iyG" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"izq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) "izy" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -9678,43 +9489,39 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"izB" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, +"izN" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"izP" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/maintenance) -"iAa" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/area/varadero/interior_protected/maintenance/south) "iAc" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"iAp" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"iAh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"iAx" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) +/obj/structure/barricade/handrail{ + density = 0; + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "iAE" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_west, @@ -9729,21 +9536,74 @@ "iAX" = ( /turf/open/floor/carpet, /area/varadero/interior/administration) -"iBz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 +"iBZ" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -9 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -13; + pixel_y = 12 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"iCy" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/hall_N) +"iCf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"iCI" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iCS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"iDt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iDJ" = ( +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/disposals) +"iDK" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "iDM" = ( /obj/structure/machinery/bot/medbot{ name = "FOXYBOT 3000"; @@ -9760,17 +9620,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"iEo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "iFb" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) -"iFc" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -7; - pixel_y = -11; - desc = "A chest... filled with the wildest riches!" - }, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz2_near) "iFm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/guestpass{ @@ -9778,54 +9639,30 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"iFy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"iFK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/shiva/blue/east, +"iFE" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "iFQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"iFZ" = ( +"iGo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"iGM" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 + dir = 10 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"iGI" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"iHB" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) "iHE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"iHN" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastocean) "iIc" = ( /obj/item/device/flashlight/slime{ mouse_opacity = 0; @@ -9835,69 +9672,107 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pool) +"iIg" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"iIr" = ( +/obj/structure/pipes/unary/freezer{ + dir = 8; + icon_state = "freezer_1" + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "iIt" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, /area/varadero/interior/records) -"iIC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iIy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/soap{ + pixel_x = 5 }, -/obj/structure/surface/table, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"iIL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"iIW" = ( -/obj/structure/surface/table, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"iIA" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) +"iIE" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"iIF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/area/varadero/interior/administration) +"iIT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "iIY" = ( /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"iJa" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, +"iJp" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"iJk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) +/area/varadero/interior_protected/maintenance/south) "iJD" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"iKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iJO" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"iKb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) +"iKP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"iLc" = ( -/obj/structure/surface/table/woodentable, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/comms2) +"iKR" = ( +/obj/structure/prop/broken_arcade, +/turf/open/floor/wood, +/area/varadero/interior/library) "iLd" = ( /obj/structure/window/reinforced{ dir = 4; @@ -9927,188 +9802,232 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iLz" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"iLD" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/mess) -"iMc" = ( -/obj/structure/surface/rack, -/obj/item/clipboard, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"iMp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/hall_SE) -"iMM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"iNh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"iLe" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"iNr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"iNE" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/wood, +/area/varadero/interior/library) +"iLq" = ( +/obj/structure/prop/dam/van{ + desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; + icon_state = "crawler_crate_wy"; + name = "crawler"; + pixel_y = 7 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"iOi" = ( +/area/varadero/interior/cargo) +"iLy" = ( +/obj/structure/bedsheetbin, +/obj/item/ammo_magazine/rifle/m4ra, /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) -"iOQ" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/varadero/interior/records) -"iPw" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/varadero/interior/administration) -"iPH" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) -"iPI" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"iLD" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior/mess) +"iMi" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = 11; + pixel_y = 9 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = 10; + pixel_y = 20 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"iMn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"iQl" = ( -/obj/item/storage/firstaid, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"iQr" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Secure Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"iMT" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"iQs" = ( -/obj/structure/barricade/handrail/wire{ +/area/varadero/exterior/lz1_near) +"iMY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/item/reagent_container/food/snacks/wrapped/chunk{ - pixel_x = 4; - pixel_y = 13 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iNp" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -6; - pixel_y = 7 +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 5 +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"iND" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"iNL" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/surface/table, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"iQS" = ( +/area/varadero/exterior/lz2_near) +"iOc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker/ethanol{ + desc = "The beaker stares at you lecherously. Its contents... irresistible."; + pixel_y = 7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"iOg" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"iOi" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"iOs" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/technical_storage) +"iOQ" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/varadero/interior/records) +"iPw" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/varadero/interior/administration) +"iPE" = ( +/obj/item/shard{ + icon_state = "medium" + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/caves/east) +"iQx" = ( +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) "iRw" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"iRR" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"iRZ" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"iSi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"iRM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 1; + name = "LZ1 Pontoon Dock computer" + }, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_console) +"iRQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"iRX" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"iSo" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) -"iSz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"iSq" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"iSC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/clothing/suit/storage/marine/veteran/dutch{ - layer = 3.1 - }, -/obj/item/clothing/under/gimmick/dutch, -/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ - pixel_y = 8 +/area/varadero/interior/maintenance/security) +"iSR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"iSO" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"iSW" = ( +/turf/open/gm/dirt, +/area/varadero/interior/maintenance/north) +"iSZ" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -4; +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 6; pixel_y = 9 }, -/obj/item/storage/bible/booze{ - pixel_x = 10; - pixel_y = 2 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iTy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random{ + pixel_y = 5 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/item/clothing/glasses/science{ + pixel_y = 9 }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"iTM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"iSW" = ( -/turf/open/gm/dirt, -/area/varadero/interior/maintenance/north) -"iTd" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"iTF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/area/varadero/interior/medical) "iTP" = ( /obj/structure/filingcabinet{ density = 0; @@ -10129,59 +10048,52 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iUx" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"iUH" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "iUZ" = ( /obj/structure/ore_box, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iVt" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"iVD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"iVb" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"iWf" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"iVm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"iVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, /turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) +"iVW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = -5; + pixel_y = 17 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "iWj" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"iWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +"iWA" = ( +/obj/structure/largecrate/random/mini, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "iWX" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" @@ -10197,36 +10109,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iXR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"iXX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"iYb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -10; - pixel_y = 15 - }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) "iYi" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/records) -"iZj" = ( +"iYu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; @@ -10237,28 +10125,38 @@ climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"iZx" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "cargobay"; - name = "Cargo Bay Lock"; - pixel_y = 20 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"iZH" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"iYS" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"iZg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"iZk" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/paper/research_notes/grant/high{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "iZP" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -10267,46 +10165,46 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iZT" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) +"jah" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "jaF" = ( /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"jbh" = ( +"jaO" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"jbi" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"jbJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"jcr" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior_protected/caves/swcaves) +"jcD" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/open/floor/shiva/blue/southwest, /area/varadero/interior/administration) -"jbR" = ( -/obj/item/device/flashlight/lamp/tripod{ - pixel_x = 7; - pixel_y = 18 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"jcr" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior_protected/caves/swcaves) -"jcz" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/technical_storage) -"jcB" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"jcC" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) "jcT" = ( /turf/closed/wall, /area/varadero/interior/maintenance) @@ -10314,6 +10212,12 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"jdn" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "jdu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10328,45 +10232,43 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"jek" = ( -/turf/open/gm/coast/west, -/area/varadero/exterior/eastocean) -"jeo" = ( -/obj/item/tool/mop, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"jew" = ( -/obj/structure/bed/chair/office/dark{ +"jdD" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = -6; - pixel_y = 3 + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"jej" = ( +/obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) +"jek" = ( +/turf/open/gm/coast/west, +/area/varadero/exterior/eastocean) +"jel" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"jeG" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"jeM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "jeO" = ( /obj/structure/machinery/conveyor, /obj/structure/plasticflaps, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jeT" = ( -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/caves/digsite) "jeW" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, @@ -10389,54 +10291,38 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"jfw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, +"jfz" = ( /obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 + dir = 4; + pixel_x = -3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"jfD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"jgw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker/ethanol{ - desc = "The beaker stares at you lecherously. Its contents... irresistible."; - pixel_y = 7 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"jfG" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/shiva/purplefull/west, +/turf/open/floor/shiva/floor3, /area/varadero/interior/research) -"jgL" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/varadero/exterior/lz1_near) -"jgQ" = ( -/obj/structure/bed/chair/office/light{ +"jfJ" = ( +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"jgA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) "jgV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jgY" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/records) -"jhe" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +"jhc" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "jhu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10450,49 +10336,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"jhv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"jhK" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"jhL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"jhM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"jhW" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jif" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jiv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor{ + pixel_x = -4; + pixel_y = 4 }, -/obj/item/device/flashlight, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jjg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "jjj" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -10501,61 +10356,43 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jjl" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/varadero/interior/records) "jju" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jjE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"jjx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"jjN" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/interior/maintenance/north) -"jjS" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/maintenance/north) -"jjZ" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"jks" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"jlt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 10 +"jkZ" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"jlm" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Hangar Power Substation"; + req_access = null }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"jln" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/administration) +/obj/structure/closet/crate/freezer/cooler, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/peach, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "jmb" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -10569,21 +10406,48 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jnq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jmQ" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"jmS" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"jmX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"jnA" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"jna" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "pipe-c" + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) +"jng" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "joe" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -10595,10 +10459,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"joN" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) "joO" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/structure/cable/heavyduty{ @@ -10618,36 +10478,22 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jps" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/c_tube, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"jpA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/technical_storage) "jpD" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves) -"jpM" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"jpZ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "jqd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -10656,17 +10502,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"jqr" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 5 +"jqf" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/wood, +/area/varadero/interior/library) "jqu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, @@ -10675,18 +10519,22 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"jqJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) -"jqK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +"jqE" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"jqH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"jrd" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "jrq" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -10700,29 +10548,17 @@ /obj/structure/prop/invuln/overhead_pipe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jrv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"jsf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, +"jrX" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"jsh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +"jsa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "jsx" = ( /obj/item/prop/almayer/comp_open, /obj/structure/surface/table, @@ -10733,80 +10569,58 @@ /obj/item/device/flashlight, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jsO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"jts" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"jtx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 9 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"jty" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) -"jtH" = ( -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz2_near) -"jtI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"jtU" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"jub" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; - icon = 'icons/turf/walls/hunter.dmi'; - icon_state = "globe"; - name = "Hunter Globe"; - pixel_y = 16 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"juL" = ( -/obj/structure/surface/table/reinforced/prison, +"jsK" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; + icon_state = "lattice8"; pixel_x = 16; - pixel_y = -8 + pixel_y = 24 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"jtS" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "juW" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms3) -"jvh" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) +"jvg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"jvq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) +"jvJ" = ( +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/mess) "jwf" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"jwO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"jwR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "jwX" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -10818,89 +10632,100 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jxi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"jyq" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"jxU" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"jyw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/clothing/mask/cigarette/cigar{ - desc = "Manufactured in New Space Cuba, a product of Castro LTD."; - name = "comically large cigar"; - pixel_y = 7 +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"jxW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 5; - pixel_y = 12 +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"jzq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/white, +/area/varadero/interior/toilets) +"jya" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"jyc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"jyA" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"jyC" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"jzj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/snow_mat, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) -"jzB" = ( +"jzw" = ( /obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"jzL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 + dir = 4; + pixel_x = -3 }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "jzZ" = ( /turf/open/floor/carpet, /area/varadero/interior/library) -"jAx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"jAg" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) +"jAA" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"jAG" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "jAI" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"jBl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank/water{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"jBp" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +"jAJ" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"jBc" = ( +/obj/structure/machinery/light, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"jBj" = ( +/obj/item/tool/kitchen/knife, +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"jBv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Research Laboratory"; + req_access_txt = "100" }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "jBw" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 4; @@ -10908,74 +10733,68 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"jCr" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +"jBL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jCi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "jCs" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jCA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" +"jCF" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"jCE" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"jCG" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"jCN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"jDt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"jDy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"jDe" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jDG" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"jDO" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"jDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"jEv" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/area/varadero/exterior/pontoon_beach) +"jEv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"jEF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "jEG" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -10984,75 +10803,57 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"jEZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"jFh" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/wy_chips_pepper, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"jEJ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "jFt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jFL" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/monsoon) -"jGk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"jGm" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jGz" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"jGA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jGT" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +"jFR" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "jHb" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"jHI" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 +"jHc" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/reagent_container/blood/empty{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/storage/box/cups{ + pixel_x = -13; + pixel_y = 3 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"jHg" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "jHJ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/toolbox/mechanical{ @@ -11065,35 +10866,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jIo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -11; - pixel_y = 16 +"jIe" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"jIt" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"jIN" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 }, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -9; - pixel_y = 13 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jIS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +/mob/living/simple_animal/mouse, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "jJn" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"jJp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "jJC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -11103,35 +10901,22 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jJX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 1; - name = "\improper Underground Security Interrogation Observation"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"jKs" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"jKz" = ( -/obj/structure/machinery/holosign/surgery{ - id = "otice" +"jKd" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"jKm" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "jKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11162,30 +10947,50 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jLS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"jLH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"jLM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/obj/item/tool/pen/sleepypen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/tool/lighter/zippo/fluff{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "jLU" = ( /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jMq" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +"jMf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"jMr" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"jNb" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/area/varadero/interior/comms3) +"jMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"jMH" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) "jNn" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -11196,9 +11001,23 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"jNS" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva/wred/northeast, +"jNG" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = -4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"jNN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "jNT" = ( /obj/structure/pipes/vents/pump, @@ -11217,41 +11036,40 @@ /obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jOR" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"jPe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"jNW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"jPh" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_x = -2; - pixel_y = -3 +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"jOc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"jOl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"jPC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"jOn" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/item/toy/plush/farwa, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"jPc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) "jPM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11261,25 +11079,30 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"jPT" = ( +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/hall_N) "jQa" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"jQb" = ( +/obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"jQg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"jQc" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"jQv" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "jQB" = ( /obj/structure/surface/table/woodentable, /obj/item/clipboard, @@ -11290,160 +11113,245 @@ /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/varadero/interior/security) -"jQG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"jQJ" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/window/reinforced, -/obj/item/clothing/head/fedora, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"jQM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jRu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/area/varadero/interior/comms1) +"jQQ" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + desc = "For all your soapy needs."; + icon_state = "tray"; + name = "soap dish"; + pixel_x = 4; + pixel_y = 10 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 3; + pixel_y = 7 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/tool/soap/weyland_yutani{ + desc = "Teetering at the brink! A life's thread, about to be cut short."; + pixel_x = 5; + pixel_y = 15 }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"jRL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"jRM" = ( +/obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"jSP" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/jackhammer, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/area/varadero/interior/maintenance/north) +"jRV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"jSh" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"jSs" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) +"jSV" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "jSX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) -"jTi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_y = 5 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) "jTj" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"jTL" = ( -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) +"jTq" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/flare, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) "jTR" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) +"jTW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"jUd" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"jUm" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"jUq" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/plasticflaps/mining, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "jUB" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/snacks/wrapped/barcardine, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jUM" = ( -/obj/structure/urinal{ - pixel_y = 32 +"jUG" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; + icon = 'icons/turf/walls/hunter.dmi'; + icon_state = "globe"; + name = "Hunter Globe"; + pixel_y = 16 }, -/turf/open/floor/white, -/area/varadero/interior/security) -"jUY" = ( -/obj/structure/bed/chair/hunter, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"jVl" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/hall_N) -"jVK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"jXn" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) "jXp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jYl" = ( +"jXv" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 + }, +/obj/item/paper/crumpled{ + pixel_x = 9 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"jXE" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Sample Isolation" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"jYs" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"jXO" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/storage/large_holster/katana/full, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"jYX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - layer = 2.99; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/camera{ - pixel_x = -5; - pixel_y = 9 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"jXZ" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"jYD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "jYZ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jZw" = ( -/obj/structure/machinery/light/small{ +"jZa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"jZi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"jZE" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/vents/pump, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/court) "jZG" = ( /obj/structure/window/reinforced{ dir = 4; @@ -11466,99 +11374,107 @@ /obj/item/clothing/suit/storage/bomber/alt, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jZO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"jZS" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 }, -/turf/open/floor/shiva/snow_mat/east, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"jZV" = ( +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) -"kap" = ( +"kaD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"kaY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless{ - pixel_x = 7; - pixel_y = 9 +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"kbt" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -4; - pixel_y = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"kbp" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_gutted"; + name = "gullible toothfish"; + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"kbw" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/chunk{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "kbQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"kca" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "kcn" = ( /obj/item/stack/sandbags_empty/full, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"kcE" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 +"kcS" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kdf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"kdg" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "kdq" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"kdV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) -"keE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"kee" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kel" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/northright, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"keN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/item/tool/pen/blue, +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 5 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"keo" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "keY" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, @@ -11569,22 +11485,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kfj" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "kfG" = ( /turf/closed/wall, /area/varadero/interior/caves/east) -"kfJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +"kgc" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "kgm" = ( /obj/effect/vehicle_spawner/van/decrepit, /turf/open/gm/coast/north, @@ -11599,67 +11506,83 @@ "kgA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastbeach) -"kgC" = ( -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"khb" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"kgV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/bible{ + pixel_x = -2; + pixel_y = 3 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"khB" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"kgX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"kho" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) -"kif" = ( -/obj/structure/ladder, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"khw" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/roller, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"kio" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"kis" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"kin" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"kiE" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, +"kiK" = ( +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) -"kiG" = ( +"kiM" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"kja" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"kjp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Breakroom"; + req_one_access = null; + req_access = null }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"kje" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"kji" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"kjl" = ( +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "kjr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -11668,9 +11591,6 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"kjI" = ( -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "kjN" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, @@ -11679,6 +11599,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"kkn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "kkt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -11691,108 +11615,119 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kkw" = ( -/obj/effect/landmark/crap_item, -/obj/structure/inflatable/door, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "kkF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"kli" = ( +"klt" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/eastbeach) +"klN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"klR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/atmos_alert, +/obj/item/circuitboard/machine/smes{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/technical_storage) +"klS" = ( +/obj/structure/largecrate/random/case/double{ + anchored = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"klT" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/research) +"kmD" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"klu" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/area/varadero/exterior/farocean) +"kmO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/blue/north, +/turf/open/floor/shiva/blue/northwest, /area/varadero/interior/administration) -"klP" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/storage/belt/medical{ - pixel_x = -3; - pixel_y = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"klT" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/research) -"klY" = ( -/obj/item/cell/high, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"kmb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"kmo" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"kmu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"kmI" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/central) "kmW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"knN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"kmY" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"knv" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"kny" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"knA" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"knU" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"kop" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"knP" = ( -/obj/structure/machinery/light/small, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"kor" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"kof" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) "koZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -11801,22 +11736,41 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"kpN" = ( +"kpj" = ( +/obj/structure/machinery/constructable_frame, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"kqe" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"kpo" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"kpI" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"kpZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"kqo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "kqs" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/sand_white/layer1, @@ -11829,14 +11783,23 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"kqQ" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"krl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) +"kra" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) +"kro" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"krI" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + layer = 2.15; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "krL" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green, @@ -11846,12 +11809,14 @@ /obj/item/paper, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"krP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +"krS" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"ksd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "ksf" = ( /obj/structure/machinery/light{ dir = 4 @@ -11862,10 +11827,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ksn" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "ksu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -11879,31 +11840,49 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"ksE" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "ksX" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"ktN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"kul" = ( -/obj/item/pizzabox/meat{ - pixel_x = -5; - pixel_y = 13 +"kta" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"ktj" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"kto" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kus" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"kue" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"kum" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"kuE" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"kuD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "kuO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -11911,19 +11890,34 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kuX" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"kvx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 5 +"kvh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"kvz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"kvk" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"kvv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"kvA" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "kvC" = ( @@ -11939,35 +11933,33 @@ }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"kvQ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 1 +"kwb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kvS" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"kwB" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "kxe" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/interior_protected/caves/central) -"kxU" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" +"kxm" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"kxJ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "kxW" = ( /obj/structure/window/reinforced{ dir = 4; @@ -11995,15 +11987,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kyh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "kyj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/south_west, @@ -12011,20 +11994,15 @@ "kyp" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"kyr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "kyz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"kyA" = ( +/obj/structure/prop/rock/brown, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "kyD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, @@ -12032,34 +12010,12 @@ "kyG" = ( /turf/closed/wall, /area/varadero/interior/disposals) -"kyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"kyL" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) "kyP" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"kzo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "kzp" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, @@ -12075,17 +12031,14 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"kzJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"kzU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"kAl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) "kAm" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, @@ -12096,6 +12049,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"kAJ" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"kAK" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) "kAN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -12104,6 +12067,14 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"kBi" = ( +/obj/structure/machinery/light/small, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kBo" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -12120,74 +12091,37 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"kBZ" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/maintenance/security) -"kCb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"kCy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7 +"kBv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"kCA" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"kCT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ +/obj/structure/machinery/firealarm{ dir = 1; - name = "\improper Underground Security Lobby"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"kDd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 + pixel_y = -24 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"kDh" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"kBZ" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior/maintenance/security) +"kCD" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "kDk" = ( /obj/item/tool/screwdriver, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kDF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"kDH" = ( +"kDq" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/hall_SE) +"kDM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "kEB" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/ceramic_plate{ @@ -12197,92 +12131,121 @@ /obj/item/m_gift, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kEK" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"kEV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"kES" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"kFd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"kFq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"kFy" = ( +/obj/item/tool/wrench, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"kFn" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"kFH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/flare, -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) -"kFT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"kFV" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 +/area/varadero/interior/comms2) +"kFN" = ( +/obj/item/clothing/ears/earmuffs{ + layer = 3.1; + pixel_x = 2; + pixel_y = 18 }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"kGo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"kFQ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) -"kGq" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior/hall_SE) -"kGB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"kFU" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"kGD" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/pontoon_beach) -"kGF" = ( -/obj/item/paper_bin{ - pixel_y = 6 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/item/tool/pen/blue{ - pixel_x = 7 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"kFV" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"kGm" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +/obj/item/tool/stamp{ + icon_state = "stamp-ce" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"kGq" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior/hall_SE) "kGJ" = ( /turf/open/gm/coast/east, /area/varadero/exterior/eastocean) +"kGK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "kGM" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_NW) +"kGP" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kHw" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"kHC" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"kHR" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "kIb" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -12306,36 +12269,58 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kIz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"kIJ" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/varadero/exterior/lz1_near) -"kIK" = ( +"kIs" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"kIV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +"kJG" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior_protected/caves/central) +"kJM" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"kKj" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kKm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/disposals) +"kKx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"kKH" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -4; pixel_y = 13 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "kKS" = ( /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) @@ -12352,61 +12337,93 @@ /obj/item/paper_bin, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"kLd" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/administration) -"kLA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +"kLn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"kLr" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"kLw" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"kLx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/device/flashlight/lamp/candelabra{ + pixel_x = -6; + pixel_y = 22 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/administration) "kLF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"kLM" = ( +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"kLQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"kLZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"kMc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"kMe" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "kMf" = ( /obj/structure/window/framed/colony/reinforced/tinted, /turf/open/floor/plating, /area/varadero/interior/security) -"kMi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, +"kMn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"kMy" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kME" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kMN" = ( -/obj/structure/machinery/flasher{ - id = "sec_checkpoint"; - name = "Checkpoint Flash"; - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/shiva/redcorners/north, -/area/varadero/interior/security) -"kMU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"kMF" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"kMJ" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"kMK" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "kNa" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -12414,59 +12431,25 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"kNe" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 14 - }, -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"kNN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"kOS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/electrical) -"kPj" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) -"kPX" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/trash/eat{ - pixel_x = 10; - pixel_y = 10 +"kNq" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) +/obj/structure/machinery/light, +/turf/open/floor/shiva/wred/southeast, +/area/varadero/interior/medical) +"kOi" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"kPO" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) "kPZ" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kQb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "kQy" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -12479,36 +12462,32 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kRp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/item/device/flashlight/lamp/tripod, +"kQB" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kRH" = ( -/turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz1_near) -"kRU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"kQC" = ( +/obj/item/weapon/gun/pistol/vp70, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"kRd" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 2; - pixel_y = 15; - indestructible = 1; - unacidable = 1; - layer = 4.1 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"kRw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"kRH" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/lz1_near) +"kRX" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) "kSd" = ( /obj/structure/machinery/alarm{ dir = 1; @@ -12517,47 +12496,36 @@ /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"kSz" = ( -/obj/structure/barricade/handrail/wire{ +"kSv" = ( +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"kSI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kSD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/surface/rack, +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kSR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/storm_siren{ dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"kSF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 8 + pixel_x = 3 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"kSN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"kSX" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null + icon_state = "warning_s" }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"kTo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "kTs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12568,33 +12536,47 @@ /obj/item/tool/pickaxe/silver, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kTD" = ( -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/hall_N) -"kTG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) -"kTI" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/varadero/interior/security) +"kTX" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"kTY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"kUg" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "kUj" = ( /obj/item/m_gift, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kVp" = ( -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/cargo) +"kUk" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"kUA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"kUM" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "kVq" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -12602,13 +12584,6 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"kVE" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "kVL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -12623,94 +12598,87 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kWf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"kWc" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"kWz" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/comms3) "kWB" = ( /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"kWR" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/interior/maintenance/north) -"kWZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"kXn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"kXA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"kXP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +"kXD" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "kXQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"kXZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"kYg" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -24; + indestructible = 1 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"kYn" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"kYF" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"kYM" = ( -/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"kYv" = ( +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"kYy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/light_fixture, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"kYH" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"kYN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +/area/varadero/interior/maintenance/security) +"kYV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"kYY" = ( +/obj/item/prop/helmetgarb/bullet_pipe{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/fertilizer/l4z{ + pixel_x = 10; + pixel_y = 10 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"kZe" = ( +"kZk" = ( /obj/structure/barricade/handrail/wire{ - layer = 3.1 + dir = 8 }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"kZg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"kZl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"kZn" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"kZr" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"kZL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_x = 16; - pixel_y = 24 + pixel_y = -8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "laa" = ( /obj/structure/bed/chair{ dir = 1; @@ -12718,39 +12686,35 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lab" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"lav" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"lat" = ( -/obj/item/device/camera, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"laN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"laL" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"laW" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"lbS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"lbr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"lbK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/item/tool/crowbar, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) "lbX" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -12759,130 +12723,112 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"lch" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "lci" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"ldr" = ( +"lcj" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) +"lcv" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"ldl" = ( /obj/structure/machinery/storm_siren{ - pixel_y = 5 + dir = 4; + pixel_x = -3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"ldt" = ( +/obj/structure/machinery/holosign/surgery{ + id = "otice" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "ldw" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"ldJ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"leF" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"leG" = ( +"ldx" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ldQ" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo, /obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) -"leI" = ( -/obj/structure/sink{ +"ldU" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - pixel_y = -10 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"leO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"les" = ( +/obj/structure/prop/static_tank/water{ + pixel_y = 8 }, -/obj/structure/surface/table, -/obj/item/weapon/gun/flamer, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"leu" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) -"leP" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) -"leU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"lgb" = ( +"lex" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"leL" = ( /obj/structure/bedsheetbin, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"lgP" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/varadero/interior/laundry) +"lfx" = ( +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = 3 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"lhm" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) +"lfP" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/device/flashlight/lamp/candelabra{ - pixel_x = -6; - pixel_y = 22 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/administration) -"lhn" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1; - layer = 2.25; - density = 0; - climb_delay = 0 - }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"lhB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/obj/item/device/flashlight, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lfV" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_N) +"lgw" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) "lhJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -12892,6 +12838,20 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) +"lia" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"lid" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + layer = 3.1; + pixel_y = 7 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "liq" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -12908,106 +12868,152 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"liM" = ( -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"ljt" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +"liR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"ljg" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"ljm" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"ljx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/interior/comms2) +"ljn" = ( +/obj/structure/bed/chair{ + dir = 1; + icon_state = "chair_alt" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"ljr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"ljK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_NW) +"lkd" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/area/varadero/interior/comms3) "lkH" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lkI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"llj" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"lmd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"lkQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"lms" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"lmu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"llf" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"llh" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/eat, +/obj/item/trash/cheesie, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"llE" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"lmS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"llU" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"llX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"lnw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"lmr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 2 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"lna" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"lnb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) -"lnG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, /area/varadero/interior/hall_N) +"lnH" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"lnI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "lnO" = ( /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"loh" = ( -/obj/structure/surface/rack, -/obj/item/weapon/sword/katana, +"lnQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior_protected/maintenance/south) +"loi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"loj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) "loA" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -13026,23 +13032,9 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"loQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"loW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"lpv" = ( -/turf/open/floor/white, -/area/varadero/interior/laundry) -"lpJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) +"lpC" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "lqa" = ( /obj/item/tool/warning_cone{ pixel_x = -11 @@ -13052,6 +13044,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"lqr" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) "lqF" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -13068,43 +13063,48 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lrp" = ( +"lqX" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -5; - pixel_y = 5 +/obj/item/paper_bin{ + pixel_y = 6 }, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) -"lrR" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"lss" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"lrr" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lrU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "lsN" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"lsT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "lsU" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"ltA" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/records) +"ltl" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"lty" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "ltB" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -13112,33 +13112,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"ltI" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/paper/research_notes/grant/high{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"ltW" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"lum" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"lun" = ( -/obj/item/device/mass_spectrometer, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"lur" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) "luu" = ( /obj/item/tool/warning_cone{ pixel_x = -20 @@ -13148,22 +13121,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"luz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "luC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -13177,41 +13134,35 @@ /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"lvt" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" +"lvz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"lvG" = ( -/obj/structure/curtain/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/bunks) -"lvS" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lvA" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"lwh" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/varadero/interior/administration) +"lwi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Research Chamber" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"lvV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 + name = "\improper Underground Library"; + req_one_access = null; + req_access = null }, -/turf/open/floor/plating/warnplate/northeast, -/area/varadero/interior/disposals) +/turf/open/floor/wood, +/area/varadero/interior/library) "lwm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -13225,6 +13176,10 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"lwo" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "lxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -13233,157 +13188,172 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) -"lxr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"lxs" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"lxy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"lxT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 +"lxJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -8; - pixel_y = 3 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"lyp" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +/area/varadero/interior/court) +"lyN" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "lyP" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/comms4) -"lze" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"lzu" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) +"lyQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"lzo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lzt" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "lzD" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"lzP" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) "lzT" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"lzX" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -24; - indestructible = 1 +"lzU" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = -8 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) -"lAk" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"lAa" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"lBi" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"lBA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"lBE" = ( +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"lBQ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"lCw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"lBf" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 5; - pixel_y = 4 +/area/varadero/interior/administration) +"lDs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"lBw" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) -"lCK" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +"lDw" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"lDx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"lDh" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) -"lDk" = ( -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/hall_N) -"lDm" = ( +/turf/open/floor/darkgreencorners2/north, +/area/varadero/interior/hall_SE) +"lDA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"lDr" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "lDF" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/digsite) -"lDN" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"lDS" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"lEc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +"lDL" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_x = 16; - pixel_y = 24 + pixel_y = -8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"lEw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "lEM" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"lER" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "lEV" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -13401,15 +13371,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"lFl" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/varadero/interior/cargo) -"lFr" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "lFA" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -13417,48 +13378,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lFE" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"lFI" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ +"lFP" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"lFS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"lFT" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 9; - icon_state = "p_stair_full" + icon_state = "warning_s" }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) "lGp" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) +"lGt" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "lGD" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, @@ -13473,46 +13408,31 @@ }, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"lHH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"lId" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"lHm" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"lIw" = ( +/obj/item/roller{ + pixel_x = 2; + pixel_y = 7 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"lIo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/surface/table, +/obj/item/roller{ + pixel_x = 4; + pixel_y = 14 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"lIE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 1; - name = "LZ1 Pontoon Dock computer" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lIN" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -32; + pixel_y = -18; + indestructible = 1 }, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_console) +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White"; @@ -13520,64 +13440,69 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"lKS" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"lIT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"lIY" = ( +/obj/structure/surface/rack, +/obj/item/prop/magazine/boots, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lJf" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"lJp" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"lJZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"lKb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"lKV" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"lKt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"lLe" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/area/varadero/interior/cargo) +"lLf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"lLq" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) -"lLZ" = ( -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"lLh" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) -"lMb" = ( -/obj/item/device/flashlight/lamp/tripod, +"lMf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lMU" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"lMl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/area/varadero/interior/maintenance/north) +"lMX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"lMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) -"lMv" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) -"lMB" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"lMD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_SE) -"lMP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "lNb" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -13597,39 +13522,17 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"lNX" = ( +"lOY" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) -"lOc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"lPj" = ( -/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"lPq" = ( -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"lPX" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "lQg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -13643,56 +13546,56 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lQA" = ( +"lQi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"lQk" = ( +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"lQx" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles/north, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lRg" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) -"lQO" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/mess) -"lQW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"lRy" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = 7 +"lRF" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) +"lRZ" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"lRz" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/grey_multi_tiles, +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"lRU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purplecorners, -/area/varadero/interior/research) -"lSg" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) "lSG" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"lTb" = ( -/obj/structure/machinery/light{ - dir = 4 +"lTd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/court) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "lTg" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) @@ -13706,35 +13609,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lTR" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"lUe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"lUG" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"lUT" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/mess) -"lVa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"lTS" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"lTU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"lVc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"lUR" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) "lVf" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -13744,11 +13633,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lVP" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"lVr" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "lVQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1/weedable, @@ -13776,37 +13667,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"lVZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "lWf" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lWh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"lWo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"lWB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "lWJ" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -13814,43 +13686,38 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lXc" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"lXT" = ( -/obj/structure/plasticflaps/mining, +"lWZ" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"lYi" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -1; - pixel_y = 1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"lXp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"lXy" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "lYo" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -13858,11 +13725,14 @@ "lYr" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"lYD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood, +"lYA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -13; + pixel_y = 11 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) +/area/varadero/interior/maintenance/security) "lYF" = ( /obj/structure/largecrate/random/case, /turf/open/shuttle/elevator, @@ -13876,13 +13746,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lZb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/hall_SE) "lZh" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -13895,37 +13758,59 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lZR" = ( -/obj/structure/bed/chair{ - dir = 4 +"lZq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + layer = 2.99; + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/landmark/survivor_spawner, +/obj/item/device/camera{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"lZF" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/exterior/lz2_near) +"lZL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"lZS" = ( +/mob/living/simple_animal/cat{ + desc = "A domesticated, feline pet. The collar says 'Orion'."; + name = "Orion"; + real_name = "Orion" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "lZU" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/security) -"map" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"maV" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 6 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"mau" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"maN" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"maQ" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/administration) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "mbf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/pwine{ @@ -13942,59 +13827,15 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"mbt" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +"mcj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light{ +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"mbu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"mca" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/tool/stamp, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"mcp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"mcr" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"mcs" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/area/varadero/interior/maintenance/security) "mcB" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/lightstick/red/spoke/planted{ @@ -14021,60 +13862,76 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"mdg" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz2_near) -"mdj" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mdy" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"mcQ" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"mdc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mdk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"mds" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"mdK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = 6; + pixel_y = 11 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"mdM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/item/device/reagent_scanner{ + pixel_x = -7 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "mdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/maintenance/south) -"mey" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = 1; - pixel_y = 6 +"mdY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"meb" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"mes" = ( +/obj/structure/bed/chair, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"meB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"meI" = ( +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) +"meP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "meS" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -14085,34 +13942,58 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"mgw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"mgT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"mha" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "mhf" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"mhm" = ( -/obj/item/ammo_magazine/smg/nailgun, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = -6; - pixel_y = -1 +"mhN" = ( +/obj/item/pizzabox/meat{ + pixel_x = -5; + pixel_y = 13 }, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = 6; - pixel_y = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mhR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"mio" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"mif" = ( +/obj/structure/machinery/alarm{ pixel_y = 24 }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"mij" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mip" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "miy" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ @@ -14120,16 +14001,15 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_NW) -"miF" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +"miI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"miP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "miR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ @@ -14137,73 +14017,38 @@ }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"miT" = ( -/obj/item/stool, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"miU" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"mjA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"mjc" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"mke" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/largecrate/random/mini/wooden{ - desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"mkn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 2; - pixel_y = 20 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/technical_storage) -"mkt" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"mlN" = ( -/obj/vehicle/powerloader/ft, -/turf/open/shuttle/elevator/grating, +"mjv" = ( +/turf/open/floor/shiva/red/east, /area/varadero/interior/hall_N) -"mlR" = ( +"mkb" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"mkc" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"mlT" = ( +/obj/item/co2_cartridge{ + pixel_x = 13; + pixel_y = 7 + }, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mkp" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"mks" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) +"mll" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -14212,7 +14057,36 @@ req_one_access = null }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance) +/area/varadero/interior/hall_SE) +"mlN" = ( +/obj/vehicle/powerloader/ft, +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/hall_N) +"mlZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"mmk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mmo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "mmq" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -14227,6 +14101,14 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"mmE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "mmO" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -14241,9 +14123,8 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, +"mnl" = ( +/turf/open/floor/white, /area/varadero/interior/security) "mnm" = ( /obj/structure/window/reinforced{ @@ -14270,6 +14151,10 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) +"mnn" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "mnz" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/coast/north, @@ -14286,6 +14171,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"mnX" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mob" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"mof" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastocean) "mol" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -14293,15 +14192,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"mos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_N) +"moo" = ( +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "moH" = ( /obj/structure/largecrate/random/case/double, /obj/structure/prop/invuln/overhead_pipe{ @@ -14326,160 +14220,167 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"mpH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"mps" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "mpL" = ( /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mqe" = ( -/obj/structure/cryofeed, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"mqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"mrd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"mrC" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz1_near) -"mrP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"mrR" = ( +"mqI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/sheet/mineral/plastic{ - amount = 3 - }, -/obj/item/weapon/gun/rifle/m41a, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) -"mrT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +"mqM" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"mqQ" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/records) +"mqS" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"mqZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"mrj" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/hall_NW) +"mrE" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/popcorn, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "mrY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"msj" = ( -/obj/structure/prop/rock/brown, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"msx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Bay" +"msl" = ( +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"mtp" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"mtT" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/exterior/lz2_near) -"mtU" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"msu" = ( +/obj/structure/bed/roller, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"mux" = ( -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/hall_N) -"muE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) -"muF" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) -"muY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 +"msR" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"msW" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/bluefull/west, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"msX" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"msZ" = ( +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) -"mvv" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 +"mtf" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"mvA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mtm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mtB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"mtP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"mvI" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"mvO" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +"mtT" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/lz2_near) +"mul" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"mwm" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_gutted"; - name = "gullible toothfish"; - pixel_x = 1; - pixel_y = -2 - }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/area/varadero/exterior/pontoon_beach) +"mut" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"muP" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mvZ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"mwp" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "mwD" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; @@ -14488,27 +14389,43 @@ /obj/structure/closet/crate/supply, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"mwH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light, -/obj/item/circuitboard/computer/powermonitor, -/obj/item/stack/cable_coil/cut{ - pixel_y = 12 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) "mwI" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"mxv" = ( -/obj/structure/largecrate/random, -/turf/open/shuttle/elevator/grating, -/area/varadero/interior/hall_N) -"mxx" = ( -/obj/structure/largecrate/random, +"mwP" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance) +"mwU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"mxm" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mxn" = ( +/obj/structure/surface/rack, +/obj/item/maintenance_jack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mxv" = ( +/obj/structure/largecrate/random, +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/hall_N) "mxB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -14521,33 +14438,15 @@ /obj/item/storage/beer_pack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"myj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"mym" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"myo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) -"mzf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"myq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "mzt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ @@ -14558,21 +14457,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"mzI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "mzJ" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -14591,56 +14475,54 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"mzT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"mzO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"mzW" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"mAm" = ( -/obj/structure/filingcabinet, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"mAr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/paper/research_notes, +/obj/item/storage/belt/shotgun, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"mAN" = ( +/obj/structure/closet/secure_closet/security, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"mAB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"mAP" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 3; - pixel_y = 2 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -2; - pixel_y = -4 +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/turf/open/floor/shiva/red, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) -"mAX" = ( -/obj/structure/prop/dam/van{ - desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; - icon_state = "crawler_crate_wy"; - name = "crawler"; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"mBG" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"mCx" = ( +"mAU" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"mBF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/disposals) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/security) "mCF" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) @@ -14673,96 +14555,87 @@ "mCZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/research) -"mDl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) "mDm" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"mEs" = ( -/obj/structure/machinery/light/small, -/turf/open/auto_turf/sand_white/layer1, +"mDr" = ( +/obj/structure/closet/crate/construction, +/obj/item/storage/belt/utility/full, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/eastbeach) -"mEy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"mDu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Colony Offices"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"mDx" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"mDG" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"mDN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"mDV" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"mEA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - pixel_x = -3; - pixel_y = 3 +"mDX" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mEs" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"mFA" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"mFV" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"mGT" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/purplefull/west, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"mHq" = ( +/turf/open/floor/shiva/purple/southeast, /area/varadero/interior/research) -"mEB" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor/asteroidplating, +"mHW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) -"mFY" = ( -/obj/structure/machinery/vending/coffee, +"mIr" = ( +/turf/open/floor/asteroidwarning/north, +/area/varadero/exterior/lz1_near) +"mIx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"mGb" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"mHa" = ( -/obj/item/tank/anesthetic, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"mHh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mHM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"mIG" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) -"mIL" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"mIQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "mIU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -14777,211 +14650,192 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) +"mJc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "mJe" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"mJw" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/wred/southeast, -/area/varadero/interior/medical) -"mKb" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall, -/area/varadero/interior/medical) -"mKD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/northright, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 6 +"mJn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/item/tool/pen/blue, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 5 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/shiva/redfull, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) -"mLg" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"mLt" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"mLB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 +"mJr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"mJu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"mLJ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"mMz" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"mMX" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"mJY" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"mMZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/structure/surface/rack, -/obj/item/tool/weldingtool/experimental, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mNm" = ( +/area/varadero/interior/oob) +"mKb" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall, +/area/varadero/interior/medical) +"mKo" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"mNO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mNT" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"mKV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Morgue"; + req_access_txt = "100" }, +/turf/open/floor/dark2, +/area/varadero/interior/morgue) +"mLn" = ( +/obj/item/facepaint/sunscreen_stick, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mOx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"mOO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"mPf" = ( +/area/varadero/exterior/lz1_near) +"mLF" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"mPk" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"mPl" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"mPI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"mPT" = ( -/obj/structure/surface/rack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"mLJ" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"mMi" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/mess) +"mMr" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"mPW" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"mPX" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"mMv" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"mMz" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"mNA" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 4 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"mQC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"mQi" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/records) +"mQD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"mQF" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"mQG" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"mRb" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/varadero/interior/laundry) "mRq" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/library) -"mRs" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" - }, -/obj/structure/curtain/red, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"mRL" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"mRZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"mRK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mSl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) +/area/varadero/interior/technical_storage) "mSu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"mSD" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"mSS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"mTd" = ( +/obj/structure/pipes/portables_connector{ + dir = 8 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mTB" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "mTD" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"mTS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"mUc" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"mUo" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"mUr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) "mUv" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -14999,17 +14853,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"mUz" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/eastbeach) -"mUP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mVc" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) "mVj" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -15039,168 +14882,94 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"mVF" = ( -/obj/structure/prop/souto_land/pole{ +"mVs" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"mWL" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"mVN" = ( -/obj/structure/machinery/light{ +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"mVS" = ( -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/hall_SE) -"mVY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/clothing/under/shorts/grey, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"mXs" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"mWP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/blue/east, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) -"mXx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"mXO" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/hall_N) -"mXV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"mYd" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"mYA" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"mXf" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"mYR" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"mYW" = ( -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) -"mZi" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/court) -"mZk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, -/obj/structure/closet/crate, -/obj/item/prop/magazine/dirty/torn/alt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mZC" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = null; - name = "Requesitions Desk" - }, -/obj/structure/machinery/door/window/northright{ - dir = 2; - name = "Requesitions Desk" - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/area/varadero/interior/hall_SE) +"mXW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/demo_scanner{ + pixel_x = 5; + pixel_y = 8 }, -/obj/item/clipboard, -/obj/structure/noticeboard{ - pixel_x = 32 +/obj/item/device/reagent_scanner{ + pixel_x = -7; + pixel_y = 3 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "mZH" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"mZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"nag" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"nai" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"nak" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"nau" = ( -/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nbA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "nbB" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) -"ncd" = ( -/obj/structure/closet/crate/secure, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"ncg" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"nbE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"nch" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"nce" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ncs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nct" = ( +/obj/item/clothing/head/helmet, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "ncv" = ( @@ -15230,13 +14999,50 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"ndp" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"ndd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + pixel_y = 17 }, -/obj/item/tool/surgery/retractor/predatorretractor, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/obj/item/weapon/gun/revolver/spearhead{ + pixel_y = 2 + }, +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"ndj" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"ndR" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"ndY" = ( +/obj/structure/bed/chair/comfy/orange{ + buckling_y = 9; + dir = 8; + pixel_y = 9 + }, +/obj/item/device/megaphone{ + layer = 2; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest{ + desc = "It oozes authority, prestige, and sick summer vibes."; + name = "life guard's vest"; + pixel_x = 10; + pixel_y = -9 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "nee" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -15246,16 +15052,6 @@ "neq" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"new" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nex" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "neD" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -15266,54 +15062,60 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"neU" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"nfk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 8 +"neT" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"nfe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 1; + name = "\improper Underground Security Interrogation Observation"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"nfv" = ( -/obj/structure/bedsheetbin, /turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"nfX" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 +/area/varadero/interior/security) +"nfI" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 12 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"nfZ" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/varadero/exterior/lz1_near) +"ngf" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "ngg" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/hall_SE) -"ngm" = ( -/obj/structure/disposalpipe/segment, +"ngB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"ngK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ngC" = ( -/obj/structure/largecrate/random/mini/chest, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/electrical) "ngY" = ( /obj/item/stack/sheet/metal/med_small_stack, /obj/structure/prop/server_equipment/laptop{ @@ -15323,6 +15125,30 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"nha" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"nhj" = ( +/turf/open/floor/shiva/purple/northwest, +/area/varadero/interior/research) +"nhF" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/sosjerky, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "nhI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -15364,30 +15190,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) -"nhY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"nih" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/turf/open/floor/wood, -/area/varadero/interior/library) "nio" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/hall_N) @@ -15397,10 +15199,15 @@ /obj/item/device/floor_painter, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"niF" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"niC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"njy" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) "njC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -15412,42 +15219,88 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"nkd" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +"njJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"nkq" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) +"njO" = ( +/obj/structure/surface/rack, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"njP" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "nkF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"nma" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = 3; - pixel_y = 17 +"nkH" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"nkP" = ( +/obj/structure/bed/chair, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 }, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nls" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"nlu" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nlA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nlP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/handrail/wire, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/area/varadero/interior/medical) "nmC" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess{ pixel_x = -4 @@ -15467,63 +15320,95 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nmQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"nnc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nng" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) -"nnb" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"nni" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"nnJ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nnX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"nnk" = ( -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"nnt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Lobby" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"nnw" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"nnF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "noj" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"noC" = ( -/obj/structure/pipes/vents/pump/on, +"noo" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"nor" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +/area/varadero/interior/hall_SE) "noR" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"npi" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"noW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"noX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"npd" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"npq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "npW" = ( /obj/item/tool/warning_cone{ pixel_x = -8 @@ -15537,35 +15422,48 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"nqN" = ( -/obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) +"nqg" = ( +/obj/structure/ladder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) "nqQ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"nrd" = ( -/turf/open/floor/white, -/area/varadero/interior/security) -"nsc" = ( +"nrb" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"nru" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"nsl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"nsE" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"nsG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "nsN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) +"nsS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "nti" = ( /turf/closed/wall/r_wall, /area/varadero/exterior/lz2_near) @@ -15585,128 +15483,202 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"ntw" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +"nty" = ( +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) +"ntN" = ( +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"ntY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"nuv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"ntZ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"nuQ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"nuo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"nvv" = ( -/obj/structure/blocker/fog, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"nwi" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/white, +/area/varadero/interior/security) +"nup" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nve" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"nwh" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) +"nwm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "nwq" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nwV" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"nxl" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +"nwD" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"nxG" = ( +/obj/structure/machinery/light, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "nxW" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/medical) -"nyJ" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +"nyy" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"nyI" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"nzg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory Storage"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"nzb" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"nzu" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/varadero/exterior/lz1_near) +"nzD" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nzd" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nzV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nzX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/varadero/interior/security) -"nzr" = ( -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/mess) -"nzS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"nzZ" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/greencorners/north, +/area/varadero/interior/hall_SE) "nAq" = ( /turf/open/shuttle/elevator, /area/varadero/interior/records) +"nAC" = ( +/obj/structure/bed, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "nBc" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz2_near) -"nBl" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"nBD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"nBf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"nBH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_one_access = null; - req_access = null +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"nBt" = ( +/obj/structure/prop/mech/drill, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"nCa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"nCl" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"nCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) "nCF" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastocean) +"nCO" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/pontoon_beach) +"nCX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"nDa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"nDh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "nDk" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -15717,15 +15689,25 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"nDC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"nDo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) +/obj/structure/mirror{ + pixel_x = -32 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"nDw" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nDH" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "nDL" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -15736,90 +15718,66 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"nEp" = ( -/obj/structure/machinery/storm_siren{ +"nEC" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_x = -3 + pixel_x = -16; + pixel_y = 13 }, -/obj/structure/closet/firecloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nEE" = ( -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -5 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "nEY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nFf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"nFg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"nFp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"nFy" = ( +"nFb" = ( +/obj/structure/closet/crate/construction, +/obj/item/grown/log, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"nFm" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 16; + pixel_y = 16 + }, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) -"nFB" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nFD" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"nFH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"nFR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) +"nFU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) "nFX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"nGE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"nGe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) +"nGR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"nHk" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) "nHy" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -15829,28 +15787,13 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"nHA" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"nHC" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"nHH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +"nIn" = ( +/obj/item/fuel_cell{ + pixel_x = 4; + pixel_y = 22 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "nIF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -15858,44 +15801,88 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"nIK" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "nIR" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nJc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) "nJd" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"nJe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) "nJn" = ( /obj/structure/bed/chair, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"nKd" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"nKf" = ( -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"nKr" = ( -/obj/structure/surface/table, -/obj/item/storage/box/sprays{ - pixel_x = -1; - pixel_y = 3 +"nJx" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) +"nJD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"nKg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"nKj" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/green{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/under/shorts/blue{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/red{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"nKt" = ( +/obj/item/clothing/gloves/yautja{ + anchored = 1; + can_block_movement = 1; + charge = 1; + charge_max = 1; + color = "#a8a7a5"; + density = 1; + desc = "The ship's on-board self destruct system, let's hope you never have to use it."; + name = "Self Destruct System"; + pixel_y = 24 + }, +/obj/structure/bed/chair/hunter{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "nKy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -15904,82 +15891,90 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"nKR" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) -"nLw" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) -"nLH" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"nKL" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"nLa" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"nLI" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"nMe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"nLt" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"nMw" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) "nMJ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"nMT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva/wred/southwest, -/area/varadero/interior/medical) "nNe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"nNv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +"nNf" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "nNB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nOg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - id = "engine_electrical_maintenance"; - name = "Underground Power Substation"; - req_access_txt = "100" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"nOj" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) -"nOz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/station_alert{ - dir = 4 +"nNF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/wood, -/area/varadero/interior/administration) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"nNP" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 9 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"nNW" = ( +/obj/structure/surface/table, +/obj/item/prop/helmetgarb/flair_uscm, +/obj/item/storage/box/uscm_mre{ + pixel_x = -4; + pixel_y = 13 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"nOz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/wood, +/area/varadero/interior/administration) +"nOL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "nOM" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -15992,11 +15987,6 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"nOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) "nOQ" = ( /obj/structure/safe/floor{ pixel_x = 7; @@ -16004,18 +15994,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"nPx" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) "nPE" = ( /obj/structure/safe, /obj/item/reagent_container/food/drinks/bottle/whiskey, @@ -16023,25 +16001,6 @@ /obj/item/reagent_container/food/drinks/bottle/pwine, /turf/open/floor/wood, /area/varadero/interior/research) -"nPG" = ( -/obj/structure/surface/table, -/obj/item/inflatable{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/inflatable{ - pixel_x = 6 - }, -/obj/item/inflatable{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/technical_storage) "nPI" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -16051,18 +16010,14 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"nPK" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"nPR" = ( -/obj/structure/machinery/light{ - dir = 4 +"nQc" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "nQo" = ( /obj/structure/machinery/conveyor, /obj/structure/largecrate/random, @@ -16075,239 +16030,202 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) -"nQH" = ( -/obj/structure/machinery/light{ - dir = 4 +"nQG" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"nQR" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"nRk" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/med_large_stack, -/obj/item/trash/boonie, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"nRy" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) -"nRH" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) -"nRP" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/item/cell/high, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"nRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"nRU" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"nRb" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) +"nRC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"nRW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/interior_protected/maintenance/south) +"nSc" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/medical) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"nSh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "nSi" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) +"nSn" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"nSy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nSA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "nSP" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/medical) -"nTj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +"nTh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/trackimp, +/obj/item/device/binoculars, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"nTn" = ( +/obj/structure/bed/chair/hunter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"nTv" = ( +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "nTG" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_SE) -"nTH" = ( -/obj/structure/bed/chair/comfy/orange{ - buckling_y = 9; - dir = 8; - pixel_y = 9 - }, -/obj/item/device/megaphone{ - layer = 2; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/hazardvest{ - desc = "It oozes authority, prestige, and sick summer vibes."; - name = "life guard's vest"; - pixel_x = 10; - pixel_y = -9 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) "nTS" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"nTX" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/hall_N) -"nUf" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"nVk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"nVn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/east, -/area/varadero/interior/disposals) -"nVv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"nUa" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/item/device/cassette_tape/pop2{ + pixel_x = 5; + pixel_y = 11 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/item/device/cassette_tape/pop3{ + pixel_y = 7 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"nVy" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva/red/northeast, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"nUx" = ( +/obj/item/paper, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"nUO" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/storage/bomber, +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"nVG" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nVK" = ( +/obj/structure/machinery/optable, +/obj/item/cpr_dummy, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"nWa" = ( +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/morgue) -"nWg" = ( +"nWo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"nWs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"nWC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/varadero/interior/library) "nWS" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nXB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"nXR" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nXY" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 - }, -/obj/structure/flora/bush/desert{ - pixel_y = 14 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_NW) -"nYi" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 +"nXw" = ( +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = -6; + pixel_y = -1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior_protected/caves/central) -"nYx" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = 6; + pixel_y = 1 }, /turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"nYy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"nYL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"nZd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"nZi" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"nXI" = ( +/obj/structure/closet/crate/freezer/cooler/oj, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"nXM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"nYB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/comms3) "nZk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -16316,16 +16234,13 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"oam" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"nZM" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "oaO" = ( /obj/structure/bed/chair{ dir = 4; @@ -16333,63 +16248,51 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"obm" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 +"obl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/caphat{ + pixel_x = 2; + pixel_y = 9 }, +/obj/item/clothing/head/cmcap, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/area/varadero/interior/bunks) "obr" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"obN" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -32; - pixel_y = -18; - indestructible = 1 - }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/exterior/lz1_near) -"obS" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"ocr" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"ocz" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +"ocl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 5 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"ocq" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 13; + pixel_y = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"ocQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/area/varadero/interior_protected/maintenance/south) +"ocM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"ocV" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"odf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "odw" = ( /obj/structure/machinery/photocopier, /obj/item/storage/firstaid/regular{ @@ -16398,25 +16301,9 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"odD" = ( -/obj/structure/bed/chair, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"odZ" = ( -/obj/structure/closet/toolcloset, -/obj/structure/barricade/handrail/wire, -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"oef" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"odQ" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) "oep" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -16425,27 +16312,26 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"oeO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 6; - pixel_y = 9 +"oeN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance) +"oeX" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"off" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "ofC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"ofI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/co2_cartridge{ - pixel_x = 13; - pixel_y = 7 - }, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "ofJ" = ( /obj/structure/shuttle/engine/router{ dir = 4; @@ -16453,12 +16339,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"oga" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "ogj" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -16472,37 +16352,46 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"ogq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) -"ogW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"ogs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/carpet, -/area/varadero/interior/hall_SE) -"ohi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/obj/structure/machinery/flasher_button{ - id = "sec_checkpoint"; - pixel_y = 24 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"ogF" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 36 +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"ogN" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "cargobay"; + name = "Cargo Bay Lock"; + pixel_y = 20 }, -/obj/item/clothing/suit/armor/vest, -/obj/item/restraint/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"ogS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ogW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/varadero/interior/hall_SE) +"ohm" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ohC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -16511,81 +16400,72 @@ }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"oiB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ - pixel_x = -10; - pixel_y = 15 +"ohJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/item/reagent_container/blood/empty{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oiX" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ pixel_x = 6; - pixel_y = 5 + pixel_y = -4 }, -/obj/item/storage/box/cups{ - pixel_x = -13; - pixel_y = 3 +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"okC" = ( +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"oiM" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) -"ojm" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ojF" = ( -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"ojJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -5; + pixel_y = -9 }, -/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"oke" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"okf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 +/area/varadero/interior_protected/maintenance/south) +"okP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"okI" = ( -/obj/structure/surface/rack, -/obj/item/implantpad, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"okJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"olf" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva/greencorners/east, +/area/varadero/interior/hall_SE) +"olj" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"oll" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"olv" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"ola" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"olD" = ( -/turf/open/floor/asteroidwarning/east, -/area/varadero/exterior/lz1_near) -"olP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +"olN" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "olU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -16594,45 +16474,73 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"omj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"omr" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"omD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"omN" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz2_near) "onj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"onr" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ooe" = ( -/obj/structure/surface/rack, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/effect/spawner/random/toolbox, +"onl" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/caves/east) +"onw" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"onK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"onV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "oos" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/library) +"ooC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"ooP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"ooX" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "opd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"opk" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "opP" = ( /obj/structure/machinery/light{ dir = 4 @@ -16652,20 +16560,22 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/administration) -"oqh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, +"oqO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"ori" = ( /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) -"orb" = ( -/obj/structure/bed/chair{ +"orq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "orr" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -16673,6 +16583,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"orE" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "orH" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -16687,82 +16603,159 @@ }, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"orT" = ( -/obj/structure/disposalpipe/segment{ +"oso" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"oss" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "pipe-c" + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"osr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"ost" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"osz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "osE" = ( /obj/structure/largecrate/random/barrel, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"osN" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) "osX" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) +"oth" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "otH" = ( /obj/structure/closet/crate/construction, /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"otL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) "otO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"otR" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) +"oud" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) "ouy" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/east) -"ouV" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) -"ovp" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"ouF" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"ouJ" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ouX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ovm" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"ovA" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) +"ovB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "ovC" = ( /turf/open/floor/carpet, /area/varadero/interior/research) +"ovG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/structure/machinery/flasher_button{ + id = "sec_checkpoint"; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 36 + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "ovT" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"owk" = ( -/obj/structure/machinery/light/small, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +"owb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"owy" = ( +/obj/structure/bed/chair/hunter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"owF" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/security) +"owH" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "owM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, @@ -16792,14 +16785,6 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) -"oxa" = ( -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -16810,28 +16795,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oxA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"oyb" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"oyi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +"oxk" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "oyl" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -16840,16 +16807,25 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"oyv" = ( -/obj/item/device/flashlight, +"oyB" = ( +/obj/structure/prop/rock/brown, /turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz2_near) -"oyx" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" +/area/varadero/exterior/lz1_near) +"oyE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"oyM" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) "oyT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -16872,25 +16848,35 @@ }, /turf/open/floor/plating, /area/varadero/interior/security) -"ozz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) -"ozD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"ozb" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"oAm" = ( -/obj/structure/toilet{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"ozf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"ozH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"oAe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"oAq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "oAC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/coast/beachcorner2/north_east, @@ -16913,34 +16899,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBj" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) "oBq" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"oBG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/court) "oBJ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -16948,39 +16912,10 @@ /obj/item/tool/soap/syndie, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"oBP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"oBQ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) -"oBR" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"oCN" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) -"oCR" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"oDz" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +"oBS" = ( +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "oDB" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -16988,10 +16923,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"oDN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) "oDS" = ( /obj/structure/sign/safety/hazard{ pixel_x = 15 @@ -17008,16 +16939,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"oDX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "oEc" = ( /obj/structure/filingcabinet{ density = 0; @@ -17048,53 +16969,83 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"oET" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/security) -"oEX" = ( -/obj/structure/closet/crate, -/obj/item/clothing/head/helmet, +"oEu" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"oFd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +/area/varadero/interior/maintenance/security) +"oEv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"oFq" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/mess) -"oGc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"oEP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/wood, +/area/varadero/interior/security) +"oET" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/security) +"oFE" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"oFK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "oGv" = ( /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"oGC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "oHo" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"oHr" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"oHL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"oHN" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "oIc" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"oIq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"oIC" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) "oJb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -17104,27 +17055,26 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oJm" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Hangar Power Substation"; - req_access = null +"oJc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"oJv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"oJB" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"oJW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/hall_SE) +"oJC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 3 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "oJX" = ( /obj/item/stack/sheet/metal, /obj/structure/shuttle/engine/heater{ @@ -17152,53 +17102,41 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"oKx" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"oLc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/mineral/plastic{ + amount = 3 }, -/obj/structure/largecrate/random, +/obj/item/weapon/gun/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"oLg" = ( +/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"oKy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"oKN" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/varadero/interior/electrical) +"oLj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"oLs" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"oLA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/item/clothing/suit/armor/vest, -/obj/structure/coatrack, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/hall_N) -"oLa" = ( -/obj/item/trash/barcardine, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "oLM" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/cargo) -"oLZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "oMa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/packet/bicaridine, @@ -17212,70 +17150,111 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oMl" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"oMs" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"oNa" = ( +"oMF" = ( /obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) +"oMQ" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"oNm" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"oNt" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) "oNy" = ( /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"oOF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"oPe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"oNK" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"oOo" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"oPQ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"oOq" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"oOI" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"oOS" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +/area/varadero/interior/maintenance/security) +"oPk" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "oPV" = ( /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"oRx" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/eat, -/obj/item/trash/cheesie, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 +"oQE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"oRB" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"oRk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = -2; +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"oRm" = ( +/obj/item/paper_bin{ pixel_y = 6 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) +/obj/item/tool/pen/blue{ + pixel_x = 7 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "oRD" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"oSe" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +"oRJ" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"oSA" = ( +/obj/structure/closet/crate/secure, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "oSX" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -17284,18 +17263,21 @@ /obj/structure/blocker/fog, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) +"oTz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "oTE" = ( /obj/item/tool/crowbar/red, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"oTX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"oUc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "oUh" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -17308,61 +17290,52 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"oUp" = ( -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/morgue) -"oUO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/inflatable, -/obj/item/inflatable/door, -/obj/item/storage/box/engineer, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"oVm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/comms3) -"oVn" = ( -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) -"oVp" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"oUn" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"oVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 }, -/turf/open/floor/shiva/redcorners/west, -/area/varadero/interior/security) +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oUV" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) "oVt" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"oWf" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"oVB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"oVT" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastocean) +/area/varadero/interior/maintenance) "oWg" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"oWr" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/varadero/interior/administration) "oWs" = ( /obj/effect/decal/strata_decals/grime/grime4, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -17372,88 +17345,107 @@ }, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"oWO" = ( -/obj/structure/toilet, -/turf/open/floor/white, -/area/varadero/interior/security) -"oWU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"oWv" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"oWC" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"oWJ" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 + }, +/obj/item/stack/cable_coil/pink{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oWP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/disposals) "oXf" = ( /turf/open/floor/carpet, /area/varadero/interior/chapel) -"oXi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"oXm" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"oXp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) "oXw" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "LZ1 - Pontoon Dock" }, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) +"oXB" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) "oXC" = ( /obj/structure/surface/table, /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"oXZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"oXD" = ( +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; + dir = 4; + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/administration) -"oYB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oXV" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "oYE" = ( /obj/structure/closet/crate, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oZw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"oZA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"oYM" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"oYR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "oZJ" = ( /obj/structure/fence, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"paq" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"pac" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"paB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/prop/static_tank{ + pixel_y = 8 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"pat" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"paI" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "pbd" = ( @@ -17483,83 +17475,37 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/administration) -"pbp" = ( -/turf/open/floor/asteroidwarning/north, -/area/varadero/exterior/lz1_near) "pbt" = ( /turf/closed/wall, /area/varadero/interior/mess) -"pbw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"pbH" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/pillbottles{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/packet/bicaridine{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "pbT" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"pco" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"pcH" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"pcK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/technical_storage) -"pdc" = ( -/obj/structure/largecrate/random{ - anchored = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"pdn" = ( -/obj/item/tool/shovel/spade, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"pdr" = ( -/obj/structure/surface/table, -/obj/item/trash/chips{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"pdK" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) -"pea" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/coast/beachcorner2/north_east, -/area/varadero/interior/caves/north_research) -"per" = ( +"pcT" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, @@ -17570,48 +17516,93 @@ name = "support struts" }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"peu" = ( -/obj/item/shard{ - icon_state = "medium" +/area/varadero/exterior/pontoon_beach) +"pdb" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"peA" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"pdk" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"pdm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/tool/plantspray/pests/old/phosmet{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/weapon/wirerod{ + pixel_x = 8 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"pdn" = ( +/obj/item/tool/shovel/spade, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"pdp" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"pdR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) +"pea" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/coast/beachcorner2/north_east, +/area/varadero/interior/caves/north_research) +"peb" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"pec" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"ped" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"peh" = ( +/obj/item/tool/wet_sign, /turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/area/varadero/interior/cargo) "pfd" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/pontoon_beach) -"pfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"pfJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"pfD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"pfL" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/trash/plate, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"pfR" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"pgc" = ( +/obj/structure/largecrate/random/mini/chest, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "pgg" = ( /obj/item/tool/pickaxe, /turf/open/gm/coast/south, @@ -17624,10 +17615,29 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) +"pgJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "phk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"phl" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"phv" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "phw" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -17640,34 +17650,29 @@ }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"pie" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +"pig" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"pin" = ( +/obj/effect/landmark/good_item, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "pja" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/security) -"pjk" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"pjm" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = -25 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "pjn" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -17675,10 +17680,10 @@ /obj/item/book/manual/research_and_development, /turf/open/floor/carpet, /area/varadero/interior/library) -"pjs" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) +"pjx" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "pjD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/eastocean) @@ -17694,13 +17699,6 @@ /obj/item/tool/weldingtool, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"pkl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "pku" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -17714,22 +17712,31 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"pkG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"pkC" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"pkK" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"pkT" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"pkX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/varadero/interior/comms1) +"pkN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"plb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) "pll" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -17741,50 +17748,62 @@ "plq" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/eastocean) -"plF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"plM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "Revolting beyond description."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_teeth"; - name = "human-ish teeth"; +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"plV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"pmL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; pixel_x = 1; - pixel_y = -2 + pixel_y = 13 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"plN" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"pmZ" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"pne" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray/tricordrazine{ + pixel_x = -14; + pixel_y = 2 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"pnn" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"pmM" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"pnL" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"pnJ" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "pol" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/library) -"pot" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) "pox" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -17796,89 +17815,65 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"poC" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 13; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"poE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"poU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"ppw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"ppG" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"pqf" = ( -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +"ppK" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"ppO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "pqj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"pqG" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"pqo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) -"pqO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"pqY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"prh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"pqu" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "prl" = ( /obj/item/grown/log, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"prC" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/exterior/eastbeach) -"prY" = ( +"prm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"prx" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"prC" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/eastbeach) "psb" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = -13; @@ -17899,29 +17894,44 @@ /obj/structure/inflatable, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"psy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"psJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "\improper Theta-V Research Laboratory Director's Office"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "pth" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"pti" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"ptp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"ptq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"ptA" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"ptB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"ptw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "ptC" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -17930,64 +17940,71 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"ptM" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"ptP" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"ptY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"pun" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/pontoon_beach) +"puk" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "puq" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pvk" = ( -/obj/structure/disposalpipe/segment{ +"puJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 4 }, +/turf/open/floor/plating/warnplate/northeast, +/area/varadero/interior/disposals) +"puS" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"pvd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"pvx" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"pvD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Treatment"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/snow_mat/east, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"pvs" = ( +"pvK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "pvQ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"pwc" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = 6 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +"pwv" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pwQ" = ( +/obj/structure/blocker/fog, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"pwY" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "pxa" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/largecrate/random/mini/ammo{ @@ -17998,109 +18015,127 @@ }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"pxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"pAa" = ( +"pxF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"pyb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"pAp" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/exterior/lz1_near) -"pAX" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"pAZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/phoronglass{ - amount = 32 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"pBb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/red/southwest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"pyM" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"pyV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"pzc" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"pzh" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, /area/varadero/interior/security) -"pBf" = ( -/obj/structure/prop/rock/brown{ - layer = 2 - }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +"pzQ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/vessel) -"pBo" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/fedora{ - pixel_x = -1; - pixel_y = 15 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/wood, -/area/varadero/interior/security) -"pBK" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"pAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/filingcabinet{ - pixel_x = 8 +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/administration) -"pBS" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"pAr" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/weapon/gun/rifle/sniper/svd, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"pAR" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"pBd" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/morgue) +"pBo" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/fedora{ + pixel_x = -1; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/varadero/interior/security) +"pBw" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"pBH" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "pCa" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"pCc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"pCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" +"pCl" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"pCv" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"pCp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/trash/plate{ + pixel_y = 7 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"pCO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "pCP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 2; @@ -18110,42 +18145,63 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"pCV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/rods, -/obj/item/storage/donut_box, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +"pDf" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) "pDl" = ( /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"pDD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"pDt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"pDW" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"pEv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"pEE" = ( -/obj/structure/disposalpipe/segment{ +/area/varadero/interior/maintenance/security) +"pDI" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"pDZ" = ( +/obj/item/circuitboard/apc, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pEd" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"pEr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"pEN" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"pFb" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "pFd" = ( /obj/item/storage/pouch/construction, /obj/structure/prop/invuln/lattice_prop{ @@ -18155,10 +18211,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"pFS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"pFg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pFn" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pFy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, /turf/open/floor/freezerfloor, /area/varadero/interior/cargo) @@ -18167,16 +18234,24 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/varadero/interior/research) -"pGi" = ( +"pGf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "pGj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pool) +"pGk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) "pGs" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/oob) @@ -18187,72 +18262,50 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"pGS" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"pGU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"pIe" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"pIj" = ( -/obj/structure/surface/rack, +"pHq" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"pIz" = ( -/obj/structure/surface/table, -/obj/item/trash/plate{ - desc = "For all your soapy needs."; - icon_state = "tray"; - name = "soap dish"; - pixel_x = 4; - pixel_y = 10 +"pHs" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/obj/item/tool/soap/weyland_yutani{ - pixel_x = 3; - pixel_y = 7 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"pHW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/tool/soap/weyland_yutani{ - pixel_x = 2; - pixel_y = 11 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/obj/item/tool/soap/weyland_yutani{ - desc = "Teetering at the brink! A life's thread, about to be cut short."; - pixel_x = 5; - pixel_y = 15 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"pIi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "pIC" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/security) -"pJn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pJa" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"pJp" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "pJs" = ( /obj/structure/bed/chair{ buckling_y = 18; @@ -18263,22 +18316,23 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"pJA" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"pJZ" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"pJQ" = ( -/obj/item/book/manual/evaguide, -/turf/open/floor/wood, -/area/varadero/interior/library) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "pKg" = ( /obj/item/book/manual/nuclear, /turf/open/floor/carpet, /area/varadero/interior/library) +"pKk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) "pKs" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -18289,34 +18343,108 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"pLp" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"pKQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"pLa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/white, +/area/varadero/interior/security) +"pLt" = ( +/obj/structure/surface/table, +/obj/item/inflatable{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/inflatable{ + pixel_x = 6 + }, +/obj/item/inflatable{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/technical_storage) +"pLE" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) "pLF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"pLV" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"pLH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"pLR" = ( +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"pMc" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) -"pNa" = ( -/obj/structure/catwalk, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"pMt" = ( +/obj/structure/closet/crate/secure, +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/turf/open/gm/river/desert/deep/no_slowdown, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"pMF" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"pMI" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"pMZ" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarsouth"; + unacidable = 1; + name = "Pontoon South Door"; + openspeed = 17 + }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/varadero/interior/maintenance/north) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18325,96 +18453,51 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"pNJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"pNT" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) -"pOa" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"pOg" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +"pNi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"pNo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"pOz" = ( -/obj/structure/machinery/computer/card{ - dir = 8 +"pNt" = ( +/obj/item/trash/barcardine, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"pOu" = ( +/obj/structure/closet/crate/construction, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"pOw" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/southeast, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "pOC" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"pPf" = ( -/obj/structure/surface/table, -/obj/item/prop/helmetgarb/flair_uscm, -/obj/item/storage/box/uscm_mre{ - pixel_x = -4; - pixel_y = 13 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"pPl" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) +"pPW" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "pQp" = ( /turf/closed/wall/r_wall, /area/varadero/interior/technical_storage) -"pQw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"pQF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/technical_storage) -"pRa" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"pRl" = ( -/obj/structure/machinery/door/window/northright{ - name = "Disposals Chute" - }, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) +"pQD" = ( +/obj/structure/reagent_dispensers/beerkeg/alt_dark, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "pRs" = ( /obj/structure/prop/souto_land/pole{ dir = 8 @@ -18422,97 +18505,73 @@ /obj/structure/prop/souto_land/pole, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"pRy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/bible{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) -"pRP" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"pRR" = ( -/obj/structure/platform/kutjevo/smooth{ +"pRI" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 + icon_state = "leftsecure"; + id = "brg" }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "pRV" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"pRX" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) +"pSc" = ( +/obj/item/device/flashlight/slime{ + mouse_opacity = 0; + invisibility = 1; + indestructible = 1; + alpha = 0 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "pSg" = ( /obj/structure/inflatable/door, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"pSy" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"pSD" = ( -/obj/structure/bed/chair, +"pSm" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"pSs" = ( +/obj/structure/catwalk, +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"pSG" = ( +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"pTg" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"pSK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"pTc" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"pTg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"pTs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/crew{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/trackimp{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 +"pTw" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) -"pTI" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) "pTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -18520,21 +18579,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pTQ" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "pUi" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -18549,60 +18593,83 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"pVh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pUj" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pUK" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/wredfull, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"pVk" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pVr" = ( +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/hall_N) +"pVA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) -"pVl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"pVE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/pen/blue{ + pixel_x = 4; + pixel_y = 3 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"pVz" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = -5; + pixel_y = 11 }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "pVN" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/court) -"pWm" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +"pXb" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"pXh" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"pXp" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"pXq" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"pXr" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"pXH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"pXG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/southwest, /area/varadero/interior/hall_SE) -"pXL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) "pXT" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -18613,17 +18680,6 @@ "pYn" = ( /turf/closed/wall, /area/varadero/interior/records) -"pYt" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"pYv" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) "pYx" = ( /obj/structure/window/reinforced{ dir = 4; @@ -18668,31 +18724,28 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"pYK" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/monsoon) -"pYV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +"pYN" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"pZl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"pZk" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"pZB" = ( +/obj/structure/machinery/flasher{ + id = "sec_checkpoint"; + name = "Checkpoint Flash"; + pixel_x = -32; + pixel_y = 32 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"pZD" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) "pZS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -18705,14 +18758,16 @@ "pZT" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/lz2_near) +"qaD" = ( +/obj/item/stack/sandbags/large_stack{ + pixel_y = 4; + pixel_x = -12 + }, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) "qaE" = ( /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qaX" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "qaY" = ( /obj/structure/sign/safety/water, /turf/closed/wall, @@ -18724,38 +18779,36 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"qcC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" +"qcl" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"qcD" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qcm" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1; + locked = 1; + name = "\improper Engine Room" }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -10; - pixel_y = -9 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"qcu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/cargo) +"qcL" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "qcN" = ( /turf/closed/wall, /area/varadero/interior/medical) -"qdd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"qdk" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) "qdL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/security_space_law{ @@ -18774,6 +18827,15 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"qer" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "qeu" = ( /obj/structure/window/reinforced{ dir = 4; @@ -18802,20 +18864,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qfb" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"qfd" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) "qfr" = ( /turf/open/gm/dirt, /area/varadero/exterior/comms4) @@ -18835,33 +18887,35 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"qfL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"qfY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "qgm" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"qgy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" +"qgt" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"qgR" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"qhy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "qhF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qhN" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) "qhO" = ( /obj/effect/spawner/random/tool, /turf/open/gm/dirt, @@ -18878,17 +18932,17 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qhZ" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "qio" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance) -"qir" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) +"qiq" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "qis" = ( /obj/item/paper{ pixel_y = -6; @@ -18899,32 +18953,10 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qiv" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/cargo) -"qiP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"qjd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, +"qiB" = ( +/obj/item/trash/liquidfood, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) -"qjg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/hall_NW) "qjU" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -18935,58 +18967,52 @@ /obj/structure/largecrate/random, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qkF" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qlj" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"qlw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, +"qlo" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) -"qlW" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"qmF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, +"qlr" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"qlM" = ( /obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 + dir = 8; + pixel_x = 3 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"qnf" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"qmE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) -"qnm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"qnN" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"qnc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"qnE" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"qnI" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"qnM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qnU" = ( /obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; name = "\improper Underground Maintenance"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) "qnW" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall, @@ -19000,25 +19026,46 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"qoE" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/varadero/exterior/lz1_near) +"qoq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"qoy" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "qoI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/monsoon) -"qps" = ( +"qoW" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"qpe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/court) -"qpD" = ( -/obj/item/device/multitool, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "qpK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -19027,21 +19074,12 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qpZ" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"qqs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"qqA" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +"qqf" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/sling, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "qqJ" = ( /obj/structure/sign/safety/bulkhead_door, /obj/structure/machinery/door_control/brbutton{ @@ -19052,19 +19090,57 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz1_near) -"qqM" = ( -/obj/structure/largecrate/random/mini, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"qqR" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." +"qqN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"qrh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"qrp" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qrt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/paper{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/paper/research_notes/good{ + pixel_x = -15; + pixel_y = 2 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qrA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"qrF" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/kepler, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"qrP" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "qsb" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -19078,28 +19154,25 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"qsh" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"qsQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 14 }, -/obj/item/explosive/grenade/incendiary{ +/obj/item/storage/box/pillbottles{ pixel_x = -4; - pixel_y = -2 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"qto" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security Interrogation"; - req_access_txt = "100" + pixel_y = 7 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"qtk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "qtv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -19108,17 +19181,6 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"qtQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 18 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "qul" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/north_research) @@ -19126,76 +19188,76 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"quP" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"quF" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"quG" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"qvl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "qvo" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/administration) -"qvO" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"qvq" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"qvs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qvQ" = ( -/obj/structure/bed/chair{ +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"qvF" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "qvS" = ( /turf/open/gm/coast/south, /area/varadero/exterior/eastocean) -"qwB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) -"qwQ" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"qwU" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"qxa" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"qxb" = ( -/obj/structure/bed/alien{ - can_buckle = 0; - color = "#aba9a9" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"qwY" = ( +/obj/structure/largecrate/random, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/obj/structure/bed/alien{ - buckling_y = 13; - color = "#aba9a9"; - layer = 3.5; - pixel_y = 13 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"qxu" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_N) +/area/varadero/interior/caves/east) +"qxC" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "qyk" = ( /obj/structure/machinery/light{ dir = 8 @@ -19211,26 +19273,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"qym" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"qyH" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) "qyJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz1_near) +"qyQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "qyT" = ( /obj/structure/largecrate/random/case, /turf/open/gm/dirt, @@ -19248,19 +19299,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"qzb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qzd" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) "qzi" = ( /obj/structure/sign/safety/high_voltage, /obj/structure/sign/safety/hazard{ @@ -19272,62 +19310,27 @@ /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qAd" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper External Airlock" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "qAg" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"qAo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qAp" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qAr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) "qAy" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"qAI" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"qBn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +"qBj" = ( +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) "qBy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -19337,15 +19340,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"qBL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "qBQ" = ( /obj/structure/coatrack, /obj/item/clothing/suit/armor/bulletproof, /turf/open/floor/wood, /area/varadero/interior/research) -"qBR" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) "qBU" = ( /obj/structure/machinery/space_heater, /obj/item/device/flashlight/lamp/green{ @@ -19353,10 +19359,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"qCk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) +"qCv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "qCE" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/gin{ @@ -19365,37 +19371,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"qCI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +"qCQ" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_N) "qCT" = ( /obj/structure/inflatable, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qCY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"qDh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "qDr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -19403,21 +19385,6 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"qDs" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"qDt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"qDv" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "qDR" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, @@ -19436,10 +19403,9 @@ /obj/item/clothing/suit/storage/jacket/marine/corporate, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qEn" = ( -/obj/item/stack/sheet/metal, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"qEo" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) "qEt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -19448,78 +19414,86 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qEG" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qFe" = ( -/obj/effect/overlay/palmtree_r{ - icon_state = "palm2" +"qEC" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/pontoon_beach) -"qFC" = ( -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"qEM" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "qFI" = ( /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) "qFZ" = ( /turf/open/floor/wood, /area/varadero/interior/bunks) -"qGE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) "qHc" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"qHl" = ( -/obj/structure/prop/fishing/line/long/part2, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"qHu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"qHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"qHg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qHn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qHv" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"qHD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"qHG" = ( +/obj/structure/prop/power_transformer, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "qHJ" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"qId" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"qIi" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) "qIF" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"qKb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"qJd" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qJL" = ( +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "qKq" = ( /obj/structure/closet/secure_closet/RD, /obj/item/ammo_magazine/handful/lever_action, @@ -19528,108 +19502,83 @@ /obj/item/ammo_magazine/handful/lever_action, /turf/open/floor/wood, /area/varadero/interior/research) +"qKK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/rods, +/obj/item/storage/donut_box, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "qKM" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"qKT" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "qKZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"qLf" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"qLB" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qLL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"qLq" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"qLZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"qLH" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +/area/varadero/interior/maintenance/research) +"qMo" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"qMy" = ( +/obj/structure/largecrate/random{ + anchored = 1 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"qMl" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"qMr" = ( -/obj/item/tool/minihoe, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qMD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = 3; - pixel_y = 9 +/area/varadero/interior_protected/caves) +"qME" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/obj/item/device/cassette_tape/ocean{ - pixel_x = 6; - pixel_y = 4 +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/item/device/cassette_tape/pop2, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) "qMW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"qMY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"qNw" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"qNu" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz2_near) -"qNC" = ( -/obj/structure/surface/table, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = -1 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"qNE" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"qNP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/area/varadero/exterior/comms4) "qNX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz2_near) @@ -19637,12 +19586,23 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"qOn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qOj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"qOm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) +/area/varadero/interior/records) +"qOr" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "qOF" = ( /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, @@ -19652,18 +19612,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"qOO" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"qOJ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"qOP" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "qOS" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand_white/layer1, @@ -19674,52 +19632,24 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"qPd" = ( -/obj/structure/machinery/light, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"qPk" = ( -/obj/structure/machinery/light{ +"qOZ" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"qPs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"qPG" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/disposals) -"qQd" = ( -/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"qQk" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) +/area/varadero/exterior/lz1_near) +"qQg" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "qQt" = ( /obj/structure/window/reinforced{ dir = 4; @@ -19744,68 +19674,29 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"qQN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"qRe" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"qRi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +"qQS" = ( +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "qRy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 }, /turf/open/floor/wood, /area/varadero/interior/court) -"qRP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qSj" = ( +"qRF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) -"qSJ" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"qSC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "qSR" = ( /obj/structure/closet/crate/trashcart, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qTh" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/monsoon) "qTs" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -19818,98 +19709,102 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"qTz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"qTE" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) "qTZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"qUf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/red/north, +"qUn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "qUK" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qUQ" = ( -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"qVb" = ( -/obj/item/stack/cable_coil/cyan, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"qVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"qUX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"qVD" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"qVe" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "qVL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qVO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"qVQ" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qVS" = ( /obj/structure/window/reinforced/tinted{ - dir = 4 + dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat/east, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) -"qWt" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/hall_N) -"qWw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"qWz" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "qWC" = ( /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qXn" = ( -/obj/structure/machinery/firealarm{ +"qWP" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"qWW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/mess) -"qXO" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"qXa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"qXo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"qXQ" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "qYg" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -19917,36 +19812,44 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"qYE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/suit/fire/firefighter{ - pixel_x = 3; - pixel_y = 7 +"qYk" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qZr" = ( -/obj/effect/landmark/yautja_teleport, +/area/varadero/interior/maintenance/north) +"qYA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"qYB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance/north) +"qZo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/white, /area/varadero/interior/toilets) -"qZH" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"qZu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qZJ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qZR" = ( -/obj/structure/bed/chair{ - dir = 1; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) "qZV" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -19955,6 +19858,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"rae" = ( +/turf/open/floor/white, +/area/varadero/interior/toilets) "rau" = ( /obj/structure/filingcabinet{ density = 0; @@ -19974,39 +19880,50 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"rax" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_y = 9 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"raC" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"raF" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"raQ" = ( +/obj/structure/cable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "raW" = ( /turf/closed/wall, /area/varadero/interior_protected/caves/central) -"rbd" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rbp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ +"rbm" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"rbT" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "rbU" = ( /turf/open/floor/wood, /area/varadero/interior/research) -"rco" = ( -/obj/structure/inflatable/door, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"rbY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/morgue) "rcq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, @@ -20015,23 +19932,13 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"rcA" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"rdq" = ( -/obj/item/tool/wrench{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, +"rcw" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"rcL" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "rdx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -20039,6 +19946,21 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) +"rea" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "red" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20050,77 +19972,111 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"res" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"rex" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"reA" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +"reD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "reG" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/hall_N) -"rfn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rft" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"rfA" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) +"rfJ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "rfV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"rgb" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_NW) -"rgf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"rga" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/gm/dirt/desert1, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "rgg" = ( /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"rgy" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +"rgm" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rgA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"rhl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless{ + pixel_x = 7; + pixel_y = 9 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/blue/north, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) -"rgz" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/swcaves) -"rgZ" = ( -/obj/item/tool/kitchen/knife, +"rhs" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"rhA" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"rhU" = ( /obj/structure/surface/table, -/turf/open/floor/asteroidwarning/east, -/area/varadero/exterior/lz1_near) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "ria" = ( /obj/structure/bed/sofa/pews/flipped, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"rij" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"riu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"riE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "riJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/window/framed/colony, @@ -20138,43 +20094,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rja" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "rjn" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 }, /area/varadero/interior/records) -"rjo" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz1_near) -"rjE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/trash/plate{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"rjH" = ( +"rjr" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "rjM" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -20187,16 +20118,35 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"rjZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"rjT" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"rkA" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"rjX" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"rkd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"rkG" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) "rkH" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -20210,30 +20160,10 @@ /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rlI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"rlJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"rme" = ( -/obj/structure/surface/table, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds{ - pixel_x = 1; - pixel_y = -2 - }, +"rlx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance/security) "rmo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/medical/advanced/bruise_pack/upgraded{ @@ -20248,93 +20178,64 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rmr" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"rmu" = ( +/obj/structure/mirror{ + pixel_x = -32 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"rmB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"rmL" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva/red/northeast, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/white, /area/varadero/interior/security) -"rmS" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +"rmC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"rmF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "rmV" = ( /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rnj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"rnL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) -"rnP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null +"rmY" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"roy" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rnQ" = ( +/obj/item/trash/boonie, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"roa" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/surface/table, -/obj/item/spacecash/c1000{ - pixel_y = 6 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"roM" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) -"roJ" = ( +"rpt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Requesitions Office"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"roT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - density = 0; - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"rpd" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "rpu" = ( /turf/closed/wall, /area/varadero/interior/oob) @@ -20342,23 +20243,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"rpH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lights, -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"rpI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"rqa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"rpD" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "rqg" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -20371,32 +20260,6 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/comms2) -"rqn" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"rqx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"rqG" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "rrp" = ( /obj/item/paper_bin, /obj/item/tool/stamp{ @@ -20408,53 +20271,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"rrr" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, +"rrG" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"rrA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/varadero/interior/caves/east) +"rsa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "rsf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rsh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva/wred/northwest, -/area/varadero/interior/medical) -"rsj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/donkpocket{ - pixel_x = -5; - pixel_y = 17 - }, +"rsp" = ( /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"rsB" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"rsL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"rsM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/area/varadero/interior/technical_storage) +"rsx" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) +"rsy" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rsO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -20466,154 +20310,163 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"rsP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"rtd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/trash/crushed_cup, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"rtg" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "rtm" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"rtr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ +"rtq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 9 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"rtE" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"rtX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null + name = "\improper Underground Security Armory"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"rtu" = ( +/area/varadero/interior/security) +"ruw" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/firealarm{ +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"ruM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/item/storage/fancy/cigar, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"rvb" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"rtx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"rtP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rtR" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"rtV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 + icon_state = "p_stair_full" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"rvf" = ( +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"rvr" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) +"rvt" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3{ + pixel_y = -3 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "rvD" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"rwh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"rwg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"rwJ" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/marine_law{ + pixel_x = -6; + pixel_y = 5 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) -"rwP" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -6; - pixel_y = 6 +"rwK" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"rwV" = ( +/obj/structure/platform/kutjevo/rock, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 + pixel_y = -3 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"rxa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"rxe" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/cargo) -"rxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/maintenance/security) +"rwR" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + name = "barge float"; + desc = "A supportive lattice connected to two floating pontoons." }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"rwY" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"ryu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "ryD" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"ryG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/red{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"rzg" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/administration) -"rzM" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"rzO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"rzU" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"rAf" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/trash/plate{ - pixel_y = 7 +"rAr" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"rAj" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/comms2) "rAt" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"rAy" = ( -/obj/structure/bedsheetbin, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "rBa" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -20621,32 +20474,42 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"rBi" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) +"rBk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/clothing/suit/armor/vest, +/obj/structure/coatrack, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_N) "rBq" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rBP" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) +"rBM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "rCf" = ( /obj/structure/largecrate/random/case/small, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rCs" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 +"rCo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"rCr" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rCB" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8 @@ -20656,24 +20519,45 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"rDz" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"rDD" = ( -/obj/structure/machinery/light/small{ +"rCR" = ( +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"rCZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/obj/item/tool/stamp, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"rEo" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rEO" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) +/area/varadero/interior/maintenance/north) +"rEF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 5 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 18 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"rET" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "rFv" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/snacks/birthdaycakeslice, @@ -20694,12 +20578,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"rGl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"rGg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "rGA" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -20708,15 +20595,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rGE" = ( -/obj/structure/barricade/handrail/wire{ +"rHl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"rHv" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"rHu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "rHE" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20724,28 +20614,38 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"rIF" = ( -/obj/structure/platform_decoration/kutjevo{ +"rHX" = ( +/obj/structure/surface/table, +/obj/item/storage/wallet/random{ + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"rIv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) "rIG" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rIN" = ( -/obj/structure/pipes/vents/pump{ +"rJa" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/court) -"rIU" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/chapel) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "rJq" = ( /obj/structure/surface/table, /obj/item/pamphlet/skill/engineer{ @@ -20758,25 +20658,24 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"rJI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"rKf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"rKl" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/plating/icefloor/asteroidplating, +"rJN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/electrical) -"rKy" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"rKq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"rKz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) "rKB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -20786,15 +20685,12 @@ /obj/item/clothing/suit/armor/vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"rKL" = ( -/obj/structure/bed/chair{ - dir = 1 +"rKG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"rKM" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rKS" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20809,42 +20705,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"rLC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"rLK" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = 11; - pixel_y = 9 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = 10; - pixel_y = 20 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"rLU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"rLW" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/chunk, -/obj/item/trash/raisins, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"rLi" = ( +/obj/item/tool/soap, +/turf/open/floor/white, +/area/varadero/interior/security) +"rLy" = ( +/obj/item/paper/crumpled, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "rMb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"rMc" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "rMl" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20852,67 +20738,38 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"rMM" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"rMN" = ( +"rNX" = ( +/obj/structure/morgue, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"rNf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"rNo" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"rOL" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -8; - pixel_y = 15 +/area/varadero/interior/morgue) +"rOV" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 7; - pixel_y = 15 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rPm" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "rPD" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/records) -"rQe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, +"rQf" = ( +/obj/structure/prop/turbine_extras, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"rQk" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +/area/varadero/exterior/lz1_near) +"rQH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/shiva/greencorners/north, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rQU" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -20922,12 +20779,23 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rQV" = ( -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"rQY" = ( -/turf/open/floor/shiva/multi_tiles, +"rQZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) +"rRj" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"rRk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "rRm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20935,34 +20803,59 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"rRq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rRz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/blue/north, +"rRw" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"rRM" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/blue/southeast, /area/varadero/interior/administration) +"rRY" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "rSl" = ( /obj/item/tool/wrench, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rSu" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"rSx" = ( -/obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -4; - pixel_y = 13 +"rSt" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"rSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 5 +/obj/item/clothing/mask/cigarette/cigar{ + desc = "Manufactured in New Space Cuba, a product of Castro LTD."; + name = "comically large cigar"; + pixel_y = 7 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "rSX" = ( /obj/structure/window/reinforced{ dir = 4; @@ -20992,22 +20885,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"rTi" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"rTu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/restraint/handcuffs, -/obj/item/weapon/baton, -/turf/open/floor/wood, -/area/varadero/interior/security) -"rTv" = ( +"rTb" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"rTQ" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz2_near) "rTT" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -21017,10 +20903,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/disposals) -"rUa" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "rUc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -21038,16 +20920,35 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"rUI" = ( -/obj/structure/closet/crate/construction, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +"rUh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"rUB" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"rUD" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) "rVi" = ( /obj/item/tool/candle, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"rVj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) "rVl" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ @@ -21056,56 +20957,42 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_console/two) -"rVI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"rVS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) -"rVZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, +"rVu" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"rWx" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/area/varadero/interior/comms1) +"rVD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/mirror{ - pixel_y = -28 +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"rWt" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = -25 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"rWJ" = ( -/obj/item/stool, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"rWH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "rWN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"rWY" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"rWQ" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rXf" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/redcorners, -/area/varadero/interior/morgue) +/turf/open/floor/white, +/area/varadero/interior/toilets) "rXk" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz2_near) @@ -21121,27 +21008,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"rYC" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"rYO" = ( -/obj/structure/prop/static_tank/water{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"rYR" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "rZr" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 6 @@ -21157,44 +21023,57 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"saq" = ( -/obj/item/storage/firstaid/o2{ - layer = 3.1; - pixel_x = 2; - pixel_y = 10 +"saM" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"saP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - layer = 3.2; - pixel_x = -4; - pixel_y = 3 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"saC" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "saQ" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sbs" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"sbC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/closet/crate, -/obj/item/trash/crushed_cup, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"sbX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"scs" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"scz" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"scB" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "scD" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" @@ -21204,13 +21083,24 @@ "scL" = ( /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"scO" = ( -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 +"sdc" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/shorts/black, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.1; + pixel_x = -5; + pixel_y = 15 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/obj/item/reagent_container/glass/rag{ + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"sdo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) "sdq" = ( /obj/structure/window/reinforced{ dir = 4; @@ -21233,58 +21123,38 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sdy" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/maintenance/north) "sdz" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_NW) -"sdS" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "sdU" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/wood, /area/varadero/interior/research) -"sdZ" = ( +"sdV" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"seg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick/red{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 7; + pixel_y = 13 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"ses" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"seY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/implantcase/explosive{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) -"sff" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "sfj" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sfs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) +"sfE" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "sfF" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -21292,68 +21162,38 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"sfM" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/light{ - dir = 8 +"sfP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/obj/item/storage/bible/booze{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "sgk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sgn" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"sgq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"sgz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"sgy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"sgz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/wood, +/turf/open/floor/wood, /area/varadero/interior/hall_SE) "shb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/medical) -"shG" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +"shm" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "shO" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -21372,86 +21212,53 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"sic" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"sid" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"sjD" = ( -/obj/structure/machinery/light{ - dir = 1 +"siY" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) -"sjR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"sjf" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/red{ + pixel_x = -2; + pixel_y = -4 }, -/obj/item/tool/soap{ - pixel_x = 5 +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 }, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"sjl" = ( +/obj/item/clothing/suit/armor/vest, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"skp" = ( +"sjB" = ( /obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"slj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/screwdriver{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/tool/plantspray/pests/old/phosmet{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/weapon/wirerod{ - pixel_x = 8 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"slw" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"slA" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 + dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"sjN" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/eastbeach) +"skc" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/maintenance/north) +"slb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "slB" = ( /obj/structure/filingcabinet{ density = 0; @@ -21468,26 +21275,40 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"smx" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; +"sml" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"smt" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "p_stair_full" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"smE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"smM" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 8; + pixel_y = -8 }, -/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"smO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/area/varadero/interior_protected/maintenance/south) "snl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -21498,70 +21319,81 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sny" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"snu" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/exterior/lz1_near) "snE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"snP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/curtain/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/bunks) -"snS" = ( -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"sou" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" +"snH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"spd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/snow_mat/east, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) -"spv" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"sos" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"spP" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"sqG" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"soC" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"soN" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"soO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"sre" = ( -/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"soS" = ( +/obj/structure/girder/displaced, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sqt" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "srg" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) +"sri" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"srB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/disposals) "srU" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = -12; @@ -21580,90 +21412,46 @@ }, /turf/closed/wall, /area/varadero/interior/hall_N) -"ssg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"ssh" = ( -/obj/structure/prop/turbine_extras/left, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"ssv" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"ssF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "stl" = ( /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/pontoon_beach) -"stv" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"stw" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/maintenance/security) -"stK" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/digsite) -"stU" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"stX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"stV" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 - }, -/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/research) +"sua" = ( +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/cargo) -"suC" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"suo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"suE" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) -"suN" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"suY" = ( -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"suv" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"svj" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "svt" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21675,10 +21463,11 @@ /obj/structure/largecrate/random/case/double, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"svG" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +"svE" = ( +/obj/effect/landmark/crap_item, +/obj/structure/inflatable/door, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "svH" = ( /obj/structure/surface/table/woodentable, /obj/item/book/manual/marine_law{ @@ -21695,16 +21484,23 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"swa" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"swf" = ( -/obj/structure/bed/chair{ +"svX" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/phoronglass{ + amount = 32 + }, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"swd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "swj" = ( /obj/structure/closet/secure_closet/detective, /obj/structure/machinery/firealarm{ @@ -21713,26 +21509,37 @@ /obj/item/storage/pouch/machete/full, /turf/open/floor/wood, /area/varadero/interior/security) -"swk" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"swv" = ( -/obj/structure/surface/rack, -/obj/item/pizzabox/meat, +"swB" = ( +/obj/item/lightstick/variant/planted, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"swS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, +/area/varadero/exterior/monsoon) +"swD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "swV" = ( /obj/structure/closet/crate/construction, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"sxn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"sxr" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sxy" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "sxL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -21750,60 +21557,26 @@ /obj/item/weapon/gun/energy/yautja/plasmapistol, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"sxY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"syb" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/item/ammo_magazine/pistol/mod88/normalpoint, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol{ - pixel_x = -4 +"syG" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol{ - pixel_x = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"syK" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"syl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"syP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"syL" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"syM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/atmos_alert, -/obj/item/circuitboard/machine/smes{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/technical_storage) +/area/varadero/interior/security) "szh" = ( /turf/closed/wall/r_wall/elevator{ dir = 4 @@ -21817,112 +21590,7 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"szZ" = ( -/obj/structure/curtain/red, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"sAf" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"sAR" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) -"sAY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"sBk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"sBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"sBN" = ( -/obj/structure/target/syndicate, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"sBX" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/laundry) -"sCk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"sCp" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"sCA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"sCJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"sCK" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"sCV" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/cargo) -"sDf" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"sDj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"sDo" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"sDE" = ( +"szE" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; icon_state = "planter_box_soil" @@ -21936,65 +21604,143 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) +"szI" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"szW" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"sAA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"sAS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"sBb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 17 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"sBp" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"sBJ" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"sBX" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior/laundry) +"sCC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"sCN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/east, +/area/varadero/interior/disposals) +"sDp" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) "sDH" = ( /obj/item/grown/log, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"sDM" = ( -/turf/open/floor/shiva/purple, +"sDO" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) -"sDQ" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"sDZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"sFa" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"sFJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"sFN" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"sGb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ +"sEc" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"sEg" = ( +/obj/structure/sink{ dir = 1; - name = "\improper Underground Disposals"; - req_access_txt = "100" + pixel_y = -10 + }, +/obj/structure/mirror{ + pixel_y = -28 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) -"sGo" = ( /turf/open/floor/white, /area/varadero/interior/toilets) -"sGY" = ( -/turf/open/floor/shiva/multi_tiles, +"sEM" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"sFE" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"sGd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"sHJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"sGu" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"sGX" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"sHm" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"sHK" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "sHO" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -22003,50 +21749,22 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"sHV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"sIf" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) -"sIn" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"sIK" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"sIQ" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"sIU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sIW" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"sJm" = ( /turf/open/gm/dirt/desert1, /area/varadero/exterior/lz1_near) +"sJf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/court) "sJq" = ( /obj/structure/window/reinforced{ dir = 4; @@ -22068,33 +21786,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sJx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"sJF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"sJO" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"sKa" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/north, -/area/varadero/interior/hall_SE) -"sJZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/disposals) +"sKf" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"sKe" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"sKi" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"sKr" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "sKz" = ( /obj/structure/closet/crate/supply, /obj/item/storage/box/wy_mre, @@ -22110,37 +21827,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sKL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) "sKN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sLi" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light{ - dir = 8 - }, +"sLd" = ( +/obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"sLO" = ( -/obj/item/device/flashlight/slime{ - mouse_opacity = 0; - invisibility = 1; - indestructible = 1; - alpha = 0 +/area/varadero/exterior/lz2_near) +"sLE" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + name = "Incendiary Ammunition Order"; + desc = "An order manifest for incendiary ammo that has yet to be filled out." }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"sLU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/blue/north, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"sLK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"sLZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) +"sMm" = ( +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "sMn" = ( /obj/structure/bed/chair/office/dark, @@ -22151,74 +21870,43 @@ /obj/item/prop/magazine/dirty, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sMS" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) -"sNa" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"sNl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"sNp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +"sNn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "sNx" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/farocean) -"sNy" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"sNT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"sOj" = ( +"sNB" = ( +/obj/item/stool, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"sOi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) "sOw" = ( /obj/structure/inflatable, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"sPh" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) "sPs" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/wood, /area/varadero/interior/security) -"sPD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"sPY" = ( -/turf/open/floor/shiva/yellow/west, +"sPH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) -"sQn" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"sQr" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance/north) "sQs" = ( /obj/structure/filingcabinet{ density = 0; @@ -22240,6 +21928,14 @@ /obj/item/ammo_magazine/rifle, /turf/open/floor/wood, /area/varadero/interior/bunks) +"sQH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "sQR" = ( /obj/item/ore/coal, /obj/item/ore/silver{ @@ -22248,9 +21944,26 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"sQY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"sRd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "sRs" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) +"sRK" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "sRM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -22262,108 +21975,82 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"sRS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "sSp" = ( /obj/item/reagent_container/food/snacks/sliceable/birthdaycake, /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"sSz" = ( -/obj/item/device/camera{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/evidencebag{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, +"sSY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"sSU" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 1; - name = "\improper Underground Command Center"; - req_access_txt = "100" - }, +"sTl" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/trash/crushed_cup, +/obj/item/prop/magazine/dirty/torn, /turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"sSZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/varadero/interior/cargo) +"sTy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"sTA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/disposals) -"sTT" = ( -/obj/structure/machinery/light, -/obj/structure/closet/toolcloset, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"sTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"sTC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"sTF" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"sUj" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"sUp" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"sVb" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 - }, -/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"sVe" = ( +/obj/item/tool/wirecutters, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"sUm" = ( -/obj/structure/closet/crate/secure/weapon, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"sUp" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"sUG" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"sUK" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) +/area/varadero/interior/electrical) "sVk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -22386,83 +22073,189 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"sWp" = ( -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) +"sVV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"sWD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "sXb" = ( /turf/closed/wall, /area/varadero/interior/library) "sXc" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) +"sXm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "sXn" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"sYi" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"sZd" = ( -/obj/structure/girder/displaced, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"sZe" = ( -/obj/item/paper, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"sZW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"sXr" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"sXJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/machinery/storm_siren{ +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"sYG" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"sYH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sYN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ dir = 8; - pixel_x = 3 + pixel_x = -24 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"sZd" = ( +/obj/structure/girder/displaced, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"sZx" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/reagent_container/glass/pressurized_canister, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/technical_storage) +"tai" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "tak" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"tam" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"tbQ" = ( -/obj/structure/reagent_dispensers/water_cooler, +"taH" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"taQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva/blue/north, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"taW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 + }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) -"tcq" = ( +"tbl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"tcS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"tcX" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"tbm" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/exterior/lz1_near) +"tbn" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tca" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"tde" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) "tdp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -22479,78 +22272,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"tdy" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/marine_law{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) "tdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"tdX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"teg" = ( -/obj/structure/girder, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"ten" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"teu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/technical_storage) -"tex" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "tez" = ( /obj/item/toy/bikehorn/rubberducky, /turf/open/gm/coast/beachcorner/north_west, @@ -22560,42 +22285,13 @@ /obj/structure/sign/banners/happybirthdaysteve, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"teQ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "teT" = ( /obj/structure/largecrate/random/case/small, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"tfc" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) -"tfj" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"tfC" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/caves/digsite) "tgk" = ( /obj/structure/filingcabinet{ density = 0; @@ -22611,6 +22307,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"tgn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"tgu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "tgC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -22622,64 +22330,66 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"tgE" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/pontoon_beach) +"tgG" = ( +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "tgK" = ( /obj/structure/closet/crate/construction, /obj/item/stack/sandbags_empty/half, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"tgM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/nanopaste, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "thn" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"thr" = ( +/obj/structure/bedsheetbin, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"thu" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "thS" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"thY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/sheet/mineral/plastic{ - amount = 3 - }, -/obj/item/weapon/gun/rifle/m4ra, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "tia" = ( /obj/structure/machinery/conveyor, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"tig" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "tiw" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/security) +"tiB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "tiF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"tjn" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 +"tiU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) +/area/varadero/interior_protected/maintenance/south) "tjs" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -22698,9 +22408,10 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tjF" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) +"tjN" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "tjO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/stool{ @@ -22708,62 +22419,39 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"tjS" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"tkh" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/eastbeach) -"tkr" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"tkw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Breakroom"; - req_one_access = null; - req_access = null +"tki" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"tkz" = ( +/obj/item/prop/alien/hugger, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "tkF" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"tkT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"tkY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"tkV" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/area/varadero/interior/technical_storage) +"tln" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"tlo" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 7 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "tlq" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -22773,6 +22461,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"tls" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"tlz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "tlE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -22781,45 +22477,46 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tlG" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"tlI" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security Interrogation"; + req_access_txt = "100" }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"tlT" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"tlS" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"tmW" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) -"tmm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"tmC" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/pontoon_beach) "tmZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz2_near) -"tng" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 +"tnR" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"tnN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_access_txt = "100" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"toh" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"toI" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "toN" = ( /obj/item/tool/warning_cone{ pixel_x = 5; @@ -22837,6 +22534,10 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"tpb" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "tpp" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -22854,74 +22555,31 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"tpB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -16; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"tpL" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"tpV" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -13; - pixel_y = -3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, +"tpT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"tqa" = ( -/obj/structure/platform/kutjevo/smooth{ +/area/varadero/interior_protected/caves) +"tpX" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - climb_delay = 1; - layer = 2.99 + icon_state = "pipe-c" }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "tqh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/research) -"tqr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"tqV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"trh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"trt" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "trB" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/absinthe, @@ -22961,39 +22619,57 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"tso" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"tsz" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) "tsC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tsX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"tuL" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"tsI" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"ttk" = ( /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"tuR" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior/caves/north_research) -"tuT" = ( +"ttr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"ttt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"ttL" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"tua" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/administration) +"tub" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"tue" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) +"tuR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior/caves/north_research) +"tuT" = ( /obj/item/stack/cable_coil/cut, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) @@ -23001,29 +22677,28 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating, /area/varadero/interior/disposals) -"tuZ" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +"tvq" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"tvH" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"tve" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/bayonet/co2{ - pixel_y = 7 +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"tvv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "tvI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/peppermill{ @@ -23033,84 +22708,142 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"twh" = ( -/obj/structure/machinery/washing_machine, +"twz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"twO" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"twm" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"twT" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"txx" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"txC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"txF" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"tyd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/shiva/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"tyI" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"tze" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"tyT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tzh" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"tzl" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"tzo" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"tzu" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"tAs" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"tzp" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"tzw" = ( -/turf/open/floor/wood, -/area/varadero/interior/library) -"tzP" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"tBa" = ( /obj/structure/barricade/handrail/wire{ - layer = 3.1 + dir = 8; + layer = 2.991 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tBm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance/research) +"tBn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"tBG" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"tCe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/court) "tCA" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/caves/east) -"tCG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +"tCU" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"tDl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"tDv" = ( +/obj/structure/prop/turbine_extras/left, +/obj/item/tool/crowbar, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"tCM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"tDh" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 +/area/varadero/interior/comms1) +"tDJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/stamp{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/pen/blue{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"tDS" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"tDo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"tDF" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) -"tDR" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) "tEc" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -23127,9 +22860,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"tEJ" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "tEM" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -23143,19 +22873,31 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tER" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"tGl" = ( -/turf/open/floor/shiva/purple/northeast, -/area/varadero/interior/research) -"tGr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"tFf" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) +"tFG" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"tFN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"tFW" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "tGw" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -23163,25 +22905,80 @@ }, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"tGA" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/red/west, +"tGy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -13; + pixel_y = 16 + }, +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/xenoburger{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"tGG" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"tGL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "tGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/hall_N) -"tHc" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) -"tIT" = ( -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 +"tHn" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Engine Room" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tHE" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"tHJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"tHZ" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/chunk, +/obj/item/trash/raisins, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"tIA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "tIV" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -23201,65 +22998,93 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"tJN" = ( -/obj/structure/closet/crate, -/obj/item/trash/chunk, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"tJT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"tKr" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) -"tKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"tKE" = ( -/obj/structure/window/reinforced{ - dir = 4 +"tJy" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 5; + pixel_y = 12 }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"tKI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/trash/barcardine, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"tJD" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"tKa" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/wood, /area/varadero/interior/records) +"tKy" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"tLn" = ( +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"tLs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "tLu" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) +"tLA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "tLS" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"tMx" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/key/cargo_train, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"tMs" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"tMz" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = 7; + pixel_y = 18 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tMA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"tML" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "tMY" = ( /obj/structure/window/reinforced{ dir = 4; @@ -23288,46 +23113,26 @@ "tMZ" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz2_near) -"tNy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"tOp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_NW) -"tOx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"tOu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "tOV" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tPt" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "tPE" = ( /obj/item/tool/pickaxe, /obj/structure/platform_decoration/kutjevo{ @@ -23335,13 +23140,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPI" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "tPK" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -23350,144 +23148,181 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tPS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 +"tQJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"tQK" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 14 + }, +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"tRo" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, /turf/open/floor/shiva/green/west, /area/varadero/interior/mess) -"tQn" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"tQy" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"tQz" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"tQT" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"tRs" = ( +"tRt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Lobby"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tRD" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/monsoon) +"tRF" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "tRN" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"tSg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"tSK" = ( -/obj/structure/window/framed/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"tSR" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"tTo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"tTq" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"tSd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 9 }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"tTN" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; +/obj/structure/window/reinforced{ dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 + health = 80 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"tSB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"tSK" = ( +/obj/structure/window/framed/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"tSL" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"tSP" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"tSQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) "tTU" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"tUd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"tUw" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"tUx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"tUT" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) +"tVa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/redfull/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners/east, /area/varadero/interior/security) +"tVe" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "tVf" = ( /obj/structure/closet/crate, /obj/item/tool/stamp, /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tVj" = ( +"tVr" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tVu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"tVl" = ( -/obj/structure/machinery/storm_siren{ +/area/varadero/interior/maintenance/security) +"tVE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue{ + pixel_x = 6; pixel_y = 5 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"tVo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"tVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"tVX" = ( -/obj/structure/surface/rack, -/obj/item/maintenance_jack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"tWw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"tWL" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "tWT" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"tXg" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 +"tWU" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/laundry) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "tXu" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/caves/east) @@ -23502,9 +23337,9 @@ "tXE" = ( /turf/open/floor/wood, /area/varadero/interior/administration) -"tXF" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) +"tXO" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "tXT" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -23515,14 +23350,11 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tYg" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"tYT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"tYX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/purple, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "tZl" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -23533,25 +23365,21 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"tZm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"tZr" = ( -/obj/item/toy/deck/uno{ - pixel_y = 6 +"tZp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tZE" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"tZW" = ( +/obj/structure/catwalk, +/obj/structure/largecrate/random, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"uaE" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves/central) "uaU" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -23559,88 +23387,76 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"uaV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"uaY" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarwest"; - unacidable = 1; - name = "Pontoon West Door"; - openspeed = 17; - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate/east, -/area/varadero/interior/cargo) -"ubF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"ubH" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 4 +"uaX" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"ubs" = ( /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/area/varadero/interior/electrical) "ubJ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ubK" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"ubT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, +"ucA" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"ucL" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"ucZ" = ( +/obj/item/tool/mop, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"udf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "udp" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ueg" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/blue, +"uds" = ( +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) +"udG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"udW" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "uet" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/interior/caves/east) -"ueB" = ( -/obj/structure/cable, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"ueP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"ufh" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"ueQ" = ( -/obj/structure/computer3frame, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/area/varadero/interior_protected/maintenance/south) "ufn" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -23659,170 +23475,157 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"ufE" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/surface/table, +"ufW" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"ugp" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, +/area/varadero/interior/medical) +"ugt" = ( +/obj/structure/machinery/light, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"ufV" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/court) -"ugi" = ( -/obj/structure/bed/chair{ - dir = 1 +"ugv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_c" +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"ugF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/court) +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Sample Isolation"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "ugR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"ugW" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"uhi" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" +"uhO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"uhD" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/yellow, /area/varadero/interior/hall_SE) -"uiq" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 +"uhV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/shiva/wred/northwest, +/area/varadero/interior/medical) +"uid" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"uiy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"ujp" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 - }, -/obj/item/paper/crumpled{ - pixel_x = 9 +/area/varadero/interior/morgue) +"uis" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"uiP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"ukw" = ( -/obj/structure/window/reinforced{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) -"ukz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"ukX" = ( -/obj/structure/surface/rack, -/obj/item/prop/magazine/boots, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"ulb" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"uli" = ( -/obj/structure/bed/chair/hunter{ +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"ujb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"ujd" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"ukK" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ulh" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "ulv" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"umA" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"umO" = ( -/obj/structure/bed/chair{ - dir = 1 +"umi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"umT" = ( -/turf/open/floor/carpet, -/area/varadero/interior/hall_SE) -"unh" = ( +/obj/item/storage/firstaid/rad{ + pixel_y = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"umo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"umM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"umT" = ( +/turf/open/floor/carpet, +/area/varadero/interior/hall_SE) +"unz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "unH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"uoh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"uon" = ( -/obj/structure/largecrate/random, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"uog" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"uoC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "uoN" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -23841,10 +23644,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"uoO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "uoU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -23862,13 +23661,22 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"upb" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +"uoY" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"upl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"upm" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"upF" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "upH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -23877,99 +23685,128 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"upO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; +"uqV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 5; +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/court) +"uqW" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt, +/area/varadero/interior/caves/east) +"urd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; pixel_y = 16 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"upY" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +/turf/open/floor/wood, +/area/varadero/interior/court) +"urf" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"urv" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"uqw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/blood/OMinus, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance) -"uqW" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt, -/area/varadero/interior/caves/east) -"urd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 +/area/varadero/interior_protected/maintenance/south) +"urx" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/wood, -/area/varadero/interior/court) -"urA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"urD" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/lz2_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "urE" = ( /obj/structure/bed/chair/comfy/lime{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/research) -"usB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"urI" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) +"urN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/suit/fire/firefighter{ + pixel_x = 3; + pixel_y = 7 }, -/obj/structure/machinery/light/small, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior_protected/maintenance/south) +"urS" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/administration) "usQ" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"usT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "uti" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/comms2) +"utj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"utv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Lobby"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"utL" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"utT" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "utZ" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uuj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) "uul" = ( /obj/structure/machinery/light{ dir = 1 @@ -23988,26 +23825,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uuv" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"uuN" = ( -/turf/open/floor/shiva/purple/northwest, -/area/varadero/interior/research) -"uvd" = ( -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"uvw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uuD" = ( +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "Underground Morgue"; - req_access_txt = "100" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"uvn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"uvr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/dark2, -/area/varadero/interior/morgue) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "uvB" = ( /obj/structure/machinery/shower{ dir = 8 @@ -24016,14 +23852,10 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"uww" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_N) -"uwJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"uwr" = ( +/obj/item/stool, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "uwN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24033,81 +23865,123 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"uwQ" = ( +"uwW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"uxa" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"uxb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"uxd" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) +"uxo" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"uxi" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +/obj/item/reagent_container/glass/paint/black{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/item/tool/wirecutters/clippers, +/obj/item/reagent_container/food/drinks/h_chocolate{ + pixel_x = -6; + pixel_y = 12 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/technical_storage) "uxM" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"uyd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"uxW" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/obj/structure/largecrate/random, +/obj/item/trash/crushed_cup, +/obj/item/trash/c_tube, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"uyK" = ( +"uyl" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"uyw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"uzx" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"uzz" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"uzb" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"uzg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"uzr" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/disposals) -"uzN" = ( +"uzM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, -/obj/structure/machinery/storm_siren{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"uAM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"uBv" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"uBw" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; pixel_y = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"uAt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/area/varadero/interior_protected/maintenance/south) +"uBF" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"uAM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/gm/dirt, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"uBG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) +"uBN" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "uBV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -24115,16 +23989,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"uBX" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"uCc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) "uCe" = ( /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) @@ -24133,44 +23997,34 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uDg" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/item/toy/plush/farwa, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) -"uDw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"uDQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"uEc" = ( -/obj/structure/machinery/light/small{ +"uDu" = ( +/obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uEz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"uDA" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"uDK" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"uEE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"uDS" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"uEt" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "uEF" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -24181,23 +24035,51 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"uEI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"uFq" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/monsoon) -"uFE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree{ +"uES" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"uEU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"uEZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"uFc" = ( +/turf/open/floor/asteroidwarning/southwest, /area/varadero/exterior/lz1_near) -"uFJ" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +"uFh" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) +"uFo" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"uFw" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"uFI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "uFO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -24205,25 +24087,57 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uGf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"uGx" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"uGD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"uGF" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/yellowcorners/east, -/area/varadero/interior/cargo) -"uGi" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"uGs" = ( -/obj/structure/machinery/power/terminal{ +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"uGI" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"uGT" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"uHm" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/medical) +"uHr" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"uHv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "uHD" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -24235,18 +24149,17 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"uIe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) +"uIb" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"uIh" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uIi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "uIl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -24258,16 +24171,26 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"uIH" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uIs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "uIW" = ( /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) +"uJt" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/wood, +/area/varadero/interior/library) +"uJJ" = ( +/obj/structure/catwalk, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "uJO" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 @@ -24278,29 +24201,61 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior/research) +"uKf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"uKl" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"uKo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light, +/obj/item/circuitboard/computer/powermonitor, +/obj/item/stack/cable_coil/cut{ + pixel_y = 12 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "uKr" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"uKY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"uKG" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"uKP" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "colony_sec_armory"; + name = "Secure Armory" }, -/obj/structure/machinery/light{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uKT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"uKW" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "uKZ" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -24309,128 +24264,142 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"uLP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/caphat{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/clothing/head/cmcap, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"uLY" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"uMx" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"uMB" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/technical_storage) -"uMQ" = ( -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"uNh" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 9; - pixel_y = 15 +"uNp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -6; - pixel_y = 15 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"uNr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"uNq" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"uNt" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) "uNz" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"uNJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"uND" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"uOk" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"uPf" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"uPo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"uPJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"uPT" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"uQi" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/cargo) +"uQj" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"uOo" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/roller, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"uOC" = ( -/obj/structure/closet/emcloset, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"uQu" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"uRb" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/exterior/lz1_near) +"uRk" = ( /turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"uOF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; +/area/varadero/interior/court) +"uRF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -9; pixel_y = 13 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"uRU" = ( +/turf/closed/wall/r_wall/elevator, +/area/varadero/interior/hall_N) +"uSn" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = null; + name = "Requesitions Desk" + }, +/obj/structure/machinery/door/window/northright{ + dir = 2; + name = "Requesitions Desk" + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"uOL" = ( -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/hall_NW) -"uQa" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"uQi" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/cargo) -"uQH" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/clipboard, +/obj/structure/noticeboard{ + pixel_x = 32 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/court) -"uQK" = ( -/turf/open/floor/shiva/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) -"uRU" = ( -/turf/closed/wall/r_wall/elevator, -/area/varadero/interior/hall_N) +"uSw" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "uSx" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -24445,32 +24414,22 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uTj" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"uTq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"uSP" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/interior/oob) "uTu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"uTV" = ( -/turf/open/floor/shiva/wred/west, -/area/varadero/interior/medical) +"uTI" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "uTY" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uTZ" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "uUl" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -24481,39 +24440,36 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"uUF" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/defibrillator{ - pixel_y = 5 +"uUs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/red, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) -"uUS" = ( -/obj/structure/disposalpipe/junction{ +"uUZ" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "pipe-j2" + climb_delay = 1; + layer = 2.99 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redcorners, -/area/varadero/interior/security) -"uUW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"uVe" = ( -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) -"uVo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"uVa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"uVh" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "uVu" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -24521,11 +24477,30 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"uVy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"uVx" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"uVK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "uVR" = ( /obj/structure/machinery/light{ dir = 4 @@ -24535,26 +24510,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"uVV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"uVY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"uWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastocean) "uWA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24562,19 +24517,29 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"uWW" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"uXn" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"uXF" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"uXw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"uXM" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "uXR" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -24585,78 +24550,133 @@ "uXS" = ( /turf/closed/wall, /area/varadero/interior/toilets) -"uXX" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) +"uXY" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "uXZ" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/cargo) -"uYF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uYg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"uYU" = ( +/obj/item/card/id/silver{ + pixel_x = 3; + pixel_y = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"uYJ" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"uZa" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"uZf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"uZK" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/varadero/interior/maintenance) +"uZl" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, +/obj/structure/closet/firecloset, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"uZY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null +"uZm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"uZu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"vap" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) +"uZx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"uZA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_NW) +"uZL" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"uZV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"vaV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"uZW" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/paper/janitor{ - pixel_x = 5; - pixel_y = 3 +/obj/item/tool/surgery/retractor/predatorretractor, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"vas" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -7; + pixel_y = -11; + desc = "A chest... filled with the wildest riches!" }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) -"vbr" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"vaw" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"vaM" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_y = 24 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "vbH" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -24681,21 +24701,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vcd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"vcj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) "vco" = ( /obj/structure/machinery/light{ dir = 8 @@ -24706,18 +24711,25 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"vcD" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "vcR" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush{ pixel_x = -4 }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"vdq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"vda" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "vdQ" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, @@ -24736,6 +24748,32 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/security) +"veA" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/defibrillator{ + pixel_y = 5 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"veQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"veT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "veV" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) @@ -24744,13 +24782,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vfg" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) "vfj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -24783,26 +24814,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vfG" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) -"vfH" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/structure/machinery/light, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"vgu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) "vgA" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -24814,34 +24825,24 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"vhb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"vgP" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" + dir = 1 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "vhw" = ( /obj/structure/sign/safety/water{ pixel_x = 15 }, /turf/closed/wall, /area/varadero/interior/library) -"vhB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"vhI" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/central) +"vhG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "vhJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard{ @@ -24863,6 +24864,20 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"vhV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"vhX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "vio" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -24873,52 +24888,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"viK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"viP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +"viT" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/morgue) +"vjc" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"viY" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"vjA" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"vjt" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "vjO" = ( /obj/structure/platform/kutjevo/smooth{ @@ -24932,89 +24917,168 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vjZ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "vke" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Visitor Entrance" }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vku" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stool, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"vkm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"vks" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"vkz" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"vkI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"vkX" = ( +/obj/item/storage/firstaid/o2{ + layer = 3.1; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + layer = 3.2; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"vlb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "vll" = ( /obj/item/reagent_container/glass/bucket{ pixel_y = -3 }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"vlm" = ( -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"vlv" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "vlB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vlL" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"vlG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"vmc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vlZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"vms" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"vmu" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "vmw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"vmY" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "medium" +"vmP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/stack/sheet/metal, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"vnb" = ( -/obj/structure/bed/chair/hunter, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"vnl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "vnm" = ( /turf/closed/wall, /area/varadero/interior/chapel) -"vnH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"vnN" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ - dir = 8 +"vnC" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) -"vnU" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "vom" = ( /obj/item/storage/beer_pack, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"voG" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "voJ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -25030,6 +25094,20 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"vpo" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"vpA" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "vpQ" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -25037,67 +25115,56 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pool) -"vpV" = ( -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"vqd" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"vqt" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"vqw" = ( -/obj/structure/bed/chair/office/dark{ +"vpR" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 1 }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"vqf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"vqB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"vqF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/security) +"vqJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"vqG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "vqK" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vqR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +"vqS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "vqY" = ( /turf/open/floor/carpet, /area/varadero/interior/security) -"vqZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"vrq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/obj/item/tool/stamp{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) -"vrh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"vrj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 7 +/obj/item/storage/box/masks{ + pixel_x = 6; + pixel_y = 3 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "vru" = ( /obj/item/a_gift, /turf/open/floor/wood, @@ -25106,47 +25173,46 @@ /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vrO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8 +"vrZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 10 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"vsa" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"vss" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"vsJ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/administration) +"vsj" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"vsP" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"vsN" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"vsQ" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "pipe-j2" + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"vtP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"vtv" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"vtX" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "vus" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -25159,12 +25225,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"vuA" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) "vuQ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -25173,82 +25233,65 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"vvh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"vvX" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vwm" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"vxh" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"vxi" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"vxy" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vvS" = ( +/area/varadero/interior/technical_storage) +"vxJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redcorners/east, -/area/varadero/interior/security) -"vwT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vxi" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"vxM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "vyp" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vyy" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - layer = 2.15; - density = 0; - climb_delay = 0 +"vyN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"vyI" = ( -/obj/structure/catwalk, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"vyX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"vzm" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) "vzq" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vzt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) "vzB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -25270,89 +25313,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"vzN" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"vzY" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"vAg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"vAz" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"vAI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"vAR" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"vAZ" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"vBk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/glass/bucket, +"vBb" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vBC" = ( -/obj/structure/platform/kutjevo/rock{ +/area/varadero/interior/maintenance/security) +"vBd" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/cargo) -"vBF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vBW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "vBZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -25363,17 +25333,46 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vCf" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/administration) -"vCE" = ( -/obj/structure/disposalpipe/segment, -/obj/item/trash/chunk{ - pixel_x = 3; - pixel_y = 6 +"vCe" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"vCs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) +/area/varadero/interior/security) +"vCt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -16; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"vCG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"vCM" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastocean) "vDe" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -25393,41 +25392,16 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"vDl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"vDm" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"vDr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 4 - }, +"vDo" = ( +/obj/item/device/camera, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance/north) "vDw" = ( /obj/item/fishing_pole{ anchored = 1 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"vDC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"vDI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) "vDP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -25443,14 +25417,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vEa" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) "vEe" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25470,43 +25436,26 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"vEg" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"vEi" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/shard{ - icon_state = "medium" +"vEh" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"vEJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"vEM" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"vEU" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/area/varadero/exterior/lz1_near) +"vEr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/area/varadero/exterior/eastbeach) +"vEY" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "vFf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigar{ @@ -25519,20 +25468,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"vFh" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "vFl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"vFs" = ( +"vFC" = ( /obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"vFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/north, -/area/varadero/interior/hall_N) +/obj/item/storage/pouch/shotgun, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) "vGn" = ( /obj/effect/overlay/palmtree_r{ pixel_x = -11; @@ -25541,6 +25495,14 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"vGr" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "vGQ" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -25551,63 +25513,95 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"vGU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) +"vHf" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "vHs" = ( /turf/closed/wall/r_wall, /area/varadero/interior/records) -"vJg" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz1_near) -"vJk" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"vHY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"vIf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"vJF" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 9; + pixel_y = 15 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -6; + pixel_y = 15 }, -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/white, +/area/varadero/interior/laundry) +"vJK" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"vJM" = ( +/obj/effect/landmark/crap_item, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"vJp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"vKu" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "vKv" = ( /obj/structure/window/framed/colony/reinforced/hull{ indestructible = 1 }, /turf/open/floor/plating/icefloor, /area/varadero/interior/maintenance/north) -"vLc" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 +"vKL" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/stamp{ + pixel_x = -5; + pixel_y = 11 }, -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"vLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "vLh" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vLk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) "vLo" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -25617,50 +25611,6 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vLt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"vLw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) -"vLU" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"vLV" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"vMe" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"vMo" = ( -/obj/item/tool/shovel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"vMq" = ( -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"vMU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "vNu" = ( /turf/open/floor/carpet, /area/varadero/interior/bunks) @@ -25684,54 +25634,33 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"vNT" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"vNY" = ( -/obj/structure/machinery/light{ - dir = 1 +"vNJ" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"vOa" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "vOo" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"vOr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"vPe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"vPh" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ +"vOS" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - climb_delay = 1; - layer = 2.99 + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"vOV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "vPi" = ( /obj/structure/closet/secure_closet/personal, /obj/item/attachable/magnetic_harness, @@ -25741,11 +25670,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vPj" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, +"vPl" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"vPR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Main Hallway" + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/area/varadero/interior/hall_SE) +"vPU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) "vPY" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/candelabra{ @@ -25755,12 +25698,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/chapel) +"vQd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "vQe" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) +"vQv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "vQz" = ( /obj/structure/machinery/light{ dir = 8 @@ -25775,11 +25728,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"vQL" = ( +"vRk" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/frame/light_fixture, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +/obj/item/device/camera{ + pixel_y = 5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "vRI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -25788,6 +25743,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"vRT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "vRW" = ( /obj/item/tool/warning_cone{ pixel_x = -9; @@ -25803,51 +25762,27 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"vSu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) "vSN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"vUx" = ( -/obj/structure/girder/displaced, -/obj/structure/prop/invuln/overhead_pipe, +"vTh" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"vTr" = ( +/obj/structure/prop/ice_colony/flamingo, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"vUE" = ( -/obj/structure/disposalpipe/segment{ +/area/varadero/interior_protected/caves) +"vUp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"vUM" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"vUQ" = ( -/obj/structure/bed/chair{ - dir = 8 + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "vUT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -25855,26 +25790,19 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"vUZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"vVy" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 +"vUU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"vVa" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "vVH" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms2) @@ -25882,6 +25810,27 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) +"vWf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"vWg" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"vWi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "vWn" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -25890,40 +25839,22 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) -"vWG" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"vXG" = ( -/obj/structure/closet/crate/construction, -/obj/item/grown/log, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/monsoon) -"vXW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Showers"; - req_access_txt = "100" +"vWE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"vYp" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"vXj" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper External Airlock" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance/north) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "vYy" = ( /obj/item/tool/shovel, /obj/structure/prop/invuln/lattice_prop{ @@ -25933,19 +25864,28 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vYF" = ( +"vYL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/obj/item/tool/pen/sleepypen{ - pixel_x = -4; - pixel_y = 4 +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/obj/item/tool/lighter/zippo/fluff{ - pixel_x = 7; - pixel_y = 2 +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"vYN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "vYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -25975,10 +25915,6 @@ "vYW" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"vZl" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) "vZm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25995,13 +25931,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"vZv" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 +"vZu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"vZM" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/rack, +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "vZN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -26021,41 +25967,33 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vZR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"vZS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"wae" = ( -/obj/structure/closet/secure_closet/miner, +"waa" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/area/varadero/interior/cargo) "waB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"waP" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/varadero/exterior/lz1_near) +"waK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "wba" = ( /obj/structure/largecrate/random, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"wbB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +"wbr" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "wcb" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown{ @@ -26066,34 +26004,6 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wcl" = ( -/obj/item/tool/mop{ - pixel_x = -16; - pixel_y = 26 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"wcq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"wcG" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) "wdb" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 4; @@ -26113,50 +26023,63 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"wdg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 +"wdf" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"wdh" = ( -/obj/structure/machinery/computer/operating{ - density = 0 +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"wdq" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"wdx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"wdy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"wdG" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "wdI" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"weG" = ( -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) +"wdT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"wes" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "weJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -26164,22 +26087,6 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"wff" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wfh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"wfr" = ( -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) "wft" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -26198,13 +26105,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"wfy" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "wfK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -26233,35 +26133,57 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"wfT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"wgr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"wgv" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"wgt" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wgU" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/area/varadero/interior/maintenance/security) +"wgN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/plasticflaps/mining, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) +"wgP" = ( +/obj/item/paper, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/area/varadero/interior/maintenance/north) +"whz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"whX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "wic" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -26272,64 +26194,45 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wir" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"wiL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/paper/research_notes, -/obj/item/storage/belt/shotgun, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"wjf" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"wjh" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +"wiw" = ( +/obj/structure/cryofeed, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wiN" = ( +/obj/structure/target/syndicate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"wiS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"wiT" = ( +/obj/item/stool{ + pixel_x = -7; + pixel_y = -4 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"wjF" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"wjL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) -"wjB" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) +/obj/item/trash/plate, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "wjV" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"wkp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) +"wjZ" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) "wkq" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ @@ -26337,31 +26240,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wkt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"wku" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "colony_sec_armory"; - name = "Secure Armory" +"wky" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wkz" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/pontoon_beach) +"wkH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) -"wkC" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) "wkM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -26390,6 +26283,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"wlg" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "wlB" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) @@ -26397,38 +26294,19 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"wlQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"wmg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "wmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"wmC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"wmL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"wmW" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = "brg" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "wmX" = ( /obj/structure/filingcabinet{ density = 0; @@ -26453,90 +26331,61 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"wng" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"wnp" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/mess) +"wnA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wno" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) -"wnK" = ( -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"woj" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"won" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/area/varadero/interior/maintenance) +"wof" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/med_large_stack, +/obj/item/trash/boonie, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"wog" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/cargo) "wop" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"wot" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"wox" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"woI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"woB" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"woT" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 11 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "wph" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"wpi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"wpm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/stool{ - icon_state = "stool_alt" +"wpC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"wpr" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) "wpG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"wpM" = ( -/obj/structure/bedsheetbin{ - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) "wpX" = ( /obj/effect/decal/strata_decals/grime/grime2, /turf/open/floor/carpet, @@ -26544,12 +26393,25 @@ "wqb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/security) -"wqc" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"wqj" = ( +/obj/structure/girder, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"wqL" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/area/varadero/interior/maintenance/north) +"wqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "wrg" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -26559,11 +26421,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wrv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "wrC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -26574,10 +26431,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wsa" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/technical_storage) +"wrJ" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "wsn" = ( /obj/item/storage/toolbox/mechanical, /turf/open/gm/dirt, @@ -26599,100 +26459,162 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"wsZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"wts" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"wtG" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"wty" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"wtB" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wtW" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 3; + pixel_y = 2 }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 12 +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -2; + pixel_y = -4 }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"wuu" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wuL" = ( +/obj/structure/surface/table, +/obj/item/trash/chips{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"wvC" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"wwN" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"wxw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) -"wtU" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" +"wxH" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"wyd" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wuA" = ( +/area/varadero/interior/hall_SE) +"wyn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"wyu" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance/north) +"wyw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"wyy" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"wyL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"wzq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/tool/wirecutters/clippers, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"wuR" = ( +"wzG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) -"wwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"wzM" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"wzN" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper Underground Command Center"; + req_access_txt = "100" }, -/turf/open/floor/shiva/blue/northwest, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) -"wwk" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/medical) -"wwq" = ( -/obj/structure/catwalk, -/obj/structure/machinery/light{ +"wzS" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"wAu" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"wAZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"wBh" = ( +/obj/item/tool/crowbar/red{ + pixel_x = 9; + pixel_y = 8 }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"wws" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wxf" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"wxu" = ( -/obj/structure/bed/chair, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"wyE" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"wAE" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"wBp" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"wBi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "wBD" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin/uscm{ @@ -26701,83 +26623,127 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"wBN" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/varadero/interior/cargo) -"wBY" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"wCp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"wCq" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"wCc" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"wCx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = -8; - pixel_y = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"wCC" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) "wCE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"wCR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +"wCH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/maintenance/security) +"wDg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"wDk" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol{ + pixel_x = 4 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "wDv" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"wDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"wDx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"wDH" = ( -/obj/structure/barricade/handrail/wire{ +/obj/structure/largecrate/random/mini/med{ + pixel_x = -10; + pixel_y = 15 + }, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"wDz" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"wDD" = ( +/obj/structure/window/framed/colony, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/open/floor/dark2, +/area/varadero/interior/hall_N) +"wDE" = ( +/obj/structure/shuttle/engine/heater{ dir = 8; - layer = 3.5 + unacidable = 0 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"wDN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"wEL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"wEU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/device/flashlight/slime, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wEi" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"wFx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"wEB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wFJ" = ( -/obj/structure/prop/dam/crane, +/area/varadero/interior/comms2) +"wEH" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"wEP" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) +/area/varadero/interior/hall_SE) +"wFC" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "wFP" = ( /obj/structure/machinery/door_control/brbutton{ id = "undergroundhangarwest"; @@ -26788,24 +26754,9 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/cargo) -"wFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"wGl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"wGs" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +"wGf" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "wGQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26813,131 +26764,153 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wGV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +"wHj" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "wHk" = ( /turf/closed/wall, /area/varadero/interior/maintenance/north) +"wHr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/tool/lighter/zippo{ + icon_off = "blackzippo"; + icon_on = "blackzippoon"; + icon_state = "blackzippo"; + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/ashtray/plastic{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "wHt" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wHu" = ( -/obj/structure/prop/static_tank/fuel{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"wIg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) -"wIm" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"wIr" = ( -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"wIH" = ( +"wHM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"wIn" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"wJl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"wJu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" +/obj/item/storage/box/cdeathalarm_kit{ + pixel_x = -8; + pixel_y = 1 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"wIv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"wIy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"wIM" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"wJh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "wKi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/disposals) +"wKm" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"wKt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) "wKW" = ( /obj/item/stack/sandbags/large_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wLq" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"wLB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"wLF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 +"wLN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/multi_tiles/north, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"wLR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray/tricordrazine{ - pixel_x = -14; - pixel_y = 2 +"wLQ" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"wLT" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"wMd" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wMi" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "wMj" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"wMn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wMw" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"wMx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/nanopaste, -/turf/open/floor/shiva/redfull, +"wMD" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarwest"; + unacidable = 1; + name = "Pontoon West Door"; + openspeed = 17; + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/interior/cargo) +"wME" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"wNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) +"wNi" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "wNz" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -26945,32 +26918,30 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wNI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"wNV" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +"wNG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"wNL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"wOC" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wOL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"wNU" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) +"wOd" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"wOG" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "wOO" = ( /turf/closed/wall/r_wall, /area/varadero/interior/electrical) @@ -26978,18 +26949,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"wPl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "wPv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -27005,104 +26964,87 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wPE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +"wPC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/maintenance/research) +"wPD" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "wPH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"wQd" = ( -/obj/structure/disposalpipe/segment{ +"wQO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"wQi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Colony Offices"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"wRi" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - layer = 3.1; - pixel_y = 7 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"wRu" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"wRn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) -"wRB" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Storage"; + req_access = null; + req_one_access = null }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"wRJ" = ( /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) -"wRR" = ( +"wRY" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"wSx" = ( +/turf/closed/wall, +/area/varadero/interior/laundry) +"wTi" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"wSx" = ( -/turf/closed/wall, -/area/varadero/interior/laundry) -"wSL" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"wSX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"wTE" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/obj/item/stack/cable_coil/pink{ - pixel_x = -7; +/area/varadero/interior_protected/caves) +"wTw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp78, +/obj/item/weapon/gun/pistol/vp78{ pixel_y = -4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"wTB" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "wTJ" = ( /turf/open/floor/plating, /area/varadero/interior/disposals) -"wTM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"wUj" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) "wUF" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, @@ -27113,33 +27055,43 @@ icon_state = "pwall" }, /area/varadero/interior/oob) -"wVa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) "wVf" = ( /turf/closed/wall/r_wall, /area/varadero/interior/security) -"wVD" = ( +"wVk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) -"wVE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"wVt" = ( +/obj/item/moneybag{ + anchored = 1; + desc = "A console designed by the Hunters to assist in flight pathing and navigation."; + dir = 8; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "overwatch"; + name = "Hunter Flight Console"; + pixel_x = -17 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) +/obj/structure/bed/chair/hunter{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wVF" = ( +/obj/structure/surface/rack, +/obj/item/pizzabox/meat, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "wVI" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"wVT" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) "wWd" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator, @@ -27173,26 +27125,25 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz1_near) +"wXl" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "wXs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"wXu" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wXC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wXD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"wXI" = ( +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"wXY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/white, +/area/varadero/interior/toilets) "wYa" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -27216,44 +27167,79 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wYF" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"wYr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"wYw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) +"wYx" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"wYK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"wZE" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "wZF" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"xaK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"wZZ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "Revolting beyond description."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_teeth"; + name = "human-ish teeth"; + pixel_x = 1; + pixel_y = -2 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"xbc" = ( -/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +/area/varadero/exterior/comms4) +"xab" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"xaD" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"xaI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "xbm" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"xbA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"xbD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) "xce" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27270,29 +27256,40 @@ "xcf" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/records) -"xcz" = ( -/obj/item/stack/sheet/metal, +"xck" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"xcy" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"xcE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xdz" = ( +/area/varadero/exterior/comms4) +"xdl" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"xdM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"xdT" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"xdJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "xeO" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -27305,16 +27302,9 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) -"xeV" = ( -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"xff" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +"xfg" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "xfo" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) @@ -27328,42 +27318,36 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"xfI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "xfQ" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) -"xgG" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/administration) -"xgW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/tool/stamp/clown{ - pixel_x = 8; - pixel_y = 5 +"xgz" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 }, -/obj/item/tool/stamp/rd{ - pixel_x = 7; - pixel_y = -2 +/obj/structure/flora/bush/desert{ + pixel_y = 14 }, -/turf/open/floor/shiva/bluefull/west, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_NW) +"xgG" = ( +/turf/closed/wall/r_wall, /area/varadero/interior/administration) +"xgJ" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "xgY" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"xhs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) "xhx" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -27374,65 +27358,102 @@ }, /turf/open/floor/plating, /area/varadero/interior/research) -"xiV" = ( +"xhB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate/ammo/alt, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"xjp" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"xka" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Treatment"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"xkb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random{ - pixel_y = 5 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"xiE" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/item/clothing/glasses/science{ - pixel_y = 9 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xjv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"xjQ" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Navigation Chamber" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "xke" = ( /obj/effect/overlay/palmtree_r, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"xkj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; +"xkl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/crew{ + pixel_x = -5; pixel_y = 8 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"xlb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/storage/box/trackimp{ + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) -"xlv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) -"xml" = ( +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"xkn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/weapon/gun/flamer, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xkt" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"xmc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"xmh" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) "xmL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -27441,41 +27462,66 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xne" = ( -/obj/structure/prop/invuln/overhead_pipe{ +"xnR" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"xnS" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/exterior/eastbeach) +"xom" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xot" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 12; - pixel_y = 13 + health = 80 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"xnr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"xox" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/varadero/interior/library) +"xoG" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 12 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"xnS" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/exterior/eastbeach) -"xnV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/morgue) +/area/varadero/interior/hall_NW) +"xoN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"xoZ" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "xpe" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +"xpm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "xpL" = ( /obj/structure/machinery/camera/autoname/lz_camera, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -27487,90 +27533,69 @@ "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) -"xqG" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/white, -/area/varadero/interior/security) -"xqN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" +"xqx" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"xqW" = ( +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) -"xqP" = ( +"xrc" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"xrh" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"xrt" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"xrO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/shiva/yellow, +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/cargo) -"xqS" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, +"xrY" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"xqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"xrl" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"xsw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"xsF" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"xtD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"xrA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xsi" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"xsH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "xtZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -27581,16 +27606,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"xur" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"xus" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"xuw" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/area/varadero/interior/administration) "xuJ" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; @@ -27598,94 +27639,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xuN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) -"xuT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xuW" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"xuX" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"xvj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "xvF" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/security) -"xwk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/obj/item/tool/stamp, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"xwG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"xwY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"xxk" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"xxo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = 2; - pixel_y = 17 +"xvK" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"xxe" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"xxs" = ( -/obj/structure/closet/crate, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xxE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/area/varadero/interior/maintenance/north) +"xxk" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "xxI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -27694,98 +27664,96 @@ /obj/structure/sign/safety/debark_lounge, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"xxZ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) -"xya" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/green{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/under/shorts/blue{ - pixel_x = -2; - pixel_y = -2 +"xyq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/red{ - pixel_x = 2; - pixel_y = 2 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"xyr" = ( -/obj/structure/sink{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xyD" = ( +/obj/structure/machinery/alarm{ dir = 8; - pixel_x = -11; - pixel_y = 3 + pixel_x = 24 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xyJ" = ( -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/records) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "xyO" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"xyU" = ( -/obj/structure/closet/crate/secure, -/obj/item/key/cargo_train, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "xza" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"xzc" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/pontoon_beach) +"xze" = ( +/obj/item/cell/high, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "xzj" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/library) -"xzr" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) +"xzF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "xAg" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms2) -"xAs" = ( -/obj/structure/largecrate/random/mini/chest/b, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "xAx" = ( /turf/open/gm/coast/east, /area/varadero/interior/caves/east) -"xAK" = ( -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"xAO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"xBv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Underground Lavatory"; - req_access_txt = "100" +"xAA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"xAM" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xBm" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"xBt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/wrapped/chunk{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "xBw" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -27793,27 +27761,22 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"xBH" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"xCi" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"xBS" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xBX" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "xCn" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) +"xCo" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "xCq" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -27822,14 +27785,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"xCM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"xCU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) +"xCW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "xCZ" = ( /obj/structure/prop/tower, /turf/open/gm/dirt, @@ -27845,65 +27806,79 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"xDy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Sports Center"; - req_access_txt = "100"; - req_one_access = null - }, +"xDz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, /turf/open/floor/shiva/floor3, -/area/varadero/interior/court) +/area/varadero/interior/mess) +"xDD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "xDE" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"xEc" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"xEl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"xEE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"xFb" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) -"xFw" = ( -/obj/structure/bed/chair{ - buckling_y = 18; +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"xFu" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_y = 18 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"xFC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "xFE" = ( /turf/open/floor/wood, /area/varadero/interior/records) -"xFO" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) "xFS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"xFZ" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 +"xGj" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"xGt" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 3; + pixel_y = 15; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "xGJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -27912,6 +27887,23 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"xHj" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xHl" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"xHs" = ( +/obj/item/toy/deck/uno{ + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "xHt" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -27923,51 +27915,49 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xHz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"xIA" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"xJb" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 +"xHA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xHT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"xIr" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"xIs" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xJt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xJx" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ +/area/varadero/interior/maintenance/north) +"xIt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"xIw" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"xJr" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_c" + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/court) "xJH" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) -"xJZ" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xKo" = ( -/obj/structure/surface/table, -/obj/item/storage/wallet/random{ - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "xKq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -27997,52 +27987,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xKC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"xKL" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 +"xKI" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"xKS" = ( -/obj/structure/lz_sign/new_varadero, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xLB" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xLg" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xLy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "xLE" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -28050,24 +28020,35 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/wood, /area/varadero/interior/security) -"xLN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"xMq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xMs" = ( -/obj/item/paper, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"xNb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"xLS" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"xLU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/area/varadero/interior/hall_N) +"xMl" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"xNc" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"xNm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "xNA" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -28075,69 +28056,64 @@ "xNR" = ( /turf/closed/wall, /area/varadero/interior/bunks) -"xNY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +"xNS" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"xOR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"xOo" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xOx" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/popcorn, -/obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"xOz" = ( -/obj/structure/machinery/light{ - dir = 8 +"xPc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/sink{ - pixel_y = 15 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/mirror{ - pixel_y = 28 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"xPC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"xOI" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"xOX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"xPO" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"xPj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"xPx" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "\improper Theta-V Research Laboratory Director's Office"; - req_access = null; - req_one_access = null +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"xPV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"xQe" = ( -/obj/structure/window/reinforced{ +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"xQg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"xQH" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "xQJ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, @@ -28146,29 +28122,44 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xRt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"xQO" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"xRb" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"xRs" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"xRF" = ( +/turf/closed/wall, +/area/varadero/interior/hall_N) +"xSf" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 + }, +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"xRx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/wood, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) -"xRF" = ( -/turf/closed/wall, -/area/varadero/interior/hall_N) "xSl" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"xSP" = ( +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "xSZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -28183,54 +28174,88 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xTd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"xTc" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"xTq" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/cargo) -"xTA" = ( -/obj/structure/prop/rock/brown, +"xTL" = ( /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"xTH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/exterior/pontoon_beach) +"xTO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xUo" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"xUw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/sword/katana, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xUD" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"xUG" = ( +/obj/item/storage/donut_box{ + pixel_y = 8 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"xUq" = ( -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"xVe" = ( -/obj/item/prop/helmetgarb/bullet_pipe{ - pixel_x = -8; - pixel_y = 15 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"xUO" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/jackhammer, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"xVg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/reagent_container/glass/fertilizer/l4z{ - pixel_x = 10; - pixel_y = 10 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"xVi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"xVw" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"xVA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/area/varadero/interior/maintenance) +"xVB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"xVC" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/sosjerky, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "xVQ" = ( /obj/structure/sign/safety/reception, /obj/structure/sign/safety/one{ @@ -28238,42 +28263,22 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance/north) -"xVX" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"xWj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/north, +"xWu" = ( +/obj/structure/target/syndicate, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"xWL" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "xWU" = ( /obj/item/trash/candle, /turf/open/floor/wood, /area/varadero/interior/chapel) -"xWY" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"xXe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/paint/black{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/tool/wirecutters/clippers, -/obj/item/reagent_container/food/drinks/h_chocolate{ - pixel_x = -6; - pixel_y = 12 +"xXl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) "xXp" = ( /obj/structure/closet/crate/ammo/alt, /obj/item/ammo_magazine/rifle/m4ra{ @@ -28293,42 +28298,66 @@ }, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"xXr" = ( -/obj/structure/inflatable, -/turf/open/shuttle/red, +"xXz" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"xXC" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xXQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"xXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"xXY" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_N) +"xYs" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"xYy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Theta-V Research Laboratory"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"xYA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "xYB" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"xYC" = ( -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"xYM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +"xYE" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "xZa" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"xZv" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"xZj" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) "xZD" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -28339,70 +28368,54 @@ }, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"xZN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"xZO" = ( -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"yab" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"yaf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"yaC" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Navigation Chamber" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"yba" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"xZI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick/red{ + pixel_x = 4; + pixel_y = 7 }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 16 +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"ybj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xZU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"yai" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"yaD" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"yaI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance/security) "ybm" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/varadero/interior/library) -"ybt" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +"ybC" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -10; + pixel_y = 19 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "ybL" = ( /obj/structure/filingcabinet{ density = 0; @@ -28418,16 +28431,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"ybY" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/stamp{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) "ycz" = ( /obj/structure/machinery/shower{ dir = 8 @@ -28435,11 +28438,17 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"ycE" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +"ycM" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"ycS" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "ycY" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -28447,6 +28456,31 @@ /obj/item/a_gift, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"ydf" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"ydp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "ydx" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -28458,48 +28492,28 @@ "ydI" = ( /turf/open/floor/carpet, /area/varadero/interior/records) -"ydP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ydQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"yew" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"ydZ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 2; + pixel_y = 15; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/weapon/gun/rifle/sniper/svd, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"yeF" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"yeG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/camera, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"yeH" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "yeJ" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -28514,24 +28528,23 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"yeY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"yfh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"yfJ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"yfQ" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "yfT" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -28557,35 +28570,36 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"ygn" = ( -/obj/structure/catwalk{ - indestructible = 1 +"yhb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/turf/open/gm/river/desert/deep/no_slowdown, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"yhe" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"yho" = ( +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/maintenance/north) -"ygT" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"ygY" = ( -/obj/item/card/id/silver{ - pixel_x = 3; - pixel_y = 4 +"yhq" = ( +/obj/structure/catwalk, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ygZ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"yhx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "yhy" = ( /obj/structure/filingcabinet{ density = 0; @@ -28611,6 +28625,13 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) +"yhY" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "yhZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -28626,47 +28647,17 @@ "yil" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"yiA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"yji" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/storage/firstaid/rad{ - pixel_y = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"yjp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) +"yiT" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) "yjH" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"yjK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) +"yjJ" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "ykc" = ( /turf/closed/wall, /area/varadero/interior/cargo) @@ -28677,18 +28668,20 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"ykx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 +"ykz" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"ykA" = ( -/obj/structure/closet/crate/construction, -/obj/item/storage/belt/utility/full, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastbeach) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"ykK" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) "ykM" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -28707,6 +28700,13 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"ylM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ylX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -28944,30 +28944,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -29126,30 +29126,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -29308,30 +29308,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -29490,30 +29490,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -29560,7 +29560,7 @@ xCn xCn xCn srg -ljt +iyD dxK pGs pGs @@ -29672,30 +29672,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -29719,7 +29719,7 @@ pGs pGs pGs uHY -ljt +iyD xCn xCn xCn @@ -29742,12 +29742,12 @@ xCn xCn xCn xCn -oPQ +dWk xCn cBI xCn xCn -ljt +iyD pGs pGs pGs @@ -29854,30 +29854,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn +oeX +oeX pGs pGs pGs @@ -29896,25 +29896,25 @@ pGs pGs srg srg -ljt +iyD pGs pGs uHY xCn -oPQ +dWk xCn xCn xCn xCn xCn -qRi -oPQ +tjN +dWk xCn xCn xCn xCn xCn -oPQ +dWk xCn xCn srg @@ -29924,12 +29924,12 @@ xCn oVt xCn xCn -oPQ +dWk xCn cBI xCn -oPQ -oPQ +dWk +dWk xCn pGs pGs @@ -30036,31 +30036,31 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn pGs pGs pGs @@ -30078,25 +30078,25 @@ srg xCn xCn xCn -oPQ +dWk uHY xCn qYg xCn -oPQ +dWk srg xCn srg xCn -oPQ -oPQ -oPQ +dWk +dWk +dWk xCn xCn srg srg xCn -oPQ +dWk xCn xCn xCn @@ -30111,7 +30111,7 @@ xCn cBI xCn xCn -oPQ +dWk xCn xCn fHk @@ -30218,32 +30218,32 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn pGs pGs pGs @@ -30260,7 +30260,7 @@ xCn xCn fHk xCn -oPQ +dWk xCn xCn xCn @@ -30271,14 +30271,14 @@ xCn xCn xCn xCn -oPQ -oPQ +dWk +dWk xCn xCn oVt xCn sfF -ljt +iyD uHY qul qul @@ -30400,33 +30400,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -30436,28 +30436,28 @@ xCn xCn xCn xCn -oPQ -oPQ -oPQ +dWk +dWk +dWk xCn xCn oVt xCn xCn -oPQ +dWk xCn xCn xCn kXQ wpG -vYp +ozH kXQ kXQ yks yks kXQ kXQ -vYp +ozH kXQ yks yks @@ -30582,33 +30582,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -mPk -mPk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn +oeX +oeX +oeX +oeX pGs pGs pGs @@ -30616,44 +30616,44 @@ pGs xCn xCn xCn -xbc +jSh xCn -oPQ -oPQ -oPQ +dWk +dWk +dWk xCn xCn xCn -oPQ +dWk xCn xCn srg xCn xCn -efw +szI kXQ -efw +szI kXQ kXQ -fND +uHv xCq kXQ -efw -jGA -efw -efw -awu +szI +pxF +szI +szI +aNo fay -uuN -sqG -hBX +nhj +sXm +meI fay -eqe -xyr -fWA -mEA -sBk -ksn +bhe +nSy +ndj +gLE +vWf +hdo pGc srg xCn @@ -30764,78 +30764,78 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX sNx -mPk -imk -mPk -imk +oeX +ejn +oeX +ejn pGs pGs pGs pGs xCn xCn -oPQ +dWk xCn -oPQ +dWk xCn xCn xCn xCn xCn xCn -oPQ +dWk xCn uHY xCn xCn -mQF -efw +xrc +szI kXQ -efw -efw -efw +szI +szI +szI kXQ -pJA +wFC kXQ -efw -efw -efw -mzI -efw +szI +szI +szI +wPC +szI fay -wIr -mym -sDM +hhi +fKk +hmd fay -cJa -hDA -pjs -aJc -hDA -xrA +ybC +hyY +bKy +tGy +hyY +bVm pGc srg xCn @@ -30946,33 +30946,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX sNx -mPk -mPk -rYR +oeX +oeX +pSm pGs pGs pGs @@ -30988,15 +30988,15 @@ qul uHY srg srg -ljt +iyD qul qul qul uHY hhM -qDh -qlj -qlj +fam +lmr +lmr fay tqh fay @@ -31004,20 +31004,20 @@ fay tqh fay fay -efw -qMY -efw -dkr -tKE -hfX -xQe -dkr -qMD -hDA -iAp -gwC -hDA -tMx +szI +wzq +szI +eMw +gRT +jXE +hsv +eMw +eIN +hyY +jfG +stX +hyY +mij tqh dxK xCn @@ -31128,43 +31128,43 @@ pGs pGs pGs pGs -cJL -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -vlm -imk -mPk -imk -xTA +qrp +oeX +oeX +oeX +qrp +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp +tLn +ejn +oeX +ejn +vxh pGs pGs pGs qul -ljt -oPQ -oPQ -oPQ -ljt +iyD +dWk +dWk +dWk +iyD qul qul qul @@ -31176,9 +31176,9 @@ qul qul qul hhM -efw -efw -kYN +szI +szI +dYi fay cka fla @@ -31186,20 +31186,20 @@ vFf eGP nPE fay -bag -qMY -efw +kor +wzq +szI fay -tGl -loW -fUY +qBj +aVl +mHq fay -qtQ -fef -hDA -gwC -odD -rjE +atg +seg +hyY +stX +nkP +crz fay qul qul @@ -31310,43 +31310,43 @@ pGs pGs pGs pGs -wBp -wBp -rYC -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -wBp -oNa -mYA -cLV -eCB +bra +bra +kis +rpD +bra +bra +bra +kis +rpD +bra +bra +bra +bra +rpD +kis +bra +bra +bra +rpD +bra +kis +bra +bra +bra +cJr +toI +ihv +xGt klT klT klT klT -vYp +ozH kXQ kXQ yks -vYp +ozH yks yks yks @@ -31358,9 +31358,9 @@ yks yks yks yks -efw -efw -efw +szI +szI +szI fay mzJ rbU @@ -31369,17 +31369,17 @@ sdU rbU fay fay -fdA -dkr +whX +eMw fay fay -fKz +ugF fay fay fay -lBw -ltW -tkw +gBn +meb +kja ftA fay fay @@ -31389,7 +31389,7 @@ ebr pKK vYW loA -uQa +gMR vYW vYW vYW @@ -31492,77 +31492,77 @@ pGs pGs pGs pGs -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -tER -sNy -dWH -jhW -jhW -jhW -mxx -jGm -fND -uVo +xRb +uEt +xRb +xRb +xRb +xRb +xRb +xRb +xRb +uEt +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +uEt +xRb +xRb +jya +xRb +cir +tBa +tBa +tBa +fhj +jUm +uHv +nbE kXQ kXQ -efw -fND -uVo +szI +uHv +nbE kXQ -efw -xwG +szI +kZL xCq kXQ kXQ -efw -efw -fND -uVo -efw -efw -efw -efw +szI +szI +uHv +nbE +szI +szI +szI +szI pCP ovC ovC nOQ lIO rbU -aCz -uuN -nuQ -rQV -rQV -rQV -nuQ -sKe -cGx -iLz -cGT -rQV -nuQ -hBX +vWg +nhj +rmF +tgG +tgG +tgG +rmF +cjc +eUZ +sDO +uyl +tgG +rmF +meI eEY xhx fay @@ -31674,79 +31674,79 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb lyP -sNy +xRb lyP -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -nVv -efw -efw -qVp -sQn -sQn -rxI -sQn -sQn -sQn -sQn -rxI -sQn -sQn -sQn -rxI -sQn -sQn -sQn -sQn -tVD -rxI -sQn -dTl -vdq -efw -efw +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +lWZ +szI +szI +dtI +uZx +uZx +lTd +uZx +uZx +uZx +uZx +lTd +uZx +uZx +uZx +lTd +uZx +uZx +uZx +uZx +bpf +lTd +uZx +nwm +eIA +szI +szI tqh mbf ovC ovC ovC rbU -aCz -wIr -qQF -ltW -cNT -ltW -qQF -ltW -ltW -ltW -ltW -ltW -qQF -eWR -oXi -gEy +vWg +hhi +ezo +meb +llX +meb +ezo +meb +meb +meb +meb +meb +ezo +bIp +vjc +nxG fay ebr ebr @@ -31754,8 +31754,8 @@ ebr vYW vYW vYW -uQa -uQa +gMR +gMR vYW neq vYW @@ -31856,89 +31856,89 @@ pGs pGs pGs pGs -tER -sNy -sNy -sNy -sNy +jya +xRb +xRb +xRb +xRb lyP -sNy -sNy -sNy +xRb +xRb +xRb lyP -sNy -sNy -sNy -sNy -sNy -sNy -wLq +xRb +xRb +xRb +xRb +xRb +xRb +uIb lyP lyP -sNy -dhV -ozD -nFH -ozD -jpZ -efw -efw -qMY -efw -efw -efw -pJA -jGA -efw -efw -efw -pJA -efw -efw -efw -pJA -efw -efw -efw +xRb +kMF +gSD +icZ +gSD +kFQ +szI +szI +wzq +szI +szI +szI +wFC +pxF +szI +szI +szI +wFC +szI +szI +szI +wFC +szI +szI +szI kXQ kXQ -pJA -efw -jif -efw -miP +wFC +szI +hcr +szI +jOc fay qBU rbU ovC ovC rbU -aCz -wIr -ezI -wdg -yba -pVl -vSY -wmg -izs -vku -izs -wmg -vSY -izs -oyi -sDM +vWg +hhi +gIx +dgn +anJ +eJO +tLA +tlz +aEm +mdc +aEm +tlz +tLA +aEm +anK +hmd fay ebr ebr ebr vYW vYW -uQa +gMR vYW vYW -uQa +gMR vYW vYW vYW @@ -32038,35 +32038,35 @@ pGs pGs pGs pGs -sNy -sNy -tER -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +xRb +xRb +jya +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb +xRb lyP -wLq -sNy -sNy -hlG -pVz -skp -skp -vLc -qDh -qlj -vvh -qlj +uIb +xRb +xRb +eKt +kZk +aVN +aVN +xcy +fam +lmr +qLZ +lmr yks yks yks @@ -32085,10 +32085,10 @@ yks yks yks yks -bvE -qMY -mxx -cbv +ohm +wzq +fhj +aUf fay vNG rbU @@ -32096,32 +32096,32 @@ pYJ ovC ovC fay -wIr -ltW -xuT -eYe -qQF -ltW -dQl -rWJ -jJp -ltW -dQl -rWJ -ltW -qQF -fYV +hhi +meb +loi +uKW +ezo +meb +dxV +sNB +aqg +meb +dxV +sNB +meb +ezo +cCy fay ebr ebr vYW vYW -uQa +gMR jAI vYW -uQa -uQa -uQa +gMR +gMR +gMR vYW vYW vYW @@ -32220,35 +32220,35 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -mLg -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -ozD -nFH -tdX -ifB -lCK -ifB -lCK -efw -efw -qMY -cyT +xRb +xRb +xRb +xRb +xRb +xRb +xRb +hVW +icZ +icZ +icZ +icZ +icZ +icZ +icZ +icZ +icZ +icZ +gSD +icZ +cxY +jyA +qEM +jyA +qEM +szI +szI +wzq +njP yks qul qul @@ -32258,8 +32258,8 @@ uHY uHY qHc qHc -oPQ -ljt +dWk +iyD qul qul qul @@ -32267,32 +32267,32 @@ qul qul qul yks -sDE -wuA -efw -rme +szE +tRt +szI +eAl tqh qKq axY lNw urE ovC -xPx -wIr -ltW -pCc -kvx -qQF -rWJ -hyQ -ltW -jgw -rWJ -tve -ltW -ltW -qQF -eXr +psJ +hhi +meb +qnM +ocl +ezo +sNB +mRK +meb +iOc +sNB +hpA +meb +meb +ezo +eGB fay ebr vYW @@ -32302,8 +32302,8 @@ vYW vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW @@ -32402,45 +32402,45 @@ pGs pGs pGs pGs -sNy -wLq -sNy -sNy -sNy -sNy -sNy -sHJ -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -efw -efw -qMY -efw +xRb +uIb +xRb +xRb +xRb +xRb +xRb +yhY +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +jyA +szI +szI +wzq +szI yks qul qul qul -ljt -oPQ +iyD +dWk xCn xCn -oPQ -oPQ +dWk +dWk qHc xCn xCn @@ -32449,10 +32449,10 @@ qul qul qul yks -mbu -qMY -efw -nKr +tbn +wzq +szI +hIe fay gWA rbU @@ -32460,21 +32460,21 @@ rFD ncC qBQ fay -jcB -ltW -hux -brx -qQF -rWJ -dzN -ltW -iFy -rWJ -ofI -ltW -ltW -lRU -leI +hAX +meb +kUk +qrt +ezo +sNB +pKQ +meb +nOL +sNB +mkc +meb +meb +fKQ +kES tqh rpw neq @@ -32484,8 +32484,8 @@ vYW ixl hto vYW -uQa -uQa +gMR +gMR vYW vYW vYW @@ -32585,43 +32585,43 @@ pGs pGs pGs pRV -sNy -wLq -sNy -sNy -sNy -sNy -dsC -rNf -mdy -nQR -nQR -nQR -nQR -nQR -nQR -qOO -rNf -mdy -nQR -pTQ -ifB -ifB -ifB -ifB -efw -efw -qMY -aoi +xRb +uIb +xRb +xRb +xRb +xRb +uBv +caL +oss +kMe +kMe +kMe +kMe +kMe +kMe +fWk +caL +oss +kMe +oHN +jyA +jyA +jyA +jyA +szI +szI +wzq +cFG yks yks qul qul -oPQ -oPQ -oPQ +dWk +dWk +dWk xCn -oPQ +dWk xCn xCn xCn @@ -32631,10 +32631,10 @@ cgr qul qul yks -ico -vBk -efw -efw +drj +ddU +szI +szI fay fay fay @@ -32642,22 +32642,22 @@ tqh fay fay fay -iYb -ltW -kCy -cpy -qQF -ltW -yji -ltW -dQl -ltW -eUr -rWJ -ltW -sKL -xbD -dkr +wDx +meb +mdK +vWi +ezo +meb +umi +meb +dxV +meb +esr +sNB +meb +lDs +pAR +eMw rpw neq vYW @@ -32665,9 +32665,9 @@ vYW ebr ebr ebr -uQa -uQa -uQa +gMR +gMR +gMR vYW hto vYW @@ -32767,35 +32767,35 @@ pGs pGs lYo cNt -sNy -tER -sNy -wLq -uTj -sNy -dsC -rNf -izl -sNy -wLq -sNy -wLq +xRb +jya +xRb +uIb +qSC +xRb +uBv +caL +xPO +xRb +uIb +xRb +uIb lyP -sNy -sHJ -rNf -izl -ekO -aCd -ifB -ifB -kYM -ifB -mPX -efw -qMY -efw -mbu +xRb +yhY +caL +xPO +tig +utL +jyA +jyA +wlg +jyA +muP +szI +wzq +szI +tbn yks qul qul @@ -32803,7 +32803,7 @@ xCn oVt xCn xCn -oPQ +dWk xCn xCn xCn @@ -32814,31 +32814,31 @@ pea qul yks yks -uzN -sQn +diE +uZx vSd -sQn -fdn +uZx +ylM yeR -sQn -jQM -sQn -bZg -oOF -izs -izs -kSF -clv -ltW -rWJ -ltW -ltW -ltW -ltW -ltW -ltW -sKL -gka +uZx +lBA +uZx +owb +bUW +aEm +aEm +sVV +ibE +meb +sNB +meb +meb +meb +meb +meb +meb +lDs +qoy fay rpw vYW @@ -32846,10 +32846,10 @@ vYW vYW vYW ebr -alL -uQa -uQa -uQa +bwm +gMR +gMR +gMR vYW vYW neq @@ -32949,42 +32949,42 @@ pGs qfr nbB cNt -wLq -wLq -sNy -sNy -sNy -sNy -dsC -rNf -izl -wLq -sNy +uIb +uIb +xRb +xRb +xRb +xRb +uBv +caL +xPO +uIb +xRb lyP lyP -sNy -uTj -sHJ -rNf -izl +xRb +qSC +yhY +caL +xPO lyP -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY -efw -mbu +eKt +jyA +jyA +jyA +jyA +szI +szI +wzq +szI +tbn yks qul uHY xCn xCn xCn -oPQ +dWk xCn xCn qul @@ -32996,31 +32996,31 @@ bdH qul qul yks -kDh -efw -efw -efw -jGA -efw -efw -qMY -efw +hHp +szI +szI +szI +pxF +szI +szI +wzq +szI tqh -tGl -xAK -xAK -xAK -loW -xAK -xAK -nQH -mVc -nYx -xAK -ltW -ltW -fWn -vVy +qBj +shm +shm +shm +aVl +shm +shm +bTc +fXp +qlM +shm +meb +meb +vhV +mwp fay rpw neq @@ -33028,10 +33028,10 @@ vYW vYW vYW vYW -uQa -uQa -uQa -uQa +gMR +gMR +gMR +gMR vYW vYW vYW @@ -33132,33 +33132,33 @@ nbB qfr dpW oIc -wLq -wLq -tER -sNy -sNy -dsC -rNf -izl -wLq -sNy +uIb +uIb +jya +xRb +xRb +uBv +caL +xPO +uIb +xRb lyP -sNy -sNy -sNy -sHJ -rNf -izl -wLq -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY -awu +xRb +xRb +xRb +yhY +caL +xPO +uIb +eKt +jyA +jyA +jyA +jyA +szI +szI +wzq +aNo yks yks qul @@ -33178,31 +33178,31 @@ xCn qul qul yks -alG -xVe +dXc +kYY kXQ kXQ qOS -efw -efw -qMY -knP +szI +szI +wzq +kMK fay -dMm -bcg -bmt +vZM +xot +bbc fay -xxE +wRn fay -dkr +eMw fay fay fay -dQl -hDA -hDA -icn -qPd +dxV +hyY +hyY +rTb +jBc fay ebr vYW @@ -33210,10 +33210,10 @@ hto vYW neq vYW -uQa -uQa -uQa -uQa +gMR +gMR +gMR +gMR vYW vYW vYW @@ -33315,31 +33315,31 @@ rcu fQK dpW pRV -wLq -wLq -wLq -wLq -dsC -plF -izl -wLq -uTj -sNy -sNy -sNy -sNy -sHJ -rNf -iVD +uIb +uIb +uIb +uIb +uBv +wZZ +xPO +uIb +qSC +xRb +xRb +xRb +xRb +yhY +caL +kFU lyP -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY +eKt +jyA +jyA +jyA +jyA +szI +szI +wzq yks yks qul @@ -33349,7 +33349,7 @@ xCn xCn qHc xCn -oPQ +dWk xCn xCn xCn @@ -33366,25 +33366,25 @@ vSN vSN yks yks -qDh -vBF -qlj +fam +bSP +lmr fay -uuN -rQV -rQV -rQV -nuQ -lKS -sCK -lLe -nLw +nhj +tgG +tgG +tgG +rmF +cun +aZo +wTB +rfA fay -rex -hDA -hDA -icn -hEN +qHn +hyY +hyY +rTb +rcw fay ebr ebr @@ -33392,8 +33392,8 @@ vYW ckM vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW @@ -33498,30 +33498,30 @@ nbB qfr dpW oIc -wLq -wLq -dhV -mwm -rNf -iZj -vqR -wLq -wLq -wLq -llj -dhV -qCY -rNf -iZj -dkC -hlG -xCM -lCK -ifB -lCK -qDh -qlj -lWB +uIb +uIb +kMF +kbt +caL +iJO +xGj +uIb +uIb +uIb +lwo +kMF +dfc +caL +iJO +svj +eKt +qNw +qEM +jyA +qEM +fam +lmr +qWW yks qul qul @@ -33531,7 +33531,7 @@ qHc xCn xCn xCn -oPQ +dWk qHc xCn xCn @@ -33548,24 +33548,24 @@ qul qul qul yks -efw -qMY -kYN +szI +wzq +dYi fay -pfD -ltW -ltW -ltW -qQF -ltW -ltW -ltW -jHI +dbl +meb +meb +meb +ezo +meb +meb +meb +boC fay -lBw -ltW -tnN -cPR +gBn +meb +jBv +nLa fay fay ebr @@ -33574,8 +33574,8 @@ ebr vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW @@ -33682,28 +33682,28 @@ ykM dpW iIY oIc -dsC -ifB -ifB -ifB +uBv +jyA +jyA +jyA kVL iIY iIY pRV -uTj -dsC -ifB -ifB -ifB -iVD -hlG -kvS -laN -rGE -rGE -efw -efw -ybj +qSC +uBv +jyA +jyA +jyA +kFU +eKt +fso +dLo +fnw +fnw +szI +szI +kLn yks qul qul @@ -33712,8 +33712,8 @@ qHc mJe xCn xCn -oPQ -oPQ +dWk +dWk xCn tuR xCn @@ -33730,24 +33730,24 @@ cYV qul qul yks -efw -xnr -sQn -bZg -oOF -izs -izs -izs -vSY -izs -dmS -ltW -sAf +szI +dGx +uZx +owb +bUW +aEm +aEm +aEm +tLA +aEm +vBd +meb +ksE fay -rex -hDA -hDA -bjf +qHn +hyY +hyY +pvK fay ebr ebr @@ -33756,8 +33756,8 @@ hto vYW vYW vYW -uQa -uQa +gMR +gMR vYW hto vYW @@ -33855,9 +33855,9 @@ pGs pGs huF haP -rQe -vFs -iqv +pkK +rVu +iSR haP uQi nbB @@ -33865,27 +33865,27 @@ fQK nbB dpW red -ifB -lFI -ifB +jyA +dbR +jyA nhX gor qoj avX ehT kQy -ifB -lFI -ifB -sZW -hnR -ptp -ptp -ptp -kRU -efw -efw -qMY +jyA +dbR +jyA +uVK +bnx +uvr +uvr +uvr +yew +szI +szI +wzq yks qul qul @@ -33894,7 +33894,7 @@ xCn xCn fHk xCn -oPQ +dWk xCn xCn xCn @@ -33906,30 +33906,30 @@ xCn qHc qHc xCn -heu +peb vQe xCn uHY qul yks -qDh -vvh -qlj +fam +qLZ +lmr tqh -bjd -mhm -aJW -gun -aWA -dWu -iMc -xAK -ckz +lfx +nXw +kHw +nSA +fhT +ePg +fSs +shm +bwv fay -sDM -iCy -iCy -dlv +hmd +hxE +hxE +tYX fay ebr ebr @@ -33938,8 +33938,8 @@ vYW vYW vYW vYW -uQa -uQa +gMR +gMR jAI vYW ebr @@ -34036,38 +34036,38 @@ pGs pGs huF huF -eWp -lMB -lMB -lMB -jPh +uKf +wLT +wLT +wLT +fVW uQi uQi uQi uQi uQi ykc -ifB -huf -ifB +jyA +pMc +jyA ykc -cog +rcL ykc -cog +rcL ykc ykc -gkw -huf -ifB +uXY +pMc +jyA ykc uQi uQi uQi uQi uQi -efw -efw -qMY +szI +szI +wzq yks qul qul @@ -34076,7 +34076,7 @@ xCn jCs xCn xCn -oPQ +dWk xCn qHc xCn @@ -34094,24 +34094,24 @@ xCn xCn qul yks -efw -qMY -kYN +szI +wzq +dYi fay fay fay fay fay -dkr -dkr +eMw +eMw fay fay fay fay -sDM -iCy -iCy -dlv +hmd +hxE +hxE +tYX fay ebr ebr @@ -34120,8 +34120,8 @@ ebr vYW neq vYW -uQa -uQa +gMR +gMR vYW vYW hto @@ -34218,38 +34218,38 @@ pGs pGs huF huF -oTX -tQT -tQT -fQW -jSP +uBF +lnH +lnH +lJf +xUO ykc ykc ykc ykc ykc ykc -cog +rcL ykc -uZY +hDz ykc -cAw -cAw -qNC -rSx +gJn +gJn +dta +kKH ykc -cog +rcL ykc -rnP +mds ykc ykc ykc ykc ykc ykc -lSg -lSg -vLt +tzh +tzh +qcu adw qul uHY @@ -34257,8 +34257,8 @@ xCn xCn xCn qul -ljt -oPQ +iyD +dWk xCn xCn xCn @@ -34275,10 +34275,10 @@ mJe xCn xCn xCn -efw -efw -qMY -efw +szI +szI +wzq +szI nSi bMx qul @@ -34290,10 +34290,10 @@ qul qul qul fay -sDM -iCy -iCy -dlv +hmd +hxE +hxE +tYX fay ebr ebr @@ -34301,9 +34301,9 @@ ebr vYW vYW vYW -uQa -uQa -uQa +gMR +gMR +gMR neq vYW vYW @@ -34400,38 +34400,38 @@ pGs pGs huF huF -cne -tQT -tQT -rMM -wjB +vsQ +lnH +lnH +prx +heT ykc -pFS -eBL -vjA -pfR -pfR -bRo +nZM +fTO +lOY +hHk +hHk +pQD ykc -kVp -tjS -tjS -tjS -tjS -tjS -iUx -gXh +tue +cIw +cIw +cIw +cIw +cIw +kpj +iIA uXZ -kVp -aDF -tjS -tjS -tjS -aDF +tue +kRd +cIw +cIw +cIw +kRd uXZ -pYt -vsa -fcK +ipO +ped +wog uSx xCn xCn @@ -34439,9 +34439,9 @@ xCn tuR xCn qul -ljt -oPQ -oPQ +iyD +dWk +dWk xCn xCn xCn @@ -34450,7 +34450,7 @@ qul xCn xCn qYg -ljt +iyD hhM hhM xCn @@ -34459,7 +34459,7 @@ qHc xCn kXQ kXQ -qMY +wzq kXQ kXQ xCn @@ -34472,23 +34472,23 @@ uHY qul qul fay -tYT -iCy -iCy -jnq +nKL +hxE +hxE +meP fay ebr hto vYW vYW vYW -uQa -alL -uQa -uQa +gMR +bwm +gMR +gMR vYW -alL -alL +bwm +bwm ebr ebr ebr @@ -34582,38 +34582,38 @@ huF huF huF huF -oTX -tQT -tQT -ssh -pPl +uBF +lnH +lnH +tDv +eek ykc -dro -eBL -eBL -eBL -aBp -pfR +gUu +fTO +fTO +fTO +jwO +hHk ykc -hic -oJB -plN -sGY -sGY -sGY -sGY -uQK +eSs +gwu +uoC +lpC +lpC +lpC +lpC +eDd oLM -mIL -xOx -iir -oke -jFh -wGl +bti +mrE +qrF +bqe +aPe +nkH ykc -pkG -lSg -ehH +cEZ +tzh +pgJ uSx xCn xCn @@ -34622,55 +34622,55 @@ qHc qHc uHY cYV -dNt -oPQ -oPQ -oPQ -ljt -ljt +pCl +dWk +dWk +dWk +iyD +iyD xCn -oPQ -oPQ +dWk +dWk xCn xCn -oPQ -oPQ -oPQ -oPQ +dWk +dWk +dWk +dWk qHc -oPQ -efw +dWk +szI kXQ bRS -efw +szI kXQ -oPQ -oPQ -oPQ -oPQ -oPQ +dWk +dWk +dWk +dWk +dWk xCn xCn xCn -oPQ +dWk fay -sDM -iCy -iCy -dlv +hmd +hxE +hxE +tYX fay -tDo -vYW -vYW -uQa -uQa -uQa -cUZ -tDR -uQa -uQa -uQa -uQa +xsw +vYW +vYW +gMR +gMR +gMR +klS +tyI +gMR +gMR +gMR +gMR ebr ebr ebr @@ -34764,38 +34764,38 @@ huF huF huF huF -fOG -lMB -lMB -vMq -wjB -olP -eBL -eBL -eBL -eBL -mzT -fcg +gMs +wLT +wLT +nTv +heT +aFG +fTO +fTO +fTO +fTO +tca +jeG uXZ -foF -oJB -sba -bWq -hHK -oke -wGl -dpZ -sou -myo -sGY -sGY -sGY -sGY -sGY +dnY +gwu +rtd +sTl +mqM +bqe +nkH +agv +wBi +dDj +lpC +lpC +lpC +lpC +lpC oLM -lSg -lSg -vLt +tzh +tzh +qcu bnm qul xCn @@ -34804,55 +34804,55 @@ xCn xCn qHc xCn -oPQ -oPQ -oPQ -oPQ -oPQ +dWk +dWk +dWk +dWk +dWk xCn xCn qHc xCn -oPQ -oPQ +dWk +dWk xCn xCn qHc -oPQ -oPQ -xbc -efw -efw +dWk +dWk +jSh +szI +szI bRS -efw +szI kXQ -oPQ -oPQ -oPQ -oPQ +dWk +dWk +dWk +dWk xCn oVt yfT -oPQ -oPQ -doW -sDM -iCy -iCy -dlv -doW -tDo -uQa -vYW -uQa -uQa -uQa -esM -pdc -ivO -uQa -uQa -uQa +dWk +dWk +xYy +hmd +hxE +hxE +tYX +xYy +xsw +gMR +vYW +gMR +gMR +gMR +wiN +qMy +cYg +gMR +gMR +gMR ebr ebr ebr @@ -34931,54 +34931,54 @@ pGs pGs pGs pGs -knN -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -leG -cWu -cWu -cUF -oVp -wqc -jts -arC -wjB +dEa +kaD +kaD +kaD +kaD +kaD +kaD +kaD +kaD +kaD +kaD +fuw +kaD +kaD +eZN +jQJ +uIs +ovB +rgA +heT uXZ -cHS -wVT -wVT -eBL -mzT -xIA +eHJ +tFG +tFG +fTO +tca +qOJ ykc -iZx -oJB -sfs -sGY -sGY -sGY -sGY -pxg -syl -nYL -ncd -oRx -hsF -rLW -oke -keN -lSg -lSg -vLt -lSg +ogN +gwu +bWO +lpC +lpC +lpC +lpC +cPX +ihs +anI +pMt +llh +jXZ +tHZ +bqe +dEX +tzh +tzh +qcu +tzh qul qul xCn @@ -35002,40 +35002,40 @@ xCn xCn xCn xCn -oPQ -efw +dWk +szI kXQ -qMY +wzq kXQ -efw -oPQ -oPQ -oPQ +szI +dWk +dWk +dWk xCn xCn xCn -oPQ -oPQ -oPQ -ltW -sDM -iCy -iCy -dlv -ltW -tDo -uQa -uQa -vYW -vYW -uQa -uQa -uQa -uQa -uQa -uQa -uQa -alL +dWk +dWk +dWk +meb +hmd +hxE +hxE +tYX +meb +xsw +gMR +gMR +vYW +vYW +gMR +gMR +gMR +gMR +gMR +gMR +gMR +bwm hto vYW vYW @@ -35113,7 +35113,7 @@ pGs pGs pGs pGs -lPj +gZV huF huF huF @@ -35124,44 +35124,44 @@ huF huF huF huF -luz +nSc huF huF huF -cne -dQK -wBY -lMB -wjB +vsQ +tVe +cYv +wLT +heT ykc ykc uXZ ykc oLM -vDI +pFy ykc ykc -suC -oJB -cPI -bMG -fXX -tJN -nPK -xuN -wJu -uGf -sGY -sGY -sGY -sGY -sGY +bBs +gwu +lKt +dWZ +uxW +fCv +ttL +dpq +nGR +wpC +lpC +lpC +lpC +lpC +lpC uXZ -lSg -lSg -vLt -nfX -tng +tzh +tzh +qcu +jZS +acl qul qul uHY @@ -35179,17 +35179,17 @@ mJe xCn xCn xCn -ljt +iyD hhM hhM -ljt -oPQ +iyD +dWk hhM kXQ kXQ -qMY +wzq kXQ -efw +szI uHY uHY xCn @@ -35200,10 +35200,10 @@ xCn qYg xCn fay -sDM -iCy -iCy -dlv +hmd +hxE +hxE +tYX fay oAE vYW @@ -35211,13 +35211,13 @@ vYW vYW vYW vYW -uQa -uQa -uQa -uQa -uQa -uQa -alL +gMR +gMR +gMR +gMR +gMR +gMR +bwm vYW cmr vYW @@ -35295,56 +35295,56 @@ pGs pGs huF huF -lPj +gZV huF huF huF huF huF huF -ebJ -ebJ -ebJ -ebJ -uOk +ldQ +ldQ +ldQ +ldQ +vaM huF rpu huF -oTX -lMB -vUZ -lMB -wjB -eVn -isK -nma -vxM -cdO -pSK -sfM -odZ -mYW -oJB -sfs -sGY -sGY -sGY -sGY -uQK +uBF +wLT +igC +wLT +heT +dpv +hAK +bNc +heg +vjt +bBv +dHc +aBl +ebj +gwu +bWO +lpC +lpC +lpC +lpC +eDd ykc -iZx -xVC -wGl -oke -xyU -wGl +ogN +nhF +nkH +bqe +oSA +nkH ykc -fuF -lSg -vLt -rdq -lSg -bAj +fBQ +tzh +qcu +dSg +tzh +jOl qul qul qul @@ -35370,7 +35370,7 @@ qul mCZ kXQ bRS -efw +szI yks qul qul @@ -35382,10 +35382,10 @@ oVt uHY qul fay -rjZ -iCy -iCy -dlv +fxb +hxE +hxE +tYX fay ebr luZ @@ -35393,28 +35393,28 @@ vYW neq vYW vYW -uQa +gMR vYW vYW -uQa -uQa -uQa +gMR +gMR +gMR vYW -uQa -uQa -uQa +gMR +gMR +gMR vYW vYW vYW -lMb -uQa +eiR +gMR vYW -uQa +gMR vYW vYW vYW vYW -alL +bwm vYW vYW vYW @@ -35477,7 +35477,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -35492,41 +35492,41 @@ huF huF rpu huF -oTX -lMB -wBY -lMB -wjB -lDN -saC -saC -lDN -oJB -dFd -oJB -oJB -oJB -oJB -xiV -nRk -wGl -hHK -oke -uQK +uBF +wLT +cYv +wLT +heT +ori +buF +buF +ori +gwu +xdM +gwu +gwu +gwu +gwu +dNl +wof +nkH +mqM +bqe +eDd ykc -sCV -sDZ -saC -saC -saC -sDZ +qME +xQO +buF +buF +buF +xQO ykc -lSg -gKw -vLt -miU -vBC -gKw +tzh +xnR +qcu +kAJ +xTq +xnR qul qul qul @@ -35550,24 +35550,24 @@ qul qul qul yks -qDh -vvh -qlj +fam +qLZ +lmr yks qul -kli -bTg -aYg +mlZ +kpo +cXd qul qul qul qul qul fay -sDM -iCy -iCy -dlv +hmd +hxE +hxE +tYX fay ebr ebr @@ -35575,19 +35575,19 @@ hto vYW rZr vYW -uQa -uQa -uQa +gMR +gMR +gMR vYW -uQa -uQa +gMR +gMR vYW -uQa -uQa -uQa -uQa -uQa -uQa +gMR +gMR +gMR +gMR +gMR +gMR vYW vYW vYW @@ -35659,7 +35659,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -35674,27 +35674,27 @@ huF huF huF huF -nPx -arC -lxr -lMB -wjB -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -sfs -sGY -sGY -sGY -sGY -uQK +fEl +rgA +ghi +wLT +heT +lpC +mUo +mUo +lpC +gwu +xdM +gwu +gwu +gwu +gwu +bWO +lpC +lpC +lpC +lpC +eDd ykc ykc ykc @@ -35703,12 +35703,12 @@ uXZ uXZ ykc ykc -lSg -bFV -vLt -lSg -lSg -gKw +tzh +bgz +qcu +tzh +tzh +xnR qul qul qul @@ -35732,24 +35732,24 @@ qul qul qul yks -vwT -qMY -kYN +gBG +wzq +dYi yks qul -gMV -eLZ -rIF -bTg -bTg -rLK -aYg +fRV +jHg +bZs +kpo +kpo +iMi +cXd qul fay -sDM -iCy -iCy -dlv +hmd +hxE +hxE +tYX fay ebr ebr @@ -35757,12 +35757,12 @@ ebr ebr ebr fRl -hMC -uQa -csr -uQa -uQa -uQa +kFN +gMR +vTr +gMR +gMR +gMR vYW vYW vYW @@ -35821,8 +35821,8 @@ wUU "} (40,1,1) = {" wUU -nvv -mPk +pwQ +oeX pGs pGs pGs @@ -35841,53 +35841,53 @@ pGs pGs huF huF -rbp -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -mSS -jGT -wqc -jRu -lMB -qRe -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -dFd -oJB -oJB -oJB -oJB -uQK +rtg +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +ldQ +wdq +ivi +uIs +uND +wLT +aNC +lpC +mUo +mUo +lpC +gwu +xdM +gwu +gwu +gwu +gwu +xdM +gwu +gwu +gwu +gwu +eDd uXZ -gcK -xYM -gAl -swf -qiv +sLZ +sYN +utj +ruw +jAg ykc xRF -rSu +toh pGJ -dRX +slb wVI pGJ lsU @@ -35914,37 +35914,37 @@ sdz sdz qul yks -efw -qMY -kNN +szI +wzq +mmk yks qul -edD -cym -cym -cym -cym -cym -nFp +xPc +oLA +oLA +oLA +oLA +oLA +bRB qul fay -rex -hDA -hDA -bjf +qHn +hyY +hyY +pvK fay ebr ebr ebr ebr ebr -xEl -rDz -uMQ -uQa -uQa -uQa -uQa +kLw +bPn +kQC +gMR +gMR +gMR +gMR vYW vYW vYW @@ -35960,8 +35960,8 @@ ebr vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW @@ -36003,9 +36003,9 @@ wUU "} (41,1,1) = {" wUU -nvv -mPk -mPk +pwQ +oeX +oeX pGs pGs pGs @@ -36023,7 +36023,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -36038,67 +36038,67 @@ huF huF huF huF -oTX -iah -wBY -lMB -wjB -lDN -tjS -qGE -dss -bMk -xTd -bMk -bMk -bMk -bMk -gwB -bMk -bMk -bMk -bMk -cKZ -msx -xCU -tVo -tVo -nni -dZT +uBF +sGX +cYv +wLT +heT +ori +cIw +ppO +aRd +oqO +sGd +oqO +oqO +oqO +oqO +mvZ +oqO +oqO +oqO +oqO +dQH +eIR +iwQ +kTY +kTY +tiB +plV oLM -fYA -fYA -fYA -cYc -mGb -lgP -lzu -mGb -qHu -mGb -lzu -lgP -uOC -arg +lfV +lfV +lfV +mgT +tXO +jCi +wRJ +tXO +kCD +tXO +wRJ +jCi +elD +vRT pGJ pGJ pGJ pGJ pGJ -vWG -oRB -tzp -wtB -nXY -pSD -roy -umO +roM +iuq +oYR +xoG +xgz +qVe +cFI +tMA sdz sdz sdz -iRR -wmL -iRR +vpo +mLF +vpo sdz sdz kGM @@ -36111,8 +36111,8 @@ kGM sdz sdz kGM -aRr -nBH +upF +eYY miy sdz sdz @@ -36120,14 +36120,14 @@ sdz sdz sdz ebr -tSR -lhB +kiM +tpT vYW vYW vYW vYW jAI -uQa +gMR vYW hto ebr @@ -36141,8 +36141,8 @@ vYW vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW @@ -36185,9 +36185,9 @@ wUU "} (42,1,1) = {" wUU -nvv -mPk -mPk +pwQ +oeX +oeX pGs pGs pGs @@ -36205,7 +36205,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -36220,96 +36220,96 @@ huF huF huF huF -cne -lMB -wBY -lMB -wjB -mIL -oke -mAX -uQK -oke -sCJ -oke -oJB -oJB -oJB -xml -fDB -saC -saC -saC -saC -saC -wBN -sGY -sGY -sfs -xaK +vsQ +wLT +cYv +wLT +heT +bti +bqe +iLq +eDd +bqe +vCe +bqe +gwu +gwu +gwu +nFU +ilx +buF +buF +buF +buF +buF +hRi +lpC +lpC +bWO +xoN uXZ -qKb -oMs -uww -tPz -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -lzu -mGb -mGb -mGb -mGb -lgP -kwB -icM -kwB -kwB -kwB -vEJ -kPX -bPl -uVV -kwB -kwB -kwB -nWg -kwB -sIn -fWr -wfr -vbr -wfr -fWr -wfr -wfr -vbr -wfr -fWr -rlJ -aRr -aRr -cGR -fWr -nyJ -bwz -kZg +isu +teQ +aXa +vhG +rtE +rtE +rtE +rtE +rtE +rtE +rtE +rtE +rtE +wRJ +tXO +tXO +tXO +tXO +jCi +xHl +wEi +xHl +xHl +xHl +kXD +gyD +vQv +kKx +xHl +xHl +xHl +qtk +xHl +lER +qoW +fyk +cpE +fyk +qoW +fyk +fyk +cpE +fyk +qoW +jPc +upF +upF +jvq +qoW +xTc +vIf +fod kGM -kSD -mMX -lhB -uQa +wTi +sVb +tpT +gMR hto vYW vYW vYW -uQa +gMR hto ebr ebr @@ -36367,10 +36367,10 @@ wUU "} (43,1,1) = {" wUU -nvv -mPk -mPk -mPk +pwQ +oeX +oeX +oeX pGs pGs pGs @@ -36387,7 +36387,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -36403,93 +36403,93 @@ huF huF huF xpP -bJv -otL -nzS -lVa -wSX -oke -oke -uQK -cnv -sCJ -oke -oJB -nfZ -ePb -kMi +kho +xjv +nnX +rUh +pvx +bqe +bqe +eDd +ajJ +vCe +bqe +gwu +cjF +brb +ciq ykc uXZ uXZ uXZ uXZ oLM -bzn -ePb -oJB -sfs -oke -nnt -oMs -jVl -uww -tPz -hvO -bpI -hvO -hvO -hvO -hvO -hvO -uDw -erE -vUE -hvO -hvO -hvO -hvO -hvO -kuX -kuX -kuX -kuX -kuX -kuX -cVG -cVG -dbV -kuX -kuX -kuX -ddY -kuX -kuX -kuX -kuX -eRO -scO -kuX -kuX -kuX -eRO -kuX -kuX -kuX -kuX -kuX -ddY -kuX -kuX -kuX -uOL +avH +brb +gwu +bWO +bqe +dHA +teQ +oUV +aXa +vhG +rtE +vtX +rtE +rtE +rtE +rtE +rtE +blc +tln +blk +rtE +rtE +rtE +rtE +rtE +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +gif +gif +qiB +dFJ +dFJ +dFJ +kRw +dFJ +dFJ +dFJ +dFJ +gkZ +pSG +dFJ +dFJ +dFJ +gkZ +dFJ +dFJ +dFJ +dFJ +dFJ +kRw +dFJ +dFJ +dFJ +mrj kGM -hbD -jtx -lhB +exc +nNP +tpT vYW -uQa +gMR vYW -uQa +gMR vYW vYW ebr @@ -36511,7 +36511,7 @@ vYW vYW vYW vYW -uQa +gMR vYW vYW jQa @@ -36549,10 +36549,10 @@ wUU "} (44,1,1) = {" wUU -nvv -mPk -mPk -mPk +pwQ +oeX +oeX +oeX pGs pGs pGs @@ -36569,7 +36569,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -36586,18 +36586,18 @@ huF huF huF huF -mHM +uGF huF huF uQi -uyd -rwP -uQK -qfb -sCJ -oke -oJB -eZk +aVY +fNX +eDd +inn +vCe +bqe +gwu +sLK nQo fjM jeO @@ -36607,69 +36607,69 @@ vrw vrw jeO nQo -eBG -kXP -ezd -ukz -ukz -nOO -vFu -imd -jsh -kzJ -kzJ -oZw -oZw -oZw -oZw -oZw -sCk -xuB -bEj -oZw -kzJ -oZw -kzJ -oZw -lVP -lVP -lVP -lVP -lVP -fpf -lVP -lVP -lVP -lVP -lVP -ehD -qCI -lVP -pDD -lVP -lVP -tTo -lVP -lVP -lVP -lVP -tTo -ehD -lVP -lVP -lVP -lVP -hCZ -lVP -fHs -kuX -uOL +tZp +aeY +klN +tDl +tDl +tBn +plb +gYz +gwS +buN +buN +xLU +xLU +xLU +xLU +xLU +fqo +tpX +sRd +xLU +buN +xLU +buN +xLU +ihW +ihW +ihW +ihW +ihW +hZt +ihW +ihW +ihW +ihW +ihW +veT +adM +ihW +bfE +ihW +ihW +sWD +ihW +ihW +ihW +ihW +sWD +veT +ihW +ihW +ihW +ihW +ozf +ihW +cyt +dFJ +mrj kGM -hbD -dTS -qyH +exc +vnC +kHR vYW -uQa +gMR vYW vYW vYW @@ -36682,7 +36682,7 @@ vYW vYW neq neq -uQa +gMR vYW vYW vYW @@ -36692,8 +36692,8 @@ vYW vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW jQa @@ -36702,8 +36702,8 @@ jQa jQa jQa jQa -rgz -rgz +oyM +oyM jQa jQa jQa @@ -36731,11 +36731,11 @@ wUU "} (45,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX pGs pGs pGs @@ -36751,7 +36751,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -36768,93 +36768,93 @@ huF huF huF huF -kGB +oRk huF huF ykc -tPI -itZ -uQK -wGl -sCJ -oke -oJB -wDG -wDG -afR +xCi +aQI +eDd +nkH +vCe +bqe +gwu +jqH +jqH +rGg oLM -uDQ -uDQ -uDQ -qZH +xur +xur +xur +pBH hUU -rrA -aTS -oJB -wIm -xqP +oAe +dls +gwu +siY +icf uXZ -qKb -oMs -uww -hvO -tPz -ost -hvO -hvO -hvO -hvO -hvO -hvO -bih -hvO -hvO -ost -hvO -tPz -hvO -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -pCp -kuX -kuX -ddY -kuX -kuX -xeV -ybY -ltI -iIW -fao -xeV -pCp -kuX -kuX -kuX -kuX -kuX -kuX -sDj -kuX -uOL +isu +teQ +aXa +rtE +vhG +aTl +rtE +rtE +rtE +rtE +rtE +rtE +evN +rtE +rtE +aTl +rtE +vhG +rtE +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +ogs +dFJ +dFJ +kRw +dFJ +dFJ +jdn +vKL +iZk +aUJ +hmY +jdn +ogs +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +prm +dFJ +mrj kGM -wkp -tqa +eIL +jah ebr vYW vYW vYW vYW -uQa +gMR vYW ebr ebr @@ -36874,14 +36874,14 @@ ebr ebr hto vYW -uQa -uQa +gMR +gMR vYW vYW jQa -rgz -rgz -rgz +oyM +oyM +oyM jQa jQa jQa @@ -36913,12 +36913,12 @@ wUU "} (46,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -36933,7 +36933,7 @@ pGs pGs huF huF -lPj +gZV huF huF huF @@ -36950,84 +36950,84 @@ huF huF huF huF -lPj +gZV huF huF ykc -aDu -oke -uQK -oke -uBX -oke -oJB -oJB -oJB -oPe -roJ -yab -sNl -wty -vzN -mZC -kXn -aFu -jqJ -xqY -muE +jvg +bqe +eDd +bqe +eyD +bqe +gwu +gwu +gwu +iGo +gFi +gGf +mdY +waa +oRJ +uSn +mps +dFr +nGe +iCf +xrO oLM -fYA -fYA -fYA -dQe -lWo -oMs -dQe -yeH -yeH -bUK -lzu -hvO -bih -lzu -yeH -yeH -dxn -lWo -oMs -auE -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -wfT -vDm -vDm -fPU -cnW -foU -ujp -vDm -mVF -vDm -vDm -deX -vDm -vDm -vDm -tOp -sDj -kuX -rlJ +lfV +lfV +lfV +lTU +bEd +teQ +lTU +lex +lex +rkG +wRJ +rtE +evN +wRJ +lex +lex +fgo +bEd +teQ +uZA +igw +igw +igw +igw +igw +igw +igw +igw +igw +igw +igw +igw +igw +wxw +qOr +qOr +fBO +rwY +gxo +jXv +qOr +gzZ +qOr +qOr +rnQ +qOr +qOr +qOr +ljK +prm +dFJ +jPc sdz ebr ebr @@ -37035,8 +37035,8 @@ ebr ebr vYW vYW -uQa -uQa +gMR +gMR vYW vYW hto @@ -37048,7 +37048,7 @@ vYW vYW vYW vYW -uQa +gMR vYW gEP ebr @@ -37056,13 +37056,13 @@ ebr ebr vYW vYW -uQa -uQa +gMR +gMR vYW vYW jQa -rgz -rgz +oyM +oyM jQa jQa jQa @@ -37095,12 +37095,12 @@ wUU "} (47,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -37115,7 +37115,7 @@ pGs pGs huF huF -wRR +xus huF huF huF @@ -37132,35 +37132,35 @@ pGs bZv iUZ huF -wgU +jUq huF huF ykc -nPR -saC -lDN -saC -saC -lDN -saC -mAm -iAx -lMP +cPP +buF +ori +buF +buF +ori +buF +ouF +vPU +wEH ykc -ubT -xwk -lDN -lzP +ajK +rCZ +ori +ejS ykc -rxe -saC -uVe +gox +buF +sua ykc uXZ ykc -vYr +qYB vnm -rIU +gBa vnm brX vUT @@ -37168,15 +37168,15 @@ uJO bLB bLB vnm -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT cZR nxW nxW -rsM -rtr +pvD +jNN nxW nxW mKb @@ -37190,9 +37190,9 @@ qcN qcN qcN lGp -hYp -uqx -hYp +cAb +wKt +cAb bIt bIt pQp @@ -37207,8 +37207,8 @@ ykw bIt bIt kGM -sDj -wir +prm +mut kGM sdz ebr @@ -37239,7 +37239,7 @@ ggX vYW vYW vYW -uQa +gMR vYW vYW jQa @@ -37277,13 +37277,13 @@ wUU "} (48,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -37297,7 +37297,7 @@ pGs pGs huF huF -wRR +xus huF huF huF @@ -37314,16 +37314,16 @@ lYr qjU gvo rlw -eWZ +qOZ huF huF ykc ykc oDS -lDN -sGY -sGY -lDN +ori +lpC +lpC +ori ykc ykc uXZ @@ -37331,18 +37331,18 @@ uXZ ykc ykc uXZ -oqh +tLs uXZ ykc uXZ jpm uXZ ykc -hyr -npi -hyr +nVG +hlY +nVG vnm -bPG +pmL vQz hMG oXf @@ -37350,48 +37350,48 @@ vQz iDM vPY bLB -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT nxW -wlQ -saq -rsM -maN -faq -cvI -dNW -wCx -lxT -mOO +hji +vkX +pvD +rbT +yjJ +jiv +aKh +wIn +lty +xYE qcN -tJT -xLN +eBq +ivA qcN -rsh -nMT +uhV +eUW qcN -lUe -aQc -fZd +msW +oHL +mwP ykw -ani -irw -pTs -hJO -syM +eKA +puS +xkl +yhb +klR ykw -nPG -egJ -teu -teu -uMB +pLt +sZx +vxy +vxy +aQg bIt -wox -sJZ -tEJ -iNh +rIv +veQ +pat +gVR nTG ebr ebr @@ -37421,9 +37421,9 @@ vYW vYW vYW vYW -uQa -uQa -uQa +gMR +gMR +gMR jQa jQa jQa @@ -37459,14 +37459,14 @@ wUU "} (49,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -37479,7 +37479,7 @@ pGs pGs huF huF -wRR +xus huF huF huF @@ -37490,90 +37490,90 @@ huF pGs pGs iUZ -vJg +fFh lYr lYr fwo lYr sQR -eWZ +qOZ huF huF huF huF ykc -lDN -tjS -tjS -lDN +ori +cIw +cIw +ori uXZ -rtP -aqk -okf -wwq -ukX -wxf -hyr -cTV -vyI -jEZ -hyr -cTV -aAY -vyI -wPE -hyr +kDM +kMc +ffI +yhq +lIY +dEC +nVG +kio +pSs +reD +nVG +kio +ncs +pSs +rCr +nVG vnm -oiB +jHc rVi brX oXf oXf -hfR +wHj bio bLB -xWY -hvO -bih -lzu +wXl +rtE +evN +wRJ nxW -fZI -maN -rsM -maN -maN -maN -maN -maN -maN -aTh +qfL +rbT +pvD +rbT +rbT +rbT +rbT +rbT +rbT +ooX qcN -vhb -kFT +taQ +bDx qcN -nwV -aLl +vNJ +kYv qcN -qqA -aQc -hwa +arD +oHL +jbJ bIt -ecb -haT -cQr -qiP -mwH +sHm +rsp +wBh +cLM +uKo bIt -uCc +jmX vgA pOC qWC -dbg +otR ykw -pRX -sJZ -tEJ -cNu +djv +veQ +pat +bXb nTG jpD ebr @@ -37597,15 +37597,15 @@ vYW vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW -uQa -uQa -uQa -uQa +gMR +gMR +gMR +gMR jQa jQa jQa @@ -37641,17 +37641,17 @@ wUU "} (50,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX pGs pGs pGs @@ -37661,7 +37661,7 @@ pGs pGs huF huF -wRR +xus huF huF huF @@ -37675,88 +37675,88 @@ fwo lYr lYr qyT -sJm +iku lYr tia -ten +vaw huF huF huF huF ykc -stV -sAR -enU -uQK -oBs -hyr -hyr -hyr -aXt -hyr -hyr -hyr -omj -weG -hyr -hyr -hyr -hyr -aXt -hyr -hyr +fkw +peh +mUo +eDd +sXJ +nVG +nVG +nVG +vVa +nVG +nVG +nVG +dOH +gfN +nVG +nVG +nVG +nVG +vVa +nVG +nVG aGx -hfR +wHj gqE mUy uUl ria -mDl +vWE cSq vnm -ePB -hvO -mrd -ciH -kyh -lAk -nMe -ckF -nMe -nMe -aaA -wsZ -wsZ -csb -nMe -ejZ -wVa -wpr +qfY +rtE +xXW +uFI +rsa +ale +mDN +hcv +mDN +mDN +rwg +ddL +ddL +xHT +mDN +hPa +hgC +mcQ nxW -qir -haC +gSO +jYD nxW -qqA -aQc -qqA +arD +oHL +arD bIt -tsX -wkC +wYK +lzU fAO -haT -slj +rsp +pdm bIt -gze +hQT qWC eOv rJq -dbg +otR ykw -pRX -sJZ -tEJ -cNu -kyL +djv +veQ +pat +bXb +rUB jpD oAE oAE @@ -37779,13 +37779,13 @@ neq vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW -uQa -lMb +gMR +eiR vYW vYW gxQ @@ -37823,18 +37823,18 @@ wUU "} (51,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX sNx pGs pGs @@ -37843,7 +37843,7 @@ huF huF huF huF -wRR +xus huF pGs pGs @@ -37866,85 +37866,85 @@ huF huF huF ykc -wcl -enU -enU -uQK +evE +mUo +mUo +eDd uXZ -hyr -omj -hyr -weG -leU -pIe -hyr -hyr -weG -hyr -omj -hyr -pIe -weG -fzx -hyr +nVG +dOH +nVG +gfN +cCD +lMU +nVG +nVG +gfN +nVG +dOH +nVG +lMU +gfN +sRK +nVG bLB -mDl +vWE oXf dbu xxI xxI -iXX +fxN cSq bLB -xWY -hvO -anu -lnG -cAX -vsP -cAX -kDF -nZd -maN -maN -maN -maN -maN -maN +wXl +rtE +dZI +fDI +ttr +dUI +ttr +jMF +lrU +rbT +rbT +rbT +rbT +rbT +rbT qcN -seY -gjw +uZu +htD nxW -ygT -wRu +vcD +nru nxW -qqA -aQc -qqA +arD +oHL +arD ykw -dmq -sDo -cXQ -haT -wLR +upl +jyC +aVL +rsp +pne ykw -avF +fYt qDR iRw pjH -nqN +bUj ykw -pRP -sJZ -tEJ -cNu -upO +hUS +veQ +pat +bXb +hRq gUP -clG -mMX +ldU +sVb oAE -uQa -uQa +gMR +gMR vYW vYW vdQ @@ -37961,13 +37961,13 @@ neq vYW vYW vYW -uQa -uQa +gMR +gMR cmr vYW vYW -uQa -uQa +gMR +gMR vYW vYW pGs @@ -38005,19 +38005,19 @@ wUU "} (52,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX sNx sNx huF @@ -38025,7 +38025,7 @@ huF huF huF huF -vEU +dbk huF pGs pGs @@ -38037,10 +38037,10 @@ kFV vmw eaC fwo -oCR +fnx hAg lYr -bVS +ovA lYr fwo huF @@ -38048,84 +38048,84 @@ huF huF huF ykc -hic -enU -enU -sDf +eSs +mUo +mUo +mqS oLM -omj -jMq +dOH +hVT lEV -ygn +cdz alD aSU ghI lEV -ygn +cdz alD aSU ghI lEV -ygn +cdz alD -hyr +nVG bLB -mDl +vWE gqE mUy cOs ria -lmu +fPm cSq bLB -xWY -hvO -bih -lzu +wXl +rtE +evN +wRJ nxW -nnF -maN -wFX -maN -xkj -dLP -sdS -sdS -gBi -xkj +bEu +rbT +nlP +rbT +uUs +gve +tDS +tDS +eXJ +uUs nxW -spd -wwk +alB +clw qcN -wNV -wRu +udW +nru qcN -vMU -aQc -qqA +eVL +oHL +arD ykw -hJx -haT -hwN -haT -xBX +xaD +rsp +tkY +rsp +iFE pQp -lXc +bdw vgA bRg fXa -pYv -epY -rMN -sJZ -tEJ -cNu -qNP +egl +vUU +wIM +veQ +pat +bXb +noo gUP -bPe -dTS +miI +vnC oAE -nHC +xNS vYW vYW vYW @@ -38143,13 +38143,13 @@ vYW vYW vYW vYW -uQa -uQa +gMR +gMR vYW vYW vYW vYW -uQa +gMR vYW vYW pGs @@ -38187,27 +38187,27 @@ wUU "} (53,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI kkF huF huF pGs bJI ahb -wdy +tbm vQK pGs pGs @@ -38216,7 +38216,7 @@ huF huF huF fwo -sJm +iku lYr lYr wKW @@ -38230,83 +38230,83 @@ huF huF huF ykc -mIL -enU -nOj -uQK +bti +mUo +sml +eDd uXZ -lhn -pNa -liM -ygn -uWW -weG -fys -liM -ygn -uWW -bQa -fys -liM -ygn -uWW -vyy +hEJ +uJJ +kjl +cdz +caB +gfN +tCU +kjl +cdz +caB +tZW +tCU +kjl +cdz +caB +krI bLB -joN +gEq oXf mfa oXf krM -uEE +xCW xWU bLB -xWY -tam -lss -rHv +wXl +eZe +iue +tUT nxW -qDv -maN -wFX -xkj -cMQ -fnF -paB -bkG -dYZ -gfr +sHK +rbT +nlP +uUs +gkT +tDJ +wQO +vYN +pVE +vrq nxW -tGr -cBW -dOk -mau -dnW -kTG -qqA -aQc -qqA +tWw +mzO +nzg +uZm +puk +vUp +arD +oHL +arD ykw -wcG -woj -uyK -lkI -vZS -iiX -vZS +gwV +kro +ujb +mSl +bAx +iMn +bAx jqu qVL jqu -cZN +rsP ykw -uEI -jPC -jjg -cNu -rMN +cIS +gmt +qZu +bXb +wIM gUP -hbD -dTS -tDo +exc +vnC +xsw ebr vYW ckM @@ -38369,38 +38369,38 @@ wUU "} (54,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI kkF -tOx +llE huF pGs dfs fwo -eVW +xaI lYr arF pGs huF huF huF -xKS -qFC -qFC -qFC -kIJ +bsj +hmT +hmT +hmT +uFc cRx lYr pdn @@ -38412,82 +38412,82 @@ huF huF huF ykc -lDN -saC -saC -lDN +ori +buF +buF +ori ykc -ldr -jMq +pUj +hVT lGT -ygn +cdz uEF aSU ghI lGT -ygn +cdz uEF aSU ghI lGT -ygn +cdz uEF -hyr +nVG vnm -hfR +wHj oXf oXf ceJ oXf -uEE +xCW cSq vnm -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT mKb -ffk -ydP -lKV -sdS -gjy -jgQ -jgQ -wnK -jgQ -wnK +ycS +hLe +uwW +tDS +ntY +orE +orE +jZV +orE +jZV nxW -nRW -fYQ +iyw +akH nSP -fJR -wRu +sri +nru qcN -emC -aQc -qqA +aMB +oHL +arD bIt -uMx -haT -teu -haT -coc +wjF +rsp +vxy +rsp +rKq bIt -nRP +bTt kvG thn thn -vCE -jCA -iMM -oIq -tvv -cNu -rMN +kbw +czP +bKD +mTS +iRQ +bXb +wIM gUP -wkp -tqa +eIL +jah ebr ebr oAE @@ -38513,10 +38513,10 @@ ebr ggX vYW vYW -uQa +gMR vYW vYW -uQa +gMR pGs pGs pGs @@ -38551,41 +38551,41 @@ wUU "} (55,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI kkF -tOx +llE huF pGs ipZ lYr -iSz +udG fwo rIG pGs huF huF dEJ -wMw -wMw -aHy -wMw -mrC +sKr +sKr +cfI +sKr +gds lYr -rjo -gPG +oyB +eTh lYr gLV oYE @@ -38594,78 +38594,78 @@ huF huF huF wFP -lFl -lFl -lFl -lFl +aek +aek +aek +aek uQi -hyr -hyr -hyr -weG -hyr -hyr -pIe -hyr -weG -omj -hyr -hyr -hyr -weG -omj -hyr +nVG +nVG +nVG +gfN +nVG +nVG +lMU +nVG +gfN +dOH +nVG +nVG +nVG +gfN +dOH +nVG aGx -hfR +wHj fyP cwQ kzE fyP -uEE +xCW gNb bLB -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT nxW -qDv -maN -wFX -gBi -mKD -iWf -rzU -hLE -qUQ -aEi +sHK +rbT +nlP +eXJ +kel +xBm +sjl +uZV +eyJ +tlS nxW -spd -lBf +alB +iVb nxW -nkd -wRu +eYw +nru nxW -qqA -aQc -qqA +arD +oHL +arD ykw -ibP -haT -teu -haT -dZZ +kzU +rsp +vxy +rsp +wHr ykw -cIB +wIv waB nTS qWC -lLq +vsN ykw -pRP -uXw -sIU -cNu +hUS +nWo +rHu +bXb kyG kyG gTC @@ -38733,38 +38733,38 @@ wUU "} (56,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI kkF -tOx +llE huF huF tlE lYr -iSz +udG lYr lYr hCw -pbp -loQ -nEp -wMw -wMw -qNE -wMw -mrC +mIr +lMf +uZl +sKr +sKr +pvd +sKr +gds rCf nDk lYr @@ -38776,84 +38776,84 @@ huF huF huF uQi -uaY -uaY -uaY -uaY +wMD +wMD +wMD +wMD uQi -aqw -hyr -pIe -weG -xAs -omj -hyr -pJp -weG -fzx -hyr -hyr -pIe -weG -klY -xEc +xIs +nVG +lMU +gfN +cwu +dOH +nVG +nnJ +gfN +sRK +nVG +nVG +lMU +gfN +xze +sQr vnm uCe lEY ksf -qBR +wNU oXf ugR gNb bLB -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT nxW -qDv -maN -wFX -sdS -ocQ -wnK -qUQ -woI -qUQ -hMh +sHK +rbT +nlP +tDS +nNF +jZV +eyJ +dcB +eyJ +qWz nxW -hyd -gjw +lbS +htD nxW -exH -wRu +dbt +nru nxW -hQo -aQc -qqA +msu +oHL +arD bIt -aVF -haT -teu -haT -jIo +sTy +rsp +vxy +rsp +uRF bIt -cgb +gFL rRm wph qWC -pcK +tSQ ykw -pRX -uXw -sIU -cNu +djv +nWo +rHu +bXb gTC -tIT -fUZ -fhM -sTA -ukw +kxm +srB +axo +sKa +aLJ rTT fuS oAE @@ -38915,127 +38915,127 @@ wUU "} (57,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lUG -rqG +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +jmS +csH kkF -sUj -vJk -lXT -oDX -wcq -mLB -aTg -ixq -dNh -pbp -wMw -wMw -wMw -wMw -wMw -dob -wMw -fhu -lIE -qFC -qFC -qFC -qFC -kME -paq -gSY -xBS +iYu +mJY +kUM +voG +fTT +iwM +qvq +bDa +tPt +mIr +sKr +sKr +sKr +sKr +sKr +hxz +sKr +mes +iRM +hmT +hmT +hmT +hmT +fAN +jzw +ioQ +qHv qqJ -waP -waP -waP -waP +uRb +uRb +uRb +uRb aMC -hyr -cNb -fkF -weG -qkF -leU -leU -xKo -weG -pJp -iJa -leU -hyr -weG -hyr -omj +nVG +cLv +cvl +gfN +nDw +cCD +cCD +rHX +gfN +nnJ +qYk +cCD +nVG +gfN +nVG +dOH epQ sKC epQ epQ epQ sKC -uvw +eKC epQ epQ -ntw -hvO -bih -rHv +jEJ +rtE +evN +tUT qcN -uUW -maN -wFX -dLN -mlR -rLC -aoo -woI -qUQ -xFZ +fPd +rbT +nlP +mJn +lfP +pzc +cdW +dcB +eyJ +kcS shb -eSg -fMq +elv +acM iop -lDS -yfh -vgu -kIK -rLU -qqA +pmZ +bKA +fbv +fBC +fwg +arD ykw -xXe -oVn -jYX -iFK -wsa +uxo +kSv +lZq +qsQ +iOs bIt -eeg -pQF -jcz -jcz -mkn +cpR +iCS +kAK +kAK +jpA ykw -pRX -uXw -sIU -cNu +djv +nWo +rHu +bXb gTC -tIT -rqx +kxm +uVa aae -qHF -wOL +noX +vJM wTJ fuS oAE @@ -39097,19 +39097,19 @@ wUU "} (58,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI xfo xfo ydy @@ -39121,29 +39121,29 @@ itT lYr hkQ bVQ -pbp -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vMe -wMw -vLV -wMw -wMw -wMw -xJb -wMw -wMw -wMw -mcr +mIr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +eYB +sKr +pJa +sKr +sKr +sKr +eTl +sKr +sKr +sKr +ugt ccp qpK qAp @@ -39153,71 +39153,71 @@ qAp qAp bgE bgE -erK +wqL qAp bgE -hyr -rKy -weG -gnm -hyr +nVG +tGG +gfN +wzS +nVG sKC -dUh -dUh -vnN -dUh -oUp -cTg -iSO +nMw +nMw +uzx +nMw +nWa +uid +sfP sKC -xWY -hvO -bih -euM +wXl +rtE +evN +iml qcN qcN -maN -sTW +rbT +qoq qcN nxW nxW nxW -tRs +dkk nxW nSP qcN -cTr -tjF +qvF +fcG qcN -jNS -mJw +ugp +kNq qcN -lUe -aQc -qqA +msW +oHL +arD bIt ykw -cHl +kYV bIt ykw ykw bIt ykw bIt -cHl +kYV ykw bIt bIt -sjD -uXw -sIU -cNu +uhO +nWo +rHu +bXb kyG -qym -rJI +rRY +psy bRi -mBG -pRl +pkC +gMv tuV kyG ebr @@ -39233,9 +39233,9 @@ ebr ebr ksX ksX -wff -dEo -rqa +wiS +hcY +eiq ksX ebr ebr @@ -39279,128 +39279,128 @@ wUU "} (59,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI aQq -eCj +kmY pxa uKr ahg -wIg -asx -asx -nKd +fun +sEM +sEM +rQf nDL -new -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -kME -wMw -mpH -hcz -wMw -ojm -huy +oOq +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +fAN +sKr +bQq +cGs +sKr +tRF +wPD qAp -qVO -cOj -cfs +xAM +pDZ +nzD qAp -hyr -hyr -weG -hyr -hyr -sAY -eYG -eYG -eYG -eYG -eYG -cTg -vfH +nVG +nVG +gfN +nVG +nVG +mwU +hgD +hgD +hgD +hgD +hgD +uid +tKy epQ -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT nxW -xKC -wnK -pVh -uTV -uTV -uTV -uTV -nRT -sWp -kMU -tjF -woI -qUQ +lzo +jZV +snH +cPA +cPA +cPA +cPA +uEU +uFo +xab +fcG +dcB +eyJ qcN nxW nxW qcN -qqA -aQc -qqA -qqA -qqA -qqA -qqA -qqA -qqA -mPl -qqA -qqA -qqA -qqA -gSC +arD +oHL +arD +arD +arD +arD +arD +arD +arD +aoD +arD +arD +arD +arD +qhy jcT -bMV -uXw -sIU -pRP +wxH +nWo +rHu +hUS kyG -wTM -dgP +gxj +kKm bRi -mBG -lvV -nVn +pkC +puJ +sCN kyG ebr ebr @@ -39413,12 +39413,12 @@ ebr ebr ebr ksX -rmr -cto -cto +ouJ +txx +txx uKZ xxk -ghs +dHp ksX ebr ebr @@ -39461,128 +39461,128 @@ wUU "} (60,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI aQq -boI +dpc qaE miR nqQ tlE -asx -asx -jjZ +sEM +sEM +gVQ nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sIQ -wMw -wMw -mpH -wMw -wMw -wMw +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +arz +sKr +sKr +bQq +sKr +sKr +sKr qzi -jTL -jTL -uGs +oLs +oLs +uDu bgE -omj -cTV -weG -jEZ -hyr +dOH +kio +gfN +reD +nVG sKC -hPF -uOo -pqO -pqO -xnV -wEL -ewS +rLy +khw +pLH +pLH +rbY +aDH +jRL sKC -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT nxW -qUQ -hGz -eAG -rtx -yiA -mau -mau -gNe -dTC -yaf -wVD -myj -qUQ +eyJ +vqf +iVM +hpV +uPo +uZm +uZm +rHl +sdo +egF +qrA +nsS +eyJ nxW -cbe -stv -hwa -hwa -aQc -qqA -qqA -qqA -qqA -qqA -qqA -qqA -qqA -kmu -mtU -qqA -qqA -qqA +hNN +oVT +jbJ +jbJ +oHL +arD +arD +arD +arD +arD +arD +arD +arD +xOR +ndR +arD +arD +arD hoP -pRX -lbK -sOj -cug -sGb -xlv +djv +fHc +vqJ +odf +dkL +aZn xZD iJD -gfp -ffY -gvR +pkN +sos +oFK kyG ksX ksX @@ -39595,12 +39595,12 @@ ebr ebr ebr ksX -cto -cto -gLo -cto -cLX -cto +txx +txx +fEw +txx +wIy +txx ksX ebr ebr @@ -39643,146 +39643,146 @@ wUU "} (61,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI aQq -vLw +cGa qaE qdL ahg tlE -asx -asx -cQu +sEM +sEM +ijl lqF -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -nFB -wMw -sIQ -wMw -wMw -wMw -wMw -oJm -hyr -hyr -hyr -uAt -lhn -weG -weG -hyr -hyr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +vvX +sKr +sKr +sKr +sKr +sKr +vvX +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +bXd +sKr +arz +sKr +sKr +sKr +sKr +jlm +nVG +nVG +nVG +fge +hEJ +gfN +gfN +nVG +nVG epQ -upY -mRL -iQl -fyZ -dgq -cTg -tQn +qXQ +iIE +gkk +lZS +lHm +uid +efe epQ -gnx -hvO -bih -rHv +jqE +rtE +evN +tUT nxW -sbX -eIV -sDQ -eIV -pVh -vsJ -eIV -pqY -sIf -lWh -vSh -aMp -igU +ttt +iQx +edH +iQx +snH +wgr +iQx +suo +bmS +iIg +cVl +paI +lIw nxW -vMU -qqA -qqA -eBf -bfq -kIK -gPA -kIK -kIK -jxi -pti -kIK -fqs -kIK -kIK -kIK -kIK -kIK -kqe -uEI -obm -tEJ -pRP +eVL +arD +arD +oeN +fPs +fBC +nai +fBC +fBC +kLZ +kIs +fBC +jsa +fBC +fBC +fBC +fBC +fBC +qqN +cIS +yaD +pat +hUS kyG -nBl +lIT wKi bRi -mBG -ffY -xZN +pkC +sos +iSo kyG -ghs -cto -cto -tVX -swv +dHp +txx +txx +mxn +wVF ksX ksX ksX ksX ksX ksX -kcE -cto +uBw +txx ksX -cDc -cto -cto +wes +txx +txx ksX cty cty @@ -39825,89 +39825,89 @@ wUU "} (62,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vlm -fjv -wBp -gpJ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +tLn +dlV +bra +ghX xfo bGC qzq ahg nQA tlE -eRM -tCG -aEf +oNK +sSY +cJP nDL -wMw -wMw -wMw -aHy -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw +sKr +sKr +sKr +cfI +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr qAp -hyr -eaQ -hyr +nVG +rEo +nVG qAp -hyr -okf -weG -loh -hyr +nVG +ffI +gfN +xUw +nVG sKC -xMs -vqt -rXf -lPq -oUp -cTg -nVy +nUx +vzm +viT +kOi +nWa +uid +pBd sKC -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT lGp qcN nxW qcN nSP -pvk +xhB qcN nxW rcq @@ -39917,14 +39917,14 @@ qcN nxW nxW qcN -vMU -qqA -qqA -aQc -qqA -qqA -aQc -qqA +eVL +arD +arD +oHL +arD +arD +oHL +arD xgG qvo xgG @@ -39936,35 +39936,35 @@ xgG qvo xgG xgG -rGl -sJZ -tEJ -cNu +pXq +veQ +pat +bXb kyG -uzb +mif wKi bRi -mBG -ffY -fYH +pkC +sos +qQg gTC -fhh -cto -qMr -cto -cto -cto -lOc -cto -lOc -cto -lOc -cto -cto -cto -cto -cto -cto +qJL +txx +dIO +txx +txx +txx +nRC +txx +nRC +txx +nRC +txx +txx +txx +txx +txx +txx ksX cty cty @@ -40007,146 +40007,146 @@ wUU "} (63,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -imk -mPk -mPk -wBp -fjv -qwQ -uYJ -bah -uZK -kME -wMw -kME -tzP +pwQ +oeX +oeX +oeX +oeX +ejn +oeX +oeX +bra +dlV +qlr +phl +owH +vGr +fAN +sKr +fAN +uVx psd -asx -asx -nKd +sEM +sEM +rQf nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sTT +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +vvX +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +vvX +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +fRr bgE -jTL -jTL -lpJ +oLs +oLs +bhx bgE -ldr -hyr -weG -hyr -hyr +pUj +nVG +gfN +nVG +nVG sKC -iTd -iTd -dCz -gZq -eYG -uuj -sFJ -bkC -lbr -urA -lss -rHv +qrP +qrP +tSd +jFR +hgD +lLf +onK +mKV +mtB +tbl +iue +tUT qcN -rsj -dQT -uUF -hvh -tqr -mrP -sWp -kDH -bzq -aZq +iVW +wDz +veA +dYj +uES +pAm +uFo +vCG +oNt +jna qcN -qBn -qqA -eBf -kIK -kIK -kIK -ueP -gSC +taH +arD +oeN +fBC +fBC +fBC +ixH +qhy clX -nsc -qqA +osz +arD xgG -azK -xPj -ctw +kmO +rVD +nJe qvo -gvF -pLV -bLI -lrp -pBK +urS +sTF +fTn +cTi +isp qvo -vUM -sJZ -tEJ -cNu +wYx +veQ +pat +bXb gTC -qPG -mCx -aLc -mBG -iSi -tTN +sjB +oWP +fDu +pkC +hCf +pOw gTC -kQb -mUP -mUP -mUP -mUP -mUP -gja -mUP -gja -mUP -gja -mUP -mUP -mUP -mUP -mUP -qWw +uzM +pFg +pFg +pFg +pFg +pFg +fRh +pFg +fRh +pFg +fRh +pFg +pFg +pFg +pFg +pFg +pGf ksX cty hoC @@ -40189,146 +40189,146 @@ wUU "} (64,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -qwQ -uYJ -lTR -kap -wMw -wMw -wMw -mrC +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +bra +qlr +phl +xTL +mtf +sKr +sKr +sKr +gds hzK eat -asx -asx -jjZ +sEM +sEM +gVQ lqF -wMw -iyd -qFC -qFC -qFC -qFC -qFC -qFC -leP -qFC -qFC -qFC -vfG -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -kIJ -wMw -wMw -wMw -wMw -wMw +sKr +gke +hmT +hmT +hmT +hmT +hmT +hmT +uis +hmT +hmT +hmT +gCw +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +uFc +sKr +sKr +sKr +sKr +sKr qAp -nwi -igQ -kCb +pVk +jRM +hor qAp -pJp -omj -weG -hyr -hyr +nnJ +dOH +gfN +nVG +nVG epQ -cpA -cpA -tpB -eYG -aQG -sSZ -ncg +rNX +rNX +vCt +hgD +bBM +rkd +rRw epQ -ePB -hvO -bih -rHv +qfY +rtE +evN +tUT nxW -bFj -dQT -eJI -hZo -nJc -wQd -sWp -gEz -maN -bzq +sBb +wDz +pbH +roa +cVc +xLy +uFo +jbi +rbT +oNt nxW -kmu -qqA -aQc -qqA -qqA -qqA -qqA -qqA +xOR +arD +oHL +arD +arD +arD +arD +arD clX -vtP -fqs -vcd -rRz -oJv -ugW +nsG +jsa +tUx +oth +lQi +wGf olU -maQ -vCf -vCf -oXZ -lhm +aLX +odQ +odQ +nFR +kLx xgG -gfs -sJZ -tEJ -cNu +uxb +veQ +pat +bXb kyG -wHu -uIe -wdx -ses -nFg -nFg -aBO -vAI -cto -fuj -cto -ghs -cto -nuv -cto -nuv -cto -nuv -aCH -ghs -swk -cto -cto -etv +cDC +pac +izq +mJr +uvn +uvn +iKb +raF +txx +hFM +txx +dHp +txx +nlA +txx +nlA +txx +nlA +oXD +dHp +xoZ +txx +txx +jng tdN hoC aOg @@ -40371,98 +40371,98 @@ wUU "} (65,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -rYC -fjv -uYJ -qwQ -pAX -lTR -kap -wMw -wMw -wMw -mrC +pwQ +oeX +oeX +oeX +oeX +oeX +kis +dlV +phl +qlr +jhc +xTL +mtf +sKr +sKr +sKr +gds qhQ -jhM -asx -asx -cQu +uoY +sEM +sEM +ijl nDL -wMw -pbp -wCc -ygZ -ygZ -efU -bNN -cYr -ygZ -efU -onr -ahK -ssv -efU -cgA -ahK -ygZ -efU -onr -ahK -uFE -efU -onr -ahK -wCc -mrC -wMw -wMw -wMw -wMw -wMw +sKr +mIr +bML +wOG +wOG +pZk +iuA +ukK +wOG +pZk +oWC +kxJ +knv +pZk +boK +kxJ +wOG +pZk +oWC +kxJ +bwp +pZk +oWC +kxJ +bML +gds +sKr +sKr +sKr +sKr +sKr weJ qAp coz qAp bgE -hyr -hyr -weG -hyr -leU +nVG +nVG +gfN +nVG +cCD sKC -vqt -cOK -dgq -eYG -fAq -eYG -biz +vzm +kPO +lHm +hgD +pXb +hgD +hzA sKC -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT nxW -swS -sdS -tYg -sdS -xTH -wQd -sWp -dBB -maN -aiY +hnd +tDS +enP +tDS +wCp +xLy +uFo +jmQ +rbT +fFn qcN oHo -qqA -aQc +arD +oHL xgG xgG qvo @@ -40472,33 +40472,33 @@ xgG qvo xgG xgG -xUq -bNC -ugW +msZ +pKk +wGf qvo -hxa -kLd -kLd -gPZ -jlt +tua +cwS +cwS +xmh +vrZ qvo -hTZ -sJZ -tEJ -cNu +rax +veQ +pat +bXb kyG -rYO -jBl -uzr -pOz -qpZ -qpZ +les +edz +jfJ +iDJ +dwo +dwo kyG -rjH -cto -cto -wXC -ghs +dSn +txx +txx +pFn +dHp ksX ksX ksX @@ -40509,8 +40509,8 @@ ksX ksX ksX mSu -iaM -hbi +kee +euT ksX mCF aOg @@ -40553,32 +40553,32 @@ wUU "} (66,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -qwQ -qwQ -qwQ -lTR -qwQ -kap -wMw -wMw -wMw -wMw -tzP +pwQ +oeX +oeX +oeX +oeX +bra +bra +qlr +qlr +qlr +xTL +qlr +mtf +sKr +sKr +sKr +sKr +uVx jhu fFH lNL fFH wPv -wMw -pbp -sHV +sKr +mIr +yai bZU bZU bZU @@ -40600,63 +40600,63 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -paq -rkA -wMw -mcr +eXQ +gds +sKr +sKr +sKr +sKr +sKr +jzw +iCI +sKr +ugt aMC -aCY -hyr -weG -hyr -qkF +dTd +nVG +gfN +nVG +nDw epQ -lRy -dfJ -vDl -qSJ -vcj -leF -ded +gtE +xyD +fpL +wzM +hQv +cIJ +rtq epQ -lzu -oMs -hca -lzu +wRJ +teQ +vyN +wRJ qcN -hDX -kfj -krl -vrh -abf -uNJ -oYB -ubF -ckx -bzq +uZL +qyQ +huA +xIt +jIS +vOV +iTM +mtm +ePT +oNt nxW -qqA -qqA -aQc +arD +arD +oHL xgG -qzd -eQz -vYF -ixd -xgW -pSy -sMS +jKm +ljg +jLM +oWv +fkl +mAU +dnk qvo -pWm -bNC -ugW +ujd +pKk +wGf xgG qvo qvo @@ -40664,10 +40664,10 @@ cNA tpp qvo xgG -oyx -sJZ -tEJ -cNu +aRE +veQ +pat +bXb kyG kyG kyG @@ -40676,11 +40676,11 @@ gTC kyG kyG kyG -etv -cto -cto -cto -qEG +jng +txx +txx +txx +iJp ksX cty cty @@ -40690,9 +40690,9 @@ cty cty cty iFb -kuE -cto -etv +htY +txx +jng ksX mCF aOg @@ -40735,32 +40735,32 @@ wUU "} (67,1,1) = {" wUU -nvv -mPk -mPk -mPk -imk -wBp -qwQ -uYJ -qwQ -qwQ -qwQ -qwQ -kap -sSz -miT -wMw -wMw -wMw -new -new -new -new -new -wMw -pbp -irk +pwQ +oeX +oeX +oeX +ejn +bra +qlr +phl +qlr +qlr +qlr +qlr +mtf +fBL +uwr +sKr +sKr +sKr +oOq +oOq +oOq +oOq +oOq +sKr +mIr +aHo bZU bZU bZU @@ -40782,23 +40782,23 @@ qOh rtm bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vLV -wMw +dRZ +gds +sKr +sKr +sKr +sKr +sKr +sKr +sKr +pJa +sKr aMC coz -qzb -erK -qzb -qzb +bDP +wqL +bDP +bDP epQ sKC epQ @@ -40809,59 +40809,59 @@ epQ sKC epQ lsU -oMs -pCf +teQ +vLd lsU nSP qcN -uTZ -bVu -sdS -rcA -sdS -sWp -alM -rsM -nZi +hTs +pVA +tDS +vks +tDS +uFo +swD +pvD +gEt nxW -qqA -qqA -aQc +arD +arD +oHL qvo -xUq -jMr -kfJ -fFI -rzM -rQY -wiL +msZ +sDp +taW +xEE +sMm +xqW +mAr qvo -xUq -bNC -ugW +msZ +pKk +wGf xgG -vaV -yfQ -xZO -pAa -jbh +gyZ +eUS +kLM +nXM +jcD xgG -vUM -sJZ -tEJ -cNu +wYx +veQ +pat +bXb wSx -wjf -oBR -oBR -oBR -oBR -oBR +fXo +xUo +xUo +xUo +xUo +xUo sBX -etv -cto -oxa -vDr +jng +txx +dhv +iMY ksX ksX cty @@ -40873,8 +40873,8 @@ cty cty iFb xxk -cto -etv +txx +jng xxk meS xSl @@ -40917,32 +40917,32 @@ wUU "} (68,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -fjv -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -kap -cmU -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -pbp -cYZ +pwQ +oeX +oeX +oeX +oeX +dlV +qlr +qlr +jhc +qlr +qlr +qlr +mtf +eUA +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +mIr +oYM bZU bZU bZU @@ -40964,85 +40964,85 @@ bZU bZU bZU bZU -miF -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -obN -aVs -lzX -sdy -sdy -sdy -sdy -mGb -mGb -mGb -mGb -lgP -mGb -mGb -mGb -mGb -lzu -oMs -hca -lzu -fzy +rOV +gds +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +lIN +pMZ +kYg +skc +skc +skc +skc +tXO +tXO +tXO +tXO +jCi +tXO +tXO +tXO +tXO +wRJ +teQ +vyN +wRJ +kta qcN -tDh -ald -iby -acO -fFs -tZE -iZH -kGo -hMV +mTd +iIr +whz +kgX +npd +uHm +xQg +mQD +hGf qcN -qqA -qqA -aQc +arD +arD +oHL xgG -tbQ -jMr -muY -rzM -rzM -oiM -fPo +qMo +sDp +aEu +sMm +sMm +gwp +ruM qvo -xUq -bNC -ugW +msZ +pKk +wGf qvo -aPU -rQY -dWE -mRZ -wbB +sxy +xqW +bDp +quF +xrt xgG -gCi -sJZ -tEJ -cNu +lkQ +veQ +pat +bXb sBX -uNq -uNq -uNq -uNq -uNq -uNq +dam +dam +dam +dam +dam +dam sBX -etv -cto -cto +jng +txx +txx ksX ksX cty @@ -41056,7 +41056,7 @@ cty iFb swV xxk -etv +jng xxk mCF mCF @@ -41099,32 +41099,32 @@ wUU "} (69,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -kap -rgZ -olD -olD -cmk -ufE -iQs -kSz -kSz -kSz -wMw -wMw -pbp -fXH +pwQ +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +qlr +xTL +mtf +jBj +lBE +lBE +jln +iDt +xBt +rJa +rJa +rJa +sKr +sKr +mIr +rgm bZU bZU bZU @@ -41146,37 +41146,37 @@ bZU bZU bZU bZU -evX -mrC -wMw -wMw -wMw -nFB -wMw -wMw -wMw -wMw -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -bih -rHv -fzy +tgn +gds +sKr +sKr +sKr +bXd +sKr +sKr +sKr +sKr +uxd +pMZ +mUc +wyu +yho +wyu +yho +rtE +pdp +rtE +pdp +rtE +pdp +rtE +pdp +rtE +pdp +rtE +evN +tUT +kta qcN qcN nxW @@ -41184,47 +41184,47 @@ qcN nxW qcN qcN -sgy -peA -sFa +lZL +hqg +aAl qcN yil -qqA -aQc +arD +oHL qvo -xUq -jMr -rQY -avy -rzg -rQY -rzM -sSU -rzM -bNC -ugW +msZ +sDp +xqW +czd +urI +xqW +sMm +wzN +sMm +pKk +wGf qvo -rzO -rQY -oiM -qOn -vBW +mWP +xqW +gwp +iZg +swd qvo -mVS -iKa -tvv -pRP +cTQ +xyq +iRQ +hUS sBX -cCO -nfv -nfv -aFh -uNq -pPf +twT +leL +leL +sdc +dam +nNW sBX -etv -cto -cto +jng +txx +txx iFb cty cty @@ -41237,13 +41237,13 @@ cty cty iFb wNz -cto -etv +txx +jng xxk xxk ksX ksX -cba +mnn ksX xxk xxk @@ -41281,32 +41281,32 @@ wUU "} (70,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -lTR -pAX -qwQ -qwQ -lTR -lTR -eDY -tpV -asx -cfq -qAI -bJV +pwQ +oeX +oeX +oeX +oeX +kis +xTL +jhc +qlr +qlr +xTL +xTL +jCF +bVE +sEM +wMi +wdG +uPf ohC euS vWn fWE -ezx -inj -pbp -sHV +dbz +qXa +mIr +yai bZU bZU bZU @@ -41328,85 +41328,85 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -cHY -wMw -wMw -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -jty -hvO -ckI -hvO -bih -rHv -uiq +eXQ +gds +sKr +sKr +sKr +sKr +sKr +boc +sKr +sKr +uxd +pMZ +mUc +wyu +yho +wyu +yho +rtE +pdp +rtE +pdp +rtE +pdp +rtE +oso +rtE +pdp +rtE +evN +tUT +abY nxW -sbX -wMx -jqK -sjR -sbX +ttt +tgM +aJh +iIy +ttt nxW -tex -gJs -niF +vnl +cIy +dJC nxW yil -qqA -dYn -vcd -lFS -bRQ -lFS -lFS -lFS -lFS -fAs +arD +oAq +tUx +atv +wAZ +atv +atv +atv +atv +qmE krL -rRz -eZc -lFS -xqN -lFS -lFS -lFS -bQH -qnf -sBF -cug -gia -avl -cug -xBv -vLk -ptw -ptw -qjd -uNq -mey +oth +eJr +atv +nJD +atv +atv +atv +qiq +gJI +tai +odf +nor +kWc +odf +faJ +pGk +nDa +nDa +hcw +dam +apf wSx -cMw -cto -cto +lKb +txx +txx iFb cty cty @@ -41419,25 +41419,25 @@ cty iFb owM xxk -cto -etv -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto +txx +jng +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx xxk -cto -pOa +txx +adT xxk mCF mCF @@ -41463,32 +41463,32 @@ wUU "} (71,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -lTR -qwQ -qwQ -qwQ -lTR -qwQ -eDY -lZR -asx -lZR -caD -lTR -aTY +pwQ +oeX +oeX +oeX +oeX +bra +xTL +qlr +qlr +qlr +xTL +qlr +jCF +wCq +sEM +wCq +urf +xTL +lyN eGX haR -kap -wMw -tZr -pbp -irk +mtf +sKr +xHs +mIr +aHo bZU bZU bZU @@ -41510,85 +41510,85 @@ bZU bZU bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -pAp -aVs -kdV -gvM -gvM -gvM -gvM -yeH -yeH -yeH -yeH -lNX -bUK -yeH -yeH -yeH -lzu -hrG -mos -rHv -nnw +dRZ +gds +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +uxd +pMZ +fbo +gEh +gEh +gEh +gEh +lex +lex +lex +lex +cHp +rkG +lex +lex +lex +wRJ +bJi +fca +tUT +oOo nSP -tQz -gjw -gjw -jZO -qUQ +pnJ +htD +htD +oQE +eyJ nSP -tyT -peA -ubH +itM +hqg +bbx nxW -qqA -qqA +arD +arD bYT xgG -xUq -tkT -rzg -rzg -rQY -jMr -rzM -sSU -rzM -bNC -rzM -rzM -rzM -rzM -rzM -qFO -iWK -rzM -rMN -kyK -epO -pRP +msZ +cjL +urI +urI +xqW +sDp +sMm +wzN +sMm +pKk +sMm +sMm +sMm +sMm +sMm +blY +usT +sMm +wIM +pyb +xHA +hUS wSx -tXg -cic -cic -ceo -cic -hmm +vmP +iqz +iqz +afK +iqz +nUa wSx -pQw -cto -cto +ouX +txx +txx iFb cty cty @@ -41600,25 +41600,25 @@ cty cty mCF wOR -cto -cto -etv +txx +txx +jng xxk -cto -cto -cto -cto +txx +txx +txx +txx xxk -cto -cto -cto -cto -cto +txx +txx +txx +txx +txx xxk -cto -cto -cto -cto +txx +txx +txx +txx xxk ksX mCF @@ -41645,32 +41645,32 @@ wUU "} (72,1,1) = {" wUU -nvv -mPk -mPk -imk -mPk -xVw +pwQ +oeX +oeX +ejn +oeX +rpD dXg dXg -qwQ -qwQ -qwQ -qwQ -xLB -gnC -mYR -asx -caD -lTR +qlr +qlr +qlr +qlr +knU +tlo +mLn +sEM +urf +xTL dXg -lTR -lTR -kap -wMw -ygY -pbp -cYZ +xTL +xTL +mtf +sKr +uYU +mIr +oYM bZU bZU bZU @@ -41692,23 +41692,23 @@ bZU qOh bZU bZU -miF -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vLV -mcr +rOV +gds +sKr +sKr +sKr +sKr +sKr +sKr +sKr +pJa +ugt aMC bgE -qzb -erK -qzb -qzb +bDP +wqL +bDP +bDP pGJ pGJ pGJ @@ -41716,63 +41716,63 @@ pGJ pGJ pGJ xxV -pXL -oMs -xWY -hvO -bih -rHv -nnw -jCE -qUQ -gjw -eOh -tGr -jnA -jKz -prh -wVa -rEO +oUc +teQ +wXl +rtE +evN +tUT +oOo +vPl +eyJ +htD +nVK +tWw +wNf +ldt +wVk +hgC +vFC qcN -qqA -qqA -aQc +arD +arD +oHL xgG -xJx -oiM -rzM -rzM -kaY -jDO -uEz +bCq +gwp +sMm +sMm +rhl +xqx +ngB itb -bjA -fWz -jhL +hHA +cGf +jEF itb -rft -brM -kTo -map -vBW +waK +xuw +hBG +qpe +swd qvo -mVS -sJZ -tEJ -cNu +cTQ +veQ +pat +bXb sBX -pIz -lpv -wxu -lpv -xFw -lpv -nTj -etv -cto -cto +jQQ +fzk +mRb +fzk +uQu +fzk +evA +jng +txx +txx nNe -dNZ +uaE eCu eov mCF @@ -41782,26 +41782,26 @@ cty hoC mCF wOR -cto -cto -etv -cto -cto -cto -cto -cto -cto -cto +txx +txx +jng +txx +txx +txx +txx +txx +txx +txx xxk -cto -cto -cto -cto -cto -cto -cto -cto -cto +txx +txx +txx +txx +txx +txx +txx +txx +txx ksX mCF aOg @@ -41827,32 +41827,32 @@ wUU "} (73,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ +pwQ +oeX +oeX +oeX +oeX +bra +qlr dXg dXg -qwQ -lTR -qwQ -fHf -wPl -xOX -lId -jLS -lTR +qlr +xTL +qlr +hwP +jdD +urx +pcT +qOP +xTL dXg dXg -aTY -kap -oLa -vUQ -pbp -fXH +lyN +mtf +pNt +iIT +mIr +rgm bZU bZU bZU @@ -41874,23 +41874,23 @@ bZU bZU bZU bZU -kMy -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -kdf -hyr -hyr -hyr -hyr -leU +hKD +gds +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +nwh +nVG +nVG +nVG +nVG +cCD pGJ iaO uRU @@ -41898,61 +41898,61 @@ uRU uRU reG pGJ -neU -oMs -xWY -hrG -mos -rHv -nnw +wNG +teQ +wXl +bJi +fca +tUT +oOo nxW -aXC -gjw -wdh -spd -rNo +tSL +htD +fgS +alB +lQx qcN -maN -rsM -ekp +rbT +pvD +qqf qcN yil -qqA -aQc +arD +oHL qvo -smO -rQY -rzM -vPe -jTi -jMr -wbB +oLj +xqW +sMm +pEN +vRk +sDp +xrt qvo -xUq -tkT -ugW +msZ +cjL +wGf xgG -klu -rQY -oiM -jYl -lEw +dKx +xqW +gwp +ftX +noW xgG -iMp -sJZ -tEJ -cNu +kDq +veQ +pat +bXb sBX -kNe -ptM -lpv -lpv -lpv -uuv +tQK +byk +fzk +fzk +fzk +wvC wSx -rjH -wOC -gMm +dSn +yhe +gSF iFb kxe awJ @@ -41964,9 +41964,9 @@ mCF jdm mCF wOR -cto -cto -etv +txx +txx +jng xxk ksX ksX @@ -41981,9 +41981,9 @@ ksX ksX ksX ksX -azw -cto -cto +moo +txx +txx xxk mCF xGV @@ -42009,32 +42009,32 @@ wUU "} (74,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ +pwQ +oeX +oeX +oeX +oeX +bra +phl dXg dXg -qwQ -qwQ -qwQ -qwQ -xLB -xOX -bCM -rlI -rlI -rlI -rlI -rlI -cEm -fZB -wMw -pbp -sHV +qlr +qlr +qlr +qlr +knU +urx +cHQ +aPv +aPv +aPv +aPv +aPv +dEy +rga +sKr +mIr +yai bZU bZU bZU @@ -42056,23 +42056,23 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sid -hyr -hyr -hyr -hyr -hyr +eXQ +gds +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +kgc +nVG +nVG +nVG +nVG +nVG pGJ nio bte @@ -42080,61 +42080,61 @@ mxv qHJ afg pGJ -bOO -lnG -rKf -erE -ivD -rHv -nnw +vhX +fDI +dLj +tln +gti +tUT +oOo qcN -dUA -qUQ -bVq -woI -xVA +aFc +eyJ +cJk +dcB +cox nxW -mVN -doa -gWu +twz +bfs +gCm qcN dmR yil -aQc +oHL xgG -lMq -jOR -wIH -gkL -xkb -fFu -xxZ +cSP +iYS +hIW +dTV +iTy +cVw +rRM qvo -gFW -mXs -qwB +wNL +rQZ +nCa xgG -lnw -mbt -jBp -ilQ -rzM +erb +jxU +aCi +xzF +sMm qvo -vUM -fPn -jjg -cNu +wYx +kGK +qZu +bXb sBX -uNh -sNa +vJF +tSP ffe lSG ffe kSd wSx -etv -cto -cto +jng +txx +txx iFb kmW mCF @@ -42147,9 +42147,9 @@ mCF mCF wOR noj -cto -etv -cto +txx +jng +txx ksX cty cty @@ -42163,9 +42163,9 @@ cty cty cty ksX -cto -cto -cto +txx +txx +txx xxk mCF mCF @@ -42191,32 +42191,32 @@ wUU "} (75,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +bra +qlr +qlr dXg dXg dXg -qwQ -qwQ -eDY -xOX -tkV -asx -asx -asx -cDm -asx -asx -paq -wMw -pbp -irk +qlr +qlr +jCF +urx +nQG +sEM +sEM +sEM +nfI +sEM +sEM +jzw +sKr +mIr +aHo bZU bZU bZU @@ -42238,51 +42238,51 @@ bZU rtm bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -euH -pLp -wMw -kdf -hyr -hyr +dRZ +gds +sKr +sKr +sKr +sKr +sKr +sKr +glW +bdg +sKr +nwh +nVG +nVG giN -hyr -bmV -afz +nVG +xxe +hVO xyO eDQ eDQ eDQ xyO -fZe -tfj -mGb -lzu -hrG -mos -rHv -shG +jtS +lLh +tXO +wRJ +bJi +fca +tUT +pJZ qcN qcN nxW nSP -hli +isQ nxW qcN nSP -jGk +lvz nxW qcN -pco -qqA -aQc +pyM +arD +oHL xgG xgG qvo @@ -42299,23 +42299,23 @@ xgG xgG xgG qvo -mjA -wQi +lCw +mDu xgG -vUM -sJZ -tEJ -cNu +wYx +veQ +pat +bXb wSx -rOL -sNa +hdC +tSP dnh osX oBJ osX wSx -etv -cto +jng +txx xxk eov mCF @@ -42330,8 +42330,8 @@ mCF wOR xxk mxB -eJS -cto +frk +txx ksX cty cty @@ -42345,9 +42345,9 @@ cty cty cty ksX -cto -cto -cto +txx +txx +txx xxk aOg aOg @@ -42373,32 +42373,32 @@ wUU "} (76,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +rpD +qlr +qlr +qlr dXg dXg dXg dXg -eDY -asx -asx -kzo -izB -fZx -asx -hOp -asx -wMw -wMw -pbp -cYZ +jCF +sEM +sEM +snu +vEh +wiT +sEM +fgL +sEM +sKr +sKr +mIr +oYM bZU bZU bZU @@ -42420,74 +42420,74 @@ bZU bZU bZU bZU -miF -mrC -wMw -wMw -wMw -wMw +rOV +gds +sKr +sKr +sKr +sKr xVQ kyz kqA fOO aMC aMC -aqw +xIs giN -cTV -hyr -bmV -qxu +kio +nVG +xxe +qCQ eDQ svD oNy teT eDQ -lzu -gqX -hvO -ckI -tam -lss -rHv -oMs -kiE -xNY -qqA -qqA -aQc -qqA -kWZ -rVZ -aQc -qqA -nfk -qqA -qqA -aQc -kWZ -rVZ -qqA -qqA -qqA -qqA -qqA -xNY -qqA +wRJ +lFP +rtE +pdp +eZe +iue +tUT +teQ +pBw +dIL +arD +arD +oHL +arD +gop +jUd +oHL +arD +uFw +arD +arD +oHL +gop +jUd +arD +arD +arD +arD +arD +dIL +arD sah jxe eRE iPw pbf xgG -wwd -mjA -rzM +rBM +lCw +sMm qvo -eea -sJZ -tEJ -cNu +gTI +veQ +pat +bXb wSx wSx wSx @@ -42496,7 +42496,7 @@ wSx wSx wSx wSx -etv +jng xxk xxk mCF @@ -42510,10 +42510,10 @@ mCF mCF mCF mnL -cto -cto -etv -cto +txx +txx +jng +txx ksX cty cty @@ -42527,9 +42527,9 @@ cty cty cty ksX -cto -cto -cto +txx +txx +txx ksX aOg aOg @@ -42555,59 +42555,59 @@ wUU "} (77,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -pAX -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +kis +qlr +xTL +jhc +qlr +qlr +qlr dXg xFS -vZR -eha -dKy -qVD -fXu -asx -asx -asx -wMw -wMw -pbp -wCc -uaV -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -uaV -nXR -kvQ -jyq -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -wCc -mrC -wMw -olD -olD -olD +hup +hvL +nXI +cMR +tJy +sEM +sEM +sEM +sKr +sKr +mIr +bML +uDS +uDS +dHj +rPm +iMT +uDS +dHj +rPm +iMT +uDS +dHj +gBq +iMT +uDS +dHj +rPm +iMT +uDS +dHj +rPm +iMT +bML +gds +sKr +lBE +lBE +lBE teH oaO ixw @@ -42617,69 +42617,69 @@ kqA giN giN giN -hyr -bmV -qxu +nVG +xxe +qCQ eDQ eDQ oNy eDQ eDQ -lzu -gqX -hvO -ckI -hvO -mrd -ogq -qgy -mlT -kIK -kIK -kIK -bfq -kIK -jAx -kIK -bfq -akf +wRJ +lFP +rtE +pdp +rtE +xXW +dUr +hlZ +xVg +fBC +fBC +fBC +fPs +fBC +uZf +fBC +fPs +qRF snE -kIK -kIK +fBC +fBC pLF -jAx -kIK -kIK -kIK -kIK -kIK -kIK -fAQ -qqA +uZf +fBC +fBC +fBC +fBC +fBC +fBC +wnA +arD qvo tXE rKB jHJ tXE qvo -mqt -qhN -kXZ +fOL +dOp +jLH qvo -ueg -sJZ -tEJ -cNu +olj +veQ +pat +bXb lNb -apY -vzt -ezt -ezt -ezt -ezt -ezt +wyd +bAp +dKV +dKV +dKV +dKV +dKV toU -cto +txx xxk mCF aOg @@ -42692,9 +42692,9 @@ mCF mCF hoC owM -qEG -cto -etv +iJp +txx +jng xxk xxk mCF @@ -42709,9 +42709,9 @@ cty cty cty ksX -cto -cto -cto +txx +txx +txx ksX hoC mCF @@ -42737,59 +42737,59 @@ wUU "} (78,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ +pwQ +oeX +oeX +oeX +oeX +rpD +qlr +mDV +qlr gVO jaF qgm -lTR +xTL dXg dXg xFS eqg -bJV -bJV -bJV +uPf +uPf +uPf qTs -asx -asx -xOI -qoE -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -jgL -mrC -asx -asx -asx +sEM +sEM +bfo +nzu +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +lBE +bsg +gds +sEM +sEM +sEM kqA aSe rFv @@ -42798,70 +42798,70 @@ iFm kqA lGD giN -hyr -hyr +nVG +nVG qOV -qxu +qCQ eDQ mlN eDQ mxv eDQ -lzu -vfg -yeH -lzu -hrG -mos -rHv -oMs -kiE -qqA -qqA -qqA -qqA +wRJ +sKf +lex +wRJ +bJi +fca +tUT +teQ +pBw +arD +arD +arD +arD yil -qqA +arD gxi -qqA -qqA +arD +arD sKN -qqA -qqA -vMU -qqA -gjs -qqA -qqA -qqA -qqA -qqA -aQc -qqA +arD +arD +eVL +arD +elx +arD +arD +arD +arD +arD +oHL +arD qvo slB iAX bur vRI oxi -qnf -ayo -wbB +gJI +aSG +xrt qvo -ueg -fPn -aBB -ozz -lmd -hys -hys -hys -hys -hys -hys -hys +olj +kGK +ydp +txC +mll +hVh +hVh +hVh +hVh +hVh +hVh +hVh pGP -cto +txx xxk mCF aOg @@ -42874,9 +42874,9 @@ mCF mCF hoC owM -ghs -cto -etv +dHp +txx +jng xxk xxk mCF @@ -42891,9 +42891,9 @@ mCF cty cty ksX -cto -cto -cto +txx +txx +txx ksX hoC mCF @@ -42919,70 +42919,70 @@ wUU "} (79,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +bra +qlr +qlr +xTL scL vLo lnO -qwQ -qwQ -qwQ +qlr +qlr +qlr dXg -qwQ -qwQ -qwQ -pAX +qlr +qlr +qlr +jhc rMl -asx -fZB -asx -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -fZB -asx +sEM +rga +sEM +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +gds +sEM +rga +sEM kqA kEB sSp hlw vhJ bgE -kpN +bCU giN -hyr -hyr -hyr +nVG +nVG +nVG pGJ nio lkH @@ -42990,26 +42990,26 @@ xXp lYF srW pGJ -mFY -oMs -xWY -hvO -bih -rHv -qMl +wJh +teQ +wXl +rtE +evN +tUT +tzl xRF srY -hFE -egp +qnU +wDD xRF yil qio yil jcT -qqA -aQc -qqA -vMU +arD +oHL +arD +eVL clX clX qio @@ -43017,32 +43017,32 @@ qio qio qio qio -qqA -aQc -qqA +arD +oHL +arD xgG duw aKA mcN aAg xgG -sLU -qOn -wbB +mkp +iZg +xrt qvo -ueg -sJZ -tEJ -ouV +olj +veQ +pat +lUR lNb -ezt -ezt -ezt -ezt +dKV +dKV +dKV +dKV ixr ixr ixr -etv +jng xxk xxk mCF @@ -43056,9 +43056,9 @@ mCF mCF cty owM -cto -cto -etv +txx +txx +jng xxk xxk mCF @@ -43073,9 +43073,9 @@ aOg cty cty ksX -cto -cto -cto +txx +txx +txx ksX cty mCF @@ -43101,59 +43101,59 @@ wUU "} (80,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +rpD +qlr +qlr +qlr eGX hKK fLY -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr btU -asx -asx -wCR +sEM +sEM +kQB gsQ icb -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -dlr -asx +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +sKr +gds +sEM +jaO +sEM bgE pTg ycY @@ -43164,7 +43164,7 @@ giN giN giN giN -rfn +aiU pGJ dXd tGV @@ -43172,26 +43172,26 @@ tGV tGV itP pGJ -vNY -oMs -xWY -hrG -mos -rHv -oMs +vlZ +teQ +wXl +bJi +fca +tUT +teQ snl -kTD -lLZ -dKc +jPT +mjv +iBZ snl yil yil tiF yil -qqA -aQc -qqA -qqA +arD +oHL +arD +arD clX qio qio @@ -43199,34 +43199,34 @@ pGj vpQ qio qio -edu -aXz -dkl +llU +gjO +rSt xgG xgG qvo xgG xgG xgG -rgy -mRZ -wDN +ogF +quF +wqN xgG -rGl -sJZ -fnq -cNu +pXq +veQ +sbs +bXb bkM ngg bkM ixr -ezt +dKV dad ixr ixr toU -cto -cto +txx +txx iFb mCF mCF @@ -43238,10 +43238,10 @@ mCF cty cty owM -diu -cto -etv -cto +oUn +txx +jng +txx ksX mCF aOg @@ -43255,9 +43255,9 @@ aOg cty cty ksX -cto -cto -cto +txx +txx +txx ksX cty mCF @@ -43283,29 +43283,29 @@ wUU "} (81,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -ebN -eha -tNy +pwQ +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +dJJ +hvL +scs gXf unH kKX @@ -43314,9 +43314,9 @@ wfK wfK ebm bJI -asx -asx -asx +sEM +sEM +sEM bJI bJI oJb @@ -43324,9 +43324,9 @@ wfK wfK ebm bJI -asx -asx -asx +sEM +sEM +sEM bJI bJI oJb @@ -43342,10 +43342,10 @@ egV egV cKK duN -hyr -nRH -nRH -nRH +nVG +eJU +eJU +eJU giN pGJ pGJ @@ -43354,61 +43354,61 @@ pGJ bhF pGJ pGJ -oBj -oMs -xWY -hvO -mrd -ogq -ciH +lJp +teQ +wXl +rtE +xXW +dUr +uFI tIV -hKe -fWU -mXO +lnb +jgA +cLQ xRF ira yil yil -qqA -qqA -aQc +arD +arD +oHL yil -qqA +arD qio qio pGj iIc -wSL -wSL -axv -lDh -jQe -mHa +iND +iND +uKl +gzw +eCY +fuT sah jxe orH uIl odw qvo -feV -qOn -wbB +xAA +iZg +xrt xgG -xff -sJZ -tEJ -cNu +qCv +veQ +pat +bXb bkM bkM ngg -ipl +aeR ixr exj ixr -gxX -etv -cto -cto +gtT +jng +txx +txx iFb mCF jdm @@ -43421,7 +43421,7 @@ cty cty owM rXS -cto +txx toU xxk ksX @@ -43437,9 +43437,9 @@ aOg aOg ksX ksX -cto -cto -cto +txx +txx +txx ksX ksX hoC @@ -43465,29 +43465,29 @@ wUU "} (82,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy +pwQ +oeX +oeX +oeX +oeX +bra +phl +xTL +xTL +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +xTL +qlr +jCF +scs gPL hKK srU @@ -43496,28 +43496,28 @@ lYr pdn cRx bJI -asx -fZB -asx +sEM +rga +sEM pUi rIG lYr -awr +uPT lYr -aHu +oMQ tEc -asx -viY -asx +sEM +vlv +sEM gfc -sFN +bSX lYr lYr lYr kRH bJI -rgf -asx +sIW +sEM aMC dSo kUj @@ -43525,71 +43525,71 @@ rmV rmV kqA giN -hyr +nVG giN iSW giN iSW -hyr -hyr +nVG +nVG giN -kIV -hyr +nEC +nVG thS -oMs -oMs -xWY -hrG -mos -rHv -oMs +teQ +teQ +wXl +bJi +fca +tUT +teQ snl -qgR -dvw -qWt +qEo +cEp +woB snl yil yil yil gkF -pZD -aQc +gxU +oHL yil -qqA +arD qio qio vDf -wSL -sLO -lum -axv -edu -jQe -xvj +iND +pSc +ioS +uKl +llU +eCY +anp xgG -oWr +lwh iAX iAX tXE xgG -suN -qOn -wbB +ekR +iZg +xrt qvo -fkE -sJZ -tEJ -cNu -qnm +uGD +veQ +pat +bXb +kFd bkM ngg -tsz +ejA chs ixr ixr -gxX -etv -cto +gtT +jng +txx xxk iFb mCF @@ -43603,9 +43603,9 @@ hoC cty owM xxk -cto -etv -tcX +txx +jng +qLB ksX vOo aOg @@ -43618,11 +43618,11 @@ mCF aOg aOg ksX -kgC -wtU -cto -cto -jps +fls +iqn +txx +txx +inJ ksX ksX mCF @@ -43647,50 +43647,50 @@ wUU "} (83,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -aTY +pwQ +oeX +oeX +oeX +oeX +bra +qlr +lyN dXg -aTY -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -sUK +lyN +qlr +xTL +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +xTL +jCF +scs +lBQ +oll eGX wXc -sJm -bVS +iku +ovA kRH eOa -asx -dlr -asx +sEM +jaO +sEM itQ qKZ qyJ -vAZ +oud vmw kRH eOa -svG -dlr -asx +oxk +jaO +sEM itQ qKZ qyJ @@ -43699,7 +43699,7 @@ lYr hZE bVX eOa -asx +sEM aMC dSo rmo @@ -43707,28 +43707,28 @@ qfC xbm kqA giN -hyr +nVG giN -hyr +nVG iSW giN giN -hyr -hyr -oZA -hyr +nVG +nVG +rQH +nVG jrq -oMs -oMs -lzu -oMs -hca -lzu -oMs -yjp -lDk -oKN -nTX +teQ +teQ +wRJ +teQ +vyN +wRJ +teQ +lXp +pVr +rBk +cAS xRF yil yil @@ -43736,42 +43736,42 @@ yil qio sMJ sKN -qqA -qqA +arD +arD qio qio oRD -wSL -wSL -wSL -axv -lDh -boV -dkl +iND +iND +iND +uKl +gzw +vkm +rSt qvo opW nOz hLI vRI oxi -rVI -hQb -lEw +mgw +iIF +noW xgG -hUs -sJZ -tEJ -cNu -qnm +rfJ +veQ +pat +bXb +kFd bkM ngg -qLq +mXf chs ixr ixr nTG -etv -cto +jng +txx xxk mCF mCF @@ -43784,11 +43784,11 @@ mCF mCF cty vVJ -cto -cto -etv -cto -wFx +txx +txx +jng +txx +qcl mCF aOg aOg @@ -43800,12 +43800,12 @@ mCF aOg aOg ksX -kgC -lun -cto -cto -drK -cto +fls +aoA +txx +txx +ufh +txx ksX mCF mCF @@ -43829,59 +43829,59 @@ wUU "} (84,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -rYC +pwQ +oeX +oeX +oeX +oeX +bra +bra +kis dXg -qwQ -lTR +qlr +xTL gVO jaF jaF jaF qgm -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +qlr +qlr +qlr +qlr +qlr +jCF +scs +lBQ +qlr +xTL scL -dOS +nCO rfV lnO -fHf -eha -tNy -eXg -jLS -lTR +hwP +hvL +scs +vlG +qOP +xTL scL oGv lsN lnO -fHf -eha -tNy -eXg -jLS -lTR +hwP +hvL +scs +vlG +qOP +xTL scL oGv -rKM +osN lnO -lTR -fHf -wPl +xTL +hwP +jdD aMC kqA kqA @@ -43889,22 +43889,22 @@ bgE bgE bgE aMC -ldr -hyr +pUj +nVG iSW giN giN giN -cZZ -hyr -ooe -pjk +aDV +nVG +njO +lrr wHk -evV +xck aVQ lsU -oMs -pCf +teQ +vLd lsU fkR fkR @@ -43917,33 +43917,33 @@ pVN pVN fkR fkR -gSn -qqA -tDF +dKD +arD +onw qio qio qio -wSL -wSL -wyE -axv -edu -boV -nLI +iND +iND +lPX +uKl +llU +vkm +kiK qvo tgk bLp dWN sRM xgG -qCk -gsq -atz +ooP +eYZ +qfd xgG -vUM -sJZ -tEJ -ciu +wYx +veQ +pat +bpP bkM bkM chs @@ -43952,7 +43952,7 @@ chs ixr poz nTG -etv +jng xxk xxk mCF @@ -43966,9 +43966,9 @@ mCF mCF mCF wOR -cto -cto -etv +txx +txx +jng xxk xxk mCF @@ -43982,10 +43982,10 @@ ksX ksX ksX loP -cto -cto -cto -wgv +txx +txx +txx +urv xxk xxk xxk @@ -44011,59 +44011,59 @@ wUU "} (85,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +mDV dXg -aTY +lyN scL lsN gcF oGv lnO -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +qlr +qlr +qlr +qlr +qlr +jCF +scs +lBQ +qlr +xTL scL gDI jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +xTL +jCF +scs +lBQ +xTL +xTL scL kvC jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +xTL +jCF +scs +lBQ +xTL +xTL scL oGv oGv lnO -lTR +xTL dXg -fHf +hwP jEG hET hET @@ -44071,7 +44071,7 @@ koZ hET wft aMC -sNT +rjr giN vFl sXb @@ -44084,34 +44084,34 @@ mRq sXb mRq xzj -oxA -oMs -hca -wRB +ego +teQ +vyN +dFP fkR -qps -bVI -pqG -bVI -gan -bVI -bVI -bVI -gKn -nDC -aQc -tDF -tDF -tDF +sJf +iGI +dHM +iGI +ptA +iGI +iGI +iGI +jZE +iEo +oHL +onw +onw +onw qio qio -rja -wSL -wSL -axv -lDh -boV -dkl +rjX +iND +iND +uKl +gzw +vkm +rSt xgG xgG qvo @@ -44122,10 +44122,10 @@ xgG qvo xgG xgG -vUM -sJZ -tEJ -muF +wYx +veQ +pat +lRg pKs chs chs @@ -44135,12 +44135,12 @@ ixr ixr ixr toU -cto +txx xxk meS eOK -gPE -gPE +kJG +kJG cty cty mCF @@ -44148,9 +44148,9 @@ mCF mCF mCF wOR -cto -cto -etv +txx +txx +jng swV xxk mCF @@ -44161,13 +44161,13 @@ cty mCF mCF xxk -wTE -cto -cto -cto -cto +oWJ +txx +txx +txx +txx xxk -cto +txx xxk xxk xxk @@ -44193,59 +44193,59 @@ wUU "} (86,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +phl +xTL scL vom hJq hXe lnO -qwQ -pAX -qwQ -qwQ -uYJ -eDY -tNy -oLZ -qwQ -qwQ +qlr +jhc +qlr +qlr +phl +jCF +scs +lBQ +qlr +qlr eGX hKK fLY -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR +xTL +qlr +jCF +scs +lBQ +xTL +xTL eGX hKK fLY -lTR -lTR -eDY -jzL -oLZ -lTR -lTR +xTL +xTL +jCF +nIK +lBQ +xTL +xTL scL oGv oGv lnO dXg -lTR -lTR +xTL +xTL qTZ hKK bbG @@ -44253,61 +44253,61 @@ hKK hKK gdJ vKv -bZA +sNn giN giN sXb -egH -pJQ -aVt -tzw -dSA -cGc -aVt -iet +iLe +aWC +foV +bXY +gKG +dNq +foV +nWC sXb -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT pVN -cMf -khb +lvA +hcJ vDe vio dHY wrg jfn -hPD -ugi +vwm +xJr pVN -aQc -tDF -bzf +oHL +onw +alg gyz clX -azr -wSL -wSL -wSL -axv -edu -boV -nLI -dkl -bak -cmf -ezc -ezc -bak -uOF -bak -tQy -fEm -vUM -sJZ -tEJ -cNu +nDh +iND +iND +iND +uKl +llU +vkm +kiK +rSt +aTL +vOS +iiN +iiN +aTL +cWM +aTL +mMv +pEd +wYx +veQ +pat +bXb pKs chs chs @@ -44316,13 +44316,13 @@ ixr ixr ixr exj -etv +jng xxk xxk aOg eOK -gPE -nYi +kJG +cbN cty aOg aOg @@ -44332,7 +44332,7 @@ mCF wOR xxk xxk -gAK +lnQ xxk mrY mCF @@ -44343,15 +44343,15 @@ eoV mCF mCF xxk -cto -cto -cto -cto +txx +txx +txx +txx xxk mxB -cto -cto -cto +txx +txx +txx xxk xGV aOg @@ -44375,71 +44375,71 @@ wUU "} (87,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -aTY -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +lyN +xTL eGX hKK vDw aag lnO -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY +qlr +xTL +qlr +qlr +xTL +jCF +scs +lBQ +qlr +qlr +xTL +qlr +qlr +qlr +xTL +jCF +scs +lBQ +xTL +xTL +xTL +xTL +xTL +xTL +xTL +jCF iAP -sgn +smt dXg dXg scL oGv hXR lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR -aTY +xTL +xTL +xTL +xTL +xTL +xTL +xTL +lyN qsb vKv -hsl +nyy iSW giN mRq -oyb +qer jzZ mCY pjn @@ -44448,53 +44448,53 @@ jzZ mCY jzZ mRq -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT pVN -cMf -khb +lvA +hcJ xtZ cbK ara wrC eTP -hPD -uQH +vwm +bRR pVN -aQc -dkl -dkl -mOx -iZT -roT -wSL -wSL -wSL -axv -suE -dkV -sff -sff -hLF -nVk -nVk -hLF -nVk -nVk -nVk -mlT -nbA -nbA -lQA -ptY -uzg +oHL +rSt +rSt +nSh +gJo +iAh +iND +iND +iND +uKl +eQo +cKj +rpt +rpt +gAG +eur +eur +gAG +eur +eur +eur +xVg +uIi +uIi +ejE +uDA +ajf bkM chs chs chs -rCs +bCr ixr ixr ixr @@ -44503,7 +44503,7 @@ xxk xxk eOK mCF -gPE +kJG cty cty aOg @@ -44513,9 +44513,9 @@ mCF mCF owM mxB -cto -etv -cto +txx +jng +txx ksX cty mCF @@ -44526,14 +44526,14 @@ mCF mCF xxk xxk -cto -cto -cto -cto -wgv -cto -cto -cto +txx +txx +txx +txx +urv +txx +txx +txx ksX aBK aOg @@ -44557,71 +44557,71 @@ wUU "} (88,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -aTY -qwQ -aTY +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +qlr +qlr +lyN +qlr +lyN dFt hKK fLY -lTR -qwQ -lTR -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -aqh -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -aTY -lTR -lTR -lTR -eDY -cpF -cpF +xTL +qlr +xTL +qlr +qlr +jCF +scs +lBQ +qlr +qlr +qlr +rjT +qlr +xTL +qlr +jCF +scs +lBQ +xTL +xTL +xTL +lyN +xTL +xTL +xTL +jCF +mxm +mxm dXg -lTR +xTL scL oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -aTY -lTR -lTR +xTL +xTL +xTL +xTL +xTL +lyN +xTL +xTL vEe vKv -hsl +nyy giN -hyr +nVG mRq -nih +jqf jzZ lZa gyw @@ -44630,48 +44630,48 @@ jzZ mCY jzZ mRq -xWY -hvO -bih -rHv -mXx -tpL -khb +wXl +rtE +evN +tUT +dQS +xdl +hcJ urd lQg ara xHt nZk -hPD -mZi -mXx -aQc -qXO -tso -bbW -qQk -per -mVY -lMl -lMl -pRR -edu -aXz -oXm -oXm -xne -xne -xne -xne -xne -cWs -xne -tQy -oDz -lMD -sJZ -tEJ -bZI +vwm +eQK +dQS +oHL +pLE +gZw +xvK +qgt +guu +eUK +nBf +nBf +lAa +llU +gjO +cde +cde +dKI +dKI +dKI +dKI +dKI +pzQ +dKI +mMv +mjc +nRb +veQ +pat +lgw bkM ngg dtH @@ -44680,7 +44680,7 @@ chs ixr ixr ixr -mMZ +kSI xxk xxk mCF @@ -44695,9 +44695,9 @@ mCF mCF owM xxk -cto -etv -cto +txx +jng +txx ksX cty mCF @@ -44710,12 +44710,12 @@ ksX ksX ksX ksX -cDc +wes xxk -cto -cto -esw -cto +txx +txx +mMr +txx ksX aOg mCF @@ -44739,71 +44739,71 @@ wUU "} (89,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -qHl -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -pAX -lTR -lTR -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +kis +qlr +xTL +qlr +qlr +qlr +bDG +qlr +xTL +qlr +qlr +qlr +qlr +qlr +jCF +scs +lBQ +qlr +jhc +xTL +xTL +qlr dXg -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR -lTR -lTR -fHf -cpF -lTR -lTR +qlr +jCF +scs +lBQ +xTL +xTL +lyN +xTL +xTL +xTL +xTL +hwP +mxm +xTL +xTL gVO uTu oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL +xTL +xTL +xTL gVO bEY aMC -hyr +nVG giN mpL sXb -nih +jqf jzZ mCY gyw @@ -44812,34 +44812,34 @@ pKg mCY jzZ mRq -xWY -hvO -bih -rHv -hPD -tpL -khb +wXl +rtE +evN +tUT +vwm +xdl +hcJ urd hla lVW lZh nZk -hPD -mZi -hPD -aQc -qXO -tso -dkl -eUh -izP -khB -nTH -pNT -izP -eUh -aXz -nYy +vwm +eQK +vwm +oHL +pLE +gZw +rSt +aSR +grH +bpS +ndY +wgN +grH +aSR +gjO +pjx xNR ydx xNR @@ -44850,10 +44850,10 @@ xNR ydx xNR xNR -rMN -mzv -pGS -rMN +wIM +orq +tBG +wIM bkM bkM bkM @@ -44861,9 +44861,9 @@ bkM pKs pKs bkM -cNC -etv -cto +nIn +jng +txx xxk mCF mCF @@ -44876,10 +44876,10 @@ aOg mCF mCF owM -cto -cto -etv -cto +txx +txx +jng +txx ksX mCF mCF @@ -44892,12 +44892,12 @@ mCF hoC cty ksX -kgC -cto -cto -cto -cto -cto +fls +txx +txx +txx +txx +txx ksX aOg mCF @@ -44921,51 +44921,51 @@ wUU "} (90,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -msj -daS -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +kyA +mDV +jhc +qlr +qlr +qlr +qlr +qlr +jhc +qlr +qlr +qlr +qlr +qlr +jCF +scs +lBQ +qlr dXg -qwQ -qwQ +qlr +qlr dXg -qwQ -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +qlr +qlr +jCF +scs +lBQ +xTL +xTL +xTL +xTL +xTL +mDV +xTL +xTL +xTL +xTL +xTL scL hXR oGv @@ -44973,19 +44973,19 @@ oGv lnO dXg dXg -daS -lTR -lTR +mDV +xTL +xTL gVO jaF aqq cwE cwE -ngC -hyr +pgc +nVG iSW sXb -djh +xox jzZ jzZ gyw @@ -44994,58 +44994,58 @@ jzZ jzZ sia sXb -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT pVN -cMf -khb +lvA +hcJ urd ara ara hAh nZk -hPD -uQH +vwm +bRR pVN -aQc +oHL bum -azh -oXm -nLI -nLI -ovp -mIQ -fnX -oXm -dkl -boV -dkl +eSA +cde +kiK +kiK +vpR +tki +rhA +cde +rSt +vkm +rSt xNR iLd iTP jZG wmX vYQ -lgb -fEI -wfy +iLy +jCG +eMS xNR gFx aFg umT gFx eDF -vrj -mkt -aUP -jeo -kbp -cTw +hiS +xiE +nDo +ucZ +abW +wEP xxk -etv -cto +jng +txx xxk mCF mCF @@ -45058,11 +45058,11 @@ mCF mCF aOg wOR -cto -cto +txx +txx toU -cto -cba +txx +mnn mCF mCF jdm @@ -45074,11 +45074,11 @@ aOg aOg cty ksX -kgC -cto -cto +fls +txx +txx xxk -cto +txx ksX ksX mCF @@ -45103,71 +45103,71 @@ wUU "} (91,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -aTY -qwQ -qwQ -qwQ -aTY -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +xTL +lyN +qlr +qlr +qlr +lyN +xTL +qlr +qlr +qlr +qlr +xTL +qlr +jCF +scs +lBQ +qlr dXg dXg -qwQ +qlr dXg -qwQ -aqh -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY -cpF -lTR -lTR +qlr +rjT +jCF +scs +lBQ +xTL +xTL +xTL +xTL +xTL +xTL +xTL +jCF +mxm +xTL +xTL scL oGv -tmC +nJx hXR lnO dXg -daS -lTR -lTR -lTR +mDV +xTL +xTL +xTL scL oGv cwE cwE -qqM -hsl -hyr +iWA +nyy +nVG giN -dVq -tzw +lwi +bXY jzZ jzZ rdx @@ -45175,59 +45175,59 @@ pol pol pol pol -dVq -lbr -urA -lss -rHv +lwi +mtB +tbl +iue +tUT pVN -daA -khb +imb +hcJ urd ara ara ara nZk -hPD -uQH +vwm +bRR pVN -dYn -rmB -rmB -dxt -rxa -rxa -wEU -sNp -rmB -rmB -tcq -jyw -xya +oAq +bkt +bkt +sOi +vqS +vqS +aEe +niC +bkt +bkt +xNm +rSJ +nKj ydx sdq wpX qQt jNT qeu -thY -mPI -bTm -snP +oLc +mqI +fQR +loj qhF ffx umT gFx eDF -fvw -tEJ -rMN -qIi -tEJ -cTw +cnG +pat +wIM +pwY +pat +wEP xxk toU -cto +txx xxk mCF mCF @@ -45241,8 +45241,8 @@ aOg xGV wOR xxk -cto -etv +txx +jng xxk ksX aOg @@ -45257,9 +45257,9 @@ aOg cty ksX ksX -cto -cto -cto +txx +txx +txx ksX ksX mCF @@ -45285,51 +45285,51 @@ wUU "} (92,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -pAX -lTR -lTR -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -nFD -lTR -lTR -lTR -lTR -lTR -lTR -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +xTL +qlr +jhc +xTL +xTL +xTL +xTL +qlr +qlr +qlr +qlr +qlr +qlr +jCF +scs +lBQ +qlr +xTL +xTL +qlr +qlr +qlr +qlr +jCF +scs +lBQ +llf +xTL +xTL +xTL +xTL +xTL +xTL +xTL stl -caD -lTR +urf +xTL scL oGv hXR @@ -45337,19 +45337,19 @@ oGv pfd qgm dXg -lTR -lTR -lTR +xTL +xTL +xTL scL oGv cwE cwE -hsl -hsl -hyr -hyr +nyy +nyy +nVG +nVG sXb -esO +rCR dYp wZF fjH @@ -45358,58 +45358,58 @@ wZF jzZ dYX sXb -ePB -hvO -mrd -ogq +qfY +rtE +xXW +dUr riJ -spP -fdw +xMl +lxJ xtZ qRy eMi qRy moK -hPD -uQH +vwm +bRR riJ -aQc -qqA -qqA +oHL +arD +arD pbt iLD pbt pbt -cLY +jTW iLD iLD pbt pbt iLD xNR -wjh +lav vNu vNu oWs qFZ -syL -syL -clD +haS +haS +inY ydx gFx aFg umT gFx eDF -wLF -tEJ -sgq -mAB -tEJ -cTw -cto +kwb +pat +hLG +gDt +pat +wEP +txx toU -cto +txx xxk mCF jdm @@ -45423,9 +45423,9 @@ aOg aOg iHE xxk -cto -etv -cto +txx +jng +txx xxk mCF mCF @@ -45439,9 +45439,9 @@ aOg aOg cty cqZ -cto -cto -cto +txx +txx +txx ksX mCF mCF @@ -45467,71 +45467,71 @@ wUU "} (93,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -aTY -lTR -lTR -lTR -lTR -uoh -lTR -lTR -lTR -cpF -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +xTL +qlr +qlr +jhc +qlr +qlr +qlr +qlr +qlr +qlr +jCF +scs +lBQ +qlr +qlr +qlr +qlr +qlr +qlr +xTL +jCF +scs +lBQ +lyN +xTL +xTL +xTL +xTL +tAs +xTL +xTL +xTL +mxm +xTL scL rMb oGv oGv oGv lnO -lTR -lTR -lTR +xTL +xTL +xTL dXg scL hXR cwE cwE -hsl -hsl +nyy +nyy giN -hyr +nVG sXb -tzw +bXY aJP svH kBo @@ -45540,54 +45540,54 @@ ybm lWf jzZ mRq -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT pVN -cMf -khb +lvA +hcJ urd ara ara ara nZk -hPD -uQH +vwm +bRR pVN -aQc -qqA -pZD +oHL +arD +gxU iLD -lQO -cvW -pYV -iJk -foz -juL -iBz -tPS -lUT +wnp +lDL +tRo +agC +tOu +uNr +xPC +dWs +mMi xNR trC yhy sJq oEc tMY -dKm -xxo -uLP +xgJ +pMI +obl xNR nIF qeh otO qhF tjO -cwe -wpm -vDC -tEJ -tEJ +kpZ +nve +dmT +pat +pat pKs xxk toU @@ -45605,9 +45605,9 @@ hoC hoC owM xxk -cto -etv -cto +txx +jng +txx xxk meS aOg @@ -45621,9 +45621,9 @@ aOg aOg cty cqZ -cto -cto -cto +txx +txx +txx ksX mCF mCF @@ -45649,51 +45649,51 @@ wUU "} (94,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +xTL +phl +qlr +qlr +qlr +qlr +qlr +xTL +qlr +qlr dXg -qwQ -qwQ -eDY -tNy -oLZ -qwQ -aqh -lTR -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR +qlr +qlr +jCF +scs +lBQ +qlr +rjT +xTL +qlr +qlr +xTL +qlr +jCF +scs +lBQ +xTL +xTL +lyN +xTL +xTL dXg -lTR -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL +xTL scL oGv oGv @@ -45701,19 +45701,19 @@ hXR oGv pfd qgm -lTR -lTR -lTR +xTL +xTL +xTL scL oGv cwE bgE yeJ giN -hyr +nVG iSW mRq -tzw +bXY aJP ogj akk @@ -45722,34 +45722,34 @@ akJ lWf jzZ mRq -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT pVN -cMf -khb +lvA +hcJ urd hAh ara ara nZk -hPD -uQH +vwm +bRR pVN -aQc -qqA -qqA +oHL +arD +arD iLD -wno -jCr -iNE -xbA -jCr -jCr -iNE -jCr -bLy +upm +cJn +sQH +vlb +cJn +cJn +sQH +cJn +eyM xNR xNR xNR @@ -45765,14 +45765,14 @@ eUH kIb gFx eDF -fFm -eIT -xdz -yeG -rMN +oJC +xFC +vYL +bel +wIM bkM rXS -etv +jng xxk xxk mCF @@ -45787,9 +45787,9 @@ cty cty owM ksX -cto -etv -cto +txx +jng +txx xxk mCF aOg @@ -45803,9 +45803,9 @@ mCF aOg hoC cqZ -cto +txx mxB -cto +txx ksX mCF mCF @@ -45831,61 +45831,61 @@ wUU "} (95,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +qlr +xTL +qlr +qlr +qlr +qlr +xTL +xTL +xTL +xTL dXg -qwQ -qwQ -eDY -tNy -oLZ -pAX -qwQ -qwQ -qwQ -uoh -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF +qlr +qlr +jCF +scs +lBQ +jhc +qlr +qlr +qlr +tAs +xTL +qlr +jCF +scs +lBQ +xTL +xTL +xTL +xTL +xTL +xTL +xTL +xTL +mxm gVO jaF uTu -tmC +nJx oGv -dOS +nCO hXR oGv lnO -lTR -lTR -lTR +xTL +xTL +xTL scL oGv cwE @@ -45895,7 +45895,7 @@ iks giN iSW mRq -tzw +bXY jzZ oos fGM @@ -45904,43 +45904,43 @@ oos jzZ jzZ mRq -xWY -tam -lss -rHv -mXx -tpL -khb +wXl +eZe +iue +tUT +dQS +xdl +hcJ urd hOv wYa god nZk -hPD -mZi -mXx -aQc -qqA -qqA +vwm +eQK +dQS +oHL +arD +arD iLD -nRy -qlW -gPY -uYF -hen -sJx -kZn -qvQ -bLy +iRX +sKi +rhU +tnR +gTf +xDz +sXr +qOj +eyM ydx bAE kIg nmC cio agi -hDk -aZb -rAy +fXj +tFW +thr xNR fvd aFg @@ -45954,9 +45954,9 @@ eDF gFx bkM aFt -etv -cto -cto +jng +txx +txx xxk ksX ksX @@ -45969,9 +45969,9 @@ ksX ksX eEd eEd -iaM -hbi -iaM +kee +euT +kee eEd mCF mCF @@ -45985,8 +45985,8 @@ mCF mCF mCF cqZ -cto -cto +txx +txx xxk xxk jdm @@ -46013,49 +46013,49 @@ wUU "} (96,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +kis +qlr +qlr +qlr +xTL +qlr +qlr +qlr +qlr dXg dXg -lTR -qwQ -pAX -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy -oLZ -lTR -lTR -lTR +xTL +qlr +jhc +jCF +scs +gcE +aPv +aPv +aPv +aPv +aPv +aPv +aPv +xrY +scs +lBQ +xTL +xTL +xTL dXg dXg dXg -lTR -lTR -lTR +xTL +xTL +xTL scL hXR oGv @@ -46065,65 +46065,65 @@ oGv oGv oGv lnO -lTR -lTR +xTL +xTL gVO lzD upH cwE bgE -fuh -kWR +kra +njy iSW iSW sXb -ibo -tzw -ejK -keE -fpe -tzw -tzw -tzw +iKR +bXY +aQT +qnc +uJt +bXY +bXY +bXY sXb -ntw -hvO -bih -rHv -hPD -tpL -khb +jEJ +rtE +evN +tUT +vwm +xdl +hcJ urd pku ara xHt nZk -hPD -mZi -hPD -aQc -qqA -qqA +vwm +eQK +vwm +oHL +arD +arD iLD -nRy -vPj -cHR -uYF -hen -hWA -nBD -qvQ -uXX +iRX +lyQ +pdb +tnR +gTf +cPm +tMs +qOj +yiT xNR rau vNu vNu iAc qFZ -hPd -hPd -hPd -lvG +bvk +bvk +bvk +nty gFx aFg umT @@ -46134,24 +46134,24 @@ gFx sgz qhF qhF -qnN -mUP +wyn +pFg nDl -mUP +pFg qMW qMW -mUP -mUP -mUP +pFg +pFg +pFg qMW -mUP -mUP +pFg +pFg qMW -mUP -mUP -mUP -mUP -mUP +pFg +pFg +pFg +pFg +pFg pGP xxk eEd @@ -46167,9 +46167,9 @@ mCF mCF mCF ksX -cto -cto -cto +txx +txx +txx xxk mCF mCF @@ -46195,49 +46195,49 @@ wUU "} (97,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +phl +qlr +qlr +qlr +qlr +qlr +xTL dXg dXg -qwQ -qwQ -lTR -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy -oLZ -lTR -lTR -lTR +qlr +qlr +xTL +jCF +dUa +dUa +dUa +dUa +dUa +dUa +dUa +dUa +dUa +dUa +scs +lBQ +xTL +xTL +xTL dXg dXg -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL scL oGv oGv @@ -46247,15 +46247,15 @@ oGv oGv hXR lnO -lTR -lTR +xTL +xTL scL oGv hXR cwE -lat -hyr -xYC +vDo +nVG +uuD dPR giN sXb @@ -46268,44 +46268,44 @@ sXb mRq mRq xzj -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT pVN -cMf -khb +lvA +hcJ xtZ vcc ara gfA eTP -hPD -uQH +vwm +bRR pVN -aQc -qqA -hwa +oHL +arD +jbJ iLD -wno +upm pbt pbt -uYF -hen +tnR +gTf pbt pbt -qvQ -bLy +qOj +eyM ydx kxW pbd mnm vNu wkM -mrR -mPI -bTm -snP +cPy +mqI +fQR +loj qhF ffx umT @@ -46316,25 +46316,25 @@ aZv vZm gFx gFx -cTw -cto -cto +wEP +txx +txx mxB -cto -cto +txx +txx xxk -cto -cto -cto -cto -kul -cto +txx +txx +txx +txx +mhN +txx xxk -cto -cto -cto -cto -etv +txx +txx +txx +txx +jng mxB ksX cty @@ -46349,9 +46349,9 @@ mCF mCF mCF ksX -cto -cto -cto +txx +txx +txx ksX mCF mCF @@ -46377,116 +46377,116 @@ wUU "} (98,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +qlr +qlr +qlr +xTL +xTL dXg -qwQ -qwQ -lTR -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy -oLZ -daS -lTR -lTR -lTR +qlr +qlr +xTL +jCF +scs +bxN +uPf +uPf +uPf +uPf +uPf +uPf +uPf +hvL +scs +lBQ +mDV +xTL +xTL +xTL dXg -lTR -aTY -lTR -lTR +xTL +lyN +xTL +xTL scL oGv hXR oGv -tgE +pDf hXR gJy oGv lnO -lTR -lTR +xTL +xTL scL vcz hXR cwE -leU -hyr -hyr -nRH -nRH -nRH -nRH -nRH -nRH -vqZ -hyr -aXm -hyr -hyr +cCD +nVG +nVG +eJU +eJU +eJU +eJU +eJU +eJU +mUr +nVG +bvG +nVG +nVG qAp -xWY -xuW -bih -rHv +wXl +vmu +evN +tUT pVN -cMf -khb +lvA +hcJ xKv gWd vfj qBy fbQ -hPD -uQH +vwm +bRR pVN -aQc -qqA -bft +oHL +arD +dnZ pbt -kPj -xFO -stU -uYF -hen -jCr -jCr -qvQ -cGd +pTw +nwD +lXy +tnR +gTf +cJn +cJn +qOj +faU xNR ybL vNu pRs vNu vzH -bNt -syL -syL +nUO +haS +haS ydx gFx aFg @@ -46499,25 +46499,25 @@ bpT vZs lWJ bkM -dIK -cto -cto -cto -cto -cto -cto -cto -cto -eBT -bnc -fhV -lYi -oeO -cto +gcr +txx +txx +txx +txx +txx +txx +txx +txx +eLM +smM +cSm +rmY +iSZ +txx ubJ -cto -eJS -owk +txx +frk +kBi ksX cty cty @@ -46532,9 +46532,9 @@ aOg mCF xxk xxk -cto -cto -cba +txx +txx +mnn vOo mCF mCF @@ -46559,49 +46559,49 @@ wUU "} (99,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -vEg -qwQ -qwQ -eDY -tNy -nhY -rlI -rlI -rlI -rlI -bvF -rlI -hAI +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +phl +xTL +qlr +qlr +qlr +qlr +qlr +qlr +xTL +xTL +jDG +qlr +qlr +jCF +scs +xVB +aPv +aPv +aPv +aPv +mul +aPv +syG qDr -tNy -oLZ -lTR -lTR -lTR +scs +lBQ +xTL +xTL +xTL gVO jaF qgm -lTR -lTR -lTR +xTL +xTL +xTL eGX hKK sRs @@ -46611,64 +46611,64 @@ oGv jSX hKK fLY -lTR -lTR +xTL +xTL scL hXR oGv cwE -cTV -hyr -sZe -hyr +kio +nVG +wgP +nVG iSW giN iSW iSW giN -vAz +dpN giN giN -rbd -hyr +jrd +nVG jrq -xWY -hvO -bih -euM +wXl +rtE +evN +iml fkR -oBG -ufV -ufV -ufV -rIN -ufV -ufV -ufV -lTb +uqV +uRk +uRk +uRk +ajW +uRk +uRk +uRk +tCe fkR -pvs -qqA -gYg +kuD +arD +fSE pbt -qXn -hiD -hiD -fQE -oFq -hiD -hiD -oFq -nzr +foP +aGV +aGV +pdR +cRb +aGV +aGV +cRb +jvJ xNR pYx sQs rSX aIu owY -klP -ryG -cIP +hWc +sjf +wyy xNR nWS aFg @@ -46681,13 +46681,13 @@ oKo laa gFx pKs -ghs -cto -cto -gLo -oEX -ghs -cto +dHp +txx +txx +fEw +wNi +dHp +txx bkM bkM pKs @@ -46697,9 +46697,9 @@ pKs pKs bkM aFt -cto -etv -cto +txx +jng +txx ksX cty cty @@ -46714,9 +46714,9 @@ aOg mCF xxk xxk -cto -cto -cba +txx +txx +mnn mCF mCF mCF @@ -46741,105 +46741,105 @@ wUU "} (100,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +xTL +qlr +qlr +qlr +qlr +qlr +qlr +xTL +qlr +qlr +qlr +qlr +qlr +jCF +scs +jXO gYh gYh tSK eQm gYh rHE -uKY -eDY -tNy -oLZ -lTR -aTY -lTR +bdC +jCF +scs +lBQ +xTL +lyN +xTL scL vGn lnO -lTR -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL +xTL scL hXR oGv oGv lnO -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL eGX sRs oGv cwE bgE -rAj -bGe -hyr +kji +wKm +nVG iSW -cZZ -iJa +aDV +qYk nKy pth uBV -jjN +gzy giN -hyr -hyr +nVG +nVG qAp -xWY -hvO -bih -rHv +wXl +rtE +evN +tUT fkR fkR pVN pVN pVN -xDy +fdX pVN pVN pVN fkR fkR -ojJ -kEV -iRZ +xVi +uEZ +fhs pbt iLD -jCr -fiv +cJn +uNp uWA iLD -jCr -fiv +cJn +uNp iLD iLD xNR @@ -46852,7 +46852,7 @@ xNR ydx xNR xNR -ldJ +hjS aFg umT scD @@ -46871,17 +46871,17 @@ bkM pKs bkM bkM -gIB -uLY -oFd -cLD -oFd -mcs -kus +vTh +ttk +gXz +meB +gXz +nSn +gyb aFt -wOC -etv -cto +yhe +jng +txx ksX cty cty @@ -46895,9 +46895,9 @@ phA aOg mCF ksX -cto -cto -bng +txx +txx +jQv ksX mCF mCF @@ -46923,69 +46923,69 @@ wUU "} (101,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +xTL +qlr dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -ctE +qlr +qlr +qlr +qlr +qlr +qlr +xTL +qlr +qlr +xTL +jCF +scs +jXO gYh aDv opd iEe -diK +aVP rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR +lBQ +jCF +scs +lBQ +xTL +xTL +xTL eGX hKK fLY -lTR -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL +xTL scL oGv hXR oGv lnO -lTR -lTR -lTR -nFD -aTY +xTL +xTL +xTL +llf +lyN scL oGv cwE bgE -jEZ -cjf -jqr -vEM +reD +jKd +bXm +ebf bgE pGs pGs @@ -46996,42 +46996,42 @@ iSW uXR pGs pGJ -gnx -hvO -bih -mux -pot -kmb -mvI -mvI -mvI -wVE -mvI -mvI -pot -fJb -mvI -wVE -mvI -mvI -mvI -uLY -pGS -pGS -ihn -uLY -pGS -pGS -uLY -mvI -mvI -mvI -mvI -mvI -wmC -aED -pie -guE +jqE +rtE +evN +xXY +plM +mKo +vkz +vkz +vkz +gLL +vkz +vkz +plM +hdx +vkz +gLL +vkz +vkz +vkz +ttk +tBG +tBG +iwy +ttk +tBG +tBG +ttk +vkz +vkz +vkz +vkz +vkz +ioV +oVB +xXl +kqo qus dUS gFx @@ -47044,25 +47044,25 @@ gFx vZm gFx gFx -rMN -lMv -rMN -mvI -mvI -wmC -mvI -uLY +wIM +msX +wIM +vkz +vkz +ioV +vkz +ttk pKs -iTF -tEJ -tEJ -tEJ -tEJ -tEJ -gbG +qxC +pat +pat +pat +pat +pat +cjQ upL -cto -etv +txx +jng xxk ksX cty @@ -47077,9 +47077,9 @@ aOg aOg mCF cqZ -cto -cto -cto +txx +txx +txx xxk mCF aOg @@ -47105,61 +47105,61 @@ wUU "} (102,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +mDV +qlr dXg -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +qlr +xTL +qlr +qlr +qlr +qlr +qlr +qlr +xTL +qlr +jCF +scs +jXO gYh dlh gLw sKF sKF rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF -lTR -lTR +lBQ +jCF +scs +lBQ +xTL +xTL +xTL +xTL +xTL +xTL +xTL +xTL +mxm +xTL +xTL scL oGv -xzc +uFh oGv lnO -daS -lTR -lTR -lTR -lTR +mDV +xTL +xTL +xTL +xTL scL oGv foQ @@ -47178,42 +47178,42 @@ pGs pGs pGs pGJ -xWY -hvO -bih -hvO -tEJ -rtV -tEJ -tEJ -tEJ -uXw -tEJ -tEJ -tEJ -rwV -tEJ -uXw -tEJ -tEJ -hgB -tEJ -aLn -tEJ -uXw -tEJ -tEJ -tEJ -tEJ -qDt -xAO -tvv -tEJ -tEJ -tEJ -oMl -oKx -bGy +wXl +rtE +evN +rtE +pat +pHW +pat +pat +pat +nWo +pat +pat +pat +efv +pat +nWo +pat +pat +qLL +pat +soN +pat +nWo +pat +pat +pat +pat +hVG +wDg +iRQ +pat +pat +pat +uQj +gCL +giz tak pJs umT @@ -47226,26 +47226,26 @@ umT kTs umT umT -oMl -tEJ -bGy -aLn -tEJ -tEJ -tEJ -rMN -etf -rMN -tEJ -tEJ -tEJ -hgB -tEJ -gbG +uQj +pat +giz +soN +pat +pat +pat +wIM +vPR +wIM +pat +pat +pat +qLL +pat +cjQ upL -fky -etv -cto +uXF +jng +txx ksX cty cty @@ -47259,9 +47259,9 @@ aOg mCF hoC cqZ -cto -cto -cto +txx +txx +txx xxk aOg aOg @@ -47287,70 +47287,70 @@ wUU "} (103,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +kis +qlr +qlr +qlr dXg -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +qlr +qlr +qlr +xTL +qlr +qlr +qlr +qlr +qlr +jCF +scs +jXO rHE rjM gLw anA jUB ipi -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -uoh -lTR +lBQ +jCF +scs +lBQ +xTL +xTL +xTL +xTL +xTL +xTL +tAs +xTL stl -cpF +mxm gVO uTu -rKM +osN oGv oGv lnO -aTY -lTR -lTR -lTR -lTR +lyN +xTL +xTL +xTL +xTL scL oGv rMb oGv oGv -vss -vss +dUa +dUa gJy -dOS +nCO pGs pGs pGs @@ -47360,42 +47360,42 @@ pGs pGs pGs pGJ -fQr -hvO -pXp -oZw -oGc -ngm -oGc -oGc -oGc -eAJ -oGc -oGc -oGc -lEc -cit -eAJ -oGc -oGc -eAJ -oGc -oGc -oGc -eAJ -oGc -oGc -oGc -oGc -kyr -eVU -sOj -oGc -oGc -oGc -bNi -lEc -tSg +wHM +rtE +mVs +xLU +yhx +oJc +yhx +yhx +yhx +mJu +yhx +yhx +yhx +pXH +gYZ +mJu +yhx +yhx +mJu +yhx +yhx +yhx +mJu +yhx +yhx +yhx +yhx +ejx +wLN +vqJ +yhx +yhx +yhx +kop +pXH +jRV hNb fjC hNb @@ -47408,26 +47408,26 @@ hNb rBa hNb hNb -jfD -oGc -tSg -oGc -oGc -oGc -oGc -cug -cug -cug -oGc -oGc -oGc -ezW -tEJ -gbG +xfI +yhx +jRV +yhx +yhx +yhx +yhx +odf +odf +odf +yhx +yhx +yhx +sbC +pat +cjQ upL -cto -etv -cto +txx +jng +txx ksX ksX ksX @@ -47441,9 +47441,9 @@ mCF mCF mCF cqZ -cto -cto -cto +txx +txx +txx xxk aOg aOg @@ -47469,50 +47469,50 @@ wUU "} (104,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -bLl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +xTL +qlr +jCF +scs +nCX rHE ijO gLw hso ijO rHE -wJl -mEy -tNy -oLZ -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +gcE +xrY +scs +lBQ +xTL +tAs +xTL +xTL +xTL +xTL +xTL +xTL +xTL +xTL scL oGv oGv @@ -47521,16 +47521,16 @@ oGv pfd jaF oAC -lTR -lTR -lTR +xTL +xTL +xTL eGX hKK sRs oGv -kin -vss -vss +aJy +dUa +dUa oGv hXR pGs @@ -47542,42 +47542,42 @@ pGs pGs pGs pGJ -arg -oMs -qPs -lzu -rBP -afx -rBP -rBP -rBP -rBP -rBP -gvE -rBP -qQN -fjU -rBP -rBP -rBP -gvE -uLY -rBP -rBP -rBP -rBP -rBP -dYy -rMN -pGi -poU -dYy -hUx -hUx -hUx -cNF -oBQ -rMN +vRT +teQ +kMn +wRJ +uds +bpe +uds +uds +uds +uds +uds +aeF +uds +oPk +mob +uds +uds +uds +aeF +ttk +uds +uds +uds +uds +uds +erp +wIM +mmo +wyw +erp +hnC +hnC +hnC +qrh +jsK +wIM gFx vZm lEM @@ -47590,30 +47590,30 @@ lFA wba mTD gFx -mXV -qZR -oDz -gFt -rBP -gvE -rBP -uLY +qXo +ljn +mjc +ptq +uds +aeF +uds +ttk pKs -uLY -uLY -uLY -uLY -iKa -xAO -gmT +ttk +ttk +ttk +ttk +xyq +wDg +eRR upL -cto -etv +txx +jng xxk ksX -cFe -cFe -cFe +pwv +pwv +pwv ksX iFb iFb @@ -47622,10 +47622,10 @@ mCF mCF mCF mCF -cba -cto -cto -cto +mnn +txx +txx +txx ksX aOg aBK @@ -47651,68 +47651,68 @@ wUU "} (105,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -eDY -vss -vss +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +xTL +xTL +jCF +dUa +dUa gLw sKF gLw gLw gLw gLw -vss -vss -tNy -oLZ -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +dUa +dUa +scs +lBQ +xTL +xTL +xTL +xTL +mDV +xTL +xTL +xTL +xTL +xTL scL oGv hXR oGv -tmC +nJx oGv oGv lnO -lTR -lTR -daS -lTR -lTR +xTL +xTL +mDV +xTL +xTL scL hXR oGv -vss -gMi +dUa +kdg oGv oGv pGs @@ -47724,22 +47724,22 @@ pGs pGs pGs juW -wUj -bLN -viP -wUj +kvk +jkZ +gbs +kvk juW nTG nTG nTG lNb -vqd +eKK lNb nTG nTG nTG pNf -vqd +eKK lNb nTG nTG @@ -47750,15 +47750,15 @@ wVf sPs wVf wVf -qUf -uIH -jQg +qBL +vms +tGL wVf -qhZ +uIh wVf -qhZ +uIh wVf -qhZ +uIh wVf wjV abE @@ -47784,30 +47784,30 @@ pYn kgw kgw pYn -uLY -pEE -tEJ -buH +ttk +umo +pat +kLr aFt -cto +txx toU -cto -cto -qYE -cto -cto -cto -ghs +txx +txx +urN +txx +txx +txx +dHp iFb cty cty mCF jdm mCF -cba +mnn xxk xxk -cto +txx ksX mCF aOg @@ -47833,70 +47833,70 @@ wUU "} (106,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +mDV +qlr +xTL +qlr +qlr +qlr +qlr +qlr +xTL dXg dXg -qwQ -eDY -vss -vss +qlr +jCF +dUa +dUa gLw gLw mhf sKF gLw gLw -vss -vss -tNy -wJl -rlI -rlI -rlI -rlI -lTR -rlI -lTR -lTR -lTR -lTR +dUa +dUa +scs +gcE +aPv +aPv +aPv +aPv +xTL +aPv +xTL +xTL +xTL +xTL scL oGv oGv ibs -lQW +dTK gux -kGD +xZj kgm -mQG -lTR -lTR -aTY -lTR +sGu +xTL +xTL +lyN +xTL scL oGv nee -vss -gMi +dUa +kdg oGv -qFe +lRF oGv pGs pGs @@ -47906,23 +47906,23 @@ pGs pGs pGs juW -faP -ftF -bEX -pnL +okP +kWz +nYB +dtB juW -gDh -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -gDh -uEc -viK -xJZ -xJZ +vBb +bJd +bJd +bJd +bJd +bJd +bJd +vBb +pHq +tVu +bJd +bJd wqb kBZ hPj @@ -47932,54 +47932,54 @@ qyk jBw hlK wVf -gwG -pJn -krP +sfE +soO +fli wVf -kof -cHf -tGA -cHf -gwO +cuQ +uGT +tub +uGT +vda wVf -pBS -viK -xJZ -yeF +rij +tVu +bJd +dOW cdb cdb wjV cdb cdb -bbK +aCp cdb -rRq -usB +wgt +ogS pYn -qTz -nWs -nWs -sre -nWs +oEv +uBN +uBN +eDE +uBN pYn iIt xFE cBq pYn -tVl -fPn -aBB -tuL +eYy +kGK +ydp +lJZ mzt -mUP -chE -mUP -mUP -mUP -uVy -mUP -qWw -cto +pFg +dwi +pFg +pFg +pFg +nzV +pFg +pGf +txx iFb cty cty @@ -47987,9 +47987,9 @@ hoC mCF jdm ksX -cto -cto -cto +txx +txx +txx xxk mCF aOg @@ -48015,68 +48015,68 @@ wUU "} (107,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +qlr +xTL +qlr +qlr +qlr +qlr +qlr +qlr +xTL dXg -lTR +xTL dXg -qwQ -eDY -tNy -aJD +qlr +jCF +scs +ieD eQm jFt qCE abu gLw eQm -qLf -eha -vss -vss -vss -vss -vss -vss +bxN +hvL +dUa +dUa +dUa +dUa +dUa +dUa stl -lTR -lTR -lTR -lTR -cpF +xTL +xTL +xTL +xTL +mxm eGX sRs lsN hXR ibs eFB -kGD +xZj mnz -lTR -lTR -lTR +xTL +xTL +xTL gVO jaF uTu oGv oGv -vss -vss +dUa +dUa oGv oGv oGv @@ -48088,23 +48088,23 @@ juW juW juW juW -xzr -eFJ -trh -qdk -wUj -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -viK -xJZ -xJZ +gXY +lcv +wzG +gjT +kvk +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +tVu +bJd +bJd wqb kBZ hPj @@ -48114,54 +48114,54 @@ ioc vqY idw sPs -gwG -pJn -krP -qhZ -gwG -xOo -xOo -xOo -nHA -qhZ -uqw -viK -xJZ -xJZ -xJZ -ccU -sCA -aKk -xJZ -xJZ +sfE +soO +fli +uIh +sfE +hXc +hXc +hXc +hgb +uIh +gcG +tVu +bJd +bJd +bJd +mcj +wuu +elw +bJd +bJd cdb -wMn -viK +oTz +tVu lhJ -wot -jvh -jvh -jvh -wot +szW +xIw +xIw +xIw +szW pYn wkq wCE sMn rrp -uLY -sJZ -tEJ -uLY +ttk +veQ +pat +ttk aFt -xZv -mPT -cto -cto -cto -cto -cto +dLT +scz +txx +txx +txx +txx +txx toU -cto +txx cty cty cty @@ -48170,8 +48170,8 @@ mCF mCF xxk xxk -cto -cto +txx +txx rgg mCF mCF @@ -48197,96 +48197,96 @@ wUU "} (108,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -lTR -qwQ -qwQ -qwQ -lTR -qwQ -lTR -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +mDV +xTL +qlr +qlr +qlr +xTL +qlr +xTL +qlr +xTL dXg -lTR -qwQ -eDY -tNy -ctE +xTL +qlr +jCF +scs +jXO eQm gLw saQ gLw mhf eQm -oLZ -eDY -tNy -qLf -bJV -bJV -bJV -lTR -bJV -lTR -lTR -lTR -cpF -lTR -lTR +lBQ +jCF +scs +bxN +uPf +uPf +uPf +xTL +uPf +xTL +xTL +xTL +mxm +xTL +xTL scL oGv -vss +dUa oGv hwL -pun +wkz oTE -lTR -lTR -lTR +xTL +xTL +xTL scL lsN oGv -dOS +nCO nee -vss -gMi +dUa +kdg oGv hXR oGv hXR pGs juW -wGs -oVm -fLZ -esB +wbr +scB +rvr +wRY juW -xzr -hus -wuR -rVS -kSN -lVc -lVc -lVc -lVc -lVc -uTq -lVc -lVc -lVc -qRP -xJZ -xJZ +gXY +gkg +off +fIN +ssF +vHY +vHY +vHY +vHY +vHY +nce +vHY +vHY +vHY +rlx +bJd +bJd wqb kBZ wVf @@ -48296,44 +48296,44 @@ jQB psb idw sPs -gwG -pJn -krP +sfE +soO +fli wVf -vyX -pEv -xOo -iIL -qDs +riu +ljr +hXc +sAA +uSw wVf -qvO -viK -xJZ -xJZ -xJZ -xJZ -jew -iXR -xJZ -xJZ -cYB -gDh -viK +wMd +tVu +bJd +bJd +bJd +bJd +eby +lYA +bJd +bJd +jej +vBb +tVu kgw -nXB -jvh -mPf -qdd -dhp +lqX +xIw +xXQ +hLf +bTI pYn wic pqj ydI jff -uLY -pEE -tEJ -uLY +ttk +umo +pat +ttk bkM pKs bkM @@ -48341,8 +48341,8 @@ bkM bkM pKs bkM -cto -etv +txx +jng xxk cty cty @@ -48351,9 +48351,9 @@ cty mCF mCF xxk -cto -cto -cto +txx +txx +txx ksX hoC mCF @@ -48379,96 +48379,96 @@ wUU "} (109,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +kis +qlr +xTL +qlr +qlr +qlr +xTL dXg -lTR -lTR -qwQ -lTR -lTR -qwQ -eDY -tNy -ctE +xTL +xTL +qlr +xTL +xTL +qlr +jCF +scs +jXO gYh xuJ fgW sKF trB gYh -eBm -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +yfJ +jCF +scs +lBQ +xTL +xTL +xTL +xTL +xTL +xTL +xTL +xTL +xTL +xTL +xTL scL oGv -vss -vss +dUa +dUa oGv oGv lnO -lTR -lTR -lTR +xTL +xTL +xTL scL oGv oGv oGv hXR -vss -gMi +dUa +kdg oGv oGv oGv eCg ltB szp -qdk -eFJ -cgj -iPH +gjT +lcv +nNf +rUD szp -xzr -eFJ -trh -qdk -wUj -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -mvA -xJZ -xJZ +gXY +lcv +wzG +gjT +kvk +jBL +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +sYH +bJd +bJd wqb kBZ wVf @@ -48478,54 +48478,54 @@ idw eRD gyX eTb -mnc -xMq -krP +kkn +tSB +fli wVf wVf xvF -aiR -qhZ +bPV +uIh wVf wVf -okI -lab -lVc -lVc -lVc -jfw -okJ -gjz -lVc -iFZ -xJZ -xJZ -viK +aHz +wCH +vHY +vHY +vHY +awe +qHg +ghE +vHY +xYA +bJd +bJd +tVu pYn -diQ -hhW -tKI -doO -bBo +tVE +kGm +kSR +qOm +sQY bMf rPD bTA iOQ qOF -orT -iKa -tvv -uLY +qYA +xyq +iRQ +ttk pKs -hrI -pXG +rsx +aHn bkM -vAR -dQV +hFw +opk bkM -cto -etv -cto +txx +jng +txx cty cty cty @@ -48533,9 +48533,9 @@ cty cty mCF xxk -cto -cto -qEG +txx +txx +iJp ksX cty hoC @@ -48561,96 +48561,96 @@ wUU "} (110,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +phl +xTL +qlr +qlr +qlr +qlr +xTL +qlr +qlr +qlr +qlr dXg -qwQ -eDY -tNy -ctE +qlr +jCF +scs +jXO eQm gyE xQJ uVR saQ eQm -oLZ -eDY -tNy -oLZ +lBQ +jCF +scs +lBQ dXg dXg -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR +xTL +tAs +xTL +xTL +xTL +xTL +xTL +xTL +xTL scL oGv -vss -vss +dUa +dUa jSX hKK fLY -lTR -lTR -daS +xTL +xTL +mDV scL oGv -rKM +osN hXR oGv -vss -vss +dUa +dUa hmR oGv oGv oGv oDU szp -caV -noC -ktN -qSj -nGE -qSj -ktN -che -qdk +tFN +lkd +ahy +kLQ +dBX +kLQ +ahy +jMf +gjT juW wqb -crC -xJZ +xom +bJd ryD -xJZ +bJd ryD joV wqb wqb -viK -xJZ -tBm +tVu +bJd +iql wqb kBZ wVf @@ -48660,29 +48660,29 @@ idw idw idw wVf -tCM -xMq -fqY +hos +tSB +qUX wVf -qPk -uFJ -xOo -uFJ -eMD +gkx +oOI +hXc +oOI +ntN wVf wVf wVf -qhZ +uIh wVf -qhZ +uIh wVf -vOr -qhZ +pfJ +uIh wVf -viK -xJZ -xJZ -viK +tVu +bJd +bJd +tVu pYn pYn kgw @@ -48694,20 +48694,20 @@ nto pqj ydI pYn -jDW -uVY -sIU -uLY +umM +vxJ +rHu +ttk vke -iad -fkj +wOd +tWL pKs -tXF -uhD +keo +sdV bkM -rmr -etv -cto +ouJ +jng +txx iFb cty cty @@ -48715,9 +48715,9 @@ cty cty cty cqZ -ghs +dHp xxk -cto +txx ksX cty cty @@ -48743,96 +48743,96 @@ wUU "} (111,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +xTL +qlr +xTL +qlr +xTL +qlr +qlr +qlr +qlr +qlr +xTL +qlr +jCF +scs +jXO gYh eQm gYh gYh eQm gYh -uKY -eDY -tNy -oLZ +bdC +jCF +scs +lBQ dXg -lTR -nFD -lTR -lTR -lTR +xTL +llf +xTL +xTL +xTL dXg -eDY -vss -caD -lTR +jCF +dUa +urf +xTL scL oGv -dOS +nCO oGv pfd qgm -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL scL hXR oGv -vss -inN -abK -abK -inN -inN -inN -inN -inN -tmm -qdk -eFJ -eFJ -xzr +dUa +mWL +aXK +aXK +mWL +mWL +mWL +mWL +mWL +cWm +gjT +lcv +lcv +gXY szp -xzr -eFJ -trh -qdk +gXY +lcv +wzG +gjT juW kBZ kBZ joV keY -xJZ +bJd ryD ryD ryD ryD -viK -xJZ -wXu +tVu +bJd +mDX wqb kBZ wVf @@ -48842,54 +48842,54 @@ vPi pBo wVf wVf -hXv -pJn -krP -qhZ -gwG -xOo -cvX -xOo -nHA +raC +soO +fli +uIh +sfE +hXc +vCs +hXc +hgb kMf -fjx -xhs -abl +mGT +jzj +uYg wVf -sUm -jZw -xMq -vnU -qhZ -viK -xJZ -mdj -viK -bnf -xJZ -xJZ -uEc -xJZ -iGM +oFE +bEf +tSB +suv +uIh +tVu +bJd +nct +tVu +ldx +bJd +bJd +pHq +bJd +bCG pYn -jjl +tKa nkF xGJ ddz -tuL -xNb -mzf -hfo +lJZ +dtF +chz +tze veW -oam -nCE +cJy +ksd wWx -vqw -hNc +pIi +aXG bkM -cto -etv -cto +txx +jng +txx iFb cty cty @@ -48897,9 +48897,9 @@ cty cty cty ksX -cto -bdc -cto +txx +dDN +txx ksX cty cty @@ -48925,54 +48925,54 @@ wUU "} (112,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -lTR -qwQ -lTR -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +xTL +xTL +qlr +xTL +xTL dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -lmS -bJV -bJV -bJV -qmF -bJV -bJV -nHH -eDY -tNy -oLZ -lTR -lTR -lTR -lTR +qlr +qlr +qlr +qlr +qlr +qlr +qlr +jCF +scs +jZi +uPf +uPf +uPf +pEr +uPf +uPf +kJM +jCF +scs +lBQ +xTL +xTL +xTL +xTL dXg -lTR +xTL dXg -lTR -tNy -caD +xTL +scs +urf gVO uTu rfV -vss +dUa oGv oGv pfd @@ -48983,36 +48983,36 @@ jaF uTu oGv nee -vss +dUa oGv rMb oGv oGv -rKM +osN oGv oGv rkH szp -caV -eFJ -eFJ -xzr +tFN +lcv +lcv +gXY szp -xzr -eFJ -trh -qdk +gXY +lcv +wzG +gjT juW kBZ kBZ kBZ -xJZ -quP +bJd +rsy ryD ryD ryD ryD -viK +tVu sHO ryD wqb @@ -49024,53 +49024,53 @@ wVf wVf wVf wVf -hJl -pJn -krP -qhZ -gwG -kXA -wrv -cNh -eOu +mhR +soO +fli +uIh +sfE +xZU +fxh +onV +mkb kMf -apI -uoO -mnc -jJX -mnc -mnc -xMq -agJ -qhZ -lab -lVc -lVc -pfr -pbw -lVc -lVc -qjg -lVc -iFZ -pIj +xSf +ppG +kkn +nfe +kkn +kkn +tSB +nTh +uIh +wCH +vHY +vHY +rKG +xtD +vHY +vHY +gFq +vHY +xYA +fNw pYn pYn pYn pYn -kus -gHH -uLY -uLY +gyb +cnF +ttk +ttk pKs -prY -fkj +npq +tWL pKs -tXF -rBi +keo +mDx pKs -cto -etv +txx +jng xxk owM iFb @@ -49079,8 +49079,8 @@ iFb iFb iFb ksX -cto -cto +txx +txx xxk ksX ksX @@ -49107,39 +49107,39 @@ wUU "} (113,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +qlr +xTL +qlr +qlr dXg dXg -lTR -lTR -qwQ -lTR -lTR -lTR -qwQ -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy +xTL +xTL +qlr +xTL +xTL +xTL +qlr +jCF +scs +gcE +aPv +aPv +aPv +aPv +aPv +aPv +aPv +xrY +scs dyo jaF jaF @@ -49148,9 +49148,9 @@ jaF qgm dXg dXg -lTR +xTL stl -cpF +mxm scL oGv oGv @@ -49161,12 +49161,12 @@ oGv oGv oGv oGv -tmC +nJx oGv oGv -fxK -vss -vss +aVD +dUa +dUa dXg eCg iZP @@ -49175,27 +49175,27 @@ tXv tXv oGv szp -sYi -gXO -aZX -dCE +tJD +gkK +bFw +ebX juW -sic -ftF -bEX -pnL +pqo +kWz +nYB +dtB juW kBZ kBZ kBZ -xJZ -xJZ +bJd +bJd ryD ryD ryD ryD -viK -xJZ +tVu +bJd ryD ryD kBZ @@ -49206,36 +49206,36 @@ vco pja dSs wVf -jhe -pJn -krP -qhZ -gwG -xOo -eqB -xOo -nHA +aTm +soO +fli +uIh +sfE +hXc +ntZ +hXc +hgb kMf -eOZ -hzm -uiy +jAG +ioR +mJc wVf -qhZ +uIh wVf -bdJ +gQr wVf wVf -gfj -fEA -xJZ -xJZ -bnf -xJZ -xJZ -xJZ -xJZ -viK -wXu +jIN +soS +bJd +bJd +ldx +bJd +bJd +bJd +bJd +tVu +mDX vHs vHs vHs @@ -49245,32 +49245,32 @@ vHs vHs bkM bkM -cEu -fkj +hcE +tWL bkM ncX bkM bkM -wXC -etv -cto -iaM -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -wXC -cto -cto -cto +pFn +jng +txx +kee +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx +txx +pFn +txx +txx +txx xxk xxk mCF @@ -49289,55 +49289,55 @@ wUU "} (114,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +mDV +qlr +qlr +xTL +xTL +qlr +qlr +xTL +qlr +xTL dXg -qwQ -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy +qlr +jCF +dUa +dUa +dUa +dUa +dUa +dUa +dUa +dUa +dUa +dUa +scs hNq oGv oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL +xTL pgg oGv oGv rMb -vss +dUa oGv hXR oGv @@ -49346,9 +49346,9 @@ oGv nwq iaH kAN -nRU -nRU -nRU +dny +dny +dny rQU ihY cCk @@ -49360,12 +49360,12 @@ wOO wOO wOO wOO -wkt +ykK wOO -nUf -cbq -hHE -nUf +gZc +xNc +bfp +gZc wOO wOO wOO @@ -49376,48 +49376,48 @@ ryD ryD ryD ryD -lDm -xJZ +wky +bJd joV ryD kBZ hPj wVf dtu -rTu +fUB hkZ -xRx +oEP sPs -xsi -pJn -krP +nyI +soO +fli wVf -gwt -hzm -xOo -hzm -vEa +nha +ioR +hXc +ioR +igN wVf wVf wVf -qhZ +uIh wVf -ezZ -lyp -pJn -pBb +ugv +jfz +soO +ktj wVf -qhZ +uIh wVf -qhZ +uIh wVf wVf wVf wVf wVf -xJZ -viK -xJZ +bJd +tVu +bJd vHs eBs xcf @@ -49425,34 +49425,34 @@ xcf xcf cGV vHs -gaw -rBP -sJF -aWP -rBP -rBP -lZb +rKz +uds +lDx +fJt +uds +uds +rVj wMj -cto -etv -cto -iaM +txx +jng +txx +kee mxB -cto -cto +txx +txx xxk wNz xxk -cto -cto -cto -cto -cto +txx +txx +txx +txx +txx xxk xxk xxk -cto -cto +txx +txx xxk xxk mCF @@ -49471,66 +49471,66 @@ wUU "} (115,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -qwQ -lTR -qwQ -qwQ -lTR -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +xTL +qlr +qlr +xTL +qlr +qlr +xTL +qlr dXg dXg -lTR -qwQ -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy +xTL +qlr +jCF +scs +bxN +uPf +uPf +uPf +uPf +uPf +uPf +uPf +hvL +scs hNq hXR oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL +xTL scL oGv -tmC -vss +nJx +dUa oGv oGv oGv -rKM +osN oGv hXR ihY oDB cFw -dwN -jks -jks +oNm +xfg +xfg epN cFw cFw @@ -49541,16 +49541,16 @@ pGs pGs pGs wOO -gXN -sPY -sPY -qId -iVt -pZl -qId -cud -kOS -wAE +olN +cZn +cZn +kpI +ubs +njJ +kpI +eZL +ooC +bSS wOO kBZ kBZ @@ -49558,8 +49558,8 @@ kBZ ryD kBZ wqb -smE -xJZ +pNo +bJd ryD jeW joV @@ -49570,36 +49570,36 @@ idw idw idw wVf -ivX -pJn -krP +xCo +soO +fli wVf wVf -qhZ -qto -qhZ +uIh +tlI +uIh wVf wVf -xdJ -aGX -eHB +cpw +sFE +des wVf -unh -ydQ -eKw -mnc -ilZ -mnc -bCA -fVt +qvs +fEt +wYr +kkn +rtX +kkn +dLa +fTF wVf -ixh -xKL -baH +wTw +sBp +nng wVf -xJZ -viK -xJZ +bJd +tVu +bJd vHs imz mwD @@ -49607,35 +49607,35 @@ ezb wWd ggk vHs -xlb -xAO -uVY -tEJ -tEJ -tEJ -twm +vkI +wDg +vxJ +pat +pat +pat +mip lNb -cto -etv -cto -iaM -cto -wXC -cto -cto +txx +jng +txx +kee +txx +pFn +txx +txx xxk xxk -cto -cto -gLo +txx +txx +fEw xxk -cto -cto -cto -cto -cto -cto -cto +txx +txx +txx +txx +txx +txx +txx ksX hoC mCF @@ -49653,54 +49653,54 @@ wUU "} (116,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -eDY -tNy -oLZ -lTR -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +qlr +xTL +xTL +qlr +xTL +qlr +qlr +qlr +qlr +xTL +qlr +qlr +qlr +jCF +scs +lBQ +xTL +qlr dXg -qwQ -qwQ -lTR +qlr +qlr +xTL dXg -eDY -tNy +jCF +scs hNq oGv oGv hXR lsN lnO -lTR -daS -lTR -lTR -lTR +xTL +mDV +xTL +xTL +xTL scL oGv oGv -vss +dUa gJy hXR oGv @@ -49711,9 +49711,9 @@ ihY cFw cel fSa -jks -coX -mUz +xfg +pXh +klt cFw cFw qtv @@ -49723,16 +49723,16 @@ pGs pGs pGs wOO -faX -kCA -kCA -cbq -kCA -mZI -adR -vmc -wYF -rsB +aKO +ocV +ocV +xNc +ocV +uiP +mHW +jyc +vgP +uGx wOO kBZ kBZ @@ -49740,8 +49740,8 @@ kBZ kBZ kBZ wqb -viK -xJZ +tVu +bJd ryD ryD ryD @@ -49752,53 +49752,53 @@ vqY eRD gyX ylX -mnc -xMq -oVr -uFJ -uFJ -uFJ -xOo -uFJ -rsL -uFJ -kMN -ppw -irj -rsL -diW -pJn -xOo -rwh +kkn +tSB +eHU +oOI +oOI +oOI +hXc +oOI +jDt +oOI +pZB +lia +bnA +jDt +hWQ +soO +hXc +ptB wVf -vLU -pJn -xOo -wku -xOo -xOo -jcC +ovm +soO +hXc +uKP +hXc +hXc +oiX wVf -xJZ -viK -oef -fEz +bJd +tVu +oEu +xXz fpY eQC kWB kWB fpY -gOe -rQk -tEJ -uXw -tEJ -tEJ -tEJ -lHH +bKZ +nzZ +pat +nWo +pat +pat +pat +fYl bkM mdN -bnB +sRS mdN eEd ksX @@ -49817,7 +49817,7 @@ xxk xxk xxk xxk -cto +txx ksX hoC mCF @@ -49835,66 +49835,66 @@ wUU "} (117,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -lTR +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +kis +qlr +xTL +xTL +qlr +qlr +xTL +qlr +qlr +qlr +qlr +qlr +qlr +xTL +jCF +scs +lBQ +qlr +xTL dXg dXg -qwQ -qwQ +qlr +qlr dXg -eDY -tNy +jCF +scs hNq oGv upH oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +xTL +xTL +xTL +xTL +xTL scL upH oGv hXR -vss +dUa oGv oGv jju ihY ihY -hQl +wqj vyp cFw -jks -jks -jks +xfg +xfg +xfg cFw cFw cFw @@ -49905,25 +49905,25 @@ pGs pGs pGs wOO -dwP -kCA -tlT -cbq -tlT -ljx -cbq -tlT -kCA -rsB -poE -tlT -nHk +kZr +ocV +cyH +xNc +cyH +omD +xNc +cyH +ocV +uGx +pUK +cyH +acv kBZ kBZ kBZ wqb -viK -xJZ +tVu +bJd ryD ryD ryD @@ -49934,54 +49934,54 @@ lZU vqY aSt sPs -oXp -jVK -uUS -yeY -yeY -fER -yeY -yeY -haX -yeY -haX -cdy -jjE -haX -vvS -xMq -xOo -hoG -qhZ -vLU -pJn -xOo -wku -xOo -xOo -iqW +hmZ +iVm +ieR +wkH +wkH +wyL +wkH +wkH +mIx +wkH +mIx +lVr +bCI +mIx +tVa +tSB +hXc +tsI +uIh +ovm +soO +hXc +uKP +hXc +hXc +sLE wVf -xJZ -viK -oef -jgY +bJd +tVu +oEu +kMJ kWB kWB nAq kWB kWB -ltA -jpM -tEJ -mQC -aBB -jjg -tEJ -rtu +mQi +kSX +pat +qAo +ydp +qZu +pat +kBv bkM -iaM -hbi -iaM +kee +euT +kee eEd cty cty @@ -49999,7 +49999,7 @@ mCF xxk xxk xxk -ghs +dHp ksX cty mCF @@ -50017,56 +50017,56 @@ wUU "} (118,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qwQ -lTR -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +phl +qlr +xTL +qlr +qlr +xTL +xTL +qlr +qlr +qlr +qlr +qlr +qlr +jCF +scs mIU jaF jaF jaF jaF qgm -vEg -qwQ -eDY -tNy +jDG +qlr +jCF +scs jdu hXR oGv oGv hXR lnO -lTR -lTR -lTR +xTL +xTL +xTL stl -lTR +xTL scL oGv oGv -jks -gkG -nRU +xfg +vEr +dny jjj vuQ ihY @@ -50076,9 +50076,9 @@ iaT cFw rSl utZ -coX +pXh cFw -dvT +hvA cFw pkj wUF @@ -50087,25 +50087,25 @@ pGs pGs pGs wOO -mNm -kCA -tlT -cbq -dNU -kDd -cbq -tlT -kCA -rsB -poE -tlT -nex +jwR +ocV +cyH +xNc +cTG +nzX +xNc +cyH +ocV +uGx +pUK +cyH +oLg kBZ kBZ ryD hcI wXs -xJZ +bJd ryD ryD ryD @@ -50116,9 +50116,9 @@ idw izy hJw wVf -hek -hUp -gfg +vqB +mdk +jjx wVf wVf wVf @@ -50130,40 +50130,40 @@ oyT xvF wVf wVf -mLt -pJn -xOo -oCN -qhZ -vLU -nmQ -nHA +tHE +soO +hXc +qVQ +uIh +ovm +qvl +hgb wVf -gwG -xOo -mAP +sfE +hXc +wtW wVf -xJZ -viK -oef -jgY +bJd +tVu +oEu +kMJ kWB wmt nAq eQC kWB -ltA -jpM -tEJ -uXw -tEJ -tEJ -tEJ -twm +mQi +kSX +pat +nWo +pat +pat +pat +mip lNb -iaM -gAK -cto +kee +lnQ +txx ksX cty cty @@ -50180,8 +50180,8 @@ mCF mCF ksX mxB -cto -bng +txx +jQv ksX cty mCF @@ -50199,43 +50199,43 @@ wUU "} (119,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +xTL +xTL +qlr +qlr +qlr +qlr +qlr +qlr +xTL +jCF +scs igB oGv oGv oGv oGv lnO -lTR -lTR -eDY -tNy +xTL +xTL +jCF +scs igB oGv oGv -tmC +nJx oGv pfd jaF @@ -50248,7 +50248,7 @@ oGv hXR ihY cFw -kmo +kUA cFw epN qkq @@ -50258,10 +50258,10 @@ nwq cFw cFw fWW -jks -jks +xfg +xfg cFw -tkh +sjN cFw nwq cFw @@ -50269,25 +50269,25 @@ pGs pGs pGs wOO -pNJ -kCA -tlT -mYd -oSe -ssg -rKL -tlT -kCA -aIq -cuc -tlT -mrT +nrb +ocV +cyH +uXn +vEY +saP +nKg +cyH +ocV +cvS +fet +cyH +cXs kBZ ryD ryD ryD wXs -xJZ +bJd ryD ryD ryD @@ -50298,54 +50298,54 @@ gkb wVf wVf wVf -qhZ -jsf -qhZ +uIh +mBF +uIh wVf eyt eyt eyt eyt wVf -ohi -wpi -uFJ -eHB +ovG +tHJ +oOI +des wVf -dQr -pJn -xOo -tUd +avj +soO +hXc +eMu wVf -rmL -qsh -ycE +aiz +mAN +lzt wVf -cur -syb -gEO +bcH +wDk +rvt wVf -rDD -viK -oef -jgY +goe +tVu +oEu +kMJ kWB cAx aXA kWB kWB -xyJ -aFX -tEJ -uXw -tEJ -tEJ -tEJ -twm +mqQ +olf +pat +nWo +pat +pat +pat +mip lNb -iaM -etv -cto +kee +jng +txx ksX ksX iFb @@ -50360,10 +50360,10 @@ cty mCF mCF mCF -cba +mnn xxk -cto -cto +txx +txx ksX xxk xxk @@ -50381,39 +50381,39 @@ wUU "} (120,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR -qwQ -qwQ -lTR -eDY -tNy +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +phl +xTL +qlr +qlr +qlr +qlr +xTL +xTL +xTL +xTL +qlr +qlr +xTL +jCF +scs igB oGv lsN -tmC +nJx hXR pfd jaF jaF tGw -tNy +scs igB oGv hXR @@ -50431,7 +50431,7 @@ gfk ihY xnS vyp -jks +xfg cFw cFw cFw @@ -50440,8 +50440,8 @@ cFw cFw gJN wop -jks -rUI +xfg +pOu nwq cFw cFw @@ -50451,25 +50451,25 @@ nwq cFw pGs qnW -bgl -kCA -tlT -mYd -iht -iIC -rKL -tlT -kCA -aIq -tlT -eGL -mrT +neT +ocV +cyH +uXn +dxd +fXh +nKg +cyH +ocV +cvS +cyH +aOx +cXs kBZ tkF ryD ryD wXs -xJZ +bJd ryD ryD eyt @@ -50480,24 +50480,24 @@ wVf wVf eyt wqb -wXu -viK -xJZ +mDX +tVu +bJd wqb eyt eyt eyt eyt wVf -jtI -xOo -uoO -mnc -kCT -mnc -xMq -xOo -gBV +gLJ +hXc +ppG +kkn +utv +kkn +tSB +hXc +rhs wVf xvF wVf @@ -50507,9 +50507,9 @@ wVf wVf wVf wVf -xJZ -viK -xJZ +bJd +tVu +bJd vHs imz wDv @@ -50517,18 +50517,18 @@ bSu wdI szh vHs -iad -lIo -xNb -aBB -aBB -wXD -pdr +wOd +uzz +dtF +ydp +ydp +ejH +wuL bkM -kRp -mNO -qWw -cto +izN +ohJ +pGf +txx xxk iFb hoC @@ -50544,9 +50544,9 @@ aOg mCF ksX xxk -cto -cto -cto +txx +txx +txx xxk xxk ksX @@ -50563,29 +50563,29 @@ wUU "} (121,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr dXg -qwQ -qwQ +qlr +qlr btU -tNy +scs igB hXR rMb @@ -50595,63 +50595,63 @@ oGv oGv oGv eoj -tNy +scs igB oGv oGv oGv -rKM +osN fkd oGv hXR svt -vss +dUa mmO -dOS +nCO oGv dXg ihY xnS -fPq -jks -upb -upb -jks -jks -upb -upb -jks -jks -qTE +gNc +xfg +crg +crg +xfg +xfg +crg +crg +xfg +xfg +iHB cFw cFw cFw jsG -jks +xfg cFw cFw nwq nwq oSX -mvO -kCA -tlT -mYd -hbP -ghb -rKL -tlT -kCA -aIq -wae -sdZ -hwZ +hVr +ocV +cyH +uXn +vJK +gbU +nKg +cyH +ocV +cvS +xXC +xZI +mXW kBZ kBZ ryD ryD apj -xJZ +bJd ryD ryD kbQ @@ -50662,36 +50662,36 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd wqb eyt eyt eyt eyt wVf -mca -hzm -lDr -swa +fnv +ioR +goN +jrX wVf -xWj -pJn -xOo -tKr +brt +soO +hXc +gkR wVf -eij -wGV -eij +nAC +kum +nAC wVf -ieu -qAr -mIG +owF +riE +xUD wVf -eFW -viK -xJZ +lGt +tVu +bJd vHs dmN iYi @@ -50699,18 +50699,18 @@ iYi iYi rjn vHs -bPm -wVE -ioA -jsO -ciR -wVE -fiA +esU +gLL +xrh +ucA +wME +gLL +cdl bkM -eQr -iaM -hbi -gMm +aZC +kee +euT +gSF xxk iFb mCF @@ -50726,11 +50726,11 @@ aOg mCF xxk xxk -cto -cto -cto -cto -cto +txx +txx +txx +txx +txx ksX aOg mCF @@ -50745,39 +50745,39 @@ wUU "} (122,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +xTL +qlr +qlr +qlr +qlr +qlr +qlr +qlr +qlr dXg dXg -qwQ -tqV -mEy -tNy +qlr +hqF +xrY +scs jKW hej -dOS +nCO oGv oGv -rKM +osN oGv fZX nOM -tNy +scs jKW hej rMb @@ -50787,16 +50787,16 @@ oGv oGv oGv svt -tNy +scs mmO oGv oGv oGv cFw ngY -jks -qVb -jks +xfg +ipz +xfg kPZ cFw cFw @@ -50808,23 +50808,23 @@ jJC pFd vuQ cel -jks -jks +xfg +xfg nwq cFw cFw fsC wOO -fFx -kCA -tlT -mYd -jNb -jPe -rKL -tlT -kCA -rpH +cKA +ocV +cyH +uXn +mFA +lDA +nKg +cyH +ocV +cce wOO wOO wOO @@ -50833,8 +50833,8 @@ wOO oSX wOO jPM -xJZ -xJZ +bJd +bJd ryD kbQ kbQ @@ -50844,9 +50844,9 @@ eyt jqw eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd wqb wqb wqb @@ -50858,22 +50858,22 @@ xvF wVf xvF wVf -umA -pJn -xOo -hoG -qhZ -xOo -ppw -xOo +cAW +soO +hXc +tsI +uIh +hXc +lia +hXc wVf -wpM -vpV -uGi +hCX +ufW +uog wVf -xJZ -viK -xJZ +bJd +tVu +bJd vHs vHs vHs @@ -50891,10 +50891,10 @@ eHl uXS uXS uXS -hbi -cto +euT +txx xxk -vhI +aFe mCF mCF aOg @@ -50909,11 +50909,11 @@ mCF xxk xxk xxk -cto +txx xxk -wws -poC -cba +uKG +ocq +mnn aOg aOg aOg @@ -50927,96 +50927,96 @@ wUU "} (123,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +qlr +jel +jel +jel +jel kgp -pdK -pdK -gVP -aQN -jzB -aQN +jel +jel +tFf +tML +hLp +tML geK -qNu +omN wlB wlB wlB -ghW +lqr mnU -aQN -jzB -aQN +tML +hLp +tML geK wlB wlB lTg -ghW +lqr wlB mnU -suY -aQN -hMg +pqu +tML +cpm lTg wlB wlB -res -res -kZe -lrR -jks +fbz +fbz +rRj +jAJ +xfg qKM -mUz +klt cFw cFw ihY cFw -ewv -jks +xkt +xfg nwq gwD cFw -jks -jks +xfg +xfg cFw cFw cFw nwq oSX -vQL -kCA -tlT -mYd -wRi -leO -rKL -tlT -kCA -rsB +kYy +ocV +cyH +uXn +lid +xkn +nKg +cyH +ocV +uGx wOO -ubK -ubK -sLi -pkT -pAZ +hmt +hmt +dtv +wjZ +svX wOO -rWY -xJZ -xJZ +hfl +bJd +bJd ryD kbQ kbQ @@ -51026,57 +51026,57 @@ jqw kbQ eyt wqb -rDD -wng -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -gRS -enH -eKw -bCA -oCN +goe +jDy +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +aTr +kny +wYr +dLa +qVQ wVf wVf -aFM +pRI wVf wVf -pRy -vpV -mIG -obS -xJZ -viK +kgV +ufW +xUD +xIr +bJd +tVu ryD -xJZ +bJd kfG eyt eyt uXS -vZv +dMS kNa -sGo -eQZ -xwY +rae +qZo +ryu uXS -xOz -eQZ -sGo +oyE +qZo +rae kNa -oAm +vsj uXS -hbi -cto +euT +txx xxk -vhI +aFe mCF aOg aOg @@ -51090,12 +51090,12 @@ mCF mCF xxk xxk -cto -cto -cto -eGq -aTC -cba +txx +txx +txx +gFn +okC +mnn aOg aOg aOg @@ -51109,30 +51109,30 @@ wUU "} (124,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -urD -urD -urD +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +kis +qlr +xTL +xTL +qlr +qlr +lcj +lcj +lcj kgp -pdK -pdK +jel +jel fpq kVq -aQN -hQV -aQN +tML +ydf +tML geK wlB lTg @@ -51140,9 +51140,9 @@ wlB wlB wlB mnU -aQN -ocz -aQN +tML +gzQ +tML geK wlB wlB @@ -51151,16 +51151,16 @@ wlB wlB mnU wlB -aHw -aQN -vMo -qNu +gnY +tML +qnI +omN wlB wlB -iUH +wdf cel -jks -jks +xfg +xfg cFw ihY cFw @@ -51168,97 +51168,97 @@ cFw vYy deE nwq -aBz +ulh xfz ihY cel -jks -jks -jks -jks +xfg +xfg +xfg +xfg cFw nwq oSX -uwQ -kCA -tlT -cbq -oga -kca -cbq -tlT -kCA -rsB +deL +ocV +cyH +xNc +xDD +dGl +xNc +cyH +ocV +uGx oSX -fEu -fEu -fEu -fEu -pCO +wCC +wCC +wCC +wCC +iOg oSX -viK -xJZ -xJZ +tVu +bJd +bJd wqb -tVj +onl kbQ kbQ kbQ kbQ kbQ kbQ -bPk -xJZ -viK -xJZ -sxY -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -qhZ -rqn -kGF -pJn -tUd -qhZ -hyp -iNr -vZl -qhZ -tdy -vpV -dNY -obS +oHr +bJd +tVu +bJd +oOS +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +uIh +xUG +oRm +soO +eMu +uIh +aMS +ocM +qHD +uIh +rwJ +ufW +maV +xIr ryD -viK -xJZ -xJZ +tVu +bJd +bJd kfG eyt eyt uXS uXS uXS -tlG -eQZ -rWx +cuf +qZo +sEg uXS -sGo -eQZ -iAa +rae +qZo +pXr uXS uXS uXS -hbi -cto -cto -vhI +euT +txx +txx +aFe mCF aOg mCF @@ -51273,10 +51273,10 @@ mCF ksX dzH xxk -cto -cto -cto -bst +txx +txx +txx +mnX ksX lVQ xGV @@ -51291,30 +51291,30 @@ wUU "} (125,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ -qwQ -qwQ -pdK -pdK -pdK -urD -pdK -pdK +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +rpD +qlr +mDV +qlr +qlr +qlr +jel +jel +jel +lcj +jel +jel nsN mnU -aQN -aQN -aQN +tML +tML +tML geK vLh hDw @@ -51322,9 +51322,9 @@ qZV qZV oyl mnU -aQN -aQN -aQN +tML +tML +tML geK vLh hDw @@ -51332,114 +51332,114 @@ qZV qZV oyl fmu -xVX +sJO wlB lTg -aQN +tML wlB lTg wlB cFw cel -jks -jks +xfg +xfg cFw cFw -jks +xfg ebi xmL otH iWX -jks +xfg kDk -xWL +aCM cFw -jks +xfg uAM cFw cFw cFw tlq oSX -oUO -kCA -tlT -cbq -tlT -ljx -cbq -tlT -kCA -rsB +iil +ocV +cyH +xNc +cyH +omD +xNc +cyH +ocV +uGx oSX -lur -lur -lur -fEu -ubK +bYZ +bYZ +bYZ +wCC +hmt oSX -viK -xJZ +tVu +bJd ryD ryD -tVj +onl kbQ jqw kbQ kbQ kbQ ofC -xJZ -xJZ -viK -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xxs -iXR -xJZ -xJZ -gDh -qhZ -beE -orb -pJn -xOo -dpz -xOo -kiG -lxy -qhZ -bUg -vpV -uDg -obS +bJd +bJd +tVu +bJd +bJd +jBL +bJd +bJd +bJd +fgs +lYA +bJd +bJd +vBb +uIh +fds +rWH +soO +hXc +syP +hXc +cKf +gnF +uIh +eGF +ufW +jOn +xIr ryD wXs -xJZ +bJd ryD kfG xAx eyt uXS -vZv +dMS kNa -sGo -eQZ -sGo +rae +qZo +rae uXS -vzY -eQZ -sGo +rWQ +qZo +rae kNa -oAm +vsj uXS -hbi -cto -cto +euT +txx +txx iFb mCF aOg @@ -51473,68 +51473,68 @@ wUU "} (126,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -urD -urD -pdK -pdK -pdK -urD +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +qlr +qlr +qlr +qlr +lcj +lcj +jel +jel +jel +lcj nsN bys kkt -hsa +pYN ksu njC riM -aQN -aQN -aQN -hsa +tML +tML +tML +pYN xDd rUc -hsa +pYN ksu bVe yhZ -aQN -aQN -aQN -hsa -wlB -aQN -aQN -kYF +tML +tML +tML +pYN +wlB +tML +tML +sLd kgp kgp wlB -ghW +lqr cFw cFw cFw osE cFw cFw -eSo -dvT +gmy +hvA cFw tPK -jks -jks -upb -jks +xfg +xfg +crg +xfg qSR wop cFw @@ -51543,38 +51543,38 @@ cFw pGs pGs wOO -pCV -kCA -tlT -cbq -tlT -qqs -adR -gkS -vmc -oDN +qKK +ocV +cyH +xNc +cyH +sPH +mHW +tmW +jyc +etZ agM -aDZ -aDZ -rTv -fEu -ubK +vQd +vQd +axa +wCC +hmt oSX -mZk -xJZ -xJZ -imu -tVj -tVj -tVj -tVj -tVj -tVj -tVj -xJZ -xJZ -viK -xJZ +eCb +bJd +bJd +iSq +onl +onl +onl +onl +onl +onl +onl +bJd +bJd +tVu +bJd wqb eyt eyt @@ -51586,43 +51586,43 @@ wVf xvF wVf wVf -xOo -xOo -jVK -mnc -mnc -mnc -xMq -kYn +hXc +hXc +iVm +kkn +kkn +kkn +tSB +pdk wVf -fHx -vpV -qVS +wdT +ufW +sYG wVf -rWY -viK -xJZ -xJZ +hfl +tVu +bJd +bJd vph qIF sgk uXS uXS uXS -jGz -eQZ -rWx +tzo +qZo +sEg uXS -sGo -eQZ -sGo +rae +qZo +rae uXS uXS uXS wGQ xxk -cto -kmI +txx +vGU mCF jdm mCF @@ -51655,47 +51655,47 @@ wUU "} (127,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qqR -qwQ -qwQ -lTR -pdK -pdK -pdK -pdK -pdK -urD +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +phl +kje +qlr +qlr +xTL +jel +jel +jel +jel +jel +lcj nBc gsC lTg -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML lTg wlB kgp @@ -51713,98 +51713,98 @@ jjj jjj ihY ihY -teg -jks -jks +hxi +xfg +xfg cFw cFw gDr -dvT +hvA nwq cFw cFw pGs wOO -fCB -kCA -tlT -cbq -tlT -ljx -cbq -tlT -kCA -xPV +auy +ocV +cyH +xNc +cyH +omD +xNc +cyH +ocV +oXV hst -rKl -lur -cbg -fEu -xjp +fto +bYZ +aom +wCC +haH wOO -viK -xJZ -xJZ +tVu +bJd +bJd wqb -tVj -tVj +onl +onl qIF kbQ qIF tTU kbQ -xJZ -xJZ -viK -gDh +bJd +bJd +tVu +vBb wqb eyt eyt eyt eyt wVf -sBN -xOo -xOo -xOo -aRL -xOo -xOo -vrO -vAg +xWu +hXc +hXc +hXc +ndd +hXc +hXc +pnn +jIt wVf -gwG -jVK -iPI -fLn -jhv -jzq -ocr +sfE +iVm +qUn +wmW +bcM +sTC +thu wVf -ybt -viK -xJZ -xJZ +jSV +tVu +bJd +bJd qIF kbQ kbQ uXS -dGR +rbm kNa -chr -eQZ -sGo +jNW +qZo +rae uXS -vzY -eQZ -eqn +rWQ +qZo +mqZ kNa -oAm +vsj uXS -hbi -cto -cto -kmI +euT +txx +txx +vGU mCF mCF mCF @@ -51837,47 +51837,47 @@ wUU "} (128,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -wBp -uYJ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK -pdK -pdK -urD +pwQ +oeX +oeX +oeX +gsd +oeX +oeX +bra +phl +qlr +qlr +qlr +qlr +jel +jel +jel +jel +jel +jel +lcj nsN usQ -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -wlB -aQN -aQN +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +tML +wlB +tML +tML wlB kgp kgp @@ -51895,11 +51895,11 @@ cFw epN cFw ihY -hQl -jks -jks +wqj +xfg +xfg fSa -jks +xfg cFw cFw cFw @@ -51907,27 +51907,27 @@ cFw cFw fsC oSX -bgl -mSD -gkS -adR -gkS -xRt -yjK -lsT -kCA -hUY +neT +tpb +tmW +mHW +tmW +ngK +rET +wYw +ocV +tvq oSX -lur -rtR -osr -aDZ -aDZ -nOg -pfr -lVc -lVc -iFZ +bYZ +sVe +fwJ +vQd +vQd +bmH +rKG +vHY +vHY +xYA kbQ kbQ kbQ @@ -51936,9 +51936,9 @@ kbQ sgk eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd wqb eyt eyt @@ -51950,23 +51950,23 @@ wVf xvF wVf wVf -hay -hZD -byl -gmK +rEF +laL +fsL +sAS wVf -vap -jVK -eUv +vpA +iVm +jeM wVf -twh -aqb -ptP +uDK +kto +mNA wVf -mNT -viK -xJZ -xJZ +dpI +tVu +bJd +bJd kfG nMJ uqW @@ -51974,18 +51974,18 @@ uXS uXS uXS uXS -bHc -rWx +lnI +sEg uXS -sGo -qQe +rae +jxW uXS uXS uXS uXS -hbi -cto -cto +euT +txx +txx iFb hoC mCF @@ -52019,33 +52019,33 @@ wUU "} (129,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -daS -uYJ -qwQ -pdK -pdK -pdK -pdK -pdK +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +qlr +xTL +mDV +phl +qlr +jel +jel +jel +jel +jel fpq cVq mtT lTg -nCl -nCl -nCl -aQN -aQN +phv +phv +phv +tML +tML kgp kgp kgp @@ -52054,62 +52054,62 @@ kgp kgp kgp kgp -nCl -nCl -nCl -aQN +phv +phv +phv +tML dOm -aQN -nCl -nCl -nCl -nCl -nCl -aQN +tML +phv +phv +phv +phv +phv +tML wlB gDr ihY ihY cFw -res -res -res -res -eoB -kjp -res -jks -jks -lch -lch -lch -lch -lch -lch -lch -lch -tZm -bgl -kCA -kCA -cbq -kCA -kCA -pkX -nsl -kCA -hUY +fbz +fbz +fbz +fbz +xpm +aEW +fbz +xfg +xfg +tIA +tIA +tIA +tIA +tIA +tIA +tIA +tIA +mmE +neT +ocV +ocV +xNc +ocV +ocV +pFb +aEo +ocV +tvq oSX -eYM -lur -rpI -rrr -rrr +sEc +bYZ +lVZ +jQb +jQb wOO -fga -uwJ -xJZ -viK +cBT +uTI +bJd +tVu kbQ kbQ qIF @@ -52118,9 +52118,9 @@ qIF uet eyt wqb -rpd -viK -xJZ +soC +tVu +bJd wqb eyt eyt @@ -52133,41 +52133,41 @@ xAx kjN wVf xvF -nNv +rCo wVf wVf wVf wVf -vXW +fuQ wVf wVf wVf wVf wVf wVf -rDD -viK -xJZ -xJZ +goe +tVu +bJd +bJd kbQ kbQ eyt uXS -vzY -qZr +rWQ +eGD kNa -tKw -nFf +wXY +oGC uXS -vzY -eQZ +rWQ +qZo kNa -sGo -rWx +rae +sEg uXS -hbi -cto -wXC +euT +txx +pFn iFb cty mCF @@ -52201,24 +52201,24 @@ wUU "} (130,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -rYC -wLB -mPW -wBp -lze -pdK -urD -pdK -urD -urD +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +bra +kis +jIe +oMF +bra +utT +jel +lcj +jel +lcj +lcj nsN wlB kAH @@ -52226,7 +52226,7 @@ kgp kgp wsn wlB -aQN +tML kgp kgp wlB @@ -52241,27 +52241,27 @@ kgp vll wlB bSQ -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -sIK -foE -nnb -nnb -nnb -nnb -nnb -wDH -nLH -wDH -nnb -nnb -nnb +vtv +vtv +vtv +vtv +vtv +vtv +vtv +vtv +xmc +bqz +jQc +jQc +jQc +jQc +jQc +uBG +nls +uBG +jQc +jQc +jQc cFw cFw nwq @@ -52271,27 +52271,27 @@ gDr cFw mcB oSX -oIC -jtU -jtU -qId -jtU -oBP -kLA -vnH -jtU -dID +nDH +kRX +kRX +kpI +kRX +rJN +giO +guH +kRX +leu wOO -gar -dgF -uZa -mEB -mEB +wLQ +qWP +knA +hOn +hOn oSX -xJZ -xJZ -xJZ -viK +bJd +bJd +bJd +tVu ryD ouy ofC @@ -52300,9 +52300,9 @@ uet cFz eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd wqb eyt eyt @@ -52315,40 +52315,40 @@ qIF kbQ qIF kbQ -tVj +onl kbQ eyt wVf -oWO -nzd -xqG +eZO +nuo +rmu wVf eyt eyt eyt wqb -xJZ -viK -xJZ -xJZ +bJd +tVu +bJd +bJd kbQ kbQ kbQ uXS -vZv -sGo +dMS +rae uXS -jCN -rWx +rmC +sEg uXS -tcS -dnU +uKT +pNi uXS -sGo -oAm +rae +vsj uXS -hbi -cto +euT +txx mxB aOg aOg @@ -52383,67 +52383,67 @@ wUU "} (131,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +pwQ +gsd +oeX +gsd +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +kis fpq mwI cVq cVq pZT nsN -mdg +uNt lTg kgp nit wlB -aQN -slw +tML +nLt kgp eia lTg -hVL +qaD wlB qAy -hmh +txF wlB -ebF +tgu ggr kgp kyP wlB wlB -iQr -iQr -aCX -iQr -iQr -iQr -iQr -iQr -eJN -vuA -vuA -bcD -nnb -nnb -nnb -nnb -sIK -nnb -nnb -nnb -nnb +vtv +vtv +vKu +vtv +vtv +vtv +vtv +vtv +kvh +dtT +dtT +uHr +jQc +jQc +jQc +jQc +xmc +jQc +jQc +jQc +jQc nwq ebi cFw @@ -52454,14 +52454,14 @@ cFw kuO slE cqC -sPh -qId -qxa +wwN +kpI +tUw wOO wOO -nUf -kIz -nUf +gZc +kvv +gZc wOO wOO wOO @@ -52471,10 +52471,10 @@ wOO wOO wOO wqb -xJZ -xJZ -viK -xJZ +bJd +bJd +tVu +bJd tCA kbQ kbQ @@ -52482,9 +52482,9 @@ vcR eyt eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd wqb eyt eyt @@ -52497,22 +52497,22 @@ kbQ qIF sgk kbQ -tVj +onl kbQ eyt wVf -jUM -dnV -kTI +ilB +pLa +vqF wVf eyt eyt wqb wqb -xJZ -viK -xJZ -xJZ +bJd +tVu +bJd +bJd kfG ofC kbQ @@ -52529,8 +52529,8 @@ uXS uXS uXS uXS -hbi -cto +euT +txx xxk aOg aOg @@ -52565,19 +52565,19 @@ wUU "} (132,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -cJL -mPk -xVw +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +gsd +oeX +qrp +oeX +rpD nsN xNA xNA @@ -52592,7 +52592,7 @@ wlB bYO lTg wlB -nKf +xSP wlB wlB wlB @@ -52600,36 +52600,36 @@ wlB wlB tgK wlB -aQN +tML wlB wlB wlB wlB -iQr -iQr +vtv +vtv bSQ -qNu +omN wlB wlB -aQN +tML wlB aKJ cFw cFw cFw -dYW -jks +woT +xfg cFw cFw xmL fMI eHv cFw -jks +xfg cFw cFw cFw -mUz +klt nwq cFw cFw @@ -52641,10 +52641,10 @@ oSX oSX slE xAg -axh -enu -iQS -cRZ +cVP +sCC +uxa +trt vVH kBZ kBZ @@ -52653,10 +52653,10 @@ kBZ kBZ kBZ wqb -gDh -xJZ -viK -xJZ +vBb +bJd +tVu +bJd tCA kbQ kbQ @@ -52664,9 +52664,9 @@ eyt eyt eyt wqb -xJZ -viK -wXu +bJd +tVu +mDX wqb eyt eyt @@ -52678,40 +52678,40 @@ qIF kbQ kbQ kbQ -tVj -tVj -tVj +onl +onl +onl eyt wVf -gqN -nrd -gnZ +rLi +mnl +pzh wVf eyt eyt wqb -oJW -xJZ -eQa -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -pfr -lVc -feR -lVc -pfr -vJp -lVc -mUP -fnj -baa +bzt +bJd +ief +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +rKG +vHY +pDt +vHY +rKG +mtP +vHY +pFg +etH +tiU xxk xxk aOg @@ -52747,22 +52747,22 @@ wUU "} (133,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -mPk +pwQ +oeX +oeX +oeX +gsd +oeX +oeX +oeX +oeX +oeX +gsd +oeX wcb wlH tMZ -ghW +lqr wlB beK mtT @@ -52770,33 +52770,33 @@ kgp kgp wlB wlB -hmh +txF wlB jwX -aQN -aQN +tML +tML sKz wlB tez tmZ rXk wlB -aQN -hmh +tML +txF wlB wlB -mdg +uNt dWV -iQr -jKs +vtv +iNL wlB wlB kgp wlB -nCl +phv wlB xmL -iUH +wdf icm cFw nwq @@ -52807,11 +52807,11 @@ cFw pll jNn eNA -jks +xfg cFw -jks -jks -jks +xfg +xfg +xfg cFw cFw nwq @@ -52823,10 +52823,10 @@ xSZ qEt biS vVH -hrc -enu -iQS -pGU +aem +sCC +uxa +pig vVH kBZ kBZ @@ -52835,10 +52835,10 @@ kBZ kBZ kBZ wqb -rDD -xJZ -viK -stw +goe +bJd +tVu +rwK ouy kbQ kbQ @@ -52846,9 +52846,9 @@ kbQ eyt eyt wqb -rDD -viK -gha +goe +tVu +gPw wqb eyt eyt @@ -52860,7 +52860,7 @@ kbQ kbQ ofC tTU -tVj +onl sgk jqw eyt @@ -52872,28 +52872,28 @@ wVf eyt eyt wqb -qQd -xJZ -viK -xJZ -xJZ -xJZ -xJZ +kYH +bJd +tVu +bJd +bJd +bJd +bJd ryD -xJZ -xJZ -xJZ -xJZ -xJZ +bJd +bJd +bJd +bJd +bJd ryD -xJZ -xJZ -xJZ -xJZ -xJZ -cto -tuZ -cto +bJd +bJd +bJd +bJd +bJd +txx +qJd +txx wNz xxk aOg @@ -52929,24 +52929,24 @@ wUU "} (134,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -cUN -cUN +pwQ +gsd +oeX +gsd +oeX +oeX +oeX +oeX +oeX +gsd +gsd +gsd pCa tMZ wlB eia wlB -ghW +lqr lTg wlB wlB @@ -52960,22 +52960,22 @@ wlB wlB qNX ehY -urD +lcj nsN lTg -aQN -aQN +tML +tML gjC wlB wlB dWV -iQr -jKs +vtv +iNL wlB kgp kgp kgp -nCl +phv wlB cFw tPK @@ -52984,16 +52984,16 @@ nwq cFw cFw cel -jks +xfg cFw tPK qkq xpe -jks -jks -jks -mtp -coX +xfg +xfg +xfg +ozb +pXh cFw cFw cFw @@ -53005,10 +53005,10 @@ nwq nwq oep vVH -won -vSu -iQS -pGU +gam +wEB +uxa +pig vVH kBZ kBZ @@ -53017,20 +53017,20 @@ kBZ kBZ kBZ wqb -bFD -xJZ -viK -xJZ -lFE +xLg +bJd +tVu +bJd +hkC kbQ kbQ kbQ eyt eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd wqb eyt eyt @@ -53042,7 +53042,7 @@ kbQ kbQ kbQ kbQ -tVj +onl kbQ kbQ kbQ @@ -53055,28 +53055,28 @@ eyt eyt wqb wqb -xJZ -viK -xJZ -xJZ -pOg -xJZ -xJZ -wXu +bJd +tVu +bJd +bJd +twO +bJd +bJd +mDX ryD ryD -xJZ -xJZ -xJZ -gDh -xJZ +bJd +bJd +bJd +vBb +bJd ryD -xJZ -xJZ -cto -iaM -cto -cto +bJd +bJd +txx +kee +txx +txx xxk mCF mCF @@ -53111,18 +53111,18 @@ wUU "} (135,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX wfR dYd wlB @@ -53138,26 +53138,26 @@ wlB lTg wlB wlB -mdg +uNt wlB beK cVq cVq mtT wlB -aQN -aQN +tML +tML wlB -oyv +jSs lTg wlB -iQr -iQr +vtv +vtv lTg wlB gjC kgp -nCl +phv wlB cFw ihY @@ -53166,20 +53166,20 @@ ihY cSc jrr jrr -vUx +dUH jrr cSc cCk cFw cFw -jks -jks -jks -coX +xfg +xfg +xfg +pXh nwq cFw cFw -tkh +sjN cFw nwq wUF @@ -53187,10 +53187,10 @@ cFw cFw uFO vVH -iQS -aQY -iQS -iQS +uxa +aMg +uxa +uxa vVH kBZ kBZ @@ -53200,9 +53200,9 @@ kBZ kBZ wqb wqb -xJZ -viK -xJZ +bJd +tVu +bJd ouy kbQ kbQ @@ -53210,10 +53210,10 @@ kbQ eyt eyt wqb -rWY -viK -xJZ -bPk +hfl +tVu +bJd +oHr jqw kbQ kbQ @@ -53224,7 +53224,7 @@ kbQ kbQ kbQ sgk -tVj +onl kbQ kbQ kbQ @@ -53237,19 +53237,19 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd ouy ouy ouy ouy ouy ouy -tVj -tVj -tVj -tVj +onl +onl +onl +onl ouy ouy ouy @@ -53293,18 +53293,18 @@ wUU "} (136,1,1) = {" wUU -nvv -mPk -cUN -mPk -mPk -mPk -mPk -cUN -mPk -mPk -rUa -cUN +pwQ +oeX +gsd +oeX +oeX +oeX +oeX +gsd +oeX +oeX +bbF +gsd xDE wlB wlB @@ -53313,31 +53313,31 @@ lTg wlB wlB wlB -mdg +uNt wlB wlB wlB -ghW +lqr wlB lTg wlB -ghW +lqr wlB wlB lTg wlB wlB -mdg +uNt wlB -qNu +omN wlB wlB wlB -iQr -jKs +vtv +iNL wlB -aQN -aQN +tML +tML wlB lTg wlB @@ -53349,30 +53349,30 @@ nwq cFw nwq nwq -qTE +iHB ihY ihY cFw ykU -jks +xfg nwq cFw fSa cFw -jks -jks -jks -jks +xfg +xfg +xfg +xfg cFw cFw cFw dgY kuO vVH -iQS -fnl -iQS -iQS +uxa +lMX +uxa +uxa vVH kBZ kBZ @@ -53382,9 +53382,9 @@ kBZ kBZ kBZ wqb -xJZ -viK -gDh +bJd +tVu +vBb ouy sgk kbQ @@ -53392,9 +53392,9 @@ qIF eyt eyt wqb -oJW -viK -xJZ +bzt +tVu +bJd wqb kbQ sgk @@ -53403,10 +53403,10 @@ kbQ kbQ kbQ kbQ -tVj -tVj -ykx -tVj +onl +onl +tWU +onl kbQ kbQ sgk @@ -53419,9 +53419,9 @@ jqw eyt eyt eyt -rDD -viK -xJZ +goe +tVu +bJd ouy eyt eyt @@ -53475,21 +53475,21 @@ wUU "} (137,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +gsd +oeX +oeX iWj wlB -mdg +uNt lTg wlB wlB @@ -53514,11 +53514,11 @@ wlB lTg wlB wlB -tfc -iQr -iQr +fjj +vtv +vtv wlB -ghW +lqr wlB wlB rBq @@ -53527,7 +53527,7 @@ xmL deE cFw cFw -jks +xfg cFw cFw cFw @@ -53536,7 +53536,7 @@ cFw deq cFw cFw -jks +xfg cFw mEs ihY @@ -53544,17 +53544,17 @@ wop cFw cFw cFw -jks +xfg cFw cFw -dvT +hvA cFw kuO vVH -iQS -enu -apH -iQS +uxa +sCC +kFy +uxa vVH kBZ wqb @@ -53564,19 +53564,19 @@ wqb kBZ kBZ wqb -xJZ -viK -gDh -lFE +bJd +tVu +vBb +hkC sgk kbQ jqw eyt eyt wqb -xJZ -viK -xJZ +bJd +tVu +bJd wqb iyv tTU @@ -53585,10 +53585,10 @@ kbQ jqw kbQ kbQ -tVj -tVj -tVj -tVj +onl +onl +onl +onl eyt eyt kbQ @@ -53601,9 +53601,9 @@ kbQ eyt eyt eyt -xJZ +bJd wXs -xJZ +bJd ouy eyt kbQ @@ -53657,18 +53657,18 @@ wUU "} (138,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +qrp iWj hPq wlB @@ -53689,27 +53689,27 @@ wlB chX lTg lTg -jtH +rTQ lTg lTg -jtH -jtH -jtH +rTQ +rTQ +rTQ lTg lTg -iQr -iQr +vtv +vtv wlB wlB wlB wlB -nCl +phv wlB xmL cFw cFw cFw -jks +xfg cFw cFw cFw @@ -53718,47 +53718,47 @@ cFw tEM hzx cFw -jks +xfg nwq nwq ihY ihY cFw mDm -dvT +hvA nwq -jks +xfg cFw cFw cFw kuO vVH -nxl -enu -iQS -hza +xQH +sCC +uxa +hOh aoC vVH rql -qcD -kAl +ijZ +akz vVH wqb kBZ wqb -xJZ -viK -xJZ +bJd +tVu +bJd ouy kbQ sgk kbQ eyt wqb -xxs -xJZ -viK -xJZ +fgs +bJd +tVu +bJd wqb wqb tLu @@ -53767,7 +53767,7 @@ wqb wqb ryD ryD -xJZ +bJd ryD wqb wqb @@ -53775,17 +53775,17 @@ wqb wqb tLu tLu -xJZ -xJZ -xJZ +bJd +bJd +bJd wqb tLu wqb wqb wqb -xJZ -viK -xJZ +bJd +tVu +bJd ouy eyt qIF @@ -53839,18 +53839,18 @@ wUU "} (139,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX rJv rXk lTg @@ -53880,18 +53880,18 @@ jqd lTg lTg lTg -kFn +ltl wlB -iQr +vtv wlB lTg -nCl +phv wlB -iig -jks +jZa +xfg cFw cFw -jks +xfg cFw cFw nwq @@ -53899,8 +53899,8 @@ ihY ihY fxX iaH -mio -nRU +myq +dny jjj hjn ihY @@ -53909,65 +53909,65 @@ cFw cFw cFw cFw -jks -jks +xfg +xfg cFw cFw kuO uti -kxU -enu -iQS -iQS -iQS -iQS -jXn -iQS -iQS -tkr -imu -xJZ -xJZ -xJZ -viK -xJZ +rAr +sCC +uxa +uxa +uxa +uxa +ljm +uxa +uxa +ppK +iSq +bJd +bJd +bJd +tVu +bJd ouy tCA kbQ tCA wqb wqb -xJZ -xJZ -viK -xJZ -xJZ -xJZ -xJZ -xJZ -wXu -xJZ +bJd +bJd +tVu +bJd +bJd +bJd +bJd +bJd +mDX +bJd ryD ryD -xJZ +bJd keY -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd wXs -xJZ +bJd kbQ kbQ kbQ @@ -54021,21 +54021,21 @@ wUU "} (140,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vhB +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +jAA nsN -ghW +lqr wlB lTg wlB @@ -54067,10 +54067,10 @@ wlB lTg wlB hPq -aQN +tML wlB xmL -qTE +iHB cFw cFw cFw @@ -54078,11 +54078,11 @@ ebi cFw ihY ihY -gFA +crQ nwq -upb -jks -jks +crg +xfg +xfg cFw epN cFw @@ -54091,65 +54091,65 @@ vbS cFw cFw cFw -jks -jks +xfg +xfg cFw nwq ezU uti -sPD -hdV -pDW -pDW -pDW -eVH -pDW -pDW -pDW -pDW -lVc -lVc -lVc -lVc -pfr -lVc -lVc -lVc -lVc -lVc -lVc -pbw -lVc -lVc -pfr -nch -lVc -lVc -lVc -lVc -xpk -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc +rRk +iKP +eEv +eEv +eEv +uyw +eEv +eEv +eEv +eEv +vHY +vHY +vHY +vHY +rKG +vHY +vHY +vHY +vHY +vHY +vHY +xtD +vHY +vHY +rKG +yaI +vHY +vHY +vHY +vHY +cQn +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY xza -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -cpC -xJZ +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +vHY +tyd +bJd kbQ ofC kbQ @@ -54203,19 +54203,19 @@ wUU "} (141,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -pRa -cJL -rYC +pwQ +oeX +oeX +oeX +gsd +oeX +oeX +oeX +oeX +oeX +mFV +qrp +kis nsN wlB wlB @@ -54246,10 +54246,10 @@ lTg wlB lTg lTg -iQr +vtv kgp kgp -nCl +phv wlB cFw tPK @@ -54262,75 +54262,75 @@ cFw ihY fvV cFw -coX +pXh cFw cFw -dvT +hvA nwq cFw cFw cFw nwq cFw -jks -jks +xfg +xfg cFw cFw nwq kuO uti -fmy -iQS -iQS -iQS -iQS -iQS -iQS -axs -iQS -iQS -xJZ -xJZ -xJZ -xJZ -xJZ +vHf +uxa +uxa +uxa +uxa +uxa +uxa +wrJ +uxa +uxa +bJd +bJd +bJd +bJd +bJd ryD ryD oPV -xJZ -xJZ -eKF -bPk -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJt -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ +bJd +bJd +bOP +oHr +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +jBL +bJd +bJd +bJd +bJd +bJd +epm +bJd +bJd +jBL +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd +bJd ryD kbQ kbQ @@ -54385,19 +54385,19 @@ wUU "} (142,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +bra nsN wlB wlB @@ -54431,20 +54431,20 @@ lTg wlB kgp kgp -nCl +phv wlB cFw cFw ihY ihY -qTE +iHB cFw cFw nwq cFw -hQl +wqj cFw -coX +pXh cFw nwq cFw @@ -54454,39 +54454,39 @@ cFw cFw ihY wop -gkG -nRU +vEr +dny jjj jjj -mcp +vZu tdt xAg xAg -bSD -kAl -kAl +bDR +akz +akz vVH vVH vVH vVH vVH vVH -gfu -xJZ -xJZ -gfu -sny +olv +bJd +bJd +olv +jBL sVr ryD ryD -xJZ -iLc -sny -bPk -sny -xJZ -xJZ -mHh +bJd +kHC +jBL +oHr +jBL +bJd +bJd +xTO wqb wqb tLu @@ -54495,21 +54495,21 @@ wqb wqb wqb wqb -bPk +oHr tLu wqb wqb wqb wqb wqb -bPk +oHr wqb -bPk +oHr wqb wqb tLu -bPk -bPk +oHr +oHr wqb kbQ kbQ @@ -54567,18 +54567,18 @@ wUU "} (143,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +qrp ovT mtT wlB @@ -54609,11 +54609,11 @@ wlB wlB wlB lTg -tfc -iQr +fjj +vtv eia kgp -nCl +phv wlB cFw nwq @@ -54626,18 +54626,18 @@ cFw cFw cFw cFw -jks +xfg cFw ihY ihY cFw -jks +xfg cFw ihY ihY xfz cFw -jks +xfg cFw eHs cFw @@ -54654,20 +54654,20 @@ bzz fNm vVH oET -slA -gfG +eEF +sxr oET oET kbQ kbQ kbQ -lFE +hkC tCA ouy ouy ouy tCA -lFE +hkC ouy ouy kbQ @@ -54680,7 +54680,7 @@ kbQ kbQ kbQ kbQ -tVj +onl kbQ kbQ liq @@ -54749,18 +54749,18 @@ wUU "} (144,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV iWj wlB gjC @@ -54792,11 +54792,11 @@ lTg uHD lTg lTg -fIk +ctj wlB kgp -nCl -ghW +phv +lqr nwq cFw cFw @@ -54804,22 +54804,22 @@ nwq cFw cFw cFw -upb +crg cFw cFw cFw -jks +xfg cFw uAM ihY cFw -agn +xsF cFw ejk nwq -nak +ldl cFw -jks +xfg nwq cFw cFw @@ -54931,18 +54931,18 @@ wUU "} (145,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV iWj wlB wlB @@ -54973,8 +54973,8 @@ wlB lTg lTg lTg -kFH -iQr +jTq +vtv wlB kgp kgp @@ -54984,19 +54984,19 @@ cFw cFw xfz cel -jks -jks -jks -gtv -jks -jks -coX +xfg +xfg +xfg +wAu +xfg +xfg +pXh cFw cFw cFw cFw cFw -jks +xfg pll cFw cFw @@ -55113,23 +55113,23 @@ wUU "} (146,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp +mFV xDE wlB lTg wlB -mdg +uNt wlB lTg lTg @@ -55156,8 +55156,8 @@ lTg pXT lTg lTg -bDs -aQN +eBF +tML kgp kgp wlB @@ -55184,7 +55184,7 @@ eHs cFw nwq bGU -pmM +iyG bGU bGU rvD @@ -55194,7 +55194,7 @@ rvD bGU rvD rvD -elP +saM bGU bGU rvD @@ -55295,18 +55295,18 @@ wUU "} (147,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bbF rJv rXk wlB @@ -55346,11 +55346,11 @@ lTg cFw cFw xmL -jks -jks +xfg +xfg cFw cFw -ykA +mDr cFw cFw cFw @@ -55360,14 +55360,14 @@ nwq nwq cFw cFw -agn +xsF tPK udp cFw bGU bGU -pmM -cYw +iyG +wZE bGU bGU trI @@ -55477,19 +55477,19 @@ wUU "} (148,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oMF nsN wlB lTg @@ -55520,22 +55520,22 @@ uHD wlB lTg dOl -iQr +vtv wlB kgp kgp wlB cFw -iUH -wfh -jks +wdf +unz +xfg nwq wop gDr cFw cFw -jks -jks +xfg +xfg udp cFw nwq @@ -55544,7 +55544,7 @@ nwq nwq cFw nwq -tkh +sjN nwq bGU bGU @@ -55556,7 +55556,7 @@ rvD bGU bGU bGU -pYK +laW bGU rvD bLV @@ -55580,13 +55580,13 @@ eyt eyt qIF uqW -gaJ -tVj +eyO +onl qfu -eQI -tVj -tVj -tVj +vFh +onl +onl +onl eyt eyt eyt @@ -55659,19 +55659,19 @@ wUU "} (149,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPW +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +oMF nsN wlB wlB @@ -55702,7 +55702,7 @@ lTg wlB lTg wlB -iQr +vtv kgp kgp kgp @@ -55716,7 +55716,7 @@ cFw cFw cFw cFw -jks +xfg cFw fSa fSa @@ -55735,7 +55735,7 @@ trI bGU bLV bGU -elP +saM bGU rvD bGU @@ -55744,13 +55744,13 @@ bGU bGU bGU rvD -pYK +laW bGU bGU bGU bGU bGU -elP +saM rvD bGU bGU @@ -55764,9 +55764,9 @@ tXu tXu ouy ouy -uon -kvz -peu +qwY +tQJ +syK ouy ouy tXu @@ -55777,8 +55777,8 @@ tXu tXu tXu tXu -vqG -tVj +rrG +onl kbQ qIF qfu @@ -55841,19 +55841,19 @@ wUU "} (150,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -wLB +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +jIe nsN hPq wlB @@ -55884,10 +55884,10 @@ uHD uHD lTg lTg -iQr -aQN +vtv +tML kgp -nCl +phv lTg cFw nwq @@ -55922,7 +55922,7 @@ bGU lzT bGU rvD -uFq +gdY bGU bGU bGU @@ -55944,11 +55944,11 @@ eyt eyt eyt eyt -qTh +tde ouy -qaX -rTi -rTi +hEw +pPW +pPW ouy nhI vjO @@ -55959,8 +55959,8 @@ oAJ liz vDP ouy -cwk -sCp +msR +dGZ kkc vqK kbQ @@ -56023,26 +56023,26 @@ wUU "} (151,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +bra nsN wlB -qNu +omN lTg wlB lTg -mdg +uNt lTg lTg lTg @@ -56065,11 +56065,11 @@ lTg lTg lTg lTg -iQr -iQr -aQN +vtv +vtv +tML wlB -nCl +phv wlB cFw ykU @@ -56088,7 +56088,7 @@ pgn kgA nwq kyp -oWf +vCM kyp kyp kyp @@ -56140,12 +56140,12 @@ fPJ bGU oBq kjr -kVE -ibi -dRI -jrv -fZP -vqG +xRs +xLS +imS +pyV +iPE +rrG pGs pGs pGs @@ -56205,18 +56205,18 @@ wUU "} (152,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp wHt mtT wlB @@ -56235,12 +56235,12 @@ lTg lTg wlB gjC -mdg +uNt lTg lTg lTg lTg -ghW +lqr wlB lTg wlB @@ -56248,19 +56248,19 @@ wlB lTg wlB wlB -iQr -aQN +vtv +tML wlB -nCl +phv wlB cFw cFw -wfh -agn +unz +xsF nwq cFw cFw -qTE +iHB nNB cFw cFw @@ -56275,8 +56275,8 @@ cFh kyp elI fWd -dRs -dRs +hMu +hMu pjD dTG cFh @@ -56322,11 +56322,11 @@ huE lzT bGU rKS -vEi -dir -xHz -tVj -xcz +uXM +uaX +fDy +onl +kvA pGs pGs pGs @@ -56387,18 +56387,18 @@ wUU "} (153,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV iWj wlB lTg @@ -56408,7 +56408,7 @@ wlB wlB lTg wlB -ghW +lqr wlB wlB wlB @@ -56431,14 +56431,14 @@ wlB lTg wlB wlB -aQN -aQN -nCl +tML +tML +phv wlB cFw nwq ihY -vlL +bQO gcB jNE cFw @@ -56456,10 +56456,10 @@ dTG kyp kyp hds -exX -xFb -ulb -dRs +efK +lBi +ycM +hMu qvS hWv bGU @@ -56468,7 +56468,7 @@ rvD lzT bGU vNB -elP +saM bGU bGU bGU @@ -56477,7 +56477,7 @@ bGU bGU rvD bGU -uFq +gdY bGU rvD bGU @@ -56489,7 +56489,7 @@ bGU bGU bGU kyD -uFq +gdY qZJ bGU kyD @@ -56504,9 +56504,9 @@ huE lzT lzT gzm -rTi -sCp -inV +pPW +dGZ +gEf ouy ouy huF @@ -56569,25 +56569,25 @@ wUU "} (154,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV rJv rXk wlB wlB wlB wlB -ghW +lqr wlB wlB wlB @@ -56606,7 +56606,7 @@ phk wlB wlB bnH -mdg +uNt wlB wlB lTg @@ -56615,7 +56615,7 @@ wlB lTg hPq kgp -nCl +phv wlB nwq cFw @@ -56626,22 +56626,22 @@ ihY nwq nwq wUF -oWf +vCM lci kyp kyp nCF kGJ plq -dRs +hMu qvS kyp -hEv +gKM hds -ulb -dRs -dRs -dRs +ycM +hMu +hMu +hMu qvS kyp bGU @@ -56681,7 +56681,7 @@ kyD bGU bGU kyD -pYK +laW fFw pYI huE @@ -56751,19 +56751,19 @@ wUU "} (155,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp +bra nsN tLS wlB @@ -56778,7 +56778,7 @@ wlB wlB wlB lTg -mdg +uNt wlB xCZ wlB @@ -56797,7 +56797,7 @@ wlB lTg kgp kgp -aQN +tML wlB kyp kyp @@ -56815,17 +56815,17 @@ kyp kyp cFh hds -dRs +hMu qvS kyp kyp hds -dRs -xFb -xFb -xFb +hMu +lBi +lBi +lBi qvS -uWo +mof bGU rvD bGU @@ -56837,7 +56837,7 @@ bGU lzT lzT bGU -pYK +laW bLV bGU bGU @@ -56933,19 +56933,19 @@ wUU "} (156,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra nsN wlB wlB @@ -56956,32 +56956,32 @@ wlB lTg lTg wlB -qNu +omN wlB wlB wlB wlB wlB pDl -dyl +aOY lTg aCW wlB wlB -qNu +omN lTg wlB lTg wlB lTg -aQN -ayx +tML +qHG kgp kgp kyP -aQN +tML lTg -iHN +gVU kyp kyp kyp @@ -56997,15 +56997,15 @@ cFh kyp kyp hds -dRs +hMu qvS cFh kyp hds -ulb -dRs -xFb -xFb +ycM +hMu +lBi +lBi pjD dTG bGU @@ -57115,19 +57115,19 @@ wUU "} (157,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -rUa -wBp +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +bbF +bra nsN eNk wlB @@ -57145,9 +57145,9 @@ lTg wlB cFZ nti -ola +lZF ayF -ueB +raQ lTg wlB lTg @@ -57156,12 +57156,12 @@ wlB wlB wlB wlB -aQN -aQN +tML +tML tMZ pvQ lTg -aQN +tML wlB kyp cFh @@ -57179,20 +57179,20 @@ elI jek jek fWd -xFb +lBi qvS cFh kyp hds -dRs -xFb -tHc -xFb -dRs +hMu +lBi +dFL +lBi +hMu pjD gPi xfQ -bUP +qlo veV jTR bGU @@ -57214,9 +57214,9 @@ bGU rvD lzT bGU -elP +saM bLV -pYK +laW bGU bGU bGU @@ -57230,7 +57230,7 @@ bGU kyD bGU huE -uFq +gdY bGU huE bGU @@ -57297,21 +57297,21 @@ wUU "} (158,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +kis nsN -iFc +vas qAy lTg lTg @@ -57319,7 +57319,7 @@ wlB wlB wlB wlB -ghW +lqr lTg wlB gjC @@ -57327,7 +57327,7 @@ wlB lTg yjH mUv -hgc +fva sZd wlB gOp @@ -57335,10 +57335,10 @@ wlB qNX rXk wlB -ghW +lqr kAH wlB -aQN +tML tMZ lTg tmZ @@ -57350,32 +57350,32 @@ kyp jTj elI fWd -xFb -xFb -dRs +lBi +lBi +hMu qvS kyp kyp kyp hds -exX -dRs -xFb -dRs +efK +hMu +lBi +hMu qvS cFh cFh hds -dRs -xFb -xFb -xFb -dRs -dRs -dRs -bUP -bUP -bUP +hMu +lBi +lBi +lBi +hMu +hMu +hMu +qlo +qlo +qlo ghN rvD bGU @@ -57383,7 +57383,7 @@ qoI gPi gPi jTR -elP +saM bGU lzT lzT @@ -57449,16 +57449,16 @@ bsf bsf bsf avD -mqe -mqe +wiw +wiw avD -hRs +bxv cHV wsG -hRs +bxv avD -mqe -mqe +wiw +wiw avD bsf bsf @@ -57479,19 +57479,19 @@ wUU "} (159,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +rpD nBc tmZ rXk @@ -57510,7 +57510,7 @@ tmZ rXk wlB wlB -aQN +tML lTg kAH wlB @@ -57520,50 +57520,50 @@ wlB lTg wlB wlB -aQN -aQN +tML +tML tMZ -pTI -rnL -pdK +uGI +kTX +jel pjD jek jek jek fWd -xFb -xFb -xFb -xFb +lBi +lBi +lBi +lBi pjD jek jek jek fWd -xFb -xFb -dRs -xFb +lBi +lBi +hMu +lBi qvS kyp kyp hds -dRs -dRs -dRs -xFb -dRs -dRs -xFb -xFb -xFb -bUP +hMu +hMu +hMu +lBi +hMu +hMu +lBi +lBi +lBi +qlo ghN bGU bGU ejM -bUP -bUP +qlo +qlo veV jTR bGU @@ -57601,7 +57601,7 @@ pYI lzT lzT bGU -pYK +laW pYI qZJ kyD @@ -57631,16 +57631,16 @@ bsf bsf avD avD -uvd -lFT +kUg +uVh avD -kjI -snS -snS -kjI +lQk +rvf +rvf +lQk avD -qcC -uvd +glk +kUg avD avD bsf @@ -57661,21 +57661,21 @@ wUU "} (160,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -pdK -pdK +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra +jel +jel jJn wlB wlB @@ -57686,9 +57686,9 @@ nBc tmZ tmZ sXc -pdK -pdK -pdK +jel +jel +jel nsN wlB tLS @@ -57705,48 +57705,48 @@ wlB lTg tMZ fbw -pdK -pdK -pdK -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb +jel +jel +jel +lBi +lBi +lBi +lBi +hMu +lBi +lBi +hMu +lBi +lBi +hMu +lBi +hMu +lBi +hMu +hMu +lBi +lBi pjD jek jek fWd -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -bUP +hMu +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +qlo ghN bGU ylB ejM -bUP -xFb -bUP +qlo +lBi +qlo veV jTR bGU @@ -57755,7 +57755,7 @@ bGU lzT bGU bGU -pYK +laW bGU bGU bGU @@ -57771,10 +57771,10 @@ bGU rqg gPi xeU -dRs -spv -spv -aXn +hMu +omr +omr +bEq kyj gPi bko @@ -57812,18 +57812,18 @@ bsf bsf bsf avD -fFK -uvd -smx -aCl -kjI -kjI -kjI -kjI -aCl -nzb -uvd -uvd +alA +kUg +rvb +eaa +lQk +lQk +lQk +lQk +eaa +fLe +kUg +kUg avD bsf bsf @@ -57843,34 +57843,34 @@ wUU "} (161,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp -rnL -pdK +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp +bra +kTX +jel nBc tmZ tmZ tmZ tmZ sXc -rnL -pdK -pdK -pdK -urD -rnL -pdK +kTX +jel +jel +jel +lcj +kTX +jel nBc tmZ tmZ @@ -57887,49 +57887,49 @@ wlB wlB pvQ tMZ -pdK -pdK -pdK -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -dRs -dRs -byC -xFb -dRs -xFb -xFb -xFb -exX -xFb -bUP +jel +jel +jel +hMu +lBi +lBi +lBi +lBi +lBi +lBi +lBi +hMu +cke +lBi +lBi +lBi +lBi +lBi +lBi +cke +lBi +hMu +hMu +hMu +hMu +hMu +cke +lBi +hMu +lBi +lBi +lBi +efK +lBi +qlo veV gPi gPi xfQ -bUP -xFb -bUP -bUP +qlo +lBi +qlo +qlo veV jTR bGU @@ -57950,26 +57950,26 @@ bko gPi bko gPi -wts -dRs -spv -dRs -spv -spv -spv -dRs -dRs -spv +tzu +hMu +omr +hMu +omr +omr +omr +hMu +hMu +omr ghN pZS kyD bGU bGU pZS -vXG +nFb bGU bGU -uFq +gdY rvD bGU rvD @@ -57994,18 +57994,18 @@ bsf bsf bsf avD -pBf -fFK -bye +aoR +alA +uPJ avD -fJI -kjI -kjI -vnb +nKt +lQk +lQk +owy avD -gBM -uvd -uvd +nQc +kUg +kUg avD bsf bsf @@ -58025,42 +58025,42 @@ wUU "} (162,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lze -wBp -xVw -mPW -bBV -mPW -xVw -wBp -wBp -wBp -bBV -mPW -mPW -wLB -wBp -mPW -wBp -xVw -rYC -xVw -wBp -mPW -wBp -bBV +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +utT +bra +rpD +oMF +fGD +oMF +rpD +bra +bra +bra +fGD +oMF +oMF +jIe +bra +oMF +bra +rpD +kis +rpD +bra +oMF +bra +fGD rJv tWT uxM @@ -58069,50 +58069,50 @@ tWT uxM loO ifO -wBp -xVw -rYC -xVw -wBp -wBp -xVw -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -mPW -wLB -wBp -mPW -wLB -bBV -wLB -mPW -wBp -xFb -xFb -bUP -bUP -bUP -bUP -hwE -xFb -xFb -nKR -bUP +bra +rpD +kis +rpD +bra +bra +rpD +bra +bra +kis +rpD +bra +bra +bra +bra +kis +rpD +bra +bra +bra +bra +rpD +kis +bra +oMF +jIe +bra +oMF +jIe +fGD +jIe +oMF +bra +lBi +lBi +qlo +qlo +qlo +qlo +asS +lBi +lBi +tls +qlo veV gPi gPi @@ -58128,20 +58128,20 @@ bGU qoI gPi xfQ -spv -dRs -esA -dRs -esA -dRs -spv -dRs -dRs -spv -spv -dRs -spv -spv +omr +hMu +bDT +hMu +bDT +hMu +omr +hMu +hMu +omr +omr +hMu +omr +omr ghN gRj bGU @@ -58151,7 +58151,7 @@ pZS kyD qhO kyD -cYw +wZE bGU bGU rvD @@ -58181,8 +58181,8 @@ avD avD avD avD -lms -lms +tHn +tHn avD avD avD @@ -58207,97 +58207,97 @@ wUU "} (163,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -cJL -mPk -mPk -mPk -pRa -mPk -rUa -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -pRa -rUa -pRa -pRa -mPk -pRa -pRa -rUa -pRa -pRa -uhi +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +oeX +qrp +oeX +oeX +oeX +mFV +oeX +bbF +oeX +oeX +oeX +oeX +qrp +oeX +oeX +oeX +oeX +mFV +bbF +mFV +mFV +oeX +mFV +mFV +bbF +mFV +mFV +ykz kkF -mPk -mPk -mPk -mPk -cJL -mPk -mPk -cJL -mPk -cJL -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -pRa -mPk -mPk -mPk -rUa -pRa -wLB -dRs -xFb -xFb -bUP -xFb -bUP -xFb -xFb -xFb -xFb -bUP -bUP -bUP -bUP +oeX +oeX +oeX +oeX +qrp +oeX +oeX +qrp +oeX +qrp +oeX +oeX +oeX +oeX +qrp +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp +oeX +oeX +mFV +oeX +oeX +oeX +bbF +mFV +jIe +hMu +lBi +lBi +qlo +lBi +qlo +lBi +lBi +lBi +lBi +qlo +qlo +qlo +qlo veV gPi gPi @@ -58308,22 +58308,22 @@ gPi gPi gPi xfQ -bUP -bUP -spv -dRs -spv -ulb -spv -dRs -dRs -esA -spv -spv -dRs -dRs -spv -dRs +qlo +qlo +omr +hMu +omr +ycM +omr +hMu +hMu +bDT +omr +omr +hMu +hMu +omr +hMu veV bko gPi @@ -58358,18 +58358,18 @@ bsf bsf bsf avD -qxb -aEg -snS -qxb +ipo +fuX +rvf +ipo brT -nEE -kjI +cbb +lQk brT -qxb -aEg -snS -qxb +ipo +fuX +rvf +ipo avD bsf bsf @@ -58389,130 +58389,130 @@ wUU "} (164,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -rUa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +mFV +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +qrp +oeX +oeX +oeX +oeX +bbF kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW -exX -xFb -xFb -xFb -xFb -xFb -xFb -xFb -ulb -dRs -xFb -dRs -xFb -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -dRs -spv -dRs -dRs -spv -hwE +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oMF +efK +lBi +lBi +lBi +lBi +lBi +lBi +lBi +ycM +hMu +lBi +hMu +lBi +qlo +qlo +qlo +qlo +qlo +qlo +qlo +qlo +qlo +qlo +hMu +hMu +omr +hMu +hMu +omr +hMu +hMu +omr +hMu +hMu +hMu +hMu +hMu +hMu +omr +hMu +hMu +omr +asS ghN pZS -lYD -fTh +eHr +gBZ kyD bGU bGU @@ -58540,18 +58540,18 @@ mMz bsf bsf avD -oWU -kjI -jub -kjI -szZ -kjI -kjI -szZ -kjI -kjI -jub -kjI +krS +lQk +jUG +lQk +mTB +lQk +lQk +mTB +lQk +lQk +jUG +lQk avD bsf bsf @@ -58571,131 +58571,131 @@ wUU "} (165,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +lDw kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -spv -dRs -dRs +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +rpD +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +bDT +hMu +hMu +omr +hMu +hMu +omr +hMu +hMu +hMu +hMu +hMu +omr +omr +hMu +omr +hMu +hMu aaG dkS -qlw -tjn -pmM +nag +evy +iyG bGU qZJ pGs @@ -58718,22 +58718,22 @@ bsf mMz sOw sOw -iwV +eAE avD bsf avD -qxb -snS -pcH -qxb +ipo +rvf +rMc +ipo brT -kjI -kjI +lQk +lQk brT -qxb -snS -snS -qxb +ipo +rvf +rvf +ipo avD bsf sOw @@ -58753,133 +58753,133 @@ wUU "} (166,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -xFb -xFb -dRs -dRs -ulb -dRs -dRs -dRs -dRs -dRs -dRs -spv -esA -dRs -dRs -spv -dRs -dRs -dRs -spv -spv -dRs -dRs -fPy -spv -dRs -spv -dRs -dRs -esA -ihC +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +kis +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +hMu +lBi +lBi +lBi +lBi +hMu +hMu +ycM +hMu +hMu +hMu +hMu +hMu +hMu +omr +bDT +hMu +hMu +omr +hMu +hMu +hMu +omr +omr +hMu +hMu +cek +omr +hMu +omr +hMu +hMu +bDT +fHL ghN -pmM -hTX -evW -pYK -elP +iyG +gCV +swB +laW +saM rvD pGs pGs @@ -58899,9 +58899,9 @@ gNE gNE avD ulv -uvd -uvd -aEQ +kUg +kUg +hyP avD avD brT @@ -58909,8 +58909,8 @@ brT brT brT brT -rco -rco +giZ +giZ brT brT brT @@ -58919,8 +58919,8 @@ brT avD avD ofJ -kEK -uvd +nnc +kUg crq gFH mMz @@ -58935,127 +58935,127 @@ wUU "} (167,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +lDw kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -spv -spv -dRs -dRs -dRs -spv -esA -spv -spv -dRs -dRs -esA -dRs -esA -dRs -bUP +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +rpD +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +lBi +hMu +lBi +lBi +hMu +lBi +lBi +hMu +hMu +hMu +hMu +hMu +hMu +hMu +bDT +omr +hMu +hMu +omr +omr +hMu +hMu +hMu +omr +bDT +omr +omr +hMu +hMu +bDT +hMu +bDT +hMu +qlo ghN bGU trI @@ -59082,27 +59082,27 @@ bsf sOw mol mol -fof +wDE avD -vNT -vNT -xka -vNT -vNT +aNg +aNg +kGP +aNg +aNg brT -snS -kjI -kjI -snS +rvf +lQk +lQk +rvf brT -rmS -rmS -xka -fbW -rnj +cvs +cvs +kGP +jNG +sqt oJX -pqf -uvd +qEC +kUg ulv gFH bsf @@ -59117,127 +59117,127 @@ wUU "} (168,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -exX -dRs -exX -dRs -esA -dRs -lxs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -dRs -bUP +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra +cke +lBi +lBi +lBi +lBi +lBi +lBi +cke +lBi +lBi +lBi +cke +lBi +lBi +lBi +cke +lBi +hMu +hMu +hMu +efK +hMu +efK +hMu +bDT +hMu +ccD +hMu +hMu +bDT +omr +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +omr +omr +hMu +hMu +qlo veV jTR bGU @@ -59262,29 +59262,29 @@ bsf bsf mMz sOw -kEK -uvd -uvd +nnc +kUg +kUg brT -kjI -snS -xka -snS -kjI -rco -sUG -kjI -kjI -qpD -lvS -kjI -snS -xka -nFy -ojF +lQk +rvf +kGP +rvf +lQk +giZ +wXI +lQk +lQk +oBS +cmP +lQk +rvf +kGP +hSB +dLE brT -uvd -uvd +kUg +kUg crq gFH bsf @@ -59299,128 +59299,128 @@ wUU "} (169,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +lDw kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -wLB -mPW -wLB -bBV -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -bBV -wBp -xBH -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -spv -esA -esA -dRs -dRs -dRs -bUP -bUP +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra +bra +jIe +oMF +jIe +fGD +rpD +bra +bra +bra +rpD +bra +kis +bra +rpD +bra +bra +bra +kis +rpD +bra +bra +bra +fGD +bra +eiJ +hMu +hMu +hMu +hMu +hMu +hMu +bDT +omr +hMu +hMu +hMu +hMu +omr +bDT +bDT +hMu +hMu +hMu +qlo +qlo ghN bGU bGU @@ -59444,30 +59444,30 @@ bsf bsf bsf sOw -uvd +kUg crq -uvd +kUg brT -bPx -snS -xka -snS -cRn +liR +rvf +kGP +rvf +tkz brT -czG -kjI -kjI -snS +iDK +lQk +lQk +rvf brT -kjI -snS -xka -ndp -kjI +lQk +rvf +kGP +uZW +lQk brT -uvd -kEK -uvd +kUg +nnc +kUg gFH bsf bsf @@ -59481,128 +59481,128 @@ wUU "} (170,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -mPk -mPk -cJL -mPk -tTq -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -spv -spv -spv -spv -dRs -dRs -dRs -dRs -bUP -ucL +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +qrp +oeX +oeX +oeX +oeX +oeX +qrp +oeX +pMF +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +omr +omr +omr +omr +omr +omr +hMu +hMu +hMu +hMu +qlo +dvt ghN bGU bGU @@ -59627,30 +59627,30 @@ bsf bsf sOw ulv -uvd -uvd +kUg +kUg brT -kjI -snS -xka -snS -kjI -mRs -snS -kjI -kjI -snS -mRs -kjI -snS -xka -eBS -kjI +lQk +rvf +kGP +rvf +lQk +wtG +rvf +lQk +lQk +rvf +wtG +lQk +rvf +kGP +pLR +lQk brT -uvd -uvd -uvd -lRz +kUg +kUg +kUg +kKj bsf gRU bsf @@ -59663,128 +59663,128 @@ wUU "} (171,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +lDw kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -rYC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +oeX +oeX +oeX +kis +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +qlo ghN bGU bGU @@ -59808,30 +59808,30 @@ bsf gRU bsf brT -kEK -uvd -uvd +nnc +kUg +kUg brT -kjI -kjI -rco -kjI -gms -mRs -snS -kjI -kjI -snS -mRs -gms -kjI -lvS -nkq -kjI +lQk +lQk +giZ +lQk +pin +wtG +rvf +lQk +lQk +rvf +wtG +pin +lQk +cmP +asj +lQk brT -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -59845,132 +59845,132 @@ wUU "} (172,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa -mPW -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -ulb -bUP +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bbF +oMF +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +ycM +qlo veV jTR bGU -akg +oXB bGU rvD rvD @@ -59990,30 +59990,30 @@ bsf bsf bsf gFH -uvd -uvd -uvd +kUg +kUg +kUg brT -kjI -snS -xka -snS -snS -mRs -snS -kjI -kjI -snS -mRs -snS -snS -xka -dBA -kjI +lQk +rvf +kGP +rvf +rvf +wtG +rvf +lQk +lQk +rvf +wtG +rvf +rvf +kGP +dzu +lQk brT -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -60027,129 +60027,129 @@ wUU "} (173,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +lDw kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +rpD +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +qlo ghN bGU bGU @@ -60172,30 +60172,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +kUg +kUg +kUg brT -cRn -vNT +tkz +aNg brT -snS -snS +rvf +rvf brT -snS -kjI -kjI -snS +rvf +lQk +lQk +rvf brT -snS -snS +rvf +rvf brT -qwU -kjI +aHt +lQk brT -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -60209,129 +60209,129 @@ wUU "} (174,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +qlo veV jTR bGU @@ -60354,30 +60354,30 @@ bsf bsf bsf gFH -uvd -uvd -uvd +kUg +kUg +kUg brT -kjI -vNT +lQk +aNg brT -reA +mha brT brT -snS -kjI -kjI -snS +rvf +lQk +lQk +rvf brT brT -rmS +cvs brT -qwU -nnk +aHt +csC brT -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -60391,130 +60391,130 @@ wUU "} (175,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +lDw kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -wBp -byC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -bUP -bUP +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +bra +cke +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +lBi +lBi +qlo +qlo ghN bGU vNB @@ -60536,30 +60536,30 @@ bsf bsf bsf gFH -uvd -uvd -uvd +kUg +kUg +kUg brT -kjI -vNT +lQk +aNg brT brT brT -oKy -snS -kjI -kjI -snS -oKy +sxn +rvf +lQk +lQk +rvf +sxn brT brT brT -iqU -kjI +xYs +lQk brT -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -60573,130 +60573,130 @@ wUU "} (176,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -dRs -dRs -tHc -jFL +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +kis +lBi +lBi +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +hMu +lBi +lBi +hMu +hMu +dFL +tRD ghN bGU bGU @@ -60718,30 +60718,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +kUg +kUg +kUg brT -kqQ +qnE avD brT -cNJ -cNJ -snS -czG -kjI -kjI -snS -snS -cNJ -cNJ +hZP +hZP +rvf +iDK +lQk +lQk +rvf +rvf +hZP +hZP brT avD -cFu +kue brT -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -60755,130 +60755,130 @@ wUU "} (177,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +lDw kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -dRs -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb -jFL +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra +cke +lBi +lBi +lBi +hMu +hMu +hMu +hMu +hMu +hMu +hMu +lBi +hMu +hMu +lBi +hMu +lBi +hMu +hMu +lBi +lBi +tRD ghN vNB rvD @@ -60900,30 +60900,30 @@ bsf bsf bsf brT -uvd -uvd -dHD +kUg +kUg +lna avD avD avD -snS -snS -snS -snS -kjI -kjI -kjI -kjI -snS -snS -snS -snS +rvf +rvf +rvf +rvf +lQk +lQk +lQk +lQk +rvf +rvf +rvf +rvf avD avD avD -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -60937,130 +60937,130 @@ wUU "} (178,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xFb -xFb -dRs -xFb -byC -dRs -xFb -dRs -byC -xFb -xFb -dRs -byC -dRs -xFb -byC -xFb -xFb -xFb -byC -xFb -exX +lDw +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra +lBi +lBi +hMu +lBi +cke +hMu +lBi +hMu +cke +lBi +lBi +hMu +cke +hMu +lBi +cke +lBi +lBi +lBi +cke +lBi +efK kyj jTR dlD @@ -61082,31 +61082,31 @@ bsf bsf bsf brT -uvd -uvd -uvd -wNI -xqS -rco -kjI -kjI -kjI -kjI -kjI -oKy -cUE -kjI -kjI -kjI -kjI -atM -pTc -lvt -lFr -uvd -uvd -uvd -iwV +kUg +kUg +kUg +qcL +mDG +giZ +lQk +lQk +lQk +lQk +lQk +sxn +nFm +lQk +lQk +lQk +lQk +nBt +qcm +azs +mzW +kUg +kUg +kUg +eAE bsf bsf bsf @@ -61119,131 +61119,131 @@ wUU "} (179,1,1) = {" wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ hJB -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xVw -rYC -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -xVw -wBp -wBp -rYC -wBp -xVw -wBp -rYC -xVw -wBp -xVw -rYC +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +bra +rpD +kis +rpD +bra +bra +bra +rpD +bra +kis +bra +bra +rpD +bra +bra +kis +bra +rpD +bra +kis +rpD +bra +rpD +kis enZ iAE pGs @@ -61264,30 +61264,30 @@ bsf bsf bsf brT -uvd -uvd -uvd -uvd -smx -rco -kjI -kjI -kjI -kjI -kjI -oKy -oKy -kjI -kjI -kjI -kjI -kjI -pTc -nzb -uvd -uvd -uvd -kEK +kUg +kUg +kUg +kUg +rvb +giZ +lQk +lQk +lQk +lQk +lQk +sxn +sxn +lQk +lQk +lQk +lQk +lQk +qcm +fLe +kUg +kUg +kUg +nnc sOw bsf bsf @@ -61390,43 +61390,43 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -cJL -pRa -mPk -mPk -mPk -rUa -imk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +qrp +oeX +oeX +oeX +qrp +mFV +oeX +oeX +oeX +bbF +ejn rJv iAE pGs @@ -61446,29 +61446,29 @@ bsf bsf bsf brT -uvd -uvd -uvd -eIr -uxi -rco -kjI -snS -kjI -snS -kjI -kjI -kjI -kjI -snS -kjI -snS -snS -rco -vPh -nau -uvd -uvd +kUg +kUg +kUg +eIv +fCu +giZ +lQk +rvf +lQk +rvf +lQk +lQk +lQk +lQk +rvf +lQk +rvf +rvf +giZ +xKI +qKT +kUg +kUg ulv sOw bsf @@ -61572,44 +61572,44 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -imk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +mFV +mFV +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn +oeX +mFV +ejn rJv pGs pGs @@ -61628,31 +61628,31 @@ bsf bsf bsf gFH -uvd -uvd -uvd +kUg +kUg +kUg brT avD avD avD brT -mvv -snS -snS -kjI -kjI -snS -czG -pjm +quG +rvf +rvf +lQk +lQk +rvf +iDK +rWt brT avD avD avD brT -uvd -uvd +kUg +kUg ulv -iwV +eAE bsf bsf bsf @@ -61754,47 +61754,47 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -xTA -pRa -wBp -fjv -mPW +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn +vxh +mFV +bra +dlV +oMF mZH kdq tWT @@ -61809,30 +61809,30 @@ hre bsf bsf bsf -lRz -uvd -uvd -uvd +kKj +kUg +kUg +kUg sOw bsf bsf -xXr -bPF -kjI -jUY -pwc -kjI -kjI -oKy -asf -ahD -idn +hzB +rea +lQk +nTn +fDA +lQk +lQk +sxn +ihg +tVr +hyw avD bsf bsf brT -uvd -uvd +kUg +kUg ulv brT bsf @@ -61936,54 +61936,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -xTA -pRa -imk -cJL -xTA -pRa -pRa -pRa -mPk -rUa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn +oeX +vxh +mFV +ejn +qrp +vxh +mFV +mFV +mFV +oeX +bbF +mFV iWj hre bsf @@ -61992,30 +61992,30 @@ hre bsf bsf gFH -kEK -uvd -uvd +nnc +kUg +kUg brT bsf bsf avD -jQG -kjI -jUY -oKy -kjI -kjI -pfL -asf -aIm -cwp +bet +lQk +nTn +sxn +lQk +lQk +wjL +ihg +xdT +ngf avD bsf bsf brT -uvd -uvd -uvd +kUg +kUg +kUg brT bsf bsf @@ -62118,54 +62118,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +oeX +mFV +mFV +oeX +mFV +mFV +mFV +mFV xDE kkv dsi @@ -62173,32 +62173,32 @@ dsi bsf bsf bsf -lRz +kKj eiK -uvd -uvd +kUg +kUg sOw bsf mMz -xXr -ydZ -kjI -jUY -rAf -kjI -kjI -oKy -asf -qLH -jYs -xXr +hzB +pAr +lQk +nTn +pCv +lQk +lQk +sxn +ihg +pHs +dLt +hzB bsf mMz -iwV -uvd -uvd -kEK -iwV +eAE +kUg +kUg +nnc +eAE bsf bsf bsf @@ -62300,54 +62300,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -imk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -mPk -rUa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn +oeX +oeX +ejn +oeX +oeX +mFV +oeX +mFV +mFV +oeX +mFV +oeX +bbF iWj tOV dsi @@ -62356,29 +62356,29 @@ hre gRU bsf gFH -dHD -kEK -uvd +lna +nnc +kUg sOw mMz bsf -xXr -iSC -kjI -jUY -oKy -kjI -kjI -pfL -asf -vmY -mke -xXr +hzB +auw +lQk +nTn +sxn +lQk +lQk +wjL +ihg +lRZ +elm +hzB bsf bsf brT -uvd -uvd +kUg +kUg ulv sOw bsf @@ -62482,54 +62482,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -mPk -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +ejn +oeX +mFV +mFV +mFV +mFV +oeX +mFV +mFV +mFV +oeX +mFV iWj tRN dsi @@ -62538,29 +62538,29 @@ hre bsf bsf brT -uvd -uvd -uvd -lRz +kUg +kUg +kUg +kKj kTu mMz avD brT -mvv -snS -snS -kjI -kjI -snS -snS -pjm +quG +rvf +rvf +lQk +lQk +rvf +rvf +rWt brT -xXr +hzB mMz bsf brT -uvd -uvd +kUg +kUg ulv brT bsf @@ -62664,54 +62664,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +mFV +mFV +oeX +mFV +mFV +oeX +mFV +mFV +mFV rJv iAE hre @@ -62720,9 +62720,9 @@ hre bsf bsf sOw -uvd -uvd -uvd +kUg +kUg +kUg brT gRU mLJ @@ -62730,21 +62730,21 @@ avD brT brT brT -snS -jbR -kjI -snS +rvf +tMz +lQk +rvf brT brT brT avD bhU bsf -iwV -uvd -uvd -uvd -iwV +eAE +kUg +kUg +kUg +eAE mMz bsf bsf @@ -62846,55 +62846,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -hfZ -mPk -mPk -pRa -mPk -mPk -pRa -pRa -mPk -jhK -mPk -mPk -cJL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +cXU +oeX +oeX +mFV +oeX +oeX +mFV +mFV +oeX +kFq +oeX +oeX +qrp xDE aOG tRN @@ -62904,27 +62904,27 @@ bsf lqa sOw crq -uvd +kUg brT vdV tPE qza -kjI -rco -kjI -snS -aJp -kjI -snS -kjI -rco -kjI +lQk +giZ +lQk +rvf +tvH +lQk +rvf +lQk +giZ +lQk vus xfD mMz sOw -uvd -uvd +kUg +kUg brT brT bsf @@ -63028,41 +63028,41 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI xce byF xce @@ -63078,36 +63078,36 @@ xce xce xce gBP -hXq -hXq -hXq -hXq -hXq +eCn +eCn +eCn +eCn +eCn qbX -iwV -uvd -uvd +eAE +kUg +kUg sOw bsf -jeT +msl lbX -kjI -rco -kjI -dTe -kjI -kjI -kjI -kjI -qAd -kjI -xuX -tfC +lQk +giZ +lQk +bZG +lQk +lQk +lQk +lQk +vXj +lQk +xHj +iNp bsf brT -uvd -uvd -iwV +kUg +kUg +eAE bsf bsf bsf @@ -63210,55 +63210,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR iWj bsf vxi @@ -63267,28 +63267,28 @@ hre vxi esK vBZ -lRz +kKj eiK sOw bsf jwf ehM -kjI -rco -eRQ -kjI -snS -snS -kjI -kjI -qAd -kjI +lQk +giZ +lTS +lQk +rvf +rvf +lQk +lQk +vXj +lQk cXa rYi bsf brT -uvd -kEK +kUg +nnc sOw bsf bsf @@ -63392,55 +63392,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR rJv sXn hre @@ -63457,21 +63457,21 @@ jXp avD avD brT -yaC -yaC +xjQ +xjQ brT brT -yaC -yaC +xjQ +xjQ brT avD avD xfD bsf sOw -uvd +kUg sOw -iwV +eAE bsf bsf bsf @@ -63574,56 +63574,56 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV rJv apG vxi @@ -63632,27 +63632,27 @@ dsi bsf pTO psk -iwV +eAE brT bsf bsf avD -vOa -kjI -kjI -kjI -snS -snS -kjI -kjI -kjI -ueQ +nlu +lQk +lQk +lQk +rvf +rvf +lQk +lQk +lQk +bpr avD bsf bsf sOw -kEK -iwV +nnc +eAE mMz bsf bsf @@ -63756,57 +63756,57 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV rJv iAE bsf @@ -63819,16 +63819,16 @@ sOw gNE gNE avD -bTN -asf -kjI -kjI -snS -snS -kjI -kjI -jUY -bTN +nup +ihg +lQk +lQk +rvf +rvf +lQk +lQk +nTn +nup avD bsf bsf @@ -63962,34 +63962,34 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV iWj bsf dsi @@ -64001,16 +64001,16 @@ gFY lqM lqM sOw -kEK -kjI -kjI -kjI -snS -snS -kjI -kjI -kjI -ueQ +nnc +lQk +lQk +lQk +rvf +rvf +lQk +lQk +lQk +bpr sOw bsf bsf @@ -64144,34 +64144,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV rJv iAE hre @@ -64183,15 +64183,15 @@ bsf bsf vxi sOw -uvd -uvd -kjI -kjI -snS -snS -kjI -kjI -kEK +kUg +kUg +lQk +lQk +rvf +rvf +lQk +lQk +nnc avD sOw bsf @@ -64326,35 +64326,35 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -rUa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +bbF iWj bsf hre @@ -64366,14 +64366,14 @@ bsf bsf nEY avD -uvd -kjI -qEn +kUg +lQk +qQS avD avD -kjI +lQk eiK -uvd +kUg sOw bsf bsf @@ -64508,34 +64508,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV +mFV +mFV +rwR +mFV +mFV +mFV ovT uNz vxi @@ -64548,13 +64548,13 @@ bsf bsf lVf iyk -kkw +svE eiK -hoU -fxR -fxR -kjI -kjI +sBJ +wVt +wVt +lQk +lQk fcF sOw bsf @@ -64690,17 +64690,17 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +pDI lwm tjs lwm @@ -64718,11 +64718,11 @@ tjs lwm lwm hjK -stK -hXq -hXq -hXq -hXq +mks +eCn +eCn +eCn +eCn qCT qCT qCT @@ -64731,13 +64731,13 @@ bsf bsf fVw sOw -kjI -kjI -kjI -bPx -kjI +lQk +lQk +lQk +liR +lQk ulv -uvd +kUg sOw uaU bsf @@ -64872,33 +64872,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -jhK -mPk -pRa -mPk -mPk -pRa -pRa -mPk -vjZ -aAr -fGN -wFJ -xrl -pRa -hfZ +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +kFq +oeX +mFV +oeX +oeX +mFV +mFV +oeX +eqq +kmD +jMH +bsU +udf +mFV +cXU iWj tRN hre @@ -64912,13 +64912,13 @@ qCT gRU bsf luu -iwV +eAE crq -kjI -hoU -kjI +lQk +sBJ +lQk ulv -kEK +nnc sOw nmH hmg @@ -65054,33 +65054,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -pRa -pRa -pRa -pRa -itL -kif -fGN -fGN -xrl -pRa -mPk +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +oeX +oeX +mFV +mFV +mFV +mFV +pDI +nqg +jMH +jMH +udf +mFV +oeX xDE hre gOj @@ -65096,10 +65096,10 @@ bsf bsf hte ulv -kZl +pec ulv -hoU -kZl +sBJ +pec ulv avD doP @@ -65236,32 +65236,32 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -kWf -cKB -mdM -mdM -hjf -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +oeX +mFV +eKy +xFu +uUZ +uUZ +nsE +mFV fDH ymb hre @@ -65278,10 +65278,10 @@ bsf bBt bsf avD -gRN +ilr crq -uli -kEK +eeA +nnc sOw lqM vRW @@ -65418,31 +65418,31 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +mFV +mFV +oeX +mFV +mFV +mFV +mFV +mFV ovT ymb hre @@ -65462,7 +65462,7 @@ bsf hte sOw gFH -iwV +eAE sOw hte bsf @@ -65600,30 +65600,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -pRa -pRa -pRa -pRa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +oeX +mFV +mFV +mFV +mFV +mFV +mFV ovT dTu gOj @@ -65782,30 +65782,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa -rUa +pwQ +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +oeX +mFV +mFV +oeX +mFV +mFV +mFV +mFV +bbF xDE hre tRN @@ -65964,29 +65964,29 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ +pwQ oTs vgH pGs @@ -66146,29 +66146,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP iax pGs pGs @@ -66328,29 +66328,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP iax pGs pGs @@ -66510,29 +66510,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP iax pGs pGs @@ -66692,29 +66692,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP iax pGs pGs @@ -66874,29 +66874,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -67056,29 +67056,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -67238,29 +67238,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -67420,29 +67420,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -67602,29 +67602,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -67784,29 +67784,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -67966,29 +67966,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -68148,21 +68148,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -68330,21 +68330,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs @@ -68512,21 +68512,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP +uSP pGs pGs pGs diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 93f15a6ef2..d7fc6b6211 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -303,10 +303,10 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area/central) -"abn" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) +"abm" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) "abo" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -331,13 +331,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"abx" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "abz" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -560,6 +553,11 @@ /obj/item/stack/rods, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) +"aem" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "aen" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer0, @@ -568,10 +566,6 @@ /obj/effect/landmark/corpsespawner/upp, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"aew" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "aez" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -620,10 +614,6 @@ /obj/structure/inflatable/door, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/minehead) -"afp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) "afq" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -771,12 +761,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"agY" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "ahc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, @@ -829,12 +813,6 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"ahF" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "ahG" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, @@ -894,6 +872,12 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"aie" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "aig" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "genericbush_4" @@ -1203,6 +1187,12 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) +"alh" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/holobadge, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "ali" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -1299,10 +1289,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"amE" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/research_decks/security) "amF" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, @@ -1325,21 +1311,29 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) +"amS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"amT" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/book/manual/detective, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) "amU" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/restricted/devroom) -"amW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "amX" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -1398,16 +1392,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"anQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) "anR" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -1472,14 +1456,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"aoS" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) "aoT" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" @@ -1522,6 +1498,16 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) +"apU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "aqg" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost/reinforced, @@ -1966,12 +1952,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"avq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) "avr" = ( /obj/item/weapon/wirerod, /obj/effect/decal/strata_decals/catwalk/prison, @@ -2023,6 +2003,10 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) +"avI" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "avL" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/engi) @@ -2037,6 +2021,11 @@ /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) +"avZ" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) "awb" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, @@ -2199,6 +2188,13 @@ "axv" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outpost/gen/bball) +"axy" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/nearlz1) "axz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -2318,12 +2314,6 @@ "ayw" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"ayy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "ayz" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -2409,6 +2399,12 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"azw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "azx" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/nearlz1) @@ -2510,13 +2506,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aAA" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "aAB" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -2643,6 +2632,16 @@ "aBy" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ug/interior/jungle/deep/structures/res) +"aBD" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "aBJ" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -2654,11 +2653,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aBN" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) "aBO" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -2829,6 +2823,12 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) +"aDB" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "aDE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) @@ -2888,11 +2888,12 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEz" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/deep/minehead) +"aEA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "aEC" = ( /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer0, @@ -3014,6 +3015,11 @@ "aFD" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/outpost/maint/canteen_e_1) +"aFF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/blue, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "aFQ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/cleanable/blood, @@ -3242,6 +3248,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) +"aHX" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "aHY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -3266,13 +3278,6 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aIq" = ( -/obj/structure/machinery/power/apc/no_power/east, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "aIs" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, @@ -3369,10 +3374,12 @@ /obj/structure/sign/safety/bridge, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"aJy" = ( -/obj/structure/machinery/computer/crew, +"aJt" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/exterior/research_decks) "aJB" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -3603,12 +3610,6 @@ /obj/structure/sign/poster, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) -"aLm" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "aLq" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) @@ -3635,17 +3636,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/dorms_quad) -"aLC" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"aLD" = ( +/obj/structure/machinery/scoreboard{ + id = "basketball"; + pixel_y = 30 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"aLE" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "aLF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/strata, @@ -3655,6 +3655,12 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"aLI" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "aLL" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -3811,9 +3817,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aNk" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "aNl" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) @@ -3912,10 +3915,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aNY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "aOa" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, @@ -3997,6 +3996,13 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) +"aOV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "aOW" = ( /obj/structure/barricade/snow{ dir = 4 @@ -4244,6 +4250,11 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) +"aQU" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "aRc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/crowbar, @@ -4334,10 +4345,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aRT" = ( -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aRV" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, @@ -4357,6 +4364,9 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"aSy" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "aSA" = ( /obj/item/organ/eyes, /obj/effect/decal/cleanable/blood, @@ -4378,12 +4388,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aSI" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) "aSJ" = ( /obj/item/lightstick/planted, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -4424,6 +4428,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"aTd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "aTe" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, @@ -4450,6 +4458,15 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"aTo" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aTp" = ( /obj/structure/largecrate/random/case/small, /turf/open/asphalt/cement, @@ -4550,10 +4567,6 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aUL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "aUS" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -4599,6 +4612,13 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"aVC" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "aVD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/stairs/perspective{ @@ -4933,16 +4953,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aYs" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) "aYu" = ( /obj/structure/disposalpipe/segment, /obj/item/stack/catwalk, @@ -4951,6 +4961,9 @@ "aYz" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/deep/structures/res) +"aYM" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) "aYQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, @@ -5068,11 +5081,6 @@ "aZL" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/north_carp) -"aZM" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) "aZO" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) @@ -5179,6 +5187,15 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) +"bax" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "baC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -5339,6 +5356,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/river) +"bcc" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "bcd" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -5383,6 +5404,10 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) +"bcn" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) "bcp" = ( /obj/structure/barricade/handrail/strata, /obj/structure/barricade/handrail/strata{ @@ -5820,6 +5845,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) +"beN" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "beO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -5980,6 +6009,15 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) +"bfK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "bfN" = ( /obj/structure/sign/safety/radio_rad, /turf/closed/wall/strata_outpost, @@ -6397,6 +6435,10 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) +"bip" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "biq" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/brown_base/layer1, @@ -6535,12 +6577,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/crash) -"bjy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "bjA" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -6813,6 +6849,13 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) +"bkM" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/outpost/med) "bkO" = ( /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, @@ -6862,6 +6905,10 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/shed_five_caves) +"blj" = ( +/obj/structure/bed, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "blk" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -7020,16 +7067,6 @@ "bme" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bmg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) "bmm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -7057,20 +7094,17 @@ /obj/structure/bed/chair, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"bmx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) "bmy" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bmz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bmA" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, @@ -7259,14 +7293,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bnM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "bnN" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer3, @@ -7387,6 +7413,10 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) +"bor" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "bov" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -7399,9 +7429,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"boB" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ug/interior/jungle/platform/east/scrub) "boC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -7475,6 +7502,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) +"bpb" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_carp) "bpc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -7602,6 +7633,10 @@ /obj/item/stack/medical/splint, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) +"bqm" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) "bqo" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, @@ -8325,10 +8360,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"buL" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "buM" = ( /obj/structure/platform_decoration/strata{ dir = 4 @@ -8462,10 +8493,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) -"bvT" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "bvU" = ( /obj/effect/decal/cleanable/ash, /obj/structure/barricade/wooden{ @@ -8483,26 +8510,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/nearlz2) -"bvY" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "bvZ" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) -"bwa" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/research_and_development, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "bwb" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/nearlz2) @@ -8807,6 +8820,10 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) +"bxK" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "bxQ" = ( /obj/structure/platform/strata{ dir = 4 @@ -8925,12 +8942,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted) -"byt" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "byN" = ( /obj/structure/platform_decoration/strata, /obj/effect/blocker/sorokyne_cold_water, @@ -8959,16 +8970,18 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) +"byW" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "bzh" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior) -"bzS" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, +"bzU" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "bzV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -9059,24 +9072,45 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bBc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"bBn" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bBq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "bBr" = ( /obj/structure/flora/bush/ausbushes/genericbush, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"bBu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"bBI" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "bBN" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "leafybush_2" @@ -9098,6 +9132,18 @@ "bCz" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi/drome) +"bCJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "bCP" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -9106,17 +9152,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"bCW" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bDc" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bDl" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -9183,9 +9218,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"bEa" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bEh" = ( /obj/structure/platform/strata{ dir = 4 @@ -9194,12 +9226,13 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bEP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +"bEG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "bER" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -9212,6 +9245,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) +"bEU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "bEV" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -9248,27 +9285,15 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"bFk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "bFG" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/cabin_area) -"bFK" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"bFN" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bFR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"bFS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "bFX" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "sunnybush_1" @@ -9297,32 +9322,34 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/research_decks) -"bHj" = ( -/turf/closed/wall/strata_ice/jungle, -/area/strata/ug/interior/jungle/deep/minehead) -"bHm" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/deep/structures/res) -"bHn" = ( -/obj/structure/bed/chair{ +"bGI" = ( +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"bGL" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bHZ" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +/area/strata/ag/interior/outpost/canteen) +"bHj" = ( +/turf/closed/wall/strata_ice/jungle, +/area/strata/ug/interior/jungle/deep/minehead) +"bIc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"bIm" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "bIt" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -9390,10 +9417,14 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"bJr" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"bJl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "bJG" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -9411,16 +9442,42 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bKI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, +"bKB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) +"bKF" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "bKK" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) +"bKM" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "bKN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, @@ -9432,10 +9489,12 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"bKX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) +"bKW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "bLb" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/admin) @@ -9443,6 +9502,16 @@ /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) +"bLm" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/maintenance) +"bLw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "bLz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -9453,34 +9522,37 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"bLQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "bLR" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"bMc" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +"bMg" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"bMe" = ( -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "bME" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mountain) -"bNd" = ( -/obj/structure/machinery/computer/emails, -/obj/structure/surface/table/almayer, +"bMH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +/area/strata/ag/interior/outpost/security) +"bNd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "bNh" = ( /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, @@ -9500,6 +9572,30 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/north_outpost) +"bNA" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"bNC" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/cell/high, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"bNE" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "bNM" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -9520,6 +9616,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) +"bNT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "bNW" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/mountain) @@ -9532,24 +9634,47 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bOW" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"bOM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"bOQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/structure/platform/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"bOX" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "bOZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) +"bPc" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) "bPf" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/personal_storage) +"bPj" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"bPk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) "bPo" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" @@ -9562,23 +9687,10 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) -"bPP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"bQf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bQh" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +"bPN" = ( +/obj/item/device/aicard, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "bQi" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -9595,22 +9707,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"bQH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"bQW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) "bRb" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -9637,18 +9733,12 @@ "bRl" = ( /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"bRP" = ( -/obj/structure/machinery/light/small{ +"bRM" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"bRR" = ( -/obj/structure/prop/ice_colony/tiger_rug{ - layer = 2.1 - }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/outpost/engi) "bSa" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -9657,16 +9747,28 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bSe" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"bSo" = ( +"bSb" = ( /obj/structure/fence, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) -"bSs" = ( -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +"bSe" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"bSg" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"bSl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) "bSD" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -9675,16 +9777,27 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bSZ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"bTC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) "bTD" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) +"bTR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "bTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -9692,23 +9805,17 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"bTT" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "bUd" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"bUj" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ - dir = 8 +"bUB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "bUJ" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost/reinforced, @@ -9731,14 +9838,14 @@ "bVx" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water) -"bVC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor2, +"bVH" = ( +/obj/structure/inflatable/door, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) -"bVK" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) "bVM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -9749,12 +9856,11 @@ /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) "bVT" = ( -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "bVV" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -9773,6 +9879,15 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) +"bWz" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/mountain) +"bWA" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "bWH" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -9782,10 +9897,6 @@ "bWN" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bWU" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) "bXd" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -9807,11 +9918,13 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"bXy" = ( -/obj/item/stack/sheet/wood, -/obj/structure/closet/crate/internals, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +"bXk" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) "bXC" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -9825,15 +9938,6 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"bXJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) "bXV" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, @@ -9856,6 +9960,10 @@ /obj/item/stool, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) +"bYs" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "bYE" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, @@ -9875,21 +9983,12 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"bYM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bYO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"bYP" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "bYS" = ( /obj/structure/bed/chair{ dir = 4 @@ -9902,28 +10001,19 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"bYX" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) -"bZb" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bZj" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/administration) -"bZu" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"bZr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "bZH" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -9935,13 +10025,6 @@ /obj/item/device/whistle, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"bZK" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) "bZN" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead) @@ -9968,13 +10051,12 @@ /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"caq" = ( +"cas" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "cau" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/interior/plastic, @@ -9989,18 +10071,26 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"caz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "caC" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"caO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"caD" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "caV" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood, @@ -10023,15 +10113,9 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"cbd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) +"cbg" = ( +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "cbj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -10079,6 +10163,10 @@ "ccs" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/adminext) +"ccv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "ccz" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -10162,6 +10250,16 @@ /obj/structure/sign/double/maltesefalcon/right, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) +"cdN" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "cdT" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -10176,23 +10274,13 @@ "cei" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"cen" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +"ceA" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/tearlake) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "ceQ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/north_carp) @@ -10213,20 +10301,12 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"cfk" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 4 +"cfe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"cfo" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/tank/anesthetic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "cfr" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/maintenance) @@ -10289,6 +10369,21 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"cgA" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"cgC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "cgE" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_res) @@ -10332,16 +10427,10 @@ "chB" = ( /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"chM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +"chE" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "chN" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) @@ -10349,13 +10438,15 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"chW" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"chR" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"cic" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "cif" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -10395,6 +10486,12 @@ "cjb" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) +"cjd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "cjg" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -10410,6 +10507,10 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"cjs" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "cjw" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/south) @@ -10441,26 +10542,16 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) +"cjK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ckf" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ckp" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ckt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) "ckF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 @@ -10477,36 +10568,11 @@ "ckZ" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/north_lz_caves) -"clf" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "clg" = ( /turf/closed/shuttle/ert{ icon_state = "upp22" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"clj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/north_lz_caves) -"clm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"clq" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "cls" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/shuttle/ert{ @@ -10543,15 +10609,30 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"clS" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"clQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"clU" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"clY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "cmf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -10562,12 +10643,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"cml" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "cmo" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/restricted/devroom) @@ -10581,38 +10656,19 @@ "cmu" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/north_carp) -"cmx" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"cmw" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"cmy" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "cmC" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"cmJ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"cmL" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"cmU" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "cmX" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/research_decks) @@ -10642,10 +10698,6 @@ "cnB" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/south) -"cnF" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "cnO" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/dorms/hive) @@ -10654,13 +10706,6 @@ icon_state = "upp4" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"cob" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) "cof" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -10672,6 +10717,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"cop" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "cor" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/north_carp) @@ -10715,6 +10766,16 @@ icon_state = "upp5" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"coE" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"coN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "coP" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/strata, @@ -10726,6 +10787,10 @@ "cpg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) +"cpx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "cpU" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/maint/canteen_e_1) @@ -10744,32 +10809,16 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cqi" = ( -/obj/structure/surface/table, -/obj/item/handset, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms/south) +"cqo" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "cqr" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"cqx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"cqz" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"cqD" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "cqE" = ( /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) @@ -10793,31 +10842,15 @@ "cqQ" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"crc" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"crr" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 +"cqW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "crA" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/hive) -"crC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"crD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) "crE" = ( /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) @@ -10827,16 +10860,22 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"crK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) +"crJ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) "crN" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) "crY" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) +"csf" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "csm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -10854,14 +10893,26 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"csO" = ( +"csN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) +"csP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"csS" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) "csY" = ( /obj/structure/bed/chair{ dir = 4 @@ -10922,12 +10973,19 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"ctV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, +"ctM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"ctN" = ( +/obj/structure/machinery/washing_machine, /turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/gen/bball) +"ctT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "ctZ" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -10935,6 +10993,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) +"cub" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "cuc" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -10942,26 +11003,27 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"cuf" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" +"cue" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "cui" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"cul" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"cuq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +"cuo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "cuy" = ( /obj/structure/platform/strata{ dir = 1 @@ -10976,24 +11038,22 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"cuE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "cuM" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/exterior/jungle/deep/carplake_center) +"cuN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) "cuP" = ( /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"cuQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +"cuR" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "cuX" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -11009,39 +11069,9 @@ "cvn" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/paths/southresearch) -"cvo" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"cvs" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"cvE" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "cvG" = ( /turf/open/gm/coast/west, /area/strata/ug/exterior/jungle/deep/carplake_center) -"cvP" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"cvQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) "cvY" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -11057,24 +11087,13 @@ /turf/open/floor/plating, /area/strata/ag/interior/administration) "cwg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"cwl" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/sandbags, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"cwm" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "cwq" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -11085,6 +11104,19 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"cwx" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"cwy" = ( +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "cwD" = ( /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -11094,17 +11126,37 @@ "cwT" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) -"cxb" = ( -/obj/structure/bed/chair/office/dark{ +"cwW" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/landingzone_checkpoint) -"cxt" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_engi) +"cwZ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"cxi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "cxA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -11120,26 +11172,19 @@ "cxK" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) +"cxL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "cxW" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"cyo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/disposals) -"cyz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"cyA" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) "cyG" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, @@ -11156,13 +11201,25 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) -"cAc" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +"czr" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"czI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"cAk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "cAq" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -11173,6 +11230,15 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"cAv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "cAw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/stack/rods, @@ -11182,60 +11248,27 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) -"cAZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"cBm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"cBt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "cBv" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"cBI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, +"cBJ" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"cBS" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"cCm" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"cCD" = ( +/obj/structure/bookcase, +/obj/item/book/manual/atmospipes, +/obj/item/book/manual/engineering_guide, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"cBO" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"cBR" = ( -/obj/structure/bed/nest, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"cCj" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/dorms/south) "cCE" = ( /obj/structure/cargo_container/wy/left{ health = 5000; @@ -11243,276 +11276,197 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"cCN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"cCG" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"cCU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"cDx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) "cDL" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) "cDN" = ( -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"cDQ" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"cDS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"cEa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"cEj" = ( /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"cEk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cFg" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/nearlz2) +"cFl" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"cEd" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"cEI" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"cEK" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) -"cFg" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/nearlz2) -"cFo" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "cFp" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) +"cFH" = ( +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) "cFK" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"cFP" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) "cGg" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"cGp" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating, -/area/strata/ag/exterior/marsh/center) -"cGu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"cGF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"cHi" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 - }, +"cGt" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"cGV" = ( +/obj/item/device/megaphone, /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"cHN" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"cIk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"cIG" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"cIK" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/strata/ag/interior/outpost/security) +"cHa" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"cHj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"cHW" = ( +/obj/structure/prop/dam/van, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "cIL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "cJf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"cJh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"cJj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"cKf" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/effect/decal/strata_decals/grime/grime1, -/obj/effect/decal/strata_decals/grime/grime3{ +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"cKr" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"cKG" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"cLf" = ( +/obj/structure/closet, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) -"cJo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"cJy" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/splint, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"cLJ" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) -"cJK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"cJY" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"cJZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/obj/item/stack/catwalk, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"cKk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/fuel_cell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"cKo" = ( -/obj/structure/bed/chair{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"cKu" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"cKw" = ( -/obj/structure/inflatable/door, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"cKI" = ( -/obj/item/weapon/gun/pistol/t73, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/south_res) +"cLP" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cKK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"cLR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"cKP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"cLa" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"cLj" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/area/strata/ag/interior/tcomms) +"cMp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"cLL" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"cLM" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"cMF" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"cLP" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"cLQ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"cMe" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"cMs" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"cMz" = ( -/obj/structure/reagent_dispensers/fueltank, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"cMW" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"cMH" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/barman_recipes, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/area/strata/ag/interior/outpost/engi) "cNg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -11524,280 +11478,266 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"cNn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"cNo" = ( -/obj/structure/dispenser, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"cNy" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"cNl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cNE" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"cNG" = ( -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"cNv" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cNY" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "cOc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"cOp" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, +"cOm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"cOv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/condimentbottles, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"cOq" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"cOZ" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/area/strata/ag/exterior/paths/cabin_area) +"cOA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/cell/high, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"cON" = ( +/obj/structure/machinery/bioprinter, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"cPk" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"cPU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"cRk" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"cOP" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cOU" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"cQa" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"cRo" = ( -/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"cQh" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" + dir = 1 }, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"cRq" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/area/strata/ag/interior/outpost/admin) +"cQl" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"cQC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"cSc" = ( +/area/strata/ag/interior/outpost/engi/drome) +"cRe" = ( /obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"cSj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"cSF" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"cSI" = ( -/obj/structure/platform/strata/metal{ dir = 1 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"cRA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"cRC" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"cTI" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/area/strata/ag/interior/outpost/security) +"cRU" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"cSy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"cSI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"cSM" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"cSO" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"cTV" = ( -/obj/item/storage/box/cups, -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"cTn" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/book/manual/surgery, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "cUi" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cUF" = ( -/obj/structure/bed/chair/comfy{ +"cUl" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"cUo" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"cUt" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"cUF" = ( +/obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"cVb" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"cVs" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 3; - pixel_y = 14 + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"cVB" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"cWT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/bed/chair{ +/area/strata/ag/interior/outpost/admin) +"cUJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"cUX" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"cUY" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"cVb" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"cVi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cXb" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"cXl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"cXn" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = null +"cVy" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/storage/pill_bottle/alkysine, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"cWl" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"cWO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"cWQ" = ( +/obj/structure/machinery/vending/cigarette/colony, /obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"cXr" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"cXy" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"cXP" = ( +/turf/open/floor/strata/white_cyan3/southwest, /area/strata/ag/interior/outpost/med) -"cXI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) "cXU" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" }, /area/strata/ag/exterior/marsh/crash) -"cYr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"cYv" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"cYC" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"cYH" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"cYP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"cYR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/area/strata/ag/interior/outpost/canteen/personal_storage) +"cYB" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"cYC" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "cYV" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"cZb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"cZo" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"cZq" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"cZA" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/area/strata/ag/interior/outpost/med) "daq" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) @@ -11807,20 +11747,38 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"dbp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +"dbC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dbN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"dbR" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ug/interior/jungle/deep/structures/res) +"dbT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) +"dbV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "dcc" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -11830,128 +11788,88 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"dcw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ +"dcB" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"dcM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"dcO" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"dcT" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"dcZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"ddg" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dcM" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"ddi" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "ddp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/hive) -"ddx" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"deX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"dfy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/item/stack/rods, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"ddH" = ( -/obj/item/stack/sandbags, +/area/strata/ag/interior/outpost/engi) +"dfM" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"ddJ" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"deF" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"deM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dfl" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"dfT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"dfY" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"dgm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"dfR" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dfV" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/exterior/research_decks) +"dfZ" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/outpost/maint/canteen_e_1) "dgB" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"dgI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"dgU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dha" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"dhm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"dhv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"dhN" = ( -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"dhW" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"dhh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"diX" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"diM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"diS" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "diZ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, @@ -11960,41 +11878,60 @@ /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"djF" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"djK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +"djL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"djO" = ( +/obj/structure/toilet, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "djW" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) -"dkj" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +"dkx" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"dkA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"dlh" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"dkF" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"dlq" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"dlL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"dlv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"dlP" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/floor3, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"dlT" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +"dlQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "dmd" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -12004,44 +11941,46 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"dmo" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/obj/structure/machinery/light/small{ +"dmB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"dmJ" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"dmE" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) +"dmK" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"dnn" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dns" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +/area/strata/ag/exterior/research_decks) +"dnM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"dob" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/tearlake) -"dog" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dop" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/area/strata/ug/interior/jungle/deep/structures/res) +"dnO" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dnY" = ( +/obj/structure/machinery/computer/emails, +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"doy" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "doO" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -12049,151 +11988,108 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"doX" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"dpm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"dpQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"dqn" = ( -/obj/structure/bed/chair{ - dir = 4 +"dpj" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "dqo" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) -"dqx" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"dqs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/toastedsandwich, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"dqD" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 8; + pixel_y = 17 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"dqE" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "dqH" = ( /obj/item/stack/catwalk, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"dqS" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"dqT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"drc" = ( -/obj/structure/machinery/light/small, +"dqY" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"dro" = ( +/area/strata/ag/interior/outpost/security) +"drn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"drJ" = ( +/obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/small, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"drA" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "drQ" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/tearlake) -"drT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"drY" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"dsh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"dsw" = ( -/obj/structure/fence, -/obj/structure/fence, -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"dsy" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"dsp" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"dsR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"dtb" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"dte" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"dsN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"dtd" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"dtB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"dtK" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"duc" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"dtN" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "duq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"dus" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light/small{ +"duv" = ( +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"duY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "dvf" = ( /obj/structure/platform/strata{ dir = 1 @@ -12207,98 +12103,104 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dvq" = ( -/obj/structure/machinery/light/small{ +"dvl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"dvM" = ( -/obj/item/storage/briefcase, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"dwg" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"dvw" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/bed/chair/office/light{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"dwx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/cyan2/east, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"dwH" = ( +"dwy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"dxe" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) +"dxr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"dxC" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"dxD" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"dxH" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"dyz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dzJ" = ( -/obj/structure/machinery/space_heater, -/obj/item/device/flashlight/lamp{ - pixel_y = 11 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"dxu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"dxA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"dxV" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"dyq" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dyQ" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"dAa" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"dAl" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"dAY" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/area/strata/ag/interior/outpost/engi) +"dzp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"dBd" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dzJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) +"dAI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "dBe" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"dBn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair/office/light{ - dir = 8 +"dBk" = ( +/obj/structure/machinery/disposal, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"dBo" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dBs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"dBw" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "dBG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -12310,62 +12212,57 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"dBJ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"dCj" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dCl" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) "dCu" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"dCx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"dCG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"dCy" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dCV" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"dDk" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"dCX" = ( -/obj/effect/spawner/random/supply_kit, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dDg" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dDo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"dDS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "dDW" = ( /obj/structure/platform/strata{ dir = 8 @@ -12375,187 +12272,217 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dEz" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan3, +"dEc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) +"dEd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"dEk" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "dEE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"dEU" = ( -/obj/item/storage/belt/knifepouch, -/obj/structure/surface/rack, +"dEG" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"dFd" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/platform/strata/metal{ + dir = 8 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"dFc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/exterior/research_decks) +"dFg" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms/south) -"dFC" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"dFW" = ( -/obj/structure/surface/rack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"dFG" = ( +/obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"dGb" = ( -/obj/structure/bed/chair/office/light{ +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dFW" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"dGJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"dGZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"dGf" = ( +/obj/structure/machinery/processor, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"dGk" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"dGq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"dHU" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"dIb" = ( -/obj/structure/barricade/handrail/strata{ +/area/strata/ag/interior/dorms) +"dGE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"dGG" = ( +/obj/effect/spawner/random/attachment, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"dGI" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"dHi" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dIc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"dHp" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"dHy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"dHV" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dId" = ( +/obj/structure/largecrate/random, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "dIh" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/tearlake) -"dIB" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"dJt" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"dJD" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"dJE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"dIl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dJm" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"dKh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/vending/snack, /turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) -"dJO" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "dKj" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/tearlake) -"dKS" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"dLm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"dLQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale, -/obj/structure/machinery/light/small{ +"dKA" = ( +/obj/structure/machinery/door/airlock/prison{ dir = 1; - pixel_y = 20 + name = "Reinforced Airlock" }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"dKH" = ( +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"dMp" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +"dLo" = ( +/obj/effect/glowshroom/single, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) "dMw" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"dMZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"dNc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/deep/structures/res) +"dNd" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"dNh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "dNq" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_dorms) -"dNB" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) "dND" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) +"dNG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) "dNM" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"dNR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) "dOc" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) -"dOe" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"dOx" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"dOy" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/gloves/latex, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "dOG" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted/devroom) +"dOL" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) "dOO" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) @@ -12565,48 +12492,37 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"dOZ" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "dPf" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dPz" = ( -/obj/structure/bed/chair/office/light{ +"dPA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"dQk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "dQq" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dQS" = ( -/obj/structure/machinery/space_heater, +"dQG" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"dSq" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"dRt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "dSA" = ( /obj/structure/bed{ icon_state = "abed" @@ -12623,92 +12539,86 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"dSR" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"dSD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"dSQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "dSU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"dTb" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 16 +"dSZ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"dTi" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"dTc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "dTq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dTB" = ( -/obj/structure/kitchenspike, +"dTV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) -"dTI" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) +"dTY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "dUl" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/tearlake) -"dUA" = ( -/obj/structure/machinery/photocopier, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"dUN" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "dUR" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"dVf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"dVw" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"dVw" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"dVV" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/suit/bluetag, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"dVW" = ( -/obj/item/stack/snow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/north_outpost) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"dVY" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "dWc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -12716,6 +12626,31 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) +"dWe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"dWh" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"dWl" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "dWm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball) @@ -12723,99 +12658,69 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) -"dXI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"dXJ" = ( +"dXG" = ( /obj/structure/stairs/perspective{ - color = "#6e6e6e" + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/platform/strata/metal{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) "dXQ" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"dXT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_y = 28 +"dXR" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"dYr" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"dYs" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"dXX" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"dZi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"dYu" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "dZl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) "dZt" = ( -/obj/structure/closet, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"dZz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"dZF" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, /obj/item/tool/stamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"dZC" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"dZP" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"dZQ" = ( -/obj/structure/bed/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"dZR" = ( -/obj/item/stack/rods, +/obj/item/device/flashlight/lamp/green, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"dZW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dZZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/area/strata/ag/interior/outpost/security) +"dZQ" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"eaa" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"eah" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "eai" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -12826,81 +12731,129 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"eau" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eay" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eaD" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eaI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "eaO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"ebz" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"ebE" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"ebZ" = ( -/obj/structure/pipes/vents/pump{ +"eaR" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"ecx" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ug/interior/jungle/deep/structures/res) +"eaW" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"ebe" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) +"ebl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"ecD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Chunkeez Diner door" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"ecN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"edp" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"edY" = ( -/obj/structure/closet/bombcloset, -/obj/structure/machinery/light/small{ +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"ecj" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"ecS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"ecV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"edZ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"eeR" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"efg" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/strata/ug/interior/jungle/deep/structures/engi) +"edw" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"edU" = ( +/obj/structure/machinery/blackbox_recorder, /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, -/obj/structure/barricade/handrail/strata{ +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"eeC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"eeH" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"eeK" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"efu" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"efu" = ( -/obj/item/fuel_cell, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"efL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "efR" = ( /obj/structure/cryofeed, /turf/open/gm/river, @@ -12909,25 +12862,53 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"egc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "egh" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"egv" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"egq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"egL" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"egw" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fishfingers, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"egQ" = ( +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"egU" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/cable_coil/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "egV" = ( /obj/structure/cargo_container/arious/right{ health = 5000; @@ -12935,74 +12916,87 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"egW" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"ehi" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"ehC" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"ehf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/area/strata/ag/interior/outpost/engi/drome) +"ehC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ehH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"ehS" = ( -/obj/structure/filingcabinet, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) -"ehT" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"eix" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"eiA" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eiH" = ( -/obj/structure/platform_decoration/strata/metal{ +"eiq" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "eiM" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) +"eiO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"eiY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c500, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"eja" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"ejh" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ejj" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "ejw" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"ejO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"ejx" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ejy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"ejK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) +"ejQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "ekc" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer1, @@ -13010,128 +13004,114 @@ "ekJ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_engi) -"ele" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) "elr" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"elu" = ( +"elT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"elY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"emb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballsoup, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "emg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"emu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "emv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"emy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"emF" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/med) -"emI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +"enk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"emQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 - }, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"eng" = ( +/area/strata/ag/interior/research_decks/security) +"env" = ( /obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"enQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "enV" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"enY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"eoh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) -"eon" = ( -/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"eon" = ( +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "eop" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"eoy" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"eoG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"eoA" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/crash) "eoK" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) +"eoO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"eoS" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"eoV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"eoW" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/bodybag, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"epa" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "epm" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -13142,65 +13122,33 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"epv" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"epH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"epJ" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"eqg" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"eqk" = ( +"epp" = ( +/obj/item/explosive/grenade/high_explosive/upp, /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"eqr" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"eqG" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"eqI" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"epW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "eqO" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"eqW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "ero" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) +/obj/structure/bookcase, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "erq" = ( /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"erw" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "ery" = ( /obj/structure/barricade/snow{ dir = 4 @@ -13208,301 +13156,343 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/north_lz_caves) -"erE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"erP" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"erH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"erK" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"esf" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"esr" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"esy" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"esx" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"esW" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"etx" = ( /obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor2, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) -"esO" = ( -/obj/structure/bed{ - icon_state = "abed" +"etB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"etE" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plump_pie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"esU" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/bcircuit, -/area/strata/ag/interior/dorms) -"esX" = ( -/obj/item/cell/high, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/exterior/research_decks) +"etK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "euc" = ( /obj/structure/platform_decoration/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"euj" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"euk" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"eux" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"euH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"euU" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +"eus" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"euI" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"euR" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "euZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"eve" = ( +"evv" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"evi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"evm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/deep/structures/res) "ewk" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"exp" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) -"exu" = ( -/obj/structure/bookcase, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"exA" = ( -/obj/structure/machinery/light/small{ +"ewF" = ( +/obj/structure/platform/strata/metal{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"ezf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"ewS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"exd" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"ezn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"ezp" = ( -/obj/structure/morgue{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eye" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) -"ezx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"eyt" = ( +/obj/structure/largecrate/random, +/obj/item/toy/deck, /turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/center) +"eyW" = ( +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"eza" = ( +/obj/item/tool/pen/blue, +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"ezd" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ezw" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"ezF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"ezG" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) -"ezA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape, +"ezT" = ( +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"eAd" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"eAm" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"ezP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"eAC" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"ezW" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"eAm" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"eBf" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/barricade/handrail/strata{ +"eAN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"eAT" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"eAV" = ( +/obj/structure/barricade/snow, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"eBh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"eBm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"eCe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"eCo" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"eBt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/sodawater, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"eBK" = ( -/obj/structure/largecrate/random, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) -"eCO" = ( -/obj/structure/filingcabinet, +"eDh" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) -"eCV" = ( -/obj/structure/platform/strata/metal, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"eDy" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"eDR" = ( +/area/strata/ag/interior/outpost/gen/foyer) +"eDS" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eEj" = ( +/obj/structure/kitchenspike, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"eEk" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"eEB" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ +/obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"eEn" = ( -/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"eED" = ( +/obj/item/storage/briefcase, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"eEG" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) -"eEp" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eEv" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/plating, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"eET" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, +"eEH" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"eFm" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"eFy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"eFz" = ( -/obj/item/storage/secure/briefcase, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) "eFA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"eGn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +"eFP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"eFW" = ( +/obj/structure/surface/rack, +/obj/item/toy/deck, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"eFZ" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "eGq" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"eGs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +"eGt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/administration) +"eGz" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "eGF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"eGQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"eHf" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"eGR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "eHv" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"eHJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"eHC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/effect/decal/warning_stripes, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"eHV" = ( +/obj/structure/fence, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "eIB" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -13510,21 +13500,15 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"eIF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "eIT" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) -"eJb" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "eJc" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -13533,12 +13517,19 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"eJn" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"eJp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/research_decks) +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"eJq" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "eJs" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/barricade/snow{ @@ -13546,14 +13537,38 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"eKO" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +"eJA" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"eJG" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"eJX" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"eLb" = ( -/obj/structure/reagent_dispensers/watertank, +"eKc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"eKT" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/miner, /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "eLC" = ( @@ -13562,24 +13577,30 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"eMz" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/strata/ug/interior/jungle/deep/tearlake) -"eMW" = ( +"eLJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"eLK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, /turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"eMX" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 4 +/area/strata/ag/interior/dorms/canteen) +"eLR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"eMo" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/outpost/canteen/bar) +"eMz" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/strata/ug/interior/jungle/deep/tearlake) "eMZ" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -13588,19 +13609,24 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"eNr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"eNU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/orange_cover, +"eNm" = ( +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) +"eNG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "eNW" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -13609,12 +13635,14 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/crash) -"eNY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"eNX" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata, +/area/strata/ag/interior/administration) +"eOs" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "eOz" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/oil, @@ -13627,34 +13655,48 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) -"ePy" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"ePL" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 +"eON" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/outpost/med) -"ePR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"eRa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"eOT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/monkeyburger, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"ePe" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/suit/imperium_monk, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ePw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"eRc" = ( -/obj/structure/machinery/camera/autoname{ +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"eQm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"eQJ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"eRh" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "eRk" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -13665,303 +13707,334 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"eRr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"eRK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"eSe" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/light/small{ - dir = 4 +"eRL" = ( +/obj/structure/bed/nest, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"eSx" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/outpost/med) -"eSA" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/inflatable/door, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"eSE" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"eTg" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"eTw" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"eRR" = ( /obj/structure/machinery/gibber, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) -"eTy" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"eTI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/gen/foyer) -"eUq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +"eRV" = ( +/obj/structure/surface/table, +/obj/item/handset, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms/south) +"eSc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"eSj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"eUE" = ( -/obj/structure/machinery/optable, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) -"eUF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" +"eSx" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/outpost/med) +"eSI" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"eTc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"eUG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eTm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eUX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"eTu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"eUh" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"eUr" = ( +/obj/structure/closet/basketball, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) "eVc" = ( /obj/structure/platform/strata/metal{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"eVu" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"eVz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) "eVI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"eWf" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/adminext) -"eWn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"eWH" = ( +"eVW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"eXn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"eXt" = ( +/obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"eXP" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"eYN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/marsh) +"eYQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"eYZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"eZn" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"eZH" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"eXu" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"eYA" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fba" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"fbg" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) -"eZf" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"faf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" +"fbk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"fbE" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fbU" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"fch" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"faT" = ( +"fcj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"fbc" = ( -/obj/item/clipboard, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"fbu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +"fcp" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"fcC" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fcX" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fbC" = ( -/obj/structure/surface/rack, -/obj/item/spacecash/c500, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"fcd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/static_comms/net_two, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"fch" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"fcO" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"fcY" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"fdq" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"fdF" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fdW" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; - pixel_y = 32 +"fdr" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"fex" = ( -/obj/structure/filingcabinet, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"fey" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"feE" = ( +"fdL" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) +"feR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"feU" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"ffy" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"ffW" = ( +/obj/structure/bed/nest, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"ffj" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/area/strata/ag/interior/dorms/hive) +"ffZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"fgp" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"fgF" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"fgs" = ( -/obj/structure/bookcase, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"fgD" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"fif" = ( -/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"fgJ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"fgT" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fgX" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"fik" = ( +/area/strata/ag/interior/dorms) +"fhx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fhD" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"fhF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"fhV" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"fij" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "fil" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) -"fiz" = ( -/obj/structure/bed/nest, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"fiR" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"fiX" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"fjh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) "fjw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"fjB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"fjM" = ( -/obj/structure/surface/rack, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/weldingtool, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) -"fjS" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"fjx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"fjU" = ( -/obj/structure/sink{ +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"fjy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"fjT" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -11 + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "fjZ" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -13974,118 +14047,144 @@ opacity = 0 }, /area/strata/ag/exterior/marsh/crash) +"fkE" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "fkG" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"fkQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"fkX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"fkI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"fkZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"fkL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"fkZ" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) "fli" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"flk" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "fln" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) -"flr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"flI" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"flv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/shed_five_caves) "flK" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) -"fma" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"fmJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/research_decks) -"fnM" = ( -/obj/effect/decal/cleanable/blood, +"fmi" = ( +/obj/structure/lz_sign/sorokyne_sign/interior, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"fnN" = ( -/obj/item/stack/sheet/wood, +/area/strata/ag/interior/dorms) +"fmP" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"fnd" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"fnf" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fnA" = ( +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) +"fnB" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"fnE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +/area/strata/ag/interior/outpost/engi/drome) +"fnV" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"foc" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"foe" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "fow" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"foy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fpc" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, -/obj/item/bedsheet/medical, -/obj/item/storage/large_holster/machete/full, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) "fpe" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"fpu" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"fpr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"fpC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"fqk" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fqs" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "fqQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -14093,13 +14192,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"fqR" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata, -/area/strata/ag/interior/administration) -"fqW" = ( -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +"frd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "fre" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -14107,31 +14204,32 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"fru" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"frO" = ( -/obj/structure/bed/chair{ +"frt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/northeast, +/area/strata/ag/interior/outpost/med) +"fry" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/strata_decals/grime/grime4{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"frI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) "fsx" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/rods, +/obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "fsJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -14139,112 +14237,152 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"ftc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata{ +"fsU" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"fsV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"fsX" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) "ftr" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"ftu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"ftF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"fud" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, +"fus" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan3, /area/strata/ag/interior/outpost/med) +"fuu" = ( +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/dorms/hive) "fuV" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"fuW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "fuX" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"fvj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"fvt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east/scrub) -"fvI" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"fvJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) -"fvU" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +"fvl" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"fvt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east/scrub) +"fvG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "fwc" = ( /obj/structure/dropship_equipment/mg_holder, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"fwk" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "fwV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"fxJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"fwZ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"fxi" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"fxQ" = ( -/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fxt" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"fxu" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fyr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"fyB" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"fxv" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 +/turf/open/asphalt/cement/cement14, +/area/strata/ag/interior/landingzone_1) +"fyb" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fyk" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"fyl" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"fyE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) +"fyI" = ( +/obj/structure/closet/basketball, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "fyP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/east_dorms) +"fyV" = ( +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"fyZ" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fzf" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"fzw" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "fzz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -14261,16 +14399,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"fzF" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) "fzN" = ( /obj/structure/barricade/snow{ dir = 4 @@ -14278,37 +14406,53 @@ /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) "fzQ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/obj/structure/platform/strata/metal{ + dir = 8 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"fzR" = ( /turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landingzone_1) "fAb" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"fAc" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"fAm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fAd" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fAv" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "fAS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"fAX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) +"fBe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) "fBh" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"fBo" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"fBs" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) "fBC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -14316,32 +14460,41 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"fBF" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/crash) -"fBG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 +"fBD" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"fBM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"fBG" = ( +/mob/living/simple_animal/hostile/carp{ + desc = "You think this might be Glubs's son." }, -/turf/open/floor/strata/blue1, +/turf/open/gm/dirt, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"fBJ" = ( +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"fCd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/flight_control) +"fCm" = ( +/turf/open/floor/strata/blue4/north, /area/strata/ag/interior/outpost/admin) -"fBN" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/north_lz_caves) "fCo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"fCq" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "fCz" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/tearlake) @@ -14358,15 +14511,68 @@ "fCI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) +"fCQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"fDb" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fDl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "fDG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"fEe" = ( -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) -"fEy" = ( -/obj/structure/machinery/washing_machine, +"fDK" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"fDY" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fEh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/catwalk, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"fEv" = ( +/obj/item/stack/medical/splint, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"fEC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"fFa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, /turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "fFy" = ( @@ -14375,73 +14581,46 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"fFU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"fGz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"fGL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"fGT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) "fGV" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/item/device/flashlight/lamp, +/obj/item/reagent_container/food/condiment/saltshaker, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"fHg" = ( -/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fHi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fHz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"fHt" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"fHM" = ( +/obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"fHC" = ( -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/tcomms) "fHW" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"fIA" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +"fIk" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "fIF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -14456,31 +14635,41 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"fIW" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"fJy" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"fJJ" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"fJP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"fKL" = ( -/obj/structure/closet/lawcloset, -/obj/structure/machinery/camera/autoname{ - dir = 8 +"fJV" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"fKw" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"fKO" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "fKT" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/south_engi) +"fLi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"fLk" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "fLl" = ( /obj/structure/bed/chair{ dir = 4 @@ -14490,35 +14679,17 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"fLB" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fLN" = ( +"fLE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fMc" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"fLP" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"fLU" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"fMo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) "fMr" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -14529,23 +14700,13 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"fMC" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"fMI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"fMG" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) "fMP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -14556,10 +14717,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"fMW" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/marsh/crash) "fNs" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -14568,10 +14725,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"fNx" = ( -/obj/structure/lz_sign/sorokyne_sign/interior, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) +"fNu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "fNH" = ( /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /obj/structure/disposalpipe/segment{ @@ -14580,300 +14739,190 @@ /obj/item/stack/catwalk, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"fOo" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/item/bedsheet/medical, +"fPO" = ( +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/mountain) +"fPR" = ( /turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"fOy" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) -"fOz" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/deep/minehead) -"fOF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"fOT" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/area/strata/ag/interior/outpost/canteen/bar) +"fQI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/blue4, -/area/strata/ag/interior/outpost/admin) -"fPe" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"fPi" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"fQY" = ( /obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"fPj" = ( -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"fPE" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/storage/box/masks{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"fPO" = ( -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/mountain) -"fQp" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"fRe" = ( +"fRc" = ( +/obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"fRg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"fRh" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "fRi" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh) -"fRH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"fSo" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"fSr" = ( -/obj/structure/machinery/weather_siren{ - pixel_y = -8 - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/exterior/shed_five_caves) -"fSQ" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"fSR" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/west_engi) -"fTi" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fTk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement2, -/area/strata/ag/interior/landingzone_1) -"fTp" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"fTF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fUI" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) -"fVc" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh) +"fRn" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"fRy" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"fVd" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"fVq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fSr" = ( +/obj/structure/machinery/weather_siren{ + pixel_y = -8 }, +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/exterior/shed_five_caves) +"fSR" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/west_engi) +"fTv" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"fVP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/light/small{ +/area/strata/ug/interior/jungle/deep/minehead) +"fTH" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"fUk" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"fUq" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"fUy" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"fUQ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fVS" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"fWo" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/north_outpost) +/area/strata/ag/interior/outpost/engi/drome) +"fVa" = ( +/obj/item/clipboard, +/obj/item/clipboard, +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) "fWs" = ( /turf/closed/wall/mineral/gold, /area/strata/ag/interior/outpost/med) -"fWt" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"fWM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"fWP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"fXk" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"fXq" = ( -/obj/structure/machinery/bioprinter, +"fWC" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"fWW" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/purp2, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"fXk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) -"fXA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +"fXq" = ( +/obj/structure/closet/lawcloset, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fXy" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"fXX" = ( -/obj/structure/closet/wardrobe/red, -/obj/item/clothing/suit/imperium_monk, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"fYM" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"fYS" = ( -/obj/structure/bed, +/area/strata/ag/interior/outpost/security) +"fXA" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"fYW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fXL" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"fXM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) -"fYX" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"fZc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) +"fXZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "fZe" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"fZj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/obj/item/restraint/handcuffs, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"fZr" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"fZx" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) +"fZt" = ( +/obj/structure/prop/turbine_extras/left, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fZD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + pixel_y = 31 + }, +/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 + }, +/obj/structure/machinery/door/window{ + pixel_y = 10 + }, +/obj/structure/window{ + dir = 8; + pixel_y = 10 + }, +/obj/structure/window, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"gaa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "gab" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) +"gae" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/bed/medevac_stretcher, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/exterior/jungle/deep/carplake_center) "gaq" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -14885,120 +14934,115 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) -"gaN" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) +"gaK" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"gaL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/storage/briefcase, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "gaV" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/marsh/crash) -"gbf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"gbw" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"gbV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/barricade/handrail/strata, +"gbk" = ( +/obj/structure/platform/strata/metal, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/nearlz1) "gcj" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/tearlake) -"gcl" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/gloves/latex, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"gco" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "gcK" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"gdb" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"geb" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"geg" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"ger" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"geE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/area/strata/ag/interior/outpost/canteen) +"gcR" = ( +/obj/structure/toilet{ dir = 8 }, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"geF" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) -"geG" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +"gdc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gdz" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"gdO" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"gec" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"geg" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gel" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/tcomms) +"geU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gfu" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gfB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "gfI" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"gfS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/canteen) -"gfX" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/evidence, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"ggk" = ( -/obj/structure/machinery/processor, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 +"ggZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "ghi" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/southresearch) -"ghq" = ( -/obj/structure/machinery/light/small{ +"ghJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "ghV" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, @@ -15007,31 +15051,58 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"gis" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"giU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"giI" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ug/interior/jungle/deep/minehead) +"giT" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"gjd" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "gjk" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"gjv" = ( -/obj/structure/bed/chair{ - dir = 4 +"gjt" = ( +/obj/structure/machinery/smartfridge, +/obj/structure/machinery/door/window/eastright{ + dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gjB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "gjK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"gjM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "gjN" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -15044,15 +15115,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gjW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "gkt" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) @@ -15062,34 +15124,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"gkL" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"gkT" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"glj" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"gll" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"glp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"glC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, +"glD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/obj/item/device/flashlight/lamp/green, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/outpost/engi) "glL" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/mountain) @@ -15101,38 +15141,44 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) -"glS" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"gmb" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"gnf" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"gnr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"gmz" = ( +/obj/item/storage/pill_bottle/russianRed, +/obj/item/storage/pill_bottle/russianRed, +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline, +/obj/item/storage/box/gloves, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/area/strata/ag/interior/outpost/med) +"gmA" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/evidence, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gmC" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"gmL" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gnt" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) "gnG" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"gob" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"gok" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) "gol" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -15143,147 +15189,94 @@ /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"gor" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/item/device/megaphone, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"goF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "goG" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"goJ" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"gpg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gpp" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 9 - }, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh) -"gpu" = ( -/obj/structure/toilet, -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"gpI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"gqd" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"gqe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"gpk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"gqh" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"gpl" = ( +/obj/structure/reagent_dispensers/watertank, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"gqr" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 9 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"gqy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"gqE" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/outpost/engi) +"gpp" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh) +"gqo" = ( +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "grs" = ( /turf/closed/shuttle/ert{ icon_state = "upp16" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"grE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"grK" = ( -/obj/item/stool, +"grt" = ( /obj/effect/decal/cleanable/blood, +/obj/structure/inflatable/door, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"gsb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/area/strata/ag/interior/outpost/gen/bball) +"grQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"gsg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp{ + pixel_x = -4; + pixel_y = 14 }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"gsl" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"gsu" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/miner, +"gst" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"gsJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"gsQ" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"gtb" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/interior/outpost/engi) +"gsB" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"gsH" = ( +/obj/item/tool/kitchen/rollingpin, +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"gsP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"gtk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gtY" = ( +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) -"gtd" = ( -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) +/area/strata/ag/interior/outpost/med) "gtZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -15294,14 +15287,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"guc" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"guv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) "guz" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -15313,75 +15298,119 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"guD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +"guK" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"guM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) "guV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"gvl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gvs" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement3, +"guZ" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/tcomms/tcomms_deck) -"gvN" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"gww" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/barricade/handrail/strata{ +"gvi" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gvk" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"gvp" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"gvP" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"gwr" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"gws" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"gxt" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) -"gxw" = ( +"gxE" = ( +/obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"gxS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gxO" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"gxU" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"gyE" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"gyJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"gyc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"gyK" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/south_engi) -"gzh" = ( -/turf/open/floor/strata/floor2, +"gzg" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"gzm" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) +"gzz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"gzY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"gAp" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "gAv" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -15391,111 +15420,77 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"gAy" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "gAD" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"gAJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"gAV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "gBj" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"gBn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "gBr" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/south_engi) -"gBy" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"gBt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"gBU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "gCa" = ( /obj/item/stack/snow, /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) -"gCH" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"gCV" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/folder/red, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"gCW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"gDe" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"gCv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "gDg" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted/devroom) -"gDj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"gDG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"gDO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 +"gDp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"gEh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/ship_memorial{ + desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; + name = "slab of triumph"; + pixel_y = 2 }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"gEm" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"gDW" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) +/area/strata/ag/interior/nearlz1) "gEo" = ( /obj/structure/platform/strata{ dir = 1 @@ -15505,105 +15500,58 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"gEA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"gEC" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"gEI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname{ +"gFs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/orange_edge/east, /area/strata/ag/interior/dorms) -"gEL" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) -"gER" = ( +"gFt" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"gFj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"gFs" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "gFH" = ( /obj/structure/cryofeed/right, /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"gGi" = ( -/obj/structure/bed/chair{ +"gFL" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"gGG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/hotsprings) +"gGw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"gGV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"gHP" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "gHQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"gIb" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"gIe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "gIo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15611,15 +15559,24 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"gIs" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"gIF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, /obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"gII" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ag/interior/outpost/engi) "gIY" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -15627,94 +15584,72 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"gJj" = ( -/obj/item/poster, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"gJm" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"gJy" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"gJK" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gJD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "gJN" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"gKe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"gKi" = ( -/obj/structure/closet/wardrobe/suit, +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"gKs" = ( -/obj/structure/mirror{ - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"gKN" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) +"gKO" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"gLj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"gLm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/area/strata/ag/exterior/research_decks) +"gKP" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/gloves/latex, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"gKR" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"gLi" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"gLu" = ( +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"gLv" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"gLD" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gLA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"gLB" = ( +/obj/structure/machinery/cryobag_recycler, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "gLF" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) -"gLG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"gMo" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/adminext) -"gMw" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) +"gMj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "gMF" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/disposalpipe/segment{ @@ -15723,183 +15658,154 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"gMW" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "gMX" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 +/obj/item/storage/box/rxglasses, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"gNd" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"gNv" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"gNz" = ( -/obj/structure/machinery/computer/cameras{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"gNs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"gNJ" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"gNR" = ( -/obj/structure/machinery/light/small{ +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"gNM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"gNP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"gOd" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"gOl" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "gOo" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"gOs" = ( -/obj/structure/inflatable/door, +"gOq" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"gOC" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"gOE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) +/area/strata/ag/interior/outpost/engi/drome) "gOL" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"gPh" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"gPk" = ( +/obj/structure/window/framed/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"gPu" = ( -/obj/item/stool, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"gPx" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "gPA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"gPD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"gPI" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "gPL" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"gPU" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"gPW" = ( +"gQE" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"gQa" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/deep/minehead) -"gQu" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"gQG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gQL" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gRa" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gRk" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"gQO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/cyan1/east, +"gRy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) -"gQZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"gRb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"gRp" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "gRO" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) -"gSm" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 +"gRT" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"gSh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"gSx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"gSt" = ( +/obj/structure/morgue{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"gSC" = ( -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/surface/rack, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "gSR" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/south_engi) @@ -15909,13 +15815,6 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"gTc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"gTv" = ( -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) "gTx" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -15933,71 +15832,59 @@ opacity = 0 }, /area/strata/ag/exterior/marsh/crash) -"gUh" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = null - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) -"gUp" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"gTL" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"gUt" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"gUb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/handset{ pixel_x = 8; pixel_y = 6 }, -/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"gUk" = ( +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) -"gUu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/nearlz1) -"gUA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +"gUp" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"gUz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) "gUP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) -"gUR" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"gVn" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"gUS" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"gVz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/white_cyan4/north, -/area/strata/ag/interior/outpost/med) +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"gVE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "gVJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -16010,120 +15897,73 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gVP" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/surface/table/reinforced/prison, +"gWv" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/folder/red, +/obj/item/ammo_box/magazine/shotgun/buckshot, /turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"gXi" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) -"gWb" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"gWg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"gWh" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"gWr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"gXr" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"gWA" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"gWQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gXs" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"gXE" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/closet/jcloset, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"gXV" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) -"gYp" = ( -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"gYG" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"gYK" = ( +"gYr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/structure/machinery/light/small{ - dir = 8 - }, +/obj/item/storage/briefcase, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gYY" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 +/area/strata/ag/interior/dorms) +"gYX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"gZl" = ( -/obj/item/stool, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"gZC" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"gZR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/area/strata/ag/exterior/research_decks) +"gYY" = ( +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gZX" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) -"hak" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"has" = ( -/obj/structure/barricade/handrail/strata{ +"hbx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"hby" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"hbC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"hcJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"hcL" = ( -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"hbI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"hct" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "hcO" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -16131,63 +15971,44 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) "hdv" = ( -/obj/structure/window/framed/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"hdC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"hdW" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/meat, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"hdR" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"hdT" = ( -/obj/item/reagent_container/food/drinks/shaker, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"heb" = ( -/obj/item/stack/snow, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) -"heE" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"heF" = ( +/area/strata/ag/interior/outpost/canteen/bar) +"heh" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"heM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/window/reinforced/tinted, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"heq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"heI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/southresearch) "heO" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) -"hfe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"hfi" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "hfq" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -16195,49 +16016,63 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"hfr" = ( -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"hfA" = ( -/obj/structure/bed/chair{ - dir = 8 +"hfz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"hgo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"hgy" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/landmark/wo_supplies/storage/mines, -/obj/effect/landmark/wo_supplies/storage/mines, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"hgL" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"hhv" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hgx" = ( +/obj/structure/inflatable/door, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"hhG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"hgB" = ( +/obj/structure/machinery/washing_machine, +/obj/effect/decal/cleanable/blood/gibs/down, /obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"hgF" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ dir = 8 }, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"hhH" = ( -/obj/effect/landmark/good_item, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +/area/strata/ag/exterior/research_decks) +"hgV" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/light/small, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"hhu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"hhP" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"hhT" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "hhW" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -16255,36 +16090,72 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"hhZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "hir" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) +"hiz" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hiA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "hiL" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"hjc" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"hiM" = ( +/obj/structure/filingcabinet{ + layer = 2.9 }, -/turf/open/floor/strata/blue1, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) +"hiQ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"hiZ" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"hjg" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hjo" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "hjC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"hjW" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +"hjF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"hjN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"hki" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "hkn" = ( /obj/structure/platform/strata/metal, /obj/structure/barricade/handrail/wire{ @@ -16299,94 +16170,116 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hle" = ( -/obj/item/clothing/glasses/thermal/syndi, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"hln" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"hlv" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"hlW" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) +"hlN" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"hlS" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "hms" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"hmv" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "hmw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"hmR" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"hmT" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"hng" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, +"hmE" = ( +/obj/structure/filingcabinet, /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"hmR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/mushroom, +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"hne" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"hnm" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"hnw" = ( -/obj/structure/desertdam/decals/road_stop, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"hnK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +/area/strata/ag/exterior/research_decks) +"hnt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"hoq" = ( -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"hnK" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"hnO" = ( +/obj/item/device/radio, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"hnP" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"hod" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"hou" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"hoT" = ( /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/outpost/canteen/bar) "hpe" = ( /obj/structure/largecrate/hunter_games_ammo/good, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"hqd" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"hqu" = ( +"hpp" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"hpR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hqj" = ( +/obj/effect/landmark/good_item, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "hqw" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -16398,70 +16291,40 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"hqE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c500, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"hrs" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"hrB" = ( -/obj/item/paper_bin, +"hrC" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"hrE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"hrI" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/plating, -/area/strata/ag/exterior/marsh/crash) -"hrX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"hsl" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) +"hrQ" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"hsw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"hsy" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/stool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"hrR" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"hsd" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/folder/red, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"hsN" = ( -/obj/structure/prop/dam/van, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) +/area/strata/ag/interior/administration) "hsV" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -16482,84 +16345,56 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"htq" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"htC" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/deep/structures/res) +"htr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "htD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"htY" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"huf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"huD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/mushroom, -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"huR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"htM" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"htU" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"hvz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"hvG" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"hvH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"hvM" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 16 - }, -/turf/open/floor/strata, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"hvP" = ( +"huf" = ( +/obj/item/fuel_cell, /obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"huV" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/research_and_development, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"hvr" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/marsh) -"hwq" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"hvG" = ( +/turf/open/floor/prison/floor_plate, +/area/strata/ug/interior/jungle/deep/east_dorms) "hwD" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -16570,69 +16405,109 @@ "hwI" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"hxA" = ( -/obj/structure/bed{ - icon_state = "abed" +"hxk" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"hxs" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hxT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) "hyu" = ( /obj/effect/landmark/corpsespawner/russian, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"hyR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"hzG" = ( -/obj/structure/bed/chair{ - dir = 8 +"hyA" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"hzs" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"hAh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"hAm" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/interior/outpost/engi/drome) +"hzF" = ( +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) +"hAt" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"hBi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "hBs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"hBI" = ( -/obj/structure/machinery/body_scanconsole, /turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) -"hCe" = ( +"hBC" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"hDj" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"hDw" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"hDH" = ( +/area/strata/ag/interior/nearlz1) +"hCo" = ( +/obj/structure/closet/lawcloset, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"hCq" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"hDn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hDq" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; + dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"hDN" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "hDX" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -16642,23 +16517,15 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) "hDY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) +"hEt" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"hEi" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "hEz" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, @@ -16667,19 +16534,31 @@ "hFm" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"hFG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"hFD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/mirror{ - pixel_x = -29 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"hFO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"hFR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 9 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"hFZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"hFU" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/canteen/personal_storage) "hGm" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -16691,267 +16570,253 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"hGG" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"hGr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"hGx" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "hGH" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) +"hGK" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "hGO" = ( /obj/structure/platform/strata, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hGW" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"hHc" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"hGZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"hHe" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"hHk" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/engi) "hHK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"hHY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"hIr" = ( -/obj/structure/machinery/centrifuge, +"hHR" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"hJi" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"hJw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"hJE" = ( -/turf/open/gm/river, -/area/strata/ug/interior/jungle/deep/east_dorms) -"hKa" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"hKB" = ( +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hHT" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"hKH" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" +/area/strata/ag/interior/outpost/admin) +"hIf" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"hIv" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"hJb" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/minehead) -"hKY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"hJE" = ( +/turf/open/gm/river, +/area/strata/ug/interior/jungle/deep/east_dorms) +"hKX" = ( +/obj/item/storage/belt/knifepouch, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "hLf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"hLu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"hLv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"hLy" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"hLL" = ( -/obj/structure/window/framed/strata, +"hLJ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"hLU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/almayer/ship_memorial{ - desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; - name = "slab of triumph"; - pixel_y = 2 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) +/area/strata/ag/interior/outpost/canteen) +"hLT" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) "hMs" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"hNJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"hNM" = ( -/obj/structure/machinery/light/small{ +"hMC" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"hNh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"hNR" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"hNT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hNs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "hOa" = ( /turf/open/gm/river, /area/strata/ug/exterior/jungle/deep/carplake_center) -"hOx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"hOU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"hOz" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"hOV" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hOJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/obj/structure/machinery/power/apc/power/north, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/interior/tatami, -/area/strata/ag/interior/outpost/canteen) -"hPo" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"hPh" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "hPr" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/nearlz2) -"hPu" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "hPK" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) -"hQl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) "hQq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"hQB" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"hQD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "hQP" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/crash) -"hQW" = ( -/obj/structure/pipes/vents/pump, +"hQS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"hRE" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"hRU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"hSo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/area/strata/ag/interior/outpost/gen/bball) +"hQU" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"hRG" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) -"hSp" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/canteen) -"hSI" = ( +"hSh" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/reinforced/prison, /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"hSK" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"hSn" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"hTm" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"hTo" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"hTy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"hTN" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"hUk" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"hTT" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hUa" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"hUE" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/north_outpost) +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"hUs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"hUz" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "hUJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -16962,73 +16827,81 @@ "hVm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/outpost/jung/dorms/med1) -"hVo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"hVB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"hWc" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/machinery/light/small{ - dir = 8 +"hVK" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"hVR" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) "hWk" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) -"hWq" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"hWw" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ +"hWD" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) -"hWx" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"hWR" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"hXq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"hXC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"hXd" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"hXi" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"hXD" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +/area/strata/ag/interior/dorms/maintenance) +"hXS" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) "hYc" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) +"hYe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"hYf" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "hYj" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "hYl" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/recharge_station, @@ -17040,308 +16913,248 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"hZa" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/adminext) -"hZi" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"hZm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"hYI" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"hZw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"hYQ" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"hZc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"hZe" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"hZH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"iau" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"iay" = ( /obj/structure/bed{ icon_state = "abed" }, -/obj/structure/machinery/light/small, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/storage/fancy/cigarettes/lady_finger, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"hZK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"hZY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"iaA" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/northeast, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/cyan4/east, /area/strata/ag/interior/outpost/med) -"hZZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"iad" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"iar" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"iaN" = ( +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, -/obj/item/weapon/harpoon, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"iau" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"iaU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"iaW" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "ibh" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/nearlz2) "ibj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"ibm" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"ibq" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"ibr" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"ibt" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/obj/item/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) "ibH" = ( /obj/item/trash/pistachios, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"icV" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"ibI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"ide" = ( +/obj/item/storage/pill_bottle/antitox/skillless, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"ico" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"idf" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"icq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/barricade/handrail/strata, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"icL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/reagent_container/spray/cleaner, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"idh" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"idi" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"icT" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"ida" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"idt" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "idW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"ieh" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"ieO" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/crash) -"ieP" = ( -/obj/structure/closet/coffin, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"ifs" = ( -/obj/effect/spawner/random/attachment, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"ifI" = ( +"ieD" = ( /obj/structure/bed/chair/office/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ifu" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "ifU" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) -"ihC" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ihE" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ +"igd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/east_carp) -"ihJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/toy/deck, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"iib" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"igG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"igZ" = ( +/obj/structure/bed/nest, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"ihm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "iie" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"iiE" = ( -/obj/structure/filingcabinet, -/obj/item/pamphlet/skill/medical, -/turf/open/floor/strata, -/area/strata/ag/interior/administration) -"ije" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "ijo" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/security) -"ijx" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"ijN" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/bcircuit, -/area/strata/ag/interior/dorms) -"ika" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) -"ikc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ikD" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"ikk" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "ikG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"ikP" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"ikR" = ( +"ikW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"ilu" = ( /obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ilc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"ild" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"ilg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"ilF" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "ilL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"ims" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"ilR" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"imJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ilV" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; + pixel_y = 32 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"imN" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +"ilY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/interior/outpost/gen/foyer) +"ilZ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/research_decks/security) "imZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -17351,108 +17164,61 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"int" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"inB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"inL" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, +"inf" = ( +/obj/structure/largecrate/random, +/obj/item/storage/belt/shotgun, +/obj/item/storage/backpack/lightpack, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"inS" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/jcloset, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"inV" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/dorms) +"ioh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"iol" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ioM" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"ioW" = ( -/obj/structure/bedsheetbin, -/obj/item/device/binoculars/range, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ioZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/maintenance) -"ipc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"ips" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"ipQ" = ( -/obj/effect/decal/cleanable/blood, +"ioQ" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ipS" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/toilet{ - dir = 4 + dir = 8 }, -/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"ioV" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"ipW" = ( -/obj/structure/pipes/vents/pump{ +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ipe" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"iqd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "iqe" = ( /obj/item/lightstick, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"iqj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 9 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +"iqH" = ( +/obj/structure/closet/bodybag, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/southresearch) "iqV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -17467,13 +17233,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"irm" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"iri" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "irq" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" @@ -17486,12 +17255,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"irV" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) "isa" = ( /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) @@ -17501,24 +17264,33 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"ist" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"isf" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"isE" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/obj/structure/machinery/vending/snack, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"isD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/interior/dorms/south) "isY" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"ita" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +"itd" = ( +/obj/item/reagent_container/food/drinks/coffee, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "itw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -17527,34 +17299,16 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"itA" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"itN" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"itS" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"itX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"itV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"ius" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/center) "iuB" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -17563,157 +17317,143 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"iuK" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"iuY" = ( -/obj/item/stool, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +"ivg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "ivF" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"ivH" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ivN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "ivY" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"iwq" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"iwo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/blue3/west, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "iws" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) "iwt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"iwC" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"iwz" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) "iwH" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"iwZ" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) "ixu" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) -"ixw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"iyg" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"iyX" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"iyZ" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) -"izt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"izw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"izy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/obj/structure/platform/strata{ dir = 1 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"izJ" = ( +/obj/structure/platform/strata{ + dir = 8 + }, +/obj/structure/platform_decoration/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"iyA" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"iyK" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"iyS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"izF" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" + dir = 8; + icon_state = "p_stair_full" }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"izM" = ( /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"iAv" = ( -/obj/structure/machinery/door/airlock/prison{ +/area/strata/ag/interior/outpost/med) +"iAw" = ( +/obj/structure/sink{ dir = 1; - name = "Reinforced Airlock" + pixel_y = -10 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"iAQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"iAW" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) -"iBh" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"iAG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"iBG" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"iAV" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"iBi" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"iBv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"iBB" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"iBK" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "iBM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -17726,6 +17466,10 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"iBP" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "iBT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/tearlake) @@ -17737,64 +17481,112 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"iCN" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"iCY" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"iCP" = ( +/obj/structure/machinery/smartfridge/drinks, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"iCU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"iCW" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"iDc" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"iDj" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "iDq" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"iDy" = ( -/obj/item/device/t_scanner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"iDJ" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"iDT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +"iDr" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"iEm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"iEn" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "iEo" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" }, /area/strata/ag/exterior/marsh/crash) -"iEQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/plump_pie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"iEI" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/med) "iEU" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med1) +"iFf" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "iFn" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/obj/item/storage/box/cups, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"iFq" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"iFp" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"iFM" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"iGs" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"iGQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/strata/blue1, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"iFQ" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"iGK" = ( -/turf/open/floor/almayer/test_floor5, +"iGT" = ( +/obj/item/clipboard, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"iHb" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"iHU" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "iHX" = ( /obj/structure/largecrate/random/case/double, @@ -17813,35 +17605,49 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"iIK" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) +"iIE" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"iIG" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"iIX" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "iJe" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/item/tool/crowbar, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) +/obj/structure/barricade/handrail/strata, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "iJh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) +"iJm" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "iJp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/gloves/latex, /obj/item/storage/surgical_tray, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"iJH" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 +"iJy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "iJJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -17853,117 +17659,98 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"iJN" = ( +"iKm" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"iKh" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"iKj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/item/reagent_container/food/snacks/meatballsoup, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "iKI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) +"iLh" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "iLr" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"iLL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"iLT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"iMf" = ( -/obj/structure/bed/chair{ - dir = 8 +"iLv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"iLw" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/reagent_container/spray/pepper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "iMn" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iMF" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +"iMo" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/landingzone_2) +"iMy" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/research_decks) "iNe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"iNi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"iNx" = ( +"iNz" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"iNU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"iOh" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"iNS" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/south_engi) -"iOv" = ( -/obj/structure/barricade/handrail/strata{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"iOo" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) +"iOD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eggplantparm, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"iOF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/fence, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"iPt" = ( -/obj/structure/machinery/light/small, -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"iOV" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "iPw" = ( /mob/living/simple_animal/hostile/retaliate/clown{ @@ -17974,39 +17761,24 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"iPQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"iPV" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) -"iQx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"iQD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"iQK" = ( -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/paths/adminext) -"iQL" = ( +"iPP" = ( /obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"iQw" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"iQA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) +/area/strata/ag/interior/outpost/gen/bball/nest) +"iQN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "iQS" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -18015,43 +17787,10 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"iQU" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"iRj" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "iRk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"iRm" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"iRy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"iRP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "iRY" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/rods, @@ -18060,60 +17799,63 @@ "iSe" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/south_engi) -"iSt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"iSw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"iST" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"iSZ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"iTz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"iTM" = ( -/obj/structure/largecrate/random/barrel/blue, +"iSo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/item/device/encryptionkey/dutch, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"iSG" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) -"iTP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +"iTc" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"iTx" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"iTA" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"iTQ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/computer/guestpass{ + dir = 4; + reason = "Visitor" + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"iUj" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "iUw" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"iUz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"iUA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "iUJ" = ( /obj/structure/bed/chair{ dir = 8 @@ -18124,23 +17866,54 @@ /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"iVh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"iVe" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"iVg" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) +"iVm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/southresearch) -"iVW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/surgical, -/obj/item/storage/surgical_tray, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"iVo" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"iVF" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"iWd" = ( /obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"iWp" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"iWy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"iWE" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "iWG" = ( /obj/structure/barricade/snow, @@ -18166,45 +17939,71 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iYe" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"iYr" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"iZm" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"iZz" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"iZA" = ( +"iXo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"iXA" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"iXE" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"iXK" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"iXW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"iYx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"iYA" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"iYJ" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"iZg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"iZs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue4, +/area/strata/ag/interior/outpost/admin) "iZI" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"iZP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"jag" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/center) "jaZ" = ( /obj/structure/cargo_container/wy/mid{ health = 5000; @@ -18212,19 +18011,22 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"jbk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) "jbq" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"jbt" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/strata/ag/exterior/marsh/center) +"jbA" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) "jbI" = ( /obj/structure/platform/strata{ dir = 1 @@ -18235,312 +18037,315 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"jcb" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"jcf" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"jcJ" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"jcF" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"jcO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/area/strata/ag/interior/dorms/canteen) +"jcM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"jcV" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"jdw" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/outpost/med) +"jcZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "jdC" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"jdI" = ( -/obj/structure/bed/chair{ - dir = 8 +"jea" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"jet" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"jeb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball) +"jew" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "jeN" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"jeV" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jeS" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"jfe" = ( +/obj/structure/closet/coffin, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"jfg" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"jfq" = ( +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"jfv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"jgz" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) -"jfi" = ( +"jhi" = ( +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"jhl" = ( +/obj/structure/machinery/weather_siren{ + dir = 8; + pixel_x = -18; + pixel_y = 10 + }, +/turf/closed/wall/strata_outpost, +/area/strata/ag/exterior/research_decks) +"jhB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"jhE" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"jfv" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"jfY" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"jga" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"jgb" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/strata/ag/interior/dorms/canteen) +"jhH" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jhI" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/landingzone_2) +"jhU" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jha" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"jih" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"jim" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"jhl" = ( -/obj/structure/machinery/weather_siren{ - dir = 8; - pixel_x = -18; - pixel_y = 10 - }, +"jiL" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jji" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/tearlake) +"jjk" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"jjJ" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) -"jhm" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"jhs" = ( +"jjX" = ( /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/upp, +/obj/effect/landmark/corpsespawner/russian, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) -"jhM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"jkh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/minehead) +"jkO" = ( +/obj/item/stool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jkX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) -"jiq" = ( +"jld" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"jis" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"jiH" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"jiJ" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"jjs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"jjC" = ( -/obj/structure/largecrate/random, -/obj/item/toy/deck, +/obj/structure/inflatable/popped, /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/center) -"jjF" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, +/area/strata/ag/exterior/nearlz2) +"jlw" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jjJ" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ag/exterior/research_decks) -"jkv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"jkx" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"jlR" = ( +/obj/structure/window/framed/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) -"jkI" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red3, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"jkN" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/research_decks) -"jkQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"jlT" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"jkT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"jkU" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"jlk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/canteen) -"jll" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"jlJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"jms" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"jmO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"jmW" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"jmw" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"jmY" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"jnl" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"jnk" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"jnr" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "jnH" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) -"jnM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, +"jnR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"jod" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) -"jnO" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"joh" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"joo" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"jov" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"joD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/surgical, +/obj/item/storage/surgical_tray, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"joH" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"jpd" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"jph" = ( /turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) -"joc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +/area/strata/ag/interior/outpost/gen/foyer) +"jpB" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"jpE" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"jqk" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"jqH" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"jon" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"jpZ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"jrd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/cash_register/off/open{ - pixel_y = 8 +"jqM" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/mirror{ + pixel_x = -29 }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"jrh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "jrw" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -18551,49 +18356,28 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/cabin_area) -"jrJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"jrK" = ( +/obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jrO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "jsi" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) "jsw" = ( /obj/structure/closet/bodybag, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"jsC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"jsG" = ( -/obj/effect/decal/remains/xeno, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"jsM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"jsI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "jsP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -18605,93 +18389,129 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jto" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/machinery/light/small{ +"jsY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"jtS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"jti" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"jtp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"jty" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"jtz" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"jtF" = ( +/obj/structure/closet, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"jtV" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"juz" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"juh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"juC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"juX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "juY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/restricted/devroom) -"jvk" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"jvF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"jvx" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"jwr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jwf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/deep/structures/res) "jww" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) +"jxa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "jxc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"jxU" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"jxY" = ( +"jxd" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"jxR" = ( /obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"jyB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"jyC" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/strata/ag/interior/administration) +"jxT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jxW" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"jyp" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"jyH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"jyG" = ( /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/area/strata/ug/interior/jungle/deep/structures/res) +"jyN" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "jyO" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -18699,28 +18519,51 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"jyR" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/mountain) -"jzl" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"jzI" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ +"jzx" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/platform/strata/metal{ dir = 8 }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"jzX" = ( -/obj/structure/inflatable, +/area/strata/ag/exterior/paths/adminext) +"jzC" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/storage/pill_bottle/imidazoline, +/obj/item/storage/pill_bottle/imidazoline, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"jzE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"jzH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"jAi" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood, +/obj/item/bedsheet/medical, +/obj/item/storage/large_holster/machete/full, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "jAo" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -18728,66 +18571,78 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"jAv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"jBb" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"jAD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"jAV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/closet/secure_closet/personal, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"jBs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"jBD" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jBE" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"jCo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"jCE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east/scrub) -"jCX" = ( +/area/strata/ag/interior/dorms/south) +"jBc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jBg" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"jBC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 8; - icon_state = "p_stair_full" + icon_state = "p_stair_ew_half_cap" }, -/turf/open/floor/strata/multi_tiles, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"jBE" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jCg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/enchiladas, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"jCt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"jCY" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) -"jCZ" = ( -/obj/item/storage/box/nade_box/tear_gas, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"jDe" = ( -/obj/structure/morgue, +"jCA" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"jDg" = ( -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement12, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/mass_spectrometer, +/obj/item/prop/matter_decompiler, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"jCE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) "jDr" = ( /obj/structure/machinery/light/small{ @@ -18796,122 +18651,87 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"jDC" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"jDI" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/floor2, +"jEo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jEp" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"jEr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"jDN" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"jDX" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"jEm" = ( -/obj/structure/closet/bodybag, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/southresearch) +"jEx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) "jEB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/security) -"jEH" = ( -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"jED" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/catwalk, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "jEO" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi) -"jEU" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"jFc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"jES" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"jFt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jFg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/device/radio, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) +"jFx" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jFM" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "jFO" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) -"jGK" = ( -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"jGM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"jGS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"jHd" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"jHz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"jHE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/flight_control) -"jIf" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"jIy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"jHZ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "jIz" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -18920,31 +18740,53 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"jII" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"jIO" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/landingzone_checkpoint) +"jIV" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"jIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "jJy" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"jKt" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"jKy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jKz" = ( +"jJJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"jJX" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"jKG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) +/area/strata/ag/interior/tcomms) +"jKd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"jKu" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) "jLb" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) @@ -18952,6 +18794,24 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) +"jLn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"jLt" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"jMq" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "jMD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -18964,215 +18824,140 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jME" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"jMI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"jNt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"jOf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"jOp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, +"jMS" = ( +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"jOa" = ( +/obj/structure/filingcabinet, /turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"jOv" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"jOw" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"jOP" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"jOV" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east/scrub) -"jPj" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/marsh) -"jPp" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"jPx" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"jPF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/jellysandwich, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"jPI" = ( -/obj/structure/platform_decoration/strata/metal{ +/area/strata/ag/interior/dorms/south) +"jOf" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"jOk" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jOp" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"jPJ" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) +"jOs" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jOC" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jOV" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east/scrub) "jPV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"jQu" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"jQw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"jQA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"jQO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, +"jPW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"jQg" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"jRc" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) -"jRg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"jQm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"jRq" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) -"jRs" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"jRF" = ( -/obj/structure/surface/rack, -/obj/item/storage/bible/booze, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) -"jRS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"jRZ" = ( +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"jQy" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"jQS" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"jRb" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"jRh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"jRp" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"jRC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"jSf" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"jSD" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"jTa" = ( -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/outpost/med) +"jSp" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata/red3/north, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jSs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) -"jTb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 +"jSQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"jTr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) -"jTy" = ( -/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"jUr" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jUt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "jUA" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"jUJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"jUQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "jUS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -19182,108 +18967,151 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"jUT" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"jUV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) +"jVb" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "jVg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/camera/autoname, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) -"jVM" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) +"jVo" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"jVt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "jWs" = ( /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) "jWz" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) +"jWL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"jWZ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"jXl" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"jXH" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "jXQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) -"jYl" = ( -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"jYM" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"jZw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"jZG" = ( +"jYc" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"jYf" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"jZI" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/strata/ug/interior/jungle/deep/structures/res) +"jYn" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"jYE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"jZS" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"jYQ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"jYT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"kaa" = ( -/obj/structure/bed/chair{ - dir = 4 +"jZf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jZB" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "kac" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"kaq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - req_one_access = null +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"kar" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "kaw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) -"kaM" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, +"kbc" = ( /obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"kbC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kbd" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"kbj" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"kbB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"kbF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/med) "kbU" = ( /obj/effect/decal/cleanable/blood, @@ -19292,90 +19120,100 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"kce" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"kcu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"kbV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"kbY" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "kcw" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"kcC" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "kcJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"kdb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"kdc" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"kdk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"kdh" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"kdq" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/interior/landingzone_1) -"kem" = ( -/obj/item/trash/pistachios, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"kds" = ( +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"kdO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"keB" = ( -/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"kea" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"keH" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/condimentbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"kfc" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"kfk" = ( -/obj/structure/pipes/vents/pump{ +"keI" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"kgD" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"kfa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"kfi" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/interior/landingzone_1) +"kfz" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"kfQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"kgg" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"kgl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 6 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) -"kgP" = ( -/obj/effect/landmark/monkey_spawn, +"kgu" = ( +/obj/structure/inflatable/door, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/exterior/research_decks) +"kgM" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "kgQ" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/disposalpipe/segment{ @@ -19392,21 +19230,10 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) -"khv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"khF" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"khJ" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +"khP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "khR" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/decal/strata_decals/catwalk/prison, @@ -19419,263 +19246,294 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) -"kiq" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"kiW" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"kit" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"kiN" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"kiY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"kiZ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "kjc" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"kjq" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"kjS" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"kkb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/russianRed, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"kkn" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) -"kkL" = ( -/turf/closed/wall/strata_ice/dirty, -/area/strata/ag/exterior/nearlz2) -"kld" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"klU" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"kmY" = ( -/obj/structure/bed{ - icon_state = "abed" +"kjL" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"kjX" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"knf" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kkb" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kkd" = ( +/obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"knQ" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"koj" = ( +/area/strata/ag/exterior/north_lz_caves) +"kkx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kkB" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"kkL" = ( /turf/closed/wall/strata_ice/dirty, -/area/strata/ag/exterior/shed_five_caves) -"kop" = ( +/area/strata/ag/exterior/nearlz2) +"kll" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/stool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"klp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"kml" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"kmz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"kos" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"kot" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/exterior/research_decks) +"knx" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"knK" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"knQ" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"knT" = ( /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/interior/outpost/engi/drome) +"knZ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"koj" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/exterior/shed_five_caves) "koG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"koQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +"kqh" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"kqn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"kpq" = ( -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"kpL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"kqQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/closet/bodybag, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"kqW" = ( -/obj/structure/bed/chair{ +"kqA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"kqH" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"kqX" = ( -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/structure/surface/rack, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"krk" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"krl" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"krQ" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"krX" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"krY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/obj/item/device/radio, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/north_lz_caves) -"ksl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"kqN" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"ksr" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ksf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"ksq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "ksA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"kta" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 +"ksD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ktx" = ( -/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"ksE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"ksT" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ktm" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kto" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"ktB" = ( +/obj/structure/bed/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ktF" = ( +/obj/structure/surface/rack, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) -"kuw" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 8 +/area/strata/ug/interior/jungle/deep/structures/res) +"ktK" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/marsh) +"kub" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"kuc" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/landmark/wo_supplies/storage/mines, +/obj/effect/landmark/wo_supplies/storage/mines, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kur" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"kvp" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/area/strata/ag/interior/landingzone_checkpoint) +"kuH" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"kvv" = ( -/obj/structure/bed/chair{ +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"kvK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"kvP" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "kvY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kwi" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"kwk" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"kwO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"kwT" = ( -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1, +"kwx" = ( +/turf/open/floor/prison/floor_plate, /area/strata/ag/interior/dorms) "kxk" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/obj/structure/barricade/deployable{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"kxy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"kxp" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"kxA" = ( -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"kxD" = ( +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "kxF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -19684,34 +19542,48 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"kxM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) +"kxL" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "kxN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) +"kxV" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) +"kyc" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "kyf" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"kyl" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) "kyr" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) "kyz" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"kyR" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/outpost/canteen) "kyT" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 @@ -19722,172 +19594,148 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"kyZ" = ( -/obj/structure/coatrack, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "kzg" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "kzk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"kzl" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"kzv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, +"kzw" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) -"kzG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/exterior/vanyard) +"kAi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"kzX" = ( -/turf/open/floor/strata/white_cyan3/southwest, -/area/strata/ag/interior/outpost/med) -"kAJ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"kBF" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"kBK" = ( +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kAu" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"kAv" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"kAw" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"kAD" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"kBy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "kBL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"kBU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 +"kBM" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) +"kCj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "kCk" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/center) -"kCo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"kCw" = ( +"kCR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"kCS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"kDt" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"kCx" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"kEy" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"kDH" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"kEf" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"kEr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"kEJ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"kFa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"kEE" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"kFh" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"kEU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"kFf" = ( -/obj/structure/pipes/vents/pump{ +/obj/item/storage/pill_bottle/russianRed, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"kGc" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"kFh" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"kFK" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) -"kGi" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) -"kGr" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata/orange_cover, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kGj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "kGV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"kGW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"kHd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"kHv" = ( -/obj/structure/window/framed/strata, +"kHb" = ( +/obj/structure/filingcabinet, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"kHR" = ( -/obj/effect/decal/cleanable/blood, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"kHi" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"kHp" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) +"kHz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/area/strata/ag/interior/outpost/engi/drome) "kHV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -19899,6 +19747,20 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"kIi" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"kIj" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"kIs" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) "kIu" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -19908,6 +19770,23 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"kIv" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"kIE" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"kIN" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "kIW" = ( /obj/structure/bed/chair{ dir = 8 @@ -19917,17 +19796,37 @@ "kJd" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"kKj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"kJJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"kJP" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"kJR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) -"kKn" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"kKt" = ( +"kJY" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kKI" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"kLo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"kLz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/meat, /obj/item/reagent_container/food/snacks/meat{ @@ -19936,20 +19835,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) -"kKI" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"kKT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"kLc" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) "kLM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -19959,28 +19844,66 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"kMb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) "kMd" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/largecrate/random/case/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kMA" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"kMT" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"kNm" = ( -/obj/structure/filingcabinet, +"kMQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"kMW" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) +"kNA" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"kNB" = ( /obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "kNJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"kNQ" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +"kNS" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "kOr" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -19988,96 +19911,102 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"kOI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"kPa" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"kPr" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"kOu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "kPB" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/holobadge, -/turf/open/floor/strata/floor3/east, +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "kPC" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kQg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"kPQ" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"kPV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) +"kQo" = ( +/obj/effect/glowshroom, /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "kQu" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kQx" = ( +"kRy" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"kRB" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"kRk" = ( -/obj/structure/bed/chair{ +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"kRo" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"kRE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) "kRI" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"kSh" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ +"kRL" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"kRV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"kSi" = ( +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) -"kSr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "kSs" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kSv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +"kSw" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"kSE" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "kSS" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -20091,30 +20020,49 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"kTh" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +"kTc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"kTg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) "kTB" = ( /turf/open/gm/coast/north, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kTJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kTH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) "kUb" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"kUm" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"kUq" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +"kUg" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kUk" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "kUs" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -20125,21 +20073,24 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"kVL" = ( -/obj/structure/bed/chair{ - dir = 4 +"kVW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"kWz" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"kWC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"kWr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"kWO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) "kWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -20151,22 +20102,19 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kXB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ +"kXP" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/obj/structure/platform/strata/metal{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"kXY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/adminext) -"kXC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "kYe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -20174,23 +20122,42 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"kYj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "kYl" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kYq" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"kZC" = ( +"kYs" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"kYD" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"kZi" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"kZn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "kZL" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -20200,28 +20167,52 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"kZM" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"kZQ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "kZU" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh) -"lam" = ( -/obj/item/storage/firstaid/adv, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"lau" = ( -/obj/item/clipboard, +"kZV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"kZX" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"laf" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ug/interior/jungle/deep/structures/engi) +"laC" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"laE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "laF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) +"laK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "laM" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -20231,9 +20222,31 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"laS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"lba" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "lbh" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"lbJ" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"lcb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) "lcq" = ( /obj/item/clothing/suit/storage/militia, /obj/item/clothing/suit/storage/snow_suit/doctor, @@ -20242,35 +20255,22 @@ "lcs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh) -"lcx" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"lcy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/blue, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"lcT" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) -"lcX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"lcA" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"lda" = ( -/obj/structure/barricade/wooden{ +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"lcN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "ldp" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata/metal{ @@ -20282,16 +20282,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"ldx" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"ldD" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"ldI" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "ldO" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_carp) @@ -20299,59 +20295,12 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"lee" = ( -/obj/structure/machinery/washing_machine, -/obj/item/facepaint/skull, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"leo" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"lev" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"lfa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"lfg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "lfj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"lfs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"lfv" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"lgk" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) "lgv" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -20365,216 +20314,157 @@ /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) "lgA" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"lgV" = ( -/obj/structure/holostool, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/obj/item/storage/box/ids, +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"lgI" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) "lgY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"lhm" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"lho" = ( -/obj/structure/largecrate/random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lhx" = ( -/obj/structure/morgue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"lhA" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/crash) "lhH" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) "lhI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ug/interior/jungle/deep/structures/engi) -"lhL" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"lii" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lhJ" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/extinguisher, /turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"lhY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) -"lim" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"lii" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"lin" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "liK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"liM" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/east_engi) "ljk" = ( -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/adminext) -"ljG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"ljp" = ( +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ljR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) -"ljV" = ( +"lkb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"lka" = ( -/obj/structure/machinery/light/small{ +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"lky" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"lkh" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/largecrate/guns/russian, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "lkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"lkW" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, +"lkF" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"lla" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"llz" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"llL" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"llA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"llE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"llH" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"llN" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 +/area/strata/ag/interior/outpost/canteen) +"llP" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"llW" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"llR" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "lmv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"lmz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"lmV" = ( -/turf/closed/wall/strata_ice/dirty, -/area/strata/ag/exterior/paths/southresearch) -"lne" = ( -/obj/structure/bed/chair{ +"lmI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"lmS" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"lmV" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/exterior/paths/southresearch) "lno" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/south_engi) "lns" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"lob" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"lot" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"loQ" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/structure/surface/rack{ - layer = 2.5 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"lpj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"lnu" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"loK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"lpb" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "lpk" = ( /obj/structure/bed{ icon_state = "abed" @@ -20591,90 +20481,116 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"lpp" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +"lpo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"lpB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"lpF" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"lqa" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"lqc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lqe" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"lpJ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"lqt" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lpT" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"lqq" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "lqD" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"lqU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "lrd" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) -"lrt" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"lrr" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"lrM" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"lrK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/gen/foyer) "lrO" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"lsu" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"lsx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "lsz" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"ltn" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"lsQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"lsR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"lsU" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) +"ltc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "ltp" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"ltI" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"ltW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "ltZ" = ( /obj/structure/bed/roller, /obj/structure/sink{ @@ -20682,20 +20598,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"lud" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"lui" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"lul" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) +"luq" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) "luA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -20704,24 +20610,46 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"luQ" = ( -/obj/structure/bed/chair{ - dir = 1 +"luF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"luJ" = ( +/obj/structure/machinery/space_heater, +/obj/item/device/flashlight/lamp{ + pixel_y = 11 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"lvk" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/item/storage/box/attachments, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"luM" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"luS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"luV" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"lvh" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "lvw" = ( /obj/effect/particle_effect/steam, @@ -20735,50 +20663,75 @@ "lvF" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/tearlake) -"lwr" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"lwt" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, +"lvI" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"lvV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/vents/pump/on, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"lwy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 +"lvY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"lxd" = ( -/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"lwE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"lxA" = ( -/obj/structure/filingcabinet, +"lwL" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"lxb" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) -"lyt" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +"lxV" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/folder/red, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"lxX" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "lyv" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"lyM" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +"lyR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"lyW" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/structures/res) "lyX" = ( /obj/structure/bed{ icon_state = "abed" @@ -20794,88 +20747,111 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) +"lzs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "lzt" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"lzI" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/bed/medevac_stretcher, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/exterior/jungle/deep/carplake_center) +"lzR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "lAc" = ( /turf/closed/wall/wood, /area/strata/ag/interior/restricted) +"lAs" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "lAx" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"lAL" = ( +"lAD" = ( +/obj/structure/machinery/processor, /obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"lAG" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "lAU" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/obj/structure/platform/strata/metal{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lAZ" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_tile, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) -"lBw" = ( -/obj/item/fuel_cell, -/obj/structure/barricade/handrail/strata{ +"lBd" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"lBg" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lBo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"lCc" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lCl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) -"lBG" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"lCu" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"lCE" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"lCd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"lDg" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lDy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"lCg" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"lCU" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/platform/east/scrub) -"lDq" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "lDz" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, @@ -20884,77 +20860,85 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"lEv" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"lEO" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"lDL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"lER" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lFA" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/area/strata/ag/interior/outpost/admin) +"lDN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"lFn" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/structures/res) "lFG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"lFP" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"lGs" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"lGA" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lGy" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"lGF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"lGD" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"lGI" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/cyan4/east, -/area/strata/ag/interior/outpost/med) -"lHq" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) +"lGX" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"lHh" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "lHs" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"lHD" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "lHO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"lIa" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, +"lIs" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/engi/drome) "lIR" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -20964,10 +20948,20 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lJp" = ( +"lIT" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lIU" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lJg" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/north_lz_caves) "lJz" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/syndicate, @@ -20976,134 +20970,132 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"lJC" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"lJD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) "lJG" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"lJW" = ( +/obj/item/clipboard, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"lJZ" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"lKu" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "lKv" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"lKM" = ( -/turf/closed/wall/strata_ice/dirty, -/area/strata/ag/exterior/marsh/water) -"lKN" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ +"lKw" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/coatrack, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lKV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"lKY" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"lKB" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"lKH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"lLc" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"lLg" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"lLm" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) -"lLq" = ( -/obj/structure/machinery/light/small, +"lKM" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/exterior/marsh/water) +"lLm" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lLq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "lLw" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"lLK" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"lLS" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"lMi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"lNj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"lNm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"lNA" = ( +/obj/structure/mirror{ + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"lNO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"lMM" = ( -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/sink{ + dir = 4; + pixel_x = 9 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"lOa" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"lOn" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"lOw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"lNf" = ( +"lOz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ pixel_x = 1; pixel_y = 3 }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"lNq" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"lNM" = ( -/obj/item/storage/pill_bottle/bicaridine, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"lOi" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"lOw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"lOB" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lOA" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "lOT" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -21116,44 +21108,57 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lOW" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, +"lOU" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"lPb" = ( +/obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"lOZ" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lPl" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"lPp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"lPr" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"lPq" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"lPK" = ( -/obj/structure/bed/chair{ - dir = 4 +"lPL" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"lQh" = ( -/obj/structure/bed/chair/dropship/passenger{ +/area/strata/ag/exterior/shed_five_caves) +"lQf" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"lQj" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) "lQT" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -21162,10 +21167,23 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"lRz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, +"lQZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) +"lRK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/maintenance) +"lRS" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "lRT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -21173,50 +21191,35 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"lTa" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"lSd" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lTs" = ( -/obj/item/stack/catwalk, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"lTz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/largecrate/random, -/obj/item/seeds/walkingmushroommycelium, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"lSS" = ( +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "lTG" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) -"lTL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "lTW" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/south_engi) -"lUa" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/minehead) -"lUp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"lUr" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "lUw" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata, @@ -21231,155 +21234,187 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"lVO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"lVR" = ( -/obj/effect/decal/strata_decals/grime/grime2{ +"lVW" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"lWm" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"lVU" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"lWu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"lWo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"lWq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"lWt" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"lWz" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"lWH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"lWQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"lXQ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"lXR" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"lXT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"lYf" = ( -/mob/living/simple_animal/cat/Runtime{ - desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; - name = "Bernard" +"lWT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"lYg" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"lYm" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"lYy" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"lXD" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"lXJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 + }, +/obj/structure/largecrate/random, +/obj/item/seeds/walkingmushroommycelium, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) -"lYL" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 1 +"lXP" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lZc" = ( -/obj/structure/flora/grass/tallgrass/ice/corner, -/turf/open/auto_turf/ice/layer2, -/area/strata/ag/exterior/marsh) -"lZf" = ( -/turf/open/auto_turf/ice/layer2, -/area/strata/ag/exterior/marsh/river) -"lZP" = ( -/obj/structure/bed/chair{ +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lZT" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"lZX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"mau" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"mbc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/obj/structure/machinery/camera/autoname{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"mbk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"mbm" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"mbz" = ( +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/west_engi) +"lZc" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/ice/layer2, +/area/strata/ag/exterior/marsh) +"lZf" = ( +/turf/open/auto_turf/ice/layer2, +/area/strata/ag/exterior/marsh/river) +"lZy" = ( /obj/structure/bookcase{ icon_state = "book-5" }, +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mai" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"mbO" = ( +/area/strata/ag/interior/dorms/maintenance) +"map" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"maO" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/landingzone_2) +"mbc" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"mch" = ( -/obj/structure/bed/chair/dropship/passenger{ +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"mbp" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"mbv" = ( +/obj/structure/coatrack, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"mbE" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"mbN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"mbV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"mcm" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"mcs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"mcI" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"mcJ" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) -"mcE" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +"mcQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/minehead) +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "mcX" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -21394,63 +21429,116 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"mdo" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +"mdi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"meg" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"mdv" = ( -/obj/structure/toilet{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"mew" = ( +/obj/item/device/t_scanner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"meI" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"meL" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"meY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"meR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"meZ" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/white_cyan3/northeast, +/area/strata/ag/interior/outpost/med) +"mfa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"mfb" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "mfp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/landingzone_checkpoint) -"mgv" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mfu" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"mfA" = ( +/obj/item/stack/rods, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"mfK" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"mgC" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"mgO" = ( -/obj/structure/window/reinforced/tinted{ +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mgg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mgn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) +"mgy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"mgD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"mgT" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "mhc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"mim" = ( -/obj/structure/bed/chair{ +"mhK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mio" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "mip" = ( /obj/structure/platform/strata{ dir = 1 @@ -21462,21 +21550,36 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"mix" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "miy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"miK" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"miQ" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"mji" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"miI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/fake_wood, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"miO" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"miY" = ( +/obj/item/toy/deck, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "mjp" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -21495,113 +21598,84 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"mkk" = ( +"mjS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"mkg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mkF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"mkU" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"mlX" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"mkA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"mlY" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"mlb" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"mmf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"mlf" = ( -/obj/structure/kitchenspike, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mmg" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"mmq" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"mlg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"mlR" = ( -/turf/open/floor/strata/blue4/north, -/area/strata/ag/interior/outpost/admin) -"mmE" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "mmF" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"mmQ" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/landingzone_2) -"mmT" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"mnA" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"mnT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/item/reagent_container/food/snacks/monkeyburger{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 6; - pixel_y = 19 +"mmM" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"mop" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"moU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"mnn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"mpa" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"mnt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) -"mpe" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"mph" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"mpi" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/machinery/light/small{ - dir = 1 +"moh" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) "mpk" = ( /turf/closed/shuttle/ert{ icon_state = "upp27" @@ -21611,39 +21685,83 @@ /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"mqf" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_carp) -"mqL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 +"mpy" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"mqi" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"mrd" = ( +"mqr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"mqA" = ( +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"mqH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mqI" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"mrR" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"mrc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "mrT" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"msl" = ( -/obj/structure/machinery/vending/cigarette/colony, +"msc" = ( +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"msh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +/area/strata/ag/interior/research_decks/security) "mso" = ( /obj/structure/machinery/weather_siren, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -21652,125 +21770,219 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"msN" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) "msP" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) -"mts" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"mth" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"mtv" = ( -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"mtt" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "mtD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/canteen/bar) -"muq" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"mtI" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"mtJ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"mtY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/deep/structures/res) +"muh" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" }, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"muN" = ( +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"muQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"muV" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mvh" = ( +/turf/open/auto_turf/ice/layer2, +/area/strata/ag/exterior/marsh) +"mvo" = ( +/obj/item/trash/pistachios, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"mvE" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh/center) +"mvM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"mvZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mwt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/med) +"mwv" = ( /obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"mwG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"mwH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"mxf" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) -"muR" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"mxV" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/splint, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"myc" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"mvh" = ( -/turf/open/auto_turf/ice/layer2, -/area/strata/ag/exterior/marsh) -"mvE" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 6 - }, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh/center) -"mvG" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/landingzone_2) -"mwd" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"mwt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/med) -"mxG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"mxI" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "myk" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"mys" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"myv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"myF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"mym" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"myM" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"myP" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ dir = 4 }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"mzB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"mzG" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"mzw" = ( -/obj/structure/platform_decoration/strata/metal{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"mzU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ dir = 4 }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"mzV" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"mAm" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"mAq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mAw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"mBe" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/gen/bball) "mBl" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/barricade/handrail/strata{ @@ -21778,44 +21990,79 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"mBv" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"mBx" = ( -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, +"mBq" = ( +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) -"mCH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/deep/structures/res) -"mDb" = ( +"mBH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"mCc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"mCH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cubancarp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"mCJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"mDk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/outpost/engi) +"mDt" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "mDy" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "mDF" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) -"mEg" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +"mDS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"mDU" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"mDW" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"mEd" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "mEk" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -21824,61 +22071,34 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"mET" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"mFP" = ( -/obj/structure/machinery/shower{ - dir = 1 +"mER" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"mFr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "mFZ" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead) -"mGn" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"mGw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"mHa" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"mGv" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/research_decks) "mHo" = ( /obj/structure/largecrate/random, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"mHv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "mHA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -21887,20 +22107,28 @@ /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) -"mHP" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"mIe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"mIm" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"mIv" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "mIE" = ( /obj/structure/prop/almayer/computers/mapping_computer, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -21916,53 +22144,87 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"mJw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"mJb" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"mJj" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"mJC" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"mJK" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"mJN" = ( +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mKb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +/obj/item/reagent_container/food/drinks/cans/sodawater, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mKc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) -"mLl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mLc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "mLn" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_engi) "mLt" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/no_power/north, +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"mLz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mLA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"mLy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/warnplate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"mMf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/area/strata/ag/interior/outpost/engi/drome) +"mLC" = ( +/obj/item/storage/firstaid/adv, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mLF" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"mLS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/dorms) +"mLV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mLX" = ( +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"mMk" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"mMl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "mMp" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/tearlake) @@ -21970,32 +22232,64 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"mNq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"mNX" = ( +"mNa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"mNr" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"mOh" = ( +/obj/item/clothing/shoes/snow, /obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"mNY" = ( +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"mOB" = ( +/obj/item/tool/kitchen/rollingpin, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"mOL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" +/area/strata/ag/interior/dorms/canteen) +"mOQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "mOR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"mPg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"mPb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "mPj" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" @@ -22009,334 +22303,298 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"mQc" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +"mQb" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "mQe" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"mQt" = ( +"mQl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"mQF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"mQG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "mQR" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"mRC" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"mSh" = ( +"mQS" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"mRR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"mSd" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"mSe" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"mSM" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"mSx" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"mSZ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"mTg" = ( -/obj/item/tool/wrench, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"mTi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"mTO" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"mTR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"mUd" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"mUi" = ( -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"mTg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"mTE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"mUq" = ( -/obj/item/stack/rods, -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"mUC" = ( -/obj/item/stack/sandbags, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/area/strata/ag/interior/outpost/admin) "mUD" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"mUK" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "mUU" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"mVc" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/fuel_cell, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) -"mVl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/exterior/research_decks) -"mVF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/device/radio, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"mVL" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, +"mUW" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"mVP" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"mVh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"mVA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"mWl" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) -"mWo" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"mWq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"mVM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"mVV" = ( +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"mVX" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"mVZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) "mWF" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"mWP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"mXa" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"mWI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"mXb" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"mXK" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms/south) -"mXt" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"mXZ" = ( -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/north_outpost) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"mXY" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/barricade/snow{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mYb" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "mYs" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"mYM" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"mZd" = ( -/turf/closed/wall/strata_ice/dirty, -/area/strata/ag/interior/outpost/gen/foyer) -"mZf" = ( -/obj/item/storage/box/rxglasses, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"mZl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ +"mYC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"mZV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) -"naA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/outpost/security) +"mZc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"nbl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"ncx" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ +/obj/structure/bed/chair{ dir = 8 }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mZd" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/outpost/gen/foyer) +"nap" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"ncO" = ( -/obj/item/stack/sheet/wood, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"ndc" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"nba" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"ncb" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"nev" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"ndv" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"ndy" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"nea" = ( -/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) +"nfn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1; + icon_state = "commb" + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"nfG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "nfK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) -"nfS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"nfW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"ngt" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"ngJ" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 +"ngi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"ngM" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"ngQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ngZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"ngV" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"nhe" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/minehead) "nhv" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"niK" = ( +"nhL" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"njd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"njt" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ug/interior/outpost/jung/dorms/med1) +"nie" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"niD" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"njV" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"niM" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "njW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer1, @@ -22346,10 +22604,38 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"nkl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) "nkp" = ( /obj/structure/floodgate, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) +"nkx" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"nkz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"nkH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"nkN" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "nla" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -22359,14 +22645,34 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"nmf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"nmi" = ( -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) +"nlf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"nlS" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"nme" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"nmp" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/largecrate/guns/russian, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "nms" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -22378,25 +22684,24 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/paths/dorms_quad) -"nmv" = ( -/obj/structure/machinery/scoreboard{ - id = "basketball"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 +"nmB" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"nmF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"nmP" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/outpost/engi) +"nmG" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"nmQ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nmR" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "nmS" = ( /obj/structure/machinery/message_server, /turf/open/floor/strata, @@ -22405,16 +22710,25 @@ /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"nnE" = ( -/obj/structure/bed/chair{ - dir = 1 +"nnr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"nnE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/stack/medical/bruise_pack, +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"nnI" = ( /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"nnU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/outpost/med) "nnY" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -22423,106 +22737,199 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"noc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +"noq" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/strata/ug/interior/jungle/deep/east_dorms) +"nos" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"npc" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"npk" = ( +/obj/item/tool/wrench, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"npr" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"npX" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/strata/ag/interior/tcomms) +"npZ" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"nqc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"nqo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"nqu" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"nqK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"nqO" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"nqX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) +"nrc" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/sheet/wood, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"nrd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"nre" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/binoculars, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"nrp" = ( +/obj/structure/flora/grass/ice/brown/snowgrassbb_2, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/river) +"nrs" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"nru" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nrF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"nrQ" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement, +/area/strata/ag/interior/outpost/gen/foyer) +"nrR" = ( +/obj/structure/machinery/holosign/surgery, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"nsf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"nsq" = ( +/turf/open/gm/coast/south, +/area/strata/ug/interior/jungle/deep/east_carp) +"nsr" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"nsu" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"nsV" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) -"noj" = ( -/obj/structure/machinery/smartfridge, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"noq" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/strata/ug/interior/jungle/deep/east_dorms) -"noZ" = ( +"ntn" = ( +/obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"npg" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ntp" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"npr" = ( -/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"npA" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"npB" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/folder/red, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"npX" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/strata/ag/interior/tcomms) -"nqU" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"nqX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead) -"nrc" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/stack/sheet/wood, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"nrp" = ( -/obj/structure/flora/grass/ice/brown/snowgrassbb_2, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/river) -"nrw" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"nsh" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"ntQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"nsq" = ( -/turf/open/gm/coast/south, -/area/strata/ug/interior/jungle/deep/east_carp) -"nsv" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"ntW" = ( /obj/structure/bed/nest, -/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 + }, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) -"nsP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"nti" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"nug" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "nun" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -22533,170 +22940,158 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"nvj" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"nvu" = ( +"nux" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"nuF" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"nva" = ( /obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/good_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"nvl" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"nvG" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/camera/autoname{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"nvX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"nwv" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"nxg" = ( -/obj/structure/toilet{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"nvy" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"nwh" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nwO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"nwS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "nxh" = ( /obj/structure/surface/rack, /obj/item/paper_bin, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"nxo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"nxF" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_leftengine" }, +/area/strata/ag/exterior/marsh/crash) +"nxO" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/surgery, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"nxV" = ( +/obj/structure/machinery/light/small, /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 4 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nyf" = ( +/obj/structure/machinery/photocopier, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"nxt" = ( -/obj/structure/surface/rack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"nyg" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"nza" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/obj/item/ammo_magazine/shotgun/buckshot{ +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/south_engi) +"nzb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/spearhead{ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"nxF" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp_leftengine" - }, -/area/strata/ag/exterior/marsh/crash) -"nxW" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"nze" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"nzn" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"nzv" = ( +/obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"nzO" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"nyl" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"nyF" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/camera/autoname{ - dir = 8 + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"nyU" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"nyV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"nyW" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"nzo" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"nzq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"nzs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"nzK" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "nzX" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "nAf" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_carp) -"nAj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"nAm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"nAv" = ( -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"nAJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"nAx" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"nAE" = ( +/obj/effect/landmark/corpsespawner/bridgeofficer, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "nAM" = ( /obj/structure/platform/strata{ dir = 1 @@ -22706,12 +23101,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"nAN" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) "nAV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" @@ -22722,52 +23111,31 @@ /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_carp) "nBi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"nBp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"nBu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"nBC" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/stack/medical/bruise_pack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"nBL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"nBR" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"nCg" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"nBq" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"nBy" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"nBK" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"nCa" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/match, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "nCD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -22777,6 +23145,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"nCX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "nDj" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -22786,25 +23160,39 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"nDZ" = ( -/obj/item/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"nER" = ( -/obj/structure/fence, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"nFA" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +"nDk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"nDB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"nDI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"nFm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"nFQ" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"nFS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"nFU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "nGi" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/ice/layer0, @@ -22815,70 +23203,77 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"nGp" = ( -/obj/structure/bed/chair/office/light, +"nGn" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"nGD" = ( -/obj/structure/window/reinforced/tinted{ +"nGo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"nHb" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"nHc" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"nHx" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"nGH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"nGQ" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"nIO" = ( /obj/structure/bed{ icon_state = "abed" }, +/obj/structure/machinery/light/small, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"nHz" = ( -/obj/structure/surface/rack, -/obj/item/toy/deck, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"nHX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"nIQ" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) +"nIT" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"nIM" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"nIN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"nJn" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/match, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"nJC" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/area/strata/ag/interior/outpost/engi) +"nJr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"nJG" = ( -/obj/structure/closet/secure_closet/personal, +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"nJu" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/item/clothing/suit/storage/bomber, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "nJK" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh) @@ -22886,50 +23281,51 @@ /obj/structure/machinery/shower, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) -"nKe" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"nKP" = ( -/obj/item/device/motiondetector, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"nKT" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"nKV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 1 +"nKb" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"nKW" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"nKe" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"nLf" = ( -/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"nKP" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"nLc" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"nLi" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"nLk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/interior/outpost/engi/drome) +"nLv" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"nLz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"nLF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/lightreplacer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "nLG" = ( /obj/structure/bed/chair{ dir = 4 @@ -22937,86 +23333,84 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) "nLI" = ( -/obj/item/stack/sandbags, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"nMn" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"nMC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"nMR" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/platform/east/scrub) -"nNS" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"nOe" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"nOM" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"nLX" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"nME" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"nNM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"nOm" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/marsh/crash) +"nOY" = ( +/obj/item/book/manual/surgery, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/north_carp) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "nPb" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_carp) +"nPf" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "nPh" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"nPD" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) "nPJ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"nPU" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"nQn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) "nQE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"nQS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"nRq" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +"nQW" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"nRf" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "nRN" = ( /obj/structure/cargo_container/arious/rightmid{ health = 5000; @@ -23024,15 +23418,18 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"nSe" = ( -/obj/structure/platform/strata/metal{ - dir = 8 +"nRT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"nSg" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) "nSJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -23043,45 +23440,32 @@ /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"nSZ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"nTq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "nTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"nUl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"nTY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/obj/structure/platform/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"nUw" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"nUo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/marsh) -"nUD" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/north_lz_caves) -"nUH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "nUM" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -23089,161 +23473,82 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"nUW" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"nVz" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ +"nVP" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/hotsprings) -"nVC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"nVS" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"nVQ" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"nVV" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"nWG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"nWI" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"nWR" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "nWX" = ( /obj/structure/bed/roller, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"nXo" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"nXJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"nXV" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"nYq" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"nYx" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"nYL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ +"nXk" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"nZb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/gen/bball) -"nZc" = ( -/obj/structure/largecrate/random, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"nZh" = ( +"nXw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"nZi" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"nZy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"nYk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"nZB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"nYG" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"nZE" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"nZl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/obj/item/device/radio, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/north_lz_caves) "nZR" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/research_decks) -"oaA" = ( -/obj/structure/closet/emcloset, +"oac" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oag" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"oah" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oau" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"oaw" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) "oaV" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -23251,13 +23556,9 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"obr" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"obP" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"oce" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "ocw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -23270,40 +23571,39 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh) -"ocP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 +"ocJ" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"odc" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "odi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"odA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"odC" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) "odJ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi/drome) -"odY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"oei" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"odK" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"oel" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "oeH" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -23322,77 +23622,82 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"ofg" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"ofp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"off" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"ofA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ogd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"ogf" = ( /obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ogk" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"ofO" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"ofP" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/coatrack, -/obj/structure/machinery/camera/autoname{ +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ dir = 8 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"ogp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"ogs" = ( /turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"ogD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) -"ogn" = ( +"ogT" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ogo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ogG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ogN" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ohJ" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"ogQ" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"ogR" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"ohh" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"ohL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"oiu" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eggplantparm, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ohN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"oiE" = ( +/obj/item/tool/kitchen/utensil/pfork, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 + dir = 4 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"oiN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) "oiV" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -23404,69 +23709,53 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"ojb" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"oje" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"ojj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"ojG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"ojI" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowfull2, +"oja" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/research_decks) -"ojN" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ojX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" +"ojF" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"okc" = ( +/obj/structure/morgue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"oke" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"okh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/obj/structure/platform/strata/metal{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"oki" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"ojZ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"okd" = ( -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"okr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/camera/autoname{ dir = 8 }, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"okf" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/outpost/engi/drome) +"oky" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "okE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) @@ -23478,60 +23767,72 @@ icon_state = "upp20" }, /area/strata/ag/exterior/marsh/crash) -"olb" = ( +"okQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"olp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"okW" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"omj" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"oml" = ( -/obj/structure/filingcabinet, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"ola" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"olg" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1 }, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"omx" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"omE" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +"olB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"omP" = ( -/obj/structure/machinery/power/terminal{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"onm" = ( -/obj/structure/toilet{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"olF" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"olL" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"omc" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) -"onp" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"omF" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"omZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "onq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, @@ -23539,54 +23840,31 @@ "onr" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"onw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"onW" = ( -/obj/structure/window/reinforced/tinted{ +"onA" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"oom" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"onX" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"ook" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"ooB" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"ooI" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"ooM" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"ooV" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"ooV" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"ooZ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "opg" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -23594,31 +23872,60 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) -"opv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"oqc" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/strata/ug/interior/jungle/deep/east_dorms) -"oqs" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"opG" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"oqH" = ( -/obj/structure/bed/chair{ +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"opI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"opK" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ dir = 1 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oqc" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/strata/ug/interior/jungle/deep/east_dorms) +"oqm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"oqs" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) "oqJ" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/strata_decals/catwalk/prison, @@ -23627,218 +23934,309 @@ "oqQ" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) -"oqU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "orc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"ork" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"ort" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "orL" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi/drome) -"orV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) "orW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"osp" = ( +"osf" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"oss" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"oso" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"osq" = ( +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/east, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"osx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"osv" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, /turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"osL" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/area/strata/ug/interior/jungle/deep/structures/res) +"osG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"osK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"osN" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/north_carp) "otl" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"otX" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/purp1, +"otI" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) +"ouz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) "ouB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ouD" = ( +"ouC" = ( +/obj/item/clipboard, +/obj/item/clipboard, /obj/structure/surface/rack, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/surgery, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ovp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"ovF" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ouI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ouM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ouO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) +"ouQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"ouY" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) -"owq" = ( -/obj/structure/platform/strata/metal{ - dir = 4 +"ovk" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"ovl" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"ovG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"owd" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"owf" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"owi" = ( +/obj/structure/machinery/washing_machine, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"owy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"oxm" = ( -/obj/structure/machinery/cryobag_recycler, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"oxp" = ( +/area/strata/ag/interior/outpost/engi) +"owI" = ( /obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"owP" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"oxw" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) "oxE" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"oxO" = ( +"oxN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"oxU" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"oxQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/storage/briefcase, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"oxX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"oyf" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "oyy" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"oyz" = ( -/obj/structure/largecrate/random, +"oyE" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/research_decks) +"oyP" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"oyT" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"ozR" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"oAy" = ( +/obj/structure/reagent_dispensers/beerkeg, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"ozx" = ( -/obj/structure/machinery/light/small, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"ozz" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"oAf" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/area/strata/ag/interior/dorms) "oAI" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "oAQ" = ( /obj/structure/machinery/light/small, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"oBJ" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"oBW" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"oBf" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"oBy" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"oCx" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"oCB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"oCj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"oCL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"oCD" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) -"oCU" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"oCY" = ( +/obj/structure/dropship_equipment/sentry_holder, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"oDi" = ( +/obj/structure/machinery/autolathe/full, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"oDs" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "oDw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"oDH" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +"oDI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"oDJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "oDL" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -23846,30 +24244,28 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"oEq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"oFd" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"oFf" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"oFh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"oEc" = ( +/obj/item/clipboard, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"oFi" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/omelette, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"oFp" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"oEv" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"oEB" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"oET" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"oFI" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 4; @@ -23878,106 +24274,74 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) -"oFY" = ( /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"oHp" = ( -/obj/structure/machinery/disposal, +/area/strata/ug/interior/jungle/platform/east/scrub) +"oFL" = ( +/obj/item/stack/rods, +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"oGt" = ( +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 3; + pixel_y = 14 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"oGy" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"oHt" = ( +"oHr" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"oHu" = ( +/obj/structure/bed{ + icon_state = "abed" + }, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"oIF" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/medical/advanced/bruise_pack, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"oHv" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) -"oHA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"oHI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"oIq" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/area/strata/ag/interior/outpost/canteen/bar) "oIU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"oJk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"oJs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"oJy" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"oJK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/toastedsandwich, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 8; - pixel_y = 17 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"oJT" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"oJU" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"oKb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"oJb" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"oJQ" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"oKh" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "oKl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -23985,15 +24349,36 @@ "oKo" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"oKU" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"oLr" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan, +"oKs" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"oKE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"oKP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"oKW" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"oLm" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) "oLv" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -24001,70 +24386,41 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"oLY" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"oMp" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) -"oMY" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"oNL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"oLB" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"oOm" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"oOH" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"oOI" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ug/interior/outpost/jung/dorms/med2) +"oLM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"oME" = ( +/obj/item/device/motiondetector, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"oMF" = ( +/obj/structure/machinery/light/small, +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"oNO" = ( /turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) -"oPi" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"oPk" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 +"oOt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"oOz" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/area/strata/ug/interior/outpost/jung/dorms/med1) "oPz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -24073,87 +24429,55 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oPE" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"oPF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, +"oPD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"oPO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/area/strata/ag/interior/outpost/admin) "oPQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"oPV" = ( -/obj/structure/machinery/autolathe/full, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"oQg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, +"oPZ" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/marsh) "oQv" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/crash) -"oQF" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"oQI" = ( +"oQM" = ( /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"oQP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"oSb" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"oSz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"oSO" = ( +/area/strata/ag/interior/outpost/canteen) +"oRH" = ( /obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/canteen) +"oRK" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"oSd" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"oSI" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"oSM" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "oSP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -24161,77 +24485,50 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"oST" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "oSV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"oTm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"oTy" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"oTt" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"oTZ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"oTT" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) -"oUe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"oUo" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"oUy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "oUK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"oVh" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, +/obj/item/stool, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) -"oVl" = ( +"oUM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"oVF" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"oVO" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"oUW" = ( +/obj/item/tool/mop, +/obj/structure/janitorialcart, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "oVR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -24240,36 +24537,32 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oVS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"oWJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +"oVT" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"oWK" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"oWf" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +/area/strata/ag/interior/outpost/engi/drome) +"oWg" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"oWl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"oWq" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "oWQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -24277,65 +24570,104 @@ /obj/item/stack/rods, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"oWT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "oWU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"oXg" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"oXp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"oXP" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"oXi" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"oXk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"oYc" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"oYQ" = ( -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"oXJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"oZu" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"oYN" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"oYO" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"oYQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"oZp" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/paths/north_outpost) +"oZv" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) +/area/strata/ag/interior/outpost/admin) "oZD" = ( /obj/item/lightstick, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"oZR" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"oZU" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pav" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement2, +/area/strata/ag/interior/landingzone_1) "pax" = ( /obj/structure/largecrate/hunter_games_medical, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"paQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "paY" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"pbs" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "pbF" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -24343,70 +24675,51 @@ /obj/structure/cryofeed, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pbG" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"pbO" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"pcf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"pcn" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/item/device/megaphone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/deep/minehead) -"pct" = ( -/turf/open/floor/prison/floor_plate, -/area/strata/ug/interior/jungle/deep/east_dorms) -"pcv" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/foyer) -"pcJ" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan1/east, +"pcy" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) -"pdk" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) +"pdt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "pdv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"pdx" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"pdG" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ped" = ( +/obj/item/weapon/gun/pistol/t73, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"pej" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"pev" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pef" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/bball) +"pek" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"pen" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "pex" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -24414,98 +24727,117 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) -"peC" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"peJ" = ( +"peD" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/device/encryptionkey/dutch, +/obj/item/dogtag, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"pfc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 9 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"pfl" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pfz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/south_engi) -"pfE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"pfS" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "pge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pgo" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"pgK" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"phd" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"phg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"phr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"phQ" = ( +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/surface/rack, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"phV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"pib" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"phq" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"pif" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/tool/kitchen/utensil/pknife, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"phx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"phJ" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "pih" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"pim" = ( -/obj/structure/machinery/bioprinter, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"pik" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"piq" = ( -/obj/item/reagent_container/food/drinks/coffee, -/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"piw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "piD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, /obj/effect/landmark/crap_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"piJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "piO" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -24520,15 +24852,23 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"piW" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"piS" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/interior/administration) "piY" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) +"pjb" = ( +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "pje" = ( /obj/structure/cryofeed/right, /obj/structure/platform/strata/metal, @@ -24537,177 +24877,101 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"pjR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"pka" = ( +/obj/structure/machinery/centrifuge, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pkC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "pkO" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/disposals) -"pkQ" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/strata, +"pkV" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"pkZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"pli" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"plD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"plM" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"plR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"pmz" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/barman_recipes, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"pkR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"plm" = ( +"pmP" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"pov" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"poR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NS-center" }, /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) -"pln" = ( +"ppd" = ( +/obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, +/obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"plw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"plB" = ( -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"plG" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"plQ" = ( -/obj/item/tool/pen/blue, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"pmg" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/landingzone_2) -"pmF" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"pmP" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"pmS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"pnq" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"pns" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"pnR" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"poG" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"poL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"poM" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"poS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"ppE" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ppd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"ppi" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/storage/pill_bottle/alkysine, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"ppk" = ( -/obj/structure/bed/nest, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ppr" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"ppw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan3/west, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"ppQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "pqy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -24716,16 +24980,21 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"pqB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +"pqz" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"pqB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"pqD" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "pqE" = ( /obj/structure/cargo_container/wy/right{ health = 5000; @@ -24743,20 +25012,52 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"prg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +"pqI" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pri" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"prT" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +"prk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"prp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"prH" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"prY" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"psh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"psi" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "psl" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -24765,12 +25066,9 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"psH" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +"psv" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) "psV" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -24780,116 +25078,113 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"psY" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/deep/minehead) -"ptI" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ptz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "ptT" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/hive) -"put" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"puG" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"puH" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"pvb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"ptZ" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"pvw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"pug" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"puL" = ( +/obj/structure/machinery/washing_machine, +/obj/item/facepaint/skull, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pvh" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "pvA" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"pvQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/shed_five_caves) -"pwD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, +"pvC" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"pvE" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"pwa" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"pwl" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"pwS" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"pwI" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"pwR" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "pwW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"pwZ" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"pxI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"pxZ" = ( -/obj/item/clipboard, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"pyg" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 +"pxa" = ( +/obj/structure/closet/bombcloset, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"pyy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"pxm" = ( +/obj/effect/spawner/random/supply_kit, +/obj/structure/surface/rack{ + layer = 2.5 }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"pxo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"pya" = ( +/turf/open/floor/almayer/test_floor5, /area/strata/ug/interior/jungle/deep/structures/res) -"pyK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"pyZ" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"pyx" = ( +/obj/item/stack/snow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) "pzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -24897,85 +25192,65 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"pzc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"pzu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"pzE" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"pzX" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"pzH" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"pzZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pAc" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior) -"pAo" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"pBe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) -"pBB" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"pCd" = ( +"pBw" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/item/storage/box/pizza, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) -"pCy" = ( +"pBM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"pBN" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"pCS" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pCe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"pCO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"pCP" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"pDo" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"pDi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "pDz" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"pDX" = ( -/obj/structure/machinery/processor, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +"pDC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/static_comms/net_two, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) "pDY" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 @@ -24986,80 +25261,64 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"pEh" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"pEl" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pEm" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"pEp" = ( +"pEI" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"pEw" = ( -/obj/item/stack/medical/splint, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/obj/item/device/radio, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "pEM" = ( /obj/structure/barricade/wooden, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"pFm" = ( -/obj/structure/machinery/light/small{ +"pEP" = ( +/obj/structure/sink{ dir = 1; - pixel_y = 20 + pixel_y = -10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"pFt" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"pFV" = ( +/obj/structure/machinery/shower{ + dir = 1 }, /obj/structure/window/reinforced/tinted{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"pFt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"pFv" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/machinery/door/window/eastright{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"pFP" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"pFT" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"pGg" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "pGt" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"pGx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"pGw" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "pGy" = ( /obj/item/storage/toolbox/syndicate, /obj/structure/surface/rack, @@ -25068,55 +25327,70 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"pGW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"pGZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"pHg" = ( -/obj/structure/barricade/wooden{ +"pGM" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) -"pHm" = ( -/obj/item/stool, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"pGY" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/minehead) +"pHr" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pHz" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) "pHR" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"pHS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "pIa" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) -"pIb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +"pIh" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"pIp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pIy" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"pIB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"pIG" = ( +"pIH" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"pIZ" = ( +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"pJg" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_y = 13 @@ -25131,37 +25405,17 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata/red2, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/tearlake) +"pJo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) -"pIM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, +"pJw" = ( +/obj/effect/decal/cleanable/vomit, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"pIT" = ( -/obj/structure/machinery/holosign/surgery, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"pIV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"pJg" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ug/interior/jungle/deep/minehead) "pJz" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -25171,6 +25425,10 @@ "pJA" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_dorms) +"pKc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "pKq" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -25178,67 +25436,49 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"pKJ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"pLc" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"pLA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/south_engi) -"pLS" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"pMj" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) -"pMk" = ( +"pKD" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"pKF" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"pMq" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"pKS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"pMs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/area/strata/ag/interior/outpost/security) +"pKV" = ( +/obj/item/storage/secure/briefcase, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"pLr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"pNc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"pLA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/south_engi) +"pNm" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"pNo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "pNL" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -25246,15 +25486,42 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"pNQ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "pNT" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"pOA" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1 +"pOh" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"pOp" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pOx" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"pOG" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"pOL" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"pOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "pPi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -25264,27 +25531,90 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"pPo" = ( -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"pQC" = ( -/turf/open/asphalt/cement/cement14, +"pPs" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) +"pPG" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) +"pPI" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"pPO" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"pPR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"pQA" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"pQC" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "pQH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east/scrub) +"pQP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"pRh" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) "pRj" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) +"pRl" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "pRp" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"pRA" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"pRz" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"pRC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "pSm" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -25297,47 +25627,39 @@ "pSw" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/east_carp) -"pSB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"pST" = ( -/obj/structure/machinery/power/apc/power/north, +"pTr" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"pTt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/area/strata/ug/interior/jungle/deep/structures/engi) +"pTP" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"pTR" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"pTY" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"pUa" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"pUp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"pUz" = ( +/obj/structure/bed/nest, /obj/structure/platform/strata/metal{ - dir = 4 + dir = 1 }, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) -"pUb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/dorms/hive) "pUB" = ( /obj/structure/bed{ icon_state = "abed" @@ -25352,38 +25674,25 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"pUF" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +"pVv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"pVP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"pUG" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"pUN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"pUR" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/folder/red, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 +"pWf" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"pWb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) "pWp" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -25394,139 +25703,134 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"pWF" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"pWI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan4/north, -/area/strata/ag/interior/outpost/med) -"pXi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"pWr" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"pYk" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"pWL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"pWY" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"pYL" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pXw" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"pXN" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"pYb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"pYt" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "pYM" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"pYT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"pZb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) "pZe" = ( /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pZo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"pZv" = ( -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"pZw" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +"pZi" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "pZS" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pZW" = ( -/obj/structure/lamarr, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"qaa" = ( -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"qab" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"qau" = ( -/obj/item/device/aicard, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"qbc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"qbq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 +"pZY" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/item/toy/deck, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qby" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"qaq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"qbb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qbf" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"qbw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "qbA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qbG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +"qbN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "qbR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"qcf" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +"qcv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "qcB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"qcD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qcF" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "qcO" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -25539,50 +25843,17 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"qcW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"qdt" = ( +"qde" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"qdq" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"qdA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"qdG" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qdI" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"qdW" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"qes" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"qey" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"qeA" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"qdC" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/east_dorms) "qeH" = ( @@ -25591,16 +25862,10 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"qfd" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"qfh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) +"qeX" = ( +/obj/item/tool/crowbar, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "qfi" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -25609,264 +25874,301 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/crash) -"qfl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) +"qfB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "qfC" = ( /turf/open/floor/strata, /area/strata/ag/interior/tcomms) "qfJ" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "qfN" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qfV" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"qgi" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"qgy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"qgU" = ( -/obj/item/storage/pill_bottle/russianRed, -/obj/item/storage/pill_bottle/russianRed, -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline, -/obj/item/storage/box/gloves, -/obj/structure/machinery/camera/autoname{ - dir = 8 +"qhk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"qgX" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/kitchenspike, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"qhc" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "qhp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"qhv" = ( +"qhz" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"qhD" = ( +/obj/item/clothing/glasses/thermal/syndi, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"qhY" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"qhQ" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"qid" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/nearlz1) +"qiy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"qif" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"qjd" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"qiH" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) -"qje" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"qjs" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/structure/machinery/camera/autoname{ - dir = 8 +"qjj" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"qkv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"qkI" = ( -/obj/item/storage/belt/security, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"qkX" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/radiation, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"qld" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qky" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"qkA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"qlf" = ( -/obj/item/fuel_cell, +/area/strata/ag/exterior/research_decks) +"qkB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qkH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"qlv" = ( /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 8 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"qlk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"qlp" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"qlu" = ( -/obj/structure/machinery/camera/autoname{ +/area/strata/ag/interior/outpost/admin) +"qlM" = ( +/obj/structure/toilet{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"qlC" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/interior/landingzone_1) +/obj/item/stack/medical/bruise_pack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "qmw" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) -"qnk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"qmD" = ( +/obj/structure/closet/wardrobe/suit, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"qnm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"qmF" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"qmH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qmJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"qmZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qne" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"qng" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"qoe" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/strata/blue1, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qnp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"qnt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "qot" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"qox" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"qoV" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"qoU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"qpK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"qpi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"qpq" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"qqX" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"qrb" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"qrn" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"qru" = ( -/obj/structure/machinery/computer/cameras, +"qpQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"qqr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qqz" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qqF" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qrb" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/item/storage/box/attachments, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) -"qrH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"qrK" = ( -/obj/structure/bed{ - icon_state = "abed" +"qrm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/item/storage/photo_album, -/obj/structure/machinery/door/window/eastright{ - dir = 2 +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qrF" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"qsn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"qsB" = ( -/obj/structure/computerframe, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"qsU" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qsX" = ( +/obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"qsF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"qsJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"qtd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"qtl" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "qtm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "qtn" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -25879,109 +26181,59 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"qtE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"qub" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"quA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"quJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"quO" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"qvb" = ( -/obj/structure/machinery/shower{ - dir = 1 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"quR" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"qvg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"qvn" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "qvy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"qvz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"qvA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qvG" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"qvP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"qvV" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"qvW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qwg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"qwH" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) +"qwt" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "qwM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/flight_control) +"qwX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qxb" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "qxi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /mob/living/simple_animal/hostile/carp{ @@ -25994,6 +26246,15 @@ "qxr" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/tearlake) +"qxs" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"qxC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "qxD" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -26002,289 +26263,304 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"qyk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" +"qyv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"qzn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"qyx" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"qzx" = ( -/obj/structure/machinery/reagentgrinder, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"qzz" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/vents/pump{ +/obj/item/storage/box/bodybags, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/structure/window/reinforced/tinted, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qzF" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "qzH" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qzZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"qAa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"qAn" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) -"qzP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"qAm" = ( +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh) +/area/strata/ag/exterior/marsh/river) +"qAt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"qAA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qAD" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"qBa" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "qBd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"qBv" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"qBz" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +"qBy" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"qBH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"qBS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/red2, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"qBW" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/minehead) -"qCM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, +"qCJ" = ( /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"qDc" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/area/strata/ag/interior/outpost/admin) "qDg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"qDj" = ( -/obj/structure/machinery/light/small, +"qDP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"qDr" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 +"qEv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"qDW" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"qEy" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"qEf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"qEr" = ( -/obj/structure/window/reinforced/tinted{ +/area/strata/ag/interior/outpost/engi) +"qFh" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"qEK" = ( -/obj/item/stack/sandbags, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"qFk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"qFp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"qFr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"qFD" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qFF" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"qFI" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"qFV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"qGg" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"qGI" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"qGh" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"qHd" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"qHo" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) -"qHt" = ( -/mob/living/simple_animal/hostile/carp{ - desc = "You think this might be Glubs's son." - }, -/turf/open/gm/dirt, -/area/strata/ug/exterior/jungle/deep/carplake_center) -"qHC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"qIn" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"qHl" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"qHo" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"qIA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outpost/gen/bball/nest) +"qHC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"qHR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"qIG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"qIn" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"qIL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qIp" = ( +/obj/structure/surface/rack, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"qIy" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qIU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"qIB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"qII" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qIK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/closet/bodybag/tarp, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"qIO" = ( +/obj/item/poster, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qIP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"qJd" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "qJp" = ( -/obj/structure/closet/coffin, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"qJq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "qJC" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"qJV" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) +"qJF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"qJG" = ( +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) +"qJU" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qJX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"qKg" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"qKq" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "qKx" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) -"qLi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"qLr" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, +"qKG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"qLz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"qLE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"qKW" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"qLF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"qMB" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"qMD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "qMF" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, @@ -26295,133 +26571,129 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qMK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"qMO" = ( +"qMM" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qMW" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"qNs" = ( +/obj/structure/machinery/colony_floodlight, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"qNb" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"qNc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"qNh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"qNo" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"qND" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"qOb" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/closet/bodybag/tarp, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/area/strata/ag/exterior/research_decks) "qOt" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qOz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"qPc" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/storage/pill_bottle/antitox/skillless, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"qPm" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light/small{ +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"qPL" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_carp) +"qPS" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "qQq" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qQQ" = ( +"qQX" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"qQW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"qRc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"qRk" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"qRu" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"qRe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) -"qRx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"qSj" = ( -/obj/structure/bed/chair{ +/area/strata/ag/interior/outpost/engi/drome) +"qRL" = ( +/obj/item/stack/sheet/wood, +/obj/structure/closet/crate/internals, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qRN" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"qSb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"qSi" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"qSl" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "qSo" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" }, /area/strata/ag/exterior/marsh/crash) +"qSF" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"qSJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/canteen) +"qSQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "qTk" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -26444,6 +26716,13 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/research_decks) +"qTE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "qTF" = ( /obj/structure/bed{ icon_state = "abed" @@ -26454,96 +26733,76 @@ /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) "qUa" = ( -/obj/item/tool/pen/blue, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"qUb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; - pixel_y = 20 + name = "\improper Airlock" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"qUi" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qUn" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "qUB" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"qUD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "qUQ" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"qVl" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qVH" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qVY" = ( +"qVa" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata/floor3/east, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) -"qWs" = ( +"qVf" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qVn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) "qWD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/restricted) -"qWO" = ( -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"qWP" = ( -/obj/structure/surface/rack, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/shovel/etool/folded, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) -"qWT" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qWU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"qXa" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"qXe" = ( -/obj/structure/toilet{ +"qWY" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"qXA" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) "qXN" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -26551,29 +26810,26 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"qXU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +"qXS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) -"qYi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "qYm" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qYs" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) +"qYo" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"qYz" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/med) "qYF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -26581,114 +26837,112 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"qYJ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/emcloset, -/turf/open/floor/strata, -/area/strata/ag/interior/tcomms) "qYZ" = ( /obj/item/weapon/gun/rifle/type71/carbine, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qZb" = ( -/obj/structure/fence, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) "qZk" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"qZp" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/bed, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qZv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "qZL" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"qZO" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qZZ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"rai" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"ran" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/tcomms) "ras" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) "rat" = ( -/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"rbd" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"rbh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"raI" = ( -/obj/structure/inflatable, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"raP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/stack/medical/bruise_pack, -/obj/item/device/radio, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"rbe" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "rbi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"rbo" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"rbt" = ( +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) "rbO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"rbW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"rbZ" = ( -/obj/structure/pipes/vents/pump{ +"rbR" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"rcj" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"rcH" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"rcP" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) "rdm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"rdt" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) "reb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -26699,6 +26953,24 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"ref" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"reh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"rej" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "rel" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -26707,26 +26979,56 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"reu" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"rev" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"rey" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"rfP" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +"res" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ret" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"reD" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"rfj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"rfv" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"rfw" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, +/obj/item/bedsheet/medical, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"rge" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "rgj" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/surface/rack, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ug/interior/jungle/deep/structures/res) +"rgk" = ( +/obj/item/clipboard, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "rgH" = ( /obj/structure/barricade/snow{ dir = 8 @@ -26734,75 +27036,40 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) -"rgZ" = ( +"rgR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"rhd" = ( -/obj/item/clipboard, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"rho" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"rgT" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"rhv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"rhA" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/area/strata/ag/interior/outpost/engi/drome) +"ria" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"rhM" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"rhS" = ( +"rip" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"riw" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/item/fuel_cell, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) -"riA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"riB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) "riM" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -26817,6 +27084,18 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"riQ" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; + icon = 'icons/obj/structures/props/misc.dmi'; + icon_state = "jukebox"; + name = "Rockin Robin 2300 Jukebox"; + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "riY" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -26830,248 +27109,214 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"rju" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"rjm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "rjG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"rjM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +"rky" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"rkF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"rjN" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"rkN" = ( /obj/structure/bedsheetbin, +/obj/item/device/binoculars/range, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"rkw" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"rld" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"rlC" = ( -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"rlE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/purp2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"rkV" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) "rlR" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"rmk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"rmp" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"rmr" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rlW" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, /obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"rmi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rmU" = ( +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"rmQ" = ( -/obj/structure/barricade/handrail/strata, +/area/strata/ag/interior/tcomms) +"rnl" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"rnA" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"rmY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"rnr" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"rnO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/dorms) +"rnN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"rod" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"roc" = ( +/obj/item/storage/belt/security, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "rok" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"rol" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"rov" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"roz" = ( +/obj/item/storage/pill_bottle/bicaridine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"roB" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) -"rox" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "roI" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"roN" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"roS" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"rpk" = ( -/obj/structure/machinery/smartfridge/drinks, -/turf/open/floor/strata/orange_tile, +"roQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"roY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) -"rpZ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"rps" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"rpG" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rqy" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rqd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rqx" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"rqA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"rqH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rqJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) "rqL" = ( /obj/item/tool/wrench, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"rqQ" = ( +/obj/structure/lamarr, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "rrj" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"rrs" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"rrt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"rrw" = ( -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"rrA" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) +"rrk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "rrV" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"rrX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) "rsb" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "rsm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"rsp" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"rsK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"rsJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rti" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rtr" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"rtA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"rtG" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata/white_cyan3/north, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"rtU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"rsS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "rtW" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) @@ -27080,81 +27325,95 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/greengrid, /area/strata/ag/interior/disposals) -"ruc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"ruf" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ruj" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ruv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"rup" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"ruI" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "ruM" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/south_engi) "ruS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"ruW" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"rvn" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"rvb" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"rvl" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rvu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "rvD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"rwc" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/device/encryptionkey/dutch, -/obj/item/dogtag, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"rwi" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor3/east, +"rvE" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"rwl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"rwL" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"rwR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) +"rwY" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rxb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rxg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "rxp" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"rxs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"rxK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "rxL" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -27167,17 +27426,6 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/nearlz2) -"rxU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"rxV" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) "ryf" = ( /obj/structure/platform_decoration/strata/metal, /obj/effect/decal/strata_decals/catwalk/prison, @@ -27186,73 +27434,35 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"ryp" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/med1) "ryA" = ( /obj/structure/inflatable, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"ryE" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"ryF" = ( -/obj/structure/machinery/light/small{ +"ryC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"ryI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"rzl" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"ryJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"rzE" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/strata, -/area/strata/ag/interior/landingzone_checkpoint) -"rAc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"rAd" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"rAl" = ( -/obj/structure/bed/chair/office/light{ +"rzR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"rAc" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "rAv" = ( /obj/structure/platform/strata{ dir = 4 @@ -27260,54 +27470,87 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) "rAR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/monkeyburger, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"rAV" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/meat, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"rBU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"rCP" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/interior/outpost/med) +"rBh" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"rBl" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"rCS" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"rDA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"rEb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"rBA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rBW" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"rCF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"rCI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/deep/minehead) "rEr" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"rFi" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"rEG" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rEL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rET" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"rFe" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"rFg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 }, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "rFn" = ( /turf/closed/shuttle/ert{ @@ -27315,12 +27558,6 @@ opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"rFI" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "rFZ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -27329,100 +27566,45 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) "rGa" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "rGp" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"rGq" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"rHr" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"rHJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"rHN" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +"rHE" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/strata/ag/exterior/paths/dorms_quad) "rHX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"rId" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"rIK" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"rIM" = ( -/turf/open/gm/coast/south, -/area/strata/ug/interior/jungle/deep/north_carp) -"rJp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"rJN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, +"rHZ" = ( +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"rKn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"rKs" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"rIF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"rKG" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/outpost/gen/bball/nest) -"rKL" = ( -/obj/structure/barricade/handrail/strata, +"rIG" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"rLa" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"rLi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/maintenance) -"rLv" = ( +"rIM" = ( +/turf/open/gm/coast/south, +/area/strata/ug/interior/jungle/deep/north_carp) +"rJY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pspoon, /obj/item/trash/plate{ @@ -27432,11 +27614,43 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) +"rKr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rKG" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/outpost/gen/bball/nest) +"rKM" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"rKY" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"rLs" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"rLy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "rLJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"rLO" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 5 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"rMj" = ( +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "rMv" = ( /turf/closed/shuttle/ert{ @@ -27444,314 +27658,483 @@ opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"rMT" = ( -/obj/structure/bed{ - icon_state = "abed" +"rMH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"rNj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"rNo" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"rNB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) "rNI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"rNM" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "rNO" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/barricade/handrail/strata, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"rNS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"rOi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rOy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/omelette, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "rOB" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/vanyard) +"rOM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rON" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"rPk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"rPp" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/nearlz1) "rPA" = ( /obj/structure/platform/strata/metal, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"rPK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rPP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"rQe" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"rQx" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"rPN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"rQc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"rQE" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) -"rQP" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, +"rQh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"rQl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"rQI" = ( +/obj/structure/machinery/reagentgrinder/industrial, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "rQX" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"rRf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "rRl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"rRm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"rRR" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) +"rRv" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "rRU" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rRW" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"rRX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) "rSl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"rUl" = ( -/obj/structure/machinery/door/airlock/prison{ +"rSr" = ( +/obj/structure/machinery/light/small{ dir = 1; - name = "Reinforced Airlock" + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rSK" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"rTt" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"rTE" = ( +/obj/item/stack/catwalk, +/obj/item/tool/wrench, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"rTK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"rTN" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"rUG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"rVb" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"rVd" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"rVi" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"rVd" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"rVp" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rVv" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"rVs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"rWb" = ( +"rVJ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"rVM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/toy/deck, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"rVU" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"rWj" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"rWd" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"rWy" = ( -/obj/structure/closet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"rWS" = ( +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/item/clothing/suit/storage/hazardvest, /obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" + layer = 3 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/effect/landmark/wo_supplies/storage/m56d, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"rWB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"rXu" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"rWM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"rXm" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "rXy" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"rXI" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"rYD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"rXY" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"rZq" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"rYo" = ( +/obj/structure/morgue{ + dir = 8 }, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rZa" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"sah" = ( -/obj/item/weapon/gun/pistol/t73, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_engi) -"san" = ( +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"rZl" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" +/obj/structure/toilet{ + dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) -"sat" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 +"rZm" = ( +/obj/structure/toilet{ + dir = 8 }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) -"sax" = ( -/obj/structure/surface/rack, +"rZq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"rZv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) +"rZy" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"rZE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"sag" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"sah" = ( +/obj/item/weapon/gun/pistol/t73, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_engi) +"sai" = ( +/obj/structure/machinery/light/small, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"saO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"sax" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "saY" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/tearlake) -"saZ" = ( -/obj/structure/bed/chair/comfy{ +"sbm" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"sbN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, +/obj/item/storage/fancy/vials, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"sbp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"sbt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ug/interior/jungle/deep/structures/engi) "sbW" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"scR" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"sdW" = ( -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome) -"sdX" = ( +"scd" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"sdZ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"sci" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/area/strata/ag/interior/outpost/gen/bball) +"scT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"scW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"sdt" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/restricted/devroom) +"sdX" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "seb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"sez" = ( -/obj/item/fuel_cell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"seE" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"see" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"seo" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"sep" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"seq" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"sfa" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"sex" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ - dir = 4 + dir = 8 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"sfn" = ( -/obj/structure/bed/chair/office/dark{ +/area/strata/ug/interior/jungle/deep/structures/res) +"seK" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"sfH" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"sfO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"sgm" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/asphalt/cement/cement1, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) +"sfi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"sge" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sgf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "sgq" = ( /obj/structure/bed{ icon_state = "abed" @@ -27762,76 +28145,121 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"sgs" = ( -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/turf/open/floor/plating/warnplate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"sgz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "sgG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"sgN" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) +"sgU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) "sha" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/paths/southresearch) +"shf" = ( +/obj/structure/closet/emcloset, +/obj/item/coin/marine/engineer, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"shk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/landingzone_checkpoint) "shp" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"shO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"shq" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"siw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/orange_edge/east, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) -"sij" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"siA" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"sjN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, +"sjh" = ( +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/surface/rack{ + layer = 2.5 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"sjS" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/strata/ag/interior/tcomms) +"sjw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"sjx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"sjX" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "ski" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical, /obj/item/device/flashlight, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"skr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light/small{ +"skW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"slc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"sli" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 1; - pixel_y = 20 + icon_state = "commb" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"slc" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/structure/window/reinforced/tinted, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"slp" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) "sly" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -27839,37 +28267,75 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"slz" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"slG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"slV" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "smd" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"smu" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"smD" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"smE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "smG" = ( /obj/structure/largecrate/random, /obj/item/toy/deck, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"smK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"sns" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"snK" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"snR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/marsh) -"snG" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/secure/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"snT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/canteen) "snV" = ( /turf/closed/wall/strata_outpost/reinforced, @@ -27881,158 +28347,145 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"sor" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"soM" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/small, -/obj/structure/platform/strata/metal{ - dir = 4 - }, +"sow" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"spc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/area/strata/ag/interior/outpost/engi/drome) +"soI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/shed_five_caves) "spp" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"sps" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 8 +"sqg" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"sqt" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"sqK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"sqd" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"sqF" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/obj/item/weapon/harpoon, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "sqT" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/crash) -"srh" = ( -/obj/structure/closet/lasertag/red, +"srf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"srg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/interior/outpost/engi) "srk" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east/scrub) -"srs" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/clothing/suit/xenos, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"srw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"srO" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"ssc" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"srm" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"srv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"ssd" = ( -/turf/open/gm/coast/east, -/area/strata/ug/interior/jungle/deep/east_dorms) -"ssm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) -"ssy" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"ssH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"ssd" = ( +/turf/open/gm/coast/east, +/area/strata/ug/interior/jungle/deep/east_dorms) +"stb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "stf" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_carp) +"stx" = ( +/obj/structure/surface/rack, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/weldingtool, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"stE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/carrotfries, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "stF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"suq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, +"stZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"suI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) -"svf" = ( -/obj/structure/surface/rack, -/obj/item/paper_bin, -/obj/item/stack/sheet/glass, -/obj/structure/machinery/light/small{ +"suP" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"swg" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) +"suZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"svh" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"svr" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) -"swB" = ( -/obj/structure/machinery/reagentgrinder/industrial, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"swD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, +"svC" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"swL" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"swV" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +"svX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "sxr" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -28040,36 +28493,33 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"sxI" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"sxu" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"sxP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) -"sxR" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"sxS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/southresearch) "sxT" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"syB" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"syT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) +"syb" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) "syU" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -28082,101 +28532,65 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi) -"szn" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) -"szw" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"sAt" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"sAv" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"sAE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 +"szo" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"sAQ" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"sBa" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome) -"sBo" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"sBv" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"sBy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"sBC" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"szD" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/handcuffs, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"szY" = ( +/obj/structure/machinery/space_heater, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"sBH" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"sCm" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"sAq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/jellysandwich, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"sAv" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"sAX" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/strata/ag/exterior/paths/dorms_quad) -"sCE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sBp" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sBu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"sDP" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"sEg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"sDA" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"sDK" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/rods, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"sEa" = ( -/obj/item/tool/pen/blue, -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "sEG" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -28187,32 +28601,50 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"sEM" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "sEV" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"sEZ" = ( -/obj/structure/bed{ - icon_state = "abed" +"sEW" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"sFA" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"sFb" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"sFm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"sGd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/strata/orange_tile, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sFv" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) -"sGg" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) +"sFx" = ( +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"sGx" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"sGz" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "sGJ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -28220,274 +28652,294 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"sHk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"sHG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"sHi" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/barricade/handrail/strata{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"sHI" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "sHP" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"sIK" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"sJc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sIg" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"sIs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "sJd" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"sJr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"sJt" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"sJp" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 8 +/obj/item/storage/fancy/vials, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"sJx" = ( +/obj/item/clothing/gloves/white, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sJW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "sKg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_carp) -"sKk" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ +"sKj" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"sKy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"sKB" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"sKE" = ( +/obj/item/storage/box/cups, +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"sKt" = ( +/obj/item/book/manual/surgery, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"sKH" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"sKM" = ( -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "sKN" = ( -/obj/item/tool/kitchen/rollingpin, -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "sKX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"sLa" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/paths/north_outpost) -"sLw" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"sLQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"sLT" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"sLC" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"sMh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "sMj" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"sMr" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"sNc" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, +"sMy" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"sMD" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"sNF" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"sNG" = ( -/obj/structure/bed/chair{ +/area/strata/ag/exterior/paths/adminext) +"sMR" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sNr" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sNI" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"sNL" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"sNV" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"sOn" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) -"sOH" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"sOa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"sOK" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"sOO" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"sOu" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"sOU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "sPc" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/tcomms) -"sPm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"sPe" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"sPt" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) "sPF" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/platform/east/scrub) -"sQr" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"sPQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"sRe" = ( -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/surface/rack, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"sRB" = ( +/area/strata/ag/exterior/research_decks) +"sPR" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"sQx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sQG" = ( /obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"sRg" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/obj/item/restraint/handcuffs, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"sRk" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sRs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"sRu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "sRR" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"sRS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"sRV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"sSX" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 +"sSK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"sTd" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"sSY" = ( -/turf/open/floor/prison/floor_plate, +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) -"sTC" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"sTP" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"sTj" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"sTq" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sTE" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"sUL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/southresearch) -"sUW" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"sWb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"sWn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/floor3, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"sWX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) -"sWz" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"sWL" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/tcomms/tcomms_deck) "sXt" = ( /obj/structure/bed/chair{ dir = 8 @@ -28497,9 +28949,6 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"sXB" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) "sXF" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -28511,6 +28960,13 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"sXI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "sXU" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -28521,343 +28977,299 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"sYn" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"sYv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/foyer) -"sYN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"sZg" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"sZn" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/upp, +"sYk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"sZN" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/area/strata/ag/interior/outpost/canteen) +"sYI" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/exterior/research_decks) -"tao" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"sYX" = ( +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"tat" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"taR" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"taU" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"tby" = ( -/obj/structure/bed/chair{ +"taa" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/floor2, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) -"tcb" = ( -/obj/structure/filingcabinet{ - layer = 2.9 +"tad" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"tcT" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"tdj" = ( -/obj/structure/largecrate/random/barrel/white, +/area/strata/ag/interior/dorms) +"tam" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) -"tdW" = ( -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"tec" = ( -/obj/structure/machinery/computer/crew, +/area/strata/ag/exterior/research_decks) +"tan" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"taR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/storage/box/cups, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"teh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"taY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"tbG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"teq" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"teF" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"teI" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 4 +"tbT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"teJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"teX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"tfd" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) -"tfh" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"tbU" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"tcg" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"tcm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"tdg" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) -"tfq" = ( -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"tft" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, +"tdh" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/tank/anesthetic, /turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"tdj" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) +"tdO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"tdR" = ( +/obj/item/stack/snow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) +"teH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"teI" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"teY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/toy/deck, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"tfc" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) "tfM" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/shed_five_caves) -"tfW" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) +"tge" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"tgv" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "tgC" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"tgG" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"tgM" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "thc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"thj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"thu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) "thz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/item/weapon/gun/pistol/t73, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"thC" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"thE" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"thI" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) -"tid" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "tix" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"tiC" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"tiK" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"tiR" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"tiT" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"tiX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"tiM" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/admin) +"tjc" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "tjo" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"tjz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"tjA" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"tjW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"tjZ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/canteen) -"tke" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"tjs" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"tki" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/obj/item/dogtag, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"tjw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"tjM" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"tkg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "tkq" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"tkt" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 +"tkr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"tkF" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"tkx" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"tlh" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/mass_spectrometer, -/obj/item/prop/matter_decompiler, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"tkA" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"tkF" = ( -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/dorms/hive) -"tld" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"tlP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, +"tlv" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"tlZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "tmi" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"tmD" = ( +"tmj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"tmr" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"tmT" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"tnu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"toi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/white_cyan4/north, +/area/strata/ag/interior/outpost/med) +"top" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_y = 13 @@ -28874,112 +29286,26 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/exterior/jungle/deep/carplake_center) -"tni" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"tnU" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"tnW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"toc" = ( -/obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"tof" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/shed_five_caves) -"toD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"toH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"toN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"toO" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "toV" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/tearlake) -"toY" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"tpd" = ( +"tpm" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"tpj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"tpD" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"tpI" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 + dir = 4 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"tqb" = ( -/obj/structure/filingcabinet, +"tpw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"tpY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"tqs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 + dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"tqC" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "tqG" = ( /turf/open/floor/strata, @@ -28988,10 +29314,17 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"tqZ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) +"tqO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"trk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "tru" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -29014,42 +29347,40 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"trN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"trK" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"tsQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"tsC" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"tsS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "tsX" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ttw" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"ttE" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"ttN" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"ttk" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata, +/area/strata/ag/interior/landingzone_checkpoint) "ttQ" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) -"tub" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) "tuj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -29060,6 +29391,15 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) +"tuP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"tuR" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/kitchenspike, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "tvk" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -29067,62 +29407,40 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"tvw" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"tvy" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tvA" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" +"tvp" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/obj/item/storage/photo_album, +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"tvL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"tvu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "twa" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"twM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/lightreplacer, +"twg" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"twT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"txi" = ( +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) -"twW" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) "txs" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"txO" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"txW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, +"tyb" = ( +/obj/item/stack/sandbags, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "tyD" = ( @@ -29134,96 +29452,64 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"tyO" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"tzl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"tzA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"tzF" = ( -/obj/structure/bed/nest, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"tzI" = ( -/obj/structure/bookcase, +"tzb" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"tzM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +/area/strata/ag/interior/tcomms) +"tzE" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"tAC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/area/strata/ug/interior/jungle/deep/structures/res) +"tzG" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"tAy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"tAO" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"tBd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "tBn" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tBv" = ( -/obj/item/fuel_cell, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"tBB" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"tBE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"tBV" = ( -/obj/structure/bed/nest, -/obj/structure/platform/strata/metal{ - dir = 1 +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"tBR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"tBZ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "tCi" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/center) -"tCG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) +"tCn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"tCq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"tCA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "tCM" = ( /obj/structure/bed/roller, /turf/open/auto_turf/ice/layer1, @@ -29236,87 +29522,156 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) +"tDI" = ( +/obj/structure/dispenser, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"tEp" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"tEr" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "tEC" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/restricted/devroom) -"tEX" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ +"tEQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "tEY" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"tFu" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"tFy" = ( -/obj/structure/window/framed/strata/reinforced, +"tFj" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"tFs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"tFB" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"tFJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/outpost/engi/drome) +"tFu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"tFK" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"tFR" = ( -/obj/structure/platform/strata/metal{ +"tFx" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"tGc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"tGK" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"tGW" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/east_carp) +"tFX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"tGg" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"tHq" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"tGk" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"tGo" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"tGL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"tHh" = ( +/obj/structure/surface/rack, +/obj/item/spacecash/c500, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "tHv" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) +"tHW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"tIc" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"tIf" = ( +/obj/item/cell/high, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) "tIl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/mountain) +"tIn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"tIA" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"tJa" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/small, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "tJp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -29327,14 +29682,16 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"tJt" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "tJv" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"tJH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "tJJ" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -29344,6 +29701,11 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) +"tJO" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) "tJS" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_carp) @@ -29353,42 +29715,15 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"tKe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"tKo" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"tKs" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"tKz" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "tKS" = ( /turf/closed/shuttle/ert{ icon_state = "upp25" }, -/area/strata/ag/exterior/marsh/crash) -"tKU" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cdeathalarm_kit, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"tLj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/area/strata/ag/exterior/marsh/crash) +"tLm" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) "tLs" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -29396,101 +29731,157 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"tLD" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "tLO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"tMO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, +"tMa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"tMp" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"tMB" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "tMP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tNe" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"tNl" = ( -/obj/structure/machinery/vending/snack, +"tNb" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"tNo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "tNr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball/nest) -"tNz" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "tNK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"tNT" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"tOh" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"tOv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"tOF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) -"tOe" = ( -/obj/structure/machinery/space_heater, +"tOJ" = ( +/obj/item/paper_bin, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"tOQ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"tPa" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"tOu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ +/area/strata/ug/interior/jungle/deep/structures/res) +"tPy" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"tPz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/exterior/paths/north_outpost) "tPN" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/west_engi) "tPV" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"tPY" = ( -/obj/structure/machinery/vending/snack, +/obj/structure/largecrate/random/case/double, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ag/interior/dorms/south) +"tQd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "tQg" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/southresearch) -"tQu" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +"tQz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"tQW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"tRg" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "tRj" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"tRz" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"tRG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) -"tRL" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "tSb" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, @@ -29531,53 +29922,61 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"tSM" = ( +"tSz" = ( +/obj/structure/machinery/computer/guestpass, /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp{ - pixel_x = -4; - pixel_y = 14 +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"tSE" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"tSZ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) +"tSK" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"tSP" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"tSS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "tTk" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"tTv" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"tTx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"tTR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, +"tTD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"tTQ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/radiation, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tUt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/chawanmushi, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"tTV" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"tTY" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/canteen/bar) "tUu" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -29592,136 +29991,89 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tVd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"tVe" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "tWf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"tWB" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"tWI" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) "tWJ" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"tWO" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) +"tWN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "tWY" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) -"tXz" = ( -/obj/structure/barricade/handrail/strata, +"tXT" = ( /turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tYh" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"tYo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/exterior/tcomms/tcomms_deck) +"tYl" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"tYn" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"tYt" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "tYF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"tYQ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"tYT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"tZf" = ( -/obj/item/stack/rods, -/obj/structure/pipes/vents/pump/on, +"tYN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tZg" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"tZN" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/area/strata/ag/interior/outpost/engi/drome) +"tZw" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + layer = 2.1 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"tZP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"uap" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"tZQ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uas" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/landingzone_2) "uaH" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"ubd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"ubj" = ( -/obj/structure/inflatable, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"ubk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window{ - pixel_y = 31 - }, -/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 13 - }, -/obj/structure/machinery/door/window{ - pixel_y = 10 - }, -/obj/structure/window{ - dir = 8; - pixel_y = 10 - }, -/obj/structure/window, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"ubt" = ( -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +"ubw" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "ubx" = ( /obj/structure/largecrate/random, /obj/item/paper_bin, @@ -29731,49 +30083,36 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"ubI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "ubN" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) "ubX" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"ubY" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"ucf" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/interior/landingzone_1) "ucD" = ( /obj/structure/inflatable/door, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"udl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"ueg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"uev" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"uew" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/gloves/latex, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ueB" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "ueK" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -29785,53 +30124,65 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"ueL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) "ueP" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"ueQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"ueT" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "ueU" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/med) +"ufy" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "ufG" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ufU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"ufK" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ufR" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"ufY" = ( /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 8 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"ugo" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"ugA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"ugd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"ugq" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) +"ugw" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "ugI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -29839,15 +30190,34 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uhp" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"uhy" = ( -/obj/effect/decal/cleanable/blood, +"ugJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ugQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"ugR" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"uhj" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/clothing/suit/xenos, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) +"uhD" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) "uhF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -29856,21 +30226,59 @@ /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uig" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/machinery/door/window/eastright{ +"uhI" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"uiE" = ( -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"uhN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"uhR" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"uix" = ( +/obj/structure/inflatable/door, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"uiE" = ( +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"uiI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"uiT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"uiW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"uiX" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) +"uja" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"ujk" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "ujl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -29878,58 +30286,64 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ujs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"ujm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"uju" = ( -/obj/structure/bookcase, -/obj/item/book/manual/atmospipes, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"ukd" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) +"ujt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"ujH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "ukx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ukN" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ukR" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ula" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"ukH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"ukI" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/exterior/research_decks) -"ule" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"ulf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/turf/open/floor/strata/orange_cover, +/obj/structure/closet/crate/radiation, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"ulB" = ( -/obj/structure/window/framed/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 +"ulu" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ulC" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"ulJ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "ulL" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -29937,115 +30351,104 @@ /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"ulX" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ +"uno" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/disposals) +"unO" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/west_engi) -"ung" = ( -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) -"unh" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"unR" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"uoD" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"unK" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"unU" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"uok" = ( -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"uoK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uoN" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"upa" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) -"uoF" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"upb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"uoG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/obj/item/storage/pouch/flare/full, +/obj/item/weapon/gun/pistol/t73, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"upd" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"uoL" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "uph" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"upX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uqq" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"uqA" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) +"uqJ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "uqK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"uqR" = ( -/obj/structure/machinery/shower{ +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uqN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"urt" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"ure" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) +"urv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/emcloset, +/turf/open/floor/strata, +/area/strata/ag/interior/tcomms) "urM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, @@ -30058,224 +30461,141 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"urV" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"urX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "usd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) -"use" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/area/strata/ag/interior/outpost/gen/foyer) +"ush" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"usi" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/obj/structure/machinery/power/apc/power/north, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/tatami, +/area/strata/ag/interior/outpost/canteen) "usk" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/obj/structure/bookcase{ + icon_state = "book-5" }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"usH" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"usq" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"usz" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/outpost/med) "usI" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"utH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"utK" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"utU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +"usN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "utV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"uuj" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +"utY" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "uul" = ( /obj/structure/largecrate/guns/russian, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"uum" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "uux" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) -"uuK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +"uuV" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"uvj" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "uvw" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"uvE" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"uvH" = ( -/obj/structure/barricade/handrail/strata{ +"uvV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"uvW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"uvX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "uvZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/blocker/invisible_wall, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"uwt" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"uwu" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"uww" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "uwJ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"uwP" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"uwY" = ( -/obj/structure/platform/strata/metal{ +"uwS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) +"uxe" = ( /obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"uwZ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"uxe" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) "uxf" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uxg" = ( -/obj/structure/closet/emcloset, -/obj/item/coin/marine/engineer, +"uyP" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"uys" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) -"uyA" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) -"uyK" = ( -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"uyT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "uzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"uze" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +"uzf" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "uzv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -30286,93 +30606,92 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"uzL" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"uAg" = ( -/obj/item/reagent_container/glass/bucket/janibucket, +"uAh" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"uAl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"uAu" = ( +/obj/structure/closet/crate, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"uAi" = ( +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"uAx" = ( /obj/structure/barricade/handrail/strata{ - dir = 8 + dir = 4 }, -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, /area/strata/ag/interior/outpost/engi) -"uAl" = ( -/obj/item/stack/catwalk, -/obj/item/tool/wrench, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"uAm" = ( +"uAR" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"uAM" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"uBa" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/obj/structure/platform/strata/metal{ +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"uBO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"uAZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"uBa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"uBg" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"uBH" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "uCc" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uCd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"uCG" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"uCL" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, +"uCk" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"uCA" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"uDg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"uDt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"uDK" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) -"uDg" = ( -/obj/item/tool/mop, -/obj/structure/janitorialcart, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"uDP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"uDR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "uDU" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -30385,204 +30704,169 @@ /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uDY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"uEc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"uEI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"uEY" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/book/manual/detective, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) -"uFe" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"uFf" = ( -/obj/structure/machinery/light/small{ +"uEr" = ( +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"uFn" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"uGe" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"uGh" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"uGm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) +"uFJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"uHg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uGv" = ( +/obj/structure/bed/nest, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"uHK" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"uGQ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/marsh/crash) +"uHX" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/carpet, +/area/strata/ag/interior/restricted/devroom) +"uIr" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"uIy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"uHQ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"uIT" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"uHX" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/carpet, -/area/strata/ag/interior/restricted/devroom) -"uIX" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"uIW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/outpost/gen/bball/nest) +"uJe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open{ + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "uJn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uJM" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) -"uKf" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"uKh" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "uKj" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uKu" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small{ - dir = 8 +"uKC" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"uLg" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"uKI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"uLy" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "uLK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"uMH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"uMc" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uMO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) "uNi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"uNt" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"uNH" = ( +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"uNS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "uNV" = ( -/obj/structure/closet/lawcloset, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/holostool, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"uOk" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +"uOl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"uOw" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ +/area/strata/ag/interior/tcomms) +"uOn" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uOr" = ( +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"uOA" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/east_carp) -"uOB" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uPw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"uPD" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uOS" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "uPE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -30594,74 +30878,77 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"uQb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"uRk" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"uRy" = ( +"uPX" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"uQp" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"uQt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/strata_decals/grime/grime2, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"uRA" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"uQP" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"uRb" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"uRN" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uRm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/cohiba, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"uRV" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"uRy" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 + dir = 4 }, +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"uSd" = ( /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"uSp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/area/strata/ug/interior/jungle/platform/east/scrub) +"uSx" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"uSA" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "uSR" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"uTa" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"uTd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"uTo" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, +"uSS" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"uST" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uSZ" = ( +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "uTt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -30669,13 +30956,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) -"uTz" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "uTQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -30685,14 +30965,43 @@ /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) "uVa" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"uVS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/item/device/megaphone, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"uVd" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uVN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"uWj" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uWm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "uWG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -30701,74 +31010,52 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"uWH" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"uWV" = ( -/obj/item/book/manual/surgery, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"uWN" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uWS" = ( +/obj/structure/fence, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "uXg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_dorms) -"uXK" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/turf/open/floor/strata/floor3/east, +"uXl" = ( +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) +"uXy" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"uXT" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "uXY" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"uYJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/barricade/snow{ - dir = 8 +"uYD" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"uZv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"vad" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"vah" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"vaw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"vaO" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"vaA" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"vaU" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) "vaW" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer1, @@ -30777,89 +31064,103 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"vbn" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/shower{ - dir = 8 +"vbo" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "vbw" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"vbW" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"vcI" = ( -/obj/structure/platform/strata/metal{ +"vbP" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"vcq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vcz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "vdi" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"vdx" = ( -/obj/item/toy/deck, +"vdk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"vdB" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"vdN" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vdJ" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/item/paper_bin, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"veA" = ( +/obj/structure/machinery/bioprinter, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"ved" = ( -/obj/effect/glowshroom, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"veZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"veI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"veK" = ( -/obj/structure/machinery/disposal, /obj/structure/barricade/handrail/strata{ dir = 1 }, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"vfo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/interior/outpost/engi) +"vfi" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"vfS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"vfn" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"vfK" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "vgb" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -30874,103 +31175,135 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"vgt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +"vgH" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"vgK" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "vgW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"vhc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +"vgX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"vgY" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"vho" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) +"vhu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "vhv" = ( /obj/structure/surface/rack, /obj/item/storage/belt/knifepouch, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"vhF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "vhG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"vhZ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"vid" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"vio" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "vit" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) "viA" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"viV" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"viW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"vjG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vjO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"vkk" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) +"viY" = ( +/obj/structure/inflatable/door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"viZ" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "vkp" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ag/exterior/marsh/crash) -"vkw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"vkt" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cdeathalarm_kit, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "vkL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"vkM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"vkX" = ( /obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"vli" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, +/obj/effect/spawner/random/tool, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/deep/minehead) +"vlf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"vll" = ( +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "vlm" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"vlp" = ( -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +"vlA" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "vlH" = ( /obj/structure/machinery/weather_siren{ pixel_x = 10; @@ -30978,46 +31311,40 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"vmd" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"vmf" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/north_lz_caves) -"vmj" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) -"vmu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +"vlY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"vmF" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"vmV" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"vmZ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"vng" = ( -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"vnc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/interior/landingzone_1) -"vnN" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/turf/open/floor/strata/white_cyan4/north, +/area/strata/ag/interior/outpost/med) +"vns" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"vnJ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "vnV" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31029,19 +31356,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"vnZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"voi" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"vou" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "vox" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -31051,6 +31369,22 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"voC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"voL" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "vpi" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -31058,69 +31392,72 @@ /obj/structure/filingcabinet, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"vqa" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"vqx" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating, -/area/strata/ag/exterior/landingzone_2) -"vqC" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"vpv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/holosign/surgery, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"vpV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"vqL" = ( /obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"vqw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vqx" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating, +/area/strata/ag/exterior/landingzone_2) +"vqJ" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "vqN" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/largecrate/random, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"vqY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"vrY" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"vtb" = ( -/obj/structure/bed/chair{ - dir = 1 +"vrj" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vrr" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"vsc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"vtF" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 +/area/strata/ag/interior/tcomms) +"vsf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"vtJ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"vsT" = ( +/obj/item/reagent_container/food/drinks/shaker, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "vtM" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -31129,18 +31466,17 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) -"vuu" = ( -/obj/structure/inflatable/popped/door, +"vuc" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"vuo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "vuJ" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) -"vuL" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "vvh" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -31153,25 +31489,15 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"vvC" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"vvS" = ( -/obj/structure/prop/turbine_extras/left, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) "vvV" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/camera, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"vwd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +"vwj" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "vwC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -31196,33 +31522,17 @@ "vxd" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"vxq" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"vxt" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"vxT" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"vxU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/item/clothing/glasses/thermal/syndi, -/turf/open/floor/strata/purp1, +"vxz" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"vxQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"vxW" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "vye" = ( /obj/structure/surface/rack{ @@ -31230,99 +31540,55 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"vyp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"vyw" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"vyq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/personal_storage) -"vyA" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/item/tool/crowbar, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"vyJ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/structure/barricade/handrail/strata, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"vyR" = ( -/obj/structure/bed/chair{ +/obj/structure/platform/strata/metal{ dir = 1 }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"vyS" = ( +/obj/item/stack/rods, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"vzn" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"vzF" = ( -/obj/structure/platform/strata/metal{ +/area/strata/ag/interior/outpost/med) +"vzl" = ( +/obj/structure/computerframe, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"vzQ" = ( -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"vAp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"vAx" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"vAg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"vAA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"vAG" = ( -/obj/structure/closet/crate, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"vAT" = ( -/obj/item/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"vAX" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"vAo" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "vBi" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "genericbush_4" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"vBm" = ( -/obj/item/clothing/gloves/white, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"vBp" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"vBq" = ( +"vBn" = ( /obj/structure/fence, -/turf/open/asphalt/cement/cement4, +/obj/structure/fence, +/turf/open/asphalt/cement/cement9, /area/strata/ag/exterior/tcomms/tcomms_deck) "vBs" = ( /obj/structure/stairs/perspective{ @@ -31332,11 +31598,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"vBQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"vBR" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/north, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "vCl" = ( /obj/structure/barricade/handrail/strata{ @@ -31349,12 +31616,6 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"vCz" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) "vCD" = ( /obj/structure/bed/sofa/vert/grey/top, /obj/structure/barricade/handrail/strata{ @@ -31362,46 +31623,34 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"vCS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/knife, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"vDh" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +"vCH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "vDr" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"vDL" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) -"vDW" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"vDy" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"vEc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"vDQ" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"vEh" = ( -/turf/open/floor/strata/floor3/east, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) +"vEb" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "vEp" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) @@ -31410,50 +31659,54 @@ icon_state = "upp1" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"vEx" = ( -/obj/structure/machinery/light/small{ +"vEW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"vEZ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vFc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"vFb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/area/strata/ag/interior/outpost/engi) +"vFh" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"vFX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) -"vFC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +"vGj" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) +"vGl" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "vGx" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"vGC" = ( -/obj/structure/barricade/handrail/strata, +"vGF" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"vGK" = ( /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"vGW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_engi) -"vHt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"vHF" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement, -/area/strata/ag/interior/outpost/gen/foyer) -"vHP" = ( +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vGS" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, @@ -31461,43 +31714,77 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"vIn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"vGW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_engi) +"vGZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/barricade/handrail/strata{ - dir = 4 + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vHe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vHO" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"vHR" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"vIt" = ( -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"vIC" = ( -/obj/structure/machinery/space_heater, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/exterior/research_decks) +"vIb" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"vIu" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vIH" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"vIM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "vIO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vJb" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "vJj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"vJp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) "vJx" = ( /turf/closed/shuttle/ert{ icon_state = "upp3" @@ -31507,92 +31794,120 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"vKn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 +"vJC" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"vJI" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vKz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"vKC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"vKG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"vKT" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vLf" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) +"vLo" = ( +/obj/structure/platform/strata/metal{ + dir = 4 }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) -"vKp" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"vLz" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"vLA" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"vMn" = ( +/obj/structure/dropship_equipment/mg_holder, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"vKW" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/light/small, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"vLa" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +"vNe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"vLt" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vNi" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"vNl" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"vLT" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"vMy" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"vNd" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/interior/outpost/engi/drome) +"vNm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vNv" = ( +/obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"vNo" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"vNL" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"vNN" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"vNV" = ( -/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"vNJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"vNP" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"vOd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"vNW" = ( +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"vOa" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"vOd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/obj/item/storage/box/cups, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/outpost/engi) "vOf" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -31607,45 +31922,22 @@ "vOs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi/drome) -"vOy" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) -"vPf" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) "vPi" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/research_decks/security) -"vPm" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"vPv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/northeast, -/area/strata/ag/interior/outpost/med) -"vPP" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "vPQ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"vPX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata/floor2, +"vPS" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"vPV" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "vPY" = ( /obj/effect/landmark/corpsespawner/upp, @@ -31659,197 +31951,164 @@ icon_state = "upp_rightengine" }, /area/strata/ag/exterior/marsh/crash) -"vRo" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"vRB" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"vRK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"vQy" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"vSh" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/research_decks) -"vSo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) -"vSz" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ +/area/strata/ug/interior/jungle/deep/minehead) +"vQX" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) +"vRm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"vSJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"vRs" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"vSW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"vTd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"vTC" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"vUv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"vTh" = ( -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"vTy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"vTK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"vUr" = ( +/area/strata/ag/interior/dorms/maintenance) +"vUD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, /obj/structure/bed/chair{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"vUL" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vUH" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"vUY" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"vVd" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/bball) -"vVw" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) +/area/strata/ag/exterior/research_decks) "vVK" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"vWh" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/storage/belt/utility/full, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"vWy" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +"vVL" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"vWt" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"vWQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"vWB" = ( -/obj/structure/dropship_equipment/sentry_holder, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"vXr" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"vWZ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) +/area/strata/ag/interior/dorms/hive) "vXt" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"vXE" = ( +"vYd" = ( +/obj/item/stool, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/minehead) -"vXF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"vXK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/canteen/personal_storage) "vYf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"vYB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"vYI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vYK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"vYM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"vYT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vYZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"vYo" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/research_decks) +"vYp" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Chunkeez Diner door" }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"vZa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"vYA" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "vZh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "vZl" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"vZz" = ( -/obj/structure/tunnel/maint_tunnel, +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"vZC" = ( +/area/strata/ag/interior/outpost/gen/bball) +"vZr" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"vZu" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vZC" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"vZQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "vZT" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/south_engi) +"waa" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "wab" = ( /obj/structure/machinery/space_heater, /obj/structure/platform/strata/metal{ @@ -31857,94 +32116,49 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"wag" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/extinguisher, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) -"wan" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"was" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"waQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "waZ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"wbr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"wbG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"wbL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) "wbN" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"wbQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/deep/structures/res) -"wbT" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"wcy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"wcf" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"wcL" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/research_decks) +"wcq" = ( +/obj/structure/xenoautopsy/tank/broken{ + desc = "A broken cryo tank, this must've been where it all began..." + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"wds" = ( /obj/structure/barricade/handrail/strata{ - dir = 8 + dir = 1 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"wcM" = ( +/obj/item/device/megaphone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/minehead) +"wdJ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"wdr" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/obj/item/reagent_container/food/condiment/peppermill, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "wdN" = ( /obj/structure/platform/strata{ dir = 4 @@ -31952,25 +32166,57 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) +"wee" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"wek" = ( +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "wen" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"weo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fishfingers, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"wet" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"weK" = ( +/area/strata/ag/interior/outpost/engi/drome) +"weE" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"wfh" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"weJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"wfo" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"weR" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"weS" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "wfv" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31979,38 +32225,22 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"wfB" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) +"wfC" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "wfE" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"wfP" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"wfW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"wgh" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"wgk" = ( -/obj/item/stack/rods, +"wfN" = ( +/obj/structure/machinery/recharge_station, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"wgu" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"wgA" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) +/area/strata/ag/interior/outpost/admin) +"wga" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "wgB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -32020,25 +32250,30 @@ /obj/item/tank/anesthetic, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"wgY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"whm" = ( -/obj/structure/pipes/vents/pump{ +"wgR" = ( +/obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"whI" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) +/area/strata/ag/interior/dorms/south) +"wgV" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"whw" = ( +/obj/structure/closet/coffin, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"whJ" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) +"wie" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "wij" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -32047,113 +32282,148 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"wiP" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +"wis" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"wiv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"wiy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"wiS" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"wjv" = ( -/obj/structure/flora/grass/ice/brown/snowgrassbb_2, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/center) -"wjN" = ( -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/dorms/south) +"wiI" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"wjP" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"wjX" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) -"wjZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"wkb" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"wiJ" = ( +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wjn" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wjv" = ( +/obj/structure/flora/grass/ice/brown/snowgrassbb_2, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/center) "wkv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"wlo" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ +"wkB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"wkZ" = ( +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"wlj" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"wlF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/deep/structures/res) +"wlS" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/structures/res) +"wmf" = ( +/obj/item/stack/sandbags, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"wlw" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"wmO" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"wlG" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"wlZ" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"wmj" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"wmD" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"wmV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/item/toy/deck, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "wmZ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi) +"wna" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"wnd" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) "wne" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_dorms) +"wnm" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"wnz" = ( +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"wnC" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"woa" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"woc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) "wod" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) "wov" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"woA" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"woO" = ( +/obj/structure/kitchenspike, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "woP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32162,38 +32432,37 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"wpa" = ( -/obj/structure/machinery/light/small{ +"woT" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"wpl" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"wpj" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"wpy" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"wpH" = ( +/obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"wpD" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"wpJ" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"wpJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +"wqe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"wqk" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "wqm" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32202,19 +32471,24 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"wqq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +"wqp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wqN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"wqU" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"wrf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "wrp" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/flight_control) @@ -32222,10 +32496,40 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"wrD" = ( +"wrM" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"wrR" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"wrU" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/maintenance) +/area/strata/ag/interior/dorms/hive) +"wrV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"wsa" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "wsh" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -32233,26 +32537,22 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"wsU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"wsX" = ( -/obj/structure/platform/strata/metal{ +"wsr" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wsF" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"wsK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/item/clothing/glasses/thermal/syndi, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "wto" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 2; @@ -32260,170 +32560,136 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"wtC" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" +"wuz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"wtD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"wuj" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"wuI" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/strata/ug/interior/jungle/deep/east_carp) +"wuQ" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"wuk" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"wvj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"wvo" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"wuz" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"wuI" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/strata/ug/interior/jungle/deep/east_carp) +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "wvt" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) -"wvx" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"wvD" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, +"wvN" = ( /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"wwy" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"wwE" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"wxf" = ( -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/tcomms) +"wwb" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"wxw" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wxM" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"wxS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 +"wwd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"wyx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"wyE" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wwr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"wyO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"wze" = ( -/obj/item/clipboard, +/area/strata/ag/interior/outpost/med) +"wxt" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"wxS" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"wzu" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/good_item, +"wyK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wzm" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"wAA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"wzH" = ( -/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) -"wzJ" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"wzQ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"wAc" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) "wAG" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"wBg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"wAM" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"wAY" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"wBy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"wBC" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"wBh" = ( +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"wBs" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "wBI" = ( /obj/structure/bed{ icon_state = "abed" @@ -32433,46 +32699,95 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"wBO" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/landingzone_checkpoint) +"wBJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"wBX" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "wCb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"wCd" = ( +/obj/item/stack/catwalk, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"wCf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ dir = 1; - name = "\improper Airlock" + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wCk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) -"wCe" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"wCl" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wCt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"wCC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 1 }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"wCn" = ( -/obj/structure/platform_decoration/strata/metal{ +/area/strata/ag/interior/outpost/admin) +"wCF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ dir = 4 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wCH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wCU" = ( /turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"wCW" = ( +/area/strata/ag/interior/research_decks/security) +"wDh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wDw" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"wDj" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) -"wDy" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/handcuffs, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/administration) "wDF" = ( /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, @@ -32482,23 +32797,6 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"wDP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"wDX" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"wEl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) "wEo" = ( /obj/structure/bed{ icon_state = "abed" @@ -32506,63 +32804,50 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"wEq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pouch/flare/full, -/obj/item/weapon/gun/pistol/t73, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"wEr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"wEu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"wEK" = ( -/obj/structure/closet, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"wEP" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"wEE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "wEU" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"wFg" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"wFE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +"wEX" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wFz" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) "wFG" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"wFP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wFX" = ( -/obj/structure/toilet{ - dir = 1 +"wFW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"wFY" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"wGg" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "wGm" = ( /obj/structure/fence, /turf/open/floor/strata, @@ -32570,19 +32855,30 @@ "wGn" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) +"wGo" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/spawner/random/powercell, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "wGp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/crash) -"wGr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "wGx" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/canteen) +"wGK" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "wGS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -32590,240 +32886,205 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"wHb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"wHj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"wHW" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/strata/ug/interior/jungle/deep/east_engi) -"wIO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, -/obj/structure/machinery/light/small{ - dir = 4 +"wHg" = ( +/obj/structure/filingcabinet, +/obj/item/pamphlet/skill/medical, +/turf/open/floor/strata, +/area/strata/ag/interior/administration) +"wHm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"wJc" = ( -/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"wJf" = ( +/area/strata/ag/interior/outpost/med) +"wHQ" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/marsh) -"wJp" = ( -/obj/structure/closet, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"wJr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/interior/outpost/engi) +"wHW" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/strata/ug/interior/jungle/deep/east_engi) +"wHX" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"wIH" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"wIN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"wJz" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"wJK" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"wJW" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 + icon_state = "p_stair_sn_full_cap" }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"wJD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wJG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"wKc" = ( +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wJP" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"wKf" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wKi" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"wKZ" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; - icon = 'icons/obj/structures/props/misc.dmi'; - icon_state = "jukebox"; - name = "Rockin Robin 2300 Jukebox"; - pixel_x = -5; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"wLe" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wKe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"wKl" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wKv" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"wLi" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"wLs" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "wLv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"wLy" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"wLG" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"wMv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"wMw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) +"wMi" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"wMo" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wMs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "wMy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"wMN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"wME" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wMG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wMI" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"wMN" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"wNj" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"wNp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + req_one_access = null }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "wNq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) "wNz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"wNJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"wNY" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"wOe" = ( -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"wOn" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"wOo" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/strata/ag/interior/dorms/canteen) +"wOd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"wOv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"wOH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"wOT" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"wOV" = ( -/obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"wPf" = ( -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"wPg" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wOW" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"wOY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wPk" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "wPp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -32836,21 +33097,25 @@ /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"wPA" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"wQk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +"wPt" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wPw" = ( +/obj/item/stack/rods, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/gen/bball/nest) +"wPH" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"wPZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "wQx" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -32858,132 +33123,118 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"wQF" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"wRj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ +"wQJ" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"wRk" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wQK" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/wo_supplies/storage/m56d, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"wRn" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"wRq" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"wRv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/strata/ag/interior/dorms) +"wQT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"wRF" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"wSi" = ( +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wSA" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"wSE" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/structure/barricade/handrail/strata{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"wRU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"wSm" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/obj/structure/machinery/holosign/surgery, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"wSr" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"wTn" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"wTq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"wTv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"wSD" = ( +"wTG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"wTN" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"wUD" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"wSR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/southwest, -/area/strata/ag/interior/outpost/med) -"wSU" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"wTf" = ( -/obj/structure/platform_decoration/strata/metal{ +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"wUF" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/north_lz_caves) +"wVm" = ( +/obj/structure/machinery/light/small{ dir = 8 }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"wWc" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"wTS" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"wUp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"wVk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cubancarp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"wVO" = ( -/obj/effect/decal/cleanable/blood, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"wWx" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/suit/bluetag, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/outpost/canteen/personal_storage) "wWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"wWZ" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wWX" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "wXb" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, @@ -32991,63 +33242,71 @@ "wXm" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"wXp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, +"wXZ" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wYc" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) -"wYh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"wYi" = ( +"wYr" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) +"wYs" = ( +/obj/structure/surface/rack, +/obj/item/storage/bible/booze, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) "wYx" = ( /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"wYJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"wYK" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) +"wYB" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) "wYL" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"wZx" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"wZz" = ( -/obj/structure/barricade/handrail/strata{ +"wYT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"wZv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) +"wZy" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"wZA" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "wZM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -33055,103 +33314,66 @@ "wZZ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"xag" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"xas" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"xav" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"xaA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"xat" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"xbG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"xbI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +/area/strata/ag/exterior/marsh/river) +"xaT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xbY" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/exterior/research_decks) -"xcs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) -"xdk" = ( +"xbi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"xbw" = ( +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/adminext) +"xbI" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, /obj/structure/platform/strata/metal{ - dir = 4 + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xdo" = ( -/obj/structure/bed/chair, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +/area/strata/ag/interior/outpost/admin) +"xbS" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"xch" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "xdr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) +"xdy" = ( +/obj/structure/machinery/photocopier, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "xdE" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/maintenance) -"xdH" = ( -/obj/item/tool/crowbar, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"xdN" = ( +"xem" = ( +/obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"xdY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "xeq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/orange_cover, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "xes" = ( /obj/structure/platform_decoration/strata{ @@ -33159,89 +33381,65 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"xez" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +"xey" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"xez" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"xeG" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "xeJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"xeR" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, +"xeT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"xeS" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/interior/outpost/security) "xeW" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ +/obj/effect/decal/strata_decals/grime/grime1{ dir = 4 }, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/obj/item/dogtag, -/obj/item/clothing/suit/armor/riot, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"xfp" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"xfi" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"xfr" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/item/storage/pill_bottle/imidazoline, -/obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"xfz" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"xfJ" = ( +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) -"xfY" = ( +"xfR" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"xgi" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) -"xgA" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"xho" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/dorms) +"xgQ" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "xhM" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -33250,84 +33448,89 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"xig" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"xii" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"xih" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) "xio" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xiq" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"xiA" = ( -/obj/structure/barricade/snow, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"xiG" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"xiu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) -"xjp" = ( -/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"xjr" = ( +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/deep/east_dorms) +"xjy" = ( /obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"xjq" = ( -/obj/structure/pipes/vents/pump/on, +/area/strata/ag/interior/outpost/security) +"xjD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"xjG" = ( +/mob/living/simple_animal/cat/Runtime{ + desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; + name = "Bernard" + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"xjN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"xkc" = ( +/obj/structure/desertdam/decals/road_stop, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"xjr" = ( -/turf/open/auto_turf/strata_grass/layer0, +"xkj" = ( +/turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"xjs" = ( +"xkt" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xkI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"xkV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) -"xjW" = ( -/obj/structure/toilet{ +"xlc" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"xlr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/deep/structures/res) +"xlW" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/machinery/light/small{ +/obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xki" = ( -/obj/structure/closet/emcloset, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"xkj" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_dorms) -"xkU" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"xkW" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"xkY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"xlF" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ug/interior/outpost/jung/dorms/sec1) "xlX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -33335,186 +33538,75 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"xmy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"xmz" = ( -/obj/effect/glowshroom/single, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/north_lz_caves) -"xmE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"xmP" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +"xmq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"xna" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "xnn" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"xnq" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"xnI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"xol" = ( +"xor" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/platform/strata/metal{ - dir = 1 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/red3, +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"xou" = ( -/obj/structure/largecrate/random/secure, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"xoM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"xoO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"xoQ" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "xpk" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) -"xpX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"xqP" = ( -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"xqR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"xqU" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/interior/tcomms) "xre" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/tcomms/tcomms_deck) -"xrq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"xrs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"xrD" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"xrT" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/light/small{ +"xsl" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"xsi" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xsH" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) +"xsP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xtl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) "xtw" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"xua" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xue" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ +"xuf" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xut" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"xuh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) "xuE" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -33525,228 +33617,152 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"xuL" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "xuY" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/south_engi) -"xvD" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"xvU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"xvo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"xww" = ( /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 4 }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) -"xwC" = ( +"xwg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"xxF" = ( -/obj/structure/toilet{ - dir = 1 +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"xwp" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"xwQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"xxo" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "xxS" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) -"xxT" = ( -/obj/item/device/megaphone, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"xxV" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) "xyz" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"xzx" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"xzA" = ( +"xyL" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"xzm" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/platform_decoration/strata/metal, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"xzC" = ( -/obj/structure/bed/chair, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) +"xzo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"xzO" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "xzR" = ( /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) +"xzT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "xAc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"xAj" = ( +"xAy" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/storage/belt/utility/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"xAC" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"xBo" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, /turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xAz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +/area/strata/ag/interior/landingzone_1) +"xBx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"xAW" = ( -/obj/item/stool, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xBY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"xAZ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"xBd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xCx" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xCT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"xBf" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"xBU" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"xCb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"xCn" = ( -/obj/structure/morgue{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"xCq" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/stool, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"xCJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"xCS" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "xDu" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) "xDD" = ( /obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/strata/ug/interior/jungle/deep/east_engi) -"xDQ" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"xEj" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"xEq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"xEx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"xEC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"xEM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"xEQ" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"xES" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/strata/ug/interior/jungle/deep/east_engi) +"xDS" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) +"xEj" = ( +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/paths/adminext) +"xEI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/knife, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "xEV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, @@ -33755,12 +33771,25 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"xFd" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "xFf" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) +"xFk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "xFl" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer0, @@ -33773,18 +33802,23 @@ /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/nearlz2) +"xFM" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xFP" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "xFT" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"xGc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) "xGi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -33792,49 +33826,85 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xGl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xGp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "xGA" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xGJ" = ( -/obj/structure/largecrate/random, -/obj/item/storage/belt/shotgun, -/obj/item/storage/backpack/lightpack, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"xGV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/item/device/encryptionkey/dutch, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xHd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"xHi" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"xHm" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "xHw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"xHD" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"xHy" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/structure/fence, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"xHP" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/area/strata/ag/exterior/research_decks) +"xHG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, -/obj/structure/machinery/light/small{ +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"xHI" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xHJ" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"xHR" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"xHT" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xHW" = ( /obj/structure/platform/strata/metal, /obj/structure/stairs/perspective{ @@ -33849,38 +33919,37 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"xIl" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"xIn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"xIA" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"xIR" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"xJi" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 +"xIL" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"xJq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"xJB" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "xJD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xJF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xJG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "xJH" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -33889,17 +33958,10 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"xJI" = ( -/obj/structure/xenoautopsy/tank/broken{ - desc = "A broken cryo tank, this must've been where it all began..." - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"xKu" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +"xJX" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "xKy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -33916,61 +33978,64 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xKP" = ( -/obj/structure/pipes/vents/pump{ +"xKJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"xLz" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xLw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "xLB" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"xLG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "xLH" = ( /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"xLM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"xMd" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"xLS" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"xLW" = ( +/obj/structure/bed/chair, +/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"xMn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"xMu" = ( -/turf/open/floor/strata/cyan3/west, +"xMa" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"xMl" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"xMz" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xMF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"xMI" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"xNv" = ( -/obj/structure/bed, +"xNo" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"xOb" = ( /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "xOo" = ( @@ -33995,135 +34060,96 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"xOy" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) +"xOD" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"xOE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "xOL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"xOU" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"xOV" = ( -/obj/item/stack/rods, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"xPd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"xPi" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "xPv" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"xPE" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xPG" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/reagent_container/spray/pepper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"xPI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 +"xPz" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"xPR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "xPT" = ( /obj/item/reagent_container/food/drinks/cans/cola, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"xQN" = ( -/obj/structure/machinery/photocopier, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, +"xQf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) +"xQm" = ( +/obj/item/stack/rods, +/obj/structure/pipes/vents/pump/on, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"xQU" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/interior/outpost/engi) +"xQr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"xQZ" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"xQs" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"xRh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"xRX" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xRg" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"xRp" = ( -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"xSw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) -"xRQ" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/south_res) "xSx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"xSD" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"xSK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi/drome) +"xSB" = ( +/obj/structure/filingcabinet, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outpost/gen/bball/nest) +"xTE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"xST" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"xTO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/enchiladas, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xTU" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) @@ -34134,70 +34160,47 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xUe" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) "xUg" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/south_engi) -"xUF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xUX" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"xVj" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"xVG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, +"xUt" = ( +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) -"xVI" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/hive) -"xVJ" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/north_lz_caves) "xVX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"xWg" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"xWg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"xWJ" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "xWN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xWZ" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"xXb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "xXi" = ( /obj/effect/decal/cleanable/blood/gibs/body, /obj/effect/decal/cleanable/blood/gibs/core, @@ -34207,211 +34210,210 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"xXB" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 - }, +"xXs" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"xXM" = ( +/area/strata/ag/exterior/research_decks) +"xXH" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"xYb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"xYt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/catwalk, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"xYl" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "xYw" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xZh" = ( -/obj/structure/surface/rack, +"xYS" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"xZs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"xYZ" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"yaz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" +/obj/structure/closet/emcloset, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"xZj" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"xZw" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"xZK" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"xZX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"ybk" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"yaC" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"ybn" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"ybp" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ybr" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +/area/strata/ag/exterior/research_decks) +"yaM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"yaP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"ybH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"ybI" = ( -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"yci" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"ydU" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/area/strata/ag/interior/outpost/engi/drome) +"ybi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/canteen) +"ybW" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"ydR" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "ydV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"yet" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"yeu" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"yeJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"yfm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"yfu" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"yfN" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"ygj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +"yed" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" }, /turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/med) -"ygl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"yei" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"yey" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"ygo" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"ygq" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"yhn" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"yhQ" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"yfc" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"yfg" = ( /obj/structure/machinery/light/small{ dir = 8 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"yfi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"yfW" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"ygi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"yix" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 + dir = 10 }, -/obj/structure/platform/strata/metal{ - dir = 1 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"ygp" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ygq" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"ygH" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ygO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"yiD" = ( +/obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/research_decks) -"yiP" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/area/strata/ug/interior/jungle/deep/minehead) +"ygZ" = ( +/obj/item/stool, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"yhH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/structure/machinery/light/small{ +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"yjp" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "yjG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"yjI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"yjQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"yjV" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "ykh" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -34421,19 +34423,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"ykp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"ylt" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) +"ylA" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "ylE" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/south_engi) +"ylY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) (1,1,1) = {" aaa @@ -34865,434 +34865,434 @@ aac aac aac aac -aac -kSU -wrp -wrp -wrp -wrp -wrp -wrp -enV -cqE -tNz -gWh -gWh -tNz -gWh -gWh -gWh -tNz -gWh -gWh -gWh -azx -sfO -ndv -azx -hwq -hwq -azx -xEM -xEM -xEM -qPm -inL -xEM -xEM -xEM -qPm -xEM -xEM -xEM -qPm -xEM -inL -xEM -xEM -qPm -xEM -xEM -rtW -bAe -bAe -bAe -bAe -bAe -bAe -aac -aac -aac -aac -aac -aac -aac -bET -bET -bET -bAe -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -acX -acX -acX -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -kSU -xQU -rqx -gsQ -gsQ -ild -mDy -kQx -cqE -gxO -fTk -ngZ -ngZ -ngZ -ngZ -ngZ -ngZ -ngZ -ngZ -ddi -vJp -ngZ -ngZ -vJp -ngZ -ngZ -mET -tTV -tTV -tTV -tTV -tTV -tTV -tTV -tTV -vng -mJK -clq -uTz -xEM -dXJ -clq -clq -clq -clq -clq -clq -rtW -bAe -bAe -bIz -bIz -bIz -bIz -bAe -bAe -aac -aac -aac -aac -cmg -ixu -cNg -hto -fkG -aac -aac -wGp -wGp -eNW -wGp -wGp -wGp -aac -aac -aac -aac -aac -aac -aac -jXQ -bjv -qfi -gUP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -acX -acX -acX -acX -acX -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +aac kSU +wrp +wrp +wrp +wrp +wrp +wrp +qFh +cqE +hBC +ogs +ogs +hBC +ogs +ogs +ogs +hBC +ogs +ogs +ogs +azx +iWy +qhY +azx +fLk +fLk +azx +sDP +sDP +sDP +dxr +iYA +sDP +sDP +sDP +dxr +sDP +sDP +sDP +dxr +sDP +iYA +sDP +sDP +dxr +sDP +sDP +rtW +bAe +bAe +bAe +bAe +bAe +bAe +aac +aac +aac +aac +aac +aac +aac +bET +bET +bET +bAe +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acX +acX +acX +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac kSU -kXC -cjb -cjb -coP -cYr -mDy -kQx +tSE +fUq +cCm +cCm +tGL +qQX +oel cqE -fxJ -fgD -apc -sgm -qif -wmD +hhu +pav +drn +drn +drn +drn +drn +drn +drn +drn +hHe +vdk +drn +drn +vdk +drn +drn +seK +hby +hby +hby +hby +hby +hby +hby +hby +fxv +ohJ fzQ -sgm -qif -wmD +rBh +sDP +urt fzQ -sgm -qif -wmD fzQ -sgm -qif -wmD fzQ -sgm -qif -wmD fzQ -sgm -qif +fzQ +fzQ +rtW +bAe +bAe +bIz +bIz +bIz +bIz +bAe +bAe +aac +aac +aac +aac +cmg +ixu +cNg +hto +fkG +aac +aac +wGp +wGp +eNW +wGp +wGp +wGp +aac +aac +aac +aac +aac +aac +aac +jXQ +bjv +qfi +gUP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acX +acX +acX +acX +acX +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +kSU +kSU +rtA +cjb +cjb +coP +rsb +qQX +oel +cqE +fjy +cFP apc -kzg -fxJ +czr +rKY +iwz +mVZ +czr +rKY +iwz +mVZ +czr +rKY +iwz +mVZ +czr +rKY +iwz +mVZ +czr +rKY +iwz +mVZ +czr +rKY +apc +pCP +fjy cqE cot aZS @@ -35302,7 +35302,7 @@ cqE cqE cqE cqE -ojb +fbg rtW bAf bAf @@ -35323,12 +35323,12 @@ crN bhJ bhY biG -jPJ +pKD jnH xzR xzR jnH -fBF +eoA bmW aac aac @@ -35451,18 +35451,18 @@ aac aac aac kSU -wJp -hcJ +smu +wvj aiw cof cjb -pLc -mDy -kQx +nkx +qQX +oel cqE -fxJ -fgD -cEd +fjy +cFP +fhV crE crE arS @@ -35485,19 +35485,19 @@ crE arS crE crE -rmp -kzg -fxJ +lGs +pCP +fjy cqE cqE cqE cqE beK -dTI -dTI +xHJ +xHJ bnb cqE -gWh +ogs rtW alz aXG @@ -35519,10 +35519,10 @@ bhL aZv aZv bia -ieO -fBF -fBF -fBF +lgY +eoA +eoA +eoA bia bmY bnK @@ -35646,18 +35646,18 @@ aac aac aac kSU -wJp -gsQ +smu +cCm aix cjb coP -rol -mDy -kQx +ruS +qQX +oel cqE -fxJ -fgD -oOH +fjy +cFP +vIH crE crE crE @@ -35680,24 +35680,24 @@ crE crE crE crE -dAY -kzg -fxJ +xBo +pCP +fjy cqE aQv aQv cqE -dJt +gbk aQv aQv -xxV +eAd cqE -gWh -gWh +ogs +ogs bAq -nER -nER -nER +eHV +eHV +eHV aac aac aac @@ -35842,17 +35842,17 @@ aac aac kSU ahr -gsQ -teX -gsQ -gsQ -cYr -mDy -kQx +cCm +lsQ +cCm +cCm +rsb +qQX +oel cqE -fxJ -fgD -tKo +fjy +cFP +xgQ crE crE crE @@ -35875,21 +35875,21 @@ crE crE crE crE -sFA -kzg -fxJ +keI +pCP +fjy cqE aQv aQv cqE -dJt +gbk aQv aQv -xxV +eAd beJ -wiS +prY cqE -wiS +prY aZj aZv aZv @@ -36037,17 +36037,17 @@ kSU kSU kSU wrp -rdt -oPF -mDy -mDy +foc +dDS +qQX +qQX wrp wrp -tix +cUY cqE -fxJ -fgD -aBN +fjy +cFP +jnr crE crE crE @@ -36070,21 +36070,21 @@ crE crE crE crE -qYs -kzg -fxJ +uIr +pCP +fjy cqE cqE cqE cqE cot -okd -okd +sNL +sNL bce cqE -wiS +prY cqE -wiS +prY aZk aVq aVq @@ -36230,19 +36230,19 @@ aac aac kSU cyG -iST -xAz -gsQ -teX -gsQ -gsQ -iST -xAz -dtb +mNr +rvl +cCm +lsQ +cCm +cCm +mNr +rvl +ybW cqE -fxJ -fgD -cEd +fjy +cFP +fhV crE crE crE @@ -36265,9 +36265,9 @@ crE crE crE crE -rmp -kzg -fxJ +lGs +pCP +fjy cqE cqE cqE @@ -36277,9 +36277,9 @@ cqE cqE cqE cqE -wiS +prY cqE -wiS +prY aZl aZx aZx @@ -36425,19 +36425,19 @@ aac aac kSU cyG -hDH -hDH +mlY +mlY cjb aix cjb cjb -hDH -hDH -dtb +mlY +mlY +ybW amq -vad -fgD -oOH +jzE +cFP +vIH crE crE crE @@ -36460,21 +36460,21 @@ crE crE crE crE -dAY -llE -cRq +xBo +luF +cjd aVX -vzF -vzF +vLo +vLo bcf cqM cqM cqM cqM bqV -wiS +prY cqE -wiS +prY aVq aZx aZx @@ -36620,19 +36620,19 @@ aac aac kSU cyG -tke -muR -gsQ -teX -gsQ -gsQ -tke -muR -dtb +qSF +wRF +cCm +lsQ +cCm +cCm +qSF +wRF +ybW cqE -fxJ -fgD -tKo +fjy +cFP +xgQ crE crE crE @@ -36655,21 +36655,21 @@ crE crE crE crE -sFA -kzg -fxJ -dJt +keI +pCP +fjy +gbk aQv aQv -xxV +eAd cqE aQv aQv cqE bqW -wiS +prY cqE -wiS +prY aZj aVq aZx @@ -36817,17 +36817,17 @@ kSU kSU kSU wrp -rdt -oPF -mDy -mDy +foc +dDS +qQX +qQX wrp wrp -enV +qFh cqE -fxJ -fgD -cSF +fjy +cFP +cGt crE crE crE @@ -36850,24 +36850,24 @@ crE crE crE crE -wqq -kzg -fxJ -dJt +hQU +pCP +fjy +gbk aQv aQv -xxV +eAd beJ aQv aQv cqE cqE -gWh -gWh +ogs +ogs bAq -nER -nER -nER +eHV +eHV +eHV aZx aZx aVq @@ -36887,7 +36887,7 @@ bhO bhO okM qSo -fMW +nOm qSo nxF gTE @@ -37012,17 +37012,17 @@ aac aac kSU ahr -gsQ -teX -gsQ -jDX -pzc -mDy -kQx +cCm +lsQ +cCm +rFe +sjx +qQX +oel cqE -fxJ -fgD -cEd +fjy +cFP +fhV crE crE crE @@ -37045,19 +37045,19 @@ crE crE crE crE -rmp -kzg -fxJ +lGs +pCP +fjy cot -okd -okd +sNL +sNL bce cqE cqE cqE cqE cqE -gWh +ogs rtW rtW bER @@ -37081,9 +37081,9 @@ bhO bgS bhO mpk -xgi -pPo -lQh +xey +jMS +crJ iEo qSo nxF @@ -37206,18 +37206,18 @@ aac aac aac kSU -wJp -gsQ +smu +cCm aix cjb cjb -cYr -mDy -kQx +rsb +qQX +oel cqE -fxJ -fgD -oOH +fjy +cFP +vIH crE crE crE @@ -37240,19 +37240,19 @@ crE crE crE crE -dAY -kzg -fxJ -gWh -uuj -gWh -wFE -gWh -gWh -gWh -swV -gWh -rWy +xBo +pCP +fjy +ogs +oWq +ogs +qSi +ogs +ogs +ogs +cNl +ogs +tSK rtW azx bET @@ -37276,11 +37276,11 @@ bhO hQP bhO mpk -pPo -pPo -pPo -pPo -hXd +jMS +jMS +jMS +jMS +sGx cXU bhO bgS @@ -37401,18 +37401,18 @@ aac aac aac kSU -wJp -hcJ +smu +wvj aiA qwM ajK -jfv -tSZ -bZK +qtl +ubw +kNA cqM -vad -fgD -tKo +jzE +cFP +xgQ apT crE arS @@ -37435,15 +37435,15 @@ crE arS crE crE -sFA -kzg -fxJ -gWh +keI +pCP +fjy +ogs alz -dBd -dBd +rPp +rPp beL -gUu +axy azx alz alz @@ -37471,11 +37471,11 @@ bhO bhO bhO mpk -vTh -pPo -pPo -gLG -pPo +fyV +jMS +jMS +ueL +jMS cXU bhO bhO @@ -37597,49 +37597,49 @@ aac aac kSU kSU -gsQ +cCm cjb cjb coP -rol -mDy -kQx +ruS +qQX +oel cqE -fxJ -fgD +fjy +cFP apc -gUA -lul -nNS -nOe -lul -qGI -nNS -gUA -lul -qGI -nNS -gUA -lul -qGI -nNS -gUA -lul -qGI -nNS -gUA -lul -qGI +qxb +dSZ +kuH +kXP +dSZ +uBa +kuH +qxb +dSZ +uBa +kuH +qxb +dSZ +uBa +kuH +qxb +dSZ +uBa +kuH +qxb +dSZ +uBa apc -kzg -fxJ -gWh -rXI -hmR -jHd -jHd -jHd -jHd +pCP +fjy +ogs +tge +oEB +dfM +dfM +dfM +dfM aac aac aac @@ -37666,9 +37666,9 @@ bgS bsU bhO mpk -qzH -pPo -muN +rNB +jMS +fcY vkp blW vQs @@ -37792,45 +37792,45 @@ aac aac aac kSU -xQU -rqx -gsQ -gsQ -cYr -mDy -kQx +tSE +fUq +cCm +cCm +rsb +qQX +oel cqE -fxJ -kdq -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -lZT -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -hdR -qlC -fxJ -gWh -rXI -nGH +fjy +kfi +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +jEx +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +fzR +ucf +fjy +ogs +tge +xat cqG bbA bbA @@ -37862,7 +37862,7 @@ bgS bhO tKS blW -fMW +nOm blW vQs xsH @@ -37989,43 +37989,43 @@ aac kSU kSU kSU -jHE +fCd wrp wrp wrp -wCn +iVF cqE -cRq -fWP -fWP -fWP -fWP -fWP -fWP -rLa -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -fWP -rLa -fWP -dZZ -gWh -rXI -nGH +cjd +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +oom +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +dzJ +oom +dzJ +oCj +ogs +tge +xat bhK ahA ahA @@ -38184,11 +38184,11 @@ aac aac aac crA -dlT -xVI +iEn +wrU akr -gnf -dtb +gEm +ybW cqE anj cqE @@ -38215,12 +38215,12 @@ cqE cqE cqE cqE -fxJ +fjy aSP -dBd -dBd +rPp +rPp azx -nGH +xat bhK ahA ahA @@ -38379,11 +38379,11 @@ aac aac aac crA -rbW -xVI +oxN +wrU aks -gnf -dtb +gEm +ybW cqE anj aom @@ -38410,12 +38410,12 @@ cqE aom cqE cqE -fxJ +fjy azx -hmR -jHd -jHd -uMH +oEB +dfM +dfM +fKw bhK ahB aiP @@ -38442,7 +38442,7 @@ aVq aVq bgS bgS -hrI +uGQ xzR bgS bhN @@ -38574,40 +38574,40 @@ crA crA crA crA -fFU +jnR ddp ddp ddp crY -hCe -peJ +tad +mPb ctC bYE -cLa -cLa +avI +avI crY -pFm -kvp -fkX +bBI +aie +wuz cbj -mWo -mWo -mWo -mWo -tpj +tmr +tmr +tmr +tmr +xkI crY -ruW -ruW -msN -xPI -ruW -ruW +kSw +kSw +kBM +xjD +kSw +kSw crY -gWh +ogs aQv -fxJ -fSo -nGH +fjy +rbo +xat agA apA apA @@ -38616,7 +38616,7 @@ aZW crN bjB bnn -cyo +uno pkO pkO pkO @@ -38769,40 +38769,40 @@ cnO cnO cnO cnO -fiz +ffW cnO cnO ddp -fNx -mWo -udl -viV +fmi +tmr +fHz +ulJ ctC -cIL -lpj -wjP -fvU -erE +iZg +duY +knK +vkL +qvg cbj -mWo +tmr bPs -jga -iQD +gYr +vRm aCD aCD ctC -kGr -jkU -dhN -dkj -dhN -dhN +snK +oAy +wek +kJR +wek +wek ctC -kfc +cub aQv -xaA +gNM azx -nGH +xat cou bnm ahB @@ -38813,7 +38813,7 @@ bjj aYa brf btV -jRF +wYs bAw bEX brf @@ -38960,42 +38960,42 @@ aac crA cnO bjY -rsb -unU -tBV +chR +gKR +pUz bjY -rsb -dlT +chR +iEn cnO ddp -nXV -mWo -udl -usq +sxu +tmr +fHz +vTd ctC -fvU -tJv -kBU -fvU -erE -mWo +vkL +dlq +egw +vkL +qvg +tmr cbj -gDW -mlb -mlb +fKO +xeq +xeq crY crY crY crY -jkU -xCJ -mWo -mWo -tpd +oAy +vnJ +tmr +tmr +wAY ctC -eYA +mUW aQv -fxJ +fjy azx aac cou @@ -39033,8 +39033,8 @@ cwS cwS cwS glN -fZx -fZx +xih +xih glN bsU bhN @@ -39154,43 +39154,43 @@ aac aac crA cnO -fiz -pih -lCg -tBV -ppQ -ipQ -bVT +ffW +jxa +xFP +pUz +kRL +yfc +tYt cnO ddp crY -hCe -peJ +tad +mPb ctC ctC -jzI +kdh ctC crY -kKT -erE +eus +qvg cbj -mWo -ljG -wyE -dro +tmr +pov +kxD +pOh crY -wEK -fQp +jtF +eah crY crY -ppd -qWU -qFp -dhN -dYr -gWh -pfl -vad +dcZ +emb +rCF +wek +ezG +ogs +kkB +jzE aac aac cou @@ -39228,9 +39228,9 @@ cwS fzN cwS cbO -ueQ -lMi -ppr +yfW +tOv +nHc bsU bsU bhN @@ -39349,49 +39349,49 @@ aac aac crA cnO -vzn -jsG -nWI -rQP -amW -hoq -eqW -nWI -tqs -fjh -kSr -kjS -fjh -csO -feE -lpB -uDY -uDY -xVG -kSr +oKh +ddg +edw +kjL +nYk +bGI +iVm +edw +bEG +mLS +epW +cjs +mLS +hGZ +dPA +siw +hbI +hbI +uvV +epW awG -wUp -uDY -uDY -lpB +oag +hbI +hbI +siw aEI aEI -yhQ -gDj -cYH -ppd -mWo -dhN -dYr -gWh +cdN +iDj +xUt +dcZ +tmr +wek +ezG +ogs aQv -ips +lvY aSR -kZC -jRZ -jRZ -jRZ -kZC +fWW +tOh +tOh +tOh +fWW crN aVq crN @@ -39423,9 +39423,9 @@ cwS pvA nGi cbO -pNo -cxb -ppr +iaU +shk +nHc aac aac aac @@ -39545,48 +39545,48 @@ aac crA cnO bjY -vgt +ltc cnO cnO -cBR +ntW bjY -unU +gKR cnO ddp crY -hCe -peJ +tad +mPb ctC ctC -nUl +xZX ctC -xBf -sNV -vkL +juz +rnl +qpi cbj -qND -ljG -wyE -dro +vHO +pov +kxD +pOh crY crY crY -kEr +mgD ctC -ehT -xTO -qFp -dhN -fJP -kfc +ngQ +jCg +rCF +wek +ljR +cub aQv -xaA -uAZ -jPJ -oQI -oQI -oQI -jPJ +gNM +qAt +pKD +eaa +eaa +eaa +pKD bjj aVq crN @@ -39619,7 +39619,7 @@ pvA xFl cwT cbO -tNo +wQT cwT aac aac @@ -39738,50 +39738,50 @@ aac aac aac crA -vNd -iKh -njt -vzn +lcA +bYP +sge +oKh cnO -rsb +chR bjY -cBR +ntW cnO ddp -eRK -mWo -udl -eRK +clY +tmr +fHz +clY ctC -kEr +mgD aCl -dhv -fvU -hqd -mWo +kBy +vkL +hdv +tmr awI -hqd -fvU -fvU +hdv +vkL +vkL ctC ctC crY -eRa +cOA aHb -cYH -ppd -qFp -dhN -sAt -gWh +xUt +dcZ +rCF +wek +srm +ogs aQv -fxJ -wiS -jPJ -oQI -oQI -oQI -jPJ +fjy +prY +pKD +eaa +eaa +eaa +pKD crN crN aVq @@ -39933,50 +39933,50 @@ aac aac aac crA -ukN -vzn -hvz -vzn +sRk +oKh +rgR +oKh cnO -iRj +xRX ajl -efg +lWm cnO ddp -sIK -vDh -qHd -xrD +rej +rbR +uiW +pYt ctC -rYD +igd ctC -xBf -sNV -vkL +juz +rnl +qpi cbj -mWo -ljG -wyE -dro +tmr +pov +kxD +pOh ctC aDF -nvG +vfi aFQ -izt -eVu -uwZ -mWo -dhN -dYr -gWh -pfl -ure +qne +qKg +nLc +tmr +wek +ezG +ogs +kkB +gOl aSR -sTP -nsh -nsh -nsh -sTP +xjN +ubX +ubX +ubX +xjN crN bjN crN @@ -40029,8 +40029,8 @@ aac aac aac mIG -pvw -qAm +rZv +iOo bjL bdL ben @@ -40130,7 +40130,7 @@ aac crA cnO cnO -vgt +ltc cnO cnO ddp @@ -40138,34 +40138,34 @@ ddp ddp ddp ddp -eRK -mWo -udl -eRK +clY +tmr +fHz +clY ctC -kEr +mgD ctC -fvU -qXa -gDW -mWo +vkL +dVw +fKO +tmr cbj -hqd -wkb -wkb +hdv +jQg +jQg ctC cdH -lAZ -nFA -phq -kwT -eoy -hZi -dhN -dYr -gWh +nux +lPr +sTd +egQ +rwl +fgX +wek +ezG +ogs aQv -fxJ +fjy aac aac aWk @@ -40176,7 +40176,7 @@ aWg crN bjN bcx -cyo +uno pkO pkO pkO @@ -40225,7 +40225,7 @@ aac aac lcs kZU -pvw +rZv bdL ben bea @@ -40325,42 +40325,42 @@ crA crA ddp ddp -xoM +paQ ddp ddp ptT ajm -kdb -kdb +dxV +dxV ddp crY -hCe -peJ +tad +mPb ctC ctC -nUl +xZX ctC ctC ctC -uEY +amT avr -mWo +tmr bPs -pmF -pmF +bNA +bNA ctC ctC -rpk -xXM -ppd -xTO -sGd -qND -dhN -dYr -kfc +iCP +oiu +dcZ +jCg +kGj +vHO +wek +ezG +cub aQv -xaA +gNM rtW aac aWk @@ -40419,8 +40419,8 @@ bur aac aac mIG -qAm -qAm +iOo +iOo bjL ben hir @@ -40518,27 +40518,27 @@ crA crA crA cnO -uRV -gbf -toH -gbf -xfY -toN -gbf -gbf -gbf -tqs -fjh -kSr -qHd -jRc +bKW +dwy +jsY +dwy +osf +ico +dwy +dwy +dwy +bEG +mLS +epW +uiW +iIX ctC -kEr -mwd +mgD +sFv arZ -mwd -mXt -mWo +sFv +qky +tmr cbj bPs azD @@ -40546,21 +40546,21 @@ azD ctC ctC ctC -qSj -frO -frO -avq -pMj -ovp +mIm +rZa +rZa +fgF +lGA +ujH crY -eYA +mUW aQv -fxJ +fjy azx aac -rAd -qZL -dte +wrf +fkE +qAn aVq crN aWp @@ -40609,7 +40609,7 @@ aac aac bur bug -jjC +eyt bus aac aac @@ -40713,48 +40713,48 @@ cnO cnO cnO cnO -vgt +ltc ddp bjY bjY ddp ddp -lAL -hKY -iBh +vWZ +kub +mQb ddp crY -hCe -peJ +tad +mPb ctC ctC -rWS -mwd +lAU +sFv afv -mwd -fyr +sFv +lUr cbj -nZE -mWo +fyl +tmr cbj -mWo -mWo -xeq -wgA +tmr +tmr +ikW +bOX bZV bPs aIo aJR bPs -wgA -xeq -cVB -cVB -gWr -uju +bOX +ikW +wFY +wFY +oDI +cCD cnB -fiX -fiX +iBP +iBP cnB aac bcx @@ -40905,13 +40905,13 @@ aac aac crA cnO -nsv -vzn +igZ +oKh cnO -wHj +jPW ddp -vzn -ppk +oKh +eRL cnO ddp ddp @@ -40919,38 +40919,38 @@ ddp ddp ddp crY -mWo -dsy -kKj -gDj -ftF -mwd +tmr +kDt +uIT +iDj +lWq +sFv ctl -mwd -rrX -kHR +sFv +jRh +prk emg kUN azE aBl aCG -ezx -nJn -vaw -sdX -sdX -shO -jME -ezx -ezx +dGq +nCa +gFs +ipe +ipe +cDx +wnd +dGq +dGq aPa aPa aRF -cVB -kjq +wFY +luV aWl bXV -vmd +nvy bcx bcx bcx @@ -41099,53 +41099,53 @@ aac aac aac crA -nzK -cNn -gbf -tqs -tkF -tqs -gbf -nKV +mXb +iQN +dwy +bEG +fuu +bEG +dwy +nzb cnO wGx wGx -fuV -fuV -fuV +llR +llR +llR wGx -lhA -izy +sep +qSb wGx crY -kEr +mgD ctC ctC ctC ctC -wpa +egU bZV ctC ctC -vqC -gMX +wSE +iWE ctC ctC ceW -kkb -huD -gis -cvs +kFh +hmR +juX +gVE ctC ctC -lVU -cVB -gWr -lLq +eXn +wFY +oDI +vgX cnB bXd aXB -kjq +luV bcx aWp bcx @@ -41295,52 +41295,52 @@ aac aac crA cnO -jhs -vzn +mkU +oKh cnO -vgt +ltc ddp -tzF -lyt +uGv +jjX cnO wGx -gqy -qhQ -qhQ -qhQ -ogN -qhQ -nVC +kOu +iBi +iBi +iBi +mbc +iBi +xkV wGx crY -heF -ePR -ePR -ePR -lpB +pKF +roY +roY +roY +siw avu sJd -tZQ -iVW -wMv -iJe -ooB +qzF +joD +hBs +wUD +uCk aEL crY -qQQ -qQQ -qQQ +weE +weE +weE aLl aMF ctC cjw cnB -gWr +oDI aLq -jGS +tan aWm aXC -kjq +luV bcx aac aac @@ -41493,44 +41493,44 @@ cnO cnO cnO cnO -vgt +ltc ddp cnO cnO cnO wGx -gqr -tNe -ibr -sjS -sjS -ibr -nVC +hFR +vwj +vns +jcJ +jcJ +vns +xkV wGx crY crY -flr +pUp crY crY ctC -mWo +tmr awK -tZQ -gbw -ijN -esU -hBI -tZQ +qzF +cgA +pPG +uiX +hMC +qzF aLM aNe aNe aOX aPn aOX -mkA +wiy aPe aQx -wCe +nfW aSW cnB cjw @@ -41688,34 +41688,34 @@ crA crA crA crA -wHj +jPW ddp wGx wGx wGx wGx wGx -uxe -drA -wVk -cXI -ibr -nVC -jlk -cYC -cYC -cYC -eCV -qlf +pbs +mQS +mCH +eLK +vns +xkV +snR +pRl +pRl +pRl +npZ +huf bYE cbj bZV -tZQ -pim -eMW -kwi -xJI -tZQ +qzF +cON +sgf +wTN +wcq +qzF aMV aNj aNm @@ -41725,10 +41725,10 @@ aPT aNL aPh cjw -gWr +oDI aLq -kjq -ngt +luV +jOa aXD cjw aac @@ -41766,7 +41766,7 @@ aac aac rsm coC -jag +ius coC wrw aac @@ -41883,35 +41883,35 @@ aac aac aac cfr -oLY -fLN -iDT -pFt -geE -iDT -ohL -poL -kCw -txW -txW -qIG -nvX +kNB +laK +lPp +hYj +cAv +lPp +iOD +pqB +vEW +jhE +jhE +pdt +jti bAt ctC ctC -flr +pUp ctC ctC ctC -sPt -wJr +mSd +omZ ctC ctC -gMX -gMX -gMX +iWE +iWE +iWE ctC -sCm +rHE aNl aNo aNl @@ -41919,8 +41919,8 @@ aOY aPX cjw aPi -mkA -gWr +wiy +oDI cmC cnB bXd @@ -41930,8 +41930,8 @@ aac aac aac aac -jRq -vmf +kkd +dxe aYX aWp aWp @@ -42078,27 +42078,27 @@ aac aac aac cfr -bBq +hXC xdE wGx -lkh -jmO -ibr -jPF -qhQ -jmO -ibr -sjS -ibr -nVC -tjZ -gEI -noZ +nmp +fjw +vns +sAq +iBi +fjw +vns +jcJ +vns +xkV +oRH +kiY +wQK cbj -myM -eRK +lqt +clY ctC -spc +rnA bZV aym ctC @@ -42115,9 +42115,9 @@ aPX cjx cjw cnB -vDW -qab -jGS +jIV +wgR +tan aLq aXF cjw @@ -42125,8 +42125,8 @@ aac aac aac aac -jRq -xmz +kkd +dLo aYY aYd bcx @@ -42181,32 +42181,32 @@ xTU bvE bvE bvD -dqE -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -ero -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -cDQ -pmg +iMo +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +qkH +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +lpF +uas bwt xTU kkL @@ -42272,34 +42272,34 @@ aac aac bAu bGg -wrD +bLm afI xdE -uCd -ibr -jmO -nrw -rAR -qhQ -jGM -egL -elu -ibr -ooZ -gfS -kSr -kSr -kSr -xdY -kSr -xzA +rPN +vns +fjw +xWJ +eOT +iBi +qGh +weo +iKm +vns +fUk +qSJ +epW +epW +epW +dxu +epW +rRf aEI kSW ayn -fJP +ljR ciA ciA -oTZ +dOL aLy aMH aNo @@ -42307,11 +42307,11 @@ aNo aNo aNl aQa -ugo +oLm aPk -cVB -mXa -tiC +wFY +wZv +dKh cnB cjw cjw @@ -42320,8 +42320,8 @@ aac aac aac aac -wag -xmz +lhJ +dLo aWp aYd tUu @@ -42376,32 +42376,32 @@ bvJ bvE bvD bvD -ttw +uCA bJI -qoV -hUk -dHU -uTd -qoV -kxM -dHU -uTd -qoV -hUk -dHU -uTd -qoV -hUk -dHU -uTd -qoV -hUk -dHU -uTd -qoV -hUk +ffy +feU +cwx +xiu +ffy +prp +cwx +xiu +ffy +feU +cwx +xiu +ffy +feU +cwx +xiu +ffy +feU +cwx +xiu +ffy +feU bJI -gqd +joh bvE bwt kkL @@ -42467,34 +42467,34 @@ aac bAu bwg hGO -wrD +bLm afJ xdE -nZB -ibr -kFf -hfr -rAR -qhQ -ibr -gGi -gGi -ibr -nVC -hSp -mWo -mWo -mWo -mWo -mWo -mWo +cue +vns +sHI +mOB +eOT +iBi +vns +mxf +mxf +vns +xkV +wNz +tmr +tmr +tmr +tmr +tmr +tmr cbj bZV bPs -sAt +srm ciA ciA -pTY +kTH aLz aMI aNo @@ -42502,21 +42502,21 @@ aNo aNo aNo aOB -ugo +oLm aPk -cVB -dFc -cVB -kjq -ngt -cqi +wFY +uwS +wFY +luV +jOa +eRV cjw aac aac aac aac -kFK -vmf +jjk +dxe aYZ aWp aYd @@ -42571,8 +42571,8 @@ bvE rNI xTU bvD -ttw -hmT +uCA +rKM tCR jWs ewk @@ -42595,8 +42595,8 @@ jWs ewk jWs jWs -vvC -gqd +doy +joh bxo bwt kkL @@ -42662,28 +42662,28 @@ bAu bwg acX hGO -wrD +bLm afI xdE -qNc -ibr -ooV -ibr -rLv -qhQ -ibr -sjS -ibr -nnE -nVC -tjZ -eRK -dvq +oKP +vns +tyb +vns +rJY +iBi +vns +jcJ +vns +lky +xkV +oRH +clY +xfR cbj -dvq -eRK +xfR +clY ctC -spc +rnA bZV aym ctC @@ -42699,9 +42699,9 @@ aPr aOB cnB cjw -dJE -dFc -lLq +isE +uwS +vgX cnB coy aXB @@ -42710,8 +42710,8 @@ aac aac aac aac -kFK -vmf +jjk +dxe aYX aWp aYd @@ -42766,8 +42766,8 @@ xTU rNI xTU bvD -ttw -wOn +uCA +kqh jWs jWs jWs @@ -42790,8 +42790,8 @@ jWs jWs jWs jWs -cLj -gqd +ldI +joh bvE bwt bwt @@ -42858,19 +42858,19 @@ acX acX hGO xdE -bBq +hXC xdE agN -pDX -lhA -xLM -mEg -qhQ -ibr -snT -oFi -ibr -nLk +lAD +sep +rkF +fqs +iBi +vns +tvu +rOy +vns +mQl wGx crY crY @@ -42878,8 +42878,8 @@ crY crY crY crY -sPt -wJr +mSd +omZ ctC aHb aBq @@ -42893,11 +42893,11 @@ aJX aMJ aNB cjy -kjq -vwd -dFc -cVB -jGS +luV +iIG +uwS +wFY +tan aWn aXI cjw @@ -42929,8 +42929,8 @@ bdL bdL ben beQ -qAm -qAm +iOo +iOo lcs aac aac @@ -42961,8 +42961,8 @@ hPr rNI bvE bvD -ttw -tqZ +uCA +lNm jWs jWs jWs @@ -42985,8 +42985,8 @@ jWs jWs jWs jWs -gYG -gqd +unO +joh bvE bwt byr @@ -43053,31 +43053,31 @@ acX acX hGO xdE -jnl +kxk xdE wGx wGx -wYJ +tlv aiH wGx -qEK -ibr -gGi -gGi -ibr -xjs +cwg +vns +mxf +mxf +vns +qnp auC crY crY -uys -xpk +lvI +xXH att crY -mWo +tmr bZV ctC -iwt -wEq +pZY +upb ctC aDN aER @@ -43088,10 +43088,10 @@ aJY nms aMK cjy -kjq -xdo -dFc -vFC +luV +nBK +uwS +tkr cnB cjw cjw @@ -43113,8 +43113,8 @@ aac aac aac mfp -fZx -fZx +xih +xih cwT beW bea @@ -43124,7 +43124,7 @@ bdL bdL bxy ben -qAm +iOo kZU lcs aac @@ -43156,8 +43156,8 @@ rNI rNI xTU bvD -ttw -uwu +uCA +kYs vqx jWs jWs @@ -43180,8 +43180,8 @@ jWs jWs jWs jWs -xdN -gqd +oVT +joh kkL bvE bwt @@ -43248,31 +43248,31 @@ acX acX hGO xdE -gKN -fLN -iDT -mbc -lhA -lhA -hjW -vLt -abn -oxO -eRc -qhQ -nVC +phV +laK +lPp +mzU +sep +sep +cHa +cRe +jpd +dFg +kXY +iBi +xkV wGx crY aqg -sSY +kwx asf atu aLl cbj bZW ayo -gKs -itA +lNA +ogD ctC aDO aER @@ -43284,11 +43284,11 @@ ciA ciA ciA aQu -mLt -dFc -cVB -kjq -ngt +vNi +uwS +wFY +luV +jOa aXJ cjw aac @@ -43302,15 +43302,15 @@ aXP aXP aXP aWp -xVJ -fBN -krY +lJg +wUF +nZl aac aac mfp -qLi +wMs ioM -ppr +nHc beY ben bea @@ -43319,8 +43319,8 @@ bdL bdL bdL bjL -qAm -qAm +iOo +iOo lcs aac ble @@ -43351,8 +43351,8 @@ bvE bvE bvE bvE -ttw -hmT +uCA +rKM jWs jWs jWs @@ -43375,8 +43375,8 @@ jWs jWs jWs jWs -vvC -gqd +doy +joh bvD bvD bvE @@ -43442,32 +43442,32 @@ jbI bDE acX hGO -wrD +bLm bID xdE -lhA -lhA -lhA -lhA +sep +sep +sep +sep xdE xdE -ecD +vYp xdE -xIA -xST -enQ +lCu +ugw +tQz xdE crY crY -vVw +oJb bXe atv crY -ofP +lKw bZV -sOH -dhN -xxF +hVR +wek +mFZ ctC aDO aER @@ -43478,10 +43478,10 @@ cjy ciA ciA aNM -kjq -xdo -dFc -lLq +luV +nBK +uwS +vgX cnB aPh aXE @@ -43497,15 +43497,15 @@ aXP aXP aWp aWp -nUD +lsU bRf cbu aac aac mfp -skr -kzv -ppr +yei +fyE +nHc beZ bfr bea @@ -43546,8 +43546,8 @@ bvE bvE bvE bvD -ttw -gaN +uCA +rqJ jWs jWs jWs @@ -43570,8 +43570,8 @@ jWs jWs jWs jWs -cLj -gqd +ldI +joh bvD bvD bvE @@ -43637,29 +43637,29 @@ aac jbI bDE hGO -wrD +bLm bID xdE -eTw -mlf -jis -lhA +eRR +woO +ljk +sep xdE -wKZ -bSs -ebE -bSs -ebE -mSh -ebE +riQ +mLX +jMq +mLX +jMq +lCl +jMq crY crY bXY -xas +trk bXY crY ctC -rnO +gCv ctC azO ctC @@ -43673,11 +43673,11 @@ aJZ ciA ciA aNN -kjq -wHb -dFc -cVB -jGS +luV +dAI +uwS +wFY +tan aLq aXK cjw @@ -43692,13 +43692,13 @@ aZP glL aac aZJ -nUD +lsU bRf cwT mfp mfp cuz -knQ +lpb isa cwT ocw @@ -43741,8 +43741,8 @@ bvE bvE bvD bvE -ttw -tqZ +uCA +lNm jWs jWs jWs @@ -43765,8 +43765,8 @@ jWs jWs jWs jWs -gYG -gqd +unO +joh bvE bvE bwt @@ -43832,46 +43832,46 @@ aac aac jbI bEh -wrD +bLm bID xdE xdE xdE xdE -rLi +vUv xdE -ecx -lgA -iuY -lgA -iuY -thu -vtJ +dpj +nHb +ygZ +nHb +ygZ +qEv +scW crY -xGJ +inf arj ash atw ctC emg sJd -sOH +hVR cbj aBu -mwd +sFv oLv aER aMT aNo aNB cnB -gvN -hVB +vGF +uDR cjw cnB -jkQ -gWr -cVB +gGw +oDI +wFY cnB cjw cjw @@ -43887,18 +43887,18 @@ aZP glL aac aac -clj +ouO bRg cbO -mpe -hle +kur +qhD cuA -jZw -qJV -gEC -msl +qsn +fdL +hjo +iFM cbO -wJf +oPZ bgq bea bdL @@ -43936,8 +43936,8 @@ bvD bvD bvD bvE -ttw -uwu +uCA +kYs jWs jWs jWs @@ -43960,8 +43960,8 @@ jWs jWs jWs jWs -qFF -cwg +hEt +luq bvE byr kBL @@ -44028,22 +44028,22 @@ aac aac aac cfr -wuj +iXA bIK bIK bIK -qgy -fWM +stb +xWg xdE -ubk -nmF -oJK -nmF -mnT -oKb -ebE +fZD +pen +dqs +pen +ksE +vlY +jMq crY -tfW +npc arj ash atx @@ -44053,17 +44053,17 @@ awN ctC cbj aBv -mwd +sFv ciA aER aMU aNo aOz -ugo -cVB -cVB -wNJ -hLu +oLm +wFY +wFY +tVe +nLv aPa aRF aLq @@ -44090,10 +44090,10 @@ cmq cbO cbO iuB -gOE +gUz ofd -eve -sfH +gpk +vKC bha bha bhe @@ -44131,8 +44131,8 @@ bvD bvE bvD bvE -ttw -hmT +uCA +rKM jWs jWs jWs @@ -44155,8 +44155,8 @@ jWs jWs jWs jWs -vvC -gqd +doy +joh bvD bvE bwt @@ -44228,40 +44228,40 @@ cfr cfr cfr cfr -qQW +mai xdE -jrd -ebE -bSs -ebE -bSs -nBR -vtJ +uJe +jMq +mLX +jMq +mLX +bFk +scW crY crY arj bXf bXZ -lpB +siw avC bPs ctC azP aBw -mwd +sFv ciA aER aMS aNo aOB -ugo +oLm aLq aML aNP -cVB -cVB -gWr -put +wFY +wFY +oDI +tPV cjw aac aac @@ -44280,15 +44280,15 @@ aac aac aac mfp -gok -deF -fPe -hrs -qJV -rzE -qJV +jpE +lJZ +dxA +hIf +fdL +ttk +fdL cbO -nUw +oqs bgq ben bdL @@ -44326,8 +44326,8 @@ bvE bvD bvE bvD -ttw -wOn +uCA +kqh jWs jWs jWs @@ -44350,8 +44350,8 @@ jWs jWs jWs jWs -cLj -gqd +ldI +joh bvD bvE bwt @@ -44423,26 +44423,26 @@ aac aac aac cfr -qQW +mai xdE -vPm -mTR -pkR -kKt -vCS -iqj -ebE -fVS +gsB +gfB +eAN +kLz +xEI +lNO +jMq +gHP ctC ctC -fjB +nug ctC ctC -eUF +hOJ ctC ayp -qQQ -qQQ +weE +weE ctC oLv aER @@ -44450,12 +44450,12 @@ aMS aNo aPX aKa -lcy +aFF cjw cjw cjw cnB -bQW +cxL cjw cnB aac @@ -44479,7 +44479,7 @@ mfp mfp mfp cbO -tNo +wQT mfp cwT cbO @@ -44521,8 +44521,8 @@ bvD bvE bvE bvE -ttw -tqZ +uCA +lNm vJj jWs ewk @@ -44545,8 +44545,8 @@ jWs ewk jWs jWs -gYG -gqd +unO +joh bvD bvE bwt @@ -44618,7 +44618,7 @@ aac aac aac cfr -qQW +mai xdE xdE xdE @@ -44626,11 +44626,11 @@ xdE xdE xdE aui -yci +gsP xdE xdE xdE -pNc +ffZ xdE xdE avE @@ -44645,13 +44645,13 @@ aMV aNo aOB cjw -cKo -cHi -pUR -gCV +jAV +lSd +lxV +gWv cjw -tCG -fjM +iAG +stx cjw aac bgh @@ -44673,11 +44673,11 @@ aac aac aac mfp -bNd -wBO -cTI +dnY +jIO +opG cbO -wfB +jpB bgs bea ben @@ -44716,32 +44716,32 @@ bvE bvE bvE xTU -ttw +uCA bJI -int -pUF -pKJ -uGh -int -pUF -pKJ -uGh -int -pUF -pKJ -uGh -int -pUF -pKJ -uGh -int -pUF -pKJ -uGh -int -pUF +moh +lsu +qRN +omc +moh +lsu +qRN +omc +moh +lsu +qRN +omc +moh +lsu +qRN +omc +moh +lsu +qRN +omc +moh +lsu bJI -gqd +joh bvD bvE bwt @@ -44813,21 +44813,21 @@ aac aac aac cfr -xEq -qgy -qgy -erK -qgy -qgy -qgy -erK -qnm -qnm -qnm -qgy -erK -qgy -ioZ +uWm +stb +stb +osG +stb +stb +stb +osG +pRC +pRC +pRC +stb +osG +stb +lRK avF avF ayq @@ -44840,13 +44840,13 @@ aMG aNo aOE cjw -nyl -crC -lcX -xnI -lZX -rov -qWP +wee +xZw +psi +plD +uVN +amS +qIp cjw aac aTV @@ -44867,12 +44867,12 @@ aZP aZK bgh bcz -ppr -wpJ -wBO -knQ -ppr -oVF +nHc +vhF +jIO +lpb +nHc +iyA bgt ben bea @@ -44911,32 +44911,32 @@ bvD bvD bvD bvM -mvG -oCx -oCx -oCx -oCx -oCx -oCx -jsC -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -oCx -mmQ +jhI +xQs +xQs +xQs +xQs +xQs +xQs +qKq +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +xQs +maO bvD bvE bwt @@ -45009,12 +45009,12 @@ aac aac cfr cfr -pwZ -pwZ +hVK +hVK xdE xdE -pwZ -pwZ +hVK +hVK cfr cfr cfr @@ -45037,7 +45037,7 @@ aOF cnB cjw cjw -gRb +mSM aPq cnB cjw @@ -45063,11 +45063,11 @@ aZK aZK bcz cbO -gDG -wBO -nAv +efL +jIO +vNW cbO -wfB +jpB bgs bea ben @@ -45219,7 +45219,7 @@ aac aac auv ciA -kXB +jzx aHB aZK bdx @@ -45230,7 +45230,7 @@ aZP aZP aUn aKb -iQK +xEj aMO cjA afS @@ -45243,14 +45243,14 @@ aQI aVi aQq aWy -emI -fJJ -olp -dZt +dhh +mBq +nQn +cLf cfR -pej -jiq -npB +fTH +weJ +hsd bIV aZP aZP @@ -45259,10 +45259,10 @@ bav bcA cwT cbO -fZx +xih lQT cwT -wfB +jpB bgu bhb ben @@ -45279,7 +45279,7 @@ aac aac aac vlH -cGp +jbt ble bme aac @@ -45439,13 +45439,13 @@ aQq aVv aac bwp -fJJ -fJJ -fJJ +mBq +mBq +mBq cfR -qlp -duc -gRp +pjR +psv +sIg cfR bav aZP @@ -45454,10 +45454,10 @@ aZP aZK bcW bdO -hvP -jPj -jPj -sns +eYN +ktK +ktK +fMG bgu bea bdL @@ -45492,9 +45492,9 @@ bdL bdL bdL xFH -jbk -vuu -exp +jld +avZ +tJO xFH aac bwt @@ -45634,12 +45634,12 @@ aTg aVP aac bwp -lgY -vbn +rZl +egq coB coB cfR -jlJ +pWL cfR coB baw @@ -45687,9 +45687,9 @@ bdL bdL bvu wGm -hnw +xkc npX -hnw +xkc qfC aac bwu @@ -45832,10 +45832,10 @@ bwp coB cfR cfR -san -hKa -lKY -ssc +iTQ +jgz +xeW +wna bIW coB baK @@ -45882,9 +45882,9 @@ bdL bdL bvv wGm -iDJ +xpk hUJ -iDJ +xpk qfC aac aac @@ -46025,14 +46025,14 @@ aDQ bhz bhz bkv -jeV -jRs -quA -gZC +tbT +rky +gAp +ort cqH cqH bIX -hvG +cYB bgh aZK aZP @@ -46077,9 +46077,9 @@ bhe bha bvx wAG -nzs +fHi oPz -gLm +ukI iNe aac aac @@ -46218,16 +46218,16 @@ bgh aac bwp bwp -oVl -swL -xWg -wDP +eEB +pGM +fEC +qJp buO bxs ctA -wDP -eGn -hvG +qJp +cqW +cYB bgh bbj aZK @@ -46272,9 +46272,9 @@ ben bea aac vxd -uFf +dXR hUJ -irm +rai vxd aac aac @@ -46412,18 +46412,18 @@ aTb aac aac bwp -iRm -quA -sOO +ejj +gAp +hTN cqH brv -ojj -hXD +erP +ueB coB -wfP -tZP +vUH +eGt coB -tcT +qUn coB bcd aZK @@ -46467,16 +46467,16 @@ bea aac aac wGm -dZW +mVh hUJ -goF +vsc qfC aac aac aac mfp -fZx -fZx +xih +xih ocw kkL bwt @@ -46607,19 +46607,19 @@ bgh aac aac bwp -pns -gZC +iJm +ort cwe -ojj -gJD +erP +tRg coB cfR cfR -xuL -sOO -itN -gLj -hvG +lba +hTN +jxR +qIB +cYB bcg aZK bdx @@ -46662,17 +46662,17 @@ aac aac aac wGm -dZW +mVh hUJ -goF +vsc qfC aac aac aac mfp -oMp -pDi -ppr +hLT +bmx +nHc kkL kkL bwt @@ -46802,19 +46802,19 @@ aac aac aac bwp -rhd -uoL +oEc +tWN bky bZj cfR cfR -eJb -sjN -uoL -tFK -opv -wDP -eGs +cWQ +rWM +tWN +jYc +ukH +qJp +eLR bch bcB bdy @@ -46857,17 +46857,17 @@ aac aac aac hYc -npg +gel hUJ -irm +rai hYc aac aac aac mfp -jTr -cxb -ppr +mgn +shk +nHc kkL kkL xTU @@ -46997,19 +46997,19 @@ aac aac aac bwp -rev -gZC +wpH +ort cwe -iRm -hvG -yeu -duc -fAX -opv -wgY -duc -gZC -jKt +ejj +cYB +iPP +psv +cMp +ukH +dNG +psv +ort +ltI aZK aZP aZP @@ -47052,16 +47052,16 @@ aac aac aac qfC -iDJ +xpk hUJ -goF +vsc rXy aac aac sgG mfp cbO -tNo +wQT mfp kkL xTU @@ -47141,9 +47141,9 @@ aac aac cmo cmp -edZ -reu -kHd +mbp +dGk +pOQ cmo anb aoA @@ -47169,10 +47169,10 @@ ccd ccd bYJ ccd -iEQ -hQD -mau -rlC +etE +bNd +yaC +vIu aKk bbj bbj @@ -47192,19 +47192,19 @@ aac bwp bwp bwp -nGD -cJj +caD +sOa csm -bYM -hvG -pnR -duc -kCx -duc -duc -duc -gLj -hvG +tdg +cYB +dWl +psv +ryC +psv +psv +psv +qIB +cYB bdQ bgh bbj @@ -47247,16 +47247,16 @@ aac aac aac qfC -iDJ +xpk hUJ -rju +sKy qfC aac aac sgG -gQu +rmU ubN -iDJ +xpk sgG nJK bxy @@ -47336,10 +47336,10 @@ aac aac cmo dOG -oXg +kfQ juY -rId -pOA +cUX +sdt anE amj amj @@ -47355,19 +47355,19 @@ aac aac aac adS -gER -nxt -gER +bKF +wuQ +bKF vPi -jkN +iMy asj -ran +uOn cuP uKj -ihJ +teY kcw kcw -rlC +vIu aKk bbj bbj @@ -47385,20 +47385,20 @@ aac aac aac bwp -lLK -vZl -gRp -hXD +joo +wDw +sIg +ueB cwe -kyZ -hvG -tzI -duc -kCx -dmE -mmE -cBO -lJC +mbv +cYB +woT +psv +ryC +cSO +uSx +piS +gxE bIV bgh bgh @@ -47412,13 +47412,13 @@ tIl aac bhS dOO -iPV -uJM -iPV -pWb +wnm +llP +wnm +nLX dOO eMZ -jUV +iyS dOO dOO boG @@ -47442,16 +47442,16 @@ aac aac aac nmS -dnn +jJX hUJ -goF +vsc rXy aac aac sgG -vmF +lmS lrd -iQU +cLR sgG nJK bea @@ -47531,9 +47531,9 @@ aac aac cmo cmp -rId +cUX juY -rId +cUX cmo anN aoA @@ -47550,19 +47550,19 @@ aac aac aac adS -jiJ -jiJ -jiJ +oce +oce +oce aqj -jkN +iMy jyO -rlC +vIu cuP cuP -hfA +rQl kcw kcw -rlC +vIu aKk bdA bbj @@ -47580,16 +47580,16 @@ aac aac aac bwp -wLy -gNz -hWq -lCd +tMp +kSi +hGK +ugd csm -hrB +tOJ coB bwp -uZv -sOO +cSy +hTN bwp bwp bwp @@ -47607,14 +47607,14 @@ tIl aac aac rOB -hsN -uGm -iZz -hsN +cHW +kVW +iUj +cHW dOO -wyO +eQm qKx -xRg +kzw sbW boG blJ @@ -47637,16 +47637,16 @@ btq jww tWY hYc -npg +gel npX -irm +rai hYc sgG sPc xDu -eTy +iQw ubN -iDJ +xpk sgG nJK nJK @@ -47726,9 +47726,9 @@ aac aac cmo gDg -rId -rId -ohN +cUX +cUX +wTq cmo anb amj @@ -47745,19 +47745,19 @@ aac aac aac adS -mNX -lDq -mNX +jVo +tRz +jVo vPi -jkN +iMy asl -wTf +hnm cuP cuP -ran -rlC -rlC -rlC +uOn +vIu +vIu +vIu aKk bgh bbj @@ -47778,13 +47778,13 @@ bwp coB bcI coB -oST +iAV cwe -hhZ +pQP cfR cfR -wfP -tZP +vUH +eGt bwp aac aac @@ -47802,14 +47802,14 @@ tIl aac aac rOB -iZz -pdk -iZz -iZz +iUj +nVS +iUj +iUj dOO -vPf +xHi opg -vPf +xHi dOO boH blJ @@ -47830,17 +47830,17 @@ btv btv btv btv -raI -xjq -nzs +kYD +tzb +fHi oPz -rgj -kMd -lHq +cRA +nzn +qII sgG sgG vxd -vUL +scT vxd sgG nJK @@ -47945,12 +47945,12 @@ pRj vPi aqk ark -pQC -kxA +oyE +vJb cuP cuP -ran -rlC +uOn +vIu aIz aJp aKl @@ -47972,14 +47972,14 @@ aac aUn cqr cqQ -hvG -oST +cYB +iAV csm -tfh +urX coB bZj -gZC -sOO +ort +hTN bwp bwp bwp @@ -48002,9 +48002,9 @@ aac aac aac rOB -oKU +kAv khh -vPf +xHi dOO boI bpw @@ -48025,7 +48025,7 @@ btv btv btv btv -lui +hgx qot qot fIG @@ -48033,8 +48033,8 @@ vwC cAt cAt iBM -eix -rfP +ulf +uhR qfC vye sgG @@ -48117,7 +48117,7 @@ aac cmo cmo wYx -hLU +gEh uNi cmo anb @@ -48140,12 +48140,12 @@ pRj vPi aql ark -jkN -vcI +iMy +aJt cuP -ran -ran -rlC +uOn +uOn +vIu baT bfa bbj @@ -48167,16 +48167,16 @@ bgh aUn cqr cqQ -hvG -oST +cYB +iAV cwe -nKP -szw -fYM +oME +hYI +nAE cqH csm bGa -fqR +eNX bwp aac aac @@ -48220,18 +48220,18 @@ aac aac btq btq -raI -iDJ -iDJ +kYD +xpk +xpk hUJ -goF -iDJ -iDJ +vsc +xpk +xpk hUJ -goF -tpD -tpD -ksr +vsc +uAh +uAh +ctT eqO nJK bxy @@ -48312,7 +48312,7 @@ aac cmo tEC wYx -ohN +wTq wYx cmo anb @@ -48330,17 +48330,17 @@ aac aac aac adS -lOW -xPG -pGx +qBy +iLw +ugQ aqm ark -jkN -kxA +iMy +vJb cuP -ran -rGa -eWf +uOn +hgF +cUo baU aJV aZK @@ -48362,16 +48362,16 @@ bdA aUn cqr aVZ -hvG -oST +cYB +iAV bkz -iar -uQb -wDP +sqK +nDI +qJp ctA bAM bGb -iiE +wHg bwp aac aac @@ -48417,17 +48417,17 @@ aac jww tWY kOr -dZW +mVh hUJ -goF +vsc gRO -iYr +eJA hUJ -goF -iDJ -iDJ -dZW -kKn +vsc +xpk +xpk +mVh +hDN bjL bdL bdL @@ -48525,15 +48525,15 @@ aac aac aac mIE -xkU -eqI -qlk -fyB +wCU +vfn +mdi +enk arm -fmJ -ide +oja +evv auw -qFr +lIU aHj bcB aIC @@ -48557,15 +48557,15 @@ tWf aUx cqr cqQ -vYB -wGr +okh +sHi cwe -mBx +uSZ bwp bwp bwp cfR -uTo +kAw bJG bwp aac @@ -48612,17 +48612,17 @@ aac aac aac ibH -dZW +mVh hUJ -goF -tpD -iDJ +vsc +uAh +xpk ava oVR qot qot qot -lLS +cVb bxc bxc bxc @@ -48720,15 +48720,15 @@ aac aac aac amu -fLP -ifI -hNT -fiR +chE +lCE +hFD +fBs arn -jkN -kxA +iMy +vJb ukx -ran +uOn aHu aZP aZP @@ -48752,10 +48752,10 @@ aTe vgn aVl bcL -uQb -lVR +nDI +fAv bkA -piq +itd bwp aac aac @@ -48807,17 +48807,17 @@ sgG sgG aac oeH -lgV +uNV tJp -exA -tpD -dZW -iDJ -goF -iDJ -kyz -dZW -lLm +xfi +uAh +mVh +xpk +vsc +xpk +vZQ +mVh +gdO bxd bdL bdL @@ -48915,15 +48915,15 @@ aac aac aac adS -qUb -uSp -fRe -fiR +msh +kLo +ctM +fBs arn -jkN -vcI +iMy +aJt ukx -ran +uOn aHu aZP aZK @@ -48948,8 +48948,8 @@ axb aVm bcM coB -tcT -hdv +qUn +gPk bwp bwp aac @@ -48990,28 +48990,28 @@ bsu aac aac aac -eEv +dkx btv btq xre aac sgG -uAm -fjU -tpD +jKd +xJq +uAh vxd vxd vxd mpr -kac +qXS vxd vxd -cqx -tpD -fYW -tpD -tpD -ksr +dGE +uAh +gaa +uAh +uAh +ctT lTG ben bdL @@ -49110,17 +49110,17 @@ ccd ccd ccd adS -amE -amE -amE +ilZ +ilZ +ilZ aqp -eJn -yiD -kxA +wcf +vYo +vJb bYK -ran -rzl -gMo +uOn +myc +svh aWd aZP aZP @@ -49182,26 +49182,26 @@ blJ bqE bmp bsN -hlv -gvs -tiT +hTm +oZR +xyL btq btq btq btp aac sgG -lkW -nxg -tpD +rON +rZm +uAh vxd -jxY -heE -xVj +kMA +xlc +dJm epm -njV +nkN sgG -qYJ +urv qfC riY cGg @@ -49303,19 +49303,19 @@ aac aac aac bGo -abx -wMN -tOu -mqL -tOu -wMN -tOu -mqL -gPD +dFd +cSI +fDl +vNm +fDl +cSI +fDl +vNm +gYX urM -ran -ran -rlC +uOn +uOn +vIu aSL aJW aZK @@ -49377,24 +49377,24 @@ blJ bmp bmE bsN -vBq +guZ uul -uwP +eSI btp btq btv btp aac sgG -vUL +scT vxd vxd vxd -wOo -tpD -tpD +jmY +uAh +uAh hUJ -nmf +tTD vxd bvq qfC @@ -49509,8 +49509,8 @@ ras cuP ukx cuP -ran -rlC +uOn +vIu aIG aVp aKs @@ -49572,28 +49572,28 @@ bpA bqF brh brU -pyZ +jsi gAv rjG -lKV -fcd -lKV -vZa +rZq +pDC +rZq +nme aDQ wio -gLm -nzs -nzs -jUt -wbL -tpD -tpD +ukI +fHi +fHi +nqo +qhk +uAh +uAh hUJ -kWr +nre vxd vxd -vUL -vUL +scT +scT vxd sgG sPc @@ -49699,15 +49699,15 @@ anw bJJ bJJ bJJ -ran +uOn cuP cuP ukx cuP -nYq -rlC -iOv -iOv +res +vIu +xHy +xHy ccV jjJ ccd @@ -49718,9 +49718,9 @@ baw bbj aac aac -ijx -rlC -rlC +ktm +vIu +vIu aSL aZP aZP @@ -49750,9 +49750,9 @@ aac bfg bgJ xdr -teF +wOW jVg -nZi +jLt okE aac aac @@ -49767,29 +49767,29 @@ bmp bmE bmp bsN -vBq +guZ tWJ lbh lbh lbh lbh -xou +jJJ aac sgG -xuh -tpD -iDJ -gDO -iDJ -iDJ -iDJ -hQB -hRE +uQt +uAh +xpk +nDk +xpk +xpk +xpk +jOk +vhu vxd -pJg -iDJ -iDJ -fgs +fRc +xpk +xpk +ovk sgG aac aac @@ -49888,34 +49888,34 @@ aac aac aac nkp -eqG -ran -pEh -seE -eqG -eqG +tam +uOn +wpJ +kTc +tam +tam cuP cuP cuP -oxX -ran -ran -ran -mau -tYh +mLz +uOn +uOn +uOn +yaC +ujk jjJ jjJ jjJ -vSh +mGv cfX aIN baw aPs aac aac -lKN -ran -rlC +uqK +uOn +vIu aac aWy aZK @@ -49945,9 +49945,9 @@ aac bfg bgI xdr -teF -tof -tyO +wOW +soI +lPL okE aac aac @@ -49962,29 +49962,29 @@ bmp vXt bmp bsN -vBq +guZ lbh lbh lbh lbh lbh -xou +jJJ aac sgG -goF -tpD -lHD +vsc +uAh +fHM vxd -hLL -hLL +ork +ork uph -lob +iNU vxd vxd -iDJ -tpD -tpD -uNV +xpk +uAh +uAh +fXq sgG aac aac @@ -50089,28 +50089,28 @@ bJJ aov bJJ bJJ -ran +uOn cuP cuP -oxX -ran -ran -ran -ran -hFU -tKs -pyK +mLz +uOn +uOn +uOn +uOn +kgg +hYf +uev jjJ -cDN -cDN +wkZ +wkZ jjJ -jwr +vUY jjJ ccd ccd jjJ -ran -rlC +uOn +vIu aac aac aTi @@ -50134,13 +50134,13 @@ aac aac aac fil -rlC -rlC +vIu +vIu bfe bfc bgI xdr -ryE +lBd hPK hYl okE @@ -50157,29 +50157,29 @@ bmp bnu bmD bsN -vBq +guZ lbh lbh lbh twa hLf -vrY +hnP aac sgG -goF -tpD -iDJ -dCy -uDg -aew -dgU -iDJ -jDC -kqQ -iDJ -tpD -tpD -loQ +vsc +uAh +xpk +ria +oUW +aTd +lkF +xpk +pqD +eoW +xpk +uAh +uAh +fDb sgG aac aac @@ -50287,25 +50287,25 @@ kcw cuP cuP cuP -oxX -ibt -ran -ibt -ran -hFU -tKs -uFn +mLz +vIO +uOn +vIO +uOn +kgg +hYf +oHr aEW -ran -ran -tzM -ran -xSx -uFe -lrM +uOn +uOn +vOa +uOn +lqc +ygp +ppd jjJ aQK -rlC +vIu aac aac bgh @@ -50326,17 +50326,17 @@ aZK axb ccs ccs -hZa +sMD cuP -uYJ -rlC -lFP +mXY +vIu +wYr bff bfc bgI xhM xnn -pvQ +flv xdr czb aac @@ -50352,29 +50352,29 @@ blJ bmp bmE bsN -dsw -cZA +vBn +cRU lbh lbh -cZA -cZA -bJr +cRU +cRU +pli aac sgG -goF +vsc fNH -jmW -tpD -tpD -tpD -tpD -tpD -cuQ -tpD -tpD -tpD -tpD -loQ +fXM +uAh +uAh +uAh +uAh +uAh +sgz +uAh +uAh +uAh +uAh +fDb sgG aac aac @@ -50473,34 +50473,34 @@ aac aac aac ccd -pRA -aAA -qFr -evi -qFr -aAA -qFr +xCx +wAM +lIU +qKG +lIU +wAM +lIU cuX cuX -obr -ran -ran -ran -ran -hFU -xkW -ibm +lOw +uOn +uOn +uOn +uOn +kgg +xZj +pPs jjJ -bLQ +cWO aHk arm aKi arm arm -eFm -mVl +gKO +xaT fBC -rlC +vIu aac aac aac @@ -50521,11 +50521,11 @@ aac aDd ccs ccs -hZa +sMD cuP -ran -rlC -bMc +uOn +vIu +mKc bfd bfc bgI @@ -50548,28 +50548,28 @@ blJ tQg brW bsn -taR +jQS lbh -uwP +eSI vxd vxd vxd sgG sgG -cJZ +jED sly uLK -tpD -tpD -tpD -tpD -tpD -tpD -tpD -tpD -tpD -tpD -plB +uAh +uAh +uAh +uAh +uAh +uAh +uAh +uAh +uAh +uAh +sjh sgG aac aac @@ -50670,37 +50670,37 @@ ccd ccd ccd adS -amE -amE -amE +ilZ +ilZ +ilZ aqp -uHQ +ryJ cuP cuP -oxX -ibt -ran -ibt -ran -hFU -eoG -tAO +mLz +vIO +uOn +vIO +uOn +kgg +tIn +fDK jjJ -wzQ -oxX -ran -cAc -kEU -eTg -xki +uMc +mLz +uOn +npr +fba +jYQ +mLV jjJ aQK -rlC -mYM -puG +vIu +kkx +nsu aWr -rlC -rlC +vIu +vIu aSL aZK aZP @@ -50709,18 +50709,18 @@ aZP aZP aZP aUz -rlC -rlC +vIu +vIu aac aac aac -ljk -ljk +xbw +xbw cmX cuP -ran -rlC -bMc +uOn +vIu +mKc bfg bfc bgJ @@ -50743,28 +50743,28 @@ blJ blJ tQg bsN -taR +jQS lbh -uwP -sYn -jEU -cyA -jkT -qXU -ieh -xYt -qEf -fOF -fOF -fOF -fOF -nzs -qFV -qFV -qFV -fOF -pcf -dDg +eSI +jeS +eOs +hlS +lsx +uOl +jeN +fEh +eeC +yaM +yaM +yaM +yaM +fHi +wOd +wOd +wOd +yaM +rtG +lGI sgG aac aac @@ -50865,37 +50865,37 @@ aac aac aac adS -inB -xVX -krQ -fiR -ran +gUb +nLz +wIH +fBs +uOn cuP cuP -oxX -ran -ran -ran -ran +mLz +uOn +uOn +uOn +uOn jjJ jjJ jjJ jjJ jjJ -jFc +aOV jjJ jjJ jjJ jjJ jjJ jjJ -ran -ran -cDN -cDN -cDN -ran -rlC +uOn +uOn +wkZ +wkZ +wkZ +uOn +vIu aWe bed aZP @@ -50904,18 +50904,18 @@ aYi aRR aRR aZe -rlC -lho +vIu +ifu aac ccd cmX fBC -dMp -qZb +rAc +uWS cuP -ran -rlC -bMc +uOn +vIu +mKc bfd bfc bgJ @@ -50938,28 +50938,28 @@ blJ blJ blJ bsM -pzH +oWg lbh -uwP +eSI vxd mpr vxd vxd vxd -dcw -tpD -iDJ -fKL -rhA -ved -dCX -qsB -oSz -fMC -mbk -ved -ved -eBf +jBc +uAh +xpk +hCo +qsX +kQo +pxm +vzl +lKH +fcp +hDq +kQo +kQo +gTL sgG aac aac @@ -51060,57 +51060,57 @@ aac aac aac mIE -fWt -lcx -gSx -djF -evi +uQp +xVX +nDB +unR +qKG cuX cuX -obr -vaO -ran -jQA -ran -wvD -ran -tzM +lOw +bKM +uOn +fjT +uOn +hWD +uOn +vOa aEX aGi ukx cuP -rlC -lev -ibt -lev -rlC +vIu +kMd +vIO +kMd +vIu cuP cuP cuP aUF cuP -ran -rlC +uOn +vIu aSL aZP aZP bdw aYj -ijx -rlC -rbZ -rlC -dZC +ktm +vIu +jfg +vIu +sBp aXG -pST -dMp +iyK +rAc fBC -dMp -qZb +rAc +uWS cuP -ran -rlC -lAU +uOn +vIu +bOQ bfh bfc bgJ @@ -51135,15 +51135,15 @@ blJ brW tSi lbh -uwP +eSI jIz -iDJ -fpu -iDJ -iDJ -goF -cuQ -iDJ +xpk +cas +xpk +xpk +vsc +sgz +xpk myk pbF efR @@ -51255,57 +51255,57 @@ aac aac aac bUd -ybI -aIq -iyg -uEI -ran +fBJ +sag +kZQ +nKe +uOn cuP cuP -oxX -ran -ran -ran -ran -ran -ran -ran +mLz +uOn +uOn +uOn +uOn +uOn +uOn +uOn cuP cuP ukx cuP -fjw +sai nZR jjJ nZR -uHQ +ryJ cuP cuP cuP ukx aWs -eqG -cOp -jnO -jCX -jCX -wYi -fvJ -rlC -ran -oxX -ran -ran +tam +pOx +hAt +izF +izF +dXG +xwQ +vIu +uOn +mLz +uOn +uOn aac bYJ -lka +vHR bNS -pfE -pfE +hTy +hTy cuX -vXK -iie -rlC +cuo +fpr +vIu bfi bgi bgN @@ -51330,23 +51330,23 @@ blJ blJ wfv lbh -uwP -gDO -iDJ -tpD -tpD -tpD -ule -tpD -ftu +eSI +nDk +xpk +uAh +uAh +uAh +wen +uAh +yfi vxd pJz erq erq hkn -tpD -tpD -sat +uAh +uAh +quR pJz erq pZe @@ -51454,7 +51454,7 @@ adS adS adS adS -uHQ +ryJ cuP cuP fzz @@ -51469,41 +51469,41 @@ cuX cuX cfZ cuX -evi -iwC -vqN -iwC -evi +qKG +nfG +oBy +nfG +qKG cuX cuX aTn urM sMj aYm -mrR -ran -ran -ran -oxX -ran -ran -ran +dbC +uOn +uOn +uOn +mLz +uOn +uOn +uOn ukx cuP cuP -dMp +rAc bNR bSa bNR bJJ bNR cuP -oxX -ran -rlC -rlC -rlC -tGK +mLz +uOn +vIu +vIu +vIu +qNs bhk bfd bfc @@ -51525,15 +51525,15 @@ blJ blJ wfv lbh -uwP -gDO -iDJ -kEf -iDJ -iDJ -iDJ -iDJ -cNo +eSI +nDk +xpk +xYS +xpk +xpk +xpk +xpk +tDI vxd ulL xLH @@ -51649,7 +51649,7 @@ aac aac djW djW -tdj +guM tqG cuP cuP @@ -51664,11 +51664,11 @@ cuP cuP cuP cuP -fjw +sai nZR jjJ nZR -uHQ +ryJ cuP cuP cuP @@ -51686,19 +51686,19 @@ cuX cfZ cuX cuX -pfE +hTy bNS -dZi +sPQ fBC -dMp +rAc cna cuP fzz -qFr -qFr -qFr -qFr -nIM +lIU +lIU +lIU +lIU +elT bhr bkI bfd @@ -51720,23 +51720,23 @@ blJ bsu vnV lbh -uwP +eSI doO vxd vxd -qtm +jtp vxd vxd -hLL -hLL +ork +ork sgG sgG sgG sgG sgG -yix -gFs -wJK +vyJ +pWf +mSe sgG sgG sgG @@ -51844,26 +51844,26 @@ aac aac djW djW -mXZ +whJ gCa tqG cuP cuP cuP -iNx -iNx +aQU +aQU cuP cuP -iNx -iNx +aQU +aQU cuP cuP cuP -rlC -lev -ibt -lev -rlC +vIu +kMd +vIO +kMd +vIu cuP cuP cuP @@ -51892,8 +51892,8 @@ cuP cuP cuP cuP -ran -ayy +uOn +jCt bhs bgi biE @@ -51913,13 +51913,13 @@ blJ blJ blJ bsM -eZf +vaU lbh -uwP -sYn -dVw -nzX -nzX +eSI +jeS +omF +wvN +wvN vxd aac jrw @@ -51929,9 +51929,9 @@ lmV lmV lmV sgG -vUL -vUL -vUL +scT +scT +scT ghi lmV lmV @@ -52039,25 +52039,25 @@ djW djW djW aAR -heb +pyx tqG tqG tqG cuP cuP -hFU -hFU +kgg +kgg cuP cuP -hFU -hFU +kgg +kgg fAb cuP aIQ oKo -iCN -iCN -iCN +sTj +sTj +sTj oKo oKo ras @@ -52076,24 +52076,24 @@ cuP cna cuP cuP -dMp +rAc fBC -dMp +rAc fBC -dMp +rAc fBC cuP fAb cuP cuP cuP -ran -ayy -rlC -rlC -rlC -sax -sax +uOn +jCt +vIu +vIu +vIu +vrj +vrj aac koj koj @@ -52108,13 +52108,13 @@ blJ blJ blJ bsN -taR +jQS lbh -uwP -sYn -kDH -inS -jll +eSI +jeS +tFX +gXr +xbS vxd aac uiE @@ -52234,18 +52234,18 @@ djW djW aAR aAR -mXZ -heb -dVW -hWw -xoQ -ran -hFU -gJm +whJ +pyx +tdR +tPy +mOh +uOn +kgg +oyT tsX tsX -vtF -hFU +ugR +kgg cuP lqD aIQ @@ -52253,7 +52253,7 @@ oKo aLF dgB dgB -xBU +oyP oKo aRV ras @@ -52271,7 +52271,7 @@ cuP bxJ cuP cuP -dMp +rAc bOj bSD ccH @@ -52282,13 +52282,13 @@ fAb iUw mjJ cuP -ran -oxX -cOp -ran -ran -tOe -ran +uOn +mLz +pOx +uOn +uOn +dnO +uOn aac aac aac @@ -52303,13 +52303,13 @@ bmE blJ bmp bsN -pzH -qDc -sWL +oWg +wFz +tXT vxd vxd -hLL -hLL +ork +ork vxd aac pYM @@ -52454,8 +52454,8 @@ blb blb bfv blb -miK -tnW +hCq +rzR blb bfv blb @@ -52464,13 +52464,13 @@ blb blb blb vlm -tTv -wCb -klU +sYX +tQW +jSf itw -hPu -wcL -xeR +mio +tix +aVC fBC cuZ cuP @@ -52484,8 +52484,8 @@ cuP syU uKj btH -rlC -xbY +vIu +xkt aac aac bmr @@ -52612,7 +52612,7 @@ aac aac aac bLj -sLa +oZp ayv ayw aHh @@ -52638,34 +52638,34 @@ aDZ dgB dgB oKo -oPV -hWc -lXT -wRq -wRq -kaq -jOP +oDi +gLv +nos +nwh +nwh +wNp +cBJ aRW aTp -vHF +nrQ blb -sLT -vXr +eDh +fsx blb bfw bhV bkO -bHZ -bFK +nSg +gUk blb -yiP -saO -eRr -thC -aLE -lKN -krl -xeR +uyP +kZV +lBo +wxS +pvh +uqK +cUt +aVC fBC cuP fBh @@ -52679,8 +52679,8 @@ cuP syU uKj qMH -ojI -ran +fXL +uOn aac aac bmu @@ -52792,7 +52792,7 @@ aac aac rKG rKG -cPU +iQA rKG rKG aac @@ -52807,7 +52807,7 @@ aac aac aac bLj -sLa +oZp ayw azZ awJ @@ -52825,44 +52825,44 @@ djW djW wmZ dgB -ogR -sAE +hne +mCJ aPH aPH -eiH -ogR +uKC +hne dgB oKo -wRq -jEH -jEH -jEH -ruS +nwh +qJU +qJU +qJU +bUB blb blb blb bfx bfx blb -gMw -hWR +jph +xFk blb bfx bfx blb blb -jKG +dmB blb -pFv -mWq -xCS -pMs -aLE -ezf -krl -lrt +cWl +wwr +tzG +jlw +pvh +gNJ +cUt +dQG fBC -dMp +rAc fBC iZI cuP @@ -52874,8 +52874,8 @@ cuP rdm qTD nZR -cMz -ran +oPD +uOn gEo aac bmy @@ -52986,9 +52986,9 @@ aac aac aac rKG -nxW -oFY -gsl +vdN +ejx +kkb rKG aac aac @@ -53002,7 +53002,7 @@ aac aac aac bLj -sLa +oZp awA ayw awJ @@ -53020,44 +53020,44 @@ aHh awJ avL dgB -ogR -ogR +hne +hne dgB dgB -ogR -ogR +hne +hne dgB -tTR -wRq -jEH -jEH -jEH -keB -kQg -vAX -rNS +cuN +nwh +qJU +qJU +qJU +geg +veZ +mgT +gZX bfy bfy -vLa -gMw -hWR -vLa +ejQ +jph +xFk +ejQ bfy bfy -vLa -pUG -fHt +ejQ +ejh +iEI vlm -qNb -mWq -xCS -saZ +vaA +wwr +tzG +vqJ vlm -ran -krl -uAM +uOn +cUt +iri cnb -owq +rfv fCE cuP cuP @@ -53069,8 +53069,8 @@ cuP syU nZR nZR -gTc -ran +qbN +uOn gEo blo bpw @@ -53181,9 +53181,9 @@ aac aac aac rKG -sOU -qes -hgy +stZ +fsV +kuc rKG aac aac @@ -53215,45 +53215,45 @@ ufG ufG avL dgB -wdr -wdr +tgM +tgM orc dgB -wdr -wdr +tgM +tgM dgB -gyK -lhm -qsJ -lRz -moU -keB -ruv -lJD +hHk +tFj +sxP +sbp +rLO +geg +wBh +eoO oKo blb bbq blb -miK -uuK +hCq +bfK blb blb blb blb -cNG -qcf -dZR -cUF -kld -xCS -ybk -fvj -ran -rlC -ibq -ibq -ibq -wpD +gtY +iYJ +vyS +dHi +pek +tzG +vll +egc +uOn +vIu +jQy +jQy +jQy +dmK cuP cuP cuP @@ -53262,10 +53262,10 @@ urM cuP cuP cuP -lMM -rlC -rlC -ran +dfV +vIu +vIu +uOn gEo blo bmA @@ -53376,9 +53376,9 @@ aac aac rKG brG -uSA -uSA -uSA +pQC +pQC +pQC brG rKG rKG @@ -53416,39 +53416,39 @@ irx dgB dgB irx -srO -gyK -dZP -cAZ -wRq -bQH -keB -ruv -pEp +hhT +hHk +rTt +qiy +nwh +cxi +geg +wBh +gst oKo -mbz -lmz -kuw -xAZ -ckt -oZu -jQw -ujs -emF -iMF -fud -ruc -qid -xCS -xCS -wze -hDw -ran -ran -ran -ran -rlC -ydU +sYI +skW +jrK +wTG +pPI +jBC +usd +rfj +qYz +sQG +wiv +elY +gxS +tzG +tzG +lXD +izM +uOn +uOn +uOn +uOn +vIu +eoS cuP cuP cuP @@ -53457,10 +53457,10 @@ ukx cuP cuP lqD -lMM -ran -ran -ran +dfV +uOn +uOn +uOn gEo blo bmA @@ -53476,7 +53476,7 @@ qfN eFA uiE gom -sUL +heI blJ bua uiE @@ -53604,53 +53604,53 @@ aAR djW djW aNu -fJy +fwZ aHv -fJy +fwZ szb -ogR -ogR +hne +hne oKo aNu aHv aUS -jEH +qJU dgB -bQH +cxi aOd -ruv -sOK +wBh +hRG oKo -wQF -vOy -vOy -vOy -ssm -vOy -vOy -rrt +ydR +pHz +pHz +pHz +frI +pHz +pHz +qtd ghV -kaM -nUW +lOA +rMj vlm -ilg -ybk -ybk -cKK +ugJ +vll +vll +olB vlm vlm vlm -ulB -ulB +jlR +jlR vlm vlm jhl -ran -eop -uRk -xBd -jPx -fAc +uOn +bip +wis +mFr +oKW +oky pRj pRj vtM @@ -53674,7 +53674,7 @@ uiE lcq bua uiE -qdI +oET bmp lmV lmV @@ -53798,59 +53798,59 @@ ayw aHh aHh aAR -gyK -sRV -xEx -eqg +hHk +wqp +gjB +xDS aHv -krX -krX +sWb +sWb aHv aHv -dus -uww -wRq +sax +yfg +nwh dgB -bQH +cxi aOd -wRv -vSz +jzH +nxV oKo -fVc -vOy -xav -dUR -dhm -xdH -vOy -mJw +xWZ +pHz +kJJ +ilY +tcm +qeX +pHz +qmJ vlm vlm -iLL +vWt vlm -trN -gzh -gzh +tEQ +pTP +pTP vlm vlm -omx -cXn -caO -mZf -esX -inV -wtC -rlC -ran -dMp -nAJ -dMp -dMp -peC -eDR -sWz -fZj -peC +hSn +ppE +woc +gMX +tIf +nnI +aEA +vIu +uOn +rAc +gSh +rAc +rAc +mMk +kYj +hod +sRg +mMk aGf aGL bmD @@ -53994,58 +53994,58 @@ awJ aAR aHh avN -xPi +sNI qcO dgB roI dgB dgB roI -jnM -bYO -jEH +rbd +owP +qJU dgB -wRq -hbC -jPI -tFR -tFR -mzw -vOy -vOy -vkk -gMw -hWR -ipc -vOy -syB -kOI -bMe -bMe -qby -vYM -ung -oxQ +nwh +eBh +mfb +qvn +qvn +bRM +pHz +pHz +cic +jph +xFk +pKc +pHz +uOS +teH +gqo +gqo +nVP +mQG +qJG +gaL vlm che vlm cdD -eux -qgU -cOZ -eqr +usH +gmz +bNC +rAR jjJ -lUp -ran -dMp -nAJ -dMp -dMp -peC -jiJ -lNq -dOx -peC +nzX +uOn +rAc +gSh +rAc +rAc +mMk +oce +oDs +hjF +mMk blp aGP bmE @@ -54062,7 +54062,7 @@ uiE pYM tCM cvn -wgu +lgI uiE bmp bmp @@ -54156,9 +54156,9 @@ aac aac rKG heO -uSA -uSA -uSA +pQC +pQC +pQC heO cpV tNr @@ -54170,7 +54170,7 @@ gOL gOL gOL bim -sLa +oZp awA awJ awJ @@ -54188,59 +54188,59 @@ awJ aHh awJ aAR -gyK -nZc +hHk +dId ayF ouB aBM cAw ouB ouB -rhS -xHD -lRz +cEa +sEM +sbp ouB -ezP -rQE -hln -bFR -bFR -pIM -vSo -vSo -dUR -yfm -jeN -dUR -vSo -pxI -bKI -wMw -wMw -wMw -vPv -gTv -osx -emy -jZI -emy +ccv +pZi +xzm +dbV +dbV +fkL +kea +kea +ilY +ogp +owd +ilY +kea +nXw +jSs +tuP +tuP +tuP +frt +rbt +lDN +miI +tkF +miI cdD -qLF +dwx vlm vlm vlm jjJ jjJ -eop -uRk -iSt -twW -gOs +bip +wis +ksD +vJC +kgu pRj pRj -fHg -xkU -peC +iFf +wCU +mMk bkU blq bmF @@ -54351,9 +54351,9 @@ rKG bUX rKG cpV -llW -vUr -mxG +shq +pNm +wCt cpV cpV cpV @@ -54365,7 +54365,7 @@ txs txs txs ccj -sLa +oZp awJ awJ awJ @@ -54384,61 +54384,61 @@ brT ayw brT aHv -xzC -kem -pbO +xLW +mvo +cMW dgB dgB dgB aEY aGp -dlv -quO -wRq +dfy +nmB +nwh dgB -bQH +cxi aOd -nxo -unh +ivN +cwy oKo -rrt -vOy -vkk -vkk -nJC -lim -vOy -fvI +qtd +pHz +cic +cic +azw +pQA +pHz +hYQ blb blb -eTI -iQx -rsK -wSR -fMo -fMo -pZv -dvM -fMo -hEi -ugA -uHK -kVL -uHK -uGe -ran -ran -nZy -uHg -qFr -ocP -fyB -odA -tdW -peC +lrK +olg +cSM +xQf +uNS +uNS +sFx +eED +uNS +jXH +lQj +mNa +eaI +mNa +xHm +uOn +uOn +wYT +qkA +lIU +kmz +enk +cgC +gLu +mMk bkU aGP -jEm +iqH bnC boa bpo @@ -54538,21 +54538,21 @@ cdo aOD acQ aam -oFY +ejx baH -jII -jvk -nBL -bFS -oFY -oFY -nBL -qpK -oFY -jvk -oFY -oFY -gyJ +byW +qJF +tBR +vhZ +ejx +ejx +tBR +gJK +ejx +qJF +ejx +ejx +uIW txs txs gOL @@ -54560,7 +54560,7 @@ gOL gOL txs ccj -sLa +oZp awA awJ ayw @@ -54583,50 +54583,50 @@ aHv oWQ aAj orc -lLc +rVU dgB aOa aJd aHv oKo -jEH +qJU dgB aMZ aOd -ruv -lJD +wBh +eoO wmZ -rrt -vOy -vOy -vOy -vZh -vOy -vOy -jVM +qtd +pHz +pHz +pHz +mCc +pHz +pHz +eFP blc -eET -vTy -tao -pWI -nmi -nmi -nmi -nmi -nmi -nmi -hZY -gTv -gzh +dWe +ntQ +gtk +vnc +eJq +eJq +eJq +eJq +eJq +eJq +meY +rbt +pTP cdG -gzh -uGe -ran +pTP +xHm +uOn qMF uJn xGi -ran -rkw +uOn +jtV pRj pRj adS @@ -54733,20 +54733,20 @@ ced cdo aam seb -gnr +gDp cdo rKG rKG rKG bUX rKG -oFY +ejx cpV cpV cpV cpV cpV -xRp +laC dWm dWm dWm @@ -54774,54 +54774,54 @@ awJ aAR aAR aHv -hvM +eJX ayF -mlg +gBt aBO -lLc +rVU ajW -jEH +qJU aGr -qox +ncb oKo aKx dgB aMZ aOd -ruv -jOf +wBh +pBw wmZ -ujs -vSJ -miK -vOy -ssm -miK -gUt -myv +rfj +bZr +hCq +pHz +frI +hCq +xGp +tQd blb -sDK +rZE bsz -nRq +rZy cdD vlm cdT -gzh -gzh -gzh +pTP +pTP +pTP cdG -vBQ -dEz -wan +nFm +pPO +kWC fWs -wan -uGe -ran +kWC +xHm +uOn cuY ukx ras cuP -wen +tEp xuE qTk aac @@ -54928,20 +54928,20 @@ ced ced cdo nfK -gnr +gDp cdo ced ced ced ced bUX -jQu +gvp fln ced ced ced cpV -xRp +laC cdA cdA cdA @@ -54971,55 +54971,55 @@ brT aHv axg ayH -moU -lLc -lLc +rLO +rVU +rVU dgB -jEH +qJU uWG -qox +ncb oKo oKo aLP -hbC +eBh aOd -ruv -iNi +wBh +qJd wmZ wmZ aUS -gCW -vOy -ssm -miK +jAD +pHz +frI +hCq blb blb blb -sDK +rZE blb -gzh -eGQ -xrq -ubt -ubt -fbc -ubt -gzh -vBQ -gTv -gzh +pTP +sfi +sli +mqA +mqA +lJW +mqA +pTP +nFm +rbt +pTP cdG -gzh +pTP vlm -lKN +uqK qOt uRy xJD cuP -nwv +lDg wsh iQS -jyR +bWz oxE aac blv @@ -55123,28 +55123,28 @@ ced cdo cdo aHz -qMK +eTc cdo cdo cdo ced ced rKG -oFY +ejx cpV cpV fln cpV cpV -lla +jeb cdA cdA -ssy -crK -crK -crK -diS -uKu +vkM +xIL +xIL +xIL +ctN +ptZ akR djW djW @@ -55165,58 +55165,58 @@ ayw ayw aHv axg -khJ -fsx -nVV -wgk -lLc -jEH +wqk +sEg +vFc +rET +rVU +qJU vBs -qox +ncb oKo oKo aLQ -hbC +eBh aOd -ruv -vAX -hSo -xkY -fGL +wBh +mgT +nwO +wMI +qBS anc aWL bbc aWL aWL -vTy -veI -hak -nAN -gzh -sEa -kce -ubt -ubt -ubt -ubt -gzh -rsK -cvQ -imJ -ofp -wIO +ntQ +tnu +ouz +lqe +pTP +eza +bCJ +mqA +mqA +mqA +mqA +pTP +cSM +fBe +dEc +dFW +eKc ghV -lKN +uqK qQq uRy xKD cuP -tRL +ygH wsh iQS -ran +uOn tmi -cJY +iFn blx bmI bnC @@ -55325,21 +55325,21 @@ cdo rKG rKG rKG -nBL -oFY -aRT -sRe -oAI +tBR +ejx +mVV +phQ +wfC cpV -xRp +laC cdA -rlR -fOy -fOy -fOy -fOy -rrA -rrA +fyI +mLt +mLt +mLt +mLt +oxw +oxw akR djW djW @@ -55356,62 +55356,62 @@ ayw awJ arr oKo -fJy -fJy +fwZ +fwZ avP oKo -jms -rho -iTz -eXu -wRq -dqT +vlA +dSQ +qSQ +jew +nwh +uxe oKo oKo oKo oKo oKo -hrE +ret aOg -wRv -uvH -whm -kxy +jzH +laS +kqn +wwd oKo aoP -pcv -sYv +vLf +lcb bfy bfI mZd -iQL -uxg +mDW +shf mZd -fdW -lYf +ilV +xjG vlm -uig -dDo -qOz +sjw +eJp +ibI vlm cdT -vBQ -nMn +nFm +fus bTD vlm vlm vlm -oUo -tTY +ivH +wTn uTQ xOs cuP -tRL +ygH wsh iQS -eqG +tam cuP -cJY +iFn blz bmK bnB @@ -55513,28 +55513,28 @@ aam abr aam pIa -sCE +vcz aJn -oFY -oFY +ejx +ejx cdo -jII -oFY -oFY +byW +ejx +ejx rKG rKG bUX rKG cpV -xRp +laC cdA -rlR -rrA -rrA -rrA -rrA -rrA -rrA +fyI +oxw +oxw +oxw +oxw +oxw +oxw akR djW djW @@ -55550,63 +55550,63 @@ ayw ayw aFv oKo -iLT +idt bVM bVM -kpq +wiJ oKo -kzl +wHQ aAo aBS dgB -wRq -jEH +nwh +qJU aGr -qox +ncb oKo aKy aLR -hbC +eBh aOh aPH aPH aPH aPH -xSD +jod bfy -pcv -sYv +vLf +lcb bfy bfJ mZd mZd mZd mZd -sqF -lVO -rNj -rNj -dBn -rNj -qwg -tao -qrn -jzl -kOI -gzh -gzh -fvj +iBK +vxQ +wCk +wCk +eSj +wCk +oUy +gtk +xJX +kfz +teH +pTP +pTP +egc oqJ xJD ukx xTZ cuP -tRL +ygH wsh iQS -oDH +uWj ras -wPf +lSS blB bmL bnF @@ -55721,15 +55721,15 @@ ced ced akR dWm -xRp +laC cdA -rlR -rrA -rrA -naA -sRS -tGW -iIK +fyI +oxw +oxw +xYb +dTY +rBW +mEd akR djW djW @@ -55745,63 +55745,63 @@ ayw ayw ayw kyT -lLc +rVU dgB dgB -lLc -bvY -tZf -tiR +rVU +oBf +xQm +foe ajW dgB -wRq -jEH +nwh +qJU uWG -qox +ncb oKo dgB dgB -wNz -lRz -lRz -lRz -lRz +ygi +sbp +sbp +sbp +sbp aTC -xSD +jod biH -qVl -hSK +iHb +xKJ bdi cik cik -pzE -qVl -dgm -eNY -iuK -teJ -jDI -rAc -kiq +nGn +iHb +tjw +lin +tJt +qxC +hiZ +vZh +pvC vlm -gzh -rsK -cvQ -bKI -tao -tao -bKI +pTP +cSM +fBe +jSs +gtk +gtk +jSs hQq qYm urM cuP cuP -pbG +iWp oiV vCl -kFh -lda -rlC +mqi +mDU +vIu blL bmM bmM @@ -55916,11 +55916,11 @@ ced ced akR cdA -qFk +igG cdA cdA -dKS -dKS +iTc +iTc cdA cdA cdA @@ -55940,19 +55940,19 @@ ayw ayw awJ kyT -lLc +rVU dgB dgB -lLc -mWl -wRq +rVU +owy +nwh aMZ dgB dgB -wRq -jEH +nwh +qJU vBs -qox +ncb oKo aKA dgB @@ -55960,42 +55960,42 @@ aNc aNc aPI aRc -kRk +vpV aMZ -xSD +jod biH -qVl -hSK +iHb +xKJ bdi -yjp -yfN -cwm -cwm +wBs +wME +wWX +wWX cik cik cik vlm -ulB -ulB +jlR +jlR vlm bTD cdT -vBQ -nMn +nFm +fus vlm -klU -klU +jSf +jSf vlm -voi +hGx cuP ukx xWN -ran -nCg -sZN -nCg -ran -ran +uOn +meI +ilu +meI +uOn +uOn eRk blE blJ @@ -56111,15 +56111,15 @@ ced ced akR cdA -sBo -imN -sBo -sBo -sBo -sBo -imN -sBo -sBo +fRn +mzG +fRn +fRn +fRn +fRn +mzG +fRn +fRn akR bDQ djW @@ -56135,62 +56135,62 @@ ayw awJ aFZ oKo -cmx +ewF atE atE -uwY +nIT oKo -iyX +jxT aMZ dgB dgB -wRq -dqT +nwh +uxe aJd oKo aJd -iCN -iCN +sTj +sTj oKo oKo -iCN -iCN +sTj +sTj oKo -xES +rQc oKo aWO -qVl -hSK +iHb +xKJ bdi -mnA +ovl biH -qVl +iHb biH biH bve cik -tkt -dUA -mBe +fWC +xdy +rtU msG -cvo -gzh -vBQ -gTv +kRy +pTP +nFm +rbt vlm -xfr -xfr +jzC +jzC ghV -vxt +xHI ras uhF xXi -wtD -fAc -dMp -fAc -dMp -dMp +qRc +oky +rAc +oky +rAc +rAc jyO blF blJ @@ -56293,7 +56293,7 @@ cdo aJn cdo bgn -qMK +eTc adW aam aam @@ -56306,17 +56306,17 @@ ced ced akR cdA -sBo -uCG -pzu -pzu -uCG -pzu -pzu -uCG -sBo -sGg -cLL +fRn +sKB +nXk +nXk +sKB +nXk +nXk +sKB +fRn +rvE +vVL axk axk axk @@ -56330,62 +56330,62 @@ ayw awJ aAR arr -tBv -uAi -bOW -vxq -njd -wRq -cMe -tAC -tAC -tAC -oSb -lwy -lRz -hhG -lRz -lRz -lRz -xMd -lRz -lRz -fjS -teq -jEH +qEy +oLM +gII +ufY +nru +nwh +lQZ +srg +srg +srg +tlh +lmI +sbp +roQ +sbp +sbp +sbp +iOF +sbp +sbp +dlP +ptz +qJU aWP -lfg -mGw +deX +pkZ biH bfN biI -emQ -wlw -cwm -pZW +jEo +lWo +wWX +rqQ cik -fPE -tPz -vlp +smD +iUA +cbg vlm -cvo -gzh -rsK -cvQ -qwg -niK -inV +kRy +pTP +cSM +fBe +oUy +bKB +nnI mrT -ran +uOn rbi vgW xYw -tQu -fAc -dMp -gOs -dMp -gUR +lwL +oky +rAc +kgu +rAc +xXs jyO blJ bnD @@ -56475,20 +56475,20 @@ aab aac aac rKG -oAI -nBL -oFY +wfC +tBR +ejx cdo -oFY -oFY -cJK +ejx +ejx +pVv aLu -jUJ -oFY -oFY -urV +cYV +ejx +ejx +nmR cdo -oFY +ejx adW aam adC @@ -56501,17 +56501,17 @@ ced ced akR cdA -txO -wvx -plm -kwO -thj -kwO -oNL -jet -sBo -srh -cLL +gwr +nQW +vcq +nqK +eNG +nqK +rnN +kfa +fRn +vmV +vVL axk axk axk @@ -56527,15 +56527,15 @@ oKo oKo oKo oKo -euk -qFI -wRq -lLc -bZu -rZq -nSe -nSe -ilc +kSE +dcB +nwh +rVU +esy +kRB +htU +htU +iBv aGu dgB dgB @@ -56549,38 +56549,38 @@ dgB aTE ouB bbs -wSr -jRg +kgM +pfc biH -yjp -dzJ +wBs +luJ blQ biH -dqx -vZz +oxU +oke cik -wPA -vlp -vlp -ubY -gzh -gzh -vBQ -nMn +szo +cbg +cbg +uXT +pTP +pTP +nFm +fus vlm vlm vlm msG -eop -mQt -veK +bip +mhK +dBk ydV -ran -jzX -ula -jzX -plQ -ran +uOn +kxV +nkl +kxV +cCG +uOn uDU blK bmS @@ -56671,7 +56671,7 @@ aac aac rKG rKG -dxC +kJY cpV cdo pIa @@ -56683,7 +56683,7 @@ aHz pIa acU cdo -oFY +ejx gOo abv aJn @@ -56696,16 +56696,16 @@ ced ahS dWm cdA -kUm -wvx -qbG -khv -goJ -goJ -tki -jet -sBo -mSZ +kIN +nQW +kit +nkH +pvE +pvE +smE +kfa +fRn +xSw dWm dWm azT @@ -56717,20 +56717,20 @@ awJ ayw ayw oKo -cOv -iFn -eng -qGg +keH +vOd +eAC +gvi oKo -lLc -lLc -iib -lLc -bZu -tkA +rVU +rVU +dyQ +rVU +esy +kAD dgB dgB -hbC +eBh dgB biH biH @@ -56744,39 +56744,39 @@ biH biH biH biH -hSK -qVl -wcM +xKJ +iHb +taR cik -ika -ika -ika -ika -ika +oZv +oZv +oZv +oZv +oZv aPm vlm vlm vlm cdD -mUK -gzh -vBQ -gTv -chW -kos -jOw -aLE -ran -oxX +xor +pTP +nFm +rbt +sPR +qcF +rLy +pvh +uOn +mLz vlm -klU -klU +jSf +jSf vlm aGd aGe -ran -rlC -rlC +uOn +vIu +vIu blL tQg bmp @@ -56866,8 +56866,8 @@ aac aac aac rKG -aRT -uSA +mVV +pQC cdo aam aax @@ -56875,10 +56875,10 @@ aam cdo pIa aax -efu +gzg cdo cdo -oFY +ejx abr aam aam @@ -56890,18 +56890,18 @@ ced ced hmw aiD -mUq -gjv -uCG -uze -ubI -qyk -oFh -iSw -jet -sBo -sBo -cLL +oFL +eHf +sKB +wKe +nrF +jIX +pib +mAw +kfa +fRn +fRn +vVL axk axk axk @@ -56911,70 +56911,70 @@ awJ ayw ayw ayw -gyK +hHk bVM bVM bVM ast oKo -qiH -lLc -wRq -lLc -dGJ -vah +wFW +rVU +nwh +rVU +nGo +ooV dgB dgB -wfh +gvk aGw biH -onp -cqD -fBM -onp -bBc -fBM -onp -cqD -qVl -qVl -qVl -hSK -qVl -qVl -wjN -cwm -cwm -wwE -wVO -cwm -dCV -qhv -nXJ -qhv -hDw -xSK -tao -qrn -gTv -gzh -hDw -ybk -pmS -qFr -wfW -aLE -oVS -gcK -aLE +fyZ +bcc +wAA +fyZ +nsf +wAA +fyZ +bcc +iHb +iHb +iHb +xKJ +iHb +iHb +pGw +wWX +wWX +lqa +sSK +wWX +rtr +oSI +kWz +oSI +izM +xMF +gtk +xJX +rbt +pTP +izM +vll +nJr +lIU +kAu +pvh +fhD +dNd +pvh uzv aNA -ran +uOn cuP -ejO +vqN blM bmU -iVh +sxS tBn uiE uiE @@ -57061,8 +57061,8 @@ aac aac aac rKG -leo -uSA +ufK +pQC aar aar aam @@ -57082,21 +57082,21 @@ cdo cdo aar aar -oFY -xOV -hJi -eSA -sBo -uCG -uze -goJ -goJ -goJ -wBy -jet -sBo -sBo -cLL +ejx +mfA +jZB +grt +fRn +sKB +wKe +pvE +pvE +pvE +jkX +kfa +fRn +fRn +vVL axk axk axk @@ -57106,22 +57106,22 @@ awJ ayw ayw ayw -gyK +hHk qhp -pln -gfX +sMR +gmA asu -xoO -bPP -oUe -ezP -oUe -xLG -cKu +fhF +xbi +twT +ccv +twT +mVA +lKu ouB ouB -teq -tvw +ptz +qjd aHD aJl aJl @@ -57134,39 +57134,39 @@ aPJ aPJ aPJ aWQ -dqS -cwm -qVl -wzH -poM -qUa -poM -poM -poM -poM -xCS -nAm -xCS -hDw -trN -gzh -vBQ -gTv -gzh -hDw -juh +lsR +wWX +iHb +tGk +lKB +tiM +lKB +lKB +lKB +lKB +tzG +fpe +tzG +izM +tEQ +pTP +nFm +rbt +pTP +izM +pCO mwt -tTv -wCb +sYX +tQW vlm -dwg -dXI -aLE +wGK +nfn +pvh ldp riM -ran +uOn ras -rlC +vIu blL bmV bmE @@ -57268,7 +57268,7 @@ aam aam aam cdo -oFY +ejx aam aam cdo @@ -57281,16 +57281,16 @@ eVI baM bmq act -sBo -uCG -uze -goJ -goJ -goJ -wBy -jet -sBo -mSZ +fRn +sKB +wKe +pvE +pvE +pvE +jkX +kfa +fRn +xSw dWm dWm azT @@ -57301,61 +57301,61 @@ ayw ayw ayw ayw -gyK +hHk bVN bWl bWl asv oKo -qiH -pCd -tat -lLc -lLc -qIn +wFW +glD +fNu +rVU +rVU +rwL orc dgB -hbC -oWK +eBh +cYC cik -uKf -nAj -use -uKf -nAj -tiX -uKf -nAj -qvA -has +rRv +hXq +qzz +rRv +hXq +yhH +rRv +hXq +qAA +cEj aWR -guD -fcO -jyH -oJs -fcO -vIO -vIO -vIO -vIO -viW -ele -lWu -ele -bKI -glp -gzh -vBQ -gTv -gzh -hDw -ubt -wBg -ubt -ubt -aLE -uVa -lyM +rat +lDL +rip +kIv +lDL +qIn +qIn +qIn +qIn +sKN +kbF +gIF +kbF +jSs +cfe +pTP +nFm +rbt +pTP +izM +mqA +xOE +mqA +mqA +pvh +eon +iGs vlm vlm itw @@ -57463,7 +57463,7 @@ aan aam acU baH -oFY +ejx aam aam cfH @@ -57473,20 +57473,20 @@ aam cdo onq aar -bFS +vhZ dWm cdA -txO -uPD -khv -goJ -goJ -goJ -huf -uPD -sBo -yet -cLL +gwr +hTo +nkH +pvE +pvE +pvE +jfv +hTo +fRn +wLi +vVL axk axk axk @@ -57497,62 +57497,62 @@ ayw aHh aAR oKo -mQc -wFg -iZm -cRk +geU +rNo +kbc +mpy oKo -lLc -eKO -dGb -lLc -vGC -tkA +rVU +sLC +uYD +rVU +wLs +kAD dgB dgB -rld -xmP +qng +pYb cik -qVl -qVl -qVl -qVl -jha -qVl -qVl -ldD -qVl -fxQ +iHb +iHb +iHb +iHb +hGr +iHb +iHb +cKG +iHb +ksT aWR -cwm +wWX oSV -prg +tJv cik -oCB +uja cik cik vlm -klU -klU +jSf +jSf vlm eSx eSx eSx bUJ vlm -oHt -gTv -htY -hDw -ubt -ctV -tub -hZK +vpv +rbt +nze +izM +mqA +cZb +djL +wZy vlm -ipW -guv -xfp -fpc +eiO +bEU +vBR +jAi vlm gAD efT @@ -57658,7 +57658,7 @@ aas cdo cfH cdo -oFY +ejx aan aam ahn @@ -57671,17 +57671,17 @@ cdo ced akR cdA -nmv -uPD -vRK -mOL -rKn -mOL -pZo -uPD -sBo -yet -cLL +aLD +hTo +poR +sci +eHC +sci +nnr +hTo +fRn +wLi +vVL axk axk axk @@ -57697,57 +57697,57 @@ oKo oKo asx oKo -lLc -ibj -clS -jHz -vyA -wsX -vAp -vAp -hbC -iJH +rVU +rxK +vbP +wvo +iJe +fmP +bNT +bNT +eBh +mix cik -cwm -cwm -xIR -cwm -cwm -cwm -cwm -cwm -qVl -fTF +wWX +wWX +ieD +wWX +wWX +wWX +wWX +wWX +iHb +rxg aWR -cwm +wWX oSV -npr +tEr cik -sBC -kfk -vWy -uGe -tKe -gQO +qHR +caz +meg +xHm +wHm +tAy eSx -tGc -ncx -uWV -iCY -eon -vBQ -dEz -gzh -hHc -ubt -ubt -rLJ -ubt -buL -qvz -lyM -gdb -gdb +gdc +kPQ +nOY +ilR +niM +nFm +pPO +pTP +vCH +mqA +mqA +nBi +mqA +cuR +hBi +iGs +fxt +fxt vlm ltZ wgI @@ -57849,11 +57849,11 @@ rKG aaG aam aam -ehS +xSB aam aam baH -oFY +ejx bgn aar aJn @@ -57866,15 +57866,15 @@ aar ced akR cdA -txO -uPD -khv -goJ -goJ -goJ -huf -uPD -sBo +gwr +hTo +nkH +pvE +pvE +pvE +jfv +hTo +fRn dWm dWm djW @@ -57889,20 +57889,20 @@ djW djW djW ijo -dqD -rWb +jFx +slG ijo -glC +xeT ijo aHv -lBw -lBw -riw -mVc +nIQ +nIQ +uAx +dmJ oKo -hbC +eBh dgB -mnA +ovl biH jxc jxc @@ -57910,46 +57910,46 @@ jxc aOn jxc biH -cwm -nGp -fbu +wWX +jOC +wOH aWR -cwm -fpe -xvD +wWX +cUF +gec cik -rBU -wmj -pFT -uGe -gzh -gzh -szn -sor -ygj -jCY -wan -eon -vBQ -gTv -kbC +eTu +qCJ +cQa +xHm +pTP +pTP +yed +uDt +kTg +aYM +kWC +niM +nFm +rbt +fQY ghV -bQh -tTv -kRE -tTv -buL -qvz -uVa -uVa -fOo +dlQ +sYX +uBO +sYX +cuR +hBi +eon +eon +rfw vlm vlm vlm vlm -cIG -dVf -kSv +tpm +uRm +mnn che che che @@ -58042,8 +58042,8 @@ aac aac rKG cpV -oFY -oFY +ejx +ejx cpV abN aam @@ -58061,15 +58061,15 @@ aar ced akR cdA -lEO -wvx -uze -goJ -goJ -goJ -wBy -jet -oBJ +owI +nQW +wKe +pvE +pvE +pvE +jkX +kfa +hct akR cdA cdA @@ -58084,72 +58084,72 @@ djW djW djW ijo -drY -clm -dns -faT -vqL -vFb -lLc -lLc -lLc -lLc -gZR -hbC -jEH +cRC +mYC +qcD +kyc +eRh +jYE +rVU +rVU +rVU +rVU +kRV +eBh +qJU cik -xwC -lqU -nfS -gIe -xQN -sHG +kar +jSQ +qVf +bBu +nyf +vGS aRf -qrH -cYR -fxQ +jyp +lwE +ksT aWR -qrH -dqS -ozz +jyp +lsR +ouC bfS -rBU -wmj -vWy -uGe -utK -tZN +eTu +qCJ +meg +xHm +gzm +cop eSx -mVL -ctV -sLQ -sLQ -pIT -hJw -cvQ -ffj -gAV -gzh -gzh -trN -gzh +upd +cZb +tCA +tCA +nrR +lzR +fBe +nHx +rqy +pTP +pTP +tEQ +pTP vlm -fHC -gdb -gdb +osq +fxt +fxt vlm vlm -mys -jGK -bXJ -jGK -bWU -bWU -bXJ -jGK -ubj -jGK -dfY +kml +jhi +pPR +jhi +mcI +mcI +pPR +jhi +wSA +jhi +gRy che aac aac @@ -58236,14 +58236,14 @@ aac aac aac rKG -uqq -nBL -oFY +bSg +tBR +ejx cpV -xii -kiW +bPj +wPw aar -oFY +ejx aan cdo cfH @@ -58256,15 +58256,15 @@ ced ced akR cdA -oPi -wvx -uze -goJ -goJ -goJ -wBy -jet -sBo +uXy +nQW +wKe +pvE +pvE +pvE +jkX +kfa +fRn cdA cdA cdA @@ -58279,72 +58279,72 @@ aHh djW djW ijo -uBg -jQO -kNQ -faT -sij +qWY +bMH +iie +kyc +xna aHv -tvw +qjd oKo oKo oKo oKo -cCN -faT +czI +kyc cik -plG -ldD -qVl -uRN -qVl -tcb +edU +cKG +iHb +bMg +iHb +hiM aRf -cwm -hSK -gqe +wWX +xKJ +gjM aWR -cwm +wWX oSV -xho +qzH cik -usd -ika +bSl +oZv cik cik cik bzh eSx -yjV -jCY -jCY -wan -eon -rrw -kzX -ppw -fMo -fMo -fMo -eeR -fMo -dSR -vli -llA -llA -rox -qwg -lfa -ndc -lfa -lfa -lfa -lfa -lfa -wQk -jfY -nUW -nUW +see +aYM +aYM +kWC +niM +xfJ +cXP +sRs +uNS +uNS +uNS +oYO +uNS +tNb +fIk +khP +khP +xzo +oUy +jEr +tFu +jEr +jEr +jEr +jEr +jEr +vZr +gRT +rMj +rMj che aac aac @@ -58432,12 +58432,12 @@ aac aac rKG cpV -oFY -egW -oFY -oFY -oFY -oFY +ejx +lAG +ejx +ejx +ejx +ejx aar aam bgn @@ -58451,15 +58451,15 @@ ced ced akR cdA -sKM -wvx -uze -dCx -qyk -nZb -iSw -jet -sBo +vZl +nQW +wKe +quJ +jIX +fLi +mAw +kfa +fRn cdA awU ajN @@ -58473,73 +58473,73 @@ awJ aAR aHh aHh -nyW -hVo -tVd -tTx -faT -tjA +rVb +qIP +vNP +fyk +kyc +pXN aHv -tvw +qjd oKo -pYk -uyK +gpl +pIZ oKo -cCN +czI aGC cik -lcT -lcT -lcT +syb +syb +syb aNh -qVl -gAJ +iHb +gLA aRg -cwm -gVn -fbu +wWX +uOA +wOH aWR -cwm -qDW -jyH -vmu -tNT -jyH -fVP -pzE +wWX +esr +rip +oki +mym +rip +wyK +nGn cik bzh eSx -dlh -oml -dUN -gcl +kJP +mmq +wsa +uew +niM +toi +taY +pif +pif +eye +eJq +fQI +eye +fxt eon -gVz -eWn -jdI -jdI -oss -nmi -rgZ -oss -gdb -uVa -uVa -uVa -qvz +eon +eon +hBi vlm -nBp -izw -xMu -xMu -fXA -xMu -xMu -izw -lGD -nUW -nUW +ejy +vsf +jfq +jfq +iXE +jfq +jfq +vsf +iaA +rMj +rMj che aac aac @@ -58626,12 +58626,12 @@ aac aac aac rKG -uqq -qMK -cJK +bSg +eTc +pVv aam -qMK -oFY +eTc +ejx aas aam aam @@ -58646,15 +58646,15 @@ ced ced akR cdA -sBo -wvx -pTt -khv -goJ -goJ -jhM -jet -mSZ +fRn +nQW +vGZ +nkH +pvE +pvE +ebl +kfa +xSw cdA awX axm @@ -58668,40 +58668,40 @@ aAR aCQ aHh aHh -nyW -eDy -cCN -faT -faT -eMX +rVb +upa +czI +kyc +kyc +mXK aHv -lLc +rVU oKo -vTK -lLc +rTK +rVU aUS -qnk +fij cfA -vmu -vIO -fcO -rQe -yjp -qVl -xue +oki +qIn +lDL +xmq +wBs +iHb +wCC aRf -cwm -hSK -fxQ +wWX +xKJ +ksT aWR -cwm +wWX oSV -fBM -yjp -qVl -poM -uVS -vHt +wAA +wBs +iHb +lKB +kvK +uFJ cik bzh vlm @@ -58712,17 +58712,17 @@ eSx vlm bCz bCz -qje +wlj bCz bCz -jdw -jIy +iDc +qUa vlm vlm eSx eSx eSx -euH +pVP vlm vlm vlm @@ -58733,8 +58733,8 @@ vlm vlm vlm vlm -tTv -wCb +sYX +tQW vlm vlm vlm @@ -58822,13 +58822,13 @@ aac aac rKG cpV -qMK -lLg +eTc +gMW abv -oFY -oFY +ejx +ejx adK -oFY +ejx aam cdo seb @@ -58838,22 +58838,22 @@ cdo aam aam ced -xOV +mfA dWm cdA -ddx -wvx -tzl -ftc -fVq -ftc -fRH -jet -sBo -rJp -sBo -sBo -rJp +dtN +nQW +cCU +wIN +piJ +wIN +hQS +kfa +fRn +wOv +fRn +fRn +wOv ayw ayw ayw @@ -58866,72 +58866,72 @@ gLF ijo ijo jEB -kSh +suP ijo ijo aHv -ubd +vFX oKo oKo -ubd +vFX oKo -cCN +czI cfx aPm -sBv +ezw oSV -cwm -yjp -qVl -iAQ +wWX +wBs +iHb +oPO aRf -cwm -hSK -sPm +wWX +xKJ +qmZ aWR -cwm +wWX oSV -fLB -yjp -jsM -poM -uVS -mts +jBE +wBs +wOY +lKB +kvK +rup cik bzh bzh bzh bzh bvK -vIC -dBs -svf -cfo -roN +hIv +mVM +fry +tdh +twg bCz -eCO -jUT -qMO +gJN +knT +yaP vlm -wjZ -lhx -lhx -jDe -tFJ +luS +okc +okc +uhI +srf vlm vlm vlm vlm vlm -jsi -qJp +jVt +whw vlm -sOn -xol -nUW -nUW -bIm -ePL +csS +fzf +rMj +rMj +wVm +bkM vlm aad aad @@ -59016,15 +59016,15 @@ aac aac aac rKG -uqq -cJK -oFY +bSg +pVv +ejx cpV pIa pIa cpV cpV -cKk +nME aam cdo ahn @@ -59032,23 +59032,23 @@ cdo ced aam aar -oFY +ejx hmw -rRR -xRp -sBo -uCG -drT -drT -uCG -drT -drT -uCG -sBo -sBo -sBo -sBo -sBo +ecj +laC +fRn +sKB +joH +joH +sKB +joH +joH +sKB +fRn +fRn +fRn +fRn +fRn ayw ayw ayw @@ -59057,76 +59057,76 @@ aCR ijo ijo ijo -uvW -tTx -yjI -luQ -kNQ -rEb +mER +fyk +dDk +osK +iie +enV ijo -faT -faT -xIl -dns -faT +kyc +kyc +sQx +qcD +kyc ijo -qnk +fij cfy cik aJs aKK -cwm -yjp -mHv -hvH +wWX +wBs +ouM +fjx aRg -cwm -rCP -fbu +wWX +ntp +wOH aWR -ykp -gQL -tec +slc +lAs +cUl cik -dOe -poM -qdA -qVl -xPd +nPf +lKB +oXJ +iHb +fXZ aPm cik cgT cik aPm -vIC -roN -ebZ -roN -roN +hIv +twg +iUz +twg +twg bCz -fZc -jdw -utU +lIs +iDc +sOu vlm -pEw -ubt -ubt -cGF -cMs -gdb -eRr -qld -htq +fEv +mqA +mqA +tBd +xXb +fxt +lBo +luM +coE vlm -ybk -qJp +vll +whw vlm -sOn -fUI -nUW -nUW -ruI -ePL +csS +odC +rMj +rMj +xOD +bkM vlm aad aad @@ -59134,8 +59134,8 @@ aad aad iwH iwH -krk -krk +uSS +uSS iwH iwH iwH @@ -59212,14 +59212,14 @@ aac aac rKG rKG -egW -oAI +lAG +wfC cpV aag pIa aao pIa -cKk +nME aam cdo ahn @@ -59227,19 +59227,19 @@ cdo aHz seb wgB -kiW -uTa -rRR -xRp -kUm -ryF -sBo -sBo -sBo -sBo -ryF -sBo -mSZ +wPw +wMi +ecj +laC +kIN +cTn +fRn +fRn +fRn +fRn +cTn +fRn +xSw cdA awY axv @@ -59250,77 +59250,77 @@ aAR awJ aAR bVV -xxT -qNh -kNQ -tTx -tTx -luQ -kNQ -tYQ +cGV +kCR +iie +fyk +fyk +osK +iie +jKu ijo -hLv -kNQ -kNQ -kNQ -guc -wyx -cCN -mHa -usz -pzE +vDy +iie +iie +iie +fyb +mTg +czI +pRh +ref +nGn oSV -cwm -yjp -qVl -mgv +wWX +wBs +iHb +mtI aRf -cwm -hSK -oTt +wWX +xKJ +jES aWR oSV -dZQ -tec +ktB +cUl bfW -mkk -sQr -uVS -poM -qVl -mMf -qfh -wNY -pzE +hHT +qUi +kvK +lKB +iHb +nqc +kIs +mTE +nGn aPm -vIC -dFW -hOU -vWh -vWh +hIv +qpq +dvl +xAy +xAy odJ -kWO -jUT -qMO +ejK +knT +yaP vlm -nUW -ezp -ezp -ezp -tFJ -gdb -ybk -uVa -anQ +rMj +rYo +rYo +rYo +srf +fxt +vll +eon +vAg vlm -ybk -ieP +vll +jfe vlm -bYX -fUI -nUW -nUW -qfl +yey +odC +rMj +rMj +xHG vlm vlm aad @@ -59328,11 +59328,11 @@ aad aad aad iwH -wzu +nva fZe wDF iwH -sEZ +tbU iwH iwH aad @@ -59423,14 +59423,14 @@ aHz seb odi baH -bFS +vhZ dWm cdA cdA cdA cdA -dKS -dKS +iTc +iTc cdA cdA cdA @@ -59444,91 +59444,91 @@ ayw aAR awJ aCQ -nyW -faT -tBE -kNQ -tTx -tTx -luQ -kNQ -tYQ +rVb +kyc +nNM +iie +fyk +fyk +osK +iie +jKu ijo -cCN -kNQ -kNQ -kNQ -tSM -wpy -cCN -mHa -gCH -oJT +czI +iie +iie +iie +gsg +iXo +czI +pRh +lbJ +gRa oSV -lxd -yjp -qVl -mgv +rIG +wBs +iHb +mtI aRf -cwm -hSK -fRg +wWX +xKJ +jRp aWS oSV -cwm +wWX bfW bfW cik -oJT -uoG -vZC -jsM +gRa +xHd +qpQ +wOY aPm -qyx -npA -bQf +vmZ +pXw +cMF aPm bCz cft -vYK +lhY bCz odJ odJ -srw -tvL -wov +lvV +sow +qaq vlm -nUW -lhx -lhx -lhx -tFJ -gdb -tpI -uVa -dPz -gdb -ybk -qJp +rMj +okc +okc +okc +srf +fxt +mth +eon +jcM +fxt +vll +whw vlm -sOn -fUI -nUW -nUW -vKW +csS +odC +rMj +rMj +hgV vlm mWF -wOV +oaw aad aad aad iwH -krk +uSS wXb hwI atI -uvE -wSm +csf +iLh iwH aad aad @@ -59623,13 +59623,13 @@ akR akR akR cdA -oYc -rrA -rrA -oQg -uqK -gkT -qvV +eUr +oxw +oxw +qBH +fCQ +nsr +bPc cdA cdA cdA @@ -59639,81 +59639,81 @@ ayw awJ awJ fwV -nyW -faT -wKc -kNQ -kNQ -hQW -jon -kNQ -yeJ +rVb +kyc +gBn +iie +iie +bor +wYc +iie +dZF ijo -cCN -lGy -faT -faT -guc -wyx -cCN -mHa -gCH -dZz +czI +ogT +kyc +kyc +fyb +mTg +czI +pRh +lbJ +xGl oSV -cwm +wWX cik -qoe -mgv +xFM +mtI biH -cwm -hSK -pCS +wWX +xKJ +rWB bWH oSV -cwm +wWX bdE bfX cik -mts -hNM -hSK -xvD +rup +heh +xKJ +gec aPm -gWA -heM +mAq +jHZ bLb aPm -xig -cXb +wjn +nFU bsW -kPr -rpZ -obP -cKP -jUT -qMO -ubY -nUW -ubt -ubt -oJk -tFJ +mbE +hjN +nAx +rSK +knT +yaP +uXT +rMj +mqA +mqA +pLr +srf vlm -rat -eUE -thC +bJl +wBX +wxS vlm -jsi -qJp +jVt +whw vlm -sOn -fUI -nUW -nUW -nKT +csS +odC +rMj +rMj +jOf vlm bjr -oFf +pwa aad aad aad @@ -59722,7 +59722,7 @@ iwH iwH iwH nxh -rmY +gzz iwH iwH aad @@ -59805,7 +59805,7 @@ aac aac pIa pIa -sez +lii cdo aam adC @@ -59818,13 +59818,13 @@ aac aac akR cdA -oYc -rrA -rrA -rrA -fOy -rrA -rrA +eUr +oxw +oxw +oxw +mLt +oxw +oxw cdA dWm djW @@ -59835,64 +59835,64 @@ awJ aAR aCQ ijo -lGy -glS -uvW -lne -oqH -luQ -kNQ -tYo +ogT +bNE +mER +pik +pKS +osK +iie +hfz ijo -qcW +uiT ijo -kGi -kGi -kGi +iVg +iVg +iVg ijo -gGG -mHa -gCH -nUH +gNP +pRh +lbJ +iCU aKL -fcO -tMO -jyH -ist +lDL +qnt +rip +gRk bbs -vIO -gBy -vPP +qIn +wEE +wiI aWU -gFj -cwm -yjp -iYe +lpo +wWX +wBs +wfN cik cik cik -vYK +lhY cft bzh bzh bzh bzh bvK -gWQ +gdz cgc ckF bvB cUi -obP -obP -jdw -utU +nAx +nAx +iDc +sOu ueU -kNm -ezp -ezp -xCn -tFJ +nyg +rYo +rYo +gSt +srf eSx eSx eSx @@ -59901,24 +59901,24 @@ eSx eSx eSx eSx -gEL -jkI -nUW -nUW -jTa +cKr +hpp +rMj +rMj +fsU vlm bjr -oFf +pwa rEr wZZ htD aad aad iwH -qrK +tvp wXb -uvE -wSm +csf +iLh iwH aad aad @@ -60012,14 +60012,14 @@ aac aac iJh age -vVd -rrA -fOy -fOy -rrA -rrA -oCD -fOy +pef +oxw +mLt +mLt +oxw +oxw +mAm +mLt cdA dWm ayb @@ -60028,45 +60028,45 @@ ayw ayw awJ aAR -hUE +csN ijo ijo -fRh +jtz ijo ijo ijo jEB -kSh +suP ijo ijo -xcs +eFy ijo aAB aCb cfx cfx -cCN -mHa -usz -pzE +czI +pRh +ref +nGn biH -gWg -wzH -qVl -cwm +wTv +tGk +iHb +wWX biH -cwm -itX -idf +wWX +iwo +lZy aWR -cwm -cwm -yjp -cwm +wWX +wWX +wBs +wWX bjc bjc cik -xEj +rVi bCz bzh bzh @@ -60074,14 +60074,14 @@ bzh bzh bCz bCz -bSo -qMO -jUT -olb -dGZ -obP -jUT -qMO +bSb +yaP +knT +laE +rIF +nAx +knT +yaP ueU ueU eSx @@ -60089,21 +60089,21 @@ flK eSx mwt hVm -nBi -nKW +qVn +oJQ iEU -rxV -bUj +tMB +oHu iEU iEU iEU vlm -tTv -wCb +sYX +tQW vlm vlm bjr -oFf +pwa rEr wZZ wZZ @@ -60207,14 +60207,14 @@ aac afZ iJh agR -vVd -hKB -crr -itS -itS -itS -mBv -jto +pef +seo +myP +odK +odK +odK +owi +hgB cdA dWm tuu @@ -60223,88 +60223,88 @@ ufG ayw aAR aAR -fWo +tfc wto -faT -faT -hLv -faT -faT -cCN -faT -faT -gsb -uPw +kyc +kyc +vDy +kyc +kyc +czI +kyc +kyc +tHW +eAm ayW -lJp -cNy -lJp -lJp -glj +wPZ +ghJ +wPZ +wPZ +eay cfx cik cgT cik -orV +iLv cik -qoe -rKL +xFM +ezT biH -cwm -qVl -fRg +wWX +iHb +jRp aWS -cwm -cwm +wWX +wWX cik -cwm -omP +wWX +wPt bmc cik -vYK +lhY cft bzh bCz bCz bCz -nzo -sps +mlX +ntn bvz -utU +sOu bvz -dhW -jdw -jdw -jdw -utU -gbV +duv +iDc +iDc +iDc +sOu +iqd bvw bvw bvz gjk nPJ hVm -caq -hlW -ryp +nhL +fUy +rps dXQ dXQ dXQ dXQ -rUl +ooI ace bjr bjr ace bjr bjr -oFf +pwa rEr wZZ bmv wZZ kKI -rsp +dcT nDj hwI hwI @@ -60418,68 +60418,68 @@ ufG ayw awJ aAR -fWo +tfc wto -faT -faT -iZA -lJp -lJp -cNy -xpX -hZm -bjy -cCN +kyc +kyc +qkv +wPZ +wPZ +ghJ +frd +jqH +pxo +czI wto -faT -faT -faT -faT -cCN +kyc +kyc +kyc +kyc +czI cfx cik -xeW -eUq -hSK +tjs +mfa +xKJ cik -ldD -rKL +cKG +ezT biH -cwm -qVl -pCS +wWX +iHb +rWB bWH -cwm -cwm +wWX +wWX bdI -hfi -wKi +vdB +kqN bjc cik bsW bvw bvw -iBG -plw -cZo +pWr +uoK +cjK bvz -jdw +iDc bvz -wuk +gOq bvz -obP -jdw -jdw -jdw -geG -gJy +nAx +iDc +iDc +iDc +nKb +fpC bvB eLC bvB bvB gaq hVm -uqR +mzV iEU iEU dXQ @@ -60493,7 +60493,7 @@ bjr bjr bjr bjr -oFf +pwa rEr bmv xFc @@ -60613,7 +60613,7 @@ ufG ufG awJ awJ -hUE +csN ijo cfx cfx @@ -60626,59 +60626,59 @@ auL cfx axz ijo -kGi -kGi -kGi +iVg +iVg +iVg ijo -flI +nzO cfy cik cgT cik -oqs +fdr cik -qbq -cwm -lOB -jyC -vAA -uKf -llN -uRA -pYL +rVM +wWX +qlv +qZO +kGc +rRv +xbI +cwZ +gjd cik cik cik -nnU +tOF cik bsW bvz -jdw -jdw -jdw -jdw -jdw -mUd -jdw -wuk -jdw -lii -jdw -tRj -jdw -jdw -ygl -rmk -utU -jdw -kqX -bFN +iDc +iDc +iDc +iDc +iDc +qRu +iDc +gOq +iDc +lLq +iDc +ggZ +iDc +iDc +reh +wet +sOu +iDc +rHZ +jXl hVm iEU sAv -cYV -jKz -pIV +eoV +tcg +sXI iEU iEU iEU @@ -60688,11 +60688,11 @@ bjr bjr bjr bjr -oFf +pwa rEr bmv wZZ -iAv +fBD aYQ aYQ vPY @@ -60810,70 +60810,70 @@ awJ aHh aAR bVV -kNQ -vAx +iie +hNs ijo ijo ijo ijo -kSh +suP ijo ijo -xcs +eFy ijo -fGV -sfa -epJ -nyW -cCN +wCf +xjy +nBq +rVb +czI cfx cik -xHP -eUq -hSK +ulC +mfa +xKJ cik -poG -qVl -npr -rhv -fex +eXt +iHb +tEr +eYQ +rVJ cik -cwm -cwm -cwm +wWX +wWX +wWX bdJ -cSI -kyR -gJy -cwl -vkw +mcm +jmw +fpC +csP +rUG bvB -tvL -gJy -gJy -jTb -pGW -jTb -pGW -wxS -pGW -ufU -vIn -wsU -cIk -xEC -dpm -obP -gpg -ozx +sow +fpC +fpC +kMQ +xsP +kMQ +xsP +vNl +xsP +fhx +wCF +wJP +tbG +icL +dkA +nAx +fAd +oRK bCz bCz snV srk iEU -scR -jKz -gQZ +uPX +tcg +oOz iEU vQo wij @@ -60883,16 +60883,16 @@ bjr bjr utV bjr -oFf +pwa rEr bmv wZZ iwH -cLM -qfV +xPR +qPS iwH iwH -hNR +gLi iwH iwH aad @@ -61005,64 +61005,64 @@ ayw awJ awJ jdC -kNQ -tTx +iie +fyk ijo -qBv -ueT -qBv -drY +hjg +hxs +hjg +cRC ijo -ezA -cCN +wkB +czI aGs -kRo -sxR -fey -nyW -cCN +vIM +jUQ +iJy +rVb +czI cfz cik cgT cik -oqs +fdr cik cik -lcT -lcT -lcT -lcT +syb +syb +syb +syb cik -hjc -qVl -cwm +cQh +iHb +wWX bdK -cSI -wOT -ojG -gWb -obP +mcm +tZg +hiA +hzs +nAx bvz -jdw -ojG -erH -jdw -jdw -jdw -jdw -jdw -jdw -rmk -jdw -jdw -jdw -jdw -erH -jdw -utU -qWO -jdw -rwi +iDc +hiA +ioQ +iDc +iDc +iDc +iDc +iDc +iDc +wet +iDc +iDc +iDc +iDc +ioQ +iDc +sOu +uNH +iDc +lzs snV srk iEU @@ -61078,7 +61078,7 @@ bjr bjr bjr bjr -fTp +jea rEr bmv wZZ @@ -61086,8 +61086,8 @@ iwH iwH iwH iwH -hrX -nqU +mzB +vEb iwH aad aad @@ -61200,64 +61200,64 @@ ayw aAR awJ jdC -kNQ -tTx +iie +fyk ijo -drY -drY -drY -drY +cRC +cRC +cRC +cRC ijo -xZs -iZA -uBa -lJp -xCb -wSD +uqN +qkv +dUR +wPZ +rQh +fcj ijo -flI +nzO cfA -lJp -vIO -jyH -fOT -gKe -qub -gKe -gKe -gKe -iwq -gKe -gKe -gKe +wPZ +qIn +rip +iZs +uDg +pYT +uDg +uDg +uDg +feR +uDg +uDg +uDg bbs bdY -dYs -iPQ -sHk -gWb -obP +fUQ +ujt +mvM +hzs +nAx bvz -jdw -ojG -jdw +iDc +hiA +iDc orL orL -jUT +knT orL orL orL -jUT +knT orL orL orL orL -jUT +knT bvz bsW bvz bvz -jYl +wnz snV srk srk @@ -61272,8 +61272,8 @@ bjr bjr bjr bjr -miQ -bmg +fkZ +okW gTa bmv wZZ @@ -61281,8 +61281,8 @@ aad aad aad iwH -xDQ -wJW +kcJ +ogk iwH aad aad @@ -61395,64 +61395,64 @@ ayw ayw awJ ijo -ojZ -rRm +kbd +rGa ijo -jCZ -nyF -qNo -qNo +tgG +pwI +dqY +dqY ijo -ylt -dfl -kNQ -kNQ -kNQ -kRo -nyW -vdJ +off +fXy +iie +iie +iie +vIM +rVb +bax cfx -faT -dqx -qVl -mlR -fEe -fEe -fEe -fEe -fEe -xiG -fEe -fEe -fEe +kyc +oxU +iHb +fCm +fnA +fnA +fnA +fnA +fnA +kPV +fnA +fnA +fnA biH -eoh -kgD -wOT -obP -gWb -obP +bXk +cQC +tZg +nAx +hzs +nAx cgc -jdw -ojG -jdw +iDc +hiA +iDc orL -gPW -jdw -jdw -jdw -sBH -jdw -jdw -jdw -toc -vWB -jdw -jdw -utU -jdw +hFO +iDc +iDc +iDc +svC +iDc +iDc +iDc +vMn +oCY +iDc +iDc +sOu +iDc bvz -jSD +qhz snV srk wij @@ -61467,8 +61467,8 @@ vQo vQo bjr bjr -miQ -ojN +fkZ +pRz bmv bmv wZZ @@ -61598,58 +61598,58 @@ ijo ijo ijo ijo -vOd -faT -kNQ -uvW -rAl -epJ -nyW -cCN +qzn +kyc +iie +mER +hrR +nBq +rVb +czI cfx -faT +kyc cik cik cik -uRN -qVl -mZl -cYP -rqH -uRN -qVl -qVl -qVl +bMg +iHb +jvF +tMa +jim +bMg +iHb +iHb +iHb biH -oFp -cBI -wOT -obP -sUW -obP +bTC +rgT +tZg +nAx +wJz +nAx bvz -jdw -gpg -jdw -pZw -oyz +iDc +fAd +iDc +vGl +vNv baX bbT bcp -jUT -jUT -fLU +knT +knT +cAk bee bez bez bbT bgO bht -jdw -roN -iPt +iDc +twg +oMF snV -miQ +fkZ srk wZZ wZZ @@ -61662,13 +61662,13 @@ vQo srk wQx bjr -miQ -ojN +fkZ +pRz bmv bmv wZZ -lCU -whI +kHp +jxd pAc aad aad @@ -61788,51 +61788,51 @@ aES awJ aAR ijo -nmP -iwZ +vLz +sMy wto cfx auM -drY -lGy -gJj -toD -wXp -kRo +cRC +ogT +qIO +hgo +kbB +vIM ijo -rjM +rbh aGD -wbG +sMh ckK -gPx -geg -wmV -wmV +bzU +jOs +qbf +qbf ckK ckK ckK ckK -wmV -wmV +qbf +qbf ckK bbu bem -fMI -obP +kEy +nAx bCz bCz bCz bvQ -doX -ojG -jdw +aDB +hiA +iDc orL -rGq +esW baY -sdW +hzF cgO cnS -cul +fnd grs cnS mPj @@ -61840,11 +61840,11 @@ pDz rFn vDr bhu -jdw -pZw +iDc +vGl bCz -xPE -hyR +wYB +qJX wZZ bmv bmv @@ -61857,13 +61857,13 @@ vQo vQo bjr bjr -miQ -xdk +fkZ +oFI jOV wZZ wZZ -xAj -miQ +uhD +fkZ aad aad aad @@ -61871,10 +61871,10 @@ aad aad aad sHP -rMT +iay ltp ltp -hZw +nIO sHP aad aad @@ -61983,63 +61983,63 @@ ayw aAR awJ bVV -onm -crD -nyW +jbA +uMO +rVb cfx cfx -drY +cRC ijo -wLG -wLG -wLG -weK +vIb +vIb +vIb +qZZ ijo -hDY +eaD aGD -tvA +tsQ ckK -dcM -xKP -vzQ -fuW -qzP -qzP -qzP -vhc -qfJ -jcb +jhH +xLS +eyW +xQr +iYx +iYx +iYx +fkI +uzf +uum mtD mtD mtD -hOx -obP -teh -uyT +uLy +nAx +rwR +tFs bCz bwc -tJH -ojG -rmk +tqO +hiA +wet orL -rGq +esW baZ cgO clg -uAl -lfs -fzF -gJN +rTE +loK +weR +tSP mQe cnS cnS vEw bhv -jdw +iDc qJC -roN -mph -cVb +twg +rsJ +nFS bmv jCE jCE @@ -62048,17 +62048,17 @@ bmv bmv wZZ bZT -pev +kyl bjr bjr bjr bjr -xQZ +lkb vQo wij wZZ -ukR -oFf +bPk +pwa hwD vPQ aad @@ -62066,10 +62066,10 @@ aad aad aad sHP -onX +wCb lKv lJG -mgO +tIc sHP sHP sHP @@ -62183,58 +62183,58 @@ ijo ijo bYS bYS -drY -tiK -drY -euj -drY -euj -drY -gjW +cRC +fgT +cRC +fxu +cRC +fxu +cRC +mDt cfA -fru -xUe -nLI -eqk -jYM -pcJ +cHj +prH +msc +cOU +jiL +clU ckK ckK ckK cnm -ybH -ikP -euU -vNo +pBN +mJj +phd +pwR mtD -kgD -obP -pZw -vyR +cQC +nAx +vGl +nCX bvK -thI -jdw -ojG -jdw +xSx +iDc +hiA +iDc orL -rGq +esW fch cgP -pmP -gYY +gws +uuV dqH gIo kgQ -kZM -wEr -mLy +fwk +ksf +vZC vGx bhw -jdw -lTs -lWH -ruj -jDg +iDc +wCd +mMl +wrM +lWt qDg bmv bmv @@ -62243,17 +62243,17 @@ bmv bmv fli bZT -aYs -tvy -tvy -tsC -qJq -hQl +xut +kMb +kMb +kHi +wxt +olF vQo wZZ pri -xAj -oFf +uhD +pwa hwD vPQ aad @@ -62261,13 +62261,13 @@ aad aad aad sHP -qEr +pug tjo rqL -bnM +mBH sHP -oWJ -qdW +clQ +jVb sHP aad aad @@ -62378,58 +62378,58 @@ bWN ijo atO auO -ePy -vXF -euj -eDy -euj -drY -rmQ -cCN +fCq +jYT +fxu +upa +fxu +cRC +dtd +czI cfB -faT +kyc ckK -fSQ -wzJ -pdx -pdx -pnq -pBB -qRe +eaW +qmF +llz +llz +jhU +eMo +pZb aRv -nKe -lNM -jOv -dTB +nBy +roz +oIF +eEj mtD -kgD -obP -pZw -pZw -eVz +cQC +nAx +vGl +vGl +dsN bvz -jdw -ojG -wEP +iDc +hiA +wqe orL -rGq +esW gaA cgP -ueg +mcQ coA coA gMF coA -aZM -uNt -sgs +miO +vFh +iaN vGx bhB -jdw +iDc iRY -roN -jBs -miQ +twg +wrV +fkZ fvt bmv bmv @@ -62447,8 +62447,8 @@ vQo vQo wZZ wZZ -xAj -oFf +uhD +pwa hwD vPQ lPF @@ -62456,13 +62456,13 @@ aad aad aad sHP -tnU +nkz oZD lKv -gNv +wMN idW -agY -wlo +kIE +xZK sHP aad aad @@ -62566,65 +62566,65 @@ ayw ayw ayw ayw -qZk -qkX -taU +mJC +tTQ +pEl bWN ijo ijo ijo ijo ijo -dLm +coN ijo -wRj -wRj +lyR +lyR ijo -cvE -ncO -jZS +nlf +vxz +nap aJB -rAV -egv -eSE -dha +hdW +cVy +gzY +hdC ckK -pHg -jkx +ugq +qXA ckK -qqX -xgA -usk -vNL +pcy +dsp +hou +vou ckK -kgD -obP -teh -edY +cQC +nAx +rwR +pxa bCz bvz -mUd -ojG -dxD +qRu +hiA +wrR orL -rGq +esW bba cgQ cls -wZx -mTg -jvx -jvx +ngV +npk +sEW +sEW mUD coD coD vJx bhv -jdw -roN -kGW -cLQ -hyR +iDc +twg +lOa +cQl +qJX bmv cBv wZZ @@ -62642,8 +62642,8 @@ wZZ wZZ wij wZZ -xAj -oFf +uhD +pwa hwD vPQ vPQ @@ -62653,11 +62653,11 @@ aad sHP sHP iqe -hsw +jih sHP sHP -wSU -wSU +qHl +qHl sHP sHP aad @@ -62761,53 +62761,53 @@ ayw ayw ayw ayw -qZk -oQP -epv +mJC +wsr +fdq bWN -tni -wxw -bZb -tPY -tEX -epv -vEx -epv -epv -gIs +opK +cOP +iTx +usN +lIT +fdq +efu +fdq +fdq +aTo aFs aGF cdh ckK -grK -nvj -vAT -vAT +ibj +reD +vho +vho ckL mtD mtD mtD ckK cpd -ksl +dNR bby ckK -kgD -obP +cQC +nAx bCz bCz bCz bwd -mUd -ojG -dxD +qRu +hiA +wrR orL -rGq +esW gkt -sBa +xtl cgQ coD -cul +fnd coD coD mUU @@ -62815,11 +62815,11 @@ pGt rMv vOf mHA -jdw -oEq -tqC +iDc +vuc +wsF srk -miQ +fkZ wZZ wZZ wZZ @@ -62834,11 +62834,11 @@ wZZ wZZ wZZ wZZ -lCU -wjX -wjX +kHp +xMl +xMl bjr -miQ +fkZ uXg uXg vPQ @@ -62848,12 +62848,12 @@ vPQ uXg sHP fwc -fZr -pGg -kxk +aSy +rLs +xlW lJG -fZr -ssH +aSy +aem sHP aad aad @@ -62956,11 +62956,11 @@ awJ ayw ayw ayw -iRy -phJ -phJ -iRy -hLy +mgg +dKH +dKH +mgg +kjX cdh auQ cdh @@ -62981,38 +62981,38 @@ ckf aQd clI mtD -rhM -rhM -dqn -lOZ -lOi +mVX +mVX +scd +bTR +dBw ckK -grE -obP -eVz -hoT +tRG +nAx +dsN +eAT bCz bwf -mUd -ojG -jdw -pZw -rGq +qRu +hiA +iDc +vGl +esW bbe bef bcq -jUT -jUT -cBm +knT +knT +rVd bef beM beM bgj bef bhE -jdw -roN -nSZ +iDc +twg +fuV snV srk wZZ @@ -63028,12 +63028,12 @@ bmv wZZ wij wZZ -lCU +kHp bjr bjr -tvy -tvy -kwk +kMb +kMb +lVW srk uXg vPQ @@ -63044,11 +63044,11 @@ vPQ sHP fMv ltp -fZr +aSy gHQ fLl -fZr -mop +aSy +eja sHP aad aad @@ -63151,81 +63151,81 @@ awJ ayw aET ayw -gYp -phJ -phJ -gYp -epv +rpG +dKH +dKH +rpG +fdq atQ -lTa -phJ -phJ -xqR -phJ -phJ -kvv -xqR -mIe -crc -phJ -phJ -sJc -phJ -toO -phJ -lTa +wwb +dKH +dKH +cNv +dKH +dKH +qqr +cNv +mZc +wCl +dKH +dKH +pWY +dKH +dYu +dKH +wwb cdh -ecN -ook -fnN -fnM -sKN -gkL +sIs +kZX +eQJ +iXW +gsH +fPR ckK -kgD -obP +cQC +nAx bCz -mdo +pEP bCz bwh -mUd -ojG -ohh +qRu +hiA +xch orL -jdw -jdw -iad -iad -iad -jdw -jdw -jdw -unK -jdw -jdw -jdw -utU -qWO +iDc +iDc +uqJ +uqJ +uqJ +iDc +iDc +iDc +ola +iDc +iDc +iDc +sOu +uNH bvz -unK +ola snV srk wij wZZ -nMR -vCz -vCz -vCz -xQZ +uEr +slp +slp +slp +lkb wZZ wZZ bmv wZZ wZZ wZZ -xAj +uhD bjr -tXz +cXy kZL eVc uXg @@ -63239,10 +63239,10 @@ hMs sHP sHP sHP -pgo +jlT nnq -nTq -fIA +hZc +cIL sHP sHP aad @@ -63317,8 +63317,8 @@ aar aUp bly abc -dOy -gUh +gKP +tjM aUp aac aac @@ -63341,85 +63341,85 @@ aac aac anG anG -mmT -mmT -mmT +kZn +kZn +kZn anG anJ aDE -oQP -epv +wsr +fdq aDE -jhm +kNS cdh -pvb -mQF -pUN -foy -phJ -eBm -fik -iFq -pvb -vfo -ogG -eau -phJ -cWT -gEA -kEE -pvb +gco +voC +oDJ +oah +dKH +hHR +mmf +stE +gco +pIp +wdJ +oac +dKH +iGQ +xTE +vUD +gco clK -dIc -ook -dQk -fBG -hfe -xnq -iKj -idi -obP +tUt +kZX +wBJ +okQ +gyc +knx +heq +mLA +nAx bCz -nBC +qlM bCz bwi -mUd -ojG -jdw +qRu +hiA +iDc orL orL -jUT +knT orL orL orL -jUT +knT orL orL orL orL -jUT +knT bvz bsW bvz -roN -rwi +twg +lzs snV srk wZZ wZZ -pev +kyl bjr bjr bjr -fTp +jea wij wZZ bmv bmv wZZ wZZ -xAj -miQ +uhD +fkZ reb fHW vPQ @@ -63433,11 +63433,11 @@ vPQ wXm vPQ vPQ -uOk +pqz xLB lKv -lqq -lqq +xPz +xPz sHP aad aad @@ -63535,77 +63535,77 @@ aac aac aac anG -dFC -tWI -cqz -meZ +hmv +bqm +wQJ +oUM anG djW aDE bWN bWN bWN -lYL +mfK ckf -pvb -wFP -wFP -wFP -phJ -xlF -xlF -wKf -pvb -kqW -vqY -riA -phJ -wFP -xlF -fdF -pvb +gco +cVi +cVi +cVi +dKH +tgv +tgv +dfR +gco +gQE +wKl +fxi +dKH +cVi +tgv +gmL +gco cdh -jCo -ook -eGR -lNf -ook -qzx -fIW -qIA -enY +mRR +kZX +mWI +nYG +kZX +hSh +ojF +kHz +pCe bCz bCz bCz bwj -mUd -ojG -uKh -jdw -jdw -jdw -jdw -jdw -jdw -jdw -jdw -jdw -jdw -jdw -uKh -jdw -utU -jdw -unK -bFN +qRu +hiA +fcX +iDc +iDc +iDc +iDc +iDc +iDc +iDc +iDc +iDc +iDc +iDc +fcX +iDc +sOu +iDc +ola +jXl snV srk vQo wZZ -pev +kyl bjr bjr -miQ +fkZ wZZ wZZ wZZ @@ -63613,8 +63613,8 @@ bmv bmv xFc bmv -xAj -miQ +uhD +fkZ pzb wXm vPQ @@ -63705,7 +63705,7 @@ aUp bof bof aUp -oHv +bcn aYp bod aUp @@ -63730,67 +63730,67 @@ aac aac anG anG -gKi -sXB -sXB -sXB +qmD +vyw +vyw +vyw anG anG anG bPf bPf bPf -smK +pzZ cdh -cKI -rHr -rHr -meR -nZh -jfi -meR -meR -jcV -fTi -jfi -rHr -nZh -meR -meR -meR -cxt +ped +eDS +eDS +xJF +qbb +eZH +xJF +xJF +lxX +qsU +eZH +eDS +qbb +xJF +xJF +xJF +pqI cdh ckK -dXT -gkL -swB -cTV -ggk -fIW -kgD -obP -obP -yaz -obP +dTV +fPR +rQI +sKE +dGf +ojF +cQC +nAx +nAx +iOV +nAx bwk -mUd -qLE -vkw -qaa -pGW -pGW -pGW -lwt -pGW -pGW -lwt -pGW -pGW -pGW -ygo -pGW -sHk -vKp +qRu +tmj +rUG +hnO +xsP +xsP +xsP +lrr +xsP +xsP +lrr +xsP +xsP +xsP +qwt +xsP +mvM +qKW bCz bCz snV @@ -63800,7 +63800,7 @@ vQo srk bjr fow -miQ +fkZ wZZ wZZ wZZ @@ -63808,8 +63808,8 @@ wZZ bmv bmv uwJ -xAj -miQ +uhD +fkZ hGm bIu vPQ @@ -63925,75 +63925,75 @@ aac aac anG bPf -fXX -sXB -hAh -djK +ePe +vyw +phg +wCH bPf -lee -wNj -dVV +puL +lLm +wWx bPf bPf -xvU +qrm cdh -uLg -xlF -xlF -lZP -phJ -xlF -mim -xlF -pvb -mim -lpJ -xlF -phJ -xlF -mim -xlF -pvb +oZU +tgv +tgv +uRb +dKH +tgv +xHR +tgv +gco +xHR +rxb +tgv +dKH +tgv +xHR +tgv +gco cdh ckK ckK -wmV -wmV -wmV -wmV +qbf +qbf +qbf +qbf bes -qIA -pGW -pGW -dSq -pGW -pGW -gDe -icV -jBE -jBE -jBE -lBG -cbd +kHz +xsP +xsP +ePw +xsP +xsP +mqr +oWf +oGy +oGy +oGy +fvl +kZi bCz -lIa -lIa +trK +trK bCz -mrd -oqU -tvL -kcJ -jdw -jdw -jdw -dEU +mqI +ovG +sow +bIc +iDc +iDc +iDc +hKX vhv vOs bCz bCz bCz bCz -qje +wlj bCz vQo vQo @@ -64003,9 +64003,9 @@ wZZ wZZ wZZ wZZ -xAj +uhD bjr -sMr +qrF ajf uXY uXY @@ -64097,7 +64097,7 @@ aYp aYo aYp aYp -kkn +fsX ahg aeL agR @@ -64120,75 +64120,75 @@ aac aac anG bPf -vRo -vRo -vRo -ixw -vRo -vRo -vRo -vRo -cmL +txi +txi +txi +hNh +txi +txi +txi +txi +nsV bPf -epv +fdq cdh -vBm -sKt -xlF -xlF -qUD -xlF -tfq -lpJ -pvb -xlF -xlF -xlF -bHn -xlF -xlF -wFP -pvb +sJx +qmH +tgv +tgv +qfB +tgv +ljp +rxb +gco +tgv +tgv +tgv +xsl +tgv +tgv +cVi +gco cdh cdh -gxw +sRu col col col col -gxw -kgD -wOT -obP -faf -obP -tHq -juC -tHq -tHq -yjQ -dxH -dxH -vPX +sRu +cQC +tZg +nAx +pkV +nAx +mgy +mbV +mgy +mgy +xwg +eNm +eNm +riB bCz -cJy -mJN -rnr +mxV +oCL +woa kzk bsW -pIb -pIb -pIb -pIb +mbN +mbN +mbN +mbN bvz bvz bvz -wbr -roN -roN -roN -roN -roN +svX +twg +twg +twg +twg +twg bCz vQo vQo @@ -64198,12 +64198,12 @@ mMR wZZ wZZ wZZ -iAW +lQf bjr bjr -vCz -vCz -xQZ +slp +slp +lkb hwD vPQ vPQ @@ -64314,62 +64314,62 @@ aac aac aac anG -qDr -sLw -sLw -sLw -wlZ -oLr -lns -ihC -lns -nIN -vyq -vyp +cYv +wie +wie +wie +wgV +olL +wJG +ouY +wJG +nLI +fMc +rKr atR -fAm -eNr -koQ -jZG -sJc -dLQ -diM -xGV -pvb -pwD -jjs -kTJ -phJ -eUX -rVd -eBt -pvb +fvG +exd +lOz +cEk +pWY +tSS +eIF +iSo +gco +fGV +iol +tYN +dKH +nUo +kCj +mKb +gco aRo cdh -lYg +fzw pNL pNL pNL pNL -lYg +fzw bsW bvz -obP +nAx vOs -fXk -fXk -mDb +hnK +hnK +dlL vOs vOs -oaA -oaA -qrb -qrb +rrk +rrk +vPV +vPV bCz -mZV -mWP -rnr -hZZ +sgU +euI +woa +kiZ bsW bvz ski @@ -64379,11 +64379,11 @@ iDq bvz bvz bCz -mpi -cFo -mTi -vIC -oHp +roB +rRW +qAa +hIv +pgK bCz vQo vQo @@ -64394,11 +64394,11 @@ wZZ wZZ bmv bmv -iAW -tsC -tsC +lQf +kHi +kHi bjr -miQ +fkZ uXg uXg uXg @@ -64485,7 +64485,7 @@ aYo aYp aaS aUp -uCL +fJV bmQ boe aUp @@ -64509,60 +64509,60 @@ aac aac aac anG -xUX -vRo -vRo -vRo -ovF -vRo -vRo -ixw -vRo -hzG -wAc -epv +uQP +txi +txi +txi +hFZ +txi +txi +hNh +txi +qcv +fnf +fdq cdh -qvP -sJc -phJ -iMf -phJ -crc -sNG -phJ -pvb -sJc -sJc -sJc -phJ -sJc -crc -sJc -dsh +gXV +pWY +dKH +sKH +dKH +wCl +rVv +dKH +gco +pWY +pWY +pWY +dKH +pWY +wCl +pWY +sAX aRq cdh -lYg +fzw pNL pNL pNL pNL -lYg +fzw bsW bvz -obP +nAx vOs -cZo -vEc -xGc -eNU +cjK +xBx +vSW +vKz vOs -lIa -lIa -lIa +trK +trK +trK bCz bCz bCz -kpL +lWQ bCz bCz bsW @@ -64571,8 +64571,8 @@ vOs vOs vOs vOs -kHv -kHv +mfu +mfu vOs bCz bCz @@ -64592,8 +64592,8 @@ wZZ bmv wZZ wij -xAj -miQ +uhD +fkZ uXg uXg uXg @@ -64705,17 +64705,17 @@ aac aac anG bPf -nJG -tid -mRC +icq +gOd +fcC anG -jiH -vRo -ixw -rxU +pdG +txi +hNh +rXm bPf bPf -bCW +hiz cdh cdh cdh @@ -64735,32 +64735,32 @@ aNz azj aQi aAL -rOi -jMI +ioh +qkB aVD aVD aVD aVD -jMI +qkB nPJ bvz -obP +nAx vOs -cmy -bRR -aSI -rvn +tYl +tZw +qzZ +dWh vOs -ndy -tzA -rVs -utH +dcO +kgl +qyv +ivg clw cqf dBe -gYK -rnr -ojG +tpY +woa +hiA bvz vOs vQo @@ -64787,8 +64787,8 @@ wZZ wZZ wZZ wij -xAj -miQ +uhD +fkZ uXg uXg ygq @@ -64899,63 +64899,63 @@ aac aac aac anG -jpZ -vRo -vRo -vRo -ehC -vRo -vRo -ixw -vRo -fif +wov +txi +txi +txi +psh +txi +txi +hNh +txi +eGz bPf -xMn -phJ -phJ -phJ -pvb +uWN +dKH +dKH +dKH +gco cjn -hYj -hYj -hYj -hYj +hLJ +hLJ +hLJ +hLJ cjn -ddH -eEn -nti -gPh -yfu +wmf +kUk +uAR +cXr +eEG cjn -tWO -kot -dtB -dtB +dHy +lDy +pDo +pDo aUc cpU cpU cpU cpU cpU -ims -geb -oCU +dSD +oQM +ebe vOs -eFz -swD -xGc -hhv +pKV +pEI +vSW +eJG vOs -lgk -jPp -cob +xYZ +ehf +sWX bCz clx -ojG -obP -myF -rnr -ojG +hiA +nAx +ofA +woa +hiA bvz vOs vQo @@ -64979,16 +64979,16 @@ wZZ vQo jWz jWz -wTS +isf jWz jWz -xAj -miQ +uhD +fkZ uXg uXg ygq -fGT -wFX +ikk +hJb ygq lAx vPQ @@ -65094,63 +65094,63 @@ aac aac aac anG -uWH -sLw -sLw -sLw -sLw -sLw -vRo -ixw -vRo -nDZ +lPb +wie +wie +wie +wie +wie +txi +hNh +txi +oAI bPf -lER -xlF -xlF -xlF -oei -isD -rey -dtK -dtK -rey -isD -mNY -mNY -mNY -mNY -ogQ -isD -rey -iZP -rey -rey +fXA +tgv +tgv +tgv +dzp +qde +rvb +eiq +eiq +rvb +qde +gaK +gaK +gaK +gaK +nuF +qde +rvb +gcK +rvb +rvb cpU -cMH -xZh -wbT -dJD +pmz +qtm +euR +pUa cpU crI aHP -oCU +ebe vOs -hGW -plw -xGc -gWQ +nLi +uoK +vSW +gdz vOs -hoT -rJN -hoT +eAT +mjS +eAT bCz cly -odY -lIa -lIa +ehC +trK +trK vOs -rPK +fRy cUi vOs vQo @@ -65173,17 +65173,17 @@ wZZ vQo jWz okK -qIU +rMH onr wBI jWz -xAj -qwH +uhD +iCW srk uXg oWU -lYm -oIq +xxo +bBn ygq ygq ygq @@ -65289,63 +65289,63 @@ aac aac aac anG -jpZ -vRo -vRo -ovF -vRo -vRo -vRo -ixw -fGz -cmJ +wov +txi +txi +hFZ +txi +txi +txi +hNh +vuo +lBg bPf -ruf -xlF -xlF -kdc -jrO -kCo -qLr -wRU -wRU -dop -kCo -suq -suq -suq -suq -ahF -kCo -nBu -omj -mgC -rey -mLl +dNh +tgv +tgv +lCc +wDh +oiN +vDQ +sYk +sYk +kqA +oiN +eLJ +eLJ +eLJ +eLJ +gPI +oiN +ihm +sBu +dVY +rvb +sJW aVF aXk aVF -pkQ +muV aKM crI aHP -oCU +ebe vOs -ybn -bmz -xGc -fYX +abm +dCG +vSW +lgA vOs -hoT -rJN -hoT +eAT +mjS +eAT bCz bvz -bEP -ttN -knf -pGW -sHk +wMG +oSM +jYn +xsP +mvM bvz vOs wZZ @@ -65372,18 +65372,18 @@ qcV onr qTF jWz -xAj -miQ +uhD +fkZ uXg ygq ygq -ehi -ubX +tBZ +hki ygq pUB pGy ygq -ybr +qZL ygq pge pge @@ -65485,15 +65485,15 @@ ali ali bPf bPf -lFA -lFA +kvP +kvP bPf -dgI -dgI -dgI -ixw -vRo -nDZ +weS +weS +weS +hNh +txi +oAI cjn cjn chB @@ -65501,39 +65501,39 @@ chi bZH cjn cjn -xLz -mgC -mgC -pXi +dZt +dVY +dVY +dTc cjn -tNl -mNY -mNY -ifs -qDj +kac +gaK +gaK +dGG +mLF cjn -rey -giU -mgC -hRU +rvb +qDP +dVY +hyA cpU aVF -bwa -dmo -ouD +huV +gAy +nxO cpU crI aHP -oCU +ebe vOs vOs vOs -mDb +dlL vOs vOs -hoT -rJN -hoT +eAT +mjS +eAT bCz bvz bvz @@ -65563,17 +65563,17 @@ jWz jWz jWz kaw -ojX +nTY rel -soM +tJa jWz -xAj -miQ +uhD +fkZ uXg ygq -jyB -hhH -gOC +uiI +hqj +wWc usI vJB kbU @@ -65655,9 +65655,9 @@ agR agR agR agR -oJy +dCl aba -oJy +dCl agR agR agR @@ -65678,57 +65678,57 @@ ahZ awb agR agR -jxU -dTb -ckp -ckp -sAQ -ckp -ckp -dgI -ixw -vRo -fif +qjj +sTq +vGK +vGK +aLI +vGK +vGK +weS +hNh +txi +eGz cjn cau bYl -qbc +tCn bZI cao cjn -rey -mgC -mgC -xbG +rvb +dVY +dVY +mcs cjn -dAl -xEQ -qWs -byt -nsP +qRk +iVo +grQ +bGL +eTm cjn -rey -giU -tPV -cJh +rvb +qDP +nqu +ogf cpU -tLj +jcZ cpU cpU cpU cpU -nzq -vEh -hSI -lPK -lPK -sJr -nzq -vEh +lcN +iBB +ybi +jsI +jsI +opI +lcN +iBB bCz -hoT -rJN -hoT +eAT +mjS +eAT bCz bvz bvz @@ -65737,7 +65737,7 @@ bvz bvz bvz bvz -joc +oXk bmv bmv bmv @@ -65755,20 +65755,20 @@ bmv bmv bmv jWz -hnK -tWB -cLP -mtv -hhP -aoS +rRX +fbU +vgH +oLB +cmU +sbm jWz -xAj -miQ +uhD +fkZ uXg ygq -nyV -gOC -mUi +xRh +wWc +epp xPv xPv iHX @@ -65850,9 +65850,9 @@ age agR agR agR -siA -siA -siA +oEv +oEv +oEv agR agR ahZ @@ -65873,66 +65873,66 @@ agR ahZ amw ahZ -noc -ckp -ckp -ckp -ogo -jAv -jAv -bSZ -mPg -fGz -nDZ +uKI +vGK +vGK +vGK +qHC +ouI +ouI +ulu +xYl +vuo +oAI cjn bXC bYm -kTh +dHp bZJ cao cjn -rey -rey -mgC -hGG +rvb +rvb +dVY +drJ cjn -vRB -vRB -vRB -vRB -vRB +eZn +eZn +eZn +eZn +eZn cjn -tjW -giU -mgC -rey -bVK -geb -geb -muq -muq -bVK -oiE -ezn -kPa -ezn -ezn -ezn -prT -jcF +vWQ +qDP +dVY +rvb +vGj +oQM +oQM +jcf +jcf +vGj +mDy +eVW +ogd +eVW +eVW +eVW +vNJ +tGo bCz -rKs -gPU -rbe +iaW +oXi +mkF bCz -was -jDN -gQG -vjO -qrb +hvr +uVd +okr +oYQ +vPV bvz bvz -pZw +vGl bmv xFc bmv @@ -65950,25 +65950,25 @@ uwJ bmv bmv jWz -mdv -wLe +pTR +vgY jWz -gob -xez -sBy +nJu +dRt +pFt jWz -xAj -miQ +uhD +fkZ uXg ygq ygq -cRo -nyV +hrQ +xRh ygq lyX wEo ygq -ybr +qZL ygq vPQ vPQ @@ -66068,65 +66068,65 @@ ahZ ahZ agR agR -wAc -ckp -oXp -ckp -ckp -ckp -eAm +fnf +vGK +fLE +vGK +vGK +vGK +klp bPf -jtS -fGz -gPu +uAl +vuo +vYd cjn asV atS -mgC +dVY cjn cjn cjn cjn -rey -tPV -iZP -ppi -rey -rey -rey -rey -rey -ppi -rey -huR -mgC -rey -bVK -geb -geb -ooM -ooM -bVK -vEh -vEh -gNR -vEh -piW -vEh -oiE -ezn -utH -rVs -tld -hoT +rvb +nqu +gcK +kbY +rvb +rvb +rvb +rvb +rvb +kbY +rvb +ecS +dVY +rvb +vGj +oQM +oQM +iFp +iFp +vGj +iBB +iBB +kyz +iBB +plR +iBB +mDy +eVW +ivg +qyv +fnE +eAT vOs vOs vOs vOs vOs vOs -jUT -tYT +knT +etB vOs bmv bmv @@ -66152,8 +66152,8 @@ jWz jWz jWz jWz -xAj -qwH +uhD +iCW srk uXg ygq @@ -66195,7 +66195,7 @@ jLb jLb sKX jLb -dob +jji aad aad aad @@ -66263,57 +66263,57 @@ aiW akH agR agR -jxU -twM -tkx +qjj +nLF +jCA akE -gll -ckp -gll -lFA -ixw -fGz -nDZ +ioV +vGK +ioV +kvP +hNh +vuo +oAI arI asW atT -qbc -kdk -wRn -uAg +tCn +jRC +llL +uoD cjn -rey -mgC -lot -wRU -wRU -wRU -wRU -wRU -wRU -wRU -qZp -qLz -mgC -mbm +rvb +dVY +wpl +sYk +sYk +sYk +sYk +sYk +sYk +sYk +eON +wqN +dVY +cpx cpU -gPA -gPA +vEZ +vEZ cpU cdm cdm -vEh -nHX +iBB +oWT cdm cdm cdm -vEh -nHX +iBB +oWT cdm vOs -lIa -lIa -lIa +trK +trK +trK vOs htD cth @@ -66347,8 +66347,8 @@ bmv lgy bmv bmv -xAj -miQ +uhD +fkZ jPV oDL vPQ @@ -66462,46 +66462,46 @@ anG anG anG anG -tKz -gll -xMI -ioW -ixw -vRo -nDZ +sNr +ioV +wXZ +rkN +hNh +txi +oAI cjn -mgC -ttE -mgC +dVY +eeK +dVY cjn cjn cjn bZH -rey -mgC -nsP -rDA -lYy -rey -rey -rey -qjs -rey -nsP -xmE -rey -raP +rvb +dVY +eTm +bOM +env +rvb +rvb +rvb +mtt +rvb +eTm +bVT +rvb +nnE cpU -mVP -pGZ +oTT +rwY cpU -vDL -qeA -xAj -miQ +hxT +qdC +uhD +fkZ bmv bIt -vKn +hrC btL wZZ wZZ @@ -66542,8 +66542,8 @@ bmv bmv bmv bmv -xAj -miQ +uhD +fkZ jPV oDL vPQ @@ -66636,13 +66636,13 @@ ahZ ahZ ahZ amm -siA -siA +oEv +oEv abO acg acv -gsJ -xiA +cOq +eAV amm ahZ ahZ @@ -66658,42 +66658,42 @@ aac aac aXG nJO -gll +ioV amP bPf bVw apI apI cjn -kzG -rwc -mgC -mgC -iDy -mgC +wGo +peD +dVY +dVY +mew +dVY bYV -rey -mgC -lTz +rvb +dVY +lXJ cjn cjn -afp -afp +map +map cjn cjn cpU cpU cpU -tLj +jcZ cpU cpU -mVP -mTO +oTT +iAw aZz -qeA -qeA -xAj -miQ +qdC +qdC +uhD +fkZ wZZ wZZ wZZ @@ -66815,7 +66815,7 @@ aac aac aUp ahg -kaa +jxW aUp aaQ ahZ @@ -66831,13 +66831,13 @@ ahZ ahZ ahZ ahZ -siA -dNB -gXE -gXE -gXE -dNB -gsJ +oEv +tYn +gmC +gmC +gmC +tYn +cOq agS ahZ ahZ @@ -66853,42 +66853,42 @@ aac aac aXG nJO -gll +ioV amP anR -ixw -vRo -sXB -qbc -mgC -xeS -qbc -mgC -pfS -mgC +hNh +txi +vyw +tCn +dVY +fnB +tCn +dVY +lWz +dVY chB -rey -xmE -rey -dbp +rvb +bVT +rvb +itV aGO aHP aHP aKZ cjn -ptI -gxU +dfZ +bWA cpU -khF -wWZ +vKT +htM cpU -mVP -iSZ +oTT +guK cpU -vDL -qeA -xAj -miQ +hxT +qdC +uhD +fkZ wZZ bqf csY @@ -66897,22 +66897,22 @@ wZZ bqf bLD wZZ -lCU -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -gmb +kHp +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +ufR wZZ vQo vQo @@ -67026,13 +67026,13 @@ agR ahZ agR ahZ -siA -dNB -sxI -sxI -sxI -dNB -siA +oEv +tYn +rcj +rcj +rcj +tYn +oEv ahZ ahZ ahZ @@ -67048,16 +67048,16 @@ aac aac aXG nJO -xOU +jEp amP anU -ixw -vRo -sXB -oPE -omE -mgC -qbc +hNh +txi +vyw +lHh +vLA +dVY +tCn cjn cjn cjn @@ -67067,47 +67067,47 @@ cjn cpU cjn aHP -mgC -mgC +dVY +dVY aHP -jcO -khF -khF -qPL -qPL -qPL -qPL -khF -khF -hqu -qeA -qeA -xAj -miQ +suI +vKT +vKT +dGI +dGI +dGI +dGI +vKT +vKT +kFa +qdC +qdC +uhD +fkZ bmw bqs csZ bqf bqf wZZ -gtd +nPD wZZ -xAj +uhD bjr bjr bjr -tvy -tvy -tsC -tsC -ogn -tsC -tsC -tvy -tvy -tvy +kMb +kMb +kHi +kHi +ewS +kHi +kHi +kMb +kMb +kMb bjr -miQ +fkZ wZZ wZZ vQo @@ -67221,13 +67221,13 @@ ahZ agR ahZ amm -siA -siA +oEv +oEv abR ach byP -gsJ -xiA +cOq +eAV amn ahZ agR @@ -67243,13 +67243,13 @@ aac aac aXG nJO -gll +ioV amP anR -ixw -vRo -qau -qbc +hNh +txi +bPN +tCn ata vCD avb @@ -67266,31 +67266,31 @@ aHP aHP aLa cjn -vAG +uAu cpU -pGZ -khF -khF -khF -khF -khF -khF -ktx -qeA -xAj -miQ +rwY +vKT +vKT +vKT +vKT +vKT +vKT +pIH +qdC +uhD +fkZ wZZ bwE -boB +uSd sPF -boB +uSd btL btE wZZ -xAj +uhD bjr bjr -oFf +pwa cti btN cpg @@ -67301,8 +67301,8 @@ wvt bBr wLv wLv -vnN -miQ +mwH +fkZ wZZ wZZ srk @@ -67438,17 +67438,17 @@ aac aac aXG nJO -gll +ioV amP bPf -jtS -fGz -sXB -mgC +uAl +vuo +vyw +dVY bZI bZI bZI -kdk +jRC axM bYm aAU @@ -67457,14 +67457,14 @@ aDs cpU cjn cjn -afp -gpI +map +kbV cjn cjn -pGZ +rwY cpU cpU -tLj +jcZ cpU cpU cpU @@ -67472,20 +67472,20 @@ cpU cpU bbK xkj -xAj -miQ +uhD +fkZ wZZ wZZ sPF -iyZ +vQX sPF bDB wZZ wZZ -xAj +uhD bjr bjr -tXz +cXy cuc cwq xkj @@ -67496,22 +67496,22 @@ cwq xkj xkj wLv -vnN +mwH bjr -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX -xua -wjX -wjX -wjX -wjX -wjX +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl +tpw +xMl +xMl +xMl +xMl +xMl cpg uXg uXg @@ -67632,19 +67632,19 @@ aac aac aac aXG -tKz -gll -xMI -hDj -ixw -vRo -sXB -qbc +sNr +ioV +wXZ +qxs +hNh +txi +vyw +tCn ata vCD avb aEe -hOV +usi bYm aAW aCn @@ -67652,14 +67652,14 @@ aDt cpU aFD cpU -bSe -khF +eeH +vKT cpU cpU cpU cpU cpU -khF +vKT cpU cpg aMw @@ -67667,19 +67667,19 @@ xkj xkj xkj xkj -xAj -miQ +uhD +fkZ wZZ bqf -boB +uSd sPF -boB +uSd wZZ bqf wZZ -xAj +uhD bjr -miQ +fkZ reb ctH xkj @@ -67691,22 +67691,22 @@ xkj xkj xjr lmv -uok -tvy -tsC -tsC -ogn -tsC -tsC -ogn -tsC -tsC -tsC -tsC -tvy -tvy -tvy -rIK +wEu +kMb +kHi +kHi +ewS +kHi +kHi +ewS +kHi +kHi +kHi +kHi +kMb +kMb +kMb +gUS wLv cpg uXg @@ -67827,17 +67827,17 @@ aac aac aac aXG -gll -ogo -lXQ -pCy -kBK -mUC -idh -qbc -mgC -mgC -mgC +ioV +qHC +nlS +rjm +sFm +cNY +esf +tCn +dVY +dVY +dVY cjn cau bYm @@ -67847,14 +67847,14 @@ cdm aDu aDu aDu -khF -khF -cfk -qPL -qPL -qPL -wxf -cSc +vKT +vKT +pwl +dGI +dGI +dGI +diX +vbo cpU cpg xkj @@ -67862,8 +67862,8 @@ xkj aNF xkj xkj -xAj -miQ +uhD +fkZ bmw brs bqf @@ -67872,9 +67872,9 @@ wZZ btK wZZ wZZ -xAj +uhD bjr -miQ +fkZ pzb lmv xjr @@ -67927,7 +67927,7 @@ vPQ vPQ vPQ uXg -cen +pJg jLb jLb jLb @@ -68022,33 +68022,33 @@ bNW aac bNW bME -rod -nvu -rod -hDj -vRo -fqk -idh -mgC -mgC -mgC -oHI +sdX +jWZ +sdX +qxs +txi +bSe +esf +dVY +dVY +dVY +vKG cjn cjn cjn cjn -xqU +nPU cdm -srs -iFQ +uhj +pOG aDu -bSe -bSe +eeH +eeH cpU -oAf -oAf -oAf -oAf +xwp +xwp +xwp +xwp aFD aFD xkj @@ -68057,8 +68057,8 @@ xkj xkj xkj xkj -xAj -miQ +uhD +fkZ wZZ btE btL @@ -68067,9 +68067,9 @@ wZZ bDC wZZ wZZ -xAj +uhD bjr -miQ +fkZ hGm ctZ xjr @@ -68221,29 +68221,29 @@ bME bME bME bPf -ckp -wEl +vGK +xzT bPf cjn -qlu -mgC -dIB -oSO -hdT -cEI -uhy -uhy +pih +dVY +sGz +dEG +vsT +qqz +oqm +oqm aDu -xrT -bSe -lOw -khF -khF +slz +eeH +rBA +vKT +vKT iau -mSx -khF -xCq -vLT +uoN +vKT +flk +mYb cpg cpg wLv @@ -68252,20 +68252,20 @@ wLv xId cpg aMw -gtb +rSr bjr -wjX -wjX -wjX -wjX -wjX -wjX -wjX -wjX +xMl +xMl +xMl +xMl +xMl +xMl +xMl +xMl bjr bjr bjr -sMr +qrF cuc xkj xkj @@ -68279,8 +68279,8 @@ xkj cpg cpg cxW -hFG -mGn +hYe +uDK cxW iMn xkj @@ -68398,7 +68398,7 @@ acc age tSb agR -dNB +tYn agR aac aac @@ -68415,30 +68415,30 @@ bNW bNW bNW bNW -vXE -lUa -mcE -hKH +cFH +jkh +qBW +kMW cjn -gqh -mgC -mgC -oSO -oMY -cvP -rcH -mHP +jUr +dVY +dVY +dEG +sqg +tmT +lNj +voL aKM -rCS -iFQ +eEH +pOG aDu -lhL -khF +wEX +vKT iau -fYS -cVs -bXy -qMB +qZk +oGt +qRL +xfz cpg cpg xkj @@ -68447,20 +68447,20 @@ xkj aXp aXp aXp -iAW -ogn -tsC -tsC -qFD -fkQ -sDA -sDA -wZz -tsC -ogn -tsC -tsC -tXz +lQf +ewS +kHi +kHi +qdq +cKf +lnu +lnu +niD +kHi +ewS +kHi +kHi +cXy cuc cwq xkj @@ -68474,8 +68474,8 @@ xkj cpg cpg qbR -lud -mFP +kEJ +pFV cxW cxW cxW @@ -68594,7 +68594,7 @@ acw age adN bkT -xrs +gNs bDm bHj bHj @@ -68610,25 +68610,25 @@ bNW bNW bNW vVK -vXE -vXE -vXE -vXE +cFH +cFH +cFH +cFH cjn cjn -gpI +kbV cjn cpU -osL -osL -osL +xFd +xFd +xFd cpU aDu aDu aDu aDu -ikc -dpQ +rEL +pBM cpU aMw aMw @@ -68669,13 +68669,13 @@ xkj cpg cxW cxW -aLC -oYQ +hlN +hUa cxW lpk aLc hjC -lwr +muh cxW cpg xkj @@ -68788,8 +68788,8 @@ aUD aXb aac adq -uwt -cKw +lPl +viY lkB bHj bHj @@ -68810,9 +68810,9 @@ pPk pPk rok rPA -pcn +wds atY -aEz +pGY tvk pPk pPk @@ -68822,8 +68822,8 @@ bHj bHj cpg cpg -bKX -bKX +rxs +rxs wLv wLv wLv @@ -68835,9 +68835,9 @@ xkj xkj aXp bdj -fVd -kmY -hxA +jqk +ocJ +xMa aXp aXp xkj @@ -68863,9 +68863,9 @@ kLM xkj xkj cxW -snG -gXs -tFu +hiQ +oau +owf wab viA hsX @@ -68909,7 +68909,7 @@ dKj dKj dKj dKj -cen +pJg jLb jLb jLb @@ -68983,14 +68983,14 @@ aUD aUD aac bDm -xrs -uzL +gNs +xAC bDm bHj bDm -pAo -uzL -xrs +pIh +xAC +gNs bon aic agT @@ -69005,9 +69005,9 @@ bon bon bon arK -fOz -psY -gQa +rCI +vkX +ygO awr bon bon @@ -69029,11 +69029,11 @@ xkj xkj xkj aXp -wRk -bEa -uhp -uhp -hxA +rWj +qMW +jFM +jFM +xMa aXp cwq xkj @@ -69058,9 +69058,9 @@ cFp cxK xkj cxW -snG -gXs -gXs +hiQ +oau +oau uzb viA viA @@ -69084,8 +69084,8 @@ wXm wXm wXm rxp -cSj -psH +jqM +wPk rxp uXg uXg @@ -69178,15 +69178,15 @@ aUD aUD aac bDm -xrs -xrs +gNs +gNs bDm bHj bHj -uzL -xrs -xrs -xrs +xAC +gNs +gNs +gNs bon bon bon @@ -69224,11 +69224,11 @@ cwq xkj xkj aXp -gpu -bEa -bEa -xXB -uqA +djO +qMW +qMW +dXX +qIy aXp cpg cwq @@ -69254,13 +69254,13 @@ kLM xkj cxW cxW -hsl -snG +qfJ +hiQ cxW dSA sgq cxW -lwr +muh cxW xjr xkj @@ -69279,14 +69279,14 @@ cyQ cyQ cyQ ivF -sqd -qvb +qYo +gNd rxp dKj dKj dKj dKj -cen +pJg aiT dUl dUl @@ -69373,13 +69373,13 @@ aUD aUD aac bDm -uzL -uzL +xAC +xAC bDm bHj bDm -uzL -uzL +xAC +xAC bDm bHj bHj @@ -69419,7 +69419,7 @@ xkj aNF xkj aXq -bDc +lWT bbO aXp aXp @@ -69467,15 +69467,15 @@ xkj xkj cpg rxp -nGQ -nXo -gSm +iTA +rXY +knQ gUp eaO eaO rxp -xag -pWF +epa +bYs rxp dKj dKj @@ -69568,13 +69568,13 @@ aac aac aac bDm -uzL -cuq +xAC +gMj bDm bHj bDm -uzL -uzL +xAC +xAC bDm bHj bHj @@ -69615,7 +69615,7 @@ xkj xkj aXp aXp -wYK +cmw aXp wkv cpg @@ -69662,9 +69662,9 @@ xkj xkj cpg rxp -kcu -oOm -pIB +cOm +oSd +mLc eaO eaO eaO @@ -69763,13 +69763,13 @@ bNW bNW bNW bDm -sdZ -uzL +fgJ +xAC bDm bHj bDm -osp -uzL +wzm +xAC bDm bHj vVK @@ -69791,7 +69791,7 @@ vVK vVK vVK vVK -rHN +wGg cbF cdp cdp @@ -69857,9 +69857,9 @@ xkj xkj cpg rxp -nGQ -rmr -qsF +iTA +rBl +vlf sXt xtw gTB @@ -69877,7 +69877,7 @@ jLb jLb jLb jLb -cen +pJg dKj dKj eMz @@ -69958,13 +69958,13 @@ bNW bNW bNW bDm -cuq -uzL +gMj +xAC bDm bHj bDm -uzL -cuq +xAC +gMj bDm bHj vVK @@ -69984,10 +69984,10 @@ bXG bZN vVK cbF -jBb -esO -rHN -jBb +ida +qAD +wGg +ida cbF cbF cbF @@ -70000,7 +70000,7 @@ cjr aQt cpg cpg -pct +hvG xkj xkj xkj @@ -70056,11 +70056,11 @@ rxp rxp rxp rxp -qOb -qOb +qIK +qIK rxp rxp -wDX +pzX rxp dKj dKj @@ -70153,13 +70153,13 @@ bnd bnd bnd bDm -uzL -uzL +xAC +xAC bDm bHj bDm -uzL -uzL +xAC +xAC bDm vVK vVK @@ -70179,13 +70179,13 @@ vVK vVK avg awt -onW -rHN -cXl -onW +rPk +wGg +kqH +rPk cbF -pqB -thE +oKE +aHX cbF cdp aIU @@ -70198,7 +70198,7 @@ cjr aSB xkj cpg -pct +hvG xkj xkj beE @@ -70343,18 +70343,18 @@ aad aad bnd bnd -sZn +jBg abC -cHN +onA bnd bDm -cuf -uzL +hxk +xAC bDm bDm bDm -uzL -xrs +xAC +gNs agT bon bon @@ -70374,13 +70374,13 @@ vVK aoT vVK cbF -chM +sTE azs aBa -rHN +wGg aME -dOZ -sKk +vYA +nvl cbF cdp cdp @@ -70537,19 +70537,19 @@ aad aad aad bnd -sZn -uzL -wlG -cuq -qhc +jBg +xAC +pJw +gMj +fTv abC -uzL -uzL -cuq -dwH -qey -uzL -xrs +xAC +xAC +gMj +hUz +pmP +xAC +gNs bon bon bon @@ -70574,11 +70574,11 @@ azt cbE cbF cbF -gyE -gyE +ilF +ilF cbF cbF -cPk +mJb aHZ cjr cjr @@ -70667,7 +70667,7 @@ dKj dKj dKj dKj -cen +pJg jLb dKj jLb @@ -70733,17 +70733,17 @@ aad aad bnd abC -uzL +xAC abC -cuf +hxk abC bDm -cuE -uzL -uzL -uzL -ebz -xrs +nrs +xAC +xAC +xAC +xJB +gNs agi bon bon @@ -70767,12 +70767,12 @@ vVK axV caV aBb -dQS -gLD +vRs +gvP aCt -ger -rHJ -rWd +giT +nrd +fgp aJJ aHZ cjr @@ -70826,13 +70826,13 @@ tPN tPN tPN tPN -ulX +lXP vit vit vit vit vit -ulX +lXP tPN tPN tPN @@ -70927,14 +70927,14 @@ aad aad aad bnd -qhc -cuq -uzL -uzL -hWx -uzL -uzL -uzL +fTv +gMj +xAC +xAC +beN +xAC +xAC +xAC bDm bDm bDm @@ -70962,13 +70962,13 @@ bZN axU caW caW -sNc +gPA aDx aEw -rHN -vbW +wGg +viZ aIb -cPk +mJb aHZ cjr cjr @@ -71123,13 +71123,13 @@ aad aad bnd bnd -fma +eKT abC -gsu +plM bnd bDm -cuq -uzL +gMj +xAC bDm bHj bHj @@ -71157,10 +71157,10 @@ vVK cbF azu cbF -oPk +oTy aDy aEx -oFd +kHb cbF cbF cdp @@ -71206,7 +71206,7 @@ cwD piY piY piY -ulX +lXP tPN tPN tPN @@ -71323,8 +71323,8 @@ bnd bnd bnd bDm -uzL -cuf +xAC +hxk bDm bHj bHj @@ -71351,11 +71351,11 @@ vVK aoT vVK vVK -lpp +dKA aCt caW -xsi -xsi +usk +usk cbF cdp cdp @@ -71384,7 +71384,7 @@ bDH cwD cuM cuM -lzI +gae cuM cuM cwD @@ -71518,8 +71518,8 @@ bDm bDm bDm bDm -uzL -uzL +xAC +xAC bDm bHj bHj @@ -71617,10 +71617,10 @@ vit vit tPN tPN -ulX +lXP vit vit -ulX +lXP vit vit vit @@ -71709,12 +71709,12 @@ aad aad aad bDm -kUq -kcC -uzL +nwS +jty +xAC bDm -sdZ -uzL +fgJ +xAC bDm bHj bHj @@ -71800,7 +71800,7 @@ tPN tPN tPN tPN -ulX +lXP vit vit vit @@ -71904,12 +71904,12 @@ aad aad aad bDm -kcC -uzL -uzL -rvu -uzL -cuq +jty +xAC +xAC +uDP +xAC +gMj bDm bHj bHj @@ -72099,12 +72099,12 @@ aad aad aad bDm -uzL -dTi -uzL -eLb -dTi -uzL +xAC +cqo +xAC +suZ +cqo +xAC bDm bHj bHj @@ -72294,12 +72294,12 @@ aad aad aad bDm -hgL -cuq -kUq +lGX +gMj +nwS bDm -uzL -uzL +xAC +xAC bDm bHj bHj @@ -72359,7 +72359,7 @@ cwD cwD cwD mmF -qHt +fBG cwD cwD cuM @@ -72381,18 +72381,18 @@ sRR vit vit uvw -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY iRk uvw uvw @@ -72421,14 +72421,14 @@ dKj dKj dKj dKj -cen +pJg jLb jLb eMz euZ eMz jLb -cen +pJg aad aad aad @@ -72490,11 +72490,11 @@ aad aad bDm bDm -uzL +xAC bDm bDm -cuq -uzL +gMj +xAC bDm bHj bHj @@ -72527,7 +72527,7 @@ cdp cdp cdp ceQ -nOM +osN aJK aCv jUA @@ -72576,7 +72576,7 @@ tPN tPN vit uvw -fPj +gYY gih gih gih @@ -72587,7 +72587,7 @@ gih gih pqG gih -fPj +gYY vit vit uvw @@ -72601,7 +72601,7 @@ vit vit vit sRR -ulX +lXP ekJ ekJ dKj @@ -72684,12 +72684,12 @@ aad aad aad bDm -nLf -uzL -ldx +giI +xAC +mtJ bDm -sdZ -uzL +fgJ +xAC bDm bDm bDm @@ -72771,7 +72771,7 @@ tPN tPN vit vit -fPj +gYY gih khT khT @@ -72782,7 +72782,7 @@ khT khT khT gih -fPj +gYY vit vit uvw @@ -72879,15 +72879,15 @@ aad aad aad ake -qgX -uzL -uzL +tuR +xAC +xAC bDm -uzL -cuq -uzL -xrs -xKu +xAC +gMj +xAC +gNs +fBo bon bon bon @@ -72958,7 +72958,7 @@ bDH cwD cwD piY -tmD +top cuM cuM tPN @@ -72966,18 +72966,18 @@ tPN tPN vit vit -fPj +gYY xJH khT -vxU -hNJ -syT -deM -fkZ -otX +wsK +uap +qqF +mOQ +xCT +pHr khT gih -fPj +gYY vit vit uvw @@ -73074,14 +73074,14 @@ aad aad aad bDm -osp -uzL -uzL +wzm +xAC +xAC bDm -uzL -uzL -xrs -lTL +xAC +xAC +gNs +vQy afo bon bon @@ -73161,18 +73161,18 @@ vit vit vit sRR -vuL +ksq oAQ khT -lXR -cIK -fPj -fPj -pwS -xbI +nzv +cLP +gYY +gYY +fbE +htr khT gih -fPj +gYY vit iRk vit @@ -73269,12 +73269,12 @@ aad aad aad bDm -kUq -uzL -cuq -uzL -uzL -uzL +nwS +xAC +gMj +xAC +xAC +xAC bDm bDm bDm @@ -73356,18 +73356,18 @@ aKY vit vit vit -fPj +gYY gih -jrh -fPj -yhn +ecV +gYY +sjX khR -yhn +sjX gih -vjG +rVp khT gih -fPj +gYY vit sRR vit @@ -73464,18 +73464,18 @@ aad aad aad bDm -kcC -uzL -uzL -uzL -uzL -kUq +jty +xAC +xAC +xAC +xAC +nwS bDm bHj bHj bHj bHj -qBz +nhe bon vVK bHj @@ -73499,7 +73499,7 @@ pNT pNT pNT pNT -nOM +osN jUA jUA aSF @@ -73551,18 +73551,18 @@ vit vit vit vit -fPj +gYY gih -xOy -fPj +hTT +gYY gih -yhn +sjX gih -yhn -fPj +sjX +gYY khT gih -fPj +gYY vit vit vit @@ -73741,29 +73741,29 @@ cwD piY piY cwD -fPj -fPj -fPj -fPj -fPj -fPj +gYY +gYY +gYY +gYY +gYY +gYY gih khT -nMC -iRP -gvl -oxp -fPj -fPj +ylY +sJp +nRT +jLn +gYY +gYY khT gih -fPj -pUb -fPj -fPj -fPj -fPj -fPj +gYY +vHe +gYY +gYY +gYY +gYY +gYY uvw vit vit @@ -73779,7 +73779,7 @@ wFG wFG wFG wFG -iNS +nza dKj dKj dKj @@ -73789,7 +73789,7 @@ eMz eMz eMz jLb -cen +pJg aad aad aad @@ -73870,7 +73870,7 @@ bon aig vVK aob -qBz +nhe bHj vVK bon @@ -73895,7 +73895,7 @@ jUA jUA jUA jUA -nOM +osN ceQ ceQ ceQ @@ -73936,7 +73936,7 @@ cwD piY piY sEV -fPj +gYY gih gih gih @@ -73948,8 +73948,8 @@ eIT khT khT khT -odc -vYT +vJI +hpR khT qXN qXN @@ -73958,7 +73958,7 @@ qXN qXN qXN fre -pUb +vHe dqo wFG wFG @@ -74131,7 +74131,7 @@ cwD cwD piY piY -fPj +gYY gih khT khT @@ -74140,20 +74140,20 @@ khT khT khT lhI -kLc +nRf sGJ -yhn +sjX gih -yhn -fPj -irV -irV -irV -irV -irV -dIb +sjX +gYY +oso +oso +oso +oso +oso +tkg hfq -fPj +gYY wFG oDw wFG @@ -74252,7 +74252,7 @@ aad bHj bDm vVK -qBz +nhe vVK vVK bon @@ -74289,7 +74289,7 @@ ceQ ceQ ceQ ceQ -nOM +osN ceQ ceQ ceQ @@ -74326,29 +74326,29 @@ cwD cwD piY piY -fPj +gYY gih khT -wqU -wqU -gSC -qWT -qWT +mIv +mIv +pjb +rEG +rEG khT -rcP -yhn +tBB +sjX gih -yhn +sjX gih -fPj -bRP -uOB -uOB -uOB -gBU -ljV +gYY +hOz +xOb +xOb +xOb +sbt +uST hfq -fPj +gYY wFG wFG ekJ @@ -74470,14 +74470,14 @@ aua jUA awu ceQ -nOM +osN jUA jUA jUA jUA jUA cei -nOM +osN ceQ ceQ ceQ @@ -74516,23 +74516,23 @@ sKg sKg sKg sKg -tmD +top piY cwD piY piY -fPj +gYY gih khT iCt -rqd +xBY khR -yhn +sjX gih khT khT -odc -vYT +vJI +hpR khT khT khT @@ -74541,9 +74541,9 @@ khT khT khT khT -ljV +uST hfq -fPj +gYY wFG ekJ ekJ @@ -74716,29 +74716,29 @@ daq daq aZO daq -fPj +gYY gih khT -yhn +sjX gih -ghq +pkC gih -yhn -ngJ -uOB -fPj -fPj -mbO -fPj +sjX +kUg +xOb +gYY +gYY +rRU +gYY khT -oxm -fXq -hIr -jBD -uBH -ljV +gLB +veA +pka +tdj +pTr +uST hfq -fPj +gYY wFG ekJ ekJ @@ -74748,7 +74748,7 @@ ekJ ekJ ekJ ekJ -iNS +nza wFG dqo dqo @@ -74847,7 +74847,7 @@ agT bon bon bon -qBz +nhe bDm bHj bHj @@ -74869,7 +74869,7 @@ cei cei ceQ ceQ -nOM +osN jUA jUA jUA @@ -74911,29 +74911,29 @@ daq daq aZO daq -fPj +gYY gih khT -odc -vYT +vJI +hpR khT khT khT khT -wJc -fPj +wJD +gYY gih -kgP -fPj -eUG -fPj +vZu +gYY +qwX +gYY gih -yhn -eiA -uBH -ljV +sjX +qMM +pTr +uST hfq -fPj +gYY ekJ ekJ ekJ @@ -75106,29 +75106,29 @@ sKg daq aZO aZO -fPj +gYY gih -oXP -uOB -uOB -oXP +rOM +xOb +xOb +rOM khT khT khT khT -upX -yhn +qTE +sjX gih -fPj -noj -fPj -yhn +gYY +gjt +gYY +sjX gih -eiA -uBH -toY +qMM +pTr +iNz hfq -fPj +gYY khT khT khT @@ -75230,7 +75230,7 @@ bon afq bon bon -qBz +nhe vVK bon vVK @@ -75249,7 +75249,7 @@ ceQ ceQ ceQ ceQ -nOM +osN jUA jUA jUA @@ -75301,32 +75301,32 @@ sKg sKg aZO aZO -fPj +gYY gih -gBU -uOB -uOB -uOB +sbt +xOb +xOb +xOb khT -sZg -sZg -qVH -eEp +xMz +xMz +hXS +tCq gih -rqd -eEp +xBY +tCq khT -fPj +gYY pqG -yhn -edp -uBH -toY +sjX +jyN +pTr +iNz hfq -fPj -iTP -uOB -xNv +gYY +eCe +xOb +blj khT ekJ ekJ @@ -75427,8 +75427,8 @@ bon bon vVK aYz -nea -nea +nqO +nqO aYz aYz aYz @@ -75496,29 +75496,29 @@ sKg sKg aZO aZO -fPj +gYY gih -uOB -uOB -uOB -uOB +xOb +xOb +xOb +xOb ifU -xjW -nWG -tFy -fPj -fPj -rFI -rlE -kta -fPj -rFI -fPj -fPj +tIA +sPe +vxW +gYY +gYY +jQm +vio +ezd +gYY +jQm +gYY +gYY khT khT fzA -fPj +gYY khT khT khT @@ -75621,15 +75621,15 @@ bon bon bon bon -nVQ -xjp -jjF -vYZ -vIt -drc +wnC +eFZ +iDr +hnt +oNO +mnt uux -kYq -ipS +kiN +wZA uux bHj bHj @@ -75656,7 +75656,7 @@ jUA jUA cei jUA -nOM +osN jUA ceQ ceQ @@ -75691,32 +75691,32 @@ sKg sKg aZO aZO -fPj +gYY gih -uOB -qvW -gBU -uOB +xOb +vqw +sbt +xOb khT khT khT khT -odc -vYT +vJI +hpR khT khT khT khT khT -dog -vYI -dyz -ybp +gfu +rlR +wMo +xuf gih -fPj -iTP -uOB -xNv +gYY +eCe +xOb +blj khT ekJ ekJ @@ -75816,15 +75816,15 @@ bon bon bon bon -nVQ -gVP -rrs -pMq -rrs -vIt -cml -aNk -ije +wnC +tSz +uXl +gxt +uXl +oNO +qoU +icT +vPS uux bHj bHj @@ -75886,29 +75886,29 @@ sKg sKg aZO aZO -fPj +gYY gih -uOB +xOb gih -uOB -uOB -uOB +xOb +xOb +xOb mBl rNO -oXP -yhn -yhn -oXP -uOB -jgb -uOB -ybp -mji -oJU -ddJ -ybp +rOM +sjX +sjX +rOM +xOb +ltW +xOb +xuf +oYN +dyq +laf +xuf pqG -fPj +gYY khT khT khT @@ -75926,7 +75926,7 @@ dqo dqo dqo dqo -iNS +nza aad aad aad @@ -76011,22 +76011,22 @@ bon agT bon bon -nVQ -vNV -pFP -lau -sYN -drc +wnC +kbj +jYf +iGT +dnM +mnt uux -pHS -rPP +vfK +nie uux bHj bHj uux -bvT -hqE -dAa +mmg +eiY +ktF uux cgE cgE @@ -76081,32 +76081,32 @@ aZO sKg aZO aZO -fPj +gYY gih -uOB +xOb gih gih -uOB -uOB -uOB -uOB -uOB -yhn -yhn -gBU -kMT -vdx -cCj -ybp -cJo -qIL -qdG -ybp +xOb +xOb +xOb +xOb +xOb +sjX +sjX +sbt +otI +miY +seq +xuf +hDn +kAi +rkV +xuf gih -fPj -iTP -gBU -xNv +gYY +eCe +sbt +blj khT ekJ ekJ @@ -76207,11 +76207,11 @@ bon bon cay aYz -nea +nqO aYz -clf -rrs -aUL +lvh +uXl +utY aYz ame uux @@ -76219,9 +76219,9 @@ aYz uux uux uux -eBK -nFQ -dAa +jRb +wHX +ktF uux cgE cgE @@ -76232,7 +76232,7 @@ chN cdx cdx chN -xRQ +cLJ cgE cgE ceQ @@ -76276,29 +76276,29 @@ aZO aZO aZO daq -fPj +gYY gih -uOB -uOB -uOB -uOB -uOB -uOB -uOB -gBU -yhn -kgP -uOB -uOB -xUF -uOB +xOb +xOb +xOb +xOb +xOb +xOb +xOb +sbt +sjX +vZu +xOb +xOb +mmM +xOb khT -ybp -ybp -ybp +xuf +xuf +xuf khT jDr -fPj +gYY khT khT khT @@ -76396,7 +76396,7 @@ aad aad bHj bHj -mFZ +tLm bon bon bon @@ -76404,19 +76404,19 @@ ahc ahG ahG uux -ofO -rrs -ofO -ryI -nFQ -eWH -nFQ -eWH -nFQ -ryI -nFQ -nFQ -vMy +dkF +uXl +dkF +tsS +wHX +eCo +wHX +eCo +wHX +tsS +wHX +wHX +eXP uux cgE cgE @@ -76471,7 +76471,7 @@ aZO lhH aZO daq -fPj +gYY duq gih pqG @@ -76479,13 +76479,13 @@ gih gih gih gih -uOB -uOB -yhn -yhn -uOB -uOB -uOB +xOb +xOb +sjX +sjX +xOb +xOb +xOb pqG sGJ gih @@ -76493,13 +76493,13 @@ gih gih sGJ gih -fPj +gYY ekJ ekJ ekJ ekJ ekJ -iNS +nza wFG dqo wFG @@ -76593,15 +76593,15 @@ uux uux uux aYz -lfv -pLS +bVH +waa aYz aYz -nea +nqO aYz -clf -rrs -lxA +lvh +uXl +pNQ aYz uux uux @@ -76610,8 +76610,8 @@ uux uux uux uux -nFQ -iTM +wHX +tjc uux aly aly @@ -76666,29 +76666,29 @@ daq daq aZO daq -fPj -fPj -fPj -fPj -fPj -fPj -fPj +gYY +gYY +gYY +gYY +gYY +gYY +gYY gih -uOB -yhn -gqE -yhn -yhn -yhn -uOB +xOb +sjX +fXk +sjX +sjX +sjX +xOb gih -fPj -fPj -fPj -fPj -fPj -fPj -fPj +gYY +gYY +gYY +gYY +gYY +gYY +gYY ekJ ekJ ekJ @@ -76783,36 +76783,36 @@ aad aad aad uux -oTm -pSB -gIb -nVQ -eHJ -xJi -xJi -nYL -nVQ -lam -pxZ -vIt -rrs -drc +muQ +uIy +xLw +wnC +xvo +ush +ush +dbN +wnC +mLC +rgk +oNO +uXl +mnt uux -jIf -ltn +lxb +xJG uux -rRU -qVY -rRU +pOL +wmO +pOL uux -vnZ +fbk uux uux aly aly aly aly -pIG +lFn chN cdx cdx @@ -76825,7 +76825,7 @@ cei cei cei jUA -nOM +osN jUA jUA ceQ @@ -76857,7 +76857,7 @@ sKg sKg sKg sKg -uOw +qPc daq daq daq @@ -76867,17 +76867,17 @@ mLn mLn mLn fFy -fPj +gYY gih -uOB -dBo -uOB -ikD -wpj -yhn -uOB +xOb +pOp +xOb +wga +dZQ +sjX +xOb gih -fPj +gYY wFG wFG wFG @@ -76978,30 +76978,30 @@ aad aad aad uux -tjz -lPq -pFP -nVQ -vIt -xJi -xJi -vIt -nVQ -qru -sfn -rrs -rrs -vIt -cml -ofO -ofO +nmQ +jnk +jYf +wnC +oNO +ush +ush +oNO +wnC +lOU +lGF +uXl +uXl +oNO +qoU +dkF +dkF uux -uXK -llH -ofO -nQS -llH -llH +rgj +nKP +dkF +woA +nKP +nKP uux uux uux @@ -77062,17 +77062,17 @@ tgC mLn mLn mLn -fPj +gYY gih -uOB -yhn -uOB -uOB -okf -yhn -uOB +xOb +sjX +xOb +xOb +fDY +sjX +xOb gih -fPj +gYY dqo dqo dqo @@ -77173,33 +77173,33 @@ aad aad aad uux -puH -vIt -vYZ -nVQ -vHP -xJi -xJi -cDS -nVQ -vNV -bzS -vYZ -vIt -drc +xNo +oNO +hnt +wnC +iwt +ush +ush +srv +wnC +kbj +uOr +hnt +oNO +mnt uux -fbC -cNE +tHh +ylA uux -kPB -llH -ofO +alh +nKP +dkF uux -qgi -llH +iWd +nKP uux -dAa -wDy +ktF +szD uux aly ccz @@ -77257,17 +77257,17 @@ tgC tgC mLn mLn -fPj +gYY gih -gBU -yhn -uOB -uOB -vvS -tft -uOB +sbt +sjX +xOb +xOb +fZt +nmG +xOb gih -pUb +vHe dqo dqo dqo @@ -77369,33 +77369,33 @@ aYz aYz uux uux -sSX +nev uux uux aYz -rQx -lEv +hPh +uix aYz aYz uux uux aYz -oVO -hHY +sqt +mrc aYz apd uux aYz -bTT -llH -llH +tzE +nKP +nKP uux -llH -llH -nQS -ofO -ofO -nVQ +nKP +nKP +woA +dkF +dkF +wnC vEp vEp chN @@ -77452,17 +77452,17 @@ lzb tgC tgC mLn -fPj +gYY gih -uOB -gqE -yhn -gqE -yhn -yhn -uOB +xOb +fXk +sjX +fXk +sjX +sjX +xOb gih -fPj +gYY dqo dqo dqo @@ -77557,40 +77557,40 @@ aad aad aad uux -nYx -sRB -nYx +etx +tlZ +etx aYz -wBC -cEK -tFB -llH -llH -llH -ofg -ofO -ofO -ofg -llH -xiq -llH -llH -llH -nbl -llH -sTC -aUL -aJy -ofO -nbl -llH +hmE +nba +ozR +nKP +nKP +nKP +iVe +dkF +dkF +iVe +nKP +hZe +nKP +nKP +nKP +qZv +nKP +vid +utY +wKv +dkF +qZv +nKP uux uux uux uux -ofO -epH -nVQ +dkF +jhB +wnC axX vEp chN @@ -77647,17 +77647,17 @@ vuJ vuJ tgC tgC -fPj +gYY gih -uOB -uOB -uOB -uOB -uOB -uOB -gBU +xOb +xOb +xOb +xOb +xOb +xOb +sbt gih -fPj +gYY wFG wFG wFG @@ -77752,39 +77752,39 @@ aad aad aad uux -ofO -epH -ofO -nQS -llH -llH -ofO -ofO -epH -qCM -ofg -ofO -ofO -ofg -qCM -qCM -qCM -qCM -qCM -qCM -ofO -ofO -ofO -llH -llH -llH -xiq +dkF +jhB +dkF +woA +nKP +nKP +dkF +dkF +jhB +wPH +iVe +dkF +dkF +iVe +wPH +wPH +wPH +wPH +wPH +wPH +dkF +dkF +dkF +nKP +nKP +nKP +hZe uux -vIt -hBs -vIt -vIt -tjz +oNO +mvZ +oNO +oNO +nmQ uux aBf ccK @@ -77842,7 +77842,7 @@ vuJ pPi tgC tgC -fPj +gYY gih gih gih @@ -77852,9 +77852,9 @@ gih gih gih gih -fPj +gYY ekJ -iNS +nza ekJ ekJ wFG @@ -77947,40 +77947,40 @@ aad aad aad uux -eSe -uIX -eSe +iSG +dEk +iSG aYz -llH -ofO -vIt -ikR -ikR -qdt -rqA -qdt -qdt -ofg -ofO -ofO -qdt -qdt -qdt -qdt -ikR -ikR -vIt -ofO -vBp -llH -llH -nQS -vIt -oHA -rrs -wCW -gIb -nVQ +nKP +dkF +oNO +jSp +jSp +kCS +kzg +kCS +kCS +iVe +dkF +dkF +kCS +kCS +kCS +kCS +jSp +jSp +oNO +dkF +meL +nKP +nKP +woA +oNO +dcM +uXl +eYZ +xLw +wnC ccz vEp chN @@ -77991,7 +77991,7 @@ chN cgE cgE ceQ -nOM +osN jUA jUA cei @@ -78024,30 +78024,30 @@ sKg sKg sKg daq -mqf +bpb daq daq sKg sKg sKg sKg -liM +cwW tgC tgC vuJ vuJ tgC -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj -fPj +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY +gYY ekJ ekJ ekJ @@ -78146,36 +78146,36 @@ aYz aYz aYz aYz -xiq -epH -oVh +hZe +jhB +iHU aCP aBy azU auz asp aEC -ofg -ofg -kBF +iVe +iVe +kxL azU aBy aBy asp aCP aDa -vIt -epH -llH -llH -uyA +oNO +jhB +nKP +nKP +hDY uux -vIt -vYZ -poS -tlP -pFP -nVQ +oNO +hnt +jZf +sex +jYf +wnC vEp vEp chN @@ -78337,39 +78337,39 @@ aad aad aad aYz -esx -ita -cZq -wwy -llH -ofO -oVh +gFt +fnV +tPa +iXK +nKP +dkF +iHU auz bRl bRl bRl bRl agn -ofg -ofg -kBF +iVe +iVe +kxL bRl bRl bRl bRl bRl aDh -vIt -ofO -llH -llH -wfo +oNO +dkF +nKP +nKP +gnt uux -nea -nea +nqO +nqO uux -nea -nea +nqO +nqO uux aBf vEp @@ -78532,21 +78532,21 @@ aad aad aad aYz -wPg -vIt -ofO -llH -llH -xJi -oVh +sFb +oNO +dkF +nKP +nKP +ush +iHU auz bRl bRl bRl bBO ago -ukd -ukd +cUJ +cUJ aim ajb ajF @@ -78554,15 +78554,15 @@ akh bRl bRl aEN -xIn -xJi -llH -llH -wDj -nVQ -dNc -evm -nVQ +rmi +ush +nKP +nKP +fVa +wnC +wlF +jwf +wnC awx axX vEp @@ -78571,7 +78571,7 @@ vEp cdx cdx chN -xRQ +cLJ cgE cgE cgE @@ -78588,7 +78588,7 @@ daq daq daq daq -ihE +tFx sKg sKg sKg @@ -78643,7 +78643,7 @@ wFG wFG ekJ ekJ -iNS +nza oDw lTW fKT @@ -78727,21 +78727,21 @@ aad aad aad aYz -tKU -vIt -ofO -nbl -llH -xJi -oVh +vkt +oNO +dkF +qZv +nKP +ush +iHU auz bRl aeW bRl aeY -pBe -iGK -iGK +hbx +pya +pya ain aim ajb @@ -78749,14 +78749,14 @@ ajF akh aeW aEC -xIn -xJi -llH -llH -fPi +rmi +ush +nKP +nKP +xem uux -bHm -htC +wlS +lyW uux awy vEp @@ -78922,37 +78922,37 @@ aad aad aad aYz -lvk -ita -lpT -vNN -llH -xJi -oVh +qrb +fnV +vgK +kPB +nKP +ush +iHU azU bRl bRl bRl aeY -wgh -hcL +rge +kds ahH -hcL +kds ain ago aki akO bRl aDR -xIn -xJi -llH -llH -llH -nQS -qCM -qCM -izJ +rmi +ush +nKP +nKP +nKP +woA +wPH +wPH +waQ awz cdx cdx @@ -79120,34 +79120,34 @@ aYz aYz aYz aYz -nea -nea +nqO +nqO aYz -kop +svr auz bRl bRl bBO afw -hAm -vxT +szY +dBJ ahI aio -mDk -aNY +qbw +kIj bRj akO bRl aEN -vIt -xJi -oyf -nbl -dsR +oNO +ush +mcJ +qZv +oWl uux -qCM -qCM -wiP +wPH +wPH +kdO awz cdx cdx @@ -79313,36 +79313,36 @@ aad aad aad aYz -mVF -iJN -oUK -uvX -nVQ -oVh +jFg +xez +fFa +dFG +wnC +iHU aCP bRl bRl aeY -gGV -mch -mDk -iGK -hcL -hcL -pyg +ngi +slV +qbw +pya +kds +kds +mwv bRj akP bRl aEN -vIt -xJi -llH -llH -llH -nQS -qCM -qCM -jFt +oNO +ush +nKP +nKP +nKP +woA +wPH +wPH +dbT eOz axZ chN @@ -79508,35 +79508,35 @@ aad aad aad aYz -pMk -llH -xmy -cGu -nVQ -xqP +ceA +nKP +iEm +etK +wnC +vTC aBy bRl bBO afw -qtE -mch +hUs +slV ahj -cnF -hcL -hcL -iGK +erw +kds +kds +pya akj -gww -jkv -jkv -ofO -xJi -llH -llH -qRx +dvw +lns +lns +dkF +ush +nKP +nKP +sWn uux -bHm -htC +wlS +lyW uux awB aya @@ -79703,36 +79703,36 @@ aad aad aad aYz -fqW -nbl +jyG +qZv aYz -nea +nqO aYz -kop +svr asp bRl aeY -gGV -mch +ngi +slV bKK ahk -hcL -sgN -mDk -iGK +kds +qBa +qbw +pya akj -ofg -ofg -ofg -ofO -xJi -llH -llH -uEc -nVQ -wbQ -mCH -nVQ +iVe +iVe +iVe +dkF +ush +nKP +nKP +mwG +wnC +mtY +xlr +wnC awC ayc vEp @@ -79796,7 +79796,7 @@ vuJ tgC tgC tgC -liM +cwW tgC tgC tgC @@ -79898,38 +79898,38 @@ aad aad aad aYz -jrJ -llH +mqH +nKP aYz -qfd -wcy -oVh +eSc +eaR +iHU aBy bRl aeY -gGV -mch -vxT +ngi +slV +dBJ ahj ahL aip -hcL -iGK +kds +pya akj -ofg -ofg -ofg +iVe +iVe +iVe ane -xJi -llH -nbl -uEc +ush +nKP +qZv +mwG uux -nea -nea +nqO +nqO uux -nea -nea +nqO +nqO uux cbN vEp @@ -79978,7 +79978,7 @@ mLn mLn mLn mLn -liM +cwW rRl kyr tgC @@ -80093,39 +80093,39 @@ aad aad aad aYz -geF -fqW -nQS -llH -wcy -xqP +uhN +jyG +woA +nKP +eaR +vTC asp bRl aeZ afy -qtE -mch -hcL -cnF -hcL -hcL -iGK +hUs +slV +kds +erw +kds +kds +pya akj -rqA -rqA -rqA -ofO -xJi -cyz -llH -uEc +kzg +kzg +kzg +dkF +ush +oOt +nKP +mwG uux -oOI -vYZ -jKy -cBt -qYi -nVQ +dCj +hnt +qVa +vNe +mkg +wnC axX vEp chN @@ -80143,7 +80143,7 @@ cgE cgE cpW cnu -nVz +gFL cnu aVQ aVQ @@ -80291,36 +80291,36 @@ aYz aYz aYz aYz -jNt -wcy -oVh +phr +eaR +iHU azU bRl bRl aeY -gGV -mch -hcL -vmj -hcL -hcL -pyg +ngi +slV +kds +bxK +kds +kds +mwv bRj akS bRl aEC -vIt -xJi -llH -llH -llH -nQS -vIt -rrs -lPq -rrs -wxM -nVQ +oNO +ush +nKP +nKP +nKP +woA +oNO +uXl +jnk +uXl +rti +wnC vEp vEp chN @@ -80385,7 +80385,7 @@ vuJ tgC tgC tgC -liM +cwW tgC tgC tgC @@ -80484,37 +80484,37 @@ aad aad aja aYz -ezW -hsy -llH -wcy -xqP +xeG +kll +nKP +eaR +vTC auz bRl bRl aeZ afy -dbR +tGg ahl ahN aiq -vxT -mDk +dBJ +qbw bRj bRl akO aEC -vIt -xJi -llH -onw -xHT +oNO +ush +nKP +dEd +kIi uux -vIt -vIt -qHC -vIt -vIt +oNO +oNO +emu +oNO +oNO uux aBf vEp @@ -80591,7 +80591,7 @@ mLn mLn mLn mLn -liM +cwW tgC tgC tgC @@ -80679,45 +80679,45 @@ aad aad aad aYz -ezW -pHm -nbl -wcy -oVh +xeG +oUK +qZv +eaR +iHU asp bRl bRl bRl aeY -wgh -sgN -sgN -xAW +rge +qBa +qBa +lOn ais agv akk akT bRl aEN -vIt -xJi -dsR +oNO +ush +oWl uux uux arQ uux uux uux -clf -epH -nVQ +lvh +jhB +wnC awx ccK chN cdx cdx cdx -xRQ +cLJ cgE cgE cgE @@ -80767,7 +80767,7 @@ mLn mLn mLn mLn -liM +cwW tgC tgC vuJ @@ -80874,19 +80874,19 @@ aad aad aad aYz -ezW -pHm -llH -wcy -oVh +xeG +oUK +nKP +eaR +iHU aBy bRl bRl bRl aeY -tfd -iGK -iGK +vAo +pya +pya ais bPo bQi @@ -80894,18 +80894,18 @@ bQj akm bRl aEC -vIt -xJi -llH -nQS -llH -llH -llH -llH -nQS -ofO -ofO -nVQ +oNO +ush +nKP +woA +nKP +nKP +nKP +nKP +woA +dkF +dkF +wnC vEp vEp chN @@ -80937,7 +80937,7 @@ aVQ cnu cnu cnu -nVz +gFL cpW cpW cpW @@ -80989,7 +80989,7 @@ vuJ vuJ tgC wFG -iNS +nza aad aad aad @@ -81069,19 +81069,19 @@ aad aad aad aYz -ezW -hsy -llH -wcy -oVh +xeG +kll +nKP +eaR +iHU aCP bRl aeW bRl aeZ agv -ukd -ukd +cUJ +cUJ bPo bQi bQj @@ -81089,17 +81089,17 @@ akm bRl bRl aEN -vIt -xJi -dsR +oNO +ush +oWl uux -llH -nbl -llH -llH +nKP +qZv +nKP +nKP uux -dAa -nFQ +ktF +wHX uux aly axX @@ -81151,7 +81151,7 @@ tgC kyr tgC tgC -liM +cwW mLn mLn mLn @@ -81266,35 +81266,35 @@ aad aYz aYz aYz -qvG -ofO -oVh +lRS +dkF +iHU auz bRl bRl bRl bRl bRl -xww -ofg -kBF +bLw +iVe +kxL bRl bRl bRl aeW bRl aEC -vIt -epH -llH +oNO +jhB +nKP uux -qkI -qkI -qkI -qkI +roc +roc +roc +roc uux uux -mNq +vrr uux aly aly @@ -81461,27 +81461,27 @@ uux uux uux uux -oje -vtb -oVh +piw +mDS +iHU asp asp asp asp asD auz -xww -ofg -kBF +bLw +iVe +kxL aBy aBy asp asp aBy aEN -vIt -ofO -llH +oNO +dkF +nKP uux uux uux @@ -81489,7 +81489,7 @@ uux uux uux uux -nFQ +wHX uux aly aly @@ -81514,7 +81514,7 @@ aVQ aVQ aVT aXu -nVz +gFL aVQ aVS aXt @@ -81531,7 +81531,7 @@ aVQ aVQ aVQ aVR -nVz +gFL cnu cnu cnu @@ -81653,38 +81653,38 @@ aad aad aad uux -wYh -aNk -nyU -llH -ofO -qHC -rNM -rNM -swg -swg -swg -swg -ofO -ofO -ofO -swg -swg -swg -swg -rNM -rNM -vIt -ofO -llH -sbN +ezF +icT +eUh +nKP +dkF +emu +dIl +dIl +cFl +cFl +cFl +cFl +dkF +dkF +dkF +cFl +cFl +cFl +cFl +dIl +dIl +oNO +dkF +nKP +hZH uux aad aad aad aad uux -nFQ +wHX uux uux uux @@ -81848,42 +81848,42 @@ aad aad aad uux -qXe -hng +gcR +rlW uux -jRS -llH -ofO -ofO -epH -sNF -qCM -qCM -qCM -qCM -llH -aLm -qCM -qCM -rXu -qCM -ofO -epH -ofO -llH -llH -oQF +pJo +nKP +dkF +dkF +jhB +oKs +wPH +wPH +wPH +wPH +nKP +iOh +wPH +wPH +sKj +wPH +dkF +jhB +dkF +nKP +nKP +osv uux uux uux arQ uux uux -nFQ -nFQ -nFQ -nFQ -cml +wHX +wHX +wHX +wHX +qoU chN cdx cdx @@ -82046,39 +82046,39 @@ uux uux uux uux -phx -llH -tby -rFi -llH -rFi -llH -llH -bVC -rFi -llH -rFi -llH -bVC -llH -vqa -llH -llH -llH -llH -llH -llH -cml -hXi -nFQ -nFQ -nFQ -mpa -nFQ -nFQ -nFQ -nFQ -cml +eop +nKP +jWL +ujm +nKP +ujm +nKP +nKP +rLJ +ujm +nKP +ujm +nKP +rLJ +nKP +uvj +nKP +nKP +nKP +nKP +nKP +nKP +qoU +knZ +wHX +wHX +wHX +tRj +wHX +wHX +wHX +wHX +qoU chN cdx cdx @@ -82244,31 +82244,31 @@ uux aYz aYz uux -oBW -vfS -oBW -llH -llH -llH -pyy -oBW -sJt +aBD +taa +aBD +nKP +nKP +nKP +tLD +aBD +apU uux -nea -nea +nqO +nqO uux uux -wuz -wuz -wuz +ufy +ufy +ufy uux uux uux uux -nFQ -mpa -nFQ -nHz +wHX +tRj +wHX +eFW uux uux uux @@ -82438,19 +82438,19 @@ aad aad aad uux -dJO -aNk -aNk -dMZ -aNk -qMD -roS -aNk -aNk -mxI +qSl +icT +icT +ouQ +icT +kto +rTN +icT +icT +eEk uux -exu -nWR +ero +jov uux uux uux @@ -82460,10 +82460,10 @@ uux aly aly uux -nFQ -hXi -nFQ -kAJ +wHX +knZ +wHX +tOQ uux aad aad @@ -82504,7 +82504,7 @@ cnu cnu cnu cnu -nVz +gFL aVQ aVQ aVQ @@ -82633,19 +82633,19 @@ aad aad aad uux -xzx -aNk -hPo -qMD -aNk -aNk -aNk -aNk -qMD -aNk -dfT -gZl -gZl +gXi +icT +tdO +kto +icT +icT +icT +icT +kto +icT +dHV +jkO +jkO uux aly aly @@ -82655,7 +82655,7 @@ aly aly aly uux -slc +rFg uux uux uux @@ -82673,7 +82673,7 @@ cdx chN chN chN -xRQ +cLJ cgE cgE cpW @@ -82730,7 +82730,7 @@ rRl tgC tgC tgC -liM +cwW tgC tgC aad @@ -82828,21 +82828,21 @@ aad aad aad uux -rsS -aNk -aNk -aNk -gor -uoF -tqb -aNk -aNk -aNk -aNk -aNk -fqW -cml -mpa +iIE +icT +icT +icT +uVa +cDN +kxp +icT +icT +icT +icT +icT +jyG +qoU +tRj vEp vEp apP @@ -82850,7 +82850,7 @@ vEp vEp vEp vEp -mpa +tRj aad aad aad @@ -82915,7 +82915,7 @@ tgC tgC tNK tgC -liM +cwW aad aad aad @@ -83023,19 +83023,19 @@ aad aad aad uux -jTy -fqW -fqW -nWR +xzO +jyG +jyG +jov uux uux uux -wOe -wOe -fqW -aNk -aNk -fqW +wSi +wSi +jyG +icT +icT +jyG uux aad vEp @@ -83072,7 +83072,7 @@ cpW cpW cpW cpW -nVz +gFL aVQ aVQ aVR @@ -83228,9 +83228,9 @@ uux uux uux uux -fEy -rjN -fEy +ngM +cBS +ngM uux aad aad @@ -83278,7 +83278,7 @@ cnu cnu beH cnu -nVz +gFL aad aad aad @@ -83846,7 +83846,7 @@ aad aad aad aad -nVz +gFL bAa cnu cnu diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 7c0d05128a..32b64af6cb 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -31,10 +31,38 @@ }, /turf/open/space/basic, /area/space) +"aat" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) +"aaB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) "aaC" = ( /obj/structure/lattice, /turf/open/space/basic, /area/space) +"aaR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"aaS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) "aaY" = ( /obj/structure/lattice, /turf/open/space, @@ -54,9 +82,25 @@ /obj/structure/window/reinforced/toughened, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) +"abn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "abs" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) +"abv" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "abw" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -80,16 +124,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"abZ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) "acf" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) @@ -245,6 +279,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"acQ" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "acW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -268,12 +308,30 @@ "adu" = ( /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"adw" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) "adG" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/starboard_missiles) "adO" = ( /turf/closed/wall/almayer, /area/almayer/engineering/starboard_atmos) +"adZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) "aea" = ( /obj/structure/machinery/light{ dir = 1 @@ -284,20 +342,9 @@ "aef" = ( /turf/open/floor/almayer, /area/almayer/living/basketball) -"aeg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) "aej" = ( /turf/closed/wall/almayer, /area/almayer/living/officer_study) -"aek" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) "ael" = ( /turf/closed/wall/almayer, /area/almayer/living/cafeteria_officer) @@ -313,9 +360,6 @@ "aet" = ( /turf/closed/wall/almayer, /area/almayer/living/starboard_garden) -"aew" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering) "aex" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 6; @@ -361,6 +405,38 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"afb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"afg" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "afj" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/engine, @@ -368,13 +444,6 @@ "afk" = ( /turf/open/floor/engine, /area/almayer/engineering/airmix) -"afn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) "afs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -401,24 +470,31 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) +"afU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"afV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"afW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) "agc" = ( /turf/open/floor/carpet, /area/almayer/living/commandbunks) "agj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/commandbunks) -"agk" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"agp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) "agr" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -426,6 +502,10 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/almayer, /area/almayer/living/chapel) +"agt" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "agu" = ( /turf/open/floor/almayer, /area/almayer/living/officer_study) @@ -436,15 +516,20 @@ }, /turf/open/floor/plating, /area/almayer/living/basketball) -"agC" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +"agD" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/living/briefing) +"agL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) "agM" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -456,6 +541,20 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) +"agP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"agW" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "ahc" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/wy_mre, @@ -477,14 +576,49 @@ }, /turf/closed/wall/almayer, /area/almayer/living/starboard_garden) +"ahC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"ahF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) "ahJ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"ahK" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/mp_bunks) "ahN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/floor/grass, @@ -493,15 +627,19 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/chapel) -"ahW" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"aif" = ( -/obj/structure/sign/safety/restrictedarea{ +"ahT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ pixel_x = -17 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"aif" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "aiq" = ( /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) @@ -511,38 +649,19 @@ }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) +"aiu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "aiw" = ( /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) -"aiK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"aiW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) "aiX" = ( /turf/closed/wall/almayer, /area/almayer/living/pilotbunks) -"aja" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "aje" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -553,13 +672,21 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ajh" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 +"ajg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/execution) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "ajj" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) @@ -572,13 +699,10 @@ "ajl" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/upper_medical) -"ajn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Mixed Air Control" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +"ajo" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "aju" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -631,46 +755,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"akj" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"akm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/almayer/medical/containment/cell) -"ako" = ( +"akr" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/carpet, +/turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"akq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) "akt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -687,37 +778,14 @@ "akC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/starboard_missiles) -"akF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +"akG" = ( /turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"akR" = ( -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - pixel_y = -20; - req_access_txt = "5" - }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/upper_medical) -"akZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +/area/almayer/shipboard/brig/warden_office) "ala" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"alc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) "alg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/bed/chair{ @@ -725,13 +793,14 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"alh" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink_med1_req" +"alj" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) "alk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -744,31 +813,13 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"aln" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"alr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +"alt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "aly" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/starboard_missiles) -"alz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) "alL" = ( /turf/closed/wall/almayer, /area/almayer/command/telecomms) @@ -781,10 +832,6 @@ "alX" = ( /turf/open/floor/almayer, /area/almayer/command/cic) -"ama" = ( -/obj/effect/landmark/start/liaison, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) "amb" = ( /obj/structure/window/reinforced{ dir = 8; @@ -802,6 +849,20 @@ "amg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) +"amt" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"amu" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) "amx" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) @@ -809,6 +870,9 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/starboard_missiles) +"amB" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/briefing) "amF" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -819,19 +883,21 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"amV" = ( -/obj/structure/machinery/vending/snack, -/obj/item/clothing/head/cmcap/boonie/tan{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "amY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"amZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "and" = ( /obj/structure/window/reinforced{ dir = 4; @@ -846,34 +912,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"anj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"ank" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +"anr" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) "anM" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -905,12 +946,6 @@ "aoi" = ( /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"aok" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "5" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "aoy" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -918,6 +953,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"aoz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "aoC" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -970,16 +1012,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"apy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"apw" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"apG" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"apy" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, -/area/almayer/shipboard/port_missiles) +/area/almayer/engineering/upper_engineering/port) +"apF" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) "apU" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -1000,26 +1047,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"aql" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 15; - pixel_y = 27 - }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - name = "brig cameras console" - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) "aqn" = ( /obj/structure/machinery/light{ dir = 4 @@ -1032,9 +1059,32 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"aqt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "aqu" = ( /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) +"aqA" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"aqB" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"aqQ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "aqU" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/airoom) @@ -1046,25 +1096,20 @@ "arb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"arx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) -"arB" = ( -/obj/structure/machinery/light{ - dir = 1 +"aru" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"arI" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"arv" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/area/almayer/living/briefing) "arT" = ( /obj/structure/target{ name = "punching bag" @@ -1074,6 +1119,45 @@ "arV" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) +"arW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"arY" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"asd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"ash" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/wy, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4; + layer = 2.981; + name = "Research Cameras"; + pixel_y = 16 + }, +/obj/item/clothing/accessory/stethoscope, +/obj/structure/closet/secure_closet/professor_dummy{ + pixel_x = -32 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) "asn" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -1083,15 +1167,24 @@ /turf/open/floor/plating, /area/almayer/medical/upper_medical) "asr" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/window/reinforced{ +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"ass" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "asA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -1166,10 +1259,10 @@ "atr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"atR" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +"atB" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) "atT" = ( /obj/structure/toilet{ dir = 1 @@ -1184,6 +1277,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) +"atW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "auu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1239,25 +1336,23 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) "avg" = ( -/turf/open/floor/almayer/blue/southeast, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/upper/midship_hallway) "avo" = ( /turf/closed/wall/almayer/outer, /area/almayer/powered/agent) "avp" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"avq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "avs" = ( /turf/closed/wall/biodome, /area/almayer/powered/agent) @@ -1271,14 +1366,6 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"avy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "avU" = ( /obj/effect/landmark/start/crew_chief, /turf/open/floor/plating/plating_catwalk, @@ -1299,25 +1386,6 @@ "awe" = ( /turf/open/floor/plating/almayer, /area/almayer/living/starboard_garden) -"awo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"aws" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) "awy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1333,23 +1401,6 @@ "awF" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/numbertwobunks) -"awN" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"awO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) "awW" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) @@ -1363,37 +1414,31 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"axj" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) "axo" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/telecomms) -"axF" = ( -/obj/structure/disposalpipe/segment{ +"axr" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"axG" = ( +/obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"axR" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"axS" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"axU" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "ayj" = ( /obj/effect/landmark/start/cargo, /turf/open/floor/plating/plating_catwalk, @@ -1404,6 +1449,12 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"aym" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) "ayu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -1411,17 +1462,25 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cic) -"ayB" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"ayA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"ayC" = ( +/obj/structure/sign/poster/safety{ + pixel_x = 27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"ayJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) +/area/almayer/living/briefing) "ayK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -1437,6 +1496,42 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"ayO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/mousetraps, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"ayY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"aza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "azs" = ( /obj/structure/surface/table/almayer, /obj/item/stack/rods{ @@ -1451,6 +1546,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"azF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "azJ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -1466,19 +1571,10 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"azN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"azO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +"azP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/fore_hallway) "azW" = ( /obj/structure/machinery/door/window/westright{ dir = 2 @@ -1510,9 +1606,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) +"aAh" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "aAi" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"aAn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) "aAq" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -1523,17 +1633,41 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"aAw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"aAF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; +"aAt" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"aAF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; name = "General Listening Channel" }, /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) +"aAI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"aAJ" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "aAK" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -1634,12 +1768,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"aBv" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "aBx" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -1667,17 +1795,13 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"aBJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"aBM" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "aBR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, @@ -1685,67 +1809,71 @@ /obj/item/device/whistle, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"aBU" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/upper/midship_hallway) -"aCh" = ( -/obj/structure/bed/chair{ - dir = 4 +"aBT" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "aCj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cic) +"aCn" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "aCu" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/upper/midship_hallway) +"aCy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"aCE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"aCL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_y = 26; + req_one_access_txt = "3;22;19;7" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"aCU" = ( -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"aCY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aCB" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"aDc" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Commanding Officer's Quarters"; - req_access = null; - req_access_txt = "31" +/area/almayer/shipboard/port_point_defense) +"aCE" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"aCN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"aCQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) "aDE" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -1753,39 +1881,71 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) +"aDI" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "aDQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/lifeboat) +"aDR" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"aDY" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) "aEa" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"aEL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"aEc" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"aEo" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aEz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"aEL" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) "aEM" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/emails, @@ -1800,6 +1960,9 @@ "aEW" = ( /turf/closed/wall/almayer, /area/almayer/living/numbertwobunks) +"aEY" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/command/lifeboat) "aFg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/briefcase, @@ -1815,74 +1978,99 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"aFC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"aFs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, +/obj/item/storage/belt/utility, /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/area/almayer/hallways/lower/repair_bay) +"aFL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) "aFM" = ( -/obj/structure/largecrate/random/case/double, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"aFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"aGf" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) +/area/almayer/engineering/upper_engineering) +"aFU" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"aFX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"aGh" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "aGr" = ( /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"aGB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"aGu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"aGI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"aGK" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"aGM" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"aGx" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "aGN" = ( /turf/open/floor/almayer, /area/almayer/command/computerlab) "aGU" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/medical/containment/cell/cl) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) "aHe" = ( /turf/closed/wall/almayer, /area/almayer/command/lifeboat) -"aHf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"aHh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"aHk" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) "aHl" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine, @@ -1895,6 +2083,31 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/numbertwobunks) +"aHp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "firearm_storage_armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) "aHq" = ( /turf/closed/wall/almayer, /area/almayer/command/computerlab) @@ -1905,23 +2118,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"aHz" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aHH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"aHL" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/execution) "aHS" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -1929,40 +2125,34 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) +"aHT" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/bedsheet/brown, +/obj/item/toy/plush/farwa, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) "aHZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"aIc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) "aIf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cic) -"aIj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"aIg" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"aIn" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) "aIx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, @@ -1971,36 +2161,42 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"aIH" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"aIR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"aIV" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"aJD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"aJx" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "aJJ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/bed/chair, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"aJR" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 +"aJW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) "aKa" = ( /turf/open/floor/almayer, /area/almayer/command/cichallway) @@ -2010,9 +2206,9 @@ /area/almayer/living/starboard_garden) "aKk" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) "aKq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -2022,9 +2218,30 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"aKr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) "aKt" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "aKv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -2034,51 +2251,59 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) +"aKP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) "aKQ" = ( /turf/closed/wall/almayer/outer, /area/space) "aKR" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/starboard_point_defense) -"aLc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"aLo" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, +"aKX" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"aLs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/squads/alpha) +"aLj" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"aLv" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"aLu" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"aLD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"aLw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) "aLE" = ( /obj/docking_port/stationary/emergency_response/external/hangar_starboard{ dwidth = 8 }, /turf/open/space, /area/space) +"aLI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) "aLJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -2094,54 +2319,30 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"aLN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"aLR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) "aLT" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha) +"aLV" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) "aLW" = ( /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) "aLY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"aMe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"aMn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, /turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "aMo" = ( @@ -2187,23 +2388,21 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"aMK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"aML" = ( -/obj/structure/machinery/light{ - dir = 1 +"aMJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = 7 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"aMN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = 25 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) "aMQ" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; @@ -2211,42 +2410,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"aMS" = ( -/obj/item/stack/sheet/cardboard{ - amount = 50 - }, -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"aNa" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aNh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/phone_base/rotary{ - name = "Brig Wardens's Office Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Warden's Office"; - pixel_x = 15 +"aNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"aNg" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) "aNi" = ( /turf/closed/wall/almayer, /area/almayer/living/chapel) @@ -2259,44 +2439,26 @@ "aNm" = ( /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aNq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) "aNr" = ( /obj/effect/landmark/start/chef, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"aNy" = ( -/obj/structure/machinery/light{ - dir = 8 +"aNB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"aNK" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"aNJ" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"aNL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) "aNQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2320,15 +2482,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"aNZ" = ( +"aOb" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"aOk" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"aOl" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"aOm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "aOL" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -2350,10 +2533,41 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"aPe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/unary/freezer{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "aPf" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"aPq" = ( +/obj/structure/machinery/chem_storage/medbay{ + dir = 1 + }, +/obj/structure/machinery/chem_storage/research{ + dir = 1; + layer = 3; + pixel_y = 18 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"aPt" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"aPv" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) "aPw" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/lifeboat) @@ -2371,37 +2585,41 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/alpha) -"aPN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"aPR" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, -/area/almayer/command/airoom) "aPT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"aQe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"aQj" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"aQn" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"aQD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "aQF" = ( /turf/closed/wall/almayer, /area/almayer/living/offices) +"aQJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "aQL" = ( /turf/closed/wall/almayer, /area/almayer/squads/bravo) @@ -2420,46 +2638,29 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/bravo) -"aQO" = ( -/obj/structure/bed/chair/comfy/ares{ - dir = 1 +"aQP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "Core Chamber" +/obj/item/tool/pen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = 32 }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"aRe" = ( +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "S" }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) "aRi" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"aRk" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"aRm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) "aRo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -2508,10 +2709,18 @@ "aRT" = ( /turf/open/floor/almayer, /area/almayer/squads/bravo) -"aSc" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +"aSd" = ( +/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) "aSo" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -2525,10 +2734,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"aSw" = ( -/obj/structure/reagent_dispensers/fueltank, +"aSs" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/area/almayer/lifeboat_pumps/south1) "aSE" = ( /obj/structure/bed/chair{ dir = 4 @@ -2544,25 +2753,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"aSR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_umbilical) "aST" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) +/obj/item/tank/phoron, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -2571,6 +2765,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) +"aTb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"aTd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower) "aTg" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) @@ -2582,41 +2797,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"aTl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) "aTm" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"aTp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"aTM" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aTN" = ( -/obj/structure/machinery/photocopier, -/obj/item/paper{ - color = "grey"; - info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; - name = "photocopied image"; - pixel_y = 5 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) "aTT" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -2628,20 +2811,34 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"aTU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"aTV" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) "aTW" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"aUg" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) +"aUf" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/obj/item/mortar_shell/incendiary, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "aUj" = ( /obj/structure/machinery/cm_vending/clothing/tl/bravo{ density = 0; @@ -2649,49 +2846,74 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"aUr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"aUB" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"aUt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"aUy" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"aUA" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "aUD" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) "aUH" = ( /turf/closed/wall/almayer, /area/almayer/engineering/port_atmos) "aUO" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"aUP" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/upper/mess) +"aUT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 13 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"aUW" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"aUU" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/hangar) +"aVm" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"aVe" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/area/almayer/maint/hull/upper/s_bow) +"aVn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) "aVo" = ( /obj/structure/machinery/light{ dir = 1 @@ -2699,64 +2921,60 @@ /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"aVx" = ( -/obj/effect/decal/cleanable/dirt, +"aVs" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"aVy" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, /turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"aVE" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/area/almayer/squads/delta) +"aVD" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"aVJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/south{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"aVO" = ( -/obj/item/trash/plate{ - pixel_x = 9; - pixel_y = 11 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"aVM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_x = 8; - pixel_y = 11 +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_x = 8; - pixel_y = 11 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"aVO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_two) "aWe" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"aWg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "37" +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"aWj" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - desc = "A powerful server tower housing various AI functions."; - name = "server tower"; - pixel_y = 16 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) "aWo" = ( /obj/structure/pipes/unary/outlet_injector, /turf/open/floor/engine, @@ -2767,20 +2985,23 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"aWx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) "aWA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"aWB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) +/obj/item/prop/magazine/dirty{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/captain_mess) "aWD" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -2788,15 +3009,6 @@ }, /turf/open/floor/plating, /area/almayer/living/offices) -"aWG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/syringes, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) "aWV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -2834,110 +3046,100 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "aXf" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"aXv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, +/obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aXO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/engineering/lower/workshop) +"aXq" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"aXv" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"aXR" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"aXX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aXG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "S" }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Secondary Processors"; - dir = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"aXI" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aXJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"aYl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"aXX" = ( +/obj/item/clothing/mask/rebreather/scarf, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aYo" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) +/area/almayer/living/pilotbunks) "aYt" = ( /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"aYy" = ( -/obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) +"aYv" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"aYG" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) "aYK" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"aZa" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aYL" = ( +/obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"aZb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -8; - pixel_y = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) +/area/almayer/shipboard/brig/warden_office) "aZe" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aZh" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 +"aZj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "aZp" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "aZr" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -2954,28 +3156,34 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"aZN" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/lower) -"bam" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"aZA" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"aZS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"bae" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"bam" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"bau" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) "baw" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"baz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"baA" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northwest, -/area/space) +"bay" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "baG" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer, @@ -2987,17 +3195,12 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"baU" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) "baZ" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_lobby) -"bbc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-4"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) "bbe" = ( /obj/structure/machinery/light{ dir = 8 @@ -3014,34 +3217,24 @@ "bbs" = ( /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"bbK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"bbP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) "bbS" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) +"bbT" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/engineering/port_atmos) "bbV" = ( /obj/structure/machinery/light{ dir = 8 @@ -3054,71 +3247,26 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"bch" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"bcj" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) "bcm" = ( /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"bct" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"bcv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"bcB" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"bcF" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"bcG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"bcT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) "bcY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) "bdd" = ( /turf/closed/wall/almayer, /area/almayer/living/briefing) +"bdf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) "bdg" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -3132,9 +3280,43 @@ "bdl" = ( /turf/closed/wall/almayer, /area/almayer/squads/req) +"bdp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 3.1; + pixel_x = -12; + pixel_y = 14 + }, +/obj/item/toy/deck/uno{ + layer = 3.1; + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/toy/handcard/uno_reverse_yellow{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) "bdr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"bdu" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"bdB" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) "bdH" = ( /turf/open/space/basic, /area/space) @@ -3158,46 +3340,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bdN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"bdR" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) "bdV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bec" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +"bdZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, /obj/structure/disposalpipe/junction{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"bee" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "beh" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"bel" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"beu" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"beD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) "beE" = ( /obj/structure/platform{ dir = 1 @@ -3207,9 +3395,17 @@ "beH" = ( /turf/open/floor/almayer, /area/almayer/living/briefing) -"beK" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) +"beJ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "beP" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment{ @@ -3228,40 +3424,16 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"beX" = ( -/obj/item/stack/tile/carpet{ - amount = 12 - }, -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) "beZ" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"bfa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"bfh" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"bfk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +"bfp" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "bft" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -3274,24 +3446,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"bfB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 +"bfF" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"bfF" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/area/almayer/shipboard/starboard_point_defense) +"bfI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "bfJ" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/handheld1, @@ -3302,48 +3483,36 @@ /obj/item/prop/almayer/comp_closed, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bfS" = ( -/obj/structure/machinery/brig_cell/perma_1{ - pixel_x = 32 +"bfN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "bfY" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/comp_open, /turf/open/floor/almayer, /area/almayer/hallways/hangar) "bgb" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/s_bow) -"bgd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_2"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"bge" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D2"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "bgo" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) "bgw" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -3355,31 +3524,34 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_two) -"bgx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" +"bgF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"bgL" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "bgO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bgZ" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"bhm" = ( +"bgS" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Deck Waste Tank Control" - }, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/area/almayer/engineering/starboard_atmos) +"bgX" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) "bhq" = ( /obj/structure/machinery/light{ dir = 4 @@ -3389,17 +3561,17 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"bhH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"bhK" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/vehiclehangar) "bhP" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"bhR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/briefing) "bhT" = ( /obj/structure/cargo_container/lockmart/mid{ layer = 3.1; @@ -3414,61 +3586,47 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bij" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"bil" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"bir" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +"bhX" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"bhZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bio" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"bip" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bis" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 3"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/lower/l_m_s) +"biw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bix" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"biv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"biz" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) +/obj/item/clothing/mask/rebreather/scarf, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "biA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_three) -"biD" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"biG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"biC" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "biV" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -3476,103 +3634,55 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"bjk" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"bjm" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"bjq" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"bjv" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) "bjx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"bjE" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_1"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"bjF" = ( -/obj/vehicle/powerloader, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/shipboard/weapon_room) -"bjG" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"bjQ" = ( -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) "bjR" = ( /obj/structure/cargo_container/arious/right, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bka" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"bjV" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"bjX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"bkb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"bke" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"bkf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"bki" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"bko" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"bkj" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"bku" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"bkx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"bko" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) "bkA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) @@ -3587,146 +3697,146 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_one) -"bkM" = ( -/obj/structure/bed/chair/comfy/blue{ +"bkH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"bkO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"bkS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bkW" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"bkX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/hallways/lower/port_aft_hallway) +"bkI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"blh" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_a_s) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bkK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "bls" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/basketball) -"blx" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"blt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"blz" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blu" = ( +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"blQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"blv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"blE" = ( +/obj/structure/girder/displaced, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"blN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) "bmr" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"bmA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "bmF" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"bmJ" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"bmK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"bmG" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"bmQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) -"bmS" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"bmU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"bmK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"bnl" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"bnd" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"bnm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "bno" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -3743,20 +3853,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"bnw" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"bnC" = ( -/turf/closed/wall/almayer/aicore/white/hull, -/area/space) -"bnG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"bnF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -3764,22 +3867,36 @@ /obj/item/tool/warning_cone, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bnY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"bnK" = ( +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bnQ" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bod" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bom" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"bos" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "bow" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) "boz" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; @@ -3787,19 +3904,17 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"boG" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"boM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) +"boF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"boR" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) "boV" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -3808,35 +3923,21 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bpk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SEA Office Shutters"; - name = "SEA Office Shutters"; - pixel_y = 12 - }, -/obj/item/ashtray/plastic{ - pixel_x = 8; - pixel_y = -4 +"bpq" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/phone_base/rotary{ - name = "Senior Enlisted Advisor Office Telephone"; - phone_category = "Offices"; - phone_id = "Senior Enlisted Advisor's Office"; - pixel_x = -3 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) "bpC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"bpF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"bpP" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) "bpQ" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 4; @@ -3851,57 +3952,23 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"bqb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"bqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"bqx" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"bqB" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_stern) -"bqK" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 +"bqh" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"bqA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bqE" = ( +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/starboard) -"bqP" = ( -/obj/structure/surface/rack, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) "bqT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -3928,46 +3995,49 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"bqX" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) "brb" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/offices) -"bre" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 8 +"brl" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"brg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"brm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"brk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = 10 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +/obj/item/clothing/head/chefhat, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "brp" = ( /obj/structure/supply_drop/bravo, /turf/open/floor/plating, /area/almayer/squads/req) +"bru" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) "brv" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -3987,69 +4057,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"brD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) +"brK" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) "brY" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/hallways/hangar) "bsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"bsm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/medical/chemistry) "bsq" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/mp_bunks) +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "bst" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_one) +"bsu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bsv" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "bsw" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4067,24 +4121,25 @@ /obj/item/reagent_container/food/drinks/cans/souto/diet/peach, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"bsI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"btf" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +"bsA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"bte" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"bts" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/shipboard/brig/general_equipment) +"btj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "btv" = ( /obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ @@ -4095,6 +4150,19 @@ "btD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) +"btE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"btF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) "btG" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -4120,58 +4188,58 @@ "btO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"btP" = ( -/obj/structure/machinery/light{ - dir = 1 +"btT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"btS" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"bum" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"bun" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"bud" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"bun" = ( -/turf/open/floor/almayer/orange/north, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"buw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"buy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "buz" = ( /obj/structure/supply_drop/charlie, /turf/open/floor/plating, /area/almayer/squads/req) "buF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"buL" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"buP" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"buT" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) "bvb" = ( /obj/structure/machinery/light{ dir = 8 @@ -4182,48 +4250,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bvg" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "bvi" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/clothing/glasses/mgoggles, -/obj/item/clothing/glasses/mgoggles, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"bvn" = ( -/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"bvu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"bvN" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/mp_bunks) +/area/almayer/squads/bravo) +"bvo" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/cic) "bwf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4237,68 +4271,66 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bwo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"bws" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bwx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"bwC" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"bwG" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "ARES WorkingJoe Bay Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"bwC" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bwM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Comms" +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"bwP" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"bxa" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"bwY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"bxb" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) "bxg" = ( /obj/structure/machinery/door/poddoor/railing{ id = "supply_elevator_railing" }, /turf/open/floor/almayer, /area/almayer/squads/req) -"bxj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 +"bxz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "bxB" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -4311,19 +4343,18 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"bxO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"bxS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"bxL" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"bxV" = ( /obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"bxW" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/hallways/lower/vehiclehangar) "byn" = ( /obj/effect/landmark/start/marine/leader/bravo, /obj/effect/landmark/late_join/bravo, @@ -4340,46 +4371,23 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"byy" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"byW" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) -"byE" = ( +"bzq" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"byS" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"byT" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/securestorage) -"bzv" = ( -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) "bzz" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -4391,19 +4399,6 @@ /obj/structure/largecrate/random/case, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bzT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bzZ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) "bAh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cargo_container/wy/mid, @@ -4413,39 +4408,17 @@ /obj/structure/cargo_container/wy/right, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bAq" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) "bAs" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room) -"bAt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"bAB" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) +"bAy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"bAA" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "bAS" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/plating_catwalk, @@ -4457,12 +4430,14 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) "bBw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) "bBA" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/weapon_room) @@ -4472,25 +4447,14 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"bBH" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"bBI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) "bBN" = ( /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bCb" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "bCd" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4505,6 +4469,23 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) +"bCk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 3"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) "bCz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -4521,55 +4502,61 @@ }, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"bDn" = ( +"bCO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"bDq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"bCT" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"bCU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"bDb" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"bDA" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"bDm" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"bDC" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or03"; - name = "Operating Theatre 3" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/upper/aft_hallway) +"bDn" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_three) -"bDG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) "bDI" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bDR" = ( -/obj/structure/machinery/brig_cell/cell_1{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) "bEi" = ( /obj/structure/supply_drop/alpha, /obj/structure/machinery/light{ @@ -4588,10 +4575,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"bEq" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "bEw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -4604,10 +4587,32 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"bFd" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) +"bEJ" = ( +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"bEX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bEZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/tool/screwdriver, +/obj/item/bananapeel{ + desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; + icon = 'icons/obj/items/weapons/guns/attachments.dmi'; + icon_state = "iffbarrel"; + name = "Broken B8 Smart-Scope"; + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "bFk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -4618,41 +4623,29 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"bFv" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"bFx" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bFH" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"bFF" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/plating, +/area/almayer/command/airoom) "bFJ" = ( /obj/docking_port/stationary/marine_dropship/almayer_hangar_2, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bFK" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"bFO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"bFM" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) +/obj/structure/machinery/recycler, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) "bFP" = ( /obj/vehicle/powerloader{ dir = 8 @@ -4663,6 +4656,12 @@ /obj/docking_port/stationary/marine_dropship/almayer_hangar_1, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"bGm" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bGo" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -4673,20 +4672,6 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"bGt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) "bGu" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ @@ -4694,33 +4679,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bGD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/item/storage/box/cups{ - pixel_x = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) "bGU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"bHl" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +"bHh" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"bHo" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "bHB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4737,23 +4707,16 @@ "bHP" = ( /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"bHQ" = ( -/obj/structure/machinery/light, +"bHU" = ( +/obj/structure/machinery/power/apc/almayer/west, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/maint/lower/cryo_cells) "bIe" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bIg" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bIk" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/briefing) "bIy" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -4762,29 +4725,34 @@ }, /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/navigation) -"bIB" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 8 +"bID" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"bIF" = ( -/obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) "bIM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"bJc" = ( -/obj/structure/machinery/light/small{ +"bIQ" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"bJc" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) "bJf" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -4797,21 +4765,6 @@ "bJt" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"bJv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-5"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"bJA" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) "bJC" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie) @@ -4825,6 +4778,23 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"bJJ" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bJL" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/shipboard/brig/cells) "bJS" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, @@ -4834,20 +4804,18 @@ /obj/structure/machinery/light, /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"bJW" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" +"bJV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -2; + pixel_y = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/interrogation) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "bJX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -4858,23 +4826,23 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"bKi" = ( -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_y = 28; - req_one_access_txt = "28" - }, +"bKk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"bKo" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/fore_hallway) "bKs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -4885,13 +4853,6 @@ /obj/structure/cargo_container/arious/mid, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bKw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_umbilical) "bKC" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, @@ -4902,20 +4863,24 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"bKN" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"bKP" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bKQ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"bKZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "bLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4971,12 +4936,6 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"bLE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) "bLO" = ( /obj/structure/bed/chair{ dir = 8 @@ -4989,24 +4948,35 @@ /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"bMe" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +"bLQ" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/shipboard/brig/cells) +"bMj" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"bMI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "line2"; + pixel_x = -4; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "ROlobby2"; + name = "RO Line 2 Shutters"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"bMg" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"bMi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) +/obj/item/paper_bin/uscm{ + pixel_y = -4 + }, +/obj/item/tool/pen{ + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "bMJ" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, @@ -5028,15 +4998,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"bMZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "bNf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -5068,6 +5029,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"bNu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) "bNG" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ density = 0; @@ -5075,34 +5048,43 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bNI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) "bNK" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer6" +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = -24; + req_one_access_txt = "200;91;92" }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"bNR" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"bNV" = ( +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"bOf" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"bOy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"bOt" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"bOF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "bOG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5116,10 +5098,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"bOH" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) "bOQ" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/sriracha{ @@ -5128,25 +5106,19 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"bOU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"bOS" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"bPc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"bPp" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bOV" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bPi" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/hallways/upper/midship_hallway) "bPq" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -5171,9 +5143,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) +"bPA" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "bPF" = ( /turf/closed/wall/almayer/white/outer_tile, /area/almayer/medical/medical_science) +"bPH" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) "bPL" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -5187,7 +5194,43 @@ /obj/effect/landmark/late_join, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"bPQ" = ( +"bPP" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bQn" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"bQx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bQP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, @@ -5200,72 +5243,28 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) -"bPY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"bQo" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/hull/lower/l_m_s) -"bQr" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer2" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"bQC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) -"bQJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"bQO" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "bQQ" = ( /obj/structure/sign/ROsign{ layer = 3 }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"bQT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) "bQU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"bQV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"bQW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "bQX" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -5282,83 +5281,95 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) +"bRd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "bRe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"bRh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ +"bRl" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bRC" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"bRG" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"bRM" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"bRT" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 }, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 +/obj/structure/sign/safety/laser{ + pixel_y = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"bRl" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bRn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bRt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"bRY" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"bRG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/bravo) +"bSc" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"bRX" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "bSf" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/port_point_defense) -"bSu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"bSq" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) "bSv" = ( /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"bSI" = ( -/obj/effect/landmark/start/doctor, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) "bSJ" = ( /turf/closed/wall/almayer, /area/almayer/squads/delta) @@ -5375,17 +5386,34 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/delta) -"bSM" = ( +"bSO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) "bSS" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"bSU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) "bTb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -5427,6 +5455,9 @@ "bTA" = ( /turf/open/floor/almayer, /area/almayer/squads/delta) +"bTD" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/shipboard/brig/cic_hallway) "bTH" = ( /turf/open/floor/almayer, /area/almayer/living/tankerbunks) @@ -5437,11 +5468,6 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/weapon_room) -"bUk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) "bUp" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5469,13 +5495,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"bUD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) "bUN" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -5491,6 +5510,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"bVa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) "bVe" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -5499,91 +5527,115 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"bVf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) "bVh" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Commanding Officer's Mess" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"bVl" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"bVp" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"bVk" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"bVx" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"bVl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/item/reagent_container/food/snacks/margheritaslice{ + desc = "A slice of classic pizza ruined by the corps."; + name = "dirty margherita slice"; + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"bVs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"bVt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"bVu" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" +/obj/item/stack/medical/ointment{ + layer = 3.5; + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"bVA" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/auxiliary_officer_office) -"bVJ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green/north, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "bVM" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bVP" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) "bVU" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_point_defense) -"bWD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"bVW" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"bWj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"bWz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"bWB" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) "bWJ" = ( /obj/structure/machinery/shower{ dir = 4 @@ -5592,59 +5644,127 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"bXd" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +"bWX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) "bXe" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"bXp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +"bXh" = ( +/obj/structure/surface/rack{ + desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." + }, +/obj/structure/machinery/light/small{ + dir = 4; + icon_state = "bulb-burned"; + status = 3 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.78; + name = "circuit board"; + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/prop{ + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.79; + name = "circuit board"; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) "bXz" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"bYd" = ( -/obj/structure/machinery/light{ - dir = 1 +"bXG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"bXN" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, -/obj/item/toy/deck{ - pixel_x = -9 +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"bYn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"bYn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/port) +"bYr" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) "bYw" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"bYG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 +"bYD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/prop/tableflag/uscm{ + pixel_x = -5 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lockerroom) -"bYJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/prop/tableflag/uscm2{ + pixel_x = 5 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"bYT" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"bYG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "bZc" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = -16 @@ -5656,140 +5776,150 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bZu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"bZl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"bZp" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/starboard_missiles) "bZw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) -"bZy" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"bZI" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"bZC" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) "bZJ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/landmark/map_item, /obj/item/device/binoculars, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"bZM" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"caa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"caj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cam" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"bZV" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/hallways/hangar) +"cas" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"caH" = ( /turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"caa" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/engineering/upper_engineering/port) +"caJ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/item/desk_bell{ - anchored = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"caQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/lobby) -"caw" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"cba" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"caY" = ( +/obj/item/storage/box/matches{ + pixel_x = -11; + pixel_y = -3 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"cbi" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"cbl" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"cby" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = 8; + pixel_y = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"cbB" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"cbJ" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"cbb" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"cbf" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"cbk" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"cbC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) "cbM" = ( /obj/structure/closet/crate, /obj/item/clothing/glasses/welding, /obj/item/circuitboard, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ccH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) +"cca" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) "ccQ" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"cde" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red/north, -/area/almayer/living/cryo_cells) "cdf" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"cdj" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) "cdp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -5805,66 +5935,103 @@ /turf/open/floor/plating, /area/almayer/hallways/hangar) "cdB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"cdD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cdH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) "cdI" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cef" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"cdJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = 11; + pixel_y = 37 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cdK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/window/westright{ dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" + req_access_txt = "28" }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"cei" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"cel" = ( -/obj/structure/sign/safety/intercom{ - layer = 2.9; - pixel_x = -6; - pixel_y = 29 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/obj/structure/machinery/botany/extractor{ - density = 0; - pixel_x = 15; - pixel_y = 16 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/obj/item/device/flashlight/pen{ - pixel_x = 14; - pixel_y = 15 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"cdR" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/machinery/vending/hydroseeds{ - density = 0; - pixel_x = -7; - pixel_y = 16; - req_access_txt = "28" +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"cdW" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"cef" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"cep" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"cej" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"cek" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) "ceC" = ( /obj/structure/prop/almayer/ship_memorial, /turf/open/floor/plating/almayer, @@ -5872,88 +6039,97 @@ "ceE" = ( /turf/closed/wall/almayer, /area/almayer/command/cichallway) +"ceV" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"ceY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/command/telecomms) +"cfg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) "cfo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"cfs" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +"cfr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) "cft" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"cfP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) +"cfI" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) "cfQ" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"cfS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) +/area/almayer/engineering/lower/workshop) +"cgd" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) "cgj" = ( -/obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/maint/upper/u_m_p) +"cgm" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) "cgo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"cgx" = ( -/turf/open/floor/almayer/orange, -/area/almayer/living/briefing) "cgy" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"cgB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) "cgE" = ( /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"cgV" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +"cgP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"cgY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"cha" = ( -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"chg" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"cho" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) "chp" = ( /obj/structure/bed/chair{ dir = 8; @@ -5961,20 +6137,38 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"chv" = ( -/obj/structure/bed, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) +"chw" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) "chx" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"chI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"chF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 6 }, +/obj/item/storage/box/handcuffs, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/living/briefing) +"chI" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) "chM" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -5988,23 +6182,50 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) "chT" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"chZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"cif" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ciB" = ( +/area/almayer/maint/hull/lower/s_bow) +"cif" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cip" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"ciP" = ( /obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "ciQ" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -6012,58 +6233,82 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ciW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) "cjc" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"cjj" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ +"cjk" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"cjs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"cjt" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"cjI" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"cjL" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"cjn" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 2; - id = "ares_vault_out"; - name = "wycomms" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cjN" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/closed/wall/almayer/outer, -/area/almayer/command/airoom) -"cjM" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/chief_mp_office) +"cki" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) -"cjN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"cjR" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/hallways/upper/midship_hallway) -"ckb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"ckk" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"cku" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south2) -"ckq" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"ckZ" = ( -/obj/structure/machinery/cm_vending/clothing/engi/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +"ckx" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"cky" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"ckH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) +"ckY" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/living/pilotbunks) "clg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) @@ -6086,50 +6331,94 @@ "cls" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"clv" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/living/briefing) -"clU" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"cmP" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cmS" = ( -/obj/structure/surface/rack, +"clB" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"cnf" = ( +/area/almayer/maint/hull/upper/u_a_p) +"clD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"cnj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/living/offices) +"clU" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"cnm" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering) -"cnn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Engine Monitoring" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_three) +"cmr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"cmz" = ( +/obj/structure/closet, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"cmB" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"cns" = ( +/area/almayer/squads/charlie) +"cmL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"cmZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"cna" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/cryo_cells) +"cnz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"cnB" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"cnI" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/engineering/upper_engineering) +"cnK" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "cnS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -6137,90 +6426,35 @@ }, /turf/open/floor/plating, /area/almayer/command/computerlab) +"cob" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) "cop" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) -"cox" = ( -/obj/structure/machinery/brig_cell/cell_3{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"coD" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 12 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"coF" = ( -/obj/item/storage/firstaid/fire/empty, -/obj/item/storage/firstaid/o2/empty, -/obj/item/storage/firstaid/rad/empty, -/obj/item/storage/firstaid/toxin/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"coH" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"coL" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) +"cot" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) "coM" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/item/book/manual/orbital_cannon_manual, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"coU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/reagent_scanner{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clipboard{ - pixel_x = 8 - }, -/obj/item/paper{ - pixel_x = 8 - }, -/obj/effect/spawner/random/toolbox{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"coW" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) "cph" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) "cpk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6230,30 +6464,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"cpm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) "cpp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"cpr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"cpq" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"cpu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"cpF" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 3"; - pixel_x = -24 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"cpx" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack{ + amount = 40; + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) +/obj/item/stack/sheet/plasteel/small_stack{ + amount = 15 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "cpJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -6276,63 +6518,49 @@ /turf/open/floor/plating, /area/almayer/squads/req) "cpL" = ( -/obj/item/clothing/under/shorts/black, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"cpQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"cpU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "almayerlink_med1_req" }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cpX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"cpZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/area/almayer/lifeboat_pumps/south1) +"cpN" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/command/cic) -"cql" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/hangar) +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cpO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"cpX" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"cqb" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"cqo" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"cqp" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"cqy" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "cqz" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cqA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"cqE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/computer/squad_changer{ - dir = 8; - layer = 2.99; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"cqI" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) "cqJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -6350,272 +6578,309 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"cqS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +"cqU" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "cqY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar/tarbacktube, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"cri" = ( +"cqZ" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"crf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"crj" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"crk" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"crs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/area/almayer/squads/alpha_bravo_shared) +"cro" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_windoor"; + name = "Windoor Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "28" }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/evidence_storage) -"cru" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"crF" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/biohazard{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"crJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"crU" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 5; - pixel_y = 29 +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_se_2"; + name = "Window Shutters"; + pixel_x = -7; + pixel_y = 4; + req_access_txt = "28" }, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/mono, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/medical_science) -"crY" = ( +"crw" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"crB" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 5"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/structure/machinery/iv_drip, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"csa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"crF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"css" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"csc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"cst" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"csv" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"csy" = ( +/area/almayer/squads/req) +"csx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"csE" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"csS" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"cta" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"csN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"ctk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"ctl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cta" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"ctc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ctr" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) "cts" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ctz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/hydroponics) "ctG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"ctL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"ctM" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"ctW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"cuh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"ctP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"ctS" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cua" = ( -/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"cut" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"cue" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/mp_bunks) -"cul" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"cuo" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/fore_hallway) -"cux" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"cuz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/squads/delta) +"cuA" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"cuB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "cuC" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/starboard) -"cuP" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"cuW" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"cuX" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_s) -"cuZ" = ( +"cuF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_midship_hallway) -"cvi" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"cuG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"cvk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"cvl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"cuP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 13 }, -/obj/structure/sign/safety/bathunisex{ +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"cuS" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"cvs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/groundside_operations{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"cvG" = ( +/obj/structure/sign/safety/rewire{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = 25 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"cvH" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"cvK" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/tool/plantspray/weeds, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"cvA" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 +"cvY" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"cwa" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"cwl" = ( +/obj/item/trash/plate{ + pixel_x = 9; + pixel_y = 11 }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; +/obj/item/reagent_container/food/snacks/carpmeat{ layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/window/reinforced{ - dir = 8; +/obj/item/reagent_container/food/snacks/carpmeat{ layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) "cwo" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = 4 @@ -6626,39 +6891,55 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"cws" = ( -/obj/structure/morgue{ - dir = 8 +"cwz" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"cwt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"cwz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ +/area/almayer/maint/upper/u_f_s) +"cwK" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_one_access = null + name = "ship-grade camera" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cwN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cwO" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"cwT" = ( +/obj/structure/closet/secure_closet/commander, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/device/radio, +/obj/item/clothing/shoes/laceup, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cwU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"cwF" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"cwW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cwR" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_umbilical) "cwX" = ( /obj/structure/ladder{ height = 1; @@ -6666,212 +6947,217 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) +"cxf" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/aluminum{ + amount = 20 + }, +/obj/item/stack/sheet/copper{ + amount = 20; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "cxk" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cxC" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-1"; - req_access = null +"cxs" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"cxy" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"cxz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"cxP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"cyc" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + access_modified = 1; + name = "\improper Senior Enlisted Advisor's Office"; + req_access = null; + req_access_txt = "19;29" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"cxJ" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/area/almayer/shipboard/sea_office) +"cyf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"cyh" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cxT" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"cyp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"cyw" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"cyF" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"cxW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"cyR" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"cyY" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -29 +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"cyP" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "cyZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"czg" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +"cze" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"czf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"czi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"czC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"czD" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) -"czK" = ( +"czL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"czU" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/hallways/lower/vehiclehangar) -"czQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Laundry Room" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_aft_hallway) +"cAe" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution_storage) +"cAk" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"czS" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"cAp" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"czU" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"czV" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/window/reinforced{ dir = 8; - name = "ship-grade camera" + health = 80 }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"cAA" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/command/lifeboat) +"cAC" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = -26 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"czW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"cAJ" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"cAa" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"cAk" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"cAq" = ( +/area/almayer/maint/hull/upper/u_m_p) +"cAP" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"cAR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"cAz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/chemistry) -"cAE" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"cAK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"cAN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"cAW" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"cAX" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 + dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"cAU" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"cAZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "cBb" = ( /obj/structure/machinery/light{ dir = 1 @@ -6879,413 +7165,422 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) "cBe" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"cBf" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cBo" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"cBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cBf" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"cBr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cBK" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 +/area/almayer/maint/lower/cryo_cells) +"cBt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/trash/buritto, /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cBO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"cBu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"cBT" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/medical) +"cBF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/platform{ - dir = 4 +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"cBH" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"cBJ" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"cBO" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) -"cBV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"cBY" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"cBR" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"cBT" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) "cCa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"cCd" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"cCh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"cCm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"cCj" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/evidence_storage) +/obj/structure/surface/rack, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "cCp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"cCM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"cCw" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"cCP" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"cCB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"cCH" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) "cCS" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/appleseed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"cDf" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"cDg" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/shipboard/brig/cells) -"cCT" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"cDh" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"cDk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cDa" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"cDl" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"cDq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"cDt" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cDy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/communications{ - dir = 4 +/area/almayer/squads/charlie_delta_shared) +"cDM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"cDz" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cDS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/blue/northeast, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"cDX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) -"cDA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"cDM" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +"cEc" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "cEi" = ( /obj/structure/sign/poster, /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"cEn" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plastic{ - amount = 5 +"cEq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"cEy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"cEo" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/port_umbilical) -"cEL" = ( -/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"cER" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"cEW" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 1"; - name = "\improper cell shutter" +/area/almayer/living/briefing) +"cEz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"cEX" = ( -/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"cEJ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"cFe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"cFg" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/chemistry) -"cFm" = ( +"cEN" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"cFw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" +/area/almayer/medical/lower_medical_lobby) +"cEQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"cEW" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"cFy" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"cFz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"cFN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"cFf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"cFg" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 4; + id = "almayerlink_med_req" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cFj" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"cFo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"cFQ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"cFz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"cFL" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) "cFT" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"cGb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"cGc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"cGq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"cGf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"cGq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/fore_hallway) -"cGx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"cGy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"cGB" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"cGG" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"cGN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/optable, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"cHa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"cGE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cHe" = ( +/obj/structure/sign/safety/intercom{ + layer = 2.9; + pixel_x = -6; + pixel_y = 29 }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 +/obj/structure/machinery/botany/extractor{ + density = 0; + pixel_x = 15; + pixel_y = 16 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"cGW" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"cHi" = ( -/obj/structure/platform{ - dir = 1 +/obj/item/device/flashlight/pen{ + pixel_x = 14; + pixel_y = 15 }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"cHo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/obj/structure/machinery/vending/hydroseeds{ + density = 0; + pixel_x = -7; + pixel_y = 16; + req_access_txt = "28" }, /turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"cHp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/medical/hydroponics) +"cHi" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"cHr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"cHs" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) "cHx" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"cHH" = ( -/obj/structure/largecrate/random, +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/engineering/upper_engineering/port) +"cHK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"cHS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"cHW" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) "cIb" = ( -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "cIe" = ( /obj/structure/machinery/light{ dir = 4 @@ -7293,186 +7588,166 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cIg" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/command/lifeboat) -"cIm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/ot{ - pixel_y = 4 +"cIj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/silver/west, +/area/almayer/engineering/port_atmos) +"cIq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "cIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cIu" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"cIz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"cIA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"cIx" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"cIV" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"cIZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ +/area/almayer/maint/hull/upper/u_a_p) +"cIA" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"cJa" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"cJc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"cIB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"cJf" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"cIC" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"cJg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"cJk" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"cJm" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cJx" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/area/almayer/engineering/starboard_atmos) +"cJx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "cJE" = ( /obj/structure/sign/prop2, /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"cJV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"cJX" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"cJJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"cKd" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"cJR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/u_a_s) "cKe" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"cKu" = ( -/obj/structure/toilet{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"cKv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-2"; - req_access = null +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"cKf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"cKA" = ( -/obj/structure/machinery/door/window/ultra{ - dir = 8; - req_access_txt = "3" +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"cKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"cKD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"cKj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"cKl" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"cKx" = ( /obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"cKD" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"cKH" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cLf" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"cKP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"cKQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"cLg" = ( -/obj/effect/landmark/railgun_computer, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) +/area/almayer/shipboard/weapon_room) +"cLa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"cLc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "cLl" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7482,57 +7757,20 @@ /obj/item/tool/lighter/zippo, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) +"cLn" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "cLC" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"cLL" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"cLQ" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 8; - pixel_x = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"cLS" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"cLU" = ( +"cLO" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/offices/flight) -"cLY" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"cMe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower) "cMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7542,57 +7780,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"cMu" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) "cMv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"cMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"cMz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "cMV" = ( /obj/structure/sign/prop1{ @@ -7612,41 +7802,57 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"cMY" = ( -/obj/structure/sink{ - pixel_y = 32 +"cMZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"cNs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"cNu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"cNh" = ( -/obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cNm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/living/briefing) +"cNv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"cNo" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"cNw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cNM" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"cNy" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"cNV" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cNR" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"cNW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "cNX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7656,178 +7862,239 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cOd" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +"cNZ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"cOn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) -"cOk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/sign/safety/terminal{ + pixel_x = 32; + pixel_y = -22 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"cOr" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"cOC" = ( -/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"cOO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"cOQ" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"cOF" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) -"cOJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"cOS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver, +/area/almayer/living/offices/flight) +"cOZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/obj/structure/sign/safety/laser{ + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"cPr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"cPu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"cPA" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"cOX" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"cPd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cPe" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 +/turf/open/floor/almayer/orangecorner, +/area/almayer/command/telecomms) +"cPE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"cPJ" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cPh" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"cPj" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"cPL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"cPX" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/weapon_room) +"cQf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cQi" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"cPm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"cPs" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"cPE" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cPF" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_bow) -"cPR" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"cPS" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) "cQv" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/general_equipment) -"cQM" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"cQO" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" +"cQE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"cQP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cQU" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) "cQV" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) +/obj/structure/surface/table/almayer, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/cigarette/cigar/classic, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"cQY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"cRa" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) "cRd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"cRm" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"cRn" = ( -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 +/area/almayer/maint/hull/upper/u_f_p) +"cRf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"cRq" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"cRw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"cRx" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cRz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"cRJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) "cRK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -7837,34 +8104,34 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"cRT" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 +"cRN" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cRP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cSh" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"cSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cRU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"cRY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"cSb" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"cSg" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_f_p) +"cSl" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) "cSm" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -7872,231 +8139,234 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"cSw" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/starboard_missiles) -"cSz" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"cSW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"cSY" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"cTi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"cSv" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"cTa" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/item/paper_bin/uscm{ + pixel_x = -12; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/item/tool/pen{ + pixel_x = -14 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/aicore_lockdown{ + pixel_x = 3; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"cTk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cTh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) "cTn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"cTr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair/office/dark{ +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_2"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"cTz" = ( +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"cTu" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/meal5, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 12 +/obj/structure/machinery/cryo_cell{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"cUg" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/suit/space/compression/uscm, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"cTD" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"cUh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"cUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/upper/u_m_p) +"cTO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cTR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"cUy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"cUp" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cUJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 4; - icon_state = "pipe-j2" + layer = 2.99; + pixel_y = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cUS" = ( -/obj/item/trash/chips{ - pixel_x = 9; - pixel_y = 6 +/obj/structure/machinery/computer/almayer_control{ + dir = 4; + layer = 2.99; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"cUO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"cUP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/trash/cheesie, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"cUW" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cVd" = ( /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"cVc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"cVl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"cVu" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"cVp" = ( +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"cVz" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"cVB" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"cVP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cVr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/crew/alt{ +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"cVR" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Brig Cells Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Cells"; - pixel_x = 16 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"cVv" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cVI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"cVS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"cVZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"cWd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Brig Breakroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 + dir = 9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) -"cWi" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/light{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"cWb" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"cWm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"cWn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"cWD" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"cWQ" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"cWV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"cWY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) "cWZ" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"cXf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cXa" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"cXf" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) "cXi" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -8112,110 +8382,97 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cXl" = ( -/obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"cXG" = ( +"cXm" = ( +/obj/effect/landmark/start/pilot/dropship_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"cXo" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cXJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"cXy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"cXK" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"cXB" = ( +/obj/item/ammo_box/magazine/misc/mre, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"cYi" = ( -/obj/structure/surface/table/reinforced/almayer_B, +/area/almayer/maint/hull/upper/p_stern) +"cXT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"cYe" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"cYl" = ( -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "cYm" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"cYs" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"cYq" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/turf/open/floor/almayer/green/southeast, +/area/almayer/shipboard/brig/cells) +"cYE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"cYM" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/closed/wall/almayer/aicore/hull, -/area/almayer/powered/agent) -"cYv" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/command/airoom) +"cYP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"cYA" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"cYR" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"cYS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) "cYT" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"cYX" = ( -/obj/structure/closet/crate/freezer/cooler{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/sign/safety/storage{ - pixel_x = -24 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"cZc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) "cZh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -8225,101 +8482,76 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) +"cZn" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"cZH" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "cZV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, /obj/item/tool/lighter, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"dae" = ( -/obj/structure/machinery/vending/coffee, +"cZY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"dao" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/area/almayer/living/bridgebunks) +"dal" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"dar" = ( -/obj/structure/bed/chair/comfy/bravo{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dao" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Interior"; dir = 1 }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"daJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"day" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"daI" = ( +/area/almayer/command/lifeboat) +"daK" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/hallways/lower/port_fore_hallway) -"daK" = ( +"daR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_windoor"; - name = "Windoor Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "28" - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/sign/safety/biohazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_se_2"; - name = "Window Shutters"; - pixel_x = -7; - pixel_y = 4; - req_access_txt = "28" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"daP" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"daS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"daZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) +/obj/item/trash/USCMtray, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"daU" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) "dbi" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "dbn" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -8336,156 +8568,238 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"dbC" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"dbF" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"dbD" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"dbG" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"dbK" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/maint/upper/u_m_p) -"dbN" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"dbX" = ( -/obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer/redfull, +/area/almayer/maint/hull/upper/u_a_p) +"dbM" = ( +/turf/open/floor/almayer/blue/north, /area/almayer/living/briefing) -"dbZ" = ( -/obj/structure/platform_decoration{ - dir = 8 +"dbQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/offices) +"dbS" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) "dcd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dcf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 +"dcg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"dcj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/maint/upper/u_m_p) "dcm" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/hydroponics) -"dcn" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_a_s) +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) "dcp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"dcy" = ( -/obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) +"dcw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dcz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dcF" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -34 +/obj/structure/machinery/door/window/eastleft{ + req_access = list(19) }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/machinery/door/window/westright, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"dcI" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"dcV" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"dcX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 }, -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"dcC" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"dcF" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/p_bow) "ddd" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "dde" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/turf/open/floor/plating/almayer/no_build, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"ddf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) +"ddn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"ddo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ddz" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) +"ddA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "ddB" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/weapon_room) +"ddI" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"ddM" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"ddQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"ddS" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) "ddX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"dec" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 15 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"den" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"deo" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 22 +/obj/structure/sign/safety/conference_room{ + pixel_x = -17 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"des" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"dey" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) "deD" = ( /obj/structure/machinery/prop/almayer/CICmap{ pixel_x = -5 @@ -8493,429 +8807,558 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"deF" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, +"deL" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"deM" = ( -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"deN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) +/area/almayer/living/briefing) +"deR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "dfa" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"dfe" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 +"dfi" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = -25 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"dfA" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/surface/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 7; + pixel_y = 5 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"dfF" = ( -/obj/structure/largecrate/random/case/small, +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/storage/box/sprays{ + pixel_y = -3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"dfD" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"dfW" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/area/almayer/maint/upper/u_f_s) +"dfM" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"dfX" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/almayer/hallways/lower/port_midship_hallway) +"dfQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"dgr" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dfV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"dfZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "take-ins"; - pixel_x = 7; - pixel_y = 28; - range = 0 +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cryo) +"dgf" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dgs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/skills{ +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"dgi" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_y = 18 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 4 + pixel_y = 13 }, -/obj/structure/machinery/computer/med_data/laptop{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_y = -18 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"dgI" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"dgK" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dgQ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - name = "\improper Requisitions Storage" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"dgu" = ( /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"dgX" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/midship_hallway) -"dgY" = ( -/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"dgZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"dhh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"dhx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"dhD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"dii" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"dgv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"dij" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/maint/upper/u_a_s) +"dgE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"dim" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Left"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dgF" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"din" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"dgK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"dit" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/stamp{ - name = "Corporate Liaison's stamp"; - pixel_x = -8; - pixel_y = 6 +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc01"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = -23 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"diB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"dgL" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"dgM" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/item/storage/bag/plants{ + pixel_x = 3 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"djd" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/item/storage/bag/plants{ + pixel_y = -3 }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 +/obj/item/tool/scythe, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"djj" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"dgP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"djl" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, +/area/almayer/engineering/lower) +"dgR" = ( +/obj/structure/bed/chair/comfy/orange, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"djo" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/area/almayer/maint/hull/upper/u_a_p) +"dgV" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"dhb" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"dhd" = ( +/obj/structure/sign/safety/south{ pixel_x = -17; - pixel_y = 7 + pixel_y = 8 }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"dhe" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"dhf" = ( +/obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"djt" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"djx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"dhi" = ( +/obj/structure/machinery/telecomms/receiver/preset_left, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"djG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_2"; - name = "\improper Bathroom" +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"dhl" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + pixel_y = -1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"djN" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"dkx" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"dkK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"dkR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/squads/alpha) +"dhp" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"dkV" = ( -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = -1; - pixel_y = 8 +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"dhv" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"dkW" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) -"dkX" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"dkY" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/northwest, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) -"dkZ" = ( -/obj/structure/machinery/cm_vending/gear/executive_officer{ - density = 0; - pixel_y = 30 +"dhF" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"dhL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"dhS" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"dhV" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"dif" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"dii" = ( /obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"dlc" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/hangar) -"dld" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/gym) -"dlA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1 + layer = 3.3 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"dlD" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"dlE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"dlM" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge1" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"dik" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"dil" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dip" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) -"dlQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"diG" = ( +/obj/structure/disposalpipe/junction{ dir = 8 }, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"diK" = ( +/obj/structure/sign/safety/rewire{ + layer = 2.4; + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"diW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"djh" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-j2" + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"dlR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +/area/almayer/maint/upper/u_a_s) +"djq" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"dlV" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"dmf" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 6"; - name = "Cell 6" +/area/almayer/squads/req) +"djy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/six{ - pixel_x = -17 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"djB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"djC" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"dmo" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"djK" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, +/obj/item/device/taperecorder, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dmr" = ( +/area/almayer/shipboard/brig/interrogation) +"djP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"djW" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dkk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"dkl" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"dmy" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"dko" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"dkA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dkB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"dkI" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"dkS" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 2 + }, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"dkV" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emerald/northeast, -/area/almayer/squads/charlie) -"dmA" = ( -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"dmB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"dln" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"dlH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"dmP" = ( +/area/almayer/hallways/lower/port_umbilical) +"dlT" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"dmc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"dmd" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) +"dme" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"dmj" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) +"dmu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"dmA" = ( +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"dmF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"dmM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) "dmR" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -8934,477 +9377,480 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dmV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"dmW" = ( -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) "dmY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "north_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"dnt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"dny" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"dnz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/mp_bunks) +"dmZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"dnJ" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"dnK" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"dnd" = ( +/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"doa" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"dnj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"dog" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/fore_hallway) -"dol" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dno" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"dnv" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"dnw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dov" = ( -/obj/structure/machinery/light{ +/area/almayer/hallways/lower/port_umbilical) +"dnD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"doy" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/structure/sign/safety/hvac_old{ - pixel_y = -26 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"doF" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/emerald/west, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) -"doG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"dnN" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dnT" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"doh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, /obj/structure/sign/safety/escapepod{ pixel_x = -17 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"doU" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"doW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"dok" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dpg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"dpk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"doq" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"dos" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 4; + pixel_x = 11 }, /turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"dpl" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"dpq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 20 +"dou" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/item/ashtray/bronze{ - pixel_x = 4; - pixel_y = 19 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, +/obj/structure/machinery/vending/security/riot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"doK" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/effect/landmark/map_item{ - pixel_x = -1; - pixel_y = 3 +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"doN" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"doO" = ( +/obj/structure/pipes/vents/scrubber/no_boom{ + dir = 4 }, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.04; - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"dpr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northeast, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"doR" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) -"dpu" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"dpe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dpi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dpG" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"dpJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) +/area/almayer/engineering/lower/engine_core) +"dpr" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"dpA" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or03"; + name = "Operating Theatre 3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_three) +"dpR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "dqb" = ( /obj/structure/sign/safety/security{ pixel_x = -16 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"dqo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "dqw" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room/notunnel) -"dqB" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_p) -"dqS" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"dqx" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"dqU" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/almayer/orange/north, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"dqZ" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"dri" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) -"dqX" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/upper/midship_hallway) -"drb" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) "drm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/machinery/light, +/obj/structure/sign/safety/rewire{ + pixel_y = -32 }, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) -"drp" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) "dru" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"dry" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"drE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"drK" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"drv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room"; + req_access = list(); + req_one_access = list(19,7) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"drD" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ density = 0; - pixel_y = 16 + pixel_x = 32 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"drI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"drP" = ( -/obj/structure/sign/poster/safety{ - pixel_x = 27 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"drX" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"drN" = ( +/obj/structure/toilet{ + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dsc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"dsy" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"dsD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"dsX" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"dta" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"dtb" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/mp_bunks) +"drP" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"dte" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/upper_medical) -"dtg" = ( +"drS" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"drU" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"dsn" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"dsB" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"dsG" = ( +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"dtc" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"dtt" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"dth" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"dtw" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 +/area/almayer/living/grunt_rnr) +"dts" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"dtz" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dtu" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"dtv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"dtx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/maint/hull/lower/l_a_s) "dtH" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"dtP" = ( +"dtK" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"dtQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"dtR" = ( /turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"dtS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/engineering/port_atmos) "dtZ" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"dur" = ( -/obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) +"duc" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"due" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dui" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "duv" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"duz" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 +"duE" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"duK" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/starboard) +"duL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"duA" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/hallways/upper/midship_hallway) -"duO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"duQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"duZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dvz" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"duU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8; + name = "\improper Tool Closet" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"dvG" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"dvO" = ( -/obj/item/toy/deck{ - pixel_y = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"dvp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dvt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"dvC" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dvX" = ( -/obj/structure/largecrate/random/case/small, +/area/almayer/hallways/hangar) +"dvP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"dvV" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/living/cryo_cells) +"dwb" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"dvZ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/area/almayer/maint/hull/lower/l_m_s) +"dwh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dwc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "dwl" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -9417,270 +9863,212 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"dwB" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"dwJ" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack{ - amount = 40; - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/stack/sheet/plasteel/small_stack{ - amount = 15 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"dwM" = ( +"dwt" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"dwy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform{ - dir = 4 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"dwT" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"dwP" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"dxg" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"dxt" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dwR" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"dwS" = ( -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 +/area/almayer/maint/upper/u_a_s) +"dxE" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"dwV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"dxQ" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"dxR" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"dxe" = ( -/obj/structure/machinery/cryopod, +/area/almayer/medical/morgue) +"dxV" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, /turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"dxi" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend/north, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = -8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"dxs" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" +/area/almayer/engineering/lower/engine_core) +"dxY" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"dyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dxw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dxJ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dyt" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"dxO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/command/cichallway) -"dyf" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"dyj" = ( -/obj/structure/closet/secure_closet/commander, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/device/radio, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"dyC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"dyO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/hallways/lower/vehiclehangar) "dyS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"dzd" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"dyX" = ( +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"dzh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"dzo" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/art{ - pixel_y = 32 + dir = 8 }, -/obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"dza" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"dzp" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"dzd" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"dzv" = ( +/obj/effect/landmark/start/warden, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"dzG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"dzN" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"dzA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"dAc" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"dAi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"dzO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"dAu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/laser{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"dzP" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"dzT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 6 +/obj/structure/surface/table/reinforced/black, +/obj/item/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"dAx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) "dAT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"dBc" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_lobby) +"dBe" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"dBi" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "dBp" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -9688,82 +10076,49 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"dBu" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"dBr" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 5"; + locked = 1; + name = "\improper Containment Cell 5" }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"dBv" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"dBD" = ( -/obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dBE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +/area/almayer/medical/containment/cell) +"dBD" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) "dBF" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) "dBH" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"dBN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"dBQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"dBY" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"dCd" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +"dBI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"dCq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) +/area/almayer/squads/bravo) "dCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -9772,70 +10127,84 @@ /turf/open/floor/carpet, /area/almayer/command/cichallway) "dCv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"dCG" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"dCH" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "dCK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"dCM" = ( -/obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"dCO" = ( -/obj/structure/disposalpipe/segment, +"dCR" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"dCV" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"dDf" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/item/bedsheet/purple{ - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"dCT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"dCW" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"dDg" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"dDk" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"dDl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/head/beret/royal_marine, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"dDm" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) "dDn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"dDs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/upper/fore_hallway) +"dDr" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) "dDt" = ( /obj/structure/toilet{ dir = 1 @@ -9850,194 +10219,121 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dDJ" = ( +"dDy" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dDW" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/tech{ - layer = 4.1; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"dDJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"dDK" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 }, -/mob/living/simple_animal/mouse/brown{ - name = "rat" +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"dEd" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"dEf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"dDZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = -25 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "dEn" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"dEp" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 +"dEo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"dEu" = ( /turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"dEw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dEL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/almayer/lifeboat_pumps/north1) +"dEJ" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"dEN" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"dES" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dET" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"dEW" = ( -/turf/open/floor/almayer/emerald, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"dFu" = ( +/turf/open/floor/almayer/uscm/directional/southeast, /area/almayer/living/briefing) -"dFA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) "dFF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"dFJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"dFK" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"dFO" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"dFX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"dGj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bloodsoup{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"dGq" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +"dFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) "dGt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/life_support{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"dGQ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ +/obj/structure/machinery/door_control{ access_modified = 1; - dir = 1; - name = "\improper Security Vault"; - req_access = null; - req_one_access_txt = "91;92" + id = "OTStore"; + name = "Shutters"; + pixel_y = -24; + req_one_access_txt = "35" }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ - plane = -6 +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"dGv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dGJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"dGT" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) "dHd" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -10060,42 +10356,27 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dHz" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/panic) -"dHA" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Oxygen Supply Console" - }, -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, +"dHy" = ( /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"dHF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 2"; - name = "\improper Courtyard Divider" +/area/almayer/hallways/lower/starboard_fore_hallway) +"dHA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"dHM" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"dHH" = ( +/obj/structure/closet/crate/internals, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "dHZ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -10105,449 +10386,453 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"dIq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"dId" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"dIG" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"dIY" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"dJi" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 4"; - pixel_x = -24 +/area/almayer/squads/req) +"dIx" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"dIy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"dJs" = ( -/obj/structure/machinery/light/containment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"dIA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/research/containment/floor2/north, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dIC" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) -"dJv" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"dJg" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"dJk" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"dJq" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) "dJy" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = 25 +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"dJB" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dJL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"dJA" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"dJU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"dKd" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"dKf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"dJT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Liasion's Bathroom" +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "19;29" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"dKj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" +/area/almayer/shipboard/sea_office) +"dKg" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/starboard_atmos) -"dKs" = ( +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = 18; + req_access_txt = "31" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"dKh" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"dKt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"dKs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"dKw" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"dKA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) +/area/almayer/medical/medical_science) "dKL" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) -"dLd" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Right"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"dLu" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - name = "\improper Research Reception Laboratory" +"dKX" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"dKY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/folder/red, +/obj/structure/phone_base/rotary{ + name = "Brig CMP's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig CMP's Office"; + pixel_x = 15 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"dLf" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"dLg" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"dLC" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dLo" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dLs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dLA" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"dLT" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"dLH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dMb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"dLS" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"dMc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"dLU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"dMb" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = 7; - pixel_y = 16 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = -8; - pixel_y = 16 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"dMf" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) +"dMt" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"dMD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"dMd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"dMe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dME" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"dMn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"dMu" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"dMx" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "dMG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Support Officers Quarters"; - req_one_access_txt = "37" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) "dMK" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell) -"dMM" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"dMR" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"dNa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 +"dNt" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" }, -/obj/item/restraint/handcuffs, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"dND" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"dNF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dNt" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dNR" = ( +/obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" + id = "researchlockdownext"; + name = "\improper Research Window Shutter" }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"dNv" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, +/area/almayer/medical/medical_science) +"dNV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"dNw" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer/redfull, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) -"dNA" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 +"dNW" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/living/grunt_rnr) +"dNX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"dNH" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"dNQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/turf/open/floor/almayer/green/north, +/area/almayer/living/offices) +"dOd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"dNT" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"dOf" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/item/storage/bible, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"dOt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"dOx" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 +/area/almayer/living/pilotbunks) +"dOi" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"dOk" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"dOp" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"dOt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"dOK" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dOQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"dPa" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "dPf" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"dPx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"dPB" = ( +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"dPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"dPF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "35" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"dPR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"dPn" = ( -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"dPo" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 37; - req_one_access = null +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dQe" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"dPq" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"dQf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"dQn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"dPT" = ( -/obj/structure/machinery/sentry_holder/almayer/mini/aicore, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"dPW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"dQg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) +/area/almayer/maint/hull/lower/l_f_p) "dQq" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 13 + icon_state = "pottedplant_10" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"dQt" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cic) +"dQx" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"dQA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"dQM" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/bed/sofa/south/grey/left, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/lobby) +"dQy" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"dQz" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"dRb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"dRg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"dQK" = ( +/obj/structure/machinery/computer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"dQO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/blue/southeast, +/area/almayer/command/cichallway) "dRh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -10558,90 +10843,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"dRj" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/squads/alpha) -"dRn" = ( +"dRk" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"dRK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dRz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Dropship Remote Control Console" }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - dir = 2; - name = "\improper Execution Equipment" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"dRF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution_storage) -"dRM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Nitrogen Control Console" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"dRJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"dRR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/bedsheet/hop, +/obj/structure/bed, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "dRT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dRU" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) "dRW" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/maint/upper/mess) -"dRY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"dSd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"dSj" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dRZ" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"dSb" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, +/area/almayer/maint/lower/cryo_cells) +"dSq" = ( +/obj/structure/machinery/landinglight/ds2, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"dSf" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"dSk" = ( +/area/almayer/hallways/hangar) +"dSz" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"dSE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "dSJ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -10650,91 +10937,98 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"dTa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +"dSM" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/briefing) +"dSR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dTd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access_txt = "19;21" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) -"dTf" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"dTm" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/living/briefing) +"dTC" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"dTF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/warden_office) -"dTF" = ( -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "dTI" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dUe" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 +"dTS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"dTY" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"dUk" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"dUl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dUi" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"dUj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"dVf" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -16 + }, +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"dVh" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"dVo" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) -"dUp" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"dUA" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"dUH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"dUP" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) "dVs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -10745,120 +11039,160 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"dVB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"dVK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ +"dVy" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1 }, -/obj/structure/largecrate/random/secure{ - pixel_x = -5 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"dVN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"dVD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"dVP" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"dVH" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"dWc" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/maint/upper/u_m_p) +"dVM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = 1; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/living/grunt_rnr) +"dVT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"dVU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"dWb" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) +"dWd" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/shipboard/brig/medical) "dWg" = ( /obj/effect/landmark/start/cargo, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dWh" = ( -/obj/structure/machinery/door_control{ - id = "or04"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +"dWF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) -"dWr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"dWD" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/stamp/hop{ - name = "Commanding Officer's rubber stamp"; - pixel_x = -5; - pixel_y = 9 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/obj/item/paper_bin/uscm{ - pixel_x = 7; - pixel_y = 6 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"dWP" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -6; - pixel_y = 3 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/item/tool/pen/blue/clicky{ - pixel_x = -6; - pixel_y = -3 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"dWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"dWM" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"dWO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"dXh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"dXp" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/smg/m39{ + pixel_y = 6 + }, +/obj/item/weapon/gun/smg/m39{ + pixel_y = -6 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"dWS" = ( -/obj/structure/platform, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"dWU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/maint/upper/u_m_s) +"dXt" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"dXv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"dWV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"dWZ" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - pixel_x = 1; - pixel_y = 17; - req_access = null +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"dXw" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"dXC" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"dXA" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"dXK" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dXP" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "ares_vault_in"; + name = "aicore" }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -10869,96 +11203,45 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dYb" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room"; - req_access = list(); - req_one_access = list(19,7) +"dXZ" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_y_offset = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"dYq" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"dYg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) "dYs" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/obj/structure/barricade/deployable{ - dir = 4 +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"dYv" = ( -/obj/structure/machinery/door_control{ - id = "agentshuttle"; - indestructible = 1; - name = "Shutters"; - pixel_y = 25; - req_one_access_txt = "201"; - use_power = 0 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"dYB" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +"dYz" = ( +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"dYC" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; - dir = 4; - id = "crate_room4"; - name = "dilapidated storage shutters" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"dYG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dYM" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"dYQ" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing everything you need to stop a CLF uprising."; - name = "\improper USCM crate 'FOB supplies'" - }, -/obj/item/folded_tent/big{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/area/almayer/maint/hull/lower/l_a_p) "dYR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -10966,55 +11249,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dYZ" = ( -/obj/structure/bed/chair/bolted{ - dir = 1 +"dYS" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"dZg" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) -"dZl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/starboard_missiles) +"dZj" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"dZn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc04"; - name = "\improper Treatment Center" +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"dZk" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"dZp" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"dZA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"dZF" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"dZV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_two) +"dZB" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"dZL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"eac" = ( -/obj/structure/largecrate, -/obj/item/folded_tent/reqs{ - pixel_x = -3; - pixel_y = 10 +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"dZV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"ead" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "ean" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -11029,199 +11330,194 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"eaq" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "eaC" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"eaX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"ebb" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 +/area/almayer/engineering/upper_engineering) +"eaE" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"eaG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ebc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/obj/structure/phone_base/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eaM" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"eaO" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"eaU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "ebd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ebe" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 +"ebq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/starboard_missiles) -"ebh" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/silverfull, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eby" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ebF" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SecVault"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"ebj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-3"; - req_access = null +"ebG" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"ebL" = ( +/obj/structure/dropship_equipment/fulton_system, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"ebs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Study" +/area/almayer/hallways/hangar) +"ecd" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"ecr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/captain_mess) +"edj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"ebR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/hallways/lower/port_midship_hallway) +"edk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_umbilical) -"ebW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = 8 }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; - pixel_y = 7 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = -2 }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 3 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = -2 }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 7 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 2 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"edn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"ebX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"edp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"ecc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_one) -"ecm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/prop/magazine/boots/n055{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/offices/flight) -"ecn" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, +/area/almayer/hallways/hangar) +"edq" = ( +/obj/item/tool/wirecutters/clippers, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"ecr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/captain_mess) -"ecw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"ecP" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +/area/almayer/maint/upper/u_a_s) +"edC" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"ecS" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"edi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"edr" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"edz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"edC" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/maint/hull/lower/l_a_s) +"edH" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/living/grunt_rnr) "edI" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"edQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"edR" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/disposalpipe/segment{ dir = 1; - name = "ship-grade camera" + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"edY" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"edZ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + name = "\improper Research Reception Laboratory" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -11229,264 +11525,168 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"edX" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"eeh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"edZ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"eeq" = ( /obj/structure/surface/rack, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red/north, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) -"eeb" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"eez" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"eee" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eel" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"eeq" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/shipboard/brig/warden_office) +"eeJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"eer" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 3"; - layer = 3.2; - name = "Cell 3 Control"; - pixel_x = 16; - pixel_y = -16 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"eeM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 1"; + locked = 1; + name = "\improper Containment Cell 1" }, -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 2"; - layer = 3.2; - name = "Cell 2 Control"; - pixel_x = 16; - pixel_y = 16 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 1"; + name = "\improper Containment Cell 1"; + unacidable = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 2"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = 7; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 3"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = -6; - req_one_access_txt = "19;28" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"eeD" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"eeI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"eeW" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"efi" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"efl" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"efn" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"efu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/medical/containment/cell) +"eeS" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"efa" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"efv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"efz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/area/almayer/maint/hull/lower/stern) +"efq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "efA" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"efD" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"efJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"efH" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"efL" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"efP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"efO" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"egg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"efR" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"egd" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"egf" = ( -/obj/structure/dropship_equipment/fulton_system, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"egg" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices) -"egl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/area/almayer/medical/lower_medical_medbay) +"egn" = ( +/obj/item/newspaper{ + name = "character sheet" + }, +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/toy/dice, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Privacy Shutters"; + pixel_x = -8; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) "egp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"egu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) "egw" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"egx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"egM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"egW" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"egZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"ehc" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 + icon_state = "S" }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ehi" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -11501,295 +11701,206 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"eho" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"ehv" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "ehx" = ( /obj/effect/landmark/start/marine/tl/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"ehM" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"ehU" = ( +"ehE" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/auxiliary_officer_office) -"ehV" = ( -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"ehW" = ( -/obj/structure/machinery/power/apc/almayer/hardened/south, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ehY" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_p) -"eia" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower/engine_core) -"eie" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"eif" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "eiq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/magazine/dirty, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"eir" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Reception Exterior"; - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"eis" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"eiu" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"eiz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +"eiy" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/area/almayer/maint/hull/lower/stern) "eiB" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"eiD" = ( -/obj/structure/bed/chair{ +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"eiH" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"eiG" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"eiQ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eiS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"eiX" = ( -/obj/structure/sink{ - pixel_y = 24 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"ejc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"eji" = ( -/obj/structure/bed/chair{ +/area/almayer/shipboard/brig/cells) +"eiV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ejv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"ejE" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/toy/crayon/blue{ + pixel_x = -9; + pixel_y = -5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"ejO" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ejS" = ( -/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ejW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"ekh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14; - wrenchable = 0 +/area/almayer/living/grunt_rnr) +"ejz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"ejA" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"eku" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "MTline"; - name = "Next button"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "2;7" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"ekc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"ekx" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) "eky" = ( /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ekG" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) -"ekP" = ( +"ekC" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/briefing) +"ekI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ekS" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"ekV" = ( -/obj/structure/machinery/door_control{ - id = "pobunk2"; - name = "PO2 Privacy Shutters"; - pixel_x = -24 + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"ekX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/candle_box, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"ekZ" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"ekQ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) +"elc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"elc" = ( -/obj/structure/surface/table/almayer, /obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_y = -2; - req_one_access_txt = "3;22;19" +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/offices/flight) -"elz" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"elF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"elG" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"elH" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"elh" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"elj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"elB" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) "elL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"elQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) "elR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell) -"elS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"elY" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ema" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/command/cic) +"emd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Rest and Relaxation Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"emg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"emo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/shipboard/brig/perma) "emp" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/processing) @@ -11798,133 +11909,107 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"emv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8 - }, +"ems" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"emw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"emC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/engineering/lower/workshop/hangar) +"emu" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"emF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +/area/almayer/squads/alpha) +"emM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"ena" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"enc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"emS" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 + dir = 5 }, /turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"emX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"enh" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/hallways/lower/repair_bay) +"end" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"ens" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -12 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 17 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/engineering/port_atmos) -"ent" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"eng" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"enh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"enG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"enH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"enO" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +/area/almayer/maint/upper/u_a_p) +"enm" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eod" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"eon" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"eoi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"eos" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"eox" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"eoo" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/surface/rack, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"eou" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_y_offset = 0 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"eoz" = ( -/obj/structure/bed, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"eoB" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/hull/lower/l_m_s) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -11932,223 +12017,160 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eoO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"eoL" = ( +/obj/structure/target{ + name = "punching bag" }, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"epa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"epd" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"eoU" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"epe" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"ept" = ( +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/living/gym) +"epw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"epH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"epb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"epQ" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"epf" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"epR" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"epV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"epZ" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"eqb" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"epk" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 5"; - pixel_x = -24 +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 + }, +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"epx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/item/storage/fancy/cigar{ + pixel_x = 6 + }, +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"eqm" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eqq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eqv" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "pipe-c" + name = "ship-grade camera" }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"epC" = ( -/obj/structure/machinery/light{ +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"eqM" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"eqN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"eqX" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"eqZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/telecomms/broadcaster/preset_left, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"epF" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"erc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"err" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"epL" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"epV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - dir = 1; - name = "\improper Warden's Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"eqa" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"eqb" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner"; - pixel_x = -10 - }, -/obj/item/tool/stamp/ro{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar{ - pixel_x = 6 - }, -/obj/item/ashtray/glass{ - pixel_x = 11; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"eqp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"eqM" = ( -/obj/structure/machinery/cm_vending/clothing/leader/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"eqN" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"eqO" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"eqR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"era" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/area/almayer/living/offices) +"eru" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/turf/open/floor/almayer/greencorner, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/lower/port_fore_hallway) -"erf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"erg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"erl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"err" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "erG" = ( /obj/structure/disposalpipe/junction{ dir = 2; @@ -12158,71 +12180,17 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"erP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) -"erV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 5"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"esz" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"esC" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/prop/magazine/dirty{ - pixel_x = -6; - pixel_y = -10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/captain_mess) -"esE" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, +"ese" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"esJ" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/lower/l_f_p) +"est" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) "esK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -12237,165 +12205,148 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"esQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"esV" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"etA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"etG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"etM" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"etO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +"esN" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) +"esR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 6"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"eub" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/bed/chair{ +/area/almayer/maint/hull/upper/s_stern) +"etq" = ( +/obj/structure/stairs{ dir = 8; - pixel_y = 3 + icon_state = "ramptop" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"etz" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "euc" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"euz" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 2"; - locked = 1; - name = "\improper Containment Cell 2" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - id = "Containment Cell 2"; - name = "\improper Containment Cell 2" + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"eum" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"eut" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"euu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/item/weapon/gun/rifle/l42a{ + pixel_x = 17; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"euz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"euL" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"euH" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"evh" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"evi" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/shipboard/brig/starboard_hallway) +"euX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"evm" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"evt" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) "evu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"evC" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"evD" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"evE" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"evH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"evJ" = ( +/obj/structure/machinery/door_control{ + access_modified = 1; + id = "OTStore"; + name = "Shutters"; + pixel_y = 24; + req_one_access_txt = "35" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"evT" = ( +"evL" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "evX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ewl" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"evY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"ewp" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = 27; + req_one_access_txt = "4;28" }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"ewq" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/offices/flight) "ewr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -12406,311 +12357,258 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"ews" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"ewt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"ewv" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) "ewE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/whistle{ - pixel_y = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "ewM" = ( -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ewP" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -16 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) "exd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/alarm/almayer{ +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"exh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"exq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"exA" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/firingrange{ - pixel_x = 32; - pixel_y = 6 +"exj" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"exB" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"exR" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"exS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"exC" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"eyf" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"eyr" = ( +/obj/structure/window/reinforced{ dir = 4; - id = "crate_room"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"exM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + health = 80 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"eyO" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/living/briefing) +"eyT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"exW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"eya" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/mess) -"eys" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/book/manual/surgery{ - pixel_y = 4 +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"eyv" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"eyB" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/incendiary, -/obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"eyC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"eyJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"eyW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"eyO" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"eyS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ezf" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/starboard) +"ezh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"eyZ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"ezi" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ezl" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"ezu" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/area/almayer/engineering/lower/workshop) +"ezv" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/adv, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ezy" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"ezx" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/armory) -"ezF" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/mp_bunks) -"ezI" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ezO" = ( -/obj/item/tool/warning_cone{ +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/bedsheet/brown{ + layer = 3.1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/living/tankerbunks) +"ezF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ezN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "ezX" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"eAi" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) "eAl" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"eAn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stern) -"eAp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/hangar) -"eAF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"eAG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"eAK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"eAq" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"eAt" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"eAS" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/white{ +/obj/item/toy/handcard/uno_reverse_red{ pixel_x = 5; pixel_y = 5 }, -/obj/item/paper, -/obj/item/restraint/handcuffs, -/obj/item/clothing/mask/cigarette/cigar/classic, -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"eAT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"eAJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; - name = "\improper High Security Storage" + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/securestorage) -"eAW" = ( -/obj/structure/machinery/autolathe, +/area/almayer/medical/lower_medical_medbay) +"eAQ" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/command/lifeboat) +"eAX" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "eAY" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"eAZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"eBa" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"eBc" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "eBe" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -12719,177 +12617,348 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eBx" = ( +"eBn" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"eBo" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"eBy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/command/cichallway) +"eBq" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"eBu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"eBz" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"eBE" = ( -/obj/structure/machinery/photocopier{ - anchored = 0 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"eBJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"eCA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"eCG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/machinery/sleep_console{ + dir = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"eCH" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"eBM" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"eBN" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"eCK" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/command/telecomms) -"eCL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eBP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"eBS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"eBY" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"eCY" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eCe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/item/pizzabox/mushroom{ + pixel_y = 11 + }, +/obj/item/poster, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"eCv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"eCz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering) -"eDl" = ( -/obj/structure/machinery/light{ - dir = 4 +"eCK" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"eDu" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"eCM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out" }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"eDL" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"eDQ" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"eCP" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"eCR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cic) +"eDa" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"eDh" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"eDm" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 4 }, -/turf/open/floor/almayer/emeraldfull, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"eDZ" = ( +"eDq" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"eDs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"eDu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"eDH" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"eDI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"eDU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_midship_hallway) +"eEh" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/squads/req) +"eEl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "eEo" = ( /obj/structure/filingcabinet, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"eEr" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"eEv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"eEq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "eEw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"eEE" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"eEG" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer1" +"eEy" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"eES" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "crate_room"; - name = "\improper Storage Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"eEz" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"eEW" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/shipboard/brig/cic_hallway) -"eEZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +"eEB" = ( +/obj/structure/machinery/photocopier{ + density = 0; + layer = 2.9; + pixel_x = -3; + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" +/obj/structure/sign/safety/cryo{ + pixel_x = -19; + pixel_y = 5 }, -/turf/open/floor/almayer/test_floor4, +/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/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/green/northwest, /area/almayer/living/offices) -"eFb" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"eEE" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eFr" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/squads/req) -"eFR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_a_s) +"eEG" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"eEP" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"eEY" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"eFg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) +"eFx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"eFy" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"eFz" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"eFB" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"eFI" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eFS" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) "eFT" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -12897,373 +12966,390 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"eFW" = ( +"eFV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"eFZ" = ( /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eGd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"eGn" = ( +/area/almayer/command/corporateliaison) +"eGo" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"eGB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eGE" = ( -/obj/item/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"eGp" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"eGV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "southcheckpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/plate, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"eGB" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer, /area/almayer/living/briefing) -"eGX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, +"eGS" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) +/area/almayer/engineering/upper_engineering) "eGZ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eHA" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"eHP" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; +"eHm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41a{ pixel_y = 6 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"eHZ" = ( -/obj/structure/bed/sofa/south/grey/right, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"eIo" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"eIq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"eIS" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_2"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 +/area/almayer/maint/upper/u_m_s) +"eHp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"eIT" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"eHI" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"eJc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eJf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"eHJ" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/basketball) +"eHM" = ( +/turf/open/floor/almayer/emerald/west, /area/almayer/hallways/lower/port_midship_hallway) -"eJn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"eJu" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southeast, -/area/space) -"eJH" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/lifeboat) -"eJX" = ( +"eHN" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"eKi" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_a_s) +"eHP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eKk" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"eIi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/engineering/lower) -"eKq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/area/almayer/hallways/lower/port_midship_hallway) +"eIr" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"eKu" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"eIt" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/disposal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"eID" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/machinery/computer/crew/alt{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"eIG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"eKG" = ( +/area/almayer/living/offices) +"eIK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"eIS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eJG" = ( /obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"eJJ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eJM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; - icon_state = "pipe-c" + name = "\improper Evacuation Airlock SL-1"; + req_access = null }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"eJU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"eJX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"eKh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"eKz" = ( +/obj/structure/closet/emcloset/legacy, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"eKF" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "eKH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"eKZ" = ( -/obj/structure/platform{ +"eKN" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"eLb" = ( -/obj/effect/landmark/late_join/working_joe, -/obj/effect/landmark/start/working_joe, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"eLe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"eLt" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"eKX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"eLB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D3"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"eKZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"eLK" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"eLn" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"eLx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"eLB" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red/north, +/area/almayer/living/cryo_cells) +"eLF" = ( +/obj/item/ammo_casing/bullet, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"eMg" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/navigation) -"eMk" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/area/almayer/maint/hull/lower/l_f_p) +"eLH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/redcorner/east, /area/almayer/squads/alpha) -"eMt" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"eMb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"eMq" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"eMt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"eMu" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"eMx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"eMA" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"eMG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"eMD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Cryogenics Bay" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/p_bow) -"eMO" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/engineering/upper_engineering/port) +"eME" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"eMK" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"eMR" = ( -/obj/structure/toilet{ - dir = 8 +/area/almayer/maint/hull/upper/u_m_p) +"eML" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"eMS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"eMO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"eNg" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"eNh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ - dir = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"eNf" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) "eNi" = ( /turf/closed/wall/almayer, /area/almayer/engineering/ce_room) +"eNm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) "eND" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"eNS" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"eNE" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"eNX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 10 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"eNU" = ( -/obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"eOf" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console"; + pixel_y = -11 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) "eOj" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/structure/closet/secure_closet/personal/cabinet{ + pixel_x = 1; + pixel_y = 17; + req_access = null }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"eOy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"eOF" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"eOI" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"ePb" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_p) -"ePl" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 +/area/almayer/living/numbertwobunks) +"eOt" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ePy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"eOO" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"ePE" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ePH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"ePK" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"ePh" = ( +/obj/structure/machinery/power/apc/almayer/south, /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -13271,189 +13357,201 @@ icon_state = "E"; pixel_x = 1 }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment/cell) +"ePw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ePD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"ePP" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ePP" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"ePV" = ( -/obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"ePS" = ( +/obj/structure/machinery/pipedispenser, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"eQo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/engineering/upper_engineering) +"ePZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"eQx" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) -"eQF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"eQN" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"eQX" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"eQZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/hallways/lower/starboard_aft_hallway) +"eQb" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"eQk" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"eQr" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"eRk" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"eQu" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"eRn" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eRz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"eRD" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 +/area/almayer/living/grunt_rnr) +"eQI" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/living/briefing) +"eQL" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 }, -/obj/item/tool/minihoe{ - pixel_y = -4 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"eQP" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"eQW" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"eQX" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"eQZ" = ( +/obj/item/storage/fancy/crayons{ + layer = 3.1; + pixel_x = -6; + pixel_y = 5 }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/green/southwest, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) -"eRH" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +"eRg" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"eRj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"eRM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/area/almayer/engineering/lower/workshop) +"eRs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"eRU" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"eSd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"eRv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"eSk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"eRO" = ( +/obj/structure/machinery/sentry_holder/almayer/mini/aicore, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"eRY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"eSq" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ +/obj/structure/barricade/handrail/medical{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"eSC" = ( -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"eSK" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/obj/item/folder/black_random, -/obj/structure/sign/safety/high_rad{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"eSn" = ( +/obj/structure/machinery/brig_cell/cell_4{ pixel_x = 32; - pixel_y = -8 + pixel_y = -32 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"eSs" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"eSX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/machinery/door_control{ + id = "Delta_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"eSu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"eSB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"eSM" = ( +/obj/structure/machinery/computer/cameras/almayer{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"eSO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) "eTd" = ( /obj/structure/surface/table/almayer, /obj/item/trash/boonie{ @@ -13464,252 +13562,262 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eTt" = ( -/obj/effect/decal/cleanable/dirt, +"eTi" = ( /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"eTw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/shipboard/brig/lobby) +"eTn" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices) +"eTp" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"eTA" = ( +/obj/structure/cargo_container/wy/mid, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eTA" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 42 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eTC" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"eTD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"eTM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/hallways/hangar) +"eTE" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"eTT" = ( +/area/almayer/maint/hull/lower/l_m_p) +"eTP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"eUg" = ( +/obj/structure/closet/secure_closet/staff_officer/gear, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"eUw" = ( -/obj/structure/morgue, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/living/bridgebunks) +"eUi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"eUy" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/area/almayer/maint/hull/lower/l_a_p) +"eUr" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) -"eUE" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Memorial Room" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"eUs" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"eUM" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eUO" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"eUS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/command/computerlab) +"eUQ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) "eUT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"eUZ" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"eVa" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 10 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"eVr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"eVA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"eVE" = ( -/obj/structure/surface/rack, +/area/almayer/maint/hull/lower/l_f_p) +"eUW" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"eUZ" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"eVG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"eVH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"eVt" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 }, -/obj/item/reagent_container/dropper, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"eVu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" }, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_y = 12 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"eVC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/mono, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) -"eVJ" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"eVO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"eVP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Crew Chief's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "eVQ" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"eWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"eVZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"eWb" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eWd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"eWt" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"eWe" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"eWk" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"eWw" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"eWD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/squads/charlie_delta_shared) +"eWv" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"eWJ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"eWB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"eWH" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"eWX" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/area/almayer/maint/hull/upper/u_f_s) +"eWK" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"eWX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, /turf/open/floor/almayer/plate, -/area/almayer/living/chapel) +/area/almayer/command/lifeboat) "eXc" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "eXd" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"eXj" = ( -/obj/structure/machinery/vending/cola, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/area/almayer/maint/hull/lower/l_m_p) +"eXk" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/structure/phone_base{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) "eXq" = ( /turf/closed/wall/almayer, /area/almayer/living/offices/flight) @@ -13717,70 +13825,66 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"eXs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"eXX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"eXz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/weapon_room) -"eXZ" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"eXC" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/starboard_hallway) +"eXF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eYb" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"eXJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"eXQ" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eYi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"eYv" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = -24; - req_one_access_txt = "200;91;92" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"eYA" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"eYG" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"eYl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/hydroponics) +"eYA" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"eYJ" = ( -/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"eYD" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/lower/s_bow) "eYM" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -13793,9 +13897,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"eYO" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -13804,418 +13905,389 @@ /turf/open/floor/almayer, /area/almayer/living/synthcloset) "eZe" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"eZl" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"eZo" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/bed/chair/bolted, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"eZp" = ( -/obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"eZr" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/engineering/upper_engineering) +"eZw" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"eZE" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"eZF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) "eZG" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop) +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) "eZH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eZV" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) -"faa" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"eZP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"faf" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/sign/poster{ + pixel_y = -32 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"eZR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 5 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 19 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 16 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"eZZ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"faf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"fam" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/toy/plush/barricade, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"fag" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"faq" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) "fat" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"faD" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"faH" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"faE" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "law and engineering manuals bookcase"; - opacity = 0 +/area/almayer/hallways/lower/starboard_fore_hallway) +"faJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-5"; + req_access = null }, -/obj/item/book/manual/marine_law, -/obj/item/book/manual/detective, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/engineering_hacking, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"faN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer, +/area/almayer/engineering/lower) "faO" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"faT" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, +"faP" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"faV" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/area/almayer/hallways/upper/midship_hallway) +"faQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"fbe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"fbn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"faW" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_stern) -"fbg" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 + icon_state = "W" }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"fby" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"fbz" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"fbZ" = ( +"fbp" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"fcb" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"fbJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"fbP" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"fbU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"fbV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"fcc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "fcf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fcx" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"fcz" = ( +"fci" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"fcn" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_one) +"fco" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"fcp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"fcC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/shipboard/brig/starboard_hallway) +"fcu" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"fcN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/basketball) +"fcQ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"fcY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"fcD" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, +/area/almayer/engineering/lower/engine_core) +"fda" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"fcL" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/area/almayer/hallways/hangar) +"fdr" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"fcT" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/shipboard/brig/cells) -"fdb" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"fdv" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"fdq" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fdz" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"fds" = ( -/obj/structure/ladder{ - height = 1; - id = "engineeringladder" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/workshop) -"fdu" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 + invisibility = 101 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) "fdN" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"fdT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"fdY" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/closet/secure_closet/warrant_officer, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"fdV" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_two) +"fer" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = 25 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"fet" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"feh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/wy, -/obj/structure/machinery/computer/cameras/containment{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fev" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - layer = 2.981; - name = "Research Cameras"; - pixel_y = 16 - }, -/obj/item/clothing/accessory/stethoscope, -/obj/structure/closet/secure_closet/professor_dummy{ - pixel_x = -32 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"fei" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 + icon_state = "pipe-c" }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"feG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"fet" = ( -/obj/structure/closet/secure_closet/fridge/organic/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "feI" = ( /obj/item/trash/cigbutt, /turf/open/floor/almayer, /area/almayer/living/offices) -"feN" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +"feT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"feU" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"ffa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"feZ" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/engineering/port_atmos) +"ffi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) +"ffq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/basketball) +"ffr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"ffs" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"ffU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"ffn" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"ffx" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/engine_core) -"ffS" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"fgc" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"fgg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ffX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"fga" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"fgk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"fgn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 + icon_state = "SE-out" }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; + icon_state = "NE-out"; pixel_y = 1 }, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"fgs" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"fgz" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/upper/u_a_s) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14237,6 +14309,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"fgN" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) "fgR" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; @@ -14255,350 +14331,529 @@ /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) "fgS" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"fhb" = ( -/obj/structure/bed/chair/comfy{ - dir = 5 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/briefing) +"fgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"fgU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fgV" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"fgY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"fhe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) "fhf" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"fhl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"fhm" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_y_offset = 0 +"fhh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/accessory/red, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 3; + pixel_y = 10 }, +/obj/item/clothing/suit/storage/webbing, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"fhp" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/numbertwobunks) +"fhq" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/port) +"fhs" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_2"; + name = "\improper Bathroom" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"fhw" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"fhz" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +/area/almayer/living/port_emb) +"fhv" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/execution) +"fhy" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) "fhF" = ( -/obj/structure/largecrate/random/case/double, +/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ - dir = 4 + dir = 8; + invisibility = 101 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"fhN" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"fhJ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"fhM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/maint/hull/upper/u_a_p) +"fhX" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"fhP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/port_midship_hallway) -"fhR" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/p_bow) "fib" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) "fif" = ( -/obj/item/tool/screwdriver{ - layer = 2.9; - pixel_x = -21; - pixel_y = -14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"fij" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"fiK" = ( -/obj/item/trash/c_tube{ - pixel_x = 16; - pixel_y = 7 +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"fim" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"fiP" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"fiZ" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"fjc" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"fjv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"fjA" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"fjC" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/area/almayer/maint/hull/lower/l_f_s) +"fin" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"fjM" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) -"fjZ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"fka" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fio" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"fiA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"fkh" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fjg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"fjj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"fjw" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or3privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"fkF" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"fjy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"fkP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"fkS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"fkX" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 8 - }, -/area/almayer/medical/containment/cell/cl) -"flg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"flh" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/area/almayer/powered) +"fjR" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"fls" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/area/almayer/hallways/lower/starboard_aft_hallway) +"fke" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"flz" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"flJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/medical/morgue) +"fkj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"fkl" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"flM" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"flT" = ( -/obj/structure/machinery/brig_cell/cell_4{ - pixel_x = 32; - pixel_y = -32 +/area/almayer/squads/charlie) +"fkx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"flX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution_storage) -"fma" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"fkC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" + name = "Bathroom" }, /turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) +"fkD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fkE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) -"fme" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 8; - pixel_y = -12 +"fkN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Remote dropship navigation computer"; - pixel_y = 12; - shuttleId = "dropship_alamo" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fkT" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"fmo" = ( -/obj/structure/mirror{ - pixel_x = 28 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fkX" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/almayer/medical/containment/cell/cl) +"fli" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"flk" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"flr" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"flx" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"flB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"fmH" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"flQ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"flY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/red, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"fmj" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"fmn" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/north2) -"fmM" = ( +"fmq" = ( +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"fmr" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fmt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fmu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/kitchen/knife, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"fmF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"fmO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) -"fmQ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"fmH" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"fmM" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fmV" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"fmY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"fne" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop) +"fng" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"fmT" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"fmU" = ( -/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fnB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"fnL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"fnQ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 1 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"fmY" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"fnv" = ( -/obj/structure/machinery/light{ +/area/almayer/engineering/upper_engineering/port) +"fnX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"foa" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 2"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/structure/machinery/light/containment{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"fob" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"fnG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"foa" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"fou" = ( -/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"foG" = ( -/obj/structure/surface/table/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"foc" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fod" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/area/almayer/maint/hull/lower/l_m_p) +"fof" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"foh" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"foo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"foy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"foD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible"; + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/rosary{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"foF" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "foN" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) +"foO" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "foP" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -14617,132 +14872,130 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"foU" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_one) -"fpa" = ( -/obj/structure/machinery/light/small{ +"fpc" = ( +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"fpc" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 +/area/almayer/hallways/hangar) +"fpf" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"fpm" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/upper/midship_hallway) -"fpq" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"fpk" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) "fpr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"fpC" = ( +/obj/structure/window/reinforced{ dir = 4; - pixel_y = 13 + health = 80 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"fpG" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"fpx" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/obj/structure/machinery/space_heater, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 6 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"fpA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"fpK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"fpB" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"fpQ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"fpY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"fpF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"fqa" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fqg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"fqk" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"fqt" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"fpG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"fqE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"fpH" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"fqf" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"fqH" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; pixel_y = 16 }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"fqk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"fqq" = ( -/obj/structure/machinery/sleep_console{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"fqs" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fqJ" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"fqK" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "fqO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -14750,281 +15003,251 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"fra" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"frb" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"frd" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"frf" = ( -/obj/structure/machinery/cryopod, /obj/structure/machinery/light{ - dir = 8; - invisibility = 101 + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"frj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"frn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"frB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"frG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"frg" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plastic{ + amount = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"frN" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"frR" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"frT" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"fse" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"frj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"fsi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fsr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "SW-out" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"frw" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"fsP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"frC" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/auxiliary_officer_office) +"frD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door_control/railings{ +/obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"fsW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"frH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"fsY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"frQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"frT" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/midship_hallway) +"frX" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"fsb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ftc" = ( -/obj/structure/largecrate/random/case/double, +/area/almayer/command/cichallway) +"fsk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"fsL" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/s_bow) +"fsQ" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"fsR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/pilotbunks) "ftd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) "ftf" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_bow) -"ftg" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"fto" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ftL" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"ftP" = ( -/obj/structure/platform, -/obj/structure/platform{ +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"ftj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"ftQ" = ( -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/weapon_room) +"ftk" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"ftU" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -4; - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ftq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"ftI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"ftY" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"fus" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"fux" = ( -/obj/structure/machinery/brig_cell/cell_2{ - pixel_x = 32; - pixel_y = -32 + dir = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"fuP" = ( -/obj/item/device/assembly/mousetrap/armed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) +"ftN" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"fuU" = ( -/obj/structure/machinery/cm_vending/gear/leader, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fvn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 - }, -/obj/structure/machinery/light, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +/area/almayer/command/lifeboat) +"ftV" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"fue" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fvA" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"fvE" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_f_p) +"fuk" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"fvI" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/living/gym) +"fuE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"fvL" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fuM" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/living/briefing) +"fuN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"fvi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"fvy" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fvF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"fvG" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "fvN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15035,136 +15258,178 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"fvV" = ( +"fvS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fvT" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Memorial Room" + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"fwm" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"fwv" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"fwx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"fwE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; dir = 1; - name = "\improper Officer's Quarters" + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"fvW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/area/almayer/shipboard/starboard_missiles) +"fwI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"fwO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"fvZ" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fwY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"fxj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc02"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = 23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"fwa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fwj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"fwE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"fwY" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/storage/donut_box, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"fxk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fxl" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stern) +"fxr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie_delta_shared) -"fxa" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"fxm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fxs" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"fxC" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"fxw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; + icon_state = "HotlineAlt"; + layer = 2.9; + name = "Richard the tiger" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"fxE" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/s_bow) +"fxH" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) "fxN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "fxV" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/command/cic) -"fyi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fyn" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_umbilical) +"fyc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"fyd" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fyr" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"fyC" = ( -/obj/structure/machinery/vending/cola/research{ - pixel_x = 4 +/area/almayer/hallways/hangar) +"fyh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"fyk" = ( +/obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"fyz" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/midship_hallway) +"fyB" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/medical_science) "fyD" = ( /obj/structure/machinery/light, @@ -15174,139 +15439,64 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"fyF" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"fyS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fyT" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"fyU" = ( -/obj/structure/bed/chair/comfy/bravo{ +"fyE" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fyZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"fyH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"fyQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"fzi" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; pixel_y = 4 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/item/clothing/glasses/monocle, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = -2 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/item/weapon/pole/fancy_cane{ + pixel_x = 5 }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fzs" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"fzw" = ( +/obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"fzb" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/margherita{ - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"fzh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17 +/area/almayer/living/grunt_rnr) +"fzL" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fzo" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"fzy" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/bed/chair{ +/area/almayer/shipboard/brig/perma) +"fzO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fzz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = 32 - }, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"fzF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"fzH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"fzM" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) -"fzO" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - dir = 1; - name = "Corporate Liaison's Bedroom" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) +/area/almayer/maint/hull/upper/u_m_s) "fzP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -15323,450 +15513,550 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"fzU" = ( -/obj/structure/prop/cash_register/broken, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"fzV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"fzZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 +"fzQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fAh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/pen, +/obj/item/book/manual/marine_law{ + pixel_x = 15; + pixel_y = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/book/manual/security_space_law{ + pixel_x = 16; + pixel_y = 9 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"fAp" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"fAr" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"fAm" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"fAv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"fAq" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"fAE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"fAI" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/lifeboat) +"fAR" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fAZ" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"fBh" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_x = -27 }, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ - dir = 1 + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"fAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/u_a_s) -"fAH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fBn" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"fAK" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"fBx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fBs" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"fBw" = ( +/area/almayer/hallways/hangar) +"fBE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"fBI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"fBR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"fBK" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"fBN" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fCa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "fCg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SEA Office Shutters"; + name = "SEA Office Shutters"; + pixel_y = 12 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/structure/phone_base/rotary{ + name = "Senior Enlisted Advisor Office Telephone"; + phone_category = "Offices"; + phone_id = "Senior Enlisted Advisor's Office"; + pixel_x = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"fCE" = ( -/obj/structure/machinery/light{ - dir = 4 +"fCt" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"fCu" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fCL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"fCZ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"fDg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"fDr" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"fCv" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/folder/red, -/obj/structure/phone_base/rotary{ - name = "Brig CMP's Office Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig CMP's Office"; - pixel_x = 15 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"fDA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"fDL" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"fDR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"fDY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"fEa" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"fEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"fCC" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"fCJ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"fEt" = ( -/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fEv" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ +/area/almayer/shipboard/brig/execution_storage) +"fCK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"fCL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"fCW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"fEB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"fDf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"fDu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"fDK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"fDO" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"fDR" = ( +/obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"fED" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"fEs" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "delivery outlet"; + pixel_x = -1; + pixel_y = 25; + range = 0 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fEI" = ( -/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"fEx" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fFn" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) -"fEJ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -11; - pixel_y = -1 +"fFp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"fEL" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 1"; - pixel_x = -24 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"fFf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"fFu" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"fFv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"fFj" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fFk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 3; - pixel_y = 4 +/area/almayer/engineering/lower) +"fFx" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fFq" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/living/briefing) -"fFC" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"fFM" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/area/almayer/shipboard/panic) +"fFE" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"fFF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"fFI" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"fFK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/area/almayer/hallways/lower/starboard_midship_hallway) +"fFN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"fFP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"fFW" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fFX" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "fGg" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "fGp" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/obj/structure/machinery/photocopier, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"fGv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) "fGw" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer3" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"fGF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = -2 +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SynthBay"; + dir = 8 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = -2 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"fGC" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"fGM" = ( -/turf/open/floor/almayer/empty/vehicle_bay, -/area/almayer/hallways/lower/vehiclehangar) -"fGR" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"fGF" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/maint/upper/u_m_p) +"fGU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"fGX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"fHg" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Liasion's Bathroom" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"fHD" = ( +/area/almayer/command/corporateliaison) +"fGX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fHj" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"fHo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fHG" = ( -/obj/structure/bed/chair{ +/area/almayer/engineering/lower/workshop/hangar) +"fHt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"fHv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/prop/holidays/string_lights{ dir = 8; - pixel_y = 3 + pixel_x = 29 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"fHI" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"fHU" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fHB" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"fHN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fHT" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"fIa" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"fId" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"fId" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"fIs" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"fIt" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) "fIM" = ( /obj/effect/landmark/start/marine/tl/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"fIY" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"fJh" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) +"fJa" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"fJb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) "fJn" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/squads/alpha) -"fJp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fJo" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = -24; + req_one_access_txt = "91;92" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "fJy" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -15775,9 +16065,30 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"fJN" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) +"fJC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"fJE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) "fJO" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -15788,142 +16099,192 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"fKn" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 +"fJS" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 }, -/obj/structure/window/reinforced/ultra{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"fKa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/briefing) -"fKF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"fKH" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/squads/alpha) -"fKK" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +"fKd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/starboard) -"fKP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_one_access_txt = "7;23;27" +"fKp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"fLc" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"fKu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"fKy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/port) -"fLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/squads/alpha) -"fLx" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"fKD" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"fKJ" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"fLl" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/maint/hull/lower/p_bow) +"fLq" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fLt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 }, -/obj/effect/landmark/map_item, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fLw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fLD" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc{ - pixel_x = 2; - pixel_y = 3 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"fLN" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"fLZ" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/hallways/lower/vehiclehangar) +"fLL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"fLM" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"fLR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fMa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" }, -/obj/structure/machinery/door_control/cl/quarter/windows{ - pixel_x = 11; - pixel_y = 37 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"fLS" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/obj/structure/machinery/door_control{ + id = "civ_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = -7; + req_access_txt = "31" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"fLY" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) "fMb" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"fMn" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"fMo" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/starboard_umbilical) -"fMp" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"fMB" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"fMK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"fMW" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"fMX" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"fMn" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"fMz" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"fME" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fMH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"fMU" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fMZ" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"fNa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15939,2166 +16300,2137 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fNk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"fNq" = ( -/obj/structure/sign/safety/water{ +"fNj" = ( +/obj/structure/sign/safety/galley{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"fND" = ( -/obj/item/tool/screwdriver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"fNI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"fNV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"fOa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastleft{ - req_access = list(19) - }, -/obj/structure/machinery/door/window/westright, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/computerlab) -"fOj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + pixel_y = -32 }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"fNt" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/gym) +"fNy" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"fNE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/medical_science) -"fOk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/redcorner/west, /area/almayer/living/briefing) -"fOm" = ( +"fNU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/silvercorner/east, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) -"fOv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fNW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"fNY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"fOf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/computer/working_joe{ dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"fOx" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"fOh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"fOk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"fOE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"fOQ" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"fPa" = ( +/area/almayer/living/briefing) +"fOm" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_aft_hallway) -"fPc" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"fPw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"fPL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"fPO" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - pixel_y = 24 - }, -/obj/item/device/cotablet, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"fPR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fOs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"fOR" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"fPZ" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fQd" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"fQm" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"fQA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/autoinjectors{ - pixel_x = -6; - pixel_y = -1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fPb" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/device/mass_spectrometer{ - pixel_x = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 8; - pixel_y = 10 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"fPc" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, /turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"fQI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/medical/lower_medical_medbay) +"fPd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"fQV" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fQW" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"fQZ" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"fRd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + dir = 2; + name = "\improper Execution Equipment" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution_storage) +"fPf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fPk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"fPl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"fRi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"fRk" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"fRC" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"fRK" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fPD" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"fRL" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/briefing) -"fRP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"fRQ" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"fPK" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"fPO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"fRS" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"fQa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"fRX" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/navigation) -"fSc" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fSF" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"fSJ" = ( /turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"fSM" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/engineering/lower/engine_core) +"fQe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 8; + layer = 2.99; + name = "brig cameras console"; + pixel_x = 17; + pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"fSN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fQg" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cic) +"fQj" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"fSV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"fQl" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"fQz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"fQA" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"fQB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"fQN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"fSX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"fQQ" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"fQT" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"fTc" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"fTe" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"fQY" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/blue, -/area/almayer/command/cic) -"fTj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"fTm" = ( -/obj/structure/bed/chair/office/dark, +/area/almayer/squads/delta) +"fQZ" = ( /turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"fTG" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 +/area/almayer/shipboard/brig/mp_bunks) +"fRk" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"fTI" = ( -/obj/structure/morgue/crematorium, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"fTV" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Reception" +/obj/structure/mirror{ + pixel_x = 29 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"fUb" = ( -/obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/captain_mess) +"fRn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "W" }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"fUl" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) -"fUA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"fUM" = ( -/obj/structure/window/framed/almayer/aicore/hull, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"fUN" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"fUP" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"fUQ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"fUW" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/hallways/lower/starboard_fore_hallway) +"fRv" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"fVc" = ( -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17 +/obj/item/prop/magazine/boots/n160{ + layer = 2.8; + pixel_x = 4; + pixel_y = -8 }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"fVh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"fVi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"fRC" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"fVo" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"fRU" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"fSf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"fSz" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/commandbunks) +"fSD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"fSI" = ( +/obj/structure/surface/table/almayer, /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_x = -29 + pixel_y = 28 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"fVp" = ( +/obj/effect/landmark/map_item, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"fSP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"fVx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/medical/lower_medical_medbay) +"fSV" = ( +/obj/structure/largecrate/supply/weapons/pistols, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"fVN" = ( -/obj/structure/closet, -/obj/structure/sign/safety/med_cryo{ +/area/almayer/maint/upper/u_m_s) +"fSY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ pixel_x = -17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"fTc" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/item/cell/high, /turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"fVS" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/area/almayer/engineering/upper_engineering) +"fTe" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"fTl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen{ + pixel_y = -17 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"fWi" = ( -/obj/structure/toilet{ - dir = 1 +/obj/item/paper_bin/uscm{ + pixel_y = -16 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"fTm" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"fTp" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/machinery/door/window/tinted{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"fWl" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"fWu" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fWx" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_a_s) +"fTA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"fWH" = ( -/obj/structure/machinery/flasher{ - id = "Perma 1"; - pixel_y = 24 +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"fTD" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"fTP" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"fTQ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"fWI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fWN" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fWS" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"fWU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/squads/alpha_bravo_shared) +"fTS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_three) -"fWX" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/lower) -"fXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"fXj" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"fXq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Computer Lab" +"fUd" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"fUe" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"fUf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"fXI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"fUj" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"fUq" = ( +/obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fXN" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"fXR" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fXS" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"fYe" = ( +/area/almayer/maint/hull/upper/u_a_s) +"fUw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"fYf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"fUA" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"fYg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; +/area/almayer/living/briefing) +"fUI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ dir = 1; - name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access_txt = "19;27;22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"fYp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine/uscm/command/capt{ - name = "Commanding Officer's Fax Machine"; - pixel_x = -4; - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"fYr" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/green/southwest, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fUS" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) -"fYA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"fYD" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 +"fUV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"fYE" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"fUZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"fVe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"fYR" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/platform{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fYZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"fZj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"fVj" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"fZq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"fZz" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 5"; - locked = 1; - name = "\improper Containment Cell 5" +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"fVl" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"fVn" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/upper/midship_hallway) +"fVo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fVp" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fVy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"fZA" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"fVE" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/obj/item/clothing/glasses/welding{ - pixel_y = 6 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"fZG" = ( -/obj/structure/toilet{ - dir = 8 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/obj/structure/machinery/light/small, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/chief_mp_office) -"fZK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" +/obj/item/device/multitool{ + pixel_x = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" +/obj/item/tool/screwdriver{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"fVW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"fWe" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"fWs" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"fZT" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/maint/upper/u_a_p) +"fXa" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"fXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"fXq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"fXD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"fXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"fZZ" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"fXN" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"gak" = ( +/area/almayer/squads/delta) +"fXP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"fXQ" = ( /obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"gal" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 8 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"fXS" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"fXT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/reagent_scanner{ - pixel_x = -16; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"gam" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"gaJ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/cryo) -"gaY" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Secondary Processors"; + dir = 8 }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"fYf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"gbc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) -"gbe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +"fYh" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"fYw" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"gby" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"fYx" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gbD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_x = -2; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"gbG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"gbK" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"fYD" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"fYM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"fYT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"fYZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"fZf" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"fZi" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"fZk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"gbL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"gbM" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = -25 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"fZp" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/item/storage/firstaid/rad, /obj/structure/surface/rack, -/obj/item/storage/box/autoinjectors{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/storage/box/beakers{ - pixel_x = -6; - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fZq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/storage/box/sprays{ - pixel_y = -3 +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"fZy" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"gbR" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"fZL" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fZZ" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"gad" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/tool/plantspray/weeds, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"gaA" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"gaF" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gbZ" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gck" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"gcq" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gcJ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"gaG" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"gcR" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"gcV" = ( -/obj/structure/machinery/landinglight/ds1{ +/area/almayer/maint/hull/upper/u_m_s) +"gaJ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cryo) +"gaK" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gcZ" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"gaT" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/cryo_cells) +"gaV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"gdv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - name = "\improper Main Kitchen"; - req_one_access_txt = "30;19" +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"gdH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"gbd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gdI" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/briefing) -"gdJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"gbi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"gdP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/item/prop/magazine/boots/n055{ + pixel_x = -9; + pixel_y = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/offices/flight) +"gbr" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 20 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"gdQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/area/almayer/command/corporateliaison) +"gbw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/obj/structure/bed/chair/comfy, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"gdR" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"gdY" = ( -/obj/structure/machinery/computer/cameras/almayer/containment{ - dir = 8; - pixel_x = -4; - pixel_y = 6 +/area/almayer/living/pilotbunks) +"gbG" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher{ - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"gbH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = -5; - pixel_y = -4; - req_one_access_txt = "19;28" +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"gbJ" = ( +/obj/structure/closet/secure_closet/securecom, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"gbR" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"gdZ" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"gbT" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"gbU" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"gel" = ( -/turf/closed/wall/almayer/research/containment/wall/west, -/area/almayer/medical/containment/cell/cl) -"gen" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"geo" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"geq" = ( +/obj/effect/spawner/random/balaclavas, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"geE" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/area/almayer/maint/hull/lower/l_f_p) +"gbV" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Staircase"; dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/chief_mp_office) -"geK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"gfh" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters/clippers, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 1 + pixel_y = -8 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"gcd" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"gcf" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"gcy" = ( /turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"gfo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/hallways/lower/starboard_midship_hallway) +"gcC" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"gcI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"gfw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Briefing Room" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"gcW" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"gdt" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"gfC" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"gdI" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/command/lifeboat) +"gdO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"gdQ" = ( +/obj/structure/stairs{ dir = 8; - pixel_y = 3 + icon_state = "ramptop" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gfF" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"gea" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"gfH" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"gfL" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"gel" = ( +/turf/closed/wall/almayer/research/containment/wall/west, +/area/almayer/medical/containment/cell/cl) +"gem" = ( +/obj/structure/machinery/light{ + alpha = 0; + dir = 8; + pixel_x = -32 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"gev" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"geD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"gfU" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"geN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"gfV" = ( +/area/almayer/lifeboat_pumps/south1) +"geP" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/starboard_hallway) +"geS" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"geU" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"gfb" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"gff" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"gfh" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/command/lifeboat) +"gfo" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"gfI" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/lower/repair_bay) +"gfV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) "gfW" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lockerroom) -"ggd" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +"gfX" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) "ggh" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"ggp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ggr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"ggF" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 +"ggn" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"ggO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"ggN" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/ce_room) "ggQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"ggS" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/medical) -"ggW" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ghc" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) -"ghd" = ( +"ghr" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ghw" = ( -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"ghA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"ghK" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ghF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"gie" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"ghO" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ghX" = ( +/obj/structure/machinery/shower{ + dir = 8 }, +/obj/item/toy/inflatable_duck, +/obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"gik" = ( +/area/almayer/shipboard/brig/cells) +"ghY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"gis" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"gjk" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"gjs" = ( -/obj/structure/machinery/flasher{ - id = "Perma 2"; +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"gij" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ pixel_y = 24 }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"gju" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"gjD" = ( +/obj/item/device/cotablet, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"giv" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"gjQ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"gki" = ( +/area/almayer/engineering/upper_engineering/port) +"gix" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"gko" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"gkp" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"giF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D4"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"giP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"giY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"gky" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"gkC" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"gkH" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"gld" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"gle" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"gjz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"gjI" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"glf" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"glh" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/cic) -"glu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"glG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"gjL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"glO" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"glT" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gmx" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"gmy" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"gmE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/pizzabox/mushroom{ - pixel_y = 11 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/obj/item/poster, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"gmI" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"gjU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"gjV" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_bow) +"gjX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"gmX" = ( +/area/almayer/maint/hull/lower/l_m_s) +"gki" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"gkr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out" }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"gnf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"gnu" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"gny" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"gnV" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"gnW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"gku" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"gnZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"gkz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room"; + name = "\improper Storage Shutters" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"goe" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gom" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"goO" = ( +/area/almayer/squads/req) +"gkA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"goW" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/structure/mirror{ - pixel_x = 29 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"gkB" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"glk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"glq" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"glC" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"glN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) -"gpk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"glX" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"gmi" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/obj/structure/sign/safety/ref_chem_storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"gpl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"gmr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gmt" = ( +/obj/structure/machinery/vending/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"gmv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"gpy" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/interrogation) -"gpP" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell/cl) -"gpY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/lifeboat_pumps/north1) -"gpZ" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" +/area/almayer/maint/hull/upper/s_bow) +"gmw" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"gqb" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"gmz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"gmR" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"gqc" = ( -/obj/structure/closet/secure_closet/quartermaster_uscm, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"gqj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; +/area/almayer/squads/charlie_delta_shared) +"gmW" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"gno" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "7;19" + name = "\improper Engineering Bunks" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"gqm" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 4; - id = "almayerlink_med_req" - }, +/area/almayer/engineering/upper_engineering/port) +"gnu" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"gqp" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"gqy" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Main Corridor"; - dir = 8; - pixel_y = 2 +/area/almayer/squads/charlie) +"gnw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"gqD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"gqE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"gny" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"gnE" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"gqG" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"gnF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"gnL" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"gqS" = ( -/obj/effect/projector{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"gnM" = ( +/obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; vector_x = -96; vector_y = 65 }, -/obj/structure/platform{ - dir = 8 - }, /obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) -"grd" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"gru" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/squads/req) -"grA" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"grE" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"grK" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 14 +"gnP" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"grU" = ( -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"grV" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gsc" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"gse" = ( +/area/almayer/maint/hull/lower/l_m_p) +"gnS" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"gnU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"gsf" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 + icon_state = "S" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/item/reagent_container/food/snacks/cheesewedge{ + pixel_x = -10; + pixel_y = 7 }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, +/mob/living/simple_animal/mouse/white/Doc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"goe" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/interrogation) -"gsj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"gsm" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 +"gom" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"gon" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"gsp" = ( +/obj/structure/sign/safety/maint{ + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"goW" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"gss" = ( -/obj/structure/machinery/alarm/almayer{ +/obj/structure/machinery/computer/emails{ dir = 1 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"gsu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"goX" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"gsv" = ( +/area/almayer/shipboard/brig/cryo) +"goZ" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"gpf" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"gph" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"gpj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"gpm" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"gpp" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gsx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = -7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) -"gsB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"gpx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "pipe-c" + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gsJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/blue/northeast, +/area/almayer/command/cichallway) +"gpC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"gpN" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gpT" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"gsQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ +/area/almayer/living/gym) +"gpY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/lifeboat_pumps/north1) +"gqv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"gsS" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"gqz" = ( +/obj/structure/safe/co_office, +/obj/item/weapon/pole/fancy_cane, +/obj/item/tool/lighter/zippo/gold{ + layer = 3.05; + pixel_y = 3 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"gqH" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"gsZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = -21 +/area/almayer/maint/hull/lower/l_f_s) +"gqJ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 3"; + locked = 1; + name = "\improper Containment Cell 3"; + unacidable = 1 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2; - pixel_y = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 3"; + name = "\improper Containment Cell 3" }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"gta" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/closet/secure_closet/freezer/industry, -/obj/item/reagent_container/glass/beaker/silver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"gth" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"gti" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - name = "\improper Brig Lobby" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"gtw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"gtG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/medical/containment/cell) +"gqN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"gqO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"gtU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"gqT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"gqY" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/obj/item/tool/crowbar/red, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"gui" = ( -/obj/structure/largecrate/random/case, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"guj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/squads/charlie) +"grc" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"guk" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"guw" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"grk" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"grq" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"grC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"grS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"guK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains{ - pixel_x = 18; - pixel_y = -5 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"grW" = ( +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"guR" = ( +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"gsb" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"guW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/prop3{ - pixel_x = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"gsm" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/item/clothing/mask/gas{ - pixel_y = 7 +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"gsr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gss" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/clothing/mask/gas{ - pixel_y = 3 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"gsF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"gve" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gsG" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/card{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - layer = 3.2; + name = "ship-grade camera" + }, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/item/storage/fancy/vials/empty{ + pixel_y = 10; + start_vials = 2 + }, +/obj/item/tool/pen{ + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gsU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"gsW" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"gsY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"gsZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -21 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2; pixel_y = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"gta" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - layer = 2.99; - pixel_y = 23 +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"gtc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"gvg" = ( -/obj/structure/machinery/door_control{ - id = "crate_room"; - name = "storage shutters"; - pixel_x = -25; - pixel_y = -1 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"gvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gtd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"gtj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gvt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"gvx" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"gtn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"gvA" = ( +/area/almayer/command/telecomms) +"gtD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/lower/l_m_s) +"gtV" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, /obj/item/clothing/head/headset{ pixel_y = -7 }, -/obj/item/storage/bible, +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/device/camera{ + pixel_x = 7 + }, /turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"gvI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/ares_console{ - pixel_x = 9 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"gwb" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"gwj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"gwk" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"gwp" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +"gud" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"gwy" = ( -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"gue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"gwG" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"guH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow, -/area/almayer/command/airoom) -"gwN" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gwR" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"gwT" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"gxl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"guQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"gxo" = ( -/obj/structure/platform{ - dir = 8 +/area/almayer/medical/operating_room_three) +"guW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/prop3{ + pixel_x = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"gxw" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"gxI" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gxM" = ( -/obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"gxN" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "ARES WorkingJoe Bay Shutters"; - pixel_x = -24; - req_one_access_txt = "91;92" +/obj/item/clothing/mask/gas{ + pixel_y = 7 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gxQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/item/clothing/mask/gas{ + pixel_y = 3 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"gyb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"gvb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"gyc" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"gvd" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/computer/tech_control{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"gvn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"gvv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"gye" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 + icon_state = "W" }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"gyk" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"gvx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"gys" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gyv" = ( -/obj/structure/platform_decoration{ +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"gyH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"gvE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Kitchen Hydroponics"; + req_one_access_txt = "30;19" }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"gvZ" = ( +/obj/item/prop/almayer/box, +/obj/item/prop{ + desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m56c"; + item_state = "m56c"; + name = "broken M57 'Larry's Will' smartgun"; + pixel_x = -7; + pixel_y = 3 }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = 10; - pixel_y = 14 +/obj/item/frame/light_fixture/small{ + pixel_y = 17 }, -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 4 +/obj/structure/machinery/door_control{ + id = "crate_room4"; + name = "storage shutters"; + pixel_y = 26 }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 5 +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/packageWrap, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gyU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"gwb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"gyX" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"gwt" = ( +/obj/structure/machinery/light/small, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"gwI" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"gzj" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - req_access = list(1) +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"gzv" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) +/obj/item/ashtray/glass{ + pixel_x = -6 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_y = 7 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"gwR" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"gxx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"gxy" = ( +/turf/open/floor/almayer/orange, +/area/almayer/command/cic) +"gxJ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"gxX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/cic) +"gyd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"gyj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"gyk" = ( +/obj/structure/sign/prop1{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/security{ + pixel_x = -8 + }, +/obj/structure/filingcabinet/medical{ + pixel_x = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"gyo" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"gyp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"gyv" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"gzv" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) "gzw" = ( /obj/structure/closet/hydrant{ pixel_x = 30 @@ -18106,10 +18438,6 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"gzD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) "gzI" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -18128,488 +18456,517 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"gzO" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 +"gzS" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"gAb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"gzW" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/starboard_hallway) +"gAf" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "gAl" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"gAr" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"gAm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"gAy" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"gAn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"gAo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/computer/squad_changer{ + dir = 8; + layer = 2.99; + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "gAA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"gAB" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"gAE" = ( -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) -"gBl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"gAD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gBn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"gBo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/command/cic) +"gAF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"gBt" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/obj/structure/catwalk{ - health = null +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gAH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"gBw" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gBB" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_f_s) +"gAK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"gAW" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"gBd" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"gBH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 +/area/almayer/engineering/upper_engineering/port) +"gBo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gBM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/area/almayer/living/briefing) +"gBB" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"gBQ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/plating, +/area/almayer/squads/req) "gBU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) "gBZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) +"gCg" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"gCa" = ( -/obj/structure/machinery/computer/ordercomp, -/obj/structure/sign/safety/galley{ - pixel_x = -17 +/area/almayer/squads/delta) +"gCh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"gCr" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"gCq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) "gCw" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gCK" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"gCM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"gCF" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"gDa" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"gDb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"gCR" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"gDj" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"gDq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"gDu" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/frag, -/obj/item/mortar_shell/frag, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"gDw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = 24; + req_one_access_txt = "200;91;92" }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"gDy" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"gDc" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer{ + density = 0; + pixel_y = 16 }, -/obj/effect/projector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"gDd" = ( +/obj/structure/machinery/light/containment{ + dir = 4 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"gDF" = ( -/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gDI" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"gDr" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gDK" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"gEc" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"gEg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"gEq" = ( -/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"gEB" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gEP" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"gDs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gET" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"gFp" = ( +/area/almayer/engineering/lower/workshop/hangar) +"gDw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc04"; + name = "\improper Treatment Center" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"gDD" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gFt" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/area/almayer/maint/hull/upper/u_f_s) +"gDF" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/squads/delta) +"gDG" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"gFx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"gFK" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"gFM" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"gGd" = ( -/obj/structure/machinery/firealarm{ +/area/almayer/maint/hull/lower/l_f_p) +"gDI" = ( +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gGe" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"gGj" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/window/reinforced{ dir = 8; - name = "ship-grade camera" + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"gGs" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/item/stack/cable_coil{ - pixel_x = 7 +/obj/item/stack/sheet/metal{ + layer = 4.1; + pixel_x = -3; + pixel_y = 14 }, -/obj/item/tool/wirecutters{ - pixel_x = -8; - pixel_y = 18 +/obj/item/tool/weldingtool{ + layer = 4.1; + pixel_x = 5; + pixel_y = 12 }, /obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"gGt" = ( -/obj/structure/machinery/light/small{ - dir = 8 + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gGE" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gGL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/bedsheet/red{ + layer = 3.2 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/item/bedsheet/red{ + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gHl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/area/almayer/living/port_emb) +"gDO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"gEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"gEi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; - pixel_y = 8 +/obj/structure/machinery/recharge_station{ + layer = 2.9 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"gHv" = ( -/obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gHw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -8; - pixel_y = 3 +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/silver/southwest, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"gEO" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"gES" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"gEU" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"gFa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"gFh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/starboard_hallway) +"gFy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"gFL" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) -"gHx" = ( +"gFP" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light{ - dir = 1 + unacidable = 1; + unslashable = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"gHP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + layer = 2.5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"gFW" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"gGg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"gGh" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/down/almayer{ + dir = 1; + id = "almayerlink" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"gGs" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"gGv" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"gGN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gHV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ +/area/almayer/command/cic) +"gGX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ dir = 4; - pixel_x = 24 + pixel_y = 5 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"gHX" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"gHi" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"gHt" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"gHu" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"gHY" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"gHw" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"gId" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"gHz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"gHC" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"gHD" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"gHH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gIi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"gIk" = ( -/obj/structure/machinery/light/small, +/area/almayer/engineering/lower/workshop/hangar) +"gHO" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/upper/fore_hallway) +"gHV" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"gIg" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"gIp" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"gIt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"gIw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"gID" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/phone_base{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, +/turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18617,82 +18974,96 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"gIQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"gJc" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) +"gIL" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell/cl) +"gIV" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"gJe" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) "gJr" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gJs" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"gJy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"gJB" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"gJu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"gJx" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_one) +"gJT" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/grown/banana{ - pixel_x = 18; - pixel_y = 5 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"gJE" = ( -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"gKb" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"gJY" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"gKi" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"gKh" = ( -/obj/structure/platform{ +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"gKj" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"gKm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"gKx" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"gKG" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/rotary{ + name = "Commanding Officer's Office"; + phone_category = "Offices"; + phone_id = "Commanding Officer's Office"; + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"gKM" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"gKN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Study" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/area/almayer/living/officer_study) "gLc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -18707,267 +19078,200 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"gLi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"gLl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"gLF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"gLL" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gLM" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/structure/prop/almayer/hangar_stencil, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gLX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/area/almayer/hallways/hangar) +"gLo" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"gLr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/sign/safety/conference_room{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"gME" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"gMe" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"gMs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"gMG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/hydroponics) +"gMD" = ( +/obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"gNj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"gNo" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"gNv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"gMQ" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"gMS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/window/westright{ +/area/almayer/maint/hull/upper/u_m_p) +"gNE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ dir = 4; - req_access_txt = "28" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" + id = "civ_uniforms" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/gym) +"gNI" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"gNb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gOe" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/obj/structure/machinery/light/built, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"gOl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gOy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/securestorage) +"gOB" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"gOM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/storage/fancy/cigar/tarbacks, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = -4; +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gNc" = ( -/obj/item/clothing/shoes/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"gNw" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"gNz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"gNF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"gNG" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gNI" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"gNP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"gOc" = ( -/turf/open/floor/almayer/empty/requisitions, -/area/supply/station) -"gOm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +/area/almayer/maint/hull/upper/u_a_s) +"gOZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gOF" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 + icon_state = "W"; + pixel_x = -1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"gON" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/engineering/port_atmos) -"gPb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"gPf" = ( -/obj/structure/machinery/power/apc/almayer/east, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"gPa" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"gPf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/upper/aft_hallway) -"gPi" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"gPs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gPu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"gPR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"gPW" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"gPA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 6; + req_access_txt = "3" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"gQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -6; + req_access_txt = "3" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -6; + pixel_y = 9; + req_access_txt = "3" }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"gQp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 6; + pixel_y = 9; + req_access_txt = "3" }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"gQu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = 7 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"gQm" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gQo" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gQs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17; - pixel_y = -6 +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"gQw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"gQv" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -18976,34 +19280,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"gQM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/port_umbilical) -"gQU" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, +"gRc" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"gQX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"gQZ" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/engineering/lower) "gRd" = ( /obj/structure/platform, /obj/structure/target{ @@ -19012,219 +19292,140 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gRi" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, +"gRh" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gRq" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/structure/filingcabinet/disk{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/area/almayer/maint/hull/lower/l_f_s) "gRr" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"gRD" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"gRE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gRt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 19 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + layer = 2.99; + name = "brig cameras console"; + pixel_y = 5 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"gRL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ +/area/almayer/shipboard/brig/chief_mp_office) +"gRX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Upper Engineering" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, /turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"gSh" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"gSA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) -"gRM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"gSb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"gSB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/morgue) -"gSm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"gSp" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"gSv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"gSE" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"gSI" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"gSN" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"gTj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"gSO" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"gSR" = ( -/obj/structure/pipes/vents/scrubber/no_boom{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"gTo" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"gSW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"gTc" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"gTA" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"gTB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gTh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/starboard_umbilical) -"gTn" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/area/almayer/squads/bravo) +"gTQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "SW-out"; pixel_x = -1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"gTZ" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"gTy" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"gTz" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"gTJ" = ( -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gTL" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"gTP" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 +/area/almayer/maint/hull/upper/u_a_s) +"gUa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"gUe" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gTS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"gUg" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"gUk" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/maint/hull/lower/p_bow) +"gUx" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gUF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"gUJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"gUo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"gUE" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/window/reinforced/ultra{ dir = 8 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/offices/flight) -"gUH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/briefing) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19241,41 +19442,22 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"gUM" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) "gUX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"gUZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gVp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4; - layer = 2.99; - pixel_y = 4 - }, -/obj/structure/machinery/computer/almayer_control{ - dir = 4; - layer = 2.99; - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"gVy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D2"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) +"gVr" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"gVs" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/aft_hallway) "gVA" = ( /obj/structure/disposalpipe/down/almayer{ dir = 8; @@ -19283,10 +19465,12 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"gVB" = ( -/obj/structure/machinery/autolathe/armylathe/full, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) +"gVD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "gVF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -19294,52 +19478,78 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) "gVK" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/engineering/upper_engineering/port) -"gVL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"gVT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"gVX" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"gVY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"gWb" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"gWc" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) "gWg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"gWl" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 4"; - name = "\improper Courtyard Divider" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"gWq" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"gWr" = ( +/obj/effect/landmark/railgun_computer{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"gWj" = ( -/obj/structure/machinery/prop/almayer/CICmap, /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"gWv" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"gWz" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"gWB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) "gWE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/spec/alpha, @@ -19353,40 +19563,7 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"gWH" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"gWX" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Right"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"gXb" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"gXu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"gXz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"gXE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"gXe" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, @@ -19394,499 +19571,537 @@ pixel_x = 12; pixel_y = 12 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"gXO" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +"gXi" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"gXm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"gXr" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"gYk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"gXz" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"gXQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"gYo" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"gXR" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"gYA" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gXT" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"gYc" = ( +/obj/structure/machinery/light/small{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"gYi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"gYT" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"gZe" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"gYm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"gZm" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"gYq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"gYx" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"gYD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"gZw" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"gZC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 8; + pixel_y = 9 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"gZE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gYE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"gYI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"gZK" = ( +/obj/structure/machinery/power/apc/almayer/hardened/east, /turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"gZN" = ( -/obj/structure/machinery/light/small, +/area/almayer/command/lifeboat) +"gYK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"gZV" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/area/almayer/medical/medical_science) +"gYU" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"gZX" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gYZ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gZi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"gZu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/living/briefing) +"gZw" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"gZC" = ( /obj/structure/stairs{ dir = 1; icon_state = "ramptop" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gZZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"gZD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"hac" = ( -/obj/effect/landmark/railgun_computer{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"hae" = ( -/obj/effect/landmark/start/intel, -/obj/effect/landmark/late_join/intel, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"hak" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"gZI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"gZK" = ( +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"gZV" = ( /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"han" = ( +/area/almayer/shipboard/brig/cryo) +"hac" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hai" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"haw" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/computer/cameras/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"hak" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"hao" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"haw" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "haJ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"haV" = ( -/obj/structure/platform{ +/area/almayer/maint/lower/cryo_cells) +"haL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ dir = 8; - layer = 2.7 + pixel_x = -24 }, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_four) +"hbj" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hbm" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"hbr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"hbs" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/living/briefing) -"hbn" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/lifeboat) -"hbU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hby" = ( +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/upper_engineering) -"hcb" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"hcz" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/effect/decal/cleanable/dirt, +"hbE" = ( +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = 24 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hcF" = ( +/area/almayer/shipboard/brig/perma) +"hcE" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"hcP" = ( +/obj/structure/closet/secure_closet/quartermaster_uscm, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"hcU" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"hda" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"hdk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"hdl" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"hdn" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"hdo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"hcH" = ( -/turf/open/floor/almayer/orange, -/area/almayer/command/cic) -"hcK" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"hcM" = ( -/obj/structure/sign/safety/conference_room{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"hdw" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hcU" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"hdA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/offices) -"hde" = ( +/area/almayer/squads/charlie) +"hdL" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"hdt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"hei" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Briefing Room" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"heq" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"hdH" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/upper/fore_hallway) -"hdN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/lower/vehiclehangar) +"heA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hdZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"hfb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"hel" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"hes" = ( -/obj/structure/machinery/telecomms/server/presets/squads, -/obj/structure/sign/safety/commline_connection{ - pixel_y = -32 +/area/almayer/engineering/upper_engineering) +"hfi" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hfx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"hez" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes{ - pixel_y = 9 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"hfz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"heI" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"heS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"hfl" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer{ - density = 0; - pixel_x = -30 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"hfo" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"hfE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"hfq" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hfM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"hfv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"hfz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"hfR" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/living/officer_study) +"hgc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/mess) -"hga" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"hgj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/lower/vehiclehangar) +"hgs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"hgn" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 2"; - name = "\improper cell shutter" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"hgx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/sign/safety/hazard{ +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"hgy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"hgJ" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"hgM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"hgA" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"hho" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hhA" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"hhB" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"hhQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/obj/structure/disposalpipe/junction, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + icon_state = "SW-out" }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"hgQ" = ( -/obj/structure/bed/chair{ - dir = 4 + pixel_y = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"hgR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"hgT" = ( -/obj/structure/machinery/door_control/cl/quarter/officedoor{ - pixel_x = 25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"hhd" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 4 + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"hhg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hhZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/junction{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"hhi" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/area/almayer/hallways/lower/port_aft_hallway) +"hid" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"him" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"hin" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + name = "\improper Main Kitchen"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"hio" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "31" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"hiq" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) +"hir" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"hhk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"hhm" = ( -/obj/structure/largecrate/random/barrel/red, +/area/almayer/hallways/hangar) +"hiw" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"hhq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"hhA" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"hhF" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"hhH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"hhL" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - name = "\improper Combat Information Center" +"hiA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"hhS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hiF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) "hiM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19894,88 +20109,66 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hiO" = ( -/obj/structure/machinery/light{ - dir = 1 +"hiN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"hiZ" = ( /turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"hja" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ +/area/almayer/command/lifeboat) +"hiP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"hiV" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"hiZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"hjm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"hjp" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"hjz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"hjE" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/shipboard/brig/mp_bunks) +"hjl" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) "hjP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hjZ" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"hkd" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"hkf" = ( /obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"hjT" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/command/cic) +"hjW" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "hkB" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -19983,49 +20176,109 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"hkL" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/starboard_hallway) -"hkN" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"hkO" = ( +"hkD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/structure/phone_base{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - pixel_y = 29 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hkL" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"hkS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 23; - pixel_y = 32 +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"hlg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"hkP" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/closed/wall/almayer/aicore/hull, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"hlA" = ( -/obj/structure/machinery/light{ - dir = 1 +"hlh" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"hll" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"hlE" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"hlT" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/port_midship_hallway) +"hlm" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"hlr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"hlG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"hlK" = ( +/obj/structure/bed/chair{ dir = 8 }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"hlN" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_m_p) +"hlP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) "hlX" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -20037,184 +20290,188 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) "hmd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"hml" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"hmn" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"hmI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"hms" = ( -/obj/structure/sign/safety/three{ - pixel_x = -17 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hmK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 3"; - name = "Cell 3" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"hmP" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"hnh" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 5; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"hmu" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"hmT" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" +/obj/structure/filingcabinet/disk{ + density = 0; + pixel_x = -11; + pixel_y = 16 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"hnj" = ( +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = 7; + pixel_y = -2 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/s_bow) -"hmU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/accessory/red, -/obj/item/clothing/head/bowlerhat{ - pixel_x = 3; - pixel_y = 10 +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 2 }, -/obj/item/clothing/suit/storage/webbing, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"hmY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/computerlab) -"hnd" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"hne" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"hnx" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"hnN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"hnP" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or02"; - name = "Operating Theatre 2" +/obj/item/storage/box/gloves{ + layer = 3.1; + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/masks{ + layer = 3.1; + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"hnr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"hnC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_two) -"hos" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"hoy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/briefing) +"hnD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"hoc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"hoD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"hod" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/interrogation) -"hoF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hoq" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"hoy" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"hpg" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hoI" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"hoN" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/p_stern) +"hpl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"hoY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/starboard_hallway) +"hpw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/ot{ + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"hoZ" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"hpg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/fore_hallway) -"hpp" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hpB" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hpt" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/area/almayer/squads/alpha) +"hpG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/phone_base{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"hpu" = ( +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"hpI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "north_central_checkpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hpB" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"hpJ" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -20228,21 +20485,33 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"hpX" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "tcomms_apc"; - name = "\improper Telecommunications Power Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) +"hpW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "hpY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"hqb" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"hqf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "hqh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -20256,41 +20525,89 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"hqq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"hqw" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"hqS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"hqx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"hrx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"hrA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hrC" = ( -/obj/structure/machinery/power/apc/almayer/north, +/area/almayer/maint/hull/lower/l_m_s) +"hqC" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"hrG" = ( -/obj/structure/window/reinforced{ +/area/almayer/maint/hull/lower/l_m_p) +"hqJ" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"hro" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"hru" = ( +/obj/item/toy/deck{ + pixel_y = 12 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hrI" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - health = 80 + name = "ship-grade camera" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"hrT" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/stern_point_defense) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"hrM" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"hrO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"hrP" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"hrW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "hsg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -20301,265 +20618,284 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hsl" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +"hsk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"hsm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/cryo_cells) +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"hsn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hso" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) "hsr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) "hsy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"hsD" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"hsR" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"hsL" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc03"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = -23 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"hsV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"htc" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/area/almayer/medical/lower_medical_medbay) +"hsZ" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"htf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"htr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"htf" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"htu" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"htA" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"htF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"htC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) "htI" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"htQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"htX" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 +"htK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"htN" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -7; + pixel_y = 17 }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/obj/structure/sign/safety/cryo{ + pixel_x = 12; + pixel_y = 28 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"hua" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"huA" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"htZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"huD" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"huR" = ( -/obj/structure/machinery/computer/demo_sim{ - dir = 4; - pixel_x = -17; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"huk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_x = 8; + pixel_y = 12 }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"huv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hvh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"huF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"huI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hva" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"hvb" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"hvc" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"hvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) "hvw" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating, /area/almayer/powered/agent) -"hvD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"hvG" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) "hvH" = ( /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hvM" = ( -/obj/structure/morgue, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"hvN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Chief Engineer's Bunk"; - no_panel = 1; - req_access = list(); - req_one_access_txt = "1;6" +"hvL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D2"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"hvR" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/area/almayer/command/lifeboat) +"hvT" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hvS" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hvU" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter/zippo, -/obj/item/toy/dice/d20, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/paper{ + pixel_x = -4; + pixel_y = 5 }, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 +/obj/item/tool/pen, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"hvZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"hwf" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"hwj" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"hwk" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hwb" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_y = -32 +/area/almayer/maint/hull/lower/l_a_p) +"hwo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = -32 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hwt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "hwv" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ + dir = 2 }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"hwB" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"hww" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "hwH" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"hwM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"hwR" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"hwU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"hxd" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/area/almayer/maint/hull/lower/l_m_s) +"hwN" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) "hxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"hxi" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/starboard) +"hxk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) "hxm" = ( /obj/item/paper_bin/uscm{ pixel_y = 4 @@ -20567,23 +20903,45 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"hxo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 +"hxw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"hxu" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/offices/flight) +"hxD" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"hxE" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) "hxG" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -20593,437 +20951,282 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"hxT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_missiles) -"hys" = ( -/obj/structure/machinery/light{ - dir = 1 +"hxO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"hyy" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"hyf" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"hyO" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 +/area/almayer/hallways/lower/port_umbilical) +"hyh" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/obj/item/stack/sheet/metal{ - layer = 4.1; - pixel_x = -3; - pixel_y = 14 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/tool/weldingtool{ - layer = 4.1; - pixel_x = 5; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hyu" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"hyv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/bedsheet/red{ - layer = 3.2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hyM" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) "hyQ" = ( /turf/closed/wall/almayer, /area/almayer/living/synthcloset) -"hyW" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"hyX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/tool/screwdriver, -/obj/item/bananapeel{ - desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; - icon = 'icons/obj/items/weapons/guns/attachments.dmi'; - icon_state = "iffbarrel"; - name = "Broken B8 Smart-Scope"; - pixel_x = -3; - pixel_y = 7 +"hyT" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"hzb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "hzc" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/notunnel) -"hzd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +"hze" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) "hzg" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"hzB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hzF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"hzK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"hzO" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"hzP" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"hzS" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control/cl/office/evac{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/office/divider{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"hzU" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"hzk" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hzm" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"hzY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/almayer/maint/hull/lower/l_f_p) +"hzA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"hzH" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"hzO" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hAb" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, +/area/almayer/squads/bravo) +"hzT" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"hAk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"hAp" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"hAw" = ( +/area/almayer/squads/bravo) +"hAt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 +/turf/open/floor/almayer/blue, +/area/almayer/living/basketball) +"hAv" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"hAM" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"hAO" = ( +/area/almayer/command/cic) +"hAD" = ( /obj/structure/machinery/light{ dir = 1 }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"hAH" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"hAN" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"hBv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"hBj" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hBB" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 +/area/almayer/squads/alpha_bravo_shared) +"hBA" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Returns"; + pixel_x = 25; + pixel_y = 28 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hBB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "hBF" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"hBN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hBP" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = -3 - }, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"hBZ" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"hCd" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hCf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"hCi" = ( +"hBQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"hBV" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"hCu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/almayer/maint/hull/upper/u_a_p) +"hCa" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1; - pixel_y = -29 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"hCg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"hCv" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"hCD" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"hCC" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"hCE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"hCI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"hCQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"hCR" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"hCT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"hDb" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_f_p) +"hCI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_2"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"hCL" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/lifeboat) +"hCP" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) "hDd" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"hDj" = ( -/obj/structure/machinery/botany/editor{ +/obj/structure/filingcabinet/filingcabinet{ density = 0; - pixel_x = 5; + layer = 2.9; + pixel_x = 7; pixel_y = 16 }, -/obj/item/clothing/glasses/science{ - pixel_x = 5; - pixel_y = 24 +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"hDm" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"hDn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"hDq" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/chemistry) -"hDt" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 4 +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"hDj" = ( +/obj/structure/machinery/door_control{ + id = "or2privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 }, -/obj/item/trash/USCMtray{ - pixel_y = 6 +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"hDr" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/obj/item/trash/USCMtray{ - pixel_y = 8 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/obj/item/trash/USCMtray{ - pixel_y = 10 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"hDt" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/holohoop{ + density = 0; + pixel_y = 29 }, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "hDw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -21031,287 +21234,365 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hDE" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Left"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) +"hDB" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) "hDH" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 9; - pixel_y = 15 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"hDI" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"hDO" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hEa" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"hDP" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"hDS" = ( +/area/almayer/maint/hull/upper/p_stern) +"hEg" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hEk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/securestorage) +"hEw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hEf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"hEg" = ( +/area/almayer/maint/hull/lower/l_f_s) +"hEx" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"hEz" = ( /obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 + pixel_y = 28 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"hEk" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/living/briefing) +"hEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/bed/chair{ - dir = 16 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"hEz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"hEI" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hEK" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"hEQ" = ( /obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"hEA" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"hEC" = ( -/obj/structure/sign/safety/fire_haz{ +/obj/item/storage/firstaid/toxin{ pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/reagent_dispensers/ethanoltank{ - anchored = 1 + pixel_y = -2 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"hEP" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/obj/item/book/manual/engineering_guide, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hEU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) "hEV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hEW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"hEY" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"hFn" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"hFh" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -34 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"hFp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"hFt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"hFv" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/living/briefing) -"hFJ" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"hFZ" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"hGc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"hGd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"hGe" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"hGg" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hGm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"hFx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"hFB" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"hFG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"hGo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hGt" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"hFL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"hFR" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hFV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + name = "ship-grade camera" }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_three) +"hGd" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"hHa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"hGe" = ( +/obj/structure/machinery/ares/cpu, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"hGx" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"hGB" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"hGG" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) +"hGU" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"hHf" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) -"hHi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"hHg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hHk" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "hHl" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/pouch/general/large, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"hHt" = ( -/obj/structure/bed/chair{ - dir = 4 +"hHm" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 }, -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"hHD" = ( +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"hHn" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_y = -32 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"hHq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"hHy" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/bedsheetbin{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/plate, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) -"hHL" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +"hHC" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"hHG" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"hHP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"hId" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/area/almayer/maint/hull/upper/u_m_s) +"hHN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/command/cic) +"hHT" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"hIa" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "hIg" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/upper/fore_hallway) +"hIy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"hIh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"hIN" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/hydroponics) -"hIM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hIP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/almayer/shipboard/brig/general_equipment) +"hIS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Cafeteria" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"hJa" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"hIX" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) "hJk" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -21322,254 +21603,175 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hJo" = ( -/obj/structure/machinery/light{ +"hJl" = ( +/obj/structure/bed/chair/comfy/ares{ dir = 1 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"hJr" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hJw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"hJA" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"hJD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Core Chamber" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"hKk" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"hKn" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"hKo" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/sign/safety/water{ +/obj/structure/sign/safety/ammunition{ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"hJW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hJY" = ( -/obj/item/tank/phoron, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"hKd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hKM" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/squads/charlie_delta_shared) +"hKy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room2"; + name = "\improper Storage Shutters" }, -/obj/structure/sign/safety/waterhazard{ - pixel_y = 32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"hKN" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"hKN" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"hKS" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hKT" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"hKX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hKR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"hKU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"hLd" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) -"hKV" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_three) -"hLc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hLg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "hLi" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"hLx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"hLN" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"hLP" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cichallway) -"hLV" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"hLX" = ( -/obj/effect/landmark/start/warrant, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/maint/hull/lower/p_bow) +"hLU" = ( +/obj/item/stack/sheet/mineral/plastic{ + amount = 15 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"hLY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"hMf" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"hMg" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +/area/almayer/maint/upper/mess) "hMi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hMo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"hMw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 4 +"hMm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"hMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"hMA" = ( -/obj/structure/pipes/vents/scrubber{ +/area/almayer/command/cic) +"hMp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"hMq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"hMB" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) -"hMJ" = ( -/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"hMr" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"hMK" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"hMP" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 +/area/almayer/squads/charlie_delta_shared) +"hMw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) -"hMQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"hMx" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"hMy" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"hMS" = ( -/obj/effect/landmark/start/professor, -/obj/effect/landmark/late_join/cmo, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"hMR" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"hNi" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "hNv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/port_missiles) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -21578,17 +21780,60 @@ /turf/open/floor/plating, /area/almayer/squads/charlie) "hNA" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"hNB" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"hNE" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"hNH" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"hNL" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hNG" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "hNM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -21598,300 +21843,259 @@ /obj/item/tool/shovel/etool/folded, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hNQ" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, +"hNO" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"hNV" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"hOf" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"hOi" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"hOp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/lower/s_bow) +"hOd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"hOq" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer/red/northwest, +/area/almayer/maint/upper/u_a_p) +"hOs" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"hOv" = ( -/obj/structure/closet{ - name = "boxing attire" +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"hOw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"hOI" = ( +/obj/structure/machinery/cm_vending/gear/executive_officer{ + density = 0; + pixel_y = 30 }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"hOA" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"hOB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"hOC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"hOK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hOO" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/living/numbertwobunks) +"hOW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hOY" = ( -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"hPa" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/area/almayer/squads/charlie) +"hPd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_y = 13 + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_y = 13 + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/machinery/door_control{ + id = "medicalemergency"; + name = "Medbay Lockdown"; + pixel_y = -23; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"hPx" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"hQh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"hQn" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_x = 12; - pixel_y = 13 + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"hQs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hPk" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"hQt" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"hPl" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"hPs" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"hPy" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"hQC" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hQD" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"hPL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"hPM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"hPP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Lounge" +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hQM" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"hPR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lockerroom) -"hPV" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"hQf" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hQp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"hQt" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) -"hQw" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hQz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"hQO" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) -"hQB" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 +/area/almayer/engineering/upper_engineering/port) +"hQQ" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie_delta_shared) +"hRc" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"hRk" = ( +/obj/structure/machinery/cm_vending/clothing/marine/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/gym) +"hRm" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"hRp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hQN" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"hRA" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"hQX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hRl" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"hRI" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"hRJ" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, +/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"hRv" = ( -/obj/structure/machinery/light/small{ +/area/almayer/maint/hull/upper/u_f_s) +"hRK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"hRL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"hRL" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"hRQ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hRR" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, +/area/almayer/squads/alpha) +"hRP" = ( +/obj/structure/machinery/light/containment, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"hRU" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hSk" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"hSm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "19" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"hSa" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/effect/landmark/map_item, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "19" +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"hSo" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hSg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/hallways/upper/midship_hallway) -"hSs" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) +"hSk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"hSp" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) "hSw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -21900,215 +22104,283 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"hSA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"hSx" = ( +/obj/structure/disposalpipe/junction{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"hSB" = ( -/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hSy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"hSU" = ( +/area/almayer/maint/hull/upper/u_a_s) +"hSE" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"hSH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"hSN" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + name = "\improper Brig Prisoner Yard" + }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/bridge{ - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"hSZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"hTa" = ( +/area/almayer/shipboard/brig/processing) +"hSR" = ( +/obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"hTn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"hTd" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/structure/sign/safety/life_support{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hTB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"hTC" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"hTx" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"hUh" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/lifeboat) +"hUr" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"hUm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"hUn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hUq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/laser{ + pixel_y = 24 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hUE" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"hUF" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"hUu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"hUI" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"hUW" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 2; icon_state = "pipe-c" }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"hUx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"hVc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"hUz" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hVk" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"hVr" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"hUE" = ( +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hUG" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"hVy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/squads/delta) +"hUH" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"hUI" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"hUJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hVK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"hUV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"hVM" = ( -/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/toy/crayon/blue{ - pixel_x = -9; - pixel_y = -5 +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"hUW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"hUX" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"hVN" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/living/briefing) +"hUY" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"hVy" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"hVR" = ( +/area/almayer/command/combat_correspondent) +"hVA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"hVY" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -15; - pixel_y = 25 +/area/almayer/living/bridgebunks) +"hVE" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"hVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"hWh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"hWj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"hVP" = ( +/obj/structure/platform{ dir = 8; - pixel_y = 3 + layer = 2.7 }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) +"hVV" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/cic) +"hWb" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"hWi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) "hWq" = ( /obj/structure/platform{ layer = 3.1 @@ -22147,52 +22419,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"hWx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"hWE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"hWu" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"hWv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"hWQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"hWL" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) -"hWR" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"hXa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) +/area/almayer/maint/hull/upper/u_a_p) "hXd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_box/magazine/misc/mre{ @@ -22213,13 +22463,24 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hXj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"hXi" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) +/obj/item/device/helmet_visor{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"hXj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "hXm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -22231,363 +22492,292 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hXA" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"hXB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"hXP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"hXX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"hXu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"hYa" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"hYg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"hYq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/item/tool/stamp/approved{ - pixel_x = -3; - pixel_y = -11 +/area/almayer/shipboard/brig/cells) +"hXA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"hYx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"hYs" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/starboard_umbilical) "hYG" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"hYI" = ( +"hYX" = ( /obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 + pixel_y = 6 }, /turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"hYO" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/upper/midship_hallway) -"hYQ" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge4" +/area/almayer/engineering/port_atmos) +"hZp" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"hZa" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/hallways/upper/midship_hallway) -"hZb" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"hZK" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"hZv" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"hZC" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"iad" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"hZE" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hZM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"iap" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"hZR" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"hZZ" = ( +/obj/structure/largecrate/machine/bodyscanner, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) +"iam" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"iar" = ( +/obj/structure/closet/crate, +/obj/item/ammo_box/magazine/l42a, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "iat" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"iaz" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"iaC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"iaJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"iaP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"iax" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) -"iaS" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"iaU" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"iaz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/lower/starboard_midship_hallway) -"ibm" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"ibp" = ( -/obj/structure/largecrate/random/barrel/white, +"ibe" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"ibF" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ibN" = ( +/area/almayer/maint/hull/lower/l_a_s) +"ibm" = ( /obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 5"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"ibP" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/area/almayer/shipboard/brig/cells) +"ibv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 32 +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"ibz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"ibQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"ibA" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -18 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"ibX" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"icm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 +/area/almayer/living/offices) +"ibU" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"ibX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ibY" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"icc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ici" = ( /obj/structure/machinery/light/small{ dir = 4 }, +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ict" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/maint/hull/upper/s_bow) +"icj" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"ick" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"icx" = ( -/obj/structure/prop/almayer/missile_tube, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"icG" = ( +/area/almayer/living/cafeteria_officer) +"ict" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"icI" = ( -/obj/structure/machinery/light/small{ +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/cryo_cells) +"icu" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/pilotbunks) +"icN" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"icS" = ( +/obj/structure/machinery/light{ dir = 1 }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"icL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"icY" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"idk" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"idl" = ( -/turf/open/floor/almayer/bluefull, /area/almayer/living/pilotbunks) -"ids" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_three) -"idy" = ( -/obj/item/prop/almayer/box, -/obj/item/prop{ - desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m56c"; - item_state = "m56c"; - name = "broken M57 'Larry's Will' smartgun"; - pixel_x = -7; - pixel_y = 3 +"ide" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 +/obj/structure/disposalpipe/up/almayer{ + dir = 2; + id = "ares_vault_in"; + name = "aicore" }, -/obj/structure/machinery/door_control{ - id = "crate_room4"; - name = "storage shutters"; - pixel_y = 26 +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"idq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/packageWrap, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/structure/surface/rack{ + density = 0; + pixel_x = -16 }, -/turf/open/floor/almayer/test_floor5, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) -"idN" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"idQ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"idT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 +"idA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"idH" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) "idV" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"ieb" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"iei" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"iem" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"iew" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ieA" = ( -/turf/closed/wall/almayer/aicore/reinforced, -/area/almayer/command/airoom) -"ieE" = ( -/obj/structure/sink{ - pixel_y = 24 - }, +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/lower) +"idY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"ieB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ieV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -22595,6 +22785,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"ieY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) "ifb" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ density = 0; @@ -22602,363 +22795,429 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"ifd" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"ifk" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 17; +"ifp" = ( +/obj/structure/bed/sofa/south/white/right{ pixel_y = 16 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) -"ifv" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"ifw" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"ifx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/maint/upper/u_m_p) "ify" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"ifA" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ifH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"ifE" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) "ifQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"ifS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"ifW" = ( /obj/structure/sign/safety/storage{ - pixel_x = -17 + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"igb" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17; + pixel_y = -7 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"igd" = ( -/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"igc" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"igk" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 +/area/almayer/maint/hull/lower/l_f_s) +"igs" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"igx" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/arcturianstopsign{ + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"igB" = ( +/area/almayer/living/briefing) +"igy" = ( /obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ +/obj/item/storage/photo_album{ + pixel_x = -4; pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"igR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"igT" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"igV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/parachute{ - pixel_y = 8 - }, -/obj/item/parachute, -/obj/item/parachute{ - pixel_y = -6 +/obj/item/folder/black{ + pixel_x = 7; + pixel_y = -3 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 +/obj/item/device/camera_film{ + pixel_x = -5 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/hallways/lower/repair_bay) -"iho" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"igB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/auxiliary_officer_office) +"igG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/marine, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/tool/portadialysis, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"igY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ihp" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"ihs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 6 }, -/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"ihx" = ( -/obj/structure/machinery/brig_cell/cell_6{ - pixel_x = 32; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"iht" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ihD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ihT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"iif" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, +/area/almayer/command/airoom) +"ihu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"iig" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"iih" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"iiI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"ihz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iiJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 +/area/almayer/maint/hull/upper/u_a_p) +"ihE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"ihH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"ihJ" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, /obj/structure/sign/safety/fire_haz{ - pixel_x = 15; + pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"iiK" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/maint/hull/lower/p_bow) +"ihK" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"ihQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"iia" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"iie" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"iiL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"iil" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"iim" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"iiu" = ( +/obj/structure/machinery/cryopod/right{ dir = 4 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/lower/repair_bay) -"iiM" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"iiw" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"iiU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"iix" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/binoculars, /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 4; name = "ship-grade camera" }, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"iiB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"iiD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"iiH" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"ijh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" +/area/almayer/maint/hull/upper/u_a_s) +"iiI" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"ijK" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"iiJ" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"ikl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"ikp" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"iks" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_y = 29 +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = 25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"iiR" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/phone_base/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ikz" = ( +/area/almayer/hallways/lower/repair_bay) +"iiY" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17; - pixel_y = 8 +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = -6 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"ijw" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ijC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_umbilical) +"ijD" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ijJ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ikA" = ( +/area/almayer/hallways/lower/port_aft_hallway) +"ijL" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"ijM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"ijS" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ikc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ike" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Armourer's Workshop"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"ikh" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"iko" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"ikp" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 +/obj/item/trash/USCMtray{ + layer = 3.2; + pixel_x = 4; + pixel_y = 17 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"ikX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) +/obj/item/reagent_container/food/snacks/grown/orange{ + layer = 3.3; + pixel_x = 1; + pixel_y = 13 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"ikt" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"ikE" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"ikJ" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) "ilc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"iln" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/machinery/alarm/almayer{ + dir = 1; + pixel_y = -29 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "ilx" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "ily" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"ilF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) "ilJ" = ( /obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ @@ -22966,61 +23225,140 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ilL" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/cic) -"ilT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ilN" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ilQ" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"imc" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/living/gym) +"imh" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"imj" = ( +/obj/structure/bed/chair/comfy{ + dir = 5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"imn" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"imq" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) "imy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"imz" = ( -/obj/structure/surface/table/almayer, +"imF" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"imP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"imT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/multitool{ + desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; + icon_state = "multitool_big"; + name = "\improper Oversized Security Access Tuner"; + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/stack/sheet/cardboard/medium_stack{ + layer = 3.01; + pixel_x = -7; + pixel_y = -6 + }, /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"imA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" +/area/almayer/squads/alpha_bravo_shared) +"imU" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"imV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"imD" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" +/area/almayer/command/lifeboat) +"imX" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -5; + pixel_y = -24; + req_one_access_txt = "91;92" }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"imE" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown"; + pixel_x = 6; + pixel_y = -24; + req_one_access_txt = "91;92" }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cichallway) -"imN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"inc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"inl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"inm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/lower/l_a_s) +"inr" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = list(); + req_access_txt = "26" + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "ins" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -23034,89 +23372,111 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"inB" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"inF" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/living/briefing) -"inH" = ( -/obj/structure/disposalpipe/segment{ +"inS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"inU" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"inV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"iob" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/sign/safety/distribution_pipes{ +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"iok" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"iom" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ pixel_x = 8; - pixel_y = 32 + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"inP" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 }, -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/living/briefing) -"inS" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"ioo" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_y = 2 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ios" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"ioy" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/upper/fore_hallway) +"ioz" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"inT" = ( -/obj/structure/sign/poster{ +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"iog" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"ioi" = ( -/obj/structure/machinery/door_control{ - id = "dccbunk"; - name = "DCC Privacy Shutters"; - pixel_x = 24 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"ioB" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"ioD" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"iok" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"ioG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"ioq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"iot" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"ioM" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"ioL" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"ioP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) "ioU" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) @@ -23127,6 +23487,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"ipb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "ipe" = ( /obj/item/toy/crayon{ name = "chewed crayon"; @@ -23135,195 +23499,131 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"iph" = ( +"ipg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Chief MP's Office" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ipj" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"ipo" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"ipx" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"ipy" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/shipboard/brig/chief_mp_office) +"ipr" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"ipv" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"ipC" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"ipN" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"ipG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = -1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc02"; - name = "\improper Treatment Center" +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"ipS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ipO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "ipV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) "iqd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iqj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iql" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"iqg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"iqq" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 24 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"iqk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/morgue) "iqs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/shipboard/panic) "iqw" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -18 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"iqz" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/midship_hallway) -"iqA" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_two) -"iqJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"iqO" = ( -/turf/open/floor/almayer/no_build/plate, -/area/almayer/living/pilotbunks) -"iqP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"iqS" = ( -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"iqV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/almayer/hallways/lower/repair_bay) +"iqB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = -2 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"iqZ" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"irb" = ( +/area/almayer/maint/hull/lower/l_f_s) +"iqC" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"ira" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"irk" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/maint/hull/lower/p_bow) +"irG" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"irN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"irl" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"irC" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/closet/secure_closet/freezer/industry, +/obj/item/reagent_container/glass/beaker/silver, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"irF" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"irL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/area/almayer/engineering/lower/workshop/hangar) "irS" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/heavyduty{ @@ -23338,402 +23638,306 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"irV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"irY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"isd" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"ish" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/space) "isl" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"isw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"isn" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"isp" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) -"isq" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) "isF" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"isM" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"isO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"isJ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"isU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/area/almayer/hallways/lower/port_umbilical) +"isM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"isY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"ith" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"itp" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"itv" = ( -/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"itJ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"isQ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/hydroponics) +"isX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"itB" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/squads/delta) +"itF" = ( +/obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) "itR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"itT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"itW" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ + pixel_x = -7; + pixel_y = 10 }, -/turf/open/floor/almayer/redcorner/north, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) -"iui" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 +"iue" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"iun" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"ius" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_x = -2; - pixel_y = 4 + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"iuA" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"iuC" = ( /obj/structure/bed{ - can_buckle = 0 + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, /obj/structure/bed{ - buckling_y = 13; + icon_state = "abed"; layer = 3.5; - pixel_y = 13 + pixel_y = 12 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"iun" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"ius" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"iuD" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/orange, -/area/almayer/maint/hull/lower/l_m_s) -"iuI" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_bow) -"iuM" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"iuT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"iuJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"iva" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iuO" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) -"ivd" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"ivo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"iuP" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"ivi" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "ivs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ivt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"ivy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"ivD" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"ivC" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"ivI" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) +"ivP" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"ivH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ivI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"ivY" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"ivJ" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"ivP" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"iwj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ivY" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"iwd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"iwj" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"iwx" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"iwy" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"iwk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"iwt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"iwD" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/window/westright, +/obj/structure/window/reinforced/tinted/frosted, +/obj/item/tool/soap/deluxe, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"iwF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) "iwG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"iwR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + pixel_y = 7 }, -/obj/structure/machinery/firealarm{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - pixel_x = -24 + name = "ship-grade camera" }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_three) -"iwV" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"iwH" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"iwN" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"iwR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"iwS" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) "iwW" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"ixe" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +"ixg" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ixl" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 2"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/light/containment{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"ixs" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ixu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ixI" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_m_p) +"ixm" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"ixr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"ixE" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "ixQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -23741,138 +23945,125 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"ixY" = ( -/obj/effect/step_trigger/clone_cleaner, +"iyC" = ( +/obj/structure/machinery/light/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"iyk" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"iyG" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"iyM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "MTline"; + name = "Next button"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "2;7" }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"iyU" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"izn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"iyp" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 + pixel_y = -32 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"izs" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"iyt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"iyw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -29 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"izu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"iyC" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_stern) -"iyJ" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/bed/sofa/south/grey/left, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"izA" = ( +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = 25 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/lobby) -"izc" = ( -/obj/structure/reagent_dispensers/ammoniatank{ - anchored = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"izC" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"izd" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"izI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"izh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_aft_hallway) +"izN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/port_fore_hallway) -"izm" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"izp" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"izE" = ( -/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iAf" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) -"izK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"izO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"iAl" = ( +"iAm" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/command/cic) +"iAu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ + name = "\improper Research Hydroponics Workshop" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -23884,429 +24075,381 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iAF" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 8 +"iAH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"iAG" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"iAP" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"iAV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"iAN" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"iBa" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"iAR" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"iAS" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Security Vault"; + req_access = null; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ + plane = -6 }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"iAX" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"iBd" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/maint/hull/upper/p_bow) +"iAZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"iBl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"iBc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"iBn" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "iBw" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"iBy" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"iBI" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"iBP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"iBQ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"iBS" = ( -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_f_s) +"iBK" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"iCa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"iBT" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"iCm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/lower/port_fore_hallway) +"iCt" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"iDk" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iDE" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iCo" = ( +/area/almayer/squads/alpha_bravo_shared) +"iDG" = ( +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17; + pixel_y = -7 + }, +/obj/structure/medical_supply_link, +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"iDP" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, /turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"iCt" = ( +/area/almayer/command/lifeboat) +"iDR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"iDU" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"iEr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"iEt" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/red/southwest, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) -"iCJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"iCZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"iEu" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower) +"iEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"iDa" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/almayer/hallways/upper/aft_hallway) +"iEE" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"iDl" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"iDv" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/uscm_mre, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"iDS" = ( -/obj/structure/pipes/vents/scrubber, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"iEl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"iEr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/lower/p_bow) +"iEF" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"iEw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"iEy" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/safety/fridge{ - pixel_x = 32 - }, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"iEz" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"iEE" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - name = "Autopsy"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"iEP" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/fore_hallway) -"iER" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" - }, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_box/magazine/m4ra, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"iES" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"iEV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"iEZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"iFh" = ( +/area/almayer/maint/hull/upper/u_a_p) +"iEL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"iFk" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"iFw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, /turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"iFz" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"iFE" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/living/briefing) -"iFG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/hallways/lower/starboard_umbilical) +"iFs" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/living/pilotbunks) +"iFF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) "iFH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"iGf" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cic_hallway) -"iGo" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"iGp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"iFP" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iGz" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"iFV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"iGM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"iGa" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"iGb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"iGd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"iHc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"iHi" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -25 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"iHx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"iHE" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"iGk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"iHQ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"iHS" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/living/briefing) -"iHT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"iGq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"iGJ" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"iGL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"iHU" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red{ - pixel_x = -4 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"iGS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"iGT" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_p) +"iGU" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/obj/item/folder/blue{ - pixel_x = 4 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/engineering/port_atmos) +"iHc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"iHe" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Commanding Officer's Mess" }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"iIa" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"iIb" = ( -/obj/structure/bed/chair/comfy/charlie{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"iIm" = ( -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17; - pixel_y = -7 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/medical_supply_link, -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"iIn" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"iIv" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/living/grunt_rnr) -"iIy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"iHm" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"iHq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"iHt" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"iHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"iIG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"iHT" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/living/briefing) +"iIc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/junction{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"iIf" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"iIs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"iIL" = ( -/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"iIx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"iIz" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"iIA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"iIO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"iIG" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"iIM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) "iIP" = ( /obj/structure/toilet{ pixel_y = 16 @@ -24332,117 +24475,61 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"iIW" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"iJi" = ( -/obj/structure/machinery/light{ - dir = 4 +"iIZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"iJm" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"iJo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"iJw" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"iJa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"iJx" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iJJ" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"iJX" = ( -/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"iJo" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie) +"iJJ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"iJT" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) "iKf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iKh" = ( -/obj/item/storage/fancy/crayons{ - layer = 3.1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"iKj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iKk" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"iKm" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"iKv" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"iKn" = ( -/obj/structure/bed/chair/bolted{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"iKo" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"iKu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"iKy" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 11 +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "iKD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -24450,27 +24537,45 @@ /obj/item/device/binoculars, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"iKE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) "iKO" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"iKP" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"iLb" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"iLd" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 1; + id = "Containment Cell 5"; + name = "Cell 5 Control"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 5"; + name = "Containment Lockdown"; + pixel_x = -8; + pixel_y = -3; + req_one_access_txt = "19;28" + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"iLd" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" @@ -24480,478 +24585,552 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iLl" = ( +"iLe" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"iLi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"iLo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/area/almayer/hallways/lower/port_midship_hallway) "iLq" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"iLt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ +"iLv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"iLv" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 32 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"iLx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"iLI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_three) +"iLA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"iLG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"iLL" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"iLW" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"iLY" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) +/area/almayer/hallways/hangar) +"iLQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iMg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "iMm" = ( /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"iMD" = ( -/obj/structure/machinery/door_control{ - id = "crate_room2"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/structure/machinery/recharge_station{ - desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; - name = "Working Joe charging station" +"iMt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 36 +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"iNb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "NW-out"; + pixel_y = 3 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"iNd" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"iNf" = ( +/area/almayer/hallways/lower/port_aft_hallway) +"iMu" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"iNC" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"iMw" = ( +/obj/structure/closet/secure_closet/bar{ + name = "Success Cabinet"; + req_access_txt = "1" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"iMz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"iME" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"iMP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"iMQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"iMZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"iNc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"iNe" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iNo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"iNs" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, /obj/structure/window/reinforced{ - dir = 8; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; health = 80 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"iNE" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"iNx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"iNz" = ( /obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"iNG" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"iNJ" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"iNK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"iNG" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/living/cryo_cells) -"iNO" = ( -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_x = 27 +/area/almayer/maint/lower/cryo_cells) +"iNN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"iOf" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"iOk" = ( /obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, /obj/item/paper_bin/uscm{ - pixel_x = 9; + pixel_x = -7; pixel_y = 6 }, /obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 + pixel_x = -10; + pixel_y = 6 }, /obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 + pixel_x = -10; + pixel_y = -2 }, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"iNW" = ( -/obj/structure/surface/table/reinforced/almayer_B, +"iOq" = ( +/obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"iNY" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"iOb" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"iOi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"iOC" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"iOy" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 +/obj/structure/surface/rack{ + layer = 2.5 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"iOz" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"iOB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "iOD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iOG" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/upper/mess) -"iOK" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"iOT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"iOR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"iOS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"iOW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"iPi" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"iOW" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/engineering/lower) -"iPc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command{ - department = "AI Core"; - pixel_y = 8 - }, -/obj/structure/phone_base/rotary{ - name = "AI Core Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Core"; - pixel_x = 8; - pixel_y = -8 +/area/almayer/maint/hull/upper/u_f_s) +"iPk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"iPe" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"iPl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) +/area/almayer/hallways/upper/fore_hallway) "iPC" = ( -/obj/item/paper/almayer_storage, +/obj/structure/sink{ + pixel_y = 24 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) +/area/almayer/maint/lower/s_bow) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"iPF" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"iPK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = 7 +"iPP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) "iPR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) -"iPT" = ( -/obj/structure/platform{ - dir = 4 +"iPY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iQc" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"iQA" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"iQB" = ( +/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iPX" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"iPZ" = ( -/obj/structure/reagent_dispensers/pacidtank{ - anchored = 1 +/area/almayer/living/bridgebunks) +"iQD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/maint/upper/u_m_p) +"iQG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"iQa" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"iQb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"iQf" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"iQn" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 7; - pixel_y = -30 + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"iQp" = ( -/obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"iQA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "iQH" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"iQS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"iQK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"iRl" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"iQM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"iQU" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"iQV" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"iQZ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"iRe" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"iRi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"iRj" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iRm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Brig Breakroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) "iRv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/kitchen/knife, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "iRy" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, /area/almayer/living/gym) -"iRE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +"iRH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"iRR" = ( -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"iRT" = ( -/obj/structure/machinery/computer/orbital_cannon_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"iRV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"iRW" = ( +/area/almayer/maint/hull/upper/u_a_p) +"iRL" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"iSb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"iSe" = ( -/turf/open/floor/almayer/plate, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) -"iSi" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"iSn" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 +"iSe" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"iSj" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"iSu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/command/cichallway) +"iSr" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) "iSv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"iSB" = ( -/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "iSC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/obj/item/clipboard, -/obj/effect/landmark/map_item, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"iSE" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"iSH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"iSV" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/p_bow) +"iSR" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iSW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "iSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24963,94 +25142,91 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"iTg" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iTn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "iTo" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/starboard_hallway) +"iTp" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"iTr" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"iTy" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) +/area/almayer/living/offices) +"iTC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) "iTD" = ( /obj/effect/landmark/start/auxiliary_officer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"iTH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) "iTI" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"iUf" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"iUr" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"iUv" = ( -/obj/structure/machinery/ares/processor, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"iUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +"iTJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"iTR" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"iUN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"iUr" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"iUA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"iVc" = ( -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"iVf" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_aft_hallway) +"iUT" = ( +/obj/structure/pipes/binary/pump/on{ dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"iUX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"iVB" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) +/area/almayer/squads/bravo) +"iVm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"iVA" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) "iVE" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 32 @@ -25058,24 +25234,24 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "iVF" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"iVK" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"iVQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/platform{ + dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"iVS" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) "iWc" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -25087,45 +25263,21 @@ /turf/open/floor/almayer, /area/almayer/squads/delta) "iWf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) "iWg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"iWh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/aicore_lockdown, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"iWk" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"iWl" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"iWu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "iWx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -25136,27 +25288,91 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iWT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"iXJ" = ( -/obj/structure/sink{ +"iWA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -12; - pixel_y = 2 + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"iWG" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"iXN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/engineering/upper_engineering) +"iWP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"iWQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"iWV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"iWW" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"iXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"iXo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"iXs" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"iXy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iXF" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"iXO" = ( /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/p_stern) "iXT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, @@ -25172,26 +25388,57 @@ /obj/item/book/manual/evaguide, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iXZ" = ( -/obj/structure/machinery/vending/cigarette, +"iXY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"iYn" = ( +/area/almayer/command/telecomms) +"iYd" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"iYl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iYq" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie) +"iYu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"iYP" = ( -/obj/structure/sign/poster/propaganda{ - pixel_x = -27 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"iYD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/turf/open/floor/plating, +/area/almayer/living/gym) +"iYK" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iZf" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"iYR" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) "iZg" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -25201,506 +25448,422 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iZl" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, +"iZq" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"iZo" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ +/area/almayer/maint/hull/lower/l_f_p) +"iZz" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"iZE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ dir = 4 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"iZr" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - SecVault"; +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/command/cic) +"iZU" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"iZV" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"iZs" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"jab" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"jah" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ pixel_y = 32 }, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) -"iZA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"iZN" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, +"jaq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"iZS" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"jaz" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"jaB" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, -/obj/structure/reagent_dispensers/watertank, +/obj/item/stack/sheet/metal, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"iZU" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"jaa" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"jao" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"jaL" = ( -/obj/structure/machinery/autolathe, +/area/almayer/maint/hull/upper/u_a_p) +"jaJ" = ( +/obj/item/trash/candle, +/obj/item/tool/match/paper, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"jaO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"jaW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "firearm_storage_armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"jaY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"jbf" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/upper/midship_hallway) -"jbg" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_s) -"jbh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"jbi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/engineering/upper_engineering/starboard) +"jaN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/sign/safety/water{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"jaZ" = ( +/obj/structure/sign/safety/nonpress_0g{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jbl" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"jbe" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"jbp" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"jbm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_fore_hallway) +"jbo" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) "jbq" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/command/lifeboat) -"jbu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy{ - dir = 4 +"jbF" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"jby" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"jbQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jbC" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"jbT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jbX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"jcf" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"jbI" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = list(); - req_access_txt = "26" +"jco" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"jcv" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"jbJ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jcF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"jbL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"jbM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"jbN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jbX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"jcb" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/hallways/lower/starboard_aft_hallway) +"jcL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/storage/pouch/tools, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"jcf" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"jck" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/chief_mp_office) -"jcs" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/bed/chair/comfy/bravo{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jcX" = ( +/area/almayer/living/briefing) +"jcO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"jdc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"jdo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"jdq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"jdb" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"jde" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Synth Bay" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jdv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jdr" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1" }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_one) +"jdx" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"jdz" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "jdC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"jdF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"jdE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"jdP" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/engineering/upper_engineering/starboard) -"jdT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Primary Processors"; +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"jdR" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"jdW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"jdT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc03"; + name = "\improper Treatment Center" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"jdZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine/uscm/command/capt{ + name = "Commanding Officer's Fax Machine"; + pixel_x = -4; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "jeb" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) -"jed" = ( +"jek" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"jer" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jee" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/u_f_p) +"jes" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + layer = 3.03; + pixel_x = 4; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.02; + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"jef" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"jeE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"jeL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jeT" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"jeh" = ( +/area/almayer/hallways/hangar) +"jeZ" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/securestorage) +"jfe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"jel" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/numbertwobunks) -"jey" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jfp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"jeM" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/weapon_room) -"jeT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jfx" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jfh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"jfn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 +/area/almayer/command/cichallway) +"jfA" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jfC" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"jfJ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"jfL" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"jfU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, /turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"jfW" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/req) -"jfs" = ( -/obj/structure/stairs{ - dir = 1 +"jgb" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/squads/alpha) +"jgi" = ( +/obj/structure/platform{ + dir = 4 }, /obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jft" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"jfB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"jfC" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"jfT" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/pill/happy{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/tool/surgery/bonegel/empty{ - layer = 3.01; - pixel_x = -5; - pixel_y = 19 - }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"jgb" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jgc" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "jgk" = ( /obj/structure/machinery/shower{ dir = 1 @@ -25721,57 +25884,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"jgE" = ( -/obj/structure/machinery/light{ +"jgz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"jgT" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"jgW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"jgZ" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/aluminum{ - amount = 20 - }, -/obj/item/stack/sheet/copper{ - amount = 20; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/silver{ - amount = 5; - pixel_x = 4; - pixel_y = 2 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jgT" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) "jhb" = ( /obj/structure/sign/safety/cryo{ pixel_x = -6; @@ -25779,164 +25917,178 @@ }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"jhk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"jhq" = ( -/obj/structure/bed/chair{ - dir = 4 +"jhf" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"jho" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) "jhx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"jhz" = ( +"jhB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) "jhD" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"jhH" = ( +"jhI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"jhM" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"jhX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"jhO" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"jhZ" = ( +/turf/open/floor/almayer/orange/east, /area/almayer/maint/hull/lower/l_m_s) -"jia" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"jif" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"jil" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"jip" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 1"; - name = "Containment Lockdown"; - pixel_x = -7; - pixel_y = 1; - req_one_access_txt = "19;28" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jiv" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "ares_vault_out"; + name = "aicore" }, -/obj/structure/machinery/door_display/research_cell{ - id = "Containment Cell 1"; - name = "Cell 1 Control"; - pixel_x = 5; - pixel_y = 2 +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"jiz" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/manipulator/nano{ + pixel_y = -9 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"jic" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/obj/item/stock_parts/scanning_module/adv{ + pixel_x = 4; + pixel_y = 15 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"jii" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"jir" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"jiJ" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/engineering/upper_engineering/port) +"jiD" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"jiP" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"jiQ" = ( +/area/almayer/command/cic) +"jiT" = ( +/obj/effect/landmark/start/reporter, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"jiR" = ( +/area/almayer/maint/upper/u_m_p) +"jji" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"jjx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"jjB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 4 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = -7 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"jjy" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Access Hall" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"jjF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"jjL" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"jjG" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jjQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jjY" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jkf" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"jjJ" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"jjK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"jjX" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/briefing) +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"jkp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "jks" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -25947,54 +26099,83 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"jkZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"jkv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"jld" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"jkx" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs1"; - name = "ARES Reception Shutters"; - pixel_y = 24; - req_one_access_txt = "91;92" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jlj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"jkF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"jkQ" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"jkU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"jkY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jlf" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) -"jlm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/squads/alpha) +"jlg" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"jlj" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"jll" = ( +/obj/structure/closet{ + name = "backpack storage" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) -"jlr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/mortarpack, +/obj/item/storage/backpack/marine/mortarpack, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"jln" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"jlD" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/perma) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "jlG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -26008,6 +26189,22 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) +"jlI" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = 25 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"jlM" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "jlN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -26019,15 +26216,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"jlO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"jlP" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = 14 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/area/almayer/maint/upper/u_m_s) "jlQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -26039,35 +26236,36 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"jma" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ +"jlY" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"jmd" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Computer Lab"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"jmf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"jms" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/command/computerlab) +"jmo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/engineering/lower/workshop) +"jmr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) "jmE" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) "jmQ" = ( /obj/effect/landmark/start/maint, /obj/structure/machinery/light{ @@ -26075,46 +26273,68 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"jmV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Pilot's Room" +"jnm" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"jna" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/area/almayer/engineering/lower/engine_core) +"jno" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"jnh" = ( -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"jni" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"jnE" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/cryo_cells) -"jnH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jnr" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jnC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"jnQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/computer/research{ + dir = 4; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"jnS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 5 + }, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"jnL" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/living/captain_mess) +"jnU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) "jnX" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -26125,187 +26345,107 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) -"jol" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"jop" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"jou" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jov" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/morgue{ - dir = 8 +"jod" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, +/obj/item/reagent_container/glass/bucket, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"jow" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" +/area/almayer/maint/upper/u_f_s) +"jom" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"joI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"jow" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"joB" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"joS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"joY" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"jpd" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/hydroponics) +"jpe" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"jpi" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jpc" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/command/cic) -"jpe" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/lifeboat) -"jph" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"jpl" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) +/area/almayer/hallways/lower/port_fore_hallway) "jpt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"jpA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"jpM" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"jqc" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/p_bow) -"jqh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"jqs" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"jqt" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - SynthBay"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jqT" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/command/cic) -"jqX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"jrp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, +"jpB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"jrt" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"jry" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_four) -"jrC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"jpK" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 }, -/obj/effect/landmark/late_join, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/start/senior, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"jrJ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"jpL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jpT" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"jrK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/lower/l_f_s) +"jpW" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) -"jrR" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"jrW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/device/binoculars, -/obj/item/storage/bible, +/area/almayer/maint/hull/upper/u_m_p) +"jpX" = ( +/obj/structure/morgue/crematorium, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jsg" = ( -/obj/structure/disposalpipe/junction{ +/area/almayer/medical/morgue) +"jqk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -26313,194 +26453,125 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) -"jsr" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/maint/upper/u_a_s) -"jsu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/masks{ - pixel_x = 5 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 - }, -/obj/item/reagent_container/glass/minitank{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"jsy" = ( +"jql" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower/engine_core) -"jsC" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"jsQ" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"jsR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 + dir = 5 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"jsT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"jqw" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jsV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"jqG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jqX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"jtg" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower) +"jrq" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"jts" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"jtt" = ( -/obj/structure/prop/invuln/joey, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"jtu" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"jtz" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/lifeboat) -"jtL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, +/area/almayer/hallways/upper/midship_hallway) +"jrz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"jtO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = -6 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"jtT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"jtX" = ( -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"jud" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"jue" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/living/bridgebunks) +"jrZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"jum" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jsc" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"juy" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"jsq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"juA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"jst" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"jsz" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"juD" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"jsK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"jsN" = ( +/obj/structure/machinery/light{ dir = 8 }, +/obj/structure/closet/secure_closet/fridge/organic, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"jsU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"juM" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"juR" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"juT" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"jsX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"jsZ" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"jtb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"jtc" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"jts" = ( /obj/structure/surface/table/almayer, /obj/item/folder/yellow, /obj/structure/machinery/keycard_auth{ @@ -26521,189 +26592,284 @@ }, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) -"juU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"jtw" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jtB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jvk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-1"; - req_access = null - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"jvm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jvt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/hull/lower/l_a_p) +"jtG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jtI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"jtM" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jua" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"juc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"jvv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29" +/obj/structure/machinery/light, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jvx" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jvy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"jvK" = ( -/obj/structure/sign/safety/bulkhead_door{ +/area/almayer/command/cic) +"jum" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jvT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jvY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/telecomms) -"jwd" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"jwo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jut" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 7; + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"juD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"juK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 7; pixel_y = 25 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"jwp" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"juM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jvg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"jvh" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"jvi" = ( +/obj/structure/bed/chair/wheelchair{ dir = 4 }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"jvj" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"jvy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jvP" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; dir = 1; - name = "\improper Combat Information Center" + name = "\improper Brig Prison Yard And Offices" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"jwu" = ( -/obj/structure/machinery/cryopod/right{ - dir = 4 +/area/almayer/shipboard/brig/processing) +"jvS" = ( +/obj/structure/machinery/botany/editor{ + density = 0; + pixel_x = 5; + pixel_y = 16 }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"jvY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/telecomms) +"jwv" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"jwy" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"jwz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) "jwC" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.2; - pixel_x = -7; - pixel_y = 10 +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 3; - pixel_y = 12 +/obj/structure/platform_decoration, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"jwE" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"jwZ" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/area/almayer/hallways/hangar) +"jwF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"jwG" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"jxl" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"jxp" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"jwH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jxq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"jxt" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/fore_hallway) +"jwL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/hydroponics) -"jxv" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jwT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"jwZ" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jxa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"jxc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"jxn" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jxt" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) "jxx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"jxy" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) "jxB" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -26713,193 +26879,205 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"jxC" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/simple/hidden/supply{ +"jxX" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"jxZ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"jyb" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) -"jxE" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"jxG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"jyf" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"jyo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jyh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"jyy" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "3" +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 }, -/obj/item/device/radio/listening_bug/radio_linked/mp{ - pixel_y = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"jys" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/device/radio/listening_bug/radio_linked/mp, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/warden_office) +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jyy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "jyE" = ( /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"jyM" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +"jyH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"jyW" = ( -/obj/structure/closet/toolcloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"jyK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"jyX" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"jyL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"jzd" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"jyZ" = ( -/obj/structure/platform, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jzf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jzh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"jzg" = ( +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"jzr" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"jzr" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"jzw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/panic) +"jzt" = ( +/obj/structure/sign/safety/four{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 4"; + name = "Cell 4" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"jzG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/shipboard/brig/cells) +"jzF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jzJ" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 1; - vent_tag = "Comms" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"jzL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"jzO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"jzV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"jAe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"jAh" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jAq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/cups{ - pixel_x = -6; - pixel_y = 8 +/area/almayer/hallways/lower/repair_bay) +"jAn" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"jAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"jAt" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) -"jAu" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 8 +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"jAL" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/briefing) -"jAF" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"jBo" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"jBz" = ( +/area/almayer/hallways/lower/starboard_umbilical) +"jBa" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"jBA" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/northeast, -/area/almayer/maint/upper/u_a_p) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"jBq" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "jBC" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jBK" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -26914,183 +27092,211 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"jBV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"jBU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"jCc" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"jCC" = ( -/obj/structure/stairs{ +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jBW" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"jCF" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"jCd" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"jCG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jCQ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"jCS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"jCY" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; +/obj/item/reagent_container/dropper, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 12 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"jCk" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/sign/safety/terminal{ + pixel_x = -6; + pixel_y = -26 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 20; + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"jCn" = ( +/obj/structure/toilet{ + dir = 8; + layer = 2.9; pixel_y = 8 }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"jDa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/window{ + layer = 2.95; + pixel_y = -2 }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jDf" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/area/almayer/living/commandbunks) +"jCs" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"jDi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"jDj" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"jDp" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"jCt" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/obj/structure/sign/safety/two{ +/obj/structure/sign/safety/bridge{ pixel_x = 32; pixel_y = -8 }, -/obj/structure/sign/safety/ammunition{ +/obj/structure/sign/safety/east{ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jDr" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"jCz" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"jCB" = ( +/obj/structure/closet/secure_closet/fridge/dry, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"jCT" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"jCW" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jDg" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"jDj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"jDn" = ( +/turf/open/floor/almayer/greencorner/north, /area/almayer/squads/req) -"jDB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"jDA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"jDF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"jDE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"jDW" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/command/lifeboat) -"jEl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/storage/box/masks{ + pixel_x = 5 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"jEp" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"jEt" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"jEz" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/perma) -"jEE" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"jEX" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"jDL" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jEa" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform{ dir = 4 }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jEf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"jEi" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jFc" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"jEv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bathroom" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jFd" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) +/area/almayer/living/commandbunks) +"jFb" = ( +/obj/structure/machinery/door/poddoor/almayer/blended{ + id = "RoomDivider"; + layer = 3.1; + name = "\improper Room Divider" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "jFf" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -27105,147 +27311,88 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"jFv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jFz" = ( -/obj/structure/machinery/door_control{ - id = "firearm_storage_armory"; - name = "Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"jFB" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - anchored = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"jFO" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"jGc" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"jGe" = ( -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"jGh" = ( -/obj/structure/disposalpipe/segment{ +"jFq" = ( +/obj/structure/machinery/line_nexter/med{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"jFu" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"jGi" = ( /obj/structure/machinery/firealarm{ - pixel_y = -29 + pixel_y = 28 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"jGt" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"jGw" = ( -/obj/structure/surface/rack{ - desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." - }, -/obj/structure/machinery/light/small{ - dir = 4; - icon_state = "bulb-burned"; - status = 3 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" +"jGr" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jGw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/item/prop{ - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.78; - name = "circuit board"; - pixel_x = 8; - pixel_y = 10 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"jGA" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/obj/item/prop{ - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.79; - name = "circuit board"; +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"jGD" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"jGG" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = 7 + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"jGB" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_x = -27 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jGK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"jGP" = ( +/turf/open/floor/almayer/orange/north, /area/almayer/living/briefing) -"jGF" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"jHa" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" +"jGQ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"jGT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"jHd" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "jHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27255,45 +27402,59 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"jHi" = ( -/obj/structure/machinery/light{ - dir = 4 +"jHm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/ce_room) +"jHn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) "jHp" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"jHr" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jHO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"jHv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"jHD" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +/area/almayer/command/lifeboat) +"jHE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"jHI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "jHQ" = ( /obj/structure/machinery/crema_switch{ pixel_x = -24; @@ -27301,145 +27462,129 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"jHR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"jHS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"jHZ" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"jHX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jIa" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"jIf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"jId" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jIl" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"jIn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"jIB" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"jIH" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"jIW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/shipboard/brig/perma) +"jIs" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"jIR" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper AI Reception"; + req_access = null; + req_one_access_txt = "91;92" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs1"; + name = "\improper ARES Reception Shutters" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"jJa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"jJf" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"jIW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; pixel_y = 8 }, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"jJF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/effect/landmark/map_item{ - layer = 3.03; - pixel_x = -7; - pixel_y = 4 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"jJj" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jJQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/area/almayer/hallways/hangar) +"jJt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + dir = 2; + name = "\improper Brig Permanent Confinement" }, -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_two) -"jJZ" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"jKb" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"jKf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"jKl" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/closet/secure_closet/brig/prison_uni, -/turf/open/floor/almayer/red/west, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) -"jKy" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light/small{ - dir = 4 +"jJv" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jJw" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"jJD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"jJT" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"jKu" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jKx" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) "jKF" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -27454,56 +27599,99 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"jKM" = ( -/obj/structure/dropship_equipment/medevac_system, +"jKG" = ( +/obj/structure/barricade/plasteel/metal, /turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"jKS" = ( +/area/almayer/living/cryo_cells) +"jKO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"jKQ" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"jKU" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +/area/almayer/living/briefing) +"jKW" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"jLc" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) +"jLo" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"jLz" = ( +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_y = 28; + req_one_access_txt = "28" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jLl" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"jLH" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"jLC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/item/tool/weldpack{ - pixel_x = -2 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"jLG" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"jLN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jLQ" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"jMe" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 25 }, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ - pixel_y = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"jLS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"jMa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/north2) +"jMp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "jMr" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -27520,30 +27708,27 @@ /turf/open/floor/almayer, /area/almayer/living/briefing) "jMu" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"jMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"jME" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command{ + department = "AI Core"; + pixel_y = 8 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 11; - pixel_y = -26 +/obj/structure/phone_base/rotary{ + name = "AI Core Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Core"; + pixel_x = 8; + pixel_y = -8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jMJ" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"jMO" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "jMQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -27563,315 +27748,218 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"jMW" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"jMY" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = -20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) "jNh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"jNs" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jNv" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jNH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"jNl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"jNn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jNA" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; +/area/almayer/command/telecomms) +"jNL" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"jOb" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = 18 + pixel_y = -32 }, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"jOn" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"jND" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jNT" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"jOh" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jOm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"jOn" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/living/port_emb) "jOo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"jOw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"jOI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/largecrate/random/secure{ + pixel_x = -5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jPa" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"jOF" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"jPc" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"jOM" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"jON" = ( -/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"jPd" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) -"jOP" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +"jPr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"jOU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"jPs" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jPL" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"jPP" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"jOY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"jPW" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jPY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"jQc" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"jQi" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"jQm" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"jPd" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"jPj" = ( -/obj/structure/bed/chair/comfy/black{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"jQp" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/chief_mp_office) -"jPn" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"jPt" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"jQw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/lower/port_fore_hallway) -"jPy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jPG" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jQz" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 5"; + pixel_x = -24 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"jPK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"jQD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 12 }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"jQG" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/maint/upper/u_a_p) +"jQI" = ( +/obj/structure/morgue, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jPN" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"jPW" = ( -/obj/structure/machinery/computer/cameras/containment/hidden{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album, -/obj/item/device/camera_film, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"jQc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"jQo" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"jQx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, +/area/almayer/medical/morgue) +"jRk" = ( +/obj/structure/bed/chair, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jQC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; - icon_state = "HotlineAlt"; - layer = 2.9; - name = "Richard the tiger" - }, +/area/almayer/lifeboat_pumps/north1) +"jRl" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"jQT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Upper Engineering" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"jQV" = ( -/obj/structure/machinery/cm_vending/gear/tl{ +/area/almayer/maint/upper/mess) +"jRm" = ( +/obj/structure/filingcabinet{ density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) -"jRa" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jRf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"jRh" = ( -/obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"jRs" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/filingcabinet{ density = 0; - id = "engidorm"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"jRo" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) "jRz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -27885,205 +27973,175 @@ }, /turf/closed/wall/almayer/outer, /area/space) -"jRD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"jRM" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"jRO" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"jRE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jRW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"jRG" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/area/almayer/engineering/laundry) +"jSi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"jSu" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/interrogation) +"jSy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"jSz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"jRO" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"jRP" = ( -/obj/structure/surface/table/almayer, -/obj/item/shard, -/obj/item/tool/extinguisher, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"jRV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"jRZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/upper/fore_hallway) +"jSM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"jSa" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jSO" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jSg" = ( -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"jSl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_m_p) +"jSQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jSS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"jSr" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ +/area/almayer/maint/hull/upper/p_bow) +"jST" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"jSW" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"jSy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + pixel_y = 32 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"jSZ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"jSE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"jSH" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/lower/port_midship_hallway) -"jSV" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jTa" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/upper/u_f_s) +"jTd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) "jTg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D4"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"jTl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"jTh" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jTy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"jTO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/squads/alpha_bravo_shared) +"jTq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal5, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 12 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"jTJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"jUi" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"jUm" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jUw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"jTP" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"jUa" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"jUe" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"jUU" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"jUC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"jUK" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"jUQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) "jVa" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"jVe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"jVh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jVg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"jVh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"jVn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jVs" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "jVt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -28093,141 +28151,189 @@ }, /turf/open/floor/almayer/research/containment/corner3, /area/almayer/medical/containment/cell) -"jVD" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jVY" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/command/lifeboat) -"jWh" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/port) -"jWq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -1 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8 +"jVz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 7 +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"jWr" = ( -/obj/structure/machinery/light{ +/area/almayer/living/starboard_garden) +"jVB" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"jWw" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_umbilical) -"jWD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"jVK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"jVS" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/obj/vehicle/powerloader{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - name = "\improper CMO's Office"; - req_one_access = null; - req_one_access_txt = "1;5" +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/hallways/lower/vehiclehangar) +"jWa" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"jWM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/largecrate, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"jWZ" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"jXc" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/starboard_missiles) -"jXl" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/command/lifeboat) -"jXE" = ( -/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"jWb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jWh" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/port) +"jWl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"jXL" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/command/lifeboat) +"jWr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"jYa" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"jYq" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"jYI" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"jWz" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"jYN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"jWB" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"jWK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"jWT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"jYS" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/living/gym) -"jYT" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/p_bow) -"jZh" = ( +"jXe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"jXj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"jXn" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"jXQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8; - pixel_y = 6 +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown_1"; - name = "\improper Perma Cells Lockdown"; - pixel_x = -8; - pixel_y = -4; - req_access_txt = "3" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jYl" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"jYw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"jYD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/syringe_case{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"jZi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"jZr" = ( +/obj/item/storage/syringe_case, +/obj/item/storage/syringe_case{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"jYK" = ( /obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"jYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"jYU" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"jYW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"jYX" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jZe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jZl" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) "jZu" = ( /obj/structure/machinery/door_control{ id = "CIC_Conference"; @@ -28242,130 +28348,143 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"jZx" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 +"jZA" = ( +/turf/open/floor/almayer/orange, +/area/almayer/living/briefing) +"jZD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jZF" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/stern) -"jZR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"kaf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jZN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 2"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_p) -"kag" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/shipboard/brig/cells) +"jZP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"kae" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) "kan" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"kao" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"kay" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kaC" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 +"kaq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"kaQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kaR" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"kaY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"kaZ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"kbb" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 +"kaV" = ( +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"kaW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"kbn" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_f_p) -"kbp" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"kbz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"kbr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_s) -"kbE" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kbB" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"kbQ" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ dir = 1 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"kbE" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"kbL" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) "kbV" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"kca" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item{ + pixel_x = 5 + }, +/obj/item/facepaint/black{ + pixel_x = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kcb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"kcd" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"kch" = ( +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "kcl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -28373,173 +28492,202 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/bravo) +"kcn" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "kcp" = ( /turf/closed/wall/almayer, /area/almayer/living/auxiliary_officer_office) -"kcr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) "kcB" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) "kcH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) -"kcO" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"kcU" = ( +"kcW" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"kdj" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/living/chapel) +"kda" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"kdb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"kdg" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"kdn" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "kdo" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie, -/turf/open/floor/almayer/plate, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/hangar) +"kdu" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"kdv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"kdC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) -"kdF" = ( -/obj/structure/largecrate/random/case/double, +"kdM" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"kdW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"kdG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/engineering/lower/workshop) +"kea" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"kdH" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_s) +"keh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/item/tool/stamp/approved{ + pixel_x = -3; + pixel_y = -11 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"kep" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"keG" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"keR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"keS" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kdI" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kea" = ( +/area/almayer/maint/hull/upper/u_f_p) +"keY" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"kfe" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"kec" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kfm" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"kek" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kfp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"kes" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"keB" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"kfw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kfI" = ( +/turf/open/floor/almayer/orangecorner, /area/almayer/living/briefing) -"keC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"keD" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"keR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"kfa" = ( +"kfL" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"kfo" = ( -/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"kfp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_stern) -"kfA" = ( +/area/almayer/living/briefing) +"kfQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "kfU" = ( /turf/open/floor/plating, /area/almayer/powered/agent) -"kgf" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"kgl" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kgq" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) +"kfW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"kgg" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) "kgs" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -28552,226 +28700,248 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"kgz" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) "kgB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kgO" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kgF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop/hangar) +"kgG" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"kgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kgW" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"khj" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"kgX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/s_bow) -"khn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"khq" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"khH" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"khM" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"khQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kic" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"kir" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"kis" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/shipboard/brig/armory) +"khe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"kit" = ( -/obj/structure/bed/chair/office/dark, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"kiH" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"kiY" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"kiZ" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) -"kjo" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 +/area/almayer/living/briefing) +"khk" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"khr" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"kjv" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"khv" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"kjH" = ( -/obj/structure/platform{ +/area/almayer/shipboard/brig/perma) +"khC" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"khO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kjK" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"kih" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"kit" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"kiE" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kjd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"kjf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/fore_hallway) -"kjV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4 +"kjn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"kjx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kjy" = ( +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) -"kkf" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"kkq" = ( -/obj/structure/machinery/light{ - dir = 8 +"kjH" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"kjK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"kjL" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"kjO" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kjR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"kky" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kkb" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"kkr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "W" }, -/obj/structure/sign/safety/storage{ +/obj/structure/sign/safety/suit_storage{ pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"kkD" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"kkX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"kla" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -15; - req_access_txt = "200" - }, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 6; - pixel_y = 3 +"kkC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"klk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"klh" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"klm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"klv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/almayer/hallways/upper/fore_hallway) +"kln" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"klo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"kly" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/almayer/command/computerlab) -"klO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/hallways/upper/midship_hallway) +"klr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"klM" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"klQ" = ( /turf/open/floor/almayer/blue, /area/almayer/hallways/upper/fore_hallway) -"klW" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"kma" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/upper_medical) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) "kmd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28781,756 +28951,674 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"kmi" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"kml" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"kmu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) +"kmf" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"kmt" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/chemistry) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"kna" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) -"knh" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) -"knk" = ( -/obj/structure/window{ - dir = 8 +"kmH" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"knp" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"knB" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kmN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"knb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"knC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"knE" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"knK" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"knO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"kop" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/engineering/lower/workshop) +"knc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"kni" = ( +/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"kow" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/area/almayer/hallways/hangar) +"knl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = 7 }, -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "207;203" +/obj/item/paper_bin/uscm{ + pixel_y = 5 }, -/obj/item/device/radio, -/obj/item/device/radio/listening_bug/radio_linked/wy, -/obj/item/device/radio/listening_bug/radio_linked/wy{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"koB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"koG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/item/tool/pen, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"koI" = ( +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"knq" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/command/telecomms) -"koO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kpb" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"kpd" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"kpw" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kny" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"kpy" = ( -/obj/structure/machinery/status_display{ +/obj/structure/sign/safety/maint{ pixel_x = 32 }, -/obj/structure/machinery/space_heater, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/east, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"knD" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"knI" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"knK" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"kqk" = ( -/obj/structure/window/reinforced{ - dir = 8 +"knS" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"knV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"knZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, +/area/almayer/command/airoom) +"koa" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/port) +"kod" = ( +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"kof" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"kqm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/lower/starboard_umbilical) +"kol" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"koo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kqq" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"kqr" = ( -/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"koq" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kqu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"kqv" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/maint/hull/lower/stern) +"kov" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"kqw" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kqB" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"kow" = ( +/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ + dir = 4; + plane = -6 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"kqD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"koB" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"kqF" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"koF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"kqJ" = ( -/obj/structure/girder/displaced, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kqL" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"koH" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/device/lightreplacer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) -"kqV" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"krk" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, +"koO" = ( /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"krn" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"krr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"koX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kpd" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kpv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"kru" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kpD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/upper_engineering/port) -"krv" = ( -/obj/structure/disposalpipe/segment{ +"kpF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"kpI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"krz" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/cic) -"krA" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"kpL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"krD" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"krE" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"krG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"kse" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/hydroponics) +"kpM" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"kpO" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"kpP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kql" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper }, -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"kst" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"kqq" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"kqv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"ksR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"kqw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"ksZ" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kqW" = ( +/obj/structure/machinery/telecomms/server/presets/squads, +/obj/structure/sign/safety/commline_connection{ pixel_y = -32 }, -/obj/structure/sign/safety/ammunition{ +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"kts" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ktA" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"ktF" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kqZ" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10 +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"ktG" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"krb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"krc" = ( +/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ktH" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"ktJ" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/soap, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/living/grunt_rnr) +"krf" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + desc = "A powerful server tower housing various AI functions."; + name = "server tower"; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"kri" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/scrubber, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"krq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"krA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"krD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/white{ + pixel_y = 6 }, -/obj/structure/mirror{ - pixel_y = 32 +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 6 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"ktR" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"krQ" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"krR" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"ktZ" = ( +/area/almayer/engineering/lower/engine_core) +"krV" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kuk" = ( -/obj/structure/pipes/vents/pump{ +/area/almayer/shipboard/port_point_defense) +"ksJ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kuu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"ksK" = ( +/obj/structure/machinery/door_control{ + id = "or04"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"kux" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"kuP" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"ksL" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"kve" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + name = "\improper Combat Information Center" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"ksR" = ( +/obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/status_display{ - pixel_y = -29 + pixel_y = 30 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"kvl" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = 6 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"ksT" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ksZ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kvp" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kvA" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kvL" = ( -/obj/structure/closet/basketball, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"kvO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"kvU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"kwe" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/item/clipboard{ + pixel_x = -4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"kwo" = ( -/obj/structure/surface/rack, +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kwr" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/command/corporateliaison) +"ktq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"kwF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = 9; - starting_attachment_types = list(/obj/item/attachable/stock/shotgun) +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.01 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ktE" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"kwJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ktK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"kxa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = 12; - pixel_y = 6 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"kxi" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"kxq" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = -32 - }, +"ktN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"kxA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/hallways/lower/vehiclehangar) +"kuc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"kxJ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/platform{ - dir = 4 +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"kxQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, /area/almayer/squads/req) -"kxR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +"kug" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"kxS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"kxZ" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +"kuk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kuu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"kya" = ( -/turf/closed/wall/almayer, -/area/almayer/command/corporateliaison) -"kyj" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kyv" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"kuv" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"kuF" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"kyL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"kuO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out" }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"kuQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kyR" = ( +/area/almayer/living/pilotbunks) +"kuU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kyU" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/hallways/lower/vehiclehangar) +"kva" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"kvj" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" }, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kyX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"kzb" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"kzc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"kze" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"kzC" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/area/almayer/shipboard/navigation) +"kvI" = ( +/obj/structure/bed, +/obj/item/toy/plush/farwa{ + pixel_x = 5 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"kzE" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"kzL" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"kzW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/clothing/under/redpyjamas, +/obj/item/bedsheet/orange, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kvM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"kzY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"kvQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"kvU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"kvZ" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"kAd" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) -"kAn" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kwc" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kAq" = ( +/area/almayer/maint/hull/upper/u_a_s) +"kwf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"kwl" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"kwo" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kwv" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"kwF" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"kwI" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -29539,642 +29627,709 @@ icon_state = "W"; pixel_x = -1 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"kxi" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"kxx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"kBa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = 7 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"kxI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/paper_bin/uscm{ - pixel_y = 5 +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"kxJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 9 }, -/obj/item/tool/pen, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/item/storage/box/flashbangs{ + pixel_x = -8; + pixel_y = 5 }, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"kBe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"kxR" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/cic) +"kye" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"kym" = ( /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"kBm" = ( +/area/almayer/squads/charlie) +"kys" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"kyx" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"kyB" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"kCi" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_missiles) -"kCx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = -1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"kCZ" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kDa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 9 + }, +/obj/item/tool/pen{ + pixel_x = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"kDm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"kDr" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/gym) -"kDw" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"kDy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"kDF" = ( -/obj/structure/closet, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"kDG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/area/almayer/living/briefing) +"kyU" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"kDK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kDV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES JoeCryo"; - name = "\improper ARES Synth Bay Shutters"; - plane = -7 +/area/almayer/maint/hull/lower/l_a_s) +"kyV" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/no_build/test_floor4, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) -"kDX" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"kEd" = ( +"kyW" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera_film, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"kyX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"kzb" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kzq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) -"kEl" = ( -/obj/structure/largecrate/random/case/double, +"kzI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"kzN" = ( +/obj/structure/bed/chair/comfy/alpha, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kEo" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"kEs" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kEw" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"kEx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "7;19" +/area/almayer/living/briefing) +"kAf" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"kEC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kAn" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"kAo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"kEP" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"kER" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"kEW" = ( -/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kEY" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper +/area/almayer/squads/charlie) +"kAw" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"kFb" = ( -/obj/structure/phone_base{ - name = "Brig Offices Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Main Offices"; - pixel_y = 32 +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"kAX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/north, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) -"kFd" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"kFf" = ( -/obj/structure/machinery/light{ +"kBw" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/command/telecomms) -"kFi" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 1; - name = "ship-grade camera" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment) -"kFA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"kBI" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"kBJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"kBQ" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/phone_base/rotary{ + name = "AI Reception Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Reception" }, -/obj/item/storage/firstaid/adv, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"kBT" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"kFE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"kBV" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/aft_hallway) -"kFG" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, +/area/almayer/engineering/upper_engineering/starboard) +"kCi" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_missiles) +"kCk" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"kFN" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"kFP" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"kFR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/maint/hull/upper/s_stern) +"kCp" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"kFY" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"kCx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"kGl" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"kGw" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"kCz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"kCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"kGy" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 +/turf/open/floor/almayer/emerald/northeast, +/area/almayer/squads/charlie) +"kCP" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"kDh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"kGz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/lower/port_fore_hallway) +"kDD" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"kGC" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 16; - pixel_y = 27 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"kGH" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"kGJ" = ( -/obj/structure/sign/safety/biolab{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17; - pixel_y = 6 +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"kDE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"kGU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie) +"kDF" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"kHi" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" +/area/almayer/engineering/upper_engineering) +"kDK" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"kHw" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"kEj" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"kHy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 +/obj/structure/sign/safety/maint{ + pixel_x = 16; + pixel_y = 26 }, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"kHA" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"kHH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"kEv" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"kEx" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kEG" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"kHJ" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/hallways/upper/midship_hallway) +"kEL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"kEV" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"kEW" = ( +/obj/structure/closet/secure_closet/fridge/dry/stock, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kHL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/grunt_rnr) +"kFl" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"kHN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/black, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) +"kFr" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"kHR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/engineering/upper_engineering) +"kFu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"kHU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/multitool{ - desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; - icon_state = "multitool_big"; - name = "\improper Oversized Security Access Tuner"; - pixel_x = 4; - pixel_y = 11 +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"kFw" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/item/stack/sheet/cardboard/medium_stack{ - layer = 3.01; - pixel_x = -7; - pixel_y = -6 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"kIb" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Stairway Shutters"; - plane = -7 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"kIe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"kIg" = ( +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"kFB" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"kIt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n117{ + pixel_x = 2; + pixel_y = 5 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"kFD" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"kIu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"kIy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"kFK" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kIz" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"kIE" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 + dir = 8 }, /turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_m_p) -"kJa" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 +/area/almayer/living/bridgebunks) +"kFY" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7 }, -/obj/structure/sign/safety/twilight_zone_terminator{ - pixel_x = 8; - pixel_y = -24 +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"kFZ" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"kJg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"kJm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kJw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 3 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"kGw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"kJB" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"kJD" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"kGC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"kJT" = ( -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"kJU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +"kGR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"kGV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"kJW" = ( -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.10; - plane = -4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"kHb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/tool/soap{ - pixel_x = 2; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"kHt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/commandbunks) -"kKa" = ( -/obj/structure/machinery/computer/aa_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"kKf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"kHv" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/obj/structure/catwalk{ + health = null + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"kHA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"kHH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Officer's Study" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"kHN" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"kHW" = ( +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"kHX" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/living/gym) +"kIU" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"kIW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"kIX" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"kJh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -11; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/medical_science) +"kJq" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4; - pixel_y = 0 +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"kKC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 9; + pixel_y = 15 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"kJs" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/lower/workshop/hangar) +"kJw" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kJI" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kJJ" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"kKq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"kKM" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Armourer's Workshop"; - req_access = null +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"kKs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"kKA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"kKC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"kKH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "kKR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"kKV" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "ares_vault_out"; - name = "aicore" - }, -/turf/closed/wall/almayer/aicore/hull, +"kKU" = ( +/obj/structure/machinery/ares/processor/interface, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) -"kLg" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +"kLi" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"kLr" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"kLl" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"kLy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"kLK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"kLU" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"kMb" = ( -/obj/structure/closet/crate/internals, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"kMd" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"kLC" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane{ + anchored = 1 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"kMg" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"kMt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"kLQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"kMv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"kLU" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"kMw" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +/area/almayer/maint/hull/lower/s_bow) +"kLW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + dir = 2; + name = "\improper Brig Lobby" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"kMz" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"kMF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/shipboard/brig/processing) +"kLX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"kMk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -30185,19 +30340,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"kMJ" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"kMV" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 +"kMP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"kMX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"kMW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"kNd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"kNe" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 2; + id = "ares_vault_out"; + name = "wycomms" + }, +/turf/closed/wall/almayer/outer, +/area/almayer/command/airoom) +"kNh" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -30210,21 +30383,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"kNz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, +"kNo" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/starboard_missiles) +"kNr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"kNv" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"kNw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - name = "\improper Tool Closet" + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) "kNC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -30235,16 +30412,21 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"kNF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"kNM" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "kNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -30262,112 +30444,108 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"kOa" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/pilotbunks) +"kOc" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) "kOe" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"kOh" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_s) "kOp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) -"kOr" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -5; - pixel_y = -24; - req_one_access_txt = "91;92" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/door_control{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown"; - pixel_x = 6; - pixel_y = -24; - req_one_access_txt = "91;92" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"kOA" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_y = 12 +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/obj/structure/machinery/computer/cameras/almayer/ares{ +/obj/structure/window/reinforced{ dir = 4; - pixel_y = -1 + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"kOQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "kOZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"kPg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"kPh" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"kPn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"kPC" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"kPH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"kPa" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"kPl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"kPw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kPQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/hallways/lower/port_midship_hallway) +"kPA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kPN" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"kPQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/upper/u_a_p) +"kPW" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) "kPZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -30378,140 +30556,61 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"kQe" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"kQi" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/monocle, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/weapon/pole/fancy_cane{ - pixel_x = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"kQs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) "kQx" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"kQy" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/basketball) -"kQA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"kQG" = ( /obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) -"kQE" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"kQM" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"kQQ" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 +"kQH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kRa" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - layer = 3.3; - pixel_y = 6 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"kRi" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"kQZ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "kRm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) "kRr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/starboard_hallway) -"kRy" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"kRC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/workshop) -"kRD" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"kRE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"kRI" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"kRH" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -30521,160 +30620,134 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"kRQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"kRV" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kSj" = ( -/obj/item/tool/wirecutters/clippers, +"kRY" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) +/area/almayer/maint/upper/u_a_p) "kSn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kSr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"kSP" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"kSB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/pilotbunks) -"kSH" = ( -/obj/structure/sign/prop1{ - pixel_y = 32 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/filingcabinet/security{ - pixel_x = -8 +/obj/structure/machinery/cm_vending/gear/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"kSQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/filingcabinet/medical{ - pixel_x = 8 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "south_central_checkpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kSI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kSS" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Left"; + name = "\improper ARES Operations Shutters" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"kSL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"kST" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"kSP" = ( -/obj/structure/machinery/cm_vending/clothing/engi/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"kSX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"kTa" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"kTf" = ( +/obj/structure/closet/firecloset, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + icon_state = "NE-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"kTj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - name = "\improper Warden's Office" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"kTr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"kTz" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"kTB" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 +/obj/item/poster, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"kTA" = ( +/obj/structure/sign/safety/three{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 3"; + name = "Cell 3" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"kTF" = ( -/obj/structure/bed/chair{ +/area/almayer/shipboard/brig/cells) +"kTG" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"kTH" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kTJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "agentshuttle"; - indestructible = 1; - unacidable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"kTT" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -5 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"kTO" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/clothing/head/helmet/space/compression/uscm, -/obj/item/cell/crap{ - pixel_x = 7 +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"kTP" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/engineering/lower) "kTY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -30685,102 +30758,54 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"kUa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"kUN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"kUd" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kUg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"kUj" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kUy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"kUR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"kUO" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"kUX" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"kVh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" + icon_state = "NW-out"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kVc" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"kVP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"kVe" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"kVm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/item/tool/pen{ + pixel_x = -9; + pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"kVx" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/crap, -/obj/item/tool/crowbar, -/obj/structure/machinery/cell_charger, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"kVN" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) +/area/almayer/living/briefing) "kVZ" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 2"; @@ -30791,193 +30816,204 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"kWg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) "kWh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = -29 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"kWj" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"kWB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"kWC" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/basketball) +"kWE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"kWG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) +"kWJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"kWp" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"kWr" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) -"kWv" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kWL" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"kWN" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"kWR" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"kWV" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"kWX" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"kWD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"kWF" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"kWG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"kXv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"kXA" = ( /turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"kWJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"kWQ" = ( -/obj/structure/largecrate/random/case/double, +/area/almayer/shipboard/weapon_room) +"kXH" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"kYr" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"kWW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"kXl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/firealarm{ +/area/almayer/maint/hull/lower/l_f_p) +"kYx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - pixel_x = 24 + id = "south_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"kXo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"kXr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"kYz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; - name = "\improper XO's Quarters"; - req_access = null; - req_access_txt = "1" + dir = 8; + req_one_access = list(2,34,30) }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) -"kXG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/hull/upper/u_m_p) +"kYI" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"kYM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"kYd" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"kYl" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/phone_base{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"kYD" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"kYN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"kZo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"kYG" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"kZv" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"kZL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"kZH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"kZR" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"lad" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"kZK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"kZT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; dir = 1; - name = "ship-grade camera" + req_one_access = null; + req_one_access_txt = "7;19" }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"lay" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"laA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/shipboard/weapon_room) +"lae" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/almayer/living/gym) -"laN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"laf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"lag" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lap" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/shipboard/brig/general_equipment) +"laE" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"laL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) "laO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31010,153 +31046,88 @@ }, /turf/open/floor/plating, /area/almayer/command/cic) -"laW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lbk" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"lbm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +"lbl" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "lbo" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"lby" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"lbz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"lbz" = ( +/area/almayer/squads/delta) +"lbF" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"lbA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/computer/working_joe, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"lbJ" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"lbR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lbS" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 1; + name = "ship-grade camera" }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_corner/west, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/containment) -"lbM" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"lbO" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_m_p) -"lbQ" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) "lcd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"lco" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/suit/space/compression/uscm, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"lcq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"lcv" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1 +/area/almayer/engineering/upper_engineering/port) +"lch" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters/clippers, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 1 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"lcA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room2"; - name = "\improper Storage Shutters" +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"lcF" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"lco" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"lcH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"lcI" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"lcL" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) +/area/almayer/engineering/upper_engineering/port) +"lcE" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) "lcV" = ( /obj/structure/bed/chair{ dir = 4 @@ -31173,88 +31144,77 @@ /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) "lda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ldb" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"ldc" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/o2/empty, +/obj/item/storage/firstaid/rad/empty, +/obj/item/storage/firstaid/toxin/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) "ldg" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/midship_hallway) -"ldq" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"ldh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"ldE" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"ldw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"ldF" = ( -/obj/structure/sign/safety/four{ - pixel_x = -17 - }, -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 4"; - name = "Cell 4" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"ldO" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - desc = "Do you remember who you are?"; - icon_state = "mirror_broke"; - name = "broken mirror"; - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 11 - }, -/obj/structure/machinery/door_control{ - id = "Delta_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/item/prop{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 29 - }, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 24 +/area/almayer/maint/hull/upper/u_a_p) +"ldG" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"ldK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"ldR" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"ldU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"ldX" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) +/area/almayer/maint/hull/upper/u_a_p) "lea" = ( /obj/structure/sink{ dir = 4; @@ -31273,17 +31233,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"lem" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/co2_knife{ - pixel_x = 8; - pixel_y = 9 +"led" = ( +/obj/effect/landmark/start/warrant, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"lek" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +/area/almayer/hallways/hangar) "let" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -31294,65 +31255,127 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"leC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"leO" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"lfd" = ( -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/upper/fore_hallway) -"lfm" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"lfA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"leD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/no_build, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"leL" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"leT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"leZ" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"lfj" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"lfk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -14; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) -"lfI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"lfo" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"lfP" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"lfY" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"lgk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/hallways/lower/repair_bay) +"lft" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"lfC" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/clothing/head/helmet/marine/tech{ + layer = 4.1; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/mob/living/simple_animal/mouse/brown{ + name = "rat" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"lfV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/ce_room) +"lfX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"lgs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"lgt" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "lgy" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -31364,86 +31387,43 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"lgB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/trash/popcorn{ - layer = 3.1; - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"lgF" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"lgH" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"lgW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"lgA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"lgM" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"lhh" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "engie_store"; - name = "Emergency Storage"; - pixel_x = -2; - pixel_y = 26; - req_one_access_txt = "6" - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17; - pixel_y = -6 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/ce_room) -"lhn" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter, -/obj/item/device/flashlight/lamp, +/area/almayer/maint/hull/upper/p_bow) +"lgO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"lgR" = ( +/obj/structure/largecrate/random, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"lhq" = ( +/area/almayer/maint/hull/upper/s_bow) +"lhc" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"lhy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"lhA" = ( -/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "civ_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = -7; - req_access_txt = "31" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lhg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lhw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/living/gym) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) "lhB" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -31456,29 +31436,20 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"lhE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_aft_hallway) -"lhH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"lhD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"lhR" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/folded_tent/cmd, -/obj/item/flag/plantable/ua, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -31486,52 +31457,41 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"lia" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = -24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"lis" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"lie" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"lix" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"liy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"liH" = ( -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"lim" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"lio" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"lis" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/cic) +"liF" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"liI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) "liJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"liS" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) "liZ" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck, @@ -31542,187 +31502,131 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"ljg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"ljc" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"ljm" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"ljd" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"lji" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -7 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"ljx" = ( +"ljy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ljD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/green/southeast, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"ljH" = ( +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/lower/starboard_midship_hallway) -"ljz" = ( -/obj/structure/surface/table/almayer, +"lkj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) +"lky" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"ljA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 + icon_state = "pottedplant_18"; + pixel_y = 7 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"lka" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"lke" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = -25 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"lkv" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lkD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"lkI" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"lkQ" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/port) -"lkU" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lkR" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/pilotbunks) +"llc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/obj/structure/bed/chair, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) +/area/almayer/shipboard/port_missiles) "llf" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs2"; - name = "ARES Reception Stairway Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"llo" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/squads/bravo) -"llp" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"llq" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"llh" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"lli" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"llu" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"llw" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"llH" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"llt" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/obj/structure/machinery/cm_vending/sorted/tech/circuits, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"llL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/plasticflaps, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/green/west, +/turf/open/floor/almayer, /area/almayer/squads/req) -"llS" = ( +"llD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"llX" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"llZ" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"lma" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"lmc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/folder/white{ - layer = 2.9; - pixel_x = -8 - }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"lme" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + dir = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"lmh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"llJ" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/navigation) +"lmd" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cichallway) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -31730,25 +31634,15 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"lmp" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" +"lmt" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"lmr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) "lmw" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ @@ -31760,168 +31654,117 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"lmy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"lmB" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin, +"lnh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"lni" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"lmL" = ( -/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"lmO" = ( -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/living/briefing) -"lmP" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"lna" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"lnl" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lno" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"lnc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 +/area/almayer/hallways/lower/port_fore_hallway) +"lnq" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lnI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"lnU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/folder/black_random, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"lnd" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/living/offices/flight) +"lnV" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"lng" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lnW" = ( +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 16 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"lnh" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space) -"lno" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"lnr" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/squads/req) -"lnM" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/north{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"lof" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"loo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"lov" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"loC" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"loD" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"loH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_y = 5 +/area/almayer/living/grunt_rnr) +"los" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"loI" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" +/area/almayer/engineering/upper_engineering/starboard) +"loN" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = 10 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) "loP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) +"loR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "loV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -31936,157 +31779,142 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"loX" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 +"lpd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"lpm" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"lpv" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lpx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"lpz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/basketball) -"loZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"lpa" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 +/area/almayer/living/chapel) +"lpY" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc04"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = 23 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"lpf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"lqc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"lpJ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/lower/port_midship_hallway) +"lqh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"lpR" = ( +/obj/item/device/binoculars, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"lqm" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"lpW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"lqw" = ( /obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" + id = "or02"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"lqz" = ( +/obj/structure/bed/chair, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"lqb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"lqr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lqy" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +/area/almayer/living/starboard_garden) +"lqD" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"lqB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 +"lrl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"lqU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"lrc" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lrf" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_missiles) +"lrp" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) "lrq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"lrz" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lrE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"lrr" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) "lrF" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lrK" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) +"lrI" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) "lrT" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"lrU" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop) "lrX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -32097,141 +31925,263 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"lsc" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 +"lrY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"lrZ" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) "lse" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ +/obj/structure/sign/safety/bulkhead_door{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"lsg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"lsw" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/aft_hallway) -"ltl" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"lts" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ltu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ltv" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"ltA" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ltM" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"ltN" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lsf" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"lud" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"lsw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"lsy" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"luf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower/engine_core) -"luE" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/almayer/hallways/lower/port_midship_hallway) +"lsJ" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cic) +"lsL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"luL" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"luR" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"lvd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"lve" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lsM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"lvB" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"lvE" = ( -/obj/structure/sign/safety/rad_shield{ - pixel_x = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"lsT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/turf/open/floor/almayer/orange/east, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"lsX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"lsY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lsZ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"ltj" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ltk" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ltn" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"ltx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/computerlab) +"ltA" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ltG" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"ltP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"lug" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) +"lui" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"luq" = ( +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"luD" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/stern_point_defense) +"luE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"luM" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"lvp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/starboard_umbilical) +"lvt" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"lvC" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) -"lvT" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"lwk" = ( -/obj/structure/sink{ +"lvD" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"lvJ" = ( +/obj/structure/stairs{ dir = 1; - pixel_y = -10 + icon_state = "ramptop" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"lvM" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"lvO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"lvS" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"lvW" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lvX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_a_s) +"lwb" = ( +/obj/structure/closet/secure_closet/fridge/organic/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"lwj" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"lwn" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) "lwC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -32246,102 +32196,152 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "lwF" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/computerlab) -"lwK" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"lwR" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lwZ" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"lwM" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"lwW" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/starboard_hallway) -"lwY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/command/lifeboat) +"lxc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"lxa" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" +/area/almayer/engineering/upper_engineering) +"lxg" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"lxD" = ( +/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_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"lxE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"lxM" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"lxe" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"lxm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"lxn" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lxp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/squads/charlie) +"lxN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"lxP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D1"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"lxS" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/command/cic) +"lya" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"lxu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"lyf" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/shipboard/brig/processing) +"lyh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lyj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/midship_hallway) +"lym" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) "lyw" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lyL" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"lyM" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +"lyx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"lyN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/upper/u_f_s) +"lyC" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"lyL" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lyY" = ( +/obj/structure/machinery/door_control{ + id = "ROlobby1"; + name = "RO Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/machinery/line_nexter_control{ + id = "line1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "lza" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey/top{ @@ -32349,13 +32349,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lzc" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) "lzq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -32363,14 +32356,40 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"lzG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 +"lzN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"lzQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"lAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"lAt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "lAy" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 @@ -32380,181 +32399,234 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lAL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"lBd" = ( +"lAB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"lAC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lBj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"lBs" = ( +/area/almayer/lifeboat_pumps/south1) +"lAD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"lBt" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"lAE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"lBA" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/cic) -"lCd" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"lAX" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"lCu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"lBd" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"lCA" = ( -/obj/structure/sign/safety/ladder{ +/obj/item/trash/cheesie, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"lBf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"lCG" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lBh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"lBs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"lBy" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"lBB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"lBD" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"lBK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"lCI" = ( +/area/almayer/maint/hull/upper/u_a_p) +"lCd" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" + }, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"lCZ" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_a_p) +"lCg" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lDe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"lCu" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"lCV" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_four) -"lDi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"lDl" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"lDn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lDr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lDZ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"lDC" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"lEd" = ( -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/workshop) +"lDI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/machinery/disposal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"lDR" = ( /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) +"lEa" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/squads/req) +"lEc" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) "lEf" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell/cl) "lEh" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"lEp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/item/folded_tent/med{ + pixel_x = -8; + pixel_y = 14 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"lEq" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"lEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"lEu" = ( +/obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/turf/open/floor/almayer/plate, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"lEx" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 + }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"lEt" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/mp_bunks) -"lEw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"lEy" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"lED" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "lEF" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -32565,17 +32637,11 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"lEN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Brig Equipment" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/general_equipment) +"lEG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) "lEO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -32584,11 +32650,20 @@ /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) "lEZ" = ( -/obj/structure/machinery/light/small{ +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "lFe" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -32598,158 +32673,94 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lFg" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"lFi" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) -"lFp" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 - }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"lFz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"lFD" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"lFH" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) +"lFj" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) "lFK" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"lFV" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane{ - anchored = 1 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +"lFL" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lGa" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"lGe" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lGA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"lGy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/status_display{ + pixel_y = -29 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"lGX" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"lGC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lHj" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"lHm" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"lGK" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lGS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"lHg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_y = 4 + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/orange/northwest, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"lHq" = ( +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/upper_engineering/port) -"lHn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"lHr" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"lHz" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lHQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"lHO" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lIf" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"lIj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "lIp" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -32760,479 +32771,452 @@ /turf/open/floor/carpet, /area/almayer/command/cichallway) "lIr" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lIy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"lIN" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"lJi" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/power/apc/almayer/west, +/obj/item/storage/briefcase{ + pixel_y = 15 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lJn" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"lIu" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"lIK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"lIT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"lJp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"lJs" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"lJF" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"lJW" = ( -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "delivery outlet"; - pixel_x = -1; - pixel_y = 25; - range = 0 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"lIX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"lJe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lJY" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"lKm" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"lKn" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"lJo" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"lJs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"lKB" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"lJw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"lKH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lKM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lKN" = ( -/obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"lKT" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lKW" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"lLa" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"lJC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lLi" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"lLw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lJD" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"lJE" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"lLy" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"lLB" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"lJM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"lLC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"lLE" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/interrogation) -"lLM" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"lLU" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"lJR" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"lJY" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lKg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"lKo" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lKI" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"lMh" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"lMp" = ( +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = 24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"lKS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"lMr" = ( +/area/almayer/maint/hull/upper/u_f_p) +"lKX" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/cic) +"lKZ" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"lLi" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"lNc" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/lower/repair_bay) -"lNd" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/hydroponics) -"lNf" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"lNp" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/living/grunt_rnr) -"lNr" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"lNt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"lNG" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"lNH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/folded_tent/med{ - pixel_x = -8; - pixel_y = 14 +/area/almayer/maint/lower/cryo_cells) +"lLs" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"lNV" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"lOh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"lOj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"lOk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lOp" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"lOv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"lOA" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"lOG" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, -/obj/item/ammo_box/magazine/l42a{ - pixel_y = 14 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"lOQ" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"lLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"lLW" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext" }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"lMk" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"lOS" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/intercom{ + pixel_y = 32 }, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"lOU" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"lMp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"lOW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"lPa" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/area/almayer/lifeboat_pumps/south2) +"lMu" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"lPf" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"lPh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"lPi" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"lPq" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lMy" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"lPF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"lME" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"lPZ" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lQe" = ( -/obj/structure/machinery/cm_vending/gear/medic, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"lQg" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower) -"lQq" = ( +/area/almayer/hallways/lower/vehiclehangar) +"lMR" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"lQs" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lQA" = ( -/obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/east, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_one) -"lQD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"lNt" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lNB" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"lNE" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"lQG" = ( -/obj/structure/machinery/computer/tech_control, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"lQJ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"lNG" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_four) +"lNH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lNL" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"lNR" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lNT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.2; + pixel_x = -7; + pixel_y = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 3; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"lNW" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = 25 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"lQP" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 7 +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 }, -/obj/item/storage/firstaid/fire{ - pixel_x = -6 +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"lQT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/engineering/ce_room) +"lNY" = ( +/obj/effect/landmark/supply_elevator, +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"lOe" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"lRd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/mirror{ + pixel_x = 28 }, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/small{ - dir = 4; - pixel_y = -12 +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"lOg" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 17 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"lOh" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"lOm" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"lRi" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -7; - pixel_y = 17 +/area/almayer/squads/req) +"lOv" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 12; - pixel_y = 28 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"lOx" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"lOI" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"lOW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"lRj" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"lPg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"lPu" = ( +/obj/structure/machinery/firealarm{ dir = 8; - pixel_y = 3 + pixel_x = -24 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"lPx" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"lPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"lPK" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"lPL" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"lPQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"lPV" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"lRq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"lQd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + indestructible = 1; + unacidable = 1 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"lQm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lQG" = ( +/obj/structure/machinery/computer/tech_control, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"lQZ" = ( +/obj/structure/machinery/door_control{ + id = "or1privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) "lRE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -33242,105 +33226,110 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lRI" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 5; - pixel_y = -2 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) "lRP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lSa" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 +"lRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"lSa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"lSv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lSl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"lSF" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"lSv" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lSW" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/port_missiles) -"lSZ" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"lSy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"lSE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/west, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cichallway) -"lTv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, +"lSI" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"lTx" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/l_m_p) +"lTa" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"lTf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; dir = 1; - icon_state = "pipe-c" + req_one_access = null; + req_one_access_txt = "30;19" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"lTy" = ( -/obj/structure/machinery/cm_vending/gear/leader, +/area/almayer/living/port_emb) +"lTg" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"lTs" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/area/almayer/shipboard/port_point_defense) +"lTx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"lTD" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/officer_study) "lTE" = ( /obj/structure/surface/table/almayer, /obj/item/storage/bible{ @@ -33349,391 +33338,502 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lTY" = ( -/obj/structure/machinery/vending/cigarette, +"lTG" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"lUa" = ( +/area/almayer/engineering/lower/workshop/hangar) +"lTO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"lTV" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; dir = 1; - req_access = null; req_one_access = null; - req_one_access_txt = "3;22;19" + req_one_access_txt = "30;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"lUe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_x = -1; - pixel_y = 11 +/area/almayer/living/grunt_rnr) +"lUd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"lUh" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lUy" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"lUZ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"lVa" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lVh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/area/almayer/engineering/lower/engine_core) +"lUg" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - name = "Bathroom" + name = "ship-grade camera" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"lUk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/command/cic) +"lUp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "kitchen2"; + name = "\improper Kitchen Shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"lUt" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"lUB" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lUL" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"lUS" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"lVf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"lVn" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) "lVo" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) +"lVs" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "lVt" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"lVw" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) "lVx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"lVF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/briefing) +"lVy" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"lVC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"lVH" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"lVH" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 4"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 +/area/almayer/shipboard/brig/general_equipment) +"lVP" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"lWc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell/cl) -"lVU" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"lWe" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/obj/structure/platform{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"lWn" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/cryo_cells) +"lWx" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"lWy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -24; - req_one_access_txt = "90;91;92" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"lWd" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"lXb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"lWe" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink_med_req" + icon_state = "S" }, -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/hydroponics) -"lWl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"lWT" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"lWX" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"lXC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/maint/hull/upper/p_bow) +"lXj" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_three) +"lXk" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"lXn" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"lXG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"lXI" = ( -/obj/structure/platform{ - dir = 4 +/area/almayer/command/telecomms) +"lXE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) -"lXU" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"lXK" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0 }, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) -"lYc" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"lXL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"lXX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lYg" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"lYn" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) -"lYs" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lYt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" +"lXY" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"lYb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"lZa" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"lYp" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"lYv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution_storage) +"lYx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"lZd" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"lZj" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lZq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"lZv" = ( +/area/almayer/engineering/lower) +"lYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lYK" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"lZH" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"lZK" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"lZS" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"maK" = ( -/obj/structure/pipes/unary/freezer, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"maX" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer/green, /area/almayer/squads/req) -"mba" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"mbg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"mbA" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"mbE" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"mbS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lZg" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"lZr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"mbU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"lZx" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/weapons/m39{ - pixel_x = 2 - }, -/obj/structure/largecrate/supply/weapons/m41a{ - layer = 3.1; - pixel_x = 6; - pixel_y = 17 +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 29 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"mca" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, +/area/almayer/living/briefing) +"lZC" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"mcd" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_one) -"mci" = ( +/area/almayer/maint/hull/lower/l_a_s) +"lZD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"mcp" = ( -/turf/open/floor/almayer/greencorner/north, +/area/almayer/engineering/lower) +"lZG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"lZQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lZR" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"lZW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution_storage) +"maf" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/briefing) +"mah" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"mai" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"mcu" = ( -/obj/structure/machinery/light{ +"maj" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/closet/secure_closet/fridge/organic, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"mcw" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"map" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"max" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"may" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-5"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"maH" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"maN" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"maV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, /obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 6"; + name = "\improper Courtyard Divider" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"mcy" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/area/almayer/shipboard/brig/cells) +"mbv" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/cic) +"mbG" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, +/area/almayer/command/airoom) +"mbS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mcP" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"mbX" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"mcg" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/command/lifeboat) +"mcj" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"mcD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) "mcW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves, @@ -33742,221 +33842,257 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"mds" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +"mdn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -2; - pixel_y = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"mdG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar{ - layer = 3.04; - pixel_x = -2; +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"mdw" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"mdx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; pixel_y = 2 }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -11; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -2; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 7; +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mdF" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ + density = 0; pixel_y = 16 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"mdY" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"mdZ" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"med" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"mem" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"mes" = ( -/obj/structure/sign/safety/fibre_optics{ - pixel_y = 32 +/obj/structure/window{ + dir = 4 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"mdH" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"meC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"meD" = ( -/obj/structure/barricade/handrail{ - dir = 4 +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"mdP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"meE" = ( +/area/almayer/command/cic) +"met" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"meG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"meM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"meV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"meX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "meY" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/alpha) "meZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 5 +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 }, +/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mff" = ( -/obj/structure/machinery/door_control{ +/area/almayer/command/combat_correspondent) +"mfd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - id = "tc04"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 23 + name = "Bathroom" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"mfl" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mfr" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"mfi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/hangar) -"mfx" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"mfC" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"mfj" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"mfs" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"mfz" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"mfG" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"mfJ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"mfL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"mfN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"mfL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"mfS" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"mfP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "mgb" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"mgd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/phone_base{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 }, +/obj/structure/machinery/vending/ingredients, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mgf" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"mgo" = ( +/area/almayer/living/grunt_rnr) +"mgm" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/squads/alpha) +"mgt" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "mgu" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "mgy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"mgG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mgB" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"mgQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"mgS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"mgK" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"mgL" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"mgV" = ( -/obj/structure/sign/safety/water{ +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"mgN" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"mgU" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mgZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/silver/southwest, +/area/almayer/engineering/port_atmos) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -33964,106 +34100,70 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"mhe" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mhi" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"mhA" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ +"mhx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"mhC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "returns outlet"; + pixel_x = -7; + pixel_y = 28; + range = 0 }, -/obj/item/tool/pen, -/turf/open/floor/almayer/aicore/no_build, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) +"mhy" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/chemistry) +"mhB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "mhG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"mhH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cryo) -"mhJ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"mhK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research/main_terminal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"mhR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"mie" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"mhN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "mif" = ( -/obj/structure/machinery/door/window/westleft{ - dir = 2 - }, -/obj/structure/machinery/shower, -/obj/item/tool/soap, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"mio" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"mii" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) +/area/almayer/hallways/upper/starboard) "miE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -34074,7 +34174,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"miM" = ( +"miR" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"miU" = ( /obj/structure/closet/secure_closet/brig/restraints, /turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/perma) @@ -34085,88 +34194,44 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"miW" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"miY" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"mjc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"mjk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"mjp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"mjx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"mjv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mjE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/maint/lower/cryo_cells) +"mjG" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" }, -/obj/structure/machinery/door_control{ - id = "officers_mess"; - name = "Privacy Shutters"; - pixel_y = -19 +/obj/structure/sign/safety/ladder{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) "mjK" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/interrogation) -"mjN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"mjO" = ( -/obj/structure/machinery/door_control{ - access_modified = 1; - id = "OTStore"; - name = "Shutters"; - pixel_y = 24; - req_one_access_txt = "35" - }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "SW-out"; + layer = 2.5 }, /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/area/almayer/shipboard/brig/execution) +"mjP" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Comms" + }, +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) "mjS" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -34177,122 +34242,160 @@ /turf/open/floor/almayer, /area/almayer/squads/charlie) "mjZ" = ( -/obj/item/trash/candle, -/obj/item/tool/match/paper, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"mka" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"mke" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"mkg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/southeast, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"mkl" = ( +/turf/open/floor/almayer/silverfull, /area/almayer/living/cryo_cells) -"mki" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +"mkn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"mkq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"mku" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/port) -"mkw" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mkR" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = -2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mky" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/toy/deck/uno{ - pixel_x = 6; - pixel_y = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"mkN" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"mkP" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/item/storage/box/nade_box/tear_gas{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"mkS" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mkY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/area/almayer/hallways/lower/port_aft_hallway) +"mkU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"mlj" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"mlx" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"mlB" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/midship_hallway) +"mlG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/turf/open/floor/almayer/cargo, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 1"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) -"mlg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"mlx" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_p) -"mlA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; +"mlN" = ( +/obj/structure/machinery/vending/cola{ + density = 0; pixel_y = 16 }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"mlU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"mmb" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mmc" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"mmh" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/officer_study) +"mmk" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"mmp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"mlV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"mlW" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/obj/effect/landmark/map_item, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"mmq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"mmk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"mmu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mmy" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/starboard) +"mmG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/maint/hull/lower/l_m_p) "mmN" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -34305,128 +34408,80 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"mmO" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"mmP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"mmQ" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"mmX" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"mmZ" = ( +"mnj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"mnk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"mnw" = ( +/obj/structure/toilet{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mnb" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/shipboard/brig/perma) "mnA" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mnB" = ( -/obj/structure/closet/secure_closet/hydroresearch, -/obj/item/reagent_container/glass/watertank, -/obj/item/reagent_container/glass/watertank, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"mnC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"mnR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"mnD" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"mnH" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 }, -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"mnK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" +/area/almayer/living/auxiliary_officer_office) +"mnT" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"mnN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/shipboard/brig/medical) +"mok" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"mnZ" = ( -/obj/structure/bed/chair, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"mol" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"moq" = ( +/obj/structure/machinery/power/apc/almayer/south, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"moi" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) -"mom" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/midship_hallway) -"moo" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/port_fore_hallway) "mor" = ( /obj/structure/machinery/light{ dir = 8 @@ -34443,27 +34498,10 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"mow" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"mox" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"moz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" - }, -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) +"moA" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "moB" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/cells) @@ -34473,206 +34511,236 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"moV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"mpf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 +"moN" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"mpD" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"mpF" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ +/obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mpW" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"mpZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"mqb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"mqd" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"mql" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 +/area/almayer/maint/hull/lower/l_m_s) +"mpc" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell/cl) +"mph" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/weapon/gun/rifle/l42a{ - pixel_x = 17; - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"mpB" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"mqm" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/bed/chair/comfy/bravo{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"mpI" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"mpK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mqA" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"mqH" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"mqQ" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/wooden{ +/area/almayer/squads/alpha) +"mqc" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/tool/hand_labeler{ pixel_x = 4; - pixel_y = 6 + pixel_y = 11 }, -/turf/open/floor/almayer/plate, +/obj/item/storage/box/matches, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) -"mqX" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +"mqh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"mqV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) "mqZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"mrf" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"mrt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"mrq" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"mrz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/reagent_container/food/snacks/meatpizzaslice{ - pixel_x = -5; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"mrG" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"mrA" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/storage{ - pixel_x = 8; +/obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/lower/workshop/hangar) +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "mrJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"mrK" = ( +/obj/structure/bed/chair/comfy/charlie{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mrV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/ce_room) -"msa" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 +/area/almayer/living/briefing) +"mrN" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/perma) -"msc" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"msh" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/pilotbunks) -"mso" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"msq" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"msb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"mss" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"msy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"mse" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"msB" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 +/area/almayer/hallways/lower/port_umbilical) +"msf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" }, -/obj/structure/platform{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"msk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"msu" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/engineering/upper_engineering/starboard) +"msN" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering/port) +"msO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"msW" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"mtd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"mtf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) -"msN" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"mte" = ( -/obj/structure/disposalpipe/segment{ +"mtk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) "mtl" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution) +"mtm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "mto" = ( /obj/item/tool/mop{ pixel_x = -6; @@ -34680,69 +34748,41 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"mtp" = ( -/obj/structure/disposalpipe/up/almayer{ - id = "almayerlink_OT_req" - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) +"mtv" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) "mtH" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mtK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"mtO" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"muh" = ( +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"mtT" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/folded_tent/cmd, +/obj/item/flag/plantable/ua, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"muc" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) -"muj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"muk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) +"mug" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/engine_core) +"mul" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) "muq" = ( /obj/structure/bed/sofa/vert/grey/bot, /obj/structure/bed/sofa/vert/grey{ @@ -34750,118 +34790,197 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"mus" = ( -/obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"mut" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"muQ" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"muZ" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"mvb" = ( -/obj/structure/stairs{ - dir = 4 +"muT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-1"; + req_access = null }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"muU" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"mvf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mvp" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"mvB" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"mvE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"mvL" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"mvX" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"mvY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/bed{ + can_buckle = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"mwa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mww" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 +/obj/item/bedsheet/brown{ + layer = 3.1 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/mp_bunks) +"muV" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"mwz" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"mwA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"mwB" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"mwL" = ( +/area/almayer/maint/hull/lower/stern) +"muX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Chief Engineer's Bunk"; + no_panel = 1; + req_access = list(); + req_one_access_txt = "1;6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"muY" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mva" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"mvg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_stern) +"mvt" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mvz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Oxygen Supply Console" + }, +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"mvS" = ( +/obj/effect/landmark/start/pilot/cas_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"mvT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"mvU" = ( +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/small, +/obj/item/ammo_box/magazine/empty, +/obj/item/ammo_box/magazine/empty, +/obj/structure/machinery/door_control{ + id = "crate_room3"; + name = "storage shutters"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"mvV" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"mwc" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control/cl/office/evac{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/office/divider{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"mwg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"mwi" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"mwk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"mwo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/stern_point_defense) +"mww" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"mwA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"mwE" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/hallways/upper/midship_hallway) +"mwJ" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"mwL" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, /turf/open/floor/wood/ship, /area/almayer/living/chapel) +"mwP" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/powered/agent) "mwR" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down4"; @@ -34871,290 +34990,276 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"mxd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"mxe" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"mxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mxm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 +"mwV" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"mwY" = ( +/obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"mxn" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cic) -"mxo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/shipboard/brig/perma) +"mwZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mxJ" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"mxO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"mxX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"mye" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"mxa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"myf" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"myh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"mxe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/storage/donut_box{ + pixel_y = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"mxp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"mym" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"myt" = ( +/area/almayer/squads/alpha) +"mxq" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"mxR" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"myA" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"myi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"myj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"myI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"myK" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"myM" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"mys" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = -25 }, -/obj/structure/machinery/faxmachine/corporate/liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"myS" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi" +/obj/structure/sign/prop3{ + pixel_x = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"myW" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 +/obj/structure/machinery/faxmachine/uscm{ + department = "SEA" }, -/obj/structure/bed/chair/bolted, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/strata/faux_metal, +/area/almayer/shipboard/sea_office) +"myy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Research Armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"myX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E" }, -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"myY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"myF" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"myM" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/computerlab) +"myN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"mzc" = ( -/obj/structure/machinery/ares/substrate, -/turf/open/floor/almayer/no_build/test_floor4, +/turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"mze" = ( -/obj/structure/sign/safety/nonpress_0g{ +"myQ" = ( +/obj/structure/surface/rack, +/obj/structure/sign/safety/rewire{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"mzu" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/obj/effect/spawner/random/facepaint, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"myS" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 16; + pixel_y = 27 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"myU" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"myY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"myZ" = ( +/obj/structure/prop/almayer/missile_tube, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) "mzz" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/offices) "mzA" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "mzF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"mzX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/westright, +"mzN" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"mAd" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/lower/l_f_s) +"mAi" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"mAl" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "mAp" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "mAs" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"mAC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Remote dropship navigation computer"; - pixel_y = -12 +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"mAJ" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"mAI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"mAY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D3"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"mBg" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"mAS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" +/area/almayer/living/briefing) +"mBu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"mAW" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"mBD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"mBi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"mBl" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mBs" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/arcturianstopsign{ - pixel_y = 32 +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"mBI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mBt" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mBy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"mBB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/engineering/upper_engineering/port) "mBJ" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -35165,43 +35270,76 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"mBN" = ( -/obj/structure/platform{ - dir = 1 +"mBK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/obj/structure/platform{ - dir = 4 +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/terminal{ + pixel_x = -18; + pixel_y = -8 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = -18; + pixel_y = 6 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mBO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 1"; + name = "Containment Lockdown"; + pixel_x = -7; + pixel_y = 1; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_display/research_cell{ + id = "Containment Cell 1"; + name = "Cell 1 Control"; + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "mBU" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/s_bow) -"mCd" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"mCg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/sign/safety/storage{ +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"mBZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"mCk" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"mCc" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = 24 + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/evidence_storage) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) "mCo" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -35209,30 +35347,23 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"mCx" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"mCy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"mCs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"mCE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"mCt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"mCF" = ( +/obj/structure/machinery/alarm/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) "mCL" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -35240,140 +35371,91 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"mCQ" = ( -/obj/structure/toilet{ - dir = 8; - layer = 2.9; - pixel_y = 8 - }, -/obj/structure/window{ - layer = 2.95; - pixel_y = -2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/commandbunks) -"mCZ" = ( +"mCO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/living/briefing) -"mDe" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/cic) -"mDh" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 + dir = 9 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"mDm" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"mDs" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-6"; - req_access = null +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"mDa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"mDt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/area/almayer/squads/charlie) +"mDo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"mDJ" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"mDM" = ( /obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"mDN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"mDS" = ( -/obj/structure/machinery/door_control{ - id = "perma_lockdown_2"; - name = "Maint Lockdown Shutters"; - pixel_y = -20; - req_one_access_txt = "24;31" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_one) +"mDv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 +/obj/item/tool/kitchen/knife{ + pixel_x = 6 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mDI" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"mDJ" = ( /turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"mEe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/area/almayer/engineering/upper_engineering/starboard) +"mDQ" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Records" }, -/obj/item/tool/pen, -/turf/open/floor/almayer/no_build/plating, +/turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"mEn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"mEo" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) -"mEr" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/brown, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"mEz" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - access_modified = 1; - name = "\improper Senior Enlisted Advisor's Office"; - req_access = null; - req_access_txt = "19;29" +"mEa" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"mEA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"mEg" = ( +/obj/structure/machinery/cryopod/right{ + dir = 4; + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"mEq" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"mEB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = -8 +/area/almayer/maint/hull/lower/l_m_p) +"mEx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "mEE" = ( /obj/structure/platform{ dir = 4; @@ -35385,97 +35467,203 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"mEM" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northeast, -/area/space) -"mFa" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"mFi" = ( -/obj/item/stack/sheet/mineral/plastic{ - amount = 15 +"mEH" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"mEL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/tool/hand_labeler{ + pixel_x = -8; pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"mFs" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"mEW" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mFw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/area/almayer/shipboard/brig/perma) +"mEZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"mFi" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"mFk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"mFp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) -"mFI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"mFs" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"mFW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"mFx" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"mFz" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"mGb" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mFE" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"mFJ" = ( +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"mFP" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = -24; + req_one_access_txt = "91;92" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mFR" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"mFY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc02"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "mGe" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"mGm" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - closeOtherId = "brigmed"; - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3" +"mGf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"mGh" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mGr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"mGw" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"mGU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"mGx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"mGE" = ( +/obj/structure/bed/bedroll{ + desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; + name = "cat bed" + }, +/obj/structure/machinery/firealarm{ + pixel_x = -1; + pixel_y = 28 + }, +/mob/living/simple_animal/cat/Jones{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"mGH" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"mGQ" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"mGX" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/living/pilotbunks) +"mHd" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/storage/pouch/tools, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "mHx" = ( /obj/structure/bed/chair{ dir = 4 @@ -35485,43 +35673,43 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"mHJ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"mHz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"mHU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"mHF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"mHX" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"mIf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"mIc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/panic) +"mIm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/biolab{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"mIe" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) -"mIj" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) -"mIu" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) "mIy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -35532,51 +35720,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"mIA" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"mII" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"mIO" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) "mIR" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/sign/safety/terminal{ - pixel_x = -6; - pixel_y = -26 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 20; - pixel_y = -26 +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"mIS" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/upper/midship_hallway) -"mIZ" = ( -/turf/open/floor/almayer/orangecorner/east, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) -"mJf" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "mJi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35590,119 +35739,110 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/alpha) +"mJo" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) "mJu" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/cic) -"mJv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"mJA" = ( -/obj/effect/decal/cleanable/dirt, +"mJB" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"mJK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"mJT" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/constr) -"mJX" = ( +/area/almayer/maint/hull/upper/u_m_p) +"mJG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mJJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"mKe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ +/area/almayer/maint/hull/upper/u_f_s) +"mJM" = ( +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/upper/mess) -"mKn" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) "mKq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/bridgebunks) -"mKs" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +"mKC" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mKu" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/engine_core) -"mKE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"mKG" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/barricade/handrail{ dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" + layer = 3.3; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"mKU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Execution Room" +/obj/structure/barricade/handrail{ + dir = 8; + layer = 3.3; + pixel_x = -1; + pixel_y = 3 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/engineering/port_atmos) +"mKD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"mKQ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"mKR" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"mLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution) -"mKV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/greencorner/west, +/area/almayer/squads/req) +"mLj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"mLm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"mLn" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"mLw" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "mLF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35716,18 +35856,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"mLH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"mLN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) "mLR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35737,58 +35865,114 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"mMg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_stern) -"mMq" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Shutters"; - plane = -7 +"mLV" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"mMu" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 +/obj/item/tool/shovel/spade{ + pixel_x = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"mMy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"mMn" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"mME" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 +/area/almayer/engineering/upper_engineering/starboard) +"mMt" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"mMN" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - layer = 3.2; - pixel_x = 4; - pixel_y = 17 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -10; +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"mMv" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 6"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"mMA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mMB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"mME" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"mMG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mMT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/obj/item/reagent_container/food/snacks/grown/orange{ - layer = 3.3; - pixel_x = 1; - pixel_y = 13 +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 8; - pixel_y = -3 +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"mMX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"mMY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"mNj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) "mNm" = ( /obj/structure/platform{ dir = 8 @@ -35796,83 +35980,71 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) "mNo" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mNx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"mNE" = ( +/turf/closed/wall/almayer/aicore/white/hull, +/area/space) +"mNH" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"mNP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"mNA" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"mNM" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"mOe" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "mOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/airoom) -"mOy" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 +"mOk" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop/hangar) +"mOp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"mOC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"mOG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"mOJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) +/area/almayer/shipboard/brig/starboard_hallway) "mOQ" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"mOS" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 1; - name = "\improper Requisitions Storage" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "almayerlink_OT1_req" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) "mOT" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"mOY" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) "mPj" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -35883,20 +36055,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"mPl" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"mPm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) "mPn" = ( /obj/structure/bed/chair/office/dark, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35905,165 +36063,212 @@ /turf/open/floor/almayer, /area/almayer/command/cic) "mPq" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"mPt" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"mPz" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"mPD" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"mPE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 +/obj/item/storage/firstaid/regular, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"mPz" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"mPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"mQb" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"mQk" = ( +/area/almayer/maint/hull/upper/u_f_p) +"mPN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) -"mQm" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"mQn" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"mQp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"mPR" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/morgue) +"mQa" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 }, -/obj/structure/ladder/fragile_almayer{ - height = 1; - id = "kitchen" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mQb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"mQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"mQh" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"mQk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"mQt" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"mQv" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"mQC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"mQD" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"mQE" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"mQS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "south_central_checkpoint"; - name = "\improper Checkpoint Shutters" +"mQK" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"mQX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/item/tool/minihoe{ + pixel_x = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/item/tool/minihoe{ + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"mRq" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"mRt" = ( +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"mQS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mRa" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"mRc" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"mRd" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"mRg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mRq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/chief_mp_office) +"mRw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) -"mRI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mRy" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"mRG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"mRM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"mRQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mRV" = ( -/obj/structure/sign/safety/north{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "mRW" = ( /turf/open/floor/almayer/research/containment/corner1, /area/almayer/medical/containment/cell/cl) "mSb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"mSd" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 +/obj/item/storage/bag/trash{ + pixel_x = -3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"mSf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) "mSi" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 @@ -36071,72 +36276,77 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "mSj" = ( -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"mSm" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"mSx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"mSl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"mSm" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/obj/structure/machinery/computer/crew/alt{ - dir = 4; - pixel_x = -17 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"mSy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"mSE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = -5; + pixel_y = 7 }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mSG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"mSV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"mSO" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"mST" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mTc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/emails{ - dir = 4; - pixel_y = 2 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"mSV" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/dirty{ + pixel_y = 5 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) "mTd" = ( /obj/structure/machinery/smartfridge/chemistry{ pixel_x = -3; @@ -36144,178 +36354,193 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"mTg" = ( -/obj/structure/bed/chair, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"mTE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"mTf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"mTO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mTj" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/shipboard/brig/medical) -"mTR" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"mTt" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"mTu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mTB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"mTX" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"mTG" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-j2" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mTJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"mTZ" = ( -/obj/structure/bed/chair{ +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"mTU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"mUm" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"mUp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"mUc" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/cic) +"mUo" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/cic) +"mUu" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"mUB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mUu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"mUO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"mUS" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 + }, +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 }, /turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"mUw" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"mUH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/area/almayer/hallways/lower/repair_bay) +"mUU" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"mUI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"mUY" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) +"mVg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mUX" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"mVm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"mVa" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"mVp" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"mVA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/up/almayer{ - dir = 2; - id = "ares_vault_in"; - name = "aicore" +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"mVd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"mVL" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/command/lifeboat) +"mVX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) "mWh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"mWm" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"mWt" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +/area/almayer/maint/hull/lower/l_a_s) +"mWo" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"mWv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/hallways/hangar) +"mWq" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"mWH" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/starboard_missiles) -"mWO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mWL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"mWM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"mWU" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "mWV" = ( /obj/structure/bed/chair/comfy/blue, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36323,95 +36548,82 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"mWX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"mWY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"mWZ" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"mXc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"mXi" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/squads/alpha) "mXj" = ( /turf/closed/wall/almayer, /area/almayer/living/commandbunks) -"mXu" = ( -/obj/structure/machinery/smartfridge/chemistry{ - density = 0; - pixel_y = 16 +"mXo" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"mXz" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) "mXB" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor5, +/area/almayer/engineering/lower/engine_core) +"mXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/trash/popcorn{ + layer = 3.1; + pixel_x = -3; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mXI" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) "mXJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"mXN" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"mXQ" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/upper/u_m_s) "mXX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"mYd" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"mXZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"mYu" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/pilotbunks) "mYv" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -36420,105 +36632,65 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"mYx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/hydroponics) -"mYH" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +"mYL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"mYP" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + isopen = 1; + starting_helmet_type = null; + starting_mask_type = null; + starting_suit_type = null; + starting_tank_type = null }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"mYX" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"mZh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/area/almayer/engineering/upper_engineering/port) +"mYW" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"mZo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"mZD" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mZG" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"mZI" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/starboard_missiles) -"mZJ" = ( -/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ - dir = 4; - plane = -6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mZd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mZj" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"mZk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mZR" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"mZU" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"nab" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"mZX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"naj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"nae" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/upper/port) -"nai" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/engineering/port_atmos) -"nam" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) +"nak" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "nar" = ( /obj/structure/toilet{ dir = 4 @@ -36531,328 +36703,310 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"naw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 6 +"nav" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter/zippo, +/obj/item/toy/dice/d20, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 6 +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 }, -/obj/item/storage/box/handcuffs, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nay" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/living/offices) "naB" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/perma) -"naJ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"naP" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"naT" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"naY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"nba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"nbb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"naK" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nbn" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"nbs" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"nbt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"naO" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nbc" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/squads/charlie) +"nbC" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) +"nbP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"nbS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"nca" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 10 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/lower/port_fore_hallway) -"nbf" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower/engine_core) +"ncc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) -"nbk" = ( -/obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"nbp" = ( -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"nbv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/almayer/maint/hull/lower/p_bow) +"ncl" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/obj/structure/closet/secure_closet/brig/prison_uni, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"nco" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"nbw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"ncD" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ncW" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"nde" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"nbK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 5 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"ndi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D2"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"ncc" = ( -/obj/structure/bed/chair/comfy/bravo{ +/area/almayer/engineering/upper_engineering/starboard) +"nds" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"nce" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"ncs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"ncN" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"nde" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"ndq" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"ndA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ndE" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_access_txt = "25"; + req_one_access = null }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"ndF" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"ndB" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"ndD" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/window/reinforced{ dir = 4; - pixel_y = 13 + health = 80 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"ndG" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ndE" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"ndP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"ndK" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"ndN" = ( +/obj/structure/platform, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) "ndR" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"nea" = ( -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"ney" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair/comfy/bravo{ dir = 8 }, -/obj/structure/machinery/autodispenser{ - dir = 4 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"net" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/obj/item/book/manual/chef_recipes, +/obj/structure/sign/safety/coffee{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"nez" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"neA" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) "neE" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"neS" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +"neJ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"neX" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"neY" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext"; - name = "\improper Research Window Shutter" +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"neZ" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"neM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 }, -/obj/item/clipboard{ - pixel_x = 12 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"neS" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"neZ" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/upper/midship_hallway) "nfb" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"nft" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nfB" = ( -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_a_s) +"nfc" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/lower/l_m_s) +"nfh" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"nfi" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"nfC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Basketball Court" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"nfF" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"nfJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"nfP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/hallways/hangar) +"nfq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Weyland-Yutani Office" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"nft" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nfx" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"nfV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 +/obj/structure/machinery/computer/working_joe{ + dir = 4; + layer = 3.3; + pixel_y = 6 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"nge" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"nfE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/s_bow) +"nfQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) "ngl" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -36863,29 +37017,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"ngL" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"ngM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"ngS" = ( -/obj/structure/machinery/door_control{ - id = "or03"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"ngT" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "ngU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36893,34 +37024,39 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"ngX" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 +"nhf" = ( +/obj/structure/machinery/brig_cell/perma_1{ + pixel_x = 32 }, -/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"nhg" = ( +/obj/structure/largecrate/supply/floodlights, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ngY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"nhj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-1"; - req_access = null +/area/almayer/maint/upper/u_m_p) +"nhp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"nhs" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"nht" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"nhu" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "nhx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ @@ -36937,219 +37073,220 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nhA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"nhB" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) -"nhJ" = ( -/obj/structure/target, -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"nhL" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"nhO" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +"nhM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nhT" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "nhW" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/airoom) -"niw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"niB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"nid" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"nip" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"niI" = ( -/obj/structure/safe, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"niP" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"niU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"niE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"niH" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) "nja" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"njj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ +"njv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/briefing) -"njr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Officer's Bunks"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"njz" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/port_atmos) -"njv" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution_storage) -"njK" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 +/area/almayer/engineering/lower/engine_core) +"njG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"njH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"njN" = ( +/obj/structure/disposalpipe/up/almayer{ + id = "almayerlink_OT_req" + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"njR" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"nke" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "nkn" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nkp" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"nkt" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"nkv" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +"nld" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"nkz" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"nkE" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, +/area/almayer/maint/upper/u_a_s) +"nlk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"nll" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"nln" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"nlr" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"nlE" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"nkI" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"nkK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"nkL" = ( +/area/almayer/shipboard/brig/interrogation) +"nlG" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"nlJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"nkO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + icon_state = "SW-out"; + pixel_x = -1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"nlR" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"nlZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"nmm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"nmo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/upper_medical) -"nkR" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"nmv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/closet/bombcloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"nls" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"nly" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"nmI" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"nmO" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"nlM" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"nmy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"nmP" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating, +/area/almayer/command/airoom) +"nnl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"nmF" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"nnm" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"nno" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"nnw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"nnt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) "nny" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -37157,86 +37294,93 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nnN" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"nnA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"nnO" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"nod" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"non" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"noq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"noD" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 +/area/almayer/maint/hull/upper/u_f_s) +"nnC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/sign/safety/waterhazard{ + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"noE" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 7 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"nnH" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"noK" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"noR" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"nnI" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"nnK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/structure/sign/safety/ladder{ - pixel_x = -17 + pixel_x = -16 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/p_bow) -"noW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"nnL" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"nok" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"nol" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Brig Equipment" }, -/turf/open/floor/almayer/green/north, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/general_equipment) +"non" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"noy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"npg" = ( -/obj/structure/closet, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +"noz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "northcheckpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/area/almayer/living/briefing) +"noO" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) "nph" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -37244,106 +37388,91 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"npn" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +"npL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"npQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"npo" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"npq" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"npX" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"nqa" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 37; + req_one_access = null }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"npr" = ( +/area/almayer/living/auxiliary_officer_office) +"nqg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"nqo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"npy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"npK" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"npS" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/officer_study) -"npV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"nqp" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "nqq" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"nqs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"nqu" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/area/almayer/living/captain_mess) +"nqv" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nqw" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) "nqx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nqB" = ( -/obj/structure/closet/secure_closet/bar{ - name = "Success Cabinet"; - req_access_txt = "1" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"nqJ" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/faxmachine/uscm/command{ - density = 0; - department = "AI Core"; - pixel_y = 32 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"nqK" = ( -/obj/structure/machinery/light{ - dir = 4 +"nqz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"nqR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/hallways/lower/port_fore_hallway) "nqV" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -37354,245 +37483,239 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"nrb" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "Telecommunications"; - req_access_txt = "6" +"nqX" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"nrk" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"nrp" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"nrA" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"nrB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"nrH" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"nre" = ( -/turf/open/floor/almayer/bluecorner/north, +/area/almayer/command/cichallway) +"nsa" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) -"nrg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"nrh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = 24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"nrr" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"nrE" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nrI" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop) -"nrJ" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"nrS" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nrW" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) "nsc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"nsF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"nsd" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/midship_hallway) -"nsI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nsL" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"nsN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"nse" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"nsh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"nsO" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"nsv" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"nsX" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 +/area/almayer/living/gym) +"nsA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/filingcabinet{ - pixel_x = -8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nsJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"nsS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "nsY" = ( /turf/closed/wall/almayer, /area/almayer/living/port_emb) "ntj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/computerlab) -"ntI" = ( -/obj/structure/machinery/light{ +"ntk" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ntN" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; vector_x = -1; - vector_y = 100 + vector_y = 102 }, /turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"num" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"nuo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/hallways/lower/port_fore_hallway) +"nto" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nup" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"nuq" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"ntw" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"ntG" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"ntI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ntP" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ntV" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/maint/hull/lower/p_bow) +"nuo" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) "nuA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"nuF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"nuL" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) "nuN" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nva" = ( -/obj/structure/sign/safety/distribution_pipes{ +"nuQ" = ( +/obj/structure/sign/safety/life_support{ pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nvi" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0 +/area/almayer/hallways/upper/midship_hallway) +"nuR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"nvt" = ( /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"nvq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"nvw" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"nvx" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"nvI" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer/green/northwest, /area/almayer/squads/req) +"nvA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) "nvM" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -37601,13 +37724,21 @@ /turf/open/floor/plating, /area/almayer/medical/chemistry) "nvO" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"nvS" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"nvU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "nwb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -37617,179 +37748,165 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"nwE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 +"nwf" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nwI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nwM" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_p) +"nwN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"nwZ" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_four) +"nwP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"nwQ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"nxk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"nxc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"nxi" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"nxp" = ( +/area/almayer/engineering/lower/workshop/hangar) +"nxm" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"nxs" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"nxD" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"nxt" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/maint/upper/u_m_p) -"nxF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"nxG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"nxM" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nxL" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"nxS" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"nyg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"nyp" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"nxM" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"nyq" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"nxO" = ( +/area/almayer/living/starboard_garden) +"nyC" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/lighter, -/obj/structure/machinery/faxmachine/uscm, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"nxT" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit."; - icon_state = "delivery_engi"; - name = "Returns"; - pixel_x = 25; +/obj/structure/machinery/firealarm{ pixel_y = 28 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"nxX" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 }, -/obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"nyb" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"nyq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"nyF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/area/almayer/engineering/lower/workshop) "nyQ" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nzc" = ( -/obj/structure/toilet{ - dir = 8 +"nyT" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"nyY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "nzd" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"nzh" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) "nzu" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/shipboard/brig/medical) -"nzy" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"nzD" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"nzG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"nzJ" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/red/southeast, +/area/almayer/maint/upper/u_a_p) +"nzL" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "nzO" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/warning_stripes{ @@ -37802,187 +37919,169 @@ /turf/open/floor/almayer, /area/almayer/squads/req) "nzU" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"nzZ" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nAb" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"nAe" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"nAd" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + req_access = list(1) }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"nAk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"nAf" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) -"nAt" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"nAv" = ( /obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/obj/structure/platform{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"nAk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/starboard_hallway) +"nAl" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"nAz" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) -"nAJ" = ( -/obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"nAP" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"nAm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"nBk" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"nBA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"nAv" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"nBH" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"nBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"nBx" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"nBD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"nCc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/combat_correspondent) -"nCa" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 4"; - locked = 1; - name = "\improper Containment Cell 4" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell/cl) -"nCb" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) "nCf" = ( /obj/effect/landmark/start/marine/tl/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nCj" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"nCn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +"nCh" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nCs" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"nCz" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"nCV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"nCi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"nDf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"nDi" = ( -/obj/structure/machinery/light, +/area/almayer/hallways/upper/aft_hallway) +"nCj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"nCk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/orange, /area/almayer/squads/bravo) -"nDk" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"nCm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"nDm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"nCw" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"nCK" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_y = 29; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"nCR" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/hangar) +"nDa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/lower/starboard_fore_hallway) "nDo" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -37995,63 +38094,81 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"nDy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nDF" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"nDD" = ( -/turf/open/floor/almayer/orange/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"nDI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "nDM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) "nDN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Crew Chief's Room" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"nDR" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"nDO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"nDT" = ( -/obj/item/paper_bin/uscm{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"nDR" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; pixel_y = 7 }, -/obj/item/tool/pen, -/obj/structure/surface/table/reinforced/black, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"nEm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/maint/upper/u_f_p) +"nDT" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"nDU" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"nEd" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"nEf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) "nEo" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -38061,19 +38178,23 @@ /turf/open/floor/almayer, /area/almayer/squads/charlie) "nEt" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"nEx" = ( -/obj/effect/landmark/start/police, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"nEv" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) +"nEC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "nEF" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_1"; @@ -38081,57 +38202,63 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"nFn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 8 +"nFa" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"nFv" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/maint/hull/lower/l_f_p) +"nFC" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"nFH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "nFK" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nFN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) "nFO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"nFT" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/command/cic) +"nGb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Deck Waste Tank Control" }, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower) -"nFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nGf" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"nGe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "nGh" = ( /obj/structure/bed/chair{ buckling_y = 5; @@ -38143,710 +38270,608 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"nGj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"nGt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter, +/obj/structure/machinery/faxmachine/uscm, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"nGn" = ( -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/living/gym) -"nGw" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"nGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nGA" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"nGG" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"nGJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"nGR" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"nHd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/obj/item/book/manual/chef_recipes, -/obj/structure/sign/safety/coffee{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"nHo" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"nGP" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"nHw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nHD" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"nHe" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"nHE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"nIe" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 +/area/almayer/engineering/upper_engineering) +"nHi" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_med"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/obj/structure/machinery/xenoanalyzer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nHD" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"nIo" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 +"nHM" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"nHP" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/engine_core) +"nIi" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"nIq" = ( -/obj/structure/sign/safety/escapepod{ +/obj/structure/sign/safety/ladder{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_midship_hallway) -"nIs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + pixel_y = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"nIz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"nIA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"nIB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/u_m_p) +"nIs" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"nII" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"nIw" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"nIQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "nIS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/basketball) -"nIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen{ - pixel_y = -17 - }, -/obj/item/paper_bin/uscm{ - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"nJa" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"nJd" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/cryo_cells) -"nJe" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower/workshop/hangar) -"nJf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ +"nJb" = ( +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; pixel_x = -17 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"nJk" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"nJt" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"nJe" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "nJu" = ( /obj/item/newspaper, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nJz" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/lifeboat) -"nJE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"nJJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/workshop) +"nJS" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"nJV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"nJY" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"nJZ" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/lifeboat) +"nKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "nKe" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) "nKg" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"nKr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"nKl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"nKm" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) "nKs" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"nKu" = ( -/obj/structure/largecrate/random/case/double, +/area/almayer/medical/medical_science) +"nKA" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"nKv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"nLe" = ( -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 +/area/almayer/maint/hull/upper/s_bow) +"nKN" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/chief_mp_office) -"nLj" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nLm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/hallways/lower/vehiclehangar) -"nLC" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or04"; - name = "Operating Theatre 4" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"nLs" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_four) -"nLD" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"nLN" = ( +"nLC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "SW-out" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nLO" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"nLQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null +/area/almayer/maint/hull/lower/p_bow) +"nLD" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"nLE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"nMg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/hallways/lower/starboard_fore_hallway) +"nMr" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"nMJ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"nMh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"nMk" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"nMB" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"nMT" = ( +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_y = 32; + req_one_access_txt = "24;31" }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"nMF" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"nMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_y = 24; + req_access_txt = "3" }, -/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"nMW" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nMN" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/maint/hull/upper/p_stern) +"nNm" = ( +/obj/structure/safe/cl_office, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nNn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilottex{ + pixel_x = -7; + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"nMU" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"nNd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/living/pilotbunks) +"nNp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"nNf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"nNk" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"nNu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"nNs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"nNB" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"nNN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"nNx" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"nNW" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"nOd" = ( -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) +/area/almayer/shipboard/brig/mp_bunks) "nOf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES JoeCryo"; + name = "\improper ARES Synth Bay Shutters"; + plane = -7 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"nOk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"nOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"nOm" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"nOp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/medical/containment/cell/cl) "nOw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"nOx" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 4 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"nOz" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"nOy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"nOF" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"nOL" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"nOM" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) "nOT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Spare Bomb Suit"; + req_one_access = null; + req_one_access_txt = "35" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"nPk" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nOU" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"nPh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"nPq" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) "nPs" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"nPz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"nPQ" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"nPR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"nPW" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"nQe" = ( -/obj/structure/cargo_container/wy/mid, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 - }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +"nPw" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32; + pixel_y = -32 }, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 42 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"nPF" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nQp" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_a_p) +"nPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nQw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"nQB" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 +/area/almayer/engineering/lower/workshop/hangar) +"nPR" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"nQK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Brig Cells" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"nPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"nQR" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light, +/obj/structure/machinery/camera/autoname/almayer/brig, /turf/open/floor/almayer, -/area/almayer/engineering/lower) -"nQU" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ +/area/almayer/shipboard/brig/cells) +"nQe" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"nQp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"nQy" = ( +/obj/structure/sign/safety/security{ pixel_x = 32 }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"nQB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"nQD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ pixel_y = 32 }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"nRf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "\improper Pilot's Office"; - req_one_access_txt = "3;22;19" +/obj/structure/sink{ + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Alpha_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"nRj" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"nRr" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/golden_cup{ - desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; - pixel_x = -4; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nRy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"nQM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"nRG" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"nRL" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"nQP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"nRP" = ( -/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"nRa" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/mp_bunks) +"nRe" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nRt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"nRV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilottex{ - pixel_x = -7; - pixel_y = 13 +/area/almayer/hallways/lower/starboard_aft_hallway) +"nRA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"nRI" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/maint/upper/u_a_s) +"nRM" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"nRT" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"nRW" = ( +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "nRX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"nRY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +"nRZ" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"nSa" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/down/almayer{ - dir = 1; - id = "almayerlink" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"nSc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"nSd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/p_bow) +"nSn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nSd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) "nSt" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"nSu" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/plants{ - pixel_x = -3 - }, -/obj/item/storage/bag/plants{ - pixel_x = 3 +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/obj/item/storage/bag/plants{ - pixel_y = -3 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"nSx" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"nSD" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/item/tool/scythe, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nSF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "nSG" = ( /obj/structure/machinery/door_control{ id = "tcomms"; @@ -38859,33 +38884,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"nSL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "nSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"nTp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nTf" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"nTg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_aft_hallway) +"nTn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"nTr" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) +/area/almayer/hallways/hangar) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -38896,16 +38918,12 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"nTv" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"nTu" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nTA" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) +/area/almayer/living/auxiliary_officer_office) "nTH" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -38913,44 +38931,28 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nTJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) +"nTL" = ( +/turf/closed/wall/almayer/aicore/reinforced, +/area/almayer/command/airoom) "nTR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"nTS" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"nUe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"nUh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"nUi" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"nUl" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/sign/safety/west{ + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "nUn" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -38960,188 +38962,196 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "nUw" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"nUD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) -"nUK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"nUQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"nVf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 12; - pixel_y = -24 + dir = 10 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"nVr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"nVB" = ( -/turf/open/floor/almayer, -/area/almayer/command/securestorage) -"nVH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nVT" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"nVU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/area/almayer/hallways/lower/starboard_midship_hallway) +"nUz" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"nVV" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"nUC" = ( +/obj/structure/bed/chair/office/dark, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"nVg" = ( +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"nWe" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"nVx" = ( /obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 4 +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"nVB" = ( +/turf/open/floor/almayer, +/area/almayer/command/securestorage) +"nVO" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) +"nVZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"nWj" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/morgue) +"nWq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ - pixel_x = -4; - pixel_y = -4 +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = -4 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"nWH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"nWJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"nWi" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"nWM" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"nWl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"nWG" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/engineering/upper_engineering/port) "nWN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"nWO" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/sign/safety/high_voltage{ +"nWR" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; pixel_y = -32 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"nWS" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"nXg" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"nXa" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nXw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"nXc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "SE-out"; pixel_x = 2 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) -"nXJ" = ( -/obj/effect/decal/cleanable/blood/oil, +"nXd" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nXg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"nXh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"nXk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"nXl" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"nXs" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"nXt" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"nXv" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"nXC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop/hangar) -"nXK" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/vehiclehangar) -"nXT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 3 }, +/obj/item/clothing/head/helmet/marine, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) +/area/almayer/living/offices) +"nXT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "nYd" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -39151,97 +39161,45 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"nYe" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"nYo" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"nYr" = ( +"nYS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nYx" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null + icon_state = "N" }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"nYG" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"nYX" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"nYK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, +/area/almayer/maint/hull/lower/stern) +"nYY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"nYT" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"nYV" = ( -/obj/structure/machinery/microwave{ - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"nZl" = ( -/turf/open/floor/almayer/redcorner/north, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) -"nZr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"nZt" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +"nYZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) +"nZx" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -39250,90 +39208,142 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nZz" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"nZL" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_stern) -"nZE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"oaj" = ( -/obj/structure/machinery/door_control{ - id = "or02"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"oak" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"oal" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"oar" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"oaG" = ( -/obj/structure/machinery/light{ - dir = 1 +"nZN" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"nZP" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Nitrogen Control Console" +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nZX" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nZZ" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"oaa" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"oae" = ( /obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "southcheckpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/area/almayer/living/briefing) +"oag" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oaq" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"oav" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"oaD" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) "oaK" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "oaP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"oaU" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"obq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"obD" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"oaZ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"obm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"obn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 + icon_state = "SE-out" }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_aft_hallway) -"obL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"obu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"obH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"obK" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "obQ" = ( /obj/structure/bed/chair{ dir = 8 @@ -39341,126 +39351,77 @@ /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) "obT" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"ocb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"oce" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"och" = ( /obj/structure/machinery/door_control{ - id = "ROlobby1"; - name = "RO Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/line_nexter_control{ - id = "line1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "1;21" + id = "or03"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"ock" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"obX" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"ocn" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/cryo_cells) -"ocr" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/squads/alpha) +"obZ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"ocr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ dir = 4; - pixel_x = 12; - pixel_y = 13 + icon_state = "pipe-j2" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"ocL" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ocT" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/obj/structure/closet, +/obj/item/clothing/head/bearpelt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ocw" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"ocW" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" +/area/almayer/living/port_emb) +"ocU" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"odf" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"odi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"odh" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "odl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"odq" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"odr" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"odx" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"odI" = ( -/obj/structure/disposalpipe/segment{ +"odA" = ( +/obj/structure/bed/chair/bolted{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"odJ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"odG" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -39471,195 +39432,213 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"odO" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"odP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"odQ" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"oer" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/area/almayer/squads/delta) +"oeF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oei" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/area/almayer/squads/charlie) +"oeH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"oeS" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" + pixel_y = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"oem" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oer" = ( -/turf/closed/wall/almayer{ - damage_cap = 15000 +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/area/almayer/squads/delta) -"oeu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"oeE" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 25 +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"oeG" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"oeV" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/almayer/south, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"ofe" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" +"ofb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"ofp" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ofq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"ofB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"ofJ" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"ofO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/bridgebunks) +"ofv" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"ofQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"ofT" = ( +/area/almayer/living/numbertwobunks) +"ofz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ofI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"ofU" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 4; + dir = 8; name = "ship-grade camera" }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"ofX" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"ogr" = ( -/obj/structure/machinery/light{ +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"oge" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ogk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ogF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 16; - req_access_txt = "3" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = 16; - pixel_y = 8; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"ogR" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 28 + dir = 1; + id = "tc02"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = 23 }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"ogU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ogA" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"ogV" = ( +/area/almayer/living/starboard_garden) +"ogM" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"oha" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/squad_changer{ - pixel_x = -9 +/obj/structure/machinery/optable, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/computer/card{ - pixel_x = 9 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"oha" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"ohb" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ohk" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" +/area/almayer/maint/upper/u_a_s) +"ohd" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"ohh" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/squads/req) -"ohs" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"ohJ" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, +/area/almayer/living/auxiliary_officer_office) +"ohi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"ohq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"ohx" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_lobby) +"ohJ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) "ohL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39667,42 +39646,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"oin" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oiC" = ( -/obj/structure/platform{ - dir = 8 +"ohT" = ( +/obj/structure/ladder{ + height = 1; + id = "med2" }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"oiH" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"oiK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"oiM" = ( -/obj/structure/surface/rack{ +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"ohU" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"oig" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; - pixel_y = 16 + id = "engidorm"; + name = "\improper Privacy Shutters" }, -/obj/structure/surface/rack{ - layer = 2.5 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"oiA" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/orange/north, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) +"oiM" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"oiP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/offices/flight) "oiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39712,126 +39702,98 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"ojo" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"oju" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"ojB" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"ojD" = ( +"oiT" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"oje" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/port_midship_hallway) +"ojK" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ojN" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"ojQ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"ojT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"ojY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) "ojZ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"oke" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"okf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"okI" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"okK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"okN" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"olo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"olq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig/chief, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"olr" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"olE" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ +"okn" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"okr" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"okt" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; pixel_y = -32 }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"okG" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"okU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"olG" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -17; - pixel_y = 6 +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"okZ" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"olf" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -9 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + dir = 1; + name = "\improper Warden's Office" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"olH" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_lobby) -"olK" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"olg" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "olM" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -39857,101 +39819,120 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"olW" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, +"olS" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"omq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/medical/morgue) +"oma" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"ome" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"omm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "omt" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"omF" = ( -/obj/structure/machinery/light{ +"omJ" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"omI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "omK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"omN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"omM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ond" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"omU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/p_stern) +"oni" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"onl" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"ono" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"onw" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/faxmachine/uscm/command{ + density = 0; + department = "AI Core"; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"onx" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"onb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/starboard_garden) +"onz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"onf" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"onJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"onk" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/holohoop{ - density = 0; - pixel_y = 29 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, +/area/almayer/maint/hull/upper/s_bow) +"onK" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"onI" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +/area/almayer/shipboard/starboard_point_defense) "onN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -39964,26 +39945,19 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) "onP" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/starboard_hallway) -"onU" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"ooa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"ood" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"onS" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"oob" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "oog" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -39997,81 +39971,121 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"oon" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "almayerlink_med1_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) "oos" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"oot" = ( -/obj/structure/bed{ - can_buckle = 0 +"ooy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"ooG" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/medical) -"ooY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/medical_science) +"ooI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"opc" = ( -/obj/structure/machinery/light, +/area/almayer/hallways/upper/starboard) +"ooL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"opk" = ( +/area/almayer/living/pilotbunks) +"ooQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"ooV" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"ooX" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"opa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"opA" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "opD" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) +"opF" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 8 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) "opJ" = ( /obj/docking_port/stationary/emergency_response/external/port4, /turf/open/space/basic, /area/space) "opO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"opY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oqj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"oqi" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "oqr" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "oqv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -40081,29 +40095,22 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"oqy" = ( -/obj/structure/bed/chair/office/dark{ +"oqE" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/ce_room) +"oqO" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"oqz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oqF" = ( -/obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "oqS" = ( /obj/structure/toilet{ dir = 1 @@ -40119,58 +40126,69 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) "oqY" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/plasticflaps, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ort" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"orh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"orw" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/command/lifeboat) +"orx" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ory" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"orA" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/obj/item/storage/box/donkpockets{ - pixel_x = -4; - pixel_y = 19 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 16 +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"orN" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"orp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"ors" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) -"orC" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"orN" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"orV" = ( +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"orT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"orY" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) "osc" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /obj/structure/machinery/light{ @@ -40178,51 +40196,44 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"osd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 +"osh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"oso" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"osn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"osv" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"osB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"osH" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"osL" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"osD" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"osP" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -40231,740 +40242,465 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"osX" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 - }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ +"otf" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 + name = "ship-grade camera" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"otq" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"otd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/chief_mp_office) "otu" = ( /turf/closed/wall/almayer/research/containment/wall/connect_w, /area/almayer/medical/containment/cell) -"oty" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"otA" = ( -/obj/structure/machinery/door_control{ - id = "kitchen2"; - name = "Main Kitchen Shutters"; - pixel_x = -28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"otC" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"otH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) "otW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"oua" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"oul" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"oub" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ouu" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) "oux" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"ouy" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"ouA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) "ouB" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ouK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Engineering Reception" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"ouP" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"ouX" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"ouC" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/platform_decoration, -/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 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ovf" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ovg" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"ovx" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"ovD" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"ovI" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ovO" = ( -/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"ouJ" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"ouK" = ( +/obj/effect/landmark/late_join/working_joe, +/obj/effect/landmark/start/working_joe, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"ouP" = ( +/obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ovQ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +/area/almayer/engineering/lower/engine_core) +"ouU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"ovT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ovg" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; name = "ship-grade camera" }, -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"ovY" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/living/pilotbunks) -"owB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"owE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"owT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/pilotbunks) -"oxc" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"ovl" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/obj/structure/machinery/light, /turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"oxe" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ +/area/almayer/stair_clone) +"ovm" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/cic) +"ovq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"ovv" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"owa" = ( +/obj/structure/window/framed/almayer, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"oxh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/area/almayer/squads/charlie) +"owu" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"owB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/paper, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10; + pixel_y = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oxk" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"oxr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "oxu" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oxD" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"oxE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"oxy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"oxP" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"oxH" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) "oxU" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"oyh" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/engineering/upper_engineering) -"oyi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +"oxX" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"oya" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"oye" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/area/almayer/maint/upper/u_f_p) "oym" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"oyr" = ( -/obj/item/storage/box/matches{ - pixel_x = -11; - pixel_y = -3 +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"oyn" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 4 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"oyq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"oyt" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 }, /obj/item/clothing/glasses/disco_fever{ - pixel_x = -8; - pixel_y = 8 + pixel_x = 5; + pixel_y = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"oyN" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 +/area/almayer/maint/hull/upper/u_f_s) +"oyB" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"oyC" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"oyI" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"ozk" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext"; - name = "Window Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "28" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"oyN" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_x = -26; - pixel_y = 1; - req_access_txt = "28" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ozI" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ozM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/security{ dir = 2; - icon_state = "pipe-j2" + name = "\improper Interrogation" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"ozt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"ozS" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ozy" = ( +/area/almayer/maint/upper/u_m_s) +"ozW" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ozJ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"oAa" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + id = "Containment Cell 4"; + name = "\improper Containment Cell 4" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 4"; + locked = 1; + name = "\improper Containment Cell 4" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"ozL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"ozU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"oAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"oAp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/medical/containment/cell/cl) +"oAo" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"oAy" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"oAr" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"oBc" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oAv" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"oAw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/captain_mess) -"oAF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/engineering/lower/workshop) +"oBr" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 3; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/vending/snack{ + pixel_x = -18; + pixel_y = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oAL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/briefing) -"oAU" = ( -/obj/structure/machinery/light/small{ +/area/almayer/living/grunt_rnr) +"oBu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/obj/structure/closet/crate, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 4"; + name = "\improper Courtyard Divider" }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"oAY" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"oBD" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oBg" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/area/almayer/hallways/lower/starboard_fore_hallway) +"oBE" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"oBF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"oBG" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"oBV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"oCa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"oCn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/port) -"oBi" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"oBm" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_two) -"oBn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ +"oCu" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/command/cic) -"oBt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"oCx" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"oBu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"oBv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"oCF" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"oCG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"oBz" = ( -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"oCS" = ( +/turf/open/floor/almayer/bluecorner/east, /area/almayer/hallways/lower/port_midship_hallway) -"oBN" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"oDb" = ( +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"oDd" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"oDJ" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"oBQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Rest and Relaxation Area" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"oDN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"oBW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"oCe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) -"oCj" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet, -/obj/item/clothing/head/bearpelt, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"oCk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel{ - pixel_x = -1; - pixel_y = 10 + pixel_y = -29 }, -/obj/item/stack/cable_coil{ - pixel_x = 8; +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"oDP" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"oDQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.01; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"oCD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, /turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"oCN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "line2"; - pixel_x = -4; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/door_control{ - id = "ROlobby2"; - name = "RO Line 2 Shutters"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/item/paper_bin/uscm{ - pixel_y = -4 - }, -/obj/item/tool/pen{ - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"oCO" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" - }, +/area/almayer/hallways/upper/starboard) +"oDV" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"oCR" = ( +/area/almayer/powered/agent) +"oEd" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"oCY" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"oEm" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"oDo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"oDp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"oDA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"oDI" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"oDJ" = ( -/obj/item/clothing/head/helmet/marine{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/grown/poppy, -/obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"oDW" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"oEb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/port_missiles) +/area/almayer/maint/hull/upper/u_a_s) "oEo" = ( /obj/effect/landmark/start/marine/medic/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"oEv" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 +"oEq" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"oEr" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) "oEw" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -40990,71 +40726,97 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) "oEN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"oEU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"oFe" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"oFg" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"oFq" = ( +/area/almayer/shipboard/brig/armory) +"oEO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"oEP" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"oEQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"oFd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"oFe" = ( +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"oFp" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_f_p) +"oFu" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "oFx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/basketball) -"oFy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"oFE" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"oFA" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/tomatoseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"oFF" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"oFQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"oFO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oFT" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "oFV" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -41063,224 +40825,201 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) "oFW" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer/orange/northeast, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) "oFY" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"oGe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"oGv" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"oGd" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"oGh" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"oGj" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"oGk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/chief_mp_office) +"oGs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oGA" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "oGC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oGG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - dir = 1; - name = "\improper Engineering Bunks" +"oGF" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"oGU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"oHq" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/cabinet, -/obj/item/clipboard, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/briefcase, -/obj/item/reagent_container/spray/pepper, -/obj/item/device/eftpos{ - eftpos_name = "Weyland-Yutani EFTPOS scanner" - }, -/obj/item/device/portable_vendor/corporate, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oHr" = ( +/area/almayer/squads/charlie) +"oGL" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"oGZ" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/stamp/ro{ - name = "spare requisitions officer's rubber stamp"; - pixel_x = -7; - pixel_y = 11 +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"oHv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 5 +/obj/structure/phone_base/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" }, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"oHz" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"oHA" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/command/cic) +"oHa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"oHF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oHh" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"oHm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oHn" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"oHA" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"oHI" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"oHJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, +/area/almayer/maint/upper/u_m_s) +"oHG" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"oHL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"oHM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"oHP" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"oHR" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"oHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/area/almayer/living/cafeteria_officer) +"oHO" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"oHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"oIq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"oIg" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, +/area/almayer/maint/hull/lower/l_f_p) +"oIy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"oIh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"oIt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) +/area/almayer/engineering/lower/workshop) "oIB" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) -"oIE" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper +"oIH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"oIF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/mob/living/silicon/decoy/ship_ai{ + layer = 2.98; + pixel_y = -16 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oIL" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"oIS" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"oIT" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"oIK" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/squads/charlie) +"oJa" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oIN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"oJb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"oIQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"oJl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"oIZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"oJn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"oJo" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "oJp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -41292,155 +41031,258 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"oJA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ +"oJw" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"oJB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"oJH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"oJL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oJz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oJD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/chief_mp_office) -"oJP" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"oJH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"oJO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"oJZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"oKu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"oKC" = ( +/obj/structure/machinery/sleep_console{ dir = 8 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"oJU" = ( -/obj/item/mortar_kit, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"oKr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"oKs" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"oKw" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"oKz" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/shipboard/brig/medical) +"oKD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"oKG" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/lobby) -"oKM" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) -"oKP" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) -"oKS" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"oKW" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; - pixel_y = 1 + pixel_y = 2 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"oKJ" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"oKK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oKV" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"oLb" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"oLc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"oLh" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"oLp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"oLD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"oLH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"oLK" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/midship_hallway) +"oLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"oLX" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"oLY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"oMq" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"oLW" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"oMr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"oMa" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 8 }, -/obj/structure/window/reinforced{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"oMF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ dir = 4; - health = 80 + pixel_y = 12 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Remote dropship navigation computer"; + pixel_y = -12 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) "oMQ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oMR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"oNg" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" +"oMW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"oNf" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_1"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) "oNj" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -41449,938 +41291,958 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"oNk" = ( -/obj/structure/machinery/power/apc/almayer/east, +"oNo" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/bombcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"oNC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/area/almayer/engineering/lower/workshop/hangar) +"oNw" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oNF" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"oNI" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"oOb" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"oOg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"oOm" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 4"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell/cl) +"oOG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"oNK" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"oOI" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "SE-out" }, -/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"oNO" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 +/area/almayer/squads/delta) +"oON" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"oNT" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"oNX" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"oOd" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"oOQ" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"oOe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; pixel_y = 10 }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - name = "brig cameras console"; - pixel_y = -11 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"oOg" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/red/southeast, -/area/almayer/maint/upper/u_a_p) -"oOA" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"oOD" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"oOL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/obj/item/storage/firstaid/rad, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower) -"oOW" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"oPb" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"oOR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oPa" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "oPf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"oPn" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +"oPg" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "oPp" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"oPr" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) -"oPs" = ( -/obj/item/frame/light_fixture{ - anchored = 1; - desc = "A broken fluorescent tube light."; - dir = 8; - icon_state = "tube-broken"; - name = "broken light fixture" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"oPq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"oPJ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"oPO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"oPR" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) +"oQt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"oPw" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/silver/north, +/area/almayer/living/officer_study) +"oQu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"oPV" = ( +/area/almayer/maint/upper/u_a_p) +"oQv" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oRa" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"oRn" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 6 }, -/turf/open/floor/almayer/sterile_green_side/southeast, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) -"oQa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"oQr" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +"oRo" = ( +/obj/structure/bed/chair{ dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"oQx" = ( -/obj/structure/machinery/cm_vending/clothing/marine/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/gym) -"oQy" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/obj/item/prop/magazine/book/bladerunner{ - pixel_x = -1; - pixel_y = 9 + pixel_y = 3 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oQz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"oQD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/squads/delta) +"oRp" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"oQS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/u_a_s) +"oRt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oRu" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"oQU" = ( /turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"oQV" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"oRg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/lifeboat_pumps/south1) +"oRP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"oRo" = ( -/obj/structure/reagent_dispensers/fueltank, /obj/structure/sign/safety/fire_haz{ - pixel_x = 7; + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"oRx" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oSi" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"oSk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"oRB" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"oSq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel" }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"oSt" = ( +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"oRE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/area/almayer/shipboard/brig/processing) +"oSy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"oRG" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"oSB" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - layer = 2.99; - pixel_y = 19 +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - layer = 2.99; - name = "brig cameras console"; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"oRM" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"oRX" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 10 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"oSf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 9; + pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"oSk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/ashtray/plastic{ + pixel_y = -4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"oSq" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel" +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"oSu" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"oSG" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"oSI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"oSA" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"oSJ" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"oSN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oSO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"oSQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"oSC" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"oSJ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"oST" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oTd" = ( -/obj/structure/machinery/scoreboard_button{ - id = "basketball"; - name = "Scoreboard Reset Button"; - pixel_x = -20 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"oTi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"oTp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"oTr" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"oTs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/weapons/m39{ + pixel_x = 2 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/largecrate/supply/weapons/m41a{ + layer = 3.1; + pixel_x = 6; + pixel_y = 17 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "oTt" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"oTC" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "oTF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/living/briefing) "oTI" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/bravo) -"oTN" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"oTS" = ( -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"oUg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"oTT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"oUo" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"oUs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"oTX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"oUm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/item/storage/firstaid/o2{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"oUn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 }, -/obj/item/storage/firstaid/fire{ +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"oUr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"oUs" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"oUu" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"oUF" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = 6 + pixel_y = -32 }, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = -2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"oUI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"oUM" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"oUO" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"oUX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"oUy" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"oUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"oUE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oUT" = ( -/turf/open/floor/almayer/emeraldcorner/west, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/cic) -"oVc" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) "oVj" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"oVm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"oVs" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/lifeboat) +"oVp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, /turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/engineering/upper_engineering/port) +"oVx" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"oVC" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) "oVE" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"oVZ" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 1; - vent_tag = "Records" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"oVI" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"oWu" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"oVR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"oWy" = ( +/area/almayer/engineering/lower/workshop) +"oVX" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"oWc" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + indestructible = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"oWh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"oWC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/morgue{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"oWu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"oWS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"oWK" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oWT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/living/captain_mess) +"oWQ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"oWS" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/upper/u_f_s) "oXb" = ( /obj/effect/landmark/start/marine/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"oXg" = ( +"oXi" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"oXo" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "oXp" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"oXv" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, +"oXs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"oXx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"oXV" = ( +/area/almayer/living/grunt_rnr) +"oXA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"oXC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"oXE" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 8 }, -/obj/item/folder/white{ - pixel_x = 6 +/obj/structure/phone_base/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -4; + pixel_y = 6 }, -/obj/item/storage/fancy/vials/empty{ - pixel_y = 10; - start_vials = 2 +/obj/item/device/toner{ + pixel_x = -2; + pixel_y = -11 }, -/obj/item/tool/pen{ - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"oXO" = ( +/obj/structure/bed, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"oXR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"oXZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) "oYa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"oYj" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oYc" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oYm" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"oYw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black{ + pixel_y = 8 }, -/obj/item/bedsheet/brown{ +/obj/item/folder/yellow, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"oYC" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"oYr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"oYs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"oYy" = ( -/obj/structure/reagent_dispensers/acidtank, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"oYM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"oYO" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/almayer/engineering/upper_engineering/port) +"oYG" = ( +/obj/structure/phone_base/rotary{ + name = "CL Office Telephone"; + phone_category = "Offices"; + phone_id = "CL Office" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"oYV" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/manipulator/nano{ - pixel_y = -9 +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"oYN" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"oYS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = 4; - pixel_y = 15 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"oZb" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = 25 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"oZf" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oZe" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"oZg" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"oZi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/area/almayer/maint/hull/lower/l_f_s) +"oZA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"oZj" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"oZF" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"oZB" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"oZE" = ( -/turf/open/floor/almayer_hull/outerhull_dir/north, -/area/space) -"oZL" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"oZN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - name = "\improper Brig Cells" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"oZJ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/mp_bunks) +"pal" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"oZP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/toy/deck, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/offices/flight) +"pam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"pah" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"pas" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"pao" = ( /obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/bedsheetbin{ - pixel_x = 26; - pixel_y = 5 +/obj/structure/mirror{ + pixel_x = -29 }, -/obj/item/tool/soap/syndie, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"paH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/living/commandbunks) +"paz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"paB" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" }, -/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"paT" = ( -/obj/structure/machinery/light{ +/area/almayer/command/cichallway) +"paE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/sign/safety/bridge{ + pixel_y = 32 + }, +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "paW" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/phone_base/rotary{ - name = "AI Reception Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Reception" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"paX" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"pbf" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"pbe" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + density = 1; + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "pbA" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"pbH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"pbS" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/item/clothing/head/ushanka{ + layer = 3.3 }, -/turf/open/floor/almayer/plate, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"pbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"pcr" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) -"pci" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"pcw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"pcy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_aft_hallway) -"pcz" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"pcR" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/pilotbunks) -"pcT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"pdd" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"pdf" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/tapes{ - pixel_x = 7; - pixel_y = 6 +"pcI" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/obj/item/storage/box/tapes{ - pixel_x = -6; - pixel_y = 6 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/storage/box/tapes{ - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"pcM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"pdA" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pdI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/lower/starboard_fore_hallway) +"pdc" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"pdK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"pdL" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"pdS" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/hallways/lower/starboard_midship_hallway) +"pdM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/obj/structure/target{ + name = "punching bag" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"pez" = ( -/obj/structure/bed/chair/comfy{ +/area/almayer/living/gym) +"pek" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"peE" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"peo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"pep" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"peM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/area/almayer/maint/hull/lower/l_a_p) +"pes" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"peY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"peD" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"peN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"peS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"peT" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower) "pfa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -42388,38 +42250,25 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) "pfb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"pfi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Garden" +/area/almayer/living/pilotbunks) +"pfl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"pfq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"pft" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/upper/fore_hallway) -"pfw" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-6"; - req_access = null +/area/almayer/maint/hull/lower/l_m_s) +"pfo" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/autolathe, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"pfK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) +/area/almayer/medical/hydroponics) "pfM" = ( /obj/structure/machinery/light{ dir = 4 @@ -42429,358 +42278,446 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"pfZ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"pfQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"pgc" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"pfU" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"pgy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/area/almayer/maint/lower/s_bow) +"pgl" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/gym) +"pgB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "pgD" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south1) -"pgG" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"pgJ" = ( -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/beret/cm, -/obj/item/clothing/head/beret/cm, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"phb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"phd" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, -/area/almayer/command/airoom) -"phl" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"phs" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"phx" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"phy" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"phF" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"pgI" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"pgK" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"phH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"phI" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"phh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"phL" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/emeraldfull, +/obj/structure/machinery/door_control{ + id = "north_central_checkpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"phR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +"phi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 3"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"phY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"phZ" = ( -/obj/structure/filingcabinet, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 +/area/almayer/hallways/lower/port_midship_hallway) +"pho" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"pia" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pij" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"phw" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/safety/life_support{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"piy" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 +/area/almayer/maint/hull/upper/u_a_s) +"phx" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"phz" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"piF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"phU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"piN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"phX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/command/cic) +"pid" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"piq" = ( +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/living/briefing) +"pis" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"piu" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"piC" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"piV" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell/cl) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"piQ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) "pje" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"pjk" = ( +"pjx" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"pjy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"pjL" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"pjO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"pjT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"pjY" = ( +/obj/structure/largecrate/random/mini/small_case/b{ pixel_x = 8; - pixel_y = 32 + pixel_y = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"pjn" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/officer_study) -"pjp" = ( +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"pkb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"pkg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"pjx" = ( +/area/almayer/squads/alpha) +"pki" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"pkj" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"pkH" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"ple" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"plm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "SW-out" }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"pjC" = ( -/obj/structure/machinery/photocopier{ - density = 0; - layer = 2.9; - pixel_x = -3; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pls" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 }, -/obj/structure/sign/safety/cryo{ - pixel_x = -19; - pixel_y = 5 +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"plA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pme" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/obj/structure/bed/chair{ - can_buckle = 0; +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; - pixel_x = 2; - pixel_y = 6 + pixel_x = -17 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) -"pjK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"pmu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"pmz" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"pmI" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"pnc" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"pnn" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, +/obj/item/tool/hand_labeler, /turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"pjQ" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"pjR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/medical/chemistry) +"pnA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"pnK" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"pnU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"poj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"pjZ" = ( -/obj/structure/machinery/cm_vending/clothing/military_police_warden, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"pkd" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/command/cic) -"pkr" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"pol" = ( +/obj/structure/bed/chair/office/dark{ dir = 8; - name = "ship-grade camera" + layer = 3.25 }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"poG" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"poO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"ppd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"ppe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pkt" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"ppf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"pkx" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ppn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ppt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"ppB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"pkC" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/carrotseed, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/green/northwest, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) -"pkQ" = ( -/obj/effect/landmark/yautja_teleport, +"ppF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"pkX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 +/area/almayer/living/bridgebunks) +"ppG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"plf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/area/almayer/hallways/lower/repair_bay) +"ppH" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"plm" = ( -/obj/structure/closet/secure_closet/warrant_officer, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"plq" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"plG" = ( -/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ppK" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 @@ -42789,356 +42726,114 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"pql" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"plR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_container/food/drinks/cans/souto, -/obj/item/reagent_container/food/snacks/margheritaslice{ - desc = "A slice of classic pizza ruined by the corps."; - name = "dirty margherita slice"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8 - }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/stack/medical/ointment{ - layer = 3.5; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 7 - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"plX" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/folder/black_random, -/turf/open/floor/almayer/plate, +"pqp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"pqw" = ( +/turf/open/floor/almayer/bluecorner/north, /area/almayer/living/offices/flight) -"pma" = ( -/obj/effect/decal/cleanable/dirt, +"pqz" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"pqB" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"pmn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"pms" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"pmF" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"pmJ" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/basketball) -"pmS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"pnc" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"pnu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"pnw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"pnx" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - layer = 3.3 - }, -/obj/item/desk_bell/ares{ - anchored = 1; - pixel_x = -5; - pixel_y = 14 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"pny" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"pnG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"pnN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) -"pnO" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"pqF" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"pqL" = ( +/obj/structure/sink{ dir = 4; - health = 80 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"pnS" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pnV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" + pixel_x = 11 }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"poc" = ( /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"poe" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"poi" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/shipboard/brig/perma) +"pqX" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"pos" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"poy" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"poD" = ( +/turf/open/floor/almayer, +/area/almayer/living/gym) +"pqY" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"pqZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"poI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"prf" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"prp" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"pru" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"poJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"prC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"prF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "SE-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"poS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - access_modified = 1; - dir = 2; - name = "\improper Chief Engineer's Office"; - req_one_access = null; - req_one_access_txt = "1;6" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"prO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"prU" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"ppe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"ppp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"ppR" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ppV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"pqd" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"pqj" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"pql" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"pqE" = ( -/obj/structure/barricade/handrail/medical{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"pqF" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/cigarbutt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"pqH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/upper_engineering) -"pqX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"prh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"pro" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"prD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"prH" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +"prW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/card{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + pixel_x = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) "prY" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray, @@ -43146,75 +42841,35 @@ /obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"psj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"pst" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +"pso" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"psE" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"psH" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"psN" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southwest, -/area/space) -"psP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"psX" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer4" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"psM" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue Processing"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"ptk" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pto" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"ptq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/medical/morgue) +"ptb" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"ptd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -43222,149 +42877,109 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"ptH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 +"ptF" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) "ptK" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) -"ptM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ptN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"ptT" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/briefing) -"puf" = ( -/obj/item/device/camera{ - pixel_x = 4; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"ptP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/cups{ + pixel_x = -6; pixel_y = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/obj/item/device/camera_film, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"puh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"ptW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"pui" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/engineering/lower/workshop/hangar) +"ptX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"puc" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) "pun" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"puo" = ( -/obj/structure/sign/safety/rewire{ - layer = 2.4; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = 7 +"puy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"puz" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"pup" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"puq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"pus" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"puu" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) +/area/almayer/shipboard/panic) "puI" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"puL" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) "puO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"puU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"pva" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"pve" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"pvf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"pvb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/shipboard/brig/medical) +"pvg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "pvh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/item/tool/warning_cone{ @@ -43374,998 +42989,957 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"pvi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"pvm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) "pvp" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"pvx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"pvB" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pvD" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/fridge/groceries/stock, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"pvS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"pwd" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 +/area/almayer/hallways/hangar) +"pvq" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"pwg" = ( -/obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"pwj" = ( -/obj/effect/landmark/start/police, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"pwl" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, +/area/almayer/living/bridgebunks) +"pvr" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"pwn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/almayer/maint/hull/lower/l_f_p) +"pvs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"pwr" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"pvG" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pwu" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/chemistry) -"pwv" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"pwG" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Field Surgery Equipment"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, +/area/almayer/hallways/lower/starboard_umbilical) +"pvX" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/boonie, +/obj/item/trash/chunk/hunk, +/obj/item/trash/crushed_cup, +/obj/item/trash/uscm_mre, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"pwI" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/flare, -/obj/item/mortar_shell/flare, -/turf/open/floor/almayer/cargo, /area/almayer/squads/req) -"pwS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, +"pwa" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pwb" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"pwj" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"pwk" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"pwT" = ( -/obj/structure/machinery/light{ +/area/almayer/command/cic) +"pww" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"pwB" = ( +/obj/structure/bed/chair{ dir = 8 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"pwC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"pwS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"pwV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"pxC" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"pxc" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/chemistry) "pxG" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"pxH" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"pxL" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pye" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"pyf" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) +"pxW" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) "pyj" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"pyk" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"pyo" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +"pyp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"pyz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/closet, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"pyu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"pyG" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"pyQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_missiles) -"pyH" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/living/offices) +"pyV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pyM" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"pyR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"pyX" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"pzf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"pyY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"pzj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"pzq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"pzv" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"pzw" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/area/almayer/living/auxiliary_officer_office) +"pzy" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/obj/structure/machinery/part_fabricator/dropship, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"pzE" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 +/area/almayer/hallways/lower/repair_bay) +"pzB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/hangar) "pzM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"pzS" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"pzU" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"pAd" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/engine_core) +"pAg" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"pzW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/area/almayer/hallways/lower/port_umbilical) +"pAo" = ( +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"pAg" = ( -/obj/structure/largecrate, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 1; +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -10; pixel_y = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"pAr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pAK" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"pAL" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"pAP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 4; + pixel_y = 9 }, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/item/weapon/broken_bottle{ + layer = 4.51; + pixel_x = 9; + pixel_y = 1 }, -/obj/item/tool/soap, -/obj/structure/machinery/light{ +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pAv" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"pAz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pAA" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"pAJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"pAV" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +/obj/structure/platform{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"pBv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/area/almayer/hallways/hangar) +"pAK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"pAL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"pBF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"pBP" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"pBS" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"pBX" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"pBZ" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"pCb" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"pCd" = ( -/obj/structure/bed{ - can_buckle = 0 +"pBa" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"pBd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/window/reinforced{ +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"pBe" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"pBh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"pBi" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"pBk" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"pBo" = ( +/obj/structure/bed/chair{ dir = 8; - layer = 3.3; - pixel_y = 4 + pixel_y = 3 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"pBr" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"pBA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"pBF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) -"pCe" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"pBM" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"pCt" = ( +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/shipboard/weapon_room) +"pBR" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"pCe" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/execution) +"pCj" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"pCA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"pDk" = ( +/area/almayer/engineering/lower) +"pCl" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"pCu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"pCE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"pCP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"pCZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"pDj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"pDk" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"pDv" = ( -/obj/structure/machinery/door_control{ - id = "tcomms_apc"; - name = "Telecommuncation Power"; - pixel_x = -25 +"pDx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 8; + pixel_y = -12 }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Remote dropship navigation computer"; + pixel_y = 12; + shuttleId = "dropship_alamo" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"pDG" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"pDF" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha_bravo_shared) +"pDP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) "pDQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"pDS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"pEa" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"pEk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"pEz" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) +/area/almayer/hallways/lower/port_aft_hallway) +"pEn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"pEx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) "pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"pEZ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"pEN" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pER" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"pFc" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"pES" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pET" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"pFd" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "pFh" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "pFk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/offices/flight) -"pFp" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"pFt" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/hallways/upper/midship_hallway) -"pFz" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pFE" = ( +/area/almayer/living/port_emb) +"pFp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"pFF" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"pFy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"pFX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = -28 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/clothing/glasses/hud/health, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"pFJ" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ +/area/almayer/command/cic) +"pGd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"pGm" = ( +/obj/structure/window/reinforced{ dir = 8; - name = "ship-grade camera" + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"pGo" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"pGv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"pFO" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"pFT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"pFX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/hull/lower/l_m_s) +"pGB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"pGC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = -6 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"pFZ" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"pGc" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/storage{ - pixel_x = 33; - pixel_y = -1 +/obj/item/tool/pen/blue{ + pixel_x = -6 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"pGH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"pGr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"pGI" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"pGA" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"pGI" = ( +/area/almayer/hallways/lower/starboard_umbilical) +"pGR" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 5; + pixel_y = 14 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"pGS" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) +/obj/item/attachable/bayonet{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) "pGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"pGX" = ( +"pGY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"pHc" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"pGZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/upper_medical) -"pHj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/upper/u_m_s) +"pHi" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"pHl" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lockerroom) "pHp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) -"pHr" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "pHs" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Computer Lab"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"pHv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"pHy" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_three) -"pHw" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) "pHA" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"pHC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +"pHD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "pHE" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "pHF" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"pIa" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/s_bow) +"pId" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"pIi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + layer = 3.3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"pIq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) +"pIE" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"pHP" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"pHS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"pIG" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or4privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"pHV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pIg" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"pIL" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/space) +"pIP" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering) +"pIT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"pIo" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"pIw" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pID" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/living/tankerbunks) "pIV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"pIW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"pJe" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "E" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pJb" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/hallways/hangar) +"pJg" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"pJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"pJm" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "pJp" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"pJq" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/stairs) -"pJw" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"pJA" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/engineering/upper_engineering) +"pJu" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"pJy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"pJF" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"pJU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +/area/almayer/hallways/hangar) +"pKh" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/cryo_cells) +"pKj" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"pKl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"pKu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"pJY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"pKt" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/frame/table/wood/poor, -/obj/item/frame/table/wood/poor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"pKu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"pKv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/obj/structure/mirror{ - pixel_x = 28 +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pKz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"pKB" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"pKD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"pKA" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pKK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "pKQ" = ( -/obj/structure/platform{ - dir = 1 - }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) -"pLa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pLw" = ( -/obj/structure/sign/poster/music{ - pixel_x = -27 - }, +"pLh" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/item/tool/pen{ - pixel_x = 3; - pixel_y = -4 +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 20 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) -"pLN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"pLy" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"pLE" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -44381,28 +43955,50 @@ }, /area/almayer/medical/containment/cell) "pLR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"pLV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pLY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"pMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"pMC" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"pMl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "pMF" = ( -/obj/structure/machinery/prop{ - desc = "It's a server box..."; - icon_state = "comm_server"; - name = "server box" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"pMG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/perma) "pMJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -44412,234 +44008,292 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"pMM" = ( -/obj/structure/platform_decoration{ - dir = 4 +"pMO" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"pMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"pNv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, +"pMQ" = ( +/turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"pNB" = ( -/obj/structure/machinery/light{ +"pMW" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pNK" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"pNU" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"pOd" = ( -/obj/structure/closet/secure_closet/fridge/meat/stock, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"pOe" = ( +/area/almayer/living/numbertwobunks) +"pNf" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"pOg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"pNs" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"pOi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"pOk" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"pOl" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 +/obj/item/clipboard{ + pixel_x = 12 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"pOm" = ( -/obj/structure/barricade/plasteel/metal{ - dir = 1 +/obj/item/tool/pen{ + pixel_x = 12 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"pOo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering/starboard) -"pOC" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/sign/ROcreed{ + pixel_y = 30 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"pOF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/item/device/flashlight/lamp{ + pixel_y = -11; + pixel_x = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"pOJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"pOO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Officer's Study" +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"pNv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"pOQ" = ( -/obj/structure/platform{ - dir = 4 +/area/almayer/engineering/upper_engineering) +"pNX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"pOW" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"pPe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, +/area/almayer/living/offices) +"pOi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"pOs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/whistle{ + pixel_y = 4 + }, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/brig/processing) -"pPr" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"pOy" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"pOV" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"pPa" = ( +/obj/structure/phone_base{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"pPQ" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"pPp" = ( /obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pPx" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, /turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"pPU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 +/area/almayer/engineering/lower/engine_core) +"pPy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"pPC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pPO" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"pPS" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/shipboard/starboard_point_defense) "pPW" = ( -/obj/structure/phone_base/rotary{ - name = "CL Office Telephone"; - phone_category = "Offices"; - phone_id = "CL Office" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"pPX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"pQe" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"pQl" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"pQw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 6 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"pQj" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/item/storage/box/evidence{ - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"pQo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"pQx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "pQy" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"pQI" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"pQK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "pQN" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pQT" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"pRd" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"pRg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pRw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"pRF" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"pRQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"pQS" = ( +/area/almayer/shipboard/starboard_point_defense) +"pRY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"pSd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"pQT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"pSi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"pSr" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"pSC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"pSF" = ( /obj/structure/stairs{ dir = 4 }, @@ -44648,238 +44302,198 @@ vector_x = -1; vector_y = 100 }, -/obj/structure/machinery/light, /turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_fore_hallway) -"pRj" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +"pSH" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"pSI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"pRC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_p) +"pSJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/autoinjectors{ + pixel_x = -6; + pixel_y = -1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"pRE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/device/mass_spectrometer{ + pixel_x = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"pRQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - dir = 2; - name = "\improper Brig Lobby" +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 9 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"pRY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pTe" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"pSo" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"pSq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/dogtag{ - desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"pSr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"pSy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"pTf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"pSC" = ( -/obj/structure/closet{ - name = "backpack storage" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/mortarpack, -/obj/item/storage/backpack/marine/mortarpack, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"pTu" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"pTx" = ( +/obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"pSE" = ( -/obj/structure/platform{ - dir = 1 +/area/almayer/hallways/hangar) +"pTJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"pSM" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer/red/southwest, -/area/almayer/maint/upper/u_a_p) -"pTf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"pTL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"pTm" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"pTP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"pTX" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"pTY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pTn" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"pTr" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"pTz" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cic) -"pTA" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/shipboard/brig/cells) +"pUs" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"pUE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"pUL" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"pUN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"pTC" = ( -/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"pTD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"pUO" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pTZ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"pUb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ dir = 4; - name = "Dropship Remote Control Console" + pixel_y = 4 }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"pUW" = ( /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"pUj" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"pUm" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 +/area/almayer/squads/delta) +"pUZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"pVh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"pVj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, /turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"pUB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/shipboard/weapon_room) +"pVx" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"pUC" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"pUP" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pVb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"pVd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/chief_mp_office) -"pVj" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"pVm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"pVo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-5"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"pVt" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/briefing) -"pVA" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 2; - pixel_y = 18 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"pVA" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 2; + pixel_y = 18 }, /obj/item/tool/warning_cone{ pixel_x = -12 @@ -44892,118 +44506,123 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"pVM" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or3privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"pVS" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"pVY" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_y = -32 - }, -/obj/structure/sign/safety/medical{ - pixel_x = 15; - pixel_y = -32 +"pVL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "pWb" = ( /obj/effect/landmark/start/marine/tl/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pWd" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"pWm" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"pWw" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"pWe" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"pWo" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"pWB" = ( -/obj/item/stack/sheet/glass/reinforced{ - amount = 50 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"pWq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"pWw" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"pWL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"pWK" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/interrogation) -"pWQ" = ( -/obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"pXf" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"pXu" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pXO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/almayer/command/cic) +"pXf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"pXz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Warden's Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"pXU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "pXZ" = ( /obj/effect/landmark/start/marine/spec/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"pYm" = ( +"pYq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"pYn" = ( -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"pYr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"pYs" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/lower/l_m_s) +"pYt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) "pYu" = ( /obj/item/tool/warning_cone{ pixel_x = -12; @@ -45014,184 +44633,254 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"pYB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +"pZc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "take-ins"; + pixel_x = 7; + pixel_y = 28; + range = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pZh" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/lifeboat) +"pZi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"pZs" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"pZw" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"pZC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"pZE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"pZG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"pYG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/hallways/lower/starboard_aft_hallway) +"pZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"pYM" = ( -/obj/structure/pipes/valve/digital/open{ +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"pZO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/crew/alt{ dir = 4 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/phone_base/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Cells"; + pixel_x = 16 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"pYT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"qar" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"pZh" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"pZk" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"qat" = ( +/obj/structure/machinery/door_control{ + id = "pobunk2"; + name = "PO2 Privacy Shutters"; + pixel_x = -24 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qav" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"qaB" = ( +/obj/structure/pipes/binary/pump/on{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"pZt" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"pZE" = ( -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"qaE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ pixel_y = 7 }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"pZU" = ( -/obj/structure/barricade/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"pZY" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"pZZ" = ( +/obj/item/storage/box/cups{ + pixel_x = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"qaM" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"qao" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"qbf" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"qaB" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qbl" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"qaH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/briefing) +"qbo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"qbq" = ( +/obj/item/frame/light_fixture{ + anchored = 1; + desc = "A broken fluorescent tube light."; + dir = 8; + icon_state = "tube-broken"; + name = "broken light fixture" }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"qaI" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"qaQ" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"qaS" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"qbs" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"qbb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"qbe" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"qbf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;7" + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"qbi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"qbk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) "qbx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"qbH" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 2"; +"qbJ" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"qbL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"qbX" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"qcc" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/sign/safety/storage{ pixel_x = -24 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"qbI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"qcd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/upper/midship_hallway) -"qbT" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"qcg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"qcj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "qck" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/cameras/wooden_tv/almayer{ @@ -45199,110 +44888,118 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qcq" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - pixel_x = -1; - pixel_y = 3 +"qcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"qcz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"qcF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"qcv" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"qcJ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"qcL" = ( -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"qcS" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/auxiliary_officer_office) -"qcX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qcK" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"qcW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"qda" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"qdq" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"qcY" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"qdJ" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/command/lifeboat) +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"qdD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"qdE" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"qdF" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "qdQ" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qdZ" = ( -/obj/vehicle/powerloader, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"qef" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"qes" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = -1; - pixel_y = 7 +"qey" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qeC" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"qeT" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = 1; - pixel_y = -5 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qev" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"qeG" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"qeU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qeJ" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"qeW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) "qeY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/beach_ball/holoball, @@ -45316,77 +45013,90 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"qfg" = ( +"qfb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"qfp" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"qfj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"qfs" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; pixel_y = 13 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"qfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"qfx" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen2"; - name = "\improper Kitchen Shutters" +/area/almayer/squads/req) +"qfu" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"qfH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"qfD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qfE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"qfS" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"qfT" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"qgd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"qfW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/living/offices) -"qgm" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qgt" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"qgx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"qgy" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"qgE" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "qgN" = ( /obj/structure/bed/chair{ dir = 4 @@ -45399,309 +45109,370 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"qgO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"qgS" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"qhf" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"qgV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) +/area/almayer/living/gym) "qhg" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"qhl" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"qhv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"qhr" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"qhI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/structure/machinery/computer/emails, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"qhw" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"qhy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) "qhN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"qhO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qhP" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"qhR" = ( -/obj/structure/ladder{ - height = 1; - id = "med2" +/area/almayer/living/briefing) +"qhX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"qii" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"qij" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"qiw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) "qiy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"qiK" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"qiL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"qiP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"qiV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) "qjb" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"qjc" = ( -/turf/open/floor/almayer/uscm/directional/north, +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/medical) +"qjq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" + }, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) -"qjn" = ( -/obj/structure/largecrate/random/barrel/red, +"qjH" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"qjB" = ( +"qjI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 + }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) -"qjH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"qjJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-2"; - req_access = null +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"qjR" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"qjZ" = ( +/area/almayer/squads/bravo) +"qka" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"qkd" = ( /obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"qkf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/tool/pen, -/obj/item/book/manual/marine_law{ - pixel_x = 15; - pixel_y = 5 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 16; +/obj/item/storage/box/cups{ + pixel_x = 4; pixel_y = 9 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) "qki" = ( /obj/effect/landmark/start/marine/smartgunner/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"qko" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"qkk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"qkm" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"qkM" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"qkq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/p_bow) +"qkU" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"qlw" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north1) -"qkA" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 +"qlz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SEA Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +/turf/open/floor/plating, +/area/almayer/shipboard/sea_office) +"qlK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"qlN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"qkI" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qkL" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"qlO" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/sign/safety/debark_lounge{ +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"qlR" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) +"qlU" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; pixel_y = 32 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"qlY" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"qkM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"qkO" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/squads/delta) -"qkW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"qlg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" +/area/almayer/engineering/lower) +"qlZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"qlp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/prop/tableflag/uscm{ - pixel_x = -5 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/prop/tableflag/uscm2{ - pixel_x = 5 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"qmd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qlr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/camera, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"qlz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SEA Office Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"qmo" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/plating, -/area/almayer/shipboard/sea_office) -"qlC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"qms" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"qmw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qlI" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"qlP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qmx" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) -"qlT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower) -"qma" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"qmb" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qme" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"qmf" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"qmi" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"qmK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "qmP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"qmQ" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"qnc" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/mp_bunks) "qnd" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"qne" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) "qnh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45711,164 +45482,150 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"qnm" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"qnx" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "qnE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qnJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Support Officers Quarters"; + req_one_access_txt = "37" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"qnW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"qnH" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = -29 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"qog" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"qok" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"qoN" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"qoP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + pixel_x = -12; + pixel_y = 28 }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"qnI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"qnQ" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"qnU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"qoi" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"qol" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"qoA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "W" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"qoT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qoD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"qoG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"qoS" = ( +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) "qoX" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"qpc" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/port_missiles) -"qpe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/cryo_cells) +"qpm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qpq" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"qpv" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 + icon_state = "pipe-c" }, -/obj/structure/sign/safety/maint{ - pixel_x = -18 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"qpF" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"qpr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"qpH" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"qpO" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qpL" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"qpP" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qpN" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"qqj" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"qqm" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qqa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) "qqn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -45876,199 +45633,213 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"qqs" = ( -/obj/structure/machinery/vending/cola{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qqx" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"qqy" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"qqA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"qqI" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"qqE" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper AI Reception"; - req_access = null; - req_one_access_txt = "91;92" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs1"; - name = "\improper ARES Reception Shutters" - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"qqT" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/engineering/port_atmos) -"qqX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = -16 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"qqY" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"qra" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/area/almayer/maint/hull/lower/l_a_p) "qrb" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"qri" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"qrq" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"qrr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/upper/midship_hallway) +"qrt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"qrm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"qrx" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/lobby) +"qrK" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"qrC" = ( -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_x = -27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qrK" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"qsj" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/lower/l_a_p) +"qrR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qso" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qrU" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"qsu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"qsy" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"qsz" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/living/briefing) +"qsi" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"qsl" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"qsx" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"qsA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"qsI" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) "qsJ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 5"; + name = "Cell 5" }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) +/obj/structure/sign/safety/five{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) "qsL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"qsX" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/cryo_cells) -"qsY" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"qsQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/southleft{ + desc = "A window, that is also a door. A windoor if you will. This one is stronger."; + health = 500; + name = "Reinforced Glass door"; + req_one_access_txt = "2;35" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"qsZ" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qsS" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/command/lifeboat) +"qto" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qtq" = ( -/turf/closed/wall/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"qtx" = ( -/obj/structure/machinery/light{ - dir = 1 +"qtq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"qts" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"qtF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"qtH" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" + }, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_box/magazine/m4ra, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"qtJ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qty" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = -6 +/area/almayer/shipboard/brig/evidence_storage) +"qtM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"qtO" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"qtN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"quj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qtX" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"qul" = ( +/area/almayer/maint/hull/upper/u_a_p) +"qtY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"quc" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"qud" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"qul" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) "quq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -46079,101 +45850,106 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qur" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"quw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"qus" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"quA" = ( -/obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"quD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"qvm" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"qvr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/syringe_case{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"quB" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/storage/syringe_case, -/obj/item/storage/syringe_case{ - pixel_x = -3; - pixel_y = -2 +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"quG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"qvs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"qvx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/table/almayer{ + layer = 3 }, -/obj/structure/machinery/power/apc/almayer/west, -/obj/item/storage/briefcase{ - pixel_y = 15 +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"quH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"qvu" = ( +/obj/effect/landmark/start/liaison, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"qvF" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "qvI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"qvP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"qwb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +"qvL" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) "qwf" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"qwg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) +"qwj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"qwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"qwn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) "qwp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46182,87 +45958,55 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"qwq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 32; - pixel_y = -22 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"qws" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"qwy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +"qww" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) +"qwx" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) "qwA" = ( +/obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = -25 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"qwF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" }, -/obj/structure/sign/prop3{ - pixel_x = -32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/machinery/faxmachine/uscm{ - department = "SEA" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"qwO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/strata/faux_metal, -/area/almayer/shipboard/sea_office) -"qwE" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 3; + pixel_y = 27 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 27 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"qwH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"qwU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"qwV" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"qwW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qxi" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) "qxm" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -46275,226 +46019,241 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"qxn" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" +"qxo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"qxI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"qxq" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"qxs" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"qxB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"qyn" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "qyr" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"qyv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"qyG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"qyH" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_y = 26; - req_one_access_txt = "3;22;19;7" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"qyO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qyy" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/area/almayer/maint/hull/lower/l_m_s) +"qza" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + access_modified = 1; + dir = 2; + name = "\improper Chief Engineer's Office"; + req_one_access = null; + req_one_access_txt = "1;6" }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qyJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"qyO" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"qzi" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"qzl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"qzq" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"qzu" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"qzO" = ( -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/engineering/ce_room) +"qzb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qzQ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze{ - pixel_x = 2; - pixel_y = 9 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"qzn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/machinery/door_control/cl/office/window{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"qzu" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"qzz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/door_control/cl/office/door{ - pixel_x = 6; - pixel_y = -3 +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"qzA" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/obj/item/spacecash/c500{ - pixel_x = -10; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"qzD" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"qzY" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"qzI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"qAu" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"qAB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"qAC" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_y = 29; - req_access_txt = "28" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"qAO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"qzU" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"qzX" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qzZ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"qAP" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"qBb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item{ - pixel_x = 5 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/obj/item/facepaint/black{ - pixel_x = -10 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"qAk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = 12; + pixel_y = 6 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"qBn" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -17 +"qAn" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/chemistry) -"qBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"qBa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"qBt" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"qBi" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"qBC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"qBv" = ( -/obj/effect/landmark/supply_elevator, -/turf/open/floor/almayer/empty/requisitions, -/area/supply/station) -"qBA" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"qBK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qBE" = ( +/obj/structure/machinery/brig_cell/cell_5{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"qBI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"qBT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"qBY" = ( -/obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +/area/almayer/maint/lower/cryo_cells) +"qBO" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) "qCc" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -46505,51 +46264,77 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qCf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"qCg" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"qCk" = ( -/turf/open/floor/almayer/sterile_green_corner, +"qCe" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) +"qCg" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) "qCo" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"qCr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"qCv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"qCp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"qCq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"qCu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) "qCy" = ( /obj/effect/landmark/start/captain, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"qCE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"qCB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"qCC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"qCE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/engineering/upper_engineering) "qCG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -46558,82 +46343,133 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) "qCI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 20 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"qCK" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/ce_room) +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/map_item{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.04; + pixel_x = 5; + pixel_y = 22 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"qCV" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"qDd" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "qDq" = ( /obj/effect/landmark/start/marine/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"qDu" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"qDx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"qDy" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qDF" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"qDG" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"qDH" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qDI" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard{ - pixel_x = -4 +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"qDJ" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/workshop/hangar) +"qDO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/ares_console{ + pixel_x = 9 }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"qDU" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"qDX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"qDY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/camera, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"qDB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"qEe" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "Telecommunications"; + req_access_txt = "6" }, -/obj/structure/bed/chair{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"qDM" = ( -/obj/structure/closet/emcloset, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"qEg" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"qEm" = ( +/obj/structure/machinery/cryopod/right, /turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"qDT" = ( -/obj/effect/landmark/start/intel, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 29; - serial_number = 12 +/area/almayer/squads/bravo) +"qEu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 }, -/obj/effect/landmark/late_join/intel, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"qDY" = ( -/obj/structure/surface/table/almayer, +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"qEv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"qEf" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/squads/req) "qEy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46641,72 +46477,65 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"qEA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/frame/light_fixture, -/obj/item/frame/light_fixture, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"qEC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"qEG" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"qEN" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"qEF" = ( +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"qEH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"qEQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"qFc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"qFg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"qEI" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"qER" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"qFm" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"qFp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Warden's Office" +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"qFs" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"qFk" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"qFm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "qFu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -46716,228 +46545,210 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"qFw" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"qFz" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"qFE" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"qFP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4; +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"qFR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"qFZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/fore_hallway) -"qGk" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"qGt" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qGD" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"qGE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"qGG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"qGe" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"qGf" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qGm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = 7 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17; + pixel_y = -6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"qGL" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"qGP" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qGr" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"qGs" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, /obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/tool/shovel/spade, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qGt" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"qGu" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"qGJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"qGL" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"qGS" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"qGR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) "qHk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) "qHn" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-1"; + req_access = null }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qHo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + name = "\improper Brig Lobby" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "qHy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"qHL" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = 5 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"qHS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Holding Cell" +/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ + pixel_x = 5; + pixel_y = 9 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/landmark/map_item{ + layer = 3.03; + pixel_x = -7; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"qHX" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/warden_office) -"qHY" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"qIe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; - dir = 1; - name = "\improper Brig" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qHz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"qHA" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"qHN" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"qIl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"qIn" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"qIE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/area/almayer/maint/hull/upper/p_stern) +"qHR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/stamp/ro{ + name = "spare requisitions officer's rubber stamp"; + pixel_x = -7; + pixel_y = 11 }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qHZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qIh" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"qIm" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"qIP" = ( +/area/almayer/engineering/upper_engineering) +"qIq" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"qIu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/bed/chair/comfy, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"qIz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"qJa" = ( -/obj/structure/disposalpipe/junction{ +/area/almayer/living/starboard_garden) +"qIC" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-j2" + icon_state = "pipe-c" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"qJc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"qIT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"qJa" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) "qJj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -46948,25 +46759,24 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"qJo" = ( +"qJm" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"qJH" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/carrotseed, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/northwest, +/area/almayer/shipboard/brig/cells) +"qJL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"qJI" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"qJM" = ( -/obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) "qJZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -46976,93 +46786,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"qKb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"qKn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"qKH" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"qKN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"qKS" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 +"qKA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"qKI" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"qKN" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"qKX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"qKY" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"qLa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"qLc" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"qKV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"qKZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ +/area/almayer/maint/hull/upper/u_m_s) +"qLq" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"qLa" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qLk" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/smg/m39{ - pixel_y = 6 - }, -/obj/item/weapon/gun/smg/m39{ - pixel_y = -6 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) "qLs" = ( /obj/effect/landmark/start/maint, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"qLw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/medical) -"qLD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) "qLH" = ( /obj/structure/bed/chair{ buckling_y = 6; @@ -47071,70 +46844,82 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"qLZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +"qLM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"qMd" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"qMo" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"qMk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"qMr" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"qMp" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"qMt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/area/almayer/shipboard/navigation) +"qME" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"qMz" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"qMI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/computer{ - pixel_x = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = 25 - }, -/obj/item/prop/magazine/book/borntokill{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"qML" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"qMG" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"qMJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"qMK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"qMM" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"qMO" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) "qMR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -47142,30 +46927,45 @@ /turf/open/floor/almayer, /area/almayer/living/briefing) "qMU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/open{ +/turf/open/floor/almayer/red/west, +/area/almayer/living/offices/flight) +"qMX" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"qNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"qNC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"qMZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qNK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"qNQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"qNM" = ( -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) +/area/almayer/maint/hull/lower/l_a_s) "qNR" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -47173,241 +46973,228 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"qNW" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"qOb" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"qOj" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"qNS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qNT" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "qOp" = ( /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"qOu" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"qOJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"qOT" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qPr" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"qPt" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"qPv" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering/port) -"qPw" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"qOt" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"qOA" = ( +/obj/structure/machinery/ares/processor, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"qOC" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"qPA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 5 +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"qOK" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qOO" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"qOT" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"qOW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/tool/pen/red/clicky{ - pixel_x = 1; - pixel_y = 2 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qPb" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) "qPD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"qPK" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop) -"qPT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"qPF" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"qQq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/platform{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"qPM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"qQw" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/atm{ - pixel_y = 32 +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"qQD" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"qQH" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"qQX" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"qRc" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/light, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/area/almayer/living/briefing) +"qQB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"qRd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"qQD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/upper/midship_hallway) -"qRk" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"qRw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"qRD" = ( -/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"qQE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = list(36) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/synthcloset) +"qQH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"qQK" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"qRI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ - dir = 2; - name = "\improper Brig Permanent Confinement" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" +"qRl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qRr" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"qRA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qRP" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qRS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"qRQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Gym" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qRU" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"qRX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qRY" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) +/area/almayer/lifeboat_pumps/south1) +"qSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) "qSm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"qSn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"qSo" = ( +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.10; + plane = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/commandbunks) +"qSu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"qSG" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"qSu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "qSK" = ( /obj/item/stack/sheet/metal{ layer = 2.9; @@ -47419,251 +47206,272 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"qSN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" +"qTi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"qTl" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"qTm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"qSP" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"qSS" = ( -/obj/structure/surface/rack, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"qTk" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"qTz" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 10; - pixel_y = 3 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"qTJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"qTC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"qTJ" = ( -/obj/structure/machinery/cm_vending/clothing/combat_correspondent, +/area/almayer/lifeboat_pumps/north1) +"qTO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"qTS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/living/gym) +"qTR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"qTT" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) +/area/almayer/hallways/lower/starboard_fore_hallway) "qTY" = ( /obj/structure/machinery/gibber, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"qUa" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) +"qUk" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/brown, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"qUr" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "qUt" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"qUC" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"qUv" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"qUC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment/cell) -"qUE" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qUD" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) -"qUF" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"qUE" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"qUI" = ( -/obj/structure/machinery/power/apc/almayer/hardened/south, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"qVE" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"qVN" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"qUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"qVO" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"qUZ" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"qVY" = ( +/area/almayer/hallways/hangar) +"qVe" = ( /obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 5 +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"qVt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Officer's Bunks"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/port_atmos) +"qVx" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/tool/pen, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"qWk" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qWw" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"qWz" = ( -/obj/structure/bed/chair/office/light{ +/area/almayer/shipboard/starboard_point_defense) +"qVP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qVQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"qWC" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"qVR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"qWd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qWm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"qWq" = ( +/obj/structure/sign/safety/high_voltage{ pixel_y = -32 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"qWy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"qWB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qWD" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"qWG" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) "qWI" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qWJ" = ( -/obj/structure/closet/secure_closet/fridge/dry/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) "qWP" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) "qWR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"qXc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"qWY" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"qXh" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"qXp" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"qXB" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"qXD" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 10 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"qXk" = ( -/obj/item/stack/catwalk, /turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"qXn" = ( +/area/almayer/engineering/lower/workshop/hangar) +"qXN" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/starboard_missiles) +"qXO" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"qXA" = ( -/obj/structure/machinery/seed_extractor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"qXF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"qXT" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"qYn" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qYp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) "qYC" = ( /obj/structure/disposalpipe/down/almayer{ dir = 4; @@ -47671,21 +47479,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"qYU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"qYY" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 +"qYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "qYZ" = ( /obj/structure/sign/safety/security{ pixel_y = -32 @@ -47696,188 +47496,193 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qZe" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"qZm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qZo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"qZC" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +"qZl" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-3"; + req_access = null }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"qZN" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qZG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"qZQ" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"qZO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"qZQ" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/area/almayer/maint/hull/upper/s_stern) "qZS" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"rad" = ( -/obj/structure/closet/secure_closet/securecom, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"rai" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"raJ" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"raU" = ( -/obj/structure/window/framed/almayer, +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"raX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"raZ" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer5" +/area/almayer/living/briefing) +"qZY" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"rbb" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer/green/southwest, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"ral" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, /area/almayer/squads/req) +"raq" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/living/briefing) +"rat" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"raO" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/upper/midship_hallway) +"raS" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"raY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"rbc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) "rbt" = ( -/obj/effect/step_trigger/clone_cleaner, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "rbF" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"rbJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"rbQ" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"rbS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rbK" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) "rbU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"rch" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17 }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"rcm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"rbW" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"rci" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/window/reinforced{ dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"rcq" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rcu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = -13 + health = 80 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"rcA" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"rcl" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"rcB" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"rcN" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"rcJ" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"rcP" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"rcP" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Core Chamber"; - dir = 8 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) "rcR" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) -"rcU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"rcY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/terminal{ - pixel_x = -18; - pixel_y = -8 +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = -18; - pixel_y = 6 +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"rcY" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) "rdc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/numbertwobunks) "rde" = ( /obj/structure/sign/prop1, /turf/closed/wall/almayer, @@ -47889,6 +47694,10 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"rdl" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "rdt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -47898,514 +47707,342 @@ }, /turf/open/floor/almayer/research/containment/corner4, /area/almayer/medical/containment/cell) -"rdJ" = ( -/obj/structure/disposalpipe/junction{ +"rdD" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-j2" + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"rdL" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"rdM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - layer = 3.1; - pixel_x = -12; - pixel_y = 14 - }, -/obj/item/toy/deck/uno{ - layer = 3.1; - pixel_x = -3; - pixel_y = -1 - }, -/obj/item/toy/handcard/uno_reverse_yellow{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) -"rdO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"rdP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"rdQ" = ( -/obj/structure/machinery/cryopod/right{ - dir = 2 +/obj/structure/ladder/fragile_almayer{ + height = 1; + id = "kitchen" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"rdW" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rdT" = ( /obj/structure/surface/table/almayer, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"reb" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"rec" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"rel" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"ree" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rer" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"rej" = ( +/area/almayer/hallways/hangar) +"rew" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"reB" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"reE" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 +/obj/item/clothing/head/hardhat{ + pixel_y = 15 }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"reo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"reK" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rep" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"req" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) -"rey" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 +"reV" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"reQ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"reY" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) "rfb" = ( /turf/closed/wall/almayer/research/containment/wall/purple{ dir = 8; icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rfo" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"rfw" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"rfx" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"rfB" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"rfD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"rfM" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"rfH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rfY" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"rgd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/almayer/maint/upper/u_m_p) +"rfS" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"rgg" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rgh" = ( +/area/almayer/maint/hull/upper/u_f_s) +"rfU" = ( /obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 +/obj/item/folder/blue, +/obj/effect/landmark/map_item, +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"rgo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"rfY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"rgw" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"rgx" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "rgy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"rgF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"rgS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"rgV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"rhf" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"rht" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"rhu" = ( -/obj/structure/bed, -/obj/item/toy/plush/farwa{ - pixel_x = 5 - }, -/obj/item/clothing/under/redpyjamas, -/obj/item/bedsheet/orange, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"rhz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, +"rgG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"rhD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"rgV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rgZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"rhF" = ( -/obj/structure/surface/table/woodentable/fancy, +/area/almayer/maint/hull/lower/l_f_s) +"rhc" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/stern_point_defense) +"rhx" = ( +/obj/structure/prop/invuln/joey, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rhz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"rhE" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rhK" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/door_control/brbutton{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown"; - pixel_x = -12; - pixel_y = 26 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown Override"; - pixel_x = -2; - pixel_y = 26 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4 - }, -/obj/structure/machinery/aicore_lockdown{ - icon_state = "big_red_button_wallv"; - pixel_x = 8; - pixel_y = 26 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) "rhQ" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rie" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper +"rhX" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"rim" = ( -/obj/structure/machinery/brig_cell/perma_2{ - pixel_x = -32 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"rio" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/cic) -"rir" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rhZ" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"riw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"rid" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"rim" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/computerlab) +"rit" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"riy" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"riL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"riV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"riB" = ( -/obj/structure/machinery/light/containment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"riG" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"riO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/area/almayer/hallways/lower/port_fore_hallway) +"riW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/surface/rack, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "riZ" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"rje" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"rjI" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"rjX" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"rkl" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"rkq" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rjI" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"rkr" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rkv" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" +/area/almayer/engineering/lower/engine_core) +"rjM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_x = 17 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"rkz" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"rkO" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/tool/pen, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"rkP" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"rjN" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rjW" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"rla" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"rjX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"rlu" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"rlv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rjZ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rly" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rlH" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 4 - }, +/area/almayer/hallways/hangar) +"rkl" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) +"rkm" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"rlT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/living/offices/flight) -"rlY" = ( +/area/almayer/shipboard/starboard_point_defense) +"rkq" = ( /obj/structure/platform{ dir = 1 }, @@ -48417,186 +48054,227 @@ layer = 3.51 }, /turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"rmi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 +/area/almayer/lifeboat_pumps/south2) +"rkx" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/item/device/flash, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"rmm" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"rkz" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"rkB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"rkE" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"rkQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"rlb" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"rld" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"rmy" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"rmA" = ( +/turf/open/floor/almayer/research/containment/entrance/west, +/area/almayer/medical/containment/cell) +"rle" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"rlq" = ( +/obj/structure/machinery/power/apc/almayer/south, /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"rmL" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rmO" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/hallways/upper/midship_hallway) -"rmR" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Reception Interior"; - dir = 1 +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"rlv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rmY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"rlB" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"rlF" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"rnt" = ( -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"rlS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"rlU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"rnC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"rlY" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"rnD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/medical/hydroponics) +"rma" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"rnL" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"rnO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/upper/fore_hallway) +"rmB" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"rmC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"rmE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rnP" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"rmV" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/command/cichallway) +"rmY" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/item/clothing/ears/earmuffs, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"rnj" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"rnU" = ( +/area/almayer/squads/alpha) +"rnE" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc/almayer/west, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"rnV" = ( +/area/almayer/living/briefing) +"rnI" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"rnO" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/phone_base{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rnU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/machinery/vending/ingredients, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"rnY" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) "rob" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"roi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"roq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, +"roc" = ( +/turf/open/floor/almayer/blue, /area/almayer/command/cic) +"rol" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "ror" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"rot" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"roI" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/hallways/lower/port_midship_hallway) +"roJ" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rov" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"roO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"roL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"roN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) +"roQ" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/cryo_cells) "roR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"roT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "roU" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -48604,79 +48282,81 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rpe" = ( +"roX" = ( +/obj/structure/largecrate/random/case/double, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"rpc" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"rpl" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "rpp" = ( /obj/effect/landmark/start/executive, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"rpr" = ( -/obj/structure/machinery/light{ - dir = 1 +"rpt" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"rpu" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"rpE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rpC" = ( -/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"rpH" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) +/area/almayer/lifeboat_pumps/south1) "rpM" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 4; - layer = 3.3; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/barricade/handrail{ +/obj/structure/bed/chair{ dir = 8; - layer = 3.3; - pixel_x = -1; pixel_y = 3 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/engineering/port_atmos) -"rpO" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"rpS" = ( -/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"rpQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/obj/structure/surface/rack{ + density = 0; + pixel_x = 16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"rpU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"rpY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"rqf" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) "rqj" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -48684,67 +48364,118 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rqo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rqk" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"rqp" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"rqy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"rqr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"rqz" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "rqC" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"rqO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"rqJ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"rqS" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/brig/general_equipment) -"rqT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"rqV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) -"rrj" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"rqL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"rqS" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rqT" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"rqU" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/item/desk_bell{ + anchored = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/lobby) +"rrh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rrm" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"rrv" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/upper/fore_hallway) +"rrE" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"rrz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"rrD" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"rrG" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/captain_mess) "rrK" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -48770,49 +48501,62 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"rrR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"rrN" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Chief MP's Bedroom" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) "rrY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"rrZ" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rsc" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"rsg" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"rss" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +/obj/structure/surface/rack, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"rsp" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"rsu" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing everything you need to stop a CLF uprising."; + name = "\improper USCM crate 'FOB supplies'" + }, +/obj/item/folded_tent/big{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"rsw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/living/port_emb) "rsK" = ( /obj/structure/sign/safety/hvac_old, /turf/closed/wall/almayer, /area/almayer/squads/req) +"rsL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "rsM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48826,57 +48570,70 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"rsW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"rsP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"rsR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"rsX" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"rtg" = ( +"rte" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rtm" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"rtn" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"rtu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"rto" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"rtq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"rty" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -48889,52 +48646,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rtH" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"rtJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"rtL" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/structure/phone_base{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"rtO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"rtP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rtR" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) "rtV" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox{ @@ -48943,6 +48654,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"rtW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) "rtY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/bronze, @@ -48952,10 +48670,18 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"rud" = ( -/obj/effect/landmark/crap_item, +"rua" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ruh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/upper/midship_hallway) "rui" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -48965,95 +48691,202 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"ruo" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 +"ruj" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"rur" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"ruw" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"ruE" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"ruF" = ( +/obj/item/device/radio/marine{ + pixel_x = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/device/radio/marine{ + pixel_x = 3 + }, +/obj/item/device/radio/marine, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"ruG" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ruH" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"ruZ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/almayer/living/starboard_garden) +"ruK" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ruM" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/port) +"ruR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"rve" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"ruS" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"rvv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ruT" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"rvr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"rvs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) "rvA" = ( /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) "rvD" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 6"; - pixel_x = -24 +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"rvE" = ( -/obj/structure/pipes/unary/outlet_injector, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"rvH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"rvF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"rvJ" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rvN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"rvO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"rvP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rwe" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"rwh" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "rwl" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"rwm" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"rwp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"rwt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) "rwu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"rwx" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"rwG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rwR" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) "rwY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -49065,217 +48898,223 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"rxq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" +"rxb" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"rxd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/u_f_p) +"rxx" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) "rxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) "rxL" = ( -/obj/structure/machinery/computer/supplycomp, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 8 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"rxR" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/machinery/door_control/brbutton{ + id = "engie_store"; + name = "Emergency Storage"; + pixel_x = -2; + pixel_y = 26; + req_one_access_txt = "6" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"ryH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ +/obj/structure/machinery/computer/cameras/almayer/ares{ dir = 4; - id = "civ_uniforms" + pixel_x = -17; + pixel_y = -6 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/gym) -"ryI" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ryJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Cryogenics Bay" +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/ce_room) +"rya" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"ryb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"ryL" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 +/area/almayer/living/grunt_rnr) +"rye" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ryM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"ryN" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ryf" = ( +/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ryQ" = ( -/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/lifeboat) +"ryi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_1"; + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"ryx" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) -"ryS" = ( +"ryz" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"ryP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"ryR" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ryU" = ( +/area/almayer/hallways/upper/fore_hallway) +"ryT" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ryZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"ryW" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"rza" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) "rzg" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 12; - pixel_y = 25 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"rzh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"rzm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"rzr" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rzA" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"rzL" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/area/almayer/squads/bravo) +"rzs" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"rzZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"rzD" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"rAa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/obj/structure/machinery/light/built, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"rAc" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rAd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"rAk" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rAn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Bathroom" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rzU" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"rAu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"rAq" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) "rAv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/shower{ + dir = 8 }, +/obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) +/area/almayer/shipboard/brig/cells) "rAC" = ( /obj/docking_port/stationary/emergency_response/external/port5, /turf/open/space/basic, /area/space) -"rAF" = ( -/obj/structure/machinery/light{ - dir = 4 +"rAL" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"rAU" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"rAM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"rAV" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rewire{ - pixel_y = -32 +/turf/open/floor/almayer/aicore/no_build/ai_arrow, +/area/almayer/command/airoom) +"rAX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -8; + pixel_y = 12 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"rAZ" = ( -/obj/structure/platform{ - dir = 1 +/obj/item/paper_bin/uscm{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "rBb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -49286,151 +49125,184 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"rBg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) "rBj" = ( /obj/structure/machinery/processor, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rBq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/hydroponics) -"rBL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rBN" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rCb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"rBl" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/red/southwest, +/area/almayer/maint/upper/u_a_p) +"rBt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"rBy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"rCh" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"rCq" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"rBD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/midship_hallway) +"rBN" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering) -"rCr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"rCt" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"rCC" = ( -/obj/structure/bed/chair/bolted{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"rCH" = ( -/obj/structure/bed/chair{ - dir = 4 +"rBO" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/briefing) +"rBZ" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"rCM" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; +/obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rCx" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"rCz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) "rCO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rCV" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) +"rCS" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"rDa" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "rDb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"rDq" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 +"rDd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"rDK" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"rDg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rDL" = ( +/area/almayer/maint/hull/upper/s_bow) +"rDz" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"rDA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"rDF" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 1 }, -/turf/open/floor/almayer/mono, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"rDG" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/upper_medical) +"rDH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rDU" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) "rDV" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"rEd" = ( +"rDW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 16 + icon_state = "W" }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"rEe" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) "rEf" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -49441,190 +49313,199 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"rEk" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"rEl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) "rEp" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie) -"rEt" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"rEC" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"rEE" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rEI" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/mob/living/silicon/decoy/ship_ai{ - layer = 2.98; - pixel_y = -16 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rEP" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/maint/upper/u_a_p) -"rEQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"rET" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"rEH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"rEX" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-4"; - req_access = null +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"rFa" = ( -/obj/structure/sign/safety/restrictedarea{ +/obj/structure/sign/safety/airlock{ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"rFm" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/upper/fore_hallway) -"rFo" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"rFq" = ( -/obj/structure/machinery/vending/snack{ - pixel_x = -7 - }, -/obj/structure/machinery/vending/coffee{ - pixel_x = 14 +/area/almayer/shipboard/stern_point_defense) +"rEJ" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"rEL" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/storage{ + pixel_x = 33; + pixel_y = -1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"rFr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"rFz" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"rFF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"rFM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"rFQ" = ( -/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"rFV" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/command/lifeboat) +"rFX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) "rGk" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"rGu" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"rGL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"rGM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"rGA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cic) -"rHc" = ( -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"rHm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"rGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/obj/structure/platform{ dir = 4 }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"rGF" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"rHF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, +"rGH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"rGQ" = ( +/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_f_p) -"rHO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"rHT" = ( -/obj/structure/disposalpipe/segment{ +"rGS" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"rGV" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"rHc" = ( +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"rHk" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"rHt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"rIl" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"rIs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"rIt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"rHV" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) -"rHX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"rIE" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) "rIH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -49632,35 +49513,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"rIJ" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "rIK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"rIR" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rIX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"rIZ" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rJj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"rJn" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/engineering/upper_engineering) +"rIL" = ( +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"rJk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "rJD" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -49668,52 +49552,65 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) +"rJH" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) "rJI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "rJK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rJP" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"rJL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution) +"rJS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rKe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"rKm" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"rKp" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/gym) +"rKv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"rKc" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"rKx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"rKg" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/offices/flight) -"rKl" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/basketball) -"rKo" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"rKD" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"rKK" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/starboard_aft_hallway) +"rKB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "rKO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49724,29 +49621,48 @@ /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) "rKP" = ( -/obj/structure/machinery/vending/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) "rKS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"rLd" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"rLj" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rKX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"rLe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"rLt" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rLv" = ( /turf/closed/wall/almayer/research/containment/wall/purple{ dir = 4; @@ -49754,354 +49670,456 @@ }, /area/almayer/medical/containment/cell/cl) "rLx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"rLC" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"rLH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"rMg" = ( +/obj/structure/bedsheetbin, /turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"rLA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"rLH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/engineering/laundry) +"rMq" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"rLV" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"rMu" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"rMv" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"rMw" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"rMc" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"rMP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"rMe" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"rMQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; pixel_y = 32 }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 - }, -/obj/structure/machinery/door_control{ - id = "Delta_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"rMf" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/he, -/obj/item/mortar_shell/he, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"rMo" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_corner/north, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_medbay) -"rNa" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"rNc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"rMX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/living/briefing) -"rNh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/life_support{ +/obj/structure/sign/safety/ladder{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"rNu" = ( -/obj/structure/window/reinforced{ - dir = 8 + pixel_y = -32 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"rNa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ +/obj/structure/machinery/status_display{ pixel_y = -32 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"rNm" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"rNw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"rNy" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rNn" = ( +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_x = 27 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"rNK" = ( -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"rNS" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - unacidable = 1 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room/notunnel) -"rOg" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 }, -/obj/structure/platform{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rOq" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, +/area/almayer/living/briefing) +"rNv" = ( +/obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, -/area/almayer/engineering/lower/workshop/hangar) -"rOu" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ +/area/almayer/maint/hull/upper/u_f_p) +"rNw" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"rOx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"rNK" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"rNR" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower/engine_core) +"rNY" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"rOb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/briefing) +"rOz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"rOF" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"rOU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rOE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rOY" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"rOG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rPi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"rPp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"rPs" = ( -/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"rOO" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/lower/l_a_p) +"rOW" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"rOY" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"rPg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"rPn" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"rPo" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) "rPt" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"rPv" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) -"rPP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"rPZ" = ( +"rPy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"rPA" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_fore_hallway) +"rPD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"rPI" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"rPQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"rPZ" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/head/beret/royal_marine, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) "rQa" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"rQc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"rQg" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) "rQi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"rQv" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"rQx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rQs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES Railing"; + indestructible = 1; + name = "ARES Chamber Railings"; + needs_power = 0; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) -"rQC" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/briefing) -"rRb" = ( +"rQM" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"rQN" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/upper/mess) -"rRg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/obj/item/pizzabox/margherita{ + pixel_y = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"rRo" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"rQR" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) +"rRa" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"rRe" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"rRf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"rRj" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "rRq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) -"rRA" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"rRr" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"rRB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "rRD" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/living/briefing) -"rRG" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/north{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) "rRH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"rRL" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"rSz" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"rSA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"rSf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"rSC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"rSm" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"rSr" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"rSt" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"rSw" = ( +/obj/structure/largecrate/random/case/double, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 + dir = 9 }, -/obj/item/tool/pen, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "rSG" = ( /obj/structure/toilet{ pixel_y = 16 @@ -50116,195 +50134,200 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rSI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"rSJ" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/morgue) -"rSM" = ( -/obj/structure/machinery/ares/processor/apollo, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"rTd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"rTf" = ( -/obj/structure/machinery/light{ - dir = 8 +"rSQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"rTa" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"rTg" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room/notunnel) +"rTc" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"rTi" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rTd" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rTs" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 +"rTq" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"rTD" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) +"rTF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"rTI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rTz" = ( -/obj/structure/machinery/computer/ordercomp, +/area/almayer/engineering/upper_engineering) +"rUc" = ( +/obj/structure/machinery/floodlight, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rTI" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"rTR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"rTW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rUe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"rUk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/area/almayer/engineering/lower/engine_core) +"rUk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"rUr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"rUt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"rUu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"rUz" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"rUx" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"rUA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"rUz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "rUE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"rUG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rUJ" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"rUQ" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"rUR" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"rUV" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rVq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"rVs" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cic_hallway) +"rVt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"rVf" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"rVA" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"rVn" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rVr" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "rVC" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"rVF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"rVI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/engineering/lower/workshop) +"rVG" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rVQ" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"rVX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/upper/u_a_s) +"rVI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"rVP" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"rWo" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"rVY" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"rWd" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 +/obj/structure/machinery/door_control/brbutton{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown"; + pixel_x = -12; + pixel_y = 26 }, -/obj/structure/sign/safety/south{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/door_control/brbutton{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown Override"; + pixel_x = -2; + pixel_y = 26 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"rWj" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/computer/cameras/almayer/ares{ dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"rWk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/machinery/aicore_lockdown{ + icon_state = "big_red_button_wallv"; + pixel_x = 8; + pixel_y = 26 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "rWs" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -50312,58 +50335,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"rWA" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"rWC" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"rWD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"rWv" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"rWB" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = 32 }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"rWG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rWK" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"rWP" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"rWH" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/area/almayer/shipboard/brig/general_equipment) +"rWS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) "rWT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -50371,18 +50375,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rWW" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"rXc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +"rWZ" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -50392,196 +50387,258 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"rXm" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluefull, +"rXM" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"rXP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) -"rXH" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"rXN" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"rYb" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"rYc" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"rYk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"rYr" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) "rYx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"rYz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rYB" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"rYC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/upper/mess) +"rYO" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"rYy" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit."; - icon_state = "delivery_engi"; - name = "Security Vault"; - pixel_x = -24; - pixel_y = 28 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"rYS" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"rYT" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -32; - pixel_y = 40; - req_one_access_txt = "90;91;92" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"rZg" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rYD" = ( -/obj/item/ammo_box/magazine/misc/mre, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"rZr" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"rYM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"rZV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"rZo" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"sar" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - pixel_x = 24 + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"rZp" = ( -/obj/structure/platform, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"rZO" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"sas" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) +"sau" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"saL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"saP" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/port_missiles) +"saU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Reception" }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"rZU" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"rZX" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"sbb" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"sbe" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"sbg" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"rZY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"sbi" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/obj/item/folder/black_random, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"sae" = ( -/obj/structure/phone_base{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"saf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"sak" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"sap" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; +/obj/structure/sign/safety/terminal{ + pixel_x = 8; pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"saq" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"saz" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"saQ" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/engineering/lower/workshop) "sbm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"scd" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 4 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -1 }, -/turf/open/floor/almayer/green/west, -/area/almayer/shipboard/brig/cells) -"sco" = ( -/obj/structure/sign/prop1{ - layer = 3.1 +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 7 }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"scq" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"sct" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"sbs" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 2"; + locked = 1; + name = "\improper Containment Cell 2" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 2"; + name = "\improper Containment Cell 2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"sbv" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"sbA" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"sbD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ dir = 8 }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/command/lifeboat) +"sbW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sce" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) +"sci" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"scj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"scn" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"sco" = ( +/obj/structure/sign/prop1{ + layer = 3.1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) "scu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -50592,26 +50649,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"scv" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"scE" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/shipboard/brig/medical) -"scF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) "scH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -50619,240 +50656,222 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"scV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"sdk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"sdo" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"sdI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"sdK" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 +"scP" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles{ + pixel_x = 6; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sdZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 6 }, +/obj/item/storage/box/pillbottles, /turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"sea" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"sej" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +/area/almayer/medical/hydroponics) +"scW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"sen" = ( -/obj/structure/disposalpipe/segment{ +"scX" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"sdf" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sdv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"sdB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"ser" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"sew" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"seE" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"seN" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"sdH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"sdK" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 }, -/turf/open/floor/almayer/red/west, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) -"seS" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"seV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"seZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sdS" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/sign/poster{ + pixel_x = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"sfb" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"sdY" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"seo" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sep" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"sfj" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/port) -"sfr" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor5, -/area/almayer/engineering/lower/engine_core) -"sfs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"sfv" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"sfw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sfx" = ( -/obj/structure/machinery/light/small{ +/obj/structure/platform{ dir = 4 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"seH" = ( +/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"sfJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/engineering/upper_engineering) +"seI" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"sfN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/command/cic) +"seK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"sfO" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"seV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) +"sfc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"sff" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"sgi" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/processing) -"sgA" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/area/almayer/maint/upper/u_m_p) +"sfk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"sfr" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; - name = "\improper Brig" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper XO's Quarters"; + req_access = null; + req_access_txt = "1" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"sgD" = ( -/obj/structure/closet/firecloset, +/area/almayer/living/numbertwobunks) +"sfI" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"sfK" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"sfP" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/starboard_missiles) +"sfW" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/engineering/lower/engine_core) +"sfX" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"sgi" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/processing) +"sgn" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"sgp" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"sgu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sgI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) "sgU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"sgZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"she" = ( +"sgY" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; - req_access = null; + dir = 1; req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + req_one_access_txt = "2;7" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"shg" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/upper/u_a_p) +"sha" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) "shh" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, @@ -50861,282 +50880,355 @@ /turf/open/floor/almayer, /area/almayer/living/pilotbunks) "shv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"shy" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"shL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"sid" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"sik" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"sis" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"siu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"siC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig/chief, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"siF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"shx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"siS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"shJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"siY" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"sjh" = ( +/obj/structure/machinery/photocopier, +/obj/item/paper{ + color = "grey"; + info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; + name = "photocopied image"; + pixel_y = 5 + }, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"sjn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"shL" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"shS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"shT" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"sih" = ( -/obj/item/clothing/mask/rebreather/scarf, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/area/almayer/squads/alpha) +"sjt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"siv" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/area/almayer/squads/alpha) +"sjv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"sjC" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"sjK" = ( +/obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"siB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"siR" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/area/almayer/living/starboard_garden) +"sjO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "\improper Pilot's Office"; + req_one_access_txt = "3;22;19" }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"sjR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"skk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"skv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sjn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"sjo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"skB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; dir = 2; - icon_state = "pipe-c" + name = "\improper Nurse Office"; + req_access_txt = "20"; + req_one_access = null }, -/turf/open/floor/almayer/blue/southwest, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lockerroom) +"skU" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"slb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) -"sjp" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"sjs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access_txt = "19;21" +"slj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"sll" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer/green/northwest, /area/almayer/squads/req) -"sjA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"sjL" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"sjN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"slp" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"sls" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"slt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"skm" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"skq" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/hallways/lower/starboard_fore_hallway) +"slw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/cmcap, -/obj/item/clothing/head/cmcap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"skt" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"skD" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"slT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"skT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"skU" = ( /turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"skV" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"slj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"slp" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/area/almayer/hallways/upper/starboard) +"slU" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"slB" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"slJ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"slQ" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"slW" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"sma" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/item/toy/deck{ - pixel_x = -9 +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"smb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"slZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/area/almayer/squads/alpha) +"smc" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"smf" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"smg" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sme" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"sml" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"smy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"smz" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"smB" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"smm" = ( -/obj/structure/machinery/medical_pod/sleeper{ +/area/almayer/maint/hull/lower/l_f_p) +"smE" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"smO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4; + layer = 3.2; + pixel_y = 4 + }, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"smt" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 23 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"smU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"smv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"smz" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"smD" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/fore_hallway) +"sna" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "snb" = ( /obj/structure/ladder{ height = 1; @@ -51144,144 +51236,109 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"sng" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) "snj" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"sns" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"snV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"snu" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"snZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"som" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"sot" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/living/briefing) +"snQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"soc" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"sol" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt, +/obj/item/ashtray/glass, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"sor" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) "soA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"soJ" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +"soC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"soL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"soM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"soI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"soL" = ( +/obj/structure/machinery/ares/processor/apollo, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "soP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"soT" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 5"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"spr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"spj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Kitchen"; - req_one_access_txt = "30;19" +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"spl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"spq" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"spr" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"spv" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"spD" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"spz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"spD" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"spE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/stern_point_defense) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) "spF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -51290,62 +51347,73 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"spJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"spO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +"spG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"sqf" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/upper_medical) +"sqg" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"sqc" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"sqk" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"sqd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"sqf" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/upper_medical) -"sqp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"sqn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + dir = 1; + name = "\improper Brig" }, -/obj/structure/window/reinforced/ultra{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"sqz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"sqE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"sqA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"sqJ" = ( +/area/almayer/maint/hull/lower/l_m_p) +"sqN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"sqZ" = ( +/obj/structure/machinery/door_control{ + id = "crate_room"; + name = "storage shutters"; + pixel_x = -25; + pixel_y = -1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"sra" = ( /obj/structure/window/reinforced{ dir = 1; layer = 3 @@ -51355,30 +51423,22 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/basketball) -"sqN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"srb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "perma_lockdown_1"; + name = "\improper Perma Cells Lockdown"; + pixel_x = -8; + pixel_y = -4; + req_access_txt = "3" }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"sqO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sqR" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"srm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -51386,145 +51446,89 @@ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"sqU" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"sra" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"srk" = ( -/obj/structure/closet/secure_closet/staff_officer/gear, +/area/almayer/hallways/upper/midship_hallway) +"sro" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"srl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"srv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) "srz" = ( -/obj/structure/sign/safety/security{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"srA" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"srH" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"srO" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"ssh" = ( -/obj/item/paper_bin/wy, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/clicky, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"srP" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -8; - pixel_y = 8 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"srW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"ssd" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) "ssk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"ssx" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"sst" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ssu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/bedsheet/red{ - layer = 3.2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"ssC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/obj/structure/pipes/vents/pump/no_boom{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"ssy" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 4; - pixel_y = 6 +/area/almayer/command/telecomms) +"ssI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ssz" = ( -/obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"ssC" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"ssG" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 + dir = 1 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ssL" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"ssO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) +/turf/open/floor/almayer, +/area/almayer/engineering/lower) "ssX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -51541,767 +51545,816 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"stb" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"sth" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"stt" = ( +"std" = ( +/obj/effect/landmark/start/intel, +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"stf" = ( +/obj/structure/closet/secure_closet/fridge/groceries, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"stn" = ( /obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 - }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"stD" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"stE" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"stQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/maint/hull/upper/s_stern) +"sto" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"stp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "officers_mess"; + name = "Privacy Shutters"; + pixel_y = -19 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"stT" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"sua" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/weapon_room) -"sub" = ( -/obj/structure/disposalpipe/trunk{ +/area/almayer/living/captain_mess) +"stu" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sui" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"suu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"stv" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) +"stK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"stN" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sub" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"sus" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "suy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"suG" = ( -/obj/structure/sign/safety/south{ - pixel_x = 32; - pixel_y = -8 +"suD" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"suI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ + dir = 2 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"suK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"suQ" = ( -/obj/item/tool/wet_sign, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"sve" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/area/almayer/hallways/lower/starboard_aft_hallway) +"suQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"suW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"suX" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "svf" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"svh" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +"svi" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"svt" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"svI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"svD" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/upper/mess) +"svJ" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"svL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "svO" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/port_midship_hallway) -"svS" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/port_missiles) +"svU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"svZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"svW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"svY" = ( -/obj/structure/window/framed/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"swf" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/panic) -"swR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"swU" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 1 +"swi" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"swj" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"swW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/computerlab) -"swY" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"sxi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Lifeboat Control Bubble"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"sxF" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"swq" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"syd" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"syi" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"syj" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"syn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"syz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"sww" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"swK" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"swT" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"swU" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"swX" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/maint/upper/u_a_s) +"sxj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"syF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/workshop) -"syH" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +/area/almayer/engineering/upper_engineering) +"sxx" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"sxH" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 27 }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"syR" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 5"; - name = "Cell 5" +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/sign/safety/five{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"sxJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"syS" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"syT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/area/almayer/maint/hull/upper/u_f_s) +"sxL" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/hop{ + name = "Commanding Officer's rubber stamp"; + pixel_x = -5; + pixel_y = 9 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/item/paper_bin/uscm{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"szf" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 3; +/obj/item/tool/pen/red/clicky{ + pixel_x = -6; pixel_y = 3 }, -/obj/structure/machinery/vending/snack{ - pixel_x = -18; - pixel_y = 4 +/obj/item/tool/pen/blue/clicky{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"sxP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"szj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/squads/alpha_bravo_shared) +"sxU" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"sxW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"syd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"szl" = ( -/obj/structure/janitorialcart, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"szs" = ( -/turf/open/floor/almayer/bluecorner/north, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) -"szA" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"szC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"syj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"szF" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"szG" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/s_bow) -"szK" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"szU" = ( -/obj/structure/toilet{ +/area/almayer/hallways/hangar) +"syx" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"syy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -6 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"syB" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/numbertwobunks) -"szZ" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"sAk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_midship_hallway) -"sAu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/structure/machinery/computer/emails, -/obj/structure/sign/safety/terminal{ +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ pixel_x = 15; - pixel_y = 32 + pixel_y = -32 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"sAB" = ( -/obj/structure/window/reinforced/toughened, +/area/almayer/squads/alpha_bravo_shared) +"syD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"syG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Combat Support Secondary Preparations"; + req_one_access_txt = "19;27;22" + }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"sAJ" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"sAK" = ( +/area/almayer/living/cryo_cells) +"syH" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"syO" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"syV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"sza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) -"sAQ" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 +"szs" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"szu" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"sBi" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"sBE" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"szC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"szN" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"sBJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"szU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"szV" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"sBM" = ( -/obj/structure/bed/chair{ +/area/almayer/hallways/upper/midship_hallway) +"sAw" = ( +/obj/structure/bed/chair/comfy/bravo{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"sBU" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"sBm" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/perma) +"sBs" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"sBx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/req) -"sBX" = ( -/obj/structure/machinery/light{ +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"sBG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lockerroom) +"sBJ" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"sCa" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"sCi" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs1"; - name = "ARES Reception Shutters"; - pixel_y = -24; - req_one_access_txt = "91;92" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"sBK" = ( +/obj/structure/machinery/prop{ + desc = "It's a server box..."; + icon_state = "comm_server"; + name = "server box" }, -/turf/open/floor/almayer/aicore/no_build, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) -"sCo" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, +"sBP" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"sCp" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"sCP" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"sCY" = ( +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"sBV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"sDc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"sCb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"sDf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"sCh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"sDk" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 27 +/area/almayer/maint/hull/upper/s_bow) +"sCz" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"sDp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"sDN" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"sDR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sDV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"sCH" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/sign/safety/chem_lab{ + pixel_x = -17 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"sEc" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/chemistry) +"sCJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = 27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"sEe" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"sCK" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 12; + pixel_y = 25 }, -/turf/open/floor/almayer/orange/west, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) -"sEj" = ( -/obj/structure/sign/safety/terminal{ - layer = 2.5; - pixel_x = 8; - pixel_y = 32 +"sCU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/machinery/chem_simulator{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"sCV" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"sEm" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/item/storage/firstaid/regular, /turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"sDb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"sDp" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) +"sDr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"sDA" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/device/reagent_scanner, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"sDZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"sEb" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"sEh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) "sEq" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"sEw" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, +"sEs" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"sEx" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"sED" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sEF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_a_s) +"sEz" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"sEI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"sEO" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"sEZ" = ( -/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"sFd" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/area/almayer/living/captain_mess) +"sEH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"sFr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/living/briefing) +"sEL" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -18 }, -/obj/item/clipboard{ - base_pixel_x = 20; - pixel_x = 5 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"sFe" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/item/paper{ - pixel_x = 5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/pen{ - pixel_x = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"sFs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/phone_base/rotary{ - name = "CIC Reception Telephone"; - phone_category = "Command"; - phone_id = "CIC Reception"; - pixel_x = -7; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"sFH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"sFz" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/clothing/glasses/welding{ pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"sFJ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"sFL" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"sFA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"sFM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"sGb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/living/grunt_rnr) +"sFD" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"sFE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"sFH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"sFO" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cichallway) "sGh" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"sGj" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"sGl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sGm" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"sGq" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"sGx" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"sGy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/skills{ + dir = 4; + pixel_y = 18 + }, +/obj/structure/machinery/computer/secure_data{ dir = 4 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc01"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = -23 +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4; + pixel_y = -18 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"sGo" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"sGD" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/lifeboat) +"sGF" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sGC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) +/area/almayer/maint/hull/upper/u_m_p) +"sGO" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) "sGU" = ( /obj/structure/mirror, /turf/closed/wall/almayer, /area/almayer/living/gym) -"sGV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"sHn" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 +"sHk" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"sHm" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) "sHo" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -52321,172 +52374,163 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sHC" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"sHv" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"sHz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) "sHE" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 +/obj/item/tool/wrench{ + pixel_y = 2 }, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"sHH" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sHK" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sHV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"sHI" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/area/almayer/squads/req) +"sHZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/bathunisex{ + pixel_x = 11; + pixel_y = -26 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"sHQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"sIb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + name = "\improper Brig Cells" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"sHU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/no_build, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) -"sIa" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"sIp" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 +"sIi" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"sIu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/chapel) +"sIj" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 5; + pixel_y = 29 }, -/turf/open/floor/almayer/sterile_green_side/west, +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"sIv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +"sIm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sIn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"sIJ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"sIX" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"sIo" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"sIq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-4"; + req_access = null }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"sJi" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"sJj" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"sJn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"sIu" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"sIS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"sJy" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"sJw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"sJR" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"sKu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"sKC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"sJM" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"sKK" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"sJP" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"sKQ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"sKU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/target{ - name = "punching bag" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"sKr" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"sKx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"sKy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"sKD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/mp_bunks) -"sKH" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"sLn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/starboard_midship_hallway) +"sLe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) "sLo" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -52497,83 +52541,132 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sLu" = ( -/obj/structure/sign/safety/water{ +"sLr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"sLt" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"sLv" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; pixel_x = 8; pixel_y = 32 }, +/obj/structure/machinery/chem_simulator{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"sLG" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"sLy" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/area/almayer/squads/req) +"sLK" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/midship_hallway) +"sLL" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sLM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"sMe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"sLU" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"sMu" = ( -/obj/structure/disposalpipe/junction, +/area/almayer/hallways/hangar) +"sLW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"sLX" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or04"; + name = "Operating Theatre 4" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"sMv" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_four) +"sMi" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "sMM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"sMU" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser{ - pixel_y = 8 +"sMO" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"sMS" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"sMZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/facepaint/green, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) -"sNk" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"sNx" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sNd" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sNs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bloodsoup{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 }, -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/command/cichallway) +"sNu" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"sNA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) "sNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -52587,36 +52680,24 @@ "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) -"sNV" = ( -/obj/structure/closet/crate/ammo, -/obj/structure/machinery/light/small, -/obj/item/ammo_box/magazine/empty, -/obj/item/ammo_box/magazine/empty, -/obj/structure/machinery/door_control{ - id = "crate_room3"; - name = "storage shutters"; - pixel_x = -26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"sOk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sNY" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"sOd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"sOh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"sOn" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "sOy" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -52627,255 +52708,268 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sOE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"sOK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/shipboard/brig/starboard_hallway) "sOM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc03"; - name = "\improper Treatment Center" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"sOT" = ( -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = 6 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sPi" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_x = 8 +/obj/structure/catwalk{ + health = null }, -/obj/structure/phone_base/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -4; - pixel_y = 6 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"sOR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/toner{ - pixel_x = -2; - pixel_y = -11 +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"sOV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) "sPk" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"sPo" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"sPr" = ( /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"sPx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"sPy" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower) -"sPM" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/living/grunt_rnr) -"sPP" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"sPT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"sPY" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/hallways/lower/port_midship_hallway) +"sPv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/obj/item/device/flash, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"sPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"sPZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ +/area/almayer/maint/hull/lower/l_f_s) +"sPC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"sQb" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"sQf" = ( +"sPG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sQt" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -1; - pixel_y = 1 +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"sQW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/tool/pen/clicky{ - pixel_x = 1; - pixel_y = -1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 5 +/obj/structure/machinery/firealarm{ + pixel_y = -29 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"sQX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"sQi" = ( -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"sRc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SE-out" }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"sQr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"sQu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"sRi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"sRl" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"sQy" = ( -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"sQN" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sQX" = ( -/obj/structure/machinery/brig_cell/cell_5{ - pixel_x = 32; - pixel_y = -32 +/area/almayer/engineering/upper_engineering/starboard) +"sRD" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"sQY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 8; - name = "\improper Chief MP's Office" +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"sRE" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"sRL" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + desc = "Do you remember who you are?"; + icon_state = "mirror_broke"; + name = "broken mirror"; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"sRb" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"sRf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 11 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"sRi" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/device/reagent_scanner, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"sRt" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"sRF" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "Delta_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/item/prop{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 29 + }, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"sRX" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"sSf" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"sSt" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"sRN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"sSE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"sSI" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"sSV" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"sRS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"sRY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sSh" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"sSi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"sSu" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"sSA" = ( /obj/structure/machinery/light, +/obj/structure/closet/secure_closet/fridge/groceries/stock, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"sTf" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +/area/almayer/living/grunt_rnr) +"sSH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"sSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/maint/hull/lower/l_m_p) +"sSK" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) "sTm" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, @@ -52886,46 +52980,39 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"sTy" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"sTH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"sTM" = ( -/obj/structure/bed/chair{ +"sTx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"sUk" = ( /obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"sUm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/folder/black, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"sTE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"sTI" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"sTY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/port_missiles) +"sUf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"sUn" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/red/north, +/area/almayer/living/port_emb) +"sUl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"sUr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) "sUs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52936,737 +53023,744 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"sUw" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"sUu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"sUD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"sUP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"sVg" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"sVm" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"sUS" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"sVo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/ce_room) -"sVG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"sVN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Auxiliary Support Officer's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"sVS" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"sVT" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"sVX" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"sWh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, +/area/almayer/maint/hull/lower/l_a_s) +"sVh" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/frame/light_fixture, +/obj/item/frame/light_fixture, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"sWj" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/engineering/lower/workshop) +"sVl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/vehiclehangar) -"sWn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"sWq" = ( -/obj/structure/machinery/ares/cpu, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"sWv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"sVG" = ( +/obj/structure/machinery/computer/cameras/containment/hidden{ + dir = 4; + pixel_x = -17 }, +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album, +/obj/item/device/camera_film, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"sWI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/command/corporateliaison) +"sVL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"sVW" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"sWN" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"sWQ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "90;91;92" + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"sWU" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"sXb" = ( +/area/almayer/squads/alpha) +"sWk" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sWp" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sWv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sWw" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"sWH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"sXc" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"sXr" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"sWY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sXk" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) "sXw" = ( /obj/effect/landmark/start/marine/engineer/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"sXP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"sXS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"sYc" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"sXR" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"sXS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" +/area/almayer/maint/hull/lower/l_f_s) +"sYd" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Records"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"sYj" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/cmcap, +/obj/item/clothing/head/cmcap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"sYt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"sYg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"sYr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/squads/alpha) +"sYv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/laser{ + pixel_x = 32; + pixel_y = -8 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 6 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"sYH" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"sYz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"sZg" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"sZa" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"sZc" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"sZD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"sZi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ +/obj/structure/bed/chair/comfy/alpha{ dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sZM" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, /turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"sZt" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 +/area/almayer/squads/alpha) +"sZT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"sZu" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/hallways/upper/midship_hallway) +"sZU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"sZV" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"sZx" = ( +/area/almayer/squads/charlie) +"tai" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 8 - }, -/obj/item/clipboard{ - pixel_x = -8 - }, -/obj/item/folder/white{ - pixel_x = -8 +/obj/item/storage/toolbox/mechanical, +/obj/item/dogtag{ + desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"sZK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"sZP" = ( -/obj/structure/bed/chair, +/obj/item/device/megaphone, /turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"sZZ" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"tan" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) +/area/almayer/living/auxiliary_officer_office) "tat" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) "tau" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) +"taD" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"tav" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"taE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"tax" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"tay" = ( -/obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) "taF" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"taI" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"taO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"taW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"taX" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"taZ" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"taI" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"tbl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"tbu" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"tbw" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"tbE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"taO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"tbQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"taT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/command/cichallway) -"tbZ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tcn" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"tba" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tbb" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"tcz" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tbF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"tcG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"tcR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/area/almayer/shipboard/brig/starboard_hallway) +"tbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"tbO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/obj/structure/machinery/sleep_console, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tbS" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"tbW" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"tbZ" = ( /turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"tcX" = ( -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = 7; - pixel_y = -2 +/area/almayer/medical/containment) +"tch" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/maint/upper/u_a_p) +"tck" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 2 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"tcF" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/item/storage/box/masks{ - layer = 3.2; - pixel_x = -7; - pixel_y = -2 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/storage/box/gloves{ - layer = 3.1; - pixel_x = 7; - pixel_y = 2 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 6 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/item/storage/box/masks{ - layer = 3.1; - pixel_x = -7; - pixel_y = 2 +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/obj/item/storage/box/masks{ - pixel_x = -7; - pixel_y = 6 +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/item/toy/plush/barricade, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tcI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"tcK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper CMO's Office"; + req_one_access = null; + req_one_access_txt = "1;5" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"tcM" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"tdi" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"tdC" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"tcQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"tdu" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"tdX" = ( -/obj/structure/pipes/vents/pump{ +"tdU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"tea" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"ted" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"teh" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"tek" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"ten" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"ter" = ( +/obj/structure/window/framed/almayer/aicore/hull, +/turf/open/floor/plating, +/area/almayer/command/airoom) "tez" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"teE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 4 +"teG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"teN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"tfd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/computer/emails, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"teQ" = ( -/obj/structure/largecrate/random/secure, +/area/almayer/living/gym) +"tfh" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"teS" = ( -/obj/structure/machinery/chem_storage/medbay{ - dir = 1 - }, -/obj/structure/machinery/chem_storage/research{ - dir = 1; - layer = 3; - pixel_y = 18 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"tfm" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, +/area/almayer/maint/upper/u_m_s) +"tfo" = ( +/obj/structure/safe, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"tfB" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"tfI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"tfM" = ( /obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"tfP" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"tgl" = ( -/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"tgu" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"tfR" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/magazine/dirty{ - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"tgM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"tgR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"tha" = ( -/obj/structure/machinery/vending/snack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"tfV" = ( +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"thc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ +/area/almayer/hallways/upper/fore_hallway) +"tfW" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"tfY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"tge" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"tgp" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"tgv" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Lobby"; - req_access = null +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"tgz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"the" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"tgH" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"tha" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"thf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) "thh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/folder/black{ - pixel_x = 7; - pixel_y = -3 +/obj/structure/machinery/scoreboard_button{ + id = "basketball"; + name = "Scoreboard Reset Button"; + pixel_x = -20 }, -/obj/item/device/camera_film{ - pixel_x = -5 +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"thn" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"thk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"tho" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stairs) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"ths" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) "thw" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"thB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/hydroponics) -"thJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/engineering/upper_engineering/starboard) +"thI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"thQ" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"thR" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"thS" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/maint/upper/mess) +"thZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tig" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 14; - pixel_y = 20 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"tih" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"tis" = ( +/area/almayer/hallways/lower/starboard_fore_hallway) +"tic" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"tie" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"tiP" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/shipboard/brig/cells) +"tig" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 14; + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"tin" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"tiX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 +/area/almayer/maint/lower/cryo_cells) +"tir" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tjf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 }, -/obj/structure/pipes/vents/scrubber{ +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"tiv" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"tiy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"tiD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"tiO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tiV" = ( +/obj/structure/bed/chair/comfy/delta{ dir = 8 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tjr" = ( +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 }, /turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/shipboard/brig/perma) +"tjs" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "tjw" = ( /obj/structure/machinery/cm_vending/clothing/vehicle_crew{ density = 0; @@ -53674,153 +53768,176 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"tjI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/execution) -"tjL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"tjN" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"tjx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"tjO" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "ship-grade camera" + id = "panicroomback"; + name = "\improper Safe Room Shutters" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"tjQ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"tjF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"tjL" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"tjQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "tjR" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 1"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"tjT" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"tjU" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/maint/upper/mess) -"tjZ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"tjS" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"tkg" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" + name = "ship-grade camera" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"tkm" = ( -/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"tjU" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/lower/l_a_s) +"tkh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) "tkq" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"tkv" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"tkS" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"tkT" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"tle" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"tla" = ( -/obj/structure/machinery/telecomms/receiver/preset_left, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"tlk" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"tln" = ( /obj/structure/sign/safety/hazard{ + pixel_x = 15; pixel_y = 32 }, -/obj/structure/sign/safety/radio_rad{ - pixel_x = 16; - pixel_y = 32 +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"tlt" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"tlc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tlk" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 1"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tlC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"tlD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "37" }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"tlm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"tlH" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"tlr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"tlL" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"tlM" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"tmp" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"tlN" = ( /obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/clipboard, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"tlT" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"tlW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/engineering_materials, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/engineering/lower/workshop/hangar) +"tlX" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"tmk" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"tmp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) "tmB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -53828,299 +53945,307 @@ /turf/open/floor/almayer, /area/almayer/living/briefing) "tmE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -14; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"tmG" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"tmH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/port_umbilical) +"tmF" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"tmL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +/area/almayer/maint/hull/upper/u_a_s) +"tmJ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_p) +"tmT" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"tmU" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"tmY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment{ +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"tmW" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"tne" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"tnh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"tnv" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tnG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"tnJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"tnd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/ultra{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"tnQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"tnS" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"tnV" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/briefing) +"tnj" = ( +/obj/structure/closet/toolcloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; pixel_y = 32 }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"tnt" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"tnx" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"tnz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"tnA" = ( +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"tnI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"toa" = ( +/area/almayer/living/auxiliary_officer_office) +"tnM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"tob" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"toc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"tog" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"tot" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"tnP" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tod" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"tom" = ( +/obj/structure/machinery/ares/processor/bioscan, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "tov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"toI" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) "toJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) "toU" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/maint/upper/u_a_s) -"toW" = ( -/obj/structure/machinery/door_control{ - id = "pobunk1"; - name = "PO1 Privacy Shutters"; - pixel_x = -24 +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"toX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"toZ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/area/almayer/maint/hull/lower/l_f_p) +"toY" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) "tpd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tph" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/tofukabob, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"tpj" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) +"tpe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) "tpn" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) -"tpp" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"tpq" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"tpv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" }, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"tpr" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"tpx" = ( -/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tpV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tpz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 +/area/almayer/maint/hull/lower/l_a_p) +"tqd" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/obj/item/paper, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 4 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"tqp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"tpA" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"tqw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"tpC" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tpH" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"tqI" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"tqZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"tqF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"tqM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/s_bow) +"tqW" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"tqZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"tra" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "trb" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/south1) "trc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"tre" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper CMO's Bedroom"; - req_one_access_txt = "1;5" +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"tri" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"trl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"trt" = ( -/obj/structure/sign/prop2{ - pixel_y = 29 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"trv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"trN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"trR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/living/offices) +"trY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "tsa" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/chef/classic, @@ -54128,113 +54253,117 @@ /obj/item/clothing/suit/chef/classic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tse" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +"tsk" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/securestorage) +"tsl" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"tso" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"tsh" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tsi" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"tsn" = ( +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"tsD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"tss" = ( -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_x = -4; - pixel_y = 2 + icon_state = "SE-out"; + pixel_x = 2 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"tsD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"tsT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/living/offices) +"tsR" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"tsU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"tsV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/almayer/living/grunt_rnr) "tsX" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/lobby) +"tta" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) "ttb" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/interrogation) "tte" = ( /obj/structure/pipes/vents/pump/no_boom{ welded = 1 }, /turf/open/floor/plating, /area/almayer/powered/agent) -"ttf" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"tth" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/briefing) +"tti" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"tts" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/machinery/vending/security/riot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"ttg" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"ttv" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - name = "\improper Chief MP's Bedroom" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + name = "\improper Brig" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"ttQ" = ( +/area/almayer/shipboard/brig/starboard_hallway) +"ttu" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"ttA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"ttG" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"ttJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/area/almayer/maint/hull/lower/l_m_s) +"ttK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "ttS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -54244,168 +54373,218 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"ttT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) "ttW" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"tui" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/command/cic) -"tuj" = ( -/obj/structure/ladder{ - height = 1; - id = "med1" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"tuv" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"tuy" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) -"tuz" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"tuA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_missiles) -"tuB" = ( +/area/almayer/hallways/lower/port_aft_hallway) +"ttX" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"tub" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"tuE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"tuJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tuO" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"tuW" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Access Hall" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"tvb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"tvx" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/hallways/upper/starboard) +"tug" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"tvC" = ( -/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"tur" = ( +/obj/structure/machinery/cm_vending/gear/engi, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"tvJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/trash/USCMtray, -/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) -"tvK" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"tvY" = ( +"tuA" = ( /turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/p_bow) -"twl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"twx" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +/area/almayer/shipboard/port_missiles) +"tuC" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"tuF" = ( /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"twD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/hull/lower/l_f_s) +"tuJ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"twE" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/obj/item/tool/kitchen/tray{ + pixel_y = 9 }, -/obj/item/storage/donut_box{ +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ pixel_y = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"twF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tuS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"twK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"twL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"tuU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsLower"; + name = "\improper ARES Core Shutters"; + plane = -7 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"twV" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/effect/step_trigger/ares_alert/public{ + alert_id = "AresStairs"; + alert_message = "Caution: Movement detected in ARES Core."; + cooldown_duration = 1200 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"tuY" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"tvf" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"tvr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"tvD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"tvF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"tvS" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"tvW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"twc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"twf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"twh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"twj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tww" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"twD" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"twE" = ( +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/l_m_s) +"twF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Stairway Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"twI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"twJ" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/lower/repair_bay) +"twO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "twW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -54420,54 +54599,48 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"txh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"txr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_f_s) -"txt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"txz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"txK" = ( +"twY" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"txb" = ( /turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) -"txU" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, /area/almayer/squads/delta) -"txY" = ( -/obj/structure/bed/chair, +"txo" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"txp" = ( +/obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_a_s) +"txu" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"txJ" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"txK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"txM" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med_req" + }, +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/hydroponics) +"txR" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "tyb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -54477,335 +54650,335 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"tyG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"tyO" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tyZ" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"tzq" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"tzs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - id_tag = "CO-Office"; - name = "\improper Commanding Officer's Office"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"tzB" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 +"tyh" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"tzH" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +"tyj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"tyl" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/lower/starboard_midship_hallway) -"tzM" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +"tyr" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"tyA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tAb" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"tAc" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"tyQ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"tyV" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower) -"tAe" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"tAj" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) -"tAz" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Comms" }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tzb" = ( +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_x = -27 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tAA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/living/briefing) +"tAa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"tAb" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"tAB" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"tAj" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"tAx" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 }, -/obj/structure/mirror{ - pixel_x = 29 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tAA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"tAH" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"tAM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/captain_mess) -"tAD" = ( -/obj/structure/machinery/door/poddoor/railing{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - id = "supply_elevator_railing" + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"tAM" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"tBa" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"tBb" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/perma) -"tBe" = ( -/obj/structure/disposalpipe/trunk{ +/area/almayer/living/grunt_rnr) +"tAT" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"tAY" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"tAZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_med"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/obj/structure/machinery/xenoanalyzer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"tBg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tBi" = ( /obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/obj/item/storage/box/masks, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"tBj" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"tBm" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) +/area/almayer/shipboard/brig/cryo) "tBq" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) "tBr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tBM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"tBC" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"tBE" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/command/cic) +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) "tBQ" = ( -/obj/structure/pipes/vents/pump, +/obj/vehicle/powerloader, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"tBZ" = ( /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"tCi" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"tCj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 4 +/area/almayer/squads/bravo) +"tCa" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"tCk" = ( -/obj/structure/bed/chair/comfy/alpha{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"tCe" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"tCh" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"tCl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"tCu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_container/food/condiment/sugar{ - pixel_x = 10 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/obj/item/clothing/head/chefhat, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"tCq" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tCs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"tCA" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"tCF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"tCv" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"tCJ" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"tCM" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "N"; + pixel_y = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"tDi" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/engineering/upper_engineering/port) +"tDj" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"tCQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"tDt" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"tDB" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"tDG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"tDc" = ( -/turf/open/floor/almayer, +/area/almayer/medical/medical_science) +"tDW" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"tEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"tDg" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Records"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"tDr" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"tDL" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"tDN" = ( -/obj/structure/largecrate/random/barrel/white, +"tEm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tDQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"tEa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +/area/almayer/squads/bravo) +"tEo" = ( /obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tEg" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"tEs" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_y = 20 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"tEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"tEr" = ( -/obj/structure/machinery/landinglight/ds1, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tEF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/area/almayer/engineering/lower) +"tEI" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 3"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"tEL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"tEM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) "tEO" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, @@ -54815,282 +54988,184 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"tET" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"tEP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tEQ" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"tFp" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"tFs" = ( +/obj/item/clothing/head/helmet/marine{ + pixel_x = 16; + pixel_y = 6 }, +/obj/item/reagent_container/food/snacks/grown/poppy, +/obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"tEU" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"tFa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/obj/item/device/megaphone, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 8; - layer = 2.99; - name = "brig cameras console"; - pixel_x = 17; - pixel_y = 12 - }, +/area/almayer/living/starboard_garden) +"tFB" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"tFT" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tFj" = ( -/obj/structure/bed/bedroll{ - desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; - name = "cat bed" - }, -/obj/structure/machinery/firealarm{ - pixel_x = -1; - pixel_y = 28 - }, -/mob/living/simple_animal/cat/Jones{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"tFo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"tFs" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"tFw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"tFA" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"tFF" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"tFG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, +/area/almayer/maint/hull/upper/u_a_s) +"tGb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"tFR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/upper/u_a_s) +"tGc" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"tFT" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"tFV" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/structure/sign/catclock{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) +/area/almayer/squads/alpha) "tGi" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"tGr" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 +"tGj" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"tGA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"tGC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Tanker Quarters"; - req_one_access_txt = "19;27" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"tGz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/tankerbunks) +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "tGE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 5 +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"tGF" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/obj/item/clothing/head/ushanka{ - layer = 3.3 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"tGV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"tGY" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"tHj" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"tGJ" = ( -/obj/structure/pipes/standard/tank/oxygen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"tGZ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_y = -26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"tHa" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"tHc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 + health = 80 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tHl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) +/area/almayer/engineering/upper_engineering) +"tHy" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "tHz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"tHH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"tHF" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tHM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"tHL" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "tHS" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) "tHT" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"tHV" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"tIj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"tIl" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -4 +/area/almayer/squads/alpha) +"tIm" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -17; + pixel_y = 6 }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -9 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"tIn" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"tIH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"tIt" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"tIC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"tIE" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tIF" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"tIH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -55102,56 +55177,73 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"tIR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) "tIS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tJl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"tJw" = ( +"tIV" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"tJg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_a_p) +"tJh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"tJk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"tJs" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "tJz" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"tJC" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) "tJD" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"tJH" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_a_p) -"tJQ" = ( -/obj/structure/bed/stool, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"tJF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 6 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) "tJR" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/sign/safety/medical{ @@ -55159,226 +55251,181 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tKk" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_p) -"tKl" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tKt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tKz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"tKA" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"tKN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +"tJY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"tKO" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/pilotbunks) -"tKQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"tJZ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"tKU" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"tKi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"tKW" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"tKn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"tKP" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tLe" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/cic) -"tLh" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_four) -"tLn" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tLx" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"tLC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -11; - pixel_y = 16 +/area/almayer/living/grunt_rnr) +"tKV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research/main_terminal{ + dir = 4 }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 4; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/medical_science) -"tLK" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"tLX" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"tLf" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"tLr" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"tLv" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"tLH" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/maint/upper/u_a_s) +"tLL" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tLO" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"tMs" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"tMw" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"tMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/phone_base/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"tLS" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tMh" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliaison) +"tMi" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tMt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"tNi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"tMu" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"tNt" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"tNA" = ( -/obj/structure/platform{ +"tMC" = ( +/obj/structure/machinery/firealarm{ dir = 4; - layer = 2.7 + pixel_x = 24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"tMF" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tNm" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"tND" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tNG" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/structure/sign/safety/west{ + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tNN" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 +/area/almayer/hallways/lower/port_fore_hallway) +"tNu" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"tNB" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 5 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/tool/pen{ + pixel_x = 8 + }, +/obj/item/clipboard{ + pixel_x = -8 + }, +/obj/item/folder/white{ + pixel_x = -8 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"tNN" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_p) "tNR" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -55388,108 +55435,126 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tOp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"tOm" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tOt" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"tOL" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"tOs" = ( -/obj/structure/closet/secure_closet/fridge/groceries, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"tOt" = ( -/obj/structure/machinery/photocopier, +/area/almayer/living/auxiliary_officer_office) +"tOY" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tOK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/almayer/maint/upper/u_m_s) +"tPq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"tPt" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "3" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"tOV" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/port) -"tOZ" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/device/radio/listening_bug/radio_linked/mp{ + pixel_y = 8 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"tPi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/device/radio/listening_bug/radio_linked/mp, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"tPw" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tPq" = ( +/area/almayer/living/pilotbunks) +"tPG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"tPu" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"tPD" = ( -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"tPH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "tPI" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"tPM" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"tPO" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/structure/largecrate/random/mini/wooden{ +"tPK" = ( +/obj/item/reagent_container/food/snacks/grown/poppy{ pixel_x = 4; - pixel_y = 6 + pixel_y = 4 }, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"tPQ" = ( -/obj/structure/machinery/light, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"tPT" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"tPV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W" }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tQb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tQc" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -29 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "tQd" = ( /obj/structure/machinery/light{ dir = 8 @@ -55499,125 +55564,160 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tQg" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, +"tQj" = ( +/obj/item/trash/cigbutt, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"tQp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"tQq" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Synth Bay" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"tQF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tQy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"tQI" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"tQG" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) "tQL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"tQO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +"tQM" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"tQR" = ( +/area/almayer/maint/upper/u_a_s) +"tQV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south1) +"tRb" = ( +/obj/item/tool/screwdriver, /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"tQU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"tRi" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"tRr" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = -4 }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"tQV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south1) -"tQX" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"tRU" = ( +/area/almayer/command/corporateliaison) +"tRH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"tRL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"tRP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"tRQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"tRT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"tRY" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"tRZ" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge4" +/obj/structure/bedsheetbin{ + pixel_x = 26; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"tSb" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"tSk" = ( +/obj/item/tool/soap/syndie, /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "W" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"tRZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"tSe" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/workshop) -"tSo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - layer = 3.03; - pixel_x = 4; - pixel_y = 1 +"tSf" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.02; - pixel_x = -5; - pixel_y = 3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tSi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "tSp" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -55628,83 +55728,56 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tSD" = ( -/obj/structure/bed/chair{ - dir = 4 +"tSC" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"tSI" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/living/briefing) +"tSJ" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"tSE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"tSV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"tSM" = ( -/obj/structure/machinery/cryopod, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"tTg" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/turf/open/floor/almayer/cargo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/almayer/engineering/upper_engineering/port) -"tTk" = ( +"tTo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"tTn" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"tTy" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"tTA" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"tTK" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/lifeboat) -"tTL" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"tTO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"tUc" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/living/captain_mess) +"tTS" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) "tUh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -55712,171 +55785,152 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"tUm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "tUo" = ( /obj/item/clipboard, /obj/structure/surface/table/reinforced/black, /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/command/cic) -"tUq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/groundside_operations{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) "tUx" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"tUy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"tUA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"tUD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 8 +"tUz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"tUM" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"tUQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"tUX" = ( -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer/sterile_green, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"tVy" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ +"tUA" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; - icon_state = "ramptop" + id_tag = "or02"; + name = "Operating Theatre 2" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"tVH" = ( -/obj/item/storage/box/nade_box/tear_gas, -/obj/item/storage/box/nade_box/tear_gas{ - pixel_x = 3; - pixel_y = 5 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"tVK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_two) +"tUE" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tVM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/area/almayer/squads/bravo) +"tUL" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tUM" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"tWi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/item/clipboard{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) -"tWu" = ( +"tUO" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/command/telecomms) +"tUY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tVa" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"tVj" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/pilotbunks) +"tVo" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"tVH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"tVN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"tVZ" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tWd" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"tWJ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"tWK" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/almayer/hallways/lower/starboard_aft_hallway) +"tWi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"tWS" = ( +/area/almayer/engineering/upper_engineering/port) +"tWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"tWu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"tWX" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"tXg" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"tWP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"tXe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) "tXi" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_2"; @@ -55884,274 +55938,230 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"tXq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tXE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/white{ - pixel_y = 6 - }, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"tXH" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"tXw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/light{ +/obj/structure/bed/chair/comfy/charlie{ dir = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tXB" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/command/cic) "tXM" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"tXQ" = ( -/obj/item/trash/crushed_cup, +"tXN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"tYa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tYb" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"tYd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/command/telecomms) +"tYc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tYn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "tYo" = ( -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -5; - pixel_y = 1 +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_y = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"tYu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"tYF" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +/area/almayer/command/cic) +"tYp" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"tYD" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/engineering/lower/workshop) "tYI" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"tYM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"tYN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tYO" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"tYV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"tZn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"tZp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"tZt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"tZw" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"tZx" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tZV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Spare Bomb Suit"; - req_one_access = null; - req_one_access_txt = "35" +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uac" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uak" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 1"; - locked = 1; - name = "\improper Containment Cell 1" +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 1"; - name = "\improper Containment Cell 1"; - unacidable = 1 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"uaq" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"uaw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"tYK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"tZd" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/structure/machinery/door_display/research_cell{ - dir = 1; - id = "Containment Cell 5"; - name = "Cell 5 Control"; - pixel_x = 4; - pixel_y = -3 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 5"; - name = "Containment Lockdown"; - pixel_x = -8; - pixel_y = -3; - req_one_access_txt = "19;28" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"tZo" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tZG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"tZH" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"tZQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"tZX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tZY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"uaC" = ( -/obj/structure/machinery/power/apc/almayer/west, /turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"uac" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"uai" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"uaw" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) "uaE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uaP" = ( /obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"uaL" = ( -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/ashtray/glass{ - pixel_x = -6 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_x = 7; - pixel_y = 3 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_y = 7 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uaS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 11 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uaS" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/squads/req) "uaU" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -56168,63 +56178,69 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"ubj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ - dir = 1 +"ubt" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"ubo" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"ubK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ubQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/area/almayer/medical/morgue) +"ubu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 4 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"ubU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"ubx" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) +"ubB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"ubX" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"ubZ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"ubF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"ubG" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) -"uca" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ +"ubK" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"uch" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/rack{ density = 0; pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 15 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 22 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"ucn" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/living/grunt_rnr) "ucp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -56235,510 +56251,563 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"ucK" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"udg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"udm" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"udq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer/hardened/east, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"udD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"ucx" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"ucB" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"udJ" = ( -/obj/structure/toilet{ +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"ucG" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"udP" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"udR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"udY" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 +/area/almayer/living/auxiliary_officer_office) +"ucL" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/surface/rack, /turf/open/floor/almayer/silver/southeast, /area/almayer/command/computerlab) -"udZ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"ueb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uee" = ( -/obj/structure/machinery/door/poddoor/almayer/blended{ - id = "RoomDivider"; - layer = 3.1; - name = "\improper Room Divider" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"uef" = ( +"ucN" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"uej" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"ueu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ueC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"ueG" = ( -/obj/item/bedsheet/orange, -/obj/structure/bed{ - icon_state = "psychbed" +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"ucO" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30; - req_access = list(); - req_access_txt = "6" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"ueK" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"ueO" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - isopen = 1; - starting_helmet_type = null; - starting_mask_type = null; - starting_suit_type = null; - starting_tank_type = null +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"ucX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"ude" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"ueT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"ufb" = ( +/area/almayer/maint/hull/lower/l_f_p) +"udh" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"udk" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 1"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"ufd" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"udp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"ufh" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ufl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"ufn" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ufz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"udE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"udT" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"udZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"uea" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"uec" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/door/window/westright{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"ueg" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"uel" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"uey" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ufP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"ufS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n117{ - pixel_x = 2; - pixel_y = 5 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"ueB" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"ugf" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ugo" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"ueC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"ueG" = ( +/obj/item/bedsheet/orange, +/obj/structure/bed{ + icon_state = "psychbed" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"ugu" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ugy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30; + req_access = list(); + req_access_txt = "6" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"ugA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"ueM" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"ugE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ueS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"ueT" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"ugG" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/almayer/green, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) -"ugL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"ueV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ugS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"ueX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ufh" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"uhe" = ( +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ufv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"ufz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) -"uho" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"ufD" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"ufE" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"ufP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"uhq" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"ufY" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"uga" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"uhu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"uhE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"uhL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"ugd" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"ugj" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"ugm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"ugu" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"uhM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/living/briefing) +"ugS" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"ugY" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"uhT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_f_s) +"uhc" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"uhU" = ( -/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"uhW" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/commandbunks) -"uij" = ( -/obj/structure/machinery/light{ - dir = 1 +"uhg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uio" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"uho" = ( +/obj/structure/platform{ dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"uhF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/black, +/obj/item/tool/pen, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"uit" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"uhM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"uhX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"uie" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 }, -/obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"uix" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"uih" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/port_midship_hallway) -"uiy" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"uiF" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"uik" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"uit" = ( +/turf/open/floor/almayer/red, /area/almayer/command/cic) -"uiJ" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge2" +"uiv" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) +/area/almayer/command/lifeboat) +"uiF" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"uiI" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/pilotbunks) "uiM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"uiO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uiP" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"uiS" = ( +/area/almayer/living/captain_mess) +"uiW" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"uiX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"uiY" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/starboard_missiles) +"ujc" = ( +/obj/structure/stairs{ + dir = 1 }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"ujj" = ( /turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ujk" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/midship_hallway) +"ujl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) -"uiW" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/u_a_s) -"ujf" = ( -/obj/structure/phone_base/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 +"ujm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"ujg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D1"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ujp" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"ujt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/shipboard/brig/perma) +"ujq" = ( +/obj/structure/machinery/ares/substrate, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"ujs" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) +/area/almayer/living/synthcloset) "ujw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"ujE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "ujF" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/structure/platform{ + dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"ujN" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"ujU" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsLower"; - name = "\improper ARES Core Shutters"; - plane = -7 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"ujM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/effect/step_trigger/ares_alert/public{ - alert_id = "AresStairs"; - alert_message = "Caution: Movement detected in ARES Core."; - cooldown_duration = 1200 +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"ujW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"uko" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"ukv" = ( -/obj/effect/landmark/start/pilot/dropship_pilot, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"ujZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"uka" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ukl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"ukn" = ( +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) +"ukp" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) "ukD" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"ukF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"ukP" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ukT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) +/area/almayer/medical/lower_medical_medbay) "ukV" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /obj/structure/machinery/light{ @@ -56753,190 +56822,160 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"ulr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"uls" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"ult" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"ulm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ulW" = ( +/obj/structure/phone_base{ + name = "Brig Offices Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Main Offices"; + pixel_y = 32 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"umj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"ulu" = ( -/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ump" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ulz" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/area/almayer/maint/hull/upper/s_bow) +"umF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"ulV" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"uma" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"umH" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"umq" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"umK" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8; - plane = -6 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"umQ" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"umV" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Field Surgery Equipment"; + req_access_txt = "20"; + req_one_access = null }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_corner/east, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) -"umN" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"una" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"unc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"umW" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"umZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) +/obj/item/storage/box/syringes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"und" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/command/cic) "unf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) "uni" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"uno" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/station_alert{ dir = 1 }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"unB" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"unC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"unI" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/galley{ - pixel_x = 8; +/area/almayer/engineering/upper_engineering/starboard) +"unz" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"unF" = ( +/obj/structure/machinery/atm{ pixel_y = 32 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"unY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = -28 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"unS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uoa" = ( +/obj/structure/sign/safety/maint{ pixel_x = -17 }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"uop" = ( -/turf/open/floor/almayer/orangecorner/west, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/fore_hallway) +"uoj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Security Vault"; + pixel_x = -24; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -32; + pixel_y = 40; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uov" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/engine_core) -"uoz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"uox" = ( +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -56944,290 +56983,267 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) "uoD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"uoJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"uoO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +/obj/structure/machinery/power/apc/almayer/west, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"uoU" = ( -/obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"upc" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"upg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_a_s) +"uoL" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"upk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"upl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/maint/hull/upper/u_a_s) +"upa" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"upi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"upB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) -"upC" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"upH" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Brig Cells" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"uqb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/shipboard/brig/starboard_hallway) +"upj" = ( +/obj/item/stack/tile/carpet{ + amount = 12 }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"upq" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uqj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"upE" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"uql" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"upS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"uqm" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/starboard_atmos) +"uqk" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "uqo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"uqs" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"uqu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"uqw" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"uqx" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/upper/u_a_p) +"uqx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) "uqI" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uqP" = ( +"uqK" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"uqQ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"uqT" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"uqU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Lobby"; + req_access = null }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"uqY" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"urc" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Corridor"; dir = 8; - pixel_y = 3 + pixel_y = 2 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) -"urb" = ( -/obj/structure/machinery/door_control{ - id = "or2privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"urj" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"urn" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"urD" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"urk" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"urF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"urt" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"urH" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 + dir = 1 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"urA" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"urB" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"urG" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"urH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) "urN" = ( /obj/effect/landmark/start/marine/leader/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"urY" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"usb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"urO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"urQ" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/hangar) +"urS" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/clothing/head/helmet/space/compression/uscm, +/obj/item/cell/crap{ + pixel_x = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"usc" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"usa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ req_access = null; - req_one_access_txt = "3;22;2;19" + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"usj" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/computer/tech_control{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"usb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"usn" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"usf" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"usx" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"usB" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"usF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/execution) -"usH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"usM" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"usN" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"usg" = ( +/obj/structure/machinery/light/small{ dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"usp" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"usD" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"usL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"usP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"usV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"usQ" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "usX" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -57236,69 +57252,72 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"usZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"utj" = ( +"utg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"utk" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"utn" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"utw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/area/almayer/maint/hull/upper/u_a_p) +"utq" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"utu" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cic) -"utC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"utz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"utB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sink{ + pixel_y = 16 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/mirror{ + pixel_y = 21 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"utF" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"utQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"utS" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = 9; +/obj/item/storage/box/tapes{ + pixel_x = 7; pixel_y = 6 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 +/obj/item/storage/box/tapes{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/obj/item/storage/box/tapes{ + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) "utX" = ( /turf/closed/wall/almayer/research/containment/wall/connect_e2{ icon_state = "containment_wall_connect_e" @@ -57315,20 +57334,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uut" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) "uuu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -57352,53 +57357,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uuw" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"uuy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) "uuC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"uuD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"uuI" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop) +"uuL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/area/almayer/maint/hull/upper/u_a_p) "uuR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -57422,125 +57394,91 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uuS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"uuW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin{ - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 5; +"uuT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; pixel_y = 10 }, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"uvj" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"uvk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"uvv" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"uvb" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"uvz" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) -"uvB" = ( -/obj/structure/machinery/ares/processor/interface, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"uvN" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"uvT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +"uvC" = ( /obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +/obj/item/clipboard, +/obj/item/paper, +/obj/item/clothing/glasses/mgoggles, +/obj/item/clothing/glasses/mgoggles, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"uvD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 }, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uvM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/item/poster, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"uwg" = ( +/obj/item/bedsheet/yellow, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"uwj" = ( -/obj/structure/bed/chair, +/area/almayer/maint/hull/lower/l_m_s) +"uvR" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"uwk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/maint/upper/u_m_p) -"uwo" = ( +/area/almayer/maint/hull/lower/l_m_s) +"uvV" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"uwc" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"uwv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room/notunnel) +"uwx" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uwD" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, +/obj/structure/machinery/computer/crew, /turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"uwp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/area/almayer/shipboard/brig/perma) +"uwK" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"uwv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room/notunnel) -"uwy" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +/area/almayer/medical/medical_science) +"uwL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "uwN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57550,6 +57488,29 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"uwO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"uwR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/briefing) +"uwS" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) "uxa" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -57558,31 +57519,18 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uxu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"uxx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"uxz" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +"uxb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"uxB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "uxC" = ( /obj/structure/machinery/light{ dir = 4 @@ -57612,44 +57560,59 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uye" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 13 +"uxU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"uxW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/hand_labeler{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"uyb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uyp" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) "uys" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/squads/req) -"uyv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"uyu" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"uyw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"uyy" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"uyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) "uyC" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -57657,39 +57620,81 @@ "uyH" = ( /turf/closed/wall/almayer/research/containment/wall/divide, /area/almayer/medical/containment/cell) -"uyI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"uyN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/item/clipboard{ + base_pixel_x = 20; + pixel_x = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"uyR" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/securestorage) -"uyW" = ( -/obj/structure/barricade/metal{ +/obj/item/paper{ + pixel_x = 5 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/obj/structure/surface/table/reinforced/black, +/obj/structure/phone_base/rotary{ + name = "CIC Reception Telephone"; + phone_category = "Command"; + phone_id = "CIC Reception"; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"uyQ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"uzh" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"uyV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out" }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" + }, +/obj/structure/surface/rack, +/obj/item/parachute{ + pixel_y = 8 + }, +/obj/item/parachute, +/obj/item/parachute{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/hallways/lower/repair_bay) "uzy" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uzB" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) +"uzz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) "uzE" = ( /obj/structure/bed/chair{ dir = 8 @@ -57699,110 +57704,86 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"uzF" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) +"uzL" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/living/briefing) "uzQ" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"uzV" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uzS" = ( /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"uzW" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"uzZ" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/starboard_missiles) +/area/almayer/hallways/upper/starboard) "uAb" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uAd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"uAi" = ( +/obj/structure/closet/secure_closet/hydroresearch, +/obj/item/reagent_container/glass/watertank, +/obj/item/reagent_container/glass/watertank, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"uAh" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"uAl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uAi" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/cryo_cells) -"uAv" = ( /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"uAw" = ( -/obj/structure/curtain/medical, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"uAy" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/computer/research, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/hydroponics) +"uAm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"uAL" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/bedsheet/brown, -/obj/item/toy/plush/farwa, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uAN" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"uAp" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"uAT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/area/almayer/maint/lower/s_bow) +"uAz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"uAZ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"uAG" = ( +/obj/structure/machinery/door_control{ + id = "perma_lockdown_2"; + name = "Maint Lockdown Shutters"; + pixel_y = -20; + req_one_access_txt = "24;31" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"uBe" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"uBh" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"uAQ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) "uBi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -57812,34 +57793,42 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uBk" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"uBo" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/chemistry) -"uBt" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"uBq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"uBE" = ( +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"uBF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"uBA" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"uBI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) -"uBM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/command/combat_correspondent) +"uBJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) +/area/almayer/maint/hull/lower/l_m_p) "uBN" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -57862,41 +57851,53 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"uCj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ +"uBQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uCn" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"uCg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D4"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"uCr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"uCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = 3 + pixel_y = -32 }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uCq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uCK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"uCQ" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uCA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/area/almayer/maint/hull/upper/u_a_s) +"uCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) "uCW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -57904,436 +57905,423 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"uCY" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"uCZ" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +"uCX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uCZ" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) "uDa" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"uDq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uDf" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"uDl" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"uDo" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"uDs" = ( +/turf/open/floor/plating, +/area/almayer/living/cafeteria_officer) +"uDt" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"uDT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"uDE" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"uDV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"uDX" = ( +/obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_engi"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uDF" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/hallways/lower/port_midship_hallway) -"uDG" = ( -/obj/structure/sign/safety/manualopenclose{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"uEg" = ( +/obj/structure/sign/safety/terminal{ pixel_x = 15; pixel_y = -32 }, -/obj/structure/sign/safety/distribution_pipes{ +/obj/structure/sign/safety/intercom{ pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"uDI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"uDP" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"uEf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uEh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"uEp" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"uEn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/fancy/cigar/tarbacks, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = -4; + pixel_y = 12 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"uEL" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"uEQ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"uEU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"uEw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"uEy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"uEZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 1"; - name = "\improper Courtyard Divider" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"uFg" = ( +/obj/structure/sign/poster/music{ + pixel_x = -27 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"uEA" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"uEG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"uEJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -1 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"uEK" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +/obj/item/tool/pen{ + pixel_x = 3; + pixel_y = -4 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"uER" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/living/briefing) +"uFh" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"uEZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"uFu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"uFi" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"uFn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"uFv" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Exterior"; + dir = 8; + pixel_y = 2 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) "uFw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"uFz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"uFx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "207;203" }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/item/device/radio, +/obj/item/device/radio/listening_bug/radio_linked/wy, +/obj/item/device/radio/listening_bug/radio_linked/wy{ + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uFy" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"uFO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"uFN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"uGr" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"uFS" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"uFZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"uGM" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"uGk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"uGn" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/chemistry) "uGU" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"uHe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uGV" = ( -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"uGX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "northcheckpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"uHu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uHc" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/p_bow) -"uHh" = ( -/obj/structure/bed/chair/comfy/alpha, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"uHG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cichallway) +"uHX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uHp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/hallways/hangar) +"uIq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"uHw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/upper/port) +"uIr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"uHx" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"uHN" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"uHW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uIt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "19;29" +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"uHZ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uIu" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/red/north, -/area/almayer/living/port_emb) -"uII" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"uIw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uIM" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"uIR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"uIW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"uIy" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"uJc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"uJi" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"uJp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"uIz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"uJr" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/living/grunt_rnr) -"uJu" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"uII" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/morgue) -"uJx" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"uJC" = ( -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uJG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/hallways/hangar) +"uIK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"uIS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"uJW" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/securestorage) -"uKp" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"uJg" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"uJm" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"uJp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"uJq" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"uJv" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"uJQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uJW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) +"uKn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"uKr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"uKz" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"uKx" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"uKO" = ( -/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uKz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"uKG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/hangar) +"uKI" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, +/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uKQ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/execution_storage) +/area/almayer/maint/hull/upper/s_bow) "uKV" = ( /obj/structure/sign/safety/storage{ pixel_x = 32; @@ -58345,138 +58333,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"uKY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"uKX" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"uLa" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"uLn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"uLr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs2"; - name = "ARES Reception Stairway Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"uLf" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc01"; + name = "\improper Treatment Center" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"uLi" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uLl" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"uLF" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"uLT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"uLm" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"uLn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"uLy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uLC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"uLV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"uLF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-y" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"uLH" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"uLL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "31" - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"uLR" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uLU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/area/almayer/hallways/lower/port_midship_hallway) +"uLX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -58485,264 +58405,158 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"uMo" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"uMz" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/cryo_cells) -"uMC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Nurse Office"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lockerroom) -"uMO" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +"uMx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"uMX" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"uMG" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"uMW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"uNb" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 + pixel_x = -1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"uNd" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"uNr" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"uNu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"uNk" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"uNC" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uNJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"uNQ" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uNw" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie_delta_shared) -"uNR" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/area/almayer/command/lifeboat) +"uNS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) "uNV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uOd" = ( -/obj/effect/landmark/start/warden, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"uOe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Research Armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) "uOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south2) -"uOm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"uOo" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, +"uOn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"uOq" = ( -/obj/structure/machinery/landinglight/ds2{ +/area/almayer/engineering/lower/workshop/hangar) +"uOo" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uOy" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"uOz" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"uOu" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"uOK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Gym" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"uOD" = ( -/obj/structure/machinery/photocopier, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"uOI" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"uON" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uOU" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"uOW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) "uOX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"uPa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"uPf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/research{ +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"uOZ" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"uPw" = ( +/obj/structure/window/reinforced{ dir = 4; + pixel_x = -2; pixel_y = 4 }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"uPj" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"uPn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"uPo" = ( -/obj/effect/landmark/start/pilot/cas_pilot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"uPs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"uPu" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"uPD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/obj/item/bedsheet/red{ + layer = 3.2 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"uPG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"uPx" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"uPN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/hangar) +"uPT" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/living/captain_mess) +"uPU" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "uPW" = ( /obj/structure/bed/chair{ dir = 4 @@ -58751,18 +58565,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"uQf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"uQb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"uQl" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) "uQm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -58781,66 +58593,85 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"uQt" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +"uQs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"uQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/numbertwobunks) +"uQA" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"uQC" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"uQM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) "uQO" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"uQT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"uQR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"uRa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black{ - pixel_y = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"uQW" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uRe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 16 }, -/obj/item/folder/yellow, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -16; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"uRd" = ( -/obj/structure/closet/emcloset/legacy, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"uRg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"uRl" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/chief_mp_office) "uRo" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -58848,6 +58679,20 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"uRL" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) "uRM" = ( /obj/structure/bed{ can_buckle = 0 @@ -58875,80 +58720,98 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"uRO" = ( +"uRW" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"uRR" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"uSe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/starboard) -"uRY" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"uSb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"uSh" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"uSl" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"uSz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"uSC" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"uSG" = ( -/obj/structure/bed/chair/comfy/delta{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"uTa" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"uTg" = ( -/obj/item/reagent_container/glass/bucket/janibucket, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"uSD" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"uSX" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"uTf" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 1 }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"uTi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"uTt" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) "uTv" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -58957,47 +58820,73 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uTx" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"uTJ" = ( -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/structure/machinery/light/small{ +"uTR" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"uTL" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) -"uTM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"uTQ" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uTX" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"uUb" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uUc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"uUf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) "uUi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"uUr" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes, -/obj/item/circuitboard/airalarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) +"uUj" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"uUp" = ( +/obj/structure/closet/secure_closet/fridge/meat/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "uUz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -59008,535 +58897,432 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"uUA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"uUV" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"uUB" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"uUE" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 +/obj/structure/machinery/door/window/tinted{ + dir = 2 }, -/obj/item/clipboard{ - pixel_x = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"uVe" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/tool/pen{ - pixel_x = 12 +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"uVn" = ( +/obj/structure/sign/safety/security{ + pixel_x = -17; + pixel_y = 6 }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/sign/ROcreed{ - pixel_y = 30 +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"uVx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/device/flashlight/lamp{ - pixel_y = -11; - pixel_x = 7 +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"uUH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/marine, -/obj/item/clothing/accessory/storage/surg_vest, -/obj/item/tool/portadialysis, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"uUN" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"uVN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/cryo_cells) +"uVV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"uUP" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"uWa" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"uUY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uVa" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"uVe" = ( -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"uVn" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/lower/repair_bay) -"uVo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"uVt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"uWd" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uVu" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uVw" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"uWw" = ( +/obj/structure/bed/chair/comfy/alpha{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uVC" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"uWy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"uVH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"uWD" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = 32 }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/fore_hallway) +"uWG" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"uVP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"uWd" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"uWm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/living/offices) +"uWH" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uWO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uWn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower/engine_core) +"uWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"uWw" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "ares_vault_in"; - name = "aicore" +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"uWK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "uWV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"uWZ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"uXd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"uXm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"uXa" = ( -/obj/structure/machinery/cm_vending/clothing/medic/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"uXh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"uXM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"uXR" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"uXW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -7 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"uXo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"uXr" = ( /turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"uXZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/maint/hull/lower/l_a_p) +"uXx" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"uXA" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Lifeboat Control Bubble"; + req_access = null }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"uYf" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"uXO" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "uYg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uYh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"uYB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"uYA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"uYC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) -"uYL" = ( -/obj/structure/machinery/shower{ - dir = 8 +"uYP" = ( +/obj/structure/machinery/door/window/ultra{ + dir = 8; + req_access_txt = "3" }, -/obj/structure/machinery/door/window/westright, -/obj/structure/window/reinforced/tinted/frosted, -/obj/item/tool/soap/deluxe, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) -"uYS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uYU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"uZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uZz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"uZA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"uZI" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"uYV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/perma) +"uZd" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"uZu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "uZN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"vac" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/perma) +"uZV" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = -4 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"vah" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"vao" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/hangar) +"vam" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"vap" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "vaq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"vat" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"vav" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"vay" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"vbe" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"vaS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend/north, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = -8 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"vaY" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/living/briefing) -"vbb" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"vbk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/almayer/squads/req) +"vbh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"vbj" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ dir = 4 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, /obj/structure/platform{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer/silver/east, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/repair_bay) -"vbl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"vbq" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"vbr" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"vbw" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +"vbt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/protein_pack, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"vbx" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"vbA" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) "vbB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"vbZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"vcg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"vbJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"vbK" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"vch" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"vcm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"vbT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"vbX" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"vcf" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vcn" = ( -/obj/structure/curtain/red, +/area/almayer/medical/morgue) +"vco" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"vct" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/engineering/lower/workshop) "vcu" = ( /obj/effect/landmark/start/engineering, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vcT" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"vdf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"vdv" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +"vcv" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"vcD" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"vcO" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"vdz" = ( -/obj/structure/machinery/light{ - dir = 1 +"vcV" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"vcY" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"vcZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"vdA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"vda" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vdC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/mp_bunks) "vdM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -59547,587 +59333,536 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vdR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"vef" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"vdV" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) "vel" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"vem" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"ver" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"vew" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"vey" = ( -/obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"veM" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"vex" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"veQ" = ( -/obj/structure/machinery/cryopod/right{ +/obj/structure/window/reinforced{ dir = 4; - layer = 3.1; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"vfh" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/stern_point_defense) -"vfj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"vfn" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/command/lifeboat) -"vfI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"vey" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"vfK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/southleft{ - desc = "A window, that is also a door. A windoor if you will. This one is stronger."; - health = 500; - name = "Reinforced Glass door"; - req_one_access_txt = "2;35" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"vgn" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"vgo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"vgt" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"veD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig Maintenance" + closeOtherId = "brigwarden"; + name = "\improper Warden's Office" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"vgw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) -"vgG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"vgO" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/almayer/medical/containment/cell) -"vgP" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"veF" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"veL" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"veS" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"vha" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_a_s) +"veV" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"vfD" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"vhw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"vfF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"vhS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"vhW" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/living/briefing) -"vhX" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"vfN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) +"vfQ" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"via" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"vic" = ( -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"vfW" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"vin" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"vfX" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/sign/safety/escapepod{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"vgd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"vgw" = ( +/obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"vgz" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"viu" = ( -/obj/structure/machinery/shower{ - dir = 1 +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"vgM" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"vgO" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell) +"vhb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"vhg" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"vhh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"vhl" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"vhv" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"viw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"viz" = ( -/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"viH" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"viK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"vhw" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, +/obj/structure/machinery/disposal, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"vjc" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 +/area/almayer/living/offices/flight) +"vhz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/paper_bin/uscm{ - pixel_x = -12; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/tool/pen{ - pixel_x = -14 +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"vhS" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/aicore_lockdown{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; pixel_x = 3; - pixel_y = 4 + pixel_y = 3 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vjl" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"vjm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ +/obj/item/device/reagent_scanner{ + pixel_x = -16; + pixel_y = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"vhX" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"vjn" = ( -/obj/structure/machinery/door_control{ - id = "or1privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"vip" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = -4; + pixel_y = 2 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"vjp" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"viu" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/obj/structure/machinery/meter, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"vjA" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 27; - serial_number = 12 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/bed/chair/comfy/delta{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"viv" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"vix" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"viA" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vjG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/maint/upper/u_f_s) +"vjj" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"vjH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"vjq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"vjI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "vjK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vjN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vjL" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/navigation) +"vjM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"vjX" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"vjQ" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"vjX" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) "vka" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"vkf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"vkh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"vkl" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"vkC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"vkE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - name = "\improper Brig Prisoner Yard" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vkc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"vki" = ( +/obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"vkG" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"vkS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"vkn" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) +"vkq" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -27 }, -/obj/structure/machinery/alarm/almayer{ +/obj/structure/bed/chair/comfy/alpha{ dir = 1 }, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"vkZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, +"vku" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, /turf/open/floor/almayer/red/northeast, -/area/almayer/living/offices/flight) -"vlr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/area/almayer/maint/upper/u_a_p) +"vkE" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"vlv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"vkX" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"vlb" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"vld" = ( +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"vle" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"vlD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"vls" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_fore_hallway) -"vlH" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"vlV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/platform{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"vlt" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vlW" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 +/obj/structure/machinery/computer/working_joe{ + dir = 8; + layer = 3.3 }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 +/obj/item/desk_bell/ares{ + anchored = 1; + pixel_x = -5; + pixel_y = 14 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vlu" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"vlC" = ( +/obj/effect/landmark/start/intel, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 29; + serial_number = 12 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vmf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"vlM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lockerroom) +"vmb" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vmx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/maint/hull/upper/s_bow) +"vmn" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"vmF" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"vmH" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"vmL" = ( -/obj/structure/machinery/vending/cigarette, +/obj/item/clipboard, +/obj/item/paper, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"vmP" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 +/area/almayer/maint/hull/lower/l_a_s) +"vmB" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"vmC" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"vmQ" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/upper/fore_hallway) -"vmV" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"vnd" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"vne" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/hallways/lower/starboard_midship_hallway) +"vmI" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"vnh" = ( /turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha_bravo_shared) -"vnq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/almayer/living/bridgebunks) +"vmX" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"vnz" = ( -/obj/structure/machinery/body_scanconsole, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"vmY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"vnl" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"vnP" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"voI" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"voM" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"voX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"vpj" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vnv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vpo" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, @@ -60135,70 +59870,208 @@ pixel_x = 12; pixel_y = 12 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"vpq" = ( +/area/almayer/maint/hull/lower/l_a_p) +"vnI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"vnL" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"voa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/late_join, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/start/senior, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"vos" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/weapon/gun/rifle/l42a, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"vpv" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/area/almayer/maint/hull/upper/u_a_s) +"voz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"voD" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, -/obj/item/clothing/mask/cigarette/weed, +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"voH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"voJ" = ( +/obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"vpY" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"vqh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/hull/lower/l_f_s) +"voS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"voT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/aicore_lockdown, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"vpm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"vpq" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - name = "ship-grade camera" + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"vpF" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"vqn" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, /obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"vpP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vpR" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vqd" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"vqr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"vqe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"vqk" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/living/briefing) +"vqs" = ( +/obj/structure/machinery/door_control{ + id = "firearm_storage_armory"; + name = "Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"vqu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"vqw" = ( -/obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"vqy" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/cic) +/area/almayer/maint/upper/mess) "vqA" = ( -/obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"vqB" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "vqC" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) +"vqE" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"vqT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"vqY" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) "vqZ" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -60227,14 +60100,22 @@ /turf/closed/wall/almayer, /area/almayer/squads/charlie_delta_shared) "vrh" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/cryo_cells) -"vrs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/effect/landmark/railgun_computer, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"vrj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) "vrx" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -60242,161 +60123,188 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vrE" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"vrN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"vrC" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) "vrO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"vrU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"vrV" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vrX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"vrZ" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"vrY" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vsg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vsb" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "vsh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"vsp" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = 25 +"vsl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"vsq" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vsm" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"vsG" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"vst" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vsO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"vsU" = ( +/obj/structure/machinery/door/poddoor/railing{ dir = 8; - layer = 3.25 + id = "vehicle_elevator_railing_aux" }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cic) -"vsz" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"vsL" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"vsN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"vsX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_aft_hallway) -"vsP" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vsZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/blue, -/area/almayer/living/basketball) -"vsT" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vtk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/shipboard/brig/processing) +"vtl" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"vto" = ( +/obj/structure/machinery/computer/demo_sim{ + dir = 4; + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vtt" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"vtv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"vtq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"vtz" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = -24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"vtK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"vtL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"vtM" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vtw" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/squads/delta) +"vua" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"vtF" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"vtT" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/living/briefing) "vub" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"vuc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) "vug" = ( /obj/effect/landmark/start/marine/engineer/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"vuu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) "vuA" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"vuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"vuD" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 6"; + name = "Cell 6" }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/six{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) "vuG" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -60407,47 +60315,25 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"vuH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"vuY" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vvb" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 +"vuU" = ( +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + pixel_y = -20; + req_access_txt = "5" }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"vvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"vvd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) "vvp" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -60459,52 +60345,60 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"vvs" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"vvF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_umbilical) -"vvO" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +"vvq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"vvC" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) "vvW" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) "vvZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "W" }, -/obj/structure/machinery/door_control{ - access_modified = 1; - id = "OTStore"; - name = "Shutters"; - pixel_y = -24; - req_one_access_txt = "35" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"vwp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"vwe" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"vwi" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"vwt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "vwu" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/obj/structure/machinery/cm_vending/sorted/attachments/blend, +/turf/closed/wall/almayer{ + opacity = 0 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) +/area/almayer/squads/req) +"vwH" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) "vwI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave{ @@ -60512,78 +60406,106 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"vwM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"vwX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, +"vwS" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/port) "vxb" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"vxo" = ( +"vxe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"vxj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"vxn" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = -27; + req_one_access_txt = "4;28" + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"vxp" = ( /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/area/almayer/command/securestorage) +"vxt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) "vxv" = ( -/obj/structure/machinery/light{ - alpha = 0; - dir = 8; - pixel_x = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"vxI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"vxx" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"vxE" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"vxL" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "vxM" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cryo) "vxN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"vxU" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/device/helmet_visor{ +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = 13 + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"vxQ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"vxV" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) +"vxR" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) "vxX" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/wrench{ @@ -60604,6 +60526,31 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"vya" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"vyf" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"vyh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "vyi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -60616,410 +60563,416 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) +"vyk" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/laundry) "vym" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie) -"vyo" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"vyx" = ( -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -10; - pixel_y = 10 +/area/almayer/maint/hull/upper/u_m_p) +"vyy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = 4; - pixel_y = 9 +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"vyz" = ( +/obj/structure/curtain/medical, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vyA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/weapon/broken_bottle{ - layer = 4.51; - pixel_x = 9; - pixel_y = 1 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) "vyI" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"vyS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vyY" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"vza" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vyV" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"vyZ" = ( -/obj/structure/machinery/ares/processor/bioscan, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/port_umbilical) +"vzf" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "vzp" = ( /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell/cl) -"vzw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vzF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vzH" = ( +"vzr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"vzv" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"vzA" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"vzC" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "vzK" = ( /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"vzN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/starboard_umbilical) -"vAj" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"vAo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"vAp" = ( +"vzR" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ - name = "\improper Research Hydroponics Workshop" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"vAv" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) -"vAx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/hallways/lower/port_fore_hallway) +"vzZ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"vAy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"vAd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"vAl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" + pixel_y = 13 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vAD" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - name = "ship-grade camera" + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"vAm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"vAp" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"vAt" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vAu" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vAv" = ( +/obj/structure/window/reinforced{ dir = 1; - icon_state = "pipe-c" + layer = 3 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/basketball) "vAG" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"vAN" = ( +"vAI" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/clothing/mask/cigarette{ +/obj/item/cell/high{ + pixel_x = -8; pixel_y = 8 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 4; - pixel_y = 11 +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vAS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"vBd" = ( -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_y = 32; - req_one_access_txt = "24;31" +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_y = 24; - req_access_txt = "3" +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"vAM" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -5; + pixel_y = 16 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"vBh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; + pixel_x = 3; + pixel_y = 16 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"vBl" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"vBq" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 11; + pixel_y = 16 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 1 +/obj/item/storage/box/drinkingglasses{ + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"vBu" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, +/obj/item/clothing/mask/cigarette/pipe{ + layer = 2.8; + pixel_x = 14 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"vAN" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"vBM" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"vAZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"vBR" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vBc" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"vBV" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_two) +"vBh" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"vBF" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 3"; + layer = 3.2; + name = "Cell 3 Control"; + pixel_x = 16; + pixel_y = -16 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 2"; + layer = 3.2; + name = "Cell 2 Control"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"vBY" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"vCd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Shutters"; - pixel_x = -25 - }, -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"vCn" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 + id = "W_Containment Cell 2"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = 7; + req_one_access_txt = "19;28" }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 3"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = -6; + req_one_access_txt = "19;28" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"vCA" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"vBW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vCa" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"vCd" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"vCr" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"vCt" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"vCu" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"vCv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/cic) "vCD" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"vCJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"vCM" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) "vCO" = ( /obj/effect/landmark/start/bridge, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"vDk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"vCS" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"vDc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vDo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"vDC" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = 6 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"vDQ" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Right"; + name = "\improper ARES Operations Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"vDl" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"vDo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"vDV" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_fore_hallway) -"vDB" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"vDW" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"vDN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/rotary{ - name = "Commanding Officer's Office"; - phone_category = "Offices"; - phone_id = "Commanding Officer's Office"; - pixel_x = 16; - pixel_y = 8 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"vDU" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vDX" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"vDY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"vDZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vEd" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"vEc" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"vEe" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes{ + pixel_y = 9 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "vEj" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -61027,321 +60980,296 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"vEA" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" +"vEu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, -/obj/effect/step_trigger/ares_alert/access_control, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"vEz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "returns outlet"; - pixel_x = -7; - pixel_y = 28; - range = 0 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"vEB" = ( -/obj/structure/closet/boxinggloves, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"vEF" = ( -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) "vEH" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vEZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"vFd" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vFi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"vFp" = ( +"vER" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"vEY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"vFu" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"vFc" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"vFy" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 +/area/almayer/engineering/lower/workshop) +"vFi" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vFO" = ( -/obj/structure/sign/poster{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"vFm" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/sign/safety/restrictedarea{ pixel_y = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"vGb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"vGv" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"vFt" = ( +/obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"vGC" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +"vFz" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med1_req" }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"vFG" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vGN" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/midship_hallway) -"vGW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"vHe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/weldpack{ + pixel_x = -2 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"vFI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"vFN" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"vHf" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n150{ - pixel_x = -5; - pixel_y = 6 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"vHg" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vFV" = ( +/obj/structure/stairs{ dir = 1; - name = "ship-grade camera" + icon_state = "ramptop" }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"vHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/tool/warning_cone{ - layer = 3.6; - pixel_x = -16; - pixel_y = -9 +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"vHr" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vGe" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"vHz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 33 - }, -/obj/item/toy/deck{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 9; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"vGm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/item/ashtray/plastic{ - pixel_y = -4 +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"vGx" = ( +/obj/structure/machinery/brig_cell/perma_2{ + pixel_x = -32 }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"vGE" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; + req_access = null }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"vHF" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"vGH" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"vHQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"vHc" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vHg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/storage/firstaid/regular, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"vHZ" = ( -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/space) -"vId" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/area/almayer/hallways/hangar) +"vHh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/tool/warning_cone{ + layer = 3.6; + pixel_x = -16; + pixel_y = -9 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"vHj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"vIe" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vHv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"vIq" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/closet, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"vHR" = ( +/obj/structure/stairs, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vHS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) "vIu" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"vIx" = ( -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/u_a_s) -"vIy" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +"vIv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) "vIG" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"vJh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"vJj" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"vJk" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"vJp" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/cryo_cells) +"vJI" = ( /obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 +/obj/item/device/reagent_scanner{ + pixel_x = -8; + pixel_y = 4 }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 +/obj/item/clipboard{ + pixel_x = 8 }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 +/obj/item/paper{ + pixel_x = 8 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"vIK" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/radio/headset, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"vJn" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/living/briefing) -"vJu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = -3 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"vJA" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/securestorage) -"vJE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "vJL" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"vJS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = -7 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vJN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vJR" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/mess) "vJZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -61351,230 +61279,135 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"vKg" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/midship_hallway) -"vKk" = ( -/obj/structure/platform{ - dir = 1 +"vKh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"vKm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) "vKn" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) -"vKp" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/lifeboat) -"vKx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/phone_base{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"vKt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"vKK" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"vKz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"vKB" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vKE" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"vKL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"vKP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"vKW" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"vKN" = ( +"vKX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"vKP" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/living/cryo_cells) -"vKQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/pilotbunks) -"vKS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"vLb" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"vLd" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/command/lifeboat) -"vLe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"vLf" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"vLg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/ce_room) -"vLt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/obj/structure/machinery/door_control{ - id = "medicalemergency"; - name = "Medbay Lockdown"; - pixel_y = -23; - req_one_access_txt = "2;3;12;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"vLD" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) -"vLG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"vLH" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"vLL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"vLN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible{ - desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; - name = "Holy Bible"; - pixel_x = -3; - pixel_y = 9 +/area/almayer/hallways/lower/starboard_fore_hallway) +"vKZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/prop/helmetgarb/rosary{ - pixel_x = -4; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"vLS" = ( -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"vLk" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/starboard_missiles) +"vLp" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; +/obj/item/stack/cable_coil{ + pixel_x = -7; pixel_y = 11 }, -/obj/item/storage/box/matches, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"vLW" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vLs" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vMj" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"vLw" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vLF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"vLJ" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vLV" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"vMf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"vMi" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "vMo" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -61582,68 +61415,54 @@ /obj/effect/landmark/start/otech, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"vMw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, +"vMF" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"vML" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/hallways/lower/vehiclehangar) +"vMO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"vMR" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; +/obj/structure/sign/safety/ladder{ + pixel_x = 24; pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"vMV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, /obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"vMO" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/living/briefing) -"vMP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + pixel_x = 32; + pixel_y = 7 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"vNn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vMT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"vNh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"vNk" = ( -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"vNu" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/almayer/hallways/lower/port_fore_hallway) +"vNA" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 }, /turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) +/area/almayer/squads/delta) "vND" = ( /obj/structure/bed/chair{ dir = 8; @@ -61651,106 +61470,113 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"vNG" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"vNJ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) "vNM" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc03"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = -23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"vNN" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"vNO" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "vNY" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) "vOh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"vOs" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"vOw" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"vOx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"vOy" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"vOA" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"vOI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) -"vOL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"vOl" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - dir = 1; - name = "\improper Brig Prison Yard And Offices" +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"vPf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"vOn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vOt" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"vOy" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"vOI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"vPl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"vPb" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "vPm" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) +"vPo" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/command/lifeboat) +"vPp" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) "vPq" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"vPu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "vPw" = ( /obj/structure/machinery/light{ dir = 1 @@ -61761,127 +61587,133 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"vPz" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vPF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"vPD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"vPF" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"vPN" = ( +/area/almayer/living/cafeteria_officer) +"vPS" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vQc" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vQd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"vPU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/machinery/body_scanconsole{ - dir = 8 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"vQn" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"vQp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) "vQq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"vQs" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"vQA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"vQy" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"vQG" = ( -/obj/structure/machinery/power/apc/almayer/south, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_p) -"vQH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/area/almayer/maint/upper/u_a_s) +"vQB" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = -7; - pixel_y = 13 +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -1; + pixel_y = 9 }, -/obj/item/device/camera{ - pixel_x = 7 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vQE" = ( +/obj/structure/morgue{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/medical/morgue) "vQJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"vQR" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"vQT" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "vQW" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"vRe" = ( -/obj/structure/machinery/cm_vending/gear/leader, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"vRg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) -"vRo" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/orangeseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) +/area/almayer/maint/hull/lower/l_f_s) +"vQY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"vRi" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 29 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/shipboard/brig/medical) +"vRk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"vRn" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) "vRw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"vRM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"vRN" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_y = 2 + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vRQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_20" + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"vRT" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8; + pixel_y = 3 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -61889,2255 +61721,1840 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/bluecorner/west, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) -"vRU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"vSd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"vSm" = ( -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"vSx" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/living/briefing) -"vSy" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/port) -"vSB" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"vSM" = ( -/obj/structure/stairs{ +"vRY" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"vST" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"vSZ" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"vTh" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"vTk" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vTx" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vSb" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"vTF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"vTL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"vSk" = ( +/obj/structure/mirror{ + pixel_x = 28 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vTS" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"vTY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 - }, -/obj/structure/machinery/door_control/cl/quarter/officedoor{ - pixel_x = -25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vUh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vUr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/sofa/south/white/left{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/maint/upper/u_m_p) -"vUy" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vUE" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/lifeboat) -"vUJ" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"vUQ" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 + icon_state = "S" }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vUX" = ( -/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"vSt" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"vUZ" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +/area/almayer/maint/upper/u_a_s) +"vSu" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"vSy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/squad_changer{ + pixel_x = -9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"vVd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/computer/card{ + pixel_x = 9 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"vVj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"vVu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vVz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"vVN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"vVV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/engineering/port_atmos) -"vWi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"vWs" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"vWw" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"vWy" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"vWA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = -5 - }, -/obj/item/prop/magazine/book/theartofwar, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"vWB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/trash/cigbutt{ - icon_state = "ucigbutt"; - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/tool/lighter/random{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/sign/prop3{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"vWC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"vWD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"vWH" = ( -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"vWU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"vXf" = ( -/obj/item/device/radio/marine{ - pixel_x = 6 - }, -/obj/item/device/radio/marine{ - pixel_x = 3 - }, -/obj/item/device/radio/marine, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"vXj" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"vXn" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"vXr" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue Processing"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"vXz" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/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 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vXR" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"vXU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"vXV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"vYm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"vYC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"vYD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"vYS" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"vYV" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 6 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"vYW" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"vYX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"vZl" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"vZn" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vZv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vZw" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/almayer/medical/containment/cell/cl) -"vZB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"vZE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"vZK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"vZR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"vZT" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/obj/structure/sign/safety/ref_chem_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"vZX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"wam" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) -"wao" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"wap" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"waq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"waP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"waQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"waT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -8; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"wbb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"wbn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"wbq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"wbJ" = ( -/obj/structure/machinery/door_control/airlock{ - id = "n_engi"; - name = "Port Engi Airlock"; - pixel_x = 28; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"wbK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"wbQ" = ( -/obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"wbV" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"wce" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) -"wcj" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"wcz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"wcB" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/cic) -"wcD" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"wcX" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/morgue) -"wdf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"wdh" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/lifeboat) -"wdz" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"wdK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"wdQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"wdZ" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"web" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"wed" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"wef" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"wej" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"weC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"weD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "dccbunk"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"weG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"weH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"weT" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cichallway) -"weY" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) -"wfc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"wfj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"wfx" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wfy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"wfE" = ( -/turf/closed/wall/almayer, -/area/almayer/living/gym) -"wfH" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"wfK" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wfR" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"wfZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"wgm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; - pixel_x = 3; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 11; - pixel_y = 16 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/pipe{ - layer = 2.8; - pixel_x = 14 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"wgz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wgI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"wgP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/mousetraps, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"whf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 - }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 +"vSU" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"vTd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"whA" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/living/briefing) -"whF" = ( -/obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"whI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"whK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"vTm" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"vTq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, /obj/structure/disposalpipe/junction{ dir = 4 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"vTw" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"vTC" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/lifeboat) +"vTL" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"vTS" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"whN" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"whY" = ( -/obj/structure/machinery/light/small{ +/area/almayer/living/cryo_cells) +"vUd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wiq" = ( +/area/almayer/living/captain_mess) +"vUh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vUq" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"vUE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"wiw" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"wiy" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"wiA" = ( -/obj/structure/pipes/standard/cap/hidden{ +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"vUX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vVd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/cryo_cell{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"vVg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"vVn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"wiG" = ( -/obj/structure/sign/poster{ - pixel_x = -30; - pixel_y = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"vVo" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"vVp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vVv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"vVx" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"wiH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"wiI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer{ - pixel_y = 9 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"vVA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"wiR" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"vWA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"wjc" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = 7 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = -5 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -3 +/obj/item/prop/magazine/book/theartofwar, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"vWB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = 9 +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = -3 +/obj/item/tool/lighter/random{ + pixel_x = -8; + pixel_y = 7 }, -/obj/structure/noticeboard{ - desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; - pixel_y = 29 +/obj/structure/sign/prop3{ + pixel_x = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wjk" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_y_offset = 0 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"wjl" = ( -/obj/structure/platform{ - dir = 1 +"vWG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 3; + pixel_y = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"vWU" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1 }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"wjq" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"vWW" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"vWX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"wjr" = ( -/obj/structure/bed/chair/comfy/orange, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wju" = ( +/area/almayer/hallways/lower/repair_bay) +"vXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"wjw" = ( -/turf/open/floor/almayer/redcorner/east, +/area/almayer/medical/operating_room_one) +"vXm" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/living/briefing) -"wjH" = ( +"vXM" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "law and engineering manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/marine_law, +/obj/item/book/manual/detective, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/engineering_hacking, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"wjU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"wjX" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"vXW" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_y = -2 +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"vXZ" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"vYg" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 }, -/obj/item/reagent_container/dropper{ - pixel_x = -1; - pixel_y = 9 +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/biohazard_lockdown{ - pixel_x = 8; - pixel_y = 10 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vYk" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"wkd" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/command/cic) -"wki" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vYm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"vYy" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"vYC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) -"wkn" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"vZe" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"wkA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/almayer/command/telecomms) +"vZf" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"vZv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vZw" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/almayer/medical/containment/cell/cl) +"vZx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, /turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wkC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/engineering/lower/workshop/hangar) +"vZy" = ( +/obj/structure/bed/chair/comfy/black{ dir = 4 }, -/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"vZN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"vZP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/mp_bunks) +"wah" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"wau" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"wav" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"wkD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"waA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"wkF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/area/almayer/medical/morgue) +"waC" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"waZ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"wbr" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"wkN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"wbs" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wkQ" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"wbJ" = ( +/obj/structure/machinery/door_control/airlock{ + id = "n_engi"; + name = "Port Engi Airlock"; + pixel_x = 28; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"wbT" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"wcm" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "SW-out" + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"wcH" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Left"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"wcQ" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"wdf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"wdj" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"wdt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"wdz" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"wdA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 + icon_state = "S" }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"wld" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"wlg" = ( -/obj/structure/machinery/light{ +/area/almayer/hallways/lower/vehiclehangar) +"wel" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/bedsheet/hop, -/obj/structure/bed, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"wll" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wln" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/lower/repair_bay) +"wez" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"weC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"weD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "dccbunk"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"wlq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"weG" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 1; name = "ship-grade camera" }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"wlx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"wlE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"weH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"weL" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"wlF" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"wfb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"wfl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, /obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"wlI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"wlK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17 + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"wlS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"wlW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/hallways/lower/repair_bay) +"wfr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"wfu" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"wlX" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_p) +"wfE" = ( +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"wfK" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/upper/fore_hallway) +"wfW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lockerroom) -"wlY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"wmi" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wmn" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"wfZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"wmo" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"wmp" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_four) -"wmy" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"wgg" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"wgr" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"wmC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wgt" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wmG" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"wmI" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"wnp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wgy" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/orange/east, /area/almayer/maint/hull/lower/l_m_s) -"wnO" = ( -/obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"wnT" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"wgN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"wnY" = ( -/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/port_fore_hallway) +"wgX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"whi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"whj" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"wog" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"woh" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/area/almayer/medical/containment/cell) -"woj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"whl" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"wol" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"whs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"whx" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"why" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"whA" = ( +/turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) -"wot" = ( -/obj/structure/platform, -/obj/structure/platform{ +"whN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"whO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4; + pixel_y = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"wpa" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/officer_study) -"wpc" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"wpl" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"wpo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"whY" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"wic" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"wpO" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/maint/hull/lower/l_f_s) +"wig" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/tool/screwdriver, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"wil" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"wpR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D4"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +/area/almayer/living/bridgebunks) +"wip" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wit" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"wqe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = 16; + pixel_y = 8; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"wiG" = ( +/obj/structure/sign/poster{ + pixel_x = -30; + pixel_y = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"wiI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer{ + pixel_y = 9 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"wiS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"wqg" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"wqj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "containmentlockdown_S"; - name = "\improper Containment Lockdown" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"wqk" = ( -/obj/structure/platform_decoration{ +/area/almayer/engineering/upper_engineering/port) +"wiY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"wjh" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"wji" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wqz" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"wqK" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"wqN" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) -"wqO" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_lobby) -"wqT" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"wjj" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, /turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) -"wre" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_x = -16 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"wrr" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +"wjm" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"wrt" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"wrv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"wjq" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"wrw" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"wry" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"wjr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"wrC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/area/almayer/shipboard/panic) +"wju" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"wrH" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"wrM" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"wrO" = ( -/obj/structure/machinery/cryopod{ +/area/almayer/hallways/lower/vehiclehangar) +"wkb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"wkq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wku" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"wkF" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; pixel_y = 6 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"wrU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = list(36) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wkI" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"wkQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/synthcloset) -"wsk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/area/almayer/engineering/lower/workshop/hangar) +"wkZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wlc" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light, /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_two) -"wsl" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wsp" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/starboard) -"wsq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/shipboard/brig/general_equipment) +"wlr" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"wsw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"wlv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"wsx" = ( +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/barricade/handrail{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"wlF" = ( +/obj/structure/stairs/perspective{ dir = 1; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer{ - layer = 3 + icon_state = "p_stair_full" }, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wsz" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"wsD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"wsE" = ( +/area/almayer/lifeboat_pumps/south2) +"wlK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"wmx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) -"wsH" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" +"wmD" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 +/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wmL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"wsT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wmM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"wmN" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"wne" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"wnz" = ( +/obj/structure/bed/chair/comfy/delta, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"wsW" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"wsX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 - }, -/obj/item/device/binoculars, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"wtb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/almayer/living/briefing) +"wnE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"wnJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "ARES Railing"; - indestructible = 1; - name = "ARES Chamber Railings"; - needs_power = 0; - pixel_x = 24; - req_one_access_txt = "91;92" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"wnM" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wnO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"wte" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"wnX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"wnY" = ( +/obj/item/tool/crowbar/red, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"wtk" = ( +/area/almayer/squads/alpha_bravo_shared) +"wog" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"wtq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"woh" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"wtB" = ( +/area/almayer/medical/containment/cell) +"wor" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"wtM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/area/almayer/squads/bravo) +"woZ" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"wpa" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"wtR" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wpn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"wpy" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/living/cryo_cells) +"wpO" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"wtT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"wup" = ( -/obj/structure/supply_drop/echo, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"wuz" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"wuA" = ( +/area/almayer/squads/bravo) +"wpQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"wuN" = ( -/obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"wva" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"wpZ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"wql" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"wqs" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"wqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 4 + }, +/obj/item/trash/USCMtray{ + pixel_y = 6 + }, +/obj/item/trash/USCMtray{ + pixel_y = 8 + }, +/obj/item/trash/USCMtray{ + pixel_y = 10 + }, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"wqB" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"wqC" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"wqG" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"wqM" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) -"wvo" = ( -/obj/structure/machinery/light{ - dir = 1 +"wqN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wrb" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"wre" = ( /turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"wvp" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/area/almayer/hallways/lower/starboard_midship_hallway) +"wri" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"wvv" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wrj" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"wvC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" +/area/almayer/engineering/lower/engine_core) +"wrl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"wvF" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"wvG" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"wrp" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 }, -/obj/item/clothing/mask/rebreather/scarf, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wvO" = ( +/area/almayer/maint/hull/lower/l_f_p) +"wrr" = ( +/obj/structure/machinery/door/window/westleft{ + dir = 2 + }, +/obj/structure/machinery/shower, +/obj/item/tool/soap, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"wrB" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"wvQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"wrC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"wvZ" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/turf/open/floor/almayer, +/area/almayer/living/gym) +"wrE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"wwg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"wrK" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"wwj" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"wrX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/barricade/handrail/medical{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"wsa" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wsf" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"wsD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"wsE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"wwv" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"www" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/maint/hull/lower/l_f_p) +"wsK" = ( +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) +"wsL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"wtl" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"wtz" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"wwL" = ( -/obj/item/reagent_container/food/snacks/grown/poppy{ - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"wtC" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) +"wtJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"wxl" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +/area/almayer/squads/delta) +"wtM" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"wtN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"wtP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"wtX" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"wxB" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/area/almayer/maint/hull/upper/s_bow) +"wtZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"wxD" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wxG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/briefing) +"wui" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/sign/safety/rewire{ + pixel_x = 12; + pixel_y = -24 }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"wup" = ( +/obj/structure/supply_drop/echo, /turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"wxR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/area/almayer/squads/req) +"wuu" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"wxT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"wuz" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/cryo_cells) +"wvc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"wvd" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower) +"wvf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"wxY" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/starboard_missiles) -"wyl" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"wvh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"wyu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"wyC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"wyL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"wvm" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"wzh" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/turf/open/floor/almayer/plate, +/obj/item/reagent_container/food/snacks/grown/banana{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) -"wzj" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +"wvw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wvy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"wvB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"wvK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"wzq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"wzJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"wzK" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"wzS" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"wAi" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"wvN" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"wvP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/platform{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wAo" = ( -/obj/structure/sign/safety/rewire{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"wvQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/brig/processing) +"wvR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/phone_base/rotary{ + name = "Brig Wardens's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Warden's Office"; + pixel_x = 15 + }, +/obj/structure/sign/safety/terminal{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"wAs" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"wAz" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"wAA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"wAT" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wAW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"wvV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"wBi" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wwd" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Right"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"wws" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/open/floor/almayer/green/southeast, -/area/almayer/shipboard/brig/cells) -"wBl" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"wBq" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/combat_correspondent) +"wwM" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"wwQ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"wxa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"wxf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/vending/cigarette/free{ + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"wxp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wxw" = ( +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - name = "\improper Starboard Viewing Room" + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"wBt" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"wxx" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wxM" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wxN" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/obj/structure/machinery/light{ +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"wxW" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wBv" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"wBG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"wBI" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"wBJ" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 20 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"wye" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"wyj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"wyA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"wBL" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"wyC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, -/obj/structure/filingcabinet/chestdrawer{ +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"wyM" = ( +/obj/structure/machinery/cm_vending/gear/tl{ density = 0; - pixel_x = -8; - pixel_y = 16 + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/offices) -"wBX" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"wyS" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"wzd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) +"wzy" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"wzL" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"wAg" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wAm" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"wAr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"wCb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"wAu" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/briefing) +"wAB" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"wCi" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 +/area/almayer/maint/upper/u_m_s) +"wAC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"wAT" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"wBh" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wBC" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"wBF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"wCk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"wBG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel{ + pixel_x = -1; + pixel_y = 10 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = 1 }, -/obj/structure/platform{ - dir = 8 +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01; + pixel_x = -3; + pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"wCB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/squads/alpha_bravo_shared) +"wBK" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"wCD" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"wCG" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wCb" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"wCP" = ( -/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"wCQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4 +/area/almayer/squads/delta) +"wCg" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"wCU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"wCX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/maint/upper/u_a_s) +"wCt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_y = -2; + req_one_access_txt = "3;22;19" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/offices/flight) +"wCL" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/auxiliary_officer_office) +"wCR" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-2"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"wCZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/almayer/powered) +"wCX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"wDi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wDf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"wDj" = ( +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"wDw" = ( -/obj/structure/machinery/recharge_station, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"wDk" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"wDt" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 }, +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wDx" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) +/area/almayer/command/lifeboat) "wDy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64147,77 +63564,111 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"wEf" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"wDO" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/chief_mp_office) +"wEa" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"wEr" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -3 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"wEt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"wEw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = 9 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = -3 }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/obj/structure/noticeboard{ + desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; + pixel_y = 29 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/area/almayer/maint/upper/u_m_s) +"wEu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"wEv" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "wEC" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"wEG" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"wEH" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"wEM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Holding Cell" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"wET" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"wEU" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"wEE" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"wFj" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"wFo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"wEQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering/starboard) +"wFx" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, /turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"wEY" = ( -/obj/structure/safe/co_office, -/obj/item/weapon/pole/fancy_cane, -/obj/item/tool/lighter/zippo/gold{ - layer = 3.05; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"wFk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"wFq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"wFr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/lifeboat_pumps/north1) "wFz" = ( /obj/item/prop{ desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; @@ -64230,49 +63681,74 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"wFO" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "wFR" = ( /turf/open/floor/almayer, /area/almayer/living/gym) -"wGa" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +"wFX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "wGb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) +"wGl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"wGn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "wGE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/leader/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"wGF" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"wGH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "wGP" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"wGT" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"wGU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"wGW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) "wGX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -64280,19 +63756,14 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"wHe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, +"wHi" = ( +/obj/structure/window/reinforced/toughened, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wHk" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, +/area/almayer/command/cic) +"wHn" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/area/almayer/maint/hull/upper/p_bow) "wHp" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -64300,186 +63771,206 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"wHt" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/mp_bunks) -"wHH" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wHI" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"wHF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"wHX" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"wHG" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"wIo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wHJ" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt, -/obj/item/ashtray/glass, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"wIw" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/uscm{ - pixel_x = -17; - pixel_y = 7 +/obj/item/folder/red{ + pixel_x = -4 }, -/obj/item/tool/pen/clicky{ - pixel_x = -13; - pixel_y = -1 +/obj/item/folder/blue{ + pixel_x = 4 }, -/obj/item/tool/pen/clicky{ - pixel_x = -13; +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"wHR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"wHV" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"wIb" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; pixel_y = 5 }, -/obj/structure/machinery/door_control{ - id = "CO-Office"; - name = "Door Control"; - normaldoorcontrol = 1; - pixel_y = 7; - req_access_txt = "31" +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 }, -/obj/item/ashtray/bronze{ - pixel_x = 12; - pixel_y = 1 +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"wIi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"wIs" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"wIB" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) "wIC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/chief_mp_office) "wIE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +/turf/open/floor/almayer/silver/northwest, +/area/almayer/hallways/upper/midship_hallway) +"wII" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/hallways/upper/midship_hallway) +"wIL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"wIF" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"wIL" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"wIW" = ( -/turf/open/floor/almayer/plating_striped, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"wIN" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"wIT" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/almayer/command/lifeboat) -"wJb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/lower_medical_medbay) -"wJh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/cryo_cells) -"wJi" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +"wJa" = ( +/obj/structure/machinery/door_control{ + id = "crate_room2"; + name = "storage shutters"; + pixel_y = 26 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 +/obj/structure/machinery/recharge_station{ + desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; + name = "Working Joe charging station" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"wJp" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge1" +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 36 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = 32 +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"wJb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"wJf" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/u_a_s) +"wJp" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"wJr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"wJt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"wJz" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"wJC" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) "wJH" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) -"wJJ" = ( -/obj/structure/machinery/door_control{ - id = "engidorm"; - pixel_x = 25; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"wJM" = ( +"wJN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"wJR" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"wKq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"wKr" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"wJT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"wKA" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 29 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"wKj" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/sterile_green_corner/north, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/shipboard/brig/medical) -"wKJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) +"wKz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) "wKP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -64495,16 +63986,17 @@ }, /turf/open/floor/plating, /area/almayer/medical/containment) -"wKZ" = ( -/obj/structure/machinery/conveyor_switch{ - id = "req_belt" +"wLa" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"wLb" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "wLi" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -64514,10 +64006,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"wLj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) +"wLl" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"wLp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "wLu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -64528,347 +64031,330 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"wLE" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"wLv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"wLF" = ( -/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_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"wLL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"wLY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"wMb" = ( -/obj/structure/safe/cl_office, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"wMc" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/area/almayer/squads/bravo) +"wLz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"wMn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"wMo" = ( -/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"wMN" = ( +/area/almayer/lifeboat_pumps/north2) +"wLF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wLJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"wLM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"wMr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"wMw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"wMF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wMR" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"wMH" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"wMP" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 5; - pixel_y = 14 - }, -/obj/item/attachable/bayonet{ - pixel_x = -14; - pixel_y = 3 +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wNi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"wMX" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"wNu" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"wNw" = ( -/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"wNC" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"wNH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"wNK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4; - pixel_y = -3 +/area/almayer/maint/hull/upper/u_a_p) +"wNk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"wNr" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wNL" = ( +/area/almayer/maint/hull/lower/l_a_s) +"wNv" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/alpha{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wNT" = ( -/obj/structure/platform, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"wOn" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"wNG" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"wNM" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"wNP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"wNQ" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_x = -8; pixel_y = 28 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 14; - pixel_y = 32 - }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"wNT" = ( +/obj/structure/platform, /turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/living/briefing) +"wOg" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"wOl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"wOq" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/living/briefing) +"wOr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) "wOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"wOV" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/command/cic) -"wOX" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wPc" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" +"wOy" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"wOF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"wOR" = ( /turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"wPu" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"wPQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"wPU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +/area/almayer/shipboard/starboard_missiles) +"wOU" = ( +/obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"wPV" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"wQh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"wQl" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wQq" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/upper/u_f_p) +"wOZ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"wQs" = ( -/obj/structure/machinery/cm_vending/gear/medic, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"wQt" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wQy" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" +/area/almayer/living/starboard_garden) +"wPa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wPb" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wPe" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"wPh" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"wPm" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"wQD" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) -"wQF" = ( -/turf/open/floor/almayer/silver/southwest, +"wPo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/upper/midship_hallway) -"wQI" = ( -/obj/structure/stairs{ +"wPq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"wPE" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/turf/open/floor/almayer/red/east, +/area/almayer/living/offices/flight) +"wQc" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"wQJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"wQj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"wQQ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"wQR" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"wRd" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"wRk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"wQm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"wQA" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"wQE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"wQF" = ( +/obj/structure/machinery/cm_vending/clothing/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"wQQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = -3 + }, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"wQZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"wRr" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 +"wRe" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"wRj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/ladder{ + height = 2; + id = "cicladder3" }, -/obj/structure/machinery/door_control{ - id = "Alpha_1"; - name = "Door Lock"; - normaldoorcontrol = 1; +/obj/structure/sign/safety/ladder{ pixel_x = 23; - specialfunctions = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"wRL" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"wRq" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"wRt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"wRu" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) "wRO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64888,6 +64374,29 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"wRZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/squads/alpha) +"wSb" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-3"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"wSi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "wSm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64898,71 +64407,79 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "wSv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"wSD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_x = -16 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"wSA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"wSE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"wSK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"wSL" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) "wSR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"wSZ" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/cic) -"wTb" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop/hangar) -"wTF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"wTK" = ( -/obj/structure/reagent_dispensers/watertank, +"wSS" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/living/offices) +"wST" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"wTj" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"wTv" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"wTI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"wTL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) "wTM" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell) -"wTU" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"wTY" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/port) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -64972,29 +64489,14 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"wUk" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower) -"wUo" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/midship_hallway) -"wUC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"wUJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"wUE" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/maint/upper/u_m_s) +"wUM" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) "wUP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -65002,146 +64504,125 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "wUQ" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"wVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"wVh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"wVR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"wVW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cic) -"wWd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"wUU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 + icon_state = "SW-out" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"wWg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"wWz" = ( -/turf/closed/wall/almayer/research/containment/wall/north, -/area/almayer/medical/containment/cell) -"wWI" = ( -/turf/open/floor/almayer/silver/northeast, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) -"wWK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" +"wUV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"wWX" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"wXd" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 27 +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"wUW" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 }, -/obj/structure/barricade/handrail{ - dir = 8 +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"wXf" = ( -/turf/closed/wall/almayer/outer, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) -"wXv" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +"wVa" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"wVg" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wVj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"wXz" = ( +/area/almayer/command/lifeboat) +"wVp" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"wVx" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"wVA" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"wXA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/area/almayer/maint/hull/upper/u_f_s) +"wVW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cic) +"wWd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"wXB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/hydroponics) -"wXD" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"wXH" = ( -/obj/structure/bed/chair{ - dir = 1 + icon_state = "W" }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wWg" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"wXM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"wXQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Cafeteria" - }, +/area/almayer/living/chapel) +"wWu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"wXS" = ( +/area/almayer/squads/alpha_bravo_shared) +"wWv" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wWz" = ( +/turf/closed/wall/almayer/research/containment/wall/north, +/area/almayer/medical/containment/cell) +"wWW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -65149,67 +64630,76 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"wYb" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"wYe" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"wYf" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/laundry) -"wYg" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"wWX" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"wXb" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) +"wXH" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"wYx" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"wYz" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Main Staircase"; +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"wXK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ dir = 4; - pixel_y = -8 + pixel_y = 0 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"wXQ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"wYy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) "wYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wYV" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +"wYC" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"wYD" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"wYF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/hydroponics) +"wYP" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"wYV" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) "wYY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -65221,47 +64711,132 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) -"wZc" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"wZe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"wZg" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"wZh" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"wZo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wZt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wZD" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"wZu" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"wZJ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"wZN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cic) +"wZS" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) +/area/almayer/command/cic) "wZX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"xac" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 12 +"wZZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xab" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"xaf" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xaj" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/living/gym) +"xal" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"xam" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/living/briefing) +"xau" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"xax" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) "xaC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -65275,16 +64850,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xaG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"xaL" = ( -/obj/structure/girder, +"xaK" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/squads/delta) "xaM" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -65307,295 +64876,368 @@ /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"xaQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xaO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"xaV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"xaV" = ( -/obj/structure/machinery/cm_vending/clothing/leader/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"xbU" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) -"xbY" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"xca" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"xcd" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"xci" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xbb" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 }, -/turf/open/floor/almayer/cargo_arrow, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"xcv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/reagent_container/food/snacks/cheesewedge{ - pixel_x = -10; - pixel_y = 7 +"xbh" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"xbi" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"xbG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"xbM" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"xcw" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"xcx" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/largecrate/random/mini/med{ - density = 1; - pixel_x = 3; - pixel_y = 11 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/morgue) +"xcB" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) "xcG" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/pipes/unary/freezer{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xcN" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 2"; - name = "\improper cell shutter" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"xcM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"xcV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xcQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + closeOtherId = "brigmed"; + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"xcX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/shipboard/brig/medical) "xcY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) "xdi" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"xdm" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"xdK" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xdN" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"xdU" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"xdX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xdY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"xdk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xei" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"xep" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"xeI" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xeN" = ( -/obj/item/newspaper{ - name = "character sheet" +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_aft_hallway) +"xdm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = 5; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/toy/dice, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"xdq" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"xdy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"xdB" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"xdC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"xdQ" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Privacy Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access_txt = "3" + dir = 1 }, -/obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xeV" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/engineering/lower/workshop/hangar) +"xdU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"xeY" = ( -/obj/structure/machinery/power/apc/almayer/north, +/area/almayer/maint/hull/lower/l_m_s) +"xea" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xfg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/hallways/hangar) +"xef" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/upper/midship_hallway) +"xeg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "Morgue Waiting Room"; - req_one_access = null +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"xeJ" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"xfl" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"xeK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"xeT" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/pilotbunks) +"xeU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_umbilical) -"xfu" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) -"xfv" = ( +"xeZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"xfn" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"xfs" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"xfB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"xfC" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"xfF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"xfS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"xft" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/surface/table/reinforced/black, -/obj/item/tank/oxygen, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"xfX" = ( -/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/hull/lower/s_bow) +"xfy" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop/hangar) +"xfB" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"xfH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/containment) -"xge" = ( -/obj/structure/platform_decoration{ - dir = 1 +"xfR" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xfX" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xgv" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"xgB" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, +/area/almayer/shipboard/brig/starboard_hallway) +"xgH" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"xgT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xgU" = ( +/obj/structure/machinery/computer/cryopod/eng{ + dir = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"xgW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"xhc" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"xhm" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"xgE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +/area/almayer/living/gym) +"xho" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"xgM" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) "xhr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"xhs" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/structure/sign/catclock{ + pixel_y = 32 }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"xhv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "xhx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -65603,123 +65245,76 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"xhI" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"xhF" = ( +/obj/structure/surface/table/almayer, +/obj/item/pipe{ + dir = 9 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" +/obj/item/tool/crowbar/red{ + pixel_x = 17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"xhL" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"xhT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"xhS" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xhX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) "xhZ" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"xik" = ( -/obj/structure/machinery/shower{ - dir = 8 +"xim" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/obj/item/toy/inflatable_duck, -/obj/structure/window/reinforced, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"xil" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xiq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"xir" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) -"xiu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"xiE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"xiH" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"xiU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"xiL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"xje" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"xiV" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_s) +"xja" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"xjo" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"xjt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/card{ - dir = 4; - pixel_x = 2 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"xju" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"xjM" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"xjT" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/area/almayer/maint/hull/lower/l_m_s) +"xjU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "xjW" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; @@ -65727,9 +65322,6 @@ }, /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"xjY" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) "xka" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -65737,314 +65329,342 @@ "xkd" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cells) -"xkh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"xkn" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ +"xki" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xkw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xkD" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"xkE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/workshop) +"xkI" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"xkv" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"xkx" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair/comfy/bravo{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xkA" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/briefing) -"xkF" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/blend, -/turf/closed/wall/almayer{ - opacity = 0 +/obj/structure/barricade/deployable{ + dir = 4 }, -/area/almayer/squads/req) -"xkQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"xkW" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"xkT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"xkU" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"xlf" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"xld" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) "xlk" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"xln" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"xlo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, +"xlr" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"xlz" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"xlN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/hangar) +"xlH" = ( +/obj/structure/machinery/computer/cameras/almayer/containment{ + dir = 8; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"xlW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"xmj" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/almayer/living/cafeteria_officer) -"xmm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = -5; + pixel_y = -4; + req_one_access_txt = "19;28" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southwest, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) -"xmn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +"xlK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"xlS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"xmx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"xmA" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"xlU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"xmC" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"xmI" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"xmj" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"xmM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"xmo" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"xmR" = ( +/area/almayer/hallways/hangar) +"xmq" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"xmt" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"xmx" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"xmC" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"xmU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"xmD" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"xnb" = ( -/obj/structure/machinery/alarm/almayer{ +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"xmN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"xmQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"xmZ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"xni" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"xnk" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + name = "weapon targetting computer" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"xnE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/command/cic) "xnI" = ( /obj/effect/landmark/start/requisition, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"xnK" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"xnN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +"xnP" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/welding, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xnP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/upper/u_m_s) +"xoc" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/structure/sign/safety/hvac_old{ + pixel_y = -26 }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"xoj" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xnQ" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi_ext" +/area/almayer/hallways/lower/starboard_fore_hallway) +"xok" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 2; + pixel_y = 9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"xnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control/cl/office/window{ + pixel_x = 6; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door_control/cl/office/door{ + pixel_x = 6; + pixel_y = -3 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/item/spacecash/c500{ + pixel_x = -10; + pixel_y = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"xoi" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"xon" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"xoE" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xoQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xpb" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xph" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"xpv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"xom" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"xos" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" +/area/almayer/living/offices) +"xpx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"xoD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"xpC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"xoK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"xpp" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"xpN" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"xpE" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"xpF" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"xpW" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"xpL" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"xpX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D3"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"xpQ" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"xqe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/engineering/upper_engineering/port) +"xqj" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"xqs" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"xqx" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) "xqy" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -66062,174 +65682,256 @@ }, /turf/closed/wall/almayer, /area/almayer/command/securestorage) -"xqG" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) "xqJ" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"xqL" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"xqU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/biolab{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"xra" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null }, -/obj/structure/sign/safety/water{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"xrb" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"xqW" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/sign/safety/security{ - pixel_x = 32; - pixel_y = -8 +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = 7 +/obj/item/tool/pen{ + pixel_y = -2 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"xrt" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 +/obj/item/reagent_container/dropper{ + pixel_x = -1; + pixel_y = 9 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/biohazard_lockdown{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = 18; - req_access_txt = "31" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"xrf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"xru" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"xsb" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xse" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/cic) -"xsi" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/perma) -"xsk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/hallways/hangar) +"xrm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"xru" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"xry" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xsG" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"xsU" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/area/almayer/maint/lower/s_bow) +"xrB" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"xsZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) -"xtj" = ( -/obj/structure/sign/safety/medical{ +/obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"xtC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"xrF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xtK" = ( -/obj/structure/bed/chair{ +/area/almayer/hallways/lower/starboard_fore_hallway) +"xrO" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xrV" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"xse" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Core Chamber"; dir = 8 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/hangar) -"xtP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/north2) -"xtS" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"xso" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "E"; pixel_x = 1 }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/tool/warning_cone, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"xtX" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/area/almayer/hallways/hangar) +"xsp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"xsy" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/ce_room) +"xsA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"xsC" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = -6 }, -/turf/open/floor/almayer/blue/northwest, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"xsP" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"xsV" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"xth" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"xtr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/obj/item/clipboard, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"xtx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"xtC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"xtI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"xtQ" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"xtY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"xuk" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"xuz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"xuH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/squads/delta) -"xun" = ( +"xuJ" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/lower) +"xuP" = ( /turf/open/floor/almayer, -/area/almayer/maint/upper/mess) -"xuO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D3"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/hallways/lower/port_fore_hallway) "xuQ" = ( /obj/structure/bed/chair{ dir = 4 @@ -66238,16 +65940,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"xuT" = ( -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"xuV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"xuX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_one) "xuY" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -66255,101 +65962,168 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"xvf" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 25 +"xvb" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xve" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/rewire{ +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"xvm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/intercom{ pixel_x = 15; - pixel_y = 25 + pixel_y = 32 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"xvl" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/alpha, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"xvn" = ( +/area/almayer/living/offices/flight) +"xvv" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"xvy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/area/almayer/shipboard/panic) +"xvx" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"xvB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"xvD" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"xvH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"xvW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"xvY" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"xvC" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"xwh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 24 + health = 80 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"xvN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"xwu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xvR" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"xwf" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"xwt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"xwx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"xwz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W" }, -/obj/structure/machinery/vending/cigarette/free{ - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xwy" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"xwD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" +/area/almayer/engineering/lower/workshop/hangar) +"xwF" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/cic) +"xwJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"xwS" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext"; + name = "Window Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "28" + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_x = -26; + pixel_y = 1; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"xwQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, /turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"xwR" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"xwS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/medical/medical_science) +"xwV" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"xwZ" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/port) "xxf" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) "xxi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -66397,246 +66171,244 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"xxt" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"xxu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xxn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"xxz" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"xxA" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"xxq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"xxD" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"xxs" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xxP" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"xxQ" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"xxX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xxW" = ( +/area/almayer/engineering/lower) +"xyb" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"xxX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"xye" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "south_central_checkpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"xyf" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/area/almayer/hallways/hangar) +"xyg" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop) "xyk" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"xyp" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) "xyu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"xyG" = ( -/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"xyR" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - id = "Firing_Range_1"; - name = "range shutters" + id = "officers_mess"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"xyK" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xyO" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/living/briefing) -"xyT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"xzg" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xyV" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/storage/firstaid/fire, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"xzn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/s_bow) -"xzq" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"xzL" = ( -/obj/structure/machinery/computer/cryopod/eng{ - dir = 8 +/area/almayer/maint/hull/lower/l_a_p) +"xzw" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"xzM" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"xzy" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "xzO" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"xAa" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"xAb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"xzW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "xAe" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell) -"xAM" = ( -/obj/structure/machinery/light{ - dir = 1 +"xAm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xAQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"xAn" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"xAz" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/firealarm{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"xAC" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"xAF" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - pixel_x = -24 + name = "ship-grade camera" }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_one) -"xAT" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - name = "Corporate Liaison's Closet" +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"xAG" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "xAY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"xBc" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) +"xBa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "xBe" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/upper_engineering) -"xBf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +"xBr" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xBA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; dir = 1; - name = "Bathroom" + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"xBk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"xBm" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xBq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"xBr" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"xBx" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/l_f_s) +"xBF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xBM" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xBy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"xBK" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) "xBO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) "xBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -66644,667 +66416,721 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xBY" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/laundry) -"xCi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"xCo" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 3"; - locked = 1; - name = "\improper Containment Cell 3"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 3"; - name = "\improper Containment Cell 3" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"xCt" = ( -/turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"xCx" = ( -/obj/structure/machinery/alarm/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"xCy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"xCE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; +"xBT" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"xCJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xCP" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"xCV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"xBW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/pill/happy{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xCZ" = ( -/obj/structure/closet/basketball, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"xDb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = 4; + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = -8; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"xDc" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/tool/surgery/bonegel/empty{ + layer = 3.01; + pixel_x = -5; + pixel_y = 19 }, -/turf/open/floor/almayer/sterile_green_side/east, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_medbay) -"xDf" = ( +"xBY" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/laundry) +"xCh" = ( /obj/structure/window/reinforced{ dir = 4; - pixel_x = -2; - pixel_y = 4 + health = 80 }, /obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"xCq" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xCu" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"xCy" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xCC" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xCH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/structure/sign/poster/art{ + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"xDI" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xCQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 4 }, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"xCV" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"xEa" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"xEh" = ( -/obj/structure/largecrate/random/barrel/blue, +/area/almayer/squads/req) +"xDr" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"xDt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"xDv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) -"xEk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xDB" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/command/cic) +"xDF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"xDH" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xDJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"xEA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"xDP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xDR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ access_modified = 1; + dir = 1; name = "\improper Flight Crew Quarters"; req_one_access_txt = "19;22" }, /turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) -"xED" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/clipboard, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"xEI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = 32 +"xEh" = ( +/obj/structure/machinery/brig_cell/cell_6{ + pixel_x = 32; + pixel_y = -32 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"xEq" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"xEx" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xEK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/area/almayer/engineering/upper_engineering) +"xEG" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"xEI" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"xEP" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"xEV" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"xET" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xFf" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/area/almayer/living/offices) +"xFg" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "xFi" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"xFu" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/beret/cm, +/obj/item/clothing/head/beret/cm, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"xFl" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/midship_hallway) +"xFp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"xFO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 +/obj/structure/phone_base/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"xFA" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"xFK" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"xGt" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"xGw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering Lounge" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xFQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"xGx" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"xFS" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/living/briefing) +"xGz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"xGt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"xGw" = ( -/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xGR" = ( +/area/almayer/living/offices) +"xGA" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xGL" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) "xGT" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/gym) -"xGU" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"xGW" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xHs" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"xHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"xHn" = ( +/obj/structure/bed/chair/bolted{ dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"xHB" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"xHr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"xHK" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = -2 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"xHI" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"xHL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"xHK" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"xHQ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"xHY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"xIa" = ( -/obj/structure/machinery/cryopod, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, /turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"xIc" = ( +/area/almayer/squads/alpha) +"xHV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"xHX" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/lifeboat) +"xHY" = ( /obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer/red/northwest, -/area/almayer/maint/upper/u_a_p) -"xIm" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"xIc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"xIt" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xIu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"xIs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"xIv" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/sign/safety/maint{ - pixel_x = 16; - pixel_y = 26 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xIu" = ( +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"xIP" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"xIK" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"xIM" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/living/bridgebunks) +"xIP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) "xIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/offices) +"xIR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "xIX" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"xJd" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"xJx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"xIY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xJm" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"xJV" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"xJX" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"xKd" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"xKh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"xKn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xKo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"xKs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"xKP" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"xJT" = ( -/obj/structure/toilet{ - dir = 4 +"xKS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"xJV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/lower/port_midship_hallway) +"xLf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"xKb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"xLj" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"xKg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xLl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"xLt" = ( +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"xKh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"xKs" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; +/area/almayer/living/offices) +"xLB" = ( +/obj/structure/machinery/firealarm{ pixel_y = 28 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"xKx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xKH" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or4privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"xLD" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"xKN" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xLH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xLL" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/cryo_cells) +"xLQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"xLV" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/mp_bunks) -"xKO" = ( -/obj/structure/surface/rack, -/obj/item/storage/beer_pack, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"xLX" = ( +/obj/structure/machinery/pipedispenser/orderable, /turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"xKS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ +/area/almayer/maint/upper/u_a_s) +"xMa" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"xKU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"xLw" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"xLD" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"xLU" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"xMb" = ( -/obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"xMg" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) +"xMq" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) -"xMt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"xMx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/effect/landmark/map_item, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"xMF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xMI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xME" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"xMH" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) "xMR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"xMY" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) "xNc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -29 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"xNk" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"xNs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"xNh" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/briefing) -"xNl" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"xNo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/hydroponics) +"xNF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryogenics Bay" +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"xNr" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"xNK" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) "xNO" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"xNQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"xOb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/maint/hull/upper/u_f_p) +"xOe" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating, +/area/almayer/command/cic) +"xOm" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xOd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"xOy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/living/briefing) +"xOH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"xOJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -67313,204 +67139,211 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"xPl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"xOP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"xOQ" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xPo" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"xPb" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"xPd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/port_fore_hallway) +"xPp" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"xPD" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"xPv" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"xPw" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"xPA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) +/area/almayer/squads/bravo) "xPK" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"xPN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/interrogation) +"xPM" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"xPT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "xPV" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/boonie, -/obj/item/trash/chunk/hunk, -/obj/item/trash/crushed_cup, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) "xQa" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cic) -"xQj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"xQp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xQr" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi_ext" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"xQs" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"xQB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_stern) -"xQL" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"xQQ" = ( +"xQf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"xRg" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_umbilical) +"xQh" = ( +/obj/structure/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 16 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"xRl" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xRq" = ( -/obj/structure/stairs{ +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"xQk" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"xQp" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"xRs" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"xRt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"xRS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xQx" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/rack, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"xRW" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"xQI" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"xRX" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -16 +/area/almayer/maint/hull/lower/l_a_p) +"xQJ" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xQO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; + dir = 4; + id = "crate_room4"; + name = "dilapidated storage shutters" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"xQZ" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -15; + pixel_y = 25 }, -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"xRY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"xSa" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"xSm" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, +/area/almayer/shipboard/brig/armory) +"xRb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"xRF" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"xSo" = ( -/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/area/almayer/maint/hull/upper/u_a_s) +"xRL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"xRO" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xRP" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xSv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/squads/charlie) +"xSn" = ( +/obj/structure/sign/safety/north{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"xSp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) "xSw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -67521,18 +67354,22 @@ }, /turf/open/floor/plating, /area/almayer/squads/charlie) -"xSE" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"xSG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Primary Processors"; + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) "xSM" = ( /obj/structure/machinery/light{ dir = 8 @@ -67544,47 +67381,84 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"xSO" = ( -/obj/structure/barricade/handrail, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xTc" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"xSS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/autodispenser{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"xTr" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xSV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"xTj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = 9; + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) + }, +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"xTm" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "Alpha_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"xTn" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) "xTu" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/lower/port_midship_hallway) -"xTM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xTO" = ( -/obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 + dir = 2 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "Morgue Waiting Room"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"xTC" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"xTG" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"xTP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) "xTR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -67594,99 +67468,146 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"xTT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"xTU" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 +"xTZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xUb" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "xUc" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"xUn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"xUN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"xUW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xUk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"xVa" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "tcomms" +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"xVk" = ( -/turf/open/space, -/area/space/almayer/lifeboat_dock) -"xVu" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"xVC" = ( +/area/almayer/medical/containment) +"xUl" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xUE" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"xUL" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/phone_base/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"xUQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"xUW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar{ + layer = 3.04; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -2; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 7; + pixel_y = 16 }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"xVe" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"xVh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"xVE" = ( -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_a_p) +"xVk" = ( +/turf/open/space, +/area/space/almayer/lifeboat_dock) +"xVp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"xVB" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "xVF" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"xVR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) "xVS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67703,83 +67624,63 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"xVU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"xVZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"xWk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) +"xWm" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) "xWn" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/cryo_cells) "xWp" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"xWu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ +"xWs" = ( +/obj/structure/machinery/prop/almayer/computer{ dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) "xWv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"xWy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"xWH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"xWC" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"xWG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"xWL" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xWQ" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xWR" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"xWJ" = ( /turf/closed/wall/almayer, -/area/almayer/shipboard/brig/mp_bunks) +/area/almayer/maint/upper/u_m_s) +"xWL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) "xWT" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -67795,117 +67696,128 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) "xWW" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"xWX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"xXc" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) "xXh" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell) -"xXn" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/maint/upper/u_a_p) "xXo" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"xXp" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"xXq" = ( +/obj/structure/bed/chair/office/dark{ dir = 4; - id = "Firing_Range_2"; - name = "range shutters" + layer = 3.25 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"xXv" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"xXC" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"xXD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xXE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"xXG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"xXR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"xXQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/facepaint/green, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"xXV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/prop/magazine/boots/n160{ - layer = 2.8; - pixel_x = 4; - pixel_y = -8 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"xXW" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"xXX" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xXY" = ( +/obj/structure/machinery/optable, /turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"xYb" = ( +/area/almayer/medical/operating_room_three) +"xXZ" = ( +/obj/structure/machinery/brig_cell/cell_3{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"xYa" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 14 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"xYn" = ( +/obj/structure/machinery/vending/snack{ + pixel_x = -7 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"xYk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/vending/coffee{ + pixel_x = 14 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xYq" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"xYu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"xYx" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/ce_room) -"xYA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) "xYB" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -67913,167 +67825,161 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"xYD" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"xYJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) +"xYC" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "xYP" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"xZf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"xZh" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/item/cell/high, +"xYX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/upper/u_f_p) +"xZe" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "xZs" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"xZy" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"xZF" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/living/grunt_rnr) +"xZJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"xZu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) -"xZH" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"xZR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"yaf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"xZV" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"yab" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/u_a_s) +"yaJ" = ( +/obj/structure/phone_base/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"yaP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc01"; - name = "\improper Treatment Center" + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"yam" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"yan" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"yav" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"yaB" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"yaL" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"yaS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"yaO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) "yaU" = ( -/obj/structure/window/reinforced, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"ybs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"ybj" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ybl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ybp" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ybt" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "ybv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ybB" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"ybA" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"ybD" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = -27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"ybI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ybE" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ybL" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) -"ybN" = ( -/obj/effect/decal/cleanable/vomit, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"ybM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "ybQ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ybW" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"ybT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) "ycd" = ( /obj/structure/bed/chair{ dir = 8; @@ -68081,119 +67987,184 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"ych" = ( +"yci" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +/obj/item/paper_bin/uscm, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ycl" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) "ycm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ycw" = ( +"ycs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ycD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"ycK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"ycO" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"ycP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"ycT" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_four) +"ycW" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"ydj" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"ydk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"ycy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"ycA" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"ycG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"ycP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ydm" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"ycX" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"ydf" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "weapon targetting computer" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ydn" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"yds" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_engi"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "ydu" = ( -/obj/structure/sign/safety/maint{ +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ydP" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; pixel_x = -17 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) -"yej" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 16 +/obj/structure/sign/safety/twilight_zone_terminator{ + pixel_x = 8; + pixel_y = -24 }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"yel" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/starboard_hallway) -"yep" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"yer" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"yeo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) +"yeq" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"yex" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"yeB" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"yey" = ( /turf/open/floor/almayer/blue/east, -/area/almayer/command/cichallway) +/area/almayer/hallways/lower/port_midship_hallway) "yeG" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) "yeH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"yeM" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/squads/bravo) +"yeQ" = ( +/obj/structure/machinery/cm_vending/clothing/combat_correspondent, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; @@ -68203,61 +68174,93 @@ /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) "yeU" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"yeX" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/uscm{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"yfB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 6; - req_access_txt = "3" +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = -1 }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -6; - req_access_txt = "3" +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = 5 }, /obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -6; - pixel_y = 9; - req_access_txt = "3" + id = "CO-Office"; + name = "Door Control"; + normaldoorcontrol = 1; + pixel_y = 7; + req_access_txt = "31" }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 6; - pixel_y = 9; - req_access_txt = "3" +/obj/item/ashtray/bronze{ + pixel_x = 12; + pixel_y = 1 }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"yeY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"yfM" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"yfi" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"yfl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"yfs" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/life_support{ + pixel_x = -17 }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"yfu" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 27; + serial_number = 12 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"yfQ" = ( +/area/almayer/living/briefing) +"yfx" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"yfD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"yfM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) +/area/almayer/hallways/lower/port_umbilical) "yfS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -68265,165 +68268,162 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"ygn" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 +"yfX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"ygz" = ( -/obj/structure/closet/secure_closet/fridge/dry, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"ygv" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ygB" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/upper/u_m_s) +"ygA" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ygG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/shipboard/brig/cryo) +"ygQ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"ygH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"ygR" = ( +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = -24; + req_one_access_txt = "200;91;92" }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ygV" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"ygY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ygM" = ( +/area/almayer/hallways/hangar) +"yhi" = ( /obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/scrubber, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"ygP" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"ygR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/shipboard/brig/execution_storage) "yhk" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"yhp" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"yhJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ dir = 4 }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"yhK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"yhZ" = ( +/obj/structure/bed/chair, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"yhl" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or01"; - name = "Operating Theatre 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/area/almayer/maint/hull/upper/p_stern) +"yia" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_one) -"yhp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 2 +/area/almayer/squads/alpha) +"yic" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"yid" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"yhD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"yii" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"yie" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"yir" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"yix" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17; + pixel_y = 8 }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = -6 }, -/obj/item/device/multitool{ - pixel_x = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"yiI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/screwdriver{ - pixel_x = -3; - pixel_y = 4 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"yif" = ( /turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"yix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"yiA" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"yiG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"yiH" = ( -/obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"yiL" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/light{ +/area/almayer/shipboard/brig/processing) +"yiU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) "yiX" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -68435,115 +68435,115 @@ }, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"yju" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"yjv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"yjE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Kitchen Hydroponics"; - req_one_access_txt = "30;19" +"yjk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"yka" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ykk" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/obj/item/folder/white{ + layer = 2.9; + pixel_x = -8 }, -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"yjN" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"yjV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ykv" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" +/area/almayer/command/telecomms) +"yjW" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"yka" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"ykn" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"ykQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ykC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"ykI" = ( /obj/structure/machinery/light{ - dir = 1 + unacidable = 1; + unslashable = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"ykN" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"ykW" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"ylq" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/living/briefing) +"yly" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ykX" = ( -/obj/structure/machinery/light/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/upper/u_f_p) +"ylL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"ykZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ylR" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"yls" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ylX" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, +/obj/item/shard, +/obj/item/tool/extinguisher, +/obj/item/stock_parts/scanning_module, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"ylD" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, -/area/almayer/command/airoom) -"ylH" = ( +/area/almayer/engineering/upper_engineering) +"ymb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 10 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) (1,1,1) = {" aaa @@ -75290,15 +75290,15 @@ bdH bdH aaa aaa -baA -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -psN +qDX +vlu +vlu +vlu +vlu +vlu +vlu +vlu +ckx aaa aaa aaa @@ -75493,15 +75493,15 @@ aaa aaa aaa aaa -oZE -usF -usF -usF -usF -usF -usF -usF -mSj +dJq +rJL +rJL +rJL +rJL +rJL +rJL +rJL +pdc aaa aaa aaa @@ -75691,25 +75691,25 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -vHZ -vHZ +qDX +vlu +vlu +vlu +vlu aag -usF -eWw +rJL +llf oog -tjI -oRM -aHL -usF +xhX +oWQ +pCe +rJL aag -vHZ -vHZ -vHZ -vHZ -psN +vlu +vlu +vlu +vlu +ckx aaa aaa aaa @@ -75894,25 +75894,25 @@ aaa aaa aaa aaa -oZE -tBb -tBb -tBb -tBb -tBb -usF -uno +dJq +uYV +uYV +uYV +uYV +uYV +rJL +orA oog -hvD -dgY -kbE -usF -uKQ -uKQ -uKQ -uKQ -uKQ -mSj +sor +gFW +xqJ +rJL +lZW +lZW +lZW +lZW +lZW +pdc aaa aaa aaa @@ -76095,29 +76095,29 @@ aaa aaa aaa aaa -baA -vHZ +qDX +vlu aag -tBb +uYV naB naB naB naB mtl -myW -crY -uPD -vKN -gbe -vML -njv -qxn -xQj -xNO -uKQ +oxX +mjK +hzA +wUQ +xMI +pCE +cAe +dEN +yhi +sGO +lZW aag -vHZ -psN +vlu +ckx aaa aaa aaa @@ -76298,29 +76298,29 @@ aaa aaa aaa aaa -oZE -nWG -nWG -tBb -chv -iXJ -eOF +dJq +ffi +ffi +uYV +oDb +oZA +aAt naB mtl -ajh -hiZ -iLY -ewv -exA -non -dRK -flX -flX -luR -uKQ -ftf -ftf -mSj +fhv +cBT +gMe +jdC +vVx +usP +fPd +lYv +lYv +fcu +lZW +sas +sas +pdc aaa aaa aaa @@ -76493,45 +76493,45 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -nWG -nWG -rEe +qDX +vlu +vlu +vlu +vlu +vlu +vlu +vlu +ffi +ffi +kTf naB -gjs +hbE pHp -wFk -xcN -rim -cKA +isl +ujp +vGx +uYP mtl mtl mtl mtl -mKU -njv -iER -lRd -nXT -njv -jvy -ftf -ftf -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -psN +hFG +cAe +qtH +end +fCJ +cAe +sRc +sas +sas +vlu +vlu +vlu +vlu +vlu +vlu +vlu +ckx aaa aaa aaa @@ -76696,45 +76696,45 @@ aaa aaa aaa aaa -oZE -nWG -nWG -nWG -nWG -nWG -nWG -nWG -nWG -khj -rrZ +dJq +ffi +ffi +ffi +ffi +ffi +ffi +ffi +ffi +aat +aVm naB -chv -afn -nDT -hgn -mdY +oDb +khv +jIl +heA +mwY qPD -rWW -jKl -miM -vic -mDS -njv -njv -njv -njv -njv -nWl -noR -ftf -ftf -ftf -ftf -ftf -ftf -ftf -ftf -mSj +rto +ncl +miU +tjr +uAG +cAe +cAe +cAe +cAe +cAe +lXb +mjG +sas +sas +sas +sas +sas +sas +sas +sas +pdc aaa aaa aaa @@ -76899,45 +76899,45 @@ aaa aaa aaa aaa -oZE -nWG -psE -fQW -dlV -oEv -qIe -dlV -vqh -uSb -wpo +dJq +ffi +qbX +nvA +kMk +hyu +sqn +kMk +onJ +gmv +sCh naB naB naB naB naB -jEz +gBZ qPD qPD qPD qPD -tZt -dcF -xhI -lEZ -mcw -kfA -hZb -bVl -aIj -qMZ -hZb -vgt -hhF -hZb -hZb -tjO -ftf -mSj +tJF +hFh +cef +mEW +aPT +vhv +xCu +vRk +wMw +eKZ +xCu +jSS +vCr +xCu +xCu +hrI +sas +pdc bdH bdH aaa @@ -77100,49 +77100,49 @@ aaa aaa aaa bdH -baA -vHZ +qDX +vlu aag -nWG -fQW -dlV -fQW -olE -mBU -sVm -rMc -dlV -xOd +ffi +nvA +kMk +nvA +jbF +jLc +ici +nQy +kMk +gLo naB -chv -eZo -nDT -cEW -mdY +oDb +fzL +jIl +eVu +mwY qPD -tjQ -noq -noq -fDY -ulz +lpd +nbS +nbS +emo +uwD xkd xkd xkd xkd xkd xkd -viz -jRO -tHV -uHc -jPG -bts -bts -hZb -ftf +jek +skU +sDr +dcF +urk +yhK +yhK +xCu +sas aag -vHZ -psN +vlu +ckx bdH aaa aaa @@ -77212,27 +77212,27 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -psN +qDX +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +ckx aaa aaa aaa @@ -77303,36 +77303,36 @@ aaa aaa bdH bdH -oZE +dJq aag -nWG -nWG -fQW -dlV -lLE -lLE -lLE -lLE -lLE -sgA -onP +ffi +ffi +nvA +kMk +goe +goe +goe +goe +goe +tts +iTo naB -fWH +kaV pHp -wFk -tjR -bfS +isl +aTb +nhf qPD -ciB +xJm qPD qPD uQm -jtT +ycP xkd -teE -xJT +eiH +aTV xkd -awO +fNa xkd xkd xkd @@ -77340,12 +77340,12 @@ xkd xkd xkd xkd -hZb -bts -ftf -ftf +xCu +yhK +sas +sas aag -mSj +pdc bdH bdH aaa @@ -77415,7 +77415,7 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag @@ -77435,7 +77435,7 @@ aag aag aag aag -mSj +pdc aaa bdH bdH @@ -77506,49 +77506,49 @@ aaa bdH bdH bdH -oZE +dJq aag -nWG -uFO -fQW -psE -lLE -pWK -mRt -dYZ -lLE -beK -ydu +ffi +dMG +nvA +qbX +goe +jSu +xNF +tgv +goe +jkQ +sUu naB -chv -kBe -eMR +oDb +pqL +mnw naB naB -msa -qwq -jZh +pMF +cOn +srb qPD -mTX -jlr +iCa +uZN xkd -ktJ -nmy -cVl -eUS -jna -mkY +ioz +sFs +ppB +kcb +wGU +oaa moB -pkC -scd -nrg +qJH +bJL +rqJ xkd -wQQ -bts -hZb -ftf +kwl +yhK +xCu +sas aag -mSj +pdc bdH bdH aaa @@ -77618,7 +77618,7 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag @@ -77638,7 +77638,7 @@ aag aag aag aag -mSj +pdc aaa bdH bdH @@ -77709,49 +77709,49 @@ bdH bdH bdH bdH -oZE +dJq aag -nWG -crF -dlV -wcj -lLE -kFP -gpy -gpy -kmu -beK -hja +ffi +rDg +kMk +flr +goe +tDW +nlE +nlE +ozM +jkQ +vxQ naB naB naB naB naB naB -xsi -xsi -xsi -tuB -qRI -xsi +sBm +sBm +sBm +aNB +jJt +sBm xkd -xik -bjQ +ghX +rAv xkd kmd tUx ebd tHS -dmr +vCS jVa -mIR +jCk xkd -eqR -bts -hZb -ftf +hiw +yhK +xCu +sas aag -mSj +pdc bdH bdH aaa @@ -77815,16 +77815,16 @@ aaa aaa aaa bdH -baA -vHZ -vHZ -vHZ -vHZ -vHZ +qDX +vlu +vlu +vlu +vlu +vlu aag dqw -rNS -rNS +rTa +rTa dqw aag aag @@ -77836,18 +77836,18 @@ aag aag aag dqw -rNS -rNS +rTa +rTa dqw aag aag aag -vHZ -vHZ -vHZ -vHZ -vHZ -psN +vlu +vlu +vlu +vlu +vlu +ckx bdH aaa aaa @@ -77912,49 +77912,49 @@ aaa bdH bdH bdH -oZE +dJq aag -nWG -dlV -fQW -lLE -lLE -hoD -hoD -hoD -lLE -dry -kRr -oLW -puf -eKq -hjm -hQt -gTy -mJv -gve -xmn -tHl -cfQ -mSm +ffi +kMk +nvA +goe +goe +xPK +xPK +xPK +goe +ujZ +gFh +qcs +kyW +jji +afb +paz +oUO +gGX +smO +dWF +buw +sar +vSU xkd xkd xkd xkd -xwt +wxf iOD iOD tHS -oFA +dXh tUx -vBu +miR xkd xkd -hZb -bts -ftf +xCu +yhK +sas aag -mSj +pdc bdH bdH aaa @@ -78018,12 +78018,12 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -xzn -xzn -xzn +stv +stv +stv +stv aag dqw uwv @@ -78045,12 +78045,12 @@ dqw aag aag aag -tvY -tvY -tvY -tvY +sSK +sSK +sSK +sSK aag -mSj +pdc bdH aaa aaa @@ -78115,49 +78115,49 @@ aaa bdH bdH bdH -oZE +dJq aag -bgb -dlV -fQW -lLE -gsf -lpa -mjK -mjK -lLE -pmS -qko -xeV -iPe -iPe -fbz -hkL -nQK -cbl -cbl -cbl -cbl +dMf +kMk +nvA +goe +djK +xHn +xsP +xsP +goe +mOp +uiX +ssu +mUB +mUB +xal +gzW +upi +pxW +pxW +pxW +pxW cMl -fMB +kWL xkd -eDL -fEL +cAP +wVa xkd -oTp +ohi jVa jVa tHS -vRo +cqp tUx -fcT -gfh +bLQ +lch xkd -hZb -bts -jYT +xCu +yhK +mUY aag -tay +doq bdH bdH aaa @@ -78221,16 +78221,16 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -hmT -gIk +stv +kFl +gwt bAs bAs bAs -rNS -rNS +rTa +rTa bAs bTT bTT @@ -78242,18 +78242,18 @@ aag aag bAs bAs -rNS -rNS +rTa +rTa bAs bTT bTT bTT bAs -mXc -oPn -tvY +fhX +bSq +sSK aag -mSj +pdc bdH aaa aaa @@ -78318,49 +78318,49 @@ aaa bdH bdH bdH -oZE +dJq aag -bgb -fQW -dlV -lLE -gsf -bJW -wce -iqq -czD -beK -beK -nTp -rPv -rPv -hkL -rPv -vdR -fiP -fiP -fiP -wBI +dMf +nvA +kMk +goe +djK +ttb +mGw +bDb +rwR +jkQ +jkQ +nto +nht +nht +gzW +nht +kAX +cBJ +cBJ +cBJ +odG cMl -bDR +cuA kMH tUx iTI -uEy +mlG eZH jVa jVa tHS -dmr +vCS ycm qCo -doy +xoc xkd -cRY -bts -jYT +bhH +yhK +mUY aag -mSj +pdc bdH bdH aaa @@ -78424,17 +78424,17 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -tCs -tKN +stv +emg +tqM bBA -wzq -oXg -hNG -hNG -hNG +mSf +prO +xwV +xwV +xwV bHI bJS bAs @@ -78445,18 +78445,18 @@ aag aag bAs bHP -cFy -cFy -hNG +rxx +rxx +xwV acr -fDg -blx +lSl +mKQ bBA -lQD -qzl -tvY +nLC +rVt +sSK aag -mSj +pdc bdH aaa aaa @@ -78521,11 +78521,11 @@ aaa bdH bdH bdH -oZE +dJq aag -bgb -cHH -dlV +dMf +lgR +kMk lrq lrq lrq @@ -78533,19 +78533,19 @@ lrq lrq lrq lrq -ipj -gsJ +euL +ajg tpn tpn -crs +aKP tpn tpn -aql -gsQ -cVr -myK +qwO +ubu +pZO +kNh cMl -pgG +cZH xkd qFu xkd @@ -78554,16 +78554,16 @@ vdM jVa wtM moB -cCS +tie cyZ jVa -wBi +cYq xkd -eEv -hZb -jYT +gVY +xCu +mUY aag -eEG +wqB bdH bdH aaa @@ -78627,17 +78627,17 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -iSV -szG +stv +nfE +pIa bBA -voI -oXg -hNG -hNG -hNG +xZs +prO +xwV +xwV +xwV bHP bJT bAs @@ -78648,18 +78648,18 @@ bAs bAs bAs bNl -cFy -cFy -hNG +rxx +rxx +xwV bHP -fDg -krn +lSl +qzD bBA -jqc -eMG -tvY +jmE +nSd +sSK aag -mSj +pdc bdH aaa aaa @@ -78724,49 +78724,49 @@ aaa bdH bdH bdH -oZE +dJq aag -nWG -psE -mxe +ffi +qbX +pZC lrq -hdZ -smg -llu -dYB -kec +iie +hrO +oPO +oEN +khO lrq -aJD -edR +jDA +fMb tpn -jNA -cCj -ofe +qeT +udE +hUY tpn -xSa -iKn -sKx -myK +crf +rur +qDI +kNh wSm -kse +bsq xkd -eDL -qbH +cAP +oAy xkd eZH jVa jVa moB moB -tCQ -pfi +pGY +hXu moB xkd -kdH -hZb -ftf +vKE +xCu +sas aag -mSj +pdc bdH bdH aaa @@ -78830,39 +78830,39 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -fAm -uiM -kEx -mhi -oXg -hNG -hNG -hNG -kKa +stv +xft +ieY +kZT +kXA +prO +xwV +xwV +xwV +xNk bHP avw -cCd -nIo -xVZ -cCd -nIo +xWs +iNG +jHp +xWs +iNG avw bHP -cFy -cFy -hNG -iRT -fDg -ckq -kEx -eVO -qmi -tvY +rxx +rxx +xwV +dQK +lSl +xiH +kZT +leT +ncc +sSK aag -mSj +pdc bdH aaa aaa @@ -78927,49 +78927,49 @@ aaa bdH bdH bdH -oZE +dJq aag -nWG -izE -fQW +ffi +quH +nvA lrq -hVY -kwJ -kwJ -kwJ -kwJ -jaW -beK -hAw +xQZ +kgX +kgX +kgX +kgX +aHp +jkQ +hUV tpn -iHU -cCj -ofe +wHJ +udE +hUY tpn -pPe -myK -cbl -cbl +wvQ +kNh +pxW +pxW wSm -fux +nPw kVZ tUx iTI -dHF +jZN eZH tUx vrx -iGo -kGJ +bRM +xmD eZH tUx cXi xkd -hjp -hZb -ftf +qkM +xCu +sas aag -bQr +iRe bdH bdH aaa @@ -79033,39 +79033,39 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -uiM -hPl +stv +ieY +vzZ bBA -hys -oXg -hNG -hNG -qJM -nAJ +vtv +prO +xwV +xwV +qeC +efH bHP avw -mhi -mKV -jeM -bud -ckq +kXA +vCD +cPX +ybQ +xiH avw bHP -cFy -cFy -qJM -nAJ -fDg -rAa +rxx +rxx +qeC +efH +lSl +gOe bBA -hVN -eVO -tvY +ntV +leT +sSK aag -mSj +pdc bdH aaa aaa @@ -79130,36 +79130,36 @@ aaa aaa bdH bdH -oZE +dJq aag -bgb -ndE -fQW +dMf +iwN +nvA lrq -ttf +dou uqo -tVH -aZb +mkP +kxJ uqo lrq -jFz -hJw +vqs +rNa tpn -pdf -mCk -ofe +utS +qtJ +hUY tpn -nLD -rCC -ogF -rzA -jbC -uHp +unF +odA +wit +rWK +hso +bmK xkd qFu xkd xkd -kNF +eTP thL thL thL @@ -79168,11 +79168,11 @@ nYd thL jVa fgR -gmx -bts -jYT +wHn +yhK +mUY aag -mSj +pdc bdH bdH aaa @@ -79236,39 +79236,39 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -lZK -gWH +stv +oXC +mif bBA -oRo -kdG -uuD -kTa -aVJ -aVJ -aVJ -gqj -quD +cEc +qbL +uRg +dcg +mQk +mQk +mQk +wEu +cjs jbX kNY jbX -pnN -gqj -aVJ -aVJ -aVJ -tFR -uuD -bSM -taZ +vbJ +wEu +mQk +mQk +mQk +cKQ +uRg +kUN +fQB bBA -jBo -dBY -tvY +uJp +fXS +sSK aag -mSj +pdc bdH aaa aaa @@ -79333,49 +79333,49 @@ aaa aaa bdH bdH -oZE +dJq aag -bgb -dGT -dlV +dMf +wtX +kMk lrq -the -kwJ -kwJ -kwJ -kwJ -fga -beK -gyc +pSr +kgX +kgX +kgX +kgX +tir +jkQ +mrf tpn tpn tpn tpn tpn -tmE -sZi -aQe -myK +lfk +nCm +syD +kNh cMl -gXb +pqY xkd -eDL -cpF +cAP +vtz xkd qJZ ohJ thL thL -uAL +aHT liZ rUk jVa fgR -drp -wLb -jYT +fFn +jDg +mUY aag -fGw +fgV bdH bdH aaa @@ -79439,39 +79439,39 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -lZK -uiM +stv +oXC +ieY bBA -aXf +pjL aqu aqu -eXX -uUB -uUB -uUB +ddB +qEg +qEg +qEg avw -xPv -iOz -dov -jzr -qLD +urO +ntG +eFx +mXN +xAF avw -uUB -uUB -uUB -sua +qEg +qEg +qEg +ftj aqu aqu -uhE +gVK bBA -eVO -kQe -tvY +leT +rzs +sSK aag -mSj +pdc bdH aaa aaa @@ -79536,35 +79536,35 @@ aaa aaa bdH bdH -oZE +dJq aag -bgb -fQW -dlV +dMf +nvA +kMk lrq -mtO -boG -boG -fFC -uTJ +eUr +laE +laE +rXM +xIu lrq -kFb -usN -oPb -ooG -wKA -nzu -ooG -kGC -vOs -vOs -nZl +ulW +htr +pgI +dWb +vRi +mnT +dWb +myS +ixm +ixm +lIu cMl -cox -hms +xXZ +kTA tUx iTI -phR +bCk eZH ohJ thL @@ -79574,11 +79574,11 @@ uaU rUk xaM fgR -egx -hZb -jYT +pPO +xCu +mUY aag -mSj +pdc bdH bdH aaa @@ -79642,16 +79642,16 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -jGc -lZK +stv +kLU +oXC bBA -npK +kys amg amg -jhz +hdk alU alU alU @@ -79665,16 +79665,16 @@ alU alU alU alU -gHX +nzL amg amg -gIp +ths bBA -eVO -jBo -tvY +leT +uJp +sSK aag -mSj +pdc bdH aaa aaa @@ -79739,49 +79739,49 @@ aaa aaa bdH bdH -oZE +dJq aag -nWG -dlV -dlV +ffi +kMk +kMk lrq -ezy -ezy -ezy -ezy +hKN +hKN +hKN +hKN lrq lrq -mME -usN -uRd -ooG -euH -dCV -rss -cbl -cbl -cbl -cbl -lfA -vmH +cDl +htr +eKz +dWb +gTA +mtv +hKX +pxW +pxW +pxW +pxW +gKm +vjj xkd qFu xkd xkd -qAO +eAl omt omt omt omt uxa iZU -xeN +egn xkd -bts -kgO -ftf +yhK +vkE +sas aag -psX +hwj bdH bdH aaa @@ -79845,39 +79845,39 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -daS -uiM +stv +eyf +ieY bBA -npK +kys amg amg -qao +mBD alU -lis -nfB -xyV +ipv +nFH +eBu alU -rRL -daZ -kJa +tSJ +uMx +ydP alU -dDZ -eRk -pOe +oJD +iOq +szC alU -gnW +jzV amg amg -gIp +ths bBA -vpo -wPU -tvY +luE +fVW +sSK aag -mSj +pdc bdH aaa aaa @@ -79942,36 +79942,36 @@ aaa aaa bdH bdH -oZE +dJq aag -nWG -fQW -eND +ffi +nvA +nJe cQv -pQw -bVf -kJw -qev +nCc +jNh +mEL +fMH cQv cQv -wfj -iJw -ooG -ooG -jBV -nDk -ooG -xTO -xTO +gZi +vrj +dWb +dWb +wKj +ykI +dWb +tQG +tQG sgi -myK +kNh wSm -gXb +pqY xkd -eDL -dJi +cAP +pki xkd -buF +pTY thL thL thL @@ -79980,11 +79980,11 @@ tov thL sUs xkd -kdH -hZb -ftf +vKE +xCu +sas aag -mSj +pdc bdH bdH aaa @@ -80048,39 +80048,39 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -nYx -uiM +stv +tPT +ieY bBA -mOy +mQt aqu tkq -jhz +hdk alU -urY +uvV aoi -fRX -uCY -eMg +llJ +hid +vjL aoi -fRX -uCY -eMg +llJ +hid +vjL aoi -lJF +lCu alU -lkU +xLB tkq aqu -coM +dgF bBA -fNq -jBo -tvY +imn +uJp +sSK aag -mSj +pdc bdH aaa aaa @@ -80145,36 +80145,36 @@ aaa aaa bdH bdH -oZE +dJq aag -bgb -fQW -jGF +dMf +nvA +gxJ cQv -vmx -rPp -rPp +dDy +sLW +sLW ajj -qRc +wlc cQv -gye -xlN -qLw -scE -mTO -fqq -qLw -qPr -vOs -vXj -myK +qIh +qtF +cBu +dWd +pvb +oKC +cBu +oSt +ixm +fDR +kNh wSm -flT -ldF +eSn +jzt tUx iTI -gWg -uVH +oBu +lBh thL oXp thL @@ -80183,11 +80183,11 @@ tov thL xhx fgR -bts -hZb -jYT +yhK +xCu +mUY aag -raZ +dZj bdH bdH aaa @@ -80251,39 +80251,39 @@ aaa aaa aaa bdH -oZE +dJq aag -xzn -lma -uiM +stv +xvD +ieY bBA -eVE +wmM amg bEw bFk -rAu +wSK let bJX bJX bKs -jdE -qBT -pAL +tZG +bgb +hmP bNf bJX bJX let -rAu +wSK bFk bPq amg -gIp +ths bBA -eVO -dtS -tvY +leT +gUe +sSK aag -mSj +pdc bdH aaa aaa @@ -80348,49 +80348,49 @@ aaa aaa bdH bdH -oZE +dJq aag -bgb -fQW -glO +dMf +nvA +iil cQv -noD -rqS -cXJ -oxP -nKe +iNs +rVP +bte +pTu +dqx cqJ -coL -xlN -qLw -lJn -aWB -smm -qLw -xIX -sHU -qHS -wiq -wed -pgG +bxb +qtF +cBu +vrC +mTU +amu +cBu +khk +uOW +wEM +czL +vsZ +cZH xkd qFu xkd xkd -iDa +gjI ezX pqF rUk thL -dhD +wKz thL tUx fgR -hZb -egx -jYT +xCu +pPO +mUY aag -mSj +pdc bdH bdH aaa @@ -80453,41 +80453,41 @@ aaa aaa aaa aaa -baA +qDX aag aag -xzn -wSv -iQS +stv +chZ +vTd bBA -gss +qOt amg aoa -ckq +xiH alU -xVE +jzg bJY aoi bLh -rtH +xvH bMP -gTz +bwC bLh aoi bNo -eox +oaq alU -mhi +kXA aoa amg -pdL +eeq bBA -pcz -eVO -tvY +qne +leT +sSK aag aag -psN +ckx aaa aaa aaa @@ -80551,36 +80551,36 @@ aaa aaa bdH bdH -oZE +dJq aag -bgb -dlV -cHH +dMf +kMk +lgR cQv -noD -rqS -xSv +iNs +rVP +ybL pGT pGT -lEN -nQw -gqG -ooG -ggS -mGm -ggS -ggS -lHn -fiP -vXj -myK +nol +uFh +pSd +dWb +qjb +xcQ +qjb +qjb +cXo +cBJ +fDR +kNh cMl -kse +bsq xkd -eDL -epk +cAP +jQz xkd -xEV +nPY ezX prY rUk @@ -80589,11 +80589,11 @@ thL thL tUx fgR -hZb -kUd -jYT +xCu +lgM +mUY aag -bNK +rqC bdH bdH aaa @@ -80656,41 +80656,41 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -xzn -uiM -wRd +stv +stv +ieY +mww bBA -wbq +uEQ aqu bEx -mso +cWY alU -uit +lbF bJY sta rxK -lLM +gOB bLh -lJF +lCu pfa iLq bNo -kbp +xPb alU -bjF +pBM bEx aqu -dAT +aLw bBA -vQR -eVO -tvY -tvY +ihJ +leT +sSK +sSK aag -mSj +pdc aaa aaa aaa @@ -80754,36 +80754,36 @@ aaa bdH bdH bdH -oZE +dJq aag -nWG -dlV -dlV +ffi +kMk +kMk cQv -noD -rqS -jcX +iNs +rVP +eAY ajj -nKe +dqx cqJ -coL -xlN -qLw -wBG -aWB -uOU -ggS +bxb +qtF +cBu +obm +mTU +duc +qjb emp emp emp -tTy +pCl cMl -sQX -syR +qBE +qsJ tUx iTI -erV -hkf +ibm +whN thL thL thL @@ -80792,11 +80792,11 @@ thL thL tUx xkd -hZb -kdI -ftf +xCu +pWe +sas aag -mSj +pdc bdH bdH aaa @@ -80859,41 +80859,41 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -lZK -lZK -aBv +stv +oXC +oXC +cqU bBA -sWU +rFz amg ddz -ckq +xiH alU -vgG -gIw -iHT +qts +gxx +mMB bLi -tOK -bhR -wAW +rty +cGq +pWq bNg -fyF -qEG -kbQ +lcE +ttA +thn alU -edZ -fdu +xAm +pVj amg -lOA +mmk bBA -uxz -eVO -dtS -tvY +hLi +leT +gUe +sSK aag -mSj +pdc bdH bdH bdH @@ -80957,36 +80957,36 @@ aaa bdH bdH bdH -oZE +dJq aag -nWG -crF -dlV +ffi +rDg +kMk cQv -noD -rqS -eyC -lNt -nKe +iNs +rVP +nBD +lap +dqx cQv -uEG -xlN -qLw -uEw -aWB -avp -ggS -lFz -vOs -oZN -omq -iph -vmH +nxD +qtF +cBu +hSH +mTU +mPq +qjb +rBy +ixm +sIb +tWt +yiI +vjj xkd qFu xkd xkd -shv +dmc thL thL thL @@ -80995,11 +80995,11 @@ thL thL tUx xkd -hZb -bts -ftf +xCu +yhK +sas aag -mSj +pdc bdH bdH aaa @@ -81058,19 +81058,19 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -vHZ +qDX +vlu +vlu +vlu aag -xzn -xzn -lZK -uiM -eRH +stv +stv +oXC +ieY +fxE bBA bBA -gUH +cEz bBA bBA alU @@ -81078,29 +81078,29 @@ bIy alU alU alU -hRL +oEO alU -ltv +qMp alU alU alU -pGS -pGS -pGS -pGS -rxq -pGS -pGS -qEQ -jBo -eVO -tvY -tvY +ubx +ubx +ubx +ubx +gUa +ubx +ubx +fLl +uJp +leT +sSK +sSK aag -vHZ -vHZ -vHZ -psN +vlu +vlu +vlu +ckx aaa aaa aaa @@ -81160,49 +81160,49 @@ aaa bdH bdH bdH -oZE +dJq aag -nWG -fQW -mxe +ffi +nvA +pZC cQv -oMa -rqS -rPp +dVh +rVP +sLW ajj -qoX +jco cQv -cBO -xlN -qLw -npo -aWB -spq -ggS -fSV -xNQ -wKJ -swY -uDI -gXb +uyw +qtF +cBu +xyp +mTU +lrI +qjb +mmq +pww +klr +bWB +qcd +pqY xkd -eDL -rvD +cAP +mMv xkd -hkf +whN tUx tUx tUx tUx tUx -mIu +qPb oEE xkd -kdH -hZb -ftf +vKE +xCu +sas aag -mSj +pdc bdH bdH aaa @@ -81261,49 +81261,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -xzn -xzn -xzn -lZK -lZK -vtF -vtF -vtF -hHL -gFK -pqj +stv +stv +stv +stv +oXC +oXC +ddS +ddS +ddS +otW +gqT +xry kcp bWJ nar alU -wJp -vIy +kvj +rMu bLs -pZZ +lWx aoi -rtR -wef +nxM +vMR alU -qQX -nXK -rcJ -hVr -nde -gdQ -dru -dru -dru -jBo -eVO -tvY -tvY -tvY -tvY +lEy +bhK +lVf +lqm +bxW +vsG +nEt +nEt +nEt +uJp +leT +sSK +sSK +sSK +sSK aag -mSj +pdc aaa aaa aaa @@ -81363,49 +81363,49 @@ aaa aaa bdH bdH -oZE -nWG -nWG -dlV -xOd +dJq +ffi +ffi +kMk +gLo cQv -mMu -rPp -uGM +iiw +sLW +lVH cQv -iUN +rRf cQv -ipj -iuT -ggS -ggS -mGm -ggS -ggS -pQQ -pRQ +euL +leD +qjb +qjb +xcQ +qjb +qjb +nYY +kLW emp -wJr +xOH wSm -ihx -dmf +xEh +vuD tUx iTI -etO -hkf -oWy -iQn -qHX -dTf -dTf -qHX -kTj -qHX -eoi -hZb -ftf -ftf -mSj +maV +whN +inU +jut +rJH +kFw +kFw +rJH +veD +rJH +tWP +xCu +sas +sas +pdc bdH bdH aaa @@ -81464,49 +81464,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -fpc -lZK -uiM -lZK -bcB -vtF -elz -gFK -fMn -gFK -oJn +stv +qkd +oXC +ieY +oXC +fsL +ddS +dbi +gqT +uAp +gqT +mFk kcp -tot -goW +ruR +frd alU -uiJ -nYo +prp +ssL bLs -rAF +lPQ aoi -jMW -tRZ +fVl +rlF alU -cCh -nXK -whI -iZf -iZf -iZf -nde -nKu -dru -jBo -uYU -jBo -sEZ -bFv -tvY +vNJ +bhK +jtb +lxg +lxg +lxg +bxW +rLC +nEt +uJp +iEE +uJp +uJv +qMJ +sSK aag -mSj +pdc aaa aaa aaa @@ -81566,49 +81566,49 @@ aaa aaa bdH bdH -oZE -nWG -mOe -fQW -mym +dJq +ffi +bee +nvA +ump cQv -riG -eSq -xqW +nPR +hIN +rWP cqJ -yej -pUj -buP -sWv -onP -iyJ -kDa -olG -jph -oKz -qaQ +hpl +xAn +eXC +sOK +iTo +dQx +obu +tIm +kCx +qrt +vbx emp -myK +kNh wSm -uHp +bmK emp emp emp emp -vkE +hSN emp emp -qHX -aNh -oOe -kKf -xzO -qHX -jQo -bts -hZb -ftf -mSj +rJH +wvR +eNX +wXK +hGd +rJH +sub +yhK +xCu +sas +pdc bdH bdH aaa @@ -81667,49 +81667,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -tAM -lZK -uiM -lZK -fou -vtF -elz +stv +dwt +oXC +ieY +oXC +iiB +ddS +dbi kcp kcp -aWg +tlD kcp kcp -bDA +tPq kcp alU alU alU -uKp +hVM alU -xgE +tnz alU alU alU -fsP -kzY -dFA -pUB -eWD -eWD -eWD -isO -dru -pEa -jBo -eVO -eVO -dtS -tvY +udp +gBU +kVh +jVK +eCv +eCv +eCv +ouU +nEt +vOt +uJp +leT +leT +gUe +sSK aag -mSj +pdc aaa aaa aaa @@ -81769,49 +81769,49 @@ aaa aaa bdH bdH -oZE -nWG -oeG -fQW +dJq +ffi +uSD +nvA vxM vxM vxM vxM vxM vxM -lRi -beK -beK -sWv -onP -cWZ -kDa -yif -yif -eXs -rnL +htN +jkQ +jkQ +sOK +iTo +vFm +obu +eTi +eTi +iok +wRu jcf -myK +kNh cMl -qHY +uyp emp -irl -vOs -gZV -qqy -vOs -iQa -qHX -yfB -sSt -kPC -lbz -qHX -qHX -bts -hZb -ftf -mSj +vQn +ixm +wsf +qCB +ixm +wtl +rJH +gPA +aYL +akG +eez +rJH +rJH +yhK +xCu +sas +pdc bdH bdH aaa @@ -81870,49 +81870,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -uiM -uiM -lZK -uiM -fjA -vtF -elz +stv +ieY +ieY +oXC +ieY +hHq +ddS +dbi kcp -gHl -rqT -rqT -tHa -jiJ +mnR +ohq +ohq +sqk +ohh kcp -mlV -mlV -sVg -pFE -mBB -pWm -uOo -pWm -qQD -ePy -rwl -mJf -mJf -mJf -mJf -mJf -rZO +sVl +sVl +tCM +eXc +mbS +lVy +vya +lVy +wju +wdA +slU +lOv +lOv +lOv +lOv +lOv +ssd bSv bSv bSv bSv bSv -eVO -tvY +leT +sSK aag -mSj +pdc aaa aaa aaa @@ -81972,49 +81972,49 @@ aaa aaa bdH bdH -oZE -nWG -dlV -fQW +dJq +ffi +kMk +nvA vxM -frf -tgR -xRX -xmA -mhH -coL -beK -beK -sWv -gti -gNw -kDa -yif -cuz -vcg -rnL +fdz +sRD +dVf +ena +dfZ +bxb +jkQ +jkQ +sOK +qHo +npX +obu +eTi +mCc +whj +wRu jcf -myK +kNh cMW qEy -vOL -pRY -lBj -lBj -ivH -oZP -jRf -epV -jgW -jgW -lfY -xNl -pWB -qHX -hZb -tFT -ftf -mSj +jvP +aVM +lya +lya +dFW +dQf +ovq +olf +kGV +kGV +cfr +tJh +wxw +rJH +xCu +fcQ +sas +pdc bdH bdH aaa @@ -82073,49 +82073,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -lZK -lZK -gAr -mvB -nRG -vtF -gFK +stv +oXC +oXC +tGj +pBk +dhe +ddS +gqT kcp -vdz -bVA -qkf -qEf -qEf +ucG +wCL +fzQ +okn +okn kcp -xnE -fTj -eDZ -onb -qwH -qwH -qwH -qwH -qQD -qiw -nLj -fGM -fGM -fGM -fGM -fGM -nkv -tGC +xLl +eJU +ooQ +cky +vRM +vRM +vRM +vRM +wju +mnj +dyt +wsK +wsK +wsK +wsK +wsK +fyQ +pIT bTH foN -iCo +eod bSv -qmi -tvY +ncc +sSK aag -mSj +pdc aaa aaa aaa @@ -82174,51 +82174,51 @@ aaa aaa aaa bdH -baA +qDX aag -nWG -hSZ -dlV +ffi +nVx +kMk vxM -hLX -nEx -nEx -uOd -mhH -spJ -nQw -vxV -ors -pzf -pSy -pyR -lDi -lZq -uvT -caa +led +ygA +ygA +dzv +dfZ +rCz +uFh +uBq +yii +tbF +iDR +uVV +qXO +kpI +kTr +rqU emp -vSZ -fiP -qjb +kXH +cBJ +rEk emp -taI -gVL -rXN -wBI +kDK +lhw +ctG +odG pyj -kKC -qHX -jyy -utn -bFK -vsp -oHF -qHX -hZb -qCg -ftf +rEp +rJH +tPt +woZ +qGL +jlI +iFF +rJH +xCu +bRC +sas aag -psN +ckx bdH aaa aaa @@ -82276,49 +82276,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -fAm -lZK -vtF -vtF -vtF -vtF -gFK +stv +xft +oXC +ddS +ddS +ddS +ddS +gqT kcp -trt -qcS +nTu +frC wGX bFr ppe kcp -nde -pWm -pWm -gcJ -fRP -fRP -fRP -fRP -jaY -toc -gfU -fGM -fGM -fGM -fGM -fGM -nkv +bxW +lVy +lVy +pZE +kuU +kuU +kuU +kuU +pwS +ktN +kma +wsK +wsK +wsK +wsK +wsK +fyQ bSv tjw bTH -iui +ezx bSv -eVO -tvY +leT +sSK aag -mSj +pdc aaa aaa aaa @@ -82377,26 +82377,26 @@ aaa aaa bdH bdH -oZE +dJq aag -nWG -mCx -mxe +ffi +uKI +pZC vxM -ikX -wFq -wFq -wFq -ryJ -gBU -gko -iln -onP -onP +tBm +gZV +gZV +gZV +iIZ +fcp +xFA +nAk +iTo +iTo tsX tsX -oJA -thc +oEd +uqU tsX tsX emp @@ -82409,19 +82409,19 @@ emp emp emp wIC -sQY +ipg wIC -geE -geE -qHX -qHX -qFp -qHX -vrE -kUd -ftf +otq +otq +rJH +rJH +pXz +rJH +wHV +lgM +sas aag -mSj +pdc bdH bdH aaa @@ -82479,49 +82479,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -uiM -lZK -vtF -nrW -tnh -vtF -aEa +stv +ieY +oXC +ddS +pfU +eYD +ddS +jUC kcp -ehM -ehU -wMR -jZr -uoz -dMG -tUA -tUA -tUA -din -nde -nde -nde -nde -qQD -iZf -nLj -fGM -fGM -sWj -fGM -fGM -kLg +rmB +igB +pGR +vqT +wJt +qnE +cnz +cnz +cnz +lME +bxW +bxW +bxW +bxW +wju +lxg +dyt +wsK +wsK +esN +wsK +wsK +hbm bSv ifb bTH bSv xVT -wPU -tvY +fVW +sSK aag -mSj +pdc aaa aaa aaa @@ -82580,51 +82580,51 @@ aaa aaa bdH bdH -oZE +dJq aag -nWG -crF -dlV +ffi +rDg +kMk vxM -pwj -pwj -pwj -pwj -mhH -mqZ -mfS -onP -onP -gmE -lrE -mTZ +lrr +lrr +lrr +lrr +dfZ +mJG +xgv +iTo +iTo +eCe +iqC +uJg vka uwN -srz -rgx -kYl -rgx -rgx -rgx -rgx -wXD -uLm -ghc -iGf +uVn +dtK +qqm +dtK +dtK +dtK +dtK +wAr +gFL +swj +rVs wIC -bSu -dQq -ecP -jPj +trv +aUT +vZy +cjN wIC -twE -ogV -qHX -gTL -egx -ftf +mxe +eMA +rJH +ujw +pPO +sas aag -mSj +pdc bdH bdH aaa @@ -82682,49 +82682,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -lZK -uiM -vtF -rnt -dcI -vtF -elz +stv +oXC +ieY +ddS +iPC +mXJ +ddS +dbi kcp -agC -mAI -rqT -rqT -hId +ndG +tnI +ohq +ohq +lNH kcp -nde -pWm -pWm -pFE -nde -pWm -pWm -pWm -qQD -iZf -blQ -fGM -fGM -fGM -fGM -fGM -nkv +bxW +lVy +lVy +eXc +bxW +lVy +lVy +lVy +wju +lxg +aIg +wsK +wsK +wsK +wsK +wsK +fyQ bSv -oQD -oQD +nco +nco bSv -evi -nfb -tvY +utu +deR +sSK aag -mSj +pdc aaa aaa aaa @@ -82783,22 +82783,22 @@ aaa aaa bdH bdH -oZE +dJq aag -nWG -dlV -fQW +ffi +kMk +nvA vxM -xvf -smt -pah -gGj -mhH -mqZ -aGK -lwW -ocw -mzA +jLQ +nEv +yjW +goX +dfZ +mJG +wTv +geP +cAU +brK hUW hiM rWs @@ -82809,25 +82809,25 @@ hiM hiM rWs rWs -glu -gmI -wjU -omI -gHw +elQ +lEc +vRw +hlK +uie wIC -efu -ent -ent -nVf +ftI +yeo +yeo +wui wIC -pjZ -eQX -qHX -bts -hCi -ftf +vxE +icj +rJH +yhK +cFT +sas aag -mSj +pdc bdH bdH aaa @@ -82885,49 +82885,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -lZK -uiM -xkU -elz -elz -vtF -elz +stv +oXC +ieY +wTj +dbi +dbi +ddS +dbi kcp kcp kcp -sVN +pyY kcp kcp kcp -nde -qwH -qwH -pFE -nde -pWm -qwH -qwH -qQD -woj -nLj -fGM -fGM -fGM -fGM -fGM -nkv +bxW +vRM +vRM +eXc +bxW +lVy +vRM +vRM +wju +eHP +dyt +wsK +wsK +wsK +wsK +wsK +fyQ bSv cop cop bSv -hrC -eVO -tvY +ira +leT +sSK aag -mSj +pdc aaa aaa aaa @@ -82986,51 +82986,51 @@ aaa aaa bdH bdH -oZE +dJq aag -nWG -dlV -fQW +ffi +kMk +nvA vxM vxM vxM vxM vxM gaJ -cWd -xWR -wHt -oKs +iRm +oCF +oZJ +fFI hUW dHd vka -elG -usn -mbE -mbE -mbE -mbE -ctG -mbE -eEW +wql +tle +ouJ +ouJ +ouJ +ouJ +yeY +ouJ +bTD xWv -ffX +rOz vka -vWH +vSu wIC -ver -pyo +rQg +wnJ vAG -kJD +vKz wIC -qHX -qHX -qHX -bts -gmx -ftf +rJH +rJH +rJH +yhK +wHn +sas aag -mSj +pdc bdH bdH aaa @@ -83088,49 +83088,49 @@ aaa aaa aaa aaa -oZE +dJq aag -xzn -lZK -uiM -vtF -grd -elz -vtF -elz -kYd +stv +oXC +ieY +ddS +hxk +dbi +ddS +dbi +wNM kcp -pSq +tai gZK -rqT -dPo +ohq +nqa kcp -oak -pWm -qwH -pFE -nde -pWm -qwH -pWm -qQD -ePy -rwl -sPP -sPP -sPP -sPP -sPP -rZO +heq +lVy +vRM +eXc +bxW +lVy +vRM +lVy +wju +wdA +slU +vsU +vsU +vsU +vsU +vsU +ssd bSv -biz -lbo +rwe +gJr bSv -jBo -jBo -tvY +uJp +uJp +sSK aag -mSj +pdc aaa aaa aaa @@ -83185,29 +83185,29 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -vHZ +qDX +vlu +vlu +vlu aag aag -nWG -izE -dlV -tcn -dlV -ood -wHt -bvN -jlj -rQi -xKN -wHt -vpj +ffi +quH +kMk +ejA +kMk +oeV +oZJ +drN +fkC +edn +vda +oZJ +hMy uwN vka -rCH -voX +nGP +rvr awz awz cZh @@ -83215,29 +83215,29 @@ cZh cZh awz awz -izK -eEW +vLs +bTD mPj -jOU -wyu +nde +hEU wIC -qFP -oRG -fDr -jRG +whO +gRt +dKY +xmZ wIC -fEI -npq -oPw -bts -hZb -ftf +fhy +wyS +tlC +yhK +xCu +sas aag aag -vHZ -vHZ -vHZ -psN +vlu +vlu +vlu +ckx aaa aaa aaa @@ -83289,53 +83289,53 @@ aaa aaa aaa aaa -xzn -xzn -xzn -xzn -xzn -uiM -lZK -vtF -vtF -xPA -vtF -gFK -sGj +stv +stv +stv +stv +stv +ieY +oXC +ddS +ddS +iRL +ddS +gqT +ufD kcp -bfB +lYJ wdf -rqT +ohq kcp kcp -dru -pWm -qwH -pFE -nde -pWm -qwH -pWm -dru -scv -cJf -eGE -uoJ -ppV -ppV -ppV -jms +nEt +lVy +vRM +eXc +bxW +lVy +vRM +lVy +nEt +dQe +qoA +wYD +qBC +jBa +jBa +jBa +fLD bSv bSv bSv bSv -eVO -jBo -tvY -tvY -tvY -tvY -tvY +leT +uJp +sSK +sSK +sSK +sSK +sSK aaa aaa aaa @@ -83388,59 +83388,59 @@ aaa aaa aaa aaa -oZE +dJq adG adG adG adG adG adG -gUo -bka -tcn -fQW -fQW -wHt -wHt -wHt -xKb -sMU -wHt -ljA +qzz +teh +ejA +nvA +nvA +oZJ +oZJ +oZJ +hiZ +opF +oZJ +snj mwA -elG -rey +wql +tww awz awz -uuW -kjV -tFw -cDy -fwE +gpp +cIq +qHZ +aCN +qRl awz awz -oZL -eEW +ijM +bTD jHh -vWH +vSu wIC -vBd -odJ -pVd -uHw +nMT +lVC +kEL +uxW wIC -bts -hZb -oPw -hZb -gfV +yhK +xCu +tlC +xCu +dXC tuA tuA tuA tuA tuA tuA -mSj +pdc aaa aaa aaa @@ -83492,53 +83492,53 @@ aaa aaa aaa aaa -xzn -lZK -esJ -sqc -uiM -uiM -uiM -lZK -ifW -sqc -eUy -gFK -ngM +stv +oXC +hNO +gYc +ieY +ieY +ieY +oXC +kCP +gYc +fmY +gqT +hNV kcp -bGD -nqK -oot +qaE +tOL +lIf kcp kcp -dru -wvo -qwH -pFE -nde -pWm -qwH -fOE -dru -nfF -qwH -sng -czK -ree -qwH -nde -iLI -gsx -jBo -nDm -eVO -jBo -jBo -jBo -eVO -xWW -eVO -tvY +nEt +nZL +vRM +eXc +bxW +lVy +vRM +txo +nEt +vMF +vRM +vqd +jVS +vVp +vRM +bxW +oGd +wnO +uJp +rwx +leT +uJp +uJp +uJp +leT +kdM +leT +sSK aaa aaa aaa @@ -83591,59 +83591,59 @@ aaa aaa aaa aaa -oZE +dJq adG -fSJ -fSJ -icx -wxY +wOR +wOR +myZ +bZp akC akC akC akC -vZl -fQW -wHt -bsq -lEt -rQi -sPk -wHt -ktF +vmb +nvA +oZJ +muU +qnc +edn +aYG +oZJ +rpY wSR -iDS +fYw awz awz -tbQ -yey -yey -yey -yey -yey -dxO +dQO +rmV +rmV +rmV +rmV +rmV +gpx awz awz -qOb +xBr laO -dOQ +rBg wIC -nLe +wDO vAG -jck -oJL +oGk +mRq wIC -bts -lqU +yhK +rtW kCi kCi kCi kCi -cYm -rrR -efA -pBZ +ukp +nOy +nXl +fZy tuA -mSj +pdc aaa aaa aaa @@ -83695,16 +83695,16 @@ aaa aaa aaa aaa -fMo -uBe -cRx -cRx -cRx -cRx -cRx -cRx -cRx -cRx +ciW +fnB +kIU +kIU +kIU +kIU +kIU +kIU +kIU +kIU bcm bcm kcp @@ -83714,34 +83714,34 @@ kcp kcp kcp kcp -dru -vNY -prH -mbS -wbb -vNY -prH -vNY -dru -dru -dru -dru -dru -dru -dru -dru -dru -dru -jWw -jWw -sui -jWw -jWw -jWw -jWw -jWw -uTM -cEo +nEt +hQn +jPL +hgc +hqw +hQn +jPL +hQn +nEt +nEt +nEt +nEt +nEt +nEt +nEt +nEt +nEt +nEt +qvL +qvL +lZr +qvL +qvL +qvL +qvL +qvL +wYV +fwI aaa aaa aaa @@ -83794,59 +83794,59 @@ aaa aaa aaa aaa -oZE +dJq adG -lHO -fSJ -icx -biD -wvv +hsy +wOR +myZ +eaO +baU bbV bzz akC -mnH -fQW -wHt -rie -cue -wTF -xKU -wHt -qKH +doK +nvA +oZJ +dTY +fQZ +nNN +ryP +oZJ +cFj pEB -vWH +vSu qwp -tGE -dNH +oMW +bKN rHc xhZ xhZ xhZ rHc -jpM -tgM +oIS +eBo qwp -qKH +cFj jHh -vWH +vSu wIC wIC -ttv +rrN wIC wIC wIC -bts -sLn +yhK +iSC kCi -eOy -toX -apG -wpl -rrR -efA -lLU +cEQ +uHu +svO +lKZ +nOy +nXl +svi tuA -mSj +pdc aaa aaa aaa @@ -83898,53 +83898,53 @@ aaa aaa aaa aaa -fMo -epF -cRx -lng -dIY -paH -izO -eMO -yeG -cRx -mjx -aHz -teQ -skD -aln -wmi -ihT -orN -jmE -fSc +ciW +sCz +kIU +pvG +est +kof +kln +ncW +apw +kIU +pvp +eJJ +fyd +lbR +jtw +enm +dvC +pBe +vAu +jnr aYt btO btN -ihT +dvC aYt btO aYt -oQy -ihT -uLi -kEl -cPE -dOK -aln -lts -ihT -frR -jWw -pID -lpf -sMe -mca -nez -fvE -jWw -rCM -cEo +vQB +dvC +xKP +mQS +igY +fda +jtw +bGm +dvC +pJe +qvL +dnw +tZY +ufv +pNf +aYv +mFE +qvL +jsc +fwI aaa aaa aaa @@ -83997,59 +83997,59 @@ aaa aaa aaa aaa -oZE +dJq adG -fSJ -fSJ -icx -mZI -cSw +wOR +wOR +myZ +uiY +qXN adu aHZ akC -crF -fQW -wHt -oYj -ahK -qZo -lad -wHt -dgI +rDg +nvA +oZJ +qfp +dmY +ios +vfW +oZJ +umW wsD -vWH +vSu qwp -jAq -dNH +ptP +bKN iwW sTm oSq sTm tdT -jpM -kLU +oIS +reB qwp -oKs +fFI uwN -ldw +vIv wIC -plm +fdN aTg -lVh -fZG +hlP +uRl wIC -hZb -hZb +xCu +xCu kCi -loC +oGL qfa btD -lSW -rrR -efA -pBZ +hNv +nOy +nXl +fZy tuA -mSj +pdc aaa aaa aaa @@ -84101,16 +84101,16 @@ aaa aaa aaa aaa -sfO -xaj -sfO -gTh -szZ -tdX -szZ -vzN -xBq -kQs +kjd +dBF +kjd +hYx +dCG +oTt +dCG +lvp +lIX +jMu btO aYt bzQ @@ -84122,11 +84122,11 @@ bhT bKu btO aYt -nDI -joY -wxD -wxD -taW +sIm +dal +rer +rer +fkD bwn bVM bVM @@ -84138,16 +84138,16 @@ bVM bVM bwn bVM -rHX -oYr -gQM -ggr -uWK -ggr -dRM -ogU -lTx -pOW +dlH +srW +tmE +eSu +ycD +eSu +vza +ple +iMu +hyf aaa aaa aaa @@ -84200,51 +84200,51 @@ aaa aaa aaa aaa -oZE +dJq adG adG amz amz aly -vRU +hxO bbZ btv akC -hDb -fQW -wHt -wHt -hgQ -qZo -cHs -wHt -bam +pid +nvA +oZJ +oZJ +mqh +ios +jZl +oZJ +why wsD -vWH +vSu qwp -oHr -dNH +qHR +bKN iwW sTm gwR sTm tdT -jpM -sCP +oIS +pKB qwp -vAN +pls uwN -vWH +vSu wIC lcW aTg wIC wIC wIC -hZb -gZN +xCu +iAX kCi -jwo +llc ssZ btD awC @@ -84252,7 +84252,7 @@ uMj uMj tuA tuA -mSj +pdc aaa aaa aaa @@ -84304,16 +84304,16 @@ aaa aaa aaa aaa -sfO -xaj -sfO -kSI -xBq -tUm -dQA -xQQ -usV -kQs +kjd +dBF +kjd +iEL +lIX +ymb +kKs +tHT +jql +jMu btO aYt aYt @@ -84325,11 +84325,11 @@ bhU bjR aYt aYt -nDI +sIm bHB -ihT +dvC btO -frj +kpv aYt aYt aYt @@ -84341,16 +84341,16 @@ aYt aYt aYt btO -nKv -aPT -shx -gNP -uDs -pyf -hOB -pOW -jpA -pOW +oHm +tea +cxz +fPk +nyg +mse +aXG +hyf +hQs +hyf aaa aaa aaa @@ -84403,59 +84403,59 @@ aaa aaa aaa aaa -oZE +dJq aeE -wsX -xRt -uzZ -uzZ -mWH +lqh +cPu +kNo +kNo +vLk adu aHZ akC -kiH -hDP -snj -wHt -bYd -uAN -uwo -wHt -qme +naP +iAf +nKA +oZJ +uyQ +mxR +iQA +oZJ +ivC pEB -vWH +vSu awz -ewE -mke +pOs +lgO mWV jZu sco fqO lIp -lZH -rXm +wIB +ldg awz -oOW +oBG jHh -wyu +hEU wIC -eAS +cQV aTg -olq +siC wIC -kUd -hZb -hZb +lgM +xCu +xCu kCi -yiA +oiM btD btD -qpc -qpc -iJo -kMt +saP +saP +nse +jKO pun -mSj +pdc aaa aaa aaa @@ -84507,53 +84507,53 @@ aaa aaa aaa aaa -sfO -xaj -sfO -kSI -xBq -xBq -xBq -rLH -otd -kQs +kjd +dBF +kjd +iEL +lIX +lIX +lIX +iLA +tSV +jMu btO -sDR -sDR -sDR -sDR -sDR -sDR -sDR -sDR -sDR -sDR -glG +fkN +fkN +fkN +fkN +fkN +fkN +fkN +fkN +fkN +fkN +iLG bHB -ihT +dvC btO -gdH -sDR -sDR -sDR -sDR -sDR -sDR -sDR -sDR -sDR -sDR +ddo +fkN +fkN +fkN +fkN +fkN +fkN +fkN +fkN +fkN +fkN btO -nKv -enG -xfl -pyf -pyf -pyf -hOB -pOW -jpA -pOW +oHm +yfM +xeU +mse +mse +mse +aXG +hyf +hQs +hyf aaa aaa aaa @@ -84606,59 +84606,59 @@ aaa aaa aaa aaa -oZE +dJq aeE -cLg -fpx +vrh +ifQ adu adu adu adu aHZ akC -iuI -tyG -iuI -wHt -kEw -ezF -sKD -wHt -uaS +gjV +lHg +gjV +oZJ +izC +nRa +vZP +oZJ +map pEB -vWH +vSu qwp -gbD -dNH +jMp +bKN iwW dCr gwR sTm tdT -jpM -nsX +oIS +aBT qwp -hDH +kJq laO -jnL +jKx wIC yeR aTg -wsW +cVz wIC -cPF -phF -cPF +uqx +rmY +uqx kCi -myf +uUc btD btD btD btD -aGf -hac +rYb +gWr pun -mSj +pdc aaa aaa aaa @@ -84710,16 +84710,16 @@ aaa aaa aaa aaa -sfO -xaj -sfO -ebR -sSf -lqb -knC -bKw -mjk -enH +kjd +dBF +kjd +fxV +mgb +xXG +xsp +cwW +pGI +ftd bvf bdL bvf @@ -84733,7 +84733,7 @@ bvf bvf bvf bIe -khQ +hBB bvf bvf bvf @@ -84747,16 +84747,16 @@ bvf bvf bdL bvf -nEm -xmM -aSR -iok -tgl -xQs -vvF -pOW -jpA -pOW +cUO +trY +xQf +qda +vPp +oIL +ijC +hyf +hQs +hyf aaa aaa aaa @@ -84809,59 +84809,59 @@ aaa aaa aaa aaa -oZE +dJq aeE -drE -jmf -jXc -jXc -cSw +mcD +htf +sfP +sfP +qXN adu hxG akC -mxm -opO -moo -wHt -wHt -wHt -wHt -wHt -edQ +fPf +oma +epZ +oZJ +oZJ +oZJ +oZJ +oZJ +hLg pEB -vWH +vSu qwp -gbc -dNH +uZu +bKN iwW dCr oSq sTm tdT -jpM -nsX +oIS +aBT qwp -qKH +cFj jHh -pSo +jbe wIC wIC wIC wIC wIC -xlf -qaI -laN +wEG +ezN +mQa kCi -obL +dkk vqC btD -oEb -oEb -pYT -pRC +sTY +sTY +iKE +qtY pun -mSj +pdc aaa aaa aaa @@ -84913,53 +84913,53 @@ aaa aaa aaa aaa -fMo -fIs -cRx -oNK -dIY -lmr -kzc -eMO -dIY -cRx -xEI +ciW +xKd +kIU +jAL +est +xCQ +jSi +ncW +est +kIU +kkr bHB -ihT -ihT -ihT -jbN -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -omK -ihT -ihT -ihT +dvC +dvC +dvC +rvF +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +vHg +dvC +dvC +dvC bHB -uUY -jWw -uBh -cAk -iRE -slj -nez -fvE -jWw -fEj -cEo +gmr +qvL +dBe +isJ +iQM +twI +aYv +mFE +qvL +izn +fwI aaa aaa aaa @@ -85012,50 +85012,50 @@ aaa aaa aaa aaa -oZE +dJq adG adG amz amz aly -nAt +hiV adu cqQ -hxT -nVr -dCO -wkD -cMz +fwE +xeZ +hQM +eWd +rDF hiM hiM -cby -rgx -mzA +wWW +dtK +brK wsD -vWH +vSu qwp -lfP -dNH +fgc +bKN rHc lAy wjq wjq rHc -jpM -nsX +oIS +aBT qwp -oKs +fFI uwN -byS -rgx -xWy +fmj +dtK +uQM hXm fZq -oiK -hXB -vWC -vWC -pyz +nAm +jer +lKS +lKS +lrl bqT vZv vjK @@ -85064,7 +85064,7 @@ uMj uMj tuA tuA -mSj +pdc aaa aaa aaa @@ -85116,19 +85116,19 @@ aaa aaa aaa aaa -fMo -uBe -cRx -cRx -cRx -cRx -cRx -cRx -wmG -qVN -ihT +ciW +fnB +kIU +kIU +kIU +kIU +kIU +kIU +eQr +xZy +dvC bHB -ihT +dvC aYt aYt aYt @@ -85150,19 +85150,19 @@ btO dTI btO aYt -ihT +dvC bHB -ihT +dvC bcm -mJT -mJT -mJT -mJT -mJT -mJT -mJT -wzS -cEo +oPR +oPR +oPR +oPR +oPR +oPR +oPR +pAg +fwI aaa aaa aaa @@ -85215,59 +85215,59 @@ aaa aaa aaa aaa -oZE +dJq adG -fSJ -fSJ -icx -wxY -mWH +wOR +wOR +myZ +bZp +vLk adu -gbG +mfG akC -nQp -moo -msy -kJT +qlU +epZ +iWu +vBh vka vka mPj mIy eEw rTk -dOQ +rBg awz awz -imE -qgy -kHR -qgy -qgy -qgy -hLP +uHG +sTI +cCS +sTI +sTI +sTI +lmd awz awz -oKS +rRe mPj rWs -ema +jXj ewr lPC mgy -wJz -bRt -eTt -gwN +iyU +ptN +fbV +vFi kCi -myf +uUc btM vjK -rKS -rrR -efA -pBZ +imP +nOy +nXl +fZy tuA -mSj +pdc aaa aaa aaa @@ -85319,21 +85319,21 @@ aaa aaa aaa aaa -mIj -vCn -hCv -tuO -wkQ -qCI -ykv -qPt -sRt -cDa -ihT +cNs +sYc +nbn +hOs +uKn +jpB +uSl +mzN +grk +jzr +dvC bHB -gOm -sDR -kUX +tQb +fkN +fVo aYt bfJ btO @@ -85351,21 +85351,21 @@ btO aYt bBN bcm -epb -sDR -vtq +xea +fkN +pFh bHB btO bcm -lrz -rej -liH -lxn -dbD -ifA -mJT -tRU -fzM +ryT +ylL +lNt +gUx +ilN +uNC +oPR +nUh +rGQ aaa aaa aaa @@ -85418,59 +85418,59 @@ aaa aaa aaa aaa -oZE +dJq adG -lHO -fSJ -icx -biD -rZo -ebe -rXH +hsy +wOR +myZ +eaO +qRU +dZg +kwF akC akC -kJT -wBq -vKn -vKn -htf -eEW +vBh +wtP +lVP +lVP +tlT +bTD jHh vka -elG -gqp -hWQ +wql +qOO +iNc qwp -rnU -hdt +iOS +xLf aAq -lXC +qMK mGe -kXl -coH +mSb +exh qwp -uZI -lyf -eEW +uuT +iUr +bTD vka jHh -elG -kIg -tuy -tuy -tsT -txh -tuy +wql +wOy +wXb +wXb +mPC +hIy +wXb kCi -xvC -sGV -apG -cBV -rrR -efA -lLU +cBf +dJg +svO +hOw +nOy +nXl +svi tuA -mSj +pdc aaa aaa aaa @@ -85522,21 +85522,21 @@ aaa aaa aaa aaa -mIj -jCS -hCv -urn -lQJ -xxt -uMo -wPc -sPZ -imA -ihT +cNs +qka +nbn +dAT +mtk +qBO +xYC +uQA +gHz +mIf +dvC bHB -nDI -ihT -frj +sIm +dvC +kpv aYt bfK aYt @@ -85554,21 +85554,21 @@ aYt aYt btO sEq -nDI -ihT -frj +sIm +dvC +kpv bHB aYt bcm -vuY -liH -liH -liH -liH -liH -nAP -jey -fzM +olg +lNt +lNt +lNt +lNt +lNt +oJl +nds +rGQ aaa aaa aaa @@ -85621,59 +85621,59 @@ aaa aaa aaa aaa -oZE +dJq adG -fSJ -fSJ -icx -mZI +wOR +wOR +myZ +uiY akC akC akC akC -cKH -moo -msy -bku -vKn -vKn -oKS +bSc +epZ +iWu +vcO +lVP +lVP +rRe jHh -elG -aHH +wql +iMz awz awz awz jKF awz -pzU +fmM awz -wKr +hjl awz jKF awz awz awz -uPu -eEW +ksJ +bTD jHh -vWH -tuy -tuy -xlf -bRt -eTt -ljz +vSu +wXb +wXb +wEG +ptN +fbV +tZX kCi kCi kCi kCi -lSW -rrR -efA -pBZ +hNv +nOy +nXl +fZy tuA -mSj +pdc aaa aaa aaa @@ -85725,53 +85725,53 @@ aaa aaa aaa aaa -mIj -quj -oKM -dHz -dHz -dHz -dHz -tTA -fvW -imA -ihT +cNs +wic +wzd +rQR +rQR +rQR +rQR +nUC +wjr +mIf +dvC bHB -rBL -nTv -uqb -mcy -uVw -nTv -uOq -mcy -uVw -nTv -uOq -mcy -uVw -nTv -uOq -mcy -uVw -nTv -uOq -mcy -oUE -nTv -kyL +pJy +gOl +qpm +vKW +qRP +gOl +fin +vKW +qRP +gOl +fin +vKW +qRP +gOl +fin +vKW +qRP +gOl +fin +vKW +uHX +gOl +jwL bHB bBN bcm -ffS -liH -liH -liH -liH -ppR -mJT -ozL -fzM +rLt +lNt +lNt +lNt +lNt +lnV +oPR +uCj +rGQ aaa aaa aaa @@ -85824,59 +85824,59 @@ aaa aaa aaa aaa -oZE +dJq adG adG adG adG adG adG -qbe -moo -kqu -moo -moo -msy -bku -cRT -vKn -qme +rQM +epZ +mWM +epZ +epZ +iWu +vcO +jlM +lVP +ivC uwN -iPK +jCt awz awz awz awz -dlM -gLX -aHf +jfx +deo +jQp gAl -weT -dmB -jxy +sFO +fsb +aJx awz awz awz awz -awo +ofU uwN -vWH -tuy -vmL -xlf -quw -gId -bNV -mki -eTt -viK +vSu +wXb +wOU +wEG +mky +kjx +jdc +rxd +fbV +mRw tuA tuA tuA tuA tuA tuA -mSj +pdc aaa aaa aaa @@ -85928,19 +85928,19 @@ aaa aaa aaa aaa -mIj -quj -oKM -fcD -hEk -slW -dHz -fPL -oWu -imA -ihT +cNs +wic +wzd +iqs +mva +kcd +rQR +hMw +puz +mIf +dvC bHB -jOn +lqD baI baI baI @@ -85962,19 +85962,19 @@ baI baI baI baI -siv +caJ bHB aYt bcm -eoU -liH -mlA -dcf -hyW -hlE -mJT -eeb -fzM +tyh +lNt +pAL +mfs +reE +hKS +oPR +cnK +rGQ aaa aaa aaa @@ -86027,59 +86027,59 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag -moi -moo -rEQ -fNV -oVm -oVm -eAF -moo -pwl -vKn -dKt -jwp +ekQ +epZ +oRt +mJJ +nak +nak +wZZ +epZ +hRJ +lVP +mHF +swq awz awz -dGj -gBn +sNs +vAm awz -xQL -dmB -pvf +paB +fsb +lSE vIu -odq -dmB -hYQ +tfB +fsb +xuk awz -eys -myI +aQD +rXP awz ceE -oWC -wln -tuy -vHQ -qaI -rVn -qaI -quw -pDk -tKt -rud -aKt +nrH +ihu +wXb +hkS +ezN +gSN +ezN +mky +uxb +uDT +tUL +uJW aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -86131,19 +86131,19 @@ aaa aaa aaa aaa -mIj -quj -oKM -mWZ -iXO -fse -dHz -svY -svY -oua -cNo +cNs +wic +wzd +xvv +qWd +fXQ +rQR +fFx +fFx +wJp +fpc bHB -rAk +pTx baI baI baI @@ -86165,19 +86165,19 @@ baI baI baI baI -drX +aUW bHB btO bcm -piy -liH -liH -liH -liH -liH -mJT -jey -fzM +nZX +lNt +lNt +lNt +lNt +lNt +oPR +nds +rGQ aaa aaa aaa @@ -86230,15 +86230,15 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag -moi -pTA -nSL +ekQ +ybp +mhN kcH kcH kcH @@ -86246,27 +86246,27 @@ kcH kcH kcH kcH -oeE +kjH qnh -weT +sFO awz -bkM -bkM +jHd +jHd awz xTR awz -dZV +utg awz -upH +tYp awz xTR awz -bkM -bkM +jHd +jHd awz -cbJ +dhS qnh -feN +pLE mKq dHZ dHZ @@ -86274,15 +86274,15 @@ aES aES aES aES -quw -tKt -aKt +mky +uDT +uJW aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -86334,19 +86334,19 @@ aaa aaa aaa aaa -mIj -bmU -oKM -hQp -iXO -iXO -dkK -iXO -iXO -nDf -ihT +cNs +xaV +wzd +wPb +qWd +qWd +uQR +qWd +qWd +wtN +dvC bHB -err +dSq baI baI baI @@ -86368,19 +86368,19 @@ baI baI baI baI -gys +nSt bHB btO bcm -xFO -goe -krE -liH -liH -liH -mJT -jey -fzM +kgB +mzA +qoi +lNt +lNt +lNt +oPR +nds +rGQ aaa aaa aaa @@ -86433,59 +86433,59 @@ aaa aaa aaa aaa -oZE +dJq aag aag -moi -moi -moi -moi -msy -moo +ekQ +ekQ +ekQ +ekQ +iWu +epZ kcH kcH kcH kcH -kOh +cFL eqN -wrU +qQE aKa qnh -gwT -kqF -fqK -fqK -npy -fqK -iqw +uMG +dip +kjy +kjy +tRL +kjy +sEL qnh -npy +tRL aKa -iqw -fqK -npy -fqK -fqK -lSZ -cQM +sEL +kjy +tRL +kjy +kjy +vEd +jKW qnh aKa -ssk +sWH aGr eDu -rdQ -dxe -xqJ +kFK +qKY +cQU aES -xlf -bRt -aKt -aKt -aKt -aKt +wEG +ptN +uJW +uJW +uJW +uJW aag aag -mSj +pdc aaa aaa aaa @@ -86537,19 +86537,19 @@ aaa aaa aaa aaa -mIj -quj -oKM -lJp -iXO -lpW -fus -hMP -iUr -dlR -ihT +cNs +wic +wzd +sBx +qWd +eWv +vEu +oLc +pVx +swf +dvC bHB -ggp +rYz baI baI baI @@ -86571,19 +86571,19 @@ baI baI baI baI -tzM +xyf bHB -ihT +dvC bcm -gbZ -liH -liH -liH -liH -qrK -mJT -yhk -fzM +oym +lNt +lNt +lNt +lNt +hQC +oPR +dSd +rGQ aaa aaa aaa @@ -86636,59 +86636,59 @@ bdH bdH aaa aaa -oZE +dJq aag aag -moi -pHw -jLH -qbe -msy -moo +ekQ +fVp +vFG +rQM +iWu +epZ kcH -tvK -ktR +gcC +cYm eYQ eqN dmA hyQ -fSX -eoO -lhH -sKy +rlU +bdZ +gcI +eRs miE dCK -oZi -jDB -jDB -jJZ -rcm -sns -nxL -nxL -sKy +iob +uxB +uxB +pBd +dkB +xIR +iIc +iIc +eRs fYf uCW -dhx -lhH -uEZ -bpP -rsg -vZE -wXA +fXP +gcI +ocr +qrb +ory +jxa +uea iTD vCO vCO jxB -xlf -bRt -xlf -xlf -xlf -aKt +wEG +ptN +wEG +wEG +wEG +uJW aag aag -mSj +pdc aaa aaa aaa @@ -86740,19 +86740,19 @@ aaa aaa aaa aaa -mIj -lhy -oKM -oKM -lYt -oKM -oKM -hCv -hCv -hCv -ihT +cNs +tuF +wzd +wzd +tjx +wzd +wzd +nbn +nbn +nbn +dvC bHB -jOn +lqD baI baI baI @@ -86774,19 +86774,19 @@ baI baI baI baI -siv +caJ bHB -tQI -mJT -mJT -liH -vPN -oBv -liH -hlE -mJT -yhk -fzM +lvW +oPR +oPR +lNt +oFQ +dcw +lNt +hKS +oPR +dSd +rGQ aaa aaa aaa @@ -86839,29 +86839,29 @@ bdH bdH aaa aaa -oZE +dJq aag aag -moi -oAY -lgW -oVm -suu -vdv +ekQ +jSZ +mGr +nak +oHa +iPi kcH -uNb +eIt nPs vEj nPs rJD hyQ -cHx -gKj +kBI +eeh wVW -erg +ixr azL -fUW -sDp +wOl +oOg wVW wVW wVW @@ -86869,13 +86869,13 @@ wVW wVW wVW wVW -syS -pzq +jSW +rGS gII -leC +jIW wVW -mJX -nRY +qlN +fUI mKq qCy rpp @@ -86883,15 +86883,15 @@ vCO vCO vCO jxB -nGD -wWd -kUy -dxw -wld -aKt +uwL +uqu +yaP +jSM +snQ +uJW aag aag -mSj +pdc aaa aaa aaa @@ -86943,19 +86943,19 @@ aaa aaa aaa aaa -mIj -jVe -hCv -unB -quj -iem -gCR -uXZ -inB -hCv -kky +cNs +xPp +nbn +szN +wic +gqH +wNG +maj +rjN +nbn +wLp bHB -rAk +pTx baI baI baI @@ -86977,19 +86977,19 @@ baI baI baI baI -drX +aUW bHB -dBD -mnK -tEa -tzB -jum -mye -liH -jvK -mJT -yhk -fzM +kfm +ctr +cDk +iOW +wDt +sHE +lNt +lse +oPR +dSd +rGQ aaa aaa aaa @@ -87042,59 +87042,59 @@ bdH bdH aaa aaa -oZE +dJq aag aag -moi -rEQ -fka -moo -moo -dUA +ekQ +oRt +xtI +epZ +epZ +lnq kcH -eEE -cPs -wDw +vKn +hZp +scX yiX -wxl +ujs hyQ -lgF -kst +unz +jHS wVW wVW -roq +fNU wVW wVW wVW -osd -fvn +qnH +juc wVW -wsT -unY +wIL +pFX wVW wVW wVW -hGt +lUk wVW wVW -rET -ojB +dMc +buT pQy -sMv -rOF -hxo -sMv -rOF +pSH +vmI +qEu +pSH +vmI jxB -kER -okf -iNb -bRt -xlf -aKt +jTd +qhX +dLs +ptN +wEG +uJW aag aag -mSj +pdc aaa aaa aaa @@ -87146,19 +87146,19 @@ aaa aaa aaa aaa -mIj -lhy -hoY -quj -lhy -tpA -lhy -quj -lhy -iiK -nDI +cNs +tuF +gjz +wic +tuF +txK +tuF +wic +tuF +rgZ +sIm bHB -err +dSq baI baI baI @@ -87180,19 +87180,19 @@ baI baI baI baI -gys +nSt bHB -ezO -mnK -uVt -qZC -liH -liH -liH -bVu -cKD -lbM -fzM +bKP +ctr +vHj +jNv +lNt +lNt +lNt +iRj +oTT +qto +rGQ aaa aaa aaa @@ -87245,43 +87245,43 @@ aaa aaa aaa aaa -oZE -moi -moi -moi -vRw -moo -moo +dJq +ekQ +ekQ +ekQ +jUw +epZ +epZ agj agj agj agj agj agj -uhW -uhW +fSz +fSz agj -uLL -kst +hio +jHS wVW -xdK -fLx +fFW +wrE wVW -tVK -qAB -fxV -cpZ -fzh -tBM -jqT -dyO -weH +pme +eaG +iAm +gxX +hMm +phX +und +oGZ +gGN wVW -vcm -vLW +gAD +rqr wVW -rET -qGL +dMc +tEL mKq aES aES @@ -87291,13 +87291,13 @@ aES aES aES aES -vZR -eWJ -xlf -aKt -aKt -aKt -mSj +uAz +jua +wEG +uJW +uJW +uJW +pdc aaa aaa aaa @@ -87346,22 +87346,22 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -mIj -quj -hCv -nQU -quj -mhJ -sZZ -inB -gCR -hCv -pFh +qDX +vlu +vlu +cNs +wic +nbn +xrB +wic +ucO +rTc +rjN +wNG +nbn +aXv bHB -ggp +rYz baI baI baI @@ -87383,22 +87383,22 @@ baI baI baI baI -tzM +xyf bHB -lqy -mnK -uVt -qZC -icY -liH -hwB -ppR -mJT -jey -fzM -vHZ -vHZ -psN +egW +ctr +vHj +jNv +sNd +lNt +yfD +lnV +oPR +nds +rGQ +vlu +vlu +ckx aaa aaa aaa @@ -87448,59 +87448,59 @@ aaa aaa aaa aaa -oZE -rHV -cjM -wLj -vyS -moo +dJq +bow +ucN +sNu +wmL +epZ agj agj -rhF -mTc -dpq -qvx -bIF -uhW -xrt -fkS -lgF -kst +rWo +ioo +qCI +lIr +wQF +fSz +dKg +fAE +unz +jHS wVW -rJn +rzg alX auQ -wSZ -xse -jpc -hcH -xdY -tui -wkd -vst -mxn +mUc +vCv +lxS +gxy +xXq +tXB +xDB +eCR +lsJ auQ aIf -oxD +uIK wVW -rET -dfA +dMc +fNj mKq -dSb -srk -uuC -aUU -ibN -hfl -uuC +lYb +eUg +cZY +xIM +msf +eQL +cZY aES aES -iOT -xlf -bdR -aNL -cOF -mSj +bwM +wEG +nSF +iix +rNv +pdc aaa aaa aaa @@ -87549,22 +87549,22 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -mIj -quj -hCv -hCv -she -hCv -hCv -hCv -hCv -hCv -snZ +cNs +cNs +wic +nbn +nbn +jwF +nbn +nbn +nbn +nbn +nbn +hiA bHB -jOn +lqD baI baI baI @@ -87586,22 +87586,22 @@ baI baI baI baI -siv +caJ bHB iAw -mJT -mJT -liH -liH -liH -uAh -hlE -mJT -fhl -fzM -fzM +oPR +oPR +lNt +lNt +lNt +eLn +hKS +oPR +fue +rGQ +rGQ aag -mSj +pdc aaa aaa aaa @@ -87651,59 +87651,59 @@ aaa aaa aaa aaa -oZE -rHV -xXo -vjH -xHL -moo +dJq +bow +oYc +ueX +tJk +epZ agj -wEY +gqz agc -qfD +mtH agc -kJm -pPQ -uhW -jud -fkS -lgF -kst +qFm +oVC +fSz +eFS +fAE +unz +jHS wVW -xpQ +fTP alX lQG -mDe -vqy -pkd +kxR +uit +hjT aBR -kJg +eqq bZJ -oUT -pTz -fTe +nFO +fQg +roc lQG aIf -emS +yjN wVW -iLt +vTq amY -fvV -nIs +wxa +tbH aWV aZy -aUU +xIM aES -hRl -pFF -jrW +pyX +qMG +hVA aES -sHI -xlf -xlf -osv -cOF -mSj +sFe +wEG +wEG +hoq +rNv +pdc aaa aaa aaa @@ -87752,22 +87752,22 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -lhy -quj -hCv -fEv -pUm -oSu -hUF -qpe -vIG -nAz -axS +cNs +tuF +wic +nbn +vbj +vle +lWy +eIr +qER +xhF +qlR +ykn bHB -rAk +pTx baI baI baI @@ -87789,22 +87789,22 @@ baI baI baI baI -drX +aUW bHB btO xjW -aUB -liH -liH -liH -iyt -liH -mJT -uyI -smD -fzM +pjO +lNt +lNt +lNt +pwB +lNt +oPR +eUT +sus +rGQ aag -mSj +pdc aaa aaa aaa @@ -87854,59 +87854,59 @@ aaa aaa aaa aaa -oZE -rHV -dPa -qEC -vzw -oQa +dJq +bow +prf +uXd +sxJ +twO agj -tFj -aVO +mGE +cwl agc agc -kJm -gzj -uhW -uiF -fkS -lgF +qFm +nAd +fSz +hAv +fAE +unz aKq -efl +jzF alX alX avY alX alX alX -lBA -ilL -wcB +bvo +lis +mbv alX alX alX avY aIf alX -qMU +tCu aKq -ojB +buT mKq -ueu +nyY aWW aGr -opc +wil aES aES aES aES aES -poI -uUA -qcz -pOg -cOF -mSj +xIs +fmu +mRg +suW +rNv +pdc aaa aaa aaa @@ -87955,22 +87955,22 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -lhy -quj -hCv -wyl -vAj -gBl -rPZ -vYD -rcA -nAz -tsh +cNs +tuF +wic +nbn +mUS +dDK +aFs +xqs +rNw +bzq +qlR +wsa bHB -err +dSq baI baI baI @@ -87992,22 +87992,22 @@ baI baI baI baI -gys +nSt bHB btO bcm -tiX -liH -liH -ugf -liH -lVa -mJT -jey -aFM -fzM +mSd +lNt +lNt +oRa +lNt +agt +oPR +nds +vUX +rGQ aag -mSj +pdc aaa aaa aaa @@ -88057,59 +88057,59 @@ aaa aaa aaa aaa -oZE -moi -mhA -moo -moo -hga +dJq +ekQ +rfS +epZ +epZ +lyx agj -wgm -tYM -mqb -kDK -jMx +vAM +mOT +cHa +pJg +sHZ mXj -uhW -uhW +fSz +fSz agj -lgF +unz aKq -rNw +xwx alX alX -cnf +wZS avY alX alX -qjc -tLe +mUo +lKX mJu alX alX avY -cnf +wZS aIf alX -rNw +xwx aKq -ojB +buT mKq -aUU -ewt -hLV -aUU -ibN -hfl -uuC -gny +xIM +bOy +oJZ +xIM +msf +eQL +cZY +iQB aES -dfe -bRt -idk -wld -aKt -mSj +cRd +ptN +xEG +snQ +uJW +pdc aaa aaa aaa @@ -88158,59 +88158,59 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -oIN -tZw -hCv -okN -fBs -fhJ -xru -rPZ -nPW -nAz -hOO +cNs +gAH +dIA +nbn +mrN +kbL +oSk +jAh +xqs +eUQ +qlR +mmb bHB btO -fbg -tsV -fbg -twx -skm -fXI -fbg -twx -skm -fXI -fbg -twx -skm -naJ -naJ -naJ -vXz -ouX -fYR -jzG -skm -vtq +mWq +kPN +mWq +ylR +tnP +nTn +mWq +ylR +tnP +nTn +mWq +ylR +tnP +tbb +tbb +tbb +jgz +jwC +nfi +xrf +tnP +pFh bHB aYt bcm -ebb -liH -liH -liH -liH -wiw -mJT -jey -sgD -fzM +vLp +lNt +lNt +lNt +lNt +cqy +oPR +nds +lwF +rGQ aag -mSj +pdc aaa aaa aaa @@ -88260,59 +88260,59 @@ aaa bdH aaa aaa -oZE -rHV -egd -moo -fED -fyS +dJq +bow +eWH +epZ +piC +kGC agj -mdG +xUW hvH -bVs +rua hvH hvH -rAn -xXQ -kWh +jEv +fRv +pao agj -cWn -kst +grC +jHS wVW -pWw -cAW -cAW -cAW -kzE -cnf -glh -rio -krz -cnf -seE -cAW -cAW -sJn -nkI +vzv +tsl +tsl +tsl +veF +wZS +xwF +hVV +ovm +wZS +iGa +tsl +tsl +nLm +keG wVW -vPf -ojB +ayA +buT mKq -rgw +nMJ vWA cqY -aUU +xIM aES -hRl -pFF -eiz +pyX +qMG +oUn aES -fWl -bRt -hMJ -qaI -cOF -mSj +pmI +ptN +tLr +ezN +rNv +pdc aaa aaa aaa @@ -88361,59 +88361,59 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -lhy -dAi -hCv -hde -rPZ -evE -eKZ -lNc -ouA -nAz -iiJ +cNs +tuF +hAN +nbn +iqw +xqs +kNr +lfo +gfI +elc +qlR +oRP bHB -ihT +dvC puI aYt aYt aYt puI aYt -jqs -efn -jqs -efn -seS +bam +hXA +bam +hXA +jtc api aYt -lIr -mfr +sPG +uPx lcV lcV hWq -cNh -kPQ -ihT -frj +rKS +oag +dvC +kpv bHB -ihT +dvC bcm -vlW -liH -liH -eyO -liH -hlE -mJT -yhk -kGl -fzM +eYi +lNt +lNt +sHK +lNt +hKS +oPR +dSd +ujj +rGQ aag -mSj +pdc aaa aaa aaa @@ -88463,59 +88463,59 @@ aaa bdH aaa aaa -oZE -rHV -mwz -moo -igB -msy +dJq +bow +jwZ +epZ +bXN +iWu agj -dyj -fnv -bVs -wlg -vLN +cwT +qhN +rua +dRR +foD mXj -mCQ -kJW +jCn +qSo agj -lgF -myA +unz +gzv wVW -gPi -oqy -cnf +hAD +jVB +wZS alX -wpc +oOb abk -pUb -tUq -gVp +dRz +cvs +cUJ avY -xBc +xWm alX alX mPn -vUy +seI wVW -nVV -ojB +xQx +buT mKq -aUU +xIM gUL hHl -opc +wil aES aES aES aES aES -vPq -eWJ -efR -qaI -cOF -mSj +rRj +jua +vWW +ezN +rNv +pdc aaa aaa aaa @@ -88564,33 +88564,33 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -lhy -ijK -hCv -rTI -mDm -mDm -iRl -xEa -gik -ozJ -nDI +cNs +tuF +mfP +nbn +ttG +vAp +vAp +kWh +fNy +qSj +fKy +sIm bHB -eee +xDP eXq aho aho aho eXq kqv -jqs -egf -jqs -efn -jqs +bam +ebL +bam +hXA +bam fgE btO btO @@ -88599,24 +88599,24 @@ btO btO neE mNm -xCJ -aYl -kyL +xso +qfW +jwL bHB -eee +xDP bcm -vZn -liH -mbA -liH -liH -oNO -mJT -yhk -kgf -fzM +riZ +lNt +fME +lNt +lNt +amt +oPR +dSd +ljy +rGQ aag -mSj +pdc aaa aaa aaa @@ -88666,59 +88666,59 @@ aaa bdH aaa aaa -oZE -rHV -bZI -moo -hhi -suQ +dJq +bow +sgn +epZ +tAH +iTg agj mXj mXj -aDc +rYT mXj mXj mXj mXj mXj agj -lgF -kst +unz +jHS wVW -ydf -ikz -tFa -tOt -wpc +xnk +yix +fQe +nxs +oOb azW -cnf -bDq -ruw +wZS +pol +jiD bPs -jop -xtC -cqE -ktG -rTz +jST +hHN +gAo +oCG +iHt wVW -rET -ojB +dMc +buT mKq -aUU -eSd -pez -aUU -ibN -hfl -uuC -pFF +xIM +sdB +dDJ +xIM +msf +eQL +cZY +qMG aES -gck -bRt -eHZ -qaI -cOF -mSj +jRm +ptN +dlT +ezN +rNv +pdc aaa aaa aaa @@ -88767,59 +88767,59 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -quj -qfT -hCv -myY -wxG -wCk -rPZ -xEa -gik -ozJ -nDI +cNs +wic +sau +nbn +gEi +vls +wfl +xqs +fNy +qSj +fKy +sIm bHB -ihT +dvC aho -hjz -mAC -niU +kae +oMF +cPL aho aYt -jqs -efn -jqs -efn -jqs +bam +hXA +bam +hXA +bam fNi aYt -ihT -jfh +dvC +kTO hYG aYt gGs aYt aYt aYt -isF +djW bHB -ihT +dvC bcm -tKW -liH -gNG -liH -liH -aUB -mJT -yhk -kgf -fzM +spr +lNt +ltk +lNt +lNt +pjO +oPR +dSd +ljy +rGQ aag -mSj +pdc aaa aaa aaa @@ -88869,59 +88869,59 @@ bdH aaa aaa aaa -oZE -moi -fei -hPy -qDY -msy +dJq +ekQ +oyt +vNN +moA +iWu agj mXj -pjR -jND -aKk -aKk -fRi -faE +qpq +oON +tVo +tVo +cif +vXM mXj agj -raX -kst +pnc +jHS wVW wVW wVW wVW wVW -dWc -sAB -hfz -ufz -eAK -vcm -ozy +elY +wHi +rKX +qjq +tYo +gAD +pwk wVW wVW wVW wVW wVW -rET -ojB +dMc +buT mKq -aUU -ewt -hLV -aUU +xIM +bOy +oJZ +xIM aES -iBP -qlr -hRl +nXg +rgV +pyX aES -dpl -bRt -bVt -ptH -aKt -mSj +qzZ +ptN +xYX +bSS +uJW +pdc aaa aaa aaa @@ -88970,59 +88970,59 @@ aaa aaa aaa aaa -oZE +dJq aag -mIj -uOz -lhy -hCv -ygG -oQV -xAb -rPZ -xEa -gik -ozJ -nDI +cNs +fyh +tuF +nbn +pzy +ikE +pwV +xqs +fNy +qSj +fKy +sIm bHB -pFc +rjZ eXq -cLU -gUE -ecm +hxw +qMU +gbi eXq vvp -jKM -hfv -xxz -efn -jqs -wsx +dnT +cam +jlY +hXA +bam +quG fTm -cwF -jfh +xBa +kTO hYG hYG aYt aYt gCw boV -ihT +dvC bHB aYt bcm -pCb -liH -jVD -jTh -lPq -jvK -mJT -yhk -evu -fzM +ybE +lNt +rUV +ajo +fiA +lse +oPR +dSd +ese +rGQ aag -mSj +pdc aaa aaa aaa @@ -89072,59 +89072,59 @@ bdH aaa bdH aaa -oZE -rHV -oNX -moo -rkr -lZj +dJq +bow +cMv +epZ +iYl +nnA agj -qlI -cdB -xjt -coD +lJo +akr +prW +jQD agc -ako -tYM -qcq +eon +mOT +nOL agj -lgF -cxW +unz +xNc wVW -lhR -mfC -fZA +mtT +aiu +sFz wVW -fPO +gij avY avY -jPK +mdP avY wlE -iAV +rit wVW -liS -jbL -gen +rIl +pKK +pHi wVW -eCL -ojB +hfz +buT mKq -aUU -kHN -jCG -opc +xIM +uhF +ppF +wil aES aES aES aES aES -vQJ -bRt -gth -evD -cOF -mSj +hmd +ptN +cjt +eEG +rNv +pdc aaa aaa bdH @@ -89171,46 +89171,46 @@ aaa aaa aaa bdH -baA -vHZ +qDX +vlu aag aag -mIj -lxu -lhy -hCv -imc -oQV -xAb -eAY -vdC -igV -nAz -qyr +cNs +voJ +tuF +nbn +fLY +ikE +pwV +uqk +enc +uyV +qlR +aCy rgy -khQ -usc +hBB +rhZ gEg imy gEg -oGe +fbe bdV bvf tQL bDn bGu bvf -jxG -ihT -ihT -ihT -ihT -ihT -ihT -ihT -ihT -nQe -ihT +oge +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +eTA +dvC bHB btO bcm @@ -89218,16 +89218,16 @@ bcm bcm bcm bcm -mJT -bcj -mJT -uyI -vDY -fzM +oPR +ius +oPR +eUT +smB +rGQ aag aag -vHZ -psN +vlu +ckx bdH aaa aaa @@ -89275,59 +89275,59 @@ bdH bdH bdH aaa -oZE -rHV -tha -moo -eZe -ePl +dJq +bow +lNR +epZ +xfR +gDD agj -eBE +nRW hvH agc -wIw +yeU pxG -fOv +fgT agc agc agj -lgF -lGy +unz +hFx wVW -mbg -bGt -csy -iLl -cnf -cnf -rTs -rTs -rTs -vcm -cnf -qXF -vav -mvY -sBi +cNv +vey +tqF +jfU +wZS +wZS +oEP +oEP +oEP +gAD +wZS +xxn +wkb +vKZ +cbk wVW -rET -ojB +dMc +buT mKq -rgw -vac -jFv -aUU -ibN -hfl -uuC -dSk +nMJ +ofb +spG +xIM +msf +eQL +cZY +rJS aES -sIJ -mJK -sOE -xlf -cOF -mSj +keS +cQf +xNO +wEG +rNv +pdc aaa aaa bdH @@ -89374,63 +89374,63 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -vbZ -lhy -hCv -dwM -fRS -vbk -ryW -ibQ -psP -tcz -bKZ +cNs +gRh +tuF +nbn +rGD +xeK +sep +twJ +gdO +ppG +bNu +fBx hBF -tne +uEg eXq -vkZ -rlT -elc +pal +wPE +wCt eXq ooh -jqs -efn -jqs -hfv -jqs -eFW +bam +hXA +bam +cam +bam +ygY aYt -cwF -khq +xBa +qpH hYG hYG aYt aYt wFz bAi -ihT +dvC bnH btO cdA -eWk -pDQ -eAp +tBr +hvb +nCR bcm -vBR -kGl -kGl -yhk -kGl -fzM +yfx +ujj +ujj +dSd +ujj +rGQ aag aag aag -mSj +pdc bdH aaa aaa @@ -89478,59 +89478,59 @@ bdH bdH bdH bdH -oZE -rHV -ala -moo -moo -xRW +dJq +bow +fqa +epZ +epZ +wVA agj -kSH +gyk hvH -nTA -vDN +uik +gKG agc -aiW +loN xyk xyk -tzs -aTl -hsy +fLR +xdy +lXL wVW -tIF -sGb -rad +dPx +oSQ +gbJ wVW -eYb +mFs alX azZ aAF azZ aIf -ujF +dcC wVW -hOf -sGb -mUw +oFu +oSQ +fAp wVW -rET -ojB +dMc +buT mKq -mgS -epL -pez -aUU +omm +rrE +dDJ +xIM aES -rve -pFF -hRl +hqf +qMG +pyX aES -qaI -eWJ -pXu -pXu -cOF -mSj +ezN +jua +eRg +eRg +rNv +pdc aaa aaa aaa @@ -89577,63 +89577,63 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -oFg -lhy -hCv -uVn -uVn -nAz -nlM -iBl -gik -ozJ -nDI +cNs +eBa +tuF +nbn +aPt +aPt +qlR +gSh +uIS +qSj +fKy +sIm bHB -ihT +dvC aho -bxj -fme -eJn +syd +pDx +wJC aho aYt -jqs -efn -jqs -efn -jqs +bam +hXA +bam +hXA +bam uuu fTm -ihT -jGe +dvC +sha hYG hYG hYG aYt aYt bFP -ihT +dvC bHB btO cdA -yaB +bkj dtH -toI +rYS bcm -rDK -kgf -kGl -jey -mkw -fzM +toU +ljy +ujj +nds +ueM +rGQ aag aag aag -mSj +pdc bdH aaa aaa @@ -89681,59 +89681,59 @@ bdH bdH bdH bdH -oZE -moi -moi -moi -cPe -lLB +dJq +ekQ +ekQ +ekQ +ruS +dhb agj -dWD +sxL hvH agc -qlp +bYD pxG -tTk +sww agc agc agj -hDm -kst +qBa +jHS wVW -tIF -sGb -bSS +dPx +oSQ +gNo wVW -nxp +fpf alX hxm deD tUo aIf -emS +yjN wVW -hOf -sGb -mUw +oFu +oSQ +fAp wVW -rET -ojB +dMc +buT mKq -eiB +axr aWW aGr -opc +wil aES aES aES aES aES -msN -eWJ -aKt -aKt -aKt -mSj +aLj +jua +uJW +uJW +uJW +pdc aaa aaa aaa @@ -89780,35 +89780,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -tFA -jCS -hCv -xVC -xKh -uVn -nlM -iBl -gik -ozJ -nDI +cNs +iIA +qka +nbn +iiR +vWX +aPt +gSh +uIS +qSj +fKy +sIm bHB -eee +xDP eXq aho aho aho eXq kqv -jqs -efn -jqs -uEA -jqs +bam +hXA +bam +eAq +bam oJp bvf kRP @@ -89817,26 +89817,26 @@ bvf bvf egp ptv -mmZ -nYr -lBd +iQG +sRY +wWd hBF vxb bcm -vVz +aUD aYt -xuT -lEw -kgf -kgf -kGl -jey -efP -fzM +uDt +tqZ +ljy +ljy +ujj +nds +mDv +rGQ aag aag aag -mSj +pdc bdH aaa aaa @@ -89884,59 +89884,59 @@ aaa bdH bdH aaa -oZE +dJq aag aag -moi -moo -oFq +ekQ +epZ +pAz agj -fYp +jdZ hvH qck -uRa +oYw agc -tan -kDK -iEz +jhB +pJg +xDr agj -lgF -kst +unz +jHS wVW -hzF -sGb -iLW +qaM +oSQ +oHh wVW -dWc -cnf -sRX -sRX -sRX -vcm -ozy +elY +wZS +wRq +wRq +wRq +gAD +pwk wVW -omF -sGb -ivd +xHV +oSQ +qDF wVW -rET -ojB +dMc +buT mKq -aTM +wzy aXb aGr -aUU -ibN -hfl -uuC -tWJ +xIM +msf +eQL +cZY +jrz aES -xlf -bRt -aKt +wEG +ptN +uJW aag aag -mSj +pdc aaa aaa aaa @@ -89983,63 +89983,63 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -ibp -quj -lUa -rPZ -aZa -uVn -nlM -iiL -tPQ -nAz -odP +cNs +jpT +wic +xBA +xqs +tRP +aPt +gSh +wel +wcm +qlR +fmt bHB -ihT +dvC anW aYt aYt aYt anW aYt -jqs -efn -jqs -efn -jqs +bam +hXA +bam +hXA +bam brY aYt -pyH -xtK +cjL +uKG hYG ggh gRd -cNh -tHc -ihT -dBD +rKS +pAJ +dvC +kfm bHB btO cdA -gET +ufY aYt -uqs +mUU bcm -kGl -kgf -kGl -jey -pve -fzM +ujj +ljy +ujj +nds +jRO +rGQ aag aag aag -mSj +pdc bdH aaa aaa @@ -90087,59 +90087,59 @@ bdH bdH bdH aaa -oZE +dJq aag aag -moi -xje -fyS +ekQ +rNm +kGC agj mXj -fnv +qhN hvH hvH -iNY +pAA hvH -akj +hvT mXj agj -lgF -myA +unz +gzv wVW -tIF -mWX -bSS +dPx +uLT +gNo wVW -gBM +rLH alX alX avY alX aIf -cRd +jaq wVW -jnh -mWX -mUw +hUE +uLT +fAp wVW -rET -qGL +dMc +tEL mKq -pQI -aUU -aUU -dMR +lft +xIM +xIM +jLG aES -fBN -pFF -eiz +wEH +qMG +oUn aES -inT -lyN -aKt +bVW +bQp +uJW aag aag -mSj +pdc aaa aaa aaa @@ -90186,63 +90186,63 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -tQX -quj -hCv -sxF -meE -wvC -gSm -dWU -gjD -nAz -aNa +cNs +bay +wic +nbn +mGH +meM +fAv +vVv +krb +fCv +qlR +sLU bHB btO -sve -gXO -sve -sED -jcs -lYc -sve -sED -jcs -lYc -sve -sED -jcs -lYc -fzy -dvZ -pkX -ykk -hak -nSc -jcs -rnO +hTd +xmo +hTd +xpb +mWo +jeT +hTd +xpb +mWo +jeT +hTd +xpb +mWo +jeT +tmW +tbO +uTR +oqO +snu +uWR +mWo +edp bHB aYt cdA -szl -dlc -cql +eMx +urQ +kdo bcm -qtq -cGW -uEK -jey -kgf -fzM +jfJ +qzX +vzf +nds +ljy +rGQ aag aag aag -mSj +pdc bdH aaa aaa @@ -90290,12 +90290,12 @@ bdH aaa aaa aaa -oZE +dJq aag aag -moi -kkf -fyS +ekQ +hAH +kGC agj agj agj @@ -90306,43 +90306,43 @@ agj agj agj agj -cHx -gKj +kBI +eeh wVW wVW wVW wVW wVW -wOV -hhL -wOV +xOe +cBR +xOe wVW -wOV -gAy -wOV +xOe +ksL +xOe wVW wVW wVW wVW wVW -mJX -nRY +qlN +fUI mKq mKq -xiu -wtR +lAE +pvq aES aES aES aES aES aES -thS -fsW -aKt +fOs +gea +uJW aag aag -mSj +pdc aaa aaa aaa @@ -90389,24 +90389,24 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -lhy -mqX -hCv +cNs +tuF +qRA +nbn eXq -nRf +sjO eXq aho aho aho eXq -cNo +fpc bHB -rnY +lek baI baI baI @@ -90428,24 +90428,24 @@ baI baI baI baI -pHr +xXX bHB aqs bcm bcm -jRE +qol cdA bcm bcm -qtq -qtq -jVh -kgf -fzM +jfJ +jfJ +dQn +ljy +rGQ aag aag aag -mSj +pdc aaa aaa aaa @@ -90493,12 +90493,12 @@ aaa aaa aaa aaa -oZE +dJq aag aag -moi -iJx -vTx +ekQ +vAt +gpN gpY uBi wYA @@ -90506,33 +90506,33 @@ awW awW awW awW -pnc -slp -aif -lgF -iRW -fqK -mAs -rFa -jSg +sfI +pmu +rAL +unz +vuu +kjy +uiF +nIs +vld laV -rGM +dQq alX alX xQa alX aIf -utw +wZN laV -kHw -uDP -mAs -duQ -tQU -ojB -cDM -pIg -viH +vaq +cXf +uiF +mRG +iFV +buT +kdu +aOl +bMj baw oxu baw @@ -90540,12 +90540,12 @@ baw oaK nUn pgD -bRt -xlf -aKt +ptN +wEG +uJW aag aag -mSj +pdc aaa aaa aaa @@ -90592,24 +90592,24 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -lhy -lhy -hCv -xjT -ofq +cNs +tuF +tuF +nbn +kRI +huF afy xWp -lUe +gyj aBt ajM -teQ +fyd bHB -bFx +kni baI baI baI @@ -90631,24 +90631,24 @@ baI baI baI baI -dol +hir bHB xAY -efn +hXA wlK aYt aYt aYt lrX bcm -elS -yhk -evu -fzM +cSj +dSd +ese +rGQ aag aag aag -mSj +pdc bdH aaa aaa @@ -90696,46 +90696,46 @@ bdH bdH bdH bdH -oZE +dJq aag aag -moi -moo -fyS +ekQ +epZ +kGC gpY uac -cNm +qTJ ajf ajf ajf ajf -aWx -xcY -udR -pup +ffr +jsU +eDI +vvq aBH aKv aKv aKv aKv -gMG +shv aCj ayK aAd aAP -sFr +uyN ayu aCj -gMG +shv aKv aKv aKv aTa aTk -eAG -nHD -eSk -vBM +xTP +faQ +uUf +tpe aZz aZz aZz @@ -90743,12 +90743,12 @@ aZz wUP lrF pgD -eWJ -xlf -aKt +jua +wEG +uJW aag aag -mSj +pdc aaa aaa aaa @@ -90795,24 +90795,24 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -mIj -lhy -jCS -hCv -rpC +cNs +tuF +qka +nbn +dtu aer -szs -rKg +pqw +ewq aoL akz ajM -dOK +fda bHB -tEr +qdF baI baI baI @@ -90834,24 +90834,24 @@ baI baI baI baI -mFs +lUB bHB xAY -efn +hXA qCG btO btO btO uII -lEw -aNK -yhk -vDY -fzM +tqZ +iOR +dSd +smB +rGQ aag aag aag -mSj +pdc bdH aaa aaa @@ -90902,9 +90902,9 @@ abs abs abs abs -moi -kJT -cFw +ekQ +vBh +mwZ gpY mto acW @@ -90912,33 +90912,33 @@ awW awW oGC oGC -pnc -slp -jrR -suG -tzq -wwg -fUW -tzq -tzq +sfI +pmu +sHk +uBE +yfi +iSj +wOl +yfi +yfi laV -wpc +oOb ayL aAf aLM wlE alX -xBc +xWm laV -tzq +yfi aKa -fUW -dtw +wOl +tjR aKq -mRV -uCn -pIg -viH +xSn +aPv +aOl +bMj iVE baw baw @@ -90946,9 +90946,9 @@ baw sgU baw pgD -tsT -txh -aKt +mPC +hIy +uJW tQV tQV tQV @@ -90995,27 +90995,27 @@ aaa aaa bdH aaa -baA -vHZ -vHZ +qDX +vlu +vlu aag aag aag aag -mIj -lhy -qBp -ijh +cNs +tuF +qyv +sik acq aeJ -pFk -qhy -ojQ -efz +oiP +fCW +tVa +qVe ajM -ihT +dvC bHB -hrA +flQ baI baI baI @@ -91037,27 +91037,27 @@ baI baI baI baI -mrJ +wkZ bHB xAY -efn +hXA xJR aYt aYt puI iWx bcm -oIQ -jey -kGl -fzM +rDH +nds +ujj +rGQ aag aag aag aag -vHZ -vHZ -psN +vlu +vlu +ckx aaa bdH aaa @@ -91103,17 +91103,17 @@ aeW ajD anM oGC -qsy -wKq +dEu +ojT bvb -tCi -szC +cqZ +gmz pYu awW acW -qsy -fGX -edC +dEu +jDj +nMr aiX awd awd @@ -91125,35 +91125,35 @@ awd awd awd wVW -gQp -nUQ -fOm +qQD +aJW +oUY aBI -ycw -qDB -gPb +afU +nfQ +jBW wVW awF -kXr +sfr awF ecr -bVh +iHe ecr ecr ecr -cta +tWu aET -rUz -aLu -aLu +ddM +oBE +oBE sgU baw dqb -vxo -pWd +hoc +hda mor -bBw -aLu +ovg +oBE baw mAp mAp @@ -91198,27 +91198,27 @@ aaa aaa bdH aaa -oZE +dJq aag aag aag aag aag aag -mIj -lhy -phY -hCv +cNs +tuF +dwh +nbn acu -ofq +huF afF xWp azJ bLP eXq -tND +ruK bHB -rnY +lek baI baI baI @@ -91240,27 +91240,27 @@ baI baI baI baI -pHr +xXX bHB tIS bcm bcm -jRE +qol cdA bcm bcm bcm -qtq -hJD -xIP -fzM +jfJ +kuc +oIq +rGQ aag aag aag aag aag aag -mSj +pdc aaa bdH aaa @@ -91306,11 +91306,11 @@ aea ajE awW awW -qsy -pnc +dEu +sfI awW -hLN -szC +rEJ +gmz awW awW acW @@ -91318,33 +91318,33 @@ qdQ eFT hhA weD -gvA -fjc -wgz +dOd +vDV +hHg aiX aiX -khH -hYI -khH -hYI +pJu +nFC +pJu +nFC wVW wVW wVW -npr +pWL jnX -ifx +bfI wVW wVW wVW -dWZ -jel +eOj +rdc awF -jUU -hzY -nbw +uPT +fDK +mFp aET -esC -tAB +aWA +fRk aET mSi wHp @@ -91352,11 +91352,11 @@ gZw sgU baw baw -vxo -pbf +hoc +pwj baw -viH -aLu +bMj +oBE baw baw baw @@ -91401,27 +91401,27 @@ aaa aaa bdH aaa -oZE +dJq aag aag aag aag aag aag -mIj -cGx -jbi -hCv -fJp +cNs +uiM +iqB +nbn +xvm aer -szs -rKg +pqw +ewq xWp -gky +cQY ajM -ihT +dvC bHB -bFx +kni baI baI baI @@ -91443,27 +91443,27 @@ baI baI baI baI -dol +hir bHB btO cdA -eYO -dMu -rKD +ouu +hKk +xGt bcm -qtq -cua -kGl -jey -smD -fzM +jfJ +hzm +ujj +nds +sus +rGQ aag aag aag aag aag aag -mSj +pdc aaa bdH aaa @@ -91509,57 +91509,57 @@ aoy awW awW awW -qsy -iaz +dEu +gIV awW -qZS -szC +kxi +gmz awW uzy abB -qsy -qsy -qsy +dEu +dEu +dEu weD -tLx -mpD -tLx +nIQ +ukn +nIQ aiX -ybv +laf avU avU -uPo -ukv -jtO -uoD +mvS +cXm +pGC +huk aiX -hSU -bRX -bQT +paE +sWw +dui awF aEM -eGX +pMW rvA aKE awF -nqB -tuz -oXZ +iMw +eKF +tTo aET aET aET aET -rUz -aLu -aLu +ddM +oBE +oBE pIV baw baw -vxo -qXT +hoc +ihp baw -mIA -aLu +lio +oBE baw baw baw @@ -91604,27 +91604,27 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -quj -dYG -hCv -fLH +cNs +wic +iBI +nbn +fSI aeN -pFk -mWv -kit +oiP +oUX +cOQ akz ajM -ihT +dvC bHB -tEr +qdF baI baI baI @@ -91646,27 +91646,27 @@ baI baI baI baI -mFs +lUB bHB aYt cdA -rqz +iQV aYt -fKP +tmp bcm -rIR -kgf -kGl -jey -rNy -fzM +aCE +ljy +ujj +nds +ohU +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -91707,67 +91707,67 @@ bdH bdH aaC abw -nUw +kPl awW ajH ajf abf -ihD +sKu ajf ajf ajf -rnC +wGH abf ajf evX -qZS -dUi -iaz +kxi +hCP +gIV weD -sih -mpD -mpD +aXX +ukn +ukn aiX -cst -uPN -uPN -uPN -uPN -qIP -dnz +rqL +kuQ +kuQ +kuQ +kuQ +gbw +wHR aiX -nSd -rYx -wqe +gjL +vvZ +fuN awF aFg -hVR +vMi rvA -hmU +fhh awF -nMN -tuz -oXZ -tuz -mqd -tAb +sEz +eKF +tTo +eKF +oWK +nOm aET -npV -rcR -qXT +jVn +tbS +ihp gVF aZz cts -irL +geN aZz aZz aZz -vkh +mLj cts aZz kyX baw -wlx +rvN trb aaC bdH @@ -91807,27 +91807,27 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -quj -kyU -hCv +cNs +wic +eAt +nbn vhw -ojQ +tVa azw xWp aAK -plX +lnU ajM -aln +jtw bHB -hrA +flQ baI baI baI @@ -91849,27 +91849,27 @@ baI baI baI baI -mrJ +wkZ bHB vxb bcm -eVG +iGk aYt -sNk +iSr bcm -nwM -kgf -kGl -yhk -nJk -fzM +oFp +ljy +ujj +dSd +iZq +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -91910,67 +91910,67 @@ bdH bdH aaC abw -pCA +xLH awW acW awW -qsy -qsy -qsy -cho -qsy -qsy -qsy +dEu +dEu +dEu +qEI +dEu +dEu +dEu oMQ evX -tCi -lvT -qrm +cqZ +fbP +lnh weD -wvG -ioi -idl -nDN -mpD -ovY -kSB -kSB -tKO -xdN +bix +dDg +qzu +eVP +ukn +mGX +fsR +fsR +uiI +muY aiX aiX -qFZ -usb -hpg +jwH +vvk +azP awF -wZD -hVR +uTX +vMi rvA -loH +oLH awF -dBQ -dBQ -jbu -soL -qra -mFw -oAw -kJB -wAs -pWd +xdC +xdC +gvx +oUm +uiP +wxp +rrG +rza +kdg +hda sgU baw -aLu -aLu -aLu -mqH -aLu -aLu -aLu +oBE +oBE +oBE +ugj +oBE +oBE +oBE hEV eBe baw -wMo +fsk trb aaC bdH @@ -92010,17 +92010,17 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -uOz -hVc -hCv +cNs +fyh +hEw +nbn eXq eXq eXq @@ -92028,9 +92028,9 @@ eXq eXq eXq eXq -cXG +jJj bHB -rnY +lek baI baI baI @@ -92052,27 +92052,27 @@ baI baI baI baI -pHr +xXX bHB btO cdA -rqz +iQV aYt -qlg +rwu bcm -smD -kgf -kGl -jey -soJ -fzM +sus +ljy +ujj +nds +ude +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -92114,65 +92114,65 @@ bdH aaC abs adq -hKM -szC -qsy -qsy -rlY -gyk -gyk -gyk -saq -qsy -qsy -szC -qsy -qsy -kqV +nnC +gmz +dEu +dEu +neJ +jPP +jPP +jPP +rVA +dEu +dEu +gmz +dEu +dEu +tHz aiX aiX aiX aiX aiX -xhS -pHP +ooL +tmk osT cZV -kux -mJA -djo +vwH +jYw +cPJ aiX -vQs -usb -fiZ +ipr +vvk +klQ awF -dkZ -vem +hOI +uQs rvA -xgB +okG awF -vjm -jWq -hdN -xJx -tuz -rtO -oAw -mXI -aLu -aLu -vxo -aLu -wZc -wjl -wcD -wcD -wcD -oCD -aLu -aLu -vxo -hwb +vUd +sbm +fxj +wPa +eKF +jkY +rrG +oLp +oBE +oBE +hoc +oBE +doR +vbX +lCg +lCg +lCg +mgL +oBE +oBE +hoc +hHn pgD tQV aaC @@ -92213,17 +92213,17 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -quj -jRV -hCv +cNs +wic +suQ +nbn aRu aRu aRu @@ -92231,9 +92231,9 @@ aRu aRu aRu bcm -aln +jtw bHB -bFx +kni baI baI baI @@ -92255,27 +92255,27 @@ baI baI baI baI -dol +hir bHB btO cdA -rrj -dlc -mCg +mVm +urQ +voH bcm -qtq -pve -pve -jey -mZD -fzM +jfJ +jRO +jRO +nds +dCW +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -92317,65 +92317,65 @@ bdH aaC abs adq -hxu -szC -qsy -mnb -rAZ +kql +gmz +dEu +wFx +fqk aTm -fBK +hrP aTm -hPV -mnb -qsy -szC -qsy -qsy -qsy +qlw +wFx +dEu +gmz +dEu +dEu +dEu gzI -sih -toW -idl -jmV -mpD -rCb +aXX +tCJ +qzu +rRH +ukn +xzO rtY fJy -owT -tKO -wHe +tVj +uiI +bnm aiX -iUf -usb -krG +byW +vvk +gkr awF awF aEW -oKP +rnU aEW awF -oHv -xJx -rch -azN -tuz -tuz -oAw -wMn -aLu -aLu -vxo -aLu -vbq -oFF +jnS +wPa +lBB +caa +eKF +eKF +rrG +aSs +oBE +oBE +hoc +oBE +oRu +gnE iun -mBt +qrq vPm -xAa -vbq -aLu -vxo -ehW +tDt +oRu +oBE +hoc +fQj pgD tQV aaC @@ -92416,17 +92416,17 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -lhy -jRV -hCv +cNs +tuF +suQ +nbn aRu aRu aRu @@ -92434,9 +92434,9 @@ aRu aRu aRu bcm -ihT +dvC bHB -tEr +qdF baI baI baI @@ -92458,27 +92458,27 @@ baI baI baI baI -mFs +lUB bHB uAb bcm -qtq -kGH -qtq -qtq -qtq -qtq -qtq -uyI -kGl -fzM +jfJ +rid +jfJ +jfJ +jfJ +jfJ +jfJ +eUT +ujj +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -92519,67 +92519,67 @@ bdH bdH aaC abw -qDM +sLe avd acW awW auK -lFg +gKx aTm -lHj +dXw aTm -flz +fQl scu awW acW -qZS -dUi -iaz +kxi +hCP +gIV gzI -tLx -iqO -dtz +nIQ +ckY +iFs aiX -lIN -bFO -vKQ -tEU -kHL -msh -uAZ -xEA -sJj -usb -kpw -dog +qtO +hiF +mYu +ffs +frQ +lkR +hvj +rmE +wvN +vvk +aLN +ldh awF -rhz -qBK -dQM +utB +twc +ofv awF -tau -hYa -srH -ykZ -xlW -mjE +vbh +efO +spD +vUE +jSQ +stp aET -waq -rcR -qXT +nvU +tbS +ihp sgU baw lRE -gPR +fyE vbB -lYs +iVS vbB -lDl +wIs sOy baw sgU xVF -vTF +agP trb aaC bdH @@ -92619,17 +92619,17 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -lhy -phY -hCv +cNs +tuF +dwh +nbn aRu aRu aRu @@ -92637,51 +92637,51 @@ aRu aRu aRu bcm -cNo +fpc bHB -oAF -fls -hBN -iVK -gcV -fls -czg -iVK -gcV -fls -czg -iVK -gcV -fls -czg -iVK -gcV -fls -czg -iVK -xWX -fls -ghd +gsF +lpv +qus +gYU +ass +lpv +vah +gYU +ass +lpv +vah +gYU +ass +lpv +vah +gYU +ass +lpv +vah +gYU +syj +lpv +gLl bHB xAY -hSs -qtq -kGl -vQc -ngX -qqx -qtq -nJk -jey -kGl -fzM +fnX +jfJ +ujj +nFv +jKu +kYr +jfJ +iZq +nds +ujj +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -92722,67 +92722,67 @@ bdH aaa aaY abw -iih +qqA avd acW awW avc -dsX +mUu aTm -lHj +dXw cbM -nTJ +vLV sLo awW acW -tCi -lvT -xBr +cqZ +fbP +wBC gzI -nRV -sfx -ilF +nNn +tPw +iIs aiX -bil -bQV -iYn -kUg -kxA -som -uXM -pvS -nBk -rdJ -kpw -cuo +onP +oLP +ioG +fGv +jom +pLV +qNk +hdo +eVZ +rxb +aLN +xvW awF aHn szU -pTC +dnd awF -phl -tuz -tuz -tuz -tuz -rtO +fio +eKF +eKF +eKF +eKF +jkY aET -xKg -wAs -pWd +foy +kdg +hda sgU baw hJk -lHz +iFP vbB -lYs +iVS vbB -vWw +iBK iLd baw sgU xVF -nMF +wTI trb aaC bdH @@ -92822,17 +92822,17 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -quj -jRV -hCv +cNs +wic +suQ +nbn aRu aRu aRu @@ -92840,11 +92840,11 @@ aRu aRu aRu bcm -ihT +dvC bHB -nDI -ihT -frj +sIm +dvC +kpv aYt aYt aYt @@ -92862,29 +92862,29 @@ aYt aYt aYt aYt -nDI -ihT -frj +sIm +dvC +kpv bHB xAY -hSs -qtq -bfh -kgf -kgf -kGl -tUQ -kgf -yhk -vDY -fzM +fnX +jfJ +wrp +ljy +ljy +ujj +gES +ljy +dSd +smB +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -92926,65 +92926,65 @@ aaa aaY abs adq -ekP -szC -qsy -mnb -rAZ +wog +gmz +dEu +wFx +fqk aTm -nRP +kih aTm -hPV -mnb -qsy -szC -qsy -qsy -iZN +qlw +wFx +dEu +gmz +dEu +dEu +kWj aiX aiX aiX aiX aiX -pnu -pHP -kux -pma +pfb +tmk +vwH +lpx aiX aiX aiX aiX -piF -usb -klO -iOG -iOG -iOG -iOG -iOG -iOG -hRQ -xJx -xJx -sjA -tuz -tuz -oAw -wMn -aLu -aLu -vxo -aLu -vbq -oFF +tDj +vvk +jYN +nVO +nVO +nVO +nVO +nVO +nVO +nqu +wPa +wPa +eXJ +eKF +eKF +rrG +aSs +oBE +oBE +hoc +oBE +oRu +gnE vbB -lYs +iVS tBq -xAa -vbq -aLu -vxo -gse +tDt +oRu +oBE +hoc +fvF pgD tQV aaY @@ -93025,17 +93025,17 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -oIN -jbi -hCv +cNs +gAH +iqB +nbn aRu aRu aRu @@ -93043,11 +93043,11 @@ aRu aRu aRu bcm -eFb +czi bHB -vTL -aYl -vKL +fPl +qfW +fcc bPr bPr bPr @@ -93065,29 +93065,29 @@ bPr bPr bPr byv -fCE -aYl -kyL +fgU +qfW +jwL bHB uII -vlH -qtq -fyn -dta -kgf -rsw -qtq -iSi -yhk -kgf -fzM +qUZ +jfJ +gDG +eLF +ljy +jtG +jfJ +hcE +dSd +ljy +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH aaa @@ -93129,65 +93129,65 @@ aaa aaY abs adq -mBi -szC -qsy -qsy -kpd -isn -isn -isn -wot -qsy -qsy -szC -qsy -qsy -qsy +usf +gmz +dEu +dEu +qPF +hRA +hRA +hRA +bVl +dEu +dEu +gmz +dEu +dEu +dEu rwY -sih -ekV -idl -jmV -viw -kOa -msh -sdZ +aXX +qat +qzu +rRH +bYG +icu +lkR +xho aiX -kVm +mQb amb aiX -eAi -usb -fiZ -iOG -tjU -pHE -kWr -dRW -iOG -mZo -oar -oar -oar -oar -rpO -oAw -wMn -aLu -aLu -vxo -aLu -aLu -mBN -mEo -mEo -mEo -ftP -aLu -aLu -vxo -ovf +tCA +vvk +klQ +nVO +thR +vCt +lPu +rYC +nVO +iSW +gGv +gGv +gGv +gGv +cGG +rrG +aSs +oBE +oBE +hoc +oBE +oBE +tlL +kva +kva +kva +hDr +oBE +oBE +hoc +dDk pgD tQV aaY @@ -93228,17 +93228,17 @@ aaa aaa bdH aaY -oZE +dJq aag aag aag aag aag aag -mIj -quj -xBx -hCv +cNs +wic +huv +nbn aRu aRu aRu @@ -93246,9 +93246,9 @@ aRu aRu aRu bcm -ueb +pzB bHB -ihT +dvC bkA bkA bkA @@ -93257,11 +93257,11 @@ bkA bkA bkA baZ -uUP -vLt +ltP +hPd baZ -uUP -mKG +ltP +rGV baZ gfW gfW @@ -93270,27 +93270,27 @@ gfW gfW gfW gfW -ihT +dvC bHB uII -ukF -qtq -qwf -emw -rWk -xsb -qtq -sTy -yhk -evu -fzM +vnI +jfJ +gbU +uVx +nQp +syO +jfJ +hlm +dSd +ese +rGQ aag aag aag aag aag aag -mSj +pdc aaY bdH bdH @@ -93331,67 +93331,67 @@ aaa aaa aaY abw -pCA +xLH awW ajT aoC -qsy -qsy -qsy -cho -qsy -qsy -qsy +dEu +dEu +dEu +qEI +dEu +dEu +dEu awW acW -qZS -dUi -iaz +kxi +hCP +gIV rwY -tLx -mpD -dtz +nIQ +ukn +iFs aiX aiX -xoK -dPn -dPn -xBf -bmK +cpO +jLo +jLo +mfd +ivy and aiX -wYV -usb -sJj -lby -xun -xun -dkW -hfR -iOG -gLF -oar -oar -oar -oar -odi -oAw -dpr -rcR -qXT +wEU +vvk +wvN +iam +mLn +mLn +axU +vJR +nVO +kYN +gGv +gGv +gGv +gGv +pHD +rrG +rDA +tbS +ihp sgU baw -aLu -aLu -aLu -wJR -aLu -aLu -aLu +oBE +oBE +oBE +sHv +oBE +oBE +oBE baw sgU baw -wMo +fsk trb aaY bdH @@ -93431,17 +93431,17 @@ aaa aaa bdH aaY -oZE -mIj -mIj -mIj -mIj -mIj -mIj -mIj -lhy -xUn -hCv +dJq +cNs +cNs +cNs +cNs +cNs +cNs +cNs +tuF +sPz +nbn aRu aRu aRu @@ -93449,51 +93449,51 @@ aRu aRu aRu bcm -ihT +dvC bHB -ihT +dvC bkA -vSm -yep -vay -eCH -qBn +oFe +fwx +aFL +tic +sCH nvM -vfj -cFT -cFT -jgE -cFT -cFT -bwC +dhp +iim +iim +xwu +iim +iim +hRc gfW -oTS -mvL -mvL -mvL -vXf +qEF +iME +iME +iME +ruF gfW -eFb +czi bHB qnd -niP -niP -niP -niP -niP -niP -niP -vGC -yhk -kgf -fzM -fzM -fzM -fzM -fzM -fzM -fzM -mSj +swi +swi +swi +swi +swi +swi +swi +aKt +dSd +ljy +rGQ +rGQ +rGQ +rGQ +rGQ +rGQ +rGQ +pdc aaY bdH bdH @@ -93534,67 +93534,67 @@ aaa aaa aaY abw -nUw +kPl awW ajV ajf abf -ihD +sKu ajf ajf ajf -ihD +sKu abf ajf evX -tCi -lvT -qrm +cqZ +fbP +lnh rwY -vQH -sfx -ilF +gtV +tPw +iIs aiX -riZ -aVx +epe +tZQ sht -iHi +cCw aiX aiX aiX aiX -wAo -usb -mzu -iOG -mKe -wam -hQz -rRb -iOG -hMg -oar -uyv -iEy -tph -nHd +cvG +vvk +qWq +nVO +svD +kmf +sFH +aUO +nVO +waC +gGv +lyC +tLf +pho +net aET -oxE -wNu -pWd +epa +knI +hda gVF aZz cts -vkh +mLj aZz aZz aZz -vkh +mLj cts aZz nsc ltA -wlx +rvN trb aaY bdH @@ -93634,17 +93634,17 @@ aaa aaa bdH aaY -oZE -mIj -frB -lhy -quj -quj -quj -lhy -lhy -tJw -hCv +dJq +cNs +eut +tuF +wic +wic +wic +tuF +tuF +jBU +nbn aRu aRu aRu @@ -93652,51 +93652,51 @@ aRu aRu aRu bcm -sDR -xnP -hQf +fkN +csN +xlr bkA -pOk -vqB -vqB -vqB -vpY +kRm +rqf +rqf +rqf +kda nvM -tpj -cFT -cFT -cFT -cFT -cFT -wju +nqp +iim +iim +iim +iim +iim +nlr gfW -cRn -cpQ -ujN -jTy -sRi +blu +oYS +nlG +iPk +sDA gfW -dDJ -xnP -sDR -niP -flh -wVh -huR -wVh -tUD -niP -smD -yhk -kgf -kGl -kGl -rHF -kGl -iHQ -sWn -fzM -mSj +fbn +csN +fkN +swi +jyH +qNS +vto +qNS +nPh +swi +sus +dSd +ljy +ujj +ujj +tlH +ujj +aqQ +sdv +rGQ +pdc aaY bdH bdH @@ -93742,57 +93742,57 @@ aoy awW awW awW -qsy -jMO +dEu +qmQ awW -tCi -qsy +cqZ +dEu awW awW abB -qsy -bjx +dEu +uhg aiX aiX -pcR -pcR -pcR -pcR -cMe -drb +xeT +xeT +xeT +xeT +icS +mul sht -xoK -xBf -gfF +cpO +mfd +nNp atT aiX -dAc -usb -iES -iOG -iOG -syT -iOG -iOG -iOG -eya -fZK -eya -eya -eya -eya -eya +fUS +vvk +fYD +nVO +nVO +fbU +nVO +nVO +nVO +fpk +xyR +fpk +fpk +fpk +fpk +fpk pgD -rUz -aLu +ddM +oBE pIV baw baw -aLu -pWd +oBE +hda baw -qQH -aLu +veV +oBE baw baw baw @@ -93837,69 +93837,69 @@ aaa aaa bdH aaY -oZE -mIj -quj -quj -lhy -lhy -qBp -lka -kHJ -lna -dld -dld -dld -dld -dld +dJq +cNs +wic +wic +tuF +tuF +qyv +cwN +xbG +fim +pgl +pgl +pgl +pgl +pgl aRu aRu bcm -gAb -pYB -gAb +iYR +ocU +iYR bkA -eeI -ueT -ueT -gFx -hmn -cAz -exq -exq -oJP -pDS -pDS -pDS -pDS -uMC -rUA -baz -rUA -pYG -tcX +rDz +fUZ +fUZ +npL +gXm +bsd +vJh +vJh +bQx +dqo +dqo +dqo +dqo +skB +dno +lTx +dno +cXy +hnj gfW -gAb -pYB -gAb -niP -gVB -cOJ -yeU -yeU -eVa -niP -smD -qsY -fDR -fDR -eiS -fDR -fDR -pBF -nJk -fzM -mSj +iYR +ocU +iYR +swi +sxU +iXs +ckk +ckk +qXD +swi +sus +kfw +jqw +jqw +kPA +jqw +jqw +lda +iZq +rGQ +pdc aaY bdH bdH @@ -93945,11 +93945,11 @@ aeX awW awW awW -qsy -pnc +dEu +sfI awW -hLN -qsy +rEJ +dEu awW awW acW @@ -93957,45 +93957,45 @@ qdQ muq aiX aiX -pcR -umq -umq -pcR -riZ -cLQ -xoK -pma +xeT +neA +neA +xeT +epe +wrK +cpO +lpx aiX -nKs +buF atT aiX -eAi -lZv -fiZ -eya -bvn -wCb -inc -bkO -pTf -nPR -nPR -elL -ult -gTS -gTS -rKK +tCA +fUw +klQ +fpk +klh +tfW +cEq +vAl +fyH +hMf +hMf +glN +rJk +kwf +kwf +iHM pgD lza gZw gVF kuk baw -aLu -pbf +oBE +pwj baw -viH -aLu +bMj +oBE baw baw baw @@ -94040,69 +94040,69 @@ aaa aaa bdH aaa -oZE -mIj -lhy -lhy -hCv -fmT -xUn -ejE -vSB -rVY -dld -oQx -oQx -oQx -dld +dJq +cNs +tuF +tuF +nbn +sEs +sPz +cNy +flk +tXN +pgl +hRk +hRk +hRk +pgl sGU wfE wfE -gHP -mRI -tEF +nDa +vKX +fRn bkA -hAO -vqB -mgf -oMR -pcT +sBP +rqf +iWf +xLQ +pnn nvM -wgI -cFT -iVf -gfH -cFT -cFT -ryM +ftf +iim +hyv +nbs +iim +iim +cmL gfW -uAy -ujN -cvk -ujN -tdC +pEx +nlG +pKl +nlG +obZ gfW -nfJ -mWO -mVd -niP -luL -yeU -yeU -yeU -fGF -wTb -wTb -wTb -wTb -wTb -wTb -wTb -wTb -yhk -kGl -fzM -mSj +fJC +riV +izu +swi +mwg +ckk +ckk +ckk +edk +mOk +mOk +mOk +mOk +mOk +mOk +mOk +mOk +dSd +ujj +rGQ +pdc aaa bdH bdH @@ -94148,57 +94148,57 @@ awW awW awW oGC -fGX -lVt +jDj +vPD bBl -qZS -fGX +kxi +jDj oGC awW acW -qsy -nkK +dEu +cFz aiX aiX aiX -oBn -oBn +iZE +iZE aiX aiX aiX -lXG -smv +wMr +xDR aiX aiX aiX aiX -cDz -cGq -iEP -eya -eya -kgz -eya -eya -eya -eya -eya -eya -eya -eya -eya -xJV +uWD +smU +bKo +fpk +fpk +jRl +fpk +fpk +fpk +fpk +fpk +fpk +fpk +fpk +fpk +vqu pgD -rUz -aLu +ddM +oBE sgU baw baw -aLu -kwe +oBE +krq cIe -nmF -aLu +uec +oBE baw baw baw @@ -94243,69 +94243,69 @@ aaa aaa bdH aaa -oZE -mIj -lhy -lhy +dJq +cNs +tuF +tuF wfE wfE -css +gpT wfE wfE wfE wfE -ryH -ryH -ryH +gNE +gNE +gNE wfE -hOv -vEB +xaf +qhf wfE -vzF -fsY -vzF +nLE +fxr +nLE bkA -vZT -vqB -pcw -ycG -sXc +gmi +rqf +oSO +mYL +qud nvM -wgI -cFT -lBs -gfH -gfH -cFT -rmA -rvJ -dpJ -ujN -bsI -ujN -eLe +ftf +iim +nqo +nbs +nbs +iim +oVE +kAn +ojY +nlG +gYE +nlG +rGH gfW -xWu -wDi -xWu -niP -jaL -kWp -yeU -yeU -wbQ -wTb -nkR -tZV -yeU -oBN -oYy -aJR -wTb -yhk -kGl -fzM -mSj +dde +dOt +dde +swi +oTr +vZf +ckk +ckk +oiT +mOk +oNo +nOT +ckk +rTq +oNI +lXk +mOk +dSd +ujj +rGQ +pdc aaa bdH bdH @@ -94347,65 +94347,65 @@ aaa aaa abs adq -tHF -dUi -eZE -txr -txr -txr -txr -txr -txr +jPc +hCP +jdz +xiV +xiV +xiV +xiV +xiV +xiV oGC awW acW awW awW awW -dbC -bOU -lfd -tYI -tYI -sJM -tYI -sJj -sJj -kLr -tYI -rTf -tYI -tYI -rNH -tYI -tYI -rTf -mte -kLr -tYI -tYI -tYI -tYI -sJM -tYI -fYr -kcU -gQX +gmw +osh +hIg +fPK +fPK +qpO +fPK +wvN +wvN +qUt +fPK +lni +fPK +fPK +sZU +fPK +fPK +lni +gix +qUt +fPK +fPK +fPK +fPK +qpO +fPK +uoa +qRY +mCs baw fGg baw sgU baw baw -kbn -kbn -kbn -kbn -kbn -kbn -mIA -rcR -qXT +tmJ +tmJ +tmJ +tmJ +tmJ +tmJ +lio +tbS +ihp pgD tQV aaa @@ -94446,69 +94446,69 @@ aaa aaa bdH aaa -oZE -mIj -lhy -lhy +dJq +cNs +tuF +tuF wfE -uBt +xhm jOo wrC mHx pqX -lhA -nhA +fLS +oLX wFR wFR bmF wFR -nhA -laA -fGR -qCE -mSV +oLX +iYD +xrF +slt +sCJ bkA -pwu -wzK -ygM -tJQ -cFg +uGn +oVX +kri +dJy +mhy nvM -wgI -cFT -iVf -gfH -cFT -cFT -pjK -rvJ -hPR -wlX -vKx -wlX -bYG +ftf +iim +hyv +nbs +iim +iim +bqA +kAn +sBG +pHl +wRt +pHl +vlM gfW -htF -sqE -ilT -mtp -wYe -uDE -yeU -yeU -ouy -wTb -wTb -wTb -riy -cGb -cGb -hHi -wTb -yhk -kGl -fzM -mSj +lJe +pXf +nqR +njN +uQl +yds +ckk +ckk +rlS +mOk +mOk +mOk +xdQ +dMD +dMD +xwz +mOk +dSd +ujj +rGQ +pdc aaa bdH bdH @@ -94550,65 +94550,65 @@ aaa aaa abs adq -tCi -lvT -jMO -txr -cuX -cuX -cuX -jbg -txr +cqZ +fbP +qmQ +xiV +dik +dik +dik +oDd +xiV aea oGC -llS +nuR ajf ajf ajf -aWx -vXU -bkb -ujt -hua -hua -hua -ycy -hua -hua -uER -ooa -ooa -hua -byy -hua -ycy -ycy -ujw -vFi -vFi -oYs -vFi -vFi -vFi -ujt -lMr -fhM -bBI +ffr +non +eLx +gqO +ryR +ryR +ryR +cDX +ryR +ryR +vKh +rBt +rBt +ryR +mai +ryR +cDX +cDX +klm +iPl +iPl +tAa +iPl +iPl +iPl +gqO +lSy +foo +oJH aZz aZz aZz nsc baw cxk -kbn -ePb -ePb -ePb -mlx -kbn -rtJ -wAs -dLU +tmJ +anr +anr +anr +sce +tmJ +tVN +kdg +wDf pgD tQV aaa @@ -94649,69 +94649,69 @@ aaa aaa bdH aaa -oZE -mIj -xEh -quj +dJq +cNs +mAd +wic wfE -lpJ +nsv jOo -nhA -meD -meD -meD -nhA +oLX +rTd +rTd +rTd +oLX rkz esM esM uUi -nhA -laA -pDG -qbk -uJC +oLX +iYD +qoS +aZj +aif bkA -hDq -hDq -uBo -hDq -hDq +kmt +kmt +pxc +kmt +kmt bkA -kag -mfL -wxT -cFT -cFT -cFT -jUa +nfq +sUl +oKD +iim +iim +iim +foh gfW -hMB -pst +hro +tCF gfW -ksR -hMB +iAH +hro gfW -rKc -iEV -ffn -fyr -vfK -kOQ -yeU -yeU -nJe -nXJ -mrA -wTb -yeU -iPZ -izc -lFV -wTb -jey -kGl -fzM -mSj +dBi +iWP +fzs +lAX +qsQ +ujE +ckk +ckk +qDJ +kgF +kJs +mOk +ckk +aUA +nzu +kLC +mOk +nds +ujj +rGQ +pdc aaa bdH bdH @@ -94753,65 +94753,65 @@ aaa aaa abs adq -sQr +aYK akt awW -txr -cuX -cuX -cuX -cuX -txr +xiV +dik +dik +dik +dik +xiV oGC sHp oGC awW awW awW -pnc -qDu -gEc -fcz -pft -iFk -edX -iFk -iFk -vDU -iFk -iFk -iFk -iFk -vEZ -iFk -vDU -iFk -iFk -iFk -iFk -iFk -edX -iFk -rFm -fcz -pzv -qnm -viH +sfI +jkx +yic +wLM +rrv +dDr +kpF +dDr +dDr +wAm +dDr +dDr +dDr +dDr +uEU +dDr +wAm +dDr +dDr +dDr +dDr +dDr +kpF +dDr +gHO +wLM +nHM +vNY +bMj baw baw baw mnA baw baw -kbn -ePb -ePb -ePb -ePb -kbn +tmJ +anr +anr +anr +anr +tmJ baw sMM -bUD +lAC pgD tQV aaa @@ -94852,69 +94852,69 @@ aaa aaa bdH aaa -oZE -mIj -tQX -quj +dJq +cNs +bay +wic wfE -dEL +ieB jOo -rlu -kDr +smE +rKp wFR -xGT -pdA +fNt +foO wFR wFR wFR soA -nhA +oLX wfE -bPp -qbk -gFp +cQE +aZj +jPs bCd -fzo -vnP -qYY -pqE -pqE -wwj -wqO -cFT -iVf -cFT -cFT -cFT -dMx -ovT -mWm -sZg -cYA -sZg -sfv +wPe +cjI +pGo +ikh +ikh +eRY +ohx +iim +hyv +iim +iim +iim +dBc +gwb +cvY +jFq +uRL +jFq +imh bCd -vnd -iEV -vnd -pOC -rOq -eku -yeU -aFC -imz -nGe -hRR -rOq -yeU -pFX -cGb -hHi -wTb -uyI -jzf -fzM -mSj +xuP +iWP +xuP +rPA +xfy +iyM +ckk +qOW +gYZ +kuO +idH +xfy +ckk +aEz +dMD +xwz +mOk +eUT +ybl +rGQ +pdc aaa bdH bdH @@ -94955,27 +94955,27 @@ aaa aaa aaa abs -iih +qqA avd akt awW -pfw -cuX -cuX -cuX -cuX -txr -hFn -txr -txr -txr -txr -txr -txr -txr -gEc -fcz -pzv +gud +dik +dik +dik +dik +xiV +cMZ +xiV +xiV +xiV +xiV +xiV +xiV +xiV +yic +wLM +nHM aoe aoe aoe @@ -94995,27 +94995,27 @@ aoe aoe aoe aoe -eXc -fcz -oBu -kbn -kbn -kbn -kbn -kbn -kbn -sLM -kbn -kbn -ePb -ePb -ePb -ePb -mDs +tYK +wLM +cRa +tmJ +tmJ +tmJ +tmJ +tmJ +tmJ +yly +tmJ +tmJ +anr +anr +anr +anr +msk baw sMM xVF -nMF +wTI tQV aaa aaa @@ -95055,69 +95055,69 @@ aaa aaa bdH aaa -oZE -mIj -llX -quj +dJq +cNs +vQW +wic wfE -mwa +qTO qOp -xSO +hlh vYm vYm vYm -iiM -dCv -dCv -dCv -xXv -xvN -qRQ -qoT -gsB -gFp +nTf +tyj +tyj +tyj +oxr +tfd +uOK +aXJ +taO +jPs bCd -bdN -cFT -cFT -cFT -cFT -cFT -cFT -cFT -iVf -cFT -cFT -cFT -cFT -ycX -ycX -cFT -cFT -ycX -uFi +duE +iim +iim +iim +iim +iim +iim +iim +hyv +iim +iim +iim +iim +uvb +uvb +iim +iim +uvb +bod bCd -vnd -iEV -vnd -pOC -rOq -lQP -yeU -hUq -cIm -yeU -xMg -rOq -yeU -jFB -bcF -hEC -wTb -plf -xsk -fzM -mSj +xuP +iWP +xuP +rPA +xfy +syy +ckk +dgE +hpw +ckk +oLb +xfy +ckk +eOO +gAf +rRr +mOk +wsE +sCb +rGQ +pdc aaa bdH bdH @@ -95159,65 +95159,65 @@ aaa aaa abs adq -goO -dUi -uho -txr -cuX -cuX -cuX -cuX -txr -nZt -tNN -dbN -pzw -ecn -hhm -kQx -txr -neX -fcz -pzv +uNS +hCP +dln +xiV +dik +dik +dik +dik +xiV +jod +viA +tkS +lsf +cwz +sSh +jvg +xiV +xbM +wLM +nHM aoe -fTI +jpX jHQ -hvM -hvM -hvM -eUw +jQI +jQI +jQI +xth dSJ -qIE -xiq +waA +gYq mcW -ekX +cRq aoe -fXj -bYT -rCr -xBk -dKA +rPQ +fAZ +xIX +wlr +xgW aoe -gEc -fcz -pzv -kbn -efv -efv -xdU -xfF -xdU -ehY -vQG -kbn -ePb -ePb -ePb -ePb -kbn -eAl -rcR -ctL +yic +wLM +nHM +tmJ +oye +oye +tfI +qCu +tfI +jow +cwO +tmJ +anr +anr +anr +anr +tmJ +ioM +tbS +jLC pgD tQV aaa @@ -95258,69 +95258,69 @@ aaa aaa bdH aaa -oZE -mIj -iIL -quj +dJq +cNs +qOK +wic wfE -dgZ +eby opD -rlu -jYS +smE +kHX wFR -nGn -pdA +ept +foO iRy esM esM jpt -nhA -laA -gFp -pLa -tUc +oLX +iYD +jPs +xUc +dEd baZ -kFA -cFT -cFT -cFT -olH -cFT -cFT -cFT -iVf -cFT -cFT -cFT -cFT -cFT -olH -cFT -cFT -cFT -imN +raY +iim +iim +iim +qKN +iim +iim +iim +hyv +iim +iim +iim +iim +iim +qKN +iim +iim +iim +gDa baZ -wiy -iEV -vnd -pOC -rOq -uzF -yeU -mXX -upc -yeU -vvZ -wTb -mjO -ueC -kzW -fSN -wTb -lmy -ryN -fzM -mSj +hFR +iWP +xuP +rPA +xfy +ems +ckk +dNF +nbb +ckk +dGt +mOk +evJ +gDs +gHH +tPV +mOk +xhv +liF +rGQ +pdc aaa bdH bdH @@ -95362,65 +95362,65 @@ aaa aaa abs adq -vrU -lvT -jMO -txr -cuX -cuX -cuX -cuX -txr -wrM -udg -ubX -keD -ubX -udg -wrM -sZt -sJj -meC -pzv +czf +fbP +qmQ +xiV +dik +dik +dik +dik +xiV +hvZ +cej +pOV +dgi +pOV +cej +hvZ +ify +wvN +jSz +nHM aoe -qNW +cNR arb -cXK -cXK -cXK -cXK +ePw +ePw +ePw +ePw arb -tPH -cXK -cXK -cXK -uAw -dNT -dNT -aWe -dNT -gDj +fke +ePw +ePw +ePw +vyz +qXB +qXB +upa +qXB +lYp aoe -dLS -meC -sJj -xfF -xdU -ehY -ehY -kbn -hVk -xdU -xdU -kbn -ePb -ePb -ePb -ePb -kbn -hzO -wAs -hPL +uTf +jSz +wvN +qCu +tfI +jow +jow +tmJ +nDR +tfI +tfI +tmJ +anr +anr +anr +anr +tmJ +fCC +kdg +xKh pgD tQV aaa @@ -95461,69 +95461,69 @@ aaa aaa bdH aaa -oZE -mIj -quj -lhy +dJq +cNs +wic +tuF sGU -uwj +lOI opD -nhA -olW -olW -olW -nhA +oLX +oPg +oPg +oPg +oLX wFR -pTm +ktE nEF tXi -iBa -laA -gFp -pLa -gFp -tHz -cFT -cFT -lMh -wju -oRX -poy -wak -hzd -kVN -knO -gak -hWj -exq -niB -oRX -poy -lMh -cFT -cFT -wIE -vnd -iEV -vnd -fGp -niP -tyZ -yeU -hUq -oGv -yeU -nCV -rYr -cER -hUq -tjL -duO -prD -yhk -uQf -fzM -mSj +qkm +iYD +jPs +xUc +jPs +mSl +iim +iim +cEN +nlr +dCT +tnt +oRn +sjR +qFk +gJu +wgg +mZk +vJh +xHi +dCT +tnt +cEN +iim +iim +ten +xuP +iWP +xuP +frw +swi +lTG +ckk +dgE +fHo +ckk +rUu +ptW +gIg +dgE +nPG +ptX +dPF +dSd +caQ +rGQ +pdc aaa bdH bdH @@ -95564,29 +95564,29 @@ aaa aaa aaa abs -qDM +sLe avd akt qWI -txr -txr -txr -txr -txr -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -dLS -meC -pzv +xiV +xiV +xiV +xiV +xiV +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +uTf +jSz +nHM aoe -nsL +dxR fXg dfa dfa @@ -95597,34 +95597,34 @@ gzK arb arb arb -uAw -bVP -bVP -sDN -dNT -bkx +vyz +rUR +rUR +kKA +qXB +vHS aoe -gEc -meC -pzv -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -kbn -kbn -kbn -kbn -kbn +yic +jSz +nHM +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +tmJ +tmJ +tmJ +tmJ +tmJ ehj irS ilJ -vTF +agP tQV aaa aaa @@ -95664,69 +95664,69 @@ aaa aaa bdH aaa -oZE -mIj -quj -lhy +dJq +cNs +wic +tuF wfE -bJA +hWu opD wFR wFR aqn arT -nhA -wdZ -gNI -xyK -jEE -uOy -laA -gFp -hvR -iRm -dUj -oBt -oBt -qOJ -oBt -opY -eUO -oPV +oLX +eoL +lPV +suD +vbt +ilQ +iYD +jPs +iax +fHN +kZo +dVo +dVo +fVy +dVo +diW +hSx +wrB kan ojZ -dTa +jyo ojZ kan -lwM -jeh -vDZ -pDS -wxR -pDS -pDS -sgZ -jdW -dlE -mOG -ifQ -ubj -qFc -evH -gID -gZZ -iEl -brg -nOv -uLy -ebc -nCV -www -wTb -dzA -biv -fzM -mSj +cpq +wGn +njv +dqo +iMg +dqo +dqo +whs +kdb +ePD +vNn +sFE +wkQ +vZx +sIS +kYM +iWA +jnC +aoz +dec +nxk +uOn +rUu +lUg +mOk +oCa +dXt +rGQ +pdc aaa bdH aaa @@ -95768,65 +95768,65 @@ aaa aaa abs adq -aNq -akt -awW -txr -ych -upk -mOQ -mOQ -pJq -uKz -uKz -uKz -sHn -lcL -lcL -lcL -pJq -hCT -fcz -pzv +eeJ +akt +awW +xiV +xcY +tfR +sfK +sfK +vfN +fmV +fmV +fmV +kHv +boF +boF +boF +vfN +gZI +wLM +nHM aoe -qNW +cNR koB -cws -cws -cws -cws +vQE +vQE +vQE +vQE arb -vvO +mrq aoe aoe -rSJ +nWj aoe aoe aoe aoe -iEE +ndE aoe aoe -gEc -fcz -pzv -pJq -tek -tek -tek -uuw -dYq -dYq -dYq -pJq -gui -kWQ -ehY -gui -kbn +yic +wLM +nHM +vfN +tZH +tZH +tZH +cyY +qdE +qdE +qdE +vfN +qul +crj +jow +qul +tmJ baw sMM -fNk +rpE pgD tQV aaa @@ -95867,69 +95867,69 @@ aaa aaa bdH aaa -oZE -mIj -uOz -lhy +dJq +cNs +fyh +tuF wfE -vOw +aDR opD wFR wFR -tho -tho -tho -tho -tho -tho -tho -tho -tho -gFp -pLa -tUc +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +jPs +xUc +dEd baZ -hiO -cFT -cFT -cFT -cFT -iVf -cPS +nXs +iim +iim +iim +iim +hyv +vwe vhX -rMo -hqS -uKr +jab +gaK +nnl vhX -hne -iVf -cFT -cFT -cFT -cFT -kkD +jYl +hyv +iim +iim +iim +iim +nXv baZ -wiy -mAW -wbn -tho -tho -tho -tho -tho -tho -tho -tho -tho -jrp -hUq -nCV -pSC -wTb -yhk -kgf -fzM -mSj +hFR +eMO +jbm +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +oGh +dgE +rUu +jll +mOk +dSd +ljy +rGQ +pdc aaa bdH aaa @@ -95971,65 +95971,65 @@ aaa aaa abs adq -gSE -dUi -urF -txr -cTu -fra -wrM -wrM -pJq -uKz -uKz -uKz -uWd -lcL -lcL -lcL -pJq -xxA -meC -pzv +rIt +hCP +vCa +xiV +jTq +qTi +hvZ +hvZ +vfN +fmV +fmV +fmV +iIG +boF +boF +boF +vfN +qzU +jSz +nHM aoe -gsS +vcf koB -hvM -hvM -hvM -hvM +jQI +jQI +jQI +jQI arb -jtL +beD aoe -gSb -fXj -tWX +iqk +rPQ +hHT aoe -ftQ -opk -tIH +grW +vEY +pLR aRJ ajl -gEc -meC -pzv -pJq -tek -tek -tek -gBt -dYq -dYq -dYq -pJq -kWQ -ehY -ehY -fhF -kbn -fND -rcR -kDm +yic +jSz +nHM +vfN +tZH +tZH +tZH +sOM +qdE +qdE +qdE +vfN +crj +jow +jow +roX +tmJ +tRb +tbS +dyS pgD tQV aaa @@ -96070,69 +96070,69 @@ aaa aaa bdH aaa -oZE -mIj -quj -lhy +dJq +cNs +wic +tuF wfE -bqP +myQ opD -jic -sJP -tho -ntN -ntN -ntN -wBt -qLa -qLa -qLa -tho -kEW -jef -rEE +fuk +pdM +bcY +fpr +fpr +fpr +dwT +fvy +fvy +fvy +bcY +xoj +thZ +dHy bCd -poy -cPS -olH -kbb -xIm -pZk -muj +tnt +vwe +qKN +qKA +kbz +kfe +wQm vhX -qKV -pBP -kBa +gtd +nke +knl vhX -veM -pZk -xIm -rkv -olH -dsy -tuj +kFu +kfe +kbz +qUv +qKN +jUi +nFa bCd -xjY -rWG -mWU -tho -cBe -cBe -cBe -kWv -oUo -oUo -oUo -tho -gta -hUq -hKN -uTg -wTb -jey -kgf -fzM -mSj +tod +wdt +moq +bcY +eru +eru +eru +cki +ovl +ovl +ovl +bcY +irN +dgE +ibU +gFP +mOk +nds +ljy +rGQ +pdc aaa bdH aaa @@ -96174,65 +96174,65 @@ bdH bdH abs adq -tCi -lvT -jMO -txr -txr -wCP -udg -kFG -pJq -oPr -oPr -oPr -uWd -lcL -lcL -lcL -pJq -gEc -whK -qtN -ews -khM +cqZ +fbP +qmQ +xiV +xiV +oWS +cej +dfD +vfN +hNA +hNA +hNA +iIG +boF +boF +boF +vfN +yic +pBF +pwC +lvD +vJN gzK -cXK -cXK -cXK -cXK -cXK -cXK -pms -isp -dNT -pro -vXr -ofJ -ekS -tIH +ePw +ePw +ePw +ePw +ePw +ePw +ubt +pUs +qXB +ucx +psM +mPz +jdx +pLR aRK ajl -ehc -meC -pzv -pJq -tek -tek -tek -gBt -eZV -eZV -eZV -pJq -dtt -ehY -xdU -kbn -kbn -qQH -wAs -pWd +spE +jSz +nHM +vfN +tZH +tZH +tZH +sOM +xmt +xmt +xmt +vfN +mTt +jow +tfI +tmJ +tmJ +veV +kdg +hda pgD tQV bdH @@ -96273,69 +96273,69 @@ aaa aaa bdH aaa -oZE -mIj -quj -tMw +dJq +cNs +wic +ugY wfE wfE -bij +nlZ wfE wfE -tho -ntN -ntN -ntN -qeG -qLa -qLa -qLa -tho -gFp -pLa -gFp +bcY +fpr +fpr +fpr +iWW +fvy +fvy +fvy +bcY +jPs +xUc +jPs bCd -bOH -iLv +whi +fdr kan kan -mBy -yaf +sfc +uLr kan kan kan -oCO +ueB kan kan kan -gpk -ipG +egg +mFY kan kan -rQa -qhR +ruj +ohT bCd -vnd -mAW -vnd -tho -cBe -cBe -cBe -rWA -oUo -oUo -oUo -tho -myX -nCs -yeU -pyM -wTb -uyI -kGl -fzM -mSj +xuP +eMO +xuP +bcY +eru +eru +eru +bPA +ovl +ovl +ovl +bcY +tlW +opA +ckk +uLF +mOk +eUT +ujj +rGQ +pdc aaa bdH aaa @@ -96361,98 +96361,98 @@ aaa aaa aab bdH -baA -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ +qDX +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu abw -sZP +jRk awW akt awW -xCt -bZM -udg -xKS -kFG -pJq -uCZ -uCZ -uCZ -pJq -wQI -wQI -wQI -pJq -gEc -lZv -pVY +lkj +cXa +cej +xiU +dfD +vfN +gdQ +gdQ +gdQ +vfN +oDJ +oDJ +oDJ +vfN +yic +fUw +rkE aoe -xiq +gYq wUd -cws -cws -cws -jov -oIg -oIg +vQE +vQE +vQE +oWh +olS +olS aoe -fCg -ecw -mxd +dOk +tJY +uIy aoe -keC -ekS -cUi -twD +pru +jdx +ljD +flY ajl -xxA -fcz -pzv -pJq -xRq -xRq -xRq -pJq -uMO -uMO -uMO -pJq -kWQ -gui -xdU -xfF -aLu +qzU +wLM +nHM +vfN +cVR +cVR +cVR +vfN +etq +etq +etq +vfN +crj +qul +tfI +qCu +oBE baw sMM baw -hez +vEe trb -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -psN +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +vlu +ckx aaa aab aaa @@ -96478,65 +96478,65 @@ aKR aKR aKR aKR -lhy -quj -chI -quj -quj -rbJ -ttW -tho -ntN -ntN -ntN -qeG -wQl -wQl -wQl -tho -gFp -pLa -qwW +tuF +wic +xDv +wic +wic +sBJ +bfp +bcY +fpr +fpr +fpr +iWW +bhX +bhX +bhX +bcY +jPs +xUc +lBD kan kan kan kan -qty -pBP -sGl -xwf -wyL -fpH -pBP -jSE -wyL -wqg -fvZ -pBP -sOT +xsC +nke +dgK +ome +wST +dND +nke +uEh +wST +hMx +ogk +nke +vDC kan kan kan kan -eqp -xEk -vnd -tho -aVE -aVE -aVE -rWA -oUo -oUo -oUo -tho -jgZ -yeU -yeU -pyM -wTb -jey -kGl +xYa +hZM +xuP +bcY +nrk +nrk +nrk +bPA +ovl +ovl +ovl +bcY +cxf +ckk +ckk +uLF +mOk +nds +ujj bVU bVU bVU @@ -96564,7 +96564,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -96579,27 +96579,27 @@ aag aag aag abw -sZP +jRk awW akt -qkq -txr -txr -txr -txr -txr -pJq -uCZ -uCZ -uCZ -pJq -wQI -wQI -wQI -pJq -gEc -meC -ugG +fam +xiV +xiV +xiV +xiV +xiV +vfN +gdQ +gdQ +gdQ +vfN +oDJ +oDJ +oDJ +vfN +yic +jSz +qsI sqf sqf sqf @@ -96610,36 +96610,36 @@ sqf ajl ajl ajl -uJu -idT -wcX +xcx +bgo +mPR aoe -vwM -aUP -ekS -cAa -xfg -sJj -meC -pzv -pJq -xRq -xRq -xRq -pJq -uMO -uMO -uMO -pJq -kbn -kbn -kbn -kbn -kbn +oya +sSi +jdx +kpM +xTu +wvN +jSz +nHM +vfN +cVR +cVR +cVR +vfN +etq +etq +etq +vfN +tmJ +tmJ +tmJ +tmJ +tmJ nTH sMM baw -aZp +sqg trb aag aag @@ -96655,7 +96655,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -96666,96 +96666,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -jUe -lJs -lJs -lJs -lJs -lJs -lJs -jUe -lJs +nuo +nuo +nuo +nuo +nuo +ooX +nuo +nuo +nuo +nuo +nuo +nuo +ooX +nuo aLL -pMG -lxe -hCv -hJr -llX -frB -ivY -tho -xHK -xHK -xHK -tho -oVc -oVc -oVc -tho -gFp -pLa -gFp +aOm +igc +nbn +oZg +vQW +eut +tra +bcY +mwV +mwV +mwV +bcY +pSF +pSF +pSF +bcY +jPs +xUc +jPs kan -jfT -guK -lzc -xcw -pBP -wvO -pBP -pBP -pBP -pBP -pBP -pBP -pBP -wvO -pBP -dpG +xBW +pyu +vfD +pbe +nke +icc +nke +nke +nke +nke +nke +nke +nke +icc +nke +qXp kan -kjo -wUQ +jvi +aAi kan -vnd -xEk -vnd -tho -mvb -mvb -mvb -tho -rdL -rdL -rdL -tho -cEn -yeU -yeU -pyM -wTb -jby -fWI +xuP +hZM +xuP +bcY +xmj +xmj +xmj +bcY +chx +chx +chx +bcY +frg +ckk +ckk +uLF +mOk +hCE +pvr bSf -rGu -gGe -rGu -rGu -rGu -rGu -rGu -rGu -rGu -gGe -rGu -rGu -rGu -gGe -rGu +mvV +aCB +mvV +mvV +mvV +mvV +mvV +mvV +mvV +aCB +mvV +mvV +mvV +aCB +mvV bVU aaa aab @@ -96767,7 +96767,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -96783,35 +96783,35 @@ aag aag abs adq -qZS -dUi -iaz -txr -cuX -cuX -cuX -jbg -pJq -uCZ -uCZ -uCZ -pJq -wQI -wQI -wQI -pJq -gEc -meC -pzv +kxi +hCP +gIV +xiV +dik +dik +dik +oDd +vfN +gdQ +gdQ +gdQ +vfN +oDJ +oDJ +oDJ +vfN +yic +jSz +nHM sqf -mox -kIt -cjj -jsQ -jsQ +tln +gue +lUt +hFB +hFB sqf -rmi -cwR +sPv +fco ajl ajl ajl @@ -96819,29 +96819,29 @@ ajl ajl ajl ajl -kwr -cAa +rDG +kpM ajl -vbw -meC -pzv -pJq -xRq -xRq -xRq -pJq -uMO -uMO -uMO -pJq -ePb -ePb -ePb -mlx -kbn -mIA -rcR -qXT +cWD +jSz +nHM +vfN +cVR +cVR +cVR +vfN +etq +etq +etq +vfN +anr +anr +anr +sce +tmJ +lio +tbS +ihp pgD tQV aag @@ -96858,7 +96858,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -96869,96 +96869,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -uoU -niw +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +faD +gtj aLL aLL -aYK +exj aLL aLL aLL aLL aLL -tho -xHK -xHK -xHK -tho -oVc -oVc -oVc -tho -gFp -pLa -gFp +bcY +mwV +mwV +mwV +bcY +pSF +pSF +pSF +bcY +jPs +xUc +jPs kan -jGw -umK +bXh +xab kan -hgx -coF -xxu -pBP -pBP -aMK -aMK -aMK -pBP -pBP -gYA -fgz -aCU -nLQ -qCk -swU +rMQ +ldc +xAz +nke +nke +gJY +gJY +gJY +nke +nke +mtd +wYC +xTG +eAJ +luq +vpF kan -vnd -mAW -vnd -tho -mvb -mvb -mvb -tho -rdL -rdL -rdL -tho +xuP +eMO +xuP +bcY +xmj +xmj +xmj +bcY +chx +chx +chx +bcY bSf bSf auW bSf bSf -vKK +gDr bSf bSf -alz -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -vqA -rGu +emM +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +viv +mvV bVU aaa aab @@ -96970,7 +96970,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -96986,65 +96986,65 @@ aag aag abs adq -tCi -lvT -jMO -txr -cuX -cuX -cuX -cuX -pJq -sCo -uCZ -uCZ -pJq -wQI -wQI -wQI -pJq -gEc -fcz -pzv +cqZ +fbP +qmQ +xiV +dik +dik +dik +dik +vfN +cDg +gdQ +gdQ +vfN +oDJ +oDJ +oDJ +vfN +yic +wLM +nHM sqf -fWS -nbv -uMX -uMX -uMX +qHk +nYS +jwT +jwT +jwT sqf -xYb -wZe -aok +frH +jWK +sxx ajl -eNS -uOD -mhK -feh +izs +fGp +tKV +ash ajl -eie -cAa +smz +kpM ajl -vef -fcz -pzv -pJq -xRq -xRq -xRq -pJq -uMO -uMO -oxc -pJq -ePb -ePb -ePb -ePb -kbn -qQH -wAs -pWd +pHy +wLM +nHM +vfN +cVR +cVR +cVR +vfN +etq +etq +ueT +vfN +anr +anr +anr +anr +tmJ +veV +kdg +hda pgD tQV aag @@ -97061,7 +97061,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -97072,96 +97072,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -phH +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +rVI aLL -fpa +qVx bbS aLL -tsi -iVB -gom -kPh -tho -xHK -xHK -xHK -tho -oVc -oVc -oVc -tho -exB -jef -rEE +sCV +bfF +wyj +rkm +bcY +mwV +mwV +mwV +bcY +pSF +pSF +pSF +bcY +hSp +thZ +dHy bst bst bst bst bst bst -jjG -pBP -pBP -aWG -qvr -sqO -pBP -pBP -pvi +oGs +nke +nke +umZ +jYD +ydu +nke +nke +koo biA biA biA biA biA biA -xjY -nFU -dtb -tho -mvb -mvb -mvb -tho -rdL -rdL -rdL -tho -tFG -uvN -jDj -jKb +tod +jpi +leZ +bcY +xmj +xmj +xmj +bcY +chx +chx +chx +bcY +lTs +uxU +fXq +vUq bSf weC -kfo +mlU bSf -qPT -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu +lsw +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV bVU aaa aab @@ -97173,7 +97173,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -97188,67 +97188,67 @@ aag aag aag abw -sZP +jRk awW akt awW -bJv -cuX -cuX -cuX -cuX -pJq -uCZ -uCZ -uCZ -pJq -wQI -wQI -wQI -pJq -gEc -lZv -oBu +may +dik +dik +dik +dik +vfN +gdQ +gdQ +gdQ +vfN +oDJ +oDJ +oDJ +vfN +yic +fUw +cRa sqf -xOy -cOk -lme -rJI -rJI +ldK +iMQ +ejz +cyf +cyf sqf -kgW -rDL -gbL -tre -eBy -fDA -vOx -wfR -uXh -ofJ -cAa +qhl +pkb +bZl +eDH +ewM +weL +dEo +vTw +ezh +mPz +kpM gWG -gEc -fcz -pzv -pJq -xRq -xRq -xRq -pJq -uMO -uMO -uMO -pJq -ePb -ePb -ePb -ePb -pVo +yic +wLM +nHM +vfN +cVR +cVR +cVR +vfN +etq +etq +etq +vfN +anr +anr +anr +anr +faJ baw sMM baw -jhq +xKn trb aag aag @@ -97264,7 +97264,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -97275,96 +97275,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -phH +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +rVI aLL -edr +aNg bbS aLL -lcF +pPS aLW aLW -sdo -tho -xHK -xHK -xHK -tho -oVc -oVc -pQT -tho -cpU -pLa -gFp +cyR +bcY +mwV +mwV +mwV +bcY +pSF +pSF +vrZ +bcY +umj +xUc +jPs bst -ecc -wQJ -kes -xAQ +xuX +voz +dvt +mDo bkE -gQf -pBP -kzC -xwQ -eoz -xwQ -cFm -pBP -mmP +dTF +nke +lui +gHC +oXO +gHC +mph +nke +lAD cpJ -iwR -gZE -xni -pHv +iLv +cRf +nXk +hFV biA -vnd -xEk -hzB -tho -lKn -mvb -mvb -tho -rdL -rdL -rdL -tho -wap +xuP +hZM +hwt +bcY +ntk +xmj +xmj +bcY +chx +chx +chx +bcY +krV bTO bTO -hFJ +nNB bSf cpk -jDj +fXq bSf -qPT -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu +lsw +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV bVU aaa aab @@ -97376,7 +97376,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -97391,67 +97391,67 @@ aag aag aag abw -sZP +jRk awW akt -haw -txr -cuX -cuX -cuX -cuX -pJq -uCZ -uCZ -uCZ -pJq -wQI -wQI -wQI -pJq -gEc -fcz -pzv +hTC +xiV +dik +dik +dik +dik +vfN +gdQ +gdQ +gdQ +vfN +oDJ +oDJ +oDJ +vfN +yic +wLM +nHM sqf -olK -cOk -sEc -bwP -nPk +gHV +iMQ +evY +kol +qMX sqf ajl -tYV +yfX ajl ajl -hkO -ndR -eBy -hvG -uXh -ofJ -cAa +hpG +irG +ewM +qMO +ezh +mPz +kpM gWG -gEc -fcz -pzv -pJq -xRq -xRq -xRq -pJq -uMO -uMO -uMO -pJq -ePb -ePb -ePb -ePb -kbn +yic +wLM +nHM +vfN +cVR +cVR +cVR +vfN +etq +etq +etq +vfN +anr +anr +anr +anr +tmJ xuY sMM baw -ssy +ddd trb aag aag @@ -97467,7 +97467,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -97478,96 +97478,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -phH -ygP +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +rVI +nCw bbS bbS -ygP +nCw bbS xka uLn uoA -tho -xHK -xHK -xHK -tho -oVc -oVc -oVc -tho -gFp -pLa -gFp +bcY +mwV +mwV +mwV +bcY +pSF +pSF +pSF +bcY +jPs +xUc +jPs bst -hJA -vBl -vDl -wVf +dqZ +ifE +nJV +vXe bkE -bvu -bMi -ofB -bMi -bMi -bMi -ofB -bMi -tcR +vtL +kKH +pTL +kKH +kKH +kKH +pTL +kKH +nnw cpJ -fVp -yju -eWe -lwk +ubF +fTS +geU +nnH biA -vnd -xEk -vnd -tho -mvb -mvb -mvb -tho -rdL -rdL -rdL -tho +xuP +hZM +xuP +bcY +xmj +xmj +xmj +bcY +chx +chx +chx +bcY hkB bTO qSm cls -rtm +gFy weC cls -tKA -qPT -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu +qJa +lsw +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV bVU aaa aab @@ -97579,7 +97579,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -97595,65 +97595,65 @@ aag aag abs adq -qZS -dUi -iaz -txr -cuX -cuX -cuX -cuX -pJq -uCZ -uCZ -uCZ -pJq -wQI -wQI -wQI -pJq -eXc -fcz -pzv +kxi +hCP +gIV +xiV +dik +dik +dik +dik +vfN +gdQ +gdQ +gdQ +vfN +oDJ +oDJ +oDJ +vfN +tYK +wLM +nHM sqf sqf -uOe +myy sqf sqf sqf sqf -mif -nnN -cKu +wrr +lOe +kSn ajl -klW -mlW -dsD -akR +bYr +rfU +kaW +vuU ajl -iwG -cAa +kLi +kpM ajl -dLS -fcz -pzv -pJq -xRq -xRq -xRq -pJq -uMO -uMO -uMO -pJq -ePb -ePb -ePb -ePb -kbn -mIA -rcR -qXT +uTf +wLM +nHM +vfN +cVR +cVR +cVR +vfN +etq +etq +etq +vfN +anr +anr +anr +anr +tmJ +lio +tbS +ihp pgD tQV aag @@ -97670,7 +97670,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -97681,96 +97681,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -mZX +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +aKr aLL -tse +uTt xYB aLL -vjl +onK aLW aLW -gle -tho -xHK -xHK -xHK -tho -oVc -oVc -oVc -tho -gFp -pLa -cNV +fpY +bcY +mwV +mwV +mwV +bcY +pSF +pSF +pSF +bcY +jPs +xUc +oBD bst -vjn -clU -vtk -eKG -yhl -kxZ -dpG -tUX -nCj -pBP -dpG -tUX -nCj -rWC -bDC -fWU -fnG -vjQ -pVM +lQZ +mKR +qJL +lMR +jdr +gph +qXp +evm +jUm +nke +qXp +evm +jUm +tUz +dpA +uCV +wQE +xXY +fjw biA -vnd -xEk -vnd -tho -mvb -mvb -mvb -tho -rdL -rdL -rdL -tho -rZU +xuP +hZM +xuP +bcY +xmj +xmj +xmj +bcY +chx +chx +chx +bcY +wwM bTO xMf -hEg +qzb bSf weC -jwE +aUy bSf -uvk -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu +aFM +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV bVU aaa aab @@ -97782,7 +97782,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -97798,65 +97798,65 @@ aag aag abs adq -ulV -lvT -gsj -txr -txr -txr -txr -txr -pJq -fmY -fmY -fmY -pJq -pJq -pJq -pJq -pJq -kjK -meC -qOu +hCg +fbP +tvr +xiV +xiV +xiV +xiV +xiV +vfN +xEq +xEq +xEq +vfN +vfN +vfN +vfN +vfN +xim +jSz +hZC ajl -qQq -ekS -ybD -bIB -nGJ +gvb +jdx +vxn +nqX +nbP ajl ajl ajl ajl ajl -moz -moz -jWD -moz +oUI +oUI +tcK +oUI ajl -lfI -dLH +hdL +inl ajl -eXc -meC -ucK -pJq -pJq -pJq -pJq -pJq -fmY -fmY -fmY -pJq -kbn -kbn -kbn -kbn -kbn -rtJ -wAs -dLU +tYK +jSz +xXW +vfN +vfN +vfN +vfN +vfN +xEq +xEq +xEq +vfN +tmJ +tmJ +tmJ +tmJ +tmJ +tVN +kdg +wDf pgD tQV aag @@ -97873,7 +97873,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -97884,96 +97884,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -phH +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +rVI aLL -fpa +qVx bbS aLL -utC -hRv +aAI +nTR aLW gFa -tho -xHK -xHK -xHK -tho -oVc -oVc -oVc -tho -gFp -pLa -gFp +bcY +mwV +mwV +mwV +bcY +pSF +pSF +pSF +bcY +jPs +xUc +jPs bst -uni -vBl -tog -ror +jsX +ifE +sCU +ptb bkE -fhp -pBP -hcb -pBP -pBP -pBP -hcb -pBP -iSB +hwf +nke +kqq +nke +nke +nke +kqq +nke +xsV cpJ -vUJ -skT -eWe -skt +kOc +iqg +geU +fif biA -vnd -xEk -vnd -tho -mvb -mvb -mvb -tho -rdL -rdL -rdL -tho -vMw -dBN -gqD -yls +xuP +hZM +xuP +bcY +xmj +xmj +xmj +bcY +chx +chx +chx +bcY +bgF +qWY +iwj +onl bSf fvN -kfo +mlU bSf -qPT -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu +lsw +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV bVU aaa aab @@ -97985,7 +97985,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -98000,64 +98000,64 @@ aag aag aag abw -sZP +jRk awW awW awW -bLE -tYI -tYI -tYI -tYI -mUX -vAx -oqi -oqi -dyS -tYI -tYI -rTf -tYI -mcp -meC -sJj -mjN -dte -ekS -ekS -ekS -iei -xdm -xdm -cqA -xdm -xdm -xdm -xdm -dsD -xdm -xdm -dte -iei -mjN -sJj -meC -vmQ -tYI -fjC -tYI -tYI -bFH -vAx -vAx -vAx -cFQ -tYI -tYI -tYI -tYI -bLE -gqm +rma +fPK +fPK +fPK +fPK +bdu +kWB +reV +reV +eCM +fPK +fPK +lni +fPK +ioy +jSz +wvN +feT +gJe +jdx +jdx +jdx +dkI +rqT +rqT +pQe +rqT +rqT +rqT +rqT +kaW +rqT +rqT +gJe +dkI +feT +wvN +jSz +wfK +fPK +aEL +fPK +fPK +bjx +kWB +kWB +kWB +fFF +fPK +fPK +fPK +fPK +rma +cFg baw qYC kwo @@ -98076,7 +98076,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -98087,96 +98087,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -lJs -kXG +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +nuo +qwn aLL aLL -aYK +exj aLL aLL aLL aLL -qgm -tho -tho -tho -tho -tho -fmQ -jft -jft -tho -kts -pLa -gFp +pRQ +bcY +bcY +bcY +bcY +bcY +bki +nxm +nxm +bcY +urt +xUc +jPs bst -foU -lQA -jEp -mcd +gJx +gVT +flx +fcn bkE -mie -pBP -pBP -fQd -xDc -obT -pBP -pBP -vnz +jxn +nke +nke +uwc +xja +axj +nke +nke +lTg cpJ -ids -ngS -doa -hKV +lXj +obT +guQ +clU biA -vnd -xEk -xFi -tho -kEo -kEo -pqd -tho -tho -tho -tho -tho +xuP +hZM +eND +bcY +ueC +ueC +wIN +bcY +bcY +bcY +bcY +bcY bSf bSf -kGw +qcW bSf bSf -vKK +gDr bSf bSf -lWl -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu -rGu +wJT +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV +mvV bVU aaa aab @@ -98188,7 +98188,7 @@ aaa aaa aab bdH -oZE +dJq aag aag aag @@ -98203,63 +98203,63 @@ aag aag aag abw -sZP +jRk awW aTm awW -bLE -tuv -tuv -tuv -tuv -rbt -rbt -wzJ -wzJ -wzJ -tuv -vuc -vuc -vuc -vuc -gie -xir -emC -hrx -hrx -hrx -hrx -gHV -hrx -hrx -hrx -hrx -dao -hrx -hrx -wkF -hrx -hrx -cpm -pGZ -emC -xir -gqE -vuc -vuc -vuc -vuc -tuv -wzJ -wzJ -wzJ -rbt -rbt -tuv -tuv -tuv -tuv -bLE +rma +fKJ +fKJ +fKJ +fKJ +tfV +tfV +xtQ +xtQ +xtQ +fKJ +gGg +gGg +gGg +gGg +nzd +kjf +mCt +lGC +lGC +lGC +lGC +kdv +lGC +lGC +lGC +lGC +nmo +lGC +lGC +kLX +lGC +lGC +ioP +cTh +mCt +kjf +dAx +gGg +gGg +gGg +gGg +fKJ +xtQ +xtQ +xtQ +tfV +tfV +fKJ +fKJ +fKJ +fKJ +rma ley vbB ley @@ -98279,7 +98279,7 @@ aag aag aag aag -mSj +pdc aaa aab aaa @@ -98290,96 +98290,96 @@ aaa aab aaa aKR -lJs -lJs -lJs -lJs -lJs -rRA -lJs -lJs -lJs -lJs -lJs -lJs -rRA -lJs +nuo +nuo +nuo +nuo +nuo +cDf +nuo +nuo +nuo +nuo +nuo +nuo +cDf +nuo aLL -bcG -grV -ith -qjn -hCd -tZx -vdA -vsg -ufd -dEw -ryS -ykW -mUp -oST -mUp -faa -eJc -uZe -gFp +reb +rkQ +nnI +nqv +kEx +xLj +pCu +gjX +pfl +qTR +vAZ +nVZ +rQi +aOk +rQi +gAF +ead +nhW +jPs bst bst bst bst bst bst -nOf -pBP -pBP -kGy +jfp +nke +nke +fPc kan -maK -iTr -pBP -vFp +pZs +klM +nke +siF biA biA biA biA biA biA -oaU -pnw -mOG -daI -ftd -tlm -vDo -spO -bUk -gNz -jlm -izh -ybs -njK -nbc -pHS -kaf -tbE -xcX +qgS +qav +vNn +iNN +gvv +fbp +daK +vzR +oHZ +lno +vVn +wgN +xon +ykN +iCm +fZk +uGU +vLF +tNN bSf -rGu -wCD -rGu -rGu -rGu -rGu -rGu -rGu -rGu -wCD -rGu -rGu -rGu -wCD -rGu +mvV +uJm +mvV +mvV +mvV +mvV +mvV +mvV +mvV +uJm +mvV +mvV +mvV +uJm +mvV bVU aaa aab @@ -98391,42 +98391,42 @@ aaa aaa aab bdH -mEM -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh +vQY +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi abs abs awW -kfa +tJZ ajE -bLE -sJj -edX -sJj -vEZ -iFk -iFk -iFk -iFk -edX -iFk -iFk -iFk -iFk -rFm -lZv -pzv +rma +wvN +kpF +wvN +uEU +dDr +dDr +dDr +dDr +kpF +dDr +dDr +dDr +dDr +gHO +fUw +nHM vOy vOy vOy @@ -98443,46 +98443,46 @@ vOy vOy vOy vOy -ghw -sjN +hbs +dKs sqf -vbw -lZv -pft -iFk -edX -iFk -iFk -iFk -iFk -iFk -iFk -edX -iFk -sJj -qFz -iFk -bLE -oon +cWD +fUw +rrv +dDr +kpF +dDr +dDr +dDr +dDr +dDr +dDr +kpF +dDr +wvN +xPM +dDr +rma +cpL dBp gVA tQV tQV -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -eJu +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +vcV aaa aab aaa @@ -98508,65 +98508,65 @@ aKR aKR aKR aKR -lWX -aAw -upl -aAw -aAw -qaB -igk -lWX -ith -kUj -pDG -rlv -nbp -nbp -nbp -tYd -gFp -lPF -gFp +xoQ +xjo +obH +xjo +xjo +iBn +lGa +xoQ +nnI +xMF +qoS +blv +sbe +sbe +sbe +gtc +jPs +wCX +jPs kan -htQ -wyL -uUH -lNH +cTR +wST +igG +lEh vhX -fYe -pBP -pBP -kIe +xtY +nke +nke +rKe dBH -geo -tPu -pBP -fAH +vXZ +dJk +nke +iXo vhX -fVN -mWY -qrx -mWY +cmz +dtc +fVj +dtc kan -vnd -xEk -vnd -uJc -wrt -wrt -wrt -uJc -ffn -gXz -cuP -tjf -iIy -ffn -jPt -hDn -rTi -bmQ -sXR +xuP +hZM +xuP +jsq +xhc +xhc +xhc +jsq +fzs +drP +elB +xPd +hsk +fzs +kDh +uhX +nOU +uBJ +jLN bVU bVU bVU @@ -98614,9 +98614,9 @@ biV aet biV aet -eUE +fvT aet -eUE +fvT aet abE abE @@ -98627,49 +98627,49 @@ abE abE abE abE -vgn -eQo -hdH +coM +kBJ +dDn vOy -teS -dZF -rWD -fVo -nLO +aPq +pfo +fqt +tQc +kYI vOy -hVy -uPf -kPg -oXV -ney -eVH -iIm +uWy +jnQ +kqZ +gsG +xSS +jCd +iDG vOy -tFV -qwV -lCu +xhs +uqK +kxx sqf -hOY -eQo -hdH -kya -kya -kya -kya -kya -kya -kya -kya -kya -kya -oal -vAv -vAv -vAv -vAv -vAv -vAv -gCr +hSE +kBJ +dDn +tMh +tMh +tMh +tMh +tMh +tMh +tMh +tMh +tMh +tMh +kYz +nnL +nnL +nnL +nnL +nnL +nnL +hGG aaa aaa aaa @@ -98709,69 +98709,69 @@ aaa aaa aaa bdH -oZE -uBI -lWX -aAw -ith +dJq +roN +xoQ +xjo +nnI aQF aQF aQF aQF -rzZ +jyK aQF -pNB -cVv -rlv -knh -oIK -knh -tYd -gFp -pLa -gFp +vRY +bJc +blv +kPW +mYW +kPW +gtc +jPs +xUc +jPs kan -biG -pBP -pBP -pBP -pwG -sJy -wEt -wEt -sub +jIf +nke +nke +nke +umV +qyn +jfL +jfL +osH dBH -geo -tPu -pBP -wvO -cwz -vSd +vXZ +dJk +nke +icc +kdn +mSG wJb wJb bPu kan -vnd -xEk -vnd -uJc -qUF -fSM -vlD -uJc -era -qbT -rTi -rTi -rTi +xuP +hZM +xuP +jsq +nyT +epQ +sma +jsq +rHk +upq +nOU +nOU +nOU bTq -rTi -rTi -rTi -tBa -sXR -tKk -mSj +nOU +nOU +nOU +svU +jLN +rTD +pdc bdH aaa aaa @@ -98813,66 +98813,66 @@ aaa aaa aaa acv -cJx -wBX -jAF -jAF -cJx -cJx -cJx +oXA +jVz +aQJ +aQJ +oXA +oXA +oXA aet -ssG -nam -nam -nam -nam -pmJ -oTd -kQy +qUE +vSb +vSb +vSb +vSb +eHJ +thh +fcN abE -jZi -xDb -jZi +hrW +umF +hrW vOy -qma -mFi -xfv -xcv -ilx +rpt +hLU +joS +gnU +tAA vOy -sEj +sLv rDV dwr rDV mTd gQF -mdZ +pWw vOy -hJo -qwV -lCu +aCQ +uqK +kxx sqf -jZi -iCZ -jZi -kya -tPD -tPD -tPD -tPD -lLy -kya -wBJ -uXW -kya -geq -vAv -ndB -eVA -lOQ -ibm -rgh -gCr +hrW +drI +hrW +tMh +bEJ +bEJ +bEJ +bEJ +kyx +tMh +gbr +lji +tMh +qHz +nnL +fFX +ftk +mpB +tiv +vym +hGG aaa aaa aaa @@ -98912,16 +98912,16 @@ aaa aaa aaa bdH -oZE -uBI -kAn -aAw -ith -hMK -hxd -hMK -qpv -lwY +dJq +roN +nHD +xjo +nnI +xau +gTo +xau +ibA +dZV aQF aQF aQF @@ -98930,33 +98930,33 @@ aQF aQF aQF aQF -tnV -jef -rEE +eBY +thZ +dHy kan -jsu -xDc -xME -jVs +jDE +xja +bae +jNL vhX -xxu -pBP -pBP -rLd +xAz +nke +nke +rUQ dBH -geo -tPu -pBP -gYA +vXZ +dJk +nke +mtd vhX -fzz -oTN -hwv -oTN +aQP +qlO +lie +qlO kan -xjY -nFU -nge +tod +jpi +tNm bJt bJt bJt @@ -98964,17 +98964,17 @@ bJt bJt bJt bJt -rTi -izp -izp -izp -izp -gRD -rTi -tBa -tBa -tKk -mSj +nOU +haw +haw +haw +haw +tsR +nOU +svU +svU +rTD +pdc bdH aaa aaa @@ -99016,66 +99016,66 @@ aaa aaa aaa acv -cJx +oXA alg bBC bBC aIx aIB -cJx +oXA aet kPZ acI acj vJZ wfZ -loX +vAv aef -fIY +cHW agA -qsz -hoy -pFt +gev +wPo +wII vOy -vjG -wXB -rBq -iwV -pGc +hnr +uAl +ctz +xNs +rEL vOy -kxi -kxi -uLH -kxi -ewP -kxi -dEp -neY -rSz -qwV -lCu +swU +swU +agW +swU +mah +swU +dts +dNR +wAT +uqK +kxx asn -qsz -pJU -pFt -kya -tPD -tPD -tPD -tPD -tPD -kya -aGU -xKO -kya -mFa -vAv -fag -gNc -fEt -mFa -qVE -gCr +gev +chT +wII +tMh +bEJ +bEJ +bEJ +bEJ +bEJ +tMh +nOp +etz +tMh +oub +nnL +qpr +cqb +dzP +oub +vzC +hGG aaa aaa aaa @@ -99115,69 +99115,69 @@ aaa aaa aaa bdH -oZE -uBI -lWX -qRD -ith -jtX -jtX -bSI -bSI -lwY -egg -pjC -iyk -lgB -lov -mEr -xbU +dJq +roN +xoQ +xxs +nnI +kch +kch +yhp +yhp +dZV +eTn +eEB +kDD +mXE +ala +qUk +evt aQF -lyM -lPF -qwW +pwa +wCX +lBD xMs xMs xMs xMs xMs xMs -nOf -pBP -pBP -nls +jfp +nke +nke +eaU kan -tGJ -fRK -pBP -jTO +fMn +lZg +nke +lzQ vMo vMo vMo vMo vMo vMo -eqp -xEk -ggd +xYa +hZM +lvS bJt xOL -iif -vCd -tOs -mcu -nRr -rTi -izp -izp -izp -izp -izp -rTi -sXR -tax -tKk -mSj +rHt +dEf +stf +jsN +qvF +nOU +haw +haw +haw +haw +haw +nOU +jLN +xqj +rTD +pdc bdH aaa aaa @@ -99225,60 +99225,60 @@ ahN uli uli uli -pye +ogA aet lwC aTT acl xxi qJj -loX +vAv aef aef -nfC -fMp -uhT -lbQ +gUF +kjL +jrq +aDY vOy -yie -dcm -lNd -hIh +fVE +jpd +isQ +gMs vOy vOy -tLC -lWd -iqV -trc -trc -aMn -oUs -neY -dUp -qwV -lCu +kJh +mWL +xHr +pYq +pYq +hQt +ahC +dNR +fyB +uqK +kxx asn -vLH -mEA -lbQ -kya -tPD -tPD -tPD -tPD -tPD -kya -shL -wGP -kya -dza -vAv -vAv -vAv -rFV -vAv -vAv -gCr +jxX +hRK +aDY +tMh +bEJ +bEJ +bEJ +bEJ +bEJ +tMh +xmx +wIb +tMh +oqY +nnL +nnL +nnL +pHF +nnL +nnL +hGG aaa aaa aaa @@ -99318,69 +99318,69 @@ aaa aaa aaa bdH -oZE -uBI -lWX -irF -ith -jgT -bSI -fIa -jBz -wLL -egg -wBL +dJq +roN +xoQ +dwb +nnI +joB +yhp +dmF +trR +xpv +eTn +dNX aRy aRy aRy aRy -iJJ +kJJ aQF -iPX -pLa -gFp +rel +xUc +jPs xMs -jJQ -cTk -qnJ -wsk +dZA +mnk +cph +aVO bgw -jue -pBP -pBP -xwf -wyL -wqg -pBP -pBP -ewl +kLy +nke +nke +ome +wST +hMx +nke +nke +dkV xqy -jry -tVM -qvs -lDe +haL +koF +tcM +nwN vMo -vnd -xEk -vnd +xuP +hZM +xuP lhB -nwE -jdb -pvx -jdb -jdb -kZv -rTi -izp -izp -izp -izp -izp -rTi -sXR -tBa -tKk -mSj +fLt +bws +lAd +bws +bws +orx +nOU +haw +haw +haw +haw +haw +nOU +jLN +svU +rTD +pdc bdH aaa aaa @@ -99423,71 +99423,71 @@ aaa aaa acf aet -oNT +bdB uli uli uli mov -irb +wOZ aet lhX aXc acl jlN qqn -loX +vAv bls aeH -mhR -qKb -hSo -lbQ +kMP +jLS +kEG +aDY vOy -rRG -unc -mYx -thB -vAp -nGj -jNl -kEd -hXP -gju -ozU -lvd -tMU -neY -hos -qwV -lCu +myY +ihs +kpL +eYl +iAu +mxa +xVR +jdo +wvc +kzq +jsK +wQj +xFp +dNR +sLt +uqK +kxx asn -vLH -fat -qCr -kya -tPD -tPD -tPD -tPD -tPD -kya -cIb -nWe -kya -mFa -mFa -fpr -odf -geq -qMz -geq -gCr +jxX +eRv +pqB +tMh +bEJ +bEJ +bEJ +bEJ +bEJ +tMh +xkD +tRr +tMh +oub +oub +qiL +jSO +qHz +gkB +qHz +hGG aaa -baA -vHZ -vHZ -vHZ -psN +qDX +vlu +vlu +vlu +ckx aaa aaa aaa @@ -99521,69 +99521,69 @@ aaa aaa aaa bdH -oZE -uBI -lWX -cJV -ith -oju -fdb -eTT -dwc -sWh -nXw -jJa +dJq +roN +xoQ +kpP +nnI +atB +kRr +eIG +nXc +qmK +fFp +gyp aRA aRA bQU bQU -wqT -tnQ -ubK -ezu -cJk +iGd +kvM +gRr +mvt +lPL xMs -cMY -okI -xUN -yaO +xGL +bko +mOY +iJa bgw -jhH -pBP -pBP -aMK -aMK -aMK -pBP -pBP -qEN +nhp +nke +nke +gJY +gJY +gJY +nke +nke +uOo xqy -xCi -vDB -gxw -xju +wnX +ygQ +nKe +hwN vMo -vnd -xEk -vnd +xuP +hZM +xuP lhB -ygz -jdb -tCl -jdb -jdb -fEJ -rTi -izp -izp -izp -izp -izp -rTi -sXR -sXR -tKk -mSj +jCB +bws +brm +bws +bws +dLo +nOU +haw +haw +haw +haw +haw +nOU +jLN +jLN +rTD +pdc aaa avo avo @@ -99625,74 +99625,74 @@ aaa aaa aaa acv -mnZ +lqz uli aIx uli uli mov -irb +wOZ aet lhX eYM uuR dHu qqn -loX +vAv aef -cVd +vxt agA -vLH -vzH -qCr +jxX +srm +pqB vOy -lmc -poD -dSE -jxt -yiG -gxl -gxl -vha -qzu -rSz -qwV -tPq -gal +yjk +uCK +rOG +wYF +giY +qmd +qmd +lAB +lDR +wAT +uqK +lrY +vhS vOy vOy -qAC -uSh +nCK +amZ sqf -irk -fat -lbQ -kya -kya -kya -kya -cDA -kya -kya -xAT -kya -kya -vAv -vAv -vAv -vAv -vAv -mFa -geq -gCr +vPU +eRv +aDY +tMh +tMh +tMh +tMh +kfW +tMh +tMh +uwS +tMh +tMh +nnL +nnL +nnL +nnL +nnL +oub +qHz +hGG aaa -oZE +dJq aag aag aag aag -vHZ -psN +vlu +ckx aaa aaa aaa @@ -99724,58 +99724,58 @@ aaa aaa aaa bdH -oZE -uBI -lWX -mlg -ith +dJq +roN +xoQ +tAj +nnI aQF aQF -nUK +rLe xIQ -hMS -egg +uWG +eTn rrK aRy feI brb cpp -mZU -oJH -gFp -pLa -gFp +wjj +iTp +jPs +xUc +jPs xMs -urb -oFY -cnj -hwU -hnP -xoD -pBP -cFm -uxx -jYN -sfw -kzC -pBP -xxW -nLC -iNf -xZf -fyT -xKH +hDj +fat +yaS +rFX +tUA +xve +nke +mph +fyc +pTP +ofz +lui +nke +tvW +sLX +hRp +djB +nLs +pIG vMo -vnd -xEk -vnd +xuP +hZM +xuP lhB -qqs -jdb -fmM -tWu -knB -cJa +foc +bws +iRv +qwf +pUZ +fGX bJt bJt bJt @@ -99783,10 +99783,10 @@ bJt bJt bJt bJt -sXR -tkm -tKk -mSj +jLN +hlN +rTD +pdc avo avo avs @@ -99828,13 +99828,13 @@ aaa aaa aaa acv -mnZ +lqz uli uli uli uli uli -cJx +oXA aet lhX acl @@ -99843,59 +99843,59 @@ acl qqn aef aef -fPR +dDl abE -aML -vzH -lbQ +tyQ +srm +aDY vOy -drK +cAp bIM -dwR -gbM -bkX -tBe -fhb -hXj -qzu -rSz -qwV -vnq -qSu -ozk -oul -aGI -dQg -nkO -qKb -hSo -lbQ -nnO -kya -vin -fLZ -rNK -ssh -kla -eXZ -kya +ryz +dfi +cKx +nHi +imj +vco +lDR +wAT +uqK +nKs +saL +xwS +tDG +pZi +eVC +wnE +jLS +kEG +aDY +faP +tMh +doh +vpP +txR +kNM +rCS +tjs +tMh lEf gel gel gel fkX -vAv -mFa -ifv -gCr -vHZ +nnL +oub +htZ +hGG +vlu aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -99927,74 +99927,74 @@ bdH bdH bdH bdH -oZE -uBI -kAn -aAw -ith -hMK -hxd -lwY +dJq +roN +nHD +xjo +nnI +xau +gTo +dZV xIQ -lKB +nWS aQF -hvS +nav aRy -vxI -vlr -cTr -xmI +vpm +jzd +rsR +orY aQF -hcM -pLa -gFp +rWB +xUc +jPs xMs -ovg -okI -qOj -lmP +xGT +bko +wGW +wGT bgw -xuV -bMi -tZn -krA -krA -krA -tZn -bMi -fZj +vhh +kKH +jWT +hKT +hKT +hKT +jWT +kKH +tyA xqy -ouP -iEZ -gxw -sjL +dbS +jaN +nKe +eeS vMo -vnd -xEk -vnd +xuP +hZM +xuP lhB -szf -jdb -czW -jdb -jdb -jdb -gdv -otA -iFz -dpk -jdb -vPz +oBr +bws +oZF +bws +bws +bws +hin +lEx +udh +nWJ +bws +ocL bJt -sXR -sXR -tKk -mSj +jLN +jLN +rTD +pdc avo avs avs -kMb -onI +dHH +iuP avs avs avo @@ -100033,64 +100033,64 @@ aaa acf ahy avZ -eOI -eOI -eOI +sjK +sjK +sjK uli -pye +ogA aet lhX acl acl acl qqn -loX +vAv aef afs agA -vLH -mEA -lbQ +jxX +hRK +aDY vOy -uTa -poD -dwR -phs -lWe -jbM -kxi -hXj -qfS -daP -jtu -ioq -gju -hYg -hwM -gju -cpX -nPz -fMp -jsg -lmh -qXn -nfP -oce -oce -wCG -qzQ -rNK -iqS -uee +tqW +uCK +ryz +scP +txM +uwK +swU +vco +tEQ +aLY +ntw +jeE +kzq +jnU +exS +kzq +tEM +xBO +kjL +umH +cPE +mUO +gaV +tba +tba +edI +xok +txR +fvG +jFb rfb -lVH -ycA -piV +oOm +wUM +mpc cHu -vAv -mFa -geq -gCr +nnL +oub +qHz +hGG aag aag aag @@ -100098,7 +100098,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -100130,75 +100130,75 @@ bdH bdH bdH bdH -oZE -uBI -lWX -sWN -ith -nwZ -bSI -lwY -hcU +dJq +roN +xoQ +fDO +nnI +xbb +yhp +dZV +dbQ aQF aQF -vCD +nXC aRy -xMY -noE -piN -rWj +tHy +qnx +sTx +jsz aWD -gFp -pLa -gFp +jPs +xUc +jPs xMs -iqA -iwx -oaj -oBm +vBc +rwt +lqw +fdV bgw -gSp -pBP -pBP -pBP -pBP -pBP -pBP -pBP -xRs +mgt +nke +nke +nke +nke +nke +nke +nke +rpl xqy -tLh -dWh -arx -wmp +lNG +ksK +hTB +ycT vMo -vnd -xEk -wbn +xuP +hZM +jbm bJt -ekh -jdb -cxT -xGt -fbZ -xGt -xGt -xGt -xGt -psH -cJa -pvD +oXx +bws +eHI +tfY +dos +tfY +tfY +tfY +tfY +vwt +fGX +sSA bJt -iig -sXR +nft +jLN avo avo avo avs -dYv -gwb -gwb -gnf +oWc +fMZ +fMZ +qCp avs avo aaa @@ -100236,64 +100236,64 @@ aaa acf aet aIx -eOI +sjK ceC -oDJ +tFs uli -irb +wOZ aet loV acK acm acK esK -sqJ -gJc +sra +iTC afs agA -vLH -mEA -lbQ +jxX +hRK +aDY vOy -puo +diK dRh -vat -mnB +rgG +uAi rQy vOy -wiA -hXj -vmF -ycP -vQd -aRm +cTz +vco +gqN +guH +hWi +eBJ vOy -dLu +edZ vOy -gMS -jow +cdK +omK vOy -xtj -mEA -lbQ -jMY -kya -dJy -iqS -rVX -nrJ -qHL -iqS -uee +efA +hRK +aDY +wYP +tMh +oZb +fvG +kUR +aGh +sFD +fvG +jFb rLv -ngL +fQA vZw -ngL +fQA cHu -vAv -geq -vAv -gCr +nnL +qHz +nnL +hGG aag aag aag @@ -100301,7 +100301,7 @@ aag aag aag aag -mSj +pdc bdH bdH aaa @@ -100333,75 +100333,75 @@ bdH bdH bdH bdH -oZE -uBI -aAw -lWX -upl -hJW -hJW -xtS +dJq +roN +xjo +xoQ +obH +pNX +pNX +xGz mzz aQF aQF -wpO +tHM aRy -rAd -gJE -rSC -rWj +vzA +bnQ +vfF +jsz aWD -rEE -jef -rEE +dHy +thZ +dHy xMs xMs xMs xMs xMs xMs -rpe -pBP -vNM -iTH -xDc -obT -mff -pBP -voM +fSP +nke +hsL +tkh +xja +axj +lpY +nke +qCe vMo vMo vMo vMo vMo vMo -xjY -nFU -sSV +tod +jpi +fwv bJt bJt -bRh -vAy -wmn +sFA +tAM +tKP bJt -spj +peS bJt -rnV -jdb -czW -jdb -qWJ +mgd +bws +oZF +bws +kEW bJt -xGw -sXR -gtw -eTC -eTC -kTJ -cKe -cKe -mTg -hZK +usQ +jLN +slw +oDV +oDV +lQd +gny +gny +cHi +eSM avs avo bdH @@ -100439,64 +100439,64 @@ aaa acf aet uli -eOI +sjK awe -wwL +tPK uli -bWD +qIz aet lhX acl acl acl qqn -loX +vAv aef afs agA -vLH -mEA -lbQ +jxX +hRK +aDY vOy -riO -rSA -iNC -iNC -iNC +cCm +xdm +fQT +fQT +fQT vOy -xcG -hXj -rAU -sXb -pJw -hRU +aPe +vco +xTn +ekI +ijD +foF vOy -dvz -wre -hUI -daK +isM +wSv +ksT +cro vOy -vLH -mEA -lbQ -kya -kya -jHr -iqS -kWF -hzS -pPW -iqS -uee -nCa +jxX +hRK +aDY +tMh +tMh +oYa +fvG +aOb +mwc +oYG +fvG +jFb +oAa vzp vZw -lhq +mEa cHu -vAv -nyb -vAv -gCr +nnL +dfV +nnL +hGG aag aag aag @@ -100504,7 +100504,7 @@ aag aag aag aag -mSj +pdc bdH bdH aaa @@ -100536,75 +100536,75 @@ bdH bdH bdH bdH -oZE -uBI -iBQ -grV -ith +dJq +roN +sdf +rkQ +nnI vMr vMr -lwY -qgd +dZV +tsD aQF aQF -wrH +xLt aRy -mwB -vHf -wIo -rWj +eBn +oXi +sol +jsz aWD -gFp -pLa -gFp -rPi +jPs +xUc +jPs +vua iXU hDw kzb -yav +xGx kan kan -pXf -sOM +ukT +jdT kan kan kan -pXf -dZn +ukT +gDw kan kan -amV +bPP vEH uFH tQd -rPi -vnd -xEk -vnd +vua +xuP +hZM +xuP yfS -urH -iIn -nRy -jON -lvB -qUa -qfx +nsd +xbh +eKh +sHz +oUu +nQe +lUp dYR -jdb -czW -sHE +bws +oZF +wLa wiI bJt -pvm -svh +uih +eTE avo avo avo avs -gwb -gwb -gwb -uGV +fMZ +fMZ +fMZ +yel avs avo bdH @@ -100642,11 +100642,11 @@ aaa acf aet avx -eOI -eOI -eOI +sjK +sjK +sjK uli -irb +wOZ aet lhX acl @@ -100655,59 +100655,59 @@ acl qqn aef aef -kOZ +vER abE -aML -fat -lbQ +tyQ +eRv +aDY vOy -iQH +rlY gLc -dIq -ffa -rpS +fBI +gOZ +uRW vOy vOy -oKW +lJw vOy -dCd +qMo vOy vOy vOy -uca -vmF -vmF -fQA +uRe +gqN +gqN +pSJ kgs -vLH -fat -lbQ -jLl -lzG -iqS -iqS -rVX -rNK -rNK -iqS -uee +jxX +eRv +aDY +eFy +vDc +fvG +fvG +kUR +txR +txR +fvG +jFb rfb -ngL +fQA vZw -ngL +fQA cHu -vAv -geq -vAv -gCr -lnh +nnL +qHz +nnL +hGG +mwi aag aag aag aag aag aag -mSj +pdc bdH bdH aaa @@ -100739,74 +100739,74 @@ bdH bdH bdH bdH -oZE -uBI -xTc -tNi -ith -oju -fdb -lwY +dJq +roN +jWa +xcM +nnI +atB +kRr +dZV xIQ -wrO +hNi aQF -nxO +nGt aRy -mLN -mDt -erP -xmI +iwF +vyy +yir +orY aQF -ixs -lPF -gFp -rPi +faH +wCX +jPs +vua beH dcd beH -ozt +fvS beH neS beH beH tJR -uaL +gwI oEw beH beH neS beH -ozt +fvS beH beH beH -rPi -vnd -xEk -vnd +vua +xuP +hZM +xuP yfS -grK -uJr -tmY -djt -iIv -aGM -qfx +lvM +edH +hUx +xFg +dNW +nJY +lUp tsa -jdb -czW -jdb +bws +oZF +bws vwI bJt -bsd -tBa -tKk -mSj +lQm +svU +rTD +pdc avo avs avs -jKy -atR +ezv +mME avs avs avo @@ -100843,74 +100843,74 @@ bdH aaa aaa acv -mnZ +lqz uli uli uli uli uli -gPu +ruG aet lhX gsZ uxO bTt qqn -loX +vAv aef -ulj +cKf agA -vLH -fat -lbQ +jxX +eRv +aDY vOy -gRq -rSA -qwU -xYA -qwU +hnh +xdm +dkl +pUN +dkl vOy jFf -hXj -rkq -hVK +vco +tti +grS lmw vOy -ibF -peY -gZm -mEn -lEd +bos +hUu +paX +pVh +sOh kgs -vLH -fat -lbQ -jLl -kSr -bfa -bfa -iIG -roi -roi -rrY -uee +jxX +eRv +aDY +eFy +seK +uJQ +uJQ +osn +xOJ +xOJ +stu +jFb rLv -gpP -pFJ +gIL +jCs mRW cHu -vAv -mFa -geq -gCr +nnL +oub +qHz +hGG aaa -oZE +dJq aag aag aag aag -lnh -eJu +mwi +vcV bdH bdH aaa @@ -100942,69 +100942,69 @@ bdH bdH bdH bdH -oZE -uBI -qRD -eyZ -ith +dJq +roN +xxs +twE +nnI aQF aQF -ykQ +hUJ xIQ -bSI -egg +yhp +eTn olM aRy aRy eXr iFH -mZU -etA -gFp -hvR -ubK -rnD +wjj +pyQ +jPs +iax +gRr +ono emr emr emr -jNn +dRk quq duv beH beH beH -ozt +fvS beH beH beH fcf beH -orV +hnD rCO rCO rCO -snV -jdW -poi -vnd -oBQ -xjM -nzD -gNb -tYo -myt -aGM -qfx +kHb +kdb +oCu +xuP +emd +svJ +jPd +uEp +lnW +gcf +nJY +lUp rBj -jdb -czW -jdb -fet +bws +oZF +bws +lwb bJt -tBa -fvA -tKk -mSj +svU +pyG +rTD +pdc avo avo avs @@ -101046,72 +101046,72 @@ bdH bdH aaa acv -mnZ +lqz aIB aKg uli uli mov -irb +wOZ aet lhX kNO acl jlN qqn -loX +vAv aef nIS -nfC -fMp -fat -lbQ +gUF +kjL +eRv +aDY vOy -cel +cHe aSo -qwU -xYA -ehV +dkl +pUN +okt vOy vqZ -hXj -hGd -ctP +vco +pDQ +aru nDo vOy -crU -hXj -sZx -vmF -bhP +sIj +vco +tNB +gqN +gKM mmN -vLH -fat -lbQ -jLl -vlV -gGd -hgT -uYh -xBm -uZz -jHi -kya +jxX +eRv +aDY +eFy +opa +nhT +izA +rye +kiE +uIt +eIS +tMh qWR wJH wJH wJH sNR -vAv -mFa -geq -gCr +nnL +oub +qHz +hGG aaa -mEM -lnh -lnh -lnh -eJu +vQY +mwi +mwi +mwi +vcV aaa aaa bdH @@ -101145,69 +101145,69 @@ bdH bdH bdH bdH -oZE -uBI -xLD -lWX -ith -hMK -hxd -lwY -dFJ -wbK -eEZ -cul +dJq +roN +xRO +xoQ +nnI +xau +gTo +dZV +sLr +iSv +err +xmQ pOi pOi pOi pOi -xci -oJH -gFp -lPF -gFp -rPi +diG +iTp +jPs +wCX +jPs +vua eGZ ieX pfM -ozt +fvS rEf rWT emr emr usX -nsI +oTF rCO rCO rCO vVd eBg -bow +rSw bhq dcd eTd -rPi -vnd -pnw -fKF -rgF -qok -dOt -oyr -fFk -myt -qwg +vua +xuP +qav +wsL +tsU +mlj +ftq +caY +vWG +gcf +iAR cEi bJt -mIe -czW -jdb -qBY +jjL +oZF +bws +fzw bJt -fHI -tax -tKk -mSj +bio +xqj +rTD +pdc aaa avo avo @@ -101255,60 +101255,60 @@ aIB uli uli mov -irb +wOZ aet lwC tIK acl sNO qJj -loX +vAv aef nIS -wNH -fMp -fat -lbQ +mRM +kjL +eRv +aDY vOy -hDj -iKO -qwU -xYA -qwU +jvS +kZH +dkl +pUN +dkl vOy foP -hOC -sIu -jhk +lRV +fDu +fpK bVe vOy -chT -fOj -oSA -gxl -uWZ +aIV +ooy +gLr +qmd +fUd vOy -aML -fat -qCr -kya -kya -kya -kya -hpt -kya -kya -kya -kya -kya -vAv -vAv -vAv -vAv -vAv -mFa -ifv -gCr +tyQ +eRv +pqB +tMh +tMh +tMh +tMh +dzN +tMh +tMh +tMh +tMh +tMh +nnL +nnL +nnL +nnL +nnL +oub +htZ +hGG bdH bdH bdH @@ -101348,27 +101348,27 @@ bdH bdH bdH bdH -oZE -uBI -faT -aAw -ith -dkx -dkx -jnH -wtB -tQO -egg -ifk -ify -ify -ueK -ueK -gpl +dJq +roN +uvR +xjo +nnI +qcK +qcK +ilx +blt +tVH +eTn +dYs +kEv +kEv +bIQ +bIQ +mfL aQF -rEE -cBY -gEP +dHy +pcM +wBK bdd bdd bdd @@ -101379,7 +101379,7 @@ fUA beH spF uBN -ozt +fvS jMr eGZ beH @@ -101390,27 +101390,27 @@ bdd bdd bdd bdd -pdS -nFU -xjY +mTj +jpi +tod yfS -qri -nzD -hVM -akq -myt -aGM -qfx +vTm +jPd +eiV +krc +gcf +nJY +lUp kvU -qhw -slQ -jdb +cOO +syV +bws knK bJt -sXR -elH -tKk -mSj +jLN +gQm +rTD +pdc bdH bdH bdH @@ -101458,60 +101458,60 @@ ahN aIB aKg uli -pye +ogA aet abK acL acn cRK dXV -loX +vAv aef -cVd +vxt agA -vLH -mEA -lbQ +jxX +hRK +aDY vOy -qXA +bsv lea -qFs -mOC -rpS +eEy +bwx +uRW vOy vOy -wqj -wqj -wqj +sfk +sfk +sfk vOy vOy -rFq -kxi -kxi -kxi -uye +xYn +swU +swU +swU +cuP vOy -vLH -mEA -lbQ -oEN -myM -sQf -vTY -uYh -kya -qQw -qDy -jPW -kya -mFa -mFa -fpr -cNM -geq -mFa -geq -gCr +jxX +hRK +aDY +hxE +xGA +dJL +lky +rye +tMh +qAn +ksZ +sVG +tMh +oub +oub +qiL +ixg +qHz +oub +qHz +hGG bdH bdH bdH @@ -101551,69 +101551,69 @@ bdH bdH bdH bdH -oZE -uBI -nIe -aAw -ith -dkx -dkx -bSI +dJq +roN +pYs +xjo +nnI +qcK +qcK +yhp aNr -pus -egg -kcr -kcr -ofQ -gME -pPX -mPm +jdF +eTn +rSm +rSm +hjW +clD +bQW +xET aQF -gFp -lPF -gFp -bPY -jsC -seN -itT -nhO +jPs +wCX +jPs +fHt +cZn +xpW +nnK +iyG beH beH dwl bdd bdd -vUZ +pBa bdd bdd aMt beH beH -nhO -vHe -wvp -ncN -nJt -vnd -xEk -vnd +iyG +fNE +hUz +dTC +reK +xuP +hZM +xuP yfS -qri -nzD -lem -qPA -myt -aGM -qfx +vTm +jPd +gYD +dVM +gcf +nJY +lUp qTY -jdb -czW -dcV +bws +oZF +pXU tSp bJt -sXR -uQt -tKk -mSj +jLN +bmG +rTD +pdc bdH bdH bdH @@ -101655,66 +101655,66 @@ bdH aaa aaa acv -cJx +oXA uli bLO bLO bLO bLO -cJx -kRE -pwn -pwn -pwn -pwn -pwn -rKl +oXA +xye +rci +rci +rci +rci +rci +kWC aef -vsP +hAt abE -iNd -mEA -lbQ +lVw +hRK +aDY vOy vOy vOy -fPc -fPc -fPc +xwh +xwh +xwh vOy vOy -cJc +ghY wKP -kAq +xUk vOy vOy -fyC -qTz -hQX -orh -rTR +pDk +vQT +iwG +eZR +wpn vOy -rla -mEA -lbQ -oEN -bNI -fMa -iqS -uYh -lIy -cIb -uAd -cIb -kya -mFa -vAv -vAv -vAv -vAv -geq -vAv -gCr +gzS +hRK +aDY +hxE +kQH +cdJ +fvG +rye +eFZ +xkD +hgM +xkD +tMh +oub +nnL +nnL +nnL +nnL +qHz +nnL +hGG bdH bdH bdH @@ -101754,69 +101754,69 @@ bdH bdH bdH bdH -oZE -uBI -lWX -aAw -ith -oju -fdb -oju -fdb -exW +dJq +roN +xoQ +xjo +nnI +atB +kRr +atB +kRr +qdD aQF -sDk -sTf +nZP +wSS aQF aQF aQF aQF aQF -iWf -aCE -cmP +vsX +jdq +hZE bdg -pHV -iqj +nEC +sWp cwX vuA -mQb -mQb -mQb +sMO +sMO +sMO vuA -dNa -cuW -xWQ +ktK +ttX +rnE vuA -mQb -mQb -mQb +sMO +sMO +sMO vuA snb -fwa -oWS +khe +jZe bdg -xwy -ivo -aUr +fZf +fbJ +iSe bJt -uzW -lNp -hGc -iKh -sPM -jwC -qfx -pOd -jdb -czW -lEq +wPm +xZF +rYx +eQZ +ucn +lNT +lUp +uUp +bws +oZF +taI bJt bJt -sXR -tBa -tKk -mSj +jLN +svU +rTD +pdc bdH bdH bdH @@ -101858,37 +101858,37 @@ aaa aaa aaa acv -cJx -cJx -iBw -eiD -iBw -iiU -cJx +oXA +oXA +nyq +onx +nyq +dko +oXA aet -xCZ -kvL -dBF -scq -ewp -rZY -xdi -oFx +oKV +sSu +lbJ +bjV +hZR +fTA +qoG +ffq abE -aML -fat -duA -guk -pFt +tyQ +eRv +mwE +wPh +wII vOy vOy vOy vOy vOy vOy -wqj -wqj -wqj +sfk +sfk +sfk vOy vOy vOy @@ -101897,27 +101897,27 @@ vOy vOy vOy vOy -pFp -fat -lbQ -oEN -dit -rNK -rNK -tKU -dCq -etG -feU -vLf -kya -mFa -vAv -qZN -kEP -vAv -nyb -vAv -gCr +lMk +eRv +aDY +hxE +tdu +txR +txR +tiO +nlR +unf +xYu +cAC +tMh +oub +nnL +fSY +ruE +nnL +dfV +nnL +hGG bdH bdH bdH @@ -101957,11 +101957,11 @@ bdH bdH bdH bdH -oZE -uBI -fby -aAw -ith +dJq +roN +hbj +xjo +nnI aQF aQF aQF @@ -101971,55 +101971,55 @@ aQF aQF aQF aQF -bnw -xhL -xep -ith -iSu -wRk -iSu +bgX +cBe +riL +nnI +taD +uyz +taD bdg -uGX -hBv +noz +lVx fyD bdd -dmY -dmY -dmY +euc +euc +euc vuA -oha -dcX -kaZ +vSy +aaB +deL vuA -mQS -mQS -mQS +kYx +kYx +kYx bdd vPw -bRl -eGV +pMO +oae bdg -oei -cef -oei +iAZ +pFp +iAZ rde -lmL +oYm iMm mJi iMm iMm -plR +bVx bJt -uDq -jdb -czW -hBP +eQu +bws +oZF +wQQ bJt -wOX -sXR -tBa -tKk -mSj +hPx +jLN +svU +rTD +pdc bdH bdH bdH @@ -102060,14 +102060,14 @@ aaa aaa aaa aaa -nhB -dvG -kDw -dvG -dvG +xIP +imq +skk +imq +imq aNi aNi -qzq +mXZ aNi aNi aNi @@ -102078,20 +102078,20 @@ aNi aNi aNi aNi -rla -fat -ahW -ahW -lbQ +gzS +eRv +sNA +sNA +aDY vOy elR xXh xXh xXh dMK -bKi -nIz -hGm +jLz +gku +wGl elR xXh xXh @@ -102100,27 +102100,27 @@ dMK vOy vOy vOy -vLH -fat -lbQ -kya -oHq -rNK -rNK -qML -kya -kya -kya -kya -kya -mFa -fpG -mFa -nyb -vAv -ovx -vAv -gCr +jxX +eRv +aDY +tMh +lnl +txR +txR +twj +tMh +tMh +tMh +tMh +tMh +oub +gNv +oub +dfV +nnL +eEY +nnL +hGG aaa aaa aaa @@ -102160,69 +102160,69 @@ bdH bdH aaa bdH -oZE -uBI -lWX -lWX -ith -wnp -rGL -oYa -mxo -xTM -ith -kMg -wqz -ecS -qjn -lWX -hCd -ith -fqs -pTD -fqs +dJq +roN +xoQ +xoQ +nnI +cUy +jbo +sRi +geS +omM +nnI +tMu +mNo +fWe +nqv +xoQ +kEx +nnI +cCH +uyb +cCH bdg -qZm -kSn -hpu +hai +plm +phh vuA -mQb -mQb -mQb +sMO +sMO +sMO vuA -naw -jsC -rcu +chF +cZn +teG vuA -mQb -mQb -mQb +sMO +sMO +sMO vuA -xxX -vZX -xnN +kSQ +wtZ +jHI bCh -oBz -axF -oBz +jTJ +edj +jTJ yfS -tss +vip iMm jSy wGb iMm -huD +ycW bJt -qes -jdb -czW -tnS -uPs -miY -tBa -tBa -tKk -mSj +dth +bws +oZF +sbv +lTV +wkF +svU +svU +rTD +pdc bdH bdH bdH @@ -102255,83 +102255,83 @@ aaa aaa bdH bdH -baA -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -nhB -hNA -xvn -xvn -qTk +qDX +vlu +vlu +vlu +vlu +vlu +vlu +vlu +xIP +xAG +msO +msO +pBh aNi cYT aNm cYT lEF beZ -npn -eWX +pWo +sIi aOR -eWX -npn +sIi +pWo aOR bsw -vLH -gdP -rLA -flJ -lbQ +jxX +aTU +ppt +dWW +aDY vOy wWz -fxm -hQN -ovQ +qzI +jyb +fYx wTM -qMk -wPV -hCf +frD +mRc +kjn wWz -soT -hQN -xXE +crB +jyb +gAm wTM vOy -nbf -guk -cjR -fat -qCr -kya -dyX -rNK -rNK -lqr -kya -wMb -fLZ -ndq -kya -nzd -vAv -lPf -dFO -vAv -mFa -geq -gCr -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -vHZ -psN +hSg +wPh +xFl +eRv +pqB +tMh +xCH +txR +txR +elj +tMh +nNm +vpP +wmD +tMh +vxN +nnL +lUL +iHq +nnL +oub +qHz +hGG +vlu +vlu +vlu +vlu +vlu +vlu +vlu +ckx aaa aaa aaa @@ -102356,83 +102356,83 @@ bdH bdH bdH bdH -baA -uBI -uBI -uBI -uBI -uBI -uBI -uBI -uBI -lWX -fcx -ith -hoN -vxN -laW -kdj -kCZ -kRm -jsT -kdj -rOU -oAr -kdj -kdj -gFM -tBr -cUp -rmL -bPY -pVt -rRD -wjw -nhO +qDX +roN +roN +roN +roN +roN +roN +roN +roN +xoQ +rKB +nnI +pva +qjH +jbQ +oFW +iSR +hFL +ttJ +oFW +xdU +qyO +oFW +oFW +aaS +xBF +mTG +wre +fHt +tth +rOb +bhP +iyG beH beH beH -nhO -pVt -rRD -wjw -nhO +iyG +tth +rOb +bhP +iyG beH beH beH -nhO -pVt -rRD -wjw -bPY -tDc -lQq -tDc +iyG +tth +rOb +bhP +fHt +xki +kST +xki bJt -wCZ -djt -kpy -djt -beX -nKg +qIT +xFg +fpG +xFg +upj +swT bJt hSw -xqU +mIm rui -tnS +sbv bJt -wHH -sXR -fvA -tKk -tKk -tKk -tKk -tKk -tKk -tKk -tKk -psN +cze +jLN +pyG +rTD +rTD +rTD +rTD +rTD +rTD +rTD +rTD +ckx aaa aaa aaa @@ -102458,7 +102458,7 @@ aaa aaa bdH bdH -oZE +dJq aag aag aag @@ -102466,67 +102466,67 @@ aag aag aag aag -nhB -kjv -foa -xvn -foa +xIP +gaG +pnA +msO +pnA aNi aZe aNm aNm lRP beE -eWX -eWX +sIi +sIi hMi -cLf -cLf +nyp +nyp dYu bsw -dgX -txK -hYO -fat -qCr +oLK +eFz +drU +eRv +pqB vOy wWz -tlk -dwS +udk +rUx jlG -uak -itJ -fqk -xyu -fZz +eeM +rDd +uLX +soC +dBr hqh -dwS -cGB +rUx +ogM wTM vOy -vLH -szj -cAN -sWI -lbQ -oEN -fFj -rNK -rNK -qML -fzO -iqS -iqS -iqS -kya -geq -vAv -vAv -vAv -vAv -dza -geq -gCr +jxX +hEE +eSO +yfl +aDY +hxE +fLq +txR +txR +twj +uqT +fvG +fvG +fvG +tMh +qHz +nnL +nnL +nnL +nnL +oqY +qHz +hGG aag aag aag @@ -102534,7 +102534,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -102559,22 +102559,22 @@ bdH bdH bdH bdH -uBI -uBI -qjn -fmU -aAw -aAw -aAw -lWX -lWX -lWX -aAw -qGE -aAw -jIB -fYE -iuD +roN +roN +nqv +qQK +xjo +xjo +xjo +xoQ +xoQ +xoQ +xjo +hwH +xjo +rrm +ujM +nfc bdd bdd bdd @@ -102584,9 +102584,9 @@ bdd bdd bdd bdd -iaU -wMN -uGU +vYg +mkn +fOR bdd vuA vuA @@ -102597,7 +102597,7 @@ fUA qYZ bdd vuA -hSm +xMx vuA bdd qCc @@ -102608,9 +102608,9 @@ vuA vuA vuA bdd -nZr -lQq -xgM +hNL +kST +pPp bdd bdd bdd @@ -102621,21 +102621,21 @@ bdd bdd bdd bJt -rhD -yjE +ryb +gvE bJt bJt -sXR -tBa -tBa -tBa -uxu -ejS -tBa -tBa -tBa -tKk -tKk +jLN +svU +svU +svU +lSI +xvb +svU +svU +svU +rTD +rTD aaa aaa aaa @@ -102661,7 +102661,7 @@ aaa aaa bdH bdH -oZE +dJq aag aag aag @@ -102669,67 +102669,67 @@ aag aag aag aag -nhB -dbi -foa -foa -foa +xIP +ihQ +pnA +pnA +pnA aNi aZr aNm aNm lTE beE -eWX -eWX +sIi +sIi aOR -eWX -eWX +sIi +sIi cCa aNi aNi aNi -irk -vzH -lbQ +vPU +srm +aDY vOy wWz -mFI -sUP +vxv +cVP aPJ wTM -ddX -cLY -hCf +uch +gEU +kjn wWz -ieE -sUP -fRd +qFE +cVP +lEu wTM vOy -wnT -mEA -jPn -jPn -lbQ -oEN -mvX -rNK -rNK -qML -kya -kow -rhu -kQi -kya -nyb -vAv -iQf -slJ -vAv -mFa -ifv -gCr +wqM +hRK +pMQ +pMQ +aDY +hxE +fmr +txR +txR +twj +tMh +uFx +kvI +fzi +tMh +dfV +nnL +jCz +dsn +nnL +oub +htZ +hGG aag aag aag @@ -102737,7 +102737,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -102762,83 +102762,83 @@ bdH bdH bdH bdH -uBI -wqz -aAw -lWX -qaB -lWX -lWX -aAw -aAw -aAw -pTn -ith -oFW -nUD -oVs -bQo +roN +mNo +xjo +xoQ +iBn +xoQ +xoQ +xjo +xjo +xjo +frb +nnI +gtD +wgy +jhZ +eoB bdd -qBb -vyx -iYP -siR -wNL -kvl -bQO +kca +pAo +vkq +sEH +kaQ +iOk +nDF bdg -rmL -rHm -rmL +wre +xhT +wre bdg -ozt -ozt -ozt -rzr +fvS +fvS +fvS +evL beH fUA beH -rzr -ozt +evL +fvS beH -ozt -rzr +fvS +evL beH fUA beH -rzr -ozt -ozt -ozt +evL +fvS +fvS +fvS bdg -tDc -sqR -tDc +xki +aza +xki bdg -sEm -pLw -jQx -gTP -sEm -wzh -meZ +tVZ +uFg +agD +kVP +tVZ +uvD +kyB bdd -fHU -krv -lvB -eRD +mkN +xdi +oUu +mQK bJt -xeY -tBa -sXR -tBa -pnG -tBa -tBa -sXR -sXR -tBa -tKk +rhE +svU +jLN +svU +biC +svU +svU +jLN +jLN +svU +rTD aaa aaa aaa @@ -102864,7 +102864,7 @@ aaa aaa bdH bdH -oZE +dJq aag aag aag @@ -102872,67 +102872,67 @@ aag aag aag aag -nhB -sZu -foa -xvn -foa +xIP +kWR +pnA +msO +pnA aNi -esV +cgd aNm aNm mwL beE -eWX -eWX +sIi +sIi aOR -eWX -eWX +sIi +sIi qiy ahR ahR -nbK -mkq -lcd -lbQ +lpz +mqV +rOE +aDY vOy woh vgO aoJ alk xAe -vWi -cLY -tcG +qVQ +gEU +wTL woh pLO qxm vgO xAe vOy -gRM -fat -mIS -txK -avg -oEN -jvv -iqS -iqS -qML -kya -kya -kya -kya -kya -geq -wWK -geq -nyb -vAv -wEC -geq -gCr +xUQ +eRv +aCu +eFz +fyz +hxE +aFX +fvG +fvG +twj +tMh +tMh +tMh +tMh +tMh +qHz +uXo +qHz +dfV +nnL +vyY +qHz +hGG aag aag aag @@ -102940,7 +102940,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -102965,36 +102965,36 @@ bdH bdH bdH bdH -uBI -lWX -aAw +roN +xoQ +xjo nsY nsY -kNz +duU nsY nsY nsY nsY nsY nsY -ith -ith -nsN -ith +nnI +nnI +qrR +nnI bdd -uHh -sCp -shT -rRH -shT -egZ -bQO +kzN +goW +srz +xUE +srz +mdx +nDF bdg -rmL -wMN -rmL +wre +mkn +wre bdg -ozt +fvS beH beH beH @@ -103012,36 +103012,36 @@ beH beH beH beH -ozt +fvS bdg -tDc -lQq -tDc +xki +kST +xki bdg -sEm -ufS -nvO -uQT -wol -hMA -vFy +tVZ +kFB +cfI +ojK +jys +arW +jKQ bdd -nSu +dgM rsM iMm -vAS +pAK nsY nsY -cAK +rQc nsY nsY nsY nsY nsY nsY -pgc -tBa -tKk +kAf +svU +rTD aaa aaa aaa @@ -103067,7 +103067,7 @@ aaa aaa bdH bdH -oZE +dJq aag aag aag @@ -103075,67 +103075,67 @@ aag aag aag aag -nhB -wry -xvn -xvn -xvn +xIP +hHG +msO +msO +msO aNi jWr aNm jWr mBJ dtZ -eWX -eWX +sIi +sIi wWg -cLf -cLf +nyp +nyp hpY aOR aOR -mTE -fMp -vzH -lbQ +kcW +kjL +srm +aDY vOy vOy vOy -jia -fsr -nAk -mQk -ofX -xmm -aNZ -lbA -uaw +mBO +jGK +cuF +gQs +qxs +gTj +xfH +taT +iKP vOy vOy vOy -tuE -fat -lbQ -vAv -vAv -kya -luE -iqS -iqS -qML -dKf -rLx -tis -obq -kya -nzd -vAv -nrr -geq -wWK -geq -vAv -gCr +qSu +eRv +aDY +nnL +nnL +tMh +gsU +fvG +fvG +twj +fGU +ryZ +jEi +wOF +tMh +vxN +nnL +cAJ +qHz +uXo +qHz +nnL +hGG aag aag aag @@ -103143,7 +103143,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -103168,36 +103168,36 @@ aaa aaa aaa aaa -uBI -aAw -lWX +roN +xjo +xoQ nsY xWT -hNv +bdf jgk nsY rSG -hjE +hHy oqS nsY -ggW -cBK -lWX -mSb +moN +voD +xoQ +qRS bdd -req -heI -heI -jbh -shT -pzW -bQO +hEz +pLy +pLy +neM +srz +vjI +nDF bdg -rmL -wMN -rmL +wre +mkn +wre bdg -ozt +fvS beH aLJ bmr @@ -103215,36 +103215,36 @@ beH rJK gBo beH -ozt +fvS bdg -tDc -lQq -tDc +xki +kST +xki bdg -sEm -tpz -lYg -tgu -oux -ybA -jRa +tVZ +owB +jYX +mSV +vbT +knD +opO bdd -qGP +mLV rsM iMm -eXd +phz nsY xWT -hNv +bdf viu nsY rSG -oPs +qbq oqS nsY -tBa -tBa -tKk +svU +svU +rTD aaa aaa aaa @@ -103270,7 +103270,7 @@ aaa aaa bdH bdH -oZE +dJq aag aag aag @@ -103278,11 +103278,11 @@ aag aag aag aag -nhB -gSO -oNk -dvG -kDw +xIP +jCW +wGP +imq +skk aNi aNi aNi @@ -103298,47 +103298,47 @@ aOR aOR agr aNi -vLH -uhT -lbQ +jxX +jrq +aDY vOy vOy vOy vOy -mXu -xfX -ddd -taX -fij -rVf -kFi +xQh +ovv +tJC +mSj +tkT +iYK +lbS vOy vOy vOy vOy -aGB -uhT -lbQ -vAv -geq -kya -gbR -gsv -iqS -cvl -kya -uYL -nzc -pKu -kya -dza -vAv -wsH -mFa -vAv -nyb -vAv -gCr +mJM +jrq +aDY +nnL +qHz +tMh +cvK +lag +fvG +iiJ +tMh +iwD +wbr +sDZ +tMh +oqY +nnL +nIi +oub +nnL +dfV +nnL +hGG aag aag aag @@ -103346,7 +103346,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -103371,83 +103371,83 @@ aaa aaa aaa aaa -uBI -aAw -lWX +roN +xjo +xoQ nsY xWT -hNv +bdf viu nsY iIP -hNv +bdf dDt nsY -gxI -lWX -lWX -pZt +lVs +xoQ +xoQ +gki bdd -iBT -dNw -heI -fcL -heI -epf -wHk +tAZ +xvY +pLy +lyh +pLy +pKj +dJB bdd -oin -iqs -oin -gfw -ozt +plA +sKU +plA +hei +fvS beH bgO -dbX -dbX -dbX -dbX +kPa +kPa +kPa +kPa wNT -fKn +gUJ hsg -jAu +vXm kbV -vIe -vIe -vIe -vIe +cip +cip +cip +cip bgO beH -ozt -gfw -tDc -lQq -tDc +fvS +hei +xki +kST +xki bdd -igd -qVY -ybA -ybA -nTR -ifw -nCn +wnz +hvU +knD +knD +sWY +cWb +qmw bdd -bVJ +tZo rsM oos -bMg +poG nsY xWT -mGb +hxD viu nsY dmR -hNv +bdf dDt nsY -tBa -sXR -tKk +svU +jLN +rTD aaa aaa aaa @@ -103473,7 +103473,7 @@ aaa aaa bdH bdH -oZE +dJq aag aag aag @@ -103481,15 +103481,15 @@ aag aag aag aag -nhB -dvG -dvG -dvG -cJX -elF -gSO -gSO -gSO +xIP +imq +imq +imq +tAb +vLJ +jCW +jCW +jCW aNi aNi aNi @@ -103501,47 +103501,47 @@ aNi aNi aNi aNi -tuE -uhT -lbQ +qSu +jrq +aDY bPF -wki +gYK ata vOy -ivt -pbA -coU -gdY -wjX -gIi -dFX +xtx +fXD +vJI +xlH +xrb +utz +oFY vOy -kkq -jrK +wRj +ffU bPF -aML -mEA -lbQ -vAv -geq -kya -kya -kya -ccH -kya -kya -kya -kya -kya -kya -mFa -vAv -vAv -vAv -vAv -geq -vAv -gCr +tyQ +hRK +aDY +nnL +qHz +tMh +tMh +tMh +xra +tMh +tMh +tMh +tMh +tMh +tMh +oub +nnL +nnL +nnL +nnL +qHz +nnL +hGG aag aag aag @@ -103549,7 +103549,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -103574,83 +103574,83 @@ aaa aaa aaa aaa -uBI -aAw -lWX +roN +xjo +xoQ nsY -wRr -fuP -pas +xTm +kTH +tRT nsY -thQ -hWE -gdZ +nQD +gkA +pTe nsY -sAQ -bxa -lWX -kay +tDB +tMi +xoQ +oOQ bdd -gBw -gBw -gBw -stQ -eeq -xCV -drP -xLw -gPs -gby -rmL -rPi -ozt +vnL +vnL +vnL +sZD +scW +cIb +ayC +vWU +hmI +vOn +wre +vua +fvS beH bgO -dbX -dbX -dbX -dbX +kPa +kPa +kPa +kPa wNT -rpH +rcR kNl -weY +jRo kbV -vIe -vIe -vIe -vIe +cip +cip +cip +cip tmB eBg -nsI -snV -rgS -hkd -rgS -rfB -nsI -nsI -kxa -oyi -sej -vjA -keB +oTF +kHb +eIi +hCa +eIi +azF +oTF +oTF +qAk +gNj +bfN +yfu +tiV bdd -bVJ +tZo rKO wGb -vXR +hzH nsY -rMe -hWE -pAP +eSs +gkA +twf nsY -ldO -hWE -gdZ +sRL +gkA +pTe nsY -tBa -sXR -tKk +svU +jLN +rTD aaa aaa aaa @@ -103674,87 +103674,87 @@ aaa aaa aaa aaa -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -xvn -foa -foa -xvn -foa -foa -xpp -xvn -foa -foa -foa -foa -xvn -qTk -xvn -foa -foa -wCX -fMp -uhT -fMp -nNk -wki +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +msO +pnA +pnA +msO +pnA +pnA +xQk +msO +pnA +pnA +pnA +pnA +msO +pBh +msO +pnA +pnA +fzO +kjL +jrq +kjL +vJk +gYK atb vOy -rmm -xfX -fUl -dMM -ekG -rVf -eQx +nOk +ovv +tbZ +ljd +fgN +iYK +mSO vOy -mcP -jrK -nNk -fMp -mEA -fMp -fpG -mFa -mFa -geq -cNM -szF -mFa -mFa -geq -cNM -geq -mFa -mFa -mFa -fpr -odf -mFa -geq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq +sNY +ffU +vJk +kjL +hRK +kjL +gNv +oub +oub +qHz +ixg +jpW +oub +oub +qHz +ixg +qHz +oub +oub +oub +qiL +jSO +oub +qHz +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN aaa aaa aaa @@ -103774,25 +103774,25 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -uBI -aAw -lWX +qDX +vlu +vlu +roN +xjo +xoQ nsY nsY -rUe +ryi nsY nsY nsY -djG +fhs nsY nsY -blz -vsT -jhO -uaq +qbf +piu +oEq +fJS bdd bdd bdd @@ -103802,33 +103802,33 @@ bdd bdd bdd bdd -rmL -rHm -rmL +wre +xhT +wre bdg -ozt +fvS beH bgO -dbX -dbX -dbX -dbX +kPa +kPa +kPa +kPa wNT -rpH +rcR hWs -weY +jRo kbV -vIe -vIe -vIe -vIe +cip +cip +cip +cip bgO beH -ozt +fvS bdg -tDc -sqR -tDc +xki +aza +xki bdd bdd bdd @@ -103838,25 +103838,25 @@ bdd bdd bdd bdd -wHI +xIK rsM oos -vXR +hzH nsY nsY -vWD +qUV nsY nsY nsY -bgd +cTn nsY nsY -tBa -fvA -tKk -vHZ -vHZ -psN +svU +pyG +rTD +vlu +vlu +ckx aaa aaa aaa @@ -103877,87 +103877,87 @@ aaa aaa aaa aaa -pJq -cKd -cKd -sVX -nNW -nNW -nNW -nNW -nNW -nNW -nNW -pJq -hGo -foa -kbr -kbr -kbr -kbr -kbr -kbr -kbr -kbr -kbr -kbr -kbr +vfN +rKm +rKm +iia +bqh +bqh +bqh +bqh +bqh +bqh +bqh +vfN +jHX +pnA +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ aej aej aej aej aej -rfY -uhT -hml +btT +jrq +eYA vOy vOy vOy vOy -dMb -dMe -qBt -eer -qzY -xEK -qUC +hDd +bun +kvQ +vBF +xZJ +bru +ePh vOy vOy vOy vOy -lCA -mEA -koG -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -dqB -mFa -geq -pJq -vHr -vHr -vHr -vHr -vHr -vHr -vHr -nUi -fJh -fJh -pJq +xeJ +hRK +ptF +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +hiq +oub +qHz +vfN +nAf +nAf +nAf +nAf +nAf +nAf +nAf +oZe +hGB +hGB +vfN aaa aaa aaa @@ -103977,89 +103977,89 @@ aaa aaa aaa aaa -oZE -uBI -uBI -uBI -lWX -fcx +dJq +roN +roN +roN +xoQ +rKB nsY -onk -iva -mMN +hDt +cCB +ikp nGh -pCd -jxC -faf +vex +qwA +tcF nsY -nvw -qfs -tXQ -aAw +vxx +smc +dnv +xjo bdd -mBs -fyU -aLY -wmC -iKj -qrC -nsI -gQU -gPs -fHD -rmL +igx +hUX +jcL +kjR +kfL +tzb +oTF +dVy +hmI +dfQ +wre bdg -ozt +fvS beH bgO -dbX -dbX -dbX -dbX +kPa +kPa +kPa +kPa wNT -oAL -sqp -njj +tnd +pDP +uwR kbV -vIe -vIe -vIe -vIe +cip +cip +cip +cip bgO beH -ozt +fvS bdg -tDc -meX -rgS -qMr -pMU -iGp -nsI -uCj -jGB -vmf -thw +xki +dVD +eIi +xhr +qWB +tYc +oTF +wqN +fBh +tXw +eDm bdd -bVJ +tZo wRO iMm -vXR +hzH nsY -dDW -jQC -dDf +lfC +fxw +rPZ uQo -vcT -gQv -npg +qOC +kit +qpP nsY -sXR -tBa -tKk -tKk -tKk -mSj +jLN +svU +rTD +rTD +rTD +pdc aaa aaa aaa @@ -104080,87 +104080,87 @@ aaa aaa aaa aaa -pJq -cKd -cKd -sVX -nNW -nNW -nNW -nNW -nNW -nNW -nNW -pJq -rNa -foa -kbr -ivJ -ivJ -ivJ -ivJ -czU -ivJ -ivJ -ivJ -ivJ -czU +vfN +rKm +rKm +iia +bqh +bqh +bqh +bqh +bqh +bqh +bqh +vfN +cmZ +pnA +xWJ +nXt +nXt +nXt +nXt +dsB +nXt +nXt +nXt +nXt +dsB aej -ofT -ipy -tiP +eqv +hfM +usL aej -vLH -uhT -lbQ +jxX +jrq +aDY vOy elR xXh xXh apU -euz +sbs aBe otu jBO -xCo +gqJ ean xXh xXh dMK vOy -vLH -mEA -lbQ -dqB -kIE -lbO -kIE -dqB -sJi -sJi -sJi -sJi -fqJ -sJi -sJi -sJi -sJi -fqJ -dqB -mFa -uef -pJq -vHr -vHr -vHr -vHr -vHr -vHr -vHr -nUi -fJh -fJh -pJq +jxX +hRK +aDY +hiq +xXo +sci +xXo +hiq +wjh +wjh +wjh +wjh +dme +wjh +wjh +wjh +wjh +dme +hiq +oub +mJB +vfN +nAf +nAf +nAf +nAf +nAf +nAf +nAf +oZe +hGB +hGB +vfN aaa aaa aaa @@ -104180,89 +104180,89 @@ aaa aaa aaa aaa -uBI -uBI -irF -lWX -lWX -aAw +roN +roN +dwb +xoQ +xoQ +xjo nsY -vIq -uhe -rdM +pyp +vtK +bdp qLH -vCA -fxN -xDf +bPH +rte +jOn nsY -ryL -gGE -gGE -lWX +uhc +lKo +lKo +xoQ bdd -mqm -dYs -vZK -iRR -iRR -lOj -xWL +qPM +xkI +svL +lFL +lFL +qCq +fEx bdd -rmL -rHm -rmL +wre +xhT +wre bdg -ozt -ozt +fvS +fvS bgO beH beH duv beH htI -inP -haV -iFE +dmd +hVP +nbC gyv beH duv beH beH bgO -ozt -ozt +fvS +fvS bdg -tDc -sqR -tDc +xki +aza +xki bdd -nft -eDQ -iVc -iVc -iVc -mgZ -thw +xOm +jPr +xQJ +xQJ +xQJ +dNV +eDm bdd -wQD +cGN rsM oos -vXR +hzH nsY -fyZ -rec -jPN +wbs +iwR +hNH rhQ -vTh -wEE -kDF +nxS +oyq +xxQ nsY -sXR -tBa -sXR -sXR -tKk -tKk +jLN +svU +jLN +jLN +rTD +rTD aaa aaa aaa @@ -104283,87 +104283,87 @@ aaa aaa aaa aaa -pJq -cKd -cKd -sVX -nNW -nNW -nNW -nNW -nNW -nNW -nNW -pJq -fId -foa -kbr -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ +vfN +rKm +rKm +iia +bqh +bqh +bqh +bqh +bqh +bqh +bqh +vfN +lTa +pnA +xWJ +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt aej -aws -npS -pjn -pOO -fMp -vzH -lbQ +quc +lTD +mmh +kHH +kjL +srm +aDY vOy wWz -fxm -psj -psj -akm +qzI +ghr +ghr +rld jVt uyH -fxm -akm -psj -psj +qzI +rld +ghr +ghr rdt wTM vOy -vLH -fat -lbQ -hzP -lcq -iTy -ama -dqB -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -dqB -mFa -egw -pJq -vHr -vHr -vHr -vHr -vHr -vHr -vHr -nUi -fJh -fJh -pJq +jxX +eRv +aDY +pGd +vFI +jiT +qvu +hiq +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +hiq +oub +atW +vfN +nAf +nAf +nAf +nAf +nAf +nAf +nAf +oZe +hGB +hGB +vfN aaa aaa aaa @@ -104383,89 +104383,89 @@ aaa aaa aaa aaa -uBI -sUn -aAw -aAw -aAw -aAw -iEw -fif +roN +rZr +xjo +xjo +xjo +xjo +mjp +pFk axc juD twW vHh pvh -cYR +xEI nsY -ith -cCT -lKM -fcx +nnI +iLQ +aqt +rKB bdd -iks -iRR -tZp -cGE -uzQ -mds -bvg +lZx +lFL +uQb +tlN +due +bJV +qZS bdg -rmL -wMN -lOk +wre +mkn +mMA bdd bdd -xAM +eBN bgO -aIn -aIn +dXK +dXK bgO -qBA -qBA -iHS -mCZ +ndR +ndR +fuM +gZu whA -mmO -mmO +sdK +sdK bgO -dWM -dWM +iNJ +iNJ bgO -phb +mBg bdd bdd -bct -lQq -tDc +ibX +kST +xki bdg -hcz -iDv -dWM -hDt -vXn -tFo -jRa +iwH +itW +iNJ +wqz +udT +bkK +opO bdd -vkf +xLV cNX cdI -bMg +poG nsY -hHD +xKs dVs tat kNC xuQ uPW -wtT -usH -cux -cux -cux -uoO -sXR -tKk +pvg +lTf +hXj +hXj +hXj +sSJ +jLN +rTD aaa aaa aaa @@ -104486,87 +104486,87 @@ aaa aaa aaa aaa -pJq +vfN adj apk apk -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -taF -fHg -kbr -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +tLv +egw +xWJ +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt aej -sAu -wpa +qhI +oQt agu -ufl -fMp -vzH -lbQ +onz +kjL +srm +aDY vOy wWz -una -qNM -wrw -cgV -xqe +nsh +vCu +jyf +kAw +tiD uyH -una -uXR -wrw -jpl -xqe +nsh +gta +jyf +tgp +tiD wTM vOy -vLH -fat -lbQ -hzP -vUr -uwk -uYf -dqB -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -dqB -qjR -oxk -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq +jxX +eRv +aDY +pGd +dcj +iQD +fGF +hiq +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +hiq +aEa +uOu +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN asM asM mwR -pJq +vfN aaa aaa aaa @@ -104586,89 +104586,89 @@ aaa aaa aaa aaa -uBI -tnv -aAw -eKi -ith -ith +roN +tAx +xjo +oUF +nnI +nnI nsY -oCj -uHZ +ocT +sUf irT tyb xxm qSK -hyO +gDI nsY -hQB -aAw -eUM -lWX +lMu +xjo +tQj +xoQ bdd -sQb -gJB -oDo -hyX -uzQ -bAt -bvg +glq +wvm +jhI +bEZ +due +dpR +qZS bdg -oin -iqs -oin -jSV +plA +sKU +plA +bgL bdd -ozt +fvS bgO -aIn -aIn +dXK +dXK bgO -qBA -qBA -vaY -rNc -sot -mmO -mmO +ndR +ndR +eyO +xam +dFu +sdK +sdK bgO -dWM -dWM +iNJ +iNJ bgO -ozt +fvS bdd -wNw -mmX -vao -mmX +lsy +iGS +uLV +iGS bdg -hcz -jMe -rkP -mrt -dWM -spz -iiI +iwH +tuJ +eiB +mSy +iNJ +cwU +qhP bdd -mQp +rdD roU oos -xMb +imU nsY -eqa -mHJ -osX +uXm +jPa +cQi pVA -jii -vNu -kDF +tpq +vxe +xxQ nsY -krD -tBa -sXR -tih -lQs -tKk +mGQ +svU +jLN +mmG +wfu +rTD aaa aaa aaa @@ -104689,87 +104689,87 @@ aaa aaa aaa aaa -pJq -rir -rir -uRR -hAp -hAp -hAp -hAp -hAp -hAp -hAp -wEf -dfW -wBv -kbr -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ -ivJ +vfN +vkX +vkX +mmy +gZC +gZC +gZC +gZC +gZC +gZC +gZC +gQw +wwQ +aNJ +xWJ +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt aej -teN -wpa +mEZ +oQt agu aej -iNd -vzH -qCr +lVw +srm +pqB vOy wWz -ixl -vbr -dwS -onU -xqe +foa +kuv +rUx +brl +tiD uyH -bis -tMs -dwS -vbr -dJs +tEI +gBB +rUx +kuv +hRP wTM vOy -wnT -fat -lbQ -hzP -dbG -lcq -nxt -dqB -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -sJi -dqB -ixY -qhg -wRL -cOd -cOd -cOd -cOd -cOd -cOd -cOd -fLc -vSy -vSy -pJq +wqM +eRv +aDY +pGd +ifp +vFI +cgj +hiq +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +wjh +hiq +eZG +rsp +cgm +gYx +gYx +gYx +gYx +gYx +gYx +gYx +wTY +fhq +fhq +vfN aaa aaa aaa @@ -104789,89 +104789,89 @@ aaa aaa aaa aaa -uBI -pEZ -lWX -lWX -aUg -uhU +roN +mfN +xoQ +xoQ +pGv +bip nsY -dYQ +rsu dbn -jWZ +dUk tyb uRM ipe -ssx +uPw nsY -jtt -aAw -rcB -pzE +rhx +xjo +uvM +kea bdd -gyH -mkR -dar -utQ -uNk -jeT -uNk +jeL +ipN +kvZ +fHv +qbl +cEy +qbl bdg -rmL -wMN -rmL -rmL +wre +mkn +wre +wre bdg -ozt +fvS qMR -tGA -tGA +lZQ +lZQ dRT -qjH -qjH -ilc +vBW +vBW +eEq dRT -gIt -gIt -gIt +hQh +hQh +hQh dRT -hmd -hmd +wyC +wyC fOk -ozt +fvS bdg -tDc -tDc -lQq -tDc +xki +xki +kST +xki bdg -kdo -iNO -fAq -dwP -jvx -jJF -avy +arv +rNn +uIr +wlv +mrK +qHy +pKv bdd -dWV -xUc -gAB -tAA +kxI +oFx +kbE +rlv nsY -cvA -oHR -tGF +kOA +gPa +pbA tyb -byE -whf -kDF +ehE +eyT +xxQ nsY -dpu -puq -vXV -vDk -duZ -tKk +lED +glk +ezF +lSa +sqA +rTD aaa aaa aaa @@ -104892,87 +104892,87 @@ aaa aaa aaa aaa -pJq -rir -rir -uRR -hAp -hAp -hAp -hAp -hAp -hAp -hAp -xbY -kaR -wBv -kbr -kbr -kbr -qjJ -kbr -kbr -kbr -kbr -jvk -kbr -kbr +vfN +vkX +vkX +mmy +gZC +gZC +gZC +gZC +gZC +gZC +gZC +rAq +oGj +aNJ +xWJ +xWJ +xWJ +jvj +xWJ +xWJ +xWJ +xWJ +ijw +xWJ +xWJ aej aej -oCR -ebs +gDO +gKN aej -dgX -iaP -avg +oLK +qtq +fyz vOy wWz -una -kzL -wrw -dmW -xqe +nsh +dIC +jyf +tta +tiD uyH -una -kzL -wrw -dmW -xqe +nsh +dIC +jyf +tta +tiD wTM vOy -dgX -iaP -avg -dqB -dqB -cQO -dqB -dqB -dqB -dqB -xLU -dqB -dqB -dqB -dqB -mUm -dqB -dqB -dqB -ixY -wmI -vtw -cOd -cOd -cOd -cOd -cOd -cOd -cOd -fLc -vSy -vSy -pJq +oLK +qtq +fyz +hiq +hiq +lMy +hiq +hiq +hiq +hiq +muT +hiq +hiq +hiq +hiq +fjy +hiq +hiq +hiq +eZG +hva +iEt +gYx +gYx +gYx +gYx +gYx +gYx +gYx +wTY +fhq +fhq +vfN aaa aaa aaa @@ -104992,25 +104992,25 @@ aaa aaa aaa aaa -uBI -aAw -aAw -qaB -aUg -itp +roN +xjo +xjo +iBn +pGv +afg nsY nsY nsY nsY -nKr +oXR nsY nsY nsY nsY -ith -ith -ith -ith +nnI +nnI +nnI +nnI bdd bdd bdd @@ -105020,33 +105020,33 @@ bdd bdd bdd bdd -nva -wMN -nVH -rmL +rUE +mkn +sna +wre bdg -ozt +fvS beH -aIn -aIn +dXK +dXK beH -qBA -qBA -qBA +ndR +ndR +ndR beH -mmO -mmO -mmO +sdK +sdK +sdK beH -dWM -dWM +iNJ +iNJ beH -ozt +fvS bdg -tDc -fzH -lQq -xgM +xki +cuB +kST +pPp bdd bdd bdd @@ -105064,17 +105064,17 @@ nsY nsY nsY nsY -oNC +phU nsY nsY nsY nsY -irC -xxD -pRj -sOk -vWs -tKk +hqC +wZu +gnP +cBt +eWK +rTD aaa aaa aaa @@ -105095,87 +105095,87 @@ aaa aaa aaa aaa -pJq -rir -rir -uRR -hAp -hAp -hAp -nYe -hAp -hAp -hAp -rQx -nGw -uyy -kJU -nFN -klk -lgk -bke -fPw -sea -doG -sDf -pwT -nFN -nOz -lgt -gYT -gYT -tIC -rmO -sen -wQF +vfN +vkX +vkX +mmy +gZC +gZC +gZC +rIE +gZC +gZC +gZC +vdV +hHC +srP +hpI +cXT +vMf +ddX +ahT +pZw +nWq +xrm +toJ +bVa +cXT +jQw +fJa +vtl +vtl +sZT +wIE +pam +fVn vOy wWz -shJ -sUP -sUP -gOF -ykX +rtq +cVP +cVP +vRn +gDd uyH -riB -gOF -sUP -sUP -iGM +iyC +vRn +cVP +cVP +cYP wTM vOy -rmO -sen -wQF -tIC -mNA -tOV -rtn -yan -exM -ryU -xUW -syn -hMQ -tKz -nJf -qwy -dNQ -hMQ -kGz -vJE -oBi -pHj -cOd -cOd -cOd -qHn -cOd -cOd -cOd -fLc -vSy -vSy -pJq +wIE +pam +fVn +sZT +poj +ruM +bVp +mPN +csx +niE +rYk +cRz +idY +rDW +euX +knc +pZM +idY +lnI +eMq +lrZ +kFD +gYx +gYx +gYx +ivP +gYx +gYx +gYx +wTY +fhq +fhq +vfN aaa aaa aaa @@ -105195,40 +105195,40 @@ aaa aaa aaa aaa -uBI -aAw -lWX -ith -ith -ith -ith -ith -ith -uij -vMP -lPZ -oin -kqw -ltu -kqw -qOT -vMj -kqw -oin -kvA -iew -kvA -kvA -spv -kvA -oin -rmL -rmL -wMN -nVH -rmL +roN +xjo +xoQ +nnI +nnI +nnI +nnI +nnI +nnI +eyW +ydk +gcy +plA +eWb +iaz +eWb +fJn +tyl +eWb +plA +seo +bOS +seo +seo +rnO +seo +plA +wre +wre +mkn +sna +wre bdg -ozt +fvS beH beH beH @@ -105244,40 +105244,40 @@ beH beH beH beH -ozt +fvS bdg -tDc -fzH -lQq -tDc -tDc -mmX -mPt -fMX -lno -lno -lno -lno -mmX -rai -rai -qwE -uhq -wjH -rai -mmX -uix -wuA -svO -rTi -rTi -rTi -rTi -rTi -rTi -tih -tBa -tKk +xki +cuB +kST +xki +xki +iGS +vgw +jJD +eHM +eHM +eHM +eHM +iGS +rlB +rlB +dey +dhd +oFd +rlB +iGS +pqZ +voS +oje +nOU +nOU +nOU +nOU +nOU +nOU +mmG +svU +rTD aaa aaa aaa @@ -105298,39 +105298,39 @@ aaa aaa aaa aaa -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -ruZ -frT -frT -dRZ -wsz -vwp -cha -vwp -vwp -vwp -dRZ -vwp -cha -wsz -wsz -wsz -wsz -hMo -hqq -oeu -tmH -lEh +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +dhv +wku +wku +qCV +uzS +aLR +rbQ +aLR +aLR +aLR +qCV +aLR +rbQ +uzS +uzS +uzS +uzS +iIx +fJE +bkf +pMl +tOt vOy woh vgO @@ -105346,39 +105346,39 @@ vgO vgO xAe vOy -pNv -lNG -bcv -scF -usZ -usZ -usZ -usZ -usZ -cgB -usZ -pfK -oEU -usZ -usZ -cgB -usZ -cFe -pfK -hCI -nSa -mjc -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq -pJq +nKm +rYB +xXC +sQX +rvs +rvs +rvs +rvs +rvs +ipV +rvs +sUr +rbc +rvs +rvs +ipV +rvs +xDt +sUr +gaA +gGh +muc +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN +vfN aaa aaa aaa @@ -105398,40 +105398,40 @@ aaa aaa aaa aaa -uBI -aAw -lWX -ith -tYb -tYb -tYb -dBv -ith -cqI -vCJ -rVI -lGX -mvf -mvf -mvf -mvf -mvf -mvf -lGX -mvf -mvf -mvf -mvf -mvf -mvf -lGX -qnE -mvf -qlC -nVH -rmL +roN +xjo +xoQ +nnI +jwy +jwy +jwy +oEr +nnI +iDk +pdK +wvV +fFK +mZd +mZd +mZd +mZd +mZd +mZd +fFK +mZd +mZd +mZd +mZd +mZd +mZd +fFK +biw +mZd +sgu +sna +wre bdg -ozt +fvS beH beH beH @@ -105447,40 +105447,40 @@ beH beH beH beH -ozt +fvS bdg -tDc -fzH -nYK -rgV -rgS -eJf -rgV -rgV -rgV -rgV -rgV -rgV -eJf -rgV -rgV -rgV -rgV -rgV -rgV -eJf -rJj -bZu -vbb -rTi -izp -izp -izp -fDL -rTi -pjk -fvA -tKk +xki +cuB +phi +tEf +eIi +ieV +tEf +tEf +tEf +tEf +tEf +tEf +ieV +tEf +tEf +tEf +tEf +tEf +tEf +ieV +dzG +fer +dBD +nOU +haw +haw +haw +tjL +nOU +dRJ +pyG +rTD aaa aaa aaa @@ -105501,39 +105501,39 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -nhB -sNx -xvn -jyh -gKb -tnJ -sQi -hHa -vGb -xZs -sfb -muQ -dkY -vGb -tsn -pzM -crJ -vGb -nvq -muQ -gYT -wEQ -tIC -kMJ -cFN -aBU +xIP +dZL +msO +sYz +kny +vOI +gbG +bWj +lsM +pGH +qCC +pwb +wBF +lsM +gpj +ooI +bKk +lsM +geD +pwb +vtl +gCh +sZT +pUL +cIB +neZ vOy vOy vOy @@ -105549,39 +105549,39 @@ vOy vOy vOy vOy -vNh -gIQ -aBU -tIC -nae -tOV -czC -joI -iFh -ncs -iql -lda -nkL -mZh -vvs -kCx -lCG -nkL -jIW -qXc -cWi -tjN -fpG -mFa -nyb -gCr +cIA +rcl +neZ +sZT +eaq +ruM +fDf +nwP +xcG +eKX +pgK +npQ +rPg +vwS +lbl +ugm +lEl +rPg +mBZ +fCa +tJD +lJE +gNv +oub +dfV +hGG aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -105601,89 +105601,89 @@ aaa aaa aaa aaa -uBI -aAw -lWX -ith -tYb -tYb -tYb -tYb -ith -pUP -liy -tpC -oin -xRl -xRl -vFd -pvB -ogr -pkr -oin -jDp -nXg -sXr -lKT -grE -gJr -oin -rmL -nVH -iqs -nVH -lOk +roN +xjo +xoQ +nnI +jwy +jwy +jwy +jwy +nnI +fAR +eDU +vHc +plA +cRN +cRN +tOm +ncD +juM +oKK +plA +knq +oNw +ljH +sWk +ted +jJv +plA +wre +sna +sKU +sna +mMA bdd -xAM -pVt -tCk -tCk -tCk -tCk -wjw -gAE -gld -hEA -hFv -iIb -iIb -iIb -iIb -inF -phb +eBN +tth +uWw +uWw +uWw +uWw +bhP +tnA +iiY +ekx +uzL +wtz +wtz +wtz +wtz +tSI +mBg bdd -bct -fzH -vao -fzH -tDc -mmX -sQy -sQy -med -uDF -vHF -pZE -mmX -czV -oHA -grA -xTu -aQn -aQn -mmX -aXO -oso -qso -rTi -izp -izp -izp -izp -rTi -tih -tYF -tKk +ibX +cuB +uLV +cuB +xki +iGS +kwv +kwv +uXx +roI +gSB +wDj +iGS +yeB +mMX +oCS +rbW +vYy +vYy +iGS +eXF +dSR +tvF +nOU +haw +haw +haw +haw +nOU +mmG +xUb +rTD aaa aaa aaa @@ -105704,87 +105704,87 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -nhB -llw -foa -dvG -kbr -kbr -kbr -kbr -kbr -kbr -rFr -wsz -rsW -kbr -kbr -kKM -kbr -kbr +xIP +hBQ +pnA +imq +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +ibz +uzS +kNw +xWJ +xWJ +ike +xWJ +xWJ ael ael -kRQ -wXQ +liI +hIS ael -lnM -uhT -jbf -tFs -tFs -tFs -hfq -tFs -tFs -tFs -tFs -tFs -wva -tFs -hfq -tFs -tFs -tFs -hZa -uhT -rWd -dqB -dqB -ayJ -dqB -dqB -dqB -ayJ -dqB -dqB -dqB -lkv -vkG -muh -dqB -dqB -dqB -dqB -dqB -dqB -vAv -geq -ifv -gCr +rRD +jrq +raO +cdW +cdW +cdW +wPq +cdW +cdW +cdW +cdW +cdW +igs +cdW +wPq +cdW +cdW +cdW +bPi +jrq +aVD +hiq +hiq +fxH +hiq +hiq +hiq +fxH +hiq +hiq +hiq +uIq +tbW +ycK +hiq +hiq +hiq +hiq +hiq +hiq +nnL +qHz +htZ +hGG aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -105804,89 +105804,89 @@ aaa aaa aaa aaa -uBI -aAw -lWX -ith -tYb -tYb -tYb -tYb -muk -rmL -rTW -jvm +roN +xjo +xoQ +nnI +jwy +jwy +jwy +jwy +kzI +wre +epV +rrh jeb jeb jeb -iog -jDF +jTl +crk jeb jeb jeb jeb jeb -iog -yhp +jTl +wWu jeb jeb jeb -rmL -nVH -iqs -nVH -rmL +wre +sna +sKU +sna +wre bdg -ozt -cuW -kBm -sqU -stD -kBm -clv -vMO +fvS +ttX +oLh +cAZ +pFd +oLh +dTm +raq ugu -ptT -dEW -phL -nxF -juy -hTx -jjX -ozt +maf +iHT +iTJ +xDH +qhv +lbo +rBO +fvS bdg -tDc -fzH -vao -fzH -tDc +xki +cuB +uLV +cuB +xki vra vra vra -nZE -jma +pqp +suI vra vra vra vra vra -nZE -eNh +pqp +hwv vra vra vra -noW -bZu -tDc -cKv -izp -izp -izp -izp -rTi -mWh -xKx -tKk +ujW +fer +xki +wCR +haw +haw +haw +haw +nOU +slp +fSD +rTD aaa aaa aaa @@ -105902,11 +105902,11 @@ aaa aaa aab aaa -baA -vHZ -vHZ -vHZ -vHZ +qDX +vlu +vlu +vlu +vlu aag aag aag @@ -105914,85 +105914,85 @@ aag aag aag aag -nhB -hGo -xvn -xvn -kbr -ivJ -ivJ -ivJ -rCV -kbr -iSH -wsz -qfj -kbr -dNA -qvP -tBg -mql +xIP +jHX +msO +msO +xWJ +nXt +nXt +nXt +qnQ +xWJ +qii +uzS +sVL +xWJ +nZZ +tfh +rWv +euu ael -cYv -olr -rYM +xBT +oKJ +ufz ael -plq -mEA -jPn -jPn -jPn -ahW -ahW -ahW -jPn -ahW -ahW -ahW -jPn -ahW -ahW -ahW -jPn -jPn -jPn -uhT -lxm -dqB -lUZ -jKS -lUZ -dqB -nup -lcq -lcq -hAb -dqB -tWS -vkG -muh -dqB -sJi -sJi -sJi -fLN -dqB -oOA -mFa -mFa -gCr -aag -aag -aag -aag -aag -aag -aag -vHZ -vHZ -vHZ -vHZ -psN +ucB +hRK +pMQ +pMQ +pMQ +sNA +sNA +sNA +pMQ +sNA +sNA +sNA +pMQ +sNA +sNA +sNA +pMQ +pMQ +pMQ +jrq +fCK +hiq +cVS +fRU +cVS +hiq +nhg +vFI +vFI +rew +hiq +gPf +tbW +ycK +hiq +wjh +wjh +wjh +mQv +hiq +sst +oub +oub +hGG +aag +aag +aag +aag +aag +aag +aag +vlu +vlu +vlu +vlu +ckx aaa aaa aab @@ -106003,97 +106003,97 @@ aaa aaa aab aaa -baA -vHZ -vHZ -vHZ -uBI -lWX -aAw -ith -tYb -tYb -tYb -tYb -ith -ixI -nVH -oxh +qDX +vlu +vlu +vlu +roN +xoQ +xjo +nnI +jwy +jwy +jwy +jwy +nnI +dLT +sna +hkD jeb -dyf -hrG -xZH +lJR +eDh +hZv jhD jeb osc cMV osc jeb -gMQ -jBC -pnO -dyf +qGe +aVs +sdS +lJR jeb -eTA -nVH -iqs -nVH -rmL +fkT +sna +sKU +sna +wre bdg -ozt -cuW -kBm -stD -kBm -bAq -clv -vMO +fvS +ttX +oLh +pFd +oLh +rhz +dTm +raq ugu -ptT -dEW -phL -xeI -phL -ftU -jjX -ozt +maf +iHT +iTJ +rwm +iTJ +ecd +rBO +fvS bdg -tDc -fzH -vao -fzH -eOj +xki +cuB +uLV +cuB +sbg vra -tIt -jkZ -lPi +gmR +sme +rle tJz vra ukV oNj ukV vra -jol -nhL -uDa -tIt +cxP +rDU +eyr +gmR vra -xKs -bZu -gRr -rTi -izp -izp -izp -izp -rTi -mWh -pfb -tKk -vHZ -vHZ -vHZ -psN +uFS +fer +xJX +nOU +haw +haw +haw +haw +nOU +slp +iPY +rTD +vlu +vlu +vlu +ckx bdH aaa aab @@ -106105,7 +106105,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -106117,73 +106117,73 @@ aag aag aag aag -nhB -nhB -foa -foa -kbr -ivJ -ivJ -ivJ -ivJ -kbr -fBw -muQ -mFW -kbr -mbU -wGa -isd -ggF +xIP +xIP +pnA +pnA +xWJ +nXt +nXt +nXt +nXt +xWJ +oDQ +pwb +uFN +xWJ +oTs +nOw +wAB +tOY ael -pIo -iCJ -kZL +jtI +fLL +ick ael -wOn -fat -vKg -uej -uej -vKg -uej -nsF -oDp -qbI -qbI -qbI -eir -qjB -uej -uTL -uej -uej -uTL -uhT -hsV -dqB -dqB -lcq -vgP -dqB -kcO -jKS -lcq -kcO -dqB -jsR -vvs -iXN -dqB -sJi -sJi -sJi -sJi -dqB -utF -geq -gCr -gCr +jWB +eRv +rPo +oSi +oSi +rPo +oSi +jZP +nRA +qrr +qrr +qrr +uFu +jPY +oSi +kpO +oSi +oSi +kpO +jrq +obn +hiq +hiq +vFI +sff +hiq +bZC +fRU +vFI +bZC +hiq +xIc +lbl +gCq +hiq +wjh +wjh +wjh +wjh +hiq +dQy +qHz +hGG +hGG aag aag aag @@ -106195,7 +106195,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -106206,97 +106206,97 @@ aaa aaa aab aaa -oZE +dJq aag aag aag -uBI -hoF -wwv -ith -tYb -tYb -tYb -tYb -ith -vrY -nVH -oqz +roN +hqx +fCt +nnI +jwy +jwy +jwy +jwy +nnI +hfE +sna +cRw jeb -jrJ -wcz -xZH +iDE +nRZ +hZv rth rth -vnh -vnh -vnh +pDF +pDF +pDF nny rth -jBC -dfX -xmC +aVs +xHI +hBj jeb -uWm -nVH -iqs -nVH -rmL +qNC +sna +sKU +sna +wre bdg -ozt -jsC -dNw -dNw -dNw -dNw -qSP -gAE -ctk -hEA -fFq -mmO -mmO -mmO -mmO -lmO -ozt +fvS +cZn +xvY +xvY +xvY +xvY +gcd +tnA +fhF +ekx +wOq +sdK +sdK +sdK +sdK +piq +fvS bdg -tDc -fzH -vao -fzH -qwb +xki +cuB +uLV +cuB +qsA vra -tTL -jRD -lPi +cDt +ndF +rle nyQ nyQ -uNw -uNw -uNw +hQQ +hQQ +hQQ miV nyQ -nhL -vEc -nBH +rDU +jxt +hMr vra -oAp -bZu -vQy -rTi -izp -izp -izp -izp -rTi -tih -tBa -tKk +mVA +fer +xld +nOU +haw +haw +haw +haw +nOU +mmG +svU +rTD aag aag aag -mSj +pdc aaa aaa aab @@ -106308,7 +106308,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -106321,71 +106321,71 @@ aag aag aag aag -nhB -xvn -xvn -kbr -ivJ -ivJ -ivJ -ivJ -ebj -jsV -vwp -iho -kbr -dVK -dWr -dWr -xSm +xIP +msO +msO +xWJ +nXt +nXt +nXt +nXt +qZl +jVh +aLR +uIw +xWJ +jOI +ozS +ozS +iar ael -uko -jir +pkH +oHG aiq -xmj -jPn -vzH -jbf +uDo +pMQ +srm +raO mOi mOi mOi mOi mOi -cjn -vEA -kHi -bgx +kNe +mhx +pRw +rTF aqU aHq aHq aHq aHq aHq -tYO -vzH -sRf -qTC -dqB -lcq -jKS -lGe -lcq -lcq -lcq -jKS -dqB -vwX -gSv -vLe -fXS -sJi -sJi -sJi -sJi -dqB -fWN -geq -gCr +jAn +srm +pCZ +avg +hiq +vFI +fRU +fib +vFI +vFI +vFI +fRU +hiq +flB +qsl +hfx +wSb +wjh +wjh +wjh +wjh +hiq +omJ +qHz +hGG aag aag aag @@ -106398,7 +106398,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -106409,44 +106409,44 @@ aaa aaa aab aaa -oZE +dJq aag aag aag -uBI -lWX -gTc -ith -ith -ith -ith -ith -ith -dxs -dxs -xdX +roN +xoQ +hgJ +nnI +nnI +nnI +nnI +nnI +nnI +vsl +vsl +dpe jeb -dyf -oDW +lJR +xCh gAA gAA -fYA -wiR -xHB -xTT -fYA +cKP +eZZ +vGe +vel +cKP gAA gAA -asr -dyf +fpC +lJR jeb -lSF -nVH -iqs -nVH -rmL +rGF +sna +sKU +sna +wre bdg -ozt +fvS beH beH beH @@ -106462,44 +106462,44 @@ beH beH beH beH -ozt +fvS bdg -tDc -fzH -vao -fzH -rfo +xki +cuB +uLV +cuB +dfM vra -tIt -eQN +gmR +reY cgo cgo -hnx -kAd -nxM -uFv -hnx +vjq +nzU +ubG +nqg +vjq cgo cgo -tpp -tIt +eZw +gmR vra -xWk -sth -oQr -rTi -rTi -rTi -rTi -rTi -rTi -tih -tax -tKk +iLo +gqv +fPD +nOU +nOU +nOU +nOU +nOU +nOU +mmG +xqj +rTD aag aag aag -mSj +pdc aaa aaa aab @@ -106511,7 +106511,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -106524,71 +106524,71 @@ aag aag aag aag -nhB -xvn -foa -kbr -ivJ -ivJ -ivJ -ivJ -kbr -brk -lgt -qFg -kbr -wjc -wGa -dWr -uPa +xIP +msO +pnA +xWJ +nXt +nXt +nXt +nXt +xWJ +slT +fJa +kIW +xWJ +wEa +nOw +ozS +eHm ael -bjG -jir +vPF +oHG aiq -xmj -jPn -vzH -jPn +uDo +pMQ +srm +pMQ mOi -nAv -nAv -msB -lVU -mVa -rYy -qGS -gTJ +iKv +iKv +uaP +iOf +ide +uoj +yhk +kHW aqU -swW -vAD -hXa -pVj +rim +hjP +gWB +oYN aHq -oyN -vzH -sRf -qbb -dqB -lcq -lsg -dqB -kcO -jKS -lcq -rQv -dqB -rwu -qzi -wfc -dqB -sJi -sJi -sJi -sJi -dqB -dza -mFa -gCr +glX +srm +pCZ +rkl +hiq +vFI +cTD +hiq +bZC +fRU +vFI +fIt +hiq +bSU +iIz +ufP +hiq +wjh +wjh +wjh +wjh +hiq +oqY +oub +hGG aag aag aag @@ -106601,7 +106601,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -106612,26 +106612,26 @@ aaa aaa aab aaa -oZE +dJq aag aag aag -uBI -kAn -aAw -ith -tYb -tYb -tYb -dBv -ith -mpF -cif -eTw +roN +nHD +xjo +nnI +jwy +jwy +jwy +oEr +nnI +fof +ddf +tPG jeb -dyf -wcz -xZH +lJR +nRZ +hZv rth rth hNM @@ -106639,43 +106639,43 @@ vxX uBO rth rth -jBC -dfX -dyf +aVs +xHI +lJR jeb -jbp -nVH -iqs -nVH -lOk +mMG +sna +sKU +sna +mMA bdd -xAM -xyO -ncc -ncc -ncc -ncc -vhW -gAE -roR -hEA -xkA -uSG -uSG -uSG -uSG -rQC -phb +eBN +kfI +sAw +sAw +sAw +sAw +ylq +tnA +mTB +ekx +wAu +nOx +nOx +nOx +nOx +ekC +mBg bdd -bct -fzH -vao -fzH -xgM +ibX +cuB +uLV +cuB +pPp vra -tIt -jRD -lPi +gmR +ndF +rle nyQ lrT bqW @@ -106683,26 +106683,26 @@ xaC qeY nyQ nyQ -nhL -vEc -tIt +rDU +jxt +gmR vra -lEp -juU -uHN -rTi -izp -izp -izp -fDL -rTi -tih -tBa -tKk +wkq +cJJ +mHz +nOU +haw +haw +haw +tjL +nOU +mmG +svU +rTD aag aag aag -mSj +pdc aaa aaa aab @@ -106714,7 +106714,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -106727,71 +106727,71 @@ aag aag aag aag -nhB -foa -uJi -kbr -ivJ -ivJ -ivJ -ivJ -kbr -rFr -vwp -qfj -kbr -fgs -wGa -dWr -uPa +xIP +pnA +dmu +xWJ +nXt +nXt +nXt +nXt +xWJ +ibz +aLR +sVL +xWJ +fSV +nOw +ozS +eHm ael afK ahc air ael -nFO -vzH -jPn +ruh +srm +pMQ mOi -dUe -jaa -gZX -cfs -iOy -qGS -fTV -rmR +kLl +kyV +aEo +iue +bCU +yhk +saU +dao aqU -mXz +wFj oqv iqd -cpr +cKj cnS -tYO -vzH -dVN -dqB -dqB -lcq -kQZ -dqB -lUZ -kuP -lcq -jKS -dqB -ufb -gSv -muh -dqB -sJi -sJi -sJi -sJi -dqB -mFa -geq -gCr +jAn +srm +gTQ +hiq +hiq +vFI +nOF +hiq +cVS +dru +vFI +fRU +hiq +cJg +qsl +ycK +hiq +wjh +wjh +wjh +wjh +hiq +oub +qHz +hGG aag aag aag @@ -106804,7 +106804,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -106815,26 +106815,26 @@ aaa aaa aab aaa -oZE +dJq aag aag aag -uBI -lWX -aAw -ith -tYb -tYb -tYb -tYb -ith -jgb -nVH -uLR +roN +xoQ +xjo +nnI +jwy +jwy +jwy +jwy +nnI +eFI +sna +umQ jeb -jrJ -oDW -xZH +iDE +xCh +hZv rth rth rth @@ -106842,43 +106842,43 @@ aTW aTW rth rth -jBC -xsU -xmC +aVs +pGm +hBj jeb -rmL -nVH -iqs -nVH -rmL -gfw -ozt -cgx -moV -moV -tEg -moV -nDD -vMO +wre +sna +sKU +sna +wre +hei +fvS +jZA +eBP +eBP +pLh +eBP +jGP +raq ugu -ptT -fRL -mDh -dKs -cOr -eBx -gdI -ozt -gfw -tDc -fzH -rvv -fzH -tDc +maf +amB +kdC +hEY +sDp +jXQ +dbM +fvS +hei +xki +cuB +oOG +cuB +xki vra -tTL -eQN -lPi +cDt +reY +rle nyQ nyQ nyQ @@ -106886,26 +106886,26 @@ obQ obQ nyQ nyQ -nhL -fEa -nBH +rDU +iJJ +hMr vra -sIX -bZu -nIq -rTi -izp -izp -izp -izp -rTi -mWh -sXR -tKk +paW +fer +quB +nOU +haw +haw +haw +haw +nOU +slp +jLN +rTD aag aag aag -mSj +pdc aaa aaa aab @@ -106917,7 +106917,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -106930,71 +106930,71 @@ aag aag aag aag -nhB -foa -bpF -kbr -kbr -kbr -kbr -kbr -kbr -kEC -vwp -btS -kbr -qRw -qvP -lOG -jxE +xIP +pnA +qLc +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +blN +aLR +hDH +xWJ +oHA +tfh +jlP +wUE ael -rqC -unC -pmF +mAJ +rat +mNx ael -jPn -mEA -jPn +pMQ +hRK +pMQ mOi -uGr -uGr -ojo -iZo -iOy -sWQ -qGS -pnx +orN +orN +iVF +jEa +bCU +rrY +yhk +vlt aqU -btP +wDk wDy aGN -pTr +okr cnS -hZa -vzH -fMp -lGe -jKS -jKS -pwS -dqB -dqB -dqB -ayJ -dqB -dqB -iVQ -gSv -aST -dqB -dqB -dqB -dqB -dqB -dqB -geq -geq -gCr +bPi +srm +kjL +fib +fRU +fRU +rfH +hiq +hiq +hiq +fxH +hiq +hiq +rcP +qsl +ahF +hiq +hiq +hiq +hiq +hiq +hiq +qHz +qHz +hGG aag aag aag @@ -107007,7 +107007,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -107017,27 +107017,27 @@ aKQ aaa aaa aab -uBI -uBI -uBI -uBI -uBI -uBI -lWX -grV -ith -tYb -tYb -tYb -tYb -cxC -rmL -nVH -hOK +roN +roN +roN +roN +roN +roN +xoQ +rkQ +nnI +jwy +jwy +jwy +jwy +eJM +wre +sna +tEP jeb -dyf -wcz -xZH +lJR +nRZ +hZv rth rth tPI @@ -107045,43 +107045,43 @@ tPI iXT rth rth -jBC -dfX -dyf +aVs +xHI +lJR jeb -rmL -nVH -ndP -cPd -omN -ptM -hIM -cgx -moV -pUC -vwu -moV -nDD -vMO +wre +sna +nUw +pRg +pPC +hnC +bsu +jZA +eBP +nlk +suX +eBP +jGP +raq ugu -ptT -fRL -xYJ -cOr -cOr -cOr -gdI -gDI -ptM -jPy -kYG -bHl -fzH -uDG +maf +amB +rdT +sDp +sDp +sDp +dbM +cNu +hnC +noy +rya +iQK +cuB +dil vra -tIt -jRD -lPi +gmR +ndF +rle nyQ nyQ pHA @@ -107089,27 +107089,27 @@ pHA nyQ nyQ nyQ -nhL -vEc -tIt +rDU +jxt +gmR vra -uvj -bZu -tDc -nhj -izp -izp -izp -izp -rTi -lVF -sXR -tKk -tKk -tKk -tKk -tKk -tKk +vgM +fer +xki +qHn +haw +haw +haw +haw +nOU +wgt +jLN +rTD +rTD +rTD +rTD +rTD +rTD aaa aab aaa @@ -107120,7 +107120,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -107133,71 +107133,71 @@ aag aag aag aag -nhB -frN -rNa -kbr -ivJ -ivJ -ivJ -rCV -kbr -rFr -vwp -qfj -kbr -kKM -kbr -kbr -kbr +xIP +qMd +cmZ +xWJ +nXt +nXt +nXt +qnQ +xWJ +ibz +aLR +sVL +xWJ +ike +xWJ +xWJ +xWJ adO adO adO adO adO -qoN -mEA -lxm +oNF +hRK +fCK mOi mOi mOi mOi mOi mOi -mZJ -mZJ -mZJ +kow +kow +kow aqU -grU +tvf nTs pje pje -pHs -vgo -bec -jOM -dqB -dqB -dqB -dqB -dqB -nup -fNI -lcq -qbi -dqB -ufb -gSv -muh -dqB -sJi -sJi -sJi -fLN -dqB -tDN -geq -gCr +jmd +iYu +iuJ +hbr +hiq +hiq +hiq +hiq +hiq +nhg +iZV +vFI +dVH +hiq +cJg +qsl +ycK +hiq +wjh +wjh +wjh +mQv +hiq +lPx +qHz +hGG aag aag aag @@ -107210,7 +107210,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -107220,99 +107220,99 @@ aKQ aaa aaa aab -uBI -tXq -lWX -lWX -lWX -lWX -lWX -wqz -ith -tYb -tYb -tYb -tYb -ith -bRn -yix -ljx +roN +eEl +xoQ +xoQ +xoQ +xoQ +xoQ +mNo +nnI +jwy +jwy +jwy +jwy +nnI +ssI +dGJ +trN jeb jeb -xoi -tYu +sxP +iNz wnY cLC -oCk +wBG rtA -kHU +imT nFK lEO -hPM -kqk +jUQ +syB jeb jeb -rmL -nVH -dPq -hUn -twL +wre +sna +nsA +uCX +mEx bdd -bMZ -vSx -qBA -qBA -qBA -qBA -vJn -gAE -jDi -hEA -xNh -pxH -pxH -pxH -pxH -bIk -bir +qrU +eQI +ndR +ndR +ndR +ndR +vqk +tnA +qtM +ekx +fgS +nPq +nPq +nPq +nPq +dSM +hSR bdd -gRE -twF -aUV -fzH -tDc +mvT +orT +vmY +cuB +xki vra vra -nJE -iHx +hKo +lIK lzq nyQ nhx eiq -kwF +xTj wXH xBQ -ctl -rNu +sgI +nuF vra vra -cuZ -hWx -aLs -rTi -izp -izp -izp -izp -rTi -mWh -sXR -gGt -tBa -wao -iig -xcX -tKk +xpx +qWy +kXv +nOU +haw +haw +haw +haw +nOU +slp +jLN +eXd +svU +lsX +nft +tNN +rTD aaa aab aaa @@ -107323,7 +107323,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -107336,71 +107336,71 @@ aag aag aag aag -nhB -xvn -fId -kbr -ivJ -ivJ -ivJ -ivJ -kbr -fBw -muQ -lPh -kbr -dWr -dWr -vpq -sFH +xIP +msO +lTa +xWJ +nXt +nXt +nXt +nXt +xWJ +oDQ +pwb +gbd +xWJ +ozS +ozS +nsS +vkc adO -xZR -wiH -xmR +bgS +cJm +iiD adO -awN -fat -jPn +nuQ +eRv +pMQ mOi -vSM -vSM -gDy -sCi +ujc +ujc +sgp +mFP aqU -jld -kQQ -kOr +lKI +nfx +imX aqU -hmY +ltx rsO aGN -xPK +vcv cnS -uTL -vzH -jbf +kpO +srm +raO aUH -gZe -djd -gZe -dqB -lUZ -jKS -lcq -jKS -dqB -iCt -vvs -iKu -dqB -sJi -sJi -sJi -sJi -dqB -eEr -mFa -gCr +hYX +jxZ +hYX +hiq +cVS +fRU +vFI +fRU +hiq +btF +lbl +qfb +hiq +wjh +wjh +wjh +wjh +hiq +qUr +oub +hGG aag aag aag @@ -107413,7 +107413,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -107423,99 +107423,99 @@ aKQ aaa aaa aab -uBI -faT -aAw -aAw -aAw -aAw -iBQ -irF -ith -tYb -tYb -tYb -tYb -ith -vTk -vTk -vTk +roN +uvR +xjo +xjo +xjo +xjo +sdf +dwb +nnI +jwy +jwy +jwy +jwy +nnI +syx +syx +syx jeb -nvi -wuz +usa +jIs gAA beP -fYA -vBY -nHo -dET -fYA +cKP +gHD +jYK +isX +cKP moI gAA -mQD -nvi +qIq +usa jeb -dcz -nVH -cDq -liy -hDS +uDa +sna +caj +eDU +jno bdd -vkS -ozt -ozt -ozt -gLM -ozt -ozt -ozt -gLM -ozt -ozt -ozt -gLM -ozt -ozt -ozt -pgy +sPC +fvS +fvS +fvS +lhc +fvS +fvS +fvS +lhc +fvS +fvS +fvS +lhc +fvS +fvS +fvS +dvp bdd -sFL -qKn -kop -fzH -tDc +hod +xKS +sPk +cuB +xki vra -ubZ -pyk +lXK +nfh cgo fwY -hnx -uqY -hnx -fpB -hnx +vjq +sjC +vjq +eWt +vjq fwY cgo -ljm -ubZ +uFw +lXK vra -hCR -hCR -hCR -rTi -izp -izp -izp -izp -rTi -wyC -cux -taO -cux -cux -jjF -sXR -tKk +toY +toY +toY +nOU +haw +haw +haw +haw +nOU +dME +hXj +wgr +hXj +hXj +mEq +jLN +rTD aaa aab aaa @@ -107526,7 +107526,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -107539,71 +107539,71 @@ aag aag aag aag -nhB -foa -wNC -kbr -ivJ -ivJ -ivJ -ivJ -bbc -xlo -vwp -iho -kbr -oAU -dWr -dWr -wNK +xIP +pnA +lOx +xWJ +nXt +nXt +nXt +nXt +vGE +mii +aLR +uIw +xWJ +tYI +ozS +ozS +dMb adO -izm +tTS ahh aiw -dKj -fMp -vzH -jPn +upS +kjL +srm +pMQ mOi -vSM -vSM -pPr -qGS -qqE -gTJ -cBo -paW +ujc +ujc +bFF +yhk +jIR +kHW +ouC +kBQ aqU -kOp +pKz liJ -gFt -udY +gXi +dgf cnS -tYO -fat -jPn +jAn +eRv +pMQ aUH -qDT -hae -hae -dqB -lcq -jKS -lcq -jKS -dqB -vwX -gSv -vLe -rEX -sJi -sJi -sJi -sJi -dqB -egw -mFa -gCr +vlC +std +std +hiq +vFI +fRU +vFI +fRU +hiq +flB +qsl +hfx +sIq +wjh +wjh +wjh +wjh +hiq +atW +oub +hGG aag aag aag @@ -107616,7 +107616,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -107626,27 +107626,27 @@ aKQ aaa aaa aab -uBI -lWX -aAw -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -dde -vTk -vTk +roN +xoQ +xjo +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +lBf +syx +syx jeb -djl -wuz -xZH +fTQ +jIs +hZv hxe aPf rth @@ -107654,15 +107654,15 @@ rth rth rth hxe -jBC -mQD -sIp +aVs +qIq +eum jeb -oin -oin -dPq -tob -gGL +plA +plA +nsA +nYZ +jfe bdd beQ beQ @@ -107670,11 +107670,11 @@ beQ beQ bdd bdd -lay -jQc +qLa +pnU bdd -lay -jQc +qLa +pnU bdd bdd beQ @@ -107682,15 +107682,15 @@ beQ beQ beQ bdd -qxI -mXJ -aUV -mmX -mmX +lqc +gYi +vmY +iGS +iGS vra -gzO -pyk -lPi +pcI +nfh +rle ivs nyQ nyQ @@ -107698,27 +107698,27 @@ pHA nyQ nyQ ivs -nhL -ljm -iLb +rDU +uFw +wZJ vra -hCR -hCR -jSr -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -mWh -tBa -tKk +toY +toY +oSG +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +slp +svU +rTD aaa aab aaa @@ -107729,7 +107729,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -107742,71 +107742,71 @@ aag aag aag aag -nhB -ptq -xvn -kbr -ivJ -ivJ -ivJ -ivJ -kbr -brk -lgt -qFg -kbr -iaC -tWK -dWr -lFD +xIP +jGG +msO +xWJ +nXt +nXt +nXt +nXt +xWJ +slT +fJa +kIW +xWJ +stK +uDl +ozS +mXQ adO -lve +pkj ahh aiw adO -jPn -vzH -jPn -uJW -uJW -uJW -uJW -uJW +pMQ +srm +pMQ +gOy +gOy +gOy +gOy +gOy mOi -nqJ -gTJ -vjc +onw +kHW +cTa aqU aHq -fXq -lwF -fOa +eUs +myM +dcz aHq -jPn -vzH -jPn +pMQ +srm +pMQ aUH -qqT -nai -vVV -dqB -lcq -jKS -lcq -kcO -dqB -rwu -qzi -wfc -dqB -sJi -sJi -sJi -sJi -dqB -aLc -ifv -gCr +bbT +cIj +mgU +hiq +vFI +fRU +vFI +bZC +hiq +bSU +iIz +ufP +hiq +wjh +wjh +wjh +wjh +hiq +sGF +htZ +hGG aag aag aag @@ -107819,7 +107819,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -107829,27 +107829,27 @@ aKQ aaa aaa aab -uBI -lWX -grV -tho -ufn -ufn -jxp -ptk -ptk -ptk -lCZ -ptk -ptk -sLy -vTk -vTk -vTk +roN +xoQ +rkQ +bcY +vqY +vqY +jBq +xUl +xUl +xUl +vHR +xUl +xUl +lGK +syx +syx +syx jeb -fhm -mUH -xZH +dXZ +pRY +hZv hxe rth hXd @@ -107857,71 +107857,71 @@ guW aQM rth hxe -jBC -hWh -fhm +aVs +oJb +dXZ jeb -rmL -nVH -glT -erl -mUI +wre +sna +mFz +dLg +jQm bCz -eji -tJD -tJD -tJD -tJD -gCa -oTF +cpN +hzk +hzk +hzk +hzk +sLG +nvt bdj -cvi +lOm bdj -oTF -gCa -tJD -eji -tJD -tJD -tJD +nvt +sLG +hzk +cpN +hzk +hzk +hzk bCz -tDc -twF -aUV -fzH -ybI +xki +orT +vmY +cuB +kPw vra -wjk -roO -lPi +eou +dmM +rle ivs nyQ -tSo +jes vWB bSK nyQ ivs -eSC -uAT -wjk +kod +gXQ +eou vra -hCR -hCR -hCR -ftg -oGA -oGA -jCC -oGA -oGA -oGA -czS -uaE -uaE -tho -tih -hcK -tKk +toY +toY +toY +iuO +rkx +rkx +jkf +rkx +rkx +rkx +xyu +aLV +aLV +bcY +mmG +dxY +rTD aaa aab aaa @@ -107932,7 +107932,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -107945,34 +107945,34 @@ aag aag aag aag -nhB -foa -foa -kbr -ivJ -ivJ -ivJ -ivJ -kbr -lIj -wsz -uzh -kbr -lFp -hEz -wGa -qLk +xIP +pnA +pnA +xWJ +nXt +nXt +nXt +nXt +xWJ +vKm +uzS +wUV +xWJ +xnP +ygv +nOw +dXp adO -hBZ +tLO ahh aiw adO -oHP -uhT -jPn +jvh +jrq +pMQ ioU -lFH -gWj +knV +oCx xqD ioU ntj @@ -107980,36 +107980,36 @@ ntj ntj ntj ntj -fvL +qWD liJ -hzK -tUy +qkk +mBu aHq -oHP -qHk -mkq -njr -wYg -oQU -vEF -dqB -lcq -jKS -qbi -hXA -dqB -hhS -vkG -iAl -dqB -sJi -sJi -sJi -sJi -dqB -jjK -geq -gCr +jvh +jqk +mqV +qVt +nEf +dtR +dPB +hiq +vFI +fRU +dVH +mJo +hiq +pEn +tbW +naj +hiq +wjh +wjh +wjh +wjh +hiq +eMK +qHz +hGG aag aag aag @@ -108022,7 +108022,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -108032,43 +108032,43 @@ aKQ aaa aaa aab -uBI -aAw -kMg -tho -ufn -ufn -jxp -ptk -ptk -ptk -ptk -ptk -ptk -sLy -vTk -vTk -vTk +roN +xjo +tMu +bcY +vqY +vqY +jBq +xUl +xUl +xUl +xUl +xUl +xUl +lGK +syx +syx +syx aLT aLT aLT aLT -bRG -gRL +xVp +rSf aPK aLT aQN -cSW -jzh +buy +dBI aQL aQL aQL aQL -jbp -nVH -dPq -hUn -rmL +mMG +sna +nsA +uCX +wre bCA bCA bdj @@ -108088,43 +108088,43 @@ bCA bdj bCA bCA -tDc -twF -aUV -fzH -xgM +xki +orT +vmY +cuB +pPp bJC bJC bJC bJC -vMT -dBE +mDa +mmp bQZ bJC bSL -eCA -egl +rmC +xXD bSJ bSJ bSJ bSJ -hCR -hCR -hCR -ftg -oGA -oGA -oGA -oGA -oGA -oGA -czS -uaE -uaE -tho -mWh -tBa -tKk +toY +toY +toY +iuO +rkx +rkx +rkx +rkx +rkx +rkx +xyu +aLV +aLV +bcY +slp +svU +rTD aaa aab aaa @@ -108135,7 +108135,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -108148,71 +108148,71 @@ aag aag aag aag -nhB -xvn -xvn -kbr -kbr -kbr -kbr -kbr -kbr -jSl -qkW -gyb -kbr -kbr -kbr -thf -kbr -kbr -kRy +xIP +msO +msO +xWJ +xWJ +xWJ +xWJ +xWJ +xWJ +wvB +vjM +tub +xWJ +xWJ +xWJ +hCC +xWJ +xWJ +oyB ahh aiw adO -plq -mEA -jPn +ucB +hRK +pMQ ioU -wvQ -slZ -yaU -gJs -fJN -vxv -fJN -fJN -fJN -xln +jXe +pYt +lNL +mQh +eDq +gem +eDq +eDq +eDq +iQU liJ qmP -jDf +grc aHq -jPn -uhT -jPn +pMQ +jrq +pMQ aUH -qMI -cHo -lOS -dqB -ayJ -dqB -dqB -dqB -dqB -mQX -kxS -tCv -dqB -dqB -dqB -dqB -dqB -dqB -mFa -mFa -gCr +aMJ +btE +dbF +hiq +fxH +hiq +hiq +hiq +hiq +epH +sid +xWH +hiq +hiq +hiq +hiq +hiq +hiq +oub +oub +hGG aag aag aag @@ -108225,7 +108225,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -108235,99 +108235,99 @@ aKQ aaa aaa aab -uBI -xLD -hCd -tho -ufn -ufn -jxp -ptk -ptk -ptk -ptk -ptk -ptk -sLy -vTk -vTk -vTk +roN +xRO +kEx +bcY +vqY +vqY +jBq +xUl +xUl +xUl +xUl +xUl +xUl +lGK +syx +syx +syx aLT -poe -rxR +wyM +shy aLT -arB -fJn -stE +jEf +jgb +nJS aLT -qur -bjm -eZr +ivY +jIa +wOg aQL -pos -qsJ +uWd +aFU aQL -xPl -bcY -dRY -hUn -gEB -iKo -iKo -iKo -iKo -iKo -iKo -iKo -iKo -sSI +btj +lAt +pgB +uCX +eqm +puc +puc +puc +puc +puc +puc +puc +puc +lBy bdj -sSI -iKo -iKo -iKo -iKo -iKo -iKo -iKo -iKo -rbK -twF -bZu -mxg -cVp +lBy +puc +puc +puc +puc +puc +puc +puc +puc +iZz +orT +fer +kKC +xTZ bJC -jQV -bfF +nnm +vcD bJC -tmL -lZd -jCY +euz +yeG +oxH bJC -xtX -nre -phy +vjX +itB +lOg bSJ -dij -dYM +gbR +lfj bSJ -hCR -hCR -hCR -ftg -oGA -oGA -oGA -oGA -oGA -oGA -czS -uaE -uaE -tho -inH -cMu -tKk +toY +toY +toY +iuO +rkx +rkx +rkx +rkx +rkx +rkx +xyu +aLV +aLV +bcY +hgs +cBF +rTD aaa aab aaa @@ -108338,7 +108338,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -108351,36 +108351,36 @@ aag aag aag aag -nhB -xvn -foa -lnd -xvn -foa -foa -xpp -jyh -uma +xIP +msO +pnA +pHc +msO +pnA +pnA +xQk +sYz +jGw aeA -pYm -vaS -gqb -wGa -wGa -dWr -nzG +wNP +lOW +gVD +nOw +nOw +ozS +hrM aiw ahh aiw nph -jPn -fat -jPn +pMQ +eRv +pMQ ioU -xmx -mvp -sKH -vJA +hao +xbi +qXh +tsk aGN aGN suy @@ -108389,33 +108389,33 @@ uaV nSS iKf aGN -tTn +cxy aHq -mYd -vzH -jPn -cAE -ebW +iXy +srm +pMQ +vmB +duL mQC -vEF -lGe -lcq -lcq -xRg -kuP -lGe -ugA +dPB +fib +vFI +vFI +vpq +dru +fib +dYg lJY -ckb -fpG -odf -geq -fpr -mFa -mFa -geq -geq -gCr +myi +gNv +jSO +qHz +qiL +oub +oub +qHz +qHz +hGG aag aag aag @@ -108428,7 +108428,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -108438,99 +108438,99 @@ aKQ aaa aaa aab -uBI -dLC -ecS -tho -qtx -tzH -tzH -tho -tho -tho -tho -tho -tho -tho -tho +roN +fpQ +fWe +bcY +pQx +vmC +vmC +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY aLT aLT aLT -cLS +jpK aMQ -wPu +nOM bfy aMz -ank +dzd aLT -oUy +lvt aRT xMR -ukP +ucX aUj -jMu +drD aQL -kvp -jAe -dRY -hUn -oqr -cPR -cPR -enh -tXH -vBq -wXd -cPR -cPR -qmf +wYy +izN +pgB +uCX +nSD +nRT +nRT +fGC +cBO +vgz +sxH +nRT +nRT +ijL bQQ -nQB -cPR -cPR -wXd -vBq -tQR -wlq -cPR -cPR -fMb -twF -bZu -iaJ -sAk +wmN +nRT +nRT +sxH +vgz +dPf +vHv +nRT +nRT +exd +orT +fer +djy +ckH bJC -miW +jho bNG -uFn +exR chR bJD -nCb +epR bJC -vFO +tBE bTA cIr -mss +nsa bUU -tGr +vNA bSJ bSJ -pSr -tho -tho -tho -tho -tho -tho -tho -tho -gwp -gwp -mhe -tho -naK -tBa -tKk +hNB +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +hEK +hEK +tuC +bcY +lCW +svU +rTD aaa aab aaa @@ -108541,7 +108541,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -108555,69 +108555,69 @@ aag aag aag abh -dvG -dvG -kDw -dvG -dvG -dvG -dvG -dvG -vyV -oZB -iVF -kbr -kbr -kbr -kbr -wGa -kbr -yer +imq +imq +skk +imq +imq +imq +imq +imq +eNE +fNY +eUW +xWJ +xWJ +xWJ +xWJ +nOw +xWJ +sRN ahh aiw nph -jPn -mEA -jPn +pMQ +hRK +pMQ ioU ioU ioU ioU -tjT -puu -puu -igR -puu -usx +sGm +jwv +jwv +tjF +jwv +lNB udZ aGN aGN -ePP +vTL aHq -tvx -vzH -jPn -cAE -tFF +szV +srm +pMQ +vmB +ggn mQC -xWC -dqB -fWx -dqB -dqB -dqB -dqB -uiy -xfu -hel -vAv -vAv -vAv -vAv -vAv -rFV -vAv -vAv +fAr +hiq +mGx +hiq +hiq +hiq +hiq +cSh +hUI +daU +nnL +nnL +nnL +nnL +nnL +pHF +nnL +nnL uOi aag aag @@ -108631,7 +108631,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -108641,21 +108641,21 @@ aKQ aaa aaa aab -uBI -aAw -nMh -tho -fUQ -fUQ -fUQ -cSz -cSz -cSz -cSz -cSz -cSz -cSz -tho +roN +xjo +vLw +bcY +urB +urB +urB +lvJ +lvJ +lvJ +lvJ +lvJ +lvJ +lvJ +bcY aLT aLT aLT @@ -108663,21 +108663,21 @@ aLT aLT aLT tNR -dRj -jyM +lug +jCT aLT -iJm -kiZ +cob +mZj aSI aQL aQL aQL aQL aQL -gBH -dRY -hUn -jou +nhM +pgB +uCX +gXR bdl bdl bdl @@ -108686,9 +108686,9 @@ bdl bdl bGo bGo -dxi -xkF -loI +vbe +vwu +roJ cpK cpK bdl @@ -108697,43 +108697,43 @@ bdl bdl bdl bdl -sVS -twF -bZu -iqJ +pOy +orT +fer +nlJ bJC bJC bJC bJC bJC mjS -kgq -ktA +usp +imF bJC -wLF -jAt +lxD +vPq syH bSJ bSJ bSJ bSJ bSJ -pSr -tho -fRQ -fRQ -fRQ -fRQ -fRQ -fRQ -fRQ -bAB -bAB -bAB -tho -mWh -sXR -tKk +hNB +bcY +kFZ +kFZ +kFZ +kFZ +kFZ +kFZ +kFZ +dxg +dxg +dxg +bcY +slp +jLN +rTD aaa aab aaa @@ -108744,7 +108744,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -108760,62 +108760,62 @@ aag abh acx vuG -sak +iKO aeA aeA -irY +hVE aeA bbe aeA -sak +iKO aeA bbe aeA aeA -kbr -wGa -kbr +xWJ +nOw +xWJ afQ aiw aiw nph -jPn -mEA -jPn +pMQ +hRK +pMQ ioU -qRk -fkP +cuS +iGq ioU -uyR -puu -puu -usx -puu -usx +jeZ +jwv +jwv +lNB +jwv +lNB vQq eEo aGN -ngY +icN aHq -nFO -vzH -jPn -cAE -ens -gON -rpM -dqB -eLK -dqB +ruh +srm +pMQ +vmB +iGU +feZ +mKC +hiq +vmX +hiq lJY lJY lFK lJY -xca +eaM lJY lFK lJY -uPn +vew lJY qvI lJY @@ -108834,7 +108834,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -108844,99 +108844,99 @@ aKQ aaa aaa aab -uBI -rIK -rIK -tho -fUQ -fUQ -fUQ -cSz -cSz -cSz -cSz -cSz -cSz -cSz -tho +roN +ebq +ebq +bcY +urB +urB +urB +lvJ +lvJ +lvJ +lvJ +lvJ +lvJ +lvJ +bcY aLT aLT -cBf +qMM bdr -srA +ohd bdr bft -oaP -reo +poO +jHE aLT -vhS -rSI +tEm +wvy bno bpC -jEt +luM aRT -iOb +hfi aQL -rmL -dRY -hUn -jou +wre +pgB +uCX +gXR bdl -ioL -mCd -hAM -gvg -eES -nIX -och -rzh -rbb -rzh -oCN -iSC -ipx -cUW -aNy -gsu -iAF +mdw +cTO +ewE +sqZ +gBQ +fTl +lyY +wvf +wpZ +wvf +bMI +xtr +wzL +gff +vAd +ktq +qsx bdl -jXL -twF -bZu -tDc +uVe +orT +fer +xki bJC -udP +tAY cfo -idN +vvC cfo chM -dJU -qkM +gfV +uDX bJC -gUZ -pmn +fli +kGR clh clg -sSE +sjv clg -web +kHN bSJ -pSr -tho -fRQ -fRQ -fRQ -fRQ -fRQ -fRQ -fRQ -bAB -bAB -bAB -tho -mci -hEW -tKk +hNB +bcY +kFZ +kFZ +kFZ +kFZ +kFZ +kFZ +kFZ +dxg +dxg +dxg +bcY +tqw +fod +rTD aaa aab aaa @@ -108947,7 +108947,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -108961,69 +108961,69 @@ aag aag aag abi -aSw +iGb aeA aje amF asA -sPx +nQB amF amF amF -sPx +nQB asA amF kmE aeA -kbr -whY -kbr +xWJ +mKD +xWJ ahJ ahJ ahJ adO -jPn -fat -jPn +pMQ +eRv +pMQ ioU -niI -byT -eAT +tfo +vxp +hEk nVB -qSS -puu -usx -puu -usx -kly +uQC +jwv +lNB +jwv +lNB +ptd aRi aGN -tTn +cxy aHq -uhL -vzH -jPn +sro +srm +pMQ aUH -mAS -mAS -mAS -dqB -lsg -dqB +rvD +rvD +rvD +hiq +cTD +hiq lJY qbx dcp yeH -fMK +koX dcp dcp dcp -fMK +koX yeH dcp nja lJY -sVG +wau uyC aag aag @@ -109037,7 +109037,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -109047,99 +109047,99 @@ aKQ aaa aaa aab -iRV -uVP -uVP -tho -fUQ -fUQ -fUQ -cSz -cSz -cSz -cSz -cSz -cSz -cSz -tho +afW +fgY +fgY +bcY +urB +urB +urB +lvJ +lvJ +lvJ +lvJ +lvJ +lvJ +lvJ +bcY aLT aLT -kVc -dQt +hyT +jFu aLT -gEq -fLd -cYl -dSf +pvs +eLH +bnK +sGq aLT -oTI -bun -pQS -tUM +bRY +tBZ +vzr +eNf aQL -evT -peE +ndK +xfX aQL -rmL -dRY -hUn -jou +wre +pgB +uCX +gXR bdl -ctS +dxQ bCA bCA bdj -eES -cSY -oTF +gBQ +onS +nvt bCA -maX +pBr bCA -oTF -cSY -ipx -lbk +nvt +onS +wzL +cot rIH tUh -hGe +vNO bdl -dmP -twF -bZu -tDc +erc +orT +fer +xki bJC -hzU -iJi +rwh +sSH bJC -eis -kZR -nCb -rEp +aAn +nmv +epR +iYq bJC -vsq -raJ -wJM -nkt +pQT +usD +qDY +rlq bSJ -oRx -mKs +jwG +xzw bSJ -pSr -tho -fRQ -fRQ -fRQ -fRQ -fRQ -fRQ -fRQ -bAB -bAB -bAB -tho -jao -vqr -msc +hNB +bcY +kFZ +kFZ +kFZ +kFZ +kFZ +kFZ +kFZ +dxg +dxg +dxg +bcY +jtB +hOd +vCM aaa aab aaa @@ -109150,7 +109150,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -109164,69 +109164,69 @@ aag aag aag abi -dMn +gsr aeA ajk aeA -sak -sak -sak -tLn -sak -sak -sak +iKO +iKO +iKO +aAJ +iKO +iKO +iKO vOh gUX ily -kbr -thf -kbr -sak -sak -sak -wUo -jPn -fat -jPn +xWJ +hCC +xWJ +iKO +iKO +iKO +frT +pMQ +eRv +pMQ ioU -muZ -dyC +jWz +nBx ioU -sAJ -smf -smf -irV -wMX -mQm -iWT -rRg -mQm -vsz +gCF +iIM +iIM +bom +ucL +xqx +vPS +iGL +xqx +ikJ aHq -plq -uhT -jPn -wUo -xca -xca -xca -dqB -ayJ -dqB +ucB +jrq +pMQ +frT +eaM +eaM +eaM +hiq +fxH +hiq cBb xVS lJY -xca -xca -xca -uOI -xca -xca -xca +eaM +eaM +eaM +fyk +eaM +eaM +eaM eKH lVo lJY -gDq +dCv uyC aag aag @@ -109240,7 +109240,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -109250,99 +109250,99 @@ aKQ aaa aaa aab -iRV -wlW -wlW -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho +afW +kWJ +kWJ +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY aLT aLT aLT aLT aLT aLT -nDy -cYl -dSf +sJw +bnK +sGq aLT -oTI -bun -iPR +bRY +tBZ +ujl aQL aQL aQL aQL aQL -jbp -dRY -hUn -cSg +mMG +pgB +uCX +nwf bdl -dwJ +cpx bCA bCA -cQV -kxQ -iSE -iSE -iSE -iSE -iSE -iSE -iSE -mOS -oTF -xIu +ycO +jqG +ldb +ldb +ldb +ldb +ldb +ldb +ldb +beJ +nvt +qfs bCA -flg +dCH bdl -fhP -twF -bZu -xgM +hll +orT +fer +pPp bJC bJC bJC bJC bJC -rLV -nCb -rEp +ssk +epR +iYq bJC -vsq -raJ -lZa +pQT +usD +iBw bSJ bSJ bSJ bSJ bSJ -pSr -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -tho -nLN -nxG -msc +hNB +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +bcY +nwI +tpV +vCM aaa aab aaa @@ -109353,7 +109353,7 @@ aaa aaa aab aaa -oZE +dJq aag aag aag @@ -109368,29 +109368,29 @@ aag aag abh acx -mpf -qJc -sak -sak -qog -oiC -oiC -oiC -kWD -sak -sak -qJc -sak -iVF -sak -mDN -uBA -uBA -aUD -eRM -dqX -mom -fpm +tqp +ppf +iKO +iKO +ujF +sXk +sXk +sXk +qLq +iKO +iKO +ppf +iKO +eUW +iKO +hze +cfQ +cfQ +veL +qar +xef +lyj +mlB alL alL alL @@ -109406,29 +109406,29 @@ jvY alL alL alL -dqX -mom -fpm -eRM -oAv -tpr -tpr -oRB -xfu -uiy -xca -rrz -xca -xca -htX -xxf -xxf -xxf -urD -xca -xca -rrz -umN +xef +lyj +mlB +qar +oHn +hRI +hRI +qyr +hUI +cSh +eaM +tck +eaM +eaM +rkq +pQj +pQj +pQj +kIX +eaM +eaM +tck +jum rRq uOi aag @@ -109443,7 +109443,7 @@ aag aag aag aag -mSj +pdc aaa aaa aab @@ -109453,99 +109453,99 @@ aKQ aaa aaa aab -iRV -cRm -sCa -bOt -mPD -sCa -cRm -uqx -nJa -upC -uOX -oVj -bNR -phx -pNK -oVj +afW +ibe +pjy +eHN +qey +pjy +ibe +wFX +kyU +eUZ +pSi +lOh +ror +wLl +uPU +lOh aLT -lQe -wHX -pwg +eXQ +inS +obX aLT -kWG -cYl -fKH +yiU +bnK +tGc aLT -rmy -sFJ -xhr +dri +xPD +lIT aQL -cgj -fUN -cOC +hzO +wig +rYc aQL -rmL -dRY -hUn -tpC +wre +pgB +uCX +vHc bdl -nWi +bRl bdj -sSI -qdZ +lBy +tBQ bdl -ujf -jYI -szK -jYI -szK -jYI -szK +yaJ +xrO +nll +xrO +nll +xrO +nll mYv -lJW -xIu -aMS -pAK +fEs +qfs +rsc +xIY bdl -eOf -twF -bZu -tDc +hdw +orT +fer +xki bJC -wQs -doF -uXa +ubK +bWX +glC bJC -jbJ -nCb -ofp +jip +epR +oIT bJC -nuq -raJ -nNd +hUG +usD +kKq bSJ -gHv -dVB -kcB +keY +dzo +wEC bSJ -pSr -lpR -imD -imD -imD -bBH -vYW -tsD -pSr -jDa -aWA -tuJ -tuJ -uJG -gjQ -msc +hNB +yhJ +trc +trc +trc +lwn +bFM +krA +hNB +pDj +uiW +sTE +sTE +fKD +qgt +vCM aaa aab aaa @@ -109556,11 +109556,11 @@ aaa aaa aab aaa -mEM -lnh -lnh -lnh -lnh +vQY +mwi +mwi +mwi +mwi aag aag aag @@ -109571,67 +109571,67 @@ aag aag abh acx -aCu -qJc -sak -ocW -iAG +hmK +ppf +iKO +kov +drS atr -whN +grq aex -xkv -ocW -sak -aMN -sPx -kXo -xtP -uIR +gfX +kov +iKO +oKu +nQB +fQz +jMa +jcO asA asA -uIR -hXX -oCe -tmH -nay +jcO +oSI +lPg +pMl +ozW jvY jvY jvY jvY -gxM -bYJ -whF -vqw -quA -bYJ -aYy +xvx +qiP +aXI +jQc +eQW +qiP +cdB jvY jvY jvY jvY -lFi -myh -xZu -hXX -pzj +hdn +klo +fhe +oSI +cku yeH yeH -pzj -kFR -iLx -fMK -gSW -xca -iGz -pSE +cku +fUV +eZF +koX +oav +eaM +kpd +ydn tGi -eeW +eBq bXe -wAz -iGz -xca -rrz -bPc +tmT +kpd +eaM +tck +vKt rRq uOi aag @@ -109642,11 +109642,11 @@ aag aag aag aag -lnh -lnh -lnh -lnh -eJu +mwi +mwi +mwi +mwi +vcV aaa aaa aab @@ -109656,99 +109656,99 @@ aKQ aaa aaa aab -iRV -tvC -uqx -dfF -vcn -cRm -sCa -cRm -uTQ -aCh -uTQ -cRm -sCa -uqx -pNK -sIa +afW +nfb +wFX +xPT +soc +ibe +pjy +ibe +nab +beh +nab +ibe +pjy +wFX +uPU +uaw aLT -lQe +eXQ bdr -pwg +obX aLT -fQI -cYl -dSf +aNf +bnK +sGq aLT -oTI -bun -jGh +bRY +tBZ +sQW aQL -cgj +hzO aRT -cOC +rYc aQL -rmL -dRY -hUn -ugL +wre +pgB +uCX +cwK bdl -exC -exC -gdJ +gkz +gkz +wSi bdl bdl -ruo -jYI -szK -jYI -szK -jYI -fgS -alh -ipx -dgQ -ipx -ipx +nIw +xrO +nll +xrO +nll +xrO +qKX +vFz +wzL +tpv +wzL +wzL bdl -qws -twF -bZu -tDc +iTR +orT +fer +xki bJC -wQs +ubK cfo -uXa +glC bJC -gki -nCb -rEp +ibv +epR +iYq bJC -vsq -raJ -egu +pQT +usD +oDN bSJ -gHv +keY clg -kcB +wEC bSJ -pSr -pOF -tuJ -tuJ -hPk -lwK -tIn -rkl -pSr -vaq -fdT -fdT -fdT -wAT -oDI -msc +hNB +eUi +sTE +sTE +ukD +ppH +xzg +lCd +hNB +tJg +uXr +uXr +uXr +cqo +xCC +vCM aaa aab aaa @@ -109764,87 +109764,87 @@ aaa aaa bdH aaa -mEM -lnh -lnh -lnh -lnh -lnh -lnh -lnh +vQY +mwi +mwi +mwi +mwi +mwi +mwi +mwi abi -upB -gyU +qww +adZ ajk aeA asY -brD +eME atr -dJA +vwi atr -fmH +tBj ngl aeA ajk aeA -tAj -sak -uLf -oZB -oZB -vyV -eRM -gkH -qRd -vGN +xNK +iKO +vCd +fNY +fNY +eNE +qar +wdj +rBD +sLK jvY -tRY -cqS +yci +vlb jvY -oqF -usB -mus -usB -eNU -usB -pWQ +iGJ +gSI +pTX +gSI +rRa +gSI +xdB jvY -wSD -jts +oqj +ulm jvY -iot -qRd -vGN -eRM -hel -xfu -xfu -ifd -kSX -rCh +tEs +rBD +sLK +qar +daU +hUI +hUI +rMq +fci +bxL lJY xVS lJY ttS -oZj +ugS faO -tHL +tlX bXe -xge +szs wLu lJY xVS -kPH -fmO +fqg +eSB uyC -lnh -lnh -lnh -lnh -lnh -lnh -lnh -eJu +mwi +mwi +mwi +mwi +mwi +mwi +mwi +vcV aaa aaa aaa @@ -109859,99 +109859,99 @@ aKQ aaa aaa aab -iRV -iRV -iRV -iRV -iRV -twV -sCa -cRm -bko -pwv -pVm -cRm -sCa -cRm -cRm -pNK +afW +afW +afW +afW +afW +wNr +pjy +ibe +edC +oPp +mWh +ibe +pjy +ibe +ibe +uPU aLT -spl +gSA bdr -pJp -iuM +jGT +fjj bfy -cYl -dSf +bnK +sGq aLT -oTI -bun +bRY +tBZ bnt -tpH -iSe +waZ +hzT aRT -kkX +tBi aQL -oin -dPq -tob -oin +plA +nsA +nYZ +plA mCo -wdK -eAZ -oTF -uut -gHY -ugy -jYI -szK -jYI -szK -jYI -szK -wMc -jPd -qaS -nce -xED +gJT +iWV +nvt +ifS +mgB +kHA +xrO +nll +xrO +nll +xrO +nll +prC +cSv +rvO +fUe +djP mCo -mmX -mXJ -aUV -mmX +iGS +gYi +vmY +iGS bJC -wlY +fkj cfo -lrc -wQR +kym +vrX chR -nCb -rEp +epR +iYq bJC -vsq -raJ +pQT +usD cll -chx -uJx +iVm +pUW clg -gXu +sWv bSJ -pSr -pSr -pSr -pSr -bsm -ppp -pSr -pSr -pSr -gXE -lco -msc -msc -msc -msc -msc +hNB +hNB +hNB +hNB +oTI +tmU +hNB +hNB +hNB +oLD +oSy +vCM +vCM +vCM +vCM +vCM aaa aab aaa @@ -109976,69 +109976,69 @@ bdH bdH bdH abi -vRg -gyU +kWG +adZ ajk aeA atp -iQA +tfM atr -dJA +vwi atr -lrK +mjZ nqV aeA ajk ily -dcn -iIa -dcn -iZs -sak -btf -wUo -ldg -vzH -iqz +kOe +dgv +kOe +fFN +iKO +eQX +frT +nSx +srm +ujk jvY -qYU +gtn atm jvY -yiH -usB -wuN -usB -vey -usB -hes +hcU +gSI +kjO +gSI +sto +gSI +kqW jvY nSG -lCI +tKn jvY -ldg -fat -iqz -wUo -qFw -xca -wJi -tJH -kLK -tJH +nSx +eRv +ujk +frT +mSm +eaM +nVg +iGT +fWs +iGT cBb xVS lJY hlX -wvF +ygV bXe -tHL +tlX tGi -sVT +pId wlF lJY xVS -kPH -bQC +fqg +sOd uyC bdH aaa @@ -110066,91 +110066,91 @@ aaa aaa aaa aaa -iRV -pHC -sCa -cRm -ngT -uON -ngT -cRm -sCa -ttg -cRm -sCa +afW +djC +pjy +ibe +vqA +lZC +vqA +ibe +pjy +tLL +ibe +pjy aLT -lQe +eXQ bdr -pwg +obX aLT -sAK -xaG -fKH +pjT +pPy +tGc aLT -rmy -bun -fAh +dri +tBZ +iSb aQL -cgj +hzO aRT -cOC +rYc aQL -jFc -dRY -tlc -gPs -iwj -shS +fet +pgB +wQZ +hmI +xCy +oBF bGU bGU -syz -cAq -lcH -nnt -nnt -nnt -nnt -nnt -nnt -eTD -xiE +cWm +fgg +qZO +sDb +sDb +sDb +sDb +sDb +sDb +vgd +qEv bYw nDM -eTD -jfn -siB -sqz -vvW -ttb +vgd +tlt +xkw +rsL +dmj +jBK bJC -wQs +ubK cfo -uXa +glC bJC -wsw -nCb -ofp +ulj +epR +oIT bJC -nuq -raJ -qnW +hUG +usD +oWu bSJ -gHv +keY clg -kcB +wEC bSJ -wQh -tuJ -tuJ -tuJ -uJG -pOF -aWA -tuJ -tuJ -uJG -xQp -msc +pJj +sTE +sTE +sTE +fKD +eUi +uiW +sTE +sTE +fKD +rPy +vCM aaa aaa aaa @@ -110180,67 +110180,67 @@ aaa bdH abh acx -gfL -qJc -sak -ocW -iAG +beu +ppf +iKO +kov +drS atr -sEO +rNK bXz -xkv -ocW -sak -qJc -uIW -dcn -deF +gfX +kov +iKO +ppf +cNw +kOe +tQM aep ggQ ggQ aME aep -ldg -uhT -iqz +nSx +jrq +ujk jvY -jcb +mHd aoP jvY -tla -usB -xGW -usB -dcy -usB -wnO +dhi +gSI +pHE +gSI +rdl +gSI +obK axo atm -loo +oUs jvY -ldg -fat -iqz +nSx +eRv +ujk aep aME ggQ aME aep -ePV -tJH -rUE -rrz -xca -iGz -pSE +nXa +iGT +nNu +tck +eaM +kpd +ydn bXe -hwH +lwR mzF -wAz -iGz -xca -rrz -qUI +tmT +kpd +eaM +tck +lkI rRq uOi bdH @@ -110269,91 +110269,91 @@ aaa aaa aaa aaa -iRV -wog -dfF -uqx -mka -jvT -num -jSa -sCa -cRm -cRm -sCa +afW +qhg +xPT +wFX +jif +tjQ +lwj +qNQ +pjy +ibe +ibe +pjy aLT -lQe -dQt -pwg +eXQ +jFu +obX aLT -nDy -nII -dSf +sJw +uey +sGq aLT -oTI -bun -sYr +bRY +tBZ +lfX aQL -cgj -evT -cOC +hzO +ndK +rYc aQL -rmL -dRY -hUn -tpC +wre +pgB +uCX +vHc mCo -gzv -iSE -iSE -iSE -juA -uwp +oaD +ldb +ldb +ldb +qbs +prF bpQ bpQ -tAD +oyI bpQ bpQ -cGf -eFr -oTF -oTF -qGk -uSC +kue +eEh +nvt +nvt +pnK +oyC mCo -uvj -twF -bZu -tDc +vgM +orT +fer +xki bJC -wQs -iJi -uXa +ubK +sSH +glC bJC -hCD -nCb -rEp +ghA +epR +iYq bJC -vsq -raJ -hCu +pQT +usD +ilc bSJ -gHv -oRx -kcB +keY +jwG +wEC bSJ -mgG -fdT -fdT -fdT -fdT -xQp -wej -xQp -fdT -fdT -ovI -msc +iXe +uXr +uXr +uXr +uXr +rPy +tSf +rPy +uXr +uXr +iBy +vCM aaa aaa aaa @@ -110383,67 +110383,67 @@ aaa bdH abh acx -gHx -qJc -sak -sak -cBT -lZS -mxJ -mxJ -tfm -sak -sak -qJc -sak -dcn -fMW +jah +ppf +iKO +iKO +cEW +xOQ +fmn +fmn +xBM +iKO +iKO +ppf +iKO +kOe +vDo aep afj afk agM aep -ldg -mEA -iqz +nSx +hRK +ujk jvY -vIK +yjV atm jvY -mes -usB -usB -usB -usB -usB -usB -xVa +hHm +gSI +gSI +gSI +gSI +gSI +gSI +gXz atm -lCI +tKn jvY -ldg -mEA -iqz +nSx +hRK +ujk aep aHS afk sHo aep -yfQ -tJH -xca -rrz -xca -xca -enO -pOQ -pOQ -pOQ -rZp -xca -xca -rrz -rAV +qgx +iGT +eaM +tck +eaM +eaM +fXa +tCh +tCh +tCh +vEz +eaM +eaM +tck +drm rRq uOi bdH @@ -110472,91 +110472,91 @@ aaa aaa aaa aaa -iRV -iRV -iRV -iRV -iRV -iRV -iRV -iRV -iRV -iRV -mPD -vcn +afW +afW +afW +afW +afW +afW +afW +afW +afW +afW +qey +soc aLT aLT aLT aLT aLT -aiK -nII -dSf +sVW +uey +sGq aLT -oTI -bun -kSL +bRY +tBZ +fVe aQL aQL aQL aQL aQL -rmL -dRY -hUn -juR +wre +pgB +uCX +uKx bdl bEi -eFr -szK -gDu -juA +eEh +nll +xCV +qbs boz -gOc -gOc -gOc -gOc -gOc +mFJ +mFJ +mFJ +mFJ +mFJ bxg -eFr -oTF -oTF -bcT +eEh +nvt +nvt +fJb bdl bdl -pOl -twF -bZu -tDc +ljc +orT +fer +xki bJC bJC bJC bJC bJC -csa -nCb -rEp +xyb +epR +iYq bJC -vsq -raJ -uFz +pQT +usD +uSe bSJ bSJ bSJ bSJ bSJ -oAa -fdT -msc -msc -msc -msc -msc -msc -msc -msc -msc -msc +iWg +uXr +vCM +vCM +vCM +vCM +vCM +vCM +vCM +vCM +vCM +vCM aaa aaa aaa @@ -110585,69 +110585,69 @@ aaa aaa bdH abi -jZR +ycs aeA aju amH -sak -sak -sak -tLn -sak -sak -sak +iKO +iKO +iKO +aAJ +iKO +iKO +iKO aeA ajk aeA -dcn -fMW +kOe +vDo aep afk afk afk aep -ldg -fat -iqz +nSx +eRv +ujk jvY -mpZ +tYa atm jvY -epC -usB -hhd -usB -vYV -usB -pLR +cOZ +gSI +wZg +gSI +wjm +gSI +pKu axo atm -xmU +iXY jvY -ldg -mEA -iqz +nSx +hRK +ujk aep afk aHl afk aep -kTB -tJH +qqI +iGT lJY itR kKR -xca -xca -xca -uOI -xca -xca -xca +eaM +eaM +eaM +fyk +eaM +eaM +eaM lJY xVS lJY -xHY +lsY uyC bdH aaa @@ -110684,73 +110684,73 @@ aaa aaa aaa aaa -iRV -sCa -cRm +afW +pjy +ibe aLT -gLL -wHX -dCM +uWH +inS +hpB aLT -nAe -nII -fKH +upE +uey +tGc aLT -rmy -bun -oTi +dri +tBZ +eIK aQL -cXl -fUN -bIg +sIu +wig +hDO aQL -rmL -dRY -hUn -tpC +wre +pgB +uCX +vHc bdl brp -eFr -szK -rMf -juA +eEh +nll +okZ +qbs boz -gOc -gOc -gOc -gOc -gOc +mFJ +mFJ +mFJ +mFJ +mFJ bxg -eFr -iSE -iSE -iSE -llq -jSH -dKw -twF -bZu -tDc +eEh +ldb +ldb +ldb +gMD +eQb +vJj +orT +fer +xki bJC -hFZ -doF -ckZ +rol +bWX +xRP bJC -bel -cCp -ofp +fSf +rfD +oIT bJC -nuq -raJ -iZA +hUG +usD +eZP bSJ -kSP -dVB -pdd +mxq +dzo +tur bSJ -mgG -fdT -msc +iXe +uXr +vCM aaa aaa aaa @@ -110788,33 +110788,33 @@ aaa aaa bdH abi -ukD +vXW aeA ajv amF asA -sPx +nQB amF amF amF -sPx +nQB asA amF ohL aeA -dcn -kDy +kOe +xZe aep aep aep aep aep -jxq -xYk -jxq +nqz +iEB +nqz jvY alL -hpX +lXn jvY jvY axo @@ -110824,33 +110824,33 @@ axo axo jvY jvY -eHA +qqj alL jvY -jxq -wVR -jxq +nqz +nCi +nqz aep aep aep aep aep -gaY -tJH +enh +iGT lJY ucw dcp yeH -fMK +koX dcp dcp dcp -fMK +koX yeH dcp lMp lJY -tAe +cRP uyC bdH aaa @@ -110887,73 +110887,73 @@ aaa aaa aaa aaa -iRV -sPT -cRm +afW +qDH +ibe aLT -gLL +uWH bdr -dCM +hpB aLT -vuC -nII -dSf +sza +uey +sGq aLT -oTI -bun -kve +bRY +tBZ +lGA aQL -cXl +sIu bpC -bIg +hDO aQL -eTA -dRY -hUn -tpC +fkT +pgB +uCX +vHc bdl bEl wup -szK -oJU -juA -tkg -gOc -gOc -qBv -gOc -gOc -sBU -eFr -eaC -eaC -eaC -oqY -wSL -tDc -twF -bZu -tDc +nll +sRE +qbs +vVA +mFJ +mFJ +lNY +mFJ +mFJ +jfW +eEh +elh +elh +elh +llt +acQ +xki +orT +fer +xki bJC -hFZ +rol cfo -ckZ +xRP bJC -gki -hLc -rEp +ibv +mkU +iYq bJC -vsq -raJ -iyw +pQT +usD +eDs bSJ -kSP +mxq clg -pdd +tur bSJ -oHJ -fhR -msc +ipO +eBM +vCM aaa aaa aaa @@ -110996,59 +110996,59 @@ aeA aeA aeA aeA -sak +iKO aeA aeA aeA -sak +iKO ntI aeA -sak +iKO puO -dcn -fMW -evh +kOe +vDo +abv aep aep aep aep -mIZ -wte -dKd +mmc +hlG +hkL jvY -nRL +dhV atm alL -xcd -tSb -qZe -rlH -mxX -bqX -uLU +uSX +dYS +qGr +ssC +vZe +hUH +jNH alL aMo -oOd +efL jvY -mIZ -vjN -kIu +mmc +pET +xOP oIB -waT -sPi -thh +rAX +oXE +igy oIB -yfQ -tJH +qgx +iGT lJY uxC lJY lJY -drm +fPO lJY lJY lJY -xca +eaM lJY lJY lJY @@ -111090,73 +111090,73 @@ aaa aaa aaa aaa -iRV -sCa -cRm +afW +pjy +ibe aLT -eRz +oTC bdr -pJp -jFd +jGT +emu bfy -nII -dSf +uey +sGq aLT -oTI -bun +bRY +tBZ bnt -idV -iSe +dgV +hzT bpC -sdI +bHo aQL -oin -dPq -tob -oin +plA +nsA +nYZ +plA bdl buz -eFr -szK -eyB -juA +eEh +nll +aUf +qbs boz -gOc -gOc -gOc -gOc -gOc +mFJ +mFJ +mFJ +mFJ +mFJ bxg -eFr -wKZ -mPq -nMU -aIR -aUO -rbK -mXJ -aUV -mmX +eEh +uCZ +xHK +mVp +vQp +mwk +iZz +gYi +vmY +iGS bJC -dny +htK cfo -lrc -fhz +kym +nln chR -hLc -rEp +mkU +iYq bJC -vsq -raJ +pQT +usD cll -nkz -uJx +hNE +pUW clg -mxO +aVy bSJ -nMG -xQp -msc +jjQ +rPy +vCM aaa aaa aaa @@ -111197,63 +111197,63 @@ abh abh abh abh -sak +iKO atr -sak +iKO atr -sak -dcn -dcn -dcn -dcn -vtT -dcn -dcn -fMW -qrb -dcn -dcn -dcn -dcn -mIZ -wte -dKd +iKO +kOe +kOe +kOe +kOe +kgg +kOe +kOe +vDo +oTX +kOe +kOe +kOe +kOe +mmc +hlG +hkL jvY -nqs +tGz atm -pDv +mXX atm atm atm -oHW +qIC aFi aFi aHs -kOe +iVA atm -reQ +lEG jvY -mIZ -sXP -xkQ +mmc +cLc +mIR oIB -mww -hKd -hQw +uBF +lDr +jRM oIB -yfQ -tJH -tJH -xGU -xGU -oSC -xGU -xGU -xca +qgx +iGT +iGT +elL +elL +iJT +elL +elL +eaM bXe -xca +eaM bXe -xca +eaM uOi uOi uOi @@ -111293,73 +111293,73 @@ aaa aaa aaa aaa -iRV -cRm -sCa +afW +ibe +pjy aLT -gLL -dQt -dCM +uWH +jFu +hpB aLT -eqO -nII -fKH +pIE +uey +tGc aLT -rmy -dqS -dmV +dri +cuG +nCk aQL -cXl -evT -bIg +sIu +ndK +hDO aQL -rmL -dRY -hUn -hOK +wre +pgB +uCX +tEP bdl bEm -eFr -szK -pwI -juA +eEh +nll +aAh +qbs boz -gOc -gOc -gOc -gOc -gOc +mFJ +mFJ +mFJ +mFJ +mFJ bxg -eFr -bHQ +eEh +rUz uys uys uys uys -uRY -twF -bZu -tDc +ebG +orT +fer +xki bJC -hFZ -iJi -ckZ +rol +sSH +xRP bJC -xnb -hLc -ofp +wrl +mkU +oIT bJC -nuq -gWz -aBJ +hUG +cdR +kgV bSJ -kSP -oRx -pdd +mxq +jwG +tur bSJ -eYG -rXc -msc +vnv +epw +vCM aaa aaa aaa @@ -111396,71 +111396,71 @@ aaa aaa aaa aaa -oZE +dJq aag aag abh -sak +iKO atr -sak +iKO atr -sak -dcn -bFd -smz -dcn -wQt -dcn -puL -fMW -kDy -dcn -kDy -kDy -dcn -iRv -isU -dKd +iKO +kOe +hWb +jGD +kOe +gOM +kOe +bAA +vDo +xZe +kOe +xZe +xZe +kOe +kCz +wpQ +hkL jvY jvY jvY jvY -eCK -eCK -kFf -xaQ -koI -eCK -eCK +tUO +tUO +ceY +eif +cPA +tUO +tUO jvY jvY jvY jvY -bZV -vjN -dKd +xtC +pET +hkL oIB -gvx +meZ bZw -mfJ +hww oIB -yfQ -nVT -tJH -aRk -stt -idQ -kgl -xGU -xca +qgx +qcv +iGT +aLv +jfA +qtX +mRy +elL +eaM bXe -xca +eaM bXe -xca +eaM uOi aag aag -mSj +pdc aaa aaa aaa @@ -111496,73 +111496,73 @@ aaa aaa aaa aaa -iRV -uuy -ygB +afW +tjU +hak aLT aLT aLT aLT aLT -nDy -nII -dSf +sJw +uey +sGq aLT -oTI -bun -fAh +bRY +tBZ +iSb aQL aQL aQL aQL aQL -esQ -fPa -kxR -esQ +jbT +fOm +dnj +jbT bdl -tLK -nMU -nMU -nMU -jiR -jvt +rSr +mVp +mVp +mVp +wvK +ral bpS bpS -ohk +lEa bpS bpS -dzd -eFr -oTF -kek -qqX -uwy +aGu +eEh +nvt +wvh +idq +adw uys -cwt -cri -sEF -cwt +uel +wyA +ihH +uel bJC bJC bJC bJC bJC -cPj -edz -rEp +qfH +xvB +iYq bJC -vsq -raJ -hFp +pQT +usD +xzW bSJ bSJ bSJ bSJ bSJ -ipS -xQp -msc +vDW +rPy +vCM aaa aaa aaa @@ -111599,71 +111599,71 @@ aaa aaa aaa aaa -oZE +dJq aag aag abh -sak -rdP -jzO -sak -yeX -dcn -fMW -fQV -dcn -mCE -dcn -sTH -wPQ -ejc -lOh -wPQ -wPQ -lOh -jKf -isU -dKd +iKO +qhO +tgH +iKO +wLz +kOe +vDo +kJI +kOe +xpN +kOe +ttK +fKu +tGb +him +fKu +fKu +him +bau +wpQ +hkL alL -iBd -edi +tXe +gpf jvY jvY jvY jvY -nrb +qEe jvY jvY jvY jvY -nNx -fQm +kWE +dxE alL -mIZ -sXP -jKf -nBR -oKr -uBM -ejv +mmc +cLc +bau +wws +bCO +llD +kcn oIB -rtg -ict -tJH -kqr -hGg -idQ -ftc -xGU -xca -jOF -fdq -xca -drm +bsA +uqw +iGT +fhN +fLw +qtX +hBV +elL +eaM +eCP +otf +eaM +fPO uOi aag aag -mSj +pdc aaa aaa aaa @@ -111699,73 +111699,73 @@ aaa aaa aaa aaa -iRV -cRm -qhr +afW +ibe +nWR aLT -nYG -xvl +vFN +qJm aLT -jwZ -cHp -bfk -dSf +mXo +pso +lKg +sGq aLT -oTI -bun -frG -fUN +bRY +tBZ +gTB +wig aQL -rCt -ksZ +xoE +iPR aQL -jGt -tqZ -bkS -wfK +rIJ +kug +xph +wip bdl -unI +nRM bCA -jee -qeW -uqj -ifH -eDl -ifH -uhu -jxv -vkl -lPa -szK -oTF -kek -rEd -wqN +lYK +sHV +uaS +tdU +axG +tdU +tKi +kMW +uJq +ydj +nll +nvt +wvh +rpQ +txJ uys -xkT -lOU -gmy -jOY +rMw +vxj +qYV +kGw bJC -eMu -wXv +oGF +uDf bJC -doF -gki -hLc -rEp +bWX +ibv +mkU +iYq bJC -vsq -raJ -ndA -dVB +pQT +usD +jjx +dzo bSJ -pJm -vBV +xaK +bJJ bSJ -oAa -xQp -msc +iWg +rPy +vCM aaa aaa aaa @@ -111802,71 +111802,71 @@ aaa aaa aaa aaa -oZE +dJq aag aag -vOI -mZR -mZR -mZR -vtT -mZR -dcn -mLH -fQV -dcn -nUl -dcn -fWu -fMW -uOm -dcn -kDy -kDy -dcn -kis -vjN -qFm -eSX -knp -oHI -hDI -hDI -hDI -toJ -jCF -jNT -hDI -hDI -hDI -oHI -nTS -eSX -qFm -vjN -dKd +pIq +llh +llh +llh +kgg +llh +kOe +vQA +kJI +kOe +tmF +kOe +ugd +vDo +jOb +kOe +xZe +xZe +kOe +mqZ +pET +odh +prU +aZA +ntP +xXc +xXc +xXc +lvO +isw +cWV +xXc +xXc +xXc +ntP +rlb +prU +odh +pET +hkL oIB -kEY -hzb -hjP +fxN +fOh +dkA oIB -jiQ -nTr -tJH -nrE -hGg -idQ -xaL -xGU -xGU -xGU -xGU -oSC -xGU -wXf +dgL +kRY +iGT +ppn +fLw +qtX +wBh +elL +elL +elL +elL +iJT +elL +seV aag aag -eJu +vcV aaa aaa aaa @@ -111902,73 +111902,73 @@ aaa aaa aaa aaa -iRV -cRm -sCa +afW +ibe +pjy aLT -kIz +kbB bdr -esz +vVg aMz bfy -nII -fKH +uey +tGc aLT -rmy -bun +dri +tBZ bnt aRT -hmu +wpO bpC -nDi +raS aQL -hLx -nOT -mMy -eVr +qDx +svZ +ePZ +rsX bdl -ipx -ipx -jEX -ipx -ipx +wzL +wzL +eFB +wzL +wzL bdl bdl -pFO -eUT +mHX +tIH bdl bdl bdl -lcA -lcA +hKy +hKy uys uys uys uys -xWn -cFz -xWn -lgs +qbo +lJM +qbo +wJN bJC -gcZ +dmZ cfo -beh +cmB bJD chR -hLc -ofp +mkU +oIT bJC -nuq -raJ +hUG +usD cll bTA -fhw +eFg clg -mNM +xjU bSJ -vaq -jdC -msc +tJg +qqY +vCM aaa aaa aaa @@ -112006,69 +112006,69 @@ aaa aaa aaa aaa -oZE +dJq aag -vOI -dlD -tYN -mZR -nUl -aLo -dcn -kSj -fQV -dcn -wQt -dcn -ayB -fMW -qrb -dcn -kDy -qrb -dcn -vbl -uLF -akF -wmy -guR +pIq +hZZ +ctc +llh +tmF +vsm +kOe +edq +kJI +kOe +gOM +kOe +wCg +vDo +oTX +kOe +xZe +oTX +kOe +lzN +nip +xDF +nHe +oFT atn atn atn -iFw +skv anP aBh anP anP -iNE -oRg +wOr +cFo atn -oFO -nVU -akF -hnN -qMt +pUE +bWz +xDF +nid +fqE oIB -nxX -ldU -lAL +xZV +lBs +nok oIB -kQE -eyv -puh -idQ -idQ -idQ -hGg -hGg -nrS -hGg -hGg -idQ -hGg -wXf +iQZ +kaq +oQu +qtX +qtX +qtX +fLw +fLw +vYk +fLw +fLw +qtX +fLw +seV aag -mSj +pdc aaa aaa aaa @@ -112105,73 +112105,73 @@ aaa aaa aaa aaa -iRV -twV -sCa +afW +wNr +pjy aLT aLT aLT aLT brv nuA -nII -dSf +uey +sGq aLT -oTI -bun +bRY +tBZ oiQ lml aQL aQL aQL aQL -fyi -tqZ -bkS -wfK +cyF +kug +xph +wip bdl -lse -wIL -dNv -hIP -pXO +vix +mrJ +dId +qlK +rbS bdl -nvI -lnr -gru -llL -hjZ +sll +jDn +mLh +laL +oaP bdl -iMD -iWk -cYX -pKt -sNV +wJa +vhl +qcc +rSt +mvU bdl -ubU -lOU -hYs -mNo +pfQ +vxj +jln +qcg bJC bJC bJC bJC cdf jxx -hLc -rEp +mkU +iYq bJC -vsq -raJ +pQT +usD rXj gfo bSJ bSJ bSJ bSJ -oAa -fdT -msc +iWg +uXr +vCM aaa aaa aaa @@ -112209,32 +112209,32 @@ aaa aaa aaa aaa -oZE +dJq aag -vOI -jWM -lCd -mZR -ssC -aLo -dcn -iIa -dcn -dcn -mCE -dcn -kDy -fMW -kDy -dcn -fXR -vmV -dcn -mIZ -vjN -qFm -eSX -uUN +pIq +bxz +oRp +llh +vrO +vsm +kOe +dgv +kOe +kOe +xpN +kOe +xZe +vDo +xZe +kOe +nDU +cNZ +kOe +mmc +pET +odh +prU +tRQ amx amx amx @@ -112244,34 +112244,34 @@ amx amx amx amx -uio +mOQ amx -gUg -eSX -qFm -sQu -kIu +frX +prU +odh +mGf +xOP oIB -qTJ -poc -mYX +yeQ +hVy +kTG oIB -jiQ -jYa -tJH -eRn -hGg -bEq -mQE -dmo -emX -emX -emX -dbZ -hGg -wXf +dgL +qnU +iGT +lHQ +fLw +sZa +cLn +iEF +qiK +qiK +qiK +eBz +fLw +seV aag -mSj +pdc aaa aaa aaa @@ -112308,73 +112308,73 @@ aaa aaa aaa aaa -iRV -cRm -sCa +afW +ibe +pjy aLT -kIz +kbB bdr -pto +jlf aMz bfy -nII -dSf +uey +sGq aLT -oTI -bun +bRY +tBZ bnt aRT -yjv +oUM bpC -nDi +raS aQL -jGt -tqZ -bkS -wfK +rIJ +kug +xph +wip bdl -uIM -sBM -jDr +wrb +oAo +eEz kuu -aTN +sjh bdl -rGk -cIA +edY +csv nqx hzg -jfC -sjs -pFO +okU +dTd +mHX ipa fYZ vYC -pAg +vtt hpS -aQj -lOU -hYs -mNo +lJD +vxj +jln +qcg bJC -gcZ +dmZ cfo -cbB +nwQ bJD chR -hLc -rEp +mkU +iYq bJC -vsq -raJ +pQT +usD cll bTA -cTn +uOX oFV -mNM +xjU bSJ -nzZ -lco -msc +kBw +oSy +vCM aaa aaa aaa @@ -112412,69 +112412,69 @@ aaa aaa aaa aaa -oZE +dJq aag -vOI -tYN -wsl -udD -dVP -hpp -pxL -hpp -pbH -dVP -dVP -vrs -fMW -fMW -kDy -dcn -dcn -dcn -dcn -mIZ -wte -dKd +pIq +ctc +vyh +rwp +sBs +uCQ +fUq +uCQ +nZx +sBs +sBs +qoD +vDo +vDo +xZe +kOe +kOe +kOe +kOe +mmc +hlG +hkL alO -iDl +nGA amx amx aqf -mUu +pCP amx amx amx amx amx -uio +mOQ amx -gxQ +vZN alO -mIZ -sQu -dKd +mmc +mGf +hkL loP loP loP loP loP -qGD +txu loP loP -xGU -xaL -idQ -jyZ -xyT -rep -cbi -lKH -bjk -hHf -wXf +elL +wBh +qtX +wxM +ihz +xVh +ayY +lhg +vfQ +fZL +seV aag -mSj +pdc aaa aaa aaa @@ -112511,73 +112511,73 @@ aaa aaa aaa aaa -iRV -sCa -cRm +afW +pjy +ibe aLT -wbV -eqM +wAg +aKX aLT -cIu -fLd -nII -qKS +sZM +eLH +uey +wWv aLT -kMd -bun -jNh -cOX +sMi +tBZ +gpC +vcY aQL -xSo -lTy +cbf +fUj aQL -jGt -seZ -kPn -wfK +rIJ +kOZ +rwG +wip bdl -uUE -hYq +pNs +keh eqb mLR -phZ +nAv bdl -esE +gWq ixQ -gYk -cIz -rUr -oTF -pFO +qij +jwz +mCO +nvt +mHX cwo scH nzO -tPO +nhu hpS -aQj -sew -pVb -mNo +lJD +pEk +xsA +qcg bJC -fuU -iJX +sis +dZk bJC -nMB -kZR -hLc -uuI +xrV +nmv +mkU +fkl bJC -ixe -raJ -cXf -pNU +oVI +usD +cgY +txb bSJ -xaV -vRe +scn +aXq bSJ -ipS -xQp -msc +vDW +rPy +vCM aaa aaa aaa @@ -112615,32 +112615,32 @@ aaa aaa aaa aaa -oZE +dJq aag -vOI -mBl -xwS -mZR -eaX -eYA -lXI -hlT -dVP -hpp -dIG -dcn -kDy -fMW -kDy -dcn -skq -pgJ -dcn -uTx -wte -dKd +pIq +mLw +veS +llh +ueg +nRe +uho +kwc +sBs +uCQ +tLS +kOe +xZe +vDo +xZe +kOe +sYj +xFi +kOe +tge +hlG +hkL inw -uUN +tRQ amx amx amx @@ -112652,32 +112652,32 @@ amx amx aBo amx -gUg +frX inw -mIZ -sQu -xNr +mmc +mGf +sbb loP -qyy -tDQ -iPF -cpL +jcv +gHw +rqk +oDP xBY -rZX +roR loP -kRV -cei -idQ -jyZ -xaL -sGo -sGo -sGo -bjk -hGg -wXf +hGU +uEL +qtX +wxM +wBh +nPF +nPF +nPF +vfQ +fLw +seV aag -mSj +pdc aaa aaa aaa @@ -112714,73 +112714,73 @@ aaa aaa aaa aaa -iRV -sPT -cRm +afW +qDH +ibe aLT aLT aLT aLT -wdQ -thJ -ugE +yeq +yia +iLi aLT aLT aQL -iOi -hgy -pQl +cYE +qeU +mDI aQL aQL aQL aQL -jGt -bzT -rqy -vsN +rIJ +jcF +nKl +sbW bdl -rxL +sfX bdj bNs nwb -gqc +hcP bdl -fzb +rQN pMJ xnI ayj dWg bdl -idy -eac -pwd -xPV -fzU +gvZ +djq +pjY +pvX +gWc rsK -obD -iSv -lOU -mNo +izI +vcZ +vxj +qcg bJC bJC bJC bJC -raU -sCY -bPQ +owa +lxM +bQP bJC bJC bSJ -vWy -uEn -nod +lim +lbz +aGx bSJ bSJ bSJ bSJ -rgo -hSB -msc +sBV +uai +vCM aaa aaa aaa @@ -112813,79 +112813,79 @@ aaa aaa aaa aaa -baA -vHZ -vHZ -vHZ -vHZ +qDX +vlu +vlu +vlu +vlu aag aag -vOI -mZR -mZR -mZR -nUl -dWS -haJ -iZS -dVP -hpp -rcq -dcn -eNg -fMW -kDy -dcn -kDy -kDy -dcn -mIZ -wte -dKd +pIq +llh +llh +llh +tmF +ndN +uoL +iTn +sBs +uCQ +eAX +kOe +nRI +vDo +xZe +kOe +xZe +xZe +kOe +mmc +hlG +hkL inw -uUN +tRQ amx -htA -hvh -lke -lke -dkX -dkX -des -aew +hby +cGy +ciP +ciP +ftV +ftV +wHF +wtC aBo amx -bXp +jTg inw -mIZ -wCB -dKd +mmc +nXh +hkL loP -vvb -vNk -svS -rht +kmH +jBC +iAN +gAn xBY -fVS +jGr loP -uCr -hGg -idQ -jyZ -xGU -pAV -hGg -bre -pMM -vNG -wXf +ddA +fLw +qtX +wxM +elL +ldE +fLw +wHG +hWL +aBM +seV aag aag -vHZ -vHZ -vHZ -vHZ -psN +vlu +vlu +vlu +vlu +ckx aaa aaa aaa @@ -112913,81 +112913,81 @@ aaa aaa aaa aaa -iRV -iRV -iRV -iRV -iRV -sCa -sCa +afW +afW +afW +afW +afW +pjy +pjy aLT -xIv -nly -eMk -qgO -qgV -fVi -evC +kEj +eCK +bnd +mTu +cKe +fUf +nEd mJj -xHs -dRg -gtG -tDL -fUN -sPo -dOf +myF +gnF +uFZ +tyr +wig +myU +gpm kcl -jGt -bzT -dES -pcy +rIJ +jcF +wvw +bhZ bdl -jbI -sae -vVj -gdR -mvE +inr +pPa +vAN +vGm +xcB bdl -vHz -cZc -pKA -ovO -tbw +oSB +wuu +jlj +tFp +ghO bdl bdl -dYC -dYC +xQO +xQO bdl bdl bdl -lhE -kHH -lOU -mNo +nTg +vPu +vxj +qcg hNw -cxJ -nOd -kQM -nvS -jRZ -kUa -ivD +fqH +fmq +qbJ +rpu +jHn +dnD +rZg hNw -oxe -ezl -rOx -guw -pfZ -pfZ -tGZ +hyh +twY +tha +qRX +slb +slb +gon bSJ -oAa -xQp -msc -msc -msc -msc -msc +iWg +rPy +vCM +vCM +vCM +vCM +vCM aaa aaa aaa @@ -113016,79 +113016,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -inS -hpp -udD -dVP -dWS -tYN -oem -dVP -eYA -rOY -dcn -ayB -fMW -uOm -dcn -kDy -kDy -dcn -kis -wte -dKd +pIq +mGh +uCQ +rwp +sBs +ndN +ctc +qGf +sBs +nRe +fZp +kOe +wCg +vDo +jOb +kOe +xZe +xZe +kOe +mqZ +hlG +hkL inw -oym -wXM -erf +cRJ +tYn +xHY alO -iLL -iLL -rkO -mzX +ddQ +ddQ +tHj +sxj alO -nCz +wqG aBo amx -xCy +fHT inw -mIZ -wCB -dKd +mmc +nXh +hkL loP -svS -rht -svS -nea +iAN +gAn +iAN +hvc xBY -svS +iAN loP -naO -hGg -idQ -jyZ -xGU -qsZ -cei -rOg -qYn -hGg -wXf +iRH +fLw +qtX +wxM +elL +xQp +uEL +clB +nKN +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -113116,33 +113116,33 @@ aaa aaa aaa aaa -iRV -wog -uqx -num -phx -cRm -sCa -okK +afW +qhg +wFX +lwj +wLl +ibe +pjy +fkx aMH beV gWE -eTM -qJa -rbU -evC +tIj +cSl +hMq +nEd mJj ljs -eGn -sqN -rjX +gss +bBw +epd aSE -xfC -dOf +fTD +gpm kcl -jGt -nMg -kIy +rIJ +cPr +frj bdl bdl bdl @@ -113152,45 +113152,45 @@ bdl bdl bdl bdl -dii +gjU bdl bdl bdl bdl -qWw -jOm -qWw -eYJ -jOm +cbC +dSj +cbC +bHU +dSj bdl bdl -fcC -jni -mNo +iMt +iwk +qcg hNw -xYD -aYo +kAo +jDL cgy -hHt -uuS -hcF +qxB +eJG +bSO pXZ hNw -mgb -fQZ -sjo -wUJ +gXT +sIo +xxf +wCb aMI wGE erG -tTO -uJG -fdT -sct -ulu -oDI -tsD -msc +vyA +fKD +uXr +qrK +tIV +xCC +krA +vCM aaa aaa aaa @@ -113219,79 +113219,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -inS -rAc -mZR -tbZ -dWS -mBl -cHi -dVP -dWS -iap -dcn -oVE -fMW -fMW -vrs -fMW -fMW -mnC -qJI -vjN -kIu +pIq +mGh +ozI +llh +aZp +ndN +mLw +fdv +sBs +ndN +iiH +kOe +oaZ +vDo +vDo +qoD +vDo +vDo +wvP +wRe +pET +xOP alO alO alO alO alO -iAP -knp -oHI -saz -iLL -nCz -uio +tlk +aZA +ntP +wQc +ddQ +wqG +mOQ amx -xCy +fHT alO -mIZ -sQu -qJI -czQ +mmc +mGf +wRe +gZD xBY xBY xBY xBY xBY -hhk +oni loP -xGU -xaL -aSc -jyZ -xGU -xGU -xGU -xGU -uQO -hGg -wXf +elL +wBh +oHO +wxM +elL +elL +elL +elL +kBT +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -113319,81 +113319,81 @@ aaa aaa aaa aaa -iRV -oVj -sCa -sCa -sCa -sCa -sCa +afW +lOh +pjy +pjy +pjy +pjy +pjy aLT -dlA -oBW -oBW -hMx -nDy -nII -evC +smb +mxp +mxp +lTO +sJw +uey +nEd mJj byn -lOW +xKo bnt bJH iIR -xfC -dOf +fTD +gpm kcl -jGt -bzT -ivP -vkC -dRb -fVx -jaO -fVx -fVx -qFR -sfJ -sfJ -sfJ -hEf -fVx -fVx -sfJ -bxS -fVx -pPU -sfJ -fVx -fVx -vkC -ljg -lOU -mNo +rIJ +jcF +idA +xlU +lLi +iNK +mjv +iNK +iNK +qBI +xax +xax +xax +haJ +iNK +iNK +xax +tin +iNK +cBr +xax +iNK +iNK +xlU +ueV +vxj +qcg hNw -xYD -aYo +kAo +jDL gnu bOQ chR -otW +jxc urN hNw -mgb -raJ -epx -lVx -dhh -dhh -vPF +gXT +usD +mhB +wtJ +uMW +uMW +msb bSJ -xQp -xQp -xQp -xQp -xQp -fdT -msc +rPy +rPy +rPy +rPy +rPy +uXr +vCM aaa aaa aaa @@ -113422,79 +113422,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -svt -icm -mZR -dVP -wqk -kjH -pFz -dVP -dWS -tYN -dcn -leO -fMW -kDy -dcn -kDy -kDy -blh -mIZ -vjN -dKd +pIq +siY +sIn +llh +sBs +vos +oEm +eEE +sBs +ndN +ctc +kOe +vKP +vDo +xZe +kOe +xZe +xZe +lvX +mmc +pET +hkL alO -shg -sPY -rdW +jkU +cnB +iWG alO -rFQ -xCP +seH +hLd aBk -gUg -iLL -nCz -uio +frX +ddQ +wqG +mOQ amx -xCy +fHT alO -ufP -wCB -dKd -wYf -rht -dkV -iIW -hsR +wNv +nXh +hkL +vyk +gAn +mok +njG +nQP xBY -nxi -agp -idQ -rov -idQ -ojN -gxo -gKh -gKh -gKh -dXA -hGg -wXf +peN +jRW +qtX +uXO +qtX +fBE +ivi +wkI +wkI +wkI +eQk +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -113522,81 +113522,81 @@ aaa aaa aaa aaa -iRV -upC -sCa +afW +eUZ +pjy aLT aLT aLT aLT aLT aLT -mtH -hHk -jYq -uQD -tav +hRL +cBH +oSJ +tMt +wfW aLT aLT -dwB -lOW -jlO +cYe +xKo +qQB chp chp -xfC +fTD aQL aQL -eVr -bnY -tKl -uAi -uAi -owB -uAi -uAi -uAi -uAi +rsX +lsL +hac +nmm +nmm +qms +nmm +nmm +nmm +nmm vub vub vub -uHW +dJT vub vub vub -uAi -uAi -uAi -owB -uAi -uAi -uAi -cyP -cFz -jyX +nmm +nmm +nmm +qms +nmm +nmm +nmm +ijJ +lJM +isF bJC bJC -uPj +ruT vND vND chR -otW -usM +jxc +piQ bJC bSJ -dnJ -vRQ -tSD -rrD -txU +aqB +pYr +mpI +oux +oOI bSJ bSJ bSJ bSJ bSJ bSJ -xQp -jdC -msc +rPy +qqY +vCM aaa aaa aaa @@ -113625,79 +113625,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -mZR -mZR -mZR -nUl -hpp -hpp -pQK -dVP -tAz -csS -dcn -leO -fMW -qrb -dcn -gDw -bvi -blh -mIZ -wte -dKd +pIq +llh +llh +llh +tmF +uCQ +uCQ +usg +sBs +phw +gTZ +kOe +vKP +vDo +oTX +kOe +qdq +uvC +lvX +mmc +hlG +hkL alO -rPP +jGQ atq -gUg +frX alO -coW -nvx -vVN -oFO -ouK -ejW -pqH -nGR -uVC +uZd +dEJ +hfb +pUE +vam +wmx +cUP +cxs +fYT alO -mIZ -wCB -dKd -wYf -kir -qzO +mmc +nXh +hkL +vyk +rMg +uox loP loP -dYb +drv loP loP -xGU -dvO -idQ -rgg -mPl -iPT -mPl -mPl -sdK -hGg -wXf +elL +hru +qtX +tMF +ldX +lyL +ldX +ldX +pBR +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -113725,81 +113725,81 @@ aaa aaa aaa aaa -iRV -cRm -sCa +afW +ibe +pjy aLT -ruH -wxB -msq -wxB -eMk -qgO -sjp +swK +oha +ceV +oha +bnd +mTu +bOV aNQ aOL -akZ -dae +gsY +huI aLT aQL -mTR -puU +fCu +wLv aRo brA -xfC -kml +fTD +urG aQL -jGt -hhg -jGt +rIJ +qcj +rIJ bbs -wBl +gDc xYP bbs gsm -mIO +qfu rbF cJE -nDR -uNd +kSP +krQ bRe -qWz -qwA +xmq +mys vub bPL -mIO +qfu xSM cgE gsm -mIO +qfu bbr -vQW -lOU -mNo +pRd +vxj +qcg bJC -bVk -aYo +lCV +jDL cgy cgy -upg -wkC +jlD +lXX bJC bJC -oZf -raJ +kuF +usD bUp bUN -kHA -guw -hOi -pkt -xIa -pkt -pfZ +qOT +qRX +qBi +qmo +pek +qmo +slb bSJ -fdT -fdT -msc +uXr +uXr +vCM aaa aaa aaa @@ -113828,79 +113828,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -hpp -tNG -yfM -dVP -hpp -dcn -dcn -iIa -dcn -dcn -dcn -vel -fMW -kDy -dcn -dcn -dcn -dcn -mIZ -wte -dKd +pIq +uCQ +lHr +lXE +sBs +uCQ +kOe +kOe +dgv +kOe +kOe +kOe +dxt +vDo +xZe +kOe +kOe +kOe +kOe +mmc +hlG +hkL alO -rPP +jGQ atq -gUg +frX alO -lTv -nvx -uEf -gUg -srO -oiH -hhH -hbU -coW +dKh +dEJ +nSn +frX +wEv +qGt +bxV +kFr +uZd alO -mIZ -sQu -dKd +mmc +mGf +hkL loP loP loP loP -cVI +vRN vyI -sEe -xkh +sRS +rPD jWh -tJH -frn -tJH -tJH -xGU -xGU -xGU -vKk -hHf -wXf +iGT +gWb +iGT +iGT +elL +elL +elL +fMU +fZL +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -113928,81 +113928,81 @@ aaa aaa aaa aaa -iRV -cRm -cRm +afW +ibe +ibe aLT nuN nuN -igT +pjx ehx ehx -pzS -sjp +aVn +bOV mLF tig -akZ -kUO +gsY +rnj aLT -xHs -lOW +myF +xKo uTv bKC bOG -xfC -tXg +fTD +ctW aQL -jGt -hhg -jGt +rIJ +qcj +rIJ bbs -lLi +mdF vTS bbs ccQ -jxl +hsZ rbF qlz -lKN -jTP +mgK +mFR bQX -bpk +fCg cLl qlz tez -jxl +hsZ ccQ cgE ccQ -jxl +hsZ bbr -vQW -lOU -mNo +pRd +vxj +qcg bJC -pnS -aYo +mlN +jDL lLC nEo nZy -otW -uKY +jxc +gHt bJC -pJF -raJ +eaE +usD iWc cqz -kHA -vAo +qOT +lGS pWb pWb -gcq +cut oEo oEo bSJ -fdT -qCf -msc +uXr +cEJ +vCM aaa aaa aaa @@ -114031,79 +114031,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -dVP -dVP -pBv -dVP -hpp -dcn -xsZ -vIx -vfI -dcn -ayB -kDy -fMW -kDy -pkQ -jRh -dHM -dcn -mIZ -wte -dKd +pIq +sBs +sBs +rfY +sBs +uCQ +kOe +vSt +wJf +dVU +kOe +wCg +xZe +vDo +xZe +ohb +xLX +eqX +kOe +mmc +hlG +hkL alO -rPP +jGQ atq -gUg +frX alO alO -uwg -rCq -uwg +hsn +aFR +hsn alO xBe xBe xBe xBe xBe -mIZ -sQu -dKd +mmc +mGf +hkL jWh -lHm -iHE -qkA -mku +pUO +rwl +iuC +koa hSk hSk -bjv +xTC jWh -xIc -rEP -pSM -tJH -jOh -vLL -mPE -vKk -hGg -wXf +hOq +tch +rBl +iGT +xLD +lli +uuL +fMU +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -114131,81 +114131,81 @@ aaa aaa aaa aaa -iRV -sQN -cRm +afW +sUS +ibe aLT vug vug -flM +hho vug vug -pzS -sjp -kea +aVn +bOV +sjt uRo -akZ +gsY aLT aLT hWr -lOW +xKo xlk uuj -sHQ -xfC +iUX +fTD aQL aQL -uVu -hhg -jGt +gWl +qcj +rIJ bbs -knk +hoy xYP bbs ccQ -caw +gVr rbF qlz -rKP -jTP +gmt +mFR bTx bKQ tXM qlz tez -ibX +eBc ccQ cgE ccQ -caw +gVr bbr -vQW -lOU -mNo +pRd +vxj +qcg bJC bJC -fYD -ryI -xGR +oyN +iJo +hOW onN -otW +jxc qki bJC bSJ -nAb +sKK bUq -gfC -kHA -vAo +oRo +qOT +lGS wWX wWX -hNQ +vtM wWX wWX bSJ -fdT -seV -msc +uXr +vMO +vCM aaa aaa aaa @@ -114234,79 +114234,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -nUl -hpp -hPa -hpp -knE -dcn -xsZ -toU -fAG -dcn -fPZ -kDy -fMW -kDy -kDy -kDy -rVC -dcn -ufP -wte -qJI -fma -oiH -tPM -jqh -xpL -wCU -kMk +pIq +tmF +uCQ +oJw +uCQ +tFT +kOe +vSt +swX +cJR +kOe +gfb +xZe +vDo +xZe +xZe +xZe +sZc +kOe +wNv +hlG +wRe +dhL +qGt +wFO +urH +bjX +aZS +ybM auu -gUg -jRP +frX +ylX xBe -pBS -dMd -saf +jXn +pHs +qNT xBe -mIZ -sQu -dKd -jRs -jrt +mmc +mGf +hkL +oig +chw hSk hSk vyI hSk hSk -bjv +xTC jWh -oFe -jiQ -xwR -tJH -hGg -wjr -fsi -vKk -tpx -wXf +mNH +dgL +phx +iGT +fLw +dgR +pSI +fMU +xMq +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -114334,81 +114334,81 @@ aaa aaa aaa aaa -iRV -uuy -iFG +afW +tjU +dtx aLT -ktH -hwR -qef -hwR -ghK -qgO -ius -utj +iNe +kRa +nUz +kRa +vfX +mTu +ikt +fKa aMz -cYl -evC +bnK +nEd mJj -gTn -pHF -aIc -aIc -eub -xfC -dOf +tUE +csE +rKP +rKP +qyG +fTD +gpm kcl -jGt -hhg -jGt +rIJ +qcj +rIJ bbs -eel +xEP xYP bbs -ikp -mIO +wbT +qfu rbF qlz -qAu -jTP +rOW +mFR bTx bTx dFF qlz tez -mIO +qfu ccQ cgE ccQ -mIO +qfu bbr -vQW -lOU -mNo +pRd +vxj +qcg hNw -xYD -srv -qPw -phI -tLX -ihp -eKu +kAo +ujm +lLs +pBo +dCR +kLQ +kwI hNw -mgb -raJ +gXT +usD qgN -sTM -mnD -guw -xkn -pBX -hnd -pBX -dJv +uKX +mST +qRX +wQA +qHA +gUM +qHA +khr bSJ -fdT -kMz -msc +uXr +gQo +vCM aaa aaa aaa @@ -114437,79 +114437,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -dVP -dcn -dcn -klv -dcn -dcn -aZh -fMW -hTa -eMS -cjN -lix -cjN -cjN -cjN -cjN -cjN -dZl -nIA -uqP -dKd +pIq +sBs +kOe +kOe +fgn +kOe +kOe +gbT +vDo +djh +alj +rVG +qzn +rVG +rVG +rVG +rVG +rVG +nld +cta +kQx +hkL alO -ojD -lmB -pYn +iMZ +fTc +oQv alO -koO -nvx +tcI +dEJ aBn -gvt -aXv +sml +mRQ xBe -sqd -wsE -hJY +rKv +iRi +aST xBe -mIZ -sQu -kIu +mmc +mGf +xOP jWh -kRH -hoI -wLY +lVn +wye +oeS vyI vyI -wJJ -cru +gWv +qKI jWh -fxa -iPC -pZY -tJH -hGg -wjr -fzZ -vKk -hGg -wXf +xfn +tCe +nno +iGT +fLw +dgR +wNi +fMU +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -114537,81 +114537,81 @@ aaa aaa aaa aaa -iRV -twV -qhr +afW +wNr +nWR aLT aLT aLT aLT aLT aLT -bbP -ius +pkg +ikt bwf -dRj -hOA -evC +lug +gsW +nEd mJj fIM fIM sXw sXw -fpF -xfC -dOf +nsJ +fTD +gpm kcl -eVr -oIF -eVr +rsX +rKx +rsX kFY -efi -fYg +ppd +syG bbs ccQ -jxl +hsZ rbF vub odN odN -mEz +cyc odN odN vub tez -jxl +hsZ ccQ cgE ccQ -jxl +hsZ jhb -mDM -cFz -lgs +mkS +lJM +wJN hNw -xYD -dmy -mSE +kAo +kCL +ukl wdz wdz nCf nCf hNw -mgb -hkN -sMZ +gXT +nuL +xXR rtV -hBB -waP +eVt +fgk bSJ bSJ bSJ bSJ bSJ bSJ -krr -rXc -msc +gXe +epw +vCM aaa aaa aaa @@ -114640,79 +114640,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -dVP -dcn -eiX -fwj -udJ -dcn -xsZ -jsr -uiW -dcn -dcn -dcn -iIa -dcn -dcn -dcn -dcn -dcn -kis -wCB -dKd -oyh -oyh -oyh -oyh -oyh -urj -nvx +pIq +sBs +kOe +oFE +oLY +fwm +kOe +vSt +tLH +yab +kOe +kOe +kOe +dgv +kOe +kOe +kOe +kOe +kOe +mqZ +nXh +hkL +pJp +pJp +pJp +pJp +pJp +wqs +dEJ aBo -mqA -oHI -xNc -dUH -pRE -bjq +sHm +ntP +oPa +fkE +tgz +qGs xBe -mIZ -sQu -dKd +mmc +mGf +hkL jWh jWh uUz jWh -fjZ -oGG +tuY +gno jWh jWh jWh -pFZ -jiQ -nMk -tJH -jZx -hGg -bre -pMM -vNG -wXf +vbA +dgL +gnS +iGT +eDa +fLw +wHG +hWL +aBM +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -114740,81 +114740,81 @@ aaa aaa aaa aaa -iRV -aCh -sCa +afW +beh +pjy aLT -ruH -wxB -msq -wxB -eMk -qgO -kqq +swK +oha +ceV +oha +bnd +mTu +gXr aNT -cYl -pJp -evC +bnK +jGT +nEd mJj -ssz -qVO -xnK -dGq -uPG -llo -dOf +fsQ +wVg +qEm +pMC +mfi +yeM +gpm kcl -jGt -hhg -jGt -xNo -qcL -wWI -nhs -pfq -jrC -xvy -iSn -iOK -iNG -efi -vKP -iOK -iSn -pfq -hHP -xvy -nhs -mkg -meV -xNo -vQW -lOU -mNo +rIJ +qcj +rIJ +maN +mkl +gaT +htC +wUU +voa +oeH +fFu +dOi +wpy +ppd +dvV +dOi +fFu +wUU +inV +oeH +htC +ict +qQH +maN +pRd +vxj +qcg hNw -xYD -vym -lLa -edI -uNR -edI -uNR +kAo +kDE +pVL +qkU +jhM +qkU +jhM hNw -mgb -uJx -tvJ +gXT +pUW +daR pQN -sGC -guw -xIa -pkt -hOi -pkt -pfZ +fQY +qRX +pek +qmo +qBi +qmo +slb bSJ -bnl -fdT -msc +rzU +uXr +vCM aaa aaa aaa @@ -114843,79 +114843,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -qUt -dcn -fqf -fmo -lKW -dcn -xsZ -vIx -nEt -dcn -kDX -hJa -gwk -gwk -gwk -gwk -gwk +pIq +uEZ +kOe +twD +vSk +dif +kOe +vSt +wJf +tAT +kOe +jlg +kye +iDU +iDU +iDU +iDU +iDU ptK -mIZ -wCB -dKd -oyh -lUy -eCY -mKE -oyh -jyW -nvx +mmc +nXh +hkL +pJp +vFt +rIK +xEx +pJp +tnj +dEJ aBp -wXS -nGR -xNc -dUH -pRE -bjq +dHA +cxs +oPa +fkE +tgz +qGs xBe -mIZ -wCB -dKd +mmc +nXh +hkL jWh -gnV -gnV -gnV -mku -qPv -sBX -lRI +jtM +jtM +jtM +koa +msN +tuS +hIX jWh -jBA -xXn -oOg -tJH -oTt -hGg -rOg -cPh -hGg -wXf +vku +jQG +nzJ +iGT +wUW +fLw +clB +rDa +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -114943,81 +114943,81 @@ aaa aaa aaa aaa -iRV -skV -sCa +afW +dok +pjy aLT cjc cjc -pZh +wxx nuN nuN -wGF -iKy +hpJ +mBU iSZ -akZ -arI +gsY +mXi aLT aLT aQL aQL aQL aQL -cTi -unf +uSz +pTJ aQL aQL -jGt -nMg -kyR -pui -prh -hsm -ipV -oHz -qul -oHz -oHz -oHz -vKP +rIJ +cPr +uaE +xlS +dzh +cna +qNK +qxq +eMt +qxq +qxq +qxq +dvV bRc -iNG -oHz -oHz -oHz -qul -oHz -sfN -wJh -prh -pui -orp -jni -mNo +wpy +qxq +qxq +qxq +eMt +qxq +uNu +uVN +dzh +xlS +rbt +iwk +qcg bJC bJC -xnX -qoP +pTf +oKG bJC bJC bJC bJC bJC bSJ -uWn -lRj +tRi +vRT ycd -fHG -vAo +lSv +lGS oEo oEo -sOn +cDh fXN fXN bSJ -xQp -fdT -msc +rPy +uXr +vCM aaa aaa aaa @@ -115046,79 +115046,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -dVP -dcn -dcn -dcn -dcn -dcn -dcn -iIa -dcn -dcn -nPQ -uEJ +pIq +sBs +kOe +kOe +kOe +kOe +kOe +kOe +dgv +kOe +kOe +lVt +naY jhx jhx jhx jhx -dRn -sXS -jKf -owE -dKd -oyh -vmP -xPN -nNf -aMe -srl -rqV +meG +qwF +bau +alt +hkL +pJp +mdH +qlZ +iQH +pNv +uIz +lym nRX -tQp -ejO +wSA +qIm xBe -qyJ -uRO -hJY +slj +eaC +aST xBe -ufP -oSf -jKf -hSA +wNv +riW +bau +mBI soP pDr soP pDr soP eoG -bjv +xTC jWh -tJH -frn -tJH -tJH -xGU -xaL -kqJ -vKk -hHf -wXf +iGT +gWb +iGT +iGT +elL +wBh +blE +fMU +fZL +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -115146,81 +115146,81 @@ aaa aaa aaa aaa -iRV -ngT -sCa +afW +vqA +pjy aLT cjc cjc -pZh +wxx cjc cjc -wGF -mKn -qcX -igb -pJp +hpJ +wRZ +hFt +xPV +jGT aLT -qcY -cep -qcY -cep -xHs -omU +gcW +xVB +gcW +xVB +myF +kfp bpC -tkv +aEc aQL -vOA -hhg -cUh +jGi +qcj +mMY bbs -xos -xos -xos -xos +mVX +mVX +mVX +mVX bbs bJf bJf bJf bJf -uMz +xLL dNt dNt dNt dNt bbs -xyG -xyG -xyG -xyG +jpe +jpe +jpe +jpe bbs -xCE -lOU -pCt +tQy +vxj +xWW bJC -uKY +gHt cft -ttQ -tqI -jiP -rRo -jiP -uKY +nbt +noO +gAW +jaz +gAW +gHt bSJ -rpr -ylH -pNU -qkO -vAo +gCg +xuH +txb +gDF +lGS fXN fXN -sOn +cDh fXN fXN bSJ -fdT -jdC -msc +uXr +qqY +vCM aaa aaa aaa @@ -115249,79 +115249,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -nUl -tNG -sHC -kyj -ygH -mZR +pIq +tmF +lHr +szu +xRF +dSz +llh mDJ -lWT -dGt -eGd -tBQ +qGu +yfs +fvi +ipb rob -lWT -lWT -cns -lWT -lWT +qGu +qGu +lxN +qGu +qGu ptK -mIZ -sQu -dKd -oyh -pEz -eQZ -gkp -anj -aew +mmc +mGf +hkL +pJp +rBN +pyV +xxq +tnM +wtC amx atq -bqt -oPp +uTi +fZi xBe -kFN -iBS -tlM +oJo +gYm +jfC xBe -mIZ -wCB -dKd +mmc +nXh +hkL jWh -cUS -hoI -hoI -hoI -kna +lBd +wye +wye +wye +caH iat -iaS +wji jWh -xGU -lUh -xGU -xGU -eiQ -lJi -gxo -pMM -hGg -wXf +elL +fng +elL +elL +sMS +jaB +ivi +hWL +fLw +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -115349,81 +115349,81 @@ aaa aaa aaa aaa -iRV -dBu -sCa +afW +sEx +pjy aLT -ktH -hwR -qef -hwR -ghK -qgO -tjZ -dPf -jqX -pJp -lQT +iNe +kRa +nUz +kRa +vfX +mTu +hqb +rpM +iko +jGT +sYt fZZ fZZ -iqZ +qTl sXw sXw -omU +kfp bpC qDq -aCL -jGt -bzT -jGt +oMr +rIJ +jcF +rIJ bbs -jnE -pjQ -pZU -wYx -oHM -wYx -wYx -wYx -mRq -uMz -mRq -wYx -wYx -wYx -oHM -wYx -uyW -vrh -qsX +pKh +rWZ +peD +kEV +qWm +kEV +kEV +kEV +apF +xLL +apF +kEV +kEV +kEV +qWm +kEV +max +roQ +wuz bbs -vQW -lOU -mNo -lYn +pRd +vxj +qcg +ekc oXb cft -ttQ +nbt wdz wdz -tQg +tSC bKM bKM -uls -uJx -eWc -fzV -eFR -guw -hnd -pBX -xkn -pBX -dJv +hlr +pUW +eFV +uNJ +rMP +qRX +gUM +qHA +wQA +qHA +khr bSJ -xQp -fhR -msc +rPy +eBM +vCM aaa aaa aaa @@ -115452,79 +115452,79 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag aag aag aag -vOI -dVP -dVP -nNs -dVP -dVP -udD -lWT -lWT +pIq +sBs +sBs +hSy +sBs +sBs +rwp +qGu +qGu uKV mDJ -nPQ +lVt iEr -lWT +qGu eNi eNi eNi eNi eNi -mIZ -sQu -kIu -oyh -faq -rPs -mWt -oyh -huA -aew +mmc +mGf +xOP +pJp +ePS +fHB +iuA +pJp +qZY +wtC atq -bqt -cOS +uTi +lxc xBe xBe xBe xBe xBe -mIZ -wCB -vHg +mmc +nXh +rGA jWh jWh jlQ jlQ jWh -kRD +vxR uWV -bjv -ePH -xGU -hHf -xGU -xGU -xaL -kqJ -cei -hGg -ewM -wXf +xTC +lco +elL +fZL +elL +elL +wBh +blE +uEL +fLw +utk +seV aag aag aag aag aag aag -mSj +pdc aaa aaa aaa @@ -115552,81 +115552,81 @@ aaa aaa aaa aaa -iRV -oVj -sCa +afW +lOh +pjy aLT aLT aLT aLT aLT aLT -poJ -cBG +xDJ +sjn bxB -ebX -weG -qGG -uiS -uiS -uiS -uiS -uiS -xMt -xOb -xOb -fEB -dDs -nkE -jGt +mgm +mpK +dhl +wZt +wZt +wZt +wZt +wZt +hhQ +rzm +rzm +qjI +nRt +xwJ +rIJ lgy -cde +eLB xYP -dUP -lKm -lKm -lKm -nhJ -lKm -lKm -uMz -lKm -lKm -nhJ -lKm -lKm -lKm -pOm +jKG +oVx +oVx +oVx +lXY +oVx +oVx +xLL +oVx +oVx +lXY +oVx +oVx +oVx +eEP xYP -mZG +wVx laU -vQW -vJS -sMu -jHO -qWP -pIW -pwr -qWP -qWP -qWP -qWP +pRd +nDO +crw +cWZ +mdn +bXG +gqY +mdn +mdn +mdn +mdn +mdn qWP -qSn -wsq -rtu +gsb +cVZ fXN -nuo -gDF +siS +sEb bSJ bSJ bSJ bSJ bSJ bSJ -xQp -slB -msc +rPy +hwk +vCM aaa aaa aaa @@ -115655,79 +115655,79 @@ aaa aaa aaa aaa -mEM -lnh -lnh -lnh +vQY +mwi +mwi +mwi aag aag aag -vOI -txY -kaC -fAK -lXI -lXI -mZR +pIq +rqS +wpa +vxL +uho +uho +llh ptK -kMw +iYd ptK ptK -nPQ +lVt rtd -lWT +qGu eNi olO wiG nWN eNi -mIZ -sQu -dKd -oyh -oyh -oyh -oyh -oyh -xRS -nvx +mmc +mGf +hkL +pJp +pJp +pJp +pJp +pJp +eoo +dEJ amx -bqt -qIn +uTi +bRd inw -rje -hDI -qYp -uwg -mIZ -wCB -kIu +sOV +xXc +eCz +hsn +mmc +nXh +xOP jWh hSk hSk -dtP +sdY jWh -fdY +juK fCL -bjv -sPr -jHa -hGg -ulr -hGg -idQ -idQ -idQ -djN -iWl -wXf +xTC +rRB +sgY +fLw +cwa +fLw +qtX +qtX +qtX +lBK +dbK +seV aag aag aag -lnh -lnh -lnh -eJu +mwi +mwi +mwi +vcV aaa aaa aaa @@ -115755,81 +115755,81 @@ aaa aaa aaa aaa -iRV -wog -cRm -cRm -cRm -cRm -wog -cRm +afW +qhg +ibe +ibe +ibe +ibe +qhg +ibe aLT cjc cjc -ddB +xHQ cjc cjc aLT -glf +jYU fZZ -ohs +bvi qDq qDq -lud +qVR bpC qDq aQL -wfx -bnY -eVr +mwJ +lsL +rsX lgy -pny +mEH xYP -pZU -kVe -kVe -kVe -kVe -kVe -vap -uMz -vap -kVe -kVe -kVe -kVe -kVe -uyW +peD +ufE +ufE +ufE +ufE +ufE +hMR +xLL +hMR +ufE +ufE +ufE +ufE +ufE +max xYP -ovD +boR laU -xWn -kMF -xWn +qbo +fob +qbo bJC oXb cfo -mHU +oeF oXb oXb -jMJ +sZV bKM tEO bSJ fXN fXN -dJv +khr fXN fXN bSJ -gam -oDI -xQp -fdT -fdT -fdT -qjZ -msc +pAv +xCC +rPy +uXr +uXr +uXr +dZB +vCM aaa aaa aaa @@ -115862,71 +115862,71 @@ aaa aaa aaa aaa -oZE +dJq aag aag -vOI -gpZ -odr -rBN -rIZ -tYN -mZR -dFK +pIq +pER +fTp +nXd +jNs +ctc +llh +xfB hsr mDJ ptK -nPQ +lVt iEr -qlP +qmx eNi ueG rPt jyE eNi -mIZ -wCB -dKd -kgB -xzL +mmc +nXh +hkL +eZe +xgU amx -pci +dDm alO -xSE -nvx +qCE +dEJ amx -bqt -kTF +uTi +qwj inw -tfP +dhF azs atq -uwg -mIZ -wCB -dKd -eos -fkh -oBg +hsn +mmc +nXh +hkL +vki +bpq +uga hSk -uZA -mku +eMD +koa fCL -bjv -chg -xGU -hGg -xGU -xGU -hGg -hGg -cnI -gBZ -oNg -wXf +xTC +giv +elL +fLw +elL +elL +fLw +fLw +cIx +kPQ +dMt +seV aag aag -mSj +pdc aaa aaa aaa @@ -115958,81 +115958,81 @@ aaa aaa aaa aaa -iRV -iRV -iRV -iRV -iRV -cRm -sCa -cRm +afW +afW +afW +afW +afW +ibe +pjy +ibe aLT -ktH -hwR +iNe +kRa meY -ktH -hwR +iNe +kRa aLT -xnK -qVO -xnK -qVO -eMt -lud +qEm +wVg +qEm +wVg +osL +qVR bpC -dwB +cYe aQL -jGt -mmQ -lbm -tvb +rIJ +suK +wLF +dzO bCG cgE -eIS -efi +hCI +ppd xYP xYP xYP xYP -efi -uMz -efi +ppd +xLL +ppd xYP xYP xYP xYP -efi -bjE +ppd +oNf cgE -hCQ -qSN -oYM -qKZ -vQW +fev +lhD +ttW +hhZ +pRd bJC -usM +piQ cfo -mHU -edI -uNR -edI -uNR -usM +oeF +qkU +jhM +qkU +jhM +piQ bSJ -hnd -pBX +gUM +qHA oer -hnd -pBX +gUM +qHA bSJ -mXB -krr -lco -msc -msc -msc -msc -msc +tvD +gXe +oSy +vCM +vCM +vCM +vCM +vCM aaa aaa aaa @@ -116065,71 +116065,71 @@ aaa aaa aaa aaa -oZE +dJq aag aag -vOI -vOI -vOI -vOI -vOI -vOI -vOI -eXj +pIq +pIq +pIq +pIq +pIq +pIq +pIq +uqQ hsr mDJ ptK -nPQ +lVt iEr -lWT +qGu eNi iKD rPt rPt eNi -mIZ -wCB -dKd -uwg -nvx +mmc +nXh +hkL +hsn +dEJ atq -pci +dDm alO alO -iKk +gdt atq -fcb +rMX alO alO -exd +wrX aMD atq -uwg -mIZ -wCB -dKd -eos -tSM -faV +hsn +mmc +nXh +hkL +vki +aSd +wav hSk -fjZ -kna +tuY +caH fCL -fiK +wMH bYn -wXf -wXf -wXf -wXf -wXf -wXf -wXf -wXf -wXf -wXf +seV +seV +seV +seV +seV +seV +seV +seV +seV +seV aag aag -mSj +pdc aaa aaa aaa @@ -116165,10 +116165,10 @@ aaa aaa aaa aaa -iRV -sQN -sCa -cRm +afW +sUS +pjy +ibe aLT meY meY @@ -116181,41 +116181,41 @@ aQL aQL aQL aQL -vlv -cCM +cdH +sXS aQL aQL -jGt -bzT -jGt +rIJ +jcF +rIJ lgy -gVX +vJp xYP -pZU -wYx -wYx -wYx -wYx -wYx -mRq -uMz -mRq -wYx -wYx -wYx -wYx -wYx -uyW +peD +kEV +kEV +kEV +kEV +kEV +apF +xLL +apF +kEV +kEV +kEV +kEV +kEV +max xYP -aek +cmr laU -vQW -waQ -vQW +pRd +rJI +pRd bJC bJC -oJB -hgA +hdA +tGE bJC bJC bJC @@ -116228,10 +116228,10 @@ oer oer oer oer -mgV -xQp -fhR -msc +pBi +rPy +eBM +vCM aaa aaa aaa @@ -116268,7 +116268,7 @@ aaa aaa aaa aaa -oZE +dJq aag aag aag @@ -116278,47 +116278,47 @@ aag aag aag cuC -buL +tnx hsr hsr ptK -kGU +twh rtd -lWT +qGu eNi eNi eNi -hvN +muX eNi -aHh -sQu -dKd -uwg -nvx +eOt +mGf +hkL +hsn +dEJ atq -lNf +cbb alO -ktZ -nvx +avq +dEJ atq -bqt -hKU +uTi +vPb inw -nvx +dEJ ayl amx -uwg -mIZ -wCB -dKd +hsn +mmc +nXh +hkL jWh jmQ vcu -xsG +fYM jWh -kRD +vxR uWV -juM +wqC bYn aag aag @@ -116332,7 +116332,7 @@ aag aag aag aag -mSj +pdc aaa aaa aaa @@ -116368,73 +116368,73 @@ aaa aaa aaa aaa -iRV -nBA -sCa -sCa -sCa -sCa -sCa -sCa -sCa -cRm -sCa -cRm +afW +vmn +pjy +pjy +pjy +pjy +pjy +pjy +pjy +ibe +pjy +ibe aQL -tkv -tkv -xHs -lud +aEc +aEc +myF +qVR bpC -tkv +aEc aQL -jGt -bzT -jGt +rIJ +jcF +rIJ lgy -cde +eLB xYP -dUP -lKm -lKm -lKm -nhJ -lKm -lKm -uMz -lKm -lKm -nhJ -lKm -lKm -lKm -pOm +jKG +oVx +oVx +oVx +lXY +oVx +oVx +xLL +oVx +oVx +lXY +oVx +oVx +oVx +eEP xYP -mZG +wVx laU -vQW -waQ -vQW +pRd +rJI +pRd bJC -uKY +gHt cfo -mHU -uKY -uKY -uKY +oeF +gHt +gHt +gHt bJC -xQp -wAT -xQp -fdT -jKU -ndD -fdT -xQp -xQp -xQp -xQp -msc +rPy +cqo +rPy +uXr +xQI +iNx +uXr +rPy +rPy +rPy +rPy +vCM aaa aaa aaa @@ -116471,71 +116471,71 @@ aaa aaa aaa aaa -mEM -lnh -lnh -lnh -lnh -lnh -lnh -lnh +vQY +mwi +mwi +mwi +mwi +mwi +mwi +mwi aag cuC -tIl +xkW hsr mDJ ptK -nPQ +lVt iEr -lWT +qGu eNi -lhh -sVo +rxL +ggO vzK wYY -mIZ -sQu -dKd -uwg -nvx +mmc +mGf +hkL +hsn +dEJ atq -lNf +cbb alO -tCq -iIO +rTI +wIi auy -uYB -kao +fmF +qDU inw -mem +dIy amx atq -uwg -mIZ -wCB -dKd -eos -plG -bch +hsn +mmc +nXh +hkL +vki +itF +fPb hSk -uZA -mku +eMD +koa fCL -tOZ +niH bYn aag aag aag aag aag -lnh -lnh -lnh -lnh -lnh -lnh -lnh -eJu +mwi +mwi +mwi +mwi +mwi +mwi +mwi +vcV aaa aaa aaa @@ -116571,73 +116571,73 @@ aaa aaa aaa aaa -iRV -odO -mPz -cRm -cRm -cRm -cRm -jSa -cRm -cRm -cRm -cRm +afW +vqE +iIf +ibe +ibe +ibe +ibe +qNQ +ibe +ibe +ibe +ibe aQL qDq qDq qDq -lud +qVR bpC qDq bTb -jGt -bzT -jGt +rIJ +jcF +rIJ bbs -rVr -gVX -pZU -kVe -fjv -kVe -kVe -kVe -vap -uMz -vap -kVe -kVe -kVe -fjv -kVe -uyW -ocn -nJd +qoX +vJp +peD +ufE +dUl +ufE +ufE +ufE +hMR +xLL +hMR +ufE +ufE +ufE +dUl +ufE +max +lWn +xWn bbs -vQW -waQ -vQW +pRd +rJI +pRd xSw oXb cfo -mHU +oeF oXb oXb oXb bJC -xQp -fdT -xQp -fdT -xQp -ocr -fdT -xQp -fdT -fdT -cmS -msc +rPy +uXr +rPy +uXr +rPy +gHu +uXr +rPy +uXr +uXr +pep +vCM aaa aaa aaa @@ -116682,55 +116682,55 @@ bdH bdH bdH bdH -oZE +dJq cuC -hMw -xDI -noK +uZV +nCj +iMP ptK -nPQ +lVt iEr -lWT +qGu eNi -rtL +eXk eJX -qCK +xsy wYY -mIZ -sQu -dKd -uwg -nvx +mmc +mGf +hkL +hsn +dEJ amx apa alO -tPi -icG +fjg +xeg aBr -jOw -qAP +pzM +pmz alO -qHy +kDF amx atq -uwg -mIZ -wCB -dKd -eos -tSM -pJA +hsn +mmc +nXh +hkL +vki +aSd +oYC hSk -fjZ -kna +tuY +caH fCL -juM +wqC bYn aag aag aag aag -mSj +pdc opJ bdH bdH @@ -116774,73 +116774,73 @@ aaa aaa aaa aaa -iRV -iRV -iRV -iRV -iRV -iRV -iRV -iRV -iRV -iRV -sCa -cRm +afW +afW +afW +afW +afW +afW +afW +afW +afW +afW +pjy +ibe aQL qDq qDq qDq -sUm -qfg -qfg +tRH +wor +wor bTb -eVr -bnY -eVr +rsX +lsL +rsX bbs cdp cdp jks cdp bbs -xXp -xXp -xXp -xXp -uMz -lcI -lcI -lcI -lcI +iQc +iQc +iQc +iQc +xLL +tvS +tvS +tvS +tvS bbs fJO fJO fJO fJO bbs -xWn -kMF -xWn +qbo +fob +qbo xSw -qaH -qaH -ePK +loR +loR +pQo oXb oXb oXb bJC -fdT -xQp -xQp -msc -msc -eeD -msc -msc -msc -msc -msc -msc +uXr +rPy +rPy +vCM +vCM +pes +vCM +vCM +vCM +vCM +vCM +vCM aaa aaa aaa @@ -116885,55 +116885,55 @@ bdH bdH bdH bdH -oZE +dJq cuC ptK ptK ptK ptK -nPQ +lVt iEr -lWT +qGu eNi -eHP +lNW fzP -qCK +xsy wYY -mIZ -wCB -dKd -uwg -nvx +mmc +nXh +hkL +hsn +dEJ atq fhf alO -qsu -xPo +qGJ +usb auA -wzj -pCe +ePP +ybv inw -wIF -wIF -jjJ -uwg -mIZ -wCB -kIu +odQ +odQ +fHj +hsn +mmc +nXh +xOP jWh qLs qLs -dtP +sdY jWh -fdY +juK uWV -bjv +xTC bYn bYn bYn aag aag -mSj +pdc bdH bdH bdH @@ -116986,56 +116986,56 @@ aaa aaa aaa aaa -iRV -sPT -wog +afW +qDH +qhg aQL -dwB -dwB -eMt +cYe +cYe +osL qDq qDq qDq bTb -jGt -bzT -jGt -jGt -jGt -jGt -jGt -jGt -ixu -jGt -sFd -jGt -jGt -iTo -vQW -vQW -gLi -vQW -eyJ -vQW -vQW -vQW -vQW -vQW -vQW -waQ -vQW +rIJ +jcF +rIJ +rIJ +rIJ +rIJ +rIJ +rIJ +jpL +rIJ +tWd +rIJ +rIJ +qUC +pRd +pRd +wAC +pRd +cpu +pRd +pRd +pRd +pRd +pRd +pRd +rJI +pRd xSw oXb oXb oXb -usM -ygn -usM +piQ +dQz +piQ bJC -fdT -uBk -fhR -msc +uXr +bCb +eBM +vCM aaa aaa aaa @@ -117092,47 +117092,47 @@ hzc hzc hzc cuC -sEw -fFM -nPQ +sRl +oPJ +lVt rtd -lWT +qGu eNi -emv +gKi uzE qsL -poS -kFE -kDG -dKd -uwg -nvx +qza +fNW +ihE +hkL +hsn +dEJ atq cSm alO -guj -nvx +xXV +dEJ atq aDE asT -hPP -kaY -kaY -rgd -uwg -mIZ -wCB -dKd +xGw +uYC +uYC +dhf +hsn +mmc +nXh +hkL jWh jWh jlQ jlQ jWh -rzg +sCK fCL -bjv -nkp -vFu +xTC +gBd +vyf bYn hzc hzc @@ -117189,56 +117189,56 @@ aaa aaa aaa aaa -iRV -sCa -cRm +afW +pjy +ibe aQL aQL aQL aQL -dwB -eMt -dwB +cYe +osL +cYe aQL -jGt -riw -xom -xom -xom -twl -bnG -twl -twl -twl -mgo -twl -twl -mGU -wlI -wlI -swR -wlI -wlI -wlI -dlQ -wlI -nxc -nxc -nxc -rqO -orC +rIJ +cDS +uka +uka +uka +efq +nrB +efq +efq +efq +tUY +efq +efq +pZG +sls +sls +aKk +sls +sls +sls +bkH +sls +roL +roL +roL +qEH +qLM bJC -usM -ygn -usM +piQ +dQz +piQ bJC bJC bJC bJC -xQp -xQp -xQp -msc +rPy +rPy +rPy +vCM aaa aaa aaa @@ -117291,55 +117291,55 @@ bdH bdH bdH bdH -xQr +whl bZc iHc -bqx -dRU +fFE +rkB hsr -nPQ +lVt iEr -lWT +qGu eNi -xYx -mrV -vLg +oqE +jHm +lfV eNi -ufP -wCB -dKd -uwg -nvx +wNv +nXh +hkL +hsn +dEJ atq -cnm -jQT +pIP +gRX atq -oiH -nGR -nGR -nGR +qGt +cxs +cxs +cxs inw -wIF -wIF -vWU -uwg -mIZ -wCB -dKd +odQ +odQ +aym +hsn +mmc +nXh +hkL jWh -ock -dTF +cHx +lHq vyI -jJf -kRD +vAI +vxR fCL -bjv +xTC hSk -sPr -myS +rRB +dVT iHc bZc -xnQ +lLW bdH bdH bdH @@ -117392,56 +117392,56 @@ aaa aaa aaa aaa -iRV -sCa -cRm -cRm -ttg -cRm -wqK -wqK -wqK -wqK -wqK -bgo -jGt -jGt -jGt -jGt -day -bkS -day -day -jGt -gBB -jGt -jGt -iTo -vQW -vQW -tmG -vQW -hYs -hYs -waQ -hYs -vQW -vQW -vQW -vQW -vLb +afW +pjy +ibe +ibe +tLL +ibe +lZR +lZR +lZR +lZR +lZR +kqw +rIJ +rIJ +rIJ +rIJ +jyy +xph +jyy +jyy +rIJ +fjR +rIJ +rIJ +qUC +pRd +pRd +nqw +pRd +jln +jln +rJI +jln +pRd +pRd +pRd +pRd +gHi bJC bJC bJC bJC bJC -fdT -fdT -fdT -xQp -fdT -abZ -msc +uXr +uXr +uXr +rPy +uXr +rOO +vCM aaa aaa aaa @@ -117494,55 +117494,55 @@ bdH bdH bdH bdH -xQr +whl jgw wbJ -bqx -dRU +fFE +rkB hsr -nPQ +lVt iEr -qlP +qmx eNi -mba -eIq -ibP +koO +uyu +bOf eNi -mIZ -sQu -dKd -uwg -ybW -nGR -cnm -eSX +mmc +mGf +hkL +hsn +tjS +cxs +pIP +prU atq atq -nvx -vGv -cIV +dEJ +gNI +eGS alO -ogR -nYV -txz -uwg -mIZ -wCB -dKd +rMv +vvW +dcm +hsn +mmc +nXh +hkL jWh -oFT -dTF +tJs +lHq vyI vyI vyI fCL -bjv +xTC hSk -sPr -myS +rRB +dVT wLi jgw -xnQ +lLW bdH bdH bdH @@ -117595,56 +117595,56 @@ aaa aaa aaa aaa -iRV -tdi -cRm -sCa -sCa -cRm -cRm -xlz -sCa -sCa -wqK -wqK -jIH -wqK -wqK -wll -txt -kqm -uYS -kEs -kEs -lrU -deN -deN -lrU -deN -deN -lrU -nGG -vYS -xBO -rHT -paT -hLi -pSr -pSr -rFM -pSr -pSr -fdT -fdT -fdT -fdT -fdT -fdT -fdT -fdT -fdT -oDI -msc +afW +gmW +ibe +pjy +pjy +ibe +ibe +thI +pjy +pjy +lZR +lZR +cvH +lZR +lZR +cFf +oEQ +dPR +xdk +stN +stN +fne +vVo +vVo +fne +vVo +vVo +fne +eNm +gad +iUA +dgu +czU +rPI +hNB +hNB +xru +hNB +hNB +uXr +uXr +uXr +uXr +uXr +uXr +uXr +uXr +uXr +xCC +vCM aaa aaa aaa @@ -117701,47 +117701,47 @@ hzc hzc hzc cuC -iyp -fFM -nPQ +vOl +oPJ +lVt rtd -lWT +qGu eNi eNi eNi eNi eNi -mIZ -sQu -dKd +mmc +mGf +hkL alO alO alO alO alO -xZh -xZh -kyv -otH -tIE +vhg +vhg +dii +cGc +bVh alO alO alO alO alO -mIZ -wCB -dKd +mmc +nXh +hkL jWh -ock -dTF +cHx +lHq vyI -ybN -kRD +qwx +vxR uWV -bjv -nkp -htc +xTC +gBd +mrG bYn hzc hzc @@ -117798,56 +117798,56 @@ aaa aaa aaa aaa -iRV -uKO -toa -cRm -cRm -cRm -cRm -xlz -cRm -cRm -uaC -cRm -cRm -cRm -wqK -wqK -ybL -osB -ybL -lrU -lrU -lrU -tmp -hhq -eAW -kQA -kqL -lrU -lrU -lrU -ybL -lxa -ybL -pSr -pSr -fdT -xQp -fdT -fdT -xQp -xQp -xQp -fdT -fdT -fdT -fdT -xQp -kmi -jXE -msc +afW +txp +inm +ibe +ibe +ibe +ibe +thI +ibe +ibe +uoD +ibe +ibe +ibe +lZR +lZR +xdq +gnw +xdq +fne +fne +fne +koH +hEx +qDG +rVC +kdW +fne +fne +fne +xdq +xUL +xdq +hNB +hNB +uXr +rPy +uXr +uXr +rPy +rPy +rPy +uXr +uXr +uXr +uXr +rPy +uIu +kWX +vCM aaa aaa aaa @@ -117900,24 +117900,24 @@ bdH bdH bdH bdH -oZE +dJq aag aag cuC cuC cuC -nPQ +lVt iEr -lWT -lWT -vdf -lWT -lWT +qGu +qGu +agL +qGu +qGu ptK -kpb -dnt -ftL -nHE +dIx +mVg +jsZ +tiy aPa eky eky @@ -117931,24 +117931,24 @@ alO eky eky aPa -nHE -kpb -dnt -rTd +tiy +dIx +mVg +xaO jWh -gnV -gnV -gnV -gnV -mku +jtM +jtM +jtM +jtM +koa fCL -ttT +cfg bYn bYn bYn aag aag -mSj +pdc bdH bdH bdH @@ -118001,56 +118001,56 @@ aaa aaa aaa aaa -iRV -lmp -fib -ezI -sCa -sCa -sCa -tnG -ezI -cRm -cRm -cRm -cRm -sCa -sCa -wqK -qWk -oUg -xVU -lrU -hfo -qxi -kVx -nrI -ybQ -eZG -qEA -rOu -iXZ -lrU -oke -jzw -euc -pSr -djj -cEX -xQp -xQp -xQp -fdT -syi -fdT -xQp -fdT -xQp -xQp -wej -mut -ieb -msc +afW +cdj +eGo +jdR +pjy +pjy +pjy +lWc +jdR +ibe +ibe +ibe +ibe +pjy +pjy +lZR +uwx +hMp +jWb +fne +vFc +tYD +hGx +uuC +vct +xyg +sVh +yid +aXf +fne +weH +lYx +jPW +hNB +cyh +dYz +rPy +rPy +rPy +uXr +kfQ +uXr +rPy +uXr +rPy +rPy +tSf +lJC +tso +vCM aaa aaa aaa @@ -118103,55 +118103,55 @@ bdH bdH bdH bdH -mEM -lnh -lnh -lnh +vQY +mwi +mwi +mwi aag uMc -tBQ +ipb wOt odl jhx keR jhx keR -ivI -jKf -hLY -xfB -xcV +qME +bau +tGV +aLI +jHD uYg nau uYg uYg -roT -etM -etM -etM -vne +uCq +kWV +kWV +kWV +tHH uYg uYg nau uYg -xcV -via -hLY -jKf -icL +jHD +jyL +tGV +bau +nXT soP tWi soP pDr tWi tpd -iaS +wji pql aag -lnh -lnh -lnh -eJu +mwi +mwi +mwi +vcV bdH bdH bdH @@ -118204,56 +118204,56 @@ aaa aaa aaa aaa -iRV -iRV -iRV -iRV -iRV -iRV -iRV -aZN -ybL -ybL -ybL -qUE -ybL -wqK -sPT -wqK -qWk -oUg -xVU -lrU -kMX -mfx -mfx -nrI -ybQ -eZG -uzV -mfx -xCx -lrU -qpL -jzw -euc -pSr -xQp -pSr -ybL -qUE +afW +afW +afW +afW +afW +afW +afW +idV +xdq +xdq +xdq +gRc +xdq +lZR +qDH +lZR +uwx +hMp +jWb +fne +ctM +bum +bum +uuC +vct +xyg +vsO +bum +mCF +fne +mbX +lYx +jPW +hNB +rPy +hNB +xdq +gRc aep aep aep dKL -msc -msc -msc -msc -msc -msc -msc -msc +vCM +vCM +vCM +vCM +vCM +vCM +vCM +vCM aaa aaa aaa @@ -118310,47 +118310,47 @@ aaa aaa aaa aaa -oZE +dJq uMc -nPQ -pOo -eCG -fpq -bmS -bmS -vJL +lVt +wFo +jYW +pcr +uOZ +uOZ +smy ptK -eVJ -vsL -syd -nHE +dLA +kep +fmH +tiy eky aNl eky eky -pjp +mrz vsh vsh vsh -iOB +wVj eky eky aNl eky -nHE -eVJ -wfH -syd +tiy +dLA +tMC +fmH jWh -bxO +sqN uWV -lrf -kvO -rJP -vgw -bjv +kRi +hQO +xRb +kpD +xTC pql -mSj +pdc aaa aaa aaa @@ -118411,47 +118411,47 @@ aaa aaa aaa aaa -oZE +dJq aag aag -aZN -xpE -syj -ybL -yaL -eKk -ybL -vId -wqK -nqq -oUg -euc -lXU -ipo -ipo -ipo -djx -tSk -cMv -ipo -ipo -ipo -lXU -qWk -jzw -bXd -pSr -tyO -ybL -lnc -lQg +idV +whx +qnI +xdq +xFK +lrp +xdq +nGf +lZR +eho +hMp +jPW +ltG +aqA +aqA +aqA +gbH +oVR +wiY +aqA +aqA +aqA +ltG +uwx +lYx +pqz +hNB +ehv +xdq +hQD +peT ggQ afk afk dKL aag aag -mSj +pdc aaa aaa aaa @@ -118512,49 +118512,49 @@ aaa bdH bdH bdH -baA +qDX aag cuC -ubo -vYX +fMz +qTm ptK ptK ucp -cnn +bRG ptK ptK -lsw -gPf -lsw +gVs +bDm +gVs aHe jlT exi eky eky -xkx -ltM -ltM -ltM -xkx +rFF +jhf +jhf +jhf +rFF eky eky ins wRP aHe -faW -faW -faW +chI +chI +chI jWh jWh -tKQ +wiS jWh jWh jWh -loZ -kru +rIs +oXs bYn aag -psN +ckx aaa aaa aaa @@ -118614,47 +118614,47 @@ aaa aaa aaa aaa -oZE +dJq aag aag -aZN -xpE -syj -ybL -pJb -nQR -ybL -cRm -wqK -tHT -qTS -dWO -stb -gCM -tbl -qcF -fto -fds -oGU -rAv -kWg -ygR -cIZ -dPW -gRi -rVF -pSr -fdT -ybL -xFf -llp +idV +whx +qnI +xdq +qDd +lsZ +xdq +ibe +lZR +cAk +rLx +xmN +dpr +fQN +cfS +sKC +uGk +lDC +eXz +gyd +gnL +oBc +vbK +wLJ +crF +ioB +hNB +uXr +xdq +qlY +uNr aWZ bLx bMJ dKL aag aag -mSj +pdc aaa aaa aaa @@ -118718,17 +118718,17 @@ bdH cuC cuC cuC -nPQ -twK +lVt +gAK ptK -xiL -hsl -nzU -mII +cHK +oyn +gEO +iLe ptK -bqB -bqB -bqB +ivI +ivI +ivI eky eky aNl @@ -118744,17 +118744,17 @@ eky aNl eky rqj -faW -pvp -wTK +chI +jJT +nMW jWh -duz -ofO -gwy -doU +qCg +cuh +mMt +xAC jWh -jIn -bjv +qZG +xTC bYn bYn bYn @@ -118817,47 +118817,47 @@ aaa aaa aaa aaa -mEM -lnh -lnh -aZN -nSt -syj -syj -rzL -stT -ybL -qUE -ybL -qmb -oUg -euc -lXU -otC -otC -pLN -uJp -wkn -wlS -aeg -eiG -otC -lXU -qWk -jzw -euc -ybL -qUE -ybL -wTU -sIv +vQY +mwi +mwi +idV +mol +qnI +qnI +pGB +tNu +xdq +gRc +xdq +urA +hMp +jPW +ltG +fLM +fLM +cAR +xSV +pSC +uKz +rGk +afV +fLM +ltG +uwx +lYx +jPW +xdq +gRc +xdq +cjk +nDT aep aep aep dKL -lnh -lnh -eJu +mwi +mwi +vcV aaa aaa aaa @@ -118919,47 +118919,47 @@ bdH bdH bdH cuC -kDX -gwk -wsp -twK +jlg +iDU +duK +gAK ptK -xiL -iad -bmJ -nWO +cHK +wah +fQQ +gaF ptK -kfp -kfp -xQB -rfM -rfM -gnZ -cLL +rWS +rWS +esR +eBS +eBS +bmA +eAQ aHe aHe -dwV -wCQ -tCj +jHv +qVP +daJ aHe aHe -ldq -gnZ -rfM -rfM -nZz -xFQ -xFQ +uUb +bmA +eBS +eBS +mvg +hiP +hiP jWh -axR -fRk -rdO -fWi +uUV +sLL +wgX +fnQ jWh -jIn -qPv -gnV -kiY +qZG +msN +jtM +pRF bYn aaa aaa @@ -119023,37 +119023,37 @@ aaa aaa aaa aaa -aZN -hlA -syj -syj -rDq -fUP -ybL -mio -ybL -rNh -oUg -ser -lrU -azO -mfx -uCA -nrI -cCP -eZG -oRE -mIc -gDK -lrU -qsj -jzw -alr -ybL -hTn -ybL -xFf -sBE +idV +mTJ +qnI +qnI +iUT +nmI +xdq +myj +xdq +pKD +hMp +mfj +fne +ezi +bum +yex +uuC +jmo +xyg +njH +lxE +wNk +fne +qUD +lYx +pPW +xdq +wne +xdq +qlY +xMa ggQ bLy bLy @@ -119122,47 +119122,47 @@ bdH bdH bdH cuC -nPQ -pOo -sYg -xBy +lVt +wFo +jmr +pFy ptK -rnP -gNF -isq -foG +oiA +lJs +goZ +uni ptK -wFr -iZl -bqB +bAy +mFx +ivI svf arV wZX eky aDQ -xIt +uiv eky aBx eky -bQJ +sbD aDQ eky wZX arV vUh -faW -eUZ -xFQ +chI +iwS +hiP jWh -vpv -xFu -bbK -fWi +dkS +kOp +lmt +fnQ jWh -rHO -vrO -vgw -bjv +vqe +lDI +kpD +xTC bYn aaa aaa @@ -119226,37 +119226,37 @@ aaa aaa aaa aaa -aZN -vLD -uzB -uzB -wUk -tET -fpA -xRY -fpA -jEl -wAA -euc -lrU -lrU -llH -mfx -nrI -ooY -eZG -mfx -fFf -lrU -lrU -xqL -pGr -uVo -wQy -qZQ -wQy -qKN -izd +idV +nrA +xVe +xVe +wvd +xxX +rsP +lZD +rsP +rVq +rEl +jPW +fne +fne +vGH +bum +uuC +kjK +xyg +bum +dXv +fne +fne +wXQ +ghF +uYA +jst +fBR +jst +tEE +ddI aWZ bLz bMK @@ -119325,47 +119325,47 @@ bdH bdH bdH cuC -scV -twK +eKN +gAK ptK ptK ptK ptK ptK -kMw +iYd ptK ptK -wFr -bqB -bqB -lDn +bAy +ivI +ivI +qyH arV wZX eky aDQ -xqG +ryf eky eky eky -gsp +wMP aDQ eky wZX arV -wkA -faW -faW -xFQ +dtv +chI +chI +hiP jWh jWh -qbf +lgA jWh jWh jWh jWh jWh -jIn -kYD +qZG +uAQ bYn aaa aaa @@ -119433,33 +119433,33 @@ dKL aep aep aep -aHk -syj -uqm -pdI -uqm -nYT -oUg -sPy -qlT -lrU -hyy -mfx -nrI -ooY -eZG -mfx -hPs -lrU -tAc -aXR -jzw -rTg -uqm -dDn -uqm -vJu -qWC +tZd +qnI +ycl +cHr +ycl +cas +hMp +iEu +jqX +fne +nyC +bum +uuC +kjK +xyg +bum +eRj +fne +aTd +hDB +lYx +mgN +ycl +qIu +ycl +fFv +qaB aep aep aep @@ -119528,20 +119528,20 @@ bdH bdH bdH uMc -nPQ -twK -bqB -ggN -wFr -rEt -wFr -kfp -rKo -wFr -uVa -bqB -xei -vVu +lVt +gAK +ivI +uFy +bAy +qZQ +bAy +rWS +sGx +bAy +aUt +ivI +mRa +hiN arV wZX eky @@ -119555,20 +119555,20 @@ aHe eky wZX arV -oIt -xei -faW -icI -xFQ -kMV -vch -xFQ -cRU -sUk -jgc -faW -jIn -bjv +fXM +mRa +chI +cCp +hiP +iXF +kgG +hiP +qHN +hpg +met +chI +qZG +xTC pql bdH bdH @@ -119636,33 +119636,33 @@ dKL afk aWo aWZ -ipC -bhm -ybL -qUE -ybL -jHp -oUg -xPw -euc -lXU -mfx -mfx -nrI -cCP -eZG -mfx -mfx -lXU -qWk -iOW -odI -vKS -ybL -qUE -ybL -dHA -lSv +lWe +nGb +xdq +gRc +xdq +mRd +hMp +lPK +jPW +ltG +bum +bum +uuC +jmo +xyg +bum +bum +ltG +uwx +cyp +eHp +hEQ +xdq +gRc +xdq +mvz +iWQ aWZ bLA afk @@ -119731,47 +119731,47 @@ bdH bdH bdH uMc -nPQ -twK -bqB -ggN -wFr -jbl -wFr -kfp -pGA -wFr -ocb -bqB -rjI -hKR -rfM -sFM -dsc -sxi +lVt +gAK +ivI +uFy +bAy +ldR +bAy +rWS +nKg +bAy +kCk +ivI +rCx +imV +eBS +ftN +lZG +uXA uYg vsh oPf vsh uYg -sxi -dsc -pFT -rfM -eQF -rjI -faW -qyO -rYD -xFQ -vch -xFQ -hUE -rEC -gcR -faW -jIn -bjv +uXA +lZG +iwt +eBS +jWl +rCx +chI +rpc +cXB +hiP +kgG +hiP +yhZ +cpX +lpm +chI +qZG +xTC pql bdH bdH @@ -119839,33 +119839,33 @@ dKL aVo aWp aWZ -cAX -xFf -ybL -wfy -jZF -uUr -wXz -kMv -tJl -ugS -wOU -wOU -syF -jed -kRC -wOU -wOU -xwD -cph -nyq -gvl -han -jZF -wfy -ybL -oaG -euc +pES +qlY +xdq +ldG +vkn +cKl +faf +oUr +ssO +uHe +pbH +pbH +xkE +knb +nJJ +pbH +pbH +hWv +pCj +dgP +kkC +wez +vkn +ldG +xdq +dRF +jPW ggQ afk bML @@ -119934,47 +119934,47 @@ bdH bdH bdH uMc -nPQ +lVt rtd -xQB -kfp -kfp -kfp -kfp -kfp -fCZ -wFr -hsD -bqB -bqB -tlr +esR +rWS +rWS +rWS +rWS +rWS +cIC +bAy +stn +ivI +ivI +cVu eky wZX vUh aHe oxU bsy -udq +gYI gzw shh aHe svf wZX eky -fOx -faW -faW -nzy -gQZ -xFQ -oIh -oIh -oIh -oIh -oIh -nZz +ybT +chI +chI +iPP +gyo +hiP +ond +ond +ond +ond +ond +mvg uWV -bjv +xTC pql bdH bdH @@ -120042,33 +120042,33 @@ dKL afk afk ggQ -wEr -vqn -ybL -oSJ -jZF -fjM -ikA -xPw -tSE -lrU -juT -qIl -mmk -lof -nFn -lhn -eSK -lrU -soM -xPw -wgP -oOL -jZF -oSJ -ybL -nFT -rhf +oob +qRr +xdq +rpU +vkn +tcQ +vMV +lPK +faN +fne +jts +oIy +cHS +vDX +uwO +kQG +sbi +fne +taF +lPK +ayO +cLO +vkn +rpU +xdq +aDI +hEg aWZ bLC afk @@ -120137,23 +120137,23 @@ bdH bdH bdH cuC -ubo -vYX -bqB -bqB -bqB -bqB -bzZ -kfp -kfp -kfp -kfp -kfp -xQB -wdh -bgZ -gis -nRj +fMz +qTm +ivI +ivI +ivI +ivI +ihK +rWS +rWS +rWS +rWS +rWS +esR +hCL +wcQ +ueS +kkb aHe aHe aHe @@ -120161,23 +120161,23 @@ aHe aHe aHe aHe -bgZ -gis -nRj -wdh -nZz -oIh -oIh -dOx -oIh -vch -jId -faW -faW -faW -faW -loZ -kru +wcQ +ueS +kkb +hCL +mvg +ond +ond +iom +ond +kgG +hEa +chI +chI +chI +chI +rIs +oXs bYn bdH bdH @@ -120245,33 +120245,33 @@ dKL dKL aep aep -pYM -xFf -ybL -oSJ -jZF -mKu -mKu -mgQ -uLC -mKu -qPK -deN -deN -deN -deN -deN -qPK -mKu -mnN -efJ -mKu -mKu -jZF -fkF -ybL -ajn -sPy +nAl +qlY +xdq +rpU +vkn +uov +uov +vhb +mtm +uov +tSe +vVo +vVo +vVo +vVo +vVo +tSe +uov +jhX +rZV +uov +uov +vkn +khC +xdq +oxy +iEu aep aep dKL @@ -120340,47 +120340,47 @@ aaa aaa bdH cuC -nPQ -sUD -gwk -fZT -kWJ -iyC -iyC -iyC -iyC -iyC -iyC -iyC -iyC +lVt +csc +iDU +wxW +wfb +qWG +qWG +qWG +qWG +qWG +qWG +qWG +qWG aPw -aAi +owu mhG -oDA -xil +uDV +cDM aHe -sjn -svI -rly +eWX +msW +iDP aHe -rtP -cfP +uNQ +peo dPC -mpW +jQi aPw -mMg -mMg -mMg -mMg -mMg -mMg -mMg -mMg -oty -dnK -gCK -vPl -bjv +tau +tau +tau +tau +tau +tau +tau +tau +apy +iNo +uQO +vQJ +xTC bYn bdH bdH @@ -120445,39 +120445,39 @@ aaa aaa aaa bdH -aZN -rvE -szA -vjp -lyL -ybL -oSJ -oSJ -mKu -mtK -sfs -fxC -mKu -jCQ -deM -deM -lNV -deM -deM -jCQ -mKu -rqo -sfs -uql -mKu -wfy -oSJ -ybL -lyL -sHH -ftY -kFd -aZN +idV +mlx +ioD +iiI +tGY +xdq +rpU +rpU +uov +cgP +kZK +wMF +uov +njz +aCn +aCn +qgE +aCn +aCn +njz +uov +lUd +kZK +tSi +uov +ldG +rpU +xdq +tGY +kTP +xJV +fxk +idV aaa aaa aaa @@ -120543,11 +120543,11 @@ bdH bdH bdH cuC -vjX -pJY +bqE +jzL uhM -ekZ -oIZ +rUt +mAs cuC aag aag @@ -120557,19 +120557,19 @@ aag aag aag aPw -oOD -ltM -kqD -rfM -qdJ -etM -etM -etM -qdJ -rfM -rmY -ltM -skU +jil +jhf +bwY +eBS +gdI +kWV +kWV +kWV +gdI +eBS +uzz +jhf +gom aPw aag aag @@ -120579,11 +120579,11 @@ aag aag aag bYn -khn -uZN +nWM +qxo rDb -oFy -mgu +eWB +sbA bYn bdH bdH @@ -120648,39 +120648,39 @@ aaa aaa aaa bdH -aZN -fWX -aZN -aZN -aZN -aZN -wfy -wfy -mKu -aPN -sfs -fxC -iKm -dtg -nHw -nHw -nHw -nHw -nHw -jdv -iKm -rqo -sfs -aPN -mKu -vLG -qhN -aZN -aZN -aZN -aZN -fWX -aZN +idV +xuJ +idV +idV +idV +idV +ldG +ldG +uov +eMb +kZK +wMF +dKX +iCt +jZD +jZD +jZD +jZD +jZD +rjX +dKX +lUd +kZK +eMb +uov +mNj +oBV +idV +idV +idV +idV +xuJ +idV aaa aaa aaa @@ -120747,45 +120747,45 @@ bdH bdH cuC cuC -alc -tQF -wCi +sdH +asd +hqJ cuC cuC -cWQ -cWQ -cWQ -cWQ -cWQ -cWQ -iQp +dtQ +dtQ +dtQ +dtQ +dtQ +dtQ +rOY aPw aPw -bgZ -gis -nRj -aAi -rfM +wcQ +ueS +kkb +owu +eBS arV -rfM -mpW -bgZ -gis -nRj +eBS +jQi +wcQ +ueS +kkb aPw aPw -cWQ -cWQ -cWQ -cWQ -cWQ -cWQ -nbk +dtQ +dtQ +dtQ +dtQ +dtQ +dtQ +dZp bYn bYn -apy -wrv -mgu +lae +fFP +sbA bYn bYn bdH @@ -120851,39 +120851,39 @@ aaa aaa aaa bdH -mEM -lnh +vQY +mwi aag aag aag -eAn -pGX -oSJ -mKu -xpF -jTa -rdc -bMe -yka -pAr -wZh -wZh -wZh -mCy -gYo -oCY -iUK -dkR -pGI -mKu -fvI -rcU -eAn +fxl +kCp +rpU +uov +pPx +hhB +shL +qcJ +wnM +fuE +dRW +dRW +dRW +ikc +bEX +rzD +rjI +dpi +weG +uov +hIa +dTS +fxl aag aag aag -lnh -eJu +mwi +vcV aaa aaa aaa @@ -120948,13 +120948,13 @@ bdH bdH bdH bdH -oZE +dJq cuC -oiM +iOC rtd -bmJ +fQQ cuC -mSj +pdc xVk xVk xVk @@ -120962,21 +120962,21 @@ xVk xVk xVk xVk -oZE +dJq aPw -boM +hRm mhG -gzD -kWW -dsc +ddn +xRL +lZG oPf -dsc -gzD -kWW +lZG +ddn +xRL dPC -isM +fxs aPw -mSj +pdc xVk xVk xVk @@ -120984,13 +120984,13 @@ xVk xVk xVk xVk -oZE +dJq bYn -hIg +oJO uWV -bjv +xTC bYn -mSj +pdc bdH bdH bdH @@ -121056,35 +121056,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag -eAn -wfy -wfy -mKu -oKw -sfs -oSk -vGW -qGt -fzF -deM -deM -deM -sdk -qGt -wkN -jHR -sfs -tDr -mKu -wfy -wfy -eAn +fxl +ldG +ldG +uov +sQt +kZK +eqZ +xgT +eng +mmu +aCn +aCn +aCn +fQa +eng +fwO +trl +kZK +nqq +uov +ldG +ldG +fxl aag aag -mSj +pdc aaa aaa aaa @@ -121151,13 +121151,13 @@ bdH bdH bdH bdH -oZE +dJq cuC -vLS +mqc ngU -jFO +jgT cuC -mSj +pdc xVk xVk xVk @@ -121165,21 +121165,21 @@ xVk xVk xVk xVk -oZE +dJq aPw -oOD -vrV -skU -aAi +jil +ooV +gom +owu eky -gnZ +bmA eky -mpW -oOD -vrV -skU +jQi +jil +ooV +gom aPw -mSj +pdc xVk xVk xVk @@ -121187,13 +121187,13 @@ xVk xVk xVk xVk -oZE +dJq bYn -kRD +vxR uWV -bjv +xTC bYn -mSj +pdc bdH bdH bdH @@ -121259,35 +121259,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag -eAn -oSJ -oSJ -mKu -lgH -cEL -rdc -rFo -qpN -vBh -qqa -deM -hOp -aCY -hEP -kxJ -iUK -nsO -tDr -mKu -wfy -wfy -eAn +fxl +rpU +rpU +uov +rcN +xxP +shL +oJa +jvy +iBc +rvP +aCn +nQM +wZo +xCq +mgu +rjI +wVp +nqq +uov +ldG +ldG +fxl aag aag -mSj +pdc aaa aaa aaa @@ -121354,13 +121354,13 @@ bdH bdH bdH bdH -oZE +dJq uMc -sRb +tqd iEr -eZp +njR uMc -mSj +pdc xVk xVk xVk @@ -121368,21 +121368,21 @@ xVk xVk xVk xVk -oZE +dJq aPw aHe aHe aHe -fTG +rNY eky wZX eky -mOT +mcj aHe aHe aHe aPw -mSj +pdc xVk xVk xVk @@ -121390,13 +121390,13 @@ xVk xVk xVk xVk -oZE +dJq pql -kRD +vxR fCL -bjv +xTC pql -mSj +pdc bdH bdH bdH @@ -121462,35 +121462,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag -eAn -wfy -oSJ -mKu -mKu -uAv -fxC -sfs +fxl +ldG +rpU +uov +uov +lNE +wMF +kZK +abn +ikc +mmu +aCn +fQa pKQ -mCy -fzF -deM -sdk -sEI -pIw -sfs -rqo -tDr -mKu -mKu -oSJ -fkF -eAn +nZN +kZK +lUd +nqq +uov +uov +rpU +khC +fxl aag aag -mSj +pdc aaa aaa aaa @@ -121557,13 +121557,13 @@ bdH bdH bdH bdH -oZE +dJq uMc -cba +jUK iEr -bmJ +fQQ uMc -mSj +pdc xVk xVk xVk @@ -121571,21 +121571,21 @@ xVk xVk xVk xVk -oZE +dJq aPw aHe aHe aHe -aAi +owu eky wZX eky -mpW +jQi aHe aHe aHe aPw -mSj +pdc xVk xVk xVk @@ -121593,13 +121593,13 @@ xVk xVk xVk xVk -oZE +dJq pql -kRD +vxR fCL -bjv +xTC pql -mSj +pdc bdH bdH bdH @@ -121665,35 +121665,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag -eAn -wfy -wfy -wfy -mKu -krk -fxC -mKu -rWH -sdk -fzF -deM -sdk -fzF -deM -mKu -dxJ -krk -mKu -kdF -wfy -wfy -eAn +fxl +ldG +ldG +ldG +uov +xmC +wMF +uov +dzp +fQa +mmu +aCn +fQa +mmu +aCn +uov +siu +xmC +uov +lkD +ldG +ldG +fxl aag aag -mSj +pdc aaa aaa aaa @@ -121760,13 +121760,13 @@ bdH bdH bdH bdH -oZE +dJq uMc -lTY +hdl iEr -bmJ +fQQ uMc -mSj +pdc xVk xVk xVk @@ -121774,21 +121774,21 @@ xVk xVk xVk xVk -oZE +dJq jbq -mOJ -wYb -etM -jDW +wDx +vhz +kWV +cAA eky aNl eky -jXl -etM -aTp -mOJ +aEY +kWV +rhK +wDx jbq -mSj +pdc xVk xVk xVk @@ -121796,13 +121796,13 @@ xVk xVk xVk xVk -oZE +dJq pql -kRD +vxR fCL -bjv +xTC pql -mSj +pdc bdH bdH bdH @@ -121868,35 +121868,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag -eAn -oSJ -oSJ -oSJ -mKu -sfr -itv -mKu -bZy -sdk -bqb -nHw -aCY -fzF -xTU -mKu -qJo -sfr -mKu -dvX -oSJ -dvX -eAn +fxl +rpU +rpU +rpU +uov +mXB +osP +uov +ryx +fQa +puy +jZD +wZo +mmu +mFi +uov +mNP +mXB +uov +rnI +rpU +rnI +fxl aag aag -mSj +pdc aaa aaa aaa @@ -121963,13 +121963,13 @@ bdH bdH bdH bdH -oZE +dJq cuC -spr +tFB rtd -isY +wfr cuC -mSj +pdc xVk xVk xVk @@ -121977,10 +121977,10 @@ xVk xVk xVk xVk -oZE +dJq jbq -heS -vuH +yaU +cYS eky eky nJu @@ -121988,10 +121988,10 @@ aNl eky eky eky -gmX -heS +eML +yaU jbq -mSj +pdc xVk xVk xVk @@ -121999,13 +121999,13 @@ xVk xVk xVk xVk -oZE +dJq bYn -kRD +vxR uWV -kYD +uAQ bYn -mSj +pdc bdH bdH bdH @@ -122071,35 +122071,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag -eAn -eAn -gPW -wfy -mKu -sfr -fxC -mKu -deM -tNA -qpN -qGt -pia -iwy -deM -mKu -rqo -sfr -mKu -vLG -tNt -eAn -eAn +fxl +fxl +rcY +ldG +uov +mXB +wMF +uov +aCn +bQn +jvy +eng +uQW +oXo +aCn +uov +lUd +mXB +uov +mNj +sKQ +fxl +fxl aag aag -mSj +pdc aaa aaa aaa @@ -122168,11 +122168,11 @@ bdH bdH cuC cuC -vZB +tBC rtd -bmJ +fQQ cuC -xzM +hxi xVk xVk xVk @@ -122180,10 +122180,10 @@ xVk xVk xVk xVk -vfn +wIT aPw aHe -tOp +asr eky eky eky @@ -122191,10 +122191,10 @@ aNl eky eky eky -bwo +taE aHe aPw -vfn +wIT xVk xVk xVk @@ -122202,11 +122202,11 @@ xVk xVk xVk xVk -lkQ +tTg bYn -kRD +vxR uWV -bjv +xTC bYn bYn bdH @@ -122274,35 +122274,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -vLG -qhN -mKu -mKu -hAk -mKu -mKu -sYH -wAi -oYO -hpB -lOp -mKu -mKu -emF -mKu -mKu -sLu -oSJ -eAn +fxl +mNj +oBV +uov +uov +bOF +uov +uov +fKp +bkI +vpR +kJw +qiV +uov +uov +jnm +uov +uov +nYX +rpU +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -122370,12 +122370,12 @@ bdH aaa aaa uMc -hWR -kDX -wtq -nzU -cQP -jdP +doN +jlg +fKd +gEO +cek +msu xVk xVk xVk @@ -122383,21 +122383,21 @@ xVk xVk xVk xVk -cIg -eLB -bgZ -etM -nRj +orw +mAY +wcQ +kWV +kkb eky eky aNl eky eky -bgZ -etM -nRj -ujg -wIW +wcQ +kWV +kkb +lxP +qsS xVk xVk xVk @@ -122405,12 +122405,12 @@ xVk xVk xVk xVk -gVK -xuO -fTc -vvd -kiY -yam +tDi +xpX +dOp +jrZ +pRF +leL pql bdH bdH @@ -122477,35 +122477,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -wfy -wQq -mKu -lDZ -sBJ -hUm -mYH -eia -qTT -rVQ -qTT -uop -uFw -dpg -jtg -ryQ -mKu -oSJ -rcU -eAn +fxl +ldG +efa +uov +rYO +avp +fnL +dqU +rNR +whY +sfW +whY +nHP +fOf +mAi +fcY +lFj +uov +rpU +dTS +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -122573,12 +122573,12 @@ bdH aaa aaa uMc -aIH -mjZ +kNv +jaJ iEr -bmJ -ubo -jdP +fQQ +fMz +msu xVk xVk xVk @@ -122586,21 +122586,21 @@ xVk xVk xVk xVk -cIg -xJd -aAi +orw +bCT +owu arV -mpW +jQi ssX vsh iPD vsh fCp -aAi +owu arV -mpW -xJd -wIW +jQi +bCT +qsS xVk xVk xVk @@ -122608,12 +122608,12 @@ xVk xVk xVk xVk -gVK -fjZ -kRD +tDi +tuY +vxR fCL -eIo -neZ +rSQ +tUM pql bdH bdH @@ -122680,35 +122680,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -oSJ -oSJ -mKu -sDc -sBJ -qTT -qTT -qTT -qTT -rVQ -qTT -qTT -qTT -qTT -sBJ -ffx -mKu -qeJ -wfy -eAn +fxl +rpU +rpU +uov +wNQ +avp +whY +whY +whY +whY +sfW +whY +whY +whY +whY +avp +mug +uov +qzA +ldG +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -122776,12 +122776,12 @@ bdH aaa aaa uMc -wEw -jfB -jVg -isq -ubo -jdP +kHt +aaR +sEh +goZ +fMz +msu xVk xVk xVk @@ -122789,21 +122789,21 @@ xVk xVk xVk xVk -cIg -xJd -oOD -ltM -skU +orw +bCT +jil +jhf +gom nkn lyw iZg lyw nkn -oOD -ltM -skU -xJd -wIW +jil +jhf +gom +bCT +qsS xVk xVk xVk @@ -122811,12 +122811,12 @@ xVk xVk xVk xVk -gVK -fjZ -saQ -gZC -gwj -xfS +tDi +tuY +cca +oVp +oCn +dzT pql bdH bdH @@ -122883,35 +122883,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -wfy -wfy -mKu -nOw -jsy -sbm -sbm -ikl -rVQ -rVQ -rVQ -sZK -sbm -sbm -luf -pnV -mKu -oSJ -oWT -eAn +fxl +ldG +ldG +uov +jkF +nca +kcB +kcB +bID +sfW +sfW +sfW +scj +kcB +kcB +uWO +xgH +uov +rpU +eiy +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -122980,11 +122980,11 @@ aaa aaa cuC ptK -bqK +aWe iEr -pbS +dWP cuC -fKK +ezf xVk xVk xVk @@ -122992,21 +122992,21 @@ xVk xVk xVk xVk -vLd +gfh aPw -qkL -rfM -rfM +lwZ +eBS +eBS uqI aHe aHe aHe rdh -rfM -rfM -jOP +eBS +eBS +mVL aPw -vLd +gfh xVk xVk xVk @@ -123014,11 +123014,11 @@ xVk xVk xVk xVk -sfj +xwZ bYn -vyo +cNW fCL -onf +rBZ jWh bYn aaa @@ -123086,35 +123086,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -oSJ -oSJ -mKu -ugo -fSF -qTT -qTT -gjk -qTT -qTT -qTT -qTT -qTT -qTT -ffx -bDG -mKu -wfy -wfy -eAn +fxl +rpU +rpU +uov +wrj +fTe +whY +whY +ibY +whY +whY +whY +whY +whY +whY +mug +uvz +uov +ldG +ldG +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -123183,11 +123183,11 @@ aaa aaa cuC ptK -eRU +thw iEr -efD +xzy cuC -xzM +hxi xVk xVk xVk @@ -123195,21 +123195,21 @@ xVk xVk xVk xVk -vfn +wIT aPw -lfm -rfM -rfM +gWg +eBS +eBS eky aHe aHe aHe eky -rfM -rfM -sap +eBS +eBS +rUJ aPw -vfn +wIT xVk xVk xVk @@ -123217,11 +123217,11 @@ xVk xVk xVk xVk -lkQ +tTg bYn -sPr +rRB fCL -lsc +ltn jWh bYn aaa @@ -123289,35 +123289,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -wfy -wfy -mKu -uHx -fSF -qTT -qTT -mKu -gsc -gsc -gsc -mKu -lxp -qTT -ffx -pOJ -mKu -oSJ -oSJ -eAn +fxl +ldG +ldG +uov +hKn +fTe +whY +whY +uov +rjW +rjW +rjW +uov +kmN +whY +mug +dGv +uov +rpU +rpU +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -123385,12 +123385,12 @@ bdH aaa aaa uMc -mqQ -kDX -gtU -nzU -gVy -jdP +nvO +jlg +sOR +gEO +ndi +msu xVk xVk xVk @@ -123398,21 +123398,21 @@ xVk xVk xVk xVk -cIg -wpR -bgZ -etM -nRj +orw +uCg +wcQ +kWV +kkb eky fRC lFe fRC eky -bgZ -etM -nRj -bge -wIW +wcQ +kWV +kkb +hvL +qsS xVk xVk xVk @@ -123420,12 +123420,12 @@ xVk xVk xVk xVk -gVK -jTg -fTc -vvd -kiY -oYV +tDi +giF +dOp +jrZ +pRF +jiz pql bdH bdH @@ -123492,35 +123492,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -oSJ -oSJ -mKu -llZ -eZl -lvE -qTT -mKu -odx -yiL -ltl -mKu -qTT -lvE -fdN -llZ -mKu -wfy -wfy -eAn +fxl +rpU +rpU +uov +eTp +mfz +pAd +whY +uov +ksR +dLf +bHh +uov +whY +pAd +vNM +eTp +uov +ldG +ldG +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -123588,12 +123588,12 @@ bdH aaa aaa uMc -pTZ -lNr +den +cyw kNk -qXk -ubo -jdP +ltj +fMz +msu xVk xVk xVk @@ -123601,21 +123601,21 @@ xVk xVk xVk xVk -cIg -xJd -aAi +orw +bCT +owu arV -mpW +jQi arV arV arV arV arV -aAi +owu arV -mpW -xJd -wIW +jQi +bCT +qsS xVk xVk xVk @@ -123623,12 +123623,12 @@ xVk xVk xVk xVk -gVK -fjZ -kRD +tDi +tuY +vxR fCL -eIo -cUg +rSQ +lcd pql bdH bdH @@ -123695,35 +123695,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -wfy -oSJ -mKu -mKu -mKu -mKu -qvm -mKu -mKu -mKu -mKu -mKu -qvm -mKu -mKu -mKu -mKu -oSJ -oSJ -eAn +fxl +ldG +rpU +uov +uov +uov +uov +tCa +uov +uov +uov +uov +uov +tCa +uov +uov +uov +uov +rpU +rpU +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -123791,12 +123791,12 @@ bdH aaa aaa uMc -ubQ -geK -eCG -isq -ubo -jdP +los +qGR +jYW +goZ +fMz +msu xVk xVk xVk @@ -123804,21 +123804,21 @@ xVk xVk xVk xVk -cIg -xJd -oOD -ltM -skU +orw +bCT +jil +jhf +gom eky eky eky eky eky -oOD -ltM -skU -xJd -wIW +jil +jhf +gom +bCT +qsS xVk xVk xVk @@ -123826,12 +123826,12 @@ xVk xVk xVk xVk -gVK -fjZ -saQ -rvH -gwj -vxU +tDi +tuY +cca +gvn +oCn +hXi pql bdH bdH @@ -123898,35 +123898,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -wfy -oSJ -kze -thk -mKu -sKr -sdk -qGt -uvv -sra -uvv -qGt -fzF -sKr -mKu -thk -pMl -wfy -wfy -eAn +fxl +ldG +rpU +hpW +koq +uov +rUc +fQa +eng +dvP +uiO +dvP +eng +mmu +rUc +uov +koq +sJR +ldG +ldG +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -123995,11 +123995,11 @@ aaa aaa cuC cuC -iqP -oXv -rIX +mMn +naT +kBV cuC -fKK +ezf xVk xVk xVk @@ -124007,10 +124007,10 @@ xVk xVk xVk xVk -vLd +gfh aPw aHe -jHZ +jkv eky eky atg @@ -124018,10 +124018,10 @@ aBE ouB eky eky -sUw +hyM aHe aPw -vLd +gfh xVk xVk xVk @@ -124029,11 +124029,11 @@ xVk xVk xVk xVk -sfj +xwZ bYn -ueO -svW -kTT +mYP +qsi +urS bYn bYn bdH @@ -124101,35 +124101,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -wfy -wfy -wfy -wfy -mKu -sKr -eyS -wZh -wZh -wZh -wZh -wZh -nyF -sKr -mKu -cSb -wfy -wfy -wfy -eAn +fxl +ldG +ldG +ldG +ldG +uov +rUc +wri +dRW +dRW +dRW +dRW +dRW +ort +rUc +uov +pBA +ldG +ldG +ldG +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -124210,21 +124210,21 @@ xVk xVk xVk xVk -oZE +dJq jbq -xei -vuH +mRa +cYS eky eky -tTK -hbn -jpe +nJZ +sGD +fAI eky eky -gmX -xei +eML +mRa jbq -mSj +pdc xVk xVk xVk @@ -124262,27 +124262,27 @@ bdH bdH bdH bdH -ish -ish -ish -ish -ish -ish -ish -ish -bnC -bnC -bnC -bnC -bnC -bnC -bnC -bnC -bnC -bnC -bnC -bnC -bnC +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +mNE +mNE +mNE +mNE +mNE +mNE +mNE +mNE +mNE +mNE +mNE +mNE +mNE bdH bdH bdH @@ -124304,35 +124304,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag -eAn -eAn -wLE -tNt -tNt -mKu -rfw -xVu -jwd -vUX -gUk -vUX -loD -xVu -udm -mKu -hDd -oSJ -rcU -eAn -eAn +fxl +fxl +muV +sKQ +sKQ +uov +lvC +ouP +dxV +cJx +uUj +cJx +krR +ouP +kWN +uov +cVB +rpU +dTS +fxl +fxl aag aag aag -mSj +pdc aaa aaa aaa @@ -124413,21 +124413,21 @@ xVk xVk xVk xVk -oZE +dJq jbq -rjI -vuH +rCx +cYS eky eky -jtz -vUE +oVj +xHX sGh eky eky -gmX -rjI +eML +rCx jbq -mSj +pdc xVk xVk xVk @@ -124465,27 +124465,27 @@ bdH bdH bdH bdH -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL bdH bdH bdH @@ -124507,35 +124507,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag aag -eAn -wfy -oSJ -eLt -mKu -mKu -mKu -mKu -mKu -mKu -mKu -mKu -mKu -mKu -mKu -wfy -wfy -wfy -eAn +fxl +ldG +rpU +nrp +uov +uov +uov +uov +uov +uov +uov +uov +uov +uov +uov +ldG +ldG +ldG +fxl aag aag aag aag -mSj +pdc aaa aaa aaa @@ -124616,21 +124616,21 @@ xVk xVk xVk xVk -oZE +dJq aPw -xac -tIR -xBK +pLY +cLa +mcg eky -vKp -eJH -nJz +pZh +hUh +vTC eky -jVY -hgj -xac +vPo +ofI +pLY aPw -mSj +pdc xVk xVk xVk @@ -124668,27 +124668,27 @@ bdH bdH bdH bdH -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL bdH bdH bdH @@ -124710,35 +124710,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag aag -eAn -wfy -oSJ -wfy -oSJ -pxC -wfy -pij -oSJ -oSJ -oSJ -pij -wfy -bJc -oSJ -oSJ -oSJ -wfy -eAn +fxl +ldG +rpU +ldG +rpU +rqp +ldG +cKD +rpU +rpU +rpU +cKD +ldG +wET +rpU +rpU +rpU +ldG +fxl aag aag aag aag -mSj +pdc aaa aaa aaa @@ -124819,21 +124819,21 @@ xVk xVk xVk xVk -oZE +dJq aPw jbq aPw -boM +hRm eky atg aBE ouB eky -isM +fxs aPw jbq aPw -mSj +pdc xVk xVk xVk @@ -124865,33 +124865,33 @@ aab aaa aaa bdH -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -ish -ish -ish +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +pIL +pIL +pIL bdH bdH bdH @@ -124913,35 +124913,35 @@ aaa aaa aaa bdH -oZE +dJq aag aag aag aag -hrT -hrT -vfh -vfh -vfh -vfh -spD -vfh -vfh -vfh -vfh -vfh -spD -vfh -vfh -vfh -vfh -hrT -hrT +rhc +rhc +luD +luD +luD +luD +mwo +luD +luD +luD +luD +luD +mwo +luD +luD +luD +luD +rhc +rhc aag aag aag aag -mSj +pdc aaa aaa aaa @@ -125022,21 +125022,21 @@ xVk xVk xVk xVk -mEM -lnh +vQY +mwi aag jbq -eIT -ltM -ltM -ltM -ltM -ltM -osD +uBQ +jhf +jhf +jhf +jhf +jhf +cVc jbq aag -lnh -eJu +mwi +vcV xVk xVk xVk @@ -125068,33 +125068,33 @@ aab aaa aaa bdH -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -ish -hoZ -vUQ -gTJ -tXE -dgs -iNW -ieA -gTJ -vyZ -uvB -jdT -sWq -hoZ -ish -ish -ish +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +yka +mAl +kHW +krD +sGy +kNd +nTL +kHW +tom +kKU +xSG +hGe +yka +pIL +pIL +pIL bdH bdH bdH @@ -125116,35 +125116,35 @@ aaa aaa aaa bdH -mEM -lnh -lnh -lnh -lnh -hrT -hrT -vST -vST -olo -sRF -wSE -mEB -nUe -hgR -jjB -gbK -wSE -sRF -lLw -vST -vST -hrT -hrT -lnh -lnh -lnh -lnh -eJu +vQY +mwi +mwi +mwi +mwi +rhc +rhc +ixE +ixE +feG +uWa +ubB +rEH +xlK +xuz +vJL +jkp +ubB +uWa +nba +ixE +ixE +rhc +rhc +mwi +mwi +mwi +mwi +vcV aaa aaa aaa @@ -125227,7 +125227,7 @@ xVk xVk aaa aaa -oZE +dJq aPw aPw jbq @@ -125237,7 +125237,7 @@ jbq jbq aPw aPw -mSj +pdc aaa aaa xVk @@ -125271,33 +125271,33 @@ aab aaa aaa bdH -ish -ish -ish -ish -ish -ish -ish -ish -cYs -cYs -cYs -hoZ -dgK -kic -gTJ -peM -gTJ -dim -lRq -cPm -gJy -rUG -mzc -hoZ -ish -ish -ish +pIL +pIL +pIL +pIL +pIL +pIL +pIL +pIL +mwP +mwP +mwP +yka +ybB +pEN +kHW +unS +kHW +wcH +xpC +pIi +pis +soI +ujq +yka +pIL +pIL +pIL bdH bdH bdH @@ -125325,23 +125325,23 @@ aaa aaa aaa aaa -hrT -mze -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -dur -kxq -hrT +rhc +nmO +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +vKB +jaZ +rhc aaa aaa aaa @@ -125430,17 +125430,17 @@ xVk xVk aaa aaa -mEM -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -lnh -eJu +vQY +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +mwi +vcV aaa aaa xVk @@ -125473,34 +125473,34 @@ aaa aab aaa aaa -ish -ish -ish -ish -ish -hoZ -hoZ -hoZ -hoZ -hoZ +pIL +pIL +pIL +pIL +pIL +yka +yka +yka +yka +yka tte hvw -hkP -usj -tDg -wmo -agk -eYv -dim -iQb -aRe -pjx -qLZ -mzc -hoZ -ish -ish -ish +cYM +gvd +sYd +ybt +qSG +ygR +wcH +xWL +cKi +sxW +jAI +ujq +yka +pIL +pIL +pIL bdH bdH bdH @@ -125528,23 +125528,23 @@ aaa aaa aaa aaa -hrT -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -hrT +rhc +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +rhc aaa aaa aaa @@ -125676,34 +125676,34 @@ aaa aab aaa bdH -ish -ish -ish -ish -hoZ -hoZ -mSx -fVc -gyX -hoZ -hoZ +pIL +pIL +pIL +pIL +yka +yka +eID +nJb +dwy +yka +yka kfU -hoZ -ieA -ieA -uLl -nfV -oVZ -ieA -xWG -iUv -iUv -oHL -rSM -hoZ -ish -ish -ish +yka +nTL +nTL +hUr +oOR +mDQ +nTL +tug +qOA +qOA +xfs +soL +yka +pIL +pIL +pIL bdH bdH bdH @@ -125731,23 +125731,23 @@ aaa aaa aaa aaa -hrT -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -hrT +rhc +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +rhc aaa aaa aaa @@ -125879,35 +125879,35 @@ aaa aab aaa bdH -ish -ish -ish -hoZ -hoZ -xFS -fVh -dPT -iWg -kic -hoZ -hoZ -hoZ -nhW -ieA -ieA -hDE -ieA -hoZ -hoZ -hoZ -fUM -fUM -hoZ -hoZ -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +yka +arY +oJz +eRO +bnF +pEN +yka +yka +yka +xYq +nTL +nTL +kSS +nTL +yka +yka +yka +ter +ter +yka +yka +yka +pIL +pIL +pIL bdH bdH aak @@ -125934,23 +125934,23 @@ aaa aaa aaa aaa -hrT -tbu -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -wUC -hrT +rhc +mLm +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ykC +rhc aaa aaa aaa @@ -126082,35 +126082,35 @@ aaa aab aaa bdH -ish -ish -ish -hoZ -rEI -xTr -fUb -iWh -vrN -xTr -doW -rcY -cMx -xMH -gSR -ltN -ylD -eiu -ujU -wYz -yhD -gqS -gqS -pVS -pVS -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +oIH +hwo +myN +voT +nDN +hwo +fId +mBK +dyl +dnN +doO +jJw +iht +jGA +tuU +gbV +mtf +ijS +ijS +ybj +ybj +yka +pIL +pIL +pIL bdH bdH aak @@ -126137,23 +126137,23 @@ aaa aaa aaa aaa -hrT -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -hrT +rhc +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +rhc aaa aaa aaa @@ -126285,35 +126285,35 @@ aaa aab aaa bdH -ish -ish -ish -hoZ -toZ -bzv -gvI -aQO -bzv -bzv -bzv -oQz -gwG -kic -kHy -jCc -qfE -uVe -ujU -fOQ -mow -rLj -rLj -isl -bkW -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +nLD +dsG +qDO +hJl +dsG +dsG +dsG +evu +rAM +pEN +xSp +tri +nWH +rIL +tuU +eqM +utq +fBn +fBn +gnM +oqr +yka +pIL +pIL +pIL bdH bdH aak @@ -126340,23 +126340,23 @@ aaa aaa aaa aaa -hrT -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -hrT +rhc +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +rhc aaa aaa aaa @@ -126488,35 +126488,35 @@ aaa aab aaa bdH -ish -ish -ish -hoZ -lBt -rot -cYi -mEe -aLD -rot -wtb -dAu -lqB -xzq -tuW -aVe -phd -gqy -ujU -pkx -kTz -tVy -tVy -lcv -ePE -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +hEI +uzQ +eGp +giP +ppK +uzQ +rQs +sYv +mMT +vIG +jjy +tEo +knZ +urc +tuU +oMq +lUS +lEZ +lEZ +wxN +jgi +yka +pIL +pIL +pIL bdH bdH aak @@ -126543,23 +126543,23 @@ aaa aaa aaa aaa -hrT -mze -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -vST -kxq -hrT +rhc +nmO +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +ixE +jaZ +rhc aaa aaa aaa @@ -126691,35 +126691,35 @@ aaa aab aaa bdH -ish -ish -ish -hoZ -hoZ -xFS -fVh -dPT -iWg -rcP -hoZ -hoZ -hoZ -ebh -ieA -ieA -dLd -ieA -hoZ -hoZ -hoZ -fUM -fUM -hoZ -hoZ -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +yka +arY +oJz +eRO +bnF +xse +yka +yka +yka +rPn +nTL +nTL +vDQ +nTL +yka +yka +yka +ter +ter +yka +yka +yka +pIL +pIL +pIL bdH bdH aak @@ -126746,23 +126746,23 @@ aaa aaa aaa aaa -hrT -vST -wvZ -vST -htu -vST -wvZ -vST -htu -vST -wvZ -vST -htu -vST -wvZ -vST -hrT +rhc +ixE +vsb +ixE +vnl +ixE +vsb +ixE +vnl +ixE +vsb +ixE +vnl +ixE +vsb +ixE +rhc aaa aaa aaa @@ -126894,34 +126894,34 @@ aaa aab aaa bdH -ish -ish -ish -ish -hoZ -hoZ -aEL -mQn -iwd -hoZ -hoZ -oIE -hoZ -ieA -ieA -lSa -nfV -jzJ -ieA -gTJ -iUv -iUv -wtk -iUv -hoZ -ish -ish -ish +pIL +pIL +pIL +pIL +yka +yka +hlg +rbU +rjM +yka +yka +nmP +yka +nTL +nTL +bRT +oOR +mjP +nTL +kHW +qOA +qOA +qwl +qOA +yka +pIL +pIL +pIL bdH bdH bdH @@ -126949,23 +126949,23 @@ aaa aaa aaa aaa -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT -hrT +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc +rhc aaa aaa aaa @@ -127097,34 +127097,34 @@ aaa aab aaa bdH -ish -ish -ish -ish -ish -hoZ -hoZ -hoZ -hoZ -hoZ +pIL +pIL +pIL +pIL +pIL +yka +yka +yka +yka +yka tte hvw -hkP -aWj -lOv -wmo -qkI -lia -gWX -nrh -gJy -cPm -egM -mzc -hoZ -ish -ish -ish +cYM +krf +oSN +ybt +nKb +bNK +wwd +gDb +pis +pIi +aGU +ujq +yka +pIL +pIL +pIL bdH bdH bdH @@ -127301,33 +127301,33 @@ aab aaa bdH bdH -ish -ish -ish -hoZ -hoZ -hoZ -hoZ -hoZ -cYs -cYs -cYs -hoZ -dgK -wrr -gTJ -nzh -gTJ -gWX -qCv -pjx -aRe -diB -mzc -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +yka +yka +yka +yka +mwP +mwP +mwP +yka +ybB +iHm +kHW +jjY +kHW +wwd +tRZ +sxW +cKi +rQa +ujq +yka +pIL +pIL +pIL bdH bdH bdH @@ -127504,33 +127504,33 @@ aab aaa bdH bdH -ish -ish -ish -hoZ -mfl -mfl -mfl -ieA -hoZ -jwu -veQ -hoZ -bwG -aja -iPc -gQu -mhC -ieA -sDV -iUv -iUv -aXX -pMF -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +eQP +eQP +eQP +nTL +yka +iiu +mEg +yka +tyV +cdD +jME +qGm +lsT +nTL +uAm +qOA +qOA +fXT +sBK +yka +pIL +pIL +pIL bdH bdH bdH @@ -127707,33 +127707,33 @@ aab aaa aaa bdH -ish -ish -ish -hoZ -mfl -aPR -mfl -ieA -gkC -eLb -eLb -hoZ -ieA -kDV -ieA -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -ish -ish -ish +pIL +pIL +pIL +yka +eQP +mbG +eQP +nTL +fYh +ouK +ouK +yka +nTL +nOf +nTL +yka +yka +yka +yka +yka +yka +yka +yka +yka +pIL +pIL +pIL bdH bdH bdH @@ -127913,30 +127913,30 @@ bdH bdH bdH bdH -kKV -mfl -gTJ -mfl -ieA -gkC -aPR -gTJ -ieA -gxN -aja -gTJ -hoZ -hoZ -hoZ -hoZ -hoZ -ish -ish -ish -ish -ish -ish -ish +jiv +eQP +kHW +eQP +nTL +fYh +mbG +kHW +nTL +fJo +cdD +kHW +yka +yka +yka +yka +yka +pIL +pIL +pIL +pIL +pIL +pIL +pIL bdH bdH bdH @@ -128116,30 +128116,30 @@ aaa bdH bdH bdH -oQS -nxT -aPR -mfl -ieA -gkC -gTJ -kqB -xvR -wmo -qkI -mow -mMq -qpF -qpF -jfs -hoZ -ish -ish -ish -ish -ish -ish -ish +oPq +hBA +mbG +eQP +nTL +fYh +kHW +ydm +knS +ybt +nKb +utq +maH +vFV +vFV +rhX +yka +pIL +pIL +pIL +pIL +pIL +pIL +pIL bdH bdH bdH @@ -128319,30 +128319,30 @@ aaa bdH bdH bdH -nIB -dgr -iZr -gTJ -dGQ -gTJ -gTJ -jde -jqt -gTJ -gTJ -llf -kIb -uLa -rfx -jfs -hoZ -ish -ish -ish -ish -ish -ish -ish +ttu +pZc +ebF +kHW +iAS +kHW +kHW +tQq +fGw +kHW +kHW +mTf +twF +hSa +nCh +rhX +yka +pIL +pIL +pIL +pIL +pIL +pIL +pIL bdH bdH bdH @@ -128522,30 +128522,30 @@ bdH bdH bdH bdH -uWw -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -ish -ish -ish -ish -ish -ish -ish +dXP +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +yka +pIL +pIL +pIL +pIL +pIL +pIL +pIL bdH bdH bdH diff --git a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm index 9a8fa63a5e..89a6705084 100644 --- a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm +++ b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm @@ -1,15 +1,18 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"aaa" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"ab" = ( -/turf/open/floor/asteroidfloor/north, +"aab" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"ac" = ( +"aac" = ( /turf/closed/wall/strata_ice/jungle, /area/whiskey_outpost/outside/south) -"ad" = ( +"aad" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, @@ -17,15 +20,25 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"ae" = ( +"aae" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"ag" = ( +"aaf" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/shuttle/black, +/area/whiskey_outpost/outside/lane/four_north) +"aag" = ( /obj/structure/machinery/door/poddoor{ desc = "A podlock that leads to the main Marine base on LV-624. It requires power from the outpost to stay shut. Better not let anything get through this..."; id = "tunnel3"; @@ -34,7 +47,7 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"ah" = ( +"aah" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; icon_state = "warning_s" @@ -45,17 +58,21 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"ai" = ( +"aai" = ( /obj/structure/machinery/cm_vending/clothing/synth/snowflake, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"aj" = ( +"aaj" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"ak" = ( +"aak" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/cic) -"am" = ( +"aal" = ( +/obj/item/storage/box/m94, +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/whiskey_outpost/outside/lane/four_north) +"aam" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -69,18 +86,24 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"an" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +"aan" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, /area/whiskey_outpost/outside/lane/four_north) -"ao" = ( +"aao" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"ap" = ( +"aap" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/healthanalyzer, /obj/structure/machinery/light/small{ @@ -89,15 +112,23 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"aq" = ( +"aaq" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"as" = ( +"aar" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital/triage) +"aas" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, @@ -109,43 +140,86 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"at" = ( +"aat" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/kitchen/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/living) -"au" = ( +"aau" = ( /obj/structure/closet/secure_closet/commander, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"av" = ( +"aav" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light/small, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/whiskey_outpost/inside/hospital/triage) +"aaw" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) -"ax" = ( +"aax" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/fancy/cigar, /obj/item/tool/lighter/zippo, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"ay" = ( +"aay" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"aA" = ( +"aaz" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/northwest) +"aaA" = ( /mob/living/simple_animal/corgi{ name = "\improper Mr. Wiggles Sir" }, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"aC" = ( -/turf/open/floor/almayer/cargo, +"aaB" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/machete, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aaC" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, /area/whiskey_outpost/inside/cic) -"aE" = ( +"aaD" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/asteroidwarning/northwest, +/area/whiskey_outpost/outside/north/platform) +"aaE" = ( /obj/structure/bed, /obj/item/bedsheet/hop, /obj/structure/machinery/light/small{ @@ -153,26 +227,33 @@ }, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"aF" = ( +"aaF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whitegreen/west, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"aG" = ( +"aaG" = ( /obj/structure/curtain/black, /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"aH" = ( +"aaH" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"aI" = ( +"aaI" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"aJ" = ( +"aaJ" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -186,28 +267,38 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"aK" = ( +"aaK" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_south) -"aM" = ( +"aaL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aaM" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 10 }, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"aN" = ( +"aaN" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"aO" = ( +"aaO" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"aP" = ( +"aaP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/mre_pack/meal5{ desc = "How long has this been sitting here?"; @@ -218,45 +309,91 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"aQ" = ( +"aaQ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Commander's Storage"; req_access_txt = "19"; req_one_access = null }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"aS" = ( +"aaR" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/gm/dirt, +/area/whiskey_outpost/inside/caves/tunnel) +"aaS" = ( /obj/structure/machinery/optable, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"aV" = ( -/turf/open/floor/whitegreen/southwest, +"aaT" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aaU" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/whiskey_outpost/inside/supply) +"aaV" = ( +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"aW" = ( +"aaW" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison/kitchen/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/living) -"aZ" = ( +"aaX" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/beach) +"aaY" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aaZ" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south) -"ba" = ( +"aba" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"bb" = ( -/turf/open/floor/whitegreen/northwest, +"abb" = ( +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"bc" = ( +"abc" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_north) -"bd" = ( +"abd" = ( /obj/effect/decal/medical_decals{ dir = 8; icon_state = "docstripingdir" @@ -272,129 +409,281 @@ pixel_x = 30; req_access = null }, -/turf/open/floor/whitegreen/east, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"be" = ( +"abe" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"bf" = ( -/turf/open/floor/whitegreen/north, +"abf" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"bh" = ( +"abg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"abh" = ( /obj/structure/sign/poster, /turf/closed/wall, /area/whiskey_outpost/outside/south/far) -"bi" = ( +"abi" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"bj" = ( +"abj" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/north/northwest) -"bl" = ( +"abk" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/effect/landmark/start/whiskey/maint, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"abl" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_north) -"bm" = ( +"abm" = ( /obj/effect/landmark/ert_spawns/distress_wo, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"bo" = ( -/turf/open/gm/dirt/desert0, +"abn" = ( +/obj/structure/machinery/autodoc_console, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital) +"abo" = ( +/turf/open/gm/dirt{ + icon_state = "desert0" + }, /area/whiskey_outpost/outside/lane/two_south) -"bp" = ( +"abp" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"bs" = ( +"abq" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"abr" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"abs" = ( /turf/open/floor/carpet, /area/whiskey_outpost/inside/cic) -"bt" = ( +"abt" = ( /obj/structure/closet/crate, /obj/item/storage/backpack/marine, /obj/item/storage/backpack/marine, /obj/item/storage/backpack/industrial, /obj/item/storage/backpack/industrial, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"bu" = ( +"abu" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"bw" = ( +"abv" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"abw" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"bx" = ( +"abx" = ( /obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aby" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"bz" = ( +"abz" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"bA" = ( +"abA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"bB" = ( +"abB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"bC" = ( +"abC" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"bD" = ( +"abD" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/three_south) -"bF" = ( +"abE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/living) +"abF" = ( /obj/structure/disposalpipe/segment, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) -"bG" = ( -/turf/open/floor/prison/kitchen/southwest, +"abG" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/living) -"bK" = ( +"abH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/marine/delta{ + dir = 1; + name = "\improper Pillbox Tequila"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"abI" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/supply) +"abJ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"abK" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"bL" = ( +"abL" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"bN" = ( +"abM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "11" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"abN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"bP" = ( +"abO" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "WOline1" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost) +"abP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"bQ" = ( +"abQ" = ( /obj/structure/curtain, /obj/structure/window/reinforced{ dir = 1 @@ -402,34 +691,37 @@ /obj/structure/window/reinforced, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"bR" = ( +"abR" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"bS" = ( +"abS" = ( /obj/structure/largecrate/supply/explosives/mortar_flare, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"bT" = ( +"abT" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/carpet, /area/whiskey_outpost/inside/cic) -"bU" = ( +"abU" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"bV" = ( +"abV" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"bW" = ( +"abW" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"bY" = ( +"abX" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"abY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; @@ -448,9 +740,15 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"ca" = ( +"abZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north) +"aca" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; @@ -468,126 +766,210 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"cb" = ( +"acb" = ( /obj/structure/machinery/shower{ dir = 8; layer = 3.3 }, -/turf/open/floor/prison/kitchen/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/living) -"ce" = ( +"acc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"acd" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + name = "\improper Supply Depo"; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"ace" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/very_far) -"cg" = ( +"acf" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/two_south) +"acg" = ( /obj/structure/machinery/washing_machine, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ch" = ( +"ach" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/inside/caves/caverns/west) -"cl" = ( +"aci" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"acj" = ( +/obj/structure/machinery/optable, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital/triage) +"ack" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/medical_supply_link, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"acl" = ( /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"cm" = ( +"acm" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/washing_machine, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"cn" = ( +"acn" = ( /obj/effect/landmark/start/whiskey/leader, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"co" = ( +"aco" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/cell_stripe/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"cp" = ( +"acp" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green, /obj/item/device/binoculars, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"cq" = ( +"acq" = ( /obj/structure/filingcabinet, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"cr" = ( +"acr" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/cic) -"cs" = ( +"acs" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ct" = ( +"act" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"cu" = ( +"acu" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"cw" = ( +"acv" = ( +/obj/structure/machinery/floodlight{ + light_on = 1 + }, +/turf/open/floor/plating/asteroidwarning/southeast, +/area/whiskey_outpost/outside/north/platform) +"acw" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south) -"cx" = ( +"acx" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"cy" = ( +"acy" = ( /obj/structure/largecrate/supply/supplies/mre, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/living) -"cz" = ( +"acz" = ( /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"cA" = ( +"acA" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, /obj/item/stool, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_south) -"cB" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/engineering) -"cC" = ( +"acB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/folder/black_random, +/obj/structure/machinery/computer/overwatch/almayer{ + layer = 3.2; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"acC" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"cD" = ( +"acD" = ( /obj/structure/closet/secure_closet/bar{ name = "Success Cabinet"; req_access_txt = "1" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"cE" = ( +"acE" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/structure/sink{ pixel_y = 32 @@ -595,22 +977,32 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/cic) -"cF" = ( +"acF" = ( /obj/structure/mirror{ pixel_y = 30 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/cic) -"cG" = ( +"acG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" }, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"cI" = ( +"acH" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital/triage) +"acI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible/booze, /obj/item/ammo_magazine/rifle/m41aMK1, @@ -619,87 +1011,126 @@ /obj/item/weapon/gun/rifle/m41aMK1, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"cJ" = ( +"acJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/card{ dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"cL" = ( +"acK" = ( +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"acL" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin, /obj/item/tool/pen, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"cM" = ( +"acM" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/emails, /obj/structure/machinery/light/small, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"cO" = ( +"acN" = ( +/obj/item/lightstick/red/planted, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/one_north) +"acO" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"cP" = ( +"acP" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"cQ" = ( +"acQ" = ( /obj/structure/machinery/optable, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"cR" = ( +"acR" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/inside/caves/caverns/east) -"cS" = ( +"acS" = ( /obj/structure/curtain/black{ name = "Reporter's Bunk" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"cT" = ( +"acT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreencorner, +/turf/open/floor{ + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital) -"cX" = ( +"acU" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/north) +"acV" = ( +/turf/open/floor/plating/warnplate/west, +/area/whiskey_outpost/outside/north/northeast) +"acW" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/whiskey_outpost/outside/north/platform) +"acX" = ( /obj/structure/machinery/optable, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"cY" = ( +"acY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) -"cZ" = ( +"acZ" = ( /obj/structure/bed/chair, /obj/effect/landmark/start/whiskey/marine, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"da" = ( +"ada" = ( /obj/structure/machinery/optable, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital/triage) -"dc" = ( +"adb" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"adc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/living) -"dd" = ( +"add" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/south/very_far) -"de" = ( +"ade" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_north) -"df" = ( +"adf" = ( /obj/structure/mirror{ pixel_x = -32 }, @@ -709,34 +1140,61 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"dg" = ( +"adg" = ( /obj/structure/sign/poster, /turf/closed/wall/rock/brown, /area/whiskey_outpost/outside/mortar_pit) -"dh" = ( +"adh" = ( /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"dj" = ( +"adi" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"adj" = ( /obj/structure/closet/crate/trashcart, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/two_south) -"dk" = ( +"adk" = ( /obj/structure/curtain, /obj/structure/window/reinforced, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"dl" = ( +"adl" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/hospital) -"dp" = ( +"adm" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/outside/lane/three_north) +"adn" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/whiskey_outpost/outside/north/northeast) +"ado" = ( +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 8; + icon_state = "towergun" + }, +/turf/open/floor/plating/warnplate/west, +/area/whiskey_outpost/outside/north/beach) +"adp" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"dr" = ( +"adq" = ( +/obj/effect/landmark/start/whiskey/engineer, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"adr" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -750,50 +1208,91 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"ds" = ( +"ads" = ( /obj/structure/machinery/door/window/westright{ dir = 4 }, /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/cic) -"du" = ( -/turf/open/floor/prison/cell_stripe/west, +"adt" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4; + icon_state = "shuttle_chair" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"adu" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"dv" = ( +"adv" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/south/far) -"dx" = ( +"adw" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/item/weapon/gun/rifle/lmg, +/obj/item/weapon/gun/rifle/lmg, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"adx" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"dz" = ( +"ady" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/overwatch/almayer{ + layer = 3.2; + pixel_y = 20 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/device/whistle, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"adz" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/cic) -"dA" = ( +"adA" = ( /obj/structure/surface/table, /obj/item/facepaint/brown, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"dB" = ( +"adB" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, /area/whiskey_outpost/inside/caves/caverns/west) -"dD" = ( +"adC" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"adD" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"dE" = ( +"adE" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -807,9 +1306,11 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"dF" = ( +"adF" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; name = "\improper Commander's Quarters"; @@ -817,32 +1318,73 @@ }, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"dH" = ( +"adG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"adH" = ( /obj/structure/barricade/metal/wired, /obj/structure/machinery/m56d_hmg/mg_turret, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"dJ" = ( +"adI" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/structure/machinery/light/small, +/obj/effect/landmark/start/whiskey/maint, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"adJ" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison/sterile_white, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"adK" = ( +/obj/structure/barricade/metal/wired, +/obj/structure/machinery/m56d_hmg/mg_turret, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"dM" = ( +"adL" = ( +/obj/structure/machinery/conveyor_switch{ + id = "crate" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowcorners2, +/area/whiskey_outpost/inside/supply) +"adM" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin12" }, /area/whiskey_outpost/outside/lane/four_north) -"dN" = ( +"adN" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"dO" = ( +"adO" = ( /obj/structure/safe, /obj/item/moneybag, /obj/item/clothing/glasses/monocle, /obj/item/weapon/telebaton, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"dP" = ( +"adP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/beakers{ pixel_x = 5; @@ -853,9 +1395,12 @@ /obj/item/storage/box/gloves, /obj/item/tool/hand_labeler, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"dQ" = ( +"adQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/masks, /obj/item/storage/box/masks, @@ -873,9 +1418,16 @@ /obj/item/device/defibrillator, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"dS" = ( +"adR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"adS" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; @@ -884,7 +1436,7 @@ }, /turf/open/floor/plating, /area/whiskey_outpost/inside/supply) -"dT" = ( +"adT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/reagent_scanner, /obj/item/device/healthanalyzer, @@ -894,19 +1446,37 @@ /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"dU" = ( +"adU" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/landmark/late_join, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"dW" = ( -/turf/open/floor/plating/platebot, +"adV" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"adW" = ( +/turf/open/floor/plating{ + icon_state = "platebot" + }, /area/whiskey_outpost/outside/lane/one_north) -"dY" = ( +"adX" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/machete, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"adY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/pillbottles{ pixel_x = 3; @@ -927,33 +1497,64 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"ea" = ( +"adZ" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aea" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"eb" = ( +"aeb" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"ed" = ( -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) -"ee" = ( -/turf/open/floor/almayer/red/southwest, +"aec" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta{ + dir = 1; + name = "\improper Pillbox Tequila"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aed" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/outside/north/platform) +"aee" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, /area/whiskey_outpost/inside/cic) -"eg" = ( +"aef" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/four_south) +"aeg" = ( /obj/structure/sign/safety/medical{ name = "\improper Triage Center" }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital/triage) -"ei" = ( +"aeh" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aei" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/syringes, /obj/item/reagent_container/dropper, @@ -962,109 +1563,200 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"ej" = ( +"aej" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/four_south) -"ek" = ( +"aek" = ( /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"eo" = ( +"ael" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/guns/common/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aem" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital) +"aen" = ( +/turf/open/floor/plating/platebot, +/area/whiskey_outpost/outside/lane/one_north) +"aeo" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/lane/four_south) -"ep" = ( +"aep" = ( /turf/open/gm/grass/gbcorner/north_west, /area/whiskey_outpost/outside/lane/one_south) -"eq" = ( -/obj/structure/machinery/power/apc/almayer/north, +"aeq" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"es" = ( +"aer" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aes" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 4 }, /turf/open/jungle, /area/whiskey_outpost/outside/south/far) -"et" = ( +"aet" = ( /obj/structure/filingcabinet, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"eu" = ( +"aeu" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Cafeteria" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ev" = ( -/obj/structure/machinery/power/apc/almayer/north, +"aev" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ex" = ( +"aew" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/northwest) +"aex" = ( /obj/structure/machinery/computer/groundside_operations{ pixel_y = -8 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/cic) -"ey" = ( +"aey" = ( /obj/effect/landmark/late_join, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"eB" = ( +"aez" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/platform) +"aeA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/beach) +"aeB" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost/outside/lane/three_north) -"eC" = ( +"aeC" = ( /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"eD" = ( +"aeD" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital/triage) -"eF" = ( -/obj/structure/machinery/power/apc/almayer/north, +"aeE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Hospital"; + req_one_access = null + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aeF" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"eG" = ( +"aeG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/two_north) -"eH" = ( +"aeH" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/m56d, /obj/effect/landmark/wo_supplies/storage/m56d, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"eJ" = ( +"aeI" = ( +/obj/effect/landmark/start/whiskey/spec, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aeJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"eK" = ( +"aeK" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"eM" = ( +"aeL" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/supply/supplies/sandbags, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aeM" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"eN" = ( +"aeN" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"eO" = ( +"aeO" = ( /obj/structure/bed/stool, /obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"eP" = ( +"aeP" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -1073,15 +1765,21 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"eR" = ( +"aeQ" = ( +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aeR" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"eS" = ( -/turf/open/floor/whitegreen/southeast, +"aeS" = ( +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"eT" = ( +"aeT" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -1095,52 +1793,82 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"eU" = ( +"aeU" = ( /obj/structure/closet/crate, /obj/item/storage/toolbox/emergency, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"eW" = ( +"aeV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mre_pack/meal5{ + desc = "How long has this been sitting here?"; + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aeW" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 1 }, /obj/structure/largecrate/supply/ammo/sentry, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"eX" = ( +"aeX" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/landmark/late_join, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"eY" = ( +"aeY" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"eZ" = ( +"aeZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/curtain, -/turf/open/floor/whitegreen/east, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"fb" = ( +"afa" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"afb" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/three_north) -"fc" = ( +"afc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreen/east, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"fd" = ( +"afd" = ( /obj/effect/landmark/start/whiskey/leader, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"fe" = ( +"afe" = ( /obj/item/cell/high, /turf/open/floor/plating, /area/whiskey_outpost/outside/lane/four_north) -"ff" = ( +"aff" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = 32 }, @@ -1148,9 +1876,18 @@ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"fh" = ( +"afg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump{ + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"afh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/healthanalyzer, /obj/structure/machinery/light/small{ @@ -1159,33 +1896,122 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"fi" = ( +"afi" = ( /obj/structure/sign/safety/chem_lab, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital) -"fj" = ( +"afj" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"fl" = ( +"afk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/whiskey_outpost/inside/hospital) +"afl" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/sentry, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"fo" = ( +"afm" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/whiskey_outpost/outside/north/platform) +"afn" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/outside/lane/three_north) +"afo" = ( /obj/structure/curtain, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"fp" = ( +"afp" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, /obj/effect/landmark/wo_supplies/storage/belts/medical, /obj/effect/landmark/wo_supplies/storage/belts/medical, /obj/effect/landmark/wo_supplies/storage/belts/medical, -/turf/open/floor/whitegreen/west, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"fq" = ( +"afq" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, @@ -1194,105 +2020,191 @@ icon_state = "warning_s" }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"fr" = ( +"afr" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/living) -"ft" = ( +"afs" = ( +/obj/structure/machinery/sleep_console{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"aft" = ( /obj/structure/flora/pottedplant/random, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"fu" = ( -/turf/open/floor/plating/warnplate/southwest, +"afu" = ( +/turf/open/floor/plating{ + dir = 10; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"fv" = ( +"afv" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"fw" = ( +"afw" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"fx" = ( +"afx" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"fy" = ( +"afy" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"fA" = ( -/obj/effect/landmark/start/whiskey/executive, +"afz" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"afA" = ( +/obj/effect/landmark/start/whiskey/executive, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"fB" = ( +"afB" = ( /obj/structure/bed/chair/comfy, /obj/effect/landmark/start/whiskey/commander, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"fC" = ( +"afC" = ( /obj/structure/barricade/handrail{ dir = 1 }, /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"fE" = ( +"afD" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8; + icon_state = "shuttle_chair" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_south) +"afE" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"fF" = ( +"afF" = ( /obj/effect/landmark/start/whiskey/warrant, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"fG" = ( +"afG" = ( /obj/effect/landmark/start/whiskey/engineering, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"fH" = ( +"afH" = ( /obj/structure/machinery/door/airlock/almayer/medical{ name = "Hypersleep Room"; req_one_access_txt = "2;8;19" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"fI" = ( +"afI" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"fJ" = ( +"afJ" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_south) -"fL" = ( +"afK" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"afL" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"fN" = ( +"afM" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/whiskey_outpost/outside/north/platform) +"afN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/whitegreen/east, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"fQ" = ( +"afO" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"afP" = ( +/obj/effect/landmark/start/whiskey/leader, +/obj/structure/machinery/defenses/sentry/premade, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"afQ" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/south/far) -"fS" = ( +"afR" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) +"afS" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/two_north) -"fT" = ( +"afT" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -1306,47 +2218,78 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"fU" = ( +"afU" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/one_north) -"fV" = ( -/turf/open/floor/asteroidfloor/north, +"afV" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"fW" = ( +"afW" = ( /obj/structure/machinery/smartfridge/chemistry, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"fX" = ( +"afX" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"fY" = ( +"afY" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"fZ" = ( +"afZ" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"ga" = ( +"aga" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-y" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ge" = ( +"agb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/north/northwest) +"agc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"agd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"age" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopright" }, @@ -1354,17 +2297,40 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/whiskey_outpost/inside/hospital) +"agf" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/machinery/light/small, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) -"gh" = ( +"agg" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/obj/structure/machinery/disposal, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"agh" = ( /obj/effect/decal/medical_decals{ dir = 1; icon_state = "triagedecaldir" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"gi" = ( +"agi" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopleft" }, @@ -1372,31 +2338,57 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"gj" = ( +"agj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_north) -"gl" = ( +"agk" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"agl" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"gn" = ( +"agm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Disposals" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"agn" = ( /obj/item/stack/cable_coil/cut, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"go" = ( +"ago" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"gp" = ( +"agp" = ( /obj/structure/sign/prop1, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/cic) -"gr" = ( +"agq" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/platform) +"agr" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/south) -"gs" = ( +"ags" = ( /obj/structure/machinery/door/poddoor{ desc = "A podlock that leads to the main Marine base on LV-624. It requires power from the outpost to stay shut. Better not let anything get through this..."; id = "tunnel1"; @@ -1405,157 +2397,252 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"gt" = ( +"agt" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = 30; req_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"gu" = ( +"agu" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/two_north) -"gv" = ( +"agv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/inside/caves/caverns/west) -"gx" = ( +"agw" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"agx" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_north) -"gy" = ( +"agy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/lane/one_north) -"gz" = ( +"agz" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 4 }, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"gA" = ( +"agA" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"gC" = ( +"agB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/three_south) +"agC" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/map_item, /obj/item/folder/black_random, /obj/item/device/whistle, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"gE" = ( +"agD" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled{ + dir = 1 + }, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital/triage) +"agE" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/squad_changer{ dir = 1; layer = 2.99 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"gF" = ( +"agF" = ( /obj/structure/sign/poster{ serial_number = 33 }, /turf/closed/wall/rock/brown, /area/whiskey_outpost/inside/bunker/bunker/front) -"gG" = ( +"agG" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/four) -"gH" = ( +"agH" = ( /obj/item/storage/box/explosive_mines, -/turf/open/floor/plating/warnplate/north, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/lane/one_north) -"gI" = ( +"agI" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Chemistry Laboratory"; req_access_txt = "20"; req_one_access = null }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"gJ" = ( +"agJ" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"gL" = ( +"agK" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"agL" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"gM" = ( +"agM" = ( /obj/structure/largecrate/random, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"gN" = ( -/turf/open/floor/whitegreencorner/north, +"agN" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital) -"gO" = ( +"agO" = ( /obj/structure/machinery/conveyor_switch{ id = "crate" }, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/darkyellowcorners2, +/turf/open/floor/prison{ + icon_state = "darkyellowcorners2" + }, /area/whiskey_outpost/inside/supply) -"gP" = ( +"agP" = ( /obj/structure/machinery/door/airlock/almayer/medical{ dir = 2; name = "Operating Theatre"; req_one_access_txt = "2;8;19" }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/hospital) -"gS" = ( +"agQ" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"agR" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/two_north) +"agS" = ( /obj/structure/machinery/door/airlock/almayer/medical{ dir = 2; name = "Operating Theatre"; req_one_access_txt = "2;8;19" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"gT" = ( +"agT" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"gU" = ( +"agU" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"gV" = ( +"agV" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start/whiskey/bridge, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"gW" = ( +"agW" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ name = "radar computer" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"gZ" = ( +"agX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/whiskey_outpost/inside/hospital) +"agY" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"agZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hb" = ( +"aha" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"ahb" = ( /obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"hd" = ( +"ahc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/obj/structure/sign/nosmoking_2{ + dir = 1; + pixel_y = 28 + }, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital/triage) +"ahd" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"hf" = ( +"ahe" = ( +/turf/open/floor/whitegreencorner/east, +/area/whiskey_outpost/inside/hospital) +"ahf" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -1563,14 +2650,21 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital) -"hh" = ( +"ahg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) +"ahh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/inside/caves/caverns/west) -"hi" = ( +"ahi" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital) -"hj" = ( +"ahj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/overwatch/almayer{ layer = 3.2; @@ -1580,9 +2674,11 @@ dir = 8 }, /obj/item/clipboard, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"hk" = ( +"ahk" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 @@ -1590,14 +2686,17 @@ /obj/effect/landmark/start/whiskey/police, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"hl" = ( +"ahl" = ( /obj/effect/decal/medical_decals{ dir = 1; icon_state = "triagedecaldir" }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hm" = ( +"ahm" = ( /obj/structure/machinery/light/small{ dir = 1 }, @@ -1605,42 +2704,48 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hn" = ( +"ahn" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital) -"ho" = ( +"aho" = ( /obj/structure/bed/stool, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"hp" = ( +"ahp" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 10 }, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"hq" = ( +"ahq" = ( /obj/item/clothing/gloves/boxing/blue, /obj/item/clothing/gloves/boxing/yellow, /obj/structure/surface/rack, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"hr" = ( +"ahr" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal/deliveryChute{ dir = 1 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"hs" = ( +"ahs" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/lane/four_north) -"ht" = ( -/turf/open/floor/whitegreen/west, +"aht" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hu" = ( +"ahu" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/map_item, /obj/item/clipboard, @@ -1648,12 +2753,12 @@ /obj/item/device/binoculars, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"hv" = ( +"ahv" = ( /obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"hw" = ( +"ahw" = ( /obj/structure/bed/chair/office/dark{ dir = 8; layer = 3.25 @@ -1661,7 +2766,7 @@ /obj/effect/landmark/start/whiskey/police, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"hx" = ( +"ahx" = ( /obj/structure/machinery/body_scanconsole, /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" @@ -1674,13 +2779,16 @@ pixel_y = 28 }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hy" = ( +"ahy" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south/far) -"hz" = ( +"ahz" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopright" }, @@ -1688,9 +2796,12 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hA" = ( +"ahA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1702,7 +2813,7 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"hB" = ( +"ahB" = ( /obj/effect/decal/medical_decals{ dir = 1; icon_state = "triagedecaldir" @@ -1711,20 +2822,31 @@ dir = 4; sortType = "Chemistry" }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hC" = ( +"ahC" = ( /obj/structure/sign/prop1, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/caves/tunnel) -"hD" = ( +"ahD" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/iv_drip, /obj/structure/machinery/iv_drip, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/whitegreen/east, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hE" = ( +"ahE" = ( /obj/effect/decal/medical_decals{ dir = 1; icon_state = "triagedecaldir" @@ -1733,9 +2855,12 @@ dir = 4; sortType = "Hospital" }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hF" = ( +"ahF" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopleft" }, @@ -1743,31 +2868,37 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hH" = ( -/obj/structure/machinery/power/reactor/colony, +"ahG" = ( +/obj/item/storage/box/m56d_hmg, /turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/engineering) -"hI" = ( +/area/whiskey_outpost/inside/bunker/bunker/front) +"ahH" = ( +/turf/open/gm/dirt/desert0, +/area/whiskey_outpost/outside/lane/two_south) +"ahI" = ( /turf/open/gm/grass/gbcorner/south_west, /area/whiskey_outpost/outside/lane/one_north) -"hJ" = ( +"ahJ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor, /area/whiskey_outpost/outside/north/platform) -"hK" = ( +"ahK" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/one_north) -"hL" = ( +"ahL" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/inside/caves/caverns/west) -"hM" = ( +"ahM" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"hN" = ( +"ahN" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 }, @@ -1778,55 +2909,82 @@ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"hO" = ( +"ahO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/living) -"hQ" = ( -/turf/open/floor/prison/floor_plate, +"ahP" = ( +/turf/open/space/basic, +/area/whiskey_outpost/inside/caves) +"ahQ" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/living) -"hR" = ( +"ahR" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"hS" = ( -/turf/open/floor/plating/warnplate/east, +"ahS" = ( +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/lane/one_north) -"hT" = ( +"ahT" = ( /obj/structure/pipes/standard/tank/oxygen, /obj/structure/sign/safety/med_cryo{ pixel_x = -6; pixel_y = 32 }, +/turf/open/floor{ + icon_state = "white" + }, +/area/whiskey_outpost/inside/hospital/triage) +"ahU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"hV" = ( +"ahV" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"hW" = ( +"ahW" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"hX" = ( +"ahX" = ( /obj/structure/machinery/sleep_console{ dir = 1 }, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"hY" = ( +"ahY" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -1840,84 +2998,136 @@ /obj/structure/bed{ can_buckle = 0 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"hZ" = ( +"ahZ" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ib" = ( +"aia" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aib" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_south) -"if" = ( +"aic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aid" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/two_south) +"aie" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/guns/common/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aif" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/lane/four_south) -"ig" = ( +"aig" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"ih" = ( +"aih" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"ii" = ( +"aii" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Medical Storage"; req_access_txt = "20"; req_one_access = null }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"ij" = ( +"aij" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"ik" = ( +"aik" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"il" = ( +"ail" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"im" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/whitegreen/east, +"aim" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"in" = ( +"ain" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"io" = ( +"aio" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) -"ip" = ( +"aip" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/lane/four_north) -"iq" = ( +"aiq" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/living) -"is" = ( +"air" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/m4a3, +/obj/item/ammo_box/magazine/m44, +/obj/item/ammo_box/magazine/vp70, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"ais" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, /obj/structure/machinery/light/small{ @@ -1925,14 +3135,17 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"it" = ( +"ait" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"iu" = ( -/turf/open/floor/whitegreen/west, +"aiu" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"iv" = ( +"aiv" = ( /obj/structure/platform{ dir = 1 }, @@ -1942,16 +3155,36 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"iw" = ( -/turf/open/floor/plating/warnplate/northeast, +"aiw" = ( +/turf/open/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"iy" = ( +"aix" = ( +/obj/structure/flora/pottedplant/random, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/cic) +"aiy" = ( /obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison/darkyellow2, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"iz" = ( +"aiz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "\improper Medical Bay"; req_one_access_txt = "2;8;19" @@ -1960,19 +3193,23 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"iA" = ( +"aiA" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south) -"iB" = ( +"aiB" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "South-Eastern Platform" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"iC" = ( +"aiC" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -1980,24 +3217,55 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital) -"iD" = ( +"aiD" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"iF" = ( +"aiE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Generator Hatch" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aiF" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"iI" = ( -/obj/effect/landmark/start/whiskey/marine, +"aiG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck{ + desc = "A simple deck of playing cards. You could play Caravan with these!"; + pixel_y = 12 + }, +/obj/item/toy/deck/uno{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -2; + pixel_y = -2 + }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"iJ" = ( +"aiH" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"aiI" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aiJ" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link/green, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"iK" = ( +"aiK" = ( /obj/structure/machinery/door/poddoor{ desc = "A podlock that leads to the main Marine base on LV-624. It requires power from the outpost to stay shut. Better not let anything get through this..."; id = "tunnel2"; @@ -2006,7 +3274,7 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"iL" = ( +"aiL" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, @@ -2017,62 +3285,84 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"iM" = ( +"aiM" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"iN" = ( +"aiN" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link/green, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"iO" = ( +"aiO" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"iP" = ( +"aiP" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"iQ" = ( +"aiQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, /obj/item/device/binoculars, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"iR" = ( -/turf/open/floor/prison/cell_stripe/north, +"aiR" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"iS" = ( +"aiS" = ( /obj/effect/landmark/start/whiskey/police, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"iT" = ( +"aiT" = ( /obj/structure/machinery/prop/almayer/CICmap, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"iU" = ( +"aiU" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/almayer, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"iV" = ( +"aiV" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled{ dir = 1 }, /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"iY" = ( +"aiW" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"aiX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/three_south) +"aiY" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ dir = 4 @@ -2083,44 +3373,80 @@ }, /obj/item/tool/pen, /obj/item/paper_bin, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"iZ" = ( +"aiZ" = ( /obj/structure/machinery/autodoc_console, /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"jb" = ( +"aja" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/outside/lane/two_north) +"ajb" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; icon_state = "warning_s" }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"je" = ( +"ajc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"ajd" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/west, +/area/whiskey_outpost/outside/north/beach) +"aje" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 5 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"jf" = ( +"ajf" = ( /obj/effect/spawner/gibspawner/human, /obj/item/weapon/gun/pistol/m4a3, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"jg" = ( +"ajg" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile{ breakable = 0; indestructible = 1 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/very_far) -"ji" = ( +"ajh" = ( +/obj/effect/landmark/start/whiskey/engineering, +/turf/open/floor/plating/plating_catwalk/prison, +/area/whiskey_outpost/inside/engineering) +"aji" = ( /obj/structure/machinery/autodoc_console{ dir = 1 }, @@ -2129,9 +3455,12 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"jj" = ( +"ajj" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 1 }, @@ -2139,17 +3468,21 @@ dir = 1; icon_state = "docstripingdir" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"jk" = ( +"ajk" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, /obj/effect/decal/medical_decals{ dir = 8; icon_state = "docstripingdir" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"jl" = ( +"ajl" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -32 }, @@ -2157,18 +3490,22 @@ dir = 4; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"jm" = ( +"ajm" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"jn" = ( +"ajn" = ( /obj/structure/machinery/prop/almayer/CICmap, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"jo" = ( +"ajo" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 @@ -2176,13 +3513,13 @@ /obj/effect/landmark/start/whiskey/tank_crew, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"jp" = ( +"ajp" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/map_item, /obj/item/device/whistle, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"jq" = ( +"ajq" = ( /obj/structure/bed/chair/office/dark{ dir = 8; layer = 3.25 @@ -2190,7 +3527,14 @@ /obj/effect/landmark/start/whiskey/tank_crew, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"js" = ( +"ajr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"ajs" = ( /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, @@ -2204,47 +3548,92 @@ pixel_x = -30; req_access = null }, -/turf/open/floor/whitegreen/west, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"jt" = ( +"ajt" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/almayer/emerald/southeast, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "emerald" + }, /area/whiskey_outpost/inside/cic) -"ju" = ( +"aju" = ( /obj/item/toy/beach_ball/holoball, /obj/effect/decal/warning_stripes/asteroid{ dir = 8; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"jv" = ( +"ajv" = ( /obj/structure/surface/rack, /obj/structure/largecrate/supply/ammo/sentry, /obj/structure/largecrate/supply/ammo/m56d, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"jA" = ( +"ajw" = ( +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/northeast) +"ajx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1; + name = "\improper Pillbox Vodka"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"ajy" = ( +/obj/effect/landmark/start/whiskey/engineer, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"ajz" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"ajA" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"jB" = ( +"ajB" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/bunker/bunker/front) -"jD" = ( +"ajC" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/cell_stripe/west, +/area/whiskey_outpost/inside/bunker) +"ajD" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"jE" = ( +"ajE" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"jF" = ( +"ajF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ desc = "A simple deck of playing cards. You could play Caravan with these!"; @@ -2258,89 +3647,117 @@ pixel_x = -2; pixel_y = -2 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"jG" = ( +"ajG" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"jH" = ( -/turf/open/floor/whitegreen/east, +"ajH" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"jI" = ( +"ajI" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"jJ" = ( -/turf/open/floor/whitegreencorner/east, +"ajJ" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital) -"jL" = ( +"ajK" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/living) +"ajL" = ( /obj/structure/platform_decoration, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"jM" = ( -/turf/open/floor/prison/cell_stripe/north, +"ajM" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/living) -"jN" = ( +"ajN" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer/orange/northwest, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, /area/whiskey_outpost/inside/cic) -"jP" = ( +"ajO" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"ajP" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin11" }, /area/whiskey_outpost/outside/lane/four_north) -"jQ" = ( +"ajQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"jR" = ( +"ajR" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"jS" = ( +"ajS" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"jT" = ( +"ajT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"jU" = ( +"ajU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"jV" = ( +"ajV" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/two_north) -"jW" = ( +"ajW" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"jX" = ( +"ajX" = ( /obj/structure/surface/table, /obj/item/device/motiondetector, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"jY" = ( +"ajY" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ dir = 8 @@ -2350,67 +3767,98 @@ layer = 3.2; pixel_y = 20 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"jZ" = ( +"ajZ" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"ka" = ( +"aka" = ( /obj/structure/sign/poster{ serial_number = 34 }, /turf/closed/wall/rock/brown, /area/whiskey_outpost/inside/bunker/bunker/front) -"kb" = ( +"akb" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"ke" = ( +"akc" = ( +/obj/structure/largecrate/guns, +/turf/open/floor/plating/platebot, +/area/whiskey_outpost/outside/lane/one_north) +"akd" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"ake" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/far) -"kg" = ( +"akf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"akg" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; icon_state = "warning_s" }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"kh" = ( +"akh" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"kj" = ( +"aki" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/beach) +"akj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"kk" = ( +"akk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"kl" = ( +"akl" = ( /obj/effect/spawner/gibspawner/human, /obj/item/weapon/gun/rifle/m41a, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"km" = ( +"akm" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"kn" = ( +"akn" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/south) -"ko" = ( +"ako" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/one_north) -"kp" = ( +"akp" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/overwatch/almayer{ layer = 3.2; @@ -2420,53 +3868,100 @@ dir = 4 }, /obj/item/device/whistle, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"kq" = ( +"akq" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"ks" = ( +"akr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bunker" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aks" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"kt" = ( +"akt" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"kv" = ( +"aku" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"akv" = ( /obj/structure/bed/roller, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"kw" = ( +"akw" = ( /obj/effect/decal/medical_decals{ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"kx" = ( -/turf/open/floor/almayer/emeraldfull, +"akx" = ( +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"ky" = ( +"aky" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"kz" = ( +"akz" = ( /obj/structure/fence, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south/far) -"kA" = ( +"akA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/bodybags, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"kB" = ( +"akB" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/four_south) -"kC" = ( +"akC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/southleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "WOlineshutters2"; + name = "\improper Supply Depo Line 2" + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/supply) +"akD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/southleft{ req_one_access_txt = "2;21" @@ -2479,52 +3974,84 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) -"kE" = ( +"akE" = ( /obj/structure/machinery/computer/cryopod, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"kG" = ( +"akF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"akG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"kI" = ( +"akH" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"akI" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"kJ" = ( +"akJ" = ( /obj/structure/machinery/medical_pod/sleeper, /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"kK" = ( +"akK" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer/red/northwest, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, /area/whiskey_outpost/inside/cic) -"kM" = ( +"akL" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south) +"akM" = ( /obj/structure/machinery/sleep_console, /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/west, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"kN" = ( +"akN" = ( /obj/structure/machinery/iv_drip, /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"kO" = ( +"akO" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"kP" = ( +"akP" = ( /obj/structure/machinery/sleep_console{ dir = 1 }, @@ -2533,21 +4060,48 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/east, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"kQ" = ( +"akQ" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/south) -"kS" = ( +"akR" = ( +/obj/item/lightstick/red/planted, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south) +"akS" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"kV" = ( -/turf/open/jungle/impenetrable, +"akT" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/ammo/box/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"akU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/obj/structure/machinery/cryopod, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"akV" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south) -"kX" = ( +"akW" = ( +/turf/open/jungle/impenetrable/grass_clear, +/area/whiskey_outpost/outside/south/very_far) +"akX" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 1 }, @@ -2555,128 +4109,194 @@ dir = 8; icon_state = "docstripingdir" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"kY" = ( +"akY" = ( /obj/effect/landmark/start/whiskey/cmo, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"kZ" = ( -/turf/open/floor/prison/cell_stripe/west, +"akZ" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"la" = ( -/turf/open/floor/whitegreenfull, +"ala" = ( +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"lc" = ( +"alb" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"alc" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/north/northeast) -"ld" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +"ald" = ( +/turf/open/shuttle/dropship{ + icon_state = "floor8" + }, /area/whiskey_outpost/outside/lane/four_north) -"le" = ( +"ale" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave{ pixel_y = 5 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lf" = ( +"alf" = ( /turf/open/jungle, /area/whiskey_outpost/outside/south) -"lg" = ( +"alg" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/three_south) -"li" = ( +"alh" = ( +/obj/item/cell/high, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"ali" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, /obj/item/tool/crowbar, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"lj" = ( +"alj" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lk" = ( +"alk" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/south) -"lm" = ( -/turf/open/floor/prison/floor_plate, +"all" = ( +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 8; + icon_state = "towergun" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"alm" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"lo" = ( +"aln" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"alo" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"lp" = ( +"alp" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/very_far) -"lq" = ( -/turf/open/floor/prison/floor_marked/southwest, +"alq" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker) -"lr" = ( +"alr" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/police, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"ls" = ( +"als" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"lt" = ( +"alt" = ( /obj/structure/bed/roller, /obj/structure/disposalpipe/segment, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"lu" = ( +"alu" = ( /obj/structure/surface/table, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lv" = ( +"alv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, /obj/item/tool/extinguisher, /obj/item/device/binoculars, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"lw" = ( +"alw" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) -"lx" = ( +"alx" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"lA" = ( +"aly" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"alz" = ( +/obj/structure/fence, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south/far) +"alA" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost) -"lB" = ( +"alB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/facepaint/green, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"lC" = ( +"alC" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lD" = ( +"alD" = ( /obj/structure/surface/table, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lF" = ( +"alE" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"alF" = ( /obj/structure/surface/table, /obj/item/storage/box/uscm_mre{ pixel_x = 4; @@ -2688,7 +4308,7 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lG" = ( +"alG" = ( /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, @@ -2703,15 +4323,18 @@ pixel_x = -30; req_access = null }, -/turf/open/floor/whitegreen/west, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"lH" = ( +"alH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lI" = ( +"alI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Cafeteria" @@ -2721,7 +4344,7 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lJ" = ( +"alJ" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -2730,35 +4353,80 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lK" = ( +"alK" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"lO" = ( +"alL" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"alM" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital/triage) +"alN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"alO" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"lP" = ( +"alP" = ( /obj/structure/surface/table, /obj/item/facepaint/green, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"lS" = ( +"alQ" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"alR" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/beer_pack, +/obj/item/storage/beer_pack, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"alS" = ( /obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"lU" = ( +"alT" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"alU" = ( /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"lV" = ( +"alV" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin2" }, /area/whiskey_outpost/outside/lane/four_north) -"lW" = ( +"alW" = ( /obj/structure/flora/pottedplant/random, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; @@ -2768,123 +4436,205 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/cic) -"lX" = ( +"alX" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"lZ" = ( +"alY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/bunker) +"alZ" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/whiskey_outpost) -"ma" = ( +"ama" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"mc" = ( +"amb" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, +/area/whiskey_outpost/outside/south/very_far) +"amc" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/prison, /area/whiskey_outpost) -"md" = ( -/turf/open/floor/almayer/orangefull, +"amd" = ( +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"mf" = ( +"ame" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/whiskey_outpost/outside/north/beach) +"amf" = ( /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"mh" = ( +"amg" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/whiskey_outpost/outside/lane/four_north) +"amh" = ( /turf/open/floor/prison, /area/whiskey_outpost) -"mi" = ( -/turf/open/floor/prison/cell_stripe, +"ami" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/cic) -"mj" = ( +"amj" = ( /obj/effect/spawner/gibspawner/human, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_south) -"ml" = ( +"amk" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aml" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"mn" = ( +"amm" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"amn" = ( /obj/structure/surface/rack, /obj/item/storage/large_holster/machete/full, /obj/item/storage/large_holster/machete/full, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/three_south) -"mo" = ( +"amo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/cic) -"mp" = ( +"amp" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"mq" = ( +"amq" = ( /obj/item/clothing/shoes/jackboots, /obj/item/clothing/glasses/sunglasses, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"mr" = ( +"amr" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"mt" = ( +"ams" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"amt" = ( /obj/structure/sign/prop1, /turf/closed/wall, /area/whiskey_outpost/outside/south/far) -"mv" = ( +"amu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"amv" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/medical_decals{ dir = 1; icon_state = "docstripingdir" }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"mw" = ( +"amw" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/very_far) -"mx" = ( +"amx" = ( /obj/structure/flora/pottedplant/random, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/cic) -"my" = ( +"amy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/four_south) -"mz" = ( +"amz" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/cic) -"mA" = ( +"amA" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8; icon_state = "shuttle_chair" }, /obj/item/weapon/gun/rifle/lmg, /obj/item/weapon/gun/rifle/lmg, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"mC" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/prison, -/area/whiskey_outpost) -"mD" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/jungle/impenetrable, +"amB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -32 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4; + icon_state = "shuttle_chair" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"amC" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/prison, +/area/whiskey_outpost) +"amD" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/north) -"mE" = ( +"amE" = ( /obj/structure/machinery/autodoc_console{ dir = 1 }, @@ -2893,17 +4643,20 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"mF" = ( +"amF" = ( /obj/structure/surface/table, /obj/item/facepaint/sniper, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"mG" = ( +"amG" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost) -"mH" = ( +"amH" = ( /obj/structure/machinery/computer/overwatch/almayer{ dir = 8; layer = 3.2; @@ -2922,42 +4675,70 @@ /obj/item/device/whistle{ pixel_y = 14 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"mI" = ( +"amI" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"mJ" = ( +"amJ" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 }, /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"mL" = ( +"amK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/beach) +"amL" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"mM" = ( +"amM" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; name = "\improper Combat Information Center" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"mN" = ( +"amN" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"mQ" = ( +"amO" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"amP" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"amQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital) -"mR" = ( +"amR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, /obj/structure/machinery/light/small{ @@ -2965,32 +4746,48 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"mS" = ( +"amS" = ( /obj/structure/machinery/body_scanconsole, /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/structure/machinery/light/small, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"mT" = ( +"amT" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost/inside/caves) -"mU" = ( +"amU" = ( /obj/structure/machinery/conveyor{ dir = 8; id = "crate" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"mV" = ( +"amV" = ( /obj/structure/sign/poster{ serial_number = 7 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"mY" = ( +"amW" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"amX" = ( +/obj/structure/platform_decoration, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) +"amY" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, @@ -2999,65 +4796,93 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"mZ" = ( +"amZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost) -"na" = ( +"ana" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; pixel_x = 20 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"nb" = ( +"anb" = ( /obj/structure/machinery/autodoc_console, /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"nc" = ( +"anc" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"nd" = ( -/turf/open/floor/whitegreencorner/north, +"and" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital/triage) -"nf" = ( +"ane" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost) +"anf" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" }, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"ng" = ( +"ang" = ( /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/lane/four_south) -"nh" = ( +"anh" = ( /turf/closed/wall/strata_ice/jungle, /area/whiskey_outpost/outside/south/very_far) -"ni" = ( +"ani" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/medical_supply_link, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"nj" = ( +"anj" = ( /turf/open/gm/grass/gbcorner/south_west, /area/whiskey_outpost/outside/south) -"nk" = ( +"ank" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" @@ -3069,31 +4894,56 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"nn" = ( +"anl" = ( +/obj/item/stack/cable_coil, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"anm" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south/far) +"ann" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"no" = ( +"ano" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"np" = ( +"anp" = ( /obj/structure/sign/safety/medical{ name = "\improper Hospital" }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"nr" = ( +"anq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"anr" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) -"ns" = ( +"ans" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 }, @@ -3103,97 +4953,125 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"nt" = ( +"ant" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"nv" = ( -/turf/open/floor/prison/cell_stripe/north, +"anu" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"anv" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost) -"nw" = ( +"anw" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost) -"ny" = ( +"anx" = ( +/obj/structure/largecrate/supply/supplies/metal, +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"any" = ( /obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"nz" = ( +"anz" = ( /obj/structure/bed/chair, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"nA" = ( +"anA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "\improper Hospital"; req_one_access = null }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"nB" = ( +"anB" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"nC" = ( +"anC" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"nD" = ( +"anD" = ( /obj/structure/sign/poster{ serial_number = 7 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"nE" = ( +"anE" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle, /area/whiskey_outpost/outside/south/far) -"nF" = ( +"anF" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"nG" = ( +"anG" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"nH" = ( +"anH" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"nI" = ( +"anI" = ( /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost) -"nJ" = ( +"anJ" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"nK" = ( +"anK" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/engineering) -"nL" = ( +"anL" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/floor/prison, /area/whiskey_outpost) -"nM" = ( +"anM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost) -"nN" = ( +"anN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3201,322 +5079,632 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"nO" = ( +"anO" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/r_wall, /area/whiskey_outpost) -"nR" = ( +"anP" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south) +"anQ" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"anR" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/asteroidfloor/north, +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"nS" = ( +"anS" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"nV" = ( +"anT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) +"anU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bunker" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/living) +"anV" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Mortar Pit" }, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"nW" = ( +"anW" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison/cell_stripe/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"nY" = ( +"anX" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"anY" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/item/storage/belt/medical/lifesaver/full, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"oa" = ( -/turf/open/floor/almayer/bluefull, +"anZ" = ( +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/whiskey_outpost/outside/lane/four_north) +"aoa" = ( +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"ob" = ( +"aob" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"od" = ( +"aoc" = ( +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) +"aod" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison/sterile_white, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, /area/whiskey_outpost/inside/living) -"oe" = ( +"aoe" = ( /obj/structure/sign/safety/medical{ name = "\improper Hospital" }, /turf/closed/wall/r_wall, /area/whiskey_outpost) -"of" = ( -/turf/open/jungle/impenetrable, +"aof" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/four_south) -"oi" = ( +"aog" = ( +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital/triage) +"aoh" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aoi" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital/triage) -"om" = ( +"aoj" = ( +/obj/structure/machinery/door/window/northright, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"aok" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/platform) +"aol" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aom" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/three_south) -"oo" = ( +"aon" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/northwest) +"aoo" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"oq" = ( +"aop" = ( +/turf/open/floor/prison/darkyellow2, +/area/whiskey_outpost/inside/supply) +"aoq" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south) -"or" = ( +"aor" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/living) -"os" = ( +"aos" = ( /obj/structure/shuttle/engine/propulsion{ pixel_y = 24 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"ou" = ( +"aot" = ( +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aou" = ( /obj/structure/sign/prop3, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"ov" = ( +"aov" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/tool/hand_labeler, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"ow" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/asteroidfloor/north, +"aow" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/mortar_pit) -"ox" = ( +"aox" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/three_south) -"oy" = ( +"aoy" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"oz" = ( +"aoz" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"oB" = ( +"aoA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/mortar_pit) +"aoB" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"oC" = ( +"aoC" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"oD" = ( +"aoD" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/mortar_pit) -"oE" = ( +"aoE" = ( /obj/structure/largecrate/supply/explosives/mortar_he, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"oF" = ( +"aoF" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison/kitchen/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, /area/whiskey_outpost/inside/living) -"oG" = ( +"aoG" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; sortType = "CIC" }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost) -"oH" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost) +"aoH" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "11" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"oI" = ( +"aoI" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"oK" = ( +"aoJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aoK" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"oN" = ( +"aoL" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aoM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) +"aoN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"oO" = ( +"aoO" = ( /obj/structure/largecrate/supply/explosives/mortar_incend, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"oP" = ( +"aoP" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"oQ" = ( -/turf/open/floor/whitegreencorner, +"aoQ" = ( +/turf/open/floor{ + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital) -"oS" = ( +"aoR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aoS" = ( /obj/structure/curtain/black, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"oU" = ( +"aoT" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/blue/southeast, +/area/whiskey_outpost/inside/cic) +"aoU" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital) -"oW" = ( -/obj/effect/landmark/start/whiskey/medic, +"aoV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aoW" = ( +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"oX" = ( +"aoX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/cell_stripe/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"oY" = ( +"aoY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"pa" = ( +"aoZ" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/one_north) +"apa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/cell_stripe/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"pc" = ( +"apb" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"apc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"pe" = ( +"apd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/obj/structure/machinery/cryopod, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"ape" = ( /obj/effect/landmark/start/whiskey/pilot, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"pg" = ( +"apf" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/ammo/box/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"apg" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"pj" = ( +"aph" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"api" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"apj" = ( /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_south) -"pk" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/engineering) -"pm" = ( +"apk" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/m39, +/obj/item/ammo_box/magazine/m39, +/obj/item/ammo_box/magazine/m39/ext, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"apl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"apm" = ( /obj/effect/decal/cleanable/blood/writing, /obj/item/weapon/gun/pistol/m4a3, /obj/structure/window_frame/colony/reinforced, /obj/item/shard, /turf/open/floor/plating, /area/whiskey_outpost/outside/south/far) -"pn" = ( +"apn" = ( /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating/asteroidwarning/southeast, +/turf/open/floor/plating{ + dir = 6; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"pq" = ( +"apo" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital/triage) +"app" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital/triage) +"apq" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"ps" = ( +"apr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aps" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/engineering) -"pu" = ( +"apt" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"apu" = ( /turf/open/gm/coast/east, /area/whiskey_outpost/outside/lane/four_north) -"pv" = ( +"apv" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/east) -"pw" = ( +"apw" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"px" = ( +"apx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/mortar_pit) -"py" = ( +"apy" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"pz" = ( +"apz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Mortar Pit" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"pA" = ( +"apA" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"pD" = ( +"apB" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"apC" = ( +/obj/item/cell/high, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"apD" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/three_south) -"pE" = ( +"apE" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/mortar_pit) -"pF" = ( +"apF" = ( /obj/structure/machinery/light/small{ dir = 1 }, @@ -3530,43 +5718,57 @@ /obj/item/mortar_shell/he, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"pG" = ( +"apG" = ( /obj/structure/surface/table, /obj/item/facepaint/black, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"pH" = ( +"apH" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; sortType = "Engineering" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"pJ" = ( +"apI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"apJ" = ( /obj/structure/largecrate/supply/medicine/medkits, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"pK" = ( -/turf/open/floor/prison/floor_marked/southwest, +"apK" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"pL" = ( +"apL" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_south) -"pM" = ( +"apM" = ( /obj/structure/sign/prop2, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"pN" = ( +"apN" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"pO" = ( +"apO" = ( /obj/structure/bed, /obj/item/bedsheet/orange, /obj/item/toy/plush/farwa{ @@ -3575,14 +5777,21 @@ /obj/item/clothing/under/redpyjamas, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"pP" = ( +"apP" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"pR" = ( +"apQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/three_south) +"apR" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/incendiary, /obj/item/mortar_shell/incendiary, @@ -3593,18 +5802,46 @@ /obj/item/mortar_shell/incendiary, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"pT" = ( +"apS" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/supply) +"apT" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"pW" = ( +"apU" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital/triage) +"apV" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"apW" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/south/far) -"pX" = ( +"apX" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"pZ" = ( +"apY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/item/device/healthanalyzer, +/obj/item/weapon/gun/pill{ + pixel_y = 6 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"apZ" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/flare, /obj/item/mortar_shell/flare, @@ -3615,14 +5852,18 @@ /obj/item/mortar_shell/flare, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"qa" = ( +"aqa" = ( /obj/structure/sign/prop1, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"qb" = ( +"aqb" = ( /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"qd" = ( +"aqc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aqd" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, @@ -3638,25 +5879,34 @@ /obj/item/tool/hand_labeler, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"qe" = ( +"aqe" = ( /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, /obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, /area/whiskey_outpost/inside/cic) -"qf" = ( +"aqf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/living) -"qg" = ( +"aqg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) -"qi" = ( +"aqh" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south/far) +"aqi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"qj" = ( +"aqj" = ( /obj/item/storage/box/lights, /obj/item/storage/box/lights, /obj/item/storage/box/lights, @@ -3673,57 +5923,96 @@ /obj/item/tool/shovel/etool, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"qk" = ( +"aqk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 8; name = "\improper Storage" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"ql" = ( +"aql" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"qn" = ( +"aqm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/roller, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital/triage) +"aqn" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"qo" = ( +"aqo" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"qp" = ( +"aqp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"qq" = ( +"aqq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost) -"qs" = ( +"aqr" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aqs" = ( /obj/structure/machinery/light/small, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"qt" = ( +"aqt" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/lane/four_south) -"qu" = ( +"aqu" = ( /obj/structure/machinery/power/smes/buildable, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"qv" = ( +"aqv" = ( /turf/open/gm/coast/beachcorner/south_east, /area/whiskey_outpost/outside/lane/four_south) -"qw" = ( +"aqw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, @@ -3738,52 +6027,102 @@ }, /obj/item/roller/surgical, /obj/item/roller/surgical, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"qx" = ( +"aqx" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/recharge_station, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"qz" = ( +"aqy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aqz" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital) -"qB" = ( -/turf/open/floor/white, -/area/whiskey_outpost/inside/hospital) -"qC" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/engineering) -"qE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/floor_marked/southwest, +"aqA" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/belts/grenade, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aqB" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/whiskey_outpost/inside/hospital) +"aqC" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) +"aqD" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + sortType = "Engineering" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aqE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"qF" = ( +"aqF" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"qG" = ( +"aqG" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"qH" = ( +"aqH" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"qI" = ( +"aqI" = ( /obj/structure/barricade/metal/wired, /obj/item/ammo_casing{ icon_state = "cartridge_2_1"; layer = 2 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"qJ" = ( +"aqJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -3794,35 +6133,49 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"qK" = ( +"aqK" = ( /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"qL" = ( +"aqL" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"qM" = ( +"aqM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/cell_stripe/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"qN" = ( +"aqN" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"qO" = ( +"aqO" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" @@ -3834,15 +6187,27 @@ /obj/structure/machinery/defenses/sentry/premade{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"qP" = ( +"aqP" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/asteroidwarning/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost) -"qR" = ( +"aqQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aqR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3850,38 +6215,69 @@ /obj/item/device/motiondetector, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"qT" = ( +"aqS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/three_south) +"aqT" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost) -"qU" = ( -/turf/open/floor/asteroidfloor/north, +"aqU" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/mortar_pit) -"qW" = ( -/obj/structure/machinery/power/apc/almayer/east, +"aqV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/marine/bravo{ + dir = 1; + name = "\improper Pillbox Wine"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aqW" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"qX" = ( +"aqX" = ( /obj/structure/machinery/line_nexter{ dir = 1; id = "WOline2" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost) -"qY" = ( +"aqY" = ( /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/lane/one_south) -"ra" = ( -/obj/structure/machinery/power/apc/almayer/east, +"aqZ" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"ara" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"rb" = ( +"arb" = ( /obj/structure/sign/prop1, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) -"rc" = ( +"arc" = ( /obj/structure/machinery/light/small{ dir = 1 }, @@ -3891,98 +6287,167 @@ /obj/item/device/cotablet, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"re" = ( +"ard" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/northeast) +"are" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"rf" = ( +"arf" = ( /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"rg" = ( +"arg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"ri" = ( +"arh" = ( +/obj/structure/machinery/floodlight{ + light_on = 1 + }, +/turf/open/floor/plating/asteroidwarning/northeast, +/area/whiskey_outpost/outside/north/platform) +"ari" = ( /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"rj" = ( +"arj" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"rk" = ( +"ark" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"rl" = ( -/turf/open/floor/plating/warnplate/southeast, +"arl" = ( +/turf/open/floor/plating{ + dir = 6; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"rm" = ( +"arm" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/supply) -"rp" = ( +"arn" = ( +/obj/structure/machinery/conveyor_switch/oneway{ + id = "crate0" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/whiskey_outpost/inside/supply) +"aro" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "11" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"arp" = ( /turf/open/jungle, /area/whiskey_outpost/outside/north/northwest) -"rq" = ( -/obj/effect/landmark/start/whiskey/engineering, -/turf/open/floor/plating/plating_catwalk/prison, -/area/whiskey_outpost/inside/engineering) -"rs" = ( +"arq" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"arr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"ars" = ( /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"rt" = ( +"art" = ( /obj/structure/largecrate/guns, -/turf/open/floor/plating/warnplate/west, +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/lane/one_north) -"ru" = ( +"aru" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; req_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"rv" = ( +"arv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"rw" = ( +"arw" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/lane/two_north) -"ry" = ( +"arx" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "Eastern Entrance Pillbox" + }, +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/bunker) +"ary" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"rz" = ( +"arz" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost) -"rA" = ( +"arA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"rB" = ( +"arB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"rC" = ( -/turf/open/floor/almayer/redfull, +"arC" = ( +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"rD" = ( +"arD" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -3999,38 +6464,63 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"rE" = ( +"arE" = ( /obj/structure/machinery/light/small, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"rF" = ( +"arF" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"rG" = ( +"arG" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/cell_stripe/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"rI" = ( +"arH" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison, +/area/whiskey_outpost) +"arI" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"rJ" = ( +"arJ" = ( /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"rL" = ( +"arK" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"arL" = ( /obj/structure/disposalpipe/segment, /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/supply) -"rM" = ( +"arM" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 2; name = "\improper Supply Depo"; @@ -4038,20 +6528,29 @@ not_weldable = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"rN" = ( +"arN" = ( /obj/structure/mortar/wo, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"rO" = ( +"arO" = ( /obj/structure/largecrate/supply/explosives/mortar_flare, /obj/item/reagent_container/food/drinks/bottle/whiskey, /obj/item/reagent_container/food/drinks/bottle/whiskey, /obj/item/reagent_container/food/drinks/bottle/whiskey, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"rQ" = ( +"arP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"arQ" = ( /obj/structure/platform, /obj/structure/platform{ dir = 8 @@ -4061,52 +6560,81 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"rS" = ( +"arR" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) +"arS" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"rT" = ( +"arT" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_south) -"rV" = ( -/turf/open/floor/prison/floor_plate/southwest, +"arU" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "Eastern Platform" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"arV" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"rW" = ( +"arW" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"rX" = ( +"arX" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital/triage) -"rY" = ( +"arY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north) -"rZ" = ( +"arZ" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"sa" = ( +"asa" = ( /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"sb" = ( +"asb" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"sc" = ( +"asc" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/marine/charlie{ dir = 1; @@ -4114,15 +6642,32 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"se" = ( +"asd" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"ase" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Generator Hatch" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"sg" = ( +"asf" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"asg" = ( /obj/item/storage/box/lightstick, /obj/item/storage/box/lightstick, /obj/item/storage/box/lightstick, @@ -4147,44 +6692,60 @@ /obj/item/device/lightreplacer, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"sh" = ( +"ash" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/wo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"si" = ( +"asi" = ( /obj/effect/spawner/gibspawner/human, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"sk" = ( +"asj" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/whiskey_outpost/outside/north/northeast) +"ask" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"sl" = ( +"asl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"sm" = ( +"asm" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"sn" = ( +"asn" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/four) -"so" = ( +"aso" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/south/far) -"sp" = ( +"asp" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"sq" = ( +"asq" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "Engineering"; req_one_access_txt = "2;7" @@ -4192,58 +6753,155 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"ss" = ( +"asr" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/supply/ammo/sentry, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"ass" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"su" = ( +"ast" = ( +/obj/item/storage/box/m94, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"asu" = ( /obj/structure/sign/ROsign, /turf/closed/wall/r_wall, /area/whiskey_outpost) -"sw" = ( +"asv" = ( +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"asw" = ( /obj/effect/decal/warning_stripes, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"sx" = ( +"asx" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/prison/floor_plate, -/area/whiskey_outpost/inside/cic) -"sA" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/whiskey_outpost/outside/lane/two_south) -"sC" = ( -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/northwest, -/area/whiskey_outpost/inside/hospital) -"sD" = ( -/obj/structure/barricade/handrail{ - dir = 1 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/bunker) -"sI" = ( -/turf/open/floor/prison/cell_stripe, -/area/whiskey_outpost/inside/living) -"sJ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/wo, +/area/whiskey_outpost/inside/cic) +"asy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "WOline1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door_control{ + id = "WOlineshutters1"; + name = "Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "2;21" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"asz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/device/binoculars, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"asA" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/whiskey_outpost/outside/lane/two_south) +"asB" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"asC" = ( +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/whiskey_outpost/inside/hospital) +"asD" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/prison, +/area/whiskey_outpost/inside/bunker) +"asE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/whiskey_outpost/inside/bunker) +"asF" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/northeast, +/area/whiskey_outpost/outside/north/beach) +"asG" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/engineering) +"asH" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital) +"asI" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, +/area/whiskey_outpost/inside/living) +"asJ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/wo, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"sK" = ( +"asK" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"sL" = ( +"asL" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"sN" = ( +"asM" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"asN" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" @@ -4255,7 +6913,7 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"sO" = ( +"asO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; @@ -4263,90 +6921,172 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"sP" = ( +"asP" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"sQ" = ( +"asQ" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"sR" = ( +"asR" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_x = -32 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"sU" = ( +"asS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"asT" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"asU" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/mortar_pit) -"sV" = ( +"asV" = ( /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"sW" = ( +"asW" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"sX" = ( +"asX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost) -"sY" = ( +"asY" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison/darkyellowcorners2/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellowcorners2" + }, /area/whiskey_outpost/inside/supply) -"tc" = ( +"asZ" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital) +"ata" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) +"atb" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"atc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"tf" = ( +"atd" = ( +/turf/open/floor/whitegreencorner/east, +/area/whiskey_outpost/inside/hospital/triage) +"ate" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"atf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"th" = ( +"atg" = ( +/obj/item/storage/box/m56d_hmg, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"ath" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"ti" = ( +"ati" = ( /turf/open/gm/grass/gbcorner/south_east, /area/whiskey_outpost/outside/south) -"tj" = ( +"atj" = ( /obj/structure/machinery/light/small, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"tk" = ( +"atk" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker) -"tl" = ( +"atl" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"tn" = ( +"atm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = 30; + req_access = null + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"atn" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital/triage) -"to" = ( -/turf/open/floor/asteroidfloor/north, +"ato" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/northeast) -"tp" = ( +"atp" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen/blue/clicky, /obj/item/tool/pen/red/clicky, @@ -4363,26 +7103,45 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"tq" = ( +"atq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"ts" = ( +"atr" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/northeast) +"ats" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/paper_bin, /obj/item/tool/pen, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"tu" = ( +"att" = ( +/obj/structure/machinery/power/geothermal, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) +"atu" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"tv" = ( -/turf/open/floor/prison/darkyellow2, +"atv" = ( +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/engineering) -"tw" = ( +"atw" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 @@ -4394,29 +7153,58 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/supply) -"tz" = ( +"atx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/whiskey/smartgunner, /turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aty" = ( +/obj/structure/machinery/power/geothermal, +/obj/structure/machinery/light/small, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) +"atz" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/four_north) -"tA" = ( +"atA" = ( /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"tB" = ( +"atB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/jungle, /area/whiskey_outpost/outside/north) -"tC" = ( +"atC" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"tE" = ( +"atD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Mortar Pit" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"atE" = ( /obj/structure/filingcabinet{ density = 0; pixel_x = 8; @@ -4429,54 +7217,69 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"tF" = ( +"atF" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"tG" = ( +"atG" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"tH" = ( +"atH" = ( /obj/structure/machinery/conveyor_switch/oneway{ id = "crate0" }, -/turf/open/floor/prison/darkyellow2/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"tI" = ( +"atI" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/engineering) -"tJ" = ( +"atJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"tK" = ( +"atK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north) -"tL" = ( +"atL" = ( /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/whiskey_outpost/inside/engineering) +"atM" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"tN" = ( +"atN" = ( /obj/structure/sign/prop3, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) -"tO" = ( +"atO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north) -"tP" = ( +"atP" = ( /obj/structure/machinery/vending/snack{ density = 0; pixel_y = 16 @@ -4487,39 +7290,87 @@ /obj/item/reagent_container/food/snacks/hotdog, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"tR" = ( +"atQ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/obj/structure/machinery/defenses/sentry/premade{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"atR" = ( /obj/structure/bed/chair, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"tS" = ( +"atS" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/supply) -"tT" = ( +"atT" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"tV" = ( +"atU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"atV" = ( /obj/structure/holohoop{ density = 0; pixel_y = 24 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"tY" = ( +"atW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/mortar_pit) +"atX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light/small, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"atY" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer/emerald/northeast, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "emerald" + }, /area/whiskey_outpost/inside/cic) -"ua" = ( +"atZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aua" = ( /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"ub" = ( +"aub" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -4536,9 +7387,21 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"ue" = ( +"auc" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aud" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/three_south) +"aue" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -4555,13 +7418,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"uf" = ( +"auf" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"ug" = ( +"aug" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/line_nexter_control{ id = "WOline1"; @@ -4576,16 +7443,18 @@ pixel_y = -2; req_one_access_txt = "2;21" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"uh" = ( +"auh" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/requisition, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"ui" = ( +"aui" = ( /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -4602,19 +7471,49 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"um" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/whiskey_outpost/outside/north) -"uo" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison/floor_marked/southwest, +"auj" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) -"uq" = ( -/turf/open/gm/dirt/desert0, +"auk" = ( +/obj/structure/machinery/defenses/sentry/premade, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aul" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/beach) +"aum" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/whiskey_outpost/outside/north) +"aun" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"auo" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aup" = ( +/obj/effect/landmark/start/whiskey/marine, +/obj/structure/machinery/defenses/sentry/premade, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"auq" = ( +/turf/open/gm/dirt{ + icon_state = "desert0" + }, /area/whiskey_outpost/inside/caves/caverns/west) -"ur" = ( +"aur" = ( /obj/structure/machinery/conveyor{ dir = 4; id = "trash" @@ -4626,61 +7525,72 @@ /obj/structure/machinery/recycler/whiskey{ recycle_dir = 8 }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/engineering) -"us" = ( +"aus" = ( /obj/structure/machinery/door/window/northright, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"ut" = ( +"aut" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/supply) -"uu" = ( +"auu" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/storage/fancy/cigarettes/wypacket, /obj/item/clothing/mask/cigarette, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"uv" = ( +"auv" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/tool/lighter, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"uw" = ( -/turf/open/shuttle/dropship/light_grey_left_to_right, +"auw" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin5" + }, /area/whiskey_outpost/outside/lane/four_north) -"ux" = ( +"aux" = ( /obj/structure/surface/table/woodentable/poor, /obj/effect/landmark/map_item, /obj/item/device/flashlight/lamp, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"uy" = ( +"auy" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/two_south) -"uz" = ( +"auz" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/mortar_pit) -"uA" = ( +"auA" = ( /obj/structure/machinery/light{ dir = 4; invisibility = 101 }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"uB" = ( -/turf/open/floor/prison/darkyellow2/west, +"auB" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"uC" = ( +"auC" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; name = "\improper Disposals" @@ -4689,29 +7599,45 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"uD" = ( +"auD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"uE" = ( +"auE" = ( /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns/east) -"uF" = ( +"auF" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/four_south) -"uH" = ( +"auG" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"auH" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north) -"uI" = ( +"auI" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Outpost Synthetic Equipment Station"; req_access = null; @@ -4719,16 +7645,16 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"uJ" = ( +"auJ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns/west) -"uK" = ( +"auK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) -"uL" = ( +"auL" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; @@ -4746,86 +7672,187 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"uM" = ( -/obj/structure/closet/firecloset/full, +"auM" = ( +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m41aMK1/penetrating{ + current_rounds = 0; + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 6 + }, +/obj/item/device/whistle{ + pixel_y = 14 + }, /turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/engineering) -"uN" = ( +/area/whiskey_outpost/inside/bunker/bunker/front) +"auN" = ( /obj/structure/disposalpipe/sortjunction/untagged/flipped{ dir = 1 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"uO" = ( +"auO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/cell_charger, /obj/item/tool/screwdriver, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"uP" = ( -/obj/structure/machinery/power/apc/almayer/north, +"auP" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"uR" = ( +"auQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"auR" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; icon_state = "towergun" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"uT" = ( +"auS" = ( +/obj/structure/closet/secure_closet/req_officer, +/obj/item/clothing/suit/storage/marine/MP/SO, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/tool/hand_labeler, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/whiskey_outpost/inside/supply) +"auT" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"uU" = ( +"auU" = ( /obj/effect/landmark/start/whiskey/liaison, /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"uV" = ( +"auV" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/bunker) -"uW" = ( +"auW" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"uZ" = ( -/obj/structure/machinery/light/small, +"auX" = ( +/obj/structure/largecrate/supply/supplies/sandbags, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"auY" = ( /turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"auZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"vb" = ( -/turf/open/floor/prison/cell_stripe/east, +"ava" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"avb" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"vc" = ( +"avc" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker) +"avd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"ve" = ( +"ave" = ( /turf/closed/wall, /area/whiskey_outpost/outside/lane/one_north) -"vg" = ( +"avf" = ( +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"avg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north/beach) -"vi" = ( +"avh" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/whiskey_outpost/outside/north/beach) +"avi" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"vk" = ( +"avj" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "trash" + }, +/obj/structure/machinery/door/window/northleft, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/engineering) +"avk" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8; icon_state = "shuttle_chair" }, /obj/item/cell/high, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_south) -"vl" = ( +"avl" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/window/reinforced{ dir = 8; @@ -4835,143 +7862,247 @@ dir = 4; health = 80 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"vm" = ( +"avm" = ( /obj/structure/machinery/conveyor{ dir = 8; id = "crate" }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/supply) -"vn" = ( +"avn" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"vp" = ( +"avo" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "South-Eastern Platform" + }, +/obj/effect/landmark/start/whiskey/spec, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"avp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"vq" = ( +"avq" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"vr" = ( +"avr" = ( /obj/structure/sign/poster{ serial_number = 32 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"vv" = ( +"avs" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"avt" = ( +/obj/effect/landmark/whiskey_outpost/supplydrops, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"avu" = ( +/obj/structure/fence, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south) +"avv" = ( /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/engineering) -"vw" = ( +"avw" = ( /obj/structure/machinery/conveyor_switch/oneway{ id = "trash" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"vx" = ( +"avx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ no_panel = 1; not_weldable = 1; req_one_access_txt = "2;21" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"vy" = ( +"avy" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/three) -"vA" = ( +"avz" = ( +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"avA" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellow2, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"vB" = ( +"avB" = ( /turf/closed/shuttle/dropship, /area/whiskey_outpost/outside/lane/four_south) -"vC" = ( +"avC" = ( /obj/vehicle/powerloader, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"vE" = ( +"avD" = ( +/obj/structure/machinery/m56d_hmg/mg_turret, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/platform) +"avE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Storage" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"vF" = ( +"avF" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"vG" = ( +"avG" = ( /obj/structure/prop/dam/truck, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"vI" = ( +"avH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"avI" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"vK" = ( +"avJ" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south) +"avK" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"vL" = ( -/turf/open/floor/prison/darkyellow2, +"avL" = ( +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"vN" = ( +"avM" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/asteroidfloor/north, +/area) +"avN" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"vO" = ( +"avO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"vP" = ( +"avP" = ( /obj/structure/machinery/light, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"vQ" = ( +"avQ" = ( /turf/open/gm/grass/gbcorner/north_east, /area/whiskey_outpost/outside/lane/one_south) -"vR" = ( +"avR" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"vS" = ( +"avS" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "Engineering Dorms"; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"vV" = ( -/turf/open/floor/prison/darkyellow2/east, +"avT" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"avU" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"avV" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"vW" = ( +"avW" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, /obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"vX" = ( +"avX" = ( /obj/structure/machinery/door/window/southleft{ dir = 8; req_one_access_txt = "2;21" @@ -4980,32 +8111,61 @@ /obj/structure/machinery/door/window/northleft{ dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"vY" = ( +"avY" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north) -"vZ" = ( +"avZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"wb" = ( +"awa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"awb" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/river/east) -"wc" = ( +"awc" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"we" = ( +"awd" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/whiskey_outpost/inside/bunker/bunker/front) +"awe" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship/light_grey_middle, +/turf/open/shuttle/dropship{ + icon_state = "rasputin13" + }, /area/whiskey_outpost/outside/lane/four_north) -"wf" = ( -/turf/open/floor/prison/cell_stripe/west, +"awf" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/supply) -"wh" = ( +"awg" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/northeast) +"awh" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 @@ -5017,9 +8177,12 @@ /obj/structure/bed, /obj/item/bedsheet/hos, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"wi" = ( +"awi" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 @@ -5032,9 +8195,12 @@ /obj/item/bedsheet/hos, /obj/structure/machinery/light/small, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"wj" = ( +"awj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -5042,7 +8208,7 @@ /obj/effect/landmark/start/whiskey/leader, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"wk" = ( +"awk" = ( /obj/structure/window/reinforced{ dir = 8; health = 250 @@ -5054,9 +8220,12 @@ /obj/structure/bed, /obj/item/bedsheet/hos, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/engineering) -"wl" = ( +"awl" = ( /obj/structure/disposaloutlet{ dir = 4 }, @@ -5067,46 +8236,90 @@ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/engineering) -"wn" = ( +"awm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Storage" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"awn" = ( /obj/item/storage/box/m94, /turf/open/floor/plating, /area/whiskey_outpost/outside/lane/four_north) -"wp" = ( +"awo" = ( +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/lane/four_north) +"awp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"wq" = ( +"awq" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker) +"awr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker) -"ws" = ( +"aws" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_south) -"wt" = ( +"awt" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"wv" = ( -/turf/open/jungle/impenetrable, +"awu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"awv" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/two_south) -"ww" = ( +"aww" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"wx" = ( +"awx" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"wz" = ( +"awy" = ( +/obj/structure/flora/pottedplant/random, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/cic) +"awz" = ( /obj/structure/machinery/conveyor{ dir = 4; id = "trash" @@ -5115,9 +8328,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/engineering) -"wA" = ( +"awA" = ( /obj/structure/machinery/conveyor{ dir = 4; id = "trash" @@ -5129,21 +8345,57 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/engineering) -"wC" = ( -/turf/open/floor/prison/floor_plate, +"awB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8; + icon_state = "shuttle_chair" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"awC" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"wF" = ( +"awD" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"awE" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/wo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"awF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/four_south) -"wG" = ( +"awG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/supply) -"wI" = ( +"awH" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"awI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = 30; @@ -5153,18 +8405,23 @@ dir = 1; pixel_y = 28 }, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"wJ" = ( +"awJ" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"wK" = ( +"awK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/two_south) -"wL" = ( +"awL" = ( /obj/structure/surface/rack, /obj/item/device/destTagger, /obj/item/packageWrap, @@ -5172,110 +8429,178 @@ /obj/item/packageWrap, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"wM" = ( +"awM" = ( /obj/structure/machinery/line_nexter{ dir = 1; id = "WOline1" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost) -"wN" = ( +"awN" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"wO" = ( +"awO" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"wP" = ( +"awP" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"wQ" = ( -/turf/open/floor/prison/floor_plate, +"awQ" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"wR" = ( -/turf/open/jungle/impenetrable, +"awR" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/one_north) -"wS" = ( +"awS" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"wT" = ( +"awT" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/four_south) -"wU" = ( +"awU" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; req_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"wV" = ( +"awV" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 8; name = "\improper Supply Depo"; no_panel = 1; not_weldable = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"wW" = ( +"awW" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"wX" = ( +"awX" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 4; icon_state = "towergun" }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"wY" = ( +"awY" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine, /obj/item/ammo_box/magazine, /obj/item/ammo_box/magazine/ext, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"wZ" = ( +"awZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"xa" = ( +"axa" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/belts/grenade, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"xb" = ( +"axb" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/north/beach) -"xc" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/power/reactor/colony, +"axc" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"axd" = ( +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.3 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"axe" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/whiskey_outpost/outside/lane/four_north) +"axf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/obj/structure/machinery/cryopod, /turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/engineering) -"xg" = ( -/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"axg" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/supply) -"xj" = ( +"axh" = ( +/obj/structure/largecrate/guns, +/turf/open/floor/plating/warnplate/west, +/area/whiskey_outpost/outside/lane/one_north) +"axi" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"axj" = ( /obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"xk" = ( +"axk" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ unacidable = 1; @@ -5288,120 +8613,193 @@ /obj/item/packageWrap, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"xl" = ( +"axl" = ( /obj/item/ammo_casing{ icon_state = "cartridge_10" }, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"xm" = ( +"axm" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"xp" = ( +"axn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south) +"axo" = ( +/obj/structure/largecrate/supply/supplies/plasteel, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"axp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/two_north) -"xq" = ( +"axq" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/lane/four_north) -"xr" = ( +"axr" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m39, /obj/item/ammo_box/magazine/m39, /obj/item/ammo_box/magazine/m39/ext, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker) +"axs" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/m4ra, +/obj/item/ammo_box/magazine/m4ra, +/obj/structure/machinery/light/small, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"xt" = ( +"axt" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Western Entrance Pillbox" }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker) +"axu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Storage" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"axv" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/thunderdome/observer, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"xx" = ( +"axw" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital/triage) +"axx" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin9" }, /area/whiskey_outpost/outside/lane/four_north) -"xB" = ( +"axy" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, +/area/whiskey_outpost/outside/south/very_far) +"axz" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"axA" = ( +/obj/vehicle/powerloader, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"axB" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m4ra, /obj/item/ammo_box/magazine/m4ra, /obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"xC" = ( +"axC" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/far) -"xD" = ( +"axD" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/shotgun/buckshot, /obj/item/ammo_box/magazine/shotgun/flechette, /obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"xE" = ( +"axE" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"xF" = ( +"axF" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"xG" = ( +"axG" = ( /obj/structure/cargo_container/grant/left, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"xH" = ( +"axH" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"xI" = ( +"axI" = ( /turf/open/jungle/clear, /area/whiskey_outpost/inside/caves/caverns/east) -"xJ" = ( +"axJ" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m4a3, /obj/item/ammo_box/magazine/m44, /obj/item/ammo_box/magazine/mod88, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"xK" = ( +"axK" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/very_far) -"xL" = ( +"axL" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, -/turf/open/jungle/impenetrable/grass_clear, +/turf/open/jungle/impenetrable{ + icon_state = "grass_clear" + }, /area/whiskey_outpost/outside/south/very_far) -"xM" = ( +"axM" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"xN" = ( +"axN" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"xO" = ( +"axO" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"xP" = ( +"axP" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = 30; @@ -5409,13 +8807,16 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"xQ" = ( +"axQ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"xR" = ( +"axR" = ( /obj/structure/platform{ dir = 1 }, @@ -5427,18 +8828,42 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"xT" = ( +"axS" = ( +/obj/effect/landmark/start/whiskey/synthetic, +/turf/open/floor/almayer/cargo, +/area/whiskey_outpost/inside/cic) +"axT" = ( /obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor{ + icon_state = "white" + }, +/area/whiskey_outpost/inside/hospital) +"axU" = ( +/obj/structure/bed/roller, +/obj/structure/disposalpipe/segment, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital) -"xV" = ( +"axV" = ( /obj/effect/landmark/start/whiskey/spec, /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"xX" = ( +"axW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 32 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8; + icon_state = "shuttle_chair" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"axX" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -5452,16 +8877,41 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"xZ" = ( +"axY" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/shuttle/black, +/area/whiskey_outpost/outside/lane/four_north) +"axZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_south) -"ya" = ( +"aya" = ( /obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"yd" = ( +"ayb" = ( +/obj/structure/largecrate/supply/supplies/plasteel, +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"ayc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/item/cell/high, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_south) +"ayd" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" @@ -5469,14 +8919,17 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"ye" = ( +"aye" = ( /obj/structure/filingcabinet/security, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"yf" = ( -/turf/open/floor/prison/darkyellow2/southwest, +"ayf" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"yg" = ( +"ayg" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -5484,107 +8937,168 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"yh" = ( +"ayh" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light/small, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"yj" = ( +"ayi" = ( +/obj/structure/machinery/defenses/sentry/premade, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"ayj" = ( /obj/effect/landmark/start/whiskey/cargo, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowcorners2/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellowcorners2" + }, /area/whiskey_outpost/inside/supply) -"yk" = ( +"ayk" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"yl" = ( +"ayl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/inside/caves/caverns/west) -"yn" = ( +"aym" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"ayn" = ( /obj/structure/platform_decoration, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"yo" = ( +"ayo" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/lane/four_south) -"yp" = ( +"ayp" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"yr" = ( +"ayq" = ( +/obj/effect/landmark/start/whiskey/cmo, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"ayr" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/metal/wired, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"yt" = ( +"ays" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"ayt" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/lane/four_north) -"yv" = ( +"ayu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"ayv" = ( /obj/structure/sign/prop3, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) -"yw" = ( -/turf/open/floor/prison/cell_stripe, +"ayw" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"yx" = ( +"ayx" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/thunderdome/observer, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"yy" = ( +"ayy" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"yz" = ( +"ayz" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/supply) -"yA" = ( +"ayA" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"yB" = ( +"ayB" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/supply) -"yC" = ( +"ayC" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"yD" = ( +"ayD" = ( /obj/item/storage/box/m94, -/turf/open/floor/plating/platebot, +/turf/open/floor/plating{ + icon_state = "platebot" + }, /area/whiskey_outpost/outside/lane/one_north) -"yF" = ( +"ayE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/whiskey/spec, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"ayF" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/supply) -"yG" = ( +"ayG" = ( /obj/structure/closet/secure_closet/req_officer, /obj/item/clothing/suit/storage/marine/MP/SO, /obj/structure/machinery/light{ @@ -5599,69 +9113,99 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, /area/whiskey_outpost/inside/supply) -"yH" = ( +"ayH" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/three_south) -"yI" = ( +"ayI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = 30; req_access = null }, /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"yK" = ( +"ayJ" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/four_north) +"ayK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"yL" = ( +"ayL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"yN" = ( +"ayM" = ( +/obj/item/toy/beach_ball/holoball, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"ayN" = ( /turf/closed/shuttle/dropship{ dir = 1; icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_north) -"yO" = ( +"ayO" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"yP" = ( +"ayP" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = 30; req_access = null }, /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"yQ" = ( +"ayQ" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled{ dir = 1 }, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"yR" = ( +"ayR" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"yS" = ( +"ayS" = ( /obj/structure/platform{ dir = 1 }, @@ -5672,30 +9216,36 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/platform) -"yT" = ( +"ayT" = ( /obj/structure/platform_decoration, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"yU" = ( +"ayU" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"yV" = ( +"ayV" = ( /obj/structure/machinery/light/small, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"yW" = ( +"ayW" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"yX" = ( +"ayX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"yY" = ( +"ayY" = ( /obj/structure/sign/poster/hero/voteno{ pixel_x = 32 }, @@ -5704,18 +9254,55 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"zc" = ( -/turf/open/floor/prison/cell_stripe/north, +"ayZ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/beach) +"aza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"azb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/roller, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"azc" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"zd" = ( +"azd" = ( /obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"zf" = ( +"aze" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo{ + dir = 1; + name = "\improper Pillbox Wine"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"azf" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"zg" = ( +"azg" = ( /obj/structure/platform{ dir = 1 }, @@ -5725,39 +9312,67 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"zh" = ( +"azh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_north) -"zi" = ( +"azi" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Eastern Entrance Pillbox" }, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"zj" = ( +"azj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/north) -"zl" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/prison/floor_plate/southwest, +"azk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital/triage) +"azl" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"zm" = ( +"azm" = ( /obj/item/storage/box/explosive_mines, -/turf/open/floor/plating/platebot, +/turf/open/floor/plating{ + icon_state = "platebot" + }, /area/whiskey_outpost/outside/lane/one_north) -"zo" = ( +"azn" = ( +/obj/item/lightstick/red/planted, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south/far) +"azo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"zq" = ( +"azp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"azq" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"zr" = ( +"azr" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ dir = 4; @@ -5765,42 +9380,83 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/platform) -"zs" = ( +"azs" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"zt" = ( -/turf/open/jungle/impenetrable, +"azt" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south/far) -"zu" = ( +"azu" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"zw" = ( +"azv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"azw" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/east) -"zy" = ( +"azx" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "trash" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/engineering) +"azy" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"zA" = ( +"azz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"azA" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"zB" = ( +"azB" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"zC" = ( +"azC" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"zD" = ( +"azD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5809,53 +9465,82 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"zE" = ( +"azE" = ( /obj/structure/surface/rack, /obj/item/clothing/under/shorts/blue, /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/blue, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/north) -"zG" = ( +"azF" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"azG" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; icon_state = "towergun" }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"zH" = ( +"azH" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"zI" = ( +"azI" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/caves/tunnel) -"zJ" = ( +"azJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"zK" = ( +"azK" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"zM" = ( +"azL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"azM" = ( /obj/effect/landmark/start/whiskey/smartgunner, /obj/structure/barricade/sandbags/wired, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/outside/north/platform) +"azN" = ( +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"azO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"zP" = ( +"azP" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/supply) -"zQ" = ( +"azQ" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -5869,179 +9554,296 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"zR" = ( +"azR" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"zS" = ( +"azS" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating/asteroidwarning/northwest, +/turf/open/floor/plating{ + dir = 9; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"zU" = ( +"azT" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"azU" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south) -"zV" = ( +"azV" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"zW" = ( +"azW" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"zX" = ( +"azX" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river) -"zY" = ( +"azY" = ( /obj/structure/barricade/plasteel/wired{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"Aa" = ( +"azZ" = ( +/obj/structure/curtain/shower, +/turf/open/floor/prison/sterile_white, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aAa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/three_north) -"Ab" = ( +"aAb" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"Ac" = ( +"aAc" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/lane/four_north) -"Ad" = ( +"aAd" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south/far) -"Ae" = ( +"aAe" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost/inside/bunker/bunker/front) -"Af" = ( +"aAf" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/lane/four_south) -"Ah" = ( +"aAg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/three_north) +"aAh" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) -"Am" = ( +"aAi" = ( +/obj/structure/machinery/computer/cryopod, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aAj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aAk" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aAl" = ( +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aAm" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"An" = ( +"aAn" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Ao" = ( +"aAo" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Ap" = ( +"aAp" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/one_south) -"Ar" = ( +"aAq" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aAr" = ( /obj/structure/barricade/plasteel/wired{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"As" = ( +"aAs" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin/uscm{ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"Au" = ( +"aAt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/beach) +"aAu" = ( /obj/structure/barricade/metal/wired{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"Av" = ( +"aAv" = ( /obj/structure/barricade/metal/wired{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"Ay" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/whitegreen/east, -/area/whiskey_outpost/inside/hospital) -"AA" = ( -/turf/open/jungle, -/area/whiskey_outpost/outside/south/far) -"AB" = ( -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 8; - icon_state = "towergun" +"aAw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/northeast) +"aAx" = ( +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aAy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost) +"aAz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aAA" = ( +/turf/open/jungle, +/area/whiskey_outpost/outside/south/far) +"aAB" = ( +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 8; + icon_state = "towergun" + }, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" }, -/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) -"AC" = ( +"aAC" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"AD" = ( +"aAD" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/inside/caves/caverns/west) -"AE" = ( +"aAE" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) -"AF" = ( +"aAF" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"AH" = ( +"aAG" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/supply) +"aAH" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"AI" = ( +"aAI" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 4 }, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"AJ" = ( +"aAJ" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"AK" = ( +"aAK" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/north/beach) -"AO" = ( +"aAL" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/asteroidwarning/northwest, +/area/whiskey_outpost/outside/north/platform) +"aAM" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "Mortar Pit" + }, +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/bunker) +"aAN" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital/triage) +"aAO" = ( /obj/structure/barricade/metal/wired, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"AQ" = ( +"aAP" = ( +/turf/open/floor/almayer/cargo, +/area/whiskey_outpost/inside/cic) +"aAQ" = ( /obj/structure/platform{ dir = 1 }, @@ -6053,30 +9855,39 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"AR" = ( +"aAR" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"AS" = ( +"aAS" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/machinery/defenses/sentry/premade{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"AU" = ( +"aAT" = ( +/turf/open/floor/whitegreencorner, +/area/whiskey_outpost/inside/hospital/triage) +"aAU" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"AV" = ( +"aAV" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/west) -"AW" = ( +"aAW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -6084,43 +9895,63 @@ /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"AY" = ( +"aAX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost) +"aAY" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/east) -"AZ" = ( +"aAZ" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating/asteroidwarning/southwest, +/turf/open/floor/plating{ + dir = 10; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Bb" = ( +"aBa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aBb" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"Bc" = ( +"aBc" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Bd" = ( +"aBd" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"Be" = ( +"aBe" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Bf" = ( +"aBf" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_north) -"Bg" = ( +"aBg" = ( /obj/structure/platform_decoration{ dir = 1 }, @@ -6128,42 +9959,75 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Bh" = ( +"aBh" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"Bj" = ( +"aBi" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/whiskey_outpost/inside/bunker) +"aBj" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/inside/caves/caverns/west) -"Bl" = ( +"aBk" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 1; + pixel_y = 18 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aBl" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Bm" = ( +"aBm" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"Bn" = ( +"aBn" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Bo" = ( +"aBo" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/outside/north/platform) +"aBp" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"Bq" = ( +"aBq" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" @@ -6172,22 +10036,30 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating/asteroidwarning/northeast, +/turf/open/floor/plating{ + dir = 5; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Br" = ( +"aBr" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Bs" = ( +"aBs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Bt" = ( +"aBt" = ( /obj/structure/barricade/plasteel/wired{ dir = 8 }, @@ -6196,54 +10068,99 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"Bu" = ( +"aBu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"Bv" = ( +"aBv" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"Bw" = ( +"aBw" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"By" = ( +"aBx" = ( +/obj/structure/machinery/floodlight{ + light_on = 1 + }, +/turf/open/floor/plating/asteroidwarning/northwest, +/area/whiskey_outpost/outside/north/platform) +"aBy" = ( /turf/open/gm/coast/beachcorner/south_east, /area/whiskey_outpost/outside/river/east) -"Bz" = ( +"aBz" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/river/east) -"BA" = ( +"aBA" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"BB" = ( +"aBB" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie{ dir = 1; name = "\improper Pillbox Vodka"; req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"BC" = ( +"aBC" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"BF" = ( +"aBD" = ( +/obj/item/storage/box/m94, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/one_north) +"aBE" = ( +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/healthanalyzer, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aBF" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/river/west) -"BG" = ( +"aBG" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/outside/north/platform) +"aBH" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -6251,64 +10168,98 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"BJ" = ( +"aBI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"aBJ" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/north, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"BK" = ( +"aBK" = ( /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"BL" = ( +"aBL" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"BM" = ( +"aBM" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south) -"BN" = ( +"aBN" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"BO" = ( +"aBO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"BP" = ( +"aBP" = ( /obj/structure/machinery/shower{ dir = 8; layer = 3.3 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"BQ" = ( +"aBQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"BS" = ( +"aBR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aBS" = ( /obj/item/storage/box/m94, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/one_north) -"BT" = ( -/turf/open/floor/asteroidwarning/west, +"aBT" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"BU" = ( +"aBU" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"BV" = ( +"aBV" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, @@ -6316,26 +10267,42 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"BW" = ( +"aBW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"BX" = ( +"aBX" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"BY" = ( +"aBY" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Ca" = ( +"aBZ" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled, +/obj/effect/decal/medical_decals{ + dir = 8; + icon_state = "docstripingdir" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aCa" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, @@ -6343,51 +10310,82 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Cc" = ( +"aCb" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/effect/landmark/start/whiskey/synthetic, +/turf/open/floor/almayer/cargo, +/area/whiskey_outpost/inside/cic) +"aCc" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Cd" = ( +"aCd" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) -"Ce" = ( +"aCe" = ( /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/lane/one_north) -"Cf" = ( +"aCf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"Cg" = ( +"aCg" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 4; icon_state = "towergun" }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Ch" = ( +"aCh" = ( /turf/closed/wall/wood, /area/whiskey_outpost/inside/caves/caverns) -"Ci" = ( +"aCi" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"Ck" = ( +"aCj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/whiskey/bridge, +/turf/open/floor/almayer/blue/northeast, +/area/whiskey_outpost/inside/cic) +"aCk" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital/triage) -"Cm" = ( +"aCl" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aCm" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_north) -"Cn" = ( +"aCn" = ( /obj/structure/platform{ dir = 1 }, @@ -6397,40 +10395,62 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/platform) -"Co" = ( +"aCo" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"Cq" = ( -/turf/open/floor/plating/warnplate/north, +"aCp" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aCq" = ( +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"Cr" = ( +"aCr" = ( /obj/structure/barricade/plasteel/wired{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Cs" = ( +"aCs" = ( /obj/structure/machinery/chem_master{ tether_range = 4 }, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"Ct" = ( +"aCt" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Cu" = ( +"aCu" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Cv" = ( +"aCv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/reagentgrinder, /obj/item/stack/sheet/mineral/phoron{ @@ -6442,129 +10462,208 @@ /obj/item/reagent_container/glass/beaker, /obj/item/reagent_container/glass/beaker/large, /obj/item/reagent_container/glass/beaker/large, -/turf/open/floor/whitegreen/west, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"Cw" = ( +"aCw" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidwarning/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Cx" = ( -/turf/open/floor/asteroidwarning/east, +"aCx" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Cy" = ( +"aCy" = ( /obj/structure/barricade/metal/wired, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"Cz" = ( +"aCz" = ( /obj/structure/barricade/plasteel/wired, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"CA" = ( +"aCA" = ( /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"CB" = ( +"aCB" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"CC" = ( +"aCC" = ( /obj/structure/machinery/chem_dispenser, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"CD" = ( +"aCD" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_north) -"CE" = ( +"aCE" = ( /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"CG" = ( +"aCF" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/whiskey_outpost/inside/bunker) +"aCG" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"CJ" = ( +"aCH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aCI" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"aCJ" = ( /obj/structure/bed/chair, /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_south) -"CK" = ( +"aCK" = ( /obj/structure/disposalpipe/segment, /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"CM" = ( +"aCL" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/plating/warnplate, +/area/whiskey_outpost/outside/north/beach) +"aCM" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating/asteroidwarning/southeast, +/turf/open/floor/plating{ + dir = 6; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"CN" = ( +"aCN" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"CO" = ( +"aCO" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) -"CQ" = ( +"aCP" = ( +/turf/open/floor/plating/warnplate/east, +/area/whiskey_outpost/outside/lane/one_north) +"aCQ" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"CR" = ( +"aCR" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost/outside/lane/four_south) -"CT" = ( +"aCS" = ( +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/northeast) +"aCT" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"CU" = ( +"aCU" = ( /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating/asteroidwarning/northeast, +/turf/open/floor/plating{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/whiskey_outpost/outside/north/platform) +"aCV" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/three_north) +"aCW" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Combat Information Center" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"aCX" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) -"CY" = ( +"aCY" = ( /obj/structure/platform, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"CZ" = ( +"aCZ" = ( /obj/structure/platform, /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/west) -"Db" = ( +"aDa" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker) +"aDb" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"Dc" = ( +"aDc" = ( /obj/structure/platform, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Dd" = ( +"aDd" = ( /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) -"De" = ( +"aDe" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_north) -"Df" = ( +"aDf" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"Dg" = ( +"aDg" = ( /obj/structure/bed, /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) -"Di" = ( +"aDh" = ( +/obj/item/weapon/sword/machete, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/north) +"aDi" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/platform) -"Dj" = ( +"aDj" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -6572,85 +10671,138 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Dk" = ( +"aDk" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"Dm" = ( +"aDl" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidwarning/southeast, +/area/whiskey_outpost/outside/north/platform) +"aDm" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Dn" = ( -/turf/open/floor/asteroidwarning/north, +"aDn" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Do" = ( +"aDo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/beach) -"Dp" = ( -/turf/open/floor/asteroidwarning, +"aDp" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Dq" = ( +"aDq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/northeast) -"Dr" = ( +"aDr" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/northeast) -"Ds" = ( -/turf/open/floor/plating/warnplate/east, +"aDs" = ( +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"Dt" = ( +"aDt" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/beach) -"Du" = ( +"aDu" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Dv" = ( +"aDv" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Dw" = ( +"aDw" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) -"Dy" = ( +"aDx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/ashtray/bronze, +/obj/item/clothing/mask/cigarette/weed{ + desc = "What in the god damn?"; + name = "marijuana cigarette" + }, +/obj/item/tool/lighter/random{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aDy" = ( /obj/item/storage/pill_bottle/happy, /obj/item/tool/minihoe, /obj/structure/surface/table/woodentable/poor, /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) -"Dz" = ( +"aDz" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"DA" = ( +"aDA" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ dir = 8; @@ -6658,62 +10810,85 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/platform) -"DB" = ( +"aDB" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"DC" = ( +"aDC" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"DD" = ( -/turf/open/floor/asteroidfloor/north, +"aDD" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/beach) -"DE" = ( +"aDE" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/river/east) -"DF" = ( +"aDF" = ( /obj/structure/blocker/invisible_wall, /turf/closed/wall/rock/brown, /area/whiskey_outpost/outside/river/west) -"DG" = ( +"aDG" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = 5; pixel_y = -12 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/east) -"DH" = ( +"aDH" = ( /obj/structure/platform{ dir = 4 }, /obj/structure/platform, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"DJ" = ( +"aDI" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/sign/safety/med_cryo{ + pixel_x = 20; + pixel_y = 32 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aDJ" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"DK" = ( +"aDK" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"DL" = ( -/turf/open/floor/plating/warnplate/west, +"aDL" = ( +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"DM" = ( +"aDM" = ( /obj/structure/machinery/floodlight{ anchored = 0 }, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"DN" = ( +"aDN" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" @@ -6725,46 +10900,73 @@ /obj/structure/machinery/defenses/sentry/premade{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"DO" = ( +"aDO" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"DP" = ( +"aDP" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"DQ" = ( +"aDQ" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aDR" = ( +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aDS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/autoname, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"DU" = ( +"aDT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/whiskey_outpost/inside/supply) +"aDU" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"DV" = ( +"aDV" = ( /obj/structure/barricade/plasteel/wired{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"DW" = ( +"aDW" = ( /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/engineering) -"DX" = ( +"aDX" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"DY" = ( +"aDY" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" @@ -6773,118 +10975,188 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating/asteroidwarning/northwest, +/turf/open/floor/plating{ + dir = 9; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"DZ" = ( +"aDZ" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Ea" = ( +"aEa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/south) -"Eb" = ( +"aEb" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, -/turf/open/floor/whitegreen/northeast, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"Ec" = ( -/turf/open/floor/plating/warnplate, +"aEc" = ( +/turf/open/floor/plating{ + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"Ed" = ( +"aEd" = ( /obj/structure/bed/chair{ dir = 1; pixel_y = 3 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"Ee" = ( +"aEe" = ( /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/east) -"Ef" = ( +"aEf" = ( /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating/asteroidwarning/northwest, +/turf/open/floor/plating{ + dir = 9; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Eg" = ( +"aEg" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/west) -"Eh" = ( +"aEh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Ei" = ( +"aEi" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/inside/living) -"Ek" = ( +"aEj" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/whiskey_outpost/inside/cic) +"aEk" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution" }, /obj/structure/blocker/invisible_wall, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/west) -"Eo" = ( +"aEl" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aEm" = ( +/turf/open/floor/whitegreencorner, +/area/whiskey_outpost/inside/hospital) +"aEn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aEo" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/west) -"Eq" = ( +"aEp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/machete, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aEq" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/three_south) -"Er" = ( +"aEr" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/lane/four_north) -"Eu" = ( +"aEs" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost) +"aEt" = ( +/turf/open/floor/plating/warnplate, +/area/whiskey_outpost/outside/north/northeast) +"aEu" = ( /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/river/west) -"Ev" = ( +"aEv" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/northwest) -"Ew" = ( +"aEw" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/beach) -"Ex" = ( +"aEx" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Ey" = ( +"aEy" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Western Platform" }, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Ez" = ( +"aEz" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/orange/southwest, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, /area/whiskey_outpost/inside/cic) -"EA" = ( +"aEA" = ( /obj/structure/disposalpipe/segment, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_north) -"EB" = ( +"aEB" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -6894,89 +11166,142 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"EC" = ( +"aEC" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"EF" = ( +"aED" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/mortar_pit) +"aEE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/cell_stripe/west, +/area/whiskey_outpost/inside/bunker) +"aEF" = ( /turf/open/jungle, /area/whiskey_outpost/inside/caves/caverns/east) -"EG" = ( +"aEG" = ( /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/west) -"EH" = ( +"aEH" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating/asteroidwarning/southwest, +/turf/open/floor/plating{ + dir = 10; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"EI" = ( +"aEI" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"EJ" = ( +"aEJ" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"EK" = ( -/turf/open/jungle/impenetrable, +"aEK" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/north/northwest) -"EL" = ( +"aEL" = ( /obj/structure/machinery/cm_vending/gear/synth, /turf/open/floor/plating/plating_catwalk, /area/whiskey_outpost/inside/cic) -"EN" = ( -/obj/structure/largecrate/random/case/double, +"aEM" = ( +/obj/item/toy/beach_ball/holoball, /turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aEN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/three_south) -"EO" = ( +"aEO" = ( /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) -"EP" = ( +"aEP" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/very_far) -"EQ" = ( +"aEQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"ER" = ( +"aER" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_south) -"ES" = ( +"aES" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/one) -"EV" = ( -/turf/open/jungle/impenetrable, +"aET" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aEU" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aEV" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/three_north) -"EX" = ( +"aEW" = ( +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aEX" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/west) -"EY" = ( +"aEY" = ( /obj/effect/landmark/whiskey_outpost/xenospawn, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"EZ" = ( +"aEZ" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer/blue/northeast, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, /area/whiskey_outpost/inside/cic) -"Fa" = ( +"aFa" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, @@ -6984,99 +11309,156 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north) -"Fd" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "Eastern Platform" +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" }, +/area/whiskey_outpost/outside/north) +"aFb" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/whiskey_outpost/outside/lane/four_north) +"aFc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"aFd" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "Eastern Platform" + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/outside/north/platform) +"aFe" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aFf" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"Fg" = ( +"aFg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, /obj/structure/machinery/colony_floodlight, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Fh" = ( +"aFh" = ( /obj/structure/machinery/shower{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Fi" = ( +"aFi" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river) -"Fj" = ( +"aFj" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/very_far) -"Fl" = ( +"aFk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aFl" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin13" }, /area/whiskey_outpost/outside/lane/four_south) -"Fm" = ( +"aFm" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/item/roller, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Fn" = ( +"aFn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/south/very_far) -"Fp" = ( +"aFo" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aFp" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/river/west) -"Fr" = ( +"aFq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine, +/obj/item/ammo_box/magazine, +/obj/item/ammo_box/magazine/ext, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aFr" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Fs" = ( +"aFs" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform_decoration, /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/river/west) -"Fu" = ( +"aFt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"aFu" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/inside/caves/caverns/east) -"Fv" = ( +"aFv" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/item/storage/beer_pack, /obj/item/storage/beer_pack, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Fw" = ( +"aFw" = ( /obj/structure/platform, /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/east) -"Fx" = ( +"aFx" = ( /obj/structure/platform, /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/river/east) -"Fy" = ( +"aFy" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Fz" = ( +"aFz" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -7084,88 +11466,146 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"FC" = ( +"aFA" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 1 + }, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital/triage) +"aFB" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/warnplate/west, +/area/whiskey_outpost/outside/north/northeast) +"aFC" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river/west) -"FD" = ( +"aFD" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/west) -"FE" = ( +"aFE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"FF" = ( +"aFF" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"FG" = ( +"aFG" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"FH" = ( +"aFH" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"FI" = ( +"aFI" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"FL" = ( -/turf/open/jungle/impenetrable, +"aFJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/ammo/box/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aFK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aFL" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/three_south) -"FM" = ( +"aFM" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"FO" = ( +"aFN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"aFO" = ( /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"FP" = ( +"aFP" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "South-Eastern Platform" }, /obj/effect/landmark/start/whiskey/spec, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/outside/north/platform) +"aFQ" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"aFR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/whiskey/smartgunner, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"FS" = ( +"aFS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"FT" = ( +"aFT" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/sign/prop3{ pixel_x = 28 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"FU" = ( +"aFU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"FV" = ( +"aFV" = ( /obj/structure/barricade/metal/wired{ dir = 8 }, @@ -7174,10 +11614,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"FW" = ( +"aFW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/inside/caves/caverns/east) -"FX" = ( +"aFX" = ( /obj/structure/platform{ dir = 1 }, @@ -7189,53 +11629,73 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"FY" = ( +"aFY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"FZ" = ( +"aFZ" = ( /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/beach) -"Ga" = ( +"aGa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north/beach) -"Gb" = ( +"aGb" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/north/beach) -"Gd" = ( +"aGc" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aGd" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/northeast) -"Ge" = ( +"aGe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/living) -"Gf" = ( +"aGf" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/east) -"Gg" = ( +"aGg" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"Gh" = ( +"aGh" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Gi" = ( +"aGi" = ( /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/south) -"Gl" = ( +"aGj" = ( +/turf/open/floor/whitegreencorner/west, +/area/whiskey_outpost/inside/hospital/triage) +"aGk" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aGl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north/beach) -"Gm" = ( +"aGm" = ( /obj/structure/platform{ dir = 8 }, @@ -7245,71 +11705,123 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Gn" = ( +"aGn" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"Go" = ( +"aGo" = ( /turf/open/floor/plating, /area/whiskey_outpost/outside/lane/four_north) -"Gr" = ( +"aGp" = ( +/obj/structure/surface/rack, +/obj/structure/largecrate/supply/ammo/sentry, +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aGq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/southleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "WOlineshutters1"; + name = "\improper Supply Depo Line 1" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aGr" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"Gt" = ( +"aGs" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/supply) +"aGt" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/beach) -"Gu" = ( +"aGu" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/cic) -"Gw" = ( +"aGv" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/whiskey_outpost/outside/lane/four_north) +"aGw" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Gx" = ( +"aGx" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"Gy" = ( +"aGy" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/inside/living) -"Gz" = ( +"aGz" = ( /turf/open/floor/plating, /area/whiskey_outpost/outside/north/beach) -"GA" = ( +"aGA" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"GB" = ( +"aGB" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"GD" = ( +"aGC" = ( +/obj/item/storage/box/m56d_hmg, +/turf/open/shuttle/dropship/light_grey_top, +/area/whiskey_outpost/outside/lane/four_north) +"aGD" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/warnplate/northwest, +/turf/open/floor/plating{ + dir = 9; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"GE" = ( +"aGE" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"GF" = ( +"aGF" = ( /obj/structure/platform{ dir = 8 }, @@ -7317,13 +11829,26 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"GG" = ( +"aGG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/beach) -"GI" = ( +"aGH" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "docstripingdir" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aGI" = ( /obj/structure/platform{ dir = 4 }, @@ -7331,224 +11856,358 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"GJ" = ( +"aGJ" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) -"GK" = ( +"aGK" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/three_north) -"GL" = ( +"aGL" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"GM" = ( +"aGM" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"GN" = ( +"aGN" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"GO" = ( +"aGO" = ( /obj/item/storage/box/m94, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, /area/whiskey_outpost/outside/lane/four_north) -"GQ" = ( +"aGP" = ( +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/platform) +"aGQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"GR" = ( +"aGR" = ( /obj/structure/machinery/m56d_hmg/mg_turret, -/turf/open/floor/plating/warnplate, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"GS" = ( +"aGS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; pixel_y = 10 }, /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/east) -"GT" = ( +"aGT" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/warnplate/west, +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/northeast) -"GU" = ( +"aGU" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"GV" = ( +"aGV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/lane/one_north) -"GW" = ( +"aGW" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"GX" = ( +"aGX" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/south) -"GY" = ( +"aGY" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Ha" = ( +"aGZ" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aHa" = ( /obj/structure/machinery/washing_machine, /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 4; pixel_y = 12 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Hc" = ( +"aHb" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aHc" = ( /obj/structure/cargo_container/grant/right, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"Hf" = ( -/obj/structure/machinery/washing_machine, +"aHd" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, /turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aHe" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/one_south) +"aHf" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Hg" = ( +"aHg" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Hh" = ( -/turf/open/shuttle/dropship/light_grey_top_left, +"aHh" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin6" + }, /area/whiskey_outpost/outside/lane/four_north) -"Hi" = ( +"aHi" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"Hj" = ( +"aHj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/inside/caves/caverns/west) -"Hk" = ( +"aHk" = ( /obj/structure/platform, /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river/west) -"Hl" = ( +"aHl" = ( /obj/structure/platform, /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/river/west) -"Hm" = ( +"aHm" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Hn" = ( +"aHn" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Ho" = ( +"aHo" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Hp" = ( +"aHp" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/one_north) -"Hq" = ( +"aHq" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"Hr" = ( +"aHr" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/one_north) -"Hs" = ( +"aHs" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Ht" = ( +"aHt" = ( /obj/structure/disposalpipe/segment, /turf/open/jungle, /area/whiskey_outpost/outside/north/northwest) -"Hu" = ( +"aHu" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/inside/caves/caverns/west) -"Hv" = ( +"aHv" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Hw" = ( -/turf/open/shuttle/dropship/light_grey_top_right, +"aHw" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin7" + }, /area/whiskey_outpost/outside/lane/four_north) -"Hx" = ( +"aHx" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Hy" = ( +"aHy" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"HA" = ( +"aHz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = 30; + req_access = null + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aHA" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/jungle, /area/whiskey_outpost/outside/lane/four_south) -"HB" = ( +"aHB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_south) -"HH" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/living) -"HI" = ( -/turf/open/gm/dirtgrassborder/south, -/area/whiskey_outpost/inside/caves/caverns/west) -"HK" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/plasteel/wired, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/lane/four_south) -"HL" = ( -/obj/structure/machinery/door/airlock/almayer/marine/autoname{ - dir = 1 +"aHC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost) +"aHD" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 8; + name = "\improper Supply Depo"; + no_panel = 1; + not_weldable = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aHE" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aHF" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aHG" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aHH" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/prison, +/area/whiskey_outpost/inside/living) +"aHI" = ( +/turf/open/gm/dirtgrassborder/south, +/area/whiskey_outpost/inside/caves/caverns/west) +"aHJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aHK" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/lane/four_south) +"aHL" = ( +/obj/structure/machinery/door/airlock/almayer/marine/autoname{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aHM" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/jungle, +/area/whiskey_outpost/outside/lane/one_south) +"aHN" = ( +/turf/open/floor{ + icon_state = "white" }, -/turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/bunker/bunker/front) -"HM" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/jungle, -/area/whiskey_outpost/outside/lane/one_south) -"HN" = ( -/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"HP" = ( +"aHO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"aHP" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"HQ" = ( +"aHQ" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"HR" = ( +"aHR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -7556,45 +12215,61 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/beach) -"HT" = ( +"aHS" = ( +/obj/item/storage/box/m94, +/turf/open/floor/plating/platebot, +/area/whiskey_outpost/outside/lane/one_north) +"aHT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/north) -"HU" = ( +"aHU" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/CICmap, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"HV" = ( +"aHV" = ( /obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"HW" = ( +"aHW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_north) -"HX" = ( +"aHX" = ( /obj/item/lightstick/red/planted, /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"HY" = ( +"aHY" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/northwest) -"HZ" = ( +"aHZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Ia" = ( +"aIa" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -7604,18 +12279,43 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating/asteroidwarning/southwest, +/turf/open/floor/plating{ + dir = 10; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Ic" = ( +"aIb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/warnplate/northwest, +/area/whiskey_outpost/outside/north/northeast) +"aIc" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/asteroidwarning/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"If" = ( +"aId" = ( +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aIe" = ( +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/cic) +"aIf" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -7626,34 +12326,59 @@ icon_state = "sandbag_0" }, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/plating/asteroidwarning/southwest, +/turf/open/floor/plating{ + dir = 10; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Ih" = ( +"aIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/whiskey/spec, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aIh" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/beach) -"Ii" = ( +"aIi" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/northeast) -"Ik" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +"aIj" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "crate" + }, +/obj/structure/plasticflaps, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aIk" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"Il" = ( +"aIl" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/south) -"Im" = ( +"aIm" = ( /obj/structure/cargo_container/watatsumi/rightmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"In" = ( +"aIn" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) -"Io" = ( +"aIo" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -7662,14 +12387,17 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"Ip" = ( +"aIp" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"Iq" = ( +"aIq" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -7677,7 +12405,18 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"It" = ( +"aIr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/bunker) +"aIs" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aIt" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, @@ -7687,95 +12426,171 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"Iu" = ( +"aIu" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"Iv" = ( +"aIv" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"Iw" = ( +"aIw" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_north) -"Ix" = ( -/turf/open/floor/asteroidfloor/north, +"aIx" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/northwest) -"Iy" = ( +"aIy" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"IA" = ( +"aIz" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = "Western Entrance Pillbox" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aIA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ starting_attachment_types = list(/obj/item/attachable/stock/shotgun) }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"IB" = ( +"aIB" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"IC" = ( +"aIC" = ( /obj/item/lightstick/red/planted, /turf/open/jungle, /area/whiskey_outpost/outside/north/northwest) -"IF" = ( +"aID" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aIE" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/obj/structure/machinery/defenses/sentry/premade{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"aIF" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidwarning, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"IG" = ( +"aIG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/very_far) -"IH" = ( +"aIH" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, /obj/item/folder/white, /turf/open/floor, /area/whiskey_outpost/outside/south/far) -"IK" = ( +"aII" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "WOline2"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door_control{ + id = "WOlineshutters2"; + name = "Line 2 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "2;21" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aIJ" = ( +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"aIK" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south) -"IM" = ( +"aIL" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/three_south) +"aIM" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/lane/four_south) -"IN" = ( +"aIN" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/east) -"IO" = ( +"aIO" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin8" }, /area/whiskey_outpost/outside/lane/four_north) -"IP" = ( +"aIP" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"IQ" = ( +"aIQ" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"IR" = ( +"aIR" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/east) -"IU" = ( +"aIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/northeast) +"aIT" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aIU" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/cell_stripe, +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"IV" = ( +"aIV" = ( /obj/item/tool/weldpack{ pixel_x = 6; pixel_y = 8 @@ -7790,60 +12605,93 @@ }, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/two_south) -"IW" = ( +"aIW" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"IY" = ( +"aIX" = ( +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.3 + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aIY" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"IZ" = ( +"aIZ" = ( /obj/structure/cargo_container/arious/right, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"Jb" = ( +"aJa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1; + name = "\improper Pillbox Bourbon"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aJb" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north/beach) -"Jc" = ( +"aJc" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/three_south) -"Jd" = ( +"aJd" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"Je" = ( +"aJe" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/inside/living) -"Jf" = ( +"aJf" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/north/northwest) -"Jg" = ( +"aJg" = ( /obj/effect/spawner/gibspawner/human, /turf/open/floor, /area/whiskey_outpost/outside/south/far) -"Jh" = ( +"aJh" = ( /obj/item/tool/crowbar, /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"Ji" = ( -/turf/open/jungle/impenetrable, +"aJi" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/inside/caves/caverns/west) -"Jk" = ( +"aJj" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aJk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north/northwest) -"Jl" = ( +"aJl" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" @@ -7852,13 +12700,22 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Jn" = ( +"aJm" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_x = -32 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aJn" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Jo" = ( +"aJo" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" @@ -7868,284 +12725,531 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Jp" = ( +"aJp" = ( /obj/structure/platform, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"Jq" = ( +"aJq" = ( /obj/structure/filingcabinet, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"Jr" = ( +"aJr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Jt" = ( +"aJs" = ( +/turf/open/floor/whitegreencorner/north, +/area/whiskey_outpost/inside/hospital/triage) +"aJt" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Jw" = ( +"aJu" = ( +/turf/open/floor/plating/warnplate/east, +/area/whiskey_outpost/outside/north/northeast) +"aJv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aJw" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Pillbox Bourbon" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Jz" = ( -/obj/item/tool/crowbar, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/lane/three_south) -"JA" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light/small, +"aJx" = ( /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"JB" = ( +"aJy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bunker" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aJz" = ( +/obj/item/tool/crowbar, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/lane/three_south) +"aJA" = ( +/obj/structure/machinery/m56d_hmg/mg_turret, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aJB" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; sortType = "Pillbox Tequila" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"JC" = ( +"aJC" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"JE" = ( +"aJD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "Engineering"; + req_one_access_txt = "2;7" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aJE" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"JF" = ( +"aJF" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"JG" = ( +"aJG" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/shuttle/dropship/light_grey_top, +/turf/open/shuttle/dropship{ + icon_state = "rasputin10" + }, /area/whiskey_outpost/outside/lane/four_north) -"JH" = ( +"aJH" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/south) -"JJ" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen/west, -/area/whiskey_outpost/inside/hospital) -"JL" = ( +"aJI" = ( +/turf/open/gm/dirt/desert0, +/area/whiskey_outpost/inside/caves/caverns/west) +"aJJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aJK" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aJL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north/beach) -"JM" = ( +"aJM" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"JN" = ( +"aJN" = ( /obj/effect/landmark/whiskey_outpost/supplydrops, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"JO" = ( +"aJO" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"JP" = ( -/turf/open/floor/whitegreencorner/west, +"aJP" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital/triage) -"JR" = ( +"aJQ" = ( +/obj/effect/landmark/start/whiskey/cargo, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/whiskey_outpost/inside/supply) +"aJR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/hand_labeler{ pixel_x = -3; pixel_y = 5 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"JT" = ( -/turf/open/floor/whitegreencorner/west, +"aJS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aJT" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital) -"JU" = ( +"aJU" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/lane/four_south) -"JX" = ( +"aJV" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/outside/lane/two_north) +"aJW" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aJX" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/four_south) -"JZ" = ( +"aJY" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + sortType = "CIC" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aJZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/north/beach) -"Kb" = ( +"aKa" = ( +/obj/structure/machinery/sleep_console{ + dir = 1 + }, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"aKb" = ( /obj/structure/sign/poster{ serial_number = 21 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"Kc" = ( +"aKc" = ( /obj/structure/machinery/cm_vending/sorted/attachments/wo, /turf/open/floor/plating, /area/whiskey_outpost/inside/supply) -"Kd" = ( +"aKd" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin_nose" }, /area/whiskey_outpost/outside/lane/four_north) -"Ke" = ( +"aKe" = ( /turf/open/gm/coast/east, /area/whiskey_outpost/outside/lane/four_south) -"Kf" = ( +"aKf" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"Kl" = ( +"aKg" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"aKh" = ( +/turf/open/floor/prison/darkyellow2, +/area/whiskey_outpost/inside/engineering) +"aKi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/tool/extinguisher, +/obj/item/device/binoculars, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"aKj" = ( +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/bunker) +"aKk" = ( +/obj/structure/machinery/light/small, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"aKl" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital/triage) -"Km" = ( +"aKm" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_south) -"Kn" = ( +"aKn" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/lane/one_north) -"Ko" = ( +"aKo" = ( /obj/structure/curtain, -/turf/open/floor/whitegreen/west, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"Kq" = ( +"aKp" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1; + name = "\improper Pillbox Bourbon"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aKq" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/beach) -"Kr" = ( +"aKr" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/engineering) -"Ks" = ( +"aKs" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, /area/whiskey_outpost/inside/supply) -"Kt" = ( +"aKt" = ( /obj/structure/fence, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns/west) -"Ku" = ( +"aKu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"Kv" = ( +"aKv" = ( /obj/structure/barricade/metal/wired, /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"Kx" = ( -/turf/open/floor/whitegreencorner, +"aKw" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/guns/common/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aKx" = ( +/turf/open/floor{ + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital/triage) -"Ky" = ( +"aKy" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/inside/caves/caverns) -"KB" = ( +"aKz" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/whiskey_outpost) +"aKA" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aKB" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) -"KF" = ( -/obj/structure/disposalpipe/segment, +"aKC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aKD" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"aKE" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aKF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/northeast) -"KG" = ( +"aKG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_north) -"KJ" = ( +"aKH" = ( +/obj/structure/machinery/washing_machine, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aKI" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/north) +"aKJ" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating/platebot, +/turf/open/floor/plating{ + icon_state = "platebot" + }, /area/whiskey_outpost/outside/lane/one_north) -"KK" = ( +"aKK" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; sortType = "Triage" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"KL" = ( +"aKL" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"KM" = ( +"aKM" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/north/northwest) -"KN" = ( +"aKN" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/three_south) -"KP" = ( +"aKO" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/sentry, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aKP" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"KR" = ( +"aKQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/supply/supplies/metal, +/obj/structure/largecrate/supply/supplies/plasteel, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"aKR" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"KT" = ( +"aKS" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aKT" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/lane/four_north) -"KW" = ( +"aKU" = ( +/turf/open/gm/dirt/desert2, +/area/whiskey_outpost/inside/caves/caverns/west) +"aKV" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aKW" = ( /obj/item/clothing/gloves/boxing, /obj/item/clothing/gloves/boxing/green, /obj/structure/surface/rack, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"KY" = ( +"aKX" = ( +/obj/item/lightstick/red/planted, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/beach) +"aKY" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"KZ" = ( +"aKZ" = ( /obj/structure/largecrate/guns, -/turf/open/floor/plating/platebot, +/turf/open/floor/plating{ + icon_state = "platebot" + }, /area/whiskey_outpost/outside/lane/one_north) -"Lb" = ( +"aLa" = ( +/obj/item/tool/crowbar, +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aLb" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Lc" = ( +"aLc" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Ld" = ( +"aLd" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/west) -"Le" = ( +"aLe" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"Lf" = ( +"aLf" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 @@ -8154,40 +13258,94 @@ /obj/item/weapon/gun/pill{ pixel_y = 6 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"Lg" = ( +"aLg" = ( /turf/open/jungle, /area/whiskey_outpost/inside/caves/caverns) -"Lh" = ( +"aLh" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/west) -"Li" = ( +"aLi" = ( /obj/structure/machinery/chem_master{ tether_range = 4 }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"Lj" = ( +"aLj" = ( /obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aLk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/whiskey_outpost/inside/bunker) +"aLl" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = 30; + req_access = null + }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"Ln" = ( +"aLm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aLn" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"Lp" = ( +"aLo" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/machinery/defenses/sentry/premade, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/whiskey_outpost/outside/north/platform) +"aLp" = ( /obj/item/lightstick/red/planted, /obj/structure/disposalpipe/segment, /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) -"Ls" = ( +"aLq" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/whiskey_outpost/inside/bunker) +"aLr" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aLs" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/river/west) -"Lt" = ( +"aLt" = ( /obj/structure/closet/cabinet, /obj/item/device/taperecorder{ pixel_x = 3; @@ -8199,11 +13357,29 @@ /obj/item/device/binoculars, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"Lx" = ( -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 9 - }, +"aLu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aLv" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aLw" = ( +/obj/structure/machinery/medical_pod/sleeper, +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aLx" = ( +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 9 + }, /obj/item/reagent_container/glass/beaker/cryoxadone{ pixel_x = -5; pixel_y = 9 @@ -8213,29 +13389,72 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"Ly" = ( +"aLy" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_north) -"Lz" = ( -/turf/open/floor/asteroidfloor/north, +"aLz" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"LB" = ( -/turf/open/floor/asteroidwarning/east, +"aLA" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/outside/lane/three_north) +"aLB" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/northeast) -"LD" = ( +"aLC" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 1 + }, +/turf/open/jungle/impenetrable/grass_clear, +/area/whiskey_outpost/outside/south/very_far) +"aLD" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/shuttle/black, +/turf/open/shuttle{ + icon_state = "floor7" + }, /area/whiskey_outpost/outside/lane/four_north) -"LG" = ( +"aLE" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 8; + icon_state = "docstripingdir" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aLF" = ( +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"aLG" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/three_south) -"LI" = ( +"aLH" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/northeast) +"aLI" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" @@ -8244,9 +13463,12 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/northwest, +/turf/open/floor/plating{ + dir = 9; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"LJ" = ( +"aLJ" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; icon_state = "warning_s" @@ -8257,7 +13479,7 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"LK" = ( +"aLK" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" @@ -8266,46 +13488,100 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/northeast, +/turf/open/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"LM" = ( +"aLL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aLM" = ( /obj/structure/sign/prop1, /turf/closed/wall, /area/whiskey_outpost/outside/south) -"LN" = ( +"aLN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/three_south) -"LQ" = ( +"aLO" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital/triage) +"aLP" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aLQ" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/three_south) -"LR" = ( +"aLR" = ( /obj/item/lightstick/red/planted, /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"LT" = ( +"aLS" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/asteroidwarning/northeast, +/area/whiskey_outpost/outside/north/platform) +"aLT" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_north) -"LU" = ( +"aLU" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating/warnplate, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/lane/one_north) -"LX" = ( +"aLV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/effect/landmark/start/whiskey/cargo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aLW" = ( +/obj/effect/landmark/start/whiskey/engineer, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aLX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/east) -"LZ" = ( +"aLY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aLZ" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"Ma" = ( +"aMa" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/plating/platebot, +/turf/open/floor/plating{ + icon_state = "platebot" + }, /area/whiskey_outpost/outside/lane/one_north) -"Mb" = ( +"aMb" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south/very_far) -"Mc" = ( +"aMc" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" @@ -8316,15 +13592,21 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"Me" = ( +"aMd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/supply) +"aMe" = ( /turf/open/gm/grass/gbcorner/south_west, /area/whiskey_outpost/outside/lane/one_south) -"Mf" = ( +"aMf" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin2" }, /area/whiskey_outpost/outside/lane/four_south) -"Mg" = ( +"aMg" = ( /obj/structure/holohoop{ dir = 4; id = "basketball"; @@ -8334,26 +13616,34 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"Mh" = ( +"aMh" = ( /obj/structure/machinery/conveyor{ dir = 8; id = "crate" }, /obj/structure/plasticflaps, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"Mi" = ( -/turf/open/floor/asteroidwarning/west, +"aMi" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/northeast) -"Mj" = ( +"aMj" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/east) -"Mk" = ( +"aMk" = ( /obj/structure/sign/safety/north, /obj/structure/sign/safety/medical{ name = "\improper Triage Center"; @@ -8361,60 +13651,105 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/caves) -"Ml" = ( +"aMl" = ( /obj/structure/bed/roller, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital/triage) -"Mn" = ( +"aMm" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/whiskey_outpost/supplydrops, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"aMn" = ( /turf/closed/shuttle/dropship{ dir = 4; icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_south) -"Mo" = ( +"aMo" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, /area/whiskey_outpost/inside/cic) -"Mp" = ( +"aMp" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; icon_state = "towergun" }, -/turf/open/floor/plating/warnplate/west, +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"Mq" = ( +"aMq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/three_south) -"Ms" = ( -/turf/open/floor/asteroidwarning/east, +"aMr" = ( +/obj/effect/landmark/start/whiskey/cargo, +/turf/open/floor/prison/darkyellow2, +/area/whiskey_outpost/inside/supply) +"aMs" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/lane/four_north) -"Mt" = ( +"aMt" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/platform) -"Mw" = ( +"aMu" = ( +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/lane/four_north) +"aMv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aMw" = ( /obj/structure/fence, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south) -"Mx" = ( +"aMx" = ( /turf/open/jungle, /area/whiskey_outpost/inside/caves/caverns/west) -"Mz" = ( +"aMy" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aMz" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"MA" = ( +"aMA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/north) -"MB" = ( +"aMB" = ( /obj/structure/platform{ layer = 3.6 }, @@ -8428,11 +13763,43 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"ME" = ( +"aMC" = ( +/obj/effect/decal/medical_decals{ + dir = 8; + icon_state = "docstripingdir" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = 30; + req_access = null + }, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"aMD" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aME" = ( /obj/structure/sink/puddle, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"MF" = ( +"aMF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/vodka{ pixel_x = 8; @@ -8447,26 +13814,79 @@ pixel_x = -8; pixel_y = 7 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aMG" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) -"MI" = ( +"aMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aMI" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"ML" = ( +"aMJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"aMK" = ( +/obj/structure/barricade/metal/wired, +/obj/item/ammo_casing{ + icon_state = "cartridge_2_1"; + layer = 2 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aML" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"MO" = ( +"aMM" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/ammo/box/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aMN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aMO" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"MP" = ( +"aMP" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"MQ" = ( +"aMQ" = ( /obj/structure/platform_decoration{ dir = 4 }, @@ -8475,61 +13895,101 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"MR" = ( +"aMR" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/two_north) -"MU" = ( +"aMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aMT" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aMU" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/north/beach) -"MW" = ( +"aMV" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/four_north) +"aMW" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/three_north) -"MX" = ( +"aMX" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/two_north) -"MY" = ( +"aMY" = ( /obj/effect/spawner/gibspawner/human, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/far) -"MZ" = ( +"aMZ" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/one_north) -"Na" = ( +"aNa" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"Nc" = ( +"aNb" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aNc" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south/far) -"Nd" = ( +"aNd" = ( /obj/structure/sign/poster{ serial_number = 17 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"Ne" = ( +"aNe" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"Nf" = ( +"aNf" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Nh" = ( +"aNg" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plating/platebot, +/area/whiskey_outpost/outside/lane/one_north) +"aNh" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"Nj" = ( +"aNi" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "WOline2" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost) +"aNj" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Nk" = ( +"aNk" = ( /obj/structure/platform{ dir = 4 }, @@ -8539,7 +13999,7 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Nl" = ( +"aNl" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" @@ -8548,60 +14008,110 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/northeast, +/turf/open/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"Nn" = ( +"aNm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aNn" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/southwest, +/turf/open/floor/plating{ + dir = 10; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"Nq" = ( +"aNo" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost) +"aNp" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aNq" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating/warnplate, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"Nr" = ( +"aNr" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 }, /turf/open/floor/plating/plating_catwalk, /area/whiskey_outpost/inside/cic) -"Nt" = ( +"aNs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/whiskey/maint, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aNt" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/southeast, +/turf/open/floor/plating{ + dir = 6; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"Nu" = ( +"aNu" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/very_far) -"Nv" = ( +"aNv" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_north) -"Ny" = ( +"aNw" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aNx" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/four_south) +"aNy" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/west, +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"Nz" = ( +"aNz" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating/warnplate/east, +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, /area/whiskey_outpost/outside/north/beach) -"NA" = ( -/turf/open/floor/whitegreen/east, +"aNA" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"NB" = ( +"aNB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; @@ -8611,43 +14121,85 @@ dir = 1; pixel_y = 28 }, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"ND" = ( +"aNC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aND" = ( /obj/effect/decal/cleanable/blood, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/four_south) -"NE" = ( +"aNE" = ( /obj/item/stool, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/two_south) -"NF" = ( +"aNF" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"NG" = ( +"aNG" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/west) -"NI" = ( +"aNH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north) +"aNI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/inside/caves/caverns/east) -"NJ" = ( +"aNJ" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/platform{ dir = 1 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"NL" = ( +"aNK" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"aNL" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/north/beach) -"NM" = ( +"aNM" = ( /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/river) -"NQ" = ( +"aNN" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/mortar_pit) +"aNO" = ( +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aNP" = ( +/obj/structure/holohoop{ + density = 0; + pixel_y = 24 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aNQ" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" @@ -8655,70 +14207,123 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"NT" = ( +"aNR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/obj/item/ammo_box/magazine/shotgun/flechette, +/obj/item/ammo_box/magazine/shotgun, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aNS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aNT" = ( /obj/structure/machinery/autodoc_console{ dir = 1 }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"NV" = ( +"aNU" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aNV" = ( /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves) -"NW" = ( +"aNW" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"NX" = ( +"aNX" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/north/northwest) -"NY" = ( +"aNY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/two_south) -"NZ" = ( +"aNZ" = ( /obj/structure/machinery/vending/cola, /obj/structure/sign/banners/maximumeffort{ pixel_y = 30 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aOa" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = -5 + }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"Ob" = ( +"aOb" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_north) -"Oc" = ( +"aOc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"Od" = ( +"aOd" = ( /obj/structure/cargo_container/arious/right, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"Oe" = ( +"aOe" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Of" = ( +"aOf" = ( /obj/structure/barricade/metal/wired, /obj/structure/machinery/m56d_hmg/mg_turret, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south) -"Oi" = ( +"aOg" = ( +/obj/effect/landmark/start/whiskey/engineering, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aOh" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "Engineering Dorms"; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aOi" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/lane/four_north) -"Oj" = ( +"aOj" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/beach) -"Ok" = ( +"aOk" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/lane/four_south) -"Om" = ( +"aOl" = ( +/obj/effect/landmark/start/whiskey/spec, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aOm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/southleft{ req_one_access_txt = "2;21" @@ -8729,9 +14334,11 @@ id = "WOlineshutters1"; name = "\improper Supply Depo Line 1" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"On" = ( +"aOn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ pixel_x = -6; @@ -8747,59 +14354,127 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"Oo" = ( -/turf/open/floor/whitegreencorner/east, +"aOo" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, /area/whiskey_outpost/inside/hospital/triage) -"Op" = ( +"aOp" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker) -"Oq" = ( +"aOq" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/two_north) -"Ot" = ( +"aOr" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aOs" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/effect/landmark/start/whiskey/bridge, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aOt" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/three_south) -"Ou" = ( +"aOu" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/east) -"Ov" = ( +"aOv" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Ow" = ( +"aOw" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"OA" = ( +"aOx" = ( +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aOy" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/mortar_pit) +"aOz" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1; + name = "\improper Pillbox Vodka"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aOA" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) -"OD" = ( +"aOB" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aOC" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/whiskey_outpost/inside/supply) +"aOD" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"OE" = ( +"aOE" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/three_north) -"OF" = ( +"aOF" = ( /obj/item/lightstick/red/planted, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"OG" = ( +"aOG" = ( /obj/structure/pipes/unary/freezer, /obj/structure/sign/safety/med_cryo{ pixel_x = 20; pixel_y = 32 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"OI" = ( +"aOH" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, +/obj/structure/sign/prop3{ + pixel_x = 28 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aOI" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -8808,372 +14483,634 @@ unacidable = 1; unslashable = 1 }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/whiskey_outpost) +"aOJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"OK" = ( +"aOK" = ( /turf/closed/wall/strata_ice/jungle, /area/whiskey_outpost/outside/south/far) -"OL" = ( +"aOL" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/river/east) -"OM" = ( +"aOM" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/three) -"OO" = ( +"aON" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aOO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/north/northwest) -"OP" = ( +"aOP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/inside/caves/caverns/west) -"OQ" = ( +"aOQ" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/four_north) -"OS" = ( +"aOR" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aOS" = ( /obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/cic) -"OT" = ( +"aOT" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north/northwest) -"OU" = ( +"aOU" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/river) -"OV" = ( +"aOV" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river) -"OX" = ( +"aOW" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "trash" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/obj/structure/machinery/recycler/whiskey{ + recycle_dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/engineering) +"aOX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost) -"OY" = ( +"aOY" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) -"OZ" = ( -/turf/open/floor/asteroidfloor/north, +"aOZ" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/lane/three_south) -"Pc" = ( +"aPa" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"aPb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aPc" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/three_north) -"Pd" = ( +"aPd" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; icon_state = "warning_s" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"Pe" = ( +"aPe" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/beach) -"Pg" = ( +"aPf" = ( +/turf/open/gm/dirt/desert3, +/area/whiskey_outpost/inside/caves/caverns/west) +"aPg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/beach) -"Ph" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, +"aPh" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin8" + }, /area/whiskey_outpost/outside/lane/four_north) -"Pi" = ( +"aPi" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/platform{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Pk" = ( +"aPj" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aPk" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river/east) -"Pl" = ( +"aPl" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Pm" = ( +"aPm" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/three_north) -"Pp" = ( +"aPn" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aPo" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"aPp" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Pq" = ( +"aPq" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Pr" = ( +"aPr" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"Ps" = ( +"aPs" = ( /obj/item/ammo_casing{ dir = 5; icon_state = "cartridge_10" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"Pt" = ( +"aPt" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) -"Pu" = ( +"aPu" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"Pw" = ( -/turf/open/gm/dirt/desert1, +"aPv" = ( +/obj/item/cell/high, +/turf/open/shuttle/dropship/light_grey_middle, +/area/whiskey_outpost/outside/lane/four_north) +"aPw" = ( +/turf/open/gm/dirt{ + icon_state = "desert1" + }, /area/whiskey_outpost/outside/lane/two_south) -"Px" = ( +"aPx" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"Pz" = ( +"aPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aPz" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin6" }, /area/whiskey_outpost/outside/lane/four_north) -"PA" = ( +"aPA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"PB" = ( +"aPB" = ( /obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, /area/whiskey_outpost/inside/cic) -"PC" = ( +"aPC" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"PD" = ( +"aPD" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/lane/four_north) -"PE" = ( +"aPE" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/river) -"PF" = ( +"aPF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/lane/four_south) -"PG" = ( +"aPG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/lane/two_south) -"PH" = ( +"aPH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/three_north) -"PL" = ( +"aPI" = ( +/obj/effect/landmark/start/whiskey/maint, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aPJ" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"aPK" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aPL" = ( /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_north) -"PM" = ( +"aPM" = ( /turf/open/floor/plating/plating_catwalk, /area/whiskey_outpost/inside/cic) -"PN" = ( +"aPN" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"PO" = ( +"aPO" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) -"PP" = ( +"aPP" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) -"PQ" = ( +"aPQ" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"PR" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/engineering) -"PT" = ( +"aPR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/cic) +"aPS" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/beach) +"aPT" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/whitegreen/southwest, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"PU" = ( +"aPU" = ( /obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"PV" = ( +"aPV" = ( /obj/structure/machinery/door/airlock/hatch{ name = "Dropship Hatch" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"PW" = ( +"aPW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"PX" = ( +"aPX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_north) -"PY" = ( +"aPY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"Qa" = ( +"aPZ" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aQa" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"Qc" = ( +"aQb" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 1 + }, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/one_south) +"aQc" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/east) -"Qe" = ( +"aQd" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aQe" = ( /turf/open/floor, /area/whiskey_outpost/outside/south/far) -"Qf" = ( +"aQf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"Qg" = ( +"aQg" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin3" }, /area/whiskey_outpost/outside/lane/four_north) -"Qi" = ( +"aQh" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/bunker) +"aQi" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south) -"Ql" = ( +"aQj" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/m56d, +/obj/effect/landmark/wo_supplies/storage/m56d, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aQk" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/platform) +"aQl" = ( /obj/item/lightstick/red/planted, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north/beach) -"Qm" = ( +"aQm" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 1 }, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"Qn" = ( +"aQn" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south/far) -"Qo" = ( +"aQo" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"Qp" = ( +"aQp" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"Qq" = ( +"aQq" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north/northwest) -"Qs" = ( +"aQr" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aQs" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/prison/cell_stripe/west, +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker) -"Qt" = ( +"aQt" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south/far) -"Qv" = ( +"aQu" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/supply) +"aQv" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Qw" = ( +"aQw" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/outside/lane/two_north) -"Qy" = ( +"aQx" = ( +/obj/structure/machinery/m56d_hmg/mg_turret, +/turf/open/floor/plating/warnplate, +/area/whiskey_outpost/outside/north/beach) +"aQy" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/outside/lane/three_north) -"QA" = ( +"aQz" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aQA" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"QB" = ( +"aQB" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_north) -"QD" = ( +"aQC" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/whiskey_outpost/inside/bunker) +"aQD" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/river/east) -"QF" = ( +"aQE" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aQF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; pixel_x = 1; pixel_y = 18 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"QG" = ( +"aQG" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, /area/whiskey_outpost/inside/living) -"QH" = ( +"aQH" = ( /obj/structure/cargo_container/grant/right, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"QJ" = ( +"aQI" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/whiskey_outpost/outside/north/northeast) +"aQJ" = ( /turf/open/gm/grass/gbcorner/north_west, /area/whiskey_outpost/outside/lane/one_north) -"QL" = ( +"aQK" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"aQL" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/two_north) -"QM" = ( +"aQM" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/river/east) -"QO" = ( +"aQN" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital) +"aQO" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"QR" = ( -/turf/open/gm/dirt/desert3, +"aQP" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, +/area/whiskey_outpost/outside/south/very_far) +"aQQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aQR" = ( +/turf/open/gm/dirt{ + icon_state = "desert3" + }, /area/whiskey_outpost/inside/caves/caverns/west) -"QS" = ( +"aQS" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north/northwest) -"QU" = ( +"aQT" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/orange/southwest, +/area/whiskey_outpost/inside/cic) +"aQU" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -9181,24 +15118,24 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"QV" = ( +"aQV" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"QW" = ( +"aQW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/inside/caves/caverns/west) -"QX" = ( +"aQX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/north) -"QY" = ( +"aQY" = ( /obj/structure/platform_decoration, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"QZ" = ( +"aQZ" = ( /obj/structure/platform{ dir = 4 }, @@ -9208,28 +15145,34 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"Ra" = ( +"aRa" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"Rc" = ( +"aRb" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital/triage) +"aRc" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"Rd" = ( +"aRd" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"Re" = ( +"aRe" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/outside/lane/three_north) -"Rf" = ( +"aRf" = ( /obj/structure/machinery/shower{ dir = 8; layer = 3.3 @@ -9237,132 +15180,264 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Rg" = ( +"aRg" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Rh" = ( +"aRh" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 9 }, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"Ri" = ( +"aRi" = ( /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/north/northwest) -"Rm" = ( +"aRj" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aRk" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/closed/wall/r_wall, +/area/whiskey_outpost/inside/bunker) +"aRl" = ( +/obj/item/storage/box/explosive_mines, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/one_north) +"aRm" = ( /obj/structure/disposalpipe/segment, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"Rn" = ( +"aRn" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/inside/caves/caverns/west) -"Ro" = ( +"aRo" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) -"Rr" = ( +"aRp" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"aRq" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aRr" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"Rw" = ( +"aRs" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/cell_stripe/east, +/area/whiskey_outpost/inside/bunker) +"aRt" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/effect/landmark/start/whiskey/maint, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aRu" = ( +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"aRv" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 8; + req_one_access_txt = "2;21" + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/northleft{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aRw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/north) -"Rx" = ( +"aRx" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Rz" = ( +"aRy" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aRz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) -"RA" = ( +"aRA" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"RB" = ( +"aRB" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"RC" = ( +"aRC" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"RD" = ( +"aRD" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"RG" = ( +"aRE" = ( +/turf/open/gm/dirt/desert1, +/area/whiskey_outpost/inside/caves/caverns/west) +"aRF" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aRG" = ( /turf/open/gm/grass/gbcorner/north_east, /area/whiskey_outpost/outside/north/northwest) -"RH" = ( +"aRH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/north/northwest) -"RK" = ( +"aRI" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/beach) +"aRJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/engineering) +"aRK" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) -"RL" = ( +"aRL" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) -"RM" = ( +"aRM" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"RN" = ( +"aRN" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"RO" = ( +"aRO" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/river/east) -"RP" = ( +"aRP" = ( /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/south) -"RR" = ( +"aRQ" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "docstripingdir" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"aRR" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"RS" = ( +"aRS" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/one_north) -"RU" = ( -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/asteroidfloor/north, +"aRT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aRU" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area) -"RV" = ( +"aRV" = ( /obj/item/storage/box/m94, -/turf/open/shuttle/dropship/light_grey_left_to_right, +/turf/open/shuttle/dropship{ + icon_state = "rasputin5" + }, /area/whiskey_outpost/outside/lane/four_north) -"RW" = ( +"aRW" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river) -"RX" = ( +"aRX" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Sa" = ( +"aRY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aRZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aSa" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river) -"Sb" = ( +"aSb" = ( /obj/structure/platform, /obj/structure/platform{ dir = 4 @@ -9372,18 +15447,38 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"Se" = ( +"aSc" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plating/warnplate, +/area/whiskey_outpost/outside/lane/one_north) +"aSd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + no_panel = 1; + not_weldable = 1; + req_one_access_txt = "2;21" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/supply) +"aSe" = ( /obj/structure/sign/safety/four, /obj/structure/sign/safety/ammunition{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Sf" = ( +"aSf" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, /area/whiskey_outpost/outside/lane/four_north) -"Sh" = ( +"aSg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/autoname{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aSh" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/marine/delta{ dir = 1; @@ -9391,12 +15486,15 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Si" = ( +"aSi" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/south) -"Sj" = ( +"aSj" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; icon_state = "warning_s" @@ -9404,33 +15502,45 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"Sl" = ( +"aSk" = ( +/obj/effect/landmark/start/whiskey/engineer, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aSl" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Sm" = ( +"aSm" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/emeraldfull, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, /area/whiskey_outpost/outside/lane/two_north) -"Sn" = ( +"aSn" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Triage"; req_access = null; req_one_access = null }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital/triage) -"So" = ( +"aSo" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/outside/lane/two_north) -"Sp" = ( +"aSp" = ( /obj/structure/filingcabinet{ density = 0; pixel_x = 8; @@ -9443,87 +15553,146 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"Sq" = ( +"aSq" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/north/northwest) -"Ss" = ( +"aSr" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital/triage) +"aSs" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"Sx" = ( +"aSt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/whiskey/bridge, +/turf/open/floor/almayer/orange/northwest, +/area/whiskey_outpost/inside/cic) +"aSu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = 30; + req_access = null + }, +/obj/structure/sign/nosmoking_2{ + dir = 1; + pixel_y = 28 + }, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital/triage) +"aSv" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aSw" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/blue, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/north) +"aSx" = ( /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/north/northwest) -"Sy" = ( +"aSy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/lane/three_south) -"Sz" = ( +"aSz" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"SA" = ( +"aSA" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/river/east) -"SB" = ( +"aSB" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/four) -"SC" = ( +"aSC" = ( /obj/structure/closet, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital) -"SE" = ( +"aSD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital/triage) +"aSE" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/inside/caves/caverns/east) -"SF" = ( +"aSF" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) -"SG" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/prison/floor_plate/southwest, +"aSG" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"SH" = ( +"aSH" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"SI" = ( +"aSI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/inside/caves/caverns/east) -"SJ" = ( +"aSJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"SK" = ( +"aSK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"SL" = ( +"aSL" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_south) -"SN" = ( +"aSM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/facepaint/green, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aSN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/outside/south/far) -"SO" = ( +"aSO" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, /area/whiskey_outpost/outside/lane/three_north) -"SP" = ( +"aSP" = ( /obj/structure/machinery/light/small{ dir = 1 }, @@ -9531,42 +15700,67 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"SQ" = ( +"aSQ" = ( /obj/structure/platform{ dir = 4 }, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"SS" = ( +"aSR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/item/tool/screwdriver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aSS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"ST" = ( +"aST" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"SU" = ( +"aSU" = ( /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/south) -"SW" = ( +"aSV" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aSW" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"SX" = ( +"aSX" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"SY" = ( +"aSY" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -9574,21 +15768,31 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"SZ" = ( +"aSZ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) -"Ta" = ( +"aTa" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/gm/grass/gbcorner/north_west, /area/whiskey_outpost/outside/north/northwest) -"Tc" = ( +"aTb" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 8; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aTc" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/east) -"Td" = ( +"aTd" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 @@ -9596,19 +15800,39 @@ /obj/structure/mirror{ pixel_x = -32 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Te" = ( +"aTe" = ( /obj/structure/barricade/metal/wired, /obj/structure/machinery/m56d_hmg/mg_turret, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aTf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/marine/autoname, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"Th" = ( +"aTg" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/whiskey_outpost/inside/supply) +"aTh" = ( /obj/item/lightstick/red/planted, /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"Tj" = ( +"aTi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aTj" = ( /obj/structure/barricade/metal/wired, /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -9616,93 +15840,165 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"Tk" = ( -/turf/open/floor/prison/floor_plate/southwest, +"aTk" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Tl" = ( +"aTl" = ( /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"Tm" = ( +"aTm" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Tn" = ( +"aTn" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"To" = ( +"aTo" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/east) -"Tp" = ( +"aTp" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha{ dir = 1; name = "\improper Pillbox Bourbon"; req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Tr" = ( +"aTq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Triage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital/triage) +"aTr" = ( /obj/item/stool, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"Ts" = ( +"aTs" = ( /obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south/far) -"Tt" = ( +"aTt" = ( /obj/structure/sign/safety/one, /obj/structure/sign/safety/ammunition{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Tv" = ( +"aTu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidwarning, +/area/whiskey_outpost/outside/north/platform) +"aTv" = ( /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"Tw" = ( -/turf/open/floor/prison/floor_plate/southwest, +"aTw" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Tz" = ( +"aTx" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aTy" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/east, +/area/whiskey_outpost/outside/north/beach) +"aTz" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 4 }, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/very_far) -"TA" = ( +"aTA" = ( /obj/structure/machinery/light/small, /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/hypospray, /obj/item/reagent_container/hypospray, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/whitegreen, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"TC" = ( +"aTB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aTC" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"TD" = ( +"aTD" = ( /obj/item/weapon/sword/machete, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/north) -"TE" = ( +"aTE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/leader, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"TH" = ( +"aTF" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aTG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost) +"aTH" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"TI" = ( +"aTI" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/marine/alpha{ dir = 1; @@ -9710,12 +16006,39 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"TL" = ( +"aTJ" = ( +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aTK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aTL" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/north) -"TP" = ( +"aTM" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aTN" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/outside/lane/two_north) +"aTO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aTP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/line_nexter_control{ id = "WOline2"; @@ -9730,47 +16053,70 @@ pixel_y = -2; req_one_access_txt = "2;21" }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/supply) -"TQ" = ( +"aTQ" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = 7; pixel_y = 3 }, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/two_south) -"TS" = ( +"aTR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aTS" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin_light" }, /area/whiskey_outpost/outside/lane/four_north) -"TT" = ( +"aTT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"TU" = ( +"aTU" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/river) -"TW" = ( +"aTV" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"aTW" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1; name = "\improper Pillbox Wine"; req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"TX" = ( +"aTX" = ( /obj/structure/fence, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns/east) -"TY" = ( +"aTY" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -9778,34 +16124,59 @@ /obj/structure/curtain, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"TZ" = ( +"aTZ" = ( /obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"Ua" = ( +"aUa" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"Ud" = ( -/obj/structure/disposalpipe/sortjunction{ - sortType = "Pillbox Wine" - }, +"aUb" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aUc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aUd" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = "Pillbox Wine" + }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Ue" = ( +"aUe" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/outside/lane/three_north) -"Uf" = ( +"aUf" = ( /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/lane/one_south) -"Ug" = ( +"aUg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/three_south) -"Uh" = ( +"aUh" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Triage"; req_access = null; @@ -9814,161 +16185,301 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital/triage) -"Ui" = ( +"aUi" = ( /obj/item/roller, /obj/item/roller, /obj/item/roller, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Uk" = ( +"aUj" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/outside/lane/three_north) +"aUk" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; sortType = "Pillbox Vodka" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Un" = ( +"aUl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/whiskey/medic, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aUm" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aUn" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Uo" = ( +"aUo" = ( /obj/item/storage/box/explosive_mines, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/one_north) -"Up" = ( +"aUp" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Uq" = ( +"aUq" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/three_north) -"Ur" = ( +"aUr" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) -"Us" = ( +"aUs" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/three_north) -"Ut" = ( +"aUt" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Uu" = ( +"aUu" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Uw" = ( +"aUv" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/four_south) +"aUw" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Uy" = ( +"aUx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/two_north) +"aUy" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"Uz" = ( +"aUz" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/three_north) -"UB" = ( +"aUA" = ( +/obj/item/storage/box/m56d_hmg, +/turf/open/floor/plating/platebot, +/area/whiskey_outpost/outside/lane/one_north) +"aUB" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"UC" = ( +"aUC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"UF" = ( +"aUD" = ( +/obj/structure/machinery/door/airlock/hatch{ + name = "Dropship Hatch" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/whiskey_outpost/outside/lane/four_north) +"aUE" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aUF" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/lane/four_north) -"UH" = ( +"aUG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -32 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aUH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"UJ" = ( +"aUI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aUJ" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"UK" = ( +"aUK" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"UL" = ( +"aUL" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"UN" = ( +"aUM" = ( +/turf/open/floor/almayer/red/southwest, +/area/whiskey_outpost/inside/cic) +"aUN" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"UO" = ( +"aUO" = ( /obj/item/lightstick/red/planted, /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) -"UP" = ( +"aUP" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/south) -"UR" = ( +"aUQ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"aUR" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"US" = ( +"aUS" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"UW" = ( +"aUT" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south/far) +"aUU" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital/triage) +"aUV" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aUW" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"UX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/prison/floor_plate/southwest, +"aUX" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"UY" = ( +"aUY" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/two_south) -"UZ" = ( +"aUZ" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, /area/whiskey_outpost/outside/lane/two_north) -"Va" = ( +"aVa" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -9976,53 +16487,85 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"Vb" = ( +"aVb" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/three_north) -"Vd" = ( +"aVc" = ( +/obj/effect/landmark/start/whiskey/smartgunner, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aVd" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_south) -"Ve" = ( +"aVe" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/three_north) -"Vg" = ( +"aVf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aVg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/inside/caves/caverns/east) -"Vh" = ( -/turf/open/jungle/impenetrable/grass_clear, +"aVh" = ( +/turf/open/jungle/impenetrable{ + icon_state = "grass_clear" + }, /area/whiskey_outpost/outside/south/very_far) -"Vi" = ( -/turf/open/jungle/impenetrable, +"aVi" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/north) -"Vj" = ( +"aVj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/surface/table, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"Vk" = ( +"aVk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/north) -"Vl" = ( +"aVl" = ( /obj/structure/bed/chair, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"Vm" = ( -/turf/open/floor/prison/cell_stripe/east, +"aVm" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/caves/tunnel) -"Vo" = ( +"aVn" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/three_south) +"aVo" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/one_south) -"Vp" = ( +"aVp" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, /area/whiskey_outpost/outside/lane/four_north) -"Vq" = ( +"aVq" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/blue/southeast, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, /area/whiskey_outpost/inside/cic) -"Vr" = ( +"aVr" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 @@ -10032,64 +16575,92 @@ /obj/item/packageWrap, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"Vt" = ( +"aVs" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aVt" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/north) -"Vu" = ( +"aVu" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"Vv" = ( +"aVv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/north) -"Vw" = ( +"aVw" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) -"Vx" = ( +"aVx" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 1 }, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"Vy" = ( +"aVy" = ( /obj/structure/machinery/cm_vending/clothing/synth, /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"Vz" = ( +"aVz" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south/far) -"VC" = ( +"aVA" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"aVB" = ( +/obj/structure/machinery/conveyor_switch/oneway{ + id = "trash" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aVC" = ( /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_south) -"VD" = ( +"aVD" = ( /obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/four_south) -"VE" = ( +"aVE" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 5 }, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"VF" = ( +"aVF" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; @@ -10098,44 +16669,72 @@ }, /turf/open/floor/plating, /area/whiskey_outpost/inside/supply) -"VH" = ( +"aVG" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north) +"aVH" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"VI" = ( +"aVI" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"VJ" = ( +"aVJ" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"VK" = ( +"aVK" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/three_south) -"VL" = ( +"aVL" = ( /obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/whitegreen/north, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"VM" = ( +"aVM" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/caves) -"VN" = ( +"aVN" = ( /obj/effect/landmark/start/whiskey/marine, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"VO" = ( +"aVO" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/three_north) -"VP" = ( +"aVP" = ( /obj/item/toy/beach_ball/holoball, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"VQ" = ( +"aVQ" = ( /obj/structure/platform{ dir = 1 }, @@ -10147,38 +16746,63 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"VR" = ( +"aVR" = ( /obj/structure/surface/rack, /obj/item/device/binoculars, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"VS" = ( +"aVS" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"VT" = ( +"aVT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) -"VU" = ( -/turf/open/gm/dirt/desert1, +"aVU" = ( +/turf/open/gm/dirt{ + icon_state = "desert1" + }, /area/whiskey_outpost/inside/caves/caverns/west) -"VV" = ( +"aVV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/lane/two_south) -"VX" = ( +"aVW" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aVX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_south) -"Wa" = ( +"aVY" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/northeast, +/area/whiskey_outpost/outside/north/beach) +"aVZ" = ( +/obj/effect/landmark/start/whiskey/smartgunner, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aWa" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/two_south) -"Wb" = ( +"aWb" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" @@ -10186,138 +16810,119 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Wc" = ( +"aWc" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor/whitegreen/southeast, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"Wd" = ( +"aWd" = ( /obj/item/weapon/gun/rifle/m41a, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_south) -"We" = ( +"aWe" = ( /turf/closed/wall, /area/whiskey_outpost/outside/south/far) -"Wf" = ( +"aWf" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Wg" = ( +"aWg" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/bunker/pillbox/one) -"Wj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 +/area/whiskey_outpost/inside/bunker/pillbox/one) +"aWh" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/turf/open/floor/whitegreen/northeast, -/area/whiskey_outpost/inside/hospital) -"Wk" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/three_south) +"aWi" = ( +/turf/open/floor/plating/warnplate/north, +/area/whiskey_outpost/outside/north/northeast) +"aWj" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aWk" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"Wl" = ( +"aWl" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin3" }, /area/whiskey_outpost/outside/lane/four_south) -"Wm" = ( +"aWm" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Wn" = ( +"aWn" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/jungle, /area/whiskey_outpost/outside/north) -"Wo" = ( +"aWo" = ( /obj/item/stack/cable_coil, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Wp" = ( +"aWp" = ( /obj/structure/sign/safety/two, /obj/structure/sign/safety/ammunition{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"Wr" = ( +"aWq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital/triage) +"aWr" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"Ws" = ( +"aWs" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle/impenetrable, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/two_south) -"Wu" = ( +"aWt" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/southeast, +/area/whiskey_outpost/outside/north/beach) +"aWu" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1; @@ -10325,83 +16930,144 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"Wv" = ( +"aWv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/three_north) -"Wx" = ( +"aWw" = ( +/obj/structure/surface/rack, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/three_south) +"aWx" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"Wz" = ( -/turf/open/gm/dirt/desert2, +"aWy" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/machete, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aWz" = ( +/turf/open/gm/dirt{ + icon_state = "desert2" + }, /area/whiskey_outpost/inside/caves/caverns/west) -"WA" = ( +"aWA" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitegreen/northwest, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital) -"WC" = ( +"aWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"aWC" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"WD" = ( +"aWD" = ( /obj/structure/fence, /turf/open/jungle, /area/whiskey_outpost/outside/south/far) -"WE" = ( +"aWE" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin7" }, /area/whiskey_outpost/outside/lane/four_north) -"WI" = ( +"aWF" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aWG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) +"aWH" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/warnplate/north, +/area/whiskey_outpost/outside/north/beach) +"aWI" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital/triage) -"WJ" = ( +"aWJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north) -"WK" = ( +"aWK" = ( /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/plating/plating_catwalk, /area/whiskey_outpost/inside/cic) -"WL" = ( +"aWL" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/north) -"WM" = ( +"aWM" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/south/very_far) -"WN" = ( +"aWN" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/inside/caves/caverns/east) -"WO" = ( +"aWO" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/inside/caves/caverns/west) -"WP" = ( +"aWP" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"WR" = ( +"aWQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/whiskey_outpost/inside/bunker) +"aWR" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"WS" = ( +"aWS" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -10409,221 +17075,402 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"WT" = ( +"aWT" = ( /obj/structure/sign/safety/three, /obj/structure/sign/safety/ammunition{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/three) -"WV" = ( +"aWU" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison, +/area/whiskey_outpost/inside/living) +"aWV" = ( /obj/effect/landmark/start/whiskey/requisition, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"WX" = ( +"aWW" = ( +/obj/effect/landmark/whiskey_outpost/supplydrops, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/supply) +"aWX" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"WY" = ( +"aWY" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"WZ" = ( +"aWZ" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; sortType = "Pillbox Beer" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Xd" = ( +"aXa" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/supply) +"aXb" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = "Western Platform" + }, +/obj/effect/landmark/start/whiskey/smartgunner, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aXc" = ( +/obj/item/storage/box/explosive_mines, +/turf/open/floor/plating/warnplate/north, +/area/whiskey_outpost/outside/lane/one_north) +"aXd" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/two_south) -"Xe" = ( +"aXe" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Xg" = ( +"aXf" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aXg" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"Xi" = ( +"aXh" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/obj/structure/machinery/defenses/sentry/premade, +/turf/open/floor/asteroidwarning/southeast, +/area/whiskey_outpost/outside/north/platform) +"aXi" = ( /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating/asteroidwarning/southwest, +/turf/open/floor/plating{ + dir = 10; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/north/platform) -"Xj" = ( +"aXj" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Xk" = ( +"aXk" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_south) -"Xl" = ( +"aXl" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Xm" = ( -/turf/open/floor/prison/floor_plate/southwest, +"aXm" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Xn" = ( +"aXn" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/river/east) -"Xo" = ( +"aXo" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"Xq" = ( +"aXp" = ( /turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/north/northwest) +"aXq" = ( +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, /area/whiskey_outpost/outside/lane/two_north) -"Xr" = ( +"aXr" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_south) -"Xx" = ( +"aXs" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/outside/lane/two_north) +"aXt" = ( +/obj/structure/machinery/floodlight{ + light_on = 1 + }, +/turf/open/floor/plating/asteroidwarning/southwest, +/area/whiskey_outpost/outside/north/platform) +"aXu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker) +"aXv" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aXw" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aXx" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) -"Xy" = ( +"aXy" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north) -"Xz" = ( +"aXz" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin5" }, /area/whiskey_outpost/outside/lane/four_north) -"XA" = ( +"aXA" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/machinery/light/small, /obj/structure/machinery/disposal, -/turf/open/floor/whitegreen, +/turf/open/floor{ + icon_state = "whitegreen" + }, /area/whiskey_outpost/inside/hospital/triage) -"XB" = ( +"aXB" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin0" }, /area/whiskey_outpost/outside/lane/four_north) -"XD" = ( +"aXC" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/whiskey_outpost/inside/supply) +"aXD" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"XF" = ( +"aXE" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"aXF" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"XG" = ( +"aXG" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_y = -5 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"XH" = ( +"aXH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"XI" = ( +"aXI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/bed/roller, -/turf/open/floor/whitegreenfull, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, /area/whiskey_outpost/inside/hospital/triage) -"XK" = ( +"aXJ" = ( +/turf/open/floor/whitegreencorner/west, +/area/whiskey_outpost/inside/hospital) +"aXK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"XM" = ( +"aXL" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/beach) +"aXM" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"XN" = ( +"aXN" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/two_south) -"XO" = ( +"aXO" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/supply) -"XP" = ( +"aXP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"XQ" = ( +"aXQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"XR" = ( +"aXR" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"XS" = ( +"aXS" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/marine, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"XV" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/prison/floor_plate/southwest, +"aXT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital) +"aXU" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Triage"; + req_access = null; + req_one_access = null + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital/triage) +"aXV" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"XW" = ( +"aXW" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin4" }, /area/whiskey_outpost/outside/lane/four_north) -"XY" = ( +"aXX" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aXY" = ( /turf/closed/shuttle/dropship, /area/whiskey_outpost/outside/lane/four_north) -"XZ" = ( +"aXZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/three_south) -"Yc" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/dirtgrassborder/north, -/area/whiskey_outpost/outside/north) -"Yd" = ( -/obj/structure/barricade/sandbags/wired{ +"aYa" = ( +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 4; + icon_state = "towergun" + }, +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/platform) +"aYb" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "crate" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/supply) +"aYc" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/dirtgrassborder/north, +/area/whiskey_outpost/outside/north) +"aYd" = ( +/obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"Ye" = ( +"aYe" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Yg" = ( +"aYf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"aYg" = ( /obj/structure/holohoop{ dir = 8; id = "basketball"; @@ -10633,66 +17480,102 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"Yj" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/prison/floor_plate/southwest, +"aYh" = ( +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"aYi" = ( +/turf/open/floor/whitegreencorner/north, +/area/whiskey_outpost/inside/hospital) +"aYj" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Yk" = ( +"aYk" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Yl" = ( +"aYl" = ( /obj/structure/barricade/metal/wired, /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"Yn" = ( +"aYm" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/guns/common/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aYn" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Yo" = ( +"aYo" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) -"Yp" = ( +"aYp" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"Yq" = ( -/turf/open/floor/prison/floor_marked/southwest, +"aYq" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Yr" = ( +"aYr" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"Ys" = ( +"aYs" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"Yt" = ( +"aYt" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin14" }, /area/whiskey_outpost/outside/lane/four_north) -"Yu" = ( +"aYu" = ( /obj/item/clothing/under/marine{ pixel_x = 8; pixel_y = 6 }, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"Yw" = ( +"aYv" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/three_south) +"aYw" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"Yy" = ( +"aYx" = ( +/obj/structure/largecrate/supply/supplies/sandbags, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aYy" = ( /obj/structure/platform{ dir = 4 }, @@ -10704,7 +17587,16 @@ }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"YA" = ( +"aYz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aYA" = ( /obj/structure/platform{ dir = 8 }, @@ -10716,7 +17608,7 @@ }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"YB" = ( +"aYB" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, @@ -10728,79 +17620,145 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"YE" = ( +"aYC" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/lane/three_south) +"aYD" = ( +/obj/structure/machinery/defenses/sentry/premade, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/three) +"aYE" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"YF" = ( +"aYF" = ( /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"YH" = ( +"aYG" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/south/far) +"aYH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/inside/caves/caverns/west) -"YI" = ( +"aYI" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"YK" = ( +"aYJ" = ( +/turf/open/gm/dirt/desert1, +/area/whiskey_outpost/outside/lane/two_south) +"aYK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"YL" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, +"aYL" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin4" + }, /area/whiskey_outpost/outside/lane/four_north) -"YM" = ( +"aYM" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_south) -"YN" = ( +"aYN" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"YP" = ( +"aYO" = ( +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital/triage) +"aYP" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"YR" = ( +"aYQ" = ( +/obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aYR" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"YT" = ( +"aYS" = ( +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"aYT" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/three_south) -"YV" = ( +"aYU" = ( +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/inside/caves/caverns/west) +"aYV" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/river) -"YY" = ( +"aYW" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/two) +"aYX" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/whiskey_outpost/outside/lane/four_north) +"aYY" = ( /turf/closed/shuttle/dropship{ dir = 1; icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_south) -"YZ" = ( +"aYZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"Zb" = ( +"aZa" = ( +/obj/structure/machinery/autodoc_console, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"aZb" = ( /obj/structure/prop/dam/truck/mining, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Zc" = ( +"aZc" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = 11; pixel_y = 7 @@ -10816,44 +17774,54 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Zd" = ( +"aZd" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"Ze" = ( +"aZe" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; pixel_x = -30; req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/three) -"Zf" = ( +"aZf" = ( /turf/closed/wall/strata_ice/jungle, /area/whiskey_outpost/inside/caves) -"Zg" = ( +"aZg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/cell_stripe/east, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Zh" = ( +"aZh" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) -"Zi" = ( +"aZi" = ( /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/lane/two_north) -"Zj" = ( +"aZj" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) -"Zl" = ( +"aZk" = ( +/obj/structure/machinery/door/window/northleft, +/turf/open/floor/prison/darkyellowfull2/east, +/area/whiskey_outpost/inside/engineering) +"aZl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/screwdriver{ pixel_x = -7; @@ -10866,143 +17834,211 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/south) -"Zm" = ( +"aZm" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/obj/structure/medical_supply_link, -/turf/open/floor/white, +/turf/open/floor{ + icon_state = "white" + }, /area/whiskey_outpost/inside/hospital) -"Zn" = ( +"aZn" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) -"Zo" = ( +"aZo" = ( /turf/open/floor/plating, /area/whiskey_outpost/outside/lane/four_south) -"Zp" = ( +"aZp" = ( /turf/closed/shuttle/dropship{ dir = 4; icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_north) -"Zq" = ( +"aZq" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta{ dir = 1; name = "\improper Pillbox Tequila"; req_access = null; req_one_access = null }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Zr" = ( +"aZr" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Zs" = ( +"aZs" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/lane/one_south) -"Zt" = ( +"aZt" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"Zv" = ( +"aZu" = ( +/obj/effect/landmark/start/whiskey/marine, +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aZv" = ( /obj/structure/bed/chair, /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) -"Zw" = ( +"aZw" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_north) -"Zx" = ( +"aZx" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"Zy" = ( +"aZy" = ( /obj/effect/spawner/random/tool, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/bunker/front) -"Zz" = ( +"aZz" = ( /obj/structure/sign/safety/north, /obj/structure/sign/safety/bridge{ pixel_x = 15 }, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/caves) -"ZA" = ( +"aZA" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"ZB" = ( +"aZB" = ( /obj/structure/fence, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"ZC" = ( +"aZC" = ( /obj/structure/grille{ density = 0; icon_state = "brokengrille" }, -/turf/open/shuttle/black, +/turf/open/shuttle{ + icon_state = "floor7" + }, /area/whiskey_outpost/outside/lane/four_north) -"ZE" = ( +"aZD" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/jungle/impenetrable, +/area/whiskey_outpost/outside/lane/three_north) +"aZE" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"ZF" = ( +"aZF" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/far) -"ZG" = ( +"aZG" = ( /obj/structure/sign/safety/medical{ name = "\improper Triage Center"; pixel_x = 14 }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital/triage) -"ZH" = ( +"aZH" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) -"ZI" = ( +"aZI" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/one) -"ZJ" = ( +"aZJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"ZK" = ( -/turf/open/floor/asteroidwarning/west, +"aZK" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, /area/whiskey_outpost/outside/lane/four_north) -"ZL" = ( +"aZL" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/lane/four_south) -"ZN" = ( +"aZM" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 1 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital/triage) +"aZN" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"ZP" = ( +"aZO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/whiskey_outpost/inside/cic) +"aZP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/one_north) -"ZQ" = ( +"aZQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"ZT" = ( +"aZR" = ( +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 8; + icon_state = "towergun" + }, +/turf/open/floor/asteroidwarning/west, +/area/whiskey_outpost/outside/north/platform) +"aZS" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/living) +"aZT" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/far) -"ZU" = ( -/turf/open/floor/prison/floor_plate/southwest, +"aZU" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, /area/whiskey_outpost/inside/bunker/pillbox/two) -"ZV" = ( +"aZV" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" @@ -11015,14 +18051,17 @@ icon_state = "warning_s" }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, /area/whiskey_outpost/outside/north) -"ZW" = ( +"aZW" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin10" }, /area/whiskey_outpost/outside/lane/four_north) -"ZX" = ( +"aZX" = ( /obj/structure/platform{ dir = 8 }, @@ -11035,26264 +18074,27522 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) +"aZY" = ( +/obj/item/storage/box/explosive_mines, +/turf/open/floor/plating/platebot, +/area/whiskey_outpost/outside/lane/one_north) +"aZZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellow2, +/area/whiskey_outpost/inside/supply) +"bhG" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"buJ" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"bAA" = ( +/obj/structure/machinery/cm_vending/clothing/commanding_officer, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"bCD" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "South-Eastern Platform" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"bEn" = ( +/obj/structure/machinery/optable, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"bNC" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "radar computer" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"bOz" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"bYH" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Medical Storage"; + req_access_txt = "20"; + req_one_access = null + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"ciN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"cmT" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"cpR" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"cCN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/squad_changer{ + dir = 1; + layer = 2.99 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"cGb" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"cHV" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"cRi" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"cXl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"cXn" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + sortType = "Hospital" + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"cZI" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"daj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"dkM" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light/small, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"dpU" = ( +/obj/structure/curtain/black, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"dvi" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + dir = 1; + pixel_y = 28 + }, +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"dyE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"dGE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) +"dIc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"dOA" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "Operating Theatre"; + req_one_access_txt = "2;8;19" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"eER" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital) +"eHP" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"eKz" = ( +/obj/structure/closet/secure_closet/bar{ + name = "Success Cabinet"; + req_access_txt = "1" + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"eVo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"feV" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link/green, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital) +"fpj" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"fpw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/whiskey/bridge, +/turf/open/floor/almayer/emerald/northeast, +/area/whiskey_outpost/inside/cic) +"fsh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/obj/structure/medical_supply_link, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"fui" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"fAi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/reagent_scanner, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"fTP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"gjC" = ( +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"gyR" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"gDI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"gOM" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/kitchen/southwest, +/area/whiskey_outpost/inside/living) +"hah" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"hkD" = ( +/obj/effect/landmark/start/whiskey/warrant, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"hmV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"hoD" = ( +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/whiskey_outpost/inside/cic) +"hoW" = ( +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital) +"hFh" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"hGg" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"iar" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"ibP" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "Hypersleep Room"; + req_one_access_txt = "2;8;19" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"idz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"idF" = ( +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"iuC" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"iPs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"iUH" = ( +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"iZs" = ( +/obj/structure/curtain/black, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"jcw" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link/green, +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital) +"jcz" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"jeO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/living) +"jiE" = ( +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital) +"jjS" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"jwc" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/landmark/start/whiskey/commander, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"kbQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital) +"kwf" = ( +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"kwI" = ( +/obj/structure/curtain/shower, +/turf/open/floor/prison/sterile_white, +/area/whiskey_outpost/inside/living) +"kAa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/healthanalyzer, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"kMG" = ( +/obj/structure/curtain, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"lbA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/whiskey/bridge, +/turf/open/floor/almayer/red/northwest, +/area/whiskey_outpost/inside/cic) +"ldS" = ( +/obj/structure/curtain/black, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"lfL" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"lgr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) +"liJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"lkD" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"lne" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pillbottles{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/hypospray, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital) +"lFE" = ( +/obj/structure/bed/stool, +/obj/effect/landmark/start/whiskey/researcher, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"lJn" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/whiskey_outpost/inside/caves/tunnel) +"mhD" = ( +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.3 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/whiskey_outpost/inside/living) +"mhS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/hypospray, +/obj/item/weapon/gun/pill, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"mGm" = ( +/obj/structure/curtain/black, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"mWg" = ( +/obj/effect/landmark/start/whiskey/researcher, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"nhN" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"nrq" = ( +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"nwy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital) +"nwH" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"nDl" = ( +/obj/structure/machinery/chem_dispenser, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital) +"oik" = ( +/obj/structure/machinery/chem_master{ + tether_range = 4 + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"orX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/computer/overwatch/almayer{ + layer = 3.2; + pixel_y = 20 + }, +/obj/item/tool/pen, +/obj/item/paper_bin, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"osg" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"oxC" = ( +/obj/structure/mirror{ + pixel_y = 30 + }, +/turf/open/floor/prison/kitchen, +/area/whiskey_outpost/inside/cic) +"oxJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) +"oxY" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"oIU" = ( +/obj/structure/window/reinforced/tinted/frosted, +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/whiskey_outpost/inside/cic) +"oKh" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"oNl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/white, +/area/whiskey_outpost/inside/hospital) +"oNI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreencorner, +/area/whiskey_outpost/inside/hospital) +"oTY" = ( +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"piC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/whiskey_outpost/inside/living) +"pny" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) +"qaY" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"qqi" = ( +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital) +"qFc" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"qPc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/healthanalyzer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"qRZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/pillbottles, +/obj/item/reagent_container/spray/cleaner, +/obj/item/storage/box/gloves, +/obj/item/tool/hand_labeler, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"raN" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_x = -16 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"rgX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Commander's Storage"; + req_access_txt = "19"; + req_one_access = null + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"rjZ" = ( +/obj/structure/safe, +/obj/item/moneybag, +/obj/item/clothing/glasses/monocle, +/obj/item/weapon/telebaton, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"rCS" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"rEa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"rGq" = ( +/obj/structure/machinery/optable, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"rVV" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/whiskey_outpost/inside/living) +"saP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) +"scA" = ( +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/living) +"sey" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"sid" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"sqw" = ( +/obj/structure/machinery/chem_master{ + tether_range = 4 + }, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital) +"svk" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"sxk" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) +"sCd" = ( +/obj/effect/landmark/start/whiskey/executive, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"sHR" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreen, +/area/whiskey_outpost/inside/hospital) +"sKh" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison, +/area/whiskey_outpost/inside/cic) +"sKi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"sMH" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + sortType = "Chemistry" + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"sUh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"sUR" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "Operating Theatre"; + req_one_access_txt = "2;8;19" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/whiskey_outpost/inside/hospital) +"sVz" = ( +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"tje" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"tqJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/living) +"twI" = ( +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"txE" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"tKZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/overwatch/almayer{ + layer = 3.2; + pixel_y = 20 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clipboard, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"tYE" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/whiskey_outpost/inside/living) +"ujA" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"uEJ" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"uGU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/whiskey_outpost/inside/cic) +"uJp" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"uSD" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"uVn" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/whiskey_outpost/inside/living) +"uXj" = ( +/turf/open/floor/whitegreen/southwest, +/area/whiskey_outpost/inside/hospital) +"vaF" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/map_item, +/obj/item/folder/black_random, +/obj/item/device/whistle, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"vfn" = ( +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) +"vEV" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + pixel_x = 16 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"vIE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"vJS" = ( +/obj/structure/machinery/optable, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"vKz" = ( +/turf/open/floor/whitegreen/northwest, +/area/whiskey_outpost/inside/hospital) +"wdh" = ( +/obj/effect/landmark/start/whiskey/leader, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"wmg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/curtain, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"wvH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost) +"wHP" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir" + }, +/turf/open/floor/whitegreen/north, +/area/whiskey_outpost/inside/hospital) +"wVf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access_txt = "2;8;19" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) +"wWh" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) +"xfi" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/card{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"xig" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/redfull, +/area/whiskey_outpost/inside/living) +"xvS" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/whiskey_outpost/inside/living) +"xwp" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/whiskey_outpost/inside/cic) +"xDk" = ( +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/living) +"xLs" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/emeraldfull, +/area/whiskey_outpost/inside/living) +"xQf" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/whiskey_outpost/inside/living) +"ylt" = ( +/obj/structure/closet, +/turf/open/floor/whitegreenfull, +/area/whiskey_outpost/inside/hospital) (1,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (2,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (3,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (4,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (5,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (6,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (7,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -mT -Zf -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +amT +aZf +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (8,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -Zf -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +aZf +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (9,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -qb -qb -qb -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (10,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -Ch -Ch -Ch -Ch -qb -qb -qb -qb -qb -qb -qb -qb -qb -qb -qb -Ky -Lg -Lg -Lg -rp -EK -EK -EK -rp -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -mT -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aCh +aCh +aCh +aCh +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aKy +aLg +aLg +aLg +arp +aXp +aXp +aXp +arp +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +amT +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (11,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -Ch -CO -Dw -Ch -qb -qb -qb -qb -qb -qb -qb -qb -qb -qb -qb -Ky -Lg -Lg -rp -EK -rp -rp -EK -EK -rp -rp -Ri -Sq -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -wR -wR -wR -mT -Zf -mT -Zf -Zf -mT -mT -mT -Zf -Zf -mT -mT -mT -VC -ws -ws -ws -Zs -Ro -mT -Zf -mT -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aCh +aCO +aDw +aCh +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aKy +aLg +aLg +arp +aXp +arp +arp +aXp +aXp +arp +arp +aRi +aSq +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +aoZ +aoZ +aoZ +amT +aZf +amT +aZf +aZf +amT +amT +amT +aZf +aZf +amT +amT +amT +aVC +aws +aws +aws +aZs +aRo +amT +aZf +amT +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (12,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -Ch -Dd -Dd -Dd -qb -qb -qb -qb -qb -qb -qb -qb -qb -qb -qb -Ky -EK -EK -rp -EK -rp -rp -EK -EK -EK -EK -RG -Sx -Sx -Sx -mT -Zf -Zf -Zf -Zf -mT -mT -Hr -PL -CD -Kn -wR -wR -bl -wR -bl -wR -wR -wR -mT -Zf -Zf -mT -mT -mT -MZ -GV -Vo -Vo -Vo -Vo -Vo -VC -ws -fJ -ws -Zs -Ro -Ro -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aCh +aDd +aDd +aDd +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aKy +aXp +aXp +arp +aXp +arp +arp +aXp +aXp +aXp +aXp +aRG +aSx +aSx +aSx +amT +aZf +aZf +aZf +aZf +amT +amT +aHr +aPL +aCD +aKn +aoZ +aoZ +abl +aoZ +abl +aoZ +aoZ +aoZ +amT +aZf +aZf +amT +amT +amT +aMZ +aGV +aHe +aHe +aHe +aHe +aHe +aVC +aws +afJ +aws +aZs +aRo +aRo +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (13,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -Ch -CO -Dd -Ch -qb -qb -qb -qb -qb -qb -qb -qb -mT -mT -mT -mT -EK -rp -EK -EK -rp -EK -EK -EK -EK -EK -EK -EK -rp -rp -ES -ES -ES -ES -ES -Ci -vK -Hr -PL -CD -Kn -wR -bl -bl -bl -wR -wR -fU -wR -wR -wR -wR -Hp -Ci -vK -Ci -Hr -Vo -Ro -Ro -Ro -Ro -VC -VX -ws -ws -Zs -Ro -Vo -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aCh +aCO +aDd +aCh +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +amT +amT +amT +amT +aXp +arp +aXp +aXp +arp +aXp +aXp +aXp +aXp +aXp +aXp +aXp +arp +arp +aES +aES +aES +aES +aES +aCi +avK +aHr +aPL +aCD +aKn +aoZ +abl +abl +abl +aoZ +aoZ +acN +aoZ +aoZ +aoZ +aoZ +aHp +aCi +avK +aCi +aHr +aHe +aRo +aRo +aRo +aRo +aVC +aVX +aws +aws +aZs +aRo +aHe +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (14,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -Ch -Dg -Dy -Ch -zK -qb -qb -qb -qb -qb -qb -qb -mT -mT -mT -mT -rp -rp -rp -EK -EK -rp -EK -EK -EK -EK -EK -EK -rp -ES -ES -Wg -Xj -YI -ES -Uy -vK -Hr -LT -CD -Kn -wR -wR -bl -wR -ve -ve -rt -ve -ve -wR -wR -ko -Ci -vK -Ci -Hr -Vo -Vo -Vo -Vo -Vo -VC -ws -ws -mj -Zs -Vo -HM -io -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aCh +aDg +aDy +aCh +azK +aqb +aqb +aqb +aqb +aqb +aqb +aqb +amT +amT +amT +amT +arp +arp +arp +aXp +aXp +arp +aXp +aXp +aXp +aXp +aXp +aXp +arp +aES +aES +apd +aRZ +aKw +aES +aUy +avK +aHr +aLT +aCD +aKn +aoZ +aoZ +abl +aoZ +ave +ave +axh +ave +ave +aoZ +aoZ +ako +aCi +avK +aCi +aHr +aHe +aHe +aHe +aHe +aHe +aVC +aws +aws +amj +aZs +aHe +aHM +aio +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (15,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -Ch -Ch -Ch -Ch -qb -qb -qb -qb -qb -qb -qb -qb -mT -mT -mT -mT -rp -EK -EK -rp -EK -EK -EK -EK -EK -EK -EK -EK -rp -ES -UB -Wm -Tw -Tw -ZE -Uy -vK -Hr -PL -CD -Kn -wR -bl -bl -bl -ve -Ma -zm -KZ -ve -BS -wR -ko -RM -vK -Ci -Hr -Vo -Vo -Ro -Vo -Ro -VC -ws -ws -ws -Zs -Ro -Vo -Ro -mT -Zf -mT -mT -mT -uJ -uJ -mT -mT -mT -mT -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aCh +aCh +aCh +aCh +aqb +aqb +aqb +aqb +aqb +aqb +aqb +aqb +amT +amT +amT +amT +arp +aXp +aXp +arp +aXp +aXp +aXp +aXp +aXp +aXp +aXp +aXp +arp +aES +arP +adC +ava +ava +aqZ +aUy +avK +aHr +aPL +aCD +aKn +aoZ +abl +abl +abl +ave +aUA +aZY +akc +ave +aBD +aoZ +ako +aRM +avK +aCi +aHr +aHe +aHe +aRo +aHe +aRo +aVC +aws +aws +aws +aZs +aRo +aHe +aRo +amT +aZf +amT +amT +amT +auJ +auJ +amT +amT +amT +amT +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (16,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -zK -qb -qb -qb -qb -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -EK -rp -rp -rp -EK -rp -rp -EK -EK -rp -EK -EK -rp -rp -Tp -UC -Wm -Xl -Tw -ZE -Uy -vK -Hr -PL -CD -Kn -BS -wR -wR -wR -gH -dW -zm -KJ -LU -wR -wR -ko -Ci -Wx -Ci -Hr -Vo -Ro -Vo -Ro -Vo -VC -ws -ws -pL -Zs -Ro -Ro -SZ -mT -mT -mT -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +azK +aqb +aqb +aqb +aqb +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +aXp +arp +arp +arp +aXp +arp +arp +aXp +aXp +arp +aXp +aXp +arp +arp +aKp +aUc +adC +aLW +ava +aqZ +aUy +avK +aHr +aPL +aCD +aKn +aBD +aoZ +aoZ +aoZ +aXc +aen +aZY +aNg +aSc +aoZ +aoZ +ako +aCi +aWx +aCi +aHr +aHe +aRo +aHe +aRo +aHe +aVC +aws +aws +apL +aZs +aRo +aRo +aSZ +amT +amT +amT +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (17,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -EO -EO -EK -EK -rp -rp -EK -EK -rp -EK -rp -rp -rp -rp -Tt -UH -Wm -Xl -Tw -ZI -Uy -vK -Hr -PL -HW -Kn -wR -wR -wR -wR -ve -yD -KJ -KZ -ve -wR -wR -ko -Ci -vK -Ci -Hr -Vo -Vo -Vo -Ro -Ro -VC -ws -ws -ws -Zs -Ro -Vo -Vo -WO -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aEO +aEO +aXp +aXp +arp +arp +aXp +aXp +arp +aXp +arp +arp +arp +arp +aTt +aLL +adC +aLW +ava +ate +aUy +avK +aHr +aPL +aHW +aKn +aoZ +aoZ +aoZ +aoZ +ave +aHS +aNg +akc +ave +aoZ +aoZ +ako +aCi +avK +aCi +aHr +aHe +aHe +aHe +aRo +aRo +aVC +aws +aws +aws +aZs +aRo +aHe +aHe +aWO +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (18,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -KY -Jf -KB -Lp -KB -bj -Ht -Ht -Ht -bj -Ht -bj -bj -bj -Ht -Ht -TI -UK -Wm -Xl -cn -ZI -Uy -Wx -Hr -PL -CD -Kn -wR -wR -bl -wR -ve -ve -hS -ve -ve -wR -wR -hK -Uy -vK -Ci -Hr -Vo -Vo -Vo -Vo -Vo -VC -ws -ws -pL -Zs -Ro -Ro -Ro -WO -uJ -Kt -uJ -Wz -uJ -uJ -uq -uJ -uJ -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aKY +aJf +aKB +aLp +aKB +agb +aHt +aHt +aHt +agb +aHt +agb +agb +agb +aHt +aHt +aJa +azv +adC +aLW +afP +ate +aUy +aWx +aHr +aPL +aCD +aKn +aoZ +aoZ +abl +aoZ +ave +ave +aCP +ave +ave +aoZ +aoZ +ahK +aUy +avK +aCi +aHr +aHe +aHe +aHe +aHe +aHe +aVC +aws +aws +apL +aZs +aRo +aRo +aRo +aWO +auJ +aKt +auJ +aKU +auJ +auJ +aJI +auJ +auJ +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (19,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -KY -KY -Jk -KM -KM -KM -KM -KM -KM -OO -EO -EO -EK -EK -rp -IC -rp -Tt -UL -Wm -Xl -Tw -ZI -Uy -Th -Hr -PL -CD -Kn -wR -bl -bl -wR -wR -wR -wR -wR -wR -wR -Uo -hK -Uy -vK -Ci -Hr -Vo -Vo -Vo -Vo -Ro -VC -fJ -ws -ws -Zs -Vo -Vo -Vo -Hj -hh -Kt -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aKY +aKY +aJk +aKM +aKM +aKM +aKM +aKM +aKM +aOO +aEO +aEO +aXp +aXp +arp +aIC +arp +aTt +aQE +adC +aLW +ava +ate +aUy +aTh +aHr +aPL +aCD +aKn +aoZ +abl +abl +aoZ +aoZ +aoZ +aoZ +aoZ +aoZ +aoZ +aRl +ahK +aUy +avK +aCi +aHr +aHe +aHe +aHe +aHe +aRo +aVC +afJ +aws +aws +aZs +aHe +aHe +aHe +aHj +ahh +aKt +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (20,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -KY -KY -KY -Jo -KP -KP -KY -KY -KP -KP -NX -UO -EO -EO -EO -rp -rp -rp -Tp -Tw -Wm -Tw -Tw -ZE -Uy -vK -Hr -PL -Ob -Kn -wR -wR -bl -bl -wR -bl -wR -wR -wR -wR -wR -hK -Uy -QA -Ci -Hr -Vo -Vo -Ro -Ro -Vo -VC -ws -ws -ws -Zs -Vo -Ro -Vo -Ro -WO -Kt -uJ -uJ -uJ -mT -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -Zf -mT -mT -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -Wr -Wr -Wr -Wr -Wr -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aKY +aKY +aKY +aJo +aKP +aKP +aKY +aKY +aKP +aKP +aNX +aUO +aEO +aEO +aEO +arp +arp +arp +aKp +ava +adC +ava +ava +aqZ +aUy +avK +aHr +aPL +aOb +aKn +aoZ +aoZ +abl +abl +aoZ +abl +aoZ +aoZ +aoZ +aoZ +aoZ +ahK +aUy +aQA +aCi +aHr +aHe +aHe +aRo +aRo +aHe +aVC +aws +aws +aws +aZs +aHe +aRo +aHe +aRo +aWO +aKt +auJ +auJ +auJ +amT +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +aZf +amT +amT +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aWr +aWr +aWr +aWr +aWr +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (21,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -mT -mT -mT -mT -KY -KY -KY -KY -KY -Jr -KY -KY -KY -KP -NF -KY -NX -EO -EO -EO -EO -rp -rp -rp -ES -UX -Tw -Tw -Tw -ZE -Uy -vK -Hr -PL -CD -Kn -wR -wR -wR -wR -bl -BS -bl -bl -wR -wR -wR -hK -Uy -vK -Ci -Hr -Vo -Vo -Ro -Ro -Ro -VC -ws -VX -ws -Zs -Vo -Ro -Ro -Vo -Hj -Hu -uJ -uJ -mT -mT -uJ -uJ -uJ -uJ -mT -mT -mT -mT -Zf -Zf -mT -Zf -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +amT +amT +aKY +aKY +aKY +aKY +aKY +aJr +aKY +aKY +aKY +aKP +aNF +aKY +aNX +aEO +aEO +aEO +aEO +arp +arp +arp +aES +adR +ava +ava +ava +aqZ +aUy +avK +aHr +aPL +aCD +aKn +aoZ +aoZ +aoZ +aoZ +abl +aBD +abl +abl +aoZ +aoZ +aoZ +ahK +aUy +avK +aCi +aHr +aHe +aHe +aRo +aRo +aRo +aVC +aws +aVX +aws +aZs +aHe +aRo +aRo +aHe +aHj +aHu +auJ +auJ +amT +amT +auJ +auJ +auJ +auJ +amT +amT +amT +amT +aZf +aZf +amT +aZf +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (22,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -mT -KY -KY -KY -KY -Hg -KY -KY -KY -Jr -Lb -Lb -Lb -Lb -Lb -Lb -OT -KM -KM -OO -EO -EO -EO -rp -ES -Ao -zC -Xo -YP -ES -Uy -vK -RS -PL -CD -Kn -wR -wR -wR -wR -bl -wR -wR -bl -wR -wR -wR -hK -Ci -Wx -Ci -Hr -Vo -Vo -Vo -Vo -Ro -VC -ws -ws -fJ -Zs -Ro -Ro -Vo -Vo -Ro -Bj -uJ -uJ -mT -mT -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +aKY +aKY +aKY +aKY +aHg +aKY +aKY +aKY +aJr +aLb +aLb +aLb +aLb +aLb +aLb +aOT +aKM +aKM +aOO +aEO +aEO +aEO +arp +aES +aAo +akT +aEp +abv +aES +aUy +avK +aRS +aPL +aCD +aKn +aoZ +aoZ +aoZ +aoZ +abl +aoZ +aoZ +abl +aoZ +aoZ +aoZ +ahK +aCi +aWx +aCi +aHr +aHe +aHe +aHe +aHe +aRo +aVC +aws +aws +afJ +aZs +aRo +aRo +aHe +aHe +aRo +aBj +auJ +auJ +amT +amT +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (23,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -zK -mT -mT -mT -mT -mT -mT -Eg -Ld -FC -KY -KY -KY -KY -KY -KY -Jr -Lb -Lb -Lb -Lb -Lb -Lb -Lb -Pq -KY -NX -EO -EO -EO -rp -Ta -ES -ES -ES -ES -ES -mT -mT -Hr -PL -PX -Kn -wR -wR -bl -bl -wR -bl -bl -wR -wR -wR -wR -hK -Uy -Wx -Ci -Hr -Vo -Vo -Ro -Vo -Ro -VC -Wd -mj -ws -Zs -Ur -Ap -Ur -Ur -ch -AD -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -Zf -mT -Zf -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Fj -xL -hp -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +azK +amT +amT +amT +amT +amT +amT +aEg +aLd +aFC +aKY +aKY +aKY +aKY +aKY +aKY +aJr +aLb +aLb +aLb +aLb +aLb +aLb +aLb +aPq +aKY +aNX +aEO +aEO +aEO +arp +aTa +aES +aES +aES +aES +aES +amT +amT +aHr +aPL +aPX +aKn +aoZ +aoZ +abl +abl +aoZ +abl +abl +aoZ +aoZ +aoZ +aoZ +ahK +aUy +aWx +aCi +aHr +aHe +aHe +aRo +aHe +aRo +aVC +aWd +amj +aws +aZs +aUr +aQb +aUr +aUr +ach +aAD +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +aZf +amT +aZf +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aFj +aLC +ahp +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (24,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -mT -AV -zq -Ls -Ld -Ld -Hk -HY -Ix -Ix -Ev -Lc -KY -KY -KY -KY -Hg -KY -Pq -KY -Qq -KM -OO -EO -EO -Ri -mT -mT -mT -mT -mT -mT -mT -Hr -PL -CD -Kn -wR -wR -bl -wR -bl -bl -wR -bl -wR -wR -wR -hK -Uy -vK -Ci -Hr -Vo -Vo -Vo -Ro -Vo -VC -ws -ws -ws -Zs -Ro -Ro -Ro -Vo -WO -Kt -uJ -uJ -uJ -uJ -Wz -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -QW -EP -Vh -gz -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +aAV +azq +aLs +aLd +aLd +aHk +aon +aew +aew +aaz +aLc +aKY +aKY +aKY +aKY +aHg +aKY +aPq +aKY +aQq +aKM +aOO +aEO +aEO +aRi +amT +amT +amT +amT +amT +amT +amT +aHr +aPL +aCD +aKn +aoZ +aoZ +abl +aoZ +abl +abl +aoZ +abl +aoZ +aoZ +aoZ +ahK +aUy +avK +aCi +aHr +aHe +aHe +aHe +aRo +aHe +aVC +aws +aws +aws +aZs +aRo +aRo +aRo +aHe +aWO +aKt +auJ +auJ +auJ +auJ +aKU +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aQW +aEP +akW +agz +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (25,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -mT -AV -zq -zq -zq -zq -Hl -HY -Ix -Ix -Ev -EX -FC -KY -KY -KY -KY -KY -KY -KY -Pq -KY -NX -EO -EO -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -PL -CD -Kn -wR -bl -wR -wR -wR -wR -wR -wR -wR -wR -wR -hK -Uy -QA -Ci -Hr -Vo -Vo -Vo -Ro -Ro -VC -pL -ws -ws -Zs -Ro -Ro -Vo -Vo -WO -Kt -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -HI -EP -Vh -gz -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +aAV +azq +azq +azq +azq +aHl +aon +aew +aew +aaz +aEX +aFC +aKY +aKY +aKY +aKY +aKY +aKY +aKY +aPq +aKY +aNX +aEO +aEO +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aPL +aCD +aKn +aoZ +abl +aoZ +aoZ +aoZ +aoZ +aoZ +aoZ +aoZ +aoZ +aoZ +ahK +aUy +aQA +aCi +aHr +aHe +aHe +aHe +aRo +aRo +aVC +apL +aws +aws +aZs +aRo +aRo +aHe +aHe +aWO +aKt +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +aHI +aEP +akW +agz +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (26,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -qb -mT -mT -mT -mT -mT -mT -AV -zq -FH -zq -zq -CY -HY -Ix -Ix -Ev -PQ -Ls -Ld -Ld -Ld -FC -KY -KY -KY -KY -Pq -NX -RL -mT -Zf -mT -mT -Zf -mT -mT -Zf -Zf -mT -Nv -CD -Kn -bl -bl -wR -bl -bl -bl -wR -bl -wR -wR -wR -hK -Uy -vK -Ci -Hr -Vo -Vo -Ro -Ro -Ro -VC -ws -ws -ws -Zs -Vo -Ro -Ro -YH -OP -Kt -uJ -uJ -VU -uJ -uJ -uJ -VU -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -HI -EP -Vh -gz -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -nh -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +aAV +azq +aFH +azq +azq +aCY +aon +aew +aew +aaz +aPQ +aLs +aLd +aLd +aLd +aFC +aKY +aKY +aKY +aKY +aPq +aNX +aRL +amT +aZf +amT +amT +aZf +amT +amT +aZf +aZf +amT +aNv +aCD +aKn +abl +abl +aoZ +abl +abl +abl +aoZ +abl +aoZ +aoZ +aoZ +ahK +aUy +avK +aCi +aHr +aHe +aHe +aRo +aRo +aRo +aVC +aws +aws +aws +aZs +aHe +aRo +aRo +aYH +aOP +aKt +auJ +auJ +aRE +auJ +auJ +auJ +aRE +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +aHI +aEP +akW +agz +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +anh +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (27,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -DF -DF -Ek -zq -zq -zq -XD -CY -HY -Ix -Ix -Ev -PQ -zq -zq -zq -zq -Ls -Ld -Ld -FC -KY -Pq -NX -EO -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -CD -Kn -bl -bl -QJ -Ce -Ce -Ce -hI -bl -wR -wR -wR -ko -Ci -vK -Ci -Hr -Vo -Vo -Ro -Vo -Ro -VC -ws -fJ -ws -Zs -Vo -Ro -Vo -WO -uJ -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -HI -EP -Vh -gz -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +aDF +aDF +aEk +azq +azq +azq +aXD +aCY +aon +aew +aew +aaz +aPQ +azq +azq +azq +azq +aLs +aLd +aLd +aFC +aKY +aPq +aNX +aEO +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aCD +aKn +abl +abl +aQJ +aCe +aCe +aCe +ahI +abl +aoZ +aoZ +aoZ +ako +aCi +avK +aCi +aHr +aHe +aHe +aRo +aHe +aRo +aVC +aws +afJ +aws +aZs +aHe +aRo +aHe +aWO +auJ +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +aHI +aEP +akW +agz +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (28,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -DF -DX -DX -zq -zq -zq -zq -CY -HY -Ix -Ix -Ev -PQ -FH -zq -zq -zq -zq -zq -zq -Lh -KY -Pq -NX -EO -EO -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -CD -Kn -bl -bl -PL -CD -CD -CD -Kn -bl -bl -wR -wR -ko -Ci -Wx -Ci -Hr -Vo -Vo -HM -io -Vo -VC -ws -ws -ws -Zs -Ro -Ro -dB -WO -mT -mT -mT -mT -uJ -uJ -uJ -mT -mT -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -HI -EP -Vh -VE -Wr -Wr -Wr -Wr -Wr -Wr -Wr -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +aDF +aDX +aDX +azq +azq +azq +azq +aCY +aon +aew +aew +aaz +aPQ +aFH +azq +azq +azq +azq +azq +azq +aLh +aKY +aPq +aNX +aEO +aEO +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aCD +aKn +abl +abl +aPL +aCD +aCD +aCD +aKn +abl +abl +aoZ +aoZ +ako +aCi +aWx +aCi +aHr +aHe +aHe +aHM +aio +aHe +aVC +aws +aws +aws +aZs +aRo +aRo +adB +aWO +amT +amT +amT +amT +auJ +auJ +auJ +amT +amT +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +aHI +aEP +akW +aVE +aWr +aWr +aWr +aWr +aWr +aWr +aWr +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (29,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -DF -DF -Eo -zq -zq -Bh -zq -CY -Dt -DD -DD -Ew -PQ -zq -zq -zq -Bh -zq -XD -zq -Lh -KY -QS -RH -EO -EO -mT -mT -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Kn -wR -bl -PL -CD -Ob -CD -Kn -bl -bl -bl -wR -ko -RM -vK -Ci -Hr -Vo -Vo -Ro -Vo -Ro -VC -ws -VX -ws -Zs -Ro -Vo -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -EP -Vh -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +aDF +aDF +aEo +azq +azq +aBh +azq +aCY +ayZ +aRI +aRI +aaX +aPQ +azq +azq +azq +aBh +azq +aXD +azq +aLh +aKY +aQS +aRH +aEO +aEO +amT +amT +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aKn +aoZ +abl +aPL +aCD +aOb +aCD +aKn +abl +abl +abl +aoZ +ako +aRM +avK +aCi +aHr +aHe +aHe +aRo +aHe +aRo +aVC +aws +aVX +aws +aZs +aRo +aHe +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +aEP +akW +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (30,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -ak -ak -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -zK -qb -mT -mT -mT -mT -mT -mT -mT -AV -zq -zq -zq -zq -CY -Dt -DD -DD -Ew -PQ -XD -zq -zq -zq -zq -zq -zq -Ls -FC -NX -RK -EO -EK -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -CD -CD -CD -Kn -wR -bl -wR -bl -ko -Ci -vK -Ci -Hr -Vo -Vo -Vo -Ro -Vo -VC -ws -ws -ws -Zs -Ro -Ro -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -mT -mT -Zf -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aak +aak +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +azK +aqb +amT +amT +amT +amT +amT +amT +amT +aAV +azq +azq +azq +azq +aCY +ayZ +aRI +aRI +aaX +aPQ +aXD +azq +azq +azq +azq +azq +azq +aLs +aFC +aNX +aRK +aEO +aXp +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aCD +aCD +aCD +aKn +aoZ +abl +aoZ +abl +ako +aCi +avK +aCi +aHr +aHe +aHe +aHe +aRo +aHe +aVC +aws +aws +aws +aZs +aRo +aRo +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +amT +amT +aZf +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (31,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -WK -ak -ak -ak -nK -nK -nK -nK -nK -nK -nK -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -mT -mT -mT -mT -mT -mT -mT -AV -zq -XD -zq -zq -CY -Dt -DD -DD -Ew -PQ -zq -zq -zq -zq -FH -zq -zq -zq -Lh -NX -EO -EO -rp -Zf -mT -Zf -Zf -Zf -Zf -mT -mT -mT -Zf -mT -Zf -Zf -Zf -mT -CD -PX -CD -Kn -bl -wR -bl -wR -Hp -Ci -vK -Ci -Hr -ep -qY -Me -Vo -Ro -VC -ws -ws -ws -Zs -Ro -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -uJ -uJ -uJ -uJ -QR -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -mT -mT -mT -mT -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aWK +aak +aak +aak +anK +anK +anK +anK +anK +anK +anK +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +amT +amT +amT +amT +amT +amT +amT +aAV +azq +aXD +azq +azq +aCY +ayZ +aRI +aRI +aaX +aPQ +azq +azq +azq +azq +aFH +azq +azq +azq +aLh +aNX +aEO +aEO +arp +aZf +amT +aZf +aZf +aZf +aZf +amT +amT +amT +aZf +amT +aZf +aZf +aZf +amT +aCD +aPX +aCD +aKn +abl +aoZ +abl +aoZ +aHp +aCi +avK +aCi +aHr +aep +aqY +aMe +aHe +aRo +aVC +aws +aws +aws +aZs +aRo +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +auJ +auJ +auJ +auJ +aPf +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +amT +amT +amT +amT +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (32,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -ak -ak -ak -mT -mT -mT -mT -mT -mT -ak -ai -aC -qe -ih -Nr -nK -uM -rq -fG -rq -PR -nK -mT -mT -mT -mT -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -mT -Eu -EG -EG -EG -EG -CZ -Dt -DD -DD -Ew -Fp -zq -zq -zq -zq -zq -zq -Bh -zq -Lh -NX -EK -rp -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -CD -Kn -bl -bl -bl -bl -ZP -mT -vK -Ci -Hr -vQ -Uf -mT -Ro -Ro -VC -ws -ws -fJ -Zs -Ro -mT -Zf -mT -Zf -Zf -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -mT -mT -mT -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aak +aak +aak +amT +amT +amT +amT +amT +amT +aak +aai +aAP +aCb +aih +aNr +anK +aRF +ajh +aOg +ajh +aOR +anK +amT +amT +amT +amT +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +amT +aEu +aEG +aEG +aEG +aEG +aCZ +ayZ +aRI +aRI +aaX +aFp +azq +azq +azq +azq +azq +azq +aBh +azq +aLh +aNX +aXp +arp +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +aCD +aKn +abl +abl +abl +abl +aZP +amT +avK +aCi +aHr +avQ +aUf +amT +aRo +aRo +aVC +aws +aws +afJ +aZs +aRo +amT +aZf +amT +aZf +aZf +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +amT +amT +amT +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (33,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -cE -ds -ak -mT -mT -mT -mT -mT -mT -ak -Vy -aC -PB -PM -Ed -nK -pk -sP -rV -sP -cB -nK -nK -nK -nK -nK -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -mT -mT -fy -zR -zR -fy -fy -zR -Dc -Dt -DD -DD -Ew -Fs -FD -FD -FD -NG -BF -zq -zq -zq -Lh -NX -rp -rp -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -mT -CD -Kn -wR -bl -bl -bl -mT -mT -mT -mT -gy -Vo -mT -mT -mT -mT -mT -ws -ws -ws -mT -mT -Zf -Zf -mT -mT -Zf -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -mT -mT -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +oIU +hoD +aak +amT +amT +amT +amT +amT +amT +aak +aVy +aAP +axS +aPM +aEd +anK +aMT +asP +aJx +asP +atM +anK +anK +anK +anK +anK +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +amT +amT +afy +azR +azR +afy +afy +azR +aDc +ayZ +aRI +aRI +aaX +aFs +aFD +aFD +aFD +aNG +aBF +azq +azq +azq +aLh +aNX +arp +arp +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +amT +aCD +aKn +aoZ +abl +abl +abl +amT +amT +amT +amT +agy +aHe +amT +amT +amT +amT +amT +aws +aws +aws +amT +amT +aZf +aZf +amT +amT +aZf +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +amT +amT +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (34,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -cF -dz -ak -mT -ak -ak -ak -ak -ak -ak -ak -EL -Mo -Gx -PM -nK -qu -re -rV -sP -hH -nK -vl -vR -wh -nK -mT -mT -mT -mT -qb -qb -qb -mT -mT -mT -fy -fy -fy -fy -zR -zR -zR -fy -fy -zR -fy -zR -jU -Dc -LI -Mp -Nn -fI -AV -zq -zq -zq -Lh -NX -Zf -Zf -Zf -mT -Zf -mT -mT -mT -mT -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -HW -CD -Ce -Ce -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ws -mT -mT -mT -Zf -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -uJ -VU -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -mT -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +oxC +uGU +aak +amT +aak +aak +aak +aak +aak +aak +aak +aEL +aEj +aGx +aPM +anK +asd +are +aJx +asP +aun +anK +apb +awu +aRt +anK +amT +amT +amT +amT +aqb +aqb +aqb +amT +amT +amT +afy +afy +afy +afy +azR +azR +azR +afy +afy +azR +afy +azR +ajU +aDc +ame +ado +avh +afI +aAV +azq +azq +azq +aLh +aNX +aZf +aZf +aZf +amT +aZf +amT +amT +amT +amT +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aHW +aCD +aCe +aCe +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aws +amT +amT +amT +aZf +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +auJ +aRE +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +amT +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (35,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -ak -ak -ak -cG -ak -ak -ak -ak -ak -hj -iQ -ak -jY -li -ak -ak -ak -uI -nK -qx -ri -rV -sP -JA -nK -vl -rV -wh -nK -mT -mT -mT -mT -fy -fy -fy -fy -mT -mT -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -Dc -BJ -Gz -Nq -NJ -mT -zq -zq -zq -Lh -NX -Zf -mT -mT -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -CD -CD -Ob -CD -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -Zf -mT -mT -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -mT -mT -Zf -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aak +aak +aak +acG +aak +aak +aak +aak +aak +tKZ +asz +aak +acB +aYf +aak +aak +aak +auI +anK +aRT +ari +aJx +asP +aJK +anK +apb +aJx +aRt +anK +amT +amT +amT +amT +afy +afy +afy +afy +amT +amT +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +aDc +aWH +aGz +aCL +aNJ +amT +azq +azq +azq +aLh +aNX +aZf +amT +amT +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +aCD +aCD +aOb +aCD +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +aZf +amT +amT +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +amT +amT +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (36,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -au -cz -bR -cz -dF -ea -ft -gp -gT -kK -ee -iT -jN -Ez -ak -ak -mh -mh -nK -qu -re -rV -sP -hH -nK -vl -rV -wi -nK -mT -mT -mT -mT -zR -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -GY -fy -fy -jU -Dc -LK -MB -Nt -fI -mT -mT -zq -zq -mT -NX -Zf -mT -Zf -Zf -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -mT -mT -mT -mT -CD -CD -CD -mT -Zf -mT -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -mT -Zf -mT -mT -mT -Zf -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -HI -mf -EP -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aau +acz +abR +acz +adF +dyE +aft +agp +xwp +lbA +aUM +aiT +aSt +aQT +aak +aak +amh +amh +anK +asd +are +aJx +asP +aun +anK +apb +aJx +adI +anK +amT +amT +amT +amT +azR +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aGY +afy +afy +ajU +aDc +asF +aMB +aWt +afI +amT +amT +azq +azq +amT +aNX +aZf +amT +aZf +aZf +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +amT +amT +amT +amT +aCD +aCD +aCD +amT +aZf +amT +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +amT +aZf +amT +amT +amT +aZf +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +aHI +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (37,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -ax -bs -bs -cI -ak -eb -fx -ea -fx -lm -lm -lm -lm -lm -lW -mL -nv -nI -Kr -qC -rs -rV -sP -xc -nK -vl -rV -wk -nK -mT -mT -mT -mT -fy -zR -zR -zR -fy -fy -fy -fy -GY -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -ss -BL -MQ -BL -wx -mT -mT -zq -zq -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -mT -mT -Zf -Zf -Zf -mT -Zf -mT -mT -CD -CD -CD -mT -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -mT -mT -mT -Zf -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -mT -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -HI -EP -EP -EP -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aax +abs +abs +acI +aak +aeb +afx +dyE +afx +aIJ +aIJ +aIJ +aIJ +aIJ +aix +adb +aNo +anI +aKr +aym +ars +aJx +asP +azF +anK +apb +aJx +abk +anK +amT +amT +amT +amT +afy +azR +azR +azR +afy +afy +afy +afy +aGY +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +ass +aBL +aMQ +aBL +awx +amT +amT +azq +azq +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +amT +amT +aZf +aZf +aZf +amT +aZf +amT +amT +aCD +aCD +aCD +amT +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +amT +amT +amT +aZf +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +amT +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +aHI +aEP +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (38,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -aA -bs -bs -cL -ak -et -fA -gA -fx -hk -iS -jo -iS -fx -mi -mM -nv -mh -nK -nK -nK -se -nK -tI -nK -nK -vS -nK -nK -nr -nr -nr -nr -zs -fy -AS -fy -fy -fy -fy -fy -fy -fy -zs -fy -MI -fy -fy -fy -fy -fy -jU -fy -fy -fy -fy -mT -mT -mT -zq -zq -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -mT -Zf -Zf -mT -Zf -Zf -Zf -mT -CD -HW -CD -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -mT -mT -mT -mT -Zf -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -gv -Mb -Fn -mf -mf -EP -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aaA +abs +abs +acL +aak +aet +sCd +xfi +afx +ahk +aiS +ajo +aiS +afx +aIe +aCW +aNo +amh +anK +anK +anK +aiE +anK +atI +anK +anK +aOh +anK +anK +anr +anr +anr +anr +azs +afy +aAS +afy +afy +afy +afy +afy +afy +afy +azs +afy +aMI +afy +afy +afy +afy +afy +ajU +afy +afy +afy +afy +amT +amT +amT +azq +azq +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +amT +aZf +aZf +amT +aZf +aZf +aZf +amT +aCD +aHW +aCD +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +amT +amT +amT +amT +aZf +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +agv +aMb +aFn +amf +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (39,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -aE -bs -bT -cM -ex -fx -fB -gC -gV -hu -iT -jp -kk -lr -mo -mN -nw -nL -nK -qE -ru -rf -sR -tL -nK -vn -tv -wl -nK -JN -ya -ya -nr -MI -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -fy -fy -mT -mT -mT -mT -zq -zq -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -mT -MR -jV -jV -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -Zf -Zf -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -uJ -uJ -uJ -uJ -mT -mT -mf -mf -EP -mf -EP -EP -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aaE +abs +abT +acM +aex +afx +jwc +vaF +agV +ahu +aiT +ajp +akk +alr +aPR +ays +aAy +anL +anK +afa +aWG +aPI +aJm +aiW +anK +ayb +aKh +asG +anK +avt +aWW +aWW +anr +aMI +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +afy +afy +amT +amT +amT +amT +azq +azq +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +amT +aMR +ajV +ajV +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +aZf +aZf +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +auJ +auJ +auJ +auJ +amT +amT +amf +amf +aEP +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (40,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Gu -cz -bs -bs -cp -ak -rc -fF -gE -fx -hw -iS -jq -iS -fx -mi -mM -nv -mZ -nK -qG -rf -sg -rf -tL -nK -vv -tv -wz -DW -ya -ya -Jd -nr -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -fy -mT -mT -mT -mT -mT -eY -eY -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -mT -Zi -Zi -Zi -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -mT -mT -Zf -mT -mT -mT -Zf -Zf -mf -EP -mf -mf -EP -EP -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aGu +acz +abs +abs +acp +aak +arc +hkD +cCN +afx +ahw +aiS +ajq +aiS +afx +aIe +aCW +aNo +amZ +anK +aRJ +aPI +asg +aPI +aiW +anK +anx +aKh +avj +aZk +aWW +aWW +aMm +anr +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +afy +amT +amT +amT +amT +amT +aeY +aeY +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +amT +aZi +aZi +aZi +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +amT +amT +aZf +amT +amT +amT +aZf +aZf +amf +aEP +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (41,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -aN -bs -bs -cq -ak -eF -fx -eM -fx -lm -lm -lm -lm -lm -mx -mL -nv -nM -nK -oy -fG -qd -rf -rI -nK -sW -tv -ur -nK -ya -ya -ya -nr -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -mT -mT -mT -mT -mT -mT -mT -eY -eY -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -Xq -GJ -GJ -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -Zf -Zf -Zf -Zf -Zf -Zf -mf -mf -EP -mf -mf -EP -mf -EP -EP -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aaN +abs +abs +acq +aak +sKh +afx +iar +afx +aIJ +aIJ +aIJ +aIJ +aIJ +awy +adb +aNo +anM +anK +aMJ +aOg +aqd +aPI +axo +anK +aKQ +aKh +aOW +anK +aWW +aWW +aWW +anr +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +amT +amT +amT +amT +amT +amT +amT +aeY +aeY +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +agR +aGJ +aGJ +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +aZf +aZf +aZf +aZf +aZf +aZf +amf +amf +aEP +amf +amf +aEP +amf +aEP +aEP +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (42,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -aN -cz -bV -cz -dF -eM -ft -gp -gW -tY -jt -jn -EZ -Vq -mz -ak -nv -nM -nK -oC -rf -qj -rf -rJ -nK -vw -tv -wA -nK -JN -ya -ya -nr -fy -fy -fy -fy -fy -fy -fy -vF -fy -fy -fy -fy -fy -fy -fy -MI -fy -fy -jU -mT -mT -mT -mT -mT -mT -mT -eY -eY -eY -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -GJ -Xq -Xq -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -Zf -mT -hL -hh -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -mT -Zf -AA -zt -zt -zt -EP -mf -EP -mf -mf -EP -EP -mf -mf -mf -EP -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aaN +acz +abV +acz +adF +iar +aft +agp +bNC +fpw +aZO +aPJ +aCj +aoT +amz +aak +aNo +anM +anK +aPa +aPI +aqj +aPI +auX +anK +aVB +aKh +azx +anK +avt +aWW +aWW +anr +afy +afy +afy +afy +afy +afy +afy +avF +afy +afy +afy +afy +afy +afy +afy +aMI +afy +afy +ajU +amT +amT +amT +amT +amT +amT +amT +aeY +aeY +aeY +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +aGJ +agR +agR +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +aZf +amT +ahL +ahh +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +amT +aZf +aAA +aUT +aUT +aUT +aEP +amf +aEP +amf +amf +aEP +aEP +amf +amf +amf +aEP +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (43,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -ak -ak -ak -aQ -ak -ak -ak -ak -ak -iY -cJ -ak -kp -lv -ak -ak -mh -nM -nK -qH -rv -sp -rV -rV -uC -rv -rv -us -nK -zP -zP -zP -nr -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -GY -fy -fy -fy -fy -fy -jU -fy -mT -mT -mT -mT -mT -eY -eY -eY -eY -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -mT -GJ -GJ -GJ -Xq -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -mT -mT -Zf -mT -lf -Hj -hL -hL -hL -hL -hL -yl -mT -uJ -uJ -uJ -uJ -uJ -uJ -mT -Zf -zt -AA -AA -AA -mf -mf -EP -mf -mf -EP -EP -mf -mf -EP -EP -EP -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +aak +aak +aak +rgX +aak +aak +aak +aak +aak +orX +azL +aak +ady +aKi +aak +aak +amh +anM +anK +aQK +aFk +aNs +aJx +aJx +agm +aFk +aFk +aoj +anK +azP +azP +azP +anr +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aGY +afy +afy +afy +afy +afy +ajU +afy +amT +amT +amT +amT +amT +aeY +aeY +aeY +aeY +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +amT +aGJ +aGJ +aGJ +agR +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +amT +amT +aZf +amT +alf +aHj +ahL +ahL +ahL +ahL +ahL +ayl +amT +auJ +auJ +auJ +auJ +auJ +auJ +amT +aZf +aUT +aAA +aAA +aAA +amf +amf +aEP +amf +amf +aEP +aEP +amf +amf +aEP +aEP +aEP +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (44,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -rj -lm -lm -lm -dN -ak -mT -ak -ak -ak -ak -ak -ak -ak -ak -mG -mC -mZ -nK -nK -ps -sq -ps -tN -uK -vx -Ah -lw -lw -tS -tS -tS -nr -fy -fy -fy -MI -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -Gb -FZ -mT -mT -mT -eY -Pr -eY -eY -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -Xq -GJ -GJ -GJ -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -mT -mT -mT -Zf -mT -mT -mT -mT -mT -Zf -mT -lf -lf -Mx -Mx -mT -mT -Mx -Mx -mT -uJ -uJ -uJ -uJ -uJ -mT -Zf -Zf -AA -AA -zt -AA -zt -EP -EP -mf -mf -EP -mf -mf -mf -mf -mf -EP -EP -EP -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +cHV +aIJ +aIJ +aIJ +liJ +aak +amT +aak +aak +aak +aak +aak +aak +aak +aak +amG +arH +amZ +anK +anK +aps +aJD +aps +atN +auK +aSd +aAh +alw +alw +atS +atS +atS +anr +afy +afy +afy +aMI +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +aGb +aFZ +amT +amT +amT +aeY +aPr +aeY +aeY +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +agR +aGJ +aGJ +aGJ +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +amT +amT +amT +aZf +amT +amT +amT +amT +amT +aZf +amT +alf +alf +aMx +aMx +amT +amT +aMx +aMx +amT +auJ +auJ +auJ +auJ +auJ +amT +aZf +aZf +aAA +aAA +aUT +aAA +aUT +aEP +aEP +amf +amf +aEP +amf +amf +amf +amf +amf +aEP +aEP +aEP +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (45,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -ak -sx -xj -OS -cD -dO -ak -mT -mT -mT -mT -kh -kh -kh -lA -mG -lZ -mh -nN -oH -qJ -rz -qq -sX -rL -uL -vA -tw -wG -xg -xg -xg -xg -ZH -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -Ga -MU -MU -mT -Yo -eY -eY -eY -eY -zX -bW -mT -bW -TL -Vi -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Xq -Xq -GJ -Xq -GJ -Oq -Oq -Oq -Oq -Oq -Oq -Oq -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -Zf -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -Zf -Zf -lf -lf -lf -Zf -mT -mT -Mx -Mx -Mx -mT -uJ -uJ -uJ -uJ -mT -mT -AA -AA -AA -AA -AA -AA -AA -EP -mf -EP -mf -EP -mf -mf -EP -mf -mf -mf -mf -EP -EP -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aak +sey +sVz +bAA +eKz +rjZ +aak +amT +amT +amT +amT +aJj +aJj +aJj +alA +amG +alZ +amh +aNC +aro +abM +aTG +aHC +aAX +arL +auL +aZZ +aGs +aMd +aQu +aQu +aQu +aQu +aZH +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +aGa +aMU +aMU +amT +aYo +aeY +aeY +aeY +aeY +azX +abW +amT +abW +aTL +acU +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +agR +agR +aGJ +agR +aGJ +aOq +aOq +aOq +aOq +aOq +aOq +aOq +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +aZf +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +aZf +aZf +alf +alf +alf +aZf +amT +amT +aMx +aMx +aMx +amT +auJ +auJ +auJ +auJ +amT +amT +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aEP +amf +aEP +amf +aEP +amf +amf +aEP +amf +amf +amf +amf +aEP +aEP +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (46,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -cr -cr -cr -cr -cr -cr -cr -mT -mT -mT -je -oW -oW -oW -lo -mG -mc -ab -ab -oI -oG -pw -pH -rg -rM -uN -sY -tH -uB -uB -yf -xg -xg -nr -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -zs -fy -fy -Fy -Yo -eY -eY -eY -Qo -zX -pX -bW -bW -TL -Vi -Vi -mT -mT -mT -mT -mT -mT -OD -gu -mT -Zf -Zf -mT -mT -mT -GJ -GJ -Xq -Xq -Xq -Oq -Qw -Qw -Oq -So -So -Oq -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -Zf -Zf -lf -lf -lf -Zf -Zf -lf -Mx -Mx -Mx -mT -mT -Rn -Rn -Rn -mT -Zf -AA -AA -zt -AA -fQ -dv -AA -AA -mf -mf -mf -mf -mf -EP -mf -mf -EP -mf -mf -EP -EP -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +acr +acr +acr +acr +acr +acr +acr +amT +amT +amT +wvH +aNO +aNO +aNO +agd +amG +amc +auY +auY +aBa +aJY +aVf +aqD +aqc +acd +auN +aDT +arn +aTg +aTg +aXC +aQu +aQu +anr +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +azs +afy +afy +aFy +aYo +aeY +aeY +aeY +aQo +azX +apX +abW +abW +aTL +acU +acU +amT +amT +amT +amT +amT +amT +aOD +agu +amT +aZf +aZf +amT +amT +amT +aGJ +aGJ +agR +agR +agR +aOq +aja +aja +aOq +aJV +aJV +aOq +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +aZf +aZf +alf +alf +alf +aZf +aZf +alf +aMx +aMx +aMx +amT +amT +aRn +aRn +aRn +amT +aZf +aAA +aAA +aUT +aAA +afQ +adv +aAA +aAA +amf +amf +amf +amf +amf +aEP +amf +amf +aEP +amf +amf +aEP +aEP +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (47,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -dl -dl -dl -dl -dl -dl -dl -qz -qz -qz -je -ab -ab -ab -ab -lO -ab -ab -ab -kj -oW -OX -ab -ab -rm -uO -tf -pK -kS -pK -vL -yz -vC -nr -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -Jt -fy -fy -fy -fy -Fy -NM -OU -eY -eY -eY -zX -bW -bW -bW -qg -Vk -Vi -Vi -mT -mT -mT -mT -Db -OD -gu -Xq -mT -mT -mT -Xq -Xq -cY -GJ -Xq -Xq -GJ -GJ -Xq -Xq -GJ -GJ -GJ -QB -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -Zf -mT -lf -kV -lf -kV -lf -lf -Mx -Mx -mT -mT -mT -Ji -Ji -zt -zt -kz -zt -zt -zt -zt -AA -zt -AA -AA -EP -mf -EP -mf -EP -EP -mf -mf -EP -mf -mf -EP -mf -EP -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +adl +adl +adl +adl +adl +adl +adl +aqz +aqz +aqz +wvH +auY +auY +auY +auY +aRq +auY +auY +auY +arr +aNO +aUl +auY +auY +arm +aSR +atf +asB +akS +asB +aop +abI +axA +anr +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aJt +afy +afy +afy +afy +aFy +aNM +aOU +aeY +aeY +aeY +azX +abW +abW +abW +aqg +aVk +acU +acU +amT +amT +amT +amT +aDb +aOD +agu +agR +amT +amT +amT +agR +agR +acY +aGJ +agR +agR +aGJ +aGJ +agR +agR +aGJ +aGJ +aGJ +aQB +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +aZf +amT +alf +anP +alf +anP +alf +alf +aMx +aMx +amT +amT +amT +aYU +aYU +aUT +aUT +alz +aUT +aUT +aUT +aUT +aAA +aUT +aAA +aAA +aEP +amf +aEP +amf +aEP +aEP +amf +amf +aEP +amf +amf +aEP +amf +aEP +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (48,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -bw -la -bw -qz -qz -ei -Cv -dY -qz -qz -oW -oW -oW -ab -lO -ab -ab -ab -kj -oW -OX -ab -tj -lw -uP -tf -pK -kS -eU -iy -yB -nr -nr -fy -fy -vF -fy -fy -vF -fy -fy -fy -fy -fy -fy -fy -vF -fy -fy -fy -fy -tJ -fy -fy -MI -fy -Fy -fy -Yo -eY -hM -eY -zX -bW -bW -uW -bW -TL -Vi -Vi -mT -mT -mT -mT -Db -OD -gu -GJ -GJ -GJ -GJ -Xq -Xq -Xq -GJ -GJ -GJ -Xq -GJ -GJ -GJ -Xq -GJ -GJ -QB -Zf -Zf -Zf -Zf -mT -KW -hq -Df -iF -Tr -Df -mT -mT -Zf -Zf -Zf -mT -mT -Zf -mT -kV -lf -kV -lf -lf -lf -kV -Mx -mT -mT -mT -Zf -Zf -zt -AA -AA -kz -zt -zt -zt -AA -AA -AA -zt -AA -AA -mf -mf -EP -mf -mf -mf -mf -mf -mf -EP -mf -EP -EP -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +jcz +aAl +jcz +aqz +aqz +mhS +lgr +lne +aqz +aqz +aNO +aNO +aNO +auY +aRq +auY +auY +auY +arr +aNO +aUl +auY +aSv +alw +amk +atf +asB +akS +aCI +aMr +aAG +anr +anr +afy +afy +avF +afy +afy +avF +afy +afy +afy +afy +afy +afy +afy +avF +afy +afy +afy +afy +atJ +afy +afy +aMI +afy +aFy +afy +aYo +aeY +ahM +aeY +azX +abW +abW +auW +abW +aTL +acU +acU +amT +amT +amT +amT +aDb +aOD +agu +aGJ +aGJ +aGJ +aGJ +agR +agR +agR +aGJ +aGJ +aGJ +agR +aGJ +aGJ +aGJ +agR +aGJ +aGJ +aQB +aZf +aZf +aZf +aZf +amT +aKW +ahq +aDf +aiF +aTr +aDf +amT +amT +aZf +aZf +aZf +amT +amT +aZf +amT +anP +alf +anP +alf +alf +alf +anP +aMx +amT +amT +amT +aZf +aZf +aUT +aAA +aAA +alz +aUT +aUT +aUT +aAA +aAA +aAA +aUT +aAA +aAA +amf +amf +aEP +amf +amf +amf +amf +amf +amf +aEP +amf +aEP +aEP +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (49,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -JF -qB -yh -qz -WA -gN -hb -JT -CC -qz -CE -RU -kA -lB -lO -ab -ny -nc -oK -ab -kj -ab -rb -lw -uT -th -pK -kS -bt -iy -yF -nr -nr -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -fy -fy -fy -fy -fy -Yo -eY -eY -eY -zX -bW -bW -bW -bW -TL -Vi -Xy -mT -mT -mT -Db -Db -OD -gu -GJ -GJ -GJ -Xq -GJ -GJ -Xq -Xq -GJ -GJ -Xq -Xq -GJ -GJ -Xq -Xq -GJ -QB -CG -CN -UY -Zx -Ua -NY -aK -cA -ib -ib -PG -Df -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -kV -oq -kV -lf -kV -lf -lf -lf -mT -mT -Zf -pW -so -AA -AA -AA -kz -zt -zt -AA -AA -zt -AA -AA -zt -AA -mf -EP -mf -mf -mf -mf -mf -mf -EP -EP -mf -EP -EP -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +ujA +aRu +dkM +aqz +bOz +aYi +mWg +aXJ +nDl +aqz +aXE +avM +aFK +aSM +aRq +auY +apV +aia +aTK +auY +arr +auY +arb +alw +aOr +ath +asB +akS +aTV +aMr +aXa +anr +anr +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +afy +afy +afy +afy +afy +aYo +aeY +aeY +aeY +azX +abW +abW +abW +abW +aTL +acU +aXy +amT +amT +amT +aDb +aDb +aOD +agu +aGJ +aGJ +aGJ +agR +aGJ +aGJ +agR +agR +aGJ +aGJ +agR +agR +aGJ +aGJ +agR +agR +aGJ +aQB +aCG +aCN +aUY +aZx +aUa +aNY +aaK +acA +aib +aib +aPG +aDf +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +anP +axn +anP +alf +anP +alf +alf +alf +amT +amT +aZf +apW +aso +aAA +aAA +aAA +alz +aUT +aUT +aAA +aAA +aUT +aAA +aAA +aUT +aAA +amf +aEP +amf +amf +amf +amf +amf +amf +aEP +aEP +amf +aEP +aEP +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (50,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -bw -qB -bw -qz -dP -eO -Zm -eO -gZ -qz -qz -qz -oU -qz -qz -qz -mG -nO -oN -oW -OX -cx -rm -uf -wQ -dp -XO -pg -XO -yj -Ks -nr -nr -UN -UN -UN -BA -fy -fy -fy -yT -UN -UN -UN -BA -fy -fy -fy -fy -fy -fy -jU -fy -fy -fy -fy -fy -Fy -Yo -eY -eY -eY -zX -bW -bW -bW -bW -TL -Wn -QO -QO -QO -QO -QO -Db -OD -gu -Xq -Xq -Xq -Xq -GJ -Xq -Xq -Xq -GJ -Xq -Xq -Xq -GJ -Xq -Xq -Xq -GJ -QB -CG -CN -UY -wv -Df -CJ -Tv -sN -Pd -LJ -NE -wv -wv -wv -Df -mT -mT -Zf -Zf -kV -kV -lf -kV -lf -lf -lf -kV -kV -mT -Zf -Zf -pW -so -AA -zt -zt -kz -zt -zt -AA -AA -AA -AA -AA -AA -zt -zt -mf -mf -mf -Yr -FI -mf -mf -mf -mf -EP -EP -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +jcz +aRu +jcz +aqz +qRZ +lFE +fsh +lFE +eER +aqz +aqz +aqz +aoU +aqz +aqz +aqz +amG +anO +apl +aNO +aUl +aUE +arm +aOB +aeQ +adp +aFt +apg +aFt +aJQ +apS +anr +anr +aUN +aUN +aUN +aBA +afy +afy +afy +ayT +aUN +aUN +aUN +aBA +afy +afy +afy +afy +afy +afy +ajU +afy +afy +afy +afy +afy +aFy +aYo +aeY +aeY +aeY +azX +abW +abW +abW +abW +aTL +aWn +aQO +aQO +aQO +aQO +aQO +aDb +aOD +agu +agR +agR +agR +agR +aGJ +agR +agR +agR +aGJ +agR +agR +agR +aGJ +agR +agR +agR +aGJ +aQB +aCG +aCN +aUY +acf +aDf +aCJ +aTv +asN +aPd +aLJ +aNE +acf +acf +acf +aDf +amT +amT +aZf +aZf +anP +anP +alf +anP +alf +alf +alf +anP +anP +amT +aZf +aZf +apW +aso +aAA +aUT +aUT +alz +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aAA +aUT +aUT +amf +amf +amf +aYr +aFI +amf +amf +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (51,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -SC -la -As -qz -Li -qB -hb -oQ -Cs -qz -iV -js -kJ -lG -iV -qz -qz -kh -kj -oW -OX -qP -rm -rS -kS -kS -TZ -kS -pK -WV -yG -nr -nr -zS -AB -AZ -FX -BA -fy -yT -DH -DY -AB -EH -FX -BA -fy -yT -UN -BA -fy -jU -fy -fy -fy -fy -fy -Fy -Yo -eY -eY -eY -zX -bW -bW -bW -bW -TL -QO -cC -YZ -ZJ -Am -QO -Db -OD -gu -Xq -Xq -Xq -GJ -Xq -Xq -GJ -GJ -Xq -Xq -AE -In -Xq -Xq -GJ -GJ -Xq -QB -VH -CN -UY -wv -cZ -CJ -Tv -lX -ZA -oz -UY -wv -Df -Df -wv -wv -mT -mT -mT -kV -lf -lf -lf -kV -lf -kV -lf -kV -Mw -kV -Zf -pW -so -zt -zt -AA -kz -zt -zt -AA -zt -AA -AA -zt -AA -zt -AA -mf -EP -mf -mf -mf -mf -mf -mf -mf -EP -EP -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +ylt +aAl +rEa +aqz +oik +aRu +mWg +aEm +sqw +aqz +anQ +aHO +aLw +aUQ +anQ +aqz +aqz +aJj +arr +aNO +aUl +aKz +arm +ayu +akS +akS +aiH +akS +asB +aWV +auS +anr +anr +aAL +aZR +acW +aFX +aBA +afy +ayT +aDH +aaD +aZR +afm +aFX +aBA +afy +ayT +aUN +aBA +afy +ajU +afy +afy +afy +afy +afy +aFy +aYo +aeY +aeY +aeY +azX +abW +abW +abW +abW +aTL +aQO +acC +axf +alT +ael +aQO +aDb +aOD +agu +agR +agR +agR +aGJ +agR +agR +aGJ +aGJ +agR +agR +aAE +aIn +agR +agR +aGJ +aGJ +agR +aQB +aVH +aCN +aUY +acf +acZ +aCJ +aTv +alX +aZA +aoz +aUY +acf +aDf +aDf +acf +acf +amT +amT +amT +anP +alf +alf +alf +anP +alf +anP +alf +anP +avu +anP +aZf +apW +aso +aUT +aUT +aAA +alz +aUT +aUT +aAA +aUT +aAA +aAA +aUT +aAA +aUT +aAA +amf +aEP +amf +amf +amf +amf +amf +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (52,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -qz -fH -qz -qz -eN -fc -fN -eS -qz -qz -iZ -jA -kM -jA -nb -qz -qz -ni -kj -oW -OX -qT -lw -xk -kS -kS -pK -kS -sw -hr -Cd -nr -mT -BT -BT -BT -BC -Cn -Di -DA -DN -BT -BT -BT -BC -Cn -Di -DA -Ia -fI -fy -jU -fy -yT -UN -UN -UN -UN -TU -OU -eY -eY -zX -RN -bW -bW -bW -qg -QO -XF -ZU -ZU -ZU -Pu -Db -OD -gu -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -Xq -QB -CG -CN -UY -wv -NY -Zv -Tv -ah -Sj -iL -UY -wv -wv -wv -wv -NY -Rz -Mk -Si -kV -kV -lf -lf -lf -kV -kV -kV -pT -ZB -lf -RP -SX -so -AA -zt -zt -kz -zt -zt -zt -AA -AA -AA -AA -AA -zt -zt -AA -EP -mf -mf -mf -mf -mf -EP -mf -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +aqz +ibP +aqz +aqz +dGE +cXl +ciN +qqi +aqz +aqz +aZa +aRp +axc +aRp +abn +aqz +aqz +ack +arr +aNO +aUl +aEs +alw +axk +akS +akS +asB +akS +asw +ahr +aCd +anr +amT +aYS +aYS +aYS +aVA +aCn +aDi +aDA +aIE +aYS +aYS +aYS +aVA +aCn +aDi +aDA +afM +afI +afy +ajU +afy +ayT +aUN +aUN +aUN +aUN +aTU +aOU +aeY +aeY +azX +aRN +abW +abW +abW +aqg +aQO +ajc +abX +abX +abX +aKE +aDb +aOD +agu +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +agR +aQB +aCG +aCN +aUY +acf +aNY +aZv +aTv +aah +aSj +aiL +aUY +acf +acf +acf +acf +aNY +aRz +aMk +aSi +anP +anP +alf +alf +alf +anP +anP +anP +apT +aZB +alf +aRP +aSX +aso +aAA +aUT +aUT +alz +aUT +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aUT +aUT +aAA +aEP +amf +amf +amf +amf +amf +aEP +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (53,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -qz -la -bY -qz -qz -fi -fW -gI -qz -mv -gN -qB -qB -qB -JT -mv -qz -nR -kj -oW -OX -qT -lw -wL -kS -kS -kS -kS -Dk -Vr -nr -mT -mT -ed -AC -ed -ed -Cr -Cr -Cr -ed -ed -ed -ed -ed -Cr -Cr -Cr -kI -fI -fy -jU -fy -Dc -LI -Ny -Ny -Nn -fI -Pt -eY -eY -zX -bW -bW -bW -bW -bW -TW -XH -jE -ZN -ZU -Pu -Db -ob -xp -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -Iw -zh -tA -CN -sA -aK -Rz -CG -ls -fv -It -fv -sA -aK -aK -aK -aK -SF -CG -cw -Si -kV -lf -lf -lf -lf -lf -UP -kV -lf -ZB -lf -RP -SX -so -zt -zt -AA -kz -zt -zt -zt -AA -AA -AA -zt -AA -AA -AA -AA -EP -EP -EP -mf -mf -EP -mf -mf -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +aqz +aAl +daj +aqz +aqz +afi +hah +sUh +aqz +aRQ +aYi +aRu +aRu +aRu +aXJ +aRQ +aqz +aAz +arr +aNO +aUl +aEs +alw +awL +akS +akS +akS +akS +aDk +aVr +anr +amT +amT +aYh +aoR +aYh +aYh +adi +adi +adi +aYh +aYh +aYh +aYh +aYh +adi +adi +adi +agq +afI +afy +ajU +afy +aDc +ame +ajd +ajd +avh +afI +aPt +aeY +aeY +azX +abW +abW +abW +abW +abW +aze +aON +aYW +aSk +abX +aKE +aDb +aob +axp +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +aIw +azh +atA +aCN +asA +aaK +aRz +aCG +als +afv +aIt +afv +asA +aaK +aaK +aaK +aaK +aSF +aCG +acw +aSi +anP +alf +alf +alf +alf +alf +akR +anP +alf +aZB +alf +aRP +aSX +aso +aUT +aUT +aAA +alz +aUT +aUT +aUT +aAA +aAA +aAA +aUT +aAA +aAA +aAA +aAA +aEP +aEP +aEP +amf +amf +aEP +amf +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (54,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -qz -aS -bb -aV -cQ -qz -oU -fY -aV -qz -hx -qB -kv -kO -kv -qB -mS -qz -oe -kj -oW -OX -qT -dS -IP -kS -kS -kS -kS -kS -kS -nr -mT -ed -ed -ed -ed -ed -ed -ed -ed -Cx -xN -Cx -Cx -Cx -xN -Cx -ed -kI -fI -fy -jU -fy -ss -Gm -Gz -Gz -GR -fI -Yo -eY -eY -zX -bW -bW -bW -tO -um -Wp -XK -jE -ZN -Jh -CQ -Db -ob -Db -Db -Db -QV -Db -Db -TH -TH -TH -TH -TH -TH -TH -TH -Db -Db -Db -Db -Db -tA -KL -CG -CG -CG -CG -CG -ls -CG -Iv -Iv -Iv -Iv -Iv -Iv -Iv -Iv -cw -Si -kV -lf -lf -lf -lf -lf -kV -kV -lf -ZB -lf -RP -SX -Zf -zt -zt -AA -kz -zt -zt -zt -AA -zt -AA -AA -zt -AA -AA -AA -AA -mf -mf -Yr -FI -mf -mf -EP -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +aqz +rGq +vKz +uXj +bEn +aqz +aoU +fTP +uXj +aqz +dvi +aRu +aLF +aPo +aLF +aRu +agf +aqz +aoe +arr +aNO +aUl +aEs +adS +aCH +akS +akS +akS +akS +akS +akS +anr +amT +aYh +aYh +aYh +aYh +aYh +aYh +aYh +aYh +acK +auQ +acK +acK +acK +auQ +acK +aYh +agq +afI +afy +ajU +afy +ass +aGm +aGz +aGz +aQx +afI +aYo +aeY +aeY +azX +abW +abW +abW +atO +aum +aWp +aic +aYW +aSk +aLa +aNp +aDb +aob +aDb +aDb +aDb +aQV +aDb +aDb +aTH +aTH +aTH +aTH +aTH +aTH +aTH +aTH +aDb +aDb +aDb +aDb +aDb +atA +aKL +aCG +aCG +aCG +aCG +aCG +als +aCG +aIv +aIv +aIv +aIv +aIv +aIv +aIv +aIv +acw +aSi +anP +alf +alf +alf +alf +alf +anP +anP +alf +aZB +alf +aRP +aSX +aZf +aUT +aUT +aAA +alz +aUT +aUT +aUT +aAA +aUT +aAA +aAA +aUT +aAA +aAA +aAA +aAA +amf +amf +aYr +aFI +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (55,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -ap -sC -qB -qB -JE -ap -hn -ge -qp -hf -hz -jD -lt -kN -lt -jD -na -mQ -no -oP -ab -kj -qT -dS -ug -wQ -kS -sk -rZ -jv -kS -nr -sQ -ed -BN -BN -BN -BN -BN -ed -Dp -pn -aj -Av -zY -Av -aj -CU -Dn -kI -fI -fy -tJ -fy -fy -Nj -GG -Kq -Nq -fI -Yo -eY -eY -zX -bW -bW -bW -TL -Vt -Wu -XQ -jE -ZN -qF -CQ -Db -OD -Db -Db -Db -Db -Db -Db -TH -TH -TH -TH -TH -TH -TH -TH -Db -Db -Db -Db -Db -tA -KL -CG -Iv -Iv -CG -CG -CG -CG -Iv -Iv -Iv -Iv -Iv -Iv -Iv -tR -Of -Si -kV -lf -lf -lf -lf -lf -kV -kV -lf -ZB -lf -RP -SX -Zf -zt -zt -zt -kz -zt -zt -AA -AA -AA -AA -AA -AA -AA -AA -AA -AA -mf -mf -mf -mf -mf -mf -EP -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +qPc +twI +aRu +aRu +jiE +qPc +ahn +idz +kbQ +ahf +sid +api +axU +aLv +axU +api +aQN +amQ +aNU +aOJ +auY +arr +aEs +adS +asy +aeQ +akS +aXw +arZ +aGp +akS +anr +aku +aYh +aHG +aHG +aHG +aHG +aHG +aYh +aGP +acv +aaj +aAv +azY +aAv +aaj +arh +aoc +agq +afI +afy +atJ +afy +afy +aNj +aGG +aKq +aCL +afI +aYo +aeY +aeY +azX +abW +abW +abW +aTL +aVt +aqV +aMN +aYW +aSk +ayi +aNp +aDb +aOD +aDb +aDb +aDb +aDb +aDb +aDb +aTH +aTH +aTH +aTH +aTH +aTH +aTH +aTH +aDb +aDb +aDb +aDb +aDb +atA +aKL +aCG +aIv +aIv +aCG +aCG +aCG +aCG +aIv +aIv +aIv +aIv +aIv +aIv +aIv +atR +aOf +aSi +anP +alf +alf +alf +alf +alf +anP +anP +alf +aZB +alf +aRP +aSX +aZf +aUT +aUT +aUT +alz +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +amf +amf +amf +amf +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (56,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -oU -aq -bf -zd -qB -JT -Ko -gP -hl -ig -iz -hB -oQ -jH -kY -jH -jJ -ig -nA -nn -ab -ab -kj -wM -Om -uh -kS -kS -kS -kS -kS -vP -ZH -sQ -ed -BN -BN -BN -BN -BN -ed -yV -aj -aj -yy -fj -eC -aj -aj -AR -kI -fI -fy -jU -fy -yT -Nk -Gz -Gz -GR -fI -Yo -Pr -eY -zX -bW -bW -bW -qg -QX -Wp -Wk -jE -ZN -ZU -CQ -Db -OD -Db -Db -Db -Db -Db -Db -TH -TH -TH -TH -TH -TH -TH -TH -Db -Db -Db -Db -Db -tA -CN -CG -Iv -Iv -CG -tA -tA -CG -Iv -Iv -Iv -Iv -Iv -Iv -Iv -Iv -iA -Si -kV -lf -OF -lf -lf -lf -lf -kV -xG -ZB -kV -RP -SX -Zf -Zf -zt -zt -kz -zt -zt -AA -zt -AA -AA -zt -AA -AA -zt -AA -AA -Zf -mf -mf -mf -mf -mf -EP -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aoU +qFc +iUH +cpR +aRu +aXJ +kMG +sUR +wHP +asH +wVf +sMH +aEm +avf +ayq +avf +ahe +asH +aeE +aLu +auY +auY +arr +abO +aGq +auh +akS +akS +akS +akS +akS +avP +aZH +aku +aYh +aHG +aHG +aHG +aHG +aHG +aYh +aez +aaj +aaj +ayy +afj +aeC +aaj +aaj +aoM +agq +afI +afy +ajU +afy +ayT +aNk +aGz +aGz +aQx +afI +aYo +aPr +aeY +azX +abW +abW +abW +aqg +aQX +aWp +aPn +aYW +aSk +abX +aNp +aDb +aOD +aDb +aDb +aDb +aDb +aDb +aDb +aTH +aTH +aTH +aTH +aTH +aTH +aTH +aTH +aDb +aDb +aDb +aDb +aDb +atA +aCN +aCG +aIv +aIv +aCG +atA +atA +aCG +aIv +aIv +aIv +aIv +aIv +aIv +aIv +aIv +aiA +aSi +anP +alf +aOF +alf +alf +alf +alf +anP +axG +aZB +anP +aRP +aSX +aZf +aZf +aUT +aUT +alz +aUT +aUT +aAA +aUT +aAA +aAA +aUT +aAA +aAA +aUT +aAA +aAA +aZf +amf +amf +amf +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (57,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -aq -bf -bA -jD -cT -eZ -gS -gh -gJ -iB -hE -JT -ht -la -ht -gN -ig -la -nn -oI -rg -OI -su -Kc -sh -sJ -kS -eH -fl -eW -kS -nr -sQ -ed -BN -BN -BN -BN -BN -ed -Dp -Au -fj -fj -xm -fj -fj -Cy -Dn -kI -fI -fy -jU -fy -Dc -Nl -Nz -Nz -Nt -fI -Yo -eY -eY -zX -bW -bW -bW -bW -vO -TW -ZU -ZU -ZU -ZU -Pu -Db -OD -Db -Db -Db -eG -QL -QL -QL -QL -gj -Db -Db -Db -eG -QL -QL -QL -QL -QL -gj -tA -CN -wK -Wa -Xk -CG -tA -tA -CG -wK -uy -uy -xZ -CG -CG -CG -CG -iA -Si -kV -kV -kV -kV -lf -lf -lf -kV -RD -ZB -lf -RP -SX -SX -Zf -zt -AA -kz -zt -zt -AA -AA -AA -AA -AA -AA -AA -zt -AA -zt -Zf -EP -mf -mf -mf -Rh -Bv -Nu -Wr -Wr -Wr -Wr -Wr -Wr -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +qFc +iUH +iPs +api +oNI +wmg +dOA +tje +sHR +bCD +cXn +aXJ +azN +aAl +azN +aYi +asH +aAl +aLu +aBa +aqc +aMH +asu +aKc +awE +asJ +akS +aQj +aKO +asr +akS +anr +aku +aYh +aHG +aHG +aHG +aHG +aHG +aYh +aGP +aAu +afj +afj +aPK +afj +afj +aCy +aoc +agq +afI +afy +ajU +afy +aDc +aVY +aTy +aTy +aWt +afI +aYo +aeY +aeY +azX +abW +abW +abW +abW +avO +aze +abX +abX +abX +abX +aKE +aDb +aOD +aDb +aDb +aDb +aeG +aQL +aQL +aQL +aQL +agj +aDb +aDb +aDb +aeG +aQL +aQL +aQL +aQL +aQL +agj +atA +aCN +awK +aWa +aXk +aCG +atA +atA +aCG +awK +auy +auy +axZ +aCG +aCG +aCG +aCG +aiA +aSi +anP +anP +anP +anP +alf +alf +alf +anP +aRD +aZB +alf +aRP +aSX +aSX +aZf +aUT +aAA +alz +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aUT +aAA +aUT +aZf +aEP +amf +amf +amf +aRh +aBv +aNu +aWr +aWr +aWr +aWr +aWr +aWr +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (58,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -fh -bi -bN -qB -Wc -fh -hn -gi -qp -iC -hF -jD -lt -kN -lt -jD -nf -mQ -no -pw -qL -ML -qX -kC -uh -kS -kS -tS -tS -wQ -kS -nr -zg -yk -yk -yk -yk -yA -ed -ed -Dp -Ar -fj -xm -Bm -xm -Tl -Cz -Dn -kI -fI -fy -jU -fy -ss -BL -BL -BL -BL -OV -PE -eY -eY -zX -bW -bW -bW -bW -vO -QO -XV -ZU -ZU -ZU -Pu -Db -OD -Db -eG -QL -rw -Xq -Xq -Xq -GJ -QB -Db -Db -Db -gu -Xq -Xq -GJ -Xq -Xq -QB -CG -CN -UY -Ws -Xr -gn -tA -tA -wK -VV -wv -wv -pj -tA -tA -tA -tA -cw -Si -lf -Oc -lf -oq -kV -lf -lf -kV -QH -ZB -lf -RP -SX -SX -lk -kV -zt -kz -zt -zt -zt -zt -zt -zt -zt -AA -AA -AA -Zf -Zf -Zf -zt -mf -mf -mf -AI -EP -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +kAa +vfn +oNl +aRu +hoW +kAa +ahn +dIc +kbQ +aiC +hGg +api +axU +aLv +axU +api +aXT +amQ +aNU +aVf +aJJ +afO +aNi +akD +auh +akS +akS +atS +atS +aeQ +akS +anr +aJv +akH +akH +akH +akH +ajz +aYh +aYh +aGP +aAr +afj +aPK +aha +aPK +aTl +aCz +aoc +agq +afI +afy +ajU +afy +ass +aBL +aBL +aBL +aBL +aOV +aPE +aeY +aeY +azX +abW +abW +abW +abW +avO +aQO +aGc +abX +abX +abX +aKE +aDb +aOD +aDb +aeG +aQL +arw +agR +agR +agR +aGJ +aQB +aDb +aDb +aDb +agu +agR +agR +aGJ +agR +agR +aQB +aCG +aCN +aUY +aid +aXr +agn +atA +atA +awK +aVV +acf +acf +apj +atA +atA +atA +atA +acw +aSi +alf +aOc +alf +axn +anP +alf +alf +anP +aQH +aZB +alf +aRP +aSX +aSX +alk +anP +aUT +alz +aUT +aUT +aUT +aUT +aUT +aUT +aUT +aAA +aAA +aAA +aZf +aZf +aZf +aUT +amf +amf +amf +aAI +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (59,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -qz -aS -bP -eS -cX -qz -qz -hm -eS -hi -hN -qB -kv -kO -kv -qB -ns -qz -np -pa -qM -rG -Qs -VF -TP -wQ -kS -tS -tS -wQ -vN -yv -Av -zG -Av -qa -AC -sQ -ed -ed -Dp -Au -xP -fj -EI -fj -fj -Cy -Dn -kI -fI -fy -jU -fy -fy -fy -fy -fy -Fy -Yo -eY -eY -eY -zX -bW -bW -uW -bW -vO -WC -hv -YF -ZQ -sa -YN -IB -CK -IB -fS -MX -bF -bF -MX -bF -bF -de -IB -IB -sb -gu -Xq -GJ -GJ -GJ -Xq -QB -VH -CN -UY -Xg -CJ -CG -CG -gn -UY -Df -wv -Df -Vd -CG -CG -bo -CG -cw -Si -lf -lf -lf -lf -kV -kV -lf -OF -kV -ZB -lf -RP -SX -SX -lk -kV -zt -kz -zt -zt -zt -AA -AA -AA -AA -AA -AA -zt -Zf -Zf -AA -zt -EP -mf -EP -Tz -EP -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -EY -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +aqz +rGq +saP +qqi +vJS +aqz +aqz +pny +qqi +ahi +sxk +aRu +aLF +aPo +aLF +aRu +asZ +aqz +anp +aLk +aEE +ajC +aLq +aVF +aII +aeQ +akS +atS +atS +aeQ +avN +ayv +aAv +azG +aAv +aqa +aoR +aku +aYh +aYh +aGP +aAu +axP +afj +anq +afj +afj +aCy +aoc +agq +afI +afy +ajU +afy +afy +afy +afy +afy +aFy +aYo +aeY +aeY +aeY +azX +abW +abW +auW +abW +avO +aWC +ahv +aFJ +adX +apI +aYN +aIB +aCK +aIB +afS +aUx +abF +abF +aUx +abF +abF +ade +aIB +aIB +asb +agu +agR +aGJ +aGJ +aGJ +agR +aQB +aVH +aCN +aUY +aXg +aCJ +aCG +aCG +agn +aUY +aDf +acf +aDf +aVd +aCG +aCG +ahH +aCG +acw +aSi +alf +alf +alf +alf +anP +anP +alf +aOF +anP +aZB +alf +aRP +aSX +aSX +alk +anP +aUT +alz +aUT +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aAA +aUT +aZf +aZf +aAA +aUT +aEP +amf +aEP +aTz +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (60,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -qz -qz -bz -ca -qz -qz -qz -hn -ii -qz -jj -jJ -qB -qB -qB -oQ -jj -qz -aj -Vj -tc -wW -sD -VF -IP -kS -kS -tS -tS -kE -nr -nr -fj -fj -fj -aj -aj -sQ -ed -ed -yV -aj -aj -yy -rB -eC -qn -aj -AR -kI -fI -fy -jU -fy -GY -fy -fy -MI -Fy -Yo -eY -eY -eY -zX -bW -pX -bW -bW -vO -vO -QO -QO -cC -QO -QO -mT -mT -mT -mT -mT -GJ -mT -mT -mT -mT -QB -Db -Db -ky -gu -Xq -Xq -GJ -GJ -Xq -QB -CG -CN -UY -Ws -Xd -IV -XN -TQ -VV -wv -Df -Df -Vd -fd -fd -CG -CG -cw -Il -fL -lK -kV -lf -kV -kV -kV -lf -lf -ZB -lf -RP -SX -SX -lk -kV -AA -kz -zt -zt -AA -AA -zt -AA -zt -zt -zt -AA -Zf -Zf -AA -AA -AA -mf -mf -AI -mf -Zf -Zf -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aqz +aqz +eVo +vIE +aqz +aqz +aqz +ahn +bYH +aqz +aGH +ahe +aRu +aRu +aRu +aEm +aGH +aqz +aaj +aVj +atc +awW +asD +aVF +aCH +akS +akS +atS +atS +aAi +anr +anr +afj +afj +afj +aaj +aaj +aku +aYh +aYh +aez +aaj +aaj +ayy +arB +aeC +aqn +aaj +aoM +agq +afI +afy +ajU +afy +aGY +afy +afy +aMI +aFy +aYo +aeY +aeY +aeY +azX +abW +apX +abW +abW +avO +avO +aQO +aQO +acC +aQO +aQO +amT +amT +amT +amT +amT +aGJ +amT +amT +amT +amT +aQB +aDb +aDb +aky +agu +agR +agR +aGJ +aGJ +agR +aQB +aCG +aCN +aUY +aid +aXd +aIV +aXN +aTQ +aVV +acf +aDf +aDf +aVd +afd +afd +aCG +aCG +acw +aIl +afL +alK +anP +alf +anP +anP +anP +alf +alf +aZB +alf +aRP +aSX +aSX +alk +anP +aAA +alz +aUT +aUT +aAA +aAA +aUT +aAA +aUT +aUT +aUT +aAA +aZf +aZf +aAA +aAA +aAA +amf +amf +aAI +amf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (61,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -Bd -pq -pq -qz -qz -qz -qz -dQ -fp -JJ -aV -qz -qz -ji -kw -kP -kw -mE -qz -qz -mI -hA -tc -wW -fC -rb -ut -tS -kS -tS -tS -sk -nr -vc -fj -wC -fj -fj -Cy -sQ -ed -ed -Dp -Xi -aj -xM -mY -xM -aj -Ef -Dn -kI -FX -BA -jU -fy -fy -Gl -vg -Fy -fy -Yo -eY -eY -Qo -zX -bW -bW -bW -bW -tK -rY -bW -Zb -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -Db -Db -ky -gu -GJ -GJ -GJ -GJ -Xq -QB -CG -mT -UY -Df -Df -mT -mT -gM -jL -SQ -SQ -SQ -SL -CG -Pw -CG -dj -Zz -Zl -cP -lf -kV -lf -kV -kV -lf -kV -lf -ZB -lf -RP -SX -SX -lk -kV -AA -kz -zt -zt -AA -AA -AA -AA -AA -zt -zt -AA -zt -AA -AA -AA -AA -EP -EP -AI -mf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +aBd +apq +apq +aqz +aqz +aqz +aqz +sKi +hmV +cmT +uXj +aqz +aqz +afR +asf +afs +asf +aem +aqz +aqz +amI +ahA +atc +awW +afC +arb +aut +atS +akS +atS +atS +aXw +anr +aln +afj +aTJ +afj +afj +aCy +aku +aYh +aYh +aGP +aXt +aaj +axM +amY +axM +aaj +aBx +aoc +agq +aFX +aBA +ajU +afy +afy +aGl +avg +aFy +afy +aYo +aeY +aeY +aQo +azX +abW +abW +abW +abW +atK +arY +abW +aZb +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +aDb +aDb +aky +agu +aGJ +aGJ +aGJ +aGJ +agR +aQB +aCG +amT +aUY +aDf +aDf +amT +amT +agM +ajL +aSQ +aSQ +aSQ +aSL +aCG +aYJ +aCG +adj +aZz +aZl +acP +alf +anP +alf +anP +anP +alf +anP +alf +aZB +alf +aRP +aSX +aSX +alk +anP +aAA +alz +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aUT +aUT +aAA +aUT +aAA +aAA +aAA +aAA +aEP +aEP +aAI +amf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (62,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -aW -aW -aW -aW -aW -pq -qz -dT -qB -xT -JT -iJ -qz -jk -bd -kX -bd -jk -qz -mT -aj -eq -tc -wW -sD -Ah -tS -vm -gO -vV -vV -ov -nr -wq -wC -Bm -Op -fj -yr -sQ -ed -ed -ed -BT -xQ -BT -EQ -BT -xQ -BT -ed -Dp -AZ -fI -tJ -fy -fy -Gb -AK -Fy -fy -Yo -hM -eY -eY -zX -bW -bW -bW -tO -HT -Rw -bW -bW -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Ck -Ck -Sn -eg -Uh -Ck -Ck -Sm -Sm -Oq -UZ -UZ -VM -mT -mT -mT -mT -mT -mT -mT -mT -cl -uR -cl -ks -ks -HV -ks -mT -mT -mT -mT -JH -SU -nj -UP -kV -lf -kV -lf -ZB -lf -RP -SX -SX -lk -kV -zt -kz -zt -zt -zt -AA -zt -AA -AA -AA -AA -AA -zt -AA -AA -zt -AA -zt -EP -AI -mf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +tYE +tYE +tYE +tYE +tYE +apq +aqz +fAi +aRu +kwf +aXJ +jcw +aqz +aBZ +aMC +aLE +aMC +aBZ +aqz +amT +aaj +aCF +atc +awW +asD +aAh +atS +avm +adL +aaU +aaU +aaY +anr +azT +aTJ +aha +amm +afj +ayr +aku +aYh +aYh +aYh +aYS +aFc +aYS +azz +aYS +aFc +aYS +aYh +aGP +acW +afI +atJ +afy +afy +aGb +aAK +aFy +afy +aYo +ahM +aeY +aeY +azX +abW +abW +abW +atO +aHT +aRw +abW +abW +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aCk +aCk +aTq +aeg +aXU +aCk +aCk +aTN +aTN +aOq +aXs +aXs +aVM +amT +amT +amT +amT +amT +amT +amT +amT +abq +all +abq +aks +aks +aDS +aks +amT +amT +amT +amT +aJH +aSU +anj +akR +anP +alf +anP +alf +aZB +alf +aRP +aSX +aSX +alk +anP +aUT +alz +aUT +aUT +aUT +aAA +aUT +aAA +aAA +aAA +aAA +aAA +aUT +aAA +aAA +aUT +aAA +aUT +aEP +aAI +amf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (63,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -at -bG -bG -bG -oF -pq -qz -qw -qB -xT -qB -iN -qz -qz -qz -qz -qz -qz -qz -mT -aj -zD -tc -wW -sD -lw -vC -mU -lw -vW -wQ -lw -ZH -yI -fj -Bu -zV -fj -Cy -zg -yA -ed -zM -ed -ed -BN -sl -ed -qK -ed -zf -Dp -IF -fI -jU -fy -fy -Gb -AK -Fy -fy -Yo -eY -eY -eY -zX -bW -bW -bW -TL -tB -WL -bW -Zc -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Ck -NB -iu -Ck -aF -Iy -Ck -Oq -Oq -Oq -Oq -Oq -VM -mT -mT -mT -mT -mT -mT -mT -Wo -fV -fE -fV -ks -ks -du -ks -ks -ks -ks -ks -Tn -SX -lk -kV -kV -lf -kV -kV -ZB -lf -RP -SX -SX -lk -kV -AA -WD -zt -zt -zt -OK -AA -zt -AA -fQ -dv -zt -zt -AA -Zf -AA -AA -zt -EP -Tz -mf -mf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +piC +uVn +uVn +uVn +gOM +apq +aqz +gDI +aRu +kwf +aRu +feV +aqz +aqz +aqz +aqz +aqz +aqz +aqz +amT +aaj +azD +atc +awW +asD +alw +axA +aYb +alw +aLV +aeQ +alw +aZH +aHz +afj +aVW +azV +afj +aCy +aJv +ajz +aYh +aVc +aYh +aYh +aHG +aoV +aYh +aVZ +aYh +aJW +aGP +avD +afI +ajU +afy +afy +aGb +aAK +aFy +afy +aYo +aeY +aeY +aeY +azX +abW +abW +abW +aTL +atB +aWL +abW +aZc +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aCk +ahc +aYO +aCk +azk +aUU +aCk +aOq +aOq +aOq +aOq +aOq +aVM +amT +amT +amT +amT +amT +amT +amT +anl +anu +aLm +anu +aks +aks +awd +aks +aks +aks +aks +aks +aTn +aSX +alk +anP +anP +alf +anP +anP +aZB +alf +aRP +aSX +aSX +alk +anP +aAA +aWD +aUT +aUT +aUT +aOK +aAA +aUT +aAA +afQ +adv +aUT +aUT +aAA +aZf +aAA +aAA +aUT +aEP +aTz +amf +amf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (64,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -cb -cb -cb -bG -cb -pq -qz -Wj -Ay -hD -im -iO -qz -mT -mT -mT -mT -mT -mT -mT -aj -qR -rB -fj -sD -lw -lw -Mh -lw -vX -wV -nr -nr -aj -fj -zH -rB -qn -aj -BG -sQ -ed -zM -ed -ed -BN -sl -zf -qK -ed -zf -Dp -CM -fI -jU -fy -fy -Gb -AK -fy -fy -Yo -eY -eY -Pr -zX -bW -nJ -SY -qg -Vv -Rw -bW -bW -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -mT -Ck -Ck -Px -HN -Ln -Cf -qs -Kl -Ck -ks -ks -Nd -ks -vr -ks -ks -ks -kg -RC -ad -jF -JR -fV -fV -fV -VS -Tk -Ss -wU -ks -Ss -WX -kt -Tn -SX -lk -kV -kV -lf -kV -kV -ZB -lf -Zf -Zf -Zf -lk -kV -AA -WD -zt -zt -AA -OK -AA -AA -zt -AA -zt -AA -AA -AA -Zf -Zf -Zf -Zf -AA -AI -EP -EP -mf -mf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +mhD +mhD +mhD +uVn +mhD +apq +aqz +oxJ +wWh +uEJ +lfL +nwy +aqz +amT +amT +amT +amT +amT +amT +amT +aaj +aqR +arB +afj +asD +alw +alw +aIj +alw +aRv +aHD +anr +anr +aaj +afj +azH +arB +aqn +aaj +aBH +aku +aYh +aVc +aYh +aYh +aHG +aoV +aJW +aVZ +aYh +aJW +aGP +aCX +afI +ajU +afy +afy +aGb +aAK +afy +afy +aYo +aeY +aeY +aPr +azX +abW +anJ +aSY +aqg +aVv +aRw +abW +abW +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +amT +aCk +aCk +axw +aAx +aMy +atU +aly +aKl +aCk +aks +aks +aNd +aks +avr +aks +aks +aks +axi +amP +aTb +aiG +abg +anu +anu +anu +aQd +aeh +aSs +amu +aks +aSs +aWX +aoL +aTn +aSX +alk +anP +anP +alf +anP +anP +aZB +alf +aZf +aZf +aZf +alk +anP +aAA +aWD +aUT +aUT +aAA +aOK +aAA +aAA +aUT +aAA +aUT +aAA +aAA +aAA +aZf +aZf +aZf +aZf +aAA +aAI +aEP +aEP +amf +amf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (65,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pq -pq -pq -od -pq -pq -qz -qz -qz -qz -qz -qz -qz -mT -mT -mT -mT -mT -mT -mT -mI -co -oX -vb -nW -rb -Ah -mU -lw -wf -wf -lw -lw -aj -Bw -aj -mY -qa -Bc -zf -sQ -ed -ed -qK -zf -ed -rA -zf -ed -ed -Hn -Ic -xR -wx -jU -fy -fy -Gb -AK -fy -Fy -Yo -eY -eY -eY -YV -RW -bW -fX -bW -MA -Rw -bW -Zd -ZV -Ip -Mg -Ip -YB -Zf -Zf -Zf -Zf -mT -mT -Ck -yQ -nd -HN -eD -Cf -JP -PT -Ck -xH -UR -Gw -UR -UR -yW -Nf -ks -tV -VP -Hm -fE -fE -fV -iI -iI -Hy -Ss -Ss -Ss -HL -Ss -YE -Te -Tn -SX -lk -kV -kV -kV -kV -UP -ZB -lf -ay -kV -Zf -Zf -kV -zt -kz -zt -zt -OK -OK -zt -AA -AA -zt -zt -zt -AA -AA -Zf -Zf -Zf -Zf -AA -AI -EP -mf -mf -mf -mf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apq +apq +apq +kwI +apq +apq +aqz +aqz +aqz +aqz +aqz +aqz +aqz +amT +amT +amT +amT +amT +amT +amT +amI +asE +aWQ +aBi +aRs +arb +aAh +aYb +alw +aOC +aOC +alw +alw +aaj +aBw +aaj +amY +aqa +auk +aJW +aku +aYh +aYh +aVZ +aJW +aYh +aNS +aJW +aYh +aYh +avU +aXh +axR +awx +ajU +afy +afy +aGb +aAK +afy +aFy +aYo +aeY +aeY +aeY +aYV +aRW +abW +afX +abW +aMA +aRw +abW +aZd +abr +anX +aOx +anX +aMD +aZf +aZf +aZf +aZf +amT +amT +aCk +agD +aJs +aAx +alM +atU +aGj +apU +aCk +axH +aXv +auc +aXv +aXv +aMG +auj +aks +aNP +aEM +awD +aLm +aLm +anu +aKS +aKS +aNb +aSs +aSs +aSs +aSg +aSs +aYE +adK +aTn +aSX +alk +anP +anP +anP +anP +akR +aZB +alf +aay +anP +aZf +aZf +anP +aUT +alz +aUT +aUT +aOK +aOK +aUT +aAA +aAA +aUT +aUT +aUT +aAA +aAA +aZf +aZf +aZf +aZf +aAA +aAI +aEP +amf +amf +amf +amf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (66,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -cg -Ys -df -df -Ys -pq -Bd -pq -pq -mT -pq -pq -pq -pq -pq -pq -pq -pq -pq -nS -bB -vp -vp -wO -vp -vp -wO -vp -vp -wO -vZ -yK -bC -wO -zW -AO -pP -BU -sQ -ed -ed -qK -zf -Ex -Bn -FO -ed -GE -xR -BL -wx -fy -jU -fy -fy -Ga -JZ -fy -Fy -OY -PN -PN -PN -PN -Sa -Sz -QU -TT -Vw -QX -bW -bW -NQ -Lz -Lz -Lz -Fa -Vi -Zf -Zf -Zf -mT -mT -Ck -Ab -HN -Ml -Ml -XI -HN -jZ -Ck -qo -bu -bu -bu -bu -bu -bu -ks -SP -DQ -fq -fV -fV -fV -iI -iI -Hy -Tk -Ss -Tk -ks -Ss -lU -kt -VQ -JC -lk -kV -kV -lf -kV -kV -ZB -lf -aa -kV -kV -Zf -kV -AA -kz -zt -zt -AA -AA -AA -AA -AA -AA -AA -AA -AA -zt -AA -zt -Zf -Zf -Zf -es -EP -mf -EP -EP -mf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +acg +aYs +adf +adf +aYs +apq +aBd +apq +apq +amT +apq +apq +apq +apq +apq +apq +apq +apq +apq +anS +abB +avp +avp +awO +avp +avp +awO +avp +avp +awO +alY +akr +aIr +awO +aMv +aAO +ahg +aBp +aku +aYh +aYh +aVZ +aJW +atx +avH +aOl +aYh +aQk +axR +aBL +awx +afy +ajU +afy +afy +aGa +aJZ +afy +aFy +aOY +aPN +aPN +aPN +aPN +aSa +aSz +aQU +aTT +aVw +aQX +abW +abW +aHd +alE +alE +alE +aVG +acU +aZf +aZf +aZf +amT +amT +aCk +aSr +aAx +app +app +aqm +aAx +aRb +aCk +aUV +aFo +aFo +aFo +aFo +aFo +aFo +aks +aPb +avs +aci +anu +anu +anu +aKS +aKS +aNb +aeh +aSs +aeh +aks +aSs +alU +aoL +aVQ +aJC +alk +anP +anP +alf +anP +anP +aZB +alf +aaa +anP +anP +aZf +anP +aAA +alz +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aUT +aAA +aUT +aZf +aZf +aZf +aes +aEP +amf +aEP +aEP +amf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (67,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -cm -Ys -Ys -Ys -dh -pq -Ys -cs -pq -Bd -pq -ev -dD -Ys -Ys -Ys -dD -Ys -pq -fj -oY -tq -tq -tq -tq -tq -tq -tq -tq -tq -yw -wC -zc -fj -pc -Cz -Bg -BV -Ct -Dm -DB -Dz -DZ -Ey -Fd -FP -sm -GF -Hs -GB -GB -GB -Jw -GB -LR -GB -GB -GB -Oe -Pe -Pe -Pe -vY -vY -vY -vY -Uw -Ud -PW -vO -bW -bW -AU -Ip -Ip -ju -Hi -mD -Zf -mT -mT -mT -mT -Ck -nY -HN -Lx -da -WI -gl -XA -Ck -lx -wN -Sl -Sl -Sl -WR -IU -qk -fV -fV -fV -fV -fV -fV -fV -fV -iR -Tk -lU -Fr -ks -dx -ks -ks -ks -Tn -lk -kV -kV -lf -lf -kV -ZB -lf -Od -kV -kV -kV -kV -zt -kz -zt -zt -zt -zt -AA -AA -zt -AA -zt -zt -AA -AA -AA -zt -Zf -AA -zt -es -EP -EP -mf -EP -mf -EP -mf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +acm +aYs +aYs +aYs +adh +apq +aYs +acs +apq +aBd +apq +aWU +adD +aYs +aYs +aYs +adD +aYs +apq +afj +aoY +atq +atq +atq +atq +atq +atq +atq +atq +atq +aKj +aTJ +aQh +afj +avd +aCz +ata +aTR +abJ +aph +atZ +agc +aLP +aXb +arU +avo +aFf +alb +aHs +aGB +aGB +aGB +aJw +aGB +aLR +aGB +aGB +aGB +aOe +amK +amK +amK +aNH +aNH +aNH +aNH +aUw +aUd +aPW +avO +abW +abW +aCp +anX +anX +ayM +aoh +aKI +aZf +amT +amT +amT +amT +aCk +apo +aAx +aBE +acj +ahU +aWq +agg +aCk +aHb +aKV +avz +avz +avz +aIT +aZu +awm +anu +anu +anu +anu +anu +anu +anu +anu +aQz +aeh +alU +aTO +aks +adx +aks +aks +aks +aTn +alk +anP +anP +alf +alf +anP +aZB +alf +aOd +anP +anP +anP +anP +aUT +alz +aUT +aUT +aUT +aUT +aAA +aAA +aUT +aAA +aUT +aUT +aAA +aAA +aAA +aUT +aZf +aAA +aUT +aes +aEP +aEP +amf +aEP +amf +aEP +amf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (68,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -Ys -Ys -Ys -Ys -Ys -fo -Ys -lj -gL -dc -hO -qf -qi -ga -qi -qi -qi -qi -hO -bC -qN -wC -wC -wC -wC -wC -wC -wC -wC -wC -yx -aj -yy -fj -rB -Cz -Dn -BY -ed -sl -sl -BN -ed -Mt -BO -FS -zf -xV -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -Oj -DD -DD -DD -Lz -Lz -Lz -Lz -Lz -bW -KK -tC -bW -bW -AU -Lz -Lz -Lz -Hi -Vi -TD -Zf -Zf -mT -mT -Ck -lS -HN -Ck -OG -wJ -fZ -cO -Ck -lx -wN -Sl -Sl -Sl -Sl -IU -Tk -Eh -fV -fV -fV -aP -ks -ql -RX -iR -Tk -lU -Tk -LZ -ks -VR -SJ -kt -Tn -lk -kV -kV -kV -lf -lf -LM -kV -kV -kV -kV -kV -UP -zt -mt -zt -zt -Nc -AA -AA -AA -AA -AA -Ad -zt -AA -AA -AA -AA -zt -AA -AA -es -AA -EP -mf -mf -EP -EP -mf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +aYs +aYs +aYs +aYs +aYs +afo +aYs +alj +agL +tqJ +anU +jeO +aqi +aga +aqi +aqi +aqi +aqi +anU +aIr +aXu +aTJ +aTJ +aTJ +aTJ +aTJ +aTJ +aTJ +aTJ +aTJ +axv +aaj +ayy +afj +arB +aCz +aoc +aLY +aYh +aoV +aoV +aHG +aYh +aSV +aPy +ayE +aJW +aeI +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aXL +aRI +aRI +aRI +alE +alE +alE +alE +alE +abW +aKK +atC +abW +abW +aCp +alE +alE +alE +aoh +acU +aDh +aZf +aZf +amT +amT +aCk +aAN +aAx +aCk +aDI +aTB +aDR +akf +aCk +aHb +aKV +avz +avz +avz +avz +aZu +aeh +apr +anu +anu +anu +aeV +aks +aNm +aby +aQz +aeh +alU +aeh +aLZ +aks +aVR +aSJ +aoL +aTn +alk +anP +anP +anP +alf +alf +aLM +anP +anP +anP +anP +anP +akR +aUT +amt +aUT +aUT +azn +aAA +aAA +aAA +aAA +aAA +aqh +aUT +aAA +aAA +aAA +aAA +aUT +aAA +aAA +aes +aAA +aEP +amf +amf +aEP +aEP +amf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT "} (69,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -dk -bQ -bQ -TY -bQ -pq -Ys -Ys -Ys -sI -hQ -jM -Ys -lj -eu -qi -qi -qi -or -nV -bL -tq -tq -tq -tq -tq -tq -tq -tq -tq -yw -yL -zc -fj -pc -Cz -yn -Ca -Cu -Du -iP -BN -ed -qK -Bo -FS -zf -xV -fy -vF -fy -fy -fy -vF -fy -Jn -GA -fy -DD -DD -DD -Ql -Lz -Lz -Lz -Lz -Lz -bW -vO -bW -bW -bW -AU -Lz -Lz -Lz -Hi -Vi -Zf -Zf -Zf -mT -mT -Ck -VL -HN -tn -rk -Hq -fZ -av -Ck -qo -bu -bu -bu -bu -bu -bu -ks -Rg -fV -AJ -nz -IA -ks -dx -ks -Qv -Tk -lU -Tk -ks -Gh -lU -xl -qI -Tn -lk -UP -kV -kV -lf -kV -GX -zU -zU -zU -zU -zU -zU -ZF -ZF -ZF -ZF -ZF -ZF -ZT -ZF -ZF -ZF -ZF -ZF -ZF -ZF -ZF -ZF -ZF -ZF -ZF -ZF -ZF -xK -mw -IG -mw -mw -mw -mw -xK -mw -WM -WM -WM -WM -WM -mw -mw -WM -WM -WM -WM -WM -mT -mT -mT -mT -mT -mT -mT -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +adk +abQ +abQ +aTY +abQ +apq +aYs +aYs +aYs +xDk +scA +rVV +aYs +alj +aeu +aqi +aqi +aqi +abE +aAM +abL +atq +atq +atq +atq +atq +atq +atq +atq +atq +aKj +aJy +aQh +afj +avd +aCz +amX +auG +aHF +awa +azO +aHG +aYh +aVZ +aGk +ayE +aJW +aeI +afy +avF +afy +afy +afy +avF +afy +aJn +aGA +afy +aRI +aRI +aRI +aKX +alE +alE +alE +alE +alE +abW +avO +abW +abW +abW +aCp +alE +alE +alE +aoh +acU +aZf +aZf +aZf +amT +amT +aCk +aar +aAx +atn +aWj +aEU +aDR +atX +aCk +aUV +aFo +aFo +aFo +aFo +aFo +aFo +aks +aKC +anu +asT +aWF +afg +aks +adx +aks +aJS +aeh +alU +aeh +aks +aPj +alU +axl +aMK +aTn +alk +akR +anP +anP +alf +anP +aGX +azU +azU +azU +azU +azU +azU +aZF +aZF +aZF +aZF +aZF +aZF +aZT +aZF +aZF +aZF +aZF +aZF +aZF +aZF +aZF +aZF +aZF +aZF +aZF +aZF +aZF +axK +amw +aIG +amw +amw +amw +amw +axK +amw +aWM +aWM +aWM +aWM +aWM +amw +amw +aWM +aWM +aWM +aWM +aWM +amT +amT +amT +amT +amT +amT +amT +amT "} (70,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pq -pq -pM -pq -pq -pq -pq -pq -pq -pq -pq -oo -Ys -Ys -Ys -pq -Ys -jR -Ys -lH -Ys -jR -Ys -ou -rB -nS -vp -vp -jS -vp -vp -vp -vp -vp -jS -vZ -wp -zi -jS -xt -AO -Bl -BG -sQ -rA -ed -qK -ed -qK -Bo -FS -zf -xV -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -Oj -DD -DD -DD -Lz -Lz -Lz -Lz -Lz -bW -WZ -PW -bW -bW -AU -Lz -Lz -Lz -Hi -Vi -Vi -Zf -Zf -mT -mT -Ck -pJ -HN -tn -rk -Hq -fZ -aI -Ck -xH -UR -ik -FT -UR -Br -Nf -ks -MF -fV -fV -fV -ks -ks -YK -ks -ks -zB -AW -Tk -HL -Ss -lU -YE -UJ -Tn -lk -kV -kV -kV -kV -lf -gr -kn -kn -kn -kn -kn -kn -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -ke -xC -xC -xC -xC -xC -xC -xC -ce -ce -ce -ce -ce -ce -ce -ce -ce -jg -ce -ce -ce -ce -ce -ce -ce -jg -ce -ce -ce -ce -ce -ce -ce -ce -ce -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apq +apq +apM +apq +apq +apq +apq +apq +apq +apq +apq +aoo +aYs +aYs +aYs +apq +aYs +ajR +aYs +alH +aYs +ajR +aYs +aou +arB +anS +avp +avp +ajS +avp +avp +avp +avp +avp +ajS +alY +aEn +arx +ajS +aIz +aAO +anT +aBH +aku +aNS +aYh +aVZ +aYh +aVZ +aGk +ayE +aJW +aeI +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aXL +aRI +aRI +aRI +alE +alE +alE +alE +alE +abW +aWZ +aPW +abW +abW +aCp +alE +alE +alE +aoh +acU +acU +aZf +aZf +amT +amT +aCk +aaw +aAx +atn +aWj +aEU +aDR +akd +aCk +axH +aXv +arK +aOH +aXv +aAq +auj +aks +aDx +anu +anu +anu +aks +aks +aQQ +aks +aks +aXf +aAW +aeh +aSg +aSs +alU +aYE +aJA +aTn +alk +anP +anP +anP +anP +alf +agr +akn +akn +akn +akn +akn +akn +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +ake +axC +axC +axC +axC +axC +axC +axC +ace +ace +ace +ace +ace +ace +ace +ace +ace +ajg +ace +ace +ace +ace +ace +ace +ace +ajg +ace +ace +ace +ace +ace +ace +ace +ace +ace +amT "} (71,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -am -am -am -rD -pM -pA -pA -pA -pA -Ge -Ys -Ys -Ys -dh -pq -pq -pq -pq -Ys -lI -pq -pq -pq -pq -rB -eC -qa -aj -aj -aj -vb -vb -aj -mI -aj -aj -aj -Bt -aj -zY -qa -Bc -zf -sQ -Dv -sm -DO -DZ -sm -Fg -FU -sm -GI -Hv -GB -GB -GB -JB -GB -GB -GB -GB -GB -GB -Pg -Pg -Pg -WJ -WJ -WJ -WJ -Uw -Uk -tC -vO -bW -bW -AU -rF -rF -rF -Hi -Zf -Zf -mT -mT -mT -mT -oi -lS -HN -Ck -hT -MO -fZ -cO -Ck -ks -ks -ks -ks -ks -ks -ks -ks -NZ -fV -fV -uZ -ks -Fv -Tk -Tk -HL -Ss -jT -zl -ks -Gh -lU -Ps -kt -Tn -lk -kV -kV -kV -kV -kV -gr -kn -kn -kn -kn -kn -kn -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -MY -xC -xC -xC -xC -xC -xC -xC -xC -xC -ce -ce -xC -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +gyR +gyR +gyR +xQf +apM +raN +raN +raN +raN +aGe +aYs +aYs +aYs +adh +apq +apq +apq +apq +aYs +alI +apq +apq +apq +apq +arB +aeC +aqa +aaj +aaj +aaj +aBi +aBi +aaj +amI +aaj +aaj +aaj +aBt +aaj +azY +aqa +auk +aJW +aku +aHJ +aFf +aFR +aLP +aFf +aET +aIg +aFf +aKA +aHv +aGB +aGB +aGB +aJB +aGB +aGB +aGB +aGB +aGB +aGB +aAt +aAt +aAt +abZ +abZ +abZ +abZ +aUw +aUk +atC +avO +abW +abW +aCp +aIs +aIs +aIs +aoh +aZf +aZf +amT +amT +amT +amT +aoi +aAN +aAx +aCk +apB +akF +aDR +akf +aCk +aks +aks +aks +aks +aks +aks +aks +aks +aHE +anu +anu +aTi +aks +alR +aeh +aeh +aSg +aSs +ajT +afK +aks +aPj +alU +aPs +aoL +aTn +alk +anP +anP +anP +anP +anP +agr +akn +akn +akn +akn +akn +akn +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +aMY +axC +axC +axC +axC +axC +axC +axC +axC +axC +ace +ace +axC +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +amT "} (72,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Bd -ao -oa -oa -oa -vi -oa -oa -oa -oa -oa -Gy -bU -bU -Ys -pq -pq -jm -jW -Ys -lH -jW -jm -pq -pq -rB -fj -aj -aj -aj -aj -wC -vE -aj -aj -aj -aj -aj -rB -zJ -fj -qn -aj -BU -sQ -ed -qK -ed -zf -ed -rA -rA -qK -GL -FX -UN -BA -fy -jU -fy -fy -fy -fy -fy -fy -Pi -PP -KR -KR -KR -Fi -uW -bW -Un -uH -rY -bW -bW -NQ -Lz -Lz -Lz -Fa -Vi -Zf -mT -mT -mT -mT -Ck -nY -HN -Lf -da -HN -fZ -TA -Ck -ka -Fh -SW -Ae -Ae -Td -tG -ks -Ov -Ow -fV -fV -ks -uo -Yq -Ho -ks -Fm -jT -Tk -LZ -ks -tP -HP -kt -Tn -lk -kV -kV -kV -kV -lf -gr -kn -kn -kn -kn -kn -kn -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -ce -ce -xC -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBd +fui +nrq +nrq +nrq +iZs +nrq +nrq +nrq +nrq +nrq +wdh +abU +abU +aYs +apq +apq +ajm +ajW +aYs +alH +ajW +ajm +apq +apq +arB +afj +aaj +aaj +aaj +aaj +aTJ +axu +aaj +aaj +aaj +aaj +aaj +arB +azJ +afj +aqn +aaj +aBp +aku +aYh +aVZ +aYh +aJW +aYh +aNS +aNS +aVZ +aok +aFX +aUN +aBA +afy +ajU +afy +afy +afy +afy +afy +afy +aPi +aPP +aKR +aKR +aKR +aFi +auW +abW +aUn +auH +arY +abW +abW +aHd +alE +alE +alE +aVG +acU +aZf +amT +amT +amT +amT +aCk +apo +aAx +apY +acj +aAx +aDR +aKk +aCk +aka +aEl +aXX +aAe +aAe +aUG +adG +aks +apt +aot +anu +anu +aks +aaT +amW +atg +aks +azb +ajT +aeh +aLZ +aks +atP +aHP +aoL +aTn +alk +anP +anP +anP +anP +alf +agr +akn +akn +akn +akn +akn +akn +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +ace +ace +axC +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +amT "} (73,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -aH -aH -zQ -zQ -pq -be -be -be -be -Ge -HH -bU -bU -Ys -pq -hZ -Ys -Ys -Ys -lH -Ys -Ys -nF -pq -rB -fj -aj -wq -lq -sK -kZ -kZ -sK -wY -xr -aj -wq -nS -wS -fj -fj -Cy -iv -in -ed -qK -ed -zf -BN -sl -BO -qK -ed -vI -If -FX -BA -jU -fy -fy -MI -fy -vF -fy -Fy -Yo -eY -eY -eY -zX -bW -nJ -Wb -MA -Rw -bW -bW -nk -jb -Yg -rF -as -TD -Zf -Zf -mT -mT -mT -Ck -NT -HN -Ml -Ml -Ml -HN -hX -Ck -gF -fV -fV -fV -Ae -Pp -iI -ks -ba -fV -Eh -XG -ks -ek -bx -uo -ks -Ui -jT -Fr -ks -ks -ks -ks -ks -Tn -lk -kV -kV -kV -lf -lf -gr -kn -kn -kn -kn -kn -kn -xC -xC -xC -xC -xC -xC -xC -xC -xC -ke -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -xC -ce -ce -lp -ce -ce -ce -ce -lp -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -ce -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +lkD +lkD +iuC +iuC +apq +hFh +hFh +hFh +hFh +aGe +aHH +abU +abU +aYs +apq +ahZ +aYs +aYs +aYs +alH +aYs +aYs +anF +apq +arB +afj +aaj +azT +aDa +aQr +aQC +aQC +aQr +aFq +apk +aaj +azT +anS +aRY +afj +afj +aCy +aTF +axz +aYh +aVZ +aYh +aJW +aHG +aoV +aPy +aVZ +aYh +aKD +aLo +aFX +aBA +ajU +afy +afy +aMI +afy +avF +afy +aFy +aYo +aeY +aeY +aeY +azX +abW +anJ +aWb +aMA +aRw +abW +abW +aUb +aer +aId +aIs +aqr +aDh +aZf +aZf +amT +amT +amT +aCk +acH +aAx +app +app +app +aAx +aKa +aCk +agF +anu +anu +anu +aAe +aID +aKS +aks +adV +anu +apr +aOa +aks +aYx +asM +aaT +aks +aCl +ajT +aTO +aks +aks +aks +aks +aks +aTn +alk +anP +anP +anP +alf +alf +agr +akn +akn +akn +akn +akn +akn +axC +axC +axC +axC +axC +axC +axC +axC +axC +ake +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +axC +ace +ace +alp +ace +ace +ace +ace +alp +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +ace +amT "} (74,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pq -Bd -pq -pq -pq -pq -pq -pq -pq -pq -HQ -bU -bU -dh -pq -il -Ys -kG -kG -lJ -kG -Ys -nG -pq -rB -eC -aj -tF -lq -wW -wW -wW -wW -fj -xB -aj -yO -wC -Bm -Op -fj -yr -sQ -ed -ed -zM -ed -ed -BN -sl -BO -ed -ed -ed -Dp -AZ -fI -jU -fy -fy -fy -Gl -vg -fy -Fy -Yo -Qo -eY -eY -zX -bW -bW -fX -MA -Rw -bW -bW -mT -Zf -Zf -Zf -zE -Zf -Zf -Zf -mT -mT -mT -Ck -Eb -Oo -HN -rX -HN -Kx -Qm -Ck -ks -Rf -fV -BP -ks -ks -HV -ks -ks -jG -Ow -fV -ks -JM -uo -PU -ks -Zr -Qf -Lj -ks -lU -lU -kt -AQ -Bb -lk -kV -UP -kV -lf -OF -Ea -Qi -Qi -IK -Qi -Qi -Qi -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -hy -Vz -Vz -Vz -Qt -Vz -Vz -hy -Vz -Vz -Mb -Mb -Mb -Mb -Mb -Mb -Mb -Mb -Mb -WM -WM -WM -WM -WM -Mb -Mb -Mb -WM -WM -WM -WM -WM -WM -mT -mT -mT -mT -mT -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apq +aBd +apq +apq +apq +apq +apq +apq +apq +apq +aHQ +abU +abU +adh +apq +ail +aYs +akG +akG +alJ +akG +aYs +anG +apq +arB +aeC +aaj +afz +aDa +awW +awW +awW +awW +afj +axs +aaj +avT +aTJ +aha +amm +afj +ayr +aku +aYh +aYh +aVc +aYh +aYh +aHG +aoV +aPy +aYh +aYh +aYh +aGP +acW +afI +ajU +afy +afy +afy +aGl +avg +afy +aFy +aYo +aQo +aeY +aeY +azX +abW +abW +afX +aMA +aRw +abW +abW +amT +aZf +aZf +aZf +aSw +aZf +aZf +aZf +amT +amT +amT +aCk +aLO +atd +aAx +aZM +aAx +aAT +aFA +aCk +aks +axd +anu +aIX +aks +aks +aDS +aks +aks +aRy +aot +anu +aks +aeL +aaT +asv +aks +ahG +aQf +aEW +aks +alU +alU +aoL +aAQ +aBb +alk +anP +akR +anP +alf +aOF +aEa +aQi +aQi +aIK +aQi +aQi +aQi +aVz +aVz +aVz +aVz +aVz +aVz +aVz +aVz +aVz +aVz +aVz +ahy +aVz +aVz +aVz +aQt +aVz +aVz +ahy +aVz +aVz +aMb +aMb +aMb +aMb +aMb +aMb +aMb +aMb +aMb +aWM +aWM +aWM +aWM +aWM +aMb +aMb +aMb +aWM +aWM +aWM +aWM +aWM +aWM +amT +amT +amT +amT +amT +amT "} (75,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -aJ -aJ -aJ -ub -pq -xF -xF -xF -xF -Ge -HH -bU -bU -sI -oB -jM -Ys -jX -lD -lu -dA -dh -pq -pq -rB -fj -aj -wq -lq -fj -lq -lq -fj -fj -xD -aj -yP -fj -wC -fj -fj -Cy -sQ -ed -ed -zf -Cx -xN -Cx -Bs -Bs -xN -Cx -ed -Dp -IF -fI -jU -fy -fy -fy -Gb -NL -vg -Fy -Yo -eY -eY -eY -zX -bW -bW -fX -MA -Rw -bW -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -Ck -Kl -Px -HN -Vx -HN -qs -Ck -Ck -ks -ks -dJ -ks -ks -XM -du -Tk -ks -du -du -du -ks -ks -nD -ks -ks -ks -Qf -Tk -HL -Ss -YE -Te -Tn -SX -lk -kV -kV -kV -kV -lf -LM -lf -kV -kV -kV -oq -kV -zt -We -SN -SN -We -zt -zt -zt -zt -AA -Ts -nE -nE -Ts -nE -Ts -nE -nE -nE -nE -nE -Bv -HX -aM -mf -mf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -Vh -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +jjS +jjS +jjS +oxY +apq +oKh +oKh +oKh +oKh +aGe +aHH +abU +abU +xDk +aoB +rVV +aYs +ajX +alD +alu +adA +adh +apq +apq +arB +afj +aaj +azT +aDa +afj +aDa +aDa +afj +afj +aNR +aaj +atm +afj +aTJ +afj +afj +aCy +aku +aYh +aYh +aJW +acK +auQ +acK +aWB +aWB +auQ +acK +aYh +aGP +avD +afI +ajU +afy +afy +afy +aGb +aNL +avg +aFy +aYo +aeY +aeY +aeY +azX +abW +abW +afX +aMA +aRw +abW +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +aCk +aKl +axw +aAx +aVs +aAx +aly +aCk +aCk +aks +aks +azZ +aks +aks +azp +awd +aeh +aks +awd +awd +awd +aks +aks +anD +aks +aks +aks +aQf +aeh +aSg +aSs +aYE +adK +aTn +aSX +alk +anP +anP +anP +anP +alf +aLM +alf +anP +anP +anP +axn +anP +aUT +aWe +aSN +aSN +aWe +aUT +aUT +aUT +aUT +aAA +aYG +anE +anE +aYG +anE +aYG +anE +anE +anE +anE +anE +aBv +aHX +aaM +amf +amf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +akW +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT "} (76,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Bd -bp -kx -kx -kx -vq -kx -kx -kx -kx -kx -Je -bU -bU -sI -Ys -jM -Ys -lD -lD -lu -mF -Ys -pq -nB -rB -fj -aj -wq -tk -fj -vc -vc -fj -xa -xJ -ra -aj -fj -fj -fj -aj -aj -sQ -ed -ed -Dp -pn -aj -Av -Bt -FV -aj -CU -Dn -Dp -CM -fI -jU -fy -fy -fy -Ga -MU -JZ -Fy -Yo -eY -eY -hM -zX -bW -RN -QU -MA -Rw -bW -mT -mT -mT -Zf -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Ck -wI -NA -Ck -NA -TC -Ck -mT -Ae -Ha -fV -fV -HL -iR -Tk -Tk -HL -Tk -Tk -Tk -Tk -HL -Ss -On -mH -ks -Qf -gt -ks -Ss -HP -kt -Tn -SX -lk -kV -kV -kV -lf -lf -ZB -lf -kV -Zf -Zf -kV -kV -zt -bh -Qe -Jg -pm -AA -AA -AA -AA -AA -AA -zt -zt -AA -Qn -AA -zt -AA -AA -AA -mf -mf -mf -AI -EP -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBd +nwH +gjC +gjC +gjC +ldS +gjC +gjC +gjC +gjC +gjC +osg +abU +abU +xDk +aYs +rVV +aYs +alD +alD +alu +amF +aYs +apq +anB +arB +afj +aaj +azT +awr +afj +aln +aln +afj +aqA +air +aRk +aaj +afj +afj +afj +aaj +aaj +aku +aYh +aYh +aGP +acv +aaj +aAv +aBt +aFV +aaj +arh +aoc +aGP +aCX +afI +ajU +afy +afy +afy +aGa +aMU +aJZ +aFy +aYo +aeY +aeY +ahM +azX +abW +aRN +aQU +aMA +aRw +abW +amT +amT +amT +aZf +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aCk +aSu +aog +aCk +aog +aSD +aCk +amT +aAe +aKH +anu +anu +aSg +aQz +aeh +aeh +aSg +aeh +aeh +aeh +aeh +aSg +aSs +aOn +auM +aks +aQf +aLl +aks +aSs +aHP +aoL +aTn +aSX +alk +anP +anP +anP +alf +alf +aZB +alf +anP +aZf +aZf +anP +anP +aUT +abh +aQe +aJg +apm +aAA +aAA +aAA +aAA +aAA +aAA +aUT +aUT +aAA +anm +aAA +aUT +aAA +aAA +aAA +amf +amf +amf +aAI +aEP +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (77,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -ct -ct -xX -xX -pq -zA -zA -zA -zA -Ge -Ys -fr -fr -Ys -pq -iq -Ys -pN -pN -eP -pN -Ys -pq -nC -oX -nW -aj -aj -uV -uV -uV -uV -uV -uV -uV -aj -aj -xM -wX -xM -qa -hJ -sQ -ed -ed -yV -aj -aj -EB -Qp -FY -qn -aj -AR -kI -xR -wx -jU -fy -fy -fy -fy -fy -fy -Fy -Yo -Pr -eY -eY -zX -bW -bW -bW -MA -zj -um -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -Ck -Ck -Sn -ZG -Sn -Ck -Ck -mT -Ae -Hf -iI -uZ -ks -QF -Cc -Zy -ks -Cc -Tk -Tk -Cc -ks -tE -HU -hV -Kb -Zg -ks -ks -dx -ks -ks -kQ -Gi -ti -kV -kV -lf -lf -lf -ZB -kV -Zf -Zf -nj -lf -kV -AA -Qe -Qe -IH -SN -AA -zt -AA -zt -zt -AA -zt -AA -AA -zt -AA -AA -AA -zt -AA -mf -mf -mf -AI -EP -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +cZI +cZI +xLs +xLs +apq +vEV +vEV +vEV +vEV +aGe +aYs +afr +afr +aYs +apq +ajK +aYs +apN +apN +aeP +apN +aYs +apq +anC +aWQ +aRs +aaj +aaj +auV +auV +auV +auV +auV +auV +auV +aaj +aaj +axM +awX +axM +aqa +ahJ +aku +aYh +aYh +aez +aaj +aaj +aEB +aQp +aFY +aqn +aaj +aoM +agq +axR +awx +ajU +afy +afy +afy +afy +afy +afy +aFy +aYo +aPr +aeY +aeY +azX +abW +abW +abW +aMA +azj +aum +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +aCk +aCk +aTq +aZG +aTq +aCk +aCk +amT +aAe +aAk +aKS +aTi +aks +aBk +aBR +atb +aks +aBR +aeh +aeh +aBR +aks +atE +aHU +aOs +aKb +aol +aks +aks +adx +aks +aks +akQ +aGi +ati +anP +anP +alf +alf +alf +aZB +anP +aZf +aZf +anj +alf +anP +aAA +aQe +aQe +aIH +aSN +aAA +aUT +aAA +aUT +aUT +aAA +aUT +aAA +aAA +aUT +aAA +aAA +aAA +aUT +aAA +amf +amf +amf +aAI +aEP +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (78,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pq -Bd -pq -pq -pq -pq -pq -pq -pq -pq -oo -fr -fr -dh -pq -is -qi -qi -qi -lC -Ys -dh -nH -aj -pc -pz -qa -aj -tl -uV -uV -iv -yp -yp -yp -yp -yp -yp -yp -yp -yp -yp -in -ed -ed -Dp -Au -fj -rB -Bu -Qp -fj -Cy -Dn -kI -fI -fy -jU -fy -fy -fy -fy -fy -fy -Fy -Yo -eY -eY -eY -YV -RW -bW -bW -VT -Vv -Yc -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -mT -mT -BQ -BQ -BQ -mT -mT -mT -Ae -Ae -Ae -Ae -jB -jB -jB -ks -ks -ks -HV -HV -ks -ks -Sp -Ss -Tk -ks -eJ -ks -mT -mT -mT -mT -hR -kV -kV -kV -kV -lf -lf -lf -ZB -Zf -Zf -SX -lk -lf -kV -AA -We -SN -SN -We -AA -AA -AA -AA -zt -zt -zt -zt -AA -AA -zt -zt -AA -AA -mf -mf -mf -mf -Tz -EP -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apq +aBd +apq +apq +apq +apq +apq +apq +apq +apq +aoo +afr +afr +adh +apq +ais +aqi +aqi +aqi +alC +aYs +adh +anH +aaj +avd +atD +aqa +aaj +atl +auV +auV +aTF +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +axz +aYh +aYh +aGP +aAu +afj +arB +aVW +aQp +afj +aCy +aoc +agq +afI +afy +ajU +afy +afy +afy +afy +afy +afy +aFy +aYo +aeY +aeY +aeY +aYV +aRW +abW +abW +aVT +aVv +aYc +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +amT +amT +aBQ +aBQ +aBQ +amT +amT +amT +aAe +aAe +aAe +aAe +ajB +ajB +ajB +aks +aks +aks +aDS +aDS +aks +aks +aSp +aSs +aeh +aks +aTf +aks +amT +amT +amT +amT +ahR +anP +anP +anP +anP +alf +alf +alf +aZB +aZf +aZf +aSX +alk +alf +anP +aAA +aWe +aSN +aSN +aWe +aAA +aAA +aAA +aAA +aUT +aUT +aUT +aUT +aAA +aAA +aUT +aUT +aAA +aAA +amf +amf +amf +amf +aTz +aEP +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (79,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -eT -eT -eT -ue -pq -BX -BX -BX -BX -Ge -Ys -fr -fr -Ys -pq -iq -Ys -kG -kG -kG -kG -Ys -pq -ow -px -qU -ij -sO -ts -uu -sU -sQ -ed -Cx -xN -Cx -yR -zo -wZ -zo -sm -sm -sm -sm -sm -yX -DV -vp -EC -Bm -xm -Tl -Cz -Dn -kI -fI -fy -jU -fy -fy -yT -UN -UN -UN -UN -TU -OU -eY -eY -eY -zX -bW -uW -vO -WS -OM -OM -vy -OM -OM -Ne -Kv -WP -BQ -mT -mT -mT -Zw -EV -EV -GK -BQ -BQ -BQ -Pm -Pm -Pm -Pm -Pm -Pm -Pm -GK -yC -mr -lg -FL -FL -xO -xO -FL -ks -ks -ks -ks -ks -XP -mT -mT -mT -lg -xO -lf -kV -lf -lf -kV -lf -lf -lf -ZB -RP -SX -SX -lk -lf -kV -zt -kz -zt -AA -zt -AA -OK -OK -OK -AA -AA -zt -AA -zt -zt -AA -AA -zt -AA -mf -mf -mf -mf -Tz -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +uJp +uJp +uJp +txE +apq +eHP +eHP +eHP +eHP +aGe +aYs +afr +afr +aYs +apq +ajK +aYs +akG +akG +akG +akG +aYs +apq +aED +atW +aNN +aij +asO +ats +auu +asU +aku +aYh +acK +auQ +acK +aFN +aBI +ajr +aBI +aFf +aFf +aFf +aFf +aFf +aTu +aDV +avp +aaL +aha +aPK +aTl +aCz +aoc +agq +afI +afy +ajU +afy +afy +ayT +aUN +aUN +aUN +aUN +aTU +aOU +aeY +aeY +aeY +azX +abW +auW +avO +aWS +aOM +aOM +avy +aOM +aOM +aNe +aKv +aWP +aBQ +amT +amT +amT +aZw +aCV +aCV +aGK +aBQ +aBQ +aBQ +aPm +aPm +aPm +aPm +aPm +aPm +aPm +aGK +ayC +amr +alg +aud +aud +axO +axO +aud +aks +aks +aks +aks +aks +aXP +amT +amT +amT +alg +axO +alf +anP +alf +alf +anP +alf +alf +alf +aZB +aRP +aSX +aSX +alk +alf +anP +aUT +alz +aUT +aAA +aUT +aAA +aOK +aOK +aOK +aAA +aAA +aUT +aAA +aUT +aUT +aAA +aAA +aUT +aAA +amf +amf +amf +amf +aTz +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (80,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -fw -md -md -md -wc -md -md -md -md -md -md -fr -fr -Ys -Bd -pq -Ys -lD -lD -lP -lD -Ys -mV -oD -pE -ry -ry -ry -ho -uv -sU -sQ -Dp -pn -aj -Av -Bt -Av -aj -CU -Dn -BN -BN -ed -ed -Dp -Au -xP -fj -xm -fj -fj -Cy -Dn -kI -fI -fy -jU -fy -fy -Dc -LI -Ny -Ny -Nn -fI -Pt -eY -eY -eY -AY -bW -bW -vO -An -Ye -Ze -xE -Rx -An -BQ -Gn -PA -BQ -Ve -mT -mT -Zw -PH -Ly -KG -BQ -BQ -BQ -Pm -Qy -Qy -Pm -SO -SO -Pm -GK -yC -mr -lg -XR -LG -FL -FL -FL -FL -FL -xO -Jc -yC -XP -yC -mT -Zz -lg -FL -FL -kV -lf -lf -lf -lf -lf -lf -ZB -RP -SX -SX -lk -kV -kV -AA -kz -zt -AA -AA -zt -OK -OK -OK -OK -AA -zt -AA -zt -zt -fQ -dv -zt -EP -mf -mf -mf -mf -EP -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +xvS +idF +idF +idF +dpU +idF +idF +idF +idF +idF +idF +afr +afr +aYs +aBd +apq +aYs +alD +alD +alP +alD +aYs +amV +aOy +aoA +ary +ary +ary +aho +auv +asU +aku +aGP +acv +aaj +aAv +aBt +aAv +aaj +arh +aoc +aHG +aHG +aYh +aYh +aGP +aAu +axP +afj +aPK +afj +afj +aCy +aoc +agq +afI +afy +ajU +afy +afy +aDc +ame +ajd +ajd +avh +afI +aPt +aeY +aeY +aeY +aAY +abW +abW +avO +aAn +aYe +akU +aaB +apf +aAn +aBQ +aGn +aPA +aBQ +aVe +amT +amT +aZw +aPH +aLy +aKG +aBQ +aBQ +aBQ +aPm +aUj +aUj +aPm +aLA +aLA +aPm +aGK +ayC +amr +alg +aXR +aYv +aud +aud +aud +aud +aud +axO +aJc +ayC +aXP +ayC +amT +aZz +alg +aud +aud +anP +alf +alf +alf +alf +alf +alf +aZB +aRP +aSX +aSX +alk +anP +anP +aAA +alz +aUT +aAA +aAA +aUT +aOK +aOK +aOK +aOK +aAA +aUT +aAA +aUT +aUT +afQ +adv +aUT +aEP +amf +amf +amf +amf +aEP +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (81,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -go -go -dr -dr -pq -Ei -Ei -Ei -Ei -Ge -Ys -fr -fr -Ys -pq -pq -oo -pG -lD -lD -lD -dh -pq -pq -pF -pe -rN -pe -ry -ux -sU -sQ -yV -aj -aj -yy -rB -eC -qn -aj -AR -BN -BN -ed -ed -yV -aj -aj -yy -fj -eC -aj -aj -AR -kI -fI -fy -jU -fy -fy -ss -Gm -Gz -Gz -GR -fI -Yo -eY -eY -eK -AY -bW -bW -vO -An -Yj -YR -YR -YR -cu -BQ -Gn -Vu -Ne -Uz -MW -Pc -bc -Bf -Ne -Ne -Ne -Ne -Ne -Uz -EA -EA -EA -EA -EA -EA -Uq -sL -Yl -VK -XS -XS -Rm -Ot -Ot -Ot -Ot -Rm -bD -TE -wj -yC -Vl -dH -lg -FL -FL -lf -lf -lf -lf -kV -lf -lf -ZB -RP -SX -SX -lk -kV -kV -AA -kz -zt -zt -AA -AA -AA -OK -OK -OK -zt -AA -zt -zt -AA -zt -AA -AA -mf -mf -mf -mf -EP -EP -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +qaY +qaY +fpj +fpj +apq +buJ +buJ +buJ +buJ +aGe +aYs +afr +afr +aYs +apq +apq +aoo +apG +alD +alD +alD +adh +apq +apq +apF +ape +arN +ape +ary +aux +asU +aku +aez +aaj +aaj +ayy +arB +aeC +aqn +aaj +aoM +aHG +aHG +aYh +aYh +aez +aaj +aaj +ayy +afj +aeC +aaj +aaj +aoM +agq +afI +afy +ajU +afy +afy +ass +aGm +aGz +aGz +aQx +afI +aYo +aeY +aeY +aeK +aAY +abW +abW +avO +aAn +aLr +aPZ +aPZ +aPZ +agQ +aBQ +aGn +aVu +aNe +aUz +aAg +aPc +abc +aBf +aNe +aNe +aNe +aNe +aNe +aUz +aEA +aEA +aEA +aEA +aEA +aEA +aUq +asL +aYl +aVK +aXS +aXS +aRm +aiX +aiX +aiX +aiX +aRm +abD +aTE +awj +ayC +aVl +adH +alg +aud +aud +alf +alf +alf +alf +anP +alf +alf +aZB +aRP +aSX +aSX +alk +anP +anP +aAA +alz +aUT +aUT +aAA +aAA +aAA +aOK +aOK +aOK +aUT +aAA +aUT +aUT +aAA +aUT +aAA +aAA +amf +amf +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (82,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pq -pq -Bd -pq -pq -pq -pq -pq -pq -pq -oo -fr -fr -dh -pq -hZ -Ys -pN -pN -pN -pN -Ys -nF -pq -pR -ry -ry -ry -rE -uz -sU -sQ -Dp -Au -fj -fj -wt -fj -fj -Cy -Dn -BN -BN -ed -ed -Dp -Xi -aj -xM -Bw -xM -aj -Ef -Dn -kI -fI -fy -jU -fy -fy -fy -Nj -GG -Kq -Nq -fI -Yo -eY -eK -eK -AY -bW -pX -vO -BB -YR -CB -YR -YR -cu -BQ -Gn -BQ -BQ -OE -Ly -KG -BQ -BQ -BQ -BQ -BQ -BQ -BQ -OE -Ly -Ly -Ly -Ly -Ly -Ly -KG -ua -mr -pD -YM -YM -rT -rT -rT -rT -rT -rT -HB -yC -yC -yC -yC -mr -lg -FL -FL -FL -kV -kV -kV -kV -kV -lf -ZB -RP -SX -SX -lk -kV -kV -zt -kz -zt -AA -Qn -AA -zt -AA -OK -OK -nE -nE -nE -Ts -nE -Ts -nE -Bv -Nu -Bv -Bv -Bv -Nu -Wr -Wr -Wr -Wr -Wr -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apq +apq +aBd +apq +apq +apq +apq +apq +apq +apq +aoo +afr +afr +adh +apq +ahZ +aYs +apN +apN +apN +apN +aYs +anF +apq +apR +ary +ary +ary +arE +auz +asU +aku +aGP +aAu +afj +afj +asS +afj +afj +aCy +aoc +aHG +aHG +aYh +aYh +aGP +aXt +aaj +axM +aBw +axM +aaj +aBx +aoc +agq +afI +afy +ajU +afy +afy +afy +aNj +aGG +aKq +aCL +afI +aYo +aeY +aeK +aeK +aAY +abW +apX +avO +aOz +aPZ +adZ +aPZ +aPZ +agQ +aBQ +aGn +aBQ +aBQ +aOE +aLy +aKG +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aOE +aLy +aLy +aLy +aLy +aLy +aLy +aKG +aua +amr +apD +aYM +aYM +arT +arT +arT +arT +arT +arT +aHB +ayC +ayC +ayC +ayC +amr +alg +aud +aud +aud +anP +anP +anP +anP +anP +alf +aZB +aRP +aSX +aSX +alk +anP +anP +aUT +alz +aUT +aAA +anm +aAA +aUT +aAA +aOK +aOK +anE +anE +anE +aYG +anE +aYG +anE +aBv +aNu +aBv +aBv +aBv +aNu +aWr +aWr +aWr +aWr +aWr +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (83,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -hY -fT -fT -ui -pq -QG -QG -QG -QG -Ge -Ys -fr -fr -Ys -pq -it -Ys -Ys -Ys -Ys -Ys -Ys -nG -pq -pZ -pe -rN -pe -ry -sU -iv -in -Dp -Ar -fj -wC -Bm -wC -fj -Cz -Dn -BN -BN -ed -ed -DC -ww -xQ -BT -BT -BT -xQ -BT -ed -kI -fI -fy -jU -fy -fy -yT -Nk -Gz -Gz -GR -fI -Yo -eK -eK -eK -AY -bW -bW -vO -WT -Yk -CB -zu -JO -RR -BQ -km -BQ -BQ -BQ -BQ -BQ -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -BQ -BQ -BQ -BQ -BQ -BQ -ua -UW -yC -Nh -Nh -yC -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yC -yC -mr -lg -FL -FL -FL -kV -kV -kV -lf -kV -kV -ZB -RP -SX -SX -lk -kV -kV -AA -kz -zt -AA -AA -zt -zt -zt -zt -AA -zt -zt -zt -zt -AA -zt -zt -EP -mf -mf -mf -mf -EP -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +cGb +bhG +bhG +cRi +apq +nhN +nhN +nhN +nhN +aGe +aYs +afr +afr +aYs +apq +ait +aYs +aYs +aYs +aYs +aYs +aYs +anG +apq +apZ +ape +arN +ape +ary +asU +aTF +axz +aGP +aAr +afj +aTJ +aha +aTJ +afj +aCz +aoc +aHG +aHG +aYh +aYh +arq +amO +aFc +aYS +aYS +aYS +aFc +aYS +aYh +agq +afI +afy +ajU +afy +afy +ayT +aNk +aGz +aGz +aQx +afI +aYo +aeK +aeK +aeK +aAY +abW +abW +avO +aWT +aoJ +adZ +ajy +agk +ajO +aBQ +akm +aBQ +aBQ +aBQ +aBQ +aBQ +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aua +aUW +ayC +aNh +aNh +ayC +aNh +aNh +aNh +aNh +aNh +aNh +aNh +aNh +ayC +ayC +amr +alg +aud +aud +aud +anP +anP +anP +alf +anP +anP +aZB +aRP +aSX +aSX +alk +anP +anP +aAA +alz +aUT +aAA +aAA +aUT +aUT +aUT +aUT +aAA +aUT +aUT +aUT +aUT +aAA +aUT +aUT +aEP +amf +amf +amf +amf +aEP +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (84,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -kb -rC -rC -rC -wP -rC -rC -rC -rC -rC -rC -bU -bU -Ys -pq -pq -iq -cy -le -lF -cy -iq -pq -pq -iM -ry -ry -ry -ij -sU -sQ -ed -Dp -Au -xP -fj -wC -fj -fj -Cy -Dn -ed -ed -ed -nt -yS -zr -qO -Be -Be -Be -Cx -Cx -Cx -CM -fI -fy -jU -fy -fy -Dc -Nl -Nz -Nz -Nt -fI -Gf -eK -eK -eK -SA -Pk -bW -Un -sc -Yn -CB -zu -VI -RR -BQ -km -BQ -BQ -BQ -BQ -BQ -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -BQ -BQ -BQ -BQ -BQ -BQ -ua -UW -yC -Nh -Nh -yC -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yC -yC -UW -lg -FL -FL -FL -FL -lf -lf -kV -lf -kV -Mw -RP -SX -SX -lk -lf -zt -AA -kz -zt -AA -zt -AA -AA -AA -AA -AA -AA -AA -AA -AA -AA -zt -mf -mf -mf -mf -mf -EP -EP -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +svk +oTY +oTY +oTY +mGm +oTY +oTY +oTY +oTY +oTY +oTY +abU +abU +aYs +apq +apq +ajK +aZS +ale +alF +aZS +ajK +apq +apq +aiM +ary +ary +ary +aij +asU +aku +aYh +aGP +aAu +axP +afj +aTJ +afj +afj +aCy +aoc +aYh +aYh +aYh +aNK +ayS +azr +atQ +aKg +aKg +aKg +acK +acK +acK +aCX +afI +afy +ajU +afy +afy +aDc +aVY +aTy +aTy +aWt +afI +aGf +aeK +aeK +aeK +aSA +aPk +abW +aUn +ajx +alN +adZ +ajy +aYD +ajO +aBQ +akm +aBQ +aBQ +aBQ +aBQ +aBQ +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aua +aUW +ayC +aNh +aNh +ayC +aNh +aNh +aNh +aNh +aNh +aNh +aNh +aNh +ayC +ayC +aUW +alg +aud +aud +aud +aud +alf +alf +anP +alf +anP +avu +aRP +aSX +aSX +alk +alf +aUT +aAA +alz +aUT +aAA +aUT +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aUT +amf +amf +amf +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (85,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -kq -kq -dE -dE -pq -FM -FM -FM -FM -Ge -oo -bU -bU -dh -pq -pq -pq -pq -pq -pq -pq -pq -pq -lA -ry -pe -rN -pe -rE -sU -sQ -ed -yV -aj -aj -yy -fj -eC -aj -aj -AR -ed -ed -kI -xR -wx -ss -BL -BL -BL -rQ -Bq -Cg -CM -xR -wx -fy -jU -fy -fy -ss -BL -BL -BL -BL -Qc -Bz -eK -eK -yU -eK -AY -bW -bW -WT -FE -CB -zu -YR -RR -BQ -Gn -Wv -Vb -Us -BQ -BQ -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -BQ -BQ -BQ -BQ -BQ -BQ -ua -mr -yC -Nh -Nh -yC -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yC -yC -UW -lg -FL -FL -FL -xO -kV -lf -kV -lf -kV -ZB -RP -SX -SX -lk -lf -zt -zt -WD -zt -AA -AA -AA -zt -AA -zt -zt -AA -zt -AA -zt -zt -AA -EP -EP -mf -mf -mf -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +rCS +rCS +xig +xig +apq +uSD +uSD +uSD +uSD +aGe +aoo +abU +abU +adh +apq +apq +apq +apq +apq +apq +apq +apq +apq +alA +ary +ape +arN +ape +arE +asU +aku +aYh +aez +aaj +aaj +ayy +afj +aeC +aaj +aaj +aoM +aYh +aYh +agq +axR +awx +ass +aBL +aBL +aBL +arQ +aLS +aYa +aCX +axR +awx +afy +ajU +afy +afy +ass +aBL +aBL +aBL +aBL +aQc +aBz +aeK +aeK +ayU +aeK +aAY +abW +abW +aWT +aAj +adZ +ajy +aPZ +ajO +aBQ +aGn +aWv +aVb +aUs +aBQ +aBQ +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aZt +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aua +amr +ayC +aNh +aNh +ayC +aNh +aNh +aNh +aNh +aNh +aNh +aNh +aNh +ayC +ayC +aUW +alg +aud +aud +aud +axO +anP +alf +anP +alf +anP +aZB +aRP +aSX +aSX +alk +alf +aUT +aUT +aWD +aUT +aAA +aAA +aAA +aUT +aAA +aUT +aUT +aAA +aUT +aAA +aUT +aUT +aAA +aEP +aEP +amf +amf +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (86,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pq -pq -Bd -pq -pq -pq -pq -pq -pq -pq -Ys -bU -bU -Ys -pq -mT -mT -mT -mT -mT -mT -mT -mT -ry -ry -ry -ry -ry -dg -mT -in -ed -Dp -Xi -aj -xM -Bw -xM -aj -Ef -Dn -ed -AC -kI -fI -fy -fy -fy -fy -fy -ss -BL -BL -BL -wx -fy -fy -jU -fy -fy -fy -fy -fy -fy -Fy -Gf -eK -eK -eK -eK -eK -AY -bW -bW -BB -uD -CB -zu -YR -cu -BQ -Gn -Ve -EV -fb -Vb -Vb -mT -mT -mT -Vb -Vb -Vb -Vb -Vb -Vb -Vb -Vb -Vb -Vb -Vb -Aa -ua -mr -Ug -YT -YT -LQ -XZ -yC -yC -yC -yC -Ug -LQ -LQ -XZ -yC -mr -lg -FL -FL -FL -xO -lf -ac -kV -lf -kV -ZB -RP -SX -SX -lk -AA -AA -zt -kz -zt -AA -zt -AA -AA -fQ -dv -zt -AA -AA -AA -AA -zt -mf -mf -mf -EP -mf -mf -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apq +apq +aBd +apq +apq +apq +apq +apq +apq +apq +aYs +abU +abU +aYs +apq +amT +amT +amT +amT +amT +amT +amT +amT +ary +ary +ary +ary +ary +adg +amT +axz +aYh +aGP +aXt +aaj +axM +aBw +axM +aaj +aBx +aoc +aYh +aoR +agq +afI +afy +afy +afy +afy +afy +ass +aBL +aBL +aBL +awx +afy +afy +ajU +afy +afy +afy +afy +afy +afy +aFy +aGf +aeK +aeK +aeK +aeK +aeK +aAY +abW +abW +aOz +aMS +adZ +ajy +aPZ +agQ +aBQ +aGn +aVe +aCV +afb +aVb +aVb +amT +amT +amT +aVb +aVb +aVb +aVb +aVb +aVb +aVb +aVb +aVb +aVb +aVb +aAa +aua +amr +aUg +aYT +aYT +aLQ +aXZ +ayC +ayC +ayC +ayC +aUg +aLQ +aLQ +aXZ +ayC +amr +alg +aud +aud +aud +axO +alf +aac +anP +alf +anP +aZB +aRP +aSX +aSX +alk +aAA +aAA +aUT +alz +aUT +aAA +aUT +aAA +aAA +afQ +adv +aUT +aAA +aAA +aAA +aAA +aUT +amf +amf +amf +aEP +amf +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (87,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -iU -tp -ye -Jq -pq -Ys -fr -fr -Ys -pq -mT -mT -mT -mT -mT -mT -mT -mT -mT -aG -oS -mT -mT -mT -mT -ed -ed -ed -BT -xQ -BT -ww -ww -xQ -BT -ed -ed -ed -kI -fI -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -fy -fy -fy -fy -fy -Dj -Gf -eK -eK -eK -eK -eK -AY -bW -bW -An -tu -CB -YR -YR -cu -BQ -Gn -Ve -EV -EV -Zw -EV -EV -EV -VO -Zw -EV -Zw -EV -EV -EV -EV -Zw -EV -EV -EV -GK -yC -mr -lg -XR -LG -xO -Jc -ua -ua -ua -yC -lg -Kf -US -Jc -yC -mr -lg -xO -xO -xO -lf -kV -ac -kV -kV -bK -ZB -RP -SX -SX -lk -zt -AA -zt -kz -zt -AA -zt -AA -zt -AA -AA -AA -AA -zt -AA -AA -AA -mf -EP -EP -mf -mf -EP -EP -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +aiU +atp +aye +aJq +apq +aYs +afr +afr +aYs +apq +amT +amT +amT +amT +amT +amT +amT +amT +amT +aaG +aoS +amT +amT +amT +amT +aYh +aYh +aYh +aYS +aFc +aYS +amO +amO +aFc +aYS +aYh +aYh +aYh +agq +afI +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +afy +afy +afy +afy +afy +aDj +aGf +aeK +aeK +aeK +aeK +aeK +aAY +abW +abW +aAn +agw +adZ +aPZ +aPZ +agQ +aBQ +aGn +aVe +aCV +aCV +aZw +aCV +aCV +aCV +aZD +aZw +aCV +aZw +aCV +aCV +aCV +aCV +aZw +aCV +aCV +aCV +aGK +ayC +amr +alg +aXR +aYv +axO +aJc +aua +aua +aua +ayC +alg +aKf +aUS +aJc +ayC +amr +alg +axO +axO +axO +alf +anP +aac +anP +anP +abK +aZB +aRP +aSX +aSX +alk +aUT +aAA +aUT +alz +aUT +aAA +aUT +aAA +aUT +aAA +aAA +aAA +aAA +aUT +aAA +aAA +aAA +amf +aEP +aEP +amf +amf +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (88,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -mR -uU -Ys -Ys -cS -Ys -fr -fr -dh -pq -mT -mT -mT -mT -mT -mT -mT -mT -oE -qb -qb -bS -mT -mT -mT -ed -ed -ed -ed -Be -nt -yS -zr -Jl -Be -Be -Cx -Cx -Cw -fI -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -GY -fy -fy -fy -fy -Ou -GS -Bz -eK -zy -eK -eK -eK -AY -bW -RN -An -An -AF -tT -HZ -An -BQ -Gn -Ve -EV -EV -Zw -Zw -Zw -Zw -EV -Zw -EV -Zw -Zw -Zw -Zw -EV -Zw -gx -Zw -Zw -GK -yC -mr -lg -XR -LG -FL -Jc -ua -ua -ua -Ug -Sy -FL -FL -Jc -Vl -dH -lg -xO -xO -xO -lf -lf -lf -lf -kV -aZ -ZB -RP -SX -SX -so -zt -zt -AA -WD -zt -Ad -AA -zt -AA -zt -AA -AA -zt -AA -zt -AA -mf -EP -mf -mf -EP -mf -EP -BK -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +amR +auU +aYs +aYs +acS +aYs +afr +afr +adh +apq +amT +amT +amT +amT +amT +amT +amT +amT +aoE +aqb +aqb +abS +amT +amT +amT +aYh +aYh +aYh +aYh +aKg +aNK +ayS +azr +awH +aKg +aKg +acK +acK +aDl +afI +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +aGY +afy +afy +afy +afy +aOu +aGS +aBz +aeK +azy +aeK +aeK +aeK +aAY +abW +aRN +aAn +aAn +aNw +aUI +aYm +aAn +aBQ +aGn +aVe +aCV +aCV +aZw +aZw +aZw +aZw +aCV +aZw +aCV +aZw +aZw +aZw +aZw +aCV +aZw +agx +aZw +aZw +aGK +ayC +amr +alg +aXR +aYv +aud +aJc +aua +aua +aua +aUg +aSy +aud +aud +aJc +aVl +adH +alg +axO +axO +axO +alf +alf +alf +alf +anP +avJ +aZB +aRP +aSX +aSX +aso +aUT +aUT +aAA +aWD +aUT +aqh +aAA +aUT +aAA +aUT +aAA +aAA +aUT +aAA +aUT +aAA +amf +aEP +amf +amf +aEP +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (89,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pO -Ys -yY -Lt -pq -oo -fr -fr -Ys -pq -mT -mT -mT -mT -mT -mT -mT -oE -oE -qb -qb -rO -mT -mT -mT -ed -ed -ed -kI -xR -BL -wx -ss -BL -BL -rQ -Bq -Cg -CM -fI -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -jU -fy -fy -fy -fy -Fy -DG -eK -eK -eK -eK -eK -eK -eK -AY -bW -bW -bW -An -An -An -An -An -mT -Gn -Ve -EV -EV -De -Cm -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -EV -EV -Zw -EV -Zw -EV -GK -GM -mr -lg -Kf -US -FL -Jc -yC -yC -Jz -lg -xO -xO -FL -LN -LQ -Mk -mT -Zf -mT -mT -lf -kV -lf -lf -lf -BM -ZB -RP -SX -SX -so -zt -zt -AA -WD -zt -AA -AA -AA -AA -AA -zt -AA -AA -AA -AA -zt -Yr -FI -mf -mf -mf -mf -EP -BK -BK -BK -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apO +aYs +ayY +aLt +apq +aoo +afr +afr +aYs +apq +amT +amT +amT +amT +amT +amT +amT +aoE +aoE +aqb +aqb +arO +amT +amT +amT +aYh +aYh +aYh +agq +axR +aBL +awx +ass +aBL +aBL +arQ +aLS +aYa +aCX +afI +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +ajU +afy +afy +afy +afy +aFy +aDG +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aAY +abW +abW +abW +aAn +aAn +aAn +aAn +aAn +amT +aGn +aVe +aCV +aCV +aDe +aCm +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aCV +aCV +aZw +aCV +aZw +aCV +aGK +aGM +amr +alg +aKf +aUS +aud +aJc +ayC +ayC +aJz +alg +axO +axO +aud +aLN +aLQ +aMk +amT +aZf +amT +amT +alf +anP +alf +alf +alf +akL +aZB +aRP +aSX +aSX +aso +aUT +aUT +aAA +aWD +aUT +aAA +aAA +aAA +aAA +aAA +aUT +aAA +aAA +aAA +aAA +aUT +aYr +aFI +amf +amf +amf +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (90,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -pq -pq -pq -pq -Bd -Ys -fr -fr -Ys -pq -mT -mT -mT -mT -mT -mT -mT -oE -bS -oO -oE -mT -mT -mT -mT -mT -ed -Bc -kI -fI -fy -fy -fy -fy -fy -ss -BL -BL -BL -wx -fy -fy -vF -fy -fy -fy -vF -fy -fy -fy -fy -vF -jU -fy -zs -fy -AH -Dj -Gf -eK -eK -eK -eK -eK -eK -eK -AY -bW -bW -bW -mT -mT -mT -mT -mT -mT -mT -Ve -EV -EV -Zw -EV -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -GK -yC -mr -lg -FL -FL -ox -LN -XZ -yC -yC -lg -FL -ox -FL -FL -mT -mT -Zf -Zf -mT -lk -lf -lf -lf -lf -kV -kV -ZB -mT -mT -Zf -Zf -Zf -zt -AA -kz -zt -zt -zt -AA -zt -AA -AA -zt -AA -zt -AA -mf -EP -mf -EP -EP -EP -EP -EP -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +apq +apq +apq +apq +aBd +aYs +afr +afr +aYs +apq +amT +amT +amT +amT +amT +amT +amT +aoE +abS +aoO +aoE +amT +amT +amT +amT +amT +aYh +auk +agq +afI +afy +afy +afy +afy +afy +ass +aBL +aBL +aBL +awx +afy +afy +avF +afy +afy +afy +avF +afy +afy +afy +afy +avF +ajU +afy +azs +afy +aAH +aDj +aGf +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aAY +abW +abW +abW +amT +amT +amT +amT +amT +amT +amT +aVe +aCV +aCV +aZw +aCV +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aGK +ayC +amr +alg +aud +aud +aVn +aLN +aXZ +ayC +ayC +alg +aud +aVn +aud +aud +amT +amT +aZf +aZf +amT +alk +alf +alf +alf +alf +anP +anP +aZB +amT +amT +aZf +aZf +aZf +aUT +aAA +alz +aUT +aUT +aUT +aAA +aUT +aAA +aAA +aUT +aAA +aUT +aAA +amf +aEP +amf +aEP +aEP +aEP +aEP +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (91,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -oo -fr -fr -dh -pq -mT -mT -mT -mT -mT -mT -mT -mT -oO -oO -mT -mT -mT -mT -mT -mT -mT -mT -mT -wx -GY -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -Hx -GB -GB -Jb -JL -fy -fy -fy -LX -zw -Bz -eK -yU -eK -eK -eK -eK -Qa -AY -bW -bW -bW -bW -bW -mT -mT -Zf -mT -mT -mT -EV -EV -EV -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Pm -Re -Re -Pm -Ue -Ue -Pm -GK -yC -mr -lg -FL -FL -yH -Eq -OZ -OZ -OZ -OZ -OZ -yH -xO -mT -Zf -Zf -mT -mT -SX -lk -lf -kV -lf -lf -lf -FW -mT -mT -mT -mT -Zf -Zf -zt -zt -kz -zt -zt -AA -AA -AA -AA -AA -AA -AA -AA -AA -mf -mf -mf -mf -EP -mf -EP -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +aoo +afr +afr +adh +apq +amT +amT +amT +amT +amT +amT +amT +amT +aoO +aoO +amT +amT +amT +amT +amT +amT +amT +amT +amT +awx +aGY +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aHx +aGB +aGB +aJb +aJL +afy +afy +afy +aLX +azw +aBz +aeK +ayU +aeK +aeK +aeK +aeK +aQa +aAY +abW +abW +abW +abW +abW +amT +amT +aZf +amT +amT +amT +aCV +aCV +aCV +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aPm +adm +adm +aPm +afn +afn +aPm +aGK +ayC +amr +alg +aud +aud +ayH +aWh +aIL +aIL +aIL +aIL +aIL +ayH +axO +amT +aZf +aZf +amT +amT +aSX +alk +alf +anP +alf +alf +alf +aFW +amT +amT +amT +amT +aZf +aZf +aUT +aUT +alz +aUT +aUT +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +amf +amf +amf +amf +aEP +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (92,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -pq -Ys -Ys -Ys -Ys -pq -mT -zI -zI -zI -zI -zI -zI -mT -mT -zI -zI -zI -zI -zI -zI -zI -zI -zI -xb -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -MI -fy -fy -fy -fy -GY -jU -fy -fy -Ga -JZ -fy -AH -Dj -Gf -eK -eK -eK -eK -eK -eK -yU -eK -eK -AY -bW -bW -pX -bW -bW -bW -mT -Zf -Zf -mT -mT -EV -EV -mT -Ly -Ly -Ly -eB -eB -Zw -Zw -Zw -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Zf -Zf -Zf -Zf -mT -mT -yH -Mq -KN -EN -om -OZ -OZ -yH -Yu -mT -Zf -Zf -mT -SX -SX -lk -lf -Zf -mT -EF -EF -SE -uE -mT -mT -mT -mT -Zf -AA -AA -kz -zt -AA -AA -zt -AA -AA -zt -AA -zt -AA -mf -EP -mf -EP -mf -mf -mf -EP -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +apq +aYs +aYs +aYs +aYs +apq +amT +azI +azI +azI +azI +azI +azI +amT +amT +azI +azI +azI +azI +azI +azI +azI +azI +azI +axb +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aMI +afy +afy +afy +afy +aGY +ajU +afy +afy +aGa +aJZ +afy +aAH +aDj +aGf +aeK +aeK +aeK +aeK +aeK +aeK +ayU +aeK +aeK +aAY +abW +abW +apX +abW +abW +abW +amT +aZf +aZf +amT +amT +aCV +aCV +amT +aLy +aLy +aLy +aeB +aeB +aZw +aZw +aZw +aPm +aPm +aPm +aPm +aPm +aPm +aPm +aZf +aZf +aZf +aZf +amT +amT +ayH +agB +aqS +apQ +aYC +aIL +aIL +ayH +aYu +amT +aZf +aZf +amT +aSX +aSX +alk +alf +aZf +amT +aEF +aEF +aSE +auE +amT +amT +amT +amT +aZf +aAA +aAA +alz +aUT +aAA +aAA +aUT +aAA +aAA +aUT +aAA +aUT +aAA +amf +aEP +amf +aEP +amf +amf +amf +aEP +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (93,1,1) = {" -mT -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -hC -Vm -Vm -Vm -Vm -hC -zI -zI -sV -sV -hW -sV -zI -zI -zI -zI -sV -hW -sV -sV -hW -sV -sV -hW -fy -fy -fy -fy -fy -fy -fy -vF -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -DD -DD -Do -fy -fy -fy -fy -fy -LX -zw -Bz -zy -eK -eK -eK -eK -eK -eK -eK -eK -AY -bW -bW -bW -bW -bW -mT -mT -mT -Zf -Zf -mT -Zf -mT -mT -NV -BQ -BQ -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -yH -yH -yH -yH -yH -mn -mn -yH -ME -mT -Zf -Zf -mT -mT -mT -mT -Zf -Zf -mT -mT -cR -SI -uE -uE -mT -mT -mT -mT -WN -WN -Zf -zt -AA -zt -Zf -Zf -Zf -Zf -mT -AA -AA -mf -AA -mf -mf -mf -mf -EP -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +ahC +lJn +lJn +lJn +lJn +ahC +azI +azI +asV +asV +ahW +asV +azI +azI +azI +azI +asV +ahW +asV +asV +ahW +asV +asV +ahW +afy +afy +afy +afy +afy +afy +afy +avF +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aRI +aRI +aul +afy +afy +afy +afy +afy +aLX +azw +aBz +azy +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aAY +abW +abW +abW +abW +abW +amT +amT +amT +aZf +aZf +amT +aZf +amT +amT +aNV +aBQ +aBQ +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +ayH +ayH +ayH +ayH +ayH +aWw +aWw +ayH +aME +amT +aZf +aZf +amT +amT +amT +amT +aZf +aZf +amT +amT +acR +aSI +auE +auE +amT +amT +amT +amT +aWN +aWN +aZf +aUT +aAA +aUT +aZf +aZf +aZf +aZf +amT +aAA +aAA +amf +aAA +amf +amf +amf +amf +aEP +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (94,1,1) = {" -mT -hW -sV -sV -sV -sV -sV -hW -sV -sV -sV -sV -sV -hW -ag -sV -bm -bm -bm -dU -ey -bm -sV -hW -sV -sV -sV -sV -hW -iK -sV -sV -sV -sV -sV -sV -gs -hW -sV -sV -sV -sV -sV -sV -sV -sV -sV -fy -fy -fy -fy -fy -fy -fy -fy -fy -GY -fy -fy -fy -fy -fy -fy -fy -fy -DD -DD -Do -fy -fy -fy -fy -fy -Gf -eK -eK -eK -eK -Qa -eK -eK -eK -eK -eK -eK -AY -bW -bW -bW -bW -mT -mT -mT -mT -Zf -mT -Zf -Zf -Zf -NV -NV -BQ -BQ -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -yH -yH -yH -yH -mq -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -uE -uE -uE -uE -uE -mT -mT -uE -uE -uE -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -Zf -mT -mf -EP -mf -EP -mf -mf -mf -EP -BK -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +ahW +asV +asV +asV +asV +asV +ahW +asV +asV +asV +asV +asV +ahW +aag +asV +abm +abm +abm +adU +aey +abm +asV +ahW +asV +asV +asV +asV +ahW +aiK +asV +asV +asV +asV +asV +asV +ags +ahW +asV +asV +asV +asV +asV +asV +asV +asV +asV +afy +afy +afy +afy +afy +afy +afy +afy +afy +aGY +afy +afy +afy +afy +afy +afy +afy +afy +aRI +aRI +aul +afy +afy +afy +afy +afy +aGf +aeK +aeK +aeK +aeK +aQa +aeK +aeK +aeK +aeK +aeK +aeK +aAY +abW +abW +abW +abW +amT +amT +amT +amT +aZf +amT +aZf +aZf +aZf +aNV +aNV +aBQ +aBQ +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +ayH +ayH +ayH +ayH +amq +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +auE +auE +auE +auE +auE +amT +amT +auE +auE +auE +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +aZf +amT +amf +aEP +amf +aEP +amf +amf +amf +aEP +aBK +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (95,1,1) = {" -mT -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -ag -sV -bm -bm -bm -ey -ey -bm -sV -sV -sV -sV -sV -sV -sV -iK -sV -sV -sV -sV -sV -sV -gs -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -fy -fy -fy -fy -fy -MI -fy -fy -fy -fy -fy -fy -fy -vF -fy -fy -fy -fy -DD -DD -Do -fy -fy -fy -fy -Fy -Gf -eK -eK -eK -DE -Ee -Ee -Ee -QD -eK -eK -eK -AY -bW -bW -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -NV -NV -BQ -aO -mT -mT -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -Zf -Zf -mT -mT -uE -uE -mT -uE -uE -mT -mT -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -cR -cR -cR -cR -dd -mf -mf -BK -EP -EP -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +aag +asV +abm +abm +abm +aey +aey +abm +asV +asV +asV +asV +asV +asV +asV +aiK +asV +asV +asV +asV +asV +asV +ags +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +afy +afy +afy +afy +afy +aMI +afy +afy +afy +afy +afy +afy +afy +avF +afy +afy +afy +afy +aRI +aRI +aul +afy +afy +afy +afy +aFy +aGf +aeK +aeK +aeK +aDE +aEe +aEe +aEe +aQD +aeK +aeK +aeK +aAY +abW +abW +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +aNV +aNV +aBQ +aaO +amT +amT +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +aZf +aZf +amT +amT +auE +auE +amT +auE +auE +amT +amT +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +acR +acR +acR +acR +add +amf +amf +aBK +aEP +aEP +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (96,1,1) = {" -mT -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -ag -sV -bm -bm -bm -ey -ey -bm -sV -sV -sV -sV -sV -sV -sV -iK -sV -sV -sV -sV -sV -sV -gs -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -AH -AH -fy -fy -Gt -DD -HR -zs -fy -fy -AH -yd -Gf -eK -yU -eK -AY -QM -QM -RO -Gf -eK -zy -eK -AY -mT -mT -mT -mT -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -jQ -jQ -jQ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -uE -uE -uE -uE -uE -Fu -mT -Zf -EP -EP -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +aag +asV +abm +abm +abm +aey +aey +abm +asV +asV +asV +asV +asV +asV +asV +aiK +asV +asV +asV +asV +asV +asV +ags +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aAH +aAH +afy +afy +aPS +aRI +aeA +azs +afy +afy +aAH +ayd +aGf +aeK +ayU +aeK +aAY +aQM +aQM +aRO +aGf +aeK +azy +aeK +aAY +amT +amT +amT +amT +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +ajQ +ajQ +ajQ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +auE +auE +auE +auE +auE +aFu +amT +aZf +aEP +aEP +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (97,1,1) = {" -mT -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -ag -sV -bm -bm -bm -ey -ey -bm -sV -sV -sV -sV -sV -sV -sV -iK -sV -sV -sV -sV -sV -sV -gs -sV -sV -sV -sV -sV -sV -sV -sV -vG -sV -fy -fy -fy -fy -fy -fy -fy -fy -AH -AH -fy -fy -fy -LX -zw -zw -Fw -Dt -DD -DD -Do -Ih -IN -zw -zw -zw -Bz -eK -eK -eK -AY -QM -Xn -EJ -Gf -eK -eK -eK -AY -mT -mT -mT -mT -mT -mT -mT -mT -PO -PO -PO -mT -mT -mT -jQ -jQ -mT -mT -mT -PO -PO -gU -gU -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -mT -Zf -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -uE -uE -uE -uE -uE -mT -mT -Zf -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +aag +asV +abm +abm +abm +aey +aey +abm +asV +asV +asV +asV +asV +asV +asV +aiK +asV +asV +asV +asV +asV +asV +ags +asV +asV +asV +asV +asV +asV +asV +asV +avG +asV +afy +afy +afy +afy +afy +afy +afy +afy +aAH +aAH +afy +afy +afy +aLX +azw +azw +aFw +ayZ +aRI +aRI +aul +aki +aIN +azw +azw +azw +aBz +aeK +aeK +aeK +aAY +aQM +aXn +aEJ +aGf +aeK +aeK +aeK +aAY +amT +amT +amT +amT +amT +amT +amT +amT +aPO +aPO +aPO +amT +amT +amT +ajQ +ajQ +amT +amT +amT +aPO +aPO +agU +agU +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +amT +aZf +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +auE +auE +auE +auE +auE +amT +amT +aZf +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (98,1,1) = {" -mT -ae -sV -sV -sV -sV -sV -ae -sV -sV -sV -sV -sV -ae -ag -sV -bm -bm -bm -eX -ey -bm -sV -sV -sV -ae -sV -sV -sV -iK -sV -sV -sV -sV -sV -sV -gs -ae -sV -sV -sV -sV -sV -sV -sV -sV -sV -fy -fy -fy -fy -fy -fy -fy -fy -fy -fy -AH -AH -zs -Gf -eK -eK -Jp -Dt -DD -DD -Do -Ih -IQ -eK -eK -eK -eK -eK -eK -eK -AY -MP -MP -Fz -Gf -eK -eK -eK -AY -mT -mT -mT -mT -mT -mT -PO -PO -PO -PO -PO -PO -mT -hs -Oi -Oi -mT -PO -PO -PO -OA -gU -gU -gU -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +aae +asV +asV +asV +asV +asV +aae +asV +asV +asV +asV +asV +aae +aag +asV +abm +abm +abm +aeX +aey +abm +asV +asV +asV +aae +asV +asV +asV +aiK +asV +asV +asV +asV +asV +asV +ags +aae +asV +asV +asV +asV +asV +asV +asV +asV +asV +afy +afy +afy +afy +afy +afy +afy +afy +afy +afy +aAH +aAH +azs +aGf +aeK +aeK +aJp +ayZ +aRI +aRI +aul +aki +aIQ +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aAY +aMP +aMP +aFz +aGf +aeK +aeK +aeK +aAY +amT +amT +amT +amT +amT +amT +aPO +aPO +aPO +aPO +aPO +aPO +amT +ahs +aOi +aOi +amT +aPO +aPO +aPO +aOA +agU +agU +agU +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (99,1,1) = {" -mT -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -sV -sV -ae -sV -zI -zI -zI -zI -qW -ae -sV -sV -uA -sV -sV -uA -fy -fy -fy -fy -fy -fy -fy -fy -fy -LX -zw -zw -zw -Bz -eK -eK -Jp -Dt -DD -DD -Do -Ih -IQ -eK -eK -eK -eK -eK -eK -eK -SA -zw -lc -lc -Bz -eK -eK -eK -AY -mT -mT -mT -mT -mT -mT -PO -PO -PO -PO -PO -PO -PO -PO -OA -PO -PO -PO -Zn -PO -PO -gU -gU -Rc -gU -gU -gU -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -mT -mT -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -Zf -Zf -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +azI +asV +asV +aae +asV +azI +azI +azI +azI +aaR +aae +asV +asV +auA +asV +asV +auA +afy +afy +afy +afy +afy +afy +afy +afy +afy +aLX +azw +azw +azw +aBz +aeK +aeK +aJp +ayZ +aRI +aRI +aul +aki +aIQ +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aSA +azw +alc +alc +aBz +aeK +aeK +aeK +aAY +amT +amT +amT +amT +amT +amT +aPO +aPO +aPO +aPO +aPO +aPO +aPO +aPO +aOA +aPO +aPO +aPO +aZn +aPO +aPO +agU +agU +aRc +agU +agU +agU +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +amT +amT +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +aZf +aZf +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (100,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -zI -zI -zI -zI -zI -zI -mT -mT -zI -zI -zI -zI -zI -zI -zI -zI -zI -xb -mT -mT -fy -fy -fy -AH -yd -fy -Gf -eK -eK -eK -eK -eK -eK -Jp -Gd -to -to -Dq -Ii -IQ -eK -eK -eK -eK -Qa -eK -DE -Ee -QD -eK -eK -eK -eK -eK -eK -AY -mT -mT -mT -mT -PO -PO -PO -PO -PO -PO -PO -PO -PO -UF -pu -pu -pu -pu -pu -pu -pu -Ke -Ok -gU -gU -gU -gU -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -mT -mT -mT -Zf -Zf -Zf -mT -Zf -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -mT -mT -uE -uE -mT -uE -uE -uE -uE -mT -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +azI +azI +azI +azI +azI +azI +amT +amT +azI +azI +azI +azI +azI +azI +azI +azI +azI +axb +amT +amT +afy +afy +afy +aAH +ayd +afy +aGf +aeK +aeK +aeK +aeK +aeK +aeK +aJp +atr +aLH +aLH +ard +awg +aIQ +aeK +aeK +aeK +aeK +aQa +aeK +aDE +aEe +aQD +aeK +aeK +aeK +aeK +aeK +aeK +aAY +amT +amT +amT +amT +aPO +aPO +aPO +aPO +aPO +aPO +aPO +aPO +aPO +aUF +apu +apu +apu +apu +apu +apu +apu +aKe +aOk +agU +agU +agU +agU +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +amT +amT +amT +aZf +aZf +aZf +amT +aZf +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +amT +amT +auE +auE +amT +auE +auE +auE +auE +amT +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (101,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -zs -LX -zw -zw -zw -Bz -eK -eK -eK -Qa -eK -eK -Jp -Gd -to -to -Dq -Ii -IQ -eK -eK -eK -eK -eK -eK -AY -OL -Gf -eK -eK -eK -eK -QY -RB -Tc -mT -mT -mT -Yp -PO -PO -PO -PO -PO -PO -Xx -PO -Zn -yt -Mc -NW -NW -NW -NW -NW -NW -GN -ER -gU -gU -iD -gU -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -Zf -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -uE -uE -uE -uE -mT -mT -uE -uE -uE -mT -mT -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +azs +aLX +azw +azw +azw +aBz +aeK +aeK +aeK +aQa +aeK +aeK +aJp +atr +aLH +aLH +ard +awg +aIQ +aeK +aeK +aeK +aeK +aeK +aeK +aAY +aOL +aGf +aeK +aeK +aeK +aeK +aQY +aRB +aTc +amT +amT +amT +aYp +aPO +aPO +aPO +aPO +aPO +aPO +aXx +aPO +aZn +ayt +aMc +aNW +aNW +aNW +aNW +aNW +aNW +aGN +aER +agU +agU +aiD +agU +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +aZf +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +auE +auE +auE +auE +amT +amT +auE +auE +auE +amT +amT +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (102,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -fy -Gf -eK -eK -eK -eK -eK -eK -eK -eK -eK -eK -Fx -Gd -to -to -Dq -Ii -IR -Ee -Ee -Ee -QD -eK -eK -SA -zw -Bz -eK -eK -eK -QY -Sb -sn -sn -sn -sn -sn -FF -PO -OA -PO -Zn -PO -PO -PO -PO -PO -yt -mp -jQ -PY -jQ -jQ -jQ -hd -GN -ER -gU -gU -gU -gU -JU -GQ -GQ -GN -GQ -JX -wT -of -wT -wT -wT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -uE -uE -mT -mT -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +afy +aGf +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aFx +atr +aLH +aLH +ard +awg +aIR +aEe +aEe +aEe +aQD +aeK +aeK +aSA +azw +aBz +aeK +aeK +aeK +aQY +aSb +asn +asn +asn +asn +asn +aFF +aPO +aOA +aPO +aZn +aPO +aPO +aPO +aPO +aPO +ayt +amp +ajQ +aPY +ajQ +ajQ +ajQ +ahd +aGN +aER +agU +agU +agU +agU +aJU +aGQ +aGQ +aGN +aGQ +aJX +awT +aNx +awT +awT +awT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +auE +auE +amT +amT +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (103,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -zw -Bz -eK -zy -eK -yU -eK -eK -eK -eK -eK -eK -AY -MP -to -to -Dq -MP -Mz -MP -Mz -yg -Gf -eK -eK -eK -eK -eK -eK -eK -eK -Jp -sn -SB -Tm -Up -VJ -sn -FF -PO -PO -PO -PO -PO -OA -PO -PO -PO -yt -mp -jQ -jQ -jQ -Rr -jQ -jQ -GN -ER -ma -gU -gU -gU -JU -GQ -GQ -GN -Gg -JX -wT -of -wT -of -wT -of -wT -wT -mT -mT -Zf -Zf -Zf -mT -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -uE -mT -mT -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +azw +aBz +aeK +azy +aeK +ayU +aeK +aeK +aeK +aeK +aeK +aeK +aAY +aMP +aLH +aLH +ard +aMP +aMz +aMP +aMz +ayg +aGf +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aJp +asn +aSB +aMM +aWy +aTx +asn +aFF +aPO +aPO +aPO +aPO +aPO +aOA +aPO +aPO +aPO +ayt +amp +ajQ +ajQ +ajQ +aRr +ajQ +ajQ +aGN +aER +ama +agU +agU +agU +aJU +aGQ +aGQ +aGN +aGg +aJX +awT +aNx +awT +aNx +awT +aNx +awT +awT +amT +amT +aZf +aZf +aZf +amT +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +auE +amT +amT +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (104,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -eK -eK -eK -eK -yU -eK -eK -eK -AY -MP -to -to -Dq -MP -MP -Yw -Ku -Le -pv -RB -RB -RB -RB -RB -RB -RB -RB -QZ -sn -SG -Xm -Xm -Xm -WY -Yy -Zh -Zh -Er -pu -pu -pu -pu -pu -Ac -ip -mp -aO -jQ -jQ -Rr -jQ -jQ -GN -ng -Ok -gU -Rc -gU -JU -GQ -DU -GN -GQ -JX -of -wT -wT -of -wT -of -wT -of -mT -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -mT -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -uE -uE -mT -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +ayU +aeK +aeK +aeK +aAY +aMP +aLH +aLH +ard +aMP +aMP +aYw +aKu +aLe +apv +aRB +aRB +aRB +aRB +aRB +aRB +aRB +aRB +aQZ +asn +agK +aTM +aTM +aTM +alL +aYy +aZh +aZh +aEr +apu +apu +apu +apu +apu +aAc +aip +amp +aaO +ajQ +ajQ +aRr +ajQ +ajQ +aGN +ang +aOk +agU +aRc +agU +aJU +aGQ +aDU +aGN +aGQ +aJX +aNx +awT +awT +aNx +awT +aNx +awT +aNx +amT +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +amT +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +auE +auE +amT +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (105,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -eK -eK -eK -eK -eK -eK -eK -zy -eK -AY -MP -to -to -Dq -MP -MP -MP -MP -EJ -Mi -Mi -Mi -Mi -Mi -Mi -Mi -Mi -Mi -Mi -Zq -Xm -Xm -Ut -ml -WY -ZK -ZK -ZK -ZK -ZK -ZK -ZK -ZK -ZK -ZK -ZK -jQ -jQ -jQ -jQ -Rr -jQ -jQ -GQ -Io -ER -gU -gU -gU -JU -GQ -GQ -GQ -GQ -JX -of -wT -of -wT -wT -wT -of -of -wT -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -mT -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -uE -Fu -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +azy +aeK +aAY +aMP +aLH +aLH +ard +aMP +aMP +aMP +aMP +aEJ +aCS +aCS +aCS +aCS +aCS +aCS +aCS +aCS +aCS +aCS +aec +aTM +aTM +adq +aYQ +alL +aMu +aMu +aMu +aMu +aMu +aMu +aMu +aMu +aMu +aMu +aMu +ajQ +ajQ +ajQ +ajQ +aRr +ajQ +ajQ +aGQ +aIo +aER +agU +agU +agU +aJU +aGQ +aGQ +aGQ +aGQ +aJX +aNx +awT +aNx +awT +awT +awT +aNx +aNx +awT +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +amT +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +auE +aFu +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (106,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -zy -eK -eK -Qa -eK -eK -eK -eK -eK -eK -eK -eK -AY -MP -to -to -Dq -to -to -to -to -to -to -to -to -to -to -to -to -to -to -to -Se -SH -Xm -Ut -ml -Xe -tz -tz -tz -tz -tz -OQ -OQ -OQ -OQ -OQ -OQ -OQ -Co -jQ -jQ -Rr -jQ -jQ -GQ -Iq -ER -gU -gU -gU -JU -GQ -jf -GN -GQ -JX -wT -of -of -wT -wT -wT -wT -wT -wT -wT -mT -mT -mT -Zf -Zf -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -Fu -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +azy +aeK +aeK +aQa +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aAY +aMP +aLH +aLH +ard +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aSe +aqQ +aTM +adq +aYQ +aFe +ayJ +ayJ +ayJ +ayJ +ayJ +aMV +aMV +aMV +aMV +aMV +aMV +aMV +aCo +ajQ +ajQ +aRr +ajQ +ajQ +aGQ +aIq +aER +agU +agU +agU +aJU +aGQ +ajf +aGN +aGQ +aJX +awT +aNx +aNx +awT +awT +awT +awT +awT +awT +awT +amT +amT +amT +aZf +aZf +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +aFu +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (107,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -eK -eK -eK -eK -zy -eK -eK -eK -eK -eK -AY -MP -to -to -Dr -KF -KF -KF -KF -KF -KF -KF -KF -KF -KF -KF -KF -KF -KF -KF -Sh -SK -RA -Ut -VN -Xe -tz -tz -tz -tz -tz -OQ -OQ -OQ -OQ -OQ -OQ -OQ -Co -jQ -jQ -jQ -jQ -aO -Ra -GQ -ER -gU -gU -iD -JU -GQ -GQ -GN -GQ -JX -wT -wT -ND -of -of -wT -wT -of -wT -wT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Fu -xI -BK -BK -BK -BK -BK -Zf -Zf -Zf -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +azy +aeK +aeK +aeK +aeK +aeK +aAY +aMP +aLH +aLH +aIS +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +abH +acc +aUm +adq +aup +aFe +ayJ +ayJ +ayJ +ayJ +ayJ +aMV +aMV +aMV +aMV +aMV +aMV +aMV +aCo +ajQ +ajQ +ajQ +ajQ +aaO +aRa +aGQ +aER +agU +agU +aiD +aJU +aGQ +aGQ +aGN +aGQ +aJX +awT +awT +aef +aNx +aNx +awT +awT +aNx +awT +awT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aFu +axI +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (108,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -eK -eK -eK -eK -eK -Qa -eK -eK -eK -eK -AY -MP -to -to -to -to -to -to -to -to -to -to -to -to -to -to -to -to -to -to -Se -SS -Xm -Ut -ml -Xe -tz -tz -tz -tz -tz -OQ -OQ -OQ -OQ -OQ -OQ -OQ -Co -jQ -jQ -jQ -jQ -jQ -GN -GQ -ER -gU -gU -gU -JU -GQ -Gg -GQ -GQ -JX -wT -wT -wT -wT -of -wT -of -of -wT -of -wT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aQa +aeK +aeK +aeK +aeK +aAY +aMP +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aLH +aSe +aYz +aTM +adq +aYQ +aFe +ayJ +ayJ +ayJ +ayJ +ayJ +aMV +aMV +aMV +aMV +aMV +aMV +aMV +aCo +ajQ +ajQ +ajQ +ajQ +ajQ +aGN +aGQ +aER +agU +agU +agU +aJU +aGQ +aGg +aGQ +aGQ +aJX +awT +awT +awT +awT +aNx +awT +aNx +aNx +awT +aNx +awT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (109,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -yU -eK -eK -eK -eK -eK -eK -DE -Ee -Ee -By -MP -GD -GT -DL -DL -DL -fu -MP -EJ -LB -LB -LB -LB -LB -LB -LB -LB -LB -LB -Zq -ST -Xm -Ut -ml -WY -Ms -Ms -Ms -Ms -Ms -Ms -Ms -Ms -Ms -Ms -Ms -jQ -jQ -jQ -jQ -jQ -jQ -jQ -GQ -Va -ng -Ok -gU -gU -JU -GQ -GQ -GQ -GQ -my -PF -wT -wT -wT -wT -of -of -wT -of -of -wT -mT -mT -mT -uE -uE -mT -mT -mT -mT -uE -uE -uE -mT -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +ayU +aeK +aeK +aeK +aeK +aeK +aeK +aDE +aEe +aEe +aBy +aMP +aIb +aFB +acV +acV +acV +asj +aMP +aEJ +ajw +ajw +ajw +ajw +ajw +ajw +ajw +ajw +ajw +ajw +aec +aza +aTM +adq +aYQ +alL +awo +awo +awo +awo +awo +awo +awo +awo +awo +awo +awo +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +aGQ +aVa +ang +aOk +agU +agU +aJU +aGQ +aGQ +aGQ +aGQ +amy +aPF +awT +awT +awT +awT +aNx +aNx +awT +aNx +aNx +awT +amT +amT +amT +auE +auE +amT +amT +amT +amT +auE +auE +auE +amT +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (110,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -yU -eK -eK -eK -eK -eK -eK -eK -eK -eK -AY -MP -MP -MP -MP -Cq -GU -DM -DM -DM -Ec -MP -Fz -Mj -DP -DP -DP -DP -DP -DP -DP -DP -ZX -sn -Pl -Xm -Xm -ml -WY -YA -Zj -Zj -xq -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -wn -Gr -jQ -jQ -GQ -GQ -CT -ER -ma -gU -JU -GQ -GN -GQ -GQ -GQ -JX -HA -wT -VD -uF -kB -wT -wT -wT -wT -FW -mT -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +ayU +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aAY +aMP +aMP +aMP +aMP +aWi +aGU +aDM +aDM +aDM +aEt +aMP +aFz +aMj +aDP +aDP +aDP +aDP +aDP +aDP +aDP +aDP +aZX +asn +aRj +aTM +aTM +aYQ +alL +aYA +aZj +aZj +axq +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +awn +aGr +ajQ +ajQ +aGQ +aGQ +aCT +aER +ama +agU +aJU +aGQ +aGN +aGQ +aGQ +aGQ +aJX +aHA +awT +aUv +auF +akB +awT +awT +awT +awT +aFW +amT +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (111,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -eK -eK -eK -eK -eK -eK -eK -AY -MP -MP -MP -MP -Cq -GW -DM -DM -DM -Ec -MP -LX -Bz -eK -eK -DE -Ee -QD -eK -Qa -eK -Jp -sn -sn -DJ -Uu -Wf -sn -FF -PO -PO -yt -Kd -XY -Go -lV -Go -Go -jQ -Go -Go -Go -Go -Go -jQ -jQ -GQ -GQ -Ra -ER -gU -gU -JU -GQ -GN -GQ -GQ -GQ -JX -wT -wT -wT -wT -wT -wT -wT -wT -wF -SI -uE -mT -uE -uE -uE -uE -uE -uE -uE -uE -mT -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aAY +aMP +aMP +aMP +aMP +aWi +aGW +aDM +aDM +aDM +aEt +aMP +aLX +aBz +aeK +aeK +aDE +aEe +aQD +aeK +aQa +aeK +aJp +asn +asn +aGZ +aqy +aie +asn +aFF +aPO +aPO +ayt +aKd +aXY +aGo +alV +aGo +aGo +ajQ +aGo +aGo +aGo +aGo +aGo +ajQ +ajQ +aGQ +aGQ +aRa +aER +agU +agU +aJU +aGQ +aGN +aGQ +aGQ +aGQ +aJX +awT +awT +awT +awT +awT +awT +awT +awT +awF +aSI +auE +amT +auE +auE +auE +auE +auE +auE +auE +auE +amT +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (112,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -Qa -eK -eK -eK -yU -eK -eK -eK -AY -MP -MP -Yw -MP -Cq -Hc -CA -CA -CA -Ec -EJ -Gf -eK -eK -Qa -AY -OL -Gf -eK -eK -eK -Rd -ZX -sn -gG -sn -sn -sn -FF -Zn -PO -yt -TS -Ik -Sf -Ik -Go -jQ -Go -jQ -Go -jQ -Gr -jQ -jQ -jQ -GQ -GQ -HK -ER -gU -gU -JU -GQ -GN -GQ -GQ -Gg -JX -wT -wT -wT -wT -of -wT -wT -wT -SE -uE -uE -TX -uE -uE -uE -uE -uE -uE -uE -uE -mT -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aQa +aeK +aeK +aeK +ayU +aeK +aeK +aeK +aAY +aMP +aMP +aYw +aMP +aWi +aHc +aCA +aCA +aCA +aEt +aEJ +aGf +aeK +aeK +aQa +aAY +aOL +aGf +aeK +aeK +aeK +aRd +aZX +asn +agG +asn +asn +asn +aFF +aZn +aPO +ayt +aTS +aFQ +alh +aFQ +aGo +ajQ +aGo +ajQ +aGo +ajQ +aGr +ajQ +ajQ +ajQ +aGQ +aGQ +aHK +aER +agU +agU +aJU +aGQ +aGN +aGQ +aGQ +aGg +aJX +awT +awT +awT +awT +aNx +awT +awT +awT +aSE +auE +auE +aTX +auE +auE +auE +auE +auE +auE +auE +auE +amT +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (113,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -eK -eK -eK -eK -eK -zy -eK -AY -MP -MP -MP -MP -Cq -CA -CA -CA -CA -Ec -EJ -Gf -eK -eK -eK -SA -zw -wb -DE -Ee -QD -eK -Rd -DP -To -mT -mT -mT -FG -PO -PO -yt -TS -Hh -Go -wn -Go -Go -Go -IO -Ik -Ik -ZW -jP -Xz -jQ -GQ -GN -GQ -ER -iD -gU -JU -GQ -GQ -GN -GQ -si -JX -wT -of -wT -wT -of -wT -of -wT -SE -uE -uE -TX -uE -uE -uE -uE -uE -uE -uE -uE -mT -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +azy +aeK +aAY +aMP +aMP +aMP +aMP +aWi +aCA +aCA +aCA +aCA +aEt +aEJ +aGf +aeK +aeK +aeK +aSA +azw +awb +aDE +aEe +aQD +aeK +aRd +aDP +aTo +amT +amT +amT +aFG +aPO +aPO +ayt +aTS +amg +aGo +awn +aGo +aGo +aGo +aIO +aFQ +aFQ +aZW +ajP +aXz +ajQ +aGQ +aGN +aGQ +aER +aiD +agU +aJU +aGQ +aGQ +aGN +aGQ +asi +aJX +awT +aNx +awT +awT +aNx +awT +aNx +awT +aSE +auE +auE +aTX +auE +auE +auE +auE +auE +auE +auE +auE +amT +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (114,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -eK -eK -eK -eK -eK -eK -eK -eK -eK -DE -By -MP -MP -MP -MP -Cq -CA -CA -DK -IW -Ec -MP -Gf -eK -eK -eK -eK -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -PD -Zp -ZC -ZC -IO -uw -jI -Ik -wn -fe -uw -PV -Hh -YL -jl -rW -dM -os -GQ -eR -GQ -ER -gU -gU -JU -DU -GQ -GN -GQ -GQ -JX -wT -wT -Mn -wT -wT -of -of -wT -SE -uE -uE -TX -uE -uE -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aeK +aDE +aBy +aMP +aMP +aMP +aMP +aWi +aCA +aCA +aDK +aIW +aEt +aMP +aGf +aeK +aeK +aeK +aeK +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aPD +aZp +axY +axY +aIO +anZ +awB +aFQ +awn +afe +anZ +aUD +amg +aYX +amB +adt +adM +aos +aGQ +aeR +aGQ +aER +agU +agU +aJU +aDU +aGQ +aGN +aGQ +aGQ +aJX +awT +awT +aMn +awT +awT +aNx +aNx +awT +aSE +auE +auE +aTX +auE +auE +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (115,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -MP -MP -MP -Cq -CA -CA -Im -IY -Ec -EJ -Gf -eK -eK -eK -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -PO -ZC -Ik -mJ -Ik -ld -XB -ZC -ZC -XB -uw -XB -JG -we -an -Vp -Yt -Qg -GQ -GN -GQ -ER -gU -eo -qv -GQ -GQ -GQ -Zo -Zo -my -PF -Wl -Fl -wT -wT -wT -wT -wT -SE -uE -uE -TX -uE -uE -mT -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -EY -EY -EY -EY -EY -EY -EY -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aMP +aMP +aMP +aWi +aCA +aCA +aIm +aIY +aEt +aEJ +aGf +aeK +aeK +aeK +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aPO +axY +aFQ +alQ +aFQ +axe +aXB +axY +axY +aXB +anZ +aXB +aGC +aPv +agY +apC +aYt +aQg +aGQ +aGN +aGQ +aER +agU +aeo +aqv +aGQ +aGQ +aGQ +aZo +aZo +amy +aPF +aWl +aFl +awT +awT +awT +awT +awT +aSE +auE +auE +aTX +auE +auE +amT +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (116,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -MP -MP -MP -Cq -CA -CA -Iu -IZ -Ec -MP -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -PO -yN -ZC -ZC -XW -uw -rW -Ik -Ik -Ik -RV -Ik -Hw -Ph -ff -mA -dM -os -GQ -GQ -Va -ER -gU -JU -GQ -Zo -GQ -kl -GQ -GQ -Zo -JX -wT -YY -wT -wT -wT -wT -wT -SE -uE -uE -TX -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -BK -BK -BK -BK -BK -BK -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aMP +aMP +aMP +aWi +aCA +aCA +aIu +aIZ +aEt +aMP +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aPO +ayN +axY +axY +aXW +anZ +adt +aFQ +aFQ +aFQ +aal +aFQ +aFb +aGv +axW +adw +adM +aos +aGQ +aGQ +aVa +aER +agU +aJU +aGQ +aZo +aGQ +akl +aGQ +aGQ +aZo +aJX +awT +aYY +awT +awT +awT +awT +awT +aSE +auE +auE +aTX +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aBK +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (117,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -MP -MP -iw -Ds -Ds -Ds -Ds -rl -MP -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Xx -PO -PO -yt -Go -Hw -GO -an -Vp -GO -Go -Go -Go -Go -Pz -WE -xx -jQ -GQ -GQ -GN -ER -Rc -JU -GQ -GQ -GQ -GN -GQ -GQ -GQ -JX -of -wT -of -wT -wT -wT -wT -ej -NI -uE -mT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -BK -BK -BK -BK -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aMP +aMP +adn +aJu +aJu +aJu +aJu +aQI +aMP +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aXx +aPO +aPO +ayt +aGo +aFb +ast +agY +apC +ast +aGo +aGo +aGo +aGo +aPz +aWE +axx +ajQ +aGQ +aGQ +aGN +aER +aRc +aJU +aGQ +aGQ +aGQ +aGN +aGQ +aGQ +aGQ +aJX +aNx +awT +aNx +awT +awT +awT +awT +aej +aNI +auE +amT +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aBK +aBK +aBK +aBK +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (118,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -MP -MP -MP -MP -MP -MP -MP -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -PO -PO -yt -Go -Km -Km -vk -Km -jI -jI -Go -Go -jQ -Gr -jQ -jQ -jQ -GQ -GQ -Iq -ER -gU -JU -GQ -GQ -GQ -GN -GQ -PC -GQ -JX -of -wT -wT -wT -of -of -wT -wT -Vg -mT -mT -mT -uE -mT -mT -mT -uE -uE -uE -uE -mT -uE -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -BK -BK -BK -BK -BK -BK -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aMP +aMP +aMP +aMP +aMP +aMP +aMP +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aPO +aPO +ayt +aGo +afD +afD +ayc +afD +awB +awB +aGo +aGo +ajQ +aGr +ajQ +ajQ +ajQ +aGQ +aGQ +aIq +aER +agU +aJU +aGQ +aGQ +aGQ +aGN +aGQ +aPC +aGQ +aJX +aNx +awT +awT +awT +aNx +aNx +awT +awT +aVg +amT +amT +amT +auE +amT +amT +amT +auE +auE +auE +auE +amT +auE +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aBK +aBK +aBK +aBK +aBK +aBK +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (119,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -PO -yt -ZW -vB -CR -Mf -vB -LD -lV -py -py -Go -Gr -jQ -Rr -jQ -GQ -CT -Af -if -gU -IM -ZL -GQ -GQ -GN -GQ -GQ -GQ -JX -of -wT -of -of -of -of -wT -of -wT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -uE -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aPO +ayt +aZW +avB +aCR +aMf +avB +aaf +alV +apy +apy +aGo +aGr +ajQ +aRr +ajQ +aGQ +aCT +aAf +aif +agU +aIM +aZL +aGQ +aGQ +aGN +aGQ +aGQ +aGQ +aJX +aNx +awT +aNx +aNx +aNx +aNx +awT +aNx +awT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +auE +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (120,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Tj -py -Yd -yo -if -iD -gU -gU -IM -ZL -GQ -GN -GQ -GQ -GQ -JX -wT -of -of -wT -uF -kB -of -of -wT -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +ajQ +aTj +apy +aYd +ayo +aif +aiD +agU +agU +aIM +aZL +aGQ +aGN +aGQ +aGQ +aGQ +aJX +awT +aNx +aNx +awT +auF +akB +aNx +aNx +awT +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (121,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -jQ -jQ -jQ -jQ -BW -Rr -jQ -KT -qt -if -gU -gU -gU -ma -gU -JU -GQ -GN -GQ -GQ -GQ -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +ajQ +ajQ +ajQ +ajQ +aBW +aRr +ajQ +aKT +aqt +aif +agU +agU +agU +ama +agU +aJU +aGQ +aGN +aGQ +aGQ +aGQ +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (122,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -jQ -jQ -jQ -hd -Rr -KT -PD -gU -gU -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +ajQ +ajQ +ajQ +ahd +aRr +aKT +aPD +agU +agU +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (123,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -jQ -jQ -jQ -jQ -Gr -Na -PO -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +ajQ +ajQ +ajQ +ajQ +aGr +aNa +aPO +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (124,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -jQ -aO -jQ -jQ -PY -Na -PO -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +ajQ +aaO +ajQ +ajQ +aPY +aNa +aPO +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (125,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -jQ -jQ -jQ -jQ -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +ajQ +ajQ +ajQ +ajQ +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (126,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (127,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (128,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -mT -Zf -Zf -mT -mT -mT -Zf -Zf -Zf -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +amT +aZf +aZf +amT +amT +amT +aZf +aZf +aZf +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (129,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} (130,1,1) = {" -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -mT -Zf -Zf -mT -Zf -mT -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +amT +aZf +aZf +amT +aZf +amT +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf +aZf "} diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm index bc6c99e166..7b7dd3a6ca 100644 --- a/maps/map_files/chapaev/chapaev.dmm +++ b/maps/map_files/chapaev/chapaev.dmm @@ -1,142 +1,88 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"ab" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +"ap" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/large_shrapnel/at_rocket_dud{ + drop_sensitivity = 0; + impact_sensitivity = 1; + pixel_x = -6; + pixel_y = 13 }, -/obj/item/toy/plush/therapy/green{ - desc = "He seems lonely..."; - layer = 3.6; - name = "Polkovnik Obnimashkin"; - pixel_x = 1; - pixel_y = 26 +/obj/item/attachable/bayonet/upp{ + pixel_x = -9; + pixel_y = -1 }, -/obj/item/clothing/head/uppcap/ushanka{ - layer = 3.6; - pixel_x = 1; - pixel_y = 30 +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 13 }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"ae" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"af" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"ag" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"ai" = ( -/obj/structure/ladder{ - height = 1; - id = "eng1" - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"an" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"as" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"at" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"az" = ( -/obj/structure/machinery/cryopod{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"aE" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"aF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "chapaev_engi" - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"aS" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 2" +"ax" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"aK" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"bc" = ( +/area/golden_arrow/cryo_cells) +"aR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 6 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"bg" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"be" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform/strata/metal{ dir = 8 }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"bi" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 +"bh" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/largecrate, -/obj/item/storage/fancy/cigar{ - pixel_y = 8 +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"bt" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/area/golden_arrow/synthcloset) +"bk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"bx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 11 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 10; + pixel_y = 6 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) "bH" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -144,58 +90,86 @@ }, /turf/open/space/basic, /area/golden_arrow/hangar) -"bJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"bK" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) "bN" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/briefing) -"bR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/type71, -/obj/structure/largecrate/supply/ammo/type71{ - pixel_x = 3; - pixel_y = 8 +"bP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"bQ" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 1; + pixel_y = 6 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"bU" = ( -/obj/structure/machinery/cm_vending/gear/medic_chemical/upp, /turf/open/floor/strata/cyan1/east, /area/golden_arrow/medical) +"bT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/flask/canteen, +/obj/item/reagent_container/food/drinks/flask/canteen{ + pixel_x = -6 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"bW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap{ + faction = "UPP" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) "cc" = ( /obj/structure/machinery/telecomms/relay/preset/tower, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"ce" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 +"ch" = ( +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"co" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"cr" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"cx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"cg" = ( -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"cv" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +"cC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 }, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/trash/semki, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"cG" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) @@ -212,12 +186,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/briefing) -"cQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) "cR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, @@ -226,92 +194,74 @@ "cT" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/canteen) -"cU" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"cX" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"cW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"di" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - opacity = 0; - pixel_x = 17 - }, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"dn" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Requisitions"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/supply) -"dx" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +"de" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"dA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"dB" = ( -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"dF" = ( -/obj/structure/surface/rack, -/obj/item/weapon/straight_razor{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/clothing/accessory/patch/upp, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"dH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"dI" = ( -/obj/effect/landmark/start/marine/medic/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, +"dh" = ( /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"dM" = ( -/obj/structure/machinery/cryopod{ +"dq" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"dr" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"dG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join/upp, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"dS" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap, +"dJ" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/largecrate, +/obj/item/storage/fancy/cigar{ + pixel_y = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"dP" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) +/area/golden_arrow/squad_two) +"dR" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") + }, +/obj/structure/machinery/cm_vending/clothing/medic/upp, +/obj/item/clothing/head/uppcap{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) "dT" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -329,118 +279,74 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"dU" = ( -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"dV" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"ea" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; - pixel_y = -9 +"ec" = ( +/obj/structure/largecrate{ + pixel_x = 6 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/largecrate{ + layer = 3.1; + pixel_x = 15; + pixel_y = 18 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "ei" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/squad_one) -"ej" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"eq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"eo" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"es" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"ew" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/largecrate/random/barrel/red{ - layer = 4; +/area/golden_arrow/cryo_cells) +"et" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"eF" = ( +/obj/item/tool/mop{ + pixel_x = 17; + pixel_y = -2 + }, +/obj/item/paper{ + icon_state = "paper_words"; + info = "you fucktards should clean your boots because lieutenant kotov made me scrub the deck clean with a toothbrush when i fucked up (wasnt my fault too) and BOY was it dirty. fuck you all though. know my struggles."; + name = "scribbled note"; pixel_y = 22 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"eB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/golden_arrow/briefing) +"eQ" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"eU" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "USCM Food Vendor, containing standard military Prepared Meals. It was gifted to Chapaev by Marines of 1st Platoon, Sun Riders as a sign of good will. They did not complain receiving a crate of vodka in return." }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"eD" = ( -/obj/structure/machinery/light, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"eH" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") +/area/golden_arrow/canteen) +"eV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Dorms"; + req_one_access = null }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"eL" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"eM" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"eP" = ( -/obj/structure/machinery/conveyor, -/obj/structure/plasticflaps, +/area/golden_arrow/dorms) +"fb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/megaphone, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) +/area/golden_arrow/briefing) "fc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -448,13 +354,31 @@ }, /turf/open/floor/plating, /area/golden_arrow/platoon_sergeant) -"ff" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access/upp, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +"fd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) "fh" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/briefing) +"fk" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"fo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "fq" = ( /obj/effect/landmark/observer_start, /obj/effect/decal/strata_decals/catwalk/prison, @@ -463,6 +387,19 @@ }, /turf/open/floor/plating, /area/golden_arrow/briefing) +"fw" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/canteen) +"fx" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) "fA" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -471,27 +408,61 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"fE" = ( +"fL" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; name = "ship-grade camera"; network = list("Chapaev") }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"fJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"fQ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"fN" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"fT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"fU" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) +"fW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"fY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) "ga" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -505,307 +476,433 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"gh" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"gm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"gr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"gq" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "241" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"gx" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"gU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Cleaning Supplies"; - req_one_access = null +/obj/item/clothing/head/uppcap/civi{ + pixel_x = 8; + pixel_y = 8 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"gX" = ( -/obj/item/prop/colony/used_flare, -/obj/item/prop/colony/used_flare{ - pixel_x = 9; +/area/golden_arrow/dorms) +"gv" = ( +/obj/structure/platform/strata/metal{ + dir = 1; pixel_y = 10 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"ha" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"he" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "chapaevcargo" - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"hh" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"hq" = ( -/obj/structure/bed/chair{ +/area/golden_arrow/briefing) +"gy" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"hx" = ( -/obj/effect/landmark/start/marine/leader/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"hE" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_sergeant) -"hH" = ( -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"hK" = ( +"gB" = ( /obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"hV" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"ic" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"gG" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"gI" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"ip" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"gM" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/canteen) -"iv" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"gO" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"iw" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"hb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/landmark/start/marine/smartgunner/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"iz" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"iB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Locker Room"; - req_one_access = null - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"iD" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/pipes/vents/pump, -/obj/structure/pipes/vents/pump, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"iF" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"iK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + pixel_x = -1 }, -/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"iO" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/cryo_cells) -"iW" = ( +"hc" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 6 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"iZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/lightreplacer, -/obj/item/device/radio, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"jg" = ( -/obj/structure/machinery/light, +/area/golden_arrow/platoon_commander_rooms) +"hl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"hm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 10 }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"ho" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"hv" = ( +/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"jp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 11 +"hy" = ( +/obj/vehicle/powerloader/jd{ + name = "\improper CosmosStal 12 Bogatyr Power Loader" }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 10; - pixel_y = 6 +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"hz" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 4; + icon_state = "lattice-simple"; + pixel_x = 13; + pixel_y = 10 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -19; + pixel_y = 10 }, -/obj/item/toy/handcard/aceofspades, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"jr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Dorms"; - req_one_access = null - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"jG" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/engineering) -"jI" = ( +"hA" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/minigun{ - desc = "A huge ammo drum for a huge gun. Your platoon got issued with magazines first which happened several months ago. When will the miniguns come, you wonder?"; - name = "GSh-7.62 rotating ammo drum (7.62x51mm)"; - pixel_x = 6; - pixel_y = 8 +/obj/item/reagent_container/food/snacks/bearmeat, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"hE" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/platoon_sergeant) +"hO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"jR" = ( -/obj/structure/largecrate{ - pixel_x = 6 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"hS" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/largecrate{ - layer = 3.1; - pixel_x = 15; - pixel_y = 18 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"hT" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, /turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"jS" = ( +"hY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"if" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"im" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"in" = ( /obj/effect/landmark/start/marine/upp, /obj/effect/landmark/late_join/upp, /obj/effect/landmark/late_join, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"jX" = ( -/obj/structure/bed{ - can_buckle = 0 +"ip" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/canteen) +"iG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"iO" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/cryo_cells) +"iQ" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Corpsman" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/device/radio/headset/distress/UPP, +/obj/item/clothing/under/marine/veteran/UPP/medic, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"iU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_y = -4 + }, +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 13 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"kh" = ( -/obj/structure/reagent_dispensers/watertank, +"jb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Infirmary"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"je" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"jm" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"kj" = ( -/obj/item/clothing/shoes/slippers_worn{ - pixel_y = 16 +/area/golden_arrow/hangar) +"jt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"kl" = ( -/obj/structure/machinery/light, +"jw" = ( +/obj/structure/machinery/conveyor, +/obj/structure/pipes/standard/cap/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"jy" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"jz" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"kn" = ( -/obj/structure/prop{ - desc = "A sturdy metal ladder that leads to lower deck of Chapaev which houses CIC and Brig. The hatch is closed, for now."; - icon_state = "ladder11"; - name = "ladder" +/area/golden_arrow/canteen) +"jA" = ( +/obj/item/tool/soap, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"kr" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"jE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 4 }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"jG" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/engineering) -"ku" = ( -/obj/vehicle/powerloader/jd{ - name = "\improper CosmosStal 12 Bogatyr Power Loader" +"jH" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"jK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"jP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ammo_magazine/pistol/np92, +/obj/item/ammo_magazine/pistol/np92{ + pixel_x = 4 }, -/obj/structure/machinery/door_control{ - id = "chapaevcargo"; - pixel_x = 32 +/obj/item/weapon/gun/pistol/np92, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"jY" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector/hacked, +/obj/item/ammo_magazine/sentry/upp, +/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"jZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Engineering"; + req_one_access = null + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"ka" = ( +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/space) +"ko" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/storage/pouch/shotgun/large, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/weapon/gun/shotgun/type23, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"kp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"kv" = ( +/obj/item/ammo_box/rounds/pkp{ + pixel_y = 9 + }, +/obj/item/ammo_box/magazine/type71/empty, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"kw" = ( +"kz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Locker Room"; + req_one_access = null + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"kE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E" }, -/obj/effect/landmark/start/marine/upp, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/start/marine/tl/upp, /obj/effect/landmark/late_join/upp, /obj/effect/landmark/late_join, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/cryo_cells) -"kW" = ( -/obj/item/stool, -/obj/structure/pipes/vents/pump{ +"kI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"kL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"kQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"kY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/cryo_cells) +"kZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"lk" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"ll" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 8; + pixel_x = 15; + pixel_y = 2 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"lm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) "lo" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -830,199 +927,175 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"lu" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap"; - layer = 2.5 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/machinery/light{ +"lt" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"lv" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"lB" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"lC" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"lE" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"lN" = ( -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"lP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/handful/shotgun/heavy/flechette{ - current_rounds = 1; - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/handful/shotgun/heavy{ - current_rounds = 1; - pixel_y = 5 +/area/golden_arrow/cryo_cells) +"lM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/item/ammo_magazine/handful/shotgun/heavy/beanbag{ - current_rounds = 1; - pixel_x = -8; - pixel_y = 5 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"lR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"me" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"mh" = ( -/obj/item/newspaper{ - desc = "An issue of Kosmicheskaya Pravda, the newspaper circulating in UPP-controlled space."; - pixel_x = -15; - pixel_y = 34 +/obj/structure/machinery/cryopod{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"mj" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 8 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"mm" = ( -/obj/structure/machinery/light, +"lX" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"mt" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"mu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"my" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap/ushanka/civi{ - pixel_y = 6 +/area/golden_arrow/canteen) +"mn" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 5" }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"mB" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"mN" = ( -/obj/structure/largecrate{ - fill_from_loc = 0 - }, -/obj/structure/largecrate{ - fill_from_loc = 0; - layer = 3.1; - pixel_x = -1; - pixel_y = 38 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 2.9; - name = "Commando Huggs"; - pixel_y = 8; - throwforce = 15 +/area/golden_arrow/engineering) +"mw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/item/clothing/head/cmcap{ - layer = 3.0; - pixel_x = -1; - pixel_y = 15 +/obj/structure/mirror{ + pixel_x = 28 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"mI" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"mT" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"mV" = ( -/turf/open/space/basic, -/area/space) -"mY" = ( +/area/golden_arrow/squad_two) +"mK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"mM" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"nb" = ( -/obj/structure/machinery/conveyor, -/obj/structure/pipes/standard/cap/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"nc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"nl" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Infirmary"; - req_one_access = null +"mQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/head/uppcap/ushanka/civi{ + pixel_y = 6 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"mS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"nm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"np" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"nq" = ( -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"ns" = ( -/obj/structure/sink{ +"mV" = ( +/turf/open/space/basic, +/area/space) +"ne" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"nv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"nD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_one_access = list() + name = "\improper Maintenance Tunnels" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"nE" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Maintenance Tunnels" +"ng" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"nu" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"nw" = ( +/obj/structure/largecrate/random/barrel, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) +/area/golden_arrow/prep_hallway) +"nx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"nC" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "nF" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light{ @@ -1042,80 +1115,123 @@ }, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"nH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/reagent_container/pill/cyanide{ - icon_state = "pill5"; - name = "cyanide pill"; - pixel_x = -8; - pixel_y = 1 +"nJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"nM" = ( +/obj/effect/landmark/start/marine/medic/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"nU" = ( +/obj/structure/platform/strata/metal{ + dir = 1; + pixel_y = 10 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"nI" = ( -/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"nO" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"nS" = ( -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 +"nW" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector/hacked, +/obj/item/ammo_magazine/sentry/upp, +/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"oc" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"od" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/squad_two) +"ok" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A rather tasteless but impressive tiger rug. Must've costed a fortune to get this exported to the rim. Actually, this rug was 'collectivized' by internal police troopers during anti-corruption raids on colonies and later gifted to Leytenant."; + icon_state = "Gray"; + pixel_x = -14; + pixel_y = -14 }, -/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"nY" = ( +/area/golden_arrow/platoon_commander_rooms) +"on" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/sniper/svd/pve, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"oo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - name = "\improper Engineering"; + name = "\improper Requisitions"; req_one_access = null }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/supply) +"os" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/platoon_commander_rooms) +"ow" = ( +/obj/structure/machinery/autolathe, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"ob" = ( +"oB" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/hangar) +"oD" = ( +/obj/structure/surface/rack, +/obj/item/weapon/straight_razor{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/clothing/accessory/patch/upp, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"oK" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine{ - name = "\improper UPP Military Fax Machine"; - network = "UPP Encrypted Network"; - target_department = "UPP High Command" +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + pixel_y = 12 + }, +/obj/item/toy/deck{ + pixel_x = 9; + pixel_y = -6 + }, +/obj/item/tool/wrench{ + pixel_y = 25 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"od" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/squad_two) -"oi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/dorms) -"or" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 +"oL" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -9 }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"os" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/platoon_commander_rooms) -"oB" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"oH" = ( +"oO" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/weapon/gun/flamer/underextinguisher, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"oU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) +"oW" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) "oX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/shower{ @@ -1124,250 +1240,237 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"oZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"pb" = ( +/obj/item/clothing/suit/storage/snow_suit/soviet, +/obj/item/clothing/suit/gimmick/jason, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_off = "cabinetdetective_broken"; + icon_opened = "cabinetdetective_open"; + icon_state = "cabinetdetective_locked"; + job = "Platoon Commander" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Private Briefing Room"; - req_one_access = null; - req_one_access_txt = "240;244;241" +/obj/item/clothing/under/marine/veteran/UPP/boiler, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"pc" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap/ushanka/civi{ + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"pg" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) "ph" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/canteen) -"pi" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"pk" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"pt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"pw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/gun_rack/type71/unloaded, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"pH" = ( +"pj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 10 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"po" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"pu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/obj/structure/reagent_dispensers/fueltank/gas/methane, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"pQ" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/space) -"pR" = ( +/area/golden_arrow/hangar) +"pF" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/obj/item/clothing/head/uppcap/beret{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/accessory/armband{ - pixel_x = 6 +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = -8; + pixel_y = -1 }, -/obj/item/tool/screwdriver{ - pixel_x = -9; - pixel_y = 8 +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = 2 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"pS" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"pX" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 +"pG" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"pI" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"qa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"pK" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + opacity = 0; + pixel_x = 17 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"pP" = ( +/obj/structure/ladder{ + height = 2; + id = "eng1" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"qc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp{ - pixel_x = 11; - pixel_y = 12 +"pQ" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/space) +"pT" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/prop/magazine/book/theartofwar, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"qf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"qv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"qm" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "240;241" +/area/golden_arrow/hangar) +"qE" = ( +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"qn" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"qF" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/strata/floor3/east, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"qK" = ( +"qQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"qO" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"qP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/megaphone, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"qU" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") - }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"qZ" = ( -/obj/structure/machinery/power/apc/almayer/west, +"qS" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"rl" = ( +/area/golden_arrow/canteen) +"rt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"rp" = ( +/area/golden_arrow/squad_one) +"rw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/obj/structure/machinery/cryopod, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"rq" = ( -/obj/structure/machinery/floodlight/landing/floor, +"rz" = ( +/obj/structure/machinery/cryopod, /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"ru" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/area/golden_arrow/cryo_cells) +"rD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Sergeants Room"; + req_one_access = null; + req_one_access_txt = "240;244" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"rv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/type71, -/obj/structure/largecrate/supply/ammo/type71{ - pixel_x = 3; - pixel_y = 8 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"rG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"rE" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"rI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"rL" = ( +/area/golden_arrow/engineering) +"rJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Canteen"; + req_one_access = null + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"rM" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"rO" = ( +/obj/structure/prop{ + desc = "A sturdy metal ladder that leads to lower deck of Chapaev which houses CIC and Brig. The hatch is closed, for now."; + icon_state = "ladder11"; + name = "ladder" }, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"rQ" = ( -/obj/structure/machinery/computer/overwatch/almayer{ - density = 1; - faction = "UPP" - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 7; - pixel_y = 17 +"rT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"rX" = ( +/obj/structure/closet/secure_closet{ + name = "squad sergeant locker"; + req_access_txt = "244;237" }, +/obj/item/clothing/accessory/armband, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/weapon/gun/rifle/type71/flamer, /turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"rY" = ( +/obj/effect/landmark/start/bridge/upp, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_commander_rooms) -"rV" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Corpsman" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/device/radio/headset/distress/UPP, -/obj/item/clothing/under/marine/veteran/UPP/medic, -/turf/open/floor/strata/cyan1/east, +"sc" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"so" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap"; - layer = 2.5 - }, -/obj/structure/platform/strata/metal{ - dir = 4 +"sd" = ( +/obj/structure/largecrate{ + pixel_x = -7 }, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"sl" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "241" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) @@ -1378,279 +1481,196 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"su" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/canteen) -"sy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -6; - pixel_y = 13 +"sB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/flask/canteen, -/obj/item/reagent_container/food/drinks/flask/canteen{ - pixel_x = -6 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"sO" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"sz" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/golden_arrow/engineering) +"sR" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"sT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "chapaev_engi" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"te" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"tf" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"tl" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/supply) -"sJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"sM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"tr" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"tL" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"tQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + id = "Delta_1"; + name = "\improper Bathroom" }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"sX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"tS" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_y = -4 +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = -6; + pixel_y = 11 }, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 13 +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = 2; + pixel_y = 11 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"tb" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"tj" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - opacity = 0; - pixel_x = 17 +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = -3; + pixel_y = 24 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"tk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") +/area/golden_arrow/squad_two) +"tZ" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/platoon_commander_rooms) +"us" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Maintenance Access"; + req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"tn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/armband/med, -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"tq" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "USCM Food Vendor, containing standard military Prepared Meals. It was gifted to Chapaev by Marines of 1st Platoon, Sun Riders as a sign of good will. They did not complain receiving a crate of vodka in return." - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"ts" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"tx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"tF" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"tG" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"tH" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"tP" = ( -/obj/structure/largecrate/random/barrel/blue{ - pixel_x = -9 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"uu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + faction = "UPP"; + icon_state = "shuttle"; + layer = 2.97; + minimap_type = 8; + name = "Tactical Map Display"; + pixel_x = 7 }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -11; - pixel_y = 20 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + network = list("Chapaev","Vehicle"); + pixel_x = -12 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"tR" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/structure/phone_base/no_dnd{ + name = "Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Overwatch"; + pixel_y = 30 }, -/obj/structure/reagent_dispensers/fueltank/gas/methane, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"tT" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"tV" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"tX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"tY" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"tZ" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_commander_rooms) -"ua" = ( -/obj/structure/closet/secure_closet{ - name = "machinegunner locker"; - req_access_txt = "243;237" - }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/storage/belt/gun/smartgunner/upp, -/obj/item/storage/belt/marine/smartgunner/upp, -/obj/item/clothing/suit/storage/marine/smartgunner/upp, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"uf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"ug" = ( +"ux" = ( +/obj/structure/machinery/power/apc/almayer/south, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"un" = ( -/obj/structure/bed/chair/office/dark, +"uC" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "240;241" + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor2, /area/golden_arrow/platoon_commander_rooms) -"uq" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +"uF" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"uN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"ur" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"us" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/area/golden_arrow/hangar) +"uO" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 1; - name = "\improper Maintenance Access"; - req_one_access = null + name = "ship-grade camera"; + network = list("Chapaev") }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"uS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"uA" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"uW" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"uX" = ( +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -5; + pixel_y = 23 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"uE" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = -8; + pixel_y = -1 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"uQ" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"uV" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) "vb" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/engineering) -"vf" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"vh" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, +"vm" = ( +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"vk" = ( +"vD" = ( /obj/structure/machinery/light, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"vo" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"vI" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Other Sections" }, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"vq" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) +/area/golden_arrow/briefing) "vL" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -1668,46 +1688,81 @@ "vN" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/supply) -"vQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"vS" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") - }, +"wd" = ( +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/prep_hallway) -"vW" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"wc" = ( -/obj/item/stack/sheet/metal{ - amount = 50 +"we" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Squad One Armoury"; + req_one_access = null; + req_one_access_txt = "231;240;237" }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/closet/crate/construction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"wq" = ( -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"ww" = ( -/turf/closed/wall/strata_outpost/reinforced, +/turf/open/floor/strata/floor2, /area/golden_arrow/squad_one) -"wx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"wf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/armband/med, +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"wi" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Platoon Medic Office"; + req_one_access = null; + req_one_access_txt = "231" + }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/medical) +"wj" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + desc = "A vendor with a large snowflake on it. Provided by Ministry of Fashion."; + name = "\improper UPP Synthetic Conformity Unit" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"wk" = ( +/obj/structure/closet/secure_closet{ + name = "platoon sergeant locker"; + req_one_access = list(240) + }, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"wp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"wq" = ( +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"ws" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"ww" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/squad_one) "wy" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -1717,139 +1772,130 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"wA" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"wB" = ( -/obj/structure/machinery/light{ - dir = 8 +"wE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"wH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Smartgunner" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"wF" = ( +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/cryo_cells) -"wM" = ( -/obj/item/ammo_box/rounds/pkp{ - pixel_y = 9 +"wG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/item/ammo_box/magazine/type71/empty, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"wO" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"wQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"wL" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"wN" = ( /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) "wV" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/synthcloset) +"wW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"xd" = ( +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 + }, +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) "xe" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/late_join/alpha, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"xh" = ( -/obj/structure/platform/strata/metal{ - dir = 1; - pixel_y = 10 +"xl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"xi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"xv" = ( -/obj/structure/largecrate{ - fill_from_loc = 0 +"xE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/obj/item/storage/backpack/marine/ammo_rack{ - desc = "This ammo rack has been handcrafted by one of the ship's sappers. Union's ingenuity at it's finest."; - name = "\improper makeshift ammo rack"; - pixel_y = 12 +/obj/item/prop/tableflag/upp{ + pixel_x = 6; + pixel_y = 15 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"xz" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/area/golden_arrow/briefing) +"xF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp{ + pixel_x = 11; + pixel_y = 12 + }, +/obj/item/prop/magazine/book/theartofwar, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"xA" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/area/golden_arrow/platoon_commander_rooms) +"xH" = ( +/obj/structure/ladder{ + height = 1; + id = "eng1" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"xD" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +"xI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"xK" = ( -/obj/structure/foamed_metal, -/obj/structure/foamed_metal, -/turf/open/floor/strata/floor3/east, -/area/space) -"xU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Sergeants Room"; - req_one_access = null; - req_one_access_txt = "240;244" +"xM" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"xN" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap/civi{ + pixel_x = 8; + pixel_y = 8 }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"xT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"xY" = ( +/obj/structure/bed/chair/comfy/teal{ dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"xX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) "xZ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, @@ -1865,12 +1911,37 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"ye" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"yd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "yj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -1878,98 +1949,140 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"yq" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/machinery/line_nexter{ - dir = 2; - icon_state = "turnstile_strata"; - layer = 4.1 +"yp" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + opacity = 0; + pixel_x = 17 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/canteen) -"yu" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector/hacked, -/obj/item/ammo_magazine/sentry/upp, -/obj/item/defenses/handheld/sentry/upp, +/obj/item/trash/cigbutt/bcigbutt, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"yz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - desc = "The MinZdrav Blood Pack Dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!"; - name = "\improper MinZdrav Blood Dispenser"; - req_access = list(); - vendor_theme = 3 +/area/golden_arrow/hangar) +"ys" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"yx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Private Briefing Room"; + req_one_access = null; + req_one_access_txt = "240;244;241" }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"yG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "yH" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/hangar) -"yS" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - layer = 3.1; - pixel_x = 11; - pixel_y = 16 +"yK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "chapaevcargo" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"yY" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/weapon/gun/flamer/underextinguisher, -/obj/item/ammo_magazine/flamer_tank, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"zb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, +"yO" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"zq" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 +/area/golden_arrow/engineering) +"yQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"zA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"yU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"zR" = ( -/obj/structure/machinery/cryopod, +/area/golden_arrow/supply) +"yZ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"za" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"zh" = ( +/obj/structure/machinery/conveyor{ + dir = 6 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"zT" = ( +/area/golden_arrow/supply) +"zk" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"zU" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/platoon_commander_rooms) +"zm" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/squad_two) +"zn" = ( +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) +/area/golden_arrow/synthcloset) +"zv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Cleaning Supplies"; + req_one_access = null + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"zL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"zQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"zS" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) "zX" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/cryo_cells) +"zY" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 + }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"zZ" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "Ac" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/prop/invuln/overhead_pipe{ @@ -1980,31 +2093,31 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Ag" = ( +"Ai" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp, -/obj/item/reagent_container/food/snacks/upp{ +/obj/item/ammo_magazine/minigun{ + desc = "A huge ammo drum for a huge gun. Your platoon got issued with magazines first which happened several months ago. When will the miniguns come, you wonder?"; + name = "GSh-7.62 rotating ammo drum (7.62x51mm)"; pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/clothing/head/uppcap/civi{ - pixel_x = 8; pixel_y = 8 }, +/obj/item/reagent_container/food/drinks/dry_ramen, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Aj" = ( +/area/golden_arrow/squad_one) +"Ak" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Am" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) "Ao" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -2012,29 +2125,42 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/supply) -"Ar" = ( -/obj/structure/bed{ - can_buckle = 0 +"Av" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Aw" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/largecrate/random/barrel/red{ + layer = 4; + pixel_y = 22 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"AL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/bedsheet/brown, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"Ax" = ( /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"AC" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/golden_arrow/canteen) +"AN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 5 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"AE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"AQ" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) +/area/golden_arrow/briefing) "AS" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/shower{ @@ -2042,52 +2168,22 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"AU" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/storage/pouch/shotgun/large, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/weapon/gun/shotgun/type23/pve, +"Ba" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, /turf/open/floor/strata/floor2, /area/golden_arrow/squad_one) -"AW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, +"Bh" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Bj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"Bw" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Platoon Sergeant's Bunk"; - req_one_access = null; - req_one_access_txt = "240" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"Bx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) +"Bm" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) "BD" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2095,161 +2191,73 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"BK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"BE" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"BM" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 13; - pixel_y = 10 +/obj/item/bedsheet/brown{ + layer = 3.4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"Ce" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 17" +/area/golden_arrow/platoon_sergeant) +"BF" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Cf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/large_shrapnel/at_rocket_dud{ - drop_sensitivity = 0; - impact_sensitivity = 1; - pixel_x = -6; - pixel_y = 13 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) }, -/obj/item/attachable/bayonet/upp{ - pixel_x = -9; - pixel_y = -1 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"BH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 13 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"BP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Cg" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"Ck" = ( -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Cq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, +/area/golden_arrow/briefing) +"BW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Squad Sergeant" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 + icon_state = "W" }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"Cs" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"Cx" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"Cy" = ( -/obj/structure/largecrate{ - pixel_x = -7 +/area/golden_arrow/engineering) +"Ci" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Cl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"CC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 5; - pixel_y = 18 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 1; - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 10; - pixel_y = 6 +/area/golden_arrow/engineering) +"CA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"CF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bearmeat, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"CI" = ( -/obj/structure/machinery/light{ +"CE" = ( +/obj/structure/machinery/cm_vending/gear/medic_chemical/upp, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"CG" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 + name = "ship-grade camera" }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "CJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/shower{ @@ -2263,107 +2271,125 @@ "CM" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/dorms) -"CO" = ( -/obj/structure/machinery/disposal, +"CN" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"CU" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/golden_arrow/platoon_sergeant) +"CP" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters"; + req_access = list(241) }, -/obj/structure/gun_rack/type71/unloaded, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"CW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/head/uppcap/ushanka/civi{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"CZ" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/platoon_commander_rooms) -"Dh" = ( -/obj/structure/foamed_metal, -/turf/open/floor/strata/floor3/east, -/area/space) -"Dq" = ( -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/head/bearpelt, +"CR" = ( +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"CY" = ( +/obj/structure/machinery/light, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Dw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/golden_arrow/briefing) +"Db" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera"; + network = list("Chapaev") }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A rather tasteless but impressive tiger rug. Must've costed a fortune to get this exported to the rim. Actually, this rug was 'collectivized' by internal police troopers during anti-corruption raids on colonies and later gifted to Leytenant."; - icon_state = "Gray"; - pixel_x = -14; - pixel_y = -14 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Dd" = ( +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + name = "\improper UnTech Synthetic Equipment Rack"; + pixel_y = 32 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"DC" = ( +/area/golden_arrow/synthcloset) +"Dn" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Du" = ( +/obj/vehicle/powerloader/jd{ + name = "\improper CosmosStal 12 Bogatyr Power Loader" + }, +/obj/structure/machinery/door_control{ + id = "chapaevcargo"; + pixel_x = 32 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"DF" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; +/obj/item/ammo_magazine/handful/shotgun/heavy/flechette{ + current_rounds = 1; + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/ammo_magazine/handful/shotgun/heavy{ + current_rounds = 1; pixel_y = 5 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -2; - pixel_y = 1 +/obj/item/ammo_magazine/handful/shotgun/heavy/beanbag{ + current_rounds = 1; + pixel_x = -8; + pixel_y = 5 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"DE" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"DJ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/bed/chair, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"DG" = ( +"DR" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"DH" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) -"DK" = ( -/obj/structure/bed/chair/comfy, +/area/golden_arrow/platoon_commander_rooms) +"DU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"DX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/start/marine/tl/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/start/marine/tl, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"Ef" = ( -/obj/structure/pipes/vents/pump{ +/area/golden_arrow/supply) +"DY" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/squad_one) +/area/golden_arrow/hangar) +"DZ" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Ek" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Em" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"Eq" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) "Ez" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/late_join/alpha, @@ -2379,50 +2405,41 @@ }, /turf/open/floor/plating, /area/golden_arrow/canteen) -"ED" = ( -/obj/effect/decal/cleanable/blood/oil, +"EN" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_x = 2; + pixel_y = 18 + }, +/obj/item/book/codebook/upp, +/obj/item/prop/magazine/book{ + desc = "It's not a mandatory reading material in UPP, but it's still encouraged to memorize certain quotes from this book."; + name = "Communist Manifesto"; + pixel_y = 35 + }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"EM" = ( +/area/golden_arrow/platoon_sergeant) +"ER" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - faction = "UPP" - }, +/obj/item/reagent_container/food/drinks/coffee, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"EO" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/weapon/gun/flamer/underextinguisher, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"EP" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"EQ" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"EW" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Fb" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, +/area/golden_arrow/canteen) +"EU" = ( /turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Fl" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"EZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) +"Fe" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) "Fm" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2430,66 +2447,45 @@ }, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"Fp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Ft" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"Fv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -9; - pixel_y = 2 +"Fq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/trash/semki, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"Fz" = ( -/obj/structure/closet/secure_closet{ - name = "squad sergeant locker"; - req_access_txt = "244;237" +"Fw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Canteen"; + req_one_access = null }, -/obj/item/clothing/accessory/armband, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/weapon/gun/rifle/type71/flamer, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"FB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"FK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"FO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Platoon Sergeant's Bunk"; + req_one_access = null; + req_one_access_txt = "240" }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join/upp, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"FC" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() +/area/golden_arrow/platoon_sergeant) +"FW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 1; + pixel_y = 6 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"FF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"FV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) +/area/golden_arrow/canteen) "FY" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -2498,106 +2494,81 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"FZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"Gj" = ( -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"Gl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"Gn" = ( -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - name = "\improper UnTech Synthetic Equipment Rack"; - pixel_y = 32 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"Gw" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, +"Gb" = ( +/obj/structure/machinery/conveyor, +/obj/structure/plasticflaps, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"GB" = ( -/obj/structure/closet/secure_closet{ - name = "platoon sergeant locker"; - req_one_access = list(240) +/area/golden_arrow/supply) +"Gf" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() }, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/weapon/gun/rifle/type71/flamer, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"GF" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"GS" = ( -/obj/structure/machinery/light{ - dir = 4 +"GD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"GG" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 4; + icon_state = "lattice-simple"; + pixel_x = 13; + pixel_y = 10 }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"GT" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector/hacked, -/obj/item/ammo_magazine/sentry/upp, -/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"GH" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, /turf/open/floor/strata/floor2, /area/golden_arrow/squad_two) -"GU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"He" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"Hf" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Hj" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Maintenance Tunnels" +"GK" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Hp" = ( /turf/open/floor/strata/floor2, /area/golden_arrow/squad_two) -"Hq" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 +"GM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/stack/cable_coil{ - pixel_x = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/tool/wirecutters{ +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Hh" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Hq" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/tool/wirecutters{ pixel_x = -8; pixel_y = 18 }, @@ -2612,37 +2583,27 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Ht" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"HA" = ( -/obj/structure/machinery/light/small, +"Hu" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata/floor2, /area/golden_arrow/briefing) -"HI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"HN" = ( +"Hw" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/prop/tableflag/upp{ - pixel_x = 6; - pixel_y = 15 +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"HT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"HV" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) "Id" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2650,66 +2611,106 @@ }, /turf/open/floor/plating, /area/golden_arrow/briefing) -"Ii" = ( -/obj/structure/janitorialcart, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -7; +"Ig" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"It" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"ID" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/type71, +/obj/structure/largecrate/supply/ammo/type71{ + pixel_x = 3; pixel_y = 8 }, /turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"IH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, /area/golden_arrow/briefing) -"IB" = ( +"IO" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - name = "\improper Other Sections" + name = "\improper Maintenance Tunnels" }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"IG" = ( -/obj/structure/ladder{ - height = 2; - id = "eng1" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) "IS" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/dorms) -"Jc" = ( -/obj/effect/landmark/start/bridge/upp, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"Je" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/tea{ - pixel_x = -8; - pixel_y = -1 +"IV" = ( +/obj/structure/toilet{ + dir = 4 }, -/obj/item/ashtray/bronze{ - pixel_x = 4; - pixel_y = 2 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Jf" = ( -/turf/open/floor/strata/floor3/east, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"IY" = ( +/obj/structure/largecrate{ + fill_from_loc = 0 + }, +/obj/structure/largecrate{ + fill_from_loc = 0; + layer = 3.1; + pixel_x = -1; + pixel_y = 38 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 2.9; + name = "Commando Huggs"; + pixel_y = 8; + throwforce = 15 + }, +/obj/item/clothing/head/cmcap{ + layer = 3.0; + pixel_x = -1; + pixel_y = 15 + }, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"Jh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Jq" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/golden_arrow/cryo_cells) +"Jk" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/almayer/dark_sterile, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"Jm" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"Js" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Platoon Medic Office"; + req_one_access = null; + req_one_access_txt = "231" + }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/medical) -"Jr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) "Jt" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2717,6 +2718,16 @@ }, /turf/open/floor/plating, /area/golden_arrow/squad_two) +"Ju" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access = null; + req_one_access_txt = "240" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) "JA" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/prop/invuln/overhead_pipe, @@ -2725,131 +2736,157 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"JB" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - opacity = 0; - pixel_x = 17 +"JD" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) "JE" = ( /obj/structure/pipes/standard/cap/hidden/supply{ dir = 4 }, /turf/open/space/basic, /area/space) -"JG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"JN" = ( -/obj/structure/machinery/conveyor{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"JP" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"JW" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Canteen"; - req_one_access = null +"JS" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -7; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"Ka" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"JX" = ( -/obj/structure/largecrate/random/barrel, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/supply) "Kc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Ki" = ( +"Kh" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"Ku" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Km" = ( +/obj/item/stool, /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, /turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Kq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/gun_rack/type71/unloaded, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"Ks" = ( +/obj/item/clothing/shoes/slippers_worn{ + pixel_y = 16 + }, +/turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"KB" = ( +"KG" = ( +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"KD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"KF" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"KH" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"KK" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"KN" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/area/golden_arrow/dorms) +"KN" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating, /area/golden_arrow/briefing) -"Lf" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +"KT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/landmark/start/marine/smartgunner/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"KU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"KV" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"KW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/dorms) +"Lb" = ( +/obj/structure/machinery/cryopod{ + dir = 1 + }, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"Li" = ( /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Ll" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/golden_arrow/cryo_cells) +"Lc" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"Ln" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"Lh" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_y = 12 +/obj/structure/machinery/faxmachine{ + name = "\improper UPP Military Fax Machine"; + network = "UPP Encrypted Network"; + target_department = "UPP High Command" }, -/obj/item/toy/deck{ - pixel_x = 9; - pixel_y = -6 +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"Ls" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 }, -/obj/item/tool/wrench{ - pixel_y = 25 +/obj/item/clothing/head/uppcap/beret{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) +/obj/item/clothing/accessory/armband{ + pixel_x = 6 + }, +/obj/item/tool/screwdriver{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) "Lt" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -2863,32 +2900,78 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Lw" = ( -/obj/structure/closet/secure_closet{ - name = "machinegunner locker"; - req_access_txt = "243;238" +"Lu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Lz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + desc = "The MinZdrav Blood Pack Dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!"; + name = "\improper MinZdrav Blood Dispenser"; + req_access = list(); + vendor_theme = 3 }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/storage/belt/gun/smartgunner/upp, -/obj/item/storage/belt/marine/smartgunner/upp, -/obj/item/clothing/suit/storage/marine/smartgunner/upp, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"LB" = ( +/obj/effect/landmark/start/marine/leader/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"LF" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"LI" = ( -/obj/structure/closet/emcloset, +/area/golden_arrow/hangar) +"LG" = ( +/obj/structure/machinery/light, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"LJ" = ( +/area/golden_arrow/synthcloset) +"LK" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"LR" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"LS" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"LZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/type71, +/obj/structure/largecrate/supply/ammo/type71{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Mb" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/briefing) +"Md" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"Me" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2899,40 +2982,33 @@ /obj/effect/landmark/late_join, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/cryo_cells) -"LL" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/sniper/svd/pve, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"LO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"Ml" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"Mr" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 2" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"MA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"ME" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"Ma" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"Mb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, /area/golden_arrow/briefing) -"Mm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"MG" = ( +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"Ms" = ( -/obj/structure/foamed_metal, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_commander_rooms) -"MC" = ( -/obj/structure/foamed_metal, -/obj/structure/foamed_metal, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_commander_rooms) +/area/golden_arrow/squad_two) "MH" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2940,318 +3016,366 @@ }, /turf/open/floor/plating, /area/golden_arrow/squad_one) +"MK" = ( +/obj/structure/closet/secure_closet{ + name = "machinegunner locker"; + req_access_txt = "243;237" + }, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) "ML" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/squad_two) -"MN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) "MO" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"MR" = ( -/obj/structure/machinery/light{ - dir = 4 +"Na" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 7; + pixel_y = 11 }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"MV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -7; + pixel_y = 18 }, -/obj/structure/machinery/cryopod{ - dir = 1 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 5; + pixel_y = 18 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"MX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 1; + pixel_y = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 1; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 10; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Ne" = ( +/obj/structure/largecrate{ + fill_from_loc = 0 }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Smartgunner" +/obj/item/storage/backpack/marine/ammo_rack{ + desc = "This ammo rack has been handcrafted by one of the ship's sappers. Union's ingenuity at it's finest."; + name = "\improper makeshift ammo rack"; + pixel_y = 12 }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"MZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Nd" = ( -/obj/item/tool/soap, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, +/area/golden_arrow/supply) +"Nr" = ( +/obj/structure/machinery/conveyor, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"Nz" = ( +/area/golden_arrow/supply) +"Ns" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Nt" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) "NA" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"NE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, +"ND" = ( +/obj/structure/foamed_metal, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"NF" = ( -/obj/item/tool/mop{ - pixel_x = 17; - pixel_y = -2 - }, -/obj/item/paper{ - icon_state = "paper_words"; - info = "you fucktards should clean your boots because lieutenant kotov made me scrub the deck clean with a toothbrush when i fucked up (wasnt my fault too) and BOY was it dirty. fuck you all though. know my struggles."; - name = "scribbled note"; - pixel_y = 22 - }, +/area/golden_arrow/platoon_commander_rooms) +"NK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access/upp, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"NM" = ( /turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"NI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Canteen"; - req_one_access = null +/area/golden_arrow/dorms) +"NP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper/crumpled/bloody{ + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"NL" = ( -/obj/structure/closet, +/obj/item/attachable/bayonet/upp, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) +/area/golden_arrow/squad_one) "NQ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/medical) "NU" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/squad_two) -"Of" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/space) -"Og" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Squad One Armoury"; - req_one_access = null; - req_one_access_txt = "231;240;237" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"NY" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, /turf/open/floor/strata/floor2, /area/golden_arrow/squad_one) -"Oo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Platoon Medic Office"; - req_one_access = null; - req_one_access_txt = "231" +"NZ" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/conveyor{ + dir = 6 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) -"Os" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters"; - req_access = list(241) - }, +/area/golden_arrow/supply) +"Ob" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"Ov" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - name = "\improper UnTech Synthetic Auxiliary Gear Rack"; - pixel_y = 32 +/area/golden_arrow/canteen) +"Of" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/space) +"Oi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/item/stool, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"OB" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"OE" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Ok" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Om" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Op" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Oz" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/storage/pouch/shotgun/large, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/weapon/gun/shotgun/type23, /turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) +/area/golden_arrow/squad_one) "OJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/supply) -"OP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"OX" = ( -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"Ph" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Squad Two Armoury"; - req_one_access = null; - req_one_access_txt = "231;240;238" - }, +"OU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"Pl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"PA" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - name = "\improper Hangar Lockdown Blast Door" +/area/golden_arrow/briefing) +"Pd" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 }, -/turf/open/space/basic, -/area/golden_arrow/hangar) -"PE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"Pg" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"PJ" = ( -/turf/open/floor/strata/floor3/east, +/obj/structure/bed/chair, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"PL" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 +"Pj" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"PQ" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Po" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"PR" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/camera/autoname/golden_arrow{ +"Pu" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"Pv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + name = "\improper Bathroom" }, -/turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"Qd" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"PA" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/space/basic, +/area/golden_arrow/hangar) +"PC" = ( /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/dorms) -"Qj" = ( -/obj/structure/machinery/cryopod, +"PK" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"Qr" = ( +/area/golden_arrow/engineering) +"PN" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"PR" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"PU" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"PX" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Qc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Qi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"Qm" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 3; + pixel_y = 3 }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"Qv" = ( -/turf/open/floor/strata/floor2, +"Qs" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"Qx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +"Qu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"QF" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"QJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - id = "Delta_1"; - name = "\improper Bathroom" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"QK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper/crumpled/bloody{ - pixel_y = 6 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"QA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/item/attachable/bayonet/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/canteen) "QR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/canteen) -"QX" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - desc = "A vendor with a large snowflake on it. Provided by Ministry of Fashion."; - name = "\improper UPP Synthetic Conformity Unit" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) +"Rb" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "Re" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Rm" = ( +"Rg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Rs" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Rn" = ( +/obj/structure/machinery/cryopod{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Rp" = ( /obj/structure/toilet{ dir = 4 }, @@ -3264,113 +3388,71 @@ }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/dorms) -"Ru" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/pistol/np92, -/obj/item/ammo_magazine/pistol/np92{ - pixel_x = 4 - }, -/obj/item/weapon/gun/pistol/np92, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Rv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"Rz" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"RA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Platoon Medic Office"; - req_one_access = null; - req_one_access_txt = "231" - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) -"RI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/prop/magazine/book{ - name = "UPP Party Doctrine Booklet" - }, -/obj/item/prop/tableflag/upp{ - pixel_x = 6; - pixel_y = 1 - }, +"Rt" = ( +/obj/structure/foamed_metal, +/obj/structure/foamed_metal, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"RJ" = ( -/obj/item/clothing/suit/storage/snow_suit/soviet, -/obj/item/clothing/suit/gimmick/jason, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - icon_broken = "cabinetdetective_broken"; - icon_closed = "cabinetdetective"; - icon_locked = "cabinetdetective_locked"; - icon_off = "cabinetdetective_broken"; - icon_opened = "cabinetdetective_open"; - icon_state = "cabinetdetective_locked"; - job = "Platoon Commander" - }, -/obj/item/clothing/under/marine/veteran/UPP/boiler, -/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_commander_rooms) -"RN" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"RP" = ( +"Rx" = ( +/obj/structure/foamed_metal, +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/space) +"RC" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/squad_one) +"RD" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"RS" = ( /turf/open/floor/strata/floor2, /area/golden_arrow/platoon_commander_rooms) -"RU" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 4; - icon_state = "lattice-simple"; - pixel_x = 13; - pixel_y = 10 +"RT" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"RY" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -19; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"Sc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Sj" = ( -/obj/structure/machinery/door_control{ - id = "chapaev_engi"; - pixel_y = -23 - }, +"Sb" = ( +/obj/structure/machinery/cryopod, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) +/area/golden_arrow/platoon_commander_rooms) "Sp" = ( /obj/item/clothing/head/helmet/marine/veteran/bear{ anchored = 1 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_sergeant) -"Sv" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 4; - icon_state = "lattice-simple"; - pixel_x = 13; - pixel_y = 10 +"Su" = ( +/obj/structure/closet/secure_closet{ + name = "machinegunner locker"; + req_access_txt = "243;238" }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) "Sx" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -3378,301 +3460,339 @@ }, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"Sz" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"SB" = ( +"SN" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"SP" = ( +/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ + roundstart_template = /datum/map_template/shuttle/upp + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"SW" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"Tf" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/platoon_sergeant) +"Th" = ( +/obj/structure/largecrate/random/case/double, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; pixel_x = 13; pixel_y = 10 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"SF" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 8; - pixel_x = 15; - pixel_y = 2 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Tp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"SI" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/area/golden_arrow/platoon_sergeant) +"Tr" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/supply) +"Tu" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"Ty" = ( +/obj/item/prop/colony/used_flare, +/obj/item/prop/colony/used_flare{ + pixel_x = 9; + pixel_y = 10 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"SO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"TE" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"TK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Akademia Nauk Remote Control Console"; + shuttleId = "dropship_upp" + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"TN" = ( +/obj/item/newspaper{ + desc = "An issue of Kosmicheskaya Pravda, the newspaper circulating in UPP-controlled space."; + pixel_x = -15; + pixel_y = 34 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"TV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Ud" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/item/toy/plush/therapy/green{ + desc = "He seems lonely..."; + layer = 3.6; + name = "Polkovnik Obnimashkin"; + pixel_x = 1; + pixel_y = 26 + }, +/obj/item/clothing/head/uppcap/ushanka{ + layer = 3.6; + pixel_x = 1; + pixel_y = 30 }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"SP" = ( -/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ - roundstart_template = /datum/map_template/shuttle/upp +"Uh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"SQ" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"SU" = ( -/obj/structure/bookcase{ +"Uq" = ( +/obj/structure/machinery/cm_vending/gear/synth{ density = 0; - icon_state = "book-5"; - pixel_x = 2; - pixel_y = 18 + name = "\improper UnTech Synthetic Auxiliary Gear Rack"; + pixel_y = 32 }, -/obj/item/book/codebook/upp, -/obj/item/prop/magazine/book{ - desc = "It's not a mandatory reading material in UPP, but it's still encouraged to memorize certain quotes from this book."; - name = "Communist Manifesto"; - pixel_y = 35 +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"Uz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"UE" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"UH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/start/marine/tl/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/start/marine/tl, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"UI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"Tb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/golden_arrow/cryo_cells) +"UJ" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Tf" = ( -/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/platoon_commander_rooms) +"UP" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/bed/chair/office/light, +/turf/open/floor/plating, /area/golden_arrow/platoon_sergeant) -"Tk" = ( -/obj/structure/machinery/light{ +"UQ" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/weapon/gun/flamer/underextinguisher, +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"UT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 + }, +/obj/structure/platform/strata/metal{ dir = 4 }, -/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Tr" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/supply) -"Tw" = ( +/area/golden_arrow/briefing) +"Vc" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = -6; - pixel_y = 11 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -10; + pixel_y = -7 }, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = 2; - pixel_y = 11 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -1; + pixel_y = 2 }, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = -3; - pixel_y = 24 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -7; + pixel_y = -2 }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Vh" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"TB" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"TH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"TJ" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"TQ" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/hangar) +"Vi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Ug" = ( +/area/golden_arrow/platoon_commander_rooms) +"Vn" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"Vr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Vt" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"VI" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Ul" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/structure/machinery/line_nexter{ + dir = 2; + icon_state = "turnstile_strata"; + layer = 4.1 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/canteen) -"Un" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/west, +"VJ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + opacity = 0; + pixel_x = 17 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Wf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating, /area/golden_arrow/briefing) -"Up" = ( +"Wn" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Squad Two Armoury"; + req_one_access = null; + req_one_access_txt = "231;240;238" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Wo" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 1; - pixel_y = 6 + name = "UPP Party Doctrine Booklet" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Uu" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/conveyor{ - dir = 6 +/obj/item/prop/tableflag/upp{ + pixel_x = 6; + pixel_y = 1 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Uv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"Ux" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/golden_arrow/briefing) +"Wy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/turf/open/floor/strata/floor2, +/obj/item/reagent_container/pill/cyanide{ + icon_state = "pill5"; + name = "cyanide pill"; + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_commander_rooms) -"Uy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"WI" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/invuln/overhead_pipe, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"WZ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"Xc" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"UM" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Xo" = ( +/obj/item/trash/plate, /obj/item/trash/ceramic_plate{ - pixel_x = -6; + pixel_x = 6; pixel_y = 19 }, /obj/item/trash/ceramic_plate{ - pixel_x = -6; + pixel_x = 6; pixel_y = 21 }, /obj/item/trash/ceramic_plate{ - pixel_x = -5; + pixel_x = 5; pixel_y = 23 }, /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/tea{ - pixel_x = -8; - pixel_y = -1 - }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"UO" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"UP" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/bed/chair/office/light, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) -"UV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - name = "Akademia Nauk Remote Control Console"; - shuttleId = "dropship_upp" - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"UY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"UZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"Xr" = ( +/obj/structure/machinery/computer/overwatch/almayer{ + density = 1; + faction = "UPP" }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"Vq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Canteen"; - req_one_access = null +/obj/item/clothing/glasses/hud/health{ + pixel_x = 7; + pixel_y = 17 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"VE" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/storage/pouch/shotgun/large, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/weapon/gun/shotgun/type23/pve, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"VH" = ( -/obj/structure/platform/strata/metal{ - dir = 1; - pixel_y = 10 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"VL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Squad Sergeant" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"VZ" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"Wf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating, -/area/golden_arrow/briefing) -"Wk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"Wp" = ( +/area/golden_arrow/platoon_commander_rooms) +"Xy" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/beetsoup, /obj/item/reagent_container/food/drinks/tea{ @@ -3681,23 +3801,14 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"Wt" = ( -/obj/vehicle/powerloader/jd{ - name = "\improper CosmosStal 12 Bogatyr Power Loader" +"XH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Wv" = ( -/obj/item/stool, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"WI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/invuln/overhead_pipe, -/turf/open/floor/plating, -/area/golden_arrow/engineering) -"WP" = ( +"XW" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -3713,259 +3824,112 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Sergeant" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"WR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - faction = "UPP"; - icon_state = "shuttle"; - layer = 2.97; - minimap_type = 8; - name = "Tactical Map Display"; - pixel_x = 7 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - network = list("Chapaev","Vehicle"); - pixel_x = -12 - }, -/obj/structure/phone_base/no_dnd{ - name = "Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Overwatch"; - pixel_y = 30 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"WU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"WV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"WW" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/machinery/cm_vending/clothing/medic/upp, -/obj/item/clothing/head/uppcap{ - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) -"WY" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"WZ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) -"Xb" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Xe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/start/marine/tl/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"Xf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"Xh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"Xl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"Xp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -10; - pixel_y = -7 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -7; - pixel_y = -2 +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"Xq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/obj/structure/bed/chair/office/dark, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) -"Xt" = ( +/area/golden_arrow/cryo_cells) +"XZ" = ( /obj/structure/toilet{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 - }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"XL" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/golden_arrow/platoon_commander_rooms) +"Ye" = ( +/obj/structure/machinery/door_control{ + id = "chapaev_engi"; + pixel_y = -23 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/squad_two) -"XO" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Yg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Sergeant" }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Yj" = ( /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"XY" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ +"Yv" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") + layer = 3.3; + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"Yh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bathroom" +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"Yk" = ( -/obj/structure/closet/secure_closet{ - name = "squad sergeant locker"; - req_access_txt = "244;238" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/item/clothing/accessory/armband, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/weapon/gun/rifle/type71/flamer, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"Yo" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap/civi{ - pixel_x = 8; - pixel_y = 8 +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"Yq" = ( -/obj/structure/machinery/cryopod, +"Yw" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"YA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"YL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ +/area/golden_arrow/briefing) +"Yz" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"YG" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"YM" = ( -/obj/item/trash/plate, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 5; - pixel_y = 23 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"YW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"YZ" = ( +/obj/structure/gun_rack/type71/unloaded, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"YK" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"YN" = ( /obj/structure/largecrate{ pixel_x = -7 }, @@ -3975,74 +3939,110 @@ }, /turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Zb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"YP" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"YQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"YV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Canteen"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"YY" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Zg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Zm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"Zq" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + layer = 3.1; + pixel_x = 11; + pixel_y = 16 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Zp" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Zv" = ( -/obj/structure/barricade/handrail/strata{ +/area/golden_arrow/supply) +"Zs" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"Zu" = ( +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/head/bearpelt, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/canteen) -"ZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/golden_arrow/engineering) +"Zx" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"ZM" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/stack/sheet/glass{ + amount = 50 }, -/obj/item/tool/hand_labeler{ - pixel_x = 3; - pixel_y = 3 +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"ZN" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 5" +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 }, -/turf/open/floor/strata/floor3/east, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"ZT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access = null; - req_one_access_txt = "240" +"Zy" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Zz" = ( +/obj/structure/closet/secure_closet{ + name = "squad sergeant locker"; + req_access_txt = "244;238" }, +/obj/item/clothing/accessory/armband, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"ZF" = ( /turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"ZU" = ( +"ZK" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"ZL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) +"ZS" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) (1,1,1) = {" mV @@ -10359,8 +10359,8 @@ mV mV hE Tf -tb -GB +YP +wk hE hE hE @@ -10510,11 +10510,11 @@ hE hE Sp hE -SU -tG +EN +ZF WZ -tG -sX +ZF +iU hE mV mV @@ -10659,14 +10659,14 @@ mV mV hE hE -UZ -FV -ZT -FV +gy +jK +Ju +jK fc -lE +CN UP -JG +Am hE mV mV @@ -10810,15 +10810,15 @@ mV mV mV hE -Fv -tG -dF +cC +ZF +oD Tf -OB -WV -pR -ha -tV +kp +jE +Ls +Ig +Md hE mV mV @@ -10963,11 +10963,11 @@ ei ei ei ww -jX +BE Tf Tf Tf -Bw +FO Tf NU NU @@ -11111,21 +11111,21 @@ mV mV ei ei -eL -me -eL +HV +ax +HV ww ww Tf -vW -vW -Rm -vW +PN +PN +BH +PN NU NU -xz -Cg -xz +dP +GH +dP od od mV @@ -11262,23 +11262,23 @@ tZ tZ tZ ei -QK -dU -dU -dU -rv +NP +Vn +Vn +Vn +ID ww -vW -vW -PL -Rm -Zp +PN +PN +xY +BH +uO NU -Tw -Hp -Hp -Hp -bR +tS +sR +sR +sR +LZ IS IS IS @@ -11399,9 +11399,9 @@ oB oB oB oB -UO -Fb -He +Vh +hT +nC oB oB tZ @@ -11411,32 +11411,32 @@ tZ tZ tZ tZ -nH -Qj +Wy +Sb ww -jI -dU +Ai +Vn xZ -dU -EO +Vn +oO ww -MZ -WU -EM -Ru -eD +Fq +fT +bW +jP +lB NU -lP -Hp +DF +sR ML -Hp -yY +sR +UQ CM -ab -zT -bt -Nz -Yo +Ud +fk +Yv +fY +xN IS mV mV @@ -11543,52 +11543,52 @@ mV mV oB oB -KB -KB -Gl -KB -KB -KB +EU +EU +Po +EU +EU +EU yH -Wt -KB -Uv -KB -eM +hy +EU +hl +EU +LF yH -Ms -MC +ND +Rt os -CZ -mh +XZ +TN os -RJ -ic -Jc +pb +wG +rY ww -CU -dU -Ef -dU -AU +Kq +Vn +RC +Vn +Oz ww -QF -hq -hq -vf -vW +Bh +kZ +kZ +pT +PN NU -pw -Hp -XL -Hp -VE +YG +sR +zm +sR +ko CM -Cf -Qr -bt -oH -bt +ap +oU +Yv +NM +Yv IS mV mV @@ -11694,53 +11694,53 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +EU +EU +EU +EU +EU +EU +EU yH -YA -KB -KB -KB -vk +XH +EU +EU +EU +Rb yH -Ms -MC +ND +Rt os -Bx -uQ -Yh -TB -Dw -TB +DR +YY +Pv +pg +ok +pg ww -ua -dU +MK +Vn MH -dU -yu +Vn +nW ww -LL -vW -es -Rm -vW +on +PN +kQ +BH +PN NU -Lw -Hp +Su +sR Jt -Hp -GT +sR +jY CM -Ln -Qr -oH -Ku -dS +oK +oU +NM +KW +tf IS IS IS @@ -11846,57 +11846,57 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +EU +EU +EU +EU +EU +EU +EU yH -tR -KB -KB -KB -KB +pu +EU +EU +EU +EU yH -Ms -MC +ND +Rt os -tT -Bj +Pj +mw os -uA -zU -Ar +hc +UJ +za ww -Fz -mT -Mm -vo -eo +rX +zS +rt +Ba +NY ww -Hf -vW -zb -vQ -sy +lv +PN +Tp +wE +bT NU -Yk -fE -bc -hV -WY +Zz +GK +kL +MG +mI CM -Ag -ZM -bt -pH -bt +gr +Qm +Yv +jt +Yv CM -Xt +IV CM -Rs +Rp IS mV mV @@ -11998,57 +11998,57 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +EU +EU +EU +EU +EU +EU +EU yH -Wt -KB -KB -KB -eM +hy +EU +EU +EU +LF yH -Ms -MC +ND +Rt os os os os -Os +CP os os ww ww ww -Og +we ww ww ww Tf Tf -xU +rD Tf Tf NU NU NU -Ph +Wn NU NU CM CM -TQ -bt -pH -bt +MA +Yv +jt +Yv CM -fJ +KU CM -fJ +KU IS mV mV @@ -12159,48 +12159,48 @@ yH yH yH yH -an -an -an +Xc +Xc +Xc yH yH yH -Ms +ND os -UV -OX -iv -Ux -OE +TK +RS +nx +Vi +zk os -Aj -mt +wp +wW Fm Sx MO -Ma -Ma -Ma +uS +uS +uS MO NA MO -Ma -Ma -Wk +uS +uS +Jk nF Sx MO -dx -LO -jr -OP -OP -SO -OP -QJ -oi -tH -Qd +SN +Qi +eV +Av +Av +Oi +Av +tQ +Em +Lc +PC IS mV mV @@ -12297,62 +12297,62 @@ mV mV oB oB -iz -Jf -Jf -Jf -Jf -iz -gX -tx -cW -cW -cW -rq -cW -cW -cW -cW -cW -np -zA +oc +Jm +Jm +Jm +Jm +oc +Ty +hO +qQ +qQ +qQ +cX +qQ +qQ +qQ +qQ +qQ +Ml +lm yH -Ms +ND os -WR -un -qc -RP -rl -qm -Ma -Ma -Ki -vS -bK -EP -bK -bK -sJ -bJ -bK -bK -bK -bK -Sv -bK -bK -bK -kl +uu +Pu +xF +Zs +hm +uC +uS +uS +Qu +Eq +oW +wd +oW +oW +YQ +et +oW +oW +oW +oW +GG +oW +oW +oW +vD CM -oH -bt -kj -bt +NM +Yv +Ks +Yv CM -ns -ns -ns +JD +JD +JD IS mV JE @@ -12448,7 +12448,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -12467,18 +12467,18 @@ wq wq wq wq -MN +mS yH -Ms +ND os -rQ -OX -ob -KK -OX +Xr +RS +Lh +lt +RS os -FF -Rv +gG +mK cT cT cT @@ -12486,28 +12486,28 @@ cT cT cT cT -JW +rJ cT cT -Xh -Xh -BM -JX -mB -mB -CO +Hh +Hh +Th +nw +jH +jH +Om CM -NL -bt -EW -my +xM +Yv +KG +pc iO iO iO iO zX zX -nE +IO jG mV mV @@ -12600,7 +12600,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -12619,12 +12619,12 @@ wq wq wq wq -PQ +hS fh fh fh fh -gq +sl fh fh fh @@ -12632,14 +12632,14 @@ fh fh cT cT -aE -wB -DK -Up -UM -nO -Tb -af +qS +AL +dr +FW +uX +Dn +Ob +Fe cT iO iO @@ -12654,12 +12654,12 @@ iO iO iO iO -KF -zR -KF +RD +aK +RD iO iO -Fl +gI jG mV mV @@ -12752,7 +12752,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -12771,45 +12771,45 @@ wq wq wq wq -MN +mS fh -PJ -PJ -so -PJ -xD -xD -cv -PJ -gh +Yj +Yj +UT +Yj +eQ +eQ +Qs +Yj +uW cT -tq -Zv -af -DK -Wp -Je -nO +eU +QA +Fe +dr +Xy +pF +Dn EA -Ul +Db cT -BK -BK -Cq -BK -WP +ng +ng +XW +ng +Yg iO -pk +zZ AS AS AS -Nd +jA iO -Yq -jS -hx -jS -KF +rz +in +LB +in +RD iO JA jG @@ -12904,7 +12904,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -12923,50 +12923,50 @@ wq wq wq wq -AE -NE +qv +hY Mb -PJ -qP -VH -xD -xD -xD -PJ -PJ +Yj +fb +gv +eQ +eQ +eQ +Yj +Yj cT -tq -pS -af -af +eU +fw +Fe +Fe ip -ej -af +PU +Fe EA -af -NI -Wv -Wv -rE -Wv -Wv -iB -Cs +Fe +Fw +ch +ch +lC +ch +ch +kz +dh CJ CJ CJ -Cs -uf -DX -FB -MV -rp -iw +dh +lM +UH +dG +lR +fW +Me iO -Ug +rI jG jG -Hj +ne jG jG jG @@ -12977,9 +12977,9 @@ jG jG jG jG -wc -ea -dB +xd +Zx +co jG jG jG @@ -13056,7 +13056,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -13075,68 +13075,68 @@ wq wq wq wq -tx -EQ +hO +Bm Id -PJ -nI -xh +Yj +It +nU fq bN bN -Xl -Gw +Vr +cG cT -tq -pS -af +eU +fw +Fe QR -su +jz ph -qK -Fp -jg +im +lX +Vt cT ga cR -eB +sB cR PR iO -AC +pG iO iO iO -ce -Zb +Zg +Ok xe Ez -rE +lC sp cR us Re -Pl +TV Ac -iD +LS yj -IG +pP jG mV mV jG -xA -qF +LR +ow vb -gx -ug -ug -pi +tL +Ns +Ns +ux vb -ZN -ae -kr -ae +mn +te +HT +te jG mV mV @@ -13208,7 +13208,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -13227,47 +13227,47 @@ wq wq wq wq -KD -PE +xT +Rg KN -PJ -HN -VH -bg -xD -xD -PJ -Ll +Yj +xE +gv +RY +eQ +eQ +Yj +OU cT -tq -pS -af -af +eU +fw +Fe +Fe lo -KH -af +at +Fe EA -ZH -Vq -Ft -Rz -kW -Wv -iW -iB -mj +pj +YV +Tu +wF +Km +ch +kY +kz +Jh oX oX oX -Xf -ru -Xe -kw -iK -kw -LJ +cx +eq +kE +UI +rw +UI +KT iO -Ug +rI vb vb Kc @@ -13277,15 +13277,15 @@ jG mV mV jG -Zm -nm +BW +fd vb -Jr -GU -iZ -ug +FK +yO +Hw +Ns vb -wO +wN FY Lt wy @@ -13360,7 +13360,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -13379,68 +13379,68 @@ wq wq wq wq -MN +mS fh -tk -Xl -lu -dA -cU -xD -vh -PJ -Ll +fL +Vr +be +xl +lk +eQ +gB +Yj +OU cT -tq -yq -af -DK -uE -CF -nO +eU +VI +Fe +dr +GD +hA +Dn EA -af +Fe cT -BK -BK -wH -VL -MX +ng +ng +yd +hb +GM iO -eH +pI CJ CJ CJ -Cs +dh iO -az -jS -dI -jS -az +Rn +in +nM +in +Rn iO BD vb -Dq -wO +Zu +wN jG mV mV mV mV jG -ai +xH Kc -nY -ug +jZ +Ns Kc -nS -ug -aF -wO -wO -wO -uV +qE +Ns +sT +wN +wN +wN +Yz jG mV mV @@ -13512,7 +13512,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -13531,27 +13531,27 @@ wq wq wq wq -MN +mS fh fh fh fh -oZ +yx fh fh fh -ts -YW +Ci +iG cT cT -tY -mY -DK -AW -YM -nO -Tb -af +hv +mM +dr +ER +Xo +Dn +Ob +Fe cT iO iO @@ -13566,12 +13566,12 @@ iO iO iO iO -az -dM -az +Rn +Lb +Rn iO iO -Ug +rI vb vb WI @@ -13581,15 +13581,15 @@ mV mV mV jG -qa -wQ +Ak +EZ vb -Jr -ug -CW -Sj +FK +Ns +mQ +Ye vb -wO +wN fA dT vL @@ -13664,7 +13664,7 @@ mV mV mV PA -Jf +Jm wq wq wq @@ -13683,18 +13683,18 @@ wq wq wq wq -MN +mS yH -Dh +ka fh -PJ -Ll -PJ -PJ +Yj +OU +Yj +Yj fh -ts -rL -ts +Ci +ME +Ci cT cT cT @@ -13702,49 +13702,49 @@ cT cT cT cT -JW +rJ cT cT -lN -DE -CC -jp -Xp -Ht -Un +vm +Pg +Na +bx +Vc +Nt +rT vN -vq -bi -qZ -LI +DZ +dJ +rM +Qc iO zX zX zX zX zX -nE +IO jG vb -wO +wN Kc jG mV mV mV jG -fQ -nD +Gf +Cl vb -FC -ug -ug -ug +sO +Ns +Ns +Ns vb -aS -ae -VZ -ae +Mr +te +CG +te jG mV mV @@ -13817,69 +13817,69 @@ mV mV oB oB -GS -Jf -ED -Jf -Jf -qU -Jf -tx -cW -cW +Uh +Jm +bk +Jm +Jm +fx +Jm +hO +qQ +qQ Hq -np -cW -cW -cW -cW -cW -np -xX +Ml +qQ +qQ +qQ +qQ +qQ +Ml +uN yH -Dh +ka fh -XO -sM -PJ -PJ +Yw +gM +Yj +Yj fh -UY -mu -ts -CI -ts -ts -RU -ts -ts -CI -ye -ts -ts -ts -ts -ts -cQ -ts -HI -FZ -dn -ur -ur +ho +nJ +Ci +gO +Ci +Ci +hz +Ci +Ci +gO +CA +Ci +Ci +Ci +Ci +Ci +DJ +Ci +aR +de +oo +DU +DU Ao -Cx -qf -eP -Xb -Xb -Xb -Xb -nb -JN +PX +zQ +Gb +Nr +Nr +Nr +Nr +jw +zh jG jG -Hj +ne jG mV mV @@ -13889,9 +13889,9 @@ jG jG jG jG -GF -Lf -pt +jy +fU +PK jG jG jG @@ -13983,52 +13983,52 @@ yH yH yH yH -Qx -Qx -Qx +DY +DY +DY yH yH yH -Dh +ka fh -hK -hK -hK -iF +AQ +AQ +AQ +CY fh -PJ -nc +Yj +bP bN bN cL -FZ -SB -FZ -FZ +de +if +de +de bN Wf bN -FZ -XY +de +wL bN bN bN -FZ -Uy -sM +de +xI +gM vN -RN +tl OJ -sz +dq OJ -Li +SW Tr vN vN vN vN vN -uq +ws Tr mV mV @@ -14126,61 +14126,61 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +EU +EU +EU +EU +EU +EU +EU yH -jR -KB -KB -KB -KB +ec +EU +EU +EU +EU yH -Dh -xK +ka +Rx fh -dH -nI -RI -PJ +yQ +It +Wo +Yj fh -kn +rO wV wV -pX +BF wV wV CK CK CK CK -nl +jb CK CK CK CK -RA +wi CK CK -gU +zv fh vN -ku -Cx +Du +PX OJ -Cx -qf -eP -Xb -Xb -Xb -Xb -Xb -Uu +PX +zQ +Gb +Nr +Nr +Nr +Nr +Nr +NZ Tr mV mV @@ -14278,53 +14278,53 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +EU +EU +EU +EU +EU +EU +EU yH -mN -KB -ag -KB -KB +IY +EU +jm +EU +EU yH -Dh -xK +ka +Rx fh -PJ -gm -PJ -PJ +Yj +BP +Yj +Yj fh fh wV -SI -Ax -TJ +bh +LK +uF wV -nv -DC -tX -Jq -ZU -yz -ff +je +AN +fo +Kh +ZL +Lz +NK CK -DH -DH -nq +ZK +ZK +CR CK -Qv -kh +ZS +Hu vN vN -he -he -he +yK +yK +yK vN Tr Tr @@ -14332,7 +14332,7 @@ Tr Tr Tr Tr -uq +ws Tr mV mV @@ -14430,61 +14430,61 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +EU +EU +EU +EU +EU +EU +EU yH -YZ -hH -cg -KB -ew +YN +Zy +tr +EU +Aw yH -Dh -xK +ka +Rx fh fh fh fh fh fh -Dh +ka wV -Ov -Ax -mm +Uq +LK +LG wV -hh -DG -DG -TH -as -Sc -Sc -Oo -wx -Xq -YL +cr +Op +Op +po +rG +yG +yG +Js +kI +zL +Uz CK -NF -HA +eF +IH vN -xv -Jj -Jj -Jj -Li +Ne +yU +yU +yU +SW Tr mV mV mV mV Tr -uq +ws Tr mV mV @@ -14583,60 +14583,60 @@ mV mV oB oB -KB -KB -KB -KB -KB -KB +EU +EU +EU +EU +EU +EU yH -xi -JB -di -tj -tP +Lu +pK +yp +VJ +oL yH -Dh -xK +ka +Rx Of -Dh -Dh -Dh -Dh -Dh -Dh +ka +ka +ka +ka +ka +ka wV -Gn -Ax -dV +Dd +LK +ys wV -or -DG -Sz -DG -aa -DG -aa +KV +Op +bQ +Op +UE +Op +UE CK -WW -DH -tn +dR +ZK +wf CK -Ii -SQ +JS +RT vN -yS -Li -Li -Li -Li +Zq +SW +SW +SW +SW Tr mV mV mV mV Tr -uq +ws Tr mV mV @@ -14743,52 +14743,52 @@ oB oB oB oB -KB -zq -KB +EU +Ek +EU oB oB pQ pQ pQ -Dh -Dh -Dh -Dh -Dh -xK +ka +ka +ka +ka +ka +Rx wV -SF -Gj -QX +ll +zn +wj wV -tF -DG -JP -qn -wA -qO -wA +fN +Op +zY +nu +Pd +sc +Pd CK -bU -MR -rV +CE +yZ +iQ CK -IB -IB +vI +vI vN -Cy -Ck -Tk -wM -Li +sd +YK +Ka +kv +SW Tr mV mV mV mV Tr -uq +ws Tr mV mV @@ -17347,11 +17347,11 @@ mV mV mV mV -Ce -Ce -Ce -Ce -Ce +TE +TE +TE +TE +TE mV mV mV @@ -17499,11 +17499,11 @@ mV mV mV mV -Ce +TE cc -Ce -Ce -Ce +TE +TE +TE mV mV mV @@ -17651,11 +17651,11 @@ mV mV mV mV -Ce -Ce -Ce -Ce -Ce +TE +TE +TE +TE +TE mV mV mV diff --git a/maps/map_files/derelict_almayer/derelict_almayer.dmm b/maps/map_files/derelict_almayer/derelict_almayer.dmm index 383230a9d9..7b7ce588ec 100644 --- a/maps/map_files/derelict_almayer/derelict_almayer.dmm +++ b/maps/map_files/derelict_almayer/derelict_almayer.dmm @@ -1,19 +1,54 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"aaj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"aac" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aaw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/orange/southeast, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) +"aaq" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"aar" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"aat" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) "aaD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -26,104 +61,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"aaJ" = ( -/obj/structure/bed/chair{ - dir = 8 +"aaU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"aaN" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"abb" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"abf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"aaO" = ( -/obj/structure/bed, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"aaY" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"abg" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"abp" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"aba" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"abk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower) -"abw" = ( -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - layer = 3.2; - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - layer = 3.1; - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/masks{ - layer = 3.1; - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"abx" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, +/area/almayer/hallways/lower/vehiclehangar) +"abC" = ( +/obj/docking_port/stationary/escape_pod/east, /turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"abH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"abL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/disposalpipe/segment, +/area/almayer/maint/hull/upper/u_m_p) +"abG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Warden Office" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"abI" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"abM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) +/area/almayer/engineering/lower/engine_core) "abP" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -144,477 +139,373 @@ "abS" = ( /turf/open/floor/almayer, /area/almayer/living/port_emb) -"acd" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 +"abW" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_1"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"acm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower) -"acr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"abX" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"acq" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = -7; - pixel_y = 13 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"act" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) +"acQ" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"acS" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"adb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/item/device/camera{ - pixel_x = 7 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"add" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, /turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"acy" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer/plate, +"adn" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) -"acT" = ( +"adE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"adT" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie_delta_shared) +"aed" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"acW" = ( +/area/almayer/squads/req) +"aee" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"adc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_umbilical) -"adg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"adi" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"ads" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"adH" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"adL" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"adO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"aef" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"aem" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 }, -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"aeg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"aer" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"aev" = ( /turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"aej" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aen" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/evidence_storage) -"aex" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"aeA" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/living/briefing) "aeD" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"aeQ" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 2"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"afi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"aeF" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"aeR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"afk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/armory) -"afl" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"afm" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"afo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"afq" = ( -/obj/item/toy/deck{ - pixel_y = 12 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"afX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"afx" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"afY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"afZ" = ( /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"afF" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/power/apc/power/west, +/obj/structure/sign/safety/intercom{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/lobby) +"agp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"afI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/engineering/lower) +"agG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/chief_mp_office) -"afO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "19" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"agK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "19" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 4"; + name = "\improper Courtyard Divider" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"afT" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/area/almayer/shipboard/brig/cells) +"agT" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"agg" = ( -/obj/structure/machinery/door_control{ - id = "dccbunk"; - name = "DCC Privacy Shutters"; - pixel_x = 24 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"ahh" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"ahn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ahE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"ahV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"agk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aio" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"agl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) -"ago" = ( -/obj/structure/machinery/firealarm{ +"aiu" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - pixel_y = -28 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + name = "ship-grade camera" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/armory) -"agu" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"agL" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"aiE" = ( /obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"aiG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aiN" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north1) +"ajc" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"ajh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"agY" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"ahd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"ahr" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ajr" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/pilotbunks) -"ahE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ahG" = ( -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"ahJ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"ahR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -18 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"ahX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aia" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"aid" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/power/apc/power/west, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"aik" = ( -/obj/structure/machinery/cm_vending/gear/tl{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"ajv" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"aip" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"aiC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"aiF" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/obj/structure/window{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"aiH" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"aiN" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/north1) -"aiY" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"ajc" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"ajg" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"ajj" = ( +/area/almayer/living/cryo_cells) +"ajE" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"ajn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ajz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"ajB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"ajK" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"ajL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ajO" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"ajV" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"ajS" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"ajX" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"aki" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"akm" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/area/almayer/maint/hull/lower/l_f_s) "akn" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cic) +"akp" = ( +/obj/structure/machinery/power/apc/power/east, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"akv" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"akw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) "akF" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -626,258 +517,134 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"akI" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 13"; - buildstate = 1 - }, -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"akK" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) "akM" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_lobby) -"akN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"akU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Chief MP's Office"; - req_access = null; - req_one_access_txt = "1;3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" +"akX" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 1"; + locked = 1; + name = "\improper Containment Cell 1" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 1"; + name = "\improper Containment Cell 1"; + unacidable = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"alc" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"alj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"alq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"alF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"alJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"alQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/area/almayer/medical/containment/cell) +"ali" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 2"; - name = "\improper Courtyard Divider" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"alZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/lower/port_midship_hallway) +"alA" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"amm" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"alD" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"amp" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"alI" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"alL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"alU" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"amv" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"amy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"amF" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"amI" = ( -/obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/chemistry) -"amK" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"amz" = ( /obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"amQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, +/area/almayer/squads/req) +"amA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"amB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northeast, /area/almayer/hallways/lower/repair_bay) -"amR" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cichallway) "amT" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"amZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/aft_hallway) -"anc" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/lower/repair_bay) -"anf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +"ang" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ant" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red/north, +/area/almayer/living/cryo_cells) +"anE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = 25 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"anh" = ( -/turf/open/floor/almayer/orange/west, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) -"ano" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"anr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"anv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"any" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/general_equipment) "anF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"anL" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +"aoh" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "aoj" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"aor" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"aot" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"aoG" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +"aoy" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/evidence_storage) "aoK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -885,6 +652,16 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"aoM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Spare Bomb Suit"; + req_one_access = null; + req_one_access_txt = "35" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "aoN" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -897,12 +674,6 @@ /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"aoP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) "aoU" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -929,18 +700,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"apr" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"apv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) "apx" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -948,79 +707,117 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"apJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper) -"apS" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"apV" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"aqc" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" +"apy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"aqf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"apA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"apF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"apN" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"aro" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/galley{ +/area/almayer/squads/delta) +"apR" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"apU" = ( +/obj/structure/sign/safety/bulkhead_door{ pixel_x = 8; - pixel_y = 28 + pixel_y = 32 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"apY" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/command/cic) +"apZ" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/lobby) +"aqh" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"aqi" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"aqo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"aru" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"aqt" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"aqu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"aqL" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"arx" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"arB" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"arI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"arS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"ara" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"arc" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/structure/phone_base{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"are" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"arg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, /turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) +/area/almayer/living/starboard_emb) +"arj" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/aft_hallway) +"arR" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering) +"arV" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) "ase" = ( /obj/structure/disposalpipe/up/almayer{ dir = 8; @@ -1028,334 +825,537 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"asF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 +"asi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"asQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"asl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"asE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"asK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"asO" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) +"asT" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or03"; + name = "Operating Theatre 3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_three) +"asZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"ate" = ( +/area/almayer/maint/hull/upper/u_m_p) +"atk" = ( /obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 7"; + name = "\improper S-52 fusion reactor 17"; buildstate = 1 }, +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) -"atf" = ( -/obj/structure/largecrate/random/case/small, +"atr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"ats" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"atl" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/living/captain_mess) +"atz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"atG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Cryogenics Bay" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"atp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-6"; - req_access = null +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"atK" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"atM" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"atB" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/squads/req) +"aup" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"auE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"auR" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"atZ" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/flare, -/obj/item/mortar_shell/flare, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"aua" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge3" +"auX" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = -32 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"aut" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"auJ" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"auM" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"avf" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/living/briefing) -"avo" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"avq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/item/stack/sheet/metal{ + layer = 4.1; + pixel_x = -3; + pixel_y = 14 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"avr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/tool/weldingtool{ + layer = 4.1; + pixel_x = 5; + pixel_y = 12 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"avt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"avu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"avz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"awc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"awk" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 +/obj/item/bedsheet/red{ + layer = 3.2 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"awH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/bedsheet/red{ + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"axg" = ( +/area/almayer/living/starboard_emb) +"avb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/restrictedarea{ +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"avm" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ pixel_x = 15; - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"axi" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"avr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"axk" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"avI" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"axn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper Commanding Officer's Quarters"; - req_access = null; - req_access_txt = "31" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"avT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"axB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/hallways/upper/aft_hallway) +"awn" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"axH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/area/almayer/command/lifeboat) +"awp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"axT" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"axW" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"awr" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"axX" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"ayI" = ( -/obj/structure/target{ - name = "punching bag" +/area/almayer/living/pilotbunks) +"aww" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ayJ" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"aza" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ pixel_x = 8; - pixel_y = -32 + pixel_y = -1 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating, /area/almayer/maint/hull/lower/l_f_p) -"azh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"azj" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"awx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer/plate, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) -"azt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"awT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"azI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aAe" = ( /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"aAi" = ( -/obj/item/tool/crowbar, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"aAo" = ( +/area/almayer/command/cichallway) +"awV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"axc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"aAt" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"aAB" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"aAK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) -"aAM" = ( -/obj/structure/machinery/light{ - dir = 1 +"axj" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"aAT" = ( -/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"axm" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"axq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Crew Chief's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"axr" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"axx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"axF" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"ayd" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/aft_hallway) +"ayg" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"ayi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ayl" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"ayo" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ayp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"ayu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"ayw" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"ayz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"ayB" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ayL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ayO" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/upper/aft_hallway) +"ayX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"ayY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"ayZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"azi" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/engineering/port_atmos) +"azv" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"azz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"azE" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"azH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"azI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"azY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"aAa" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aAh" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"aAi" = ( +/obj/item/tool/crowbar, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"aAj" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"aAt" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"aAC" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"aAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"aAF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "aAV" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -1369,97 +1369,57 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"aBg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"aBi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) "aBl" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) -"aBw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) "aBB" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/lifeboat) -"aBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"aBF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/warden_office) -"aBV" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aBN" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + name = "\improper Evacuation Airlock PL-2"; + req_access = null }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"aCa" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"aCc" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge1" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"aBX" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = 32 +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) +/area/almayer/squads/delta) "aCi" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell/cl) -"aCj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/tarbacks, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"aCw" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"aCl" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/officer_study) +"aCv" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aCC" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"aCL" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/cryo_cells) -"aCO" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) +/area/almayer/engineering/upper_engineering/starboard) "aCS" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 4"; @@ -1470,479 +1430,540 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"aCU" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) "aCW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"aDc" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +"aDf" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"aDk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"aDs" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/cryo_cells) -"aDu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"aDx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aDH" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"aDI" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"aDw" = ( /obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; + pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"aDz" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aDL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = -7 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"aDM" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"aDB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aDO" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"aDF" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"aDR" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"aEy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"aDT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"aEB" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"aEa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"aEJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aEl" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/starboard_emb) -"aEK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"aEN" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"aES" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"aEX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"aEE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/accessory/red, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 3; + pixel_y = 10 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) +/obj/item/clothing/suit/storage/webbing, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "aFb" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/notunnel) -"aFc" = ( -/obj/structure/bed/chair{ +"aFg" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"aFe" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"aFi" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) "aFt" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"aFQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"aFv" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"aGk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"aGA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_p) +"aFD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/phone_base{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"aGL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aFE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"aHw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"aHH" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/bridgebunks) -"aHO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/medical_science) +"aFP" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"aHY" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"aFR" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/briefing) +"aGg" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"aIa" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/almayer/medical/containment/cell/cl) -"aIb" = ( -/obj/structure/sign/safety/distribution_pipes{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"aGG" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/storage{ + pixel_x = 33; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"aGM" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"aGS" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"aHk" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/galley{ pixel_x = 8; - pixel_y = 32 + pixel_y = 28 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aHs" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"aHt" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/warden_office) +"aHv" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"aHH" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/bridgebunks) +"aHN" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aHO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"aHS" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"aHV" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"aIa" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/almayer/medical/containment/cell/cl) "aIc" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"aIy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D2"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"aIA" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"aIF" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - unacidable = 1 +"aIm" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"aIr" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room/notunnel) -"aII" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/area/almayer/squads/alpha_bravo_shared) +"aID" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "aIO" = ( /turf/open/space, /area/space/almayer/lifeboat_dock) -"aIU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"aJa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"aJt" = ( -/obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"aJy" = ( -/obj/structure/girder, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"aJM" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 +"aIR" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/space_heater, -/obj/item/ashtray/glass{ - pixel_x = 3; +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"aIV" = ( +/obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"aJO" = ( -/obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"aKd" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"aJf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/general_equipment) -"aKe" = ( -/obj/structure/closet, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"aKk" = ( -/obj/structure/machinery/light/small{ +/area/almayer/command/combat_correspondent) +"aJk" = ( +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"aKl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/area/almayer/living/briefing) +"aJn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"aJq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Cafeteria" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"aJr" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"aJv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"aJK" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"aJQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/obj/structure/machinery/power/apc/power/east, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aKo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/area/almayer/command/lifeboat) +"aJT" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; pixel_y = 1 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"aKu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"aKw" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"aJY" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"aKD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 8; - pixel_x = 16 +/area/almayer/maint/hull/lower/l_f_s) +"aKb" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"aKf" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, /area/almayer/living/pilotbunks) +"aKi" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"aKp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"aKJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"aKK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) "aKN" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/captain_mess) -"aKO" = ( -/obj/structure/machinery/light{ - dir = 8 +"aKS" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -18 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"aKP" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aKT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"aLg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"aLi" = ( -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"aLj" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) -"aLo" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"aLu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"aKY" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"aLp" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 10"; + buildstate = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"aLy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"aLR" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"aLt" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/living/briefing) +"aLO" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"aMe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"aLT" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"aMq" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"aMt" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"aMg" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"aMm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "\improper Pilot's Office"; - req_one_access_txt = "3;22;19" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"aMu" = ( +/obj/structure/machinery/brig_cell/perma_1{ + pixel_x = -32; + pixel_y = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "Perma 1L"; + name = "Perma 1 Lockdown"; + pixel_x = -24; + pixel_y = -12; + req_access_txt = "3" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"aMr" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/perma) +"aMv" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"aMA" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"aMR" = ( /obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"aMU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/upper/u_a_s) +"aNc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"aNi" = ( +/obj/structure/pipes/standard/manifold/visible, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"aMs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"aNm" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"aMC" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"aMK" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"aNn" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"aNk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/engineering/lower/workshop/hangar) "aNq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) +"aNr" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) "aNE" = ( /obj/structure/bed/chair{ dir = 8; @@ -1950,26 +1971,20 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"aNM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"aNO" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"aNU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"aNQ" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"aNR" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) "aNW" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ density = 0; @@ -1977,95 +1992,53 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"aOd" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"aOm" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"aOp" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/briefing) -"aOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"aOC" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/briefing) -"aOF" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"aOO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"aOQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"aNY" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"aOh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"aOT" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"aOU" = ( -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) -"aOW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"aPa" = ( -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 +"aOE" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) +"aON" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"aOY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/command/cic) +"aPd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"aPb" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/aft_hallway) +"aPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/evidence_storage) -"aPh" = ( -/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"aPL" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 8"; - buildstate = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_f_s) +"aPC" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) "aPN" = ( /obj/structure/toilet{ pixel_y = 16 @@ -2080,313 +2053,316 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"aPP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/starboard_emb) +"aPO" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) "aPQ" = ( /obj/structure/mirror, /turf/closed/wall/almayer, /area/almayer/living/gym) -"aPX" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"aQa" = ( -/obj/structure/reagent_dispensers/ammoniatank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"aQk" = ( -/obj/structure/pipes/vents/pump{ +"aQj" = ( +/obj/structure/platform{ dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"aQr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"aQs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/unary/freezer{ - dir = 8 + layer = 2.7 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"aQt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) +"aQq" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/computer/research{ - dir = 4; +/turf/open/floor/almayer/green/east, +/area/almayer/living/starboard_garden) +"aQv" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"aQA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; pixel_y = 4 }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"aQx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"aQy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"aQP" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"aQS" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 3"; - buildstate = 1 +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "aQY" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"aRb" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ +"aRn" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"aRu" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"aRJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ pixel_x = 6; - pixel_y = 1 + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"aRx" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"aRD" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"aRH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/port_midship_hallway) -"aRT" = ( +/obj/item/storage/firstaid/adv, /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"aRK" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/morgue{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) "aRY" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"aSH" = ( -/obj/structure/stairs{ - dir = 4 - }, +"aSb" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"aSg" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aSi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"aSv" = ( /obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"aST" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"aSV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_missiles) -"aTd" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - access_modified = 1; - name = "\improper Senior Enlisted Advisor's Office"; - req_access = null; - req_access_txt = "19;29" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) +"aSw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aSA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"aSD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"aTe" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) +"aSL" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"aTg" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/aft_hallway) +"aSM" = ( +/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/shipboard/brig/perma) +"aSX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"aTv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) "aTw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"aTz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"aTH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower) -"aTB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Chief Engineer's Bunk"; - no_panel = 1; - req_access = list(); - req_one_access_txt = "1;6" +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "aTI" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"aTX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"aTK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"aTQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"aUc" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"aTR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"aUh" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"aTS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"aUe" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) -"aUj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"aUM" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_m_p) +"aUf" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"aUT" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -29 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"aUk" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 6 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/lobby) +"aUn" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"aUo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aUB" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"aUD" = ( +/obj/structure/catwalk{ + health = null + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aUL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"aUZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"aVc" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/shipboard/port_point_defense) "aVk" = ( /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"aVt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 7 +"aVz" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 2 +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"aVG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"aVL" = ( -/obj/structure/phone_base/rotary{ - name = "CL Office Telephone"; - phone_category = "Almayer"; - phone_id = "CL Office" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"aVH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "aVM" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -2394,20 +2370,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) -"aVR" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +"aVX" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"aWb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/bridgebunks) +"aWh" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) "aWk" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -2418,53 +2393,50 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"aWq" = ( +"aWA" = ( +/obj/structure/bed/chair, /turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/perma) -"aWu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/shipboard/brig/lobby) +"aWL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"aWC" = ( -/obj/structure/machinery/cryopod/right{ +/obj/structure/machinery/recharger{ layer = 3.1; - pixel_y = 13 + pixel_y = 22 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"aWI" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"aWM" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"aWW" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"aXe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/item/trash/plate{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "aXg" = ( /turf/closed/shuttle/dropship2{ icon_state = "30" @@ -2474,17 +2446,18 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"aXl" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"aXn" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/upper_medical) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/chemistry) "aXu" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2495,30 +2468,19 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"aXx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"aXC" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, +"aXE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/sink{ pixel_x = 1; - pixel_y = 1 + pixel_y = -2 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"aXD" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "aXJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2526,70 +2488,83 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"aYe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 8 - }, -/obj/item/clipboard{ - pixel_x = -8 - }, -/obj/item/folder/white{ - pixel_x = -8 +"aXL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) -"aYh" = ( -/obj/structure/platform_decoration{ - dir = 8 +"aYa" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"aYl" = ( -/obj/item/stack/sheet/mineral/plastic{ - amount = 15 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/bravo) +"aYk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"aYs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) +/area/almayer/hallways/lower/port_umbilical) +"aYu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/aft_hallway) "aYw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"aYB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"aYx" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"aYM" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"aYz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"aYR" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"aYC" = ( +/turf/open/floor/almayer/redcorner/west, /area/almayer/living/briefing) -"aYY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +"aYE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"aYS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"aYW" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "aZc" = ( /obj/structure/sign/prop1{ layer = 3.1 @@ -2600,36 +2575,41 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"aZo" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 4 +"aZf" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"aZB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"aZF" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ pixel_x = -4; - pixel_y = -4 + pixel_y = -3 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = -4 +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 }, /turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"aZE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_s) +"aZH" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) "aZU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -2653,6 +2633,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"bad" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "bat" = ( /obj/item/tool/mop{ pixel_x = -6; @@ -2660,58 +2647,72 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bax" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"baD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"bav" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/closet/secure_closet/guncabinet/red, +/turf/open/floor/almayer/redfull, +/area/almayer/maint/hull/lower/l_f_s) +"baQ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"baX" = ( +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"baN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"bby" = ( +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/lower/port_midship_hallway) -"baT" = ( -/obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"bbd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Garden" +"bbz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/greenfull, -/area/almayer/shipboard/brig/cells) -"bbA" = ( -/obj/structure/platform_decoration{ +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/comfy{ dir = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"bbB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"bbH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/squads/alpha) +"bbL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"bbJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/area/almayer/hallways/lower/port_midship_hallway) +"bbM" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"bbQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) "bcd" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -2719,57 +2720,31 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"bcg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"bci" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"bcv" = ( +/obj/structure/machinery/brig_cell/perma_2{ + pixel_x = -32; + pixel_y = -4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"bcj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "Perma 2L"; + name = "Perma 2 Lockdown"; + pixel_x = -24; + pixel_y = 12; + req_access_txt = "3" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"bcn" = ( /turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"bct" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"bcA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bcB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" +/area/almayer/shipboard/brig/perma) +"bcx" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bcD" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) "bcG" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) @@ -2781,6 +2756,9 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"bcV" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) "bcX" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -2789,18 +2767,50 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bdg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +"bde" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"bdq" = ( +/obj/structure/machinery/photocopier{ + density = 0; + layer = 2.9; + pixel_x = -3; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"bdj" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/obj/structure/sign/safety/cryo{ + pixel_x = -19; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) +/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/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) "bdr" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -2811,88 +2821,60 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"bdt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/black, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/supply{ +"bdy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"bdR" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"bdG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bdS" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/general_equipment) -"bed" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"bee" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop/hangar) -"bel" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"bem" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"beo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) -"beu" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"beF" = ( -/obj/structure/machinery/brig_cell/cell_2{ - pixel_x = 32 +/turf/open/floor/almayer/red/east, +/area/almayer/living/offices/flight) +"bec" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"beN" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"beR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"beC" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/boonie, +/obj/item/trash/chunk/hunk, +/obj/item/trash/crushed_cup, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"beG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"bfc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"beY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 }, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"beZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) "bfh" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -2904,90 +2886,119 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_four) -"bfj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"bfl" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Perma 2"; - pixel_y = -24 +"bfr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"bfm" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "bfs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"bfu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) +"bfD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"bfE" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) "bfH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"bgk" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) -"bgm" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"bgn" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"bfW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"bgF" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bhg" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/medical) -"bho" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D3"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +/area/almayer/maint/hull/lower/l_a_s) +"bgb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"bhr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/command/cic) +"bge" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 16 +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; + pixel_x = -8; + pixel_y = 6 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bgl" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"bgI" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"bgP" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bgR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bgU" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"bhj" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/hangar) +"bhl" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"bhs" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) "bhx" = ( /obj/structure/bed/chair, /obj/structure/machinery/status_display{ @@ -2995,6 +3006,25 @@ }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) +"bhA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"bhC" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"bhE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "bhH" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -3008,13 +3038,85 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"bhO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"bij" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/hangar) +"bhR" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"bic" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/storage/pouch/tools, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"bih" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/cryo) +"bin" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"bit" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"biB" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"biD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"biK" = ( +/obj/structure/phone_base/rotary{ + name = "CL Office Telephone"; + phone_category = "Almayer"; + phone_id = "CL Office" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"biN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "bjg" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -3022,65 +3124,58 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"bjk" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) +"bji" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/offices) +"bjo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "bjp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/almayer, /area/almayer/engineering/upper_engineering/starboard) -"bju" = ( -/obj/structure/bed/chair/comfy/orange, +"bjF" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/execution) +"bjK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"bjv" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"bjW" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"bkb" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"bjV" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"bkc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"bkh" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"bki" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 10 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "bkk" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -3096,40 +3191,77 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"bks" = ( +"bku" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"bkW" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"bkI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"bkR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1; + pixel_y = -29 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bkT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"blb" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) "ble" = ( /obj/structure/machinery/gibber, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"blg" = ( -/obj/structure/window/reinforced, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) "blh" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"blp" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) +"blq" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"blr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/execution) "blw" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -3138,67 +3270,19 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bly" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/east, -/obj/structure/machinery/cell_charger, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"blQ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"blV" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"blX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"bmq" = ( -/obj/structure/disposalpipe/segment, +"blI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"blR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"bmh" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) "bmr" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey/top{ @@ -3226,82 +3310,57 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"bmw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"bmx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"bmA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"bmB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"bmP" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) +"bmS" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bmY" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"bmD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"bmE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, /turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) -"bmF" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"bmI" = ( +"bni" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"bmW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"bnK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/processing) +"bnw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"bnN" = ( -/obj/structure/machinery/door_control{ - id = "or2privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"bnA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) "bnO" = ( /turf/closed/wall/almayer, /area/almayer/engineering/ce_room) @@ -3311,34 +3370,31 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"boi" = ( -/turf/open/floor/almayer/orange, -/area/almayer/command/cic) -"bos" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +"bnV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bov" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/cic) -"boF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"boz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ - name = "\improper Research Hydroponics Workshop" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper CMO's Office"; + req_one_access = null; + req_one_access_txt = "1;5" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"boI" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/brig/evidence_storage) +/area/almayer/medical/upper_medical) "boK" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -3347,238 +3403,134 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/basketball) -"bpb" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/auxiliary_officer_office) -"bpD" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bpI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"bpL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - access_modified = 1; - dir = 2; - name = "\improper Chief Engineer's Office"; - req_one_access = null; - req_one_access_txt = "1;6" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" +"boP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + id = "Containment Cell 4"; + name = "\improper Containment Cell 4" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 4"; + locked = 1; + name = "\improper Containment Cell 4" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"bpY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"bqd" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"bqi" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"bqp" = ( +/area/almayer/medical/containment/cell/cl) +"bpc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer, +/area/almayer/engineering/lower) +"bpe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bpg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"bqr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "Telecommunications"; - req_access_txt = "6" +"bpk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"bpv" = ( +/obj/structure/machinery/computer/cryopod/eng{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"bpA" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"bpE" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"bpW" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-2"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"bqt" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"bqz" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 2"; - locked = 1; - name = "\improper Containment Cell 2" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 2"; - name = "\improper Containment Cell 2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/area/almayer/powered) +"bqg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"bqP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"bqQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"bqS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bqW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/obj/item/storage/firstaid/rad, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower) -"brj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_f_s) -"brl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"brn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/area/almayer/engineering/starboard_atmos) +"bqA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"bqH" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"brs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bry" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"bqT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"brh" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"brM" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"brD" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"brX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/area/almayer/maint/hull/upper/u_f_p) +"bsm" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/cryo_cells) +"bsq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"brY" = ( -/obj/structure/dropship_equipment/paradrop_system, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"bsh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" +/area/almayer/maint/hull/lower/l_m_s) +"bsw" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"bsE" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/vending/snack{ + pixel_x = -18; + pixel_y = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"bsI" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/living/grunt_rnr) +"bsy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "bsJ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -3588,72 +3540,53 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"bta" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"btv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; +"bsP" = ( +/obj/structure/machinery/door_control{ id = "Secretroom"; indestructible = 1; - unacidable = 1 + layer = 2.5; + name = "Shutters"; + use_power = 0 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) -"bty" = ( +"bsR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + dir = 5 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/area/almayer/engineering/lower) +"bto" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"btp" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"btx" = ( +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/almayer/hallways/hangar) "btG" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"btH" = ( -/turf/open/floor/almayer/orange, -/area/almayer/maint/hull/upper/u_a_s) -"btW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"btZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "35" +"buj" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"buc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/powered) "bup" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/tool/warning_cone{ @@ -3664,27 +3597,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"buD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc01"; - name = "\improper Treatment Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"buL" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) "buM" = ( /obj/structure/toilet{ dir = 1 @@ -3699,40 +3611,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"buO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"buR" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +"buQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"buS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/hallways/lower/starboard_midship_hallway) +"buX" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/lower/l_m_s) +"bvc" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"bvf" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cic) -"bvm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/bed/chair/bolted{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"bvd" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"bvn" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bvo" = ( +/obj/item/device/radio/marine{ + pixel_x = 6 + }, +/obj/item/device/radio/marine{ + pixel_x = 3 + }, +/obj/item/device/radio/marine, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bvp" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "bvw" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = 4 @@ -3743,304 +3682,418 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"bvE" = ( +"bvx" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"bvK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"bvL" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/obj/structure/sign/safety/ref_chem_storage{ - pixel_x = 8; - pixel_y = 32 + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"bvM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Perma Cells" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bvR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"bvP" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"bvY" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"bvX" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "bwd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"bwm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"bwi" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"bwj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/living/grunt_rnr) +"bwp" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"bwv" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "bwB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bwC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"bwQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/whistle{ + pixel_y = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"bxk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"bxf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = 7 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"bxA" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"bym" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/paper_bin/uscm{ + pixel_y = 5 }, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +/obj/item/tool/pen, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"bxh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "southcheckpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"byx" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/living/briefing) +"bxn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"byz" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/frame/table/wood/poor, -/obj/item/frame/table/wood/poor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"byD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"bxo" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"bxt" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"bxy" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"bxB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"byH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D2"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"bxD" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"bxV" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) +/area/almayer/powered/agent) +"bys" = ( +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"byt" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"byw" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"byA" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"byI" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_x = -16 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) "byJ" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room/notunnel) -"byP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) -"byX" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 +"byN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bzh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bzr" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/living/briefing) +"bzv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"bzq" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/lifeboat) -"bzH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bzy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"bzI" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"bzK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"bzA" = ( /obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"bzB" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"bzX" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 +/area/almayer/shipboard/brig/warden_office) +"bzD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"bAl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"bzQ" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"bzY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bAj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"bAn" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"bAp" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"bAt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"bAm" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) "bAv" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/weapon_room) -"bAA" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/cic) -"bAB" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"bBb" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +"bAY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"bBf" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"bBg" = ( +/obj/structure/machinery/door/poddoor/almayer/blended{ + id = "RoomDivider"; + layer = 3.1; + name = "\improper Room Divider" }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"bBp" = ( -/obj/structure/machinery/vending/security, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) +/area/almayer/command/corporateliaison) "bBr" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/computerlab) +"bBs" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) "bBv" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"bBI" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bBJ" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"bBN" = ( +"bBC" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"bBF" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane{ + anchored = 1 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"bBP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"bBY" = ( -/obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bCe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"bCk" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +/area/almayer/engineering/lower/workshop) +"bBU" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/aft_hallway) +"bBX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, /obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_p) -"bCr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"bCu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null +"bBY" = ( +/obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bCc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"bCD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright, /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/window/westright{ - dir = 4; - req_access_txt = "28" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"bCI" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"bCP" = ( -/obj/structure/sign/safety/south{ - pixel_x = 32; - pixel_y = -8 +/area/almayer/engineering/lower) +"bCE" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"bCJ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"bDc" = ( -/obj/structure/surface/rack, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, -/obj/effect/spawner/random/facepaint, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/area/almayer/hallways/hangar) +"bCM" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bDj" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "bDm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -4051,18 +4104,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"bDr" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"bDt" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 +"bDx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bDI" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) "bDK" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -4072,166 +4125,275 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"bDN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"bDX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"bEg" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/hydroponics) +"bEi" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/hull/upper/u_a_p) +"bEo" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/orangecorner, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"bEf" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"bEI" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +"bEp" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"bEz" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) "bEJ" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"bEL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"bEP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bES" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"bEM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"bEW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/securestorage) -"bFm" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower/workshop/hangar) -"bFx" = ( -/obj/item/stack/sheet/metal{ - layer = 2.9; - pixel_x = 4; - pixel_y = 21 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"bET" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"bEW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/securestorage) +"bEY" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"bFh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"bFx" = ( +/obj/item/stack/sheet/metal{ + layer = 2.9; + pixel_x = 4; + pixel_y = 21 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"bFK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"bFF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bFO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "bFT" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bGa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"bFV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) -"bGr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"bGn" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/clothing/head/beret/centcom/captain{ + color = "#4b5320"; + desc = "Dusty beret bearing the logo of the royal marines. How did this get here?"; + name = "dusty beret"; + pixel_y = -6 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"bGt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "bGE" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"bGT" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"bGV" = ( -/obj/structure/machinery/cryopod, +"bHe" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"bHj" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, /turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"bGZ" = ( +/area/almayer/maint/hull/lower/l_m_s) +"bHp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"bHs" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"bHy" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 9"; + buildstate = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"bHF" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/obj/item/book/manual/engineering_construction, +/obj/item/folder/black_random, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_y = 20 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"bHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/warden_office) -"bHv" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"bHG" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "bHJ" = ( /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"bHN" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) "bHO" = ( /obj/effect/attach_point/weapon/dropship2/left_wing, /obj/structure/shuttle/part/dropship2/transparent/lower_left_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bHU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"bIg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"bIl" = ( -/obj/structure/machinery/light{ - dir = 1 +"bHP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"bHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = 25 + pixel_x = 8; + pixel_y = -26 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"bIf" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"bIi" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) "bIr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -4248,34 +4410,56 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"bIK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"bIW" = ( -/obj/structure/disposalpipe/segment{ +"bIE" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"bIJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "\improper Pilot's Office"; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"bIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"bJa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"bIN" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"bIP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"bIQ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bIR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"bJp" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/squads/alpha_bravo_shared) +"bJe" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) "bJs" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -4284,176 +4468,142 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"bJu" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) +"bJG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "bJH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"bJJ" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"bJO" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"bJT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"bJV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"bJZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"bKo" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"bJP" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"bKm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/window/reinforced{ +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"bKp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"bKt" = ( -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/beret/cm, -/obj/item/clothing/head/beret/cm, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"bKD" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, /obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 + pixel_x = 32 }, /turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_midship_hallway) +"bKy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"bKA" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) "bKE" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/cic) -"bKK" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +"bKZ" = ( +/obj/structure/safe, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"bLo" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"bLp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"bLz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-1"; + req_access = null }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"bLD" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"bLG" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"bKR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) -"bKW" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"bLm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bLs" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"bLH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bLW" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"bMj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"bLC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bLJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"bLP" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, +/area/almayer/living/bridgebunks) +"bMo" = ( +/obj/structure/machinery/power/apc/power/east, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"bMd" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"bMl" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_x = -16 +/area/almayer/maint/hull/upper/u_m_s) +"bMp" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-1"; + req_access = null }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) "bMr" = ( /turf/closed/shuttle/dropship2{ icon_state = "31" }, /area/almayer/hallways/hangar) -"bMt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"bMF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bMN" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"bMu" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) -"bME" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "bMO" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -4476,93 +4626,122 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"bMY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"bMR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bMS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"bNd" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"bNa" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/living/briefing) -"bNk" = ( -/obj/structure/machinery/door_control{ - id = "or03"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"bNh" = ( +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"bNm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"bNl" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"bNq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"bNx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"bNu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"bNz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bNM" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) +"bNC" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"bNH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "SE-out" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"bNQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "bNR" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bNT" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"bOp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_one_access_txt = "7;23;27" +"bNS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"bOa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) +"bOk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) "bOx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"bOC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"bOy" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "bOE" = ( /obj/structure/bed/chair{ dir = 8; @@ -4570,229 +4749,300 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"bOG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"bOI" = ( +"bOO" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"bPc" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +/obj/item/facepaint/black, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"bOW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) "bPe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bPj" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) -"bPl" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"bPm" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"bPp" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"bPx" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +"bPf" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer/red/northwest, +/area/almayer/maint/hull/upper/u_a_p) +"bPi" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/greencorner/west, +/turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"bPB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"bPo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"bPO" = ( -/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"bPU" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/upper/aft_hallway) -"bPY" = ( -/obj/structure/window/reinforced{ +/area/almayer/squads/bravo) +"bPr" = ( +/obj/structure/disposalpipe/junction{ dir = 1; - layer = 3 + icon_state = "pipe-j2" }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"bQe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"bQf" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bQn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_y = -2; - req_one_access_txt = "3;22;19" +/area/almayer/shipboard/brig/processing) +"bPs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/offices/flight) -"bQo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"bPP" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"bQg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/lobby) +"bQi" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bQj" = ( /obj/structure/disposalpipe/segment, /obj/structure/bed/chair{ - dir = 8 + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"bQU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 12 +/area/almayer/squads/bravo) +"bQk" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bQq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/folder/white{ - layer = 2.9; - pixel_x = -8 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"bQI" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/command/cic) +"bQN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"bQZ" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"bRb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"bRs" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"bRf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_umbilical) +"bRj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"bRp" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"bRz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/starboard_garden) -"bRu" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"bRw" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"bRE" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/cic) -"bRN" = ( +/area/almayer/hallways/hangar) +"bRI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bRJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"bSo" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Brig"; + req_access = null; + req_one_access_txt = "1;3" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"bRQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"bRS" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"bSw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/living/briefing) +"bRW" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"bSy" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"bSG" = ( -/obj/structure/surface/table/almayer, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"bRZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bSh" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"bSk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"bSn" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, /obj/structure/machinery/light{ dir = 1 }, -/obj/item/toy/deck, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/offices/flight) -"bTc" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, /turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"bTj" = ( -/obj/structure/platform{ +/area/almayer/hallways/upper/aft_hallway) +"bSX" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 3"; + name = "Quarters Shutters"; + pixel_x = 25; + req_access_txt = "200" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bTg" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"bTt" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) +/area/almayer/maint/hull/upper/u_a_p) +"bTr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) "bTJ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/lifeboat) +"bTK" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"bTM" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"bTP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "bUe" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"bUu" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"bUD" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper) "bUI" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -4803,39 +5053,50 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bUU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"bUX" = ( -/obj/effect/decal/cleanable/dirt, +"bUO" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"bUZ" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 11"; - buildstate = 1 +/area/almayer/maint/hull/upper/u_f_p) +"bUP" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bUW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"bUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"bVe" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) "bVq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"bVr" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) "bVw" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"bVx" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"bVD" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) "bVJ" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox{ @@ -4844,161 +5105,166 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"bVR" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"bVZ" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/starboard_missiles) -"bWb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"bVY" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) -"bWt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"bWO" = ( +/area/almayer/maint/hull/lower/l_f_s) +"bWd" = ( +/obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"bWj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"bWR" = ( -/obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bWV" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"bWY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/medical) -"bWZ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_s) -"bXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, /turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) -"bXp" = ( +"bWo" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, /turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"bXA" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"bWr" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bWD" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"bXO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"bWG" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = -24 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"bXV" = ( -/obj/structure/shuttle/part/dropship2/nose_front_right, +/area/almayer/shipboard/brig/perma) +"bWR" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bYk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +"bWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/door/window/eastleft{ - req_access = list(19) +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/window/westright, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"bXe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/computerlab) -"bYr" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Oxygen Supply Console" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_emb) +"bXs" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"bYw" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/port_atmos) -"bYG" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/area/almayer/squads/delta) +"bXw" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"bXQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"bXV" = ( +/obj/structure/shuttle/part/dropship2/nose_front_right, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bYd" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"bYh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bYi" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"bYl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/window/reinforced{ +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"bYs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"bYu" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - pixel_y = 4 + name = "ship-grade camera" }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"bYV" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"bYw" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/port_atmos) +"bYJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"bYK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ pixel_y = 7 }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) "bZb" = ( /obj/structure/machinery/light, /turf/open/floor/plating/almayer, @@ -5009,22 +5275,41 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"bZi" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/boonie, -/obj/item/trash/chunk/hunk, -/obj/item/trash/crushed_cup, -/obj/item/trash/uscm_mre, +"bZg" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bZj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"bZo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"bZp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) +/area/almayer/hallways/upper/aft_hallway) +"bZl" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"bZr" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"bZv" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 + }, +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "bZw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5034,29 +5319,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"bZF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"bZD" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"cak" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"bZQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"caf" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) "cao" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -5067,333 +5367,349 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"car" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"cbt" = ( -/obj/structure/machinery/light{ +"caq" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"cbC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"cbO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"cbR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"cav" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"caC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"cbV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ccb" = ( -/obj/structure/machinery/computer/working_joe{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_x = -17 + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/hull/upper/u_f_p) -"ccc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"cce" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"cci" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ccm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"ccq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"ccs" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"ccu" = ( -/obj/structure/largecrate/random/secure, +/area/almayer/maint/hull/upper/u_m_p) +"caF" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ccL" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"cde" = ( +/area/almayer/command/cic) +"caQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cdO" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"cdT" = ( -/turf/closed/wall/almayer, -/area/almayer/living/auxiliary_officer_office) -"cdV" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"cdX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"cej" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"ceu" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0 - }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"caV" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"cew" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/area/almayer/maint/hull/lower/l_m_p) +"caW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"cex" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/area/almayer/hallways/hangar) +"caX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"ceC" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"ceH" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"cbi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/aft_hallway) +"cbq" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"cbu" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"cbx" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"ceN" = ( -/obj/structure/pipes/standard/tank/oxygen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; +/obj/structure/sign/safety/west{ pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"ceZ" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cby" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/squads/delta) +"cbM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 5 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"cfd" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"cff" = ( -/obj/structure/supply_drop/charlie, -/turf/open/floor/plating, -/area/almayer/squads/req) -"cfg" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"cft" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = 7 +"ccl" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"ccs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/almayer/red, +/turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"cfu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ccA" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"ccO" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 4"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell/cl) +"ccS" = ( +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"ccW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cfz" = ( -/turf/open/floor/almayer/green/southeast, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/aft_hallway) -"cfD" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, +"cdC" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"cdE" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"cfH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"cdI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"cdL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"cfN" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"cfU" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" +/area/almayer/command/cic) +"cdM" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"cdP" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/navigation) +"cdR" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"cdT" = ( +/turf/closed/wall/almayer, +/area/almayer/living/auxiliary_officer_office) +"cee" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 6"; + buildstate = 1 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/execution) -"cga" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/item/book/manual/orbital_cannon_manual, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"ceg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"ceh" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) +"cel" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"cep" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"ces" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"cge" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"cgs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"cgA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) +"cev" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"cgE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/storage/firstaid/fire, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"cgF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"cgP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"cey" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"cez" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"cgQ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"cgT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 +"ceG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"ceR" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"ceW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"cfd" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cgZ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"cha" = ( -/turf/closed/wall/almayer, -/area/almayer/command/corporateliaison) -"chl" = ( +/area/almayer/living/briefing) +"cfe" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"cff" = ( +/obj/structure/supply_drop/charlie, +/turf/open/floor/plating, +/area/almayer/squads/req) +"cfi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "SW-out" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/cryo_cells) +"cfk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"cfR" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/upper/aft_hallway) +"cfS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"cfT" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"cgi" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"cgm" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) +/area/almayer/maint/hull/lower/l_a_s) +"cgo" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_lobby) +"cgS" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) "cho" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /obj/structure/machinery/light{ @@ -5401,62 +5717,59 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"chr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"chA" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"chC" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"chM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "chO" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"chT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"chU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/tomatoseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"chY" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, +"chR" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"cia" = ( -/obj/structure/reagent_dispensers/fueltank, +/area/almayer/hallways/lower/starboard_midship_hallway) +"chV" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/cic) +"cie" = ( +/obj/structure/machinery/autolathe, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"cid" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/area/almayer/engineering/lower/workshop) +"cip" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"cig" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"ciq" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/command/cic) -"cix" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/weapon_room) +"ciy" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) "ciA" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell) @@ -5464,87 +5777,69 @@ /obj/structure/shuttle/part/dropship2/bottom_left_wall, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"cjc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"ciK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"cjf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"cji" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cjm" = ( /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"cjz" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/almayer/maint/hull/upper/u_a_s) +"ciP" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/largecrate, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"cjD" = ( +/area/almayer/squads/charlie_delta_shared) +"ciS" = ( +/obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/aft_hallway) -"cjF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"cjM" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"cjd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"cjr" = ( +/obj/structure/closet/secure_closet/guncabinet, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"cjs" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cjO" = ( -/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/perma) -"ckd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"ckf" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"cjv" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"cjX" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"ckm" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) "cko" = ( /obj/item/prop{ desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; @@ -5557,115 +5852,80 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"ckq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"ckt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"ckw" = ( -/obj/structure/closet/crate/freezer/cooler{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 10; - pixel_y = -4 +"ckC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/sign/safety/storage{ - pixel_x = -24 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) -"ckx" = ( -/obj/structure/closet/secure_closet/brig, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"ckB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"ckM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"ckW" = ( -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) -"clc" = ( -/obj/structure/machinery/light{ - dir = 4 +"ckG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"clg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"clh" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "tcomms" +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"ckL" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/trash/popcorn{ + layer = 3.1; + pixel_x = -3; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"clq" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"ckR" = ( /obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"clp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"clK" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"clu" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"clF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc03"; - name = "\improper Treatment Center" +/area/almayer/squads/charlie_delta_shared) +"clM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"clG" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = -32 +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"clU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"clO" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/sign/safety/security{ + pixel_x = -17; + pixel_y = 6 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) "clZ" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -5676,23 +5936,24 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"cms" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 +"cmj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Brig"; + req_access = null; + req_one_access_txt = "1;3" }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"cmF" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "cmH" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -5705,44 +5966,28 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"cmO" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cmP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 +"cmZ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"cnf" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"cnh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"cmR" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes, -/obj/item/circuitboard/airalarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"cmX" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cnm" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "cnn" = ( /turf/closed/shuttle/dropship2{ icon_state = "94" @@ -5754,181 +5999,163 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"cnv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) "cnw" = ( /turf/closed/shuttle/dropship2{ icon_state = "64" }, /area/almayer/hallways/hangar) -"cnM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"cnz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/aft_hallway) -"cnU" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"cnB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"cnK" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"cnL" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/starboard_emb) -"cof" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/orangeseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"cox" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/trunk{ dir = 4 }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"coc" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/securestorage) +"coi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"coj" = ( +/obj/structure/machinery/prop/almayer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"coo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"cop" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 5"; + locked = 1; + name = "\improper Containment Cell 5" + }, /obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" + id = "Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"coy" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"cov" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"coz" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "coG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"coV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/warden_office) "coX" = ( /obj/structure/target{ name = "punching bag" }, /turf/open/floor/almayer, /area/almayer/living/gym) -"cpf" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) "cpm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"cpp" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/cryo_cells) -"cpu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"cpD" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"cpK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/morgue) -"cpO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"cpo" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"cpR" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cpY" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"cpC" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"cqq" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - pixel_x = -12; - pixel_y = 13 + name = "ship-grade camera" }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"cqi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"cqr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"cqv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/upper/u_f_s) +"cqs" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "cqD" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -5936,50 +6163,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cqH" = ( -/obj/structure/machinery/light{ +"cqF" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"cqX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"cqM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"cqT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) "cra" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"crf" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"crv" = ( -/obj/structure/bed/chair{ +"crk" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"crH" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"crN" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/command/lifeboat) -"crP" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"cro" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_2"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"crE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"crO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Research Armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"crX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"csb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "cse" = ( /obj/structure/machinery/door/window/westright{ dir = 4 @@ -5990,108 +6247,105 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"csi" = ( -/obj/structure/disposalpipe/segment{ +"cso" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"csy" = ( +/turf/closed/wall/almayer/outer, +/area/space) +"csL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"csk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"css" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"cst" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/securestorage) -"csx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"csS" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/numbertwobunks) +"csW" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"csy" = ( -/turf/closed/wall/almayer/outer, -/area/space) -"csF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"csZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "cl_shutters 2"; + name = "\improper Privacy Shutters" }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"ctf" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cth" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ctk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/aft_hallway) -"csO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"ctm" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"csR" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"csS" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/numbertwobunks) -"cts" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/silver/east, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) +"cto" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"ctq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) "ctx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"ctB" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ctD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +"ctS" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_midship_hallway) -"ctF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ctH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ctI" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/cells) "ctV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -6102,49 +6356,54 @@ }, /turf/open/floor/almayer/research/containment/corner2, /area/almayer/medical/containment/cell) -"cuf" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"ctW" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cuz" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/pilotbunks) -"cuC" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi_ext"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"cuE" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +/area/almayer/hallways/hangar) +"cuh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"cuy" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cuI" = ( -/obj/structure/closet/crate/ammo, -/obj/structure/machinery/light/small, -/obj/item/ammo_box/magazine/empty, -/obj/item/ammo_box/magazine/empty, -/obj/structure/machinery/door_control{ - id = "crate_room3"; - name = "storage shutters"; - pixel_x = -26 +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"cuz" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/pilotbunks) +"cuB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"cuP" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"cuH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"cuW" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cuX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "cuY" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -6155,100 +6414,101 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"cvh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 +"cva" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"cvj" = ( -/obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"cvv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"cvC" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"cvD" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/command/telecomms) +"cvf" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"cvl" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_lobby) +"cvp" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-4"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cvw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"cvx" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"cvB" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/lower/workshop/hangar) "cvH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"cvI" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +"cwj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/reagent_scanner{ - pixel_x = -16; - pixel_y = 5 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"cws" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_m_p) +"cwC" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or4privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 }, +/obj/structure/machinery/iv_drip, /turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"cvK" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ +/area/almayer/medical/operating_room_four) +"cwG" = ( +/obj/structure/sign/safety/restrictedarea{ pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cvT" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cvV" = ( -/obj/structure/machinery/door_control{ - id = "dropship_normandy"; - name = "Dropship Lockdown"; - normaldoorcontrol = 3; - pixel_y = -19; - req_one_access_txt = "3;22"; - throw_range = 15 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cwI" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"cwK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/almayer/hallways/hangar) -"cwf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"cwh" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"cwQ" = ( /obj/structure/disposalpipe/junction{ dir = 1 }, @@ -6261,78 +6521,45 @@ }, /turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) -"cwl" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cwF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) "cwU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"cxg" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"cxz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/lobby) -"cxi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"cxj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/execution) -"cxl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"cxD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"cxB" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cxC" = ( -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"cxG" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/squads/req) +"cxF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"cxK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) "cxN" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -6348,16 +6575,23 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"cya" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"cyd" = ( +"cxW" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cxZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "cye" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -6369,12 +6603,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"cyq" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "cyr" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -6390,19 +6618,60 @@ /obj/item/tool/soap, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"cyM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +"cyH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"cyJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"cyO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"cyQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) "cyR" = ( /obj/structure/surface/table/almayer, /obj/item/folder/yellow, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"cyX" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cyZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"czl" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) "czu" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -6410,50 +6679,117 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"cAb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"cAh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer{ - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"cAx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"czw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"cAD" = ( +/area/almayer/shipboard/navigation) +"czB" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"czD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cic) +"czK" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"czT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"cAc" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"cAh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer{ + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"cAl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"cAq" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"cAF" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"cAJ" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/hallways/upper/aft_hallway) +"cAs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) "cAL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/offices) +"cAY" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"cBc" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) "cBd" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -6466,22 +6802,34 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"cBf" = ( +"cBz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering Lounge" + }, +/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"cBG" = ( -/obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cBJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/engineering/upper_engineering) +"cBL" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 5"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) "cBN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -6495,81 +6843,94 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"cBO" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"cBP" = ( -/obj/effect/decal/cleanable/dirt, +"cBR" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"cCa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/squads/req) -"cCc" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"cCi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"cCd" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/starboard_garden) -"cCf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"cCk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/hull/upper/u_f_p) "cCl" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) -"cCm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +"cCq" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"cCw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"cCI" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"cCz" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"cCO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/gym) +"cCC" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cCK" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 1; + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"cCM" = ( +/obj/structure/bed/chair/comfy/delta{ dir = 1 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"cCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"cDb" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_f_p) +"cCY" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"cDv" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cDl" = ( +/obj/structure/disposalpipe/trunk{ dir = 4 }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cDx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "cDy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -6593,58 +6954,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"cDA" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) "cDD" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "26" }, /area/almayer/hallways/hangar) -"cDK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"cDE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/almayer/red/north, -/area/almayer/living/starboard_emb) -"cDQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 }, -/obj/structure/largecrate/random, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"cDY" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cEg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"cEo" = ( -/obj/structure/disposalpipe/junction{ +/area/almayer/living/offices) +"cEa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/computerlab) +"cEe" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"cEF" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cEf" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"cEi" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"cEI" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "cES" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -6655,79 +7014,183 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"cFg" = ( -/obj/structure/disposalpipe/segment{ +"cEY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/port_umbilical) +"cFj" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"cFA" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"cFL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"cFN" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/lifeboat) -"cFT" = ( +/area/almayer/hallways/hangar) +"cFM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 2 + pixel_x = 1 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"cFP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 27 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"cGa" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) "cGb" = ( /obj/structure/sign/goldenplaque, /turf/closed/wall/almayer, /area/almayer/living/gym) -"cGc" = ( -/obj/structure/machinery/light{ - dir = 8 +"cGd" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cGM" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/warden_office) -"cHa" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"cHb" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"cGq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) -"cHd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"cGy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"cGO" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_y = 4 +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"cGP" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"cHn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"cGS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"cGZ" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"cHD" = ( -/obj/structure/machinery/light, +/area/almayer/command/cic) +"cHA" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"cHC" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) -"cHF" = ( +"cHH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"cHJ" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"cHL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"cIb" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 4; pixel_x = -17 @@ -6735,29 +7198,16 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"cHW" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) -"cIr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"cIA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/light, /turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"cIw" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/command/lifeboat) "cIO" = ( /obj/structure/platform{ dir = 4; @@ -6769,30 +7219,115 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"cIZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/syringe_case{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/syringe_case, -/obj/item/storage/syringe_case{ - pixel_x = -3; - pixel_y = -2 +"cIP" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"cJs" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"cJQ" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +/obj/structure/sign/safety/south{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/no_build, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) +"cIV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) +"cIW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_windoor"; + name = "Windoor Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "28" + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/sign/safety/biohazard{ + pixel_y = -32 + }, +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_se_2"; + name = "Window Shutters"; + pixel_x = -7; + pixel_y = 4; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"cIY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"cJn" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"cJp" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"cJq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"cJy" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"cJE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"cJU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"cJW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "cJX" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6800,6 +7335,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) +"cJY" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cKc" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "cKx" = ( /obj/structure/ladder{ height = 2; @@ -6807,47 +7355,38 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/medical_science) -"cKB" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"cKI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cKP" = ( -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"cKQ" = ( -/obj/structure/bed/chair{ - dir = 1 +"cKH" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"cKW" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"cKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/aft_hallway) -"cLp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/command/cichallway) +"cKU" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cLk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) +/area/almayer/engineering/lower) "cLs" = ( /obj/structure/ladder{ height = 2; @@ -6855,102 +7394,113 @@ }, /turf/open/floor/plating/almayer, /area/almayer/engineering/upper_engineering) -"cLy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"cLB" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"cLH" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"cLM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"cLT" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - layer = 3.1; - pixel_x = -12; - pixel_y = 14 - }, -/obj/item/toy/deck/uno{ - layer = 3.1; - pixel_x = -3; - pixel_y = -1 - }, -/obj/item/toy/handcard/uno_reverse_yellow{ - pixel_x = 6; - pixel_y = 5 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"cLX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = 27; + req_one_access_txt = "4;28" }, -/turf/open/floor/almayer/orange, -/area/almayer/living/starboard_emb) -"cLW" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"cLY" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"cMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"cMr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"cMw" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"cMP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cMT" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 3"; - pixel_x = 24 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/cells) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"cMg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"cMu" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"cMN" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "cMV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"cMW" = ( -/obj/structure/window/reinforced/tinted{ - pixel_y = -8 +"cMY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"cNi" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/door/window/tinted{ - dir = 8 +/turf/open/floor/almayer/red/north, +/area/almayer/maint/hull/upper/u_a_p) +"cNj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/toy/inflatable_duck, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"cNp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cNn" = ( /obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = -9; + pixel_y = 12 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"cNq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_x = -8 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"cNy" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/chief_mp_office) +"cNu" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/squads/charlie) "cNz" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 32 @@ -6966,255 +7516,334 @@ /obj/item/stack/cable_coil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"cNH" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"cNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"cNM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"cNS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"cNN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"cNU" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"cNT" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "cOe" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"cOf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -8; - pixel_y = 2; - req_access_txt = "3" +"cOh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"cOx" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -8; - pixel_y = 10; - req_access_txt = "3" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"cOB" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 2; - pixel_y = 10; - req_access_txt = "3" +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/machinery/recharger{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -8 }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"cOD" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"cOT" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"cOi" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"cOo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/command/cic) -"cOy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/squads/bravo) +"cOX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"cOz" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"cPd" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/obj/structure/machinery/meter, -/obj/structure/sign/safety/terminal{ +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"cOH" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi"; - name = "\improper Umbillical Airlock" + pixel_y = -16 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"cPe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"cOZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) +/area/almayer/living/briefing) "cPg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"cPq" = ( -/obj/structure/machinery/light{ +"cPl" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"cPp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"cPv" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 14 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cPy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"cPQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"cPA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cPZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"cPL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/area/almayer/maint/hull/lower/l_m_p) +"cPR" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"cPU" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"cPW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"cQb" = ( +/obj/item/tank/phoron, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"cQh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) "cQi" = ( /turf/closed/wall/almayer, /area/almayer/living/starboard_garden) -"cQs" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/aft_hallway) -"cQu" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ +"cQm" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"cQt" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"cQA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"cQP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"cQQ" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/upper/u_f_p) +"cQZ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"cQE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cRg" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"cRo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/upper/aft_hallway) -"cQL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"cRp" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cQM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, +/area/almayer/squads/delta) +"cRI" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cRb" = ( -/obj/structure/reagent_dispensers/fueltank, +/area/almayer/squads/charlie) +"cRT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"cRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"cRi" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/maint/hull/upper/u_f_s) +"cSc" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) -"cRB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"cSb" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/basketball) +"cSd" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"cSn" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/engineering/lower) -"cSp" = ( -/obj/structure/stairs, +/area/almayer/engineering/lower/workshop/hangar) +"cSj" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"cSk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cSs" = ( -/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"cSl" = ( /turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/hallways/upper/aft_hallway) +"cSv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) "cSy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"cSA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "cSP" = ( /obj/structure/barricade/handrail, /obj/structure/largecrate/supply/generator, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) +"cSS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "cST" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -7232,295 +7861,273 @@ "cSV" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) -"cTf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"cTb" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/hydroponics) -"cTg" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cl_shutters 3"; + name = "\improper Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"cTg" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cTi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = 28 +"cTl" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"cTq" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/almayer/hallways/hangar) +"cTy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - pixel_x = -17 + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cTA" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"cTC" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"cTj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/command/combat_correspondent) +"cTI" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"cTu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"cTM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"cTV" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"cTY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"cUt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + dir = 1; + name = "\improper Engineering Bunks" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"cUx" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "cUy" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"cUM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"cUF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"cUU" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"cUP" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, +/area/almayer/maint/hull/lower/l_a_p) +"cUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/hallways/lower/starboard_midship_hallway) +"cUZ" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "cVm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"cVw" = ( -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"cVD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -30 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/armory) -"cVN" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"cVT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"cVX" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 16; - pixel_y = 26 +"cVr" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"cVA" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"cWm" = ( /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"cWv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"cWC" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ +/area/almayer/hallways/hangar) +"cVO" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cWd" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"cWh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"cWP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"cWQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"cWK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"cWL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"cXb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ dir = 4; - id = "south_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"cXd" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 + pixel_x = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"cXo" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"cXp" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, +/area/almayer/living/pilotbunks) +"cXe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"cXx" = ( -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cXz" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/l_f_p) "cXA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) +"cXC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/ot{ + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "cXG" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"cXK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "cXN" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/cryo) -"cXW" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"cYp" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cYJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cYd" = ( -/obj/structure/bed/chair{ - dir = 4 +"cYL" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"cYM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/hangar) -"cYA" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cYR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"cYV" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cYX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/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 = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"cYB" = ( -/obj/structure/machinery/cm_vending/clothing/medic/charlie, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cYF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/squads/alpha) +"cYZ" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"cYJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"cYU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cZb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"cZf" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cZg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"cZi" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/engineering/lower/workshop/hangar) +"cZh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "cZk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network, @@ -7529,10 +8136,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"cZv" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) +"cZz" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) "cZB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -7544,224 +8155,179 @@ "cZE" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"cZS" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"cZQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"dal" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = -8 }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"dao" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"dae" = ( -/obj/structure/safe, -/obj/item/coin/platinum, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/clothing/accessory/storage/holster, -/obj/item/weapon/gun/pistol/es4, -/obj/item/ammo_magazine/pistol/es4, -/obj/item/ammo_magazine/pistol/es4, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"dap" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) +/area/almayer/maint/hull/lower/l_m_p) "dat" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"daJ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, +"daA" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"daG" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"daM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"daQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 10 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "daT" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"daW" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 7"; + buildstate = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "daY" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"dbh" = ( -/obj/structure/platform{ - dir = 1 +"dbf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"dbk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"dbj" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"dbm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) "dbo" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"dbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"dbr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/aft_hallway) -"dbw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"dbC" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"dcg" = ( +/obj/structure/machinery/telecomms/server/presets/squads, +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc02"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = 23 +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"dby" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"dch" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"dbB" = ( -/obj/structure/pipes/standard/cap/hidden{ +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"dcV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/machinery/cryo_cell{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"dbI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_three) +"dcW" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"dbK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"dbL" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"dbS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - name = "\improper CMO's Office"; - req_one_access = null; - req_one_access_txt = "1;5" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"dbW" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"dcn" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"dcS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 + layer = 5.1; + name = "water pipe" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "dcY" = ( /obj/structure/orbital_cannon{ density = 0 }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"ddg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ +"dda" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"ddu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"ddf" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"ddr" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"ddB" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ddU" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ddV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) "ddZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -7770,180 +8336,147 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"deo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/chief_mp_office) -"dey" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"dez" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"deC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"dek" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"deJ" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"deT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/engineering/lower/workshop) +"dfa" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"deY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"dfp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"dfk" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper CMO's Bedroom"; - req_one_access_txt = "1;5" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"dfr" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) +"dft" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "dfw" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"dfC" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +"dfJ" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"dfF" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"dfO" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"dgb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"dfP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"dgg" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"dgi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dgj" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 3.1; + pixel_x = -12; + pixel_y = 14 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"dfR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/toy/deck/uno{ + layer = 3.1; + pixel_x = -3; + pixel_y = -1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/toy/handcard/uno_reverse_yellow{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/starboard_emb) +"dgT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"dgY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dhb" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dfX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"dgq" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"dgt" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/execution) +/area/almayer/hallways/lower/port_midship_hallway) "dhe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"dhq" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) "dhr" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "32" }, /area/almayer/hallways/hangar) -"dhE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"dhF" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"dhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) +"dhs" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"dhu" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/living/grunt_rnr) "dhH" = ( /obj/structure/cargo_container/arious/mid, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dhI" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/auxiliary_officer_office) -"dhL" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"dhP" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) "dhT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/briefcase, @@ -7955,126 +8488,97 @@ }, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) -"dhU" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"dia" = ( -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"dih" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"dhW" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"dii" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"dik" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"dis" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/structure/sign/safety/commline_connection{ + pixel_y = 32 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"diw" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"dif" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"dim" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"diE" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"diY" = ( -/obj/structure/sign/safety/medical{ +/area/almayer/living/auxiliary_officer_office) +"diH" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"diK" = ( +/obj/structure/sign/safety/galley{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) -"djc" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"djn" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"djp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"diL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"djK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"djP" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"djQ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) -"djS" = ( -/obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"djX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/maint/hull/upper/u_a_p) +"dji" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"dka" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/book/manual/engineering_guide, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"djk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"dki" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"dkg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_one) +"dkk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"dkn" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or04"; + name = "Operating Theatre 4" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_four) "dko" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -8085,141 +8589,114 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"dks" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +"dky" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"dkL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"dkI" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"dkM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"dkY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"dlf" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"dlh" = ( -/obj/structure/phone_base{ - name = "Brig Offices Telephone"; - phone_category = "Almayer"; - phone_id = "Brig Main Offices"; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) +"dkV" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"dle" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) "dli" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"dlz" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +"dll" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"dlG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"dlq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"dlI" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) +"dlr" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"dlt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"dlF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"dlM" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"dlN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/area/almayer/engineering/lower/workshop) +"dlG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"dlQ" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) "dlV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"dme" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"dmm" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"dmr" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dmw" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/camera/autoname/almayer{ +"dmu" = ( +/obj/structure/machinery/door_control{ dir = 1; - name = "ship-grade camera" + id = "or3privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"dmG" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"dnb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"dmI" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"dmL" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"dmM" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"dmT" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/sign/safety/terminal{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dng" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "dno" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; @@ -8227,190 +8704,199 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"dnz" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"dnA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) "dnE" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"dnF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) "dnG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"dok" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 +"dnP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) -"doo" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"dnU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dop" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_p) +"dog" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"doq" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"dos" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/almayer/maint/hull/lower/l_a_s) +"dor" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dou" = ( -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"doF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/item/storage/box/matches, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"doB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"doG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "doK" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"doM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"doP" = ( +"doU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"doX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"doW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"dpa" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"dpo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/maint/hull/lower/l_f_s) +"dpg" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/lifeboat) +"dpy" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"dpD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dpA" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"dpQ" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"dpC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Field Surgery Equipment"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"dpX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dpZ" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"dpU" = ( +/area/almayer/engineering/upper_engineering/port) +"dqx" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"dqD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"dpY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"dqe" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"dqh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"dqr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) + dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"dqs" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"drj" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/hangar) +"dqW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"drt" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) "dru" = ( /turf/open/floor/almayer, /area/almayer/living/gym) @@ -8422,64 +8908,56 @@ "drD" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"drH" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"drL" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) "drO" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"dsi" = ( +"drP" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"drS" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"drT" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"drX" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"dsm" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"dsp" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dsn" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"dsr" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) -"dsv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) +"dss" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) "dsz" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 8; @@ -8487,25 +8965,28 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"dsE" = ( -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"dsH" = ( -/obj/structure/pipes/unary/outlet_injector, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"dsT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"dsB" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-2"; + req_access = null }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"dsN" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) "dsX" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/nitrogen, /area/almayer/engineering/airmix) +"dsZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "dtb" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -8513,47 +8994,65 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"dtd" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"dtl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"dtv" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/general_equipment) +"dtn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"dty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_p) "dtz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/chapel) +"dtC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "dtJ" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha) -"dua" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"dtX" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"duk" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dtZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"dul" = ( +/obj/item/trash/candle, +/obj/item/tool/match/paper, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "dup" = ( /obj/structure/bed/chair/office/dark, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8561,30 +9060,16 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"dur" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"dut" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/cryo{ +"duy" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = -26 + pixel_y = -32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"duF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"duD" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/upper/aft_hallway) "duK" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -8596,117 +9081,97 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"duP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"duV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" +"duX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"dvb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"dvd" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/living/tankerbunks) +"dvo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"dvy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; pixel_y = 32 }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"dvC" = ( +/obj/structure/machinery/computer/telecomms/monitor, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"dvg" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"dvm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"dvx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"dvB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"dvH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 +/area/almayer/command/telecomms) +"dvJ" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"dvK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"dvL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"dvP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"dvR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 + icon_state = "W" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"dwh" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dwc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"dwd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"dwe" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dwl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dwm" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) "dwp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"dwE" = ( -/obj/structure/machinery/cm_vending/gear/engi, +"dwz" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/area/almayer/maint/hull/upper/u_a_p) +"dwA" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "dwN" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) @@ -8721,60 +9186,77 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"dxa" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) "dxe" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"dxi" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dxj" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) "dxn" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"dxr" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" +"dxp" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"dxv" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"dxD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"dxL" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dxE" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"dxZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +/area/almayer/living/gym) +"dya" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"dyc" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"dyi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "dyk" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -8782,17 +9264,19 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"dyr" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 +"dyo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dyB" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "dyF" = ( /obj/structure/machinery/shower{ dir = 1 @@ -8807,13 +9291,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"dyZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"dyY" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "dze" = ( /obj/structure/bed/chair{ dir = 1 @@ -8823,166 +9313,123 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dzo" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"dzs" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 +"dzp" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"dzt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"dzx" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"dzE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"dzy" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"dzG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"dzH" = ( -/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_a_p) -"dzI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) "dzK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"dzZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +"dzO" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dAi" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - dir = 8; - pixel_x = 16 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"dzV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"dAb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_2"; + name = "\improper Bathroom" }, -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_emb) +"dAk" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dAu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"dAB" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"dAL" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"dAR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor/almayer/redfull, -/area/almayer/maint/hull/lower/l_f_s) -"dAE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"dAS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"dAP" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"dBb" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"dAV" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"dAW" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"dBp" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/execution) -"dBs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"dBm" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"dBD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"dBt" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"dBx" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"dBA" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/area/almayer/shipboard/brig/warden_office) +"dBF" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"dBC" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dBH" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) "dBK" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -8991,124 +9438,121 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices) -"dBW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"dCg" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +"dBQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"dBT" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"dBV" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"dCf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"dCh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dCi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/weapon_room) "dCm" = ( /turf/open/floor/almayer, /area/almayer/engineering/laundry) -"dCo" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/upper/aft_hallway) -"dCz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"dCs" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"dCG" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dCE" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"dCH" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"dCR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"dCK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"dCX" = ( /obj/structure/platform_decoration{ - dir = 1 + dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) -"dCV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"dCY" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"dDr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = 7 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"dDj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/paper_bin/uscm{ - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"dDk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"dDq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/item/tool/pen, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"dDv" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "dDB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"dDC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"dDJ" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) "dDK" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -9117,35 +9561,72 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dEc" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" +"dDQ" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dDV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"dEf" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dDZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"dEa" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"dEg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"dEl" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) "dEm" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"dEA" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +"dEo" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"dEu" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/command/cic) +"dEy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "dEC" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "23" @@ -9157,52 +9638,84 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"dEV" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) "dEW" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"dFp" = ( +"dFi" = ( +/obj/item/storage/box/matches{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"dFl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"dFs" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"dFt" = ( +/obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/bluecorner/west, +/obj/item/trash/USCMtray, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) -"dFv" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) -"dFx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"dFC" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"dGq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"dGw" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -5 +"dFK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/obj/item/clothing/head/helmet/space/compression/uscm, -/obj/item/cell/crap{ - pixel_x = 7 +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"dFR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"dGa" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/living/briefing) +"dGi" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/squads/bravo) "dGA" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -9217,12 +9730,28 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"dGM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"dGH" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or02"; + name = "Operating Theatre 2" }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_two) +"dGO" = ( /turf/open/floor/almayer/red, /area/almayer/squads/alpha) +"dGR" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "dGT" = ( /obj/structure/platform{ dir = 1 @@ -9232,89 +9761,138 @@ "dHn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/starboard) -"dHH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) -"dHV" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +"dHo" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dHt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"dHA" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"dHQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"dIh" = ( +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/lower/port_midship_hallway) -"dIc" = ( -/obj/structure/bed/chair{ - dir = 1 +"dIj" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dIt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) "dIA" = ( /obj/structure/pipes/vents/pump/siphon/on{ id_tag = "waste_lower_out" }, /turf/open/floor/engine, /area/almayer/engineering/airmix) +"dIC" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "dIF" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"dIR" = ( +"dIL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"dJe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"dJi" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/command/cic) +"dJm" = ( +/obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/starboard_garden) -"dIU" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dJs" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"dJu" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"dJc" = ( -/obj/structure/machinery/pipedispenser/orderable, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"dJx" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "dJy" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dJF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"dJL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D4"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"dJM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/tofukabob, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"dJS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/command/lifeboat) +"dJO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, +/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/shipboard/brig/warden_office) "dJW" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -9328,90 +9906,36 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dJZ" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"dKc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"dKd" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"dKe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"dJY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "S" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"dKg" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/starboard_umbilical) "dKk" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) -"dKn" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"dKo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = -25 - }, -/obj/structure/sign/prop3{ - pixel_x = -32 - }, -/obj/structure/machinery/faxmachine/uscm{ - department = "SEA" - }, -/turf/open/floor/strata/faux_metal, -/area/almayer/shipboard/sea_office) "dKp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"dKq" = ( -/obj/structure/machinery/light{ +"dKu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"dKx" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/aft_hallway) "dKB" = ( /obj/structure/machinery/light{ dir = 1 @@ -9419,28 +9943,28 @@ /obj/structure/machinery/cm_vending/clothing/commanding_officer, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"dKL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"dLg" = ( +"dKC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"dKR" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"dKT" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"dLo" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) "dLt" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -9448,226 +9972,180 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"dLG" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/shuttle/dropship/flight{ - disabled = 1 +"dLu" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"dLM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"dMo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"dLD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"dMn" = ( +/obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dMp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "tcomms_apc"; - name = "\improper Telecommunications Power Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"dMr" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) "dME" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"dMP" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"dMZ" = ( -/obj/structure/machinery/light{ - dir = 4 +"dMQ" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"dMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/lobby) -"dNa" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"dMY" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"dNC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"dNb" = ( +/area/almayer/shipboard/weapon_room) +"dNF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out" + icon_state = "W" }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"dOj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"dOC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"dNe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"dON" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"dNp" = ( +/area/almayer/hallways/hangar) +"dPd" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 5; - pixel_y = 3 +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"dPg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -6; +/obj/structure/sign/safety/hazard{ + pixel_x = 32; pixel_y = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"dNr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"dNN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"dNX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 3; - pixel_y = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"dOd" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"dPj" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"dOf" = ( -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"dPo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"dOk" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 2"; - buildstate = 1 + icon_state = "NE-out"; + pixel_y = 1 }, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"dOs" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/living/offices) +"dPp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"dPs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dOH" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"dOO" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"dOQ" = ( -/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) -"dOY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"dPJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"dPh" = ( -/obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"dPj" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"dPL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"dPO" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"dPY" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"dQd" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/living/briefing) +/area/almayer/lifeboat_pumps/north1) +"dPZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) "dQp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"dQr" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"dQx" = ( -/obj/structure/machinery/light{ +"dQB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"dQC" = ( +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"dQG" = ( +/obj/structure/bed/chair/comfy/bravo{ dir = 8 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"dRd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"dRf" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "dRh" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -9690,404 +10168,283 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"dRj" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"dRk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"dRr" = ( -/turf/open/floor/almayer/mono, -/area/almayer/living/starboard_garden) -"dRw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) +"dRi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "dRz" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"dRA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) "dRC" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/processing) -"dRK" = ( +"dRF" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"dRW" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/area/almayer/hallways/upper/aft_hallway) +"dRM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dSe" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/living/grunt_rnr) +"dRR" = ( +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"dSl" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"dSn" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) "dSx" = ( /obj/structure/disposalpipe/segment, /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dSH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 +"dSz" = ( +/obj/structure/closet/secure_closet/brig, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"dSS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) -"dSW" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or4privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"dTc" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"dTo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/basketball) -"dTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, +"dSG" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"dTt" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dTz" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"dTG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"dSI" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/aft_hallway) +"dSQ" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"dTa" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/greenfull, -/area/almayer/shipboard/brig/cells) -"dTO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"dTi" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"dTT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"dTo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dUf" = ( +/area/almayer/living/basketball) +"dTF" = ( +/obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dTK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"dUb" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"dUg" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/aft_hallway) -"dUh" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"dUk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/aft_hallway) -"dUp" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "dUv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dUx" = ( -/obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"dUA" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/hull/upper/u_a_p) -"dUD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"dUL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "19;29" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) +"dUJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "dUN" = ( /turf/open/floor/almayer/research/containment/corner1, /area/almayer/medical/containment/cell/cl) -"dUO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) "dUX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/ce_room) +"dVa" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/brig/evidence_storage) +"dVb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) "dVc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"dVd" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"dVj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"dVm" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"dVr" = ( -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 +"dVr" = ( +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"dVs" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/starboard_garden) "dVu" = ( /turf/open/floor/plating/almayer, /area/almayer/living/starboard_garden) -"dVM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"dVR" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_y_offset = 0 - }, +"dVy" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"dVU" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/maint/hull/lower/l_a_s) +"dVE" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dVG" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"dVY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"dWq" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"dWr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"dWs" = ( +/obj/structure/machinery/firealarm{ + dir = 1; pixel_y = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dWc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/storage/box/flashbangs{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"dWM" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 8; icon_state = "pipe-c" }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"dWO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"dWd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"dWU" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"dWf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"dWV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"dWn" = ( -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/living/gym) -"dWw" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"dWy" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"dWK" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"dWL" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"dWY" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"dWM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dXj" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"dXh" = ( -/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/obj/item/storage/fancy/cigar/tarbacks, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = -4; + pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "dXl" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -10096,48 +10453,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dXt" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"dXu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"dXA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower) -"dXE" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"dXQ" = ( -/obj/structure/cargo_container/wy/left, +"dXv" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dXY" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"dYa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) +/area/almayer/maint/hull/lower/l_m_p) +"dXy" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"dYc" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/command/lifeboat) "dYe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -10145,17 +10470,45 @@ /obj/item/tool/warning_cone, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dYr" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +"dYk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) +/area/almayer/engineering/lower/workshop) +"dYp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dYq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) "dYs" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/general_equipment) +"dYt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) "dYy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -10167,14 +10520,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/grunt_rnr) -"dYF" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) "dYI" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -10186,6 +10531,25 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"dYL" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"dYZ" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/lifeboat) +"dZc" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "dZd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -10206,6 +10570,18 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/execution) +"dZf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"dZg" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) "dZj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10216,30 +10592,34 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"dZq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"dZo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"dZv" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) +"dZx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) "dZy" = ( /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"dZD" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"dZI" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"dZR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"eaa" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) +"dZU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "eab" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -10250,158 +10630,120 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"eag" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"eae" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"eaj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"ean" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ear" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"eas" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/perma) -"eav" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"eaP" = ( /obj/structure/disposalpipe/junction{ - dir = 4; + dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"eaQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"eba" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"eay" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"eaL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/obj/item/device/lightreplacer, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"ebc" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/area/almayer/engineering/upper_engineering) +"eaS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"ebe" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/living/cryo_cells) -"ebg" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"ebs" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"eaU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/weapon_room) -"ebt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ebf" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"eby" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"ebK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ebB" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"eci" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"ebG" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"ecm" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ - dir = 8 + dir = 8; + invisibility = 101 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ebN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"eco" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ecb" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"ecD" = ( +/obj/structure/bed/chair/wheelchair{ dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/officer_study) -"ecf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"ect" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"ecz" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"ecA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_x = -1; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"ecC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"ecH" = ( -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"ecN" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) "ecR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"ecS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "ecW" = ( /obj/structure/machinery/light{ dir = 1; @@ -10409,70 +10751,40 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ecZ" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"edb" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"edd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Cryogenics Bay" }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"edf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"edh" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"edM" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"edp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"edF" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/briefing) -"edG" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"edI" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"edS" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"edS" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"edT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"edU" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "edW" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -10489,341 +10801,333 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"eee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"eej" = ( -/obj/structure/machinery/light{ - dir = 1 +"eei" = ( +/obj/structure/sign/safety/rewire{ + layer = 2.4; + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"eeq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = 7 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"eex" = ( -/obj/structure/stairs{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"een" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"eeo" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 5; + pixel_y = 16 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"eeM" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/filingcabinet/disk{ + density = 0; + pixel_x = -11; + pixel_y = 16 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"eeP" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"eer" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"eeU" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"eeX" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"eeY" = ( -/obj/structure/prop/invuln/joey, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"efc" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"efd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"efe" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"eff" = ( +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_two) +"eeB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"efl" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/lower/port_midship_hallway) -"eft" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Gym" + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eeR" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"efp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) "efu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"efz" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plastic{ - amount = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 +"efy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"efA" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"efG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"efL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"efM" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"efQ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/area/almayer/hallways/hangar) +"egq" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"egG" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"egH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) -"efX" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/upper/aft_hallway) -"ege" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"egk" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/folded_tent/cmd, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"egy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"egA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) -"egC" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"egG" = ( -/obj/structure/bed/chair{ - dir = 4 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"eho" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ +/area/almayer/hallways/lower/port_midship_hallway) +"egJ" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"egL" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ehv" = ( -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"egU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ehx" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_two) -"ehC" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"ehS" = ( -/obj/structure/surface/table/reinforced/prison, +/area/almayer/hallways/lower/repair_bay) +"egV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"eha" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, /obj/item/paper_bin/uscm{ - pixel_y = 7 + pixel_x = 9; + pixel_y = -3 }, -/obj/item/tool/pen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = 32 +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, +/obj/item/prop/magazine/dirty{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"ehe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"ehT" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper) -"ehW" = ( -/turf/open/floor/almayer/silvercorner/west, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"ehm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/command/computerlab) -"ehX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"ehZ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"ehp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"eiq" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"eir" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"ehA" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"ehC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"eit" = ( -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"eiB" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 +/area/almayer/living/briefing) +"ehH" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eiE" = ( /obj/effect/projector{ - name = "Almayer_Down4"; + name = "Almayer_Down1"; vector_x = 10; - vector_y = -102 + vector_y = -96 }, -/turf/open/floor/almayer/no_build/plate, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/aft_hallway) -"ejh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"ehN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"ehO" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ejA" = ( -/obj/structure/bed/sofa/south/grey/right, +/area/almayer/maint/hull/lower/l_f_p) +"ehV" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ejL" = ( +/area/almayer/maint/hull/upper/u_m_s) +"eii" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"eij" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + name = "weapon targetting computer" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eip" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"eiL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"eiO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"eiQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ejc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"ejT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"ejx" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"ejz" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12; - pixel_y = 5 +/obj/item/storage/firstaid/regular{ + pixel_x = 8; + pixel_y = -2 }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12 +/obj/item/storage/box/drinkingglasses{ + pixel_x = -7 }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "ejU" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10844,65 +11148,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"ekl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) -"ekm" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"eko" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"eki" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering) "ekq" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) -"ekr" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 +"eky" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/engine_core) +"ekI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/obj/structure/surface/table/reinforced/black, +/obj/item/tank/oxygen, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ekt" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/engineering/upper_engineering/port) +"ekL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"ekD" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/warden_office) -"ekG" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ekJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null +/area/almayer/maint/hull/lower/l_m_s) +"ekN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "ekT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -10910,159 +11189,173 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"elr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"eli" = ( +/obj/item/clothing/under/marine/dress, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"els" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/life_support{ +/area/almayer/engineering/laundry) +"elm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eln" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ pixel_x = -17 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"elu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"elP" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"elS" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"elo" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"elv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"elw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"elD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"elF" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"elM" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"elZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/squads/charlie) +"elW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"emb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"emw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"emg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"emh" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"emi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"emF" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"emH" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"emJ" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"emz" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"emC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"emG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "emK" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"emW" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +"emT" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/auxiliary_officer_office) +"emY" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/sign/safety/maint{ - pixel_x = 14; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"end" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"ena" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ene" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"enf" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"eng" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"enh" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"enj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"enb" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"eni" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) "enl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cargo_container/wy/mid, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"enC" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" +"enp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"env" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/hallways/upper/aft_hallway) +"enF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"enJ" = ( -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) "enM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -11078,28 +11371,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"enR" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) "enS" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"enY" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"eoe" = ( +"enT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"enW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) "eoi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -11114,132 +11402,136 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"eoj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"eoq" = ( +"eom" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"eov" = ( /obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"eor" = ( +/area/almayer/maint/hull/lower/l_f_s) +"eoH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"eoK" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 4 +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"eou" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/cryo_cells) -"eoC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"eoG" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "eoS" = ( /obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"eoY" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"epa" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "epe" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"epn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"epq" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ept" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"epO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"eps" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"epZ" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/command/cic) +"eqk" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"epz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/starboard_atmos) -"epC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"epL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 + dir = 8 }, -/obj/structure/platform{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"eqn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"eqw" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"eqf" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"eqm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; +/area/almayer/shipboard/brig/warden_office) +"eqM" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"eqo" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"eqv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/engineering/upper_engineering/starboard) +"eqO" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"era" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"ere" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + indestructible = 1; + unacidable = 1 }, -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"eqz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/warden_office) -"erk" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"erf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"erj" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"ern" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/command/cichallway) +"err" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "erA" = ( /obj/structure/machinery/shower{ dir = 4 @@ -11248,138 +11540,98 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"erG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"erR" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"erV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"erX" = ( +/obj/item/ammo_box/magazine/misc/mre, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"erS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_p) +"erZ" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"esa" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 8 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"erT" = ( -/obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"ese" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/item/tool/pen{ + pixel_y = -2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"esi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"esy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" +/obj/item/reagent_container/dropper{ + pixel_x = -1; + pixel_y = 9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"esA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"esD" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/machinery/biohazard_lockdown{ + pixel_x = 8; + pixel_y = 10 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"esF" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"esv" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) "esJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"esL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"esU" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"esP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"etk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"etn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"eto" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/hallways/hangar) +"etf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/black, +/obj/item/tool/pen, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/processing) -"etr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"etj" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"etm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"ets" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "31" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "etw" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -11387,79 +11639,55 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"etB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair/comfy{ +"etW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/bluefull, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) -"etF" = ( -/obj/structure/sign/safety/intercom{ - layer = 2.9; - pixel_x = -6; - pixel_y = 29 - }, -/obj/structure/machinery/botany/extractor{ - density = 0; - pixel_x = 15; - pixel_y = 16 +"eua" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/device/flashlight/pen{ - pixel_x = 14; - pixel_y = 15 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"eub" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/machinery/vending/hydroseeds{ - density = 0; - pixel_x = -7; - pixel_y = 16; - req_access_txt = "28" +/obj/structure/surface/table/almayer, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"etI" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/item/device/flash{ + pixel_y = -8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/warden_office) +"euf" = ( +/obj/structure/pipes/binary/pump/on{ dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"etQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"eui" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"euo" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"eul" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"eut" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_m_p) +"eur" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) "euu" = ( /obj/structure/platform, /obj/structure/target{ @@ -11468,22 +11696,36 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"euw" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) "euz" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"euA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"euI" = ( +"euF" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"euH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) "euX" = ( @@ -11493,16 +11735,34 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"evr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"euZ" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"evh" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"evi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"evp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "evv" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -11514,53 +11774,29 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"evF" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"evN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"evy" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"evX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"ewb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ewc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"ewj" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"evC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/lower/port_midship_hallway) -"ewn" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"evP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"ewq" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "ewt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -11570,57 +11806,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"eww" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" + }, +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "ewy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"ewG" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"exd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ +"ewH" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"exn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"exx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"exe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"exi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"exz" = ( +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) -"exr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"exu" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"exS" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) "exT" = ( /obj/effect/attach_point/weapon/dropship2/left_fore, /obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons, @@ -11642,76 +11866,127 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"eyA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +"eyq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"eys" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"eyK" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"eyu" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"ezq" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"eyx" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"ezA" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"eyz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ezE" = ( -/obj/structure/morgue/crematorium, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"ezK" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"eyD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ezQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/phone_base{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ezc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"ezf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"ezR" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"ezZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"eAa" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"ezl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"eAd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"ezp" = ( +/obj/structure/sign/safety/intercom{ + layer = 2.9; + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/machinery/botany/extractor{ + density = 0; + pixel_x = 15; + pixel_y = 16 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/structure/machinery/vending/hydroseeds{ + density = 0; + pixel_x = -7; + pixel_y = 16; + req_access_txt = "28" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"ezv" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"ezU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"ezX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"ezY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) "eAf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11721,93 +11996,54 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"eAn" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +"eAp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/structure/sign/safety/hvac_old{ - pixel_y = -26 +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"eAx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"eAo" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"eAz" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eAF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "eAG" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"eAI" = ( -/obj/structure/machinery/computer/demo_sim{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) "eAJ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"eAK" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eAQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"eAR" = ( -/obj/structure/machinery/chem_storage/medbay{ - dir = 1 +"eAP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/machinery/chem_storage/research{ - dir = 1; - layer = 3; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) "eAS" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -11815,102 +12051,81 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"eBc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"eBl" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"eBq" = ( -/turf/open/floor/almayer/no_build/plate, -/area/almayer/living/pilotbunks) -"eBr" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"eBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"eAT" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"eBT" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"eCa" = ( -/obj/structure/machinery/door/window/westleft{ - dir = 2 +/area/almayer/living/starboard_garden) +"eBa" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/shower, -/obj/item/tool/soap, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"eCe" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"eCf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"eCm" = ( -/obj/structure/bed/chair/bolted{ - dir = 1 +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"eCr" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"eBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/bedsheet/blue{ - layer = 3.2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/obj/structure/sign/safety/bridge{ + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"eBE" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"eBF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eBL" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"eBO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"eBQ" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"eBX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"eCs" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eCf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, /area/almayer/hallways/hangar) -"eCt" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "eCw" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -11942,117 +12157,84 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"eCF" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"eCN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"eCH" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"eCQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eCY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"eCJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"eCV" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"eCW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"eDc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"eDl" = ( -/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"eDm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"eDs" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"eDz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/almayer/living/pilotbunks) +"eDf" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/aft_hallway) +"eDA" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) "eDK" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"eDM" = ( +"eDL" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"eDY" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 + unacidable = 1; + unslashable = 1 }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"eDQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eDZ" = ( -/obj/structure/closet{ - name = "backpack storage" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"eDR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/mortarpack, -/obj/item/storage/backpack/marine/mortarpack, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"eDU" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha_bravo_shared) "eEh" = ( /turf/closed/wall/almayer, /area/almayer/command/lifeboat) -"eEq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) "eEr" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; @@ -12060,119 +12242,72 @@ }, /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"eEv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"eEC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"eEG" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) -"eEI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"eEN" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"eEV" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 2"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/light/containment{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"eEz" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"eFc" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 4"; - buildstate = 1 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"eEL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eEP" = ( +/obj/item/reagent_container/food/snacks/grown/poppy{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "eFe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"eFx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"eFD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/sign/safety/twilight_zone_terminator{ - pixel_x = 8; - pixel_y = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) "eFG" = ( /turf/closed/shuttle/dropship2{ icon_state = "73" }, /area/almayer/hallways/hangar) -"eFI" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/hull/lower/l_m_s) -"eFL" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"eFO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/aft_hallway) "eFP" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) -"eFW" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +"eFT" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"eFV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"eFZ" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"eGd" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"eGe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/port_midship_hallway) "eGf" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -12182,41 +12317,69 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"eGm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"eGn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +"eGh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/turf/open/floor/almayer/greencorner/north, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"eGv" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"eGD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/folder/white{ + layer = 2.9; + pixel_x = -8 + }, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"eGF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"eGA" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +"eGJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"eGB" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower) +/area/almayer/maint/hull/upper/u_f_s) "eGK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"eGZ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, +"eGO" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/aft_hallway) +"eGQ" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/engineering/upper_engineering/port) +"eHa" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "eHm" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -12227,100 +12390,101 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"eHq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) -"eHz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"eHs" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"eHv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"eHC" = ( -/obj/structure/machinery/door_control{ - id = "engidorm"; - pixel_x = 25; - pixel_y = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"eHQ" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"eIa" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"eIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"eHF" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer{ - layer = 3 +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"eHR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "eIl" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/almayer/command/securestorage) -"eIw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"eIy" = ( +/obj/structure/sink{ + pixel_y = 32 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/upper/aft_hallway) -"eIF" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"eII" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"eIB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/machinery/faxmachine/corporate/liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eIP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eIL" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"eIN" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "eIS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"eIU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"eIY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eJd" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eJe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"eJl" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"eJr" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "eJs" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -12328,6 +12492,28 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"eJu" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "eJx" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -12335,42 +12521,62 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"eJF" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"eJG" = ( -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"eJW" = ( +"eJy" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SE-out" }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"eJA" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"eKd" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"eJD" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"eJH" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 + }, +/obj/structure/phone_base/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -17; + pixel_y = 2 }, -/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/command/combat_correspondent) +"eJU" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"eKb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eKi" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "eKj" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -12378,27 +12584,6 @@ }, /turf/open/floor/plating, /area/almayer/living/offices) -"eKl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"eKp" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge4" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"eKq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) "eKs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12408,72 +12593,80 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"eKC" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eKE" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/officer_study) -"eKG" = ( -/obj/structure/machinery/landinglight/ds1{ +"eKy" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eKK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"eKW" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"eKA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"eLd" = ( -/obj/structure/closet/firecloset, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"eLK" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eKQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/chief_mp_office) +"eKR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"eKX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, -/turf/open/floor/almayer/plate, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"eLg" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"eLi" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"eLl" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, /area/almayer/maint/hull/lower/l_f_p) +"eLy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"eLA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "eLN" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"eLU" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/lower/port_midship_hallway) -"eMa" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) "eMb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -12481,12 +12674,33 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eMo" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"eMj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"eMk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"eMl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"eMA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/aft_hallway) "eMD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12505,144 +12719,137 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"eME" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"eMQ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard{ - pixel_x = -4 - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"eMR" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"eMS" = ( -/obj/structure/bed/chair/comfy/alpha{ +"eMT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"eMU" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"eMW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"eNd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"eNp" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"eMV" = ( +/obj/structure/machinery/computer/cameras/almayer/containment{ dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher{ + pixel_x = 7; + pixel_y = 7 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = -5; + pixel_y = -4; + req_one_access_txt = "19;28" }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"eNh" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"eNl" = ( +/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"eNB" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" +/area/almayer/living/grunt_rnr) +"eNo" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"eNt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 5 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/tool/pen{ + pixel_x = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +/obj/item/clipboard{ + pixel_x = -8 + }, +/obj/item/folder/white{ + pixel_x = -8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) "eND" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"eNR" = ( -/obj/structure/machinery/light{ - dir = 1 +"eNF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 3 }, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"eOb" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"eOq" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/general_equipment) +"eNQ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"eOf" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"eOi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) "eOu" = ( /turf/closed/wall/almayer, /area/almayer/living/synthcloset) +"eOz" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) "eOA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"eOG" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"eOI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/ce_room) "eOJ" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering) -"eOL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) "eON" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -12662,150 +12869,103 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"eOV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"eOW" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ePh" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 3"; + buildstate = 1 }, -/turf/open/floor/almayer/redcorner/west, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"ePu" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) -"eOY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ePg" = ( -/obj/structure/machinery/light{ - dir = 1 +"ePy" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ePL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/bed/chair/bolted{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"ePq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"ePs" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"ePw" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) -"ePz" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"ePF" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ePV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"ePI" = ( -/obj/structure/machinery/vending/cola{ - pixel_x = -6; - pixel_y = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"ePW" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ePK" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/squads/charlie) "ePX" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/pilotbunks) -"eQg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"eQm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"eQs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"eQp" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"eQB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"eQq" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"eQx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"eQG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"eQJ" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - dir = 4; - pixel_x = -16 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"eQR" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +"eQH" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/starboard_garden) "eQS" = ( /turf/closed/shuttle/dropship2{ icon_state = "81" }, /area/almayer/hallways/hangar) -"eQY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"eQZ" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"eRl" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 +"eQX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/upper/aft_hallway) +"eRk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "eRq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -12817,153 +12977,154 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"eRy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"eRt" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"eRF" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"eRQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"eRz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 + dir = 5 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"eRK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) "eRT" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"eSa" = ( -/obj/structure/machinery/light{ - dir = 4 +"eSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"eSH" = ( -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"eSI" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"eSM" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"eSs" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/starboard) -"eTh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eSB" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"eSD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"eSE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"eSF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"eSP" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"eTo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"eTy" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"eSV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"eTA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eTc" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"eTd" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"eTs" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"eTx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) "eTE" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"eTQ" = ( +"eTG" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"eTS" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eUd" = ( /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"eUk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/hallways/upper/aft_hallway) -"eUv" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/area/almayer/living/auxiliary_officer_office) +"eUb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"eUV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"eVe" = ( +/area/almayer/maint/hull/upper/u_m_s) +"eUs" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"eUD" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"eUJ" = ( /obj/structure/machinery/light{ - dir = 1 + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"eVg" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"eVm" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"eUO" = ( +/obj/structure/machinery/vending/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"eVh" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"eVs" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"eVw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "eVz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -12987,40 +13148,61 @@ }, /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/navigation) +"eVK" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"eVM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eVN" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/lifeboat) "eVR" = ( /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"eVX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"eVY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"eVZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eWf" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"eWe" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/living/pilotbunks) +"eWq" = ( /obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"eWj" = ( +/area/almayer/shipboard/starboard_point_defense) +"eWs" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"eWp" = ( -/obj/structure/pipes/vents/scrubber{ +/area/almayer/maint/hull/lower/l_f_p) +"eWz" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"eWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) "eWH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -13031,209 +13213,240 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"eWU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"eXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"eWL" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"eWS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"eWT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/obj/structure/machinery/iv_drip, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"eXk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/mirror{ - pixel_x = 28 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"eWV" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"eXf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 8; + pixel_y = -12 }, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Dropship Remote Control Console"; + pixel_y = 12; + shuttleId = "dropship_alamo"; + disabled = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"eXo" = ( +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"eXr" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) "eXy" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/cic) +"eXB" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/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, +/obj/item/ammo_magazine/pistol, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "eXD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"eXS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"eXH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/cups{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"eXO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "eYc" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"eYp" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/northeast, -/area/almayer/maint/hull/upper/u_a_p) -"eYr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"eYl" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"eYN" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"eZh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"eYs" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) -"eYz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"eYD" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"eYK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "31" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"eYL" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"eYM" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = list(); - req_access_txt = "26" - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"eYQ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"eYZ" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"eZj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"eZk" = ( +/obj/structure/machinery/autolathe/medilathe/full, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"eZC" = ( +/area/almayer/medical/hydroponics) +"eZt" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 - }, +/obj/structure/machinery/computer/cameras/almayer, /turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eZx" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, /area/almayer/maint/hull/upper/u_m_s) -"eZI" = ( -/obj/structure/machinery/light{ - dir = 8 +"eZA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/medical) +"eZG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"eZN" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"eZU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"faj" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fak" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fat" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"eZJ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"fau" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"eZY" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"faf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"fav" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"faH" = ( +/area/almayer/living/gym) +"fag" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/ot{ - pixel_y = 4 +/obj/item/paper_bin/uscm, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"faW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"fbc" = ( -/obj/structure/machinery/cm_vending/clothing/engi/charlie, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fbd" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/area/almayer/living/auxiliary_officer_office) +"faw" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = -25 }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"fbe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/surface/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 7; + pixel_y = 5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 5 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/item/storage/box/sprays{ + pixel_y = -3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"faz" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"faC" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"faO" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"faX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "fbj" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer{ @@ -13243,38 +13456,18 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"fbn" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"fbp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D3"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 +"fbo" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) "fbv" = ( /obj/structure/machinery/door/window/westright{ dir = 2 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"fbx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "fbF" = ( /obj/structure/bed/chair/comfy/blue, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13282,80 +13475,115 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"fbM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"fbT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"fbZ" = ( -/obj/structure/machinery/light/small{ +"fbQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"fce" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"fcd" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"fco" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"fcq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"fcz" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"fcD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) "fcE" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) -"fcH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"fcL" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"fdf" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_container/food/condiment/sugar{ - pixel_x = 10 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"fdh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/clothing/head/chefhat, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"fdm" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"fdn" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plastic{ + amount = 5 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"fcN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/golden_cup{ - desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; - pixel_x = -4; - pixel_y = 7 +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fcO" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "fdw" = ( /obj/structure/shuttle/part/dropship2/transparent/nose_top_right, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"fdy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"fdA" = ( +/obj/structure/machinery/door_control{ + id = "or03"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) "fdJ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -13366,28 +13594,59 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"fdV" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_lobby) -"fek" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fdP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"fer" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"feC" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"fdR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) -"feD" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"fdY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"fea" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"fel" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"fes" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_s) +"fet" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/research{ + dir = 4; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"fex" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) "feO" = ( /obj/structure/sink{ dir = 1; @@ -13402,20 +13661,15 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"feV" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"feR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; + dir = 4; + id = "crate_room4"; + name = "dilapidated storage shutters" }, -/obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "feZ" = ( /obj/structure/machinery/flasher_button{ id = "briefing_flash"; @@ -13429,79 +13683,68 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"ffg" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/living/briefing) -"ffr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ffv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"ffG" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ffH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp{ - pixel_x = 3; - pixel_y = 10 +"ffa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" }, -/obj/item/device/taperecorder, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"ffL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/area/almayer/living/bridgebunks) +"ffO" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"ffW" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_one) -"fgd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"ffY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) "fgf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"fgr" = ( +"fgo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"fgz" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"fgL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"fgD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) "fgM" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -13522,53 +13765,47 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"fgR" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, +"fgU" = ( +/obj/structure/prop/invuln/joey, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"fha" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"fhb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ +/area/almayer/maint/hull/lower/l_m_s) +"fhd" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) -"fhj" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) -"fht" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"fhz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"fhA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"fhn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"fhB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/hallways/hangar) +"fhq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"fhr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) "fhF" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -13579,49 +13816,89 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"fhG" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) +"fhJ" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/lower/l_m_s) "fhM" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"fhT" = ( +"fhN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fhP" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"fhU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "fia" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) +"fid" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"fim" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"fio" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"fip" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) "fir" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fis" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"fiN" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 +"fiy" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"fiI" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "fiP" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -13631,20 +13908,31 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fiU" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"fjd" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"fje" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-2"; - req_access = null +"fiQ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"fiS" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fiT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"fjs" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) +/area/almayer/squads/delta) "fjv" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -13654,19 +13942,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"fjz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"fjw" = ( +/obj/structure/target{ + name = "punching bag" }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "fjD" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -13674,111 +13955,105 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) -"fjF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fjH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/machinery/computer/secure_data{ - pixel_x = 17 - }, -/obj/structure/machinery/computer/card{ - pixel_x = -16 +"fjG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"fkb" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"fkc" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 }, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"fki" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"fjP" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fkk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"fjR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Dropship Remote Control Console"; - shuttleId = "dropship_normandy"; - disabled = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fjT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"fjU" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "fkp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_garden) -"fkM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"fkQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"fkU" = ( +"fkt" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_umbilical) -"fkY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"fle" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/workshop) -"flz" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"flF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"fkv" = ( +/obj/item/clothing/head/helmet/marine{ + pixel_x = 16; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/reagent_container/food/snacks/grown/poppy, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"fkB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"fkM" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"flo" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"flG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/hull/lower/l_f_s) +"flM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + name = "\improper Main Kitchen"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"flN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) +/area/almayer/engineering/lower/engine_core) "flY" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -13786,6 +14061,29 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"flZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"fma" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "fme" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -13795,50 +14093,27 @@ "fmh" = ( /turf/open/floor/almayer, /area/almayer/squads/bravo) -"fmp" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf, +"fmP" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"fmt" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"fmu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"fmA" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"fng" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/maint/hull/lower/l_a_p) +"fmZ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"fnc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"fnm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fnl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "fnr" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) @@ -13853,34 +14128,47 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_one) -"fnw" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) +"fnu" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) "fnD" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/chemistry) -"fnJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" +"fnG" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fnT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"fnL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"fnX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"fnU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"foa" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "fob" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -13896,182 +14184,183 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fom" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"fop" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +"foi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fov" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"foB" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"foA" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/general_equipment) +"foT" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"foW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"fpb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"foE" = ( /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"foR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/hull/upper/u_a_s) -"foU" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/shipboard/starboard_point_defense) +"fpp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/item/tool/kitchen/knife{ + pixel_x = 6 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fpl" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/cameras/dropship/two, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"fpo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/lower/l_f_p) +"fpE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"fpK" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"fps" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"fpD" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/u_a_p) "fpM" = ( /turf/open/floor/engine, /area/almayer/engineering/airmix) -"fqj" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"fqy" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "96" +"fpN" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/hangar) -"fqB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"fqC" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"fqE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"fqN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/silver/north, +/area/almayer/living/officer_study) +"fpR" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"fqW" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"fqd" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"fqZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"fqh" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"fql" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"fqy" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "96" + }, +/area/almayer/hallways/hangar) +"fqB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"fqC" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"fqT" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"frm" = ( -/turf/closed/wall/almayer/outer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"frc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"fro" = ( -/obj/structure/prop/cash_register/broken, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) +"frd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/scrubber, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"frk" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"frp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "frq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) -"frz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "perma_exit"; - name = "\improper Exit Shutters" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +"frw" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/starboard_garden) +"frT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"frK" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"frO" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop/hangar) +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"frV" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "frW" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -14079,184 +14368,142 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fsl" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/bag/trash{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/storage/bag/trash{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"fsw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"fsd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"fsx" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "fsB" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fsF" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"fsH" = ( +"ftl" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "51" + }, +/area/almayer/hallways/hangar) +"ftz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"ftB" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"ftH" = ( +/obj/structure/machinery/power/apc/power/east, +/obj/item/storage/box/nade_box/tear_gas, +/obj/item/storage/box/nade_box/tear_gas{ + pixel_x = 3; + pixel_y = 5 + }, /obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/mono, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"ftI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"ftP" = ( +/turf/open/floor/almayer/plating_striped, /area/almayer/engineering/upper_engineering/starboard) -"fsK" = ( +"ftQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"ftR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ftV" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + pixel_x = -4; pixel_y = 2 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"fsN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"fsP" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/briefing) -"fsS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"ftW" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"fub" = ( /obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 +/obj/structure/machinery/light{ + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/lower/port_midship_hallway) -"fte" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_y = -2 - }, -/obj/item/reagent_container/dropper{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/structure/machinery/biohazard_lockdown{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"ftg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"ftl" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "51" - }, -/area/almayer/hallways/hangar) -"ftt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Briefing Room" +"fud" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"ftu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ftE" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"fuc" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/shipboard/port_point_defense) +"fui" = ( +/obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fuj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/starboard_garden) -"fup" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/offices/flight) +"fuk" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"fut" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ful" = ( +/obj/structure/machinery/door_control{ + id = "crate_room"; + name = "storage shutters"; + pixel_x = -25; + pixel_y = -1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "fuC" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer{ @@ -14266,16 +14513,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"fuD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/lower/port_midship_hallway) "fuF" = ( /obj/structure/bed/chair{ buckling_y = 5; @@ -14287,51 +14524,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"fuU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"fvp" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"fvt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 7 +"fuG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/storage/box/cups{ - pixel_x = 3 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"fuI" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"fuJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"fuQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/storage/box/donkpockets{ - pixel_y = 19 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"fvb" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"fvc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"fvv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"fvq" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/command/lifeboat) +"fvB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fvA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - layer = 3.1; - pixel_x = -8 - }, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/squads/bravo) "fvE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14347,54 +14581,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"fvM" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/squads/req) -"fvN" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"fvQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"fvR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"fvK" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"fvT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"fvS" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"fwg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"fwa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/blue/southeast, /area/almayer/command/cichallway) "fwj" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ @@ -14403,24 +14611,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"fww" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/starboard_missiles) -"fwx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"fwE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) +"fwp" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) "fwG" = ( /obj/structure/bed{ can_buckle = 0 @@ -14458,57 +14651,67 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"fwL" = ( -/obj/structure/machinery/light{ - dir = 4 +"fxi" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"fwT" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer5" +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_midship_hallway) +"fxj" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"fwU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"fxf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"fxw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"fxx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"fxF" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fxH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"fxI" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/chemistry) +"fxS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "fxT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"fxU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "fxV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14516,145 +14719,231 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"fyi" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"fye" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs{ + pixel_y = 12 + }, +/obj/item/restraint/handcuffs{ + pixel_y = 6 + }, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton{ + pixel_x = -12 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"fyB" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/aft_hallway) -"fyI" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"fzd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"fze" = ( -/obj/structure/machinery/light{ +/area/almayer/shipboard/brig/warden_office) +"fyn" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"fyo" = ( +/obj/effect/attach_point/crew_weapon/dropship2, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"fyp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/starboard_garden) -"fzk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/general_equipment) -"fzm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"fzs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"fzt" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/shipboard/brig/cryo) +"fyr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fyu" = ( +/obj/item/tool/wet_sign, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"fzv" = ( +/area/almayer/maint/hull/upper/u_f_s) +"fyx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cl_shutters 2"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"fyN" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"fyV" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/engineering/upper_engineering/port) +"fzc" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"fzg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/cryo) -"fzJ" = ( +/area/almayer/squads/alpha) +"fzu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"fzH" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"fzI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"fzP" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = -8; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"fzR" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"fzV" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"fzW" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"fAl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fAa" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"fAg" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/port) "fAn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/almayer, /area/almayer/squads/req) +"fAt" = ( +/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/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) "fAw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/command/capt, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"fAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"fAZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +"fAz" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"fAF" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"fAG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"fBj" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_f_p) +"fAQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"fBk" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"fAS" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fAT" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - pixel_x = 12; - pixel_y = 13 + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fBl" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"fBf" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_two) "fBm" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; @@ -14662,300 +14951,238 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"fBw" = ( +"fBr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fBz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + name = "\improper Perma Cells" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"fBH" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/shipboard/brig/perma) +"fBs" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_m_p) +"fBE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) "fBJ" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"fBS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 1 +"fCl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"fCq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"fCr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"fCH" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"fCI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"fBY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"fCa" = ( -/obj/structure/machinery/cm_vending/clothing/leader/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"fCd" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"fCh" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"fCj" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/medical) -"fCA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"fCY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"fCZ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/maint/hull/lower/l_f_s) +"fCQ" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 2"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"fDa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"fDe" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northwest, -/area/space) -"fDj" = ( -/obj/structure/surface/table/almayer, -/obj/item/shard, -/obj/item/tool/extinguisher, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"fDk" = ( -/obj/structure/platform{ +/obj/structure/machinery/light/containment{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"fDS" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"fDU" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"fDd" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"fDV" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"fDW" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 4 +/area/almayer/maint/hull/upper/u_a_s) +"fDu" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"fEi" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"fEc" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fEh" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/area/almayer/squads/req) "fEk" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fEm" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) +"fEp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"fEq" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) "fEA" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"fEM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"fEY" = ( -/obj/item/tool/screwdriver, -/obj/structure/machinery/light{ +"fFb" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/aft_hallway) +"fFc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"fFl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) "fFn" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fFL" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fFN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +"fFz" = ( +/obj/structure/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"fFP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"fFV" = ( -/obj/structure/machinery/light/small, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"fFZ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"fFM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"fFQ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"fFS" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fGk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/suit_storage{ +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"fGn" = ( +/obj/structure/sign/safety/maint{ pixel_x = -17 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"fGf" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"fGy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"fGh" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"fGC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"fGG" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/wy, -/obj/structure/machinery/computer/cameras/containment{ - dir = 4; - layer = 2.981; - name = "Research Cameras"; - pixel_y = 16 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"fGJ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"fGR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fHa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/accessory/stethoscope, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"fHd" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"fHe" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/area/almayer/engineering/upper_engineering/starboard) "fHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14977,42 +15204,12 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fHx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"fHK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fHL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"fHR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"fHX" = ( -/obj/structure/safe, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "fHZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical{ @@ -15024,13 +15221,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"fId" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) "fIs" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -15039,316 +15229,412 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fIu" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) +"fIv" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) "fIC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fIZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ +"fID" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - pixel_y = 13 + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"fIJ" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"fIM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"fJb" = ( -/obj/structure/morgue{ - dir = 8 +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"fIU" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"fJr" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"fJw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_p) +"fJh" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"fJE" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"fJA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"fJC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"fJF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_two) +"fJH" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = 21; + pixel_y = 43 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"fJS" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"fJP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"fJW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"fKc" = ( -/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"fKl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) -"fKk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"fKs" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"fKo" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/item/storage/bag/plants{ + pixel_x = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fKB" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 +/obj/item/storage/bag/plants{ + pixel_y = -3 }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 +/obj/item/tool/scythe, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "fKE" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/port_point_defense) -"fKF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"fKK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"fKM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fKL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"fKP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) "fKQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"fLc" = ( -/obj/structure/closet{ - name = "boxing attire" +"fLe" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"fLx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/engineering/lower/workshop) +"fLt" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fLK" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"fMl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"fLv" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/processing) +"fLH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"fLI" = ( +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"fLL" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - dir = 1; - id_tag = "CO-Office"; - name = "\improper Commanding Officer's Office"; - req_access = null; - req_access_txt = "31" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"fMw" = ( -/turf/open/floor/almayer/green/southwest, /area/almayer/hallways/upper/aft_hallway) -"fMz" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"fMB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fLT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"fMF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"fMX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fLW" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/status_display{ - pixel_y = -32 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/vending/coffee, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"fNb" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"fMo" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/maint/hull/upper/u_a_p) +"fMJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"fNm" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"fNz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"fMY" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"fNc" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/chemistry) -"fNC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"fNi" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"fNl" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"fNA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) "fND" = ( /turf/closed/wall/almayer, /area/almayer/command/computerlab) -"fNF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"fNG" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"fNI" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"fNQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 9 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"fNM" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 1"; - buildstate = 1 +/area/almayer/living/briefing) +"fNU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"fNN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"fOh" = ( +/obj/structure/cargo_container/wy/mid, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 }, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 42 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fOj" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fOk" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) -"fNQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"fOn" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"fNT" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/closet/bombcloset, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"fNU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/command/lifeboat) +"fOt" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"fNV" = ( -/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower) +"fOu" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"fOz" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"fOM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"fNW" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) -"fNX" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/living/starboard_garden) -"fOq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fOZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/toy/crayon/blue{ - pixel_x = -9; - pixel_y = -5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fOJ" = ( -/obj/structure/machinery/light/small, +/area/almayer/shipboard/weapon_room) +"fPc" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"fPf" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) +/area/almayer/shipboard/starboard_point_defense) +"fPi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) "fPo" = ( /obj/structure/anti_air_cannon, /obj/structure/surface/table/almayer, @@ -15362,18 +15648,70 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"fPr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +"fPu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fPw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"fPD" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"fPN" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/holohoop{ + density = 0; + pixel_y = 29 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"fPE" = ( +/area/almayer/living/starboard_emb) +"fPO" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"fPS" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"fQh" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"fQa" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"fQd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "fQl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, @@ -15382,99 +15720,96 @@ "fQp" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"fQs" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"fQt" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"fQv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"fQw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"fQy" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"fQz" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 8 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) "fQA" = ( /obj/structure/shuttle/part/dropship2/left_outer_wing_connector, /turf/open/space/basic, /area/almayer/hallways/hangar) -"fQN" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null +"fQO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"fQV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"fRf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"fQU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/area/almayer/command/cichallway) +"fRG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fRJ" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"fRS" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower) -"fQV" = ( +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"fRV" = ( +/obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"fQW" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"fRk" = ( -/obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"fRF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"fRO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"fRQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/living/grunt_rnr) "fRW" = ( /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fRX" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) "fRY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15494,127 +15829,150 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"fSf" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"fSo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"fSq" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"fSr" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"fSs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"fSh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"fSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"fSC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/shipboard/brig/medical) +"fSj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"fSD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"fSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "fSK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/basketball) -"fTk" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"fTm" = ( -/obj/structure/largecrate/random/barrel/blue, +"fSN" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"fTM" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"fTN" = ( -/obj/structure/machinery/firealarm{ +/area/almayer/command/cichallway) +"fSP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"fTb" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fTj" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cichallway) +"fTu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"fTy" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"fTz" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"fTC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"fTK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "fTR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"fTZ" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"fUo" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"fUy" = ( -/obj/structure/pipes/vents/pump, +"fUe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"fUj" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"fUk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"fUE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/autoinjectors{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/device/mass_spectrometer{ - pixel_x = 8 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 9 + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 8; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"fUp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fUr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) "fUF" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -15625,28 +15983,35 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"fUP" = ( -/obj/structure/platform, +"fUJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"fUL" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/obj/item/mortar_shell/incendiary, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"fUO" = ( +/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fUR" = ( +/area/almayer/hallways/hangar) +"fUQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"fUT" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"fUX" = ( -/obj/structure/machinery/door_control{ - id = "pobunk2"; - name = "PO2 Privacy Shutters"; - pixel_x = -24 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"fUY" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/engineering/lower) "fUZ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/phone_base/rotary{ @@ -15657,47 +16022,39 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"fVd" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 1; - name = "\improper Requisitions Storage" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"fVf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "almayerlink_OT1_req" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"fVl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "north_central_checkpoint"; - name = "\improper Checkpoint Shutters" +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 2"; + name = "\improper Courtyard Divider" }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"fVp" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"fVv" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"fVn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"fVy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"fVx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cic) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) "fVA" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -15725,13 +16082,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"fVL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) "fVO" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -15742,19 +16092,39 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) +"fWd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"fWl" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"fWs" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) "fWv" = ( /turf/closed/wall/almayer, /area/almayer/living/offices/flight) -"fWz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) "fWB" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -15765,181 +16135,200 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"fWC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "Perma 2L"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"fWF" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) "fWO" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/delta) -"fWQ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = -27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"fWS" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"fXe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"fXn" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 +"fXc" = ( +/obj/structure/closet{ + name = "boxing attire" }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"fXy" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 +/area/almayer/living/gym) +"fXo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"fXp" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_f_s) +"fXw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "fXH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"fXW" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +"fXI" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/cells) +"fXL" = ( +/obj/structure/window/framed/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fXX" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"fYA" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"fYF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - pixel_y = 7 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"fXN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"fYS" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fYV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"fYf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/maint/hull/upper/u_m_p) +"fYg" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"fZg" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +"fYA" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"fYB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fZj" = ( -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"fZw" = ( -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"gad" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"gai" = ( -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "delivery outlet"; - pixel_x = -1; - pixel_y = 25; - range = 0 +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"fYO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"fYQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"fYW" = ( +/obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"gaq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/mirror{ - pixel_x = 29 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/sterile, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"fZd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fZj" = ( +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"fZo" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"fZt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"fZQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"gaj" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"gas" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) "gay" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/upper_medical) -"gaR" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"gaF" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/device/reagent_scanner, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"gaN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/cryo) "gaY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -15950,110 +16339,151 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) -"gbw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"gby" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"gbD" = ( +"gbc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"gbJ" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"gbe" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"gbK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"gbR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"gbl" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"gbv" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gbB" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gbF" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"gbL" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"gbV" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cichallway) "gcb" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"gcJ" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"gcL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/stamp/ro{ - name = "spare requisitions officer's rubber stamp"; - pixel_x = -7; - pixel_y = 11 +"gcm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"gcp" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"gcS" = ( -/turf/open/floor/almayer/red, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gcq" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/aft_hallway) +"gcP" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"gcR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"gcU" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "gdl" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"gds" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 1 - }, +"gdK" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"gdv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"gdx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/almayer/maint/hull/upper/u_m_p) +"gdV" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/engineering/port_atmos) -"gdy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"gdC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"gdI" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"gec" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/living/pilotbunks) +"geg" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"gei" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"gel" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"gej" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "gey" = ( /obj/structure/ladder{ height = 2; @@ -16061,60 +16491,38 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/upper_medical) -"geE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"geH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"geN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"geC" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"geD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"geS" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"geV" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"gfa" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower) -"gfe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"gfi" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"gfk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"geX" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) +"geZ" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"gfw" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/sign/safety/maint{ + pixel_x = 14; + pixel_y = -32 }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "gfA" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -16122,37 +16530,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"gfN" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/incendiary, -/obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"gfS" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"gfV" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"gga" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"ggc" = ( -/obj/structure/machinery/light{ - dir = 1 +"gfT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/command/cic) +"gfW" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"gge" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"ggf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"ggi" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"ggp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "ggF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16162,116 +16573,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"ggH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"ggJ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"ggN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/kepler_crisps{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/toy/deck{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 33 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) +"ggQ" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "ggS" = ( /turf/closed/shuttle/dropship2{ icon_state = "76" }, /area/almayer/hallways/hangar) -"ggU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"ghd" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ghf" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/machinery/light{ +"ghz" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/structure/filingcabinet/security{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/chief_mp_office) -"ght" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Weyland-Yutani Office" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cl_shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"ghv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"ghD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"ghE" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"ghF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ghG" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) "ghO" = ( /obj/structure/toilet{ dir = 1 @@ -16286,46 +16602,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"ghT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"ghV" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ghY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"gib" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/maint/hull/upper/u_f_p) +"gih" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gik" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_y = -32 +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/ce_room) +"gil" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/obj/structure/sign/safety/medical{ - pixel_x = 15; - pixel_y = -32 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) -"gim" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/ce_room) -"gio" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/barricade/handrail{ + dir = 4; + layer = 3.3; + pixel_y = 3 + }, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 3.3; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/engineering/port_atmos) "gir" = ( /obj/structure/machinery/light, /obj/structure/ladder{ @@ -16334,240 +16652,113 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"giw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"giA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"giu" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"giE" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"giQ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) -"gjc" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southeast, -/area/space) +/area/almayer/command/corporateliaison) +"giK" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/cic) +"giN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) "gje" = ( /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"gjh" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"gjj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Nurse Office"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lockerroom) -"gjp" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"gjU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"gjX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"gkd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/starboard_umbilical) -"gke" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, +"gjy" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gkn" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/area/almayer/maint/hull/upper/u_a_s) +"gjM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"gky" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_a_p) +"gka" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"gkA" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"gkp" = ( /obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +/obj/item/stack/folding_barricade/three, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gkE" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 - }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gkF" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 +/area/almayer/maint/hull/lower/l_f_s) +"gkv" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"gkC" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"gkH" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"gkI" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/aft_hallway) -"gkN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"gkQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gkX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"glg" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/starboard_missiles) -"glh" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"glr" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer, -/area/almayer/medical/containment/cell/cl) -"glz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/monocle, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/weapon/pole/fancy_cane{ - pixel_x = 5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"glJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"gkU" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"glM" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"glT" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) -"glX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"glg" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/starboard_missiles) +"glx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"glI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gmb" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/starboard_garden) -"gmo" = ( +/area/almayer/living/briefing) +"gmf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"gmq" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) "gmr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/grunt_rnr) -"gmF" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +"gmE" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) "gmG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16577,10 +16768,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"gmK" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"gmH" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"gmN" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 12"; + buildstate = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "gmU" = ( /turf/closed/wall/almayer, /area/almayer/living/officer_study) @@ -16602,103 +16799,176 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"gnC" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +"gnq" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"gnt" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"gnE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gnM" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"gnA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gou" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/port_midship_hallway) -"gox" = ( -/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/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + dir = 8; + name = "\improper Containment Airlock" }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"goy" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"gnB" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"gnD" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"gnK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) -"goE" = ( -/obj/structure/machinery/light, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Cryogenics Bay"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"gnP" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"gnQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"gnS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"gnT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"gnU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gog" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"goh" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"goH" = ( -/obj/structure/platform{ +/area/almayer/maint/hull/upper/u_m_p) +"gon" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"goC" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"goK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"goR" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"gpd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"goT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"goW" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"goX" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"goY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "gpg" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -16707,125 +16977,98 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"gpj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) +"gpk" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "gpo" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gpx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"gpz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"gpB" = ( +"gpp" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/general_equipment) +"gpt" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"gpF" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gpM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"gpH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/offices/flight) +"gqc" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_a_s) "gqh" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"gqi" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/pilotbunks) -"gqm" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"gqr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/pump{ +"gqn" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"gqI" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gqK" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gqM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"gra" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"grp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"gry" = ( +"gqv" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"grA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"gqy" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) -"grK" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +"gqC" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"gre" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"grt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"grB" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"grL" = ( +/obj/structure/closet/toolcloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) "grN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -16840,134 +17083,112 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"grW" = ( -/obj/structure/pipes/unary/freezer, -/obj/structure/machinery/power/apc/power/north, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"gsh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"gsn" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) -"gsw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"gsx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"grT" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gsE" = ( -/obj/structure/barricade/handrail{ - dir = 4 +/area/almayer/hallways/hangar) +"gsc" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gsi" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/down/almayer{ + dir = 1; + id = "almayerlink" }, -/obj/structure/surface/rack, -/obj/item/stack/tile/carpet{ - amount = 20 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"gsB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"gsN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_y = 5 }, -/obj/item/storage/firstaid/regular, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/living/numbertwobunks) "gsO" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/general_equipment) -"gsT" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, -/area/almayer/hallways/hangar) -"gtm" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +"gsP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/structure/sign/catclock{ + pixel_y = 32 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"gsR" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"gsX" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gsY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"gtd" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/starboard_emb) -"gtv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"gtz" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"gte" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"gtf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"gtj" = ( +/obj/structure/platform{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gtC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "gtI" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"gtL" = ( -/turf/open/floor/almayer/red/north, +"gtJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"gtQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/computer/squad_changer{ + dir = 8; + layer = 2.99; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "gtU" = ( /obj/structure/machinery/shower{ @@ -16987,148 +17208,93 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"gua" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"gtX" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"gub" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_a_p) -"gug" = ( -/obj/structure/disposalpipe/segment{ +"guJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"guz" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"guT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"guE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/chief_mp_office) -"guG" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"guH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"guI" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"guJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"guO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Auxiliary Support Officer's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"guP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"guQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "guW" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"gvf" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"gvq" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"guZ" = ( +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/orange/west, +/area/almayer/shipboard/brig/lobby) +"gvj" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"gvk" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"gvt" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 1 +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gvx" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "gvz" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"gvF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"gvQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"gvX" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) "gwb" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"gwf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"gwo" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"gwq" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"gww" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gwm" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gwy" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/barricade/handrail/medical{ + dir = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gwK" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"gwG" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"gwS" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "gwX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -17139,77 +17305,50 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gwZ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_container/food/drinks/cans/souto, -/obj/item/reagent_container/food/snacks/margheritaslice{ - desc = "A slice of classic pizza ruined by the corps."; - name = "dirty margherita slice"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8 - }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/stack/medical/ointment{ - layer = 3.5; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 7 - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) "gxc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"gxe" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"gxm" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/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, -/obj/item/ammo_magazine/pistol, -/obj/structure/machinery/light{ +"gxd" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"gxh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"gxl" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"gxp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gxr" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "gxs" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -17217,53 +17356,77 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"gxz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ +"gxC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ dir = 8 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"gxI" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"gxO" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/maint/hull/upper/u_f_p) -"gxT" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4; + layer = 2.99; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"gxZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"gya" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"gyc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) "gyg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"gyq" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +"gyk" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 +/obj/structure/sign/safety/medical{ + pixel_x = -17; + pixel_y = 6 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -9 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"gyr" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) "gys" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -17274,65 +17437,88 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gyv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"gyy" = ( +"gyz" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"gyG" = ( -/obj/structure/pipes/vents/scrubber{ +/area/almayer/medical/lower_medical_lobby) +"gyD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"gyF" = ( +/obj/structure/machinery/botany/editor{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"gyO" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/redcorner/north, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) -"gzd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gyQ" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gyS" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gyV" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gzg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"gzi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "gzl" = ( /obj/effect/attach_point/fuel/dropship2, /turf/closed/shuttle/dropship2/transparent{ icon_state = "28" }, /area/almayer/hallways/hangar) -"gzC" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/briefing) -"gzM" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/warden_office) -"gzS" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" +"gzs" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/cryo) +"gzv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/light{ +/obj/structure/bed/chair{ dir = 4 }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/area/almayer/maint/hull/lower/l_f_s) "gzT" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 1; @@ -17340,40 +17526,120 @@ }, /turf/open/floor/engine/nitrogen, /area/almayer/engineering/airmix) +"gzV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/ashtray/glass{ + pixel_x = -6 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_y = 7 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"gzY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gAa" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) "gAb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"gAl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"gAc" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"gAu" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) "gAv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"gAL" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +"gAy" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"gAC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"gAR" = ( -/obj/structure/machinery/optable, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"gAS" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"gAX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) +/area/almayer/medical/lockerroom) +"gAZ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"gBe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "gBf" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -17382,29 +17648,38 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"gBi" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "gBl" = ( /obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"gBm" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +"gBy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"gBB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"gBx" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"gBI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"gBN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) "gBU" = ( /obj/structure/machinery/light, /obj/structure/surface/table/woodentable/fancy, @@ -17421,29 +17696,23 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"gCf" = ( -/obj/structure/machinery/light{ - dir = 8 +"gCc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"gCk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"gCh" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/command/cichallway) -"gCl" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rewire{ - pixel_y = -32 +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"gCo" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "gCq" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -17451,146 +17720,85 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/execution) -"gCt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"gCz" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower/engine_core) -"gCB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"gCF" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +"gCE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"gCK" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/weapon/gun/rifle/m41aMK1/ap, -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"gCP" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_a_s) +"gCZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "gDc" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) -"gDd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"gDx" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"gDl" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"gDv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14; - wrenchable = 0 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"gDF" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) "gDM" = ( /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"gDO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/ashtray/glass{ - pixel_x = -6 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_y = 7 +"gEg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 11 +/obj/item/toy/crayon/blue{ + pixel_x = -9; + pixel_y = -5 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gDY" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) +/area/almayer/living/grunt_rnr) "gEm" = ( /obj/structure/bookcase/manuals/engineering, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"gEp" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"gEM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"gEy" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"gEH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) "gES" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -17608,21 +17816,6 @@ /obj/structure/machinery/faxmachine/uscm/brig/chief, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"gEW" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"gEZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gFk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "gFp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -17632,59 +17825,145 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"gFO" = ( +"gFr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"gGh" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gGt" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"gFz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"gFA" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/living/briefing) +"gFI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/squad_changer{ + pixel_x = -9 + }, +/obj/structure/machinery/computer/card{ + pixel_x = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"gFJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"gGv" = ( -/turf/open/floor/almayer/emeraldcorner/north, +"gFS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"gFX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) -"gGA" = ( +"gGc" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer/orange, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"gGk" = ( +/turf/open/floor/almayer/silvercorner/east, /area/almayer/hallways/upper/aft_hallway) -"gGL" = ( -/obj/structure/machinery/light{ - dir = 1 +"gGp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) -"gGV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gHi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/hallways/lower/starboard_midship_hallway) +"gGw" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"gGy" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 }, /turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"gHq" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) +"gGQ" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"gGW" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"gGX" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"gHm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "gHr" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"gHu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"gHw" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "gHF" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -17697,37 +17976,38 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"gHJ" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, +"gHQ" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"gHS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"gIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"gIm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"gIh" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "gIt" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/emails, @@ -17737,6 +18017,23 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) +"gIP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"gIW" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "gJa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -17746,6 +18043,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"gJb" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) "gJg" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/item/ammo_magazine/shotgun, @@ -17762,32 +18065,59 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"gJm" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gJh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"gJw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 4; - pixel_y = 12 +/turf/open/floor/almayer/orangecorner, +/area/almayer/command/telecomms) +"gJk" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"gJl" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Dropship Remote Control Console"; - pixel_y = -12; - shuttleId = "dropship_normandy"; - disabled = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"gJp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_missiles) +"gJr" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"gJz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "gJA" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin/uscm, @@ -17796,48 +18126,34 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"gJC" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - name = "\improper Research Reception Laboratory" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"gJW" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gKe" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"gKf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"gJH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"gJL" = ( -/turf/open/floor/almayer/plating_striped/north, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) -"gKs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) -"gKt" = ( +"gKg" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, +/obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/perma) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "gKu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -17845,73 +18161,101 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"gKD" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +"gKy" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"gKI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gKB" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"gKE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"gKJ" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"gKU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"gLd" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"gLg" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"gLi" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gLl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cl_shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower) -"gLm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cichallway) -"gLo" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"gKN" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"gKQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gLu" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/hallways/hangar) +"gKR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower) +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"gKW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"gLt" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gLC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) "gLG" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -17921,36 +18265,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"gLL" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"gLM" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gLU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"gLN" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"gLS" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gMg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"gMa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_y = -2; + req_one_access_txt = "3;22;19" }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/offices/flight) +"gMo" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"gMy" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) "gMA" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -17958,199 +18310,145 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"gMJ" = ( -/obj/structure/largecrate/random/barrel/white, +"gME" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"gML" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"gMT" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/maint/hull/lower/l_m_s) +"gMF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"gNf" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gNo" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"gNp" = ( /obj/structure/bed/chair{ - dir = 16 + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"gMW" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"gNA" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"gNJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"gNM" = ( -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"gNP" = ( -/obj/structure/platform{ - dir = 8 +/area/almayer/squads/alpha_bravo_shared) +"gNu" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"gNH" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gNX" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"gNZ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"gNK" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/cmcap, -/obj/item/clothing/head/cmcap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"gOc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"gOf" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gOi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/door/window/tinted{ + dir = 2 }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = 25; - req_access_txt = "200" +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"gNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gOj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"gOm" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"gNV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"gOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"gOx" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"gOs" = ( /obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"gOB" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"gOE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"gOC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"gOJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"gOS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"gOP" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"gOR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"gPs" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"gPe" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"gPi" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"gPn" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"gPq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"gPt" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cic) +"gPy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"gPu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_2"; + name = "\improper Bathroom" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/living/port_emb) "gPK" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -18160,217 +18458,150 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"gPL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) "gPN" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"gPU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"gPP" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"gPV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "gQe" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/upper_engineering) -"gQg" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"gQm" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/southwest, +"gQk" = ( +/turf/open/floor/almayer/uscm/directional/northeast, /area/almayer/living/briefing) -"gQn" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gQw" = ( -/obj/structure/machinery/light{ - dir = 8 +"gQp" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"gQt" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) "gQz" = ( /turf/closed/shuttle/dropship2{ icon_state = "25" }, /area/almayer/hallways/hangar) -"gQH" = ( -/obj/structure/bed/chair{ - dir = 8 +"gQJ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/spacecash/c500{ + pixel_x = 4; + pixel_y = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"gQK" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"gRa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/ashtray/bronze{ + pixel_x = -13; + pixel_y = -4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"gRf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"gQX" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"gRt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"gRw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 5 +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"gRD" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/storage/box/donkpockets{ - pixel_x = -4; - pixel_y = 19 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"gRH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 16 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"gRP" = ( -/obj/structure/bed/chair/comfy/bravo{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gRM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"gRQ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/lower/repair_bay) +"gRT" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "gSa" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gSg" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"gSv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +"gSo" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"gSp" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"gSB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"gSt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"gSJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) "gSO" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"gSZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"gTb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"gTg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) -"gTj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"gSQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"gTk" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"gSV" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) "gTp" = ( /turf/closed/shuttle/dropship2{ icon_state = "47" @@ -18382,173 +18613,235 @@ /obj/item/device/binoculars, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"gTz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gUe" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"gUp" = ( -/obj/structure/disposalpipe/junction{ +"gTB" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ dir = 4; - icon_state = "pipe-j2" + pixel_x = -16 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"gTQ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"gTR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gTT" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"gTW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"gUa" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/evidence_storage) +"gUj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"gUm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) "gUu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"gUA" = ( -/obj/structure/bed/chair{ +"gUy" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"gUC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"gUB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/engineering/lower/engine_core) +"gUI" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "62" }, +/area/almayer/hallways/hangar) +"gUL" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"gUI" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "62" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/hangar) -"gUN" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"gUP" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/sign/safety/terminal{ - pixel_x = -6; - pixel_y = -26 +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 1"; + name = "Containment Lockdown"; + pixel_x = -7; + pixel_y = 1; + req_one_access_txt = "19;28" }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -26 +/obj/structure/machinery/door_display/research_cell{ + id = "Containment Cell 1"; + name = "Cell 1 Control"; + pixel_x = 5; + pixel_y = 2 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 20; - pixel_y = -26 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"gUT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"gVf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"gUU" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; pixel_y = 1 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_umbilical) -"gVh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"gVv" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"gUV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"gVx" = ( -/obj/item/tool/wet_sign, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"gUZ" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"gWf" = ( +/area/almayer/maint/hull/lower/l_f_p) +"gVo" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -4; - pixel_y = 6 +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/hull/upper/u_f_p) +"gVq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"gWn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"gWt" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 +/obj/structure/bed/chair/bolted{ + dir = 4 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"gWx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"gVr" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gVu" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"gVw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"gVF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"gVG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_1"; + name = "\improper Bathroom" }, -/obj/structure/platform{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_emb) +"gVO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Study" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"gVW" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/lower/l_f_p) +"gWr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D3"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"gWs" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "gWC" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/toy/deck, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"gWG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gWW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"gXd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/port_midship_hallway) -"gXe" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"gWF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"gWN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"gWX" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "gXg" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -18557,27 +18850,40 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"gXB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +"gXr" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/engineering/lower) -"gXG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"gXQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_s) -"gXS" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"gXZ" = ( -/obj/structure/largecrate/random/barrel/red, +"gXu" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) +"gXx" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"gXH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"gXV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc02"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"gYf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "gYi" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -18588,50 +18894,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"gYv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"gYP" = ( -/obj/structure/largecrate/random/case/double, +"gZe" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"gZh" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"gYU" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"gYV" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"gZi" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"gZj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"gZl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) +/area/almayer/living/offices/flight) "gZn" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 3"; @@ -18642,253 +18911,225 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"gZt" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"gZN" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/barricade/handrail{ - dir = 4; - layer = 3.3; - pixel_y = 3 +"gZv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/barricade/handrail{ - dir = 8; - layer = 3.3; - pixel_x = -1; - pixel_y = 3 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_umbilical) +"gZx" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/cic) +"gZy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/engineering/port_atmos) -"gZQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"gZR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"gZZ" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"gZT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/engineering/port_atmos) -"haf" = ( -/obj/structure/machinery/cryopod, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"gZV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"hag" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access = "19;21" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "hak" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"has" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"haA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"haE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"haI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +"han" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"hap" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"haq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"hay" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"haB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "haJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"haL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"haP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"haX" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = -16 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"haZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"hbh" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"hbj" = ( +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = 7; + pixel_y = -2 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"haQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 2 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = -32 +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"haT" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"hbc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/storage/box/gloves{ + layer = 3.1; + pixel_x = 7; + pixel_y = 2 }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 6 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/obj/item/storage/box/masks{ + layer = 3.1; + pixel_x = -7; + pixel_y = 2 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hby" = ( -/obj/structure/ladder{ - height = 1; - id = "med1" +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"hbD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -1 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"hbo" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/port) +"hbp" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"hbF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"hbS" = ( +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"hbZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hbO" = ( -/obj/structure/closet/crate/internals, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"hce" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/navigation) +/area/almayer/living/gym) +"hcc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) "hcf" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"hcz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hcA" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"hcG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) +"hcu" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) "hcL" = ( /turf/closed/wall/almayer, /area/almayer/living/captain_mess) -"hcM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"hcN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Lounge" +"hcR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"hcZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"hdk" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"hda" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "hdt" = ( /turf/closed/shuttle/dropship2{ icon_state = "14" @@ -18898,18 +19139,32 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"hdT" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"hdV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" +"hdR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"hdW" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) "heh" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) @@ -18919,53 +19174,101 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"her" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) +"heo" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower) "hes" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"heZ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/warden_office) -"hfo" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"heu" = ( +/obj/structure/machinery/photocopier, +/obj/item/paper{ + color = "grey"; + info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; + name = "photocopied image"; + pixel_y = 5 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"hfy" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"hex" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"heB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/cryo_cells) +"heC" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/hydroponics) +"heE" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"heH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"hfH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/scrubber, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"hfP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hfp" = ( +/obj/structure/machinery/scoreboard_button{ + id = "basketball"; + name = "Scoreboard Reset Button"; + pixel_x = -20 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"hfq" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"hfx" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment) +"hfR" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"hfV" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "hfW" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -18979,71 +19282,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"hgc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"hgd" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/aft_hallway) -"hgu" = ( -/obj/structure/largecrate/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"hgi" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_s) +"hgk" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "hgw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"hgJ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"hgL" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"hgN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"hgQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"hgD" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + isopen = 1; + starting_helmet_type = null; + starting_mask_type = null; + starting_suit_type = null; + starting_tank_type = null }, -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) +/area/almayer/engineering/upper_engineering/port) +"hgH" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) "hgR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"hhc" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"hhp" = ( -/obj/structure/disposalpipe/up/almayer{ - id = "almayerlink_OT_req" - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hhr" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/cic) -"hhs" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/cm_vending/clothing/medical_crew{ +"hhe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ density = 0; - pixel_y = 16 + pixel_y = 9 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"hhk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) "hhw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/engineering_guide{ @@ -19055,11 +19351,30 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hhC" = ( +"hhD" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"hhE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"hhF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"hhG" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/obj/item/facepaint/sniper, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/upper/u_m_s) "hhH" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -19071,155 +19386,129 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_two) -"hib" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"hhP" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"hhS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"hhV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/aft_hallway) -"hip" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"hiC" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"hiO" = ( -/obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer/plate, +"hhY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) -"hiY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"hja" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"hjb" = ( +"hie" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"hjf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"hjl" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"hiz" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hiD" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"hiQ" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/engine_core) +"hiR" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"hjf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"hjl" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/offices) -"hjr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"hjm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"hju" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"hjA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, +/area/almayer/shipboard/brig/warden_office) +"hjq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 2 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_f_s) -"hjC" = ( -/obj/structure/filingcabinet, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) "hjI" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"hjJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"hka" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"hjL" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"hjM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/obj/structure/machinery/light/built, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"hjW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"hkh" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"hkl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/bridge{ - pixel_y = 32 - }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"hkb" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/general_equipment) -"hke" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"hkp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"hks" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"hkf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"hkC" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 14 - }, -/obj/item/device/flash{ - pixel_y = -8 +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/life_support{ + pixel_x = -17 }, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"hkK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ - dir = 2 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"hkD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "hkM" = ( /obj/structure/ladder{ height = 1; @@ -19227,10 +19516,25 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"hkV" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) +"hkN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"hkZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/aft_hallway) "hla" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment{ @@ -19238,98 +19542,78 @@ }, /turf/open/floor/plating/almayer, /area/almayer/squads/alpha_bravo_shared) -"hlb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"hld" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"hli" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"hlj" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) "hlk" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south1) -"hlx" = ( +"hlv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"hlw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"hlz" = ( +/obj/structure/machinery/photocopier, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"hlA" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; id = "CIC Lockdown"; - layer = 2.2; name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"hlE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"hlT" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"hlX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/lifeboat_pumps/south1) +"hlP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/upper/aft_hallway) -"hlY" = ( -/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"hlU" = ( +/obj/item/stool, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hmc" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/lifeboat) -"hme" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" +/area/almayer/maint/hull/upper/u_m_s) +"hlZ" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"hmk" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/command/lifeboat) +"hmh" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"hmq" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) "hmy" = ( /obj/structure/sign/prop2, /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"hmB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"hmC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) "hmD" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -19339,114 +19623,76 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"hmE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/general_equipment) -"hnd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"hnq" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"hnr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"hny" = ( -/obj/structure/catwalk{ - health = null +"hmL" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"hnI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 + dir = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"hnN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"hnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hoa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_three) -"hod" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/medical/morgue) +"hmM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/obj/item/tool/screwdriver, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"hok" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"hoo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"hoq" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ +/area/almayer/living/offices) +"hmO" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hmP" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"hmU" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"hmX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"hnp" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"hnw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"hnB" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_medbay) +"hnN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"hnP" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hnS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hnY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"hom" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "hor" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -19454,69 +19700,73 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hot" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +"hoB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"hoG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = -8; + pixel_y = -6; + req_access_txt = "3" }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -8; + pixel_y = 2; + req_access_txt = "3" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hov" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -8; + pixel_y = 10; + req_access_txt = "3" }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 2; + pixel_y = 10; + req_access_txt = "3" + }, +/obj/structure/machinery/recharger{ + pixel_x = 6; + pixel_y = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/shipboard/brig/warden_office) "hoL" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"hoQ" = ( -/obj/structure/machinery/alarm/almayer{ +"hoT" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/perma) +"hpl" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/pilotbunks) "hpm" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"hpo" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"hpp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"hps" = ( -/obj/structure/machinery/door_control{ - id = "or1privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"hpt" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) +"hpv" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "hpA" = ( /obj/structure/bed/chair{ dir = 4 @@ -19533,158 +19783,115 @@ "hpK" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) -"hpL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +"hpO" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) +"hpY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hpM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"hqb" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"hqf" = ( +/obj/structure/sign/safety/life_support{ pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"hpP" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"hqk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/obj/item/book/manual/chef_recipes, -/obj/structure/sign/safety/coffee{ - pixel_x = 15; - pixel_y = -32 +"hqw" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"hqN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"hqA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"hqE" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/hallways/upper/aft_hallway) -"hqK" = ( -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"hqQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"hqV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/stock_parts/matter_bin, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hrd" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"hrg" = ( +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"hry" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/living/briefing) +"hrF" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"hrL" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"hrN" = ( +/obj/structure/stairs{ dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"hrB" = ( -/obj/structure/machinery/light/small{ - dir = 1 + icon_state = "ramptop" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"hrD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"hrW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"hrE" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"hsd" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hsq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"hst" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hso" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_f_s) -"hsJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) -"hsO" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"hsx" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hsV" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hsK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"hsT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "htb" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, @@ -19693,22 +19900,31 @@ "hti" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"htk" = ( -/obj/structure/pipes/standard/cap/hidden{ +"htx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"hty" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"htz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"htA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"htB" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) "htD" = ( /obj/structure/machinery/status_display{ pixel_x = -32 @@ -19716,242 +19932,213 @@ /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"htE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"htG" = ( -/obj/structure/machinery/seed_extractor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"htI" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"htK" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"htS" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"htQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"hud" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/shipboard/brig/cells) +"hub" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/squads/req) +"hug" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "hul" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"huq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"huw" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"huC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/sofa/south/white/left{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/maint/hull/upper/u_m_p) -"huI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) +"hur" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "huJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"huN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"huX" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hva" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +"huL" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hvf" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_midship_hallway) -"hvh" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hvo" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"hvr" = ( +"huN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"huO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"hvL" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"hvS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"hvT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"hwc" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"huP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"hwr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/red/northwest, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"huU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, /area/almayer/hallways/upper/aft_hallway) -"hws" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +"huV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"hvk" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hvt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/hydroponics) +"hvG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"hvH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"hvK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"hwu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"hvN" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hwz" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/hallways/hangar) +"hvV" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower) +"hwd" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"hwm" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"hwp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"hww" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"hwy" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "hwF" = ( /obj/structure/shuttle/part/dropship2/transparent/middle_right_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"hwL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) "hwO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cic) -"hwS" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +"hwX" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "hwZ" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"hxn" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = -6 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"hxA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +"hxe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"hxi" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hxB" = ( -/obj/structure/machinery/cryopod/right{ - dir = 2 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"hxH" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"hxt" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) +"hxI" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hxJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/port_midship_hallway) "hxK" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 @@ -19959,134 +20146,60 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"hyi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilottex{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"hyr" = ( +"hxQ" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"hyw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"hyy" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/ce_room) +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) "hyz" = ( /obj/structure/shuttle/part/dropship2/right_outer_wing_connector, /turf/open/space/basic, /area/almayer/hallways/hangar) -"hyM" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/supply/supplies/mre, +"hyA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/living/gym) +"hyG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) "hyN" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/north2) -"hyV" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hyY" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hzf" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"hzl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"hzo" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"hzq" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"hzx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"hyZ" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"hzx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /obj/structure/disposalpipe/junction, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hzE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"hzK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"hzT" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"hAm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +"hzW" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"hAe" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) "hAq" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -20094,10 +20207,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"hAz" = ( -/obj/structure/reagent_dispensers/fueltank, +"hAu" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/engineering/upper_engineering/starboard) "hAC" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -20123,89 +20236,85 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"hAH" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"hAF" = ( +/obj/structure/closet, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"hAK" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"hAL" = ( -/obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"hBb" = ( -/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hBe" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/medical/lower_medical_medbay) +"hBl" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"hBw" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = 25 }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/structure/phone_base{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"hBC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"hBB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hBD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) "hBF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"hBN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"hBG" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"hBO" = ( -/obj/structure/machinery/door_control{ - id = "crate_room2"; - name = "storage shutters"; - pixel_y = 26 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"hBK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/recharge_station{ - desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; - name = "Working Joe charging station" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 36 +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + dir = 8; + name = "\improper Containment Airlock" }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"hBP" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"hBQ" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hBN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) "hCg" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_2"; @@ -20222,23 +20331,34 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"hCk" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +"hCl" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"hCE" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/structure/machinery/computer/emails, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"hCt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"hCG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter, +/obj/structure/machinery/faxmachine/uscm, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "hCJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -20252,13 +20372,21 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"hCM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 8 +"hCK" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) +"hCN" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "hCO" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -20266,45 +20394,45 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/bravo) -"hCW" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hCR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "hCY" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"hDf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) "hDn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"hDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"hEg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +"hDv" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"hDB" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "hEh" = ( /obj/structure/sink{ dir = 1; @@ -20319,102 +20447,45 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"hEj" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"hEy" = ( -/obj/structure/machinery/light{ +"hEp" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hEB" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/tech{ - layer = 4.1; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/mob/living/simple_animal/mouse/brown{ - name = "rat" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/starboard_garden) +"hEx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"hEJ" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"hEN" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"hEI" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/cryo_cells) +"hEK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"hEQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hEL" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"hES" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"hET" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hEP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + dir = 9 }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"hFi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) "hFj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ @@ -20422,21 +20493,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"hFl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"hFr" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_midship_hallway) -"hFp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hFv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) "hFw" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -20447,24 +20510,6 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"hFz" = ( -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"hFB" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hFF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) "hFK" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "CMO Shutters"; @@ -20476,272 +20521,254 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"hFX" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +"hFM" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hFU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"hFV" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hFZ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) "hGa" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"hGg" = ( -/obj/structure/bookcase/manuals/engineering, +"hGj" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"hGl" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/dropper, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_y = 12 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/area/almayer/maint/hull/lower/l_a_p) "hGq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"hGt" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"hGx" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"hGA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"hGT" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hGF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/almayer/green/east, /area/almayer/living/offices) -"hHv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"hHx" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"hHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"hGI" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"hHQ" = ( -/turf/open/floor/almayer/red/west, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) -"hHV" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/briefing) -"hIh" = ( +"hGQ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null + req_one_access = null; + req_one_access_txt = "2;30;34" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"hIq" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/maint/hull/upper/u_f_p) +"hGV" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) -"hIu" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"hIw" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +"hHa" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"hHd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hHh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"hID" = ( +"hHz" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/navigation) +"hHS" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, /turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"hIG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/aft_hallway) -"hIO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"hIP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/lower/l_m_s) +"hHY" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/basketball) +"hIb" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"hIg" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) +"hIn" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) -"hJl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 +"hIH" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hIJ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"hJd" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"hJt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"hJy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lockerroom) +"hJr" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) "hJA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"hJN" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 +"hJG" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hJP" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hJQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 }, -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"hJW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/area/almayer/living/grunt_rnr) +"hKc" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"hKb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"hKq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/obj/structure/machinery/computer/working_joe{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"hKy" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"hKB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/hallways/upper/aft_hallway) -"hKI" = ( -/obj/effect/attach_point/crew_weapon/dropship2, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"hKQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"hKi" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"hKo" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hKF" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"hKG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"hKU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 8 +/area/almayer/maint/hull/lower) +"hLa" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"hLs" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"hKX" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hLx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/pilotbunks) +"hLt" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"hLX" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hLO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"hLQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"hLU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/hallways/lower/port_midship_hallway) "hLY" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -20749,87 +20776,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"hMa" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/disposalpipe/segment{ +"hMc" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"hMn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) -"hMd" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"hMh" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/living/cryo_cells) -"hMp" = ( +"hMv" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/autodispenser{ - dir = 4 +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "hMy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"hMz" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = -25 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/autoinjectors{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/storage/box/beakers{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/storage/box/sprays{ - pixel_y = -3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"hMA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/aft_hallway) -"hMC" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) "hMG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20839,16 +20811,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"hMV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_midship_hallway) -"hNo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +"hMI" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hMW" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hNf" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"hNj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"hNs" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) "hNv" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -20856,113 +20847,60 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"hNz" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) +"hNy" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "hNB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"hNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/aft_hallway) -"hNL" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hNM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"hNN" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - pixel_x = 8; - pixel_y = -16 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"hNQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"hOb" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hOc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/living/briefing) -"hOl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hOo" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"hOp" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" +"hNY" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_m_p) -"hOx" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"hOm" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"hOq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"hOs" = ( +/obj/structure/machinery/computer/demo_sim{ dir = 4; - health = 80 + pixel_x = -17; + pixel_y = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"hOB" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; +/obj/structure/machinery/computer/working_joe{ + dir = 4; pixel_x = -17; - pixel_y = 16 + pixel_y = -8 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"hOE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hOu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"hOw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) "hOQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -20977,120 +20915,108 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"hOT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"hPd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hOX" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"hPi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"hPe" = ( -/obj/structure/machinery/floodlight, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) +/area/almayer/shipboard/brig/cryo) "hPk" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"hPr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hPz" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"hPK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/perma) +"hPA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"hPO" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/lower/port_midship_hallway) -"hPU" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/area/almayer/hallways/lower/starboard_midship_hallway) +"hPL" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hQd" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_f_p) +"hPQ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hQj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hQk" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_m_p) -"hQt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/hydroponics) -"hQC" = ( -/obj/structure/bed/chair/comfy/blue{ +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"hQl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"hQK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 +/obj/structure/machinery/door/window/eastleft{ + req_access = list(19) + }, +/obj/structure/machinery/door/window/westright, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"hQr" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower) -"hQX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"hQY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/engineering/upper_engineering) +"hQv" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"hQZ" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/offices) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) "hRd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -21098,10 +21024,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hRg" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) "hRo" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -21115,84 +21037,55 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"hRs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"hRA" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"hRz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"hRK" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"hRE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"hRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"hRP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"hRI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"hRS" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = -27; + req_one_access_txt = "4;28" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/hull/upper/u_a_s) -"hRT" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"hRY" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"hSh" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"hSp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"hSb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"hSi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hSF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hSB" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "hSH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -21207,59 +21100,100 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"hTe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"hSK" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"hTk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"hSL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"hSS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hSX" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"hTo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_a_s) +"hTb" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 }, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hTs" = ( -/obj/structure/largecrate, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 1; - pixel_y = 10 +/area/almayer/engineering/upper_engineering/port) +"hTj" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"hTD" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-1"; - req_access = null +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"hTm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"hTG" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) -"hTP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"hTQ" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"hTT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hTF" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/frame/light_fixture, +/obj/item/frame/light_fixture, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/engineering/lower/workshop) +"hTO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) "hTV" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -21271,27 +21205,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"hTX" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/execution) -"hUb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) "hUf" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 1; @@ -21299,26 +21212,65 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"hUg" = ( -/obj/structure/machinery/power/port_gen/pacman, +"hUj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 4 + }, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"hUt" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/engineering/upper_engineering/starboard) +"hUv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"hUD" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hUz" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"hUA" = ( -/obj/structure/pipes/vents/scrubber{ +/area/almayer/maint/hull/upper/u_a_s) +"hUG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"hUI" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"hUN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"hUR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) "hUS" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -21333,156 +21285,178 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"hVf" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"hVh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"hVg" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"hVn" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering/port) -"hVr" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"hVP" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"hVR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"hVi" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"hVC" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"hVE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ access_modified = 1; - dir = 2; - name = "Brig"; - req_access = null; - req_one_access_txt = "1;3" + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"hVV" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"hWc" = ( -/obj/structure/largecrate/random/secure, +/area/almayer/maint/hull/upper/u_f_p) +"hVJ" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"hVL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) +"hWf" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) "hWi" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"hWm" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/officer_study) -"hWD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"hWH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ +"hWO" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"hWS" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/lower/repair_bay) +"hWW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"hXa" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hWN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"hWT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"hXf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 8 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/pen, -/obj/item/book/manual/marine_law{ - pixel_x = 15; - pixel_y = 5 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"hXq" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/book/manual/security_space_law{ - pixel_x = 16; - pixel_y = 9 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"hXv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"hWW" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"hWX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = list(36) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/synthcloset) -"hXm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/upper_medical) -"hXr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hXw" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"hXC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"hXw" = ( -/obj/structure/bed/chair/comfy{ - buckling_y = 2; +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ dir = 8; - pixel_y = 2 + name = "Dropship Remote Control Console"; + shuttleId = "dropship_alamo"; + disabled = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"hXx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"hXA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Engineering Storage" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"hXD" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/securestorage) +"hXL" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hXO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"hYj" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/obj/item/clothing/head/helmet/marine, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"hXX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"hYa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"hYe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) "hYk" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -21491,13 +21465,23 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"hYq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"hYl" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/execution) +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"hYs" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "hYu" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -21515,199 +21499,151 @@ /obj/item/tool/lighter, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"hYz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"hYB" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hYC" = ( +/obj/structure/machinery/door_control{ + id = "or2privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"hYG" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) "hYK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"hYN" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hYO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"hYS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Power Control Room"; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;6" +"hYP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"hYT" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"hYX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, +/area/almayer/hallways/lower/port_umbilical) +"hYR" = ( +/obj/structure/machinery/cm_vending/gear/spec, /obj/structure/sign/safety/hazard{ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"hZb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"hZj" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hZn" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/area/almayer/squads/bravo) "hZo" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cic) -"hZz" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"hZA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/phone_base{ - dir = 1; - name = "Brig Warden's Office Telephone"; - phone_category = "Offices"; - phone_id = "Brig Warden's Office"; - pixel_x = -16 +"hZs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"hZB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sink{ + pixel_y = 24 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"hZw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"hZC" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 15 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/aft_hallway) -"hZQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 22 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"hZD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iai" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"iak" = ( -/obj/structure/barricade/handrail/medical{ - dir = 4 +/area/almayer/command/lifeboat) +"hZN" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/cryo_cells) +"hZO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"ial" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30; - pixel_y = -6 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iaa" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"ias" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/warden_office) +"iac" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"iaN" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_point_defense) -"iaQ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/area/almayer/hallways/hangar) +"iav" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cic) +"iaE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iaN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_point_defense) +"iaZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"ibb" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) "ibf" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) -"ibl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ibn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Crew Chief's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) +"ibt" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "ibv" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/navigation) @@ -21717,340 +21653,354 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"icq" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"ics" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +"ibS" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) -"ict" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = -32 +"ibV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/syringe_case{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"icy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"icD" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/item/storage/syringe_case, +/obj/item/storage/syringe_case{ + pixel_x = -3; + pixel_y = -2 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"icI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"icN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"icP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/window/reinforced{ +/obj/structure/bed/chair{ dir = 8; - layer = 3.3; - pixel_y = 4 + pixel_y = 3 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) "icV" = ( /obj/structure/cargo_container/arious/right, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"ida" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"idd" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"idf" = ( -/obj/structure/machinery/light{ - dir = 1 +"icW" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"idi" = ( +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"ido" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -7 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 8 - }, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, /turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"idn" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"ids" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"idA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/command/lifeboat) "idE" = ( /turf/closed/wall/almayer, /area/almayer/living/pilotbunks) -"idR" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"iei" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ieH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"ieL" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"ieN" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +"idU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ieS" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"idX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/almayer/no_build, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) -"ifE" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 +"ieg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"iei" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"iek" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -1 }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 1 +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/area/almayer/medical/containment/cell) -"ifG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"ifI" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/squads/bravo) -"ifV" = ( +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/structure/sign/safety/hvac_old{ + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"ieu" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 }, -/obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"igj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Warden Office" +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"igv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"iev" = ( +/obj/structure/bed/chair, +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"igx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null +/obj/structure/sign/safety/cryo{ + pixel_x = 21; + pixel_y = 27 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"ieG" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ieL" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"ifo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) +/area/almayer/engineering/upper_engineering/starboard) +"ifs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"ifw" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ifx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"ifE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"ifJ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ifO" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"ifY" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/maint/hull/upper/u_m_p) +"igG" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "igH" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "86" }, /area/almayer/hallways/hangar) -"igP" = ( +"igI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ihb" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"ihz" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"ihg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ihj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/living/auxiliary_officer_office) +"ihD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ihn" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/basketball) +"iia" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"ihs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ihw" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"ihI" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_one) -"ihK" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/obj/item/device/flash, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"iif" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" }, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"iig" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, /turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"ihO" = ( -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_m_p) +"iik" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"iim" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"iid" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/aft_hallway) -"iiu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"iiw" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) "iiy" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iiG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"iiH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"iiY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"iiX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "ijb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"ijf" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, +"ijx" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ijg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ijh" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"ijw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) +/area/almayer/living/grunt_rnr) "ijz" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -22077,256 +22027,234 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"ijN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"ijR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"ijV" = ( -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"ijZ" = ( +"ijB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"ijI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ijK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out" }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"iko" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Spare Bomb Suit"; - req_one_access = null; - req_one_access_txt = "35" - }, +/area/almayer/maint/hull/lower/l_a_s) +"ijR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"iku" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/aft_hallway) -"ikK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/almayer/engineering/upper_engineering) +"ikp" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"ikP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ikr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/squads/alpha) +"ikF" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"ikN" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ild" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"ikR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"ile" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ilu" = ( +/obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"ikY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"ill" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ilx" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"ilB" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"ilr" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"ilI" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"ils" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "ilK" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"ilP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ilS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"ilV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"ima" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"ilW" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"imr" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"imx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"imJ" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/engineering/lower/engine_core) +"imb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"imj" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"imS" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"ina" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"inu" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"inK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"inP" = ( -/obj/structure/sign/safety/rewire{ - layer = 2.4; - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"imk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = 7 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"iml" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"imp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"inY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"ims" = ( +/obj/structure/toilet{ + pixel_y = 13 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"ioa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research/main_terminal{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"imw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"inb" = ( +/obj/structure/stairs{ + dir = 1 }, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"ios" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/command/cic) -"iou" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ioA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"ind" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"ioH" = ( -/obj/structure/machinery/computer/cameras/containment/hidden{ - dir = 4; - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"inf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Support Officers Quarters"; + req_one_access_txt = "37" }, -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album, -/obj/item/device/camera_film, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"ioQ" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/living/briefing) -"iph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"inu" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"inz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"inK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"iof" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) +"iol" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ion" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"iox" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"ioG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "ipi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22346,52 +22274,89 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"ipv" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"ipy" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"ipG" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"ipD" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"ipE" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) "ipN" = ( /turf/closed/shuttle/dropship2{ icon_state = "77" }, /area/almayer/hallways/hangar) +"ipO" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"ipT" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/living/grunt_rnr) +"ipW" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) "ipY" = ( /turf/closed/shuttle/dropship2{ icon_state = "18" }, /area/almayer/hallways/hangar) -"iqd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"iqa" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"iqn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"iqv" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iqc" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"iqj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iqt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iqu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "iqx" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -22402,139 +22367,149 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"iqB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/morgue) -"iqD" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Spare Prison Uniforms" - }, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) "iqI" = ( /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) -"irw" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"irx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"iry" = ( -/turf/closed/wall/almayer{ - damage_cap = 15000 - }, -/area/almayer/squads/alpha) -"irz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"iqZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"irK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/hallways/lower/port_midship_hallway) +"ira" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"irc" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"irM" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"ism" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"irf" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"iso" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"irk" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"irn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"isr" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"irs" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"isA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/life_support{ + pixel_x = 32 }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"isE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/area/almayer/maint/hull/upper/u_a_s) +"irx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"iry" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"isK" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/squads/alpha) +"irG" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"isP" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/upper/u_f_p) +"irM" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"irS" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"irW" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"isb" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) +"isf" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"isS" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"isl" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/orangecorner/east, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"isC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/hallways/upper/aft_hallway) +"isF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"isT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "isW" = ( /obj/structure/sign/safety/maint{ pixel_x = 32; @@ -22546,41 +22521,39 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"iti" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/squads/alpha) -"itr" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"itG" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"itU" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +"itl" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"iui" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"itm" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/bed/chair/bolted{ dir = 4 }, +/obj/structure/target{ + name = "punching bag" + }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"iuk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/area/almayer/living/gym) +"itp" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"itw" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"itZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "iuq" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/sign/safety/medical{ @@ -22588,54 +22561,109 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iuE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 +"iuv" = ( +/obj/structure/closet/secure_closet/securecom, +/obj/item/storage/box/kit/honorguard, +/obj/item/storage/box/kit/honorguard, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"iuH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"iuJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"iuQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"iuZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"ivh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/maint/hull/lower/l_m_p) +"iuU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"iuW" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ivi" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/area/almayer/maint/hull/lower/l_f_s) "ivl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"ivp" = ( -/obj/structure/machinery/vending/cigarette, +"ivm" = ( /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/maint/hull/upper/u_m_s) +"ivq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"ivu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ivC" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) "ivH" = ( /turf/open/floor/almayer, /area/almayer/living/basketball) -"ivK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ivQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "ivS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -22649,12 +22677,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"ivT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"iwa" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"iwc" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "iwe" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -22662,22 +22695,23 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iwj" = ( -/obj/structure/sink{ +"iwg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"iwv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iwp" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "iwy" = ( /obj/structure/machinery/smartfridge/chemistry{ pixel_x = -3; @@ -22685,75 +22719,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"iwL" = ( -/obj/structure/machinery/landinglight/ds1{ +"iwB" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"iwS" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ixc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) "ixd" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 4 }, /area/almayer/medical/containment/cell) -"ixj" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/device/multitool{ - pixel_x = 8 - }, -/obj/item/tool/screwdriver{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"ixn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"ixv" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +"ixs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"ixy" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ixB" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"ixC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) "ixG" = ( /obj/structure/bed/chair{ dir = 4 @@ -22775,86 +22779,111 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"ixM" = ( +"ixT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ixY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ixS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"ixV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/area/almayer/shipboard/weapon_room) +"iyt" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"iyz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"iyr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"iyE" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"iyJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_three) -"iyx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"iyO" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"iyR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"iyT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"iyU" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"izi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"izk" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"iyZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = 28 + pixel_x = 28 }, -/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"iza" = ( +/obj/structure/machinery/alarm/almayer, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) +"izv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "izA" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"izO" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_p) -"iAa" = ( -/obj/structure/pipes/vents/pump{ +"izC" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"izL" = ( +/obj/structure/machinery/light{ dir = 1 }, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iAe" = ( -/obj/effect/step_trigger/clone_cleaner, +/area/almayer/command/telecomms) +"izU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"izW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"iAc" = ( +/obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "iAf" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -22862,31 +22891,36 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"iAn" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"iAz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "iAF" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iAN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"iAQ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iAT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/cryo_cells) -"iBc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"iBd" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/weapon_room) "iBk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -22894,35 +22928,56 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cic) -"iBo" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; - pixel_y = 6 +"iBw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"iBt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"iBC" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "Brig"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"iBE" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "iBJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"iBL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"iBU" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iCc" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"iCn" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/cic) "iCp" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/item/ammo_magazine/shotgun, @@ -22955,30 +23010,110 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"iCX" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower) -"iDr" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"iCs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"iCv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"iCz" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"iCC" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"iCI" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"iCJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"iDu" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"iDC" = ( +/area/almayer/engineering/lower/workshop) +"iCL" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/lifeboat) +"iCZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/aft_hallway) +"iDd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"iDM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"iDO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"iDP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/area/almayer/hallways/lower/repair_bay) +"iDV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_f_p) +"iEb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "iEe" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -22997,106 +23132,107 @@ /obj/effect/spawner/random/tool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"iEi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) "iEm" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"iEs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"iEK" = ( -/obj/structure/window/reinforced{ +"iEp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"iEq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4; - health = 80 + icon_state = "pipe-c" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"iES" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"iEE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"iEV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"iEW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"iEX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"iFe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"iEZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/upper/aft_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) "iFg" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -28 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iFn" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) +"iFj" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "iFs" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"iFD" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 18"; - buildstate = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"iFL" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"iFY" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +"iFC" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"iGh" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iGf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"iGs" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"iGq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/area/almayer/maint/hull/lower/l_a_p) +"iGu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/cic) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) "iGv" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -23109,26 +23245,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"iGx" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"iGC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) "iGD" = ( /obj/structure/bed/chair{ dir = 8; @@ -23136,13 +23252,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"iGK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) "iGP" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "97" @@ -23160,40 +23269,72 @@ }, /turf/open/floor/plating, /area/almayer/command/cic) -"iHa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"iGY" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/aft_hallway) +"iHd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"iHf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"iHi" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"iHD" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"iHE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"iHg" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"iHJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"iHR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"iHy" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/aft_hallway) -"iHN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"iIc" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"iIr" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie) +"iIu" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/maint/hull/upper/u_a_p) "iIA" = ( /obj/structure/machinery/light{ dir = 4 @@ -23203,74 +23344,88 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iIB" = ( -/obj/structure/machinery/cm_vending/clothing/leader/bravo, +"iIC" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"iID" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/area/almayer/hallways/hangar) +"iIE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iIJ" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "iIL" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iIQ" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ +"iIT" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"iIS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"iIX" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or03"; - name = "Operating Theatre 3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/surface/rack, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_three) +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"iJb" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) "iJc" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"iJg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"iJk" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" +"iJd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"iJi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D2"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"iJl" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/command/lifeboat) "iJm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -23281,335 +23436,448 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"iJt" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 +"iJn" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/living/briefing) +"iJo" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"iJq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"iJL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"iJN" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"iJv" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"iJE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iKh" = ( -/obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"iKH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"iKR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ dir = 1; - name = "\improper Brig" + name = "\improper Combat Information Center" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"iJT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 1; + name = "\improper Cryogenics Bay" }, /turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"iJU" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, /area/almayer/maint/hull/upper/u_f_p) -"iLm" = ( -/obj/structure/disposalpipe/junction{ +"iJZ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"iKa" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"iKd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "pipe-j2" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"iLF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, +/obj/structure/machinery/door_control{ + id = "medicalemergency"; + name = "Medbay Lockdown"; + pixel_y = -23; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"iKg" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"iLK" = ( -/obj/structure/machinery/light{ +"iKk" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/orangecorner, +/area/almayer/shipboard/brig/evidence_storage) +"iKy" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"iKB" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"iLa" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"iLL" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"iLU" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"iLV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"iLd" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"iLN" = ( +/obj/structure/barricade/handrail/medical{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"iLX" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"iLS" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/clothing/head/ushanka{ + layer = 3.3 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ dir = 8; - pixel_y = 3 + layer = 3.3; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"iMj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"iMe" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"iMm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"iMg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"iMl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"iMr" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, -/area/almayer/hallways/hangar) -"iMs" = ( -/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"iMp" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"iMq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iMt" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) -"iMJ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +"iMv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"iMN" = ( -/obj/structure/machinery/power/apc/power/east, -/obj/item/storage/box/nade_box/tear_gas, -/obj/item/storage/box/nade_box/tear_gas{ - pixel_x = 3; - pixel_y = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"iMC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/armory) -"iMO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc01"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = -23 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"iME" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"iMH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"iMI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"iML" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) "iMT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iMY" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) "iNc" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"iNl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = -6 +"iNu" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"iNF" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"iNR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"iNK" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"iNQ" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"iNU" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"iNY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"iOi" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/aft_hallway) -"iOs" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"iOb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"iOw" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) -"iOG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iOA" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"iOM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"iOH" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"iOU" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles{ - pixel_x = 6; - pixel_y = 7 +/obj/item/paper{ + pixel_x = 2; + pixel_y = 5 }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 6 +/obj/item/tool/pen/red/clicky{ + pixel_x = 1; + pixel_y = 2 }, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"iPh" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/maint/hull/upper/u_a_s) -"iPl" = ( -/obj/structure/sink{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"iON" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"iPr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"iOO" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/maint/hull/lower/l_f_s) +"iOP" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"iPE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iOQ" = ( +/obj/structure/safe, +/obj/item/coin/platinum, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/clothing/accessory/storage/holster, +/obj/item/weapon/gun/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"iOR" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"iPJ" = ( -/obj/structure/machinery/power/apc/power/east, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"iOW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"iOY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"iOZ" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"iPP" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"iPe" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"iPz" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/cryo_cells) +"iPK" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) "iPQ" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iPW" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters/clippers, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 1 +"iPU" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"iPX" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"iQd" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop/hangar) +"iQf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"iQn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) "iQo" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -23619,66 +23887,27 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"iQq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"iQs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/cryo_cells) -"iQx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"iQC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"iQR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +"iQP" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"iQW" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) "iQY" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lockerroom) -"iRf" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"iRg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"iQZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/maint/hull/lower/l_m_p) "iRj" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -23691,135 +23920,151 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) +"iRk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"iRq" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "iRu" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cryo) -"iRw" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 +"iRv" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"iRz" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) "iRB" = ( /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"iRN" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"iRX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"iRF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"iSi" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"iSj" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"iSn" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"iRK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"iSb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iSs" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"iSp" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"iSA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"iSt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; - name = "\improper Cryogenics Bay"; - req_access = null; - req_one_access_txt = "1;3" + dir = 2; + req_one_access = list(2,34,30) }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) +/area/almayer/maint/hull/upper/u_f_s) "iSB" = ( /turf/closed/shuttle/dropship2{ icon_state = "92" }, /area/almayer/hallways/hangar) +"iSC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"iSI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) "iSL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"iSM" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +"iSR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"iSS" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/greenfull, +/area/almayer/shipboard/brig/cells) +"iTb" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"iSY" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iTf" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"iTg" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"iTi" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"iTm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"iTe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"iTo" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/area/almayer/medical/lower_medical_medbay) +"iTs" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"iTB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"iTL" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) +"iTK" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "iTS" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/crew/alt, @@ -23831,12 +24076,65 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"iUh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"iTU" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"iTV" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"iUd" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"iUg" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_y = 29; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"iUo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "perma_exit"; + name = "\improper Exit Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"iUr" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "iUz" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -23846,142 +24144,105 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"iUR" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"iUX" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"iUN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) +"iVc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"iVo" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"iVa" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"iVw" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/command/lifeboat) -"iVe" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) -"iVB" = ( -/obj/structure/largecrate, -/obj/item/folded_tent/reqs{ - pixel_x = -3; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"iVP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = list(2,34,30) }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"iVH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"iVJ" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "iVS" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/port) -"iVW" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"iWc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 3 +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"iWm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"iWe" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/cic) "iWo" = ( /turf/open/floor/almayer, /area/almayer/command/cic) -"iWt" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iWu" = ( -/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_22"; - name = "synthetic potted plant"; - pixel_y = 8 +"iWs" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"iWW" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"iWF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Deck Waste Tank Control" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"iXa" = ( +/area/almayer/engineering/lower) +"iWI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"iXj" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/weapon/gun/rifle/m41aMK1/ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"iXp" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"iXA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"iXS" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"iXT" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/item/prop/magazine/book/bladerunner{ - pixel_x = -1; - pixel_y = 9 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"iXs" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"iXU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Study" +/area/almayer/maint/hull/lower/l_f_p) +"iXF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/general_equipment) +"iXM" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) "iXX" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/almayer{ @@ -23996,246 +24257,233 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"iYa" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"iYd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/offices/flight) "iYe" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/starboard_atmos) -"iYk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"iYm" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iYn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +"iYp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, /turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"iYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"iYy" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/squads/charlie) "iYD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"iYI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"iYF" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) -"iYO" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"iZc" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"iZe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"iZh" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"iZl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"iYP" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"iZm" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"iZD" = ( +/obj/item/stool{ + pixel_x = 15; pixel_y = 6 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"iYU" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"iZR" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/closed/wall/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"iZS" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"iYV" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop) -"iYY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"jam" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jaE" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jaI" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"iZd" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"jaR" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"jbd" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing everything you need to stop a CLF uprising."; + name = "\improper USCM crate 'FOB supplies'" + }, +/obj/structure/sign/arcturianstopsign{ pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"iZv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/folded_tent/big{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"iZK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"iZP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"iZX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/starboard_emb) +"jbf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"jak" = ( -/obj/item/tool/mop{ +/obj/item/reagent_container/glass/bucket{ pixel_x = -6; - pixel_y = 24 + pixel_y = 8 }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"jau" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jaz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = -2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"jaC" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/hydroponics) -"jaM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"jaS" = ( /turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"jaZ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/area/almayer/engineering/lower/workshop/hangar) +"jbi" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/liaison_suit/formal, +/obj/item/clothing/under/liaison_suit, +/obj/item/clothing/under/liaison_suit/outing, +/obj/item/clothing/under/liaison_suit/suspenders, +/obj/item/clothing/under/blackskirt{ + desc = "A stylish skirt, in a business-black and red colour scheme."; + name = "liaison's skirt" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"jbb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/item/clothing/under/suit_jacket/charcoal{ + desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; + name = "liaison's black suit" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) +/obj/item/clothing/under/suit_jacket/navy{ + desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; + name = "liaison's navy suit" + }, +/obj/item/clothing/under/suit_jacket/trainee, +/obj/item/clothing/under/liaison_suit/charcoal, +/obj/item/clothing/under/liaison_suit/outing/red, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/suit/storage/snow_suit/liaison, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/marine/dress, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/red, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "jbl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"jbs" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/aft_hallway) -"jbE" = ( -/obj/structure/machinery/light, +"jbq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, /turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) -"jbJ" = ( -/obj/structure/machinery/computer/arcade, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"jbP" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, +"jby" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"jbR" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/cells) -"jcc" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/mono, +/area/almayer/hallways/hangar) +"jbF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"jbI" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jbN" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"jbV" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/briefing) +"jbW" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/briefing) +"jcd" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) -"jcr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"jcp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jcs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "jcw" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24243,18 +24491,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"jcx" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) +"jcC" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/hangar) "jcD" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) +"jcH" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"jcI" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"jcK" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 + }, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "jcL" = ( /obj/item/device/radio/intercom/normandy{ layer = 3.5; @@ -24264,22 +24538,6 @@ icon_state = "52" }, /area/almayer/hallways/hangar) -"jcT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jcU" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"jdc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) "jde" = ( /obj/structure/machinery/light{ dir = 1 @@ -24290,6 +24548,19 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) +"jdf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"jdg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "jdk" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin/uscm, @@ -24316,52 +24587,36 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jdm" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" +"jdp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"jdq" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jdy" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jdB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "jdF" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"jdH" = ( -/obj/structure/machinery/computer/aa_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"jdJ" = ( -/obj/structure/barricade/handrail{ - dir = 4 +"jdM" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"jdN" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"jdR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) "jdV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24371,113 +24626,145 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"jdZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"jei" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"jel" = ( -/obj/structure/machinery/disposal{ +"jdX" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; - layer = 3.2; pixel_y = 16 }, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"jdY" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"jer" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = -4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"jeu" = ( -/obj/structure/machinery/cryopod/right, +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"jem" = ( +/obj/structure/catwalk{ + health = null + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"jex" = ( /obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"jeB" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, /turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) -"jeF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = -15 +"jeC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jeE" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/living/gym) +"jeG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/donut_box, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jeK" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"jeO" = ( -/obj/structure/platform{ - dir = 8 +/area/almayer/living/captain_mess) +"jeH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/item/clipboard{ + pixel_x = 12 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"jeU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = 12 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) +/obj/structure/sign/poster/propaganda{ + pixel_y = 34 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"jeQ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_three) "jeW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"jeY" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jfk" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 +"jfr" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"jfs" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "jfB" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) -"jfH" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" +"jfD" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/workshop/hangar) +"jfG" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"jfJ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"jfN" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) "jfO" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -24488,43 +24775,62 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"jfP" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"jfR" = ( -/obj/structure/catwalk{ - health = null +"jfS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"jfZ" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"jga" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) "jgd" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "22" }, /area/almayer/hallways/hangar) -"jgt" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +"jgl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "jgy" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) +"jgA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) "jgC" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -24535,14 +24841,35 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"jgM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - name = "\improper Main Kitchen"; - req_one_access_txt = "30;19" +"jgE" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"jgI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"jgJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"jgQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jgR" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "jgX" = ( /obj/item/stack/tile/plasteel{ pixel_x = 4; @@ -24550,14 +24877,24 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"jgZ" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"jhb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"jhf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Warden Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) "jho" = ( /obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing, /turf/open/floor/plating, @@ -24571,119 +24908,85 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"jhw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"jhz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"jhv" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"jhN" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/obj/structure/machinery/landinglight/ds2{ +/obj/structure/machinery/light/small{ dir = 4 }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jig" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"jic" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"jii" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) "jim" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) -"jin" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jio" = ( -/obj/item/stack/tile/carpet{ - amount = 12 +"jiC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"jiq" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/item/clothing/glasses/monocle, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = -2 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"jir" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jis" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/weapon/pole/fancy_cane{ + pixel_x = 5 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jiv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jiO" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/phone_base{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 }, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/almayer/medical/containment/cell) -"jiA" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"jiT" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"jiE" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"jjo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/aft_hallway) -"jiI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"jiR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"jiS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/cryo_cells) -"jiX" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"jjf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"jjh" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "jjr" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -24694,13 +24997,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"jju" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 +"jjv" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jjy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"jjz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"jjC" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) "jjK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -24710,97 +25036,73 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"jjM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jjZ" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jkf" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" }, -/turf/open/floor/almayer/emerald/northeast, -/area/almayer/squads/charlie) -"jki" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"jkn" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/squads/req) +"jkg" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"jkq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jkr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/port_umbilical) -"jky" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/gym) -"jkO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"jkj" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"jkA" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"jkW" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer6" +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"jkQ" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"jle" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"jkY" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"jlc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"jlf" = ( -/obj/structure/closet/secure_closet/securecom, -/obj/item/storage/box/kit/honorguard, -/obj/item/storage/box/kit/honorguard, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"jlj" = ( -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) "jlr" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"jlv" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes{ - pixel_y = 9 +"jls" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "jlC" = ( /turf/closed/wall/almayer, /area/almayer/engineering/airmix) -"jmc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/port_missiles) -"jmm" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, +"jlQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_p) +"jmd" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/briefing) "jms" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -24808,289 +25110,243 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"jmy" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_four) -"jmB" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"jmH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"jmx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"jmz" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"jmS" = ( +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper) +"jmG" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 +/obj/item/pipe{ + dir = 9 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/squads/alpha) -"jnk" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jnr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/item/tool/crowbar/red{ + pixel_x = 17 }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"jmP" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; + pixel_x = -1; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/hydroponics) +"jnb" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"jnv" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"jnp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "jnN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"jnO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"jnY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"jok" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orangecorner/east, +"job" = ( +/turf/open/floor/almayer/green/northwest, /area/almayer/hallways/upper/aft_hallway) "jol" = ( /turf/closed/wall/almayer, /area/almayer/command/cichallway) -"jot" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"jov" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jom" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"joy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"joA" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "joE" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = -32 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"joH" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/hallways/upper/aft_hallway) -"joI" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"joU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jpd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"jpo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower) -"jpq" = ( +"joG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"joS" = ( /turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"jpx" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"jpD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"jpL" = ( -/obj/structure/machinery/vending/hydroseeds, +/area/almayer/lifeboat_pumps/north1) +"joV" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"joW" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) -"jpQ" = ( -/obj/structure/platform{ - dir = 4 +"joZ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jpc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lockerroom) +"jpl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jqf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/pilotbunks) +"jpp" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"jpu" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jqg" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/engineering/upper_engineering) +"jpw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ + name = "\improper Research Hydroponics Workshop" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"jpz" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"jpM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jpN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jpZ" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) "jqq" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/numbertwobunks) -"jqs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"jqx" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) "jqD" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"jqL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jqV" = ( -/obj/structure/janitorialcart, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"jrb" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/upper/aft_hallway) -"jrg" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jrn" = ( -/obj/structure/machinery/photocopier{ - density = 0; - layer = 2.9; - pixel_x = -3; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -19; - pixel_y = 5 - }, -/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/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) -"jrp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"jqG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"jrq" = ( -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"jqS" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"jrd" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"jrk" = ( +/obj/structure/machinery/door_control{ + id = "or02"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"jrm" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) "jrA" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"jrB" = ( +"jrC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"jrG" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "cl_shutters 3"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"jrE" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"jrF" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "jrR" = ( /obj/structure/machinery/light{ dir = 1 @@ -25098,385 +25354,259 @@ /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"jrS" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 5"; - locked = 1; - name = "\improper Containment Cell 5" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 +"jsz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SE-out"; + pixel_x = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"jrU" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"jsb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"jsf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/aft_hallway) -"jsn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"jsI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"jsK" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) "jsN" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/starboard_missiles) -"jsQ" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer/redfull, -/area/almayer/maint/hull/lower/l_f_s) +"jsP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"jsR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"jsY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "jti" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"jto" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs{ - pixel_y = 12 - }, -/obj/item/restraint/handcuffs{ - pixel_y = 6 - }, -/obj/item/restraint/handcuffs, -/obj/item/weapon/baton{ - pixel_x = -12 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"jtC" = ( +"jtj" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jtm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jtD" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jtN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"jtV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"juo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D4"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"jux" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_1"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"juy" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"juB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/hallways/upper/aft_hallway) +"jtn" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"juM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/maint{ + pixel_x = -18 }, -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt, -/obj/item/ashtray/glass, -/turf/open/floor/almayer/greenfull, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) -"juP" = ( +"jtq" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, /obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"jtw" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"jty" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"jtF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"juS" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"juW" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"jtI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"jvh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/general_equipment) -"jvt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"jvK" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jwa" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"jwk" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/chief_mp_office) -"jwm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"jwp" = ( +/area/almayer/squads/alpha) +"jtO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/upper/aft_hallway) -"jwr" = ( +"jtP" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"jtT" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"jtY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"jws" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower) -"jwv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jwE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/hallways/hangar) -"jwF" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ +"jug" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"jwH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"juh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) -"jwJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jui" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jwO" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"juk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) -"jxa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +"jus" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"jxh" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"juC" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/aft_hallway) +"juG" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"jvc" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"jvD" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/processing) +"jvP" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"jxm" = ( -/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"jxy" = ( +/area/almayer/squads/charlie) +"jwc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out" }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"jxz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/area/almayer/shipboard/starboard_point_defense) +"jwd" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_engi"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 3"; - name = "\improper Courtyard Divider" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"jwx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) +/area/almayer/hallways/lower/starboard_umbilical) +"jwL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"jwP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"jwT" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jxg" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"jxk" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"jxq" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "jxB" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -25488,203 +25618,179 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"jxC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"jxD" = ( -/obj/structure/machinery/smartfridge/chemistry{ - density = 0; - pixel_y = 16 +"jxM" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"jxF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/almayer/green/northwest, /area/almayer/living/grunt_rnr) -"jxG" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"jxH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"jyb" = ( -/obj/structure/largecrate/random/barrel/white, +"jxN" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"jyj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"jyl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"jyn" = ( -/obj/structure/machinery/light/small{ +/area/almayer/hallways/hangar) +"jxU" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"jyt" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"jye" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; pixel_y = 1 }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"jyf" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"jyo" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"jyv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"jyx" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = -7 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"jyI" = ( -/obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"jyO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"jyz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/warden_office) -"jyV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jzI" = ( /obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"jyW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"jzS" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"jyZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower) -"jza" = ( -/obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"jzf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/area/almayer/command/cichallway) +"jAb" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"jAh" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "cmp_armory"; - name = "Armory Lockdown"; - pixel_x = 24; - pixel_y = -6; - req_access_txt = "4" +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"jAr" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"jzs" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/sign/poster{ + pixel_x = -32 }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"jzz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"jAA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jAB" = ( /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"jzE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"jzK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"jAc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"jAh" = ( -/obj/structure/pipes/unary/outlet_injector{ +/area/almayer/hallways/upper/aft_hallway) +"jAF" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"jAn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - name = "\improper Requisitions Storage" +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced/ultra{ dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jAw" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/briefing) +"jAG" = ( +/obj/item/prop/almayer/box, +/obj/item/prop{ + desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m56c"; + item_state = "m56c"; + name = "broken M57 'Larry's Will' smartgun"; + pixel_x = -7; + pixel_y = 3 }, -/obj/structure/sign/safety/commline_connection{ - pixel_y = 32 +/obj/item/frame/light_fixture/small{ + pixel_y = 17 }, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/machinery/door_control{ + id = "crate_room4"; + name = "storage shutters"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/packageWrap, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "jAN" = ( /obj/structure/surface/table/almayer, @@ -25692,6 +25798,9 @@ /obj/item/device/radio, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"jAT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "jBc" = ( /obj/item/tool/kitchen/tray{ layer = 2.9 @@ -25704,30 +25813,24 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jBk" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jBv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +"jBj" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower) -"jBz" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jBE" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"jBL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"jBG" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "jBQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -25735,94 +25838,86 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"jBY" = ( +"jBR" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"jCj" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"jCk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"jCp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jCt" = ( -/obj/docking_port/stationary/emergency_response/external/port4, -/turf/open/space/basic, -/area/space) -"jCy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"jCl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "cmp_armory"; + name = "\improper Armory Shutters" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"jCE" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"jCr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"jCK" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"jCt" = ( +/obj/docking_port/stationary/emergency_response/external/port4, +/turf/open/space/basic, +/area/space) +"jCv" = ( +/obj/structure/machinery/door_control{ + id = "ROlobby1"; + name = "RO Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;21" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/line_nexter_control{ + id = "line1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "1;21" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jCH" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"jCP" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/hangar) +"jCI" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"jCV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"jCW" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"jDb" = ( -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/maint/hull/lower/l_f_p) +"jCM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jCZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "jDu" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -25830,72 +25925,22 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"jDw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"jDx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) -"jDC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"jDG" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 +"jDM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/command/cic) +"jDR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_x = 8; + pixel_y = 12 }, -/turf/open/floor/almayer/blue/north, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"jDY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, /area/almayer/hallways/upper/aft_hallway) -"jDT" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/basketball) -"jDV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"jEa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"jEg" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"jEj" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) "jEl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -25917,40 +25962,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"jEx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"jEy" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"jEB" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 1; - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) "jEE" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"jFb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "jFe" = ( /turf/closed/shuttle/dropship2{ icon_state = "48" @@ -25968,110 +25995,58 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"jFm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, +"jFD" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"jFr" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jFz" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"jFA" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"jFF" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/lower/port_midship_hallway) +"jFI" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"jFJ" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "jFY" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/upper_medical) -"jGj" = ( +"jGa" = ( +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" + }, /obj/structure/machinery/camera/autoname/almayer{ - dir = 4; + dir = 8; name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"jGk" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"jGJ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"jGL" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/basketball) -"jGS" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"jGW" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"jGm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"jHa" = ( -/obj/structure/bed/chair/comfy/blue{ +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"jGF" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"jGO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"jGV" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jHj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +/area/almayer/squads/charlie_delta_shared) "jHl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -26097,192 +26072,188 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"jHp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/camera, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jHw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"jHA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"jHE" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 +"jHH" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/item/tool/soap, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"jHF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"jHN" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"jHJ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/area/almayer/engineering/lower) "jHR" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/weapon_room) -"jIb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"jIk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"jIl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"jIp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +"jHU" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"jIo" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"jIr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"jIu" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "jIv" = ( /turf/closed/wall/almayer, /area/almayer/living/commandbunks) -"jIy" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/numbertwobunks) -"jIz" = ( -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/starboard_garden) -"jIG" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"jIH" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +"jIx" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/living/briefing) +"jIC" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"jIE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) "jIL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"jJw" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/aft_hallway) -"jJI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jJR" = ( +"jIO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"jIX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jJi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"jJq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"jJF" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"jJK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jJW" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"jJV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jKc" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = -25; + req_access_txt = "200" }, -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"jKd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_p) -"jKk" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"jKJ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"jKf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"jKi" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"jKj" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"jKn" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"jKK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"jKr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jKz" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"jKF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jKX" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"jKT" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"jLg" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jKZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) "jLh" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -26293,107 +26264,158 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"jLz" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, +"jLo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"jLC" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8; - layer = 3.1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_med"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"jLQ" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"jMm" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"jMu" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"jMw" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/lifeboat_pumps/south1) +"jLH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jLV" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"jLX" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"jMT" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = -25; - req_access_txt = "200" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"jLY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; - pixel_y = 2 + pixel_y = 1 }, +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, /turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"jNa" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/obj/item/folder/black_random, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/area/almayer/medical/containment) +"jMb" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"jMc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"jMi" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jNh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access = "19;27;22" +/area/almayer/maint/hull/lower/l_m_s) +"jMj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 }, +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/turf/open/floor/almayer/green/southeast, +/area/almayer/shipboard/brig/cells) +"jMv" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/aft_hallway) +"jMV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"jNf" = ( +/obj/structure/platform_decoration, /turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"jNJ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"jOc" = ( +/area/almayer/maint/hull/upper/u_a_s) +"jNx" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"jNz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 8 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"jNC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"jND" = ( +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"jNL" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"jNO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"jNX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "jOg" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, @@ -26421,27 +26443,25 @@ /obj/item/weapon/gun/smg/m39, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) +"jOI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) "jOO" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_three) -"jPa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"jPg" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." +"jOU" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/chief_mp_office) +"jPb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"jPk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) "jPn" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -26469,57 +26489,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"jPK" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"jPN" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"jPY" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"jQh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 12 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/structure/sign/poster/propaganda{ - pixel_y = 34 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"jQx" = ( -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +"jPV" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"jQy" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "jQz" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/effect/decal/warning_stripes{ @@ -26543,148 +26519,175 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"jQV" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"jRw" = ( -/obj/structure/disposalpipe/segment{ +"jQG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"jRJ" = ( -/obj/structure/girder/displaced, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jRO" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/maint/hull/lower) +"jQI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"jQK" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"jRR" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"jRT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/aft_hallway) -"jSe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/starboard_umbilical) -"jSf" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/lifeboat) -"jSk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"jSw" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 + dir = 4 }, /turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) -"jSZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"jTo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +"jQM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"jQY" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"jRf" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"jRj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"jTx" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"jRz" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"jRI" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"jRN" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"jRO" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"jRQ" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"jRV" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"jTy" = ( -/obj/structure/bed/chair{ - dir = 1 +"jSv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"jTz" = ( -/obj/item/stool, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"jTA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/area/almayer/living/grunt_rnr) +"jSz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"jSB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"jSE" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jSJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"jTB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"jSQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 3; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"jTb" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"jTf" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/armory) -"jTC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/obj/structure/machinery/light/built, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jTy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"jTG" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) "jTK" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"jTP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; - dir = 4; - id = "crate_room4"; - name = "dilapidated storage shutters" +"jTL" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"jTT" = ( -/obj/structure/toilet{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"jTU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/window/tinted{ - dir = 8 +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "jTW" = ( /obj/structure/closet/hydrant{ pixel_x = 30 @@ -26698,150 +26701,105 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"jUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"jUG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"jUK" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) -"jUk" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"jUr" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"jUv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"jUx" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"jUE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = -13 +"jUM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"jUN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "jUO" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"jUX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"jVk" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"jVn" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"jVu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N" }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"jVj" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"jVw" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"jVt" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/red/west, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/warden_office) -"jVv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) "jVA" = ( /turf/closed/wall/almayer/research/containment/wall/purple{ dir = 4; icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"jVC" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +"jVF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"jWb" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jVJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jVR" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jVS" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"jWd" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) "jWf" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/south2) -"jWx" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"jWR" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"jWZ" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) "jXc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -26851,52 +26809,76 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"jXd" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) "jXi" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"jXq" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jXr" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/aft_hallway) -"jXI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"jXK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"jXv" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"jXB" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" }, -/obj/structure/platform{ +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"jXC" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "jXO" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"jYd" = ( -/obj/structure/machinery/door_control{ - id = "or04"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +"jXP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"jXU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/securestorage) +"jYb" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Warden Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"jYh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) "jYm" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/item/tool/warning_cone{ @@ -26916,38 +26898,13 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"jYD" = ( -/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/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"jYE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) +"jYq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"jYC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) "jYJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26959,116 +26916,59 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"jYN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, +"jYK" = ( /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"jYV" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 10 +/area/almayer/living/numbertwobunks) +"jYZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/engineering/port_atmos) "jZb" = ( /obj/structure/machinery/keycard_auth, /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"jZl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/hydroponics) "jZv" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"jZy" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) "jZE" = ( /turf/closed/wall/almayer, /area/almayer/squads/delta) -"jZG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_four) -"jZQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -6 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"jZU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"kaf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"kam" = ( -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"kaj" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "kat" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"kav" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop) -"kay" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, +"kaD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"kaA" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"kaC" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 - }, -/turf/open/shuttle/dropship/light_grey_left_to_right, -/area/almayer/hallways/hangar) +/area/almayer/command/telecomms) "kaG" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black, @@ -27083,302 +26983,372 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"kaS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bloodsoup{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"kbm" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"kbn" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/cryo_cells) -"kbu" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"kbV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kcb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"kaM" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"kaR" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/obj/structure/platform{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ - name = "\improper Perma Cells" +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"kaY" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"kbw" = ( +/obj/structure/machinery/chem_storage/medbay{ + dir = 1 + }, +/obj/structure/machinery/chem_storage/research{ + dir = 1; + layer = 3; + pixel_y = 18 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"kci" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +/area/almayer/medical/hydroponics) +"kbx" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kbC" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"kbI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"kcm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/weapon_room) +"kbN" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"kcs" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"kbO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kck" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "south_central_checkpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"kcl" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kcA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "24;31" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"kcx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"kcC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "southcheckpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kcH" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"kcE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kcJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"kdd" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"kdj" = ( -/obj/item/clothing/head/helmet/marine{ - pixel_x = 16; +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"kcR" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower) +"kcW" = ( +/obj/structure/machinery/cryopod{ pixel_y = 6 }, -/obj/item/reagent_container/food/snacks/grown/poppy, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) "kdp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) -"kdv" = ( -/obj/structure/platform, -/obj/structure/platform{ +"kdC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"kdD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"kdM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"kdK" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"kdY" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"kdX" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/aft_hallway) -"keq" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"keo" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/pilotbunks) +"kev" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"keF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"key" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering) -"keM" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/chemistry) -"keQ" = ( +/area/almayer/living/offices) +"kfe" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"kfg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"kfi" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kfm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"kfb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"kfl" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"kfp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"kfx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"kfN" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"kfn" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"kfP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/cmcap, +/obj/item/clothing/head/cmcap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"kfS" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 18"; + buildstate = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kfY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"kfC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"kfE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/iv_drip, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"kfH" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"kge" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"kfZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"kgh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/clothing/glasses/science{ - pixel_x = 1; - pixel_y = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"kgj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"kgi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"kgm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"kgp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/red/northeast, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"kgs" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"kgB" = ( +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/south1) -"kgr" = ( -/obj/structure/platform{ +"kgC" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"kgu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"kgv" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kgF" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northeast, -/area/space) -"kgS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"kgE" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"kgJ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"kgO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"kgQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"khE" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"khe" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"khi" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"khY" = ( -/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"kid" = ( -/obj/effect/step_trigger/clone_cleaner, +"khl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"khS" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"kic" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "kii" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"kik" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) +"kil" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "kim" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/sriracha{ @@ -27387,107 +27357,170 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"kio" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kip" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"kiu" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) "kiw" = ( /obj/vehicle/powerloader{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"kiB" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"kiM" = ( +"kiG" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"kiH" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kiY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/hull/upper/u_f_p) +"kjb" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"kje" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"kjn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"kjg" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red/north, -/area/almayer/living/cryo_cells) -"kjp" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"kju" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"kjq" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"kjE" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"kkw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"kjR" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kjS" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"kjX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"kkT" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "72" +/area/almayer/hallways/lower/port_umbilical) +"kkc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hallways/hangar) -"kkV" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/aft_hallway) +"kkd" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kkl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kkp" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"kkw" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"kkH" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"kkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"kkO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kkT" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "72" + }, +/area/almayer/hallways/hangar) +"kkU" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"kkV" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) +"klf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"klo" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"klp" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) "klu" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"klw" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) -"klD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +"kly" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "klE" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -27500,10 +27533,18 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"klL" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +"klO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"klQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"klU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) "kma" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -27515,169 +27556,170 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"kmn" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"kmg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; +/obj/structure/sign/safety/coffee{ pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kmt" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"kmu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"kmE" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/port) -"kmG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kmV" = ( -/obj/structure/bed/chair{ +/area/almayer/living/grunt_rnr) +"kmh" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"kna" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"kni" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kmm" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"kmw" = ( +/turf/open/floor/almayer/bluecorner/east, /area/almayer/hallways/upper/aft_hallway) -"knl" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"knB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"kmx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"knH" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"knV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/living/briefing) +"kmB" = ( +/obj/structure/closet/secure_closet/personal, /turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/hull/upper/u_f_p) -"knZ" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/engineering/upper_engineering/port) +"kmD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin{ - pixel_x = -7 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" }, -/obj/item/tool/pen{ - pixel_y = 3 +/obj/structure/surface/rack, +/obj/item/parachute{ + pixel_y = 8 }, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/item/parachute, +/obj/item/parachute{ + pixel_y = -6 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"koa" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/command/lifeboat) -"kon" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silverfull, +/area/almayer/hallways/lower/repair_bay) +"kmM" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kmS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"knr" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"knx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/basketball) +"kny" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"knR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"knT" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"knX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"kog" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "koq" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/bed/chair, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"kot" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"kox" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 5; - pixel_y = 16 +"koA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/filingcabinet/disk{ - density = 0; - pixel_x = -11; - pixel_y = 16 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"koN" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"koU" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"kpe" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"koG" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/command/cic) -"koI" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/orange/northeast, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/aft_hallway) +"kph" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/perma) "kpn" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -27696,87 +27738,95 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"kpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"kpp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"kps" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) +"kpO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering/starboard) +"kpR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"kpt" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = -7 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/warden_office) -"kpG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"kpK" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/tool/pen{ + pixel_y = 3 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"kqj" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"kqp" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"kqq" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"kpT" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "kqr" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/charlie) -"kqX" = ( -/obj/structure/surface/table/reinforced/almayer_B, +"kqx" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"kqZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/almayer/living/offices) +"kqG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"kra" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"krc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"kqM" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"krj" = ( /obj/structure/machinery/light/small{ dir = 8 }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) +/area/almayer/maint/hull/upper/u_a_s) +"krk" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"krl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) "krw" = ( /obj/structure/barricade/handrail, /obj/structure/barricade/handrail{ @@ -27785,97 +27835,134 @@ /obj/structure/largecrate/random, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"krx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"kry" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) "krD" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) +"krH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/hangar) "krR" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"krZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"ksb" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"ksh" = ( +"ksf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"ksr" = ( -/obj/structure/machinery/cm_vending/gear/medic, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ksE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/hallways/lower/port_umbilical) +"ksj" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"ksK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ksp" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"ksu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"ktr" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"ksM" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes{ + pixel_y = 9 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"kts" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"ksT" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"ktB" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"ktE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"ktg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"ktj" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower) +"ktk" = ( /turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) +/area/almayer/engineering/lower) +"ktq" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"ktA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/general_equipment) +"ktC" = ( +/obj/structure/bed, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ktF" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/almayer/hallways/hangar) +"ktG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "ktI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/head/cmcap{ @@ -27892,209 +27979,112 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ktR" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/meal5, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"ktT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"ktZ" = ( +"ktJ" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Brig"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"kum" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"ktP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"ktQ" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"kuq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"kuE" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"ktX" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"ktY" = ( /obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = 6; + pixel_y = 8 }, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kuR" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 +/obj/item/prop/magazine/boots/n055{ + pixel_x = -9; + pixel_y = 5 }, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"kuU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/offices/flight) +"kuI" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "kuZ" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"kva" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"kvi" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kvm" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kvc" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"kvr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"kvk" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kvG" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"kvs" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"kvv" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"kvw" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"kvF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"kvP" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"kvS" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) "kwb" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"kwe" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"kwv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"kwg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kwp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"kww" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/squads/alpha) +"kwO" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"kwB" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) -"kwN" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) "kwT" = ( /obj/structure/machinery/door_control{ id = "tcomms"; @@ -28107,123 +28097,157 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"kwU" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"kwX" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/item/clothing/mask/rebreather/scarf, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"kxh" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"kxp" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"kxq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"kxe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"kxj" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kxu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kxA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"kxw" = ( +/obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"kxD" = ( -/obj/structure/machinery/door_control{ - id = "pobunk1"; - name = "PO1 Privacy Shutters"; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"kyt" = ( -/turf/open/floor/almayer/orange/west, /area/almayer/maint/hull/lower/l_m_s) -"kyI" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 +"kxy" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/engineering/lower/workshop/hangar) +"kxB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"kxC" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kxY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"kyp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"kyA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/facepaint/green, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"kyG" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_four) +"kyH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/perma) "kyJ" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"kyT" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"kzb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"kyL" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kyR" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"kyS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"kyW" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"kzj" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"kzm" = ( -/obj/structure/bed/chair/comfy{ +"kzx" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"kzB" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"kzW" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"kzR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"kAb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"kzX" = ( -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"kzY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kAc" = ( -/obj/structure/platform, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/engineering/lower) "kAf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28236,24 +28260,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"kAi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"kAl" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -11; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) "kAm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28263,131 +28269,60 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"kAp" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) "kAr" = ( /turf/open/floor/wood/ship, /area/almayer/living/grunt_rnr) -"kAE" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"kAF" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"kAN" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"kBa" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ +"kAU" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"kAW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kAY" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"kBe" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane{ - anchored = 1 +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"kBj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"kBu" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"kBi" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"kBl" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kBN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"kCj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kBs" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 12"; - buildstate = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"kBx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"kBy" = ( -/obj/structure/largecrate/random/barrel/red, +/area/almayer/living/briefing) +"kCo" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"kBz" = ( -/obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"kBA" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/execution) -"kCb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"kCm" = ( +/area/almayer/maint/hull/lower/l_a_p) +"kCu" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"kCO" = ( /obj/structure/surface/rack, -/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kCn" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"kCp" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) -"kCy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"kCC" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_f_s) "kCP" = ( /obj/effect/attach_point/electronics/dropship2{ dir = 1 @@ -28395,356 +28330,254 @@ /obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"kCV" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +"kCR" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"kCW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"kDb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/sign/safety/medical{ - pixel_x = -17; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -9 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"kCY" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"kDc" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"kDd" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"kDm" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"kDw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/plate, /area/almayer/medical/lower_medical_medbay) -"kDe" = ( +"kDD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"kDx" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"kDE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"kDz" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/sign/safety/terminal{ +/obj/structure/sign/safety/restrictedarea{ pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/aft_hallway) -"kDC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "kDQ" = ( /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"kEd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"kEe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"kEl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, +"kDW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"kEc" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"kEf" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"kEp" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ +/area/almayer/maint/hull/upper/u_a_p) +"kEh" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"kEt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/freezer/industry, -/obj/item/reagent_container/glass/beaker/silver, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kEu" = ( +/obj/structure/bed/chair/office/dark, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"kEB" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"kEH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"kEG" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" + name = "\improper Exterior Airlock"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"kEI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/shipboard/starboard_point_defense) +"kEJ" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"kFc" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kFp" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"kFw" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kFE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"kFK" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kEL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/area/almayer/maint/hull/upper/u_a_p) +"kFX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"kEM" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"kGg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"kER" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"kET" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"kEV" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/catwalk{ - health = null +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"kGr" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"kFf" = ( -/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kGz" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"kFh" = ( -/obj/structure/largecrate/random/case/double, +/area/almayer/hallways/lower/port_midship_hallway) +"kGB" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"kFt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"kFu" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"kFz" = ( -/obj/structure/machinery/light{ +/area/almayer/hallways/lower/vehiclehangar) +"kHo" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"kFG" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/command/cic) -"kFH" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"kFI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"kFJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"kFT" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"kHG" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "pipe-c" + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kFV" = ( -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"kGh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"kGi" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_midship_hallway) -"kGq" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 10"; - buildstate = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"kGy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/hallways/lower/port_midship_hallway) +"kHP" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) -"kGC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Rest and Relaxation Area" +"kHW" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"kGJ" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge3" +/obj/structure/platform{ + dir = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kIe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"kGQ" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/item/folded_tent/med{ + pixel_x = -8; + pixel_y = 14 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"kHd" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"kIk" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"kIu" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"kIx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"kHe" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"kHf" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"kHl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"kHp" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha_bravo_shared) -"kHT" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"kIn" = ( -/obj/structure/machinery/vending/snack, -/obj/item/clothing/head/cmcap/boonie/tan{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kIr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) "kIA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) @@ -28761,6 +28594,18 @@ }, /turf/open/space/basic, /area/space) +"kIG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kIJ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) "kIL" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -28768,233 +28613,300 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"kIQ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"kJk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"kIV" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"kJG" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kKa" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"kKd" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"kJb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"kJd" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"kJD" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"kKv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/junction{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"kJE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"kKw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = 25 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -6; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"kJI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kJS" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"kKb" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell/cl) +"kKv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"kKD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"kKI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"kKB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/obj/item/clipboard, +/area/almayer/hallways/lower/port_midship_hallway) +"kKS" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"kKT" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"kKE" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-1"; - req_access = null +/area/almayer/hallways/hangar) +"kLn" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 2"; + buildstate = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"kKO" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"kLT" = ( -/obj/structure/machinery/computer/ordercomp, -/obj/structure/sign/safety/galley{ - pixel_x = -17 +/area/almayer/engineering/lower/engine_core) +"kLu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"kLJ" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/squads/charlie) +"kLK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"kLU" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kLV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "kLX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"kMd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) "kMe" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "27" }, /area/almayer/hallways/hangar) -"kMg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"kMf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"kMi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"kMo" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kMk" = ( +/obj/item/clothing/head/helmet/marine/reporter, +/obj/item/clothing/suit/storage/marine/light/reporter, +/obj/item/clothing/head/cmcap/reporter, +/obj/item/clothing/head/fedora, +/obj/structure/closet/secure_closet, +/obj/item/storage/box/tapes, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "kMt" = ( /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"kMv" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kME" = ( -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) +"kMB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Upper Engineering" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "kMF" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"kMH" = ( +"kMR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"kMT" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"kMV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + dir = 5 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"kMX" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"kNi" = ( -/obj/structure/machinery/light{ - dir = 8 + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kNo" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8 +/area/almayer/shipboard/weapon_room) +"kMW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) -"kND" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"kNc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"kNp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 13 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"kNJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/tool/hand_labeler{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"kNN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"kNO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"kNt" = ( +/obj/structure/machinery/door_control{ + id = "or1privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"kOc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"kNz" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "Morgue Waiting Room"; - req_one_access = null +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"kOd" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"kNF" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"kNS" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"kNV" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kNX" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/starboard_missiles) +"kOa" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "kOj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -29004,193 +28916,138 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"kOl" = ( -/obj/structure/machinery/light{ +"kOK" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"kOo" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/chemistry) -"kOq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" - }, -/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) -"kOw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"kOU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"kOA" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"kOG" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"kOO" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/aft_hallway) -"kPm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"kPs" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"kPy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Basketball Court" + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"kOY" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"kPB" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/lifeboat) -"kPE" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "agentshuttle"; - indestructible = 1; - unacidable = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"kPf" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kPp" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "kPO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"kPP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"kPR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) +"kPW" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "kQb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"kQk" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"kQx" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 8 +"kQd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"kQf" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"kQH" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"kQh" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/evidence_storage) +"kQu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"kQM" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kQz" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"kQJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"kQX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kQU" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kRw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"kQZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop/hangar) -"kRh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"kRk" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"kRH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, /turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) -"kRq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"kRt" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment) -"kRC" = ( +"kRI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"kRJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) "kRO" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"kRS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "kRW" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -29198,63 +29055,67 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"kSa" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"kSn" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"kSS" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"kTf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"kRX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kSc" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kSJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"kSP" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"kSX" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"kTb" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"kTm" = ( /obj/structure/machinery/light, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"kTe" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"kTj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/lifeboat_pumps/north1) "kTn" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/gym) -"kTK" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -16 +"kTB" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"kTQ" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kTY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_p) +"kTF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"kTI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"kTZ" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/silver/west, +/area/almayer/engineering/port_atmos) "kUb" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -29265,113 +29126,95 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"kUe" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +"kUl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"kUM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/closet/secure_closet/freezer/industry, +/obj/item/reagent_container/glass/beaker/silver, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"kUk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"kUo" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"kUA" = ( -/obj/structure/bed/chair/comfy/beige{ +/area/almayer/engineering/lower/workshop/hangar) +"kUO" = ( +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kUC" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"kUG" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 +/area/almayer/command/combat_correspondent) +"kVn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"kUW" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "7;19" }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"kVt" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"kVB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/red, +/area/almayer/maint/hull/upper/u_a_p) +"kVO" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kVd" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"kVl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/living/gym) +"kVS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"kVK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"kVT" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"kVW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"kVZ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"kWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"kWf" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kWv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"kWo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/obj/item/device/lightreplacer, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kWB" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/area/almayer/maint/hull/lower/l_m_p) +"kWw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"kWA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"kWF" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "kWI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -29381,112 +29224,121 @@ "kWK" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_point_defense) -"kXr" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"kXC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 +"kWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"kXF" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"kXG" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, +/area/almayer/maint/hull/upper/u_f_s) +"kXd" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"kXI" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 +/area/almayer/maint/hull/lower/l_f_p) +"kXh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kXJ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"kXs" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"kXN" = ( -/obj/item/storage/box/matches{ - pixel_x = -11; - pixel_y = -3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"kXU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/folder/white{ + pixel_x = 6 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 4 +/obj/item/storage/fancy/vials/empty{ + pixel_y = 10; + start_vials = 2 }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -8; +/obj/item/tool/pen{ pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"kXW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"kXY" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "kYb" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/handheld1, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"kYr" = ( -/obj/structure/closet/secure_closet/hydroresearch, -/obj/item/reagent_container/glass/watertank, -/obj/item/reagent_container/glass/watertank, +"kYc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"kYu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"kYm" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"kYq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/poster{ + desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; + icon_state = "poster14"; + name = "propaganda poster"; + pixel_y = 32 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kYw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kYM" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/command/lifeboat) "kYQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -29496,60 +29348,84 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"kYX" = ( -/obj/structure/window/reinforced{ - dir = 8 +"kYW" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kYY" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 8; name = "ship-grade camera" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"kZg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"kZi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kZk" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"kZh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"kZj" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_m_p) +"kZm" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"kZA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"kZV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kZL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lap" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/area/almayer/engineering/lower/workshop) +"kZW" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"lam" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) "lar" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) +"las" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) "lax" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -29561,60 +29437,87 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"laP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"laD" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"laF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"laT" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) +/area/almayer/engineering/lower/workshop) +"laI" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Spare Restraints"; + req_one_access_txt = "3" + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"laK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = -28 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "laW" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"laZ" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"lbc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"lbf" = ( +"lbd" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"lbr" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"lbs" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"lbB" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 4; - id = "crate_room2"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"lbl" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"lbt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lbx" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"lby" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"lbB" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 + health = 80 }, /obj/structure/window/reinforced{ dir = 8; @@ -29622,46 +29525,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"lbC" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/living/gym) -"lbM" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"lbU" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/frag, -/obj/item/mortar_shell/frag, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lca" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"lcc" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"lci" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"lbT" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + indestructible = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"lck" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "lco" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -29679,6 +29553,37 @@ "lcA" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/chief_mp_office) +"lcB" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"lcC" = ( +/obj/structure/machinery/computer/cameras/containment/hidden{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album, +/obj/item/device/camera_film, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"lcO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/aft_hallway) "lcV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -29689,36 +29594,16 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"ldc" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"ldg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"ldm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = -3 - }, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, +"lcZ" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ldu" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, /area/almayer/maint/hull/lower/l_f_p) +"ldb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) "ldv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/multitool{ @@ -29729,23 +29614,41 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"ldA" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +"ldw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"ldC" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/cryo_cells) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"ldI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"ldJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "ldT" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ldU" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"leb" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/living/briefing) "lee" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/warning_stripes{ @@ -29757,45 +29660,71 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"lej" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/biolab{ - pixel_x = 32; - pixel_y = 7 - }, +"leg" = ( /obj/structure/sign/safety/water{ - pixel_x = 32; - pixel_y = -8 + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"len" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/tool/crowbar, +/area/almayer/maint/hull/lower/l_m_s) +"leq" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/item/bananapeel{ + desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; + icon = 'icons/obj/items/weapons/guns/attachments.dmi'; + icon_state = "iffbarrel"; + name = "Broken B8 Smart-Scope"; + pixel_x = -1; + pixel_y = 11 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"leA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; +/area/almayer/living/starboard_emb) +"ler" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_one_access = null }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"leR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 +/area/almayer/medical/lower_medical_medbay) +"leL" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) +/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/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"leU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "leX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/case/small, @@ -29804,291 +29733,201 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"lfc" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"lfg" = ( -/obj/structure/machinery/light/small{ +"lfk" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"lfD" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) -"lfL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/command/cic) +"lfq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lfr" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"lfP" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lfQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"lfX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"lfy" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lgc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +/area/almayer/maint/hull/upper/u_f_p) +"lfE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"lge" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"lgk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"lfR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lgn" = ( -/obj/structure/machinery/vending/snack{ - pixel_x = -7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"lgp" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/vending/coffee{ - pixel_x = 14 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"lgv" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"lgu" = ( -/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"lgM" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, /turf/open/floor/almayer/plate, /area/almayer/command/cic) -"lgB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +"lgN" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/turf/open/floor/almayer/red/southwest, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/aft_hallway) -"lgC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"lgJ" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"lgK" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"lgR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"lgT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/living/briefing) +"lgX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"lgY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) "lgZ" = ( /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"lha" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"lhm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"lhh" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/hallways/upper/aft_hallway) +"lhw" = ( +/obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lhQ" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"lhy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lhW" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer2" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"liv" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue Processing"; - req_access_txt = "25"; - req_one_access = null + dir = 9 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"lhD" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell/cl) +"lid" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"liL" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"lif" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"lio" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lip" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"lir" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"lis" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"liu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "liP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"liU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) +"liS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "liX" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"lje" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"ljm" = ( -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ljn" = ( -/obj/structure/closet/firecloset, +"ljf" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/ce_room) +"ljy" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"ljC" = ( +/obj/structure/largecrate/supply, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"lju" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"ljD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"ljG" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lkc" = ( +/area/almayer/maint/hull/upper/u_f_s) +"lke" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"lkh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"lkl" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "lkm" = ( /turf/closed/wall/almayer/research/containment/wall/connect_w, /area/almayer/medical/containment/cell) -"lks" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"lkE" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"lkC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lkI" = ( -/obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"lkK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) +/area/almayer/living/bridgebunks) "lkL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -30097,42 +29936,100 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"lkT" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"lkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"lkM" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_one) +"lkN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"lkS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lkW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "lkY" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"llf" = ( -/obj/structure/toilet{ +"lle" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) "lli" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell) -"llt" = ( -/obj/structure/pipes/vents/scrubber{ +"lll" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"llq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"llA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"llH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"llK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"llu" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = 10 + }, +/obj/item/clothing/head/chefhat, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"llY" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) "lmc" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -30142,34 +30039,26 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"lmf" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"lmj" = ( -/turf/open/shuttle/dropship/light_grey_left_to_right, -/area/almayer/hallways/hangar) -"lmr" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"lmd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"lmu" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lmK" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"lmB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/living/offices) +"lmI" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/cells) "lmN" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/chef/classic, @@ -30177,48 +30066,91 @@ /obj/item/clothing/suit/chef/classic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"lmR" = ( -/obj/structure/machinery/cm_vending/gear/engi, +"lmQ" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/machinery/space_heater, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"lmU" = ( +/obj/structure/machinery/cm_vending/gear/medic, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"lna" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"lmW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"lne" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"lnL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/firealarm{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"lnh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lnM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lnW" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"lnl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"loa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"lnm" = ( +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"lnr" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) +"lnT" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"lnZ" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 5"; + buildstate = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"lof" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) "lol" = ( /obj/structure/machinery/light{ dir = 8 @@ -30228,71 +30160,66 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"lot" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 12 +"lop" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"lou" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"loE" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/item/storage/box/masks{ - pixel_x = 5 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"loK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/reagent_container/glass/minitank{ - pixel_x = -7; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"loZ" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 11"; + buildstate = 1 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"loy" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"loB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"loF" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"lpe" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"lps" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"loS" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"lpu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"lpk" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"lpn" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 + dir = 1 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lpx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lpr" = ( -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) -"lpv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ +/obj/structure/disposalpipe/segment{ dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "lpz" = ( /obj/structure/sign/ROsign{ layer = 3 @@ -30303,12 +30230,37 @@ /obj/structure/shuttle/part/dropship2/transparent/engine_right_cap, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"lqu" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"lpE" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/tool/plantspray/weeds, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lqf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/starboard_midship_hallway) +"lqg" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"lqq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) "lqv" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -30319,69 +30271,103 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"lqF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 +"lqw" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"lqx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"lqK" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) "lqM" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lqP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"lqR" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-3"; + req_access = null }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"lqX" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"lqY" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"lrb" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/maint/hull/upper/u_m_p) +"lrd" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"lre" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lrh" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"lro" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "lrq" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) +"lru" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) "lrx" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave{ @@ -30389,17 +30375,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"lrI" = ( +"lrA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lrQ" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"lrK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/general_equipment) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"lrW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "lrY" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -30408,163 +30412,309 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"lsq" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 +"lsa" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"lsl" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 16"; + buildstate = 1 }, -/obj/item/tool/weldpack{ - pixel_x = -2 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lsv" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/command/cic) -"lsL" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"lsA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"lsF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"lsM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lsP" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"lsV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"lte" = ( +/obj/structure/machinery/computer/dropship_weapons/dropship2, +/obj/structure/phone_base/rotary{ + name = "Normandy Telephone"; + phone_category = "Dropship"; + phone_id = "Normandy"; + pixel_x = 11; + pixel_y = 16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"ltg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"lth" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/area/almayer/maint/hull/upper/u_f_p) +"ltn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"ltj" = ( -/obj/structure/platform{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"ltt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/platform{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"ltu" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"ltv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"ltw" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"ltK" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"ltS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"luj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"lun" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) -"luc" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/item/trash/cheesie, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"luA" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"luD" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"luJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/morgue) +"luN" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"luU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"lum" = ( -/obj/structure/machinery/photocopier, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"lup" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"luY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"luI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) -"luL" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/tool/pen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = 32 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"luT" = ( +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "S" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"luZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) +/area/almayer/shipboard/brig/lobby) "lve" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"lvD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 1 +"lvq" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"lvI" = ( -/obj/structure/toilet{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"lvz" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"lvB" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"lvJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lvM" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "lvV" = ( /obj/structure/shuttle/part/dropship2/bottom_right_wall, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"lwl" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lwp" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_midship_hallway) -"lws" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"lww" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Officer's Study" +"lvY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"lwj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"lwx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lwy" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"lwG" = ( -/obj/structure/closet/basketball, /obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"lwH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"lwN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/autoopenclose{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"lwO" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/basketball) +/area/almayer/maint/hull/upper/u_m_s) +"lwP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Combat Support Secondary Preparations"; + req_one_access = "19;27;22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) "lwQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -30574,68 +30724,42 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"lwR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"lwT" = ( -/obj/structure/reagent_dispensers/pacidtank{ - anchored = 1 - }, +"lwS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"lxf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lxp" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"lxt" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/hull/lower/l_m_s) -"lxz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + icon_state = "S" }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"lwW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; + name = "\improper Astronavigational Deck"; req_access = null; req_one_access_txt = "3;19" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_missiles) -"lxJ" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/area/almayer/shipboard/navigation) +"lwZ" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/general_equipment) +"lxc" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"lxn" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"lxr" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"lxu" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) "lxM" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey{ desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; @@ -30656,99 +30780,136 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"lyd" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"lym" = ( +"lxP" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters"; + name = "Privacy Shutters"; + pixel_y = -20; + req_access_txt = "200" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"lxX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"lyu" = ( -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_x = -4; - pixel_y = 2 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lyg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"lyC" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/tool/crowbar, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"lyK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"lzt" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"lzB" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/shipboard/brig/cells) +"lzI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"lyP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/area/almayer/engineering/lower) +"lzW" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/aft_hallway) -"lyS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lyV" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"lzY" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"lAf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/device/helmet_visor{ - pixel_x = 8; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"lyZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"lze" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 +/area/almayer/medical/hydroponics) +"lAm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"lzf" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"lzs" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Lifeboat Control Bubble"; - req_access = null +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"lAo" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"lzX" = ( -/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"lAu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/computer/working_joe, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"lAN" = ( +/area/almayer/shipboard/navigation) +"lAv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"lAE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"lAY" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "lBn" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -30762,50 +30923,109 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"lBq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Deck Waste Tank Control" +"lBo" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"lBs" = ( -/obj/structure/morgue, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"lBv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) -"lBG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"lBr" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"lBK" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"lBt" = ( +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lCy" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"lBx" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"lBB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lBO" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"lBV" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/machinery/power/apc/power/north, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"lCa" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/turf/open/floor/almayer/emeraldcorner/east, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"lCb" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"lCo" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"lCs" = ( +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) +"lCv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"lCC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"lCD" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) "lCE" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -30818,20 +31038,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"lCI" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"lCN" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) "lCO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -30839,242 +31045,359 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"lCU" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, +"lCT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"lCV" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"lCY" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"lDe" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"lDf" = ( +"lDk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"lDm" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"lDl" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"lDn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"lDK" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"lDG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"lDY" = ( -/obj/structure/machinery/cm_vending/clothing/leader/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"lEb" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) +/area/almayer/command/corporateliaison) +"lDP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + dir = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"lDW" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"lDX" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) "lEg" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"lEl" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 +"lEo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lEm" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"lEn" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/starboard_missiles) +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) "lEt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"lEw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"lED" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"lER" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lEA" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/aft_hallway) -"lEI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"lEW" = ( +/obj/structure/surface/table/almayer, +/obj/item/shard, +/obj/item/tool/extinguisher, +/obj/item/stock_parts/scanning_module, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"lEJ" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/engineering/upper_engineering) +"lEY" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/orange/west, /area/almayer/maint/hull/upper/u_f_p) -"lEP" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"lES" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/living/briefing) -"lEU" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"lEV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"lFd" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/obj/item/tool/crowbar/red, -/turf/open/floor/almayer/orange/west, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, /area/almayer/engineering/upper_engineering/starboard) +"lFf" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "lFg" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/almayer, /area/almayer/squads/req) -"lFk" = ( +"lFo" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"lFt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/green/west, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/aft_hallway) -"lFq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +"lFw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"lFv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"lFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/lower/port_midship_hallway) +"lFG" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"lFI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; - icon_state = "HotlineAlt"; - layer = 2.9; - name = "Richard the tiger" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"lFR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"lFJ" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = -25 + }, +/obj/structure/sign/prop3{ + pixel_x = -32 + }, +/obj/structure/machinery/faxmachine/uscm{ + department = "SEA" + }, +/turf/open/floor/strata/faux_metal, +/area/almayer/shipboard/sea_office) +"lGa" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/storage/bag/trash{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/bag/trash{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/storage/bag/trash{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"lGm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"lFP" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"lGb" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"lGi" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"lGn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"lGu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lGy" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"lGB" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/command/cichallway) +"lGF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"lGY" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"lHb" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/phone_base{ + dir = 1; + name = "Brig Warden's Office Telephone"; + phone_category = "Offices"; + phone_id = "Brig Warden's Office"; + pixel_x = -16 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"lHp" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"lGG" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 }, -/obj/structure/sink{ - pixel_y = 24 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) -"lHB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lGL" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"lGM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"lGQ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "Telecommunications"; + req_access_txt = "6" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"lHI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"lHJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"lGR" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"lHL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"lGV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"lHx" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"lHG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_a_s) +"lHH" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"lHK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) "lHO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -31089,31 +31412,47 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"lHQ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"lHU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"lHR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"lHW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"lHV" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ +/area/almayer/shipboard/starboard_point_defense) +"lHY" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"lIh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "lIj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -31124,272 +31463,256 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"lIs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"lIu" = ( -/obj/structure/machinery/light/containment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"lID" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 +"lIv" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lIN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"lJz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/area/almayer/hallways/lower/vehiclehangar) +"lIG" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"lJE" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lJf" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/vending/snack{ - pixel_x = -18; - pixel_y = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lJu" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"lJH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"lJA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/red/north, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/warden_office) -"lJU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"lJG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"lJX" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"lKa" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"lKh" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/warden_office) -"lKl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"lJI" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lJQ" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/command/cic) +"lJR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"lKk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lKn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/living/briefing) +"lKF" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"lKq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"lKI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "line2"; + pixel_x = -4; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"lKA" = ( -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"lKL" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"lKQ" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/structure/machinery/door_control{ + id = "ROlobby2"; + name = "RO Line 2 Shutters"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"lKX" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/chemistry) +"lLf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"lLl" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"lLu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/sign/safety/ladder{ + pixel_x = -17 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"lLD" = ( +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lLn" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"lLp" = ( +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/reagentgrinder{ + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/device/reagent_scanner{ + pixel_x = -16; + pixel_y = 5 }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 1"; - name = "Containment Lockdown"; - pixel_x = -7; - pixel_y = 1; - req_one_access_txt = "19;28" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/door_display/research_cell{ - id = "Containment Cell 1"; - name = "Cell 1 Control"; - pixel_x = 5; - pixel_y = 2 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"lLt" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"lLC" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"lLI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"lLJ" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"lLT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"lLM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"lLQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/armory) -"lLX" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ +/area/almayer/shipboard/port_missiles) +"lLW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lMd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"lMf" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"lMg" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"lMv" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lMB" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "lME" = ( /obj/structure/closet/crate, /obj/item/clothing/glasses/welding, /obj/item/circuitboard, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"lMP" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"lNb" = ( -/obj/structure/closet/firecloset, +"lMJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lNe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"lNk" = ( -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"lNr" = ( -/obj/structure/machinery/light, +/area/almayer/maint/hull/lower/l_m_p) +"lMO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; + icon_state = "W"; pixel_x = -1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, /turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) -"lNv" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"lNN" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"lMV" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"lNS" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lOa" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 12; - pixel_y = 25 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"lMZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"lOi" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"lNk" = ( +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"lNm" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 1"; - name = "\improper Courtyard Divider" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) +/area/almayer/shipboard/brig/warden_office) +"lNM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"lNP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "lOp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -31400,23 +31723,14 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"lOq" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) "lOv" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "35" }, /area/almayer/hallways/hangar) -"lOD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +"lOB" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) "lOG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -31424,147 +31738,143 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"lOL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) +"lOM" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/starboard) "lOP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"lOV" = ( +"lOT" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"lOU" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"lPf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"lPh" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"lPm" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_four) +"lPp" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/northeast, +/area/almayer/maint/hull/upper/u_a_p) +"lPu" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"lPA" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 1 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"lPg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"lPE" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/hallways/upper/aft_hallway) +"lPJ" = ( +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"lPt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"lPS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"lPX" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"lPB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"lPR" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lQc" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/almayer/green/west, /area/almayer/squads/req) -"lPV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lQj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"lQs" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"lQv" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lQe" = ( +/area/almayer/command/lifeboat) +"lQz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"lQf" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"lQl" = ( -/obj/item/device/radio/marine{ - pixel_x = 6 - }, -/obj/item/device/radio/marine{ - pixel_x = 3 - }, -/obj/item/device/radio/marine, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"lQv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"lQz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/vending/cola, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"lQG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "lQK" = ( /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"lRd" = ( -/obj/structure/pipes/vents/pump{ +"lQP" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"lQR" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"lRg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"lRj" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lRl" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/living/captain_mess) "lRo" = ( /obj/structure/bed/chair{ dir = 8 @@ -31575,54 +31885,60 @@ /obj/item/newspaper, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lRx" = ( -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_x = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"lRA" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"lRM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"lRJ" = ( -/obj/structure/phone_base{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"lRU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lRO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/aft_hallway) +"lRQ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"lRZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lRX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"lSg" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"lSe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/engineering/port_atmos) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "lSp" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -31630,60 +31946,80 @@ }, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"lSD" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 +"lSB" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/sign/safety/press_area_ag{ +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"lSH" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"lSK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lSI" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"lSX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"lSM" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"lSN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"lTe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"lTq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"lTA" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"lST" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"lSV" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"lTG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"lTI" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lUe" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lTF" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/living/briefing) -"lTP" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"lTU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lUu" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"lUx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "lUB" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -31693,86 +32029,129 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"lUG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/offices/flight) -"lUI" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +"lUH" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"lUP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"lUQ" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer/tcomms, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"lVj" = ( +/turf/open/floor/almayer/orange/east, /area/almayer/command/telecomms) -"lVk" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) -"lVn" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.2; - pixel_x = -7; - pixel_y = 10 +"lVv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Chief MP's Office"; + req_access = null; + req_one_access_txt = "1;3" }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 3; +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"lVO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"lVS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"lVz" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"lVC" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"lVK" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/starboard) -"lVP" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"lVV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/aft_hallway) -"lVU" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"lWh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"lVW" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"lWe" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lWm" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"lWr" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop/hangar) +"lWw" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"lWC" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +/area/almayer/engineering/starboard_atmos) +"lWP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_one) -"lWF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lWX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"lWO" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "lXa" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black{ @@ -31780,28 +32159,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"lXp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"lXO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"lXk" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"lXV" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"lXX" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"lXZ" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/squads/req) "lYi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -31816,23 +32177,59 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"lYk" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/lifeboat) -"lYG" = ( -/turf/open/floor/almayer/silverfull, -/area/almayer/command/computerlab) -"lYM" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;7" +"lYu" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"lYy" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"lYz" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"lZc" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"lYA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"lYC" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"lYQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"lZf" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "lZi" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; @@ -31850,58 +32247,43 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"lZt" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"lZz" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"lZC" = ( -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/aft_hallway) -"lZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"lZU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"lZB" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mad" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/shipboard/starboard_point_defense) +"lZK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"lZM" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"maf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"mam" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mao" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"mal" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "mas" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/north1) @@ -31915,57 +32297,80 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"maA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"maw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"maT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"mbh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"mbi" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"may" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"maV" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"maW" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/cic) +"maZ" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"mbb" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mbw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"mbl" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/area/almayer/engineering/lower/workshop) +"mbD" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"mbN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mbS" = ( -/obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) +/area/almayer/command/cic) +"mbQ" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"mbT" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/medical) "mbV" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -31973,89 +32378,105 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"mbW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"mbX" = ( -/obj/structure/machinery/camera/autoname/almayer{ +"mca" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - name = "ship-grade camera" + icon_state = "pipe-c" }, -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"mcd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"mci" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"mcm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mcs" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"mcw" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/hallways/upper/aft_hallway) +"mco" = ( +/obj/structure/platform{ + dir = 1 + }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/repair_bay) +"mcD" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) "mcI" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"mcS" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) +"mcM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"mcV" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mcW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"mde" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/machinery/cryo_cell{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "mdk" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell) -"mdp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"mdr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"mdK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"mdz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/command/telecomms) +"mdO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/perma) -"mdM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"mdX" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_a_s) "mdY" = ( /obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ @@ -32063,21 +32484,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"mee" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"mem" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"mep" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer3" +"mef" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "meu" = ( /obj/structure/sign/safety/cryo{ pixel_x = 8; @@ -32085,110 +32497,142 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"mfh" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"mfi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"mfn" = ( +"meE" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"meK" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"mfo" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext"; - name = "Window Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "28" +/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/cell_charger, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_x = -26; - pixel_y = 1; - req_access_txt = "28" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"meO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"mfp" = ( -/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"meR" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mfK" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/living/captain_mess) +"mfc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"mfd" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/area/almayer/engineering/upper_engineering/starboard) +"mfs" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"mfu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"mfw" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"mfB" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) "mfM" = ( /turf/closed/shuttle/dropship2{ icon_state = "50" }, /area/almayer/hallways/hangar) -"mfN" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"mfV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 +"mfR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"mgd" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"mge" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_three) +"mfX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"mgL" = ( +/area/almayer/maint/hull/upper/u_f_s) +"mgj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop/hangar) +"mgo" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"mgt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mgv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"mgF" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"mgQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) "mgV" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, @@ -32199,286 +32643,274 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"mhf" = ( -/turf/closed/wall/almayer/reinforced, +"mgZ" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 15"; + buildstate = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) -"mho" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 +"mhl" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"mhs" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"miD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"mhr" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"miG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"miI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"mhA" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"mhG" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"miK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"miP" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/living/starboard_garden) +"miT" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"miX" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"mjh" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"mhQ" = ( -/obj/item/paper_bin/uscm{ +/obj/structure/sign/safety/biolab{ + pixel_x = 32; pixel_y = 7 }, -/obj/item/tool/pen, -/obj/structure/surface/table/reinforced/black, +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = -8 + }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"mhZ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"miw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/area/almayer/living/grunt_rnr) +"mji" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = 32 }, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"miC" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"miR" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"miY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mjG" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"mjQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "south_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"mjj" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mjU" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"mjX" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"mkb" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"mko" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mjl" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"mkz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"mkA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"mkN" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"mla" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"mjL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"mjY" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"mld" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"mlm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"mkd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"mki" = ( -/obj/structure/machinery/autolathe, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"mkn" = ( +/area/almayer/squads/req) +"mlo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"mku" = ( -/obj/structure/machinery/light/containment{ - dir = 4 + icon_state = "W"; + pixel_x = -1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ + pixel_x = -6; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/storage/firstaid/fire{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"mkG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/firstaid/adv{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"mkP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mlg" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"mlp" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"mlt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"mlG" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"mlq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mlO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"mlL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"mlP" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"mmw" = ( -/turf/open/floor/plating/plating_catwalk, +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt, +/obj/item/ashtray/glass, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) -"mmz" = ( -/obj/structure/bed/chair{ - dir = 4 +"mmh" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"mmB" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"mml" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/starboard_garden) -"mmF" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 }, -/obj/item/tool/screwdriver, /turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"mmw" = ( +/turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"mmO" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 +"mmQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"mmZ" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/blend, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "mna" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"mnf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"mnq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 +"mnb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Dropship Remote Control Console"; - shuttleId = "dropship_alamo"; - disabled = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"mnt" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 }, +/turf/open/shuttle/dropship/light_grey_top_left, +/area/almayer/hallways/hangar) +"mnv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"mnr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Engineering Reception" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"mnz" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/welding{ - pixel_y = 6 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +/area/almayer/engineering/upper_engineering/port) "mnI" = ( /turf/closed/wall/almayer/outer, /area/almayer/powered/agent) -"mnQ" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/living/briefing) -"mob" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"moi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"mnY" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"mnZ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"moh" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) "moo" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -32489,202 +32921,184 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"mox" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"moO" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"mpl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"moq" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"mot" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mpv" = ( -/obj/item/prop/almayer/box, -/obj/item/prop{ - desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m56c"; - item_state = "m56c"; - name = "broken M57 'Larry's Will' smartgun"; - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/obj/structure/machinery/door_control{ - id = "crate_room4"; - name = "storage shutters"; - pixel_y = 26 +/area/almayer/command/cichallway) +"mov" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/packageWrap, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"moD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"mpy" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"mqa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/accessory/red, -/obj/item/clothing/head/bowlerhat{ - pixel_x = 3; - pixel_y = 10 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" }, -/obj/item/clothing/suit/storage/webbing, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"mqh" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"moF" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/telecomms/broadcaster/preset_left, -/obj/structure/sign/safety/laser{ - pixel_y = 32 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"moM" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"moQ" = ( +/obj/structure/window{ + dir = 8 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"mqk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"mql" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"moU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Gym" }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"mqm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"mqn" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"moZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Field Surgery Equipment"; + req_access_txt = "20"; + req_one_access = null }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"mqo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"mpe" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"mpw" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"mqr" = ( -/obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"mqu" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"mpz" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mpL" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"mpM" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_y = -26 }, /turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"mqv" = ( +/area/almayer/squads/delta) +"mpP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"mqw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"mqz" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/squads/req) +"mpR" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 + }, +/turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"mqC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"mpU" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"mqD" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mqG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/hangar) +"mqd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"mqe" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mqI" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"mqR" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_m_p) +"mqi" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"mqV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mqn" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/squads/req) +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"mqq" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"mqZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) "mra" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -32692,28 +33106,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"mrb" = ( -/obj/structure/machinery/light{ - dir = 1 +"mrd" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"mrh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"mro" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"mrr" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"mrm" = ( +/obj/structure/machinery/line_nexter/med{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "mrt" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -32722,19 +33132,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"mrv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) "mry" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -32749,118 +33146,144 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"mrB" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 1"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"mrC" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"mrD" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) "mrG" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"mrN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"mrI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"mrS" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"mrK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mrQ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) +"mse" = ( +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 14 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/shipboard/brig/cells) +"mso" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_midship_hallway) -"msk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"msB" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"msl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "msC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"msJ" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +"msH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"mte" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"mth" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"mtG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"msN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"mtK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"mtR" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"mtg" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"mto" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"mtw" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"mtX" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mtZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "mua" = ( /turf/closed/wall/almayer, /area/almayer/living/port_emb) -"mub" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating, -/area/almayer/living/starboard_emb) -"mux" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) -"muK" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +"muf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"mug" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/living/cryo_cells) +"muv" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "muL" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -32871,31 +33294,52 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/armory) -"muU" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"muN" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"muT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"muY" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mvv" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 }, -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 +/obj/item/tool/weldpack{ + pixel_x = -2 }, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; - pixel_y = 8 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mvy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mvC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"mvg" = ( +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"mvO" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"mvT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -32906,92 +33350,105 @@ pixel_x = 12; pixel_y = 12 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"mvi" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/starboard_missiles) -"mvk" = ( -/obj/structure/barricade/handrail, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mvC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/maint/hull/lower/l_a_p) +"mwo" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/starboard_missiles) +"mwU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"mvY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"mwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"mwb" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"mwm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"mwK" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"mwQ" = ( -/obj/structure/sign/prop2{ - pixel_y = 29 +/obj/item/tool/kitchen/tray{ + pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"mwS" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"mxk" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"mxm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"mxq" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"mxC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_side, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_medbay) -"mxL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/red, +"mxu" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"mxw" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) -"mye" = ( -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = -1; - pixel_y = 8 +"mxA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"mxJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mxS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/obj/structure/machinery/door_control{ + id = "cl_shutters 3"; + name = "Quarters Shutters"; + pixel_x = -25; + req_access_txt = "200" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mxT" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"mxW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"mxY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) "myC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -33007,162 +33464,116 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"myK" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) "myQ" = ( /turf/closed/shuttle/dropship2{ icon_state = "36" }, /area/almayer/hallways/hangar) -"mzh" = ( -/obj/structure/machinery/light{ +"myR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"mzk" = ( -/obj/structure/machinery/brig_cell/perma_2{ - pixel_x = -32; - pixel_y = -4 - }, -/obj/structure/machinery/door_control{ - id = "Perma 2L"; - name = "Perma 2 Lockdown"; - pixel_x = -24; - pixel_y = 12; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"mzq" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"mzQ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mAc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"mAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/engineering/upper_engineering/port) +"mzD" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"mAp" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/squads/alpha) -"mAH" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"mAv" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"mAK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"mAM" = ( -/obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"mAN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"mAS" = ( -/obj/structure/platform, -/obj/structure/platform{ +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"mBp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"mBy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"mBv" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/cryo{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) "mBA" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"mBB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"mBL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +"mBE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"mBT" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"mCl" = ( -/obj/structure/toilet{ - pixel_y = 13 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/hydroponics) +"mBH" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = -3 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"mBP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"mCb" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"mCs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/prop/magazine/dirty{ - pixel_x = -6; - pixel_y = -10 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"mCv" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) "mCw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33172,41 +33583,47 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"mCx" = ( -/obj/item/clothing/mask/rebreather/scarf, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +"mCA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"mCB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 2 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"mCC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/area/almayer/hallways/upper/aft_hallway) +"mCM" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"mCQ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mDi" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"mDm" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"mCF" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"mDf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"mDw" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "mDx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -33219,25 +33636,30 @@ /obj/item/facepaint/green, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"mDI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"mDA" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/beret/cm, +/obj/item/clothing/head/beret/cm, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"mDF" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, +/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/upper/u_f_s) "mDK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"mDY" = ( -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) "mEa" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -33247,35 +33669,20 @@ "mEh" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) -"mEi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"mEy" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"mEz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"mEF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, +"mEp" = ( +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"mEH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"mEs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) "mEI" = ( /turf/closed/wall/almayer, /area/almayer/squads/req) @@ -33283,145 +33690,141 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"mEV" = ( -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell/cl) -"mEW" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"mEX" = ( -/obj/item/tool/screwdriver{ - layer = 2.9; - pixel_x = -21; - pixel_y = -14 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"mFf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"mEO" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = 25; + req_access_txt = "200" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mFk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mEV" = ( +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell/cl) +"mFe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"mFh" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) "mFo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"mFy" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mFD" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"mFF" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-1"; - req_access = null +"mFp" = ( +/obj/structure/machinery/photocopier, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"mFO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"mFt" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - id = "cl_shutters 2"; - name = "\improper Privacy Shutters" + name = "ship-grade camera"; + pixel_y = 6 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"mFG" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"mFW" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"mFK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mGe" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"mFR" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.2; + pixel_x = -7; + pixel_y = 10 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"mGi" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 3; + pixel_y = 12 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"mFZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"mGb" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"mGp" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"mGd" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/pilotbunks) -"mGy" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"mGn" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"mGw" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"mGG" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/closet/secure_closet/guncabinet/red, -/turf/open/floor/almayer/redfull, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "mGH" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"mGT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower) +"mGP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) "mGZ" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_cap, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"mHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) +"mHb" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mHc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"mHi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "mHl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -33435,113 +33838,156 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"mHu" = ( +"mHA" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -6 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"mHS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 + icon_state = "S" + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"mHX" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mIc" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mHC" = ( -/obj/structure/machinery/vending/cola, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mHM" = ( -/obj/structure/stairs/perspective{ +/area/almayer/hallways/hangar) +"mId" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mIg" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mIi" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"mIj" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - icon_state = "p_stair_sn_full_cap" + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/platform{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - layer = 2.7 + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"mIr" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mIl" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"mIm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/sign/safety/conference_room{ - pixel_x = -17 +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"mIq" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"mIt" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"mIy" = ( +/area/almayer/hallways/hangar) +"mIs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"mID" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"mIO" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mIK" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"mIN" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) "mIT" = ( /turf/closed/wall/almayer/research/containment/wall/connect_e2{ icon_state = "containment_wall_connect_e" }, /area/almayer/medical/containment/cell) -"mIV" = ( -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) "mIX" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/delta) -"mJc" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"mJd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"mJf" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mJv" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"mJD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/area/almayer/maint/hull/upper/u_a_s) +"mJh" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - name = "\improper Execution Equipment" +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"mJi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution) -"mJE" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 + icon_state = "pottedplant_20" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"mJH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"mJw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "mJJ" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -33554,31 +34000,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"mJK" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop) -"mJM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"mJZ" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mJW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) "mKa" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"mKk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, +"mKg" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/red/southeast, /area/almayer/maint/hull/upper/u_a_p) "mKp" = ( /obj/structure/surface/table/reinforced/prison, @@ -33589,14 +34026,68 @@ /obj/item/tool/shovel/etool/folded, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"mKq" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"mKs" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"mKB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"mKC" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"mKD" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"mKF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "mKJ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"mKK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +"mKL" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "mKM" = ( /obj/structure/sign/poster{ pixel_x = -30; @@ -33605,6 +34096,13 @@ /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"mKO" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "mKY" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -33617,33 +34115,42 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"mLh" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"mLa" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/obj/structure/closet, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"mLk" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"mLp" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"mLF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/almayer/living/starboard_emb) +"mLD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mLO" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"mLG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/aft_hallway) -"mLS" = ( /turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie_delta_shared) +/area/almayer/maint/hull/upper/u_m_p) +"mLY" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"mMi" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "mMq" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -33654,263 +34161,179 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"mMM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"mMN" = ( -/obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"mMR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"mNc" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"mNr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"mND" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +"mMA" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/warden_office) +"mMU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"mNH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mNJ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mOe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) "mOo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"mOt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"mOv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) "mOw" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "38" }, /area/almayer/hallways/hangar) -"mOH" = ( +"mOB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"mOC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"mOG" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/maint/hull/upper/u_m_s) +"mOI" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) "mOJ" = ( /turf/open/space/basic, /area/space) -"mOL" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 +"mOR" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) -"mOM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +"mPa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"mOQ" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"mPh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"mPj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"mOU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"mPl" = ( +/obj/structure/bed, +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/general_equipment) -"mOZ" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"mPs" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"mPf" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"mPX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_p) +"mPv" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mQf" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"mQd" = ( -/obj/structure/closet/toolcloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"mQg" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/aft_hallway) -"mQi" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"mQp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"mQj" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"mQq" = ( -/obj/structure/machinery/light{ +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"mQE" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, +/obj/item/tool/warning_cone, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"mQF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/hallways/hangar) +"mQr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"mQI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/hydroponics) +"mQx" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) +"mQN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mQT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-2"; - req_access = null + icon_state = "SE-out" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"mQY" = ( -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"mRf" = ( -/turf/open/floor/almayer/silvercorner/east, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/aft_hallway) -"mRi" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"mQP" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"mRq" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"mRn" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"mRo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/obj/structure/bed/chair/comfy, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/living/pilotbunks) "mRv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -33945,33 +34368,78 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"mRw" = ( -/obj/structure/platform{ - dir = 8 +"mRA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"mRB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"mRL" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"mRE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"mRK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mRW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"mRZ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/item/storage/toolbox/electrical, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/computer/emails{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"mSb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) -"mRV" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"mRX" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"mSa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mSe" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"mSx" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "mSB" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -33980,172 +34448,175 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"mTj" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/maint/hull/upper/u_m_p) -"mTo" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "24" - }, -/area/almayer/hallways/hangar) -"mTB" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"mTL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"mTP" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mTU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +"mSK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_midship_hallway) -"mTY" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"mSR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"mTe" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"mTf" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"mTo" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "24" }, +/area/almayer/hallways/hangar) +"mTp" = ( +/obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) +/area/almayer/living/bridgebunks) +"mTv" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"mTG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mTJ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"mTQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/wy, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4; + layer = 2.981; + name = "Research Cameras"; + pixel_y = 16 + }, +/obj/item/clothing/accessory/stethoscope, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"mTT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) "mUa" = ( /obj/effect/attach_point/weapon/dropship2/right_wing, /obj/structure/shuttle/part/dropship2/transparent/lower_right_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"mUj" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +"mUd" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"mUf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"mUp" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"mUq" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"mUr" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"mUz" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/aft_hallway) -"mUD" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 +/area/almayer/maint/hull/upper/u_f_p) +"mUH" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"mVd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"mUZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"mVb" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mVl" = ( /obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"mVg" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/hallways/hangar) +"mVA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/orange/north, +/area/almayer/living/starboard_emb) +"mVN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"mVm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/aft_hallway) +"mVQ" = ( +/obj/structure/shuttle/part/dropship2/transparent/left_outer_inner_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"mVZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"mWf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"mWg" = ( +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) -"mVp" = ( +"mWm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_y = 26; + req_one_access_txt = "3;22;19;7" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"mVD" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"mVF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"mVK" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/command/lifeboat) -"mVL" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"mVQ" = ( -/obj/structure/shuttle/part/dropship2/transparent/left_outer_inner_wing, -/turf/open/floor/plating, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"mVS" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"mWy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"mWK" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) "mWL" = ( /mob/living/simple_animal/cat/Jones{ dir = 8 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"mWM" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "mWU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -34159,74 +34630,101 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"mXe" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"mXv" = ( -/obj/structure/pipes/binary/pump/on{ +"mXh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"mXE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"mXK" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"mXN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"mXk" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/engine_core) +"mXt" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"mXy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"mXB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "mXO" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"mYm" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"mXP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"mXU" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_midship_hallway) +"mXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"mYr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"mYn" = ( +/obj/structure/target{ + name = "punching bag" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"mYy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"mYs" = ( -/obj/structure/catwalk{ - health = null +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"mYA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"mYB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/dogtag{ + desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"mYK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"mYv" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) "mYM" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/cells) @@ -34243,309 +34741,281 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"mZm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"mZC" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 +"mZd" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"mZz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) "mZH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mZN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "37" +"mZK" = ( +/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"mZR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"mZQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"mZT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "Morgue Waiting Room"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"nag" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/numbertwobunks) +"nah" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"nas" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"mZU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"mZV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"mZY" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"naw" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"naH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "northcheckpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"naR" = ( -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/squads/charlie) +"nay" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"naV" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"nba" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/engineering/upper_engineering/port) +"naP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"nbc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"nbr" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/living/pilotbunks) +"nbg" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"nbk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"nbl" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nbD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "nbG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"nbK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"nbQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"nbS" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"nbU" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"nbV" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/hallways/hangar) "nbY" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) -"nbZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +"ncc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"nce" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) +"ncl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D4"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"ncf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/general_equipment) -"ncj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"ncm" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ncG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"ncM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/firealarm{ - pixel_y = -29 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"ncY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight{ + disabled = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"ncn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ncI" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 16"; - buildstate = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"ncJ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ncU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ncV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"ncW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ncX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"ncZ" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ndb" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"nde" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"nde" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"ndk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ndh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) "ndl" = ( /turf/open/floor/almayer_hull, /area/space) -"ndp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"nds" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ndE" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"ndz" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"ndK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"ndM" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"ndN" = ( -/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"ndT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"ndX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/area/almayer/hallways/upper/aft_hallway) +"ndO" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"nek" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"ndQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"nem" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ndR" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"neq" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"ned" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/filingcabinet{ - density = 0; +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = 18 + pixel_y = 32 }, -/obj/item/device/taperecorder, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"ner" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/hangar) +"nee" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"ney" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"neB" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"neD" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/engineering/lower/engine_core) "neH" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -34562,12 +35032,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"neR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) +"nfg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/port_missiles) "nfh" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/almayer{ @@ -34582,217 +35050,258 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"nfo" = ( -/obj/structure/machinery/light{ - dir = 4 +"nfj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nfS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"ngj" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"ngC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/living/offices) +"nft" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"ngF" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"nfw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_three) -"ngG" = ( -/obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"ngL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/port_umbilical) +"nfC" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"nfG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"ngR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/intercom{ + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"nfQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Memorial Room" }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"ngS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/living/starboard_garden) +"ngd" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/general_equipment) -"ngX" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"nhi" = ( -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"nhm" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/area/almayer/medical/hydroponics) +"ngh" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_midship_hallway) -"nhy" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"ngk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"ngD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"nhC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"nhH" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/living/briefing) -"nhW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"nhY" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/shuttle/dropship/light_grey_top_left, -/area/almayer/hallways/hangar) -"nhZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"nhj" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"nhq" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"nia" = ( -/obj/item/paper_bin/wy, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/clicky, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/structure/machinery/door_control{ + id = "officers_mess"; + name = "Privacy Shutters"; + pixel_y = -19 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"nic" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"nig" = ( -/obj/item/trash/cigbutt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"nii" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/area/almayer/living/captain_mess) +"nht" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"nhv" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/perma) -"niq" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"nhN" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nim" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"nin" = ( /obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/tool/minihoe{ + pixel_x = -4 }, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) "nis" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"niA" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"niK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access = "19;21" +"niE" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"niV" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"niN" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"niP" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_f_s) +"niQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"niS" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "njc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"njn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"nji" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 8"; + buildstate = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"njp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"njo" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"njt" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"njB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"njC" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"nkg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/engineering/upper_engineering) +"njE" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"njH" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"njQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"nkf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) "nkh" = ( /obj/structure/toilet{ dir = 1 @@ -34807,13 +35316,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"nkC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"nkL" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) +"nkQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) "nkS" = ( /obj/structure/bed/chair{ dir = 8; @@ -34827,238 +35339,255 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) +"nkV" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) "nlh" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"nlj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"nll" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nlo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/reagent_container/food/snacks/cheesewedge{ - pixel_x = -10; - pixel_y = 7 +"nlk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-3"; + req_access = null }, -/mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"nlz" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"nlC" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"nlD" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nlq" = ( +/obj/structure/machinery/line_nexter/med{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"nlE" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"nlx" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"nlB" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"nlI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) "nlK" = ( /obj/structure/machinery/status_display{ pixel_x = -32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"nlM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"nlL" = ( +/obj/structure/phone_base/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"nlO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"nlU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"nlX" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"nlQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"nma" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nmc" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/hangar) -"nlS" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"nlT" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"nmd" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"nmf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/hallways/lower/port_umbilical) +"nmi" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"nmA" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"nmS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + access_modified = 1; + dir = 2; + name = "\improper Chief Engineer's Office"; + req_one_access = null; + req_one_access_txt = "1;6" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"nmn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/phone_base/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"nnp" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"nns" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"nmo" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/general_equipment) -"nmq" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"nmB" = ( +/turf/open/floor/almayer, +/area/almayer/living/gym) +"nnx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nmL" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nny" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/structure/machinery/light, /turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"nmY" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/almayer/hallways/hangar) +"nnC" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nnb" = ( -/obj/structure/closet, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -17 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"nnm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 +/obj/item/device/multitool{ + pixel_x = 8 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"nns" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/tool/screwdriver{ + pixel_x = -3; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"nnN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"nnD" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"nnL" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) "nnS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"nnX" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/execution) -"nof" = ( -/obj/structure/machinery/light{ +"nod" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/maint/hull/upper/u_m_p) +"nok" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"noE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/hallways/lower/vehiclehangar) -"noC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/whistle{ - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"noF" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"noQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"noH" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"noV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"noI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Nurse Office"; + req_access_txt = "20"; + req_one_access = null }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lockerroom) +"noW" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"noX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/warden_office) -"noR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"noZ" = ( +/obj/structure/closet/secure_closet/hydroresearch, +/obj/item/reagent_container/glass/watertank, +/obj/item/reagent_container/glass/watertank, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"npg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"nph" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) +"npj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) "npl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35072,53 +35601,27 @@ "nps" = ( /turf/open/floor/almayer/empty, /area/supply/station) -"npv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"npy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"npz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"npL" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"npX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"npY" = ( +"npt" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"nqc" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"nqm" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"npx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"npP" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"npZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "nqq" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -35131,41 +35634,30 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/chief_mp_office) -"nqs" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 +"nqw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/green/southwest, /area/almayer/squads/req) -"nqN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/southleft{ - desc = "A window, that is also a door. A windoor if you will. This one is stronger."; - health = 500; - name = "Reinforced Glass door"; - req_one_access_txt = "2;35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"nqO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"nqx" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nqM" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"nqT" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"nqX" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) +/area/almayer/engineering/lower) "nqZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -35173,259 +35665,285 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"nrq" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"nrr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"nrd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"nrs" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"nrA" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-1"; - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"nrK" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/living/starboard_garden) -"nrX" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 11 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/hull/upper/u_a_s) +"nri" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"nsh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"nsu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"nrn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"nsw" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"nsy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"nsZ" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"nrF" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"nte" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"nth" = ( -/obj/structure/closet/basketball, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"ntw" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"nrG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"ntE" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"ntG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"nrH" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"ntK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/req) +"nrJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"nsd" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 2 + }, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"nse" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/command/lifeboat) +"nsp" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"nsv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"nsA" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"nsG" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"nsO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"nuc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"nus" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"nut" = ( -/obj/structure/machinery/light{ +/area/almayer/shipboard/weapon_room) +"nsZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"ntd" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_midship_hallway) -"nuv" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/hydroponics) -"nuC" = ( +/obj/structure/phone_base/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"ntA" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ntB" = ( /obj/structure/sign/poster{ - pixel_x = 32 + pixel_y = 32 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"nuF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ntM" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"ntQ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red/southwest, /area/almayer/living/starboard_garden) -"nuI" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +"ntW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nuo" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"nup" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"nuL" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"nuu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"nuX" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"nux" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"nvj" = ( -/obj/structure/sign/safety/north{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_umbilical) +"nvf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"nvl" = ( +/obj/structure/window/reinforced/tinted{ pixel_y = -8 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"nvr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"nvF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"nvH" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nvL" = ( -/obj/structure/machinery/brig_cell/perma_1{ - pixel_x = -32; - pixel_y = 4 +/obj/structure/machinery/door/window/tinted{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "Perma 1L"; - name = "Perma 1 Lockdown"; - pixel_x = -24; - pixel_y = -12; - req_access_txt = "3" +/obj/item/toy/inflatable_duck, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"nvp" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"nvu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/perma) -"nwb" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"nvv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/morgue) +"nvB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"nvD" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"nvI" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/red/southwest, /area/almayer/maint/hull/upper/u_a_p) -"nwq" = ( +"nvZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"nwd" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/ladder{ + height = 2; + id = "cicladder3" }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper) "nwx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nwA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"nwD" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"nwH" = ( -/obj/item/stack/sheet/cardboard{ - amount = 50 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) "nwJ" = ( /obj/structure/window/framed/almayer, /obj/structure/curtain/open/shower{ @@ -35433,29 +35951,24 @@ }, /turf/open/floor/plating, /area/almayer/engineering/port_atmos) -"nwY" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"nxg" = ( +"nwQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"nxj" = ( -/obj/structure/machinery/power/apc/power/east, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/shipboard/brig/perma) -"nxk" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"nxl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/basketball) "nxo" = ( /obj/structure/machinery/light{ dir = 1 @@ -35467,50 +35980,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"nxx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "nxz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nxW" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ +"nxI" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/o2/empty, +/obj/item/storage/firstaid/rad/empty, +/obj/item/storage/firstaid/toxin/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"nxQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) -"nyb" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"nyh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nys" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"nxX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower/engine_core) "nyu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -35518,123 +36016,92 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"nyw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "nyz" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"nyC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"nyH" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"nzk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_midship_hallway) -"nzm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 4 +"nzd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" }, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"nzw" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"nzA" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 +/area/almayer/squads/req) +"nzj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = -15 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"nzT" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"nzK" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"nAn" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"nzN" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/command/cic) +"nzO" = ( /obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc{ - pixel_x = 2; - pixel_y = 3 +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"nzV" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/cic) +"nAi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 11 }, /turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) -"nAu" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nAy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nAC" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +"nAq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"nAs" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) -"nAK" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = -7 }, /turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_m_p) -"nAO" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/clothing/glasses/mgoggles, -/obj/item/clothing/glasses/mgoggles, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"nAS" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/shipboard/brig/execution) +"nAL" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nAR" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nBb" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) +/area/almayer/maint/hull/lower/l_a_p) +"nAU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) "nBm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -35642,6 +36109,25 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"nBo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nBv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/item/storage/box/cups{ + pixel_x = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "nBw" = ( /obj/structure/machinery/shower{ dir = 1 @@ -35659,117 +36145,86 @@ "nBH" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"nBK" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"nBN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"nBO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"nBP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"nBQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nBY" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"nCs" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"nCw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D2"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_y = 26; - req_one_access_txt = "3;22;19;7" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nBZ" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"nCb" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"nCf" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/cabinet, -/obj/item/clipboard, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/briefcase, -/obj/item/reagent_container/spray/pepper, -/obj/item/device/eftpos{ - eftpos_name = "Weyland-Yutani EFTPOS scanner" - }, -/obj/item/device/portable_vendor/corporate, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"nCg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"nCu" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"nCN" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"nCQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"nDf" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nCv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"nCD" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"nCW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"nCY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +/area/almayer/shipboard/starboard_point_defense) "nDr" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"nDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"nDt" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "Perma 2L"; + name = "\improper cell shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nDH" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"nDI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"nDJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"nDM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) "nDQ" = ( /obj/effect/spawner/random/toolbox, /obj/structure/pipes/vents/scrubber{ @@ -35777,273 +36232,251 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"nDW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/candle_box, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +"nDS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"nEb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Cafeteria" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"nEf" = ( -/turf/open/floor/almayer/blue/northwest, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"nEl" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"nEp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, +"nDY" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/stairs/perspective{ +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"nEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"nEJ" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"nEM" = ( +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "p_stair_full" + pixel_y = -28 }, -/obj/structure/platform{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"nET" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"nEK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"nEX" = ( -/obj/item/trash/chips{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/trash/cheesie, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"nEY" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) -"nFf" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/folder/black_random, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"nFu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"nFX" = ( -/obj/structure/machinery/computer/cryopod/eng{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) -"nGm" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"nGp" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +"nEZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"nGr" = ( -/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nFb" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"nGu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"nFe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "MTline"; + name = "Next button"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"nGx" = ( -/obj/structure/machinery/light/small{ +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"nFh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"nGz" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nFI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; + req_access = null }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nFR" = ( /turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"nGC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/containment{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"nGd" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"nGi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"nGk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"nGn" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"nGE" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"nGL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"nGZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"nGt" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) +/area/almayer/command/cichallway) +"nGX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) "nHj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"nHE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"nHB" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"nHN" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"nHX" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell/cl) -"nHZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"nIg" = ( -/obj/structure/window/reinforced{ +/area/almayer/living/gym) +"nHP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - health = 80 + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"nIv" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/ce_room) -"nIA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"nIG" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"nIH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"nIc" = ( +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/living/briefing) +"nId" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"nIi" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/facepaint/green, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"nIz" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "nIK" = ( /obj/structure/surface/rack, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nIP" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/warden_office) -"nIQ" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - pixel_y = 24 +"nIT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) "nIW" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/starboard_missiles) -"nJb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nJc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"nJd" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 +"nJf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"nJg" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "nJl" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"nJo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) +"nJm" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) "nJu" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"nJx" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "nJH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down4"; @@ -36052,117 +36485,164 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"nKm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nKp" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"nJO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"nLc" = ( -/obj/structure/mirror{ - pixel_x = 28 +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = 11; + pixel_y = 37; + req_access_txt = "200" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nKb" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"nKv" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/hull/upper/u_a_s) -"nLe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"nKz" = ( +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/aft_hallway) +"nKS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"nKX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) "nLf" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/squads/req) -"nLz" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"nLF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"nLP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +"nLh" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/hazard{ + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nLS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"nMb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"nLo" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cic) +"nLt" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/item/storage/box/syringes, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"nMf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nLu" = ( +/obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"nMs" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +/area/almayer/maint/hull/lower/l_m_p) +"nLG" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter/zippo, +/obj/item/toy/dice/d20, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 + }, /turf/open/floor/almayer/plate, /area/almayer/living/offices) -"nMP" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 +"nLI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"nMd" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"nMh" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"nMR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "cl_shutters 2"; - name = "\improper Privacy Shutters" +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nMz" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"nME" = ( +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"nNa" = ( +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nMM" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"nMN" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nMO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "nNb" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ @@ -36186,56 +36666,26 @@ "nNg" = ( /turf/open/floor/almayer, /area/almayer/squads/req) -"nNj" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"nNk" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"nNm" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tool/stamp{ - name = "Corporate Liaison's stamp"; - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"nNw" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/aft_hallway) -"nNy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) "nNB" = ( /obj/structure/shuttle/part/dropship2/lower_right_wall, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"nNL" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"nNM" = ( -/obj/structure/bed/chair{ +"nNC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"nNK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "nNR" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -36245,12 +36695,17 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"nNW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"nOb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "nOl" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/bed/chair{ @@ -36258,108 +36713,81 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"nOt" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"nOz" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"nOB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) "nOE" = ( /obj/structure/machinery/computer/supply_drop_console/limited, /turf/closed/wall/almayer, /area/almayer/squads/req) -"nOI" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nOJ" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"nOQ" = ( +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/living/gym) +"nOW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"nOO" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"nPd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nPy" = ( +/obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"nPb" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"nPw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/maint/hull/upper/u_a_p) +"nPA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"nPI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nPK" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"nPM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"nPO" = ( -/obj/structure/bed, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"nPR" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"nPU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"nPV" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) "nPW" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/comp_open, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"nPY" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"nQc" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"nPZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"nQd" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "nQg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/bronze, @@ -36369,98 +36797,79 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"nQj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"nQv" = ( -/obj/structure/bed/chair{ +"nQl" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/hallways/upper/aft_hallway) +"nQu" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"nQw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"nQB" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/command/cichallway) +"nQz" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) "nQE" = ( /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"nQS" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nRh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"nRn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"nRo" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nRt" = ( -/obj/structure/machinery/light{ - dir = 1 +"nQR" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"nRb" = ( +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/north, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/upper_medical) -"nRw" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 15"; - buildstate = 1 +"nRe" = ( +/obj/structure/machinery/vending/snack{ + pixel_x = -7 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/vending/coffee{ + pixel_x = 14 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nRk" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"nRq" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/aft_hallway) "nRy" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) -"nRD" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"nRI" = ( +"nRN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"nRP" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"nRU" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_a_s) "nRY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_box/magazine/misc/mre{ @@ -36481,23 +36890,29 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nSc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"nSg" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"nSd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"nSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"nSk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "nSs" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -36505,52 +36920,45 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/almayer, /area/almayer/living/chapel) -"nSJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/living/starboard_emb) -"nSK" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"nSP" = ( +"nSw" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"nSC" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"nSV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nSH" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"nTe" = ( -/turf/open/floor/almayer/greencorner/north, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/aft_hallway) -"nTj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"nTl" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nTr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"nSM" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/green/east, -/area/almayer/squads/req) +/area/almayer/living/grunt_rnr) +"nSQ" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/engine_core) +"nTg" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) "nTA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36560,77 +36968,129 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"nTX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"nUe" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_a_s) -"nUf" = ( -/obj/structure/machinery/power/apc/power/south, +"nTR" = ( +/obj/structure/morgue/crematorium, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"nTU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"nTW" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"nUk" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_umbilical) -"nUx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = -28 +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nUu" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"nUA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/vending/snack, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"nUC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"nUE" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "nUG" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) -"nUY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nVh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"nUJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"nUM" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/command/lifeboat) +"nUX" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"nVf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/emerald/north, +/turf/open/floor/almayer/emeraldcorner/north, /area/almayer/squads/charlie) -"nVk" = ( -/obj/structure/largecrate/random/barrel/green, +"nVi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"nVl" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/engineering/lower/workshop) "nVm" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/starboard) -"nVv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) "nVA" = ( /obj/structure/platform_decoration{ dir = 1 @@ -36644,17 +37104,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"nVH" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) "nVI" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -36666,85 +37115,88 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) -"nVV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/computer/squad_changer{ - dir = 8; - layer = 2.99; - pixel_y = 8 +"nVO" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/maint/hull/upper/u_a_p) "nVY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"nWt" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 +"nWb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"nWp" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nWu" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/area/almayer/living/bridgebunks) +"nWq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"nWF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"nWA" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nWC" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Shutters"; - pixel_x = -25 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"nWT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"nWJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"nWX" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"nWL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nWR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"nWV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "nXf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/binoculars, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"nXm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "nXp" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -36755,14 +37207,9 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"nXs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) +"nXA" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "nXE" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -36779,63 +37226,84 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"nXG" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"nXL" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/starboard_garden) +"nXN" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"nXO" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"nXX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"nYp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"nYs" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"nYE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, /obj/structure/platform_decoration{ - dir = 4 + dir = 8 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"nXT" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/hull/upper/u_f_p) -"nYn" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"nYN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +"nYG" = ( +/obj/structure/bed, +/obj/item/clothing/under/redpyjamas, +/obj/item/bedsheet/orange, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nYH" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"nZb" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"nYW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"nYX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"nZc" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"nZf" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/area/almayer/hallways/hangar) "nZh" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -36849,19 +37317,24 @@ }, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"nZp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" +"nZi" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"nZm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"nZn" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "nZA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36875,217 +37348,166 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nZG" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +"nZB" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"nZC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"nZM" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/command/lifeboat) "oaa" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cells) -"oae" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"oaj" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oav" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"oaw" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oaN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oay" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"oaz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"oaS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"oaM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"obc" = ( -/obj/structure/machinery/computer/cameras/almayer/containment{ - dir = 8; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = -5; - pixel_y = -4; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"obl" = ( -/obj/item/trash/candle, -/obj/item/tool/match/paper, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"obn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 1; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"obo" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) "obs" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"obt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 +"obv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"obz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"obA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 3"; - name = "Quarters Shutters"; - pixel_x = -25; - req_access_txt = "200" +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"obC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"obB" = ( -/obj/structure/machinery/conveyor_switch{ - id = "req_belt" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "obF" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/alpha) -"obZ" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"obG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"ocf" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"ocl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"ocs" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"obQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"ocu" = ( -/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"obW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 +/obj/structure/machinery/status_display{ + pixel_y = -29 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/squads/delta) -"ocv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/structure/machinery/computer/emails, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 32 +"och" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"ocC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ocj" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/upper/u_a_s) +"oco" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ocQ" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" +/area/almayer/maint/hull/lower/l_a_s) +"ocs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"ocu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"ocw" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ocy" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"ocE" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/lower/l_a_s) +"ocP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "ocU" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -37102,43 +37524,57 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"odf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +"odn" = ( +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_y = 28; + req_one_access_txt = "28" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"odz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"odj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-5"; - req_access = null +/area/almayer/command/lifeboat) +"odY" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"odr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/cups{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"oed" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"oef" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"odT" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"odZ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"oec" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) +/obj/structure/phone_base{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) "oeg" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -37163,43 +37599,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"oeh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"oeo" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/living/briefing) +"oes" = ( +/obj/structure/bookcase/manuals/engineering, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oen" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/storage{ - pixel_x = 33; - pixel_y = -1 +/area/almayer/maint/hull/upper/u_f_s) +"oet" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/squads/alpha) +"oeu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"oey" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"oeJ" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"oeG" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"oeS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"oeH" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) "oeX" = ( /obj/structure/machinery/light{ dir = 4 @@ -37212,78 +37649,53 @@ "oeZ" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie) -"ofl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) "ofr" = ( /obj/effect/attach_point/weapon/dropship2/right_fore, /obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"ofJ" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"ofy" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"ofP" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"ofY" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"ofN" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/port_umbilical) -"ofS" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ +/area/almayer/squads/req) +"ogd" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ pixel_x = -4 }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/tool/shovel/spade, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 }, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"oga" = ( -/obj/item/clothing/shoes/red, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) -"ogb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"ogk" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ogu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"ogj" = ( +/obj/structure/machinery/shower{ + dir = 8 }, +/obj/structure/machinery/door/window/westright, +/obj/structure/window/reinforced/tinted/frosted, +/obj/item/tool/soap/deluxe, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"ogq" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/area/almayer/engineering/upper_engineering/port) "ogy" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -37291,16 +37703,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"ogD" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"ogH" = ( -/obj/structure/bed, -/obj/item/clothing/under/redpyjamas, -/obj/item/bedsheet/orange, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +"ogF" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"ogN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) "ogO" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -37309,171 +37720,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"ogZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"ohr" = ( -/obj/structure/sign/safety/terminal{ - layer = 2.5; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/chem_simulator{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ohz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"ohb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"ohF" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"ohB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "ohI" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"ohM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"ohW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +"oif" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/turf/open/floor/almayer/red/northeast, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"oil" = ( +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/upper/aft_hallway) -"oic" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"oih" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) +"oiq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "oiv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"oiy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"oix" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"oiM" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"oiD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +/obj/item/storage/box/autoinjectors{ + pixel_x = -6; + pixel_y = -1 }, -/obj/item/folded_tent/med{ - pixel_x = -8; - pixel_y = 14 +/obj/item/device/mass_spectrometer{ + pixel_x = 8 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"oiH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 9 }, -/obj/structure/sign/safety/maint{ +/obj/item/reagent_container/glass/beaker/cryoxadone{ pixel_x = 8; - pixel_y = -32 + pixel_y = 10 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oiL" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"oiP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"oiZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"ojd" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"oji" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oiY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"oja" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"ojh" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"ojr" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"ojp" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/auxiliary_officer_office) "ojs" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -37481,240 +37813,254 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"ojK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"ojO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = 27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"ojQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"ojx" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ojy" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ojL" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/lifeboat) +"ojW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oka" = ( +/obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"oki" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"okp" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"okE" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"okd" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/red, +/area/almayer/maint/hull/upper/u_a_p) +"okh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"okr" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"okz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"okP" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/cryo) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower) +"okJ" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "ola" = ( /obj/item/clipboard, /obj/structure/surface/table/reinforced/black, /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/command/cic) -"oly" = ( -/obj/effect/step_trigger/clone_cleaner, +"olw" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/shipboard/brig/medical) +"olx" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"olX" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"omi" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"omk" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"omF" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"omI" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"olA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = -6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"olC" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/brown, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"olK" = ( -/obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"olS" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"omR" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"omT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 }, -/obj/item/trash/USCMtray, -/turf/open/floor/almayer/blue/north, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"omW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"onc" = ( +/turf/open/floor/almayer/blue/southeast, /area/almayer/squads/delta) -"olY" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"omc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"onr" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"omw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"omZ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"ond" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Laundry Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"onh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"onl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"ono" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) "ons" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"onx" = ( +"onY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"ooe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"oof" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"oog" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"ooq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"onS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"onX" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/item/bananapeel{ - desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; - icon = 'icons/obj/items/weapons/guns/attachments.dmi'; - icon_state = "iffbarrel"; - name = "Broken B8 Smart-Scope"; - pixel_x = -1; - pixel_y = 11 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"oot" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 }, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"ooC" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"ooD" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"ooK" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/suit/space/compression/uscm, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"ood" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"ooe" = ( +/area/almayer/engineering/upper_engineering/port) +"ooT" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ooV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"oon" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"ooB" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 5; - pixel_y = 29 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ooJ" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"ooW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "ooX" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -37729,33 +38075,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"opf" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"opa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "35" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) "opo" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"opr" = ( -/obj/structure/disposalpipe/segment{ +"opq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"opt" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "opu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) +"opy" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) "opG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet, @@ -37764,104 +38121,111 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"opP" = ( +"opX" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"oqc" = ( /obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"opT" = ( -/obj/structure/closet/boxinggloves, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"opY" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/living/starboard_garden) -"oqa" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/port) -"oqo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"oqj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - name = "\improper Kitchen Hydroponics"; - req_one_access_txt = "30;19" + name = "ship-grade camera" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"oqn" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 37; + req_one_access = null }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"oqt" = ( -/obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"oqu" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"oqv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/area/almayer/living/auxiliary_officer_office) +"oqY" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"oqy" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/general_equipment) -"oqD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"oqH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/port_midship_hallway) -"orb" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"orn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"orh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"oro" = ( +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"orq" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "oru" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"orA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +"orx" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -9; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) +/obj/item/storage/photo_album{ + pixel_x = -6; + pixel_y = -17 + }, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "orC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37871,38 +38235,86 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"orM" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +"orF" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/cryo_cells) +"orI" = ( +/obj/structure/machinery/door_control{ + id = "dropship_normandy"; + name = "Dropship Lockdown"; + normaldoorcontrol = 3; + pixel_y = -19; + req_one_access_txt = "3;22"; + throw_range = 15 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/almayer/hallways/hangar) "orQ" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_point_defense) "orW" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"osi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +"osc" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ose" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"osn" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/living/grunt_rnr) -"osM" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"osf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/surface/table/almayer, -/obj/item/folder/black, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"osP" = ( -/obj/structure/largecrate/random/barrel/blue, +/area/almayer/squads/bravo) +"osl" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"osV" = ( +/area/almayer/living/chapel) +"osv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + dir = 2; + name = "Brig"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"osH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"osN" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"osV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -37911,137 +38323,123 @@ }, /turf/open/floor/almayer/research/containment/corner4, /area/almayer/medical/containment/cell) -"osW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"otg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 +"osY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"otl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"osZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 6 }, +/obj/item/storage/box/handcuffs, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"otp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-5"; - req_access = null +/area/almayer/living/briefing) +"otf" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering/port) +"ots" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"otB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"otu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"otC" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/autodispenser{ dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"otK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"otx" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"otz" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"otJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"otL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, +/area/almayer/maint/hull/lower/l_a_s) +"otT" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/cic) +"otV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"otS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"otU" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"otY" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/manipulator/nano{ + pixel_y = -9 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"otX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/item/stock_parts/scanning_module/adv{ + pixel_x = 4; + pixel_y = 15 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"ouf" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"oue" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/obj/structure/ladder/fragile_almayer{ + height = 1; + id = "kitchen" }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 6 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/lobby) -"oug" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"oul" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "oum" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oup" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"ouv" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) -"ouD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"ouG" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_2"; - name = "\improper Bathroom" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"ouK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ouL" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) "ouN" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -38049,26 +38447,39 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ouQ" = ( +"ouT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"ovi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/orange/west, /area/almayer/squads/bravo) -"ovl" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"ovu" = ( +"ovg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"ovm" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"ovq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/squads/req) "ovv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -38081,123 +38492,99 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"ovJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"ovO" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/open/floor/almayer/green/southeast, -/area/almayer/shipboard/brig/cells) -"ovZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"owb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"owi" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"owl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"own" = ( -/obj/structure/largecrate/random/secure, +"ovz" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"owr" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"oww" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"owz" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"owC" = ( -/obj/structure/machinery/light{ - dir = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"ovG" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"owH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"ovI" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/hydroponics) +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"owa" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) "owN" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"owV" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" +"owR" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"owT" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"oxa" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oxb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"oxc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"oxg" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"oxq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/command/cic) +"oxo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"oxt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"oxB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oxC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) +"oxK" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "oxQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -38208,30 +38595,6 @@ "oxR" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) -"oxW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"oxX" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oyb" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) "oyi" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -38242,38 +38605,46 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"oyy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" +"oyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper) +"oyq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"oyA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"oyE" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"oyG" = ( +/obj/structure/largecrate/random/barrel/red, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"oyC" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oyJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"oyL" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 1"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/orange, +/area/almayer/living/starboard_emb) "oyO" = ( /obj/item/paper_bin/uscm{ pixel_y = 4 @@ -38281,52 +38652,19 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"oyP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"oyW" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"ozb" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"oze" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; +"oyQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ pixel_y = 7 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/red/northeast, +/area/almayer/squads/alpha) "ozm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ozs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) "ozw" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -38335,16 +38673,18 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"ozC" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ozH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) +"ozx" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"ozJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) "ozK" = ( /obj/structure/machinery/light{ dir = 4 @@ -38352,29 +38692,15 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ozN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"ozU" = ( +"ozU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"ozY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) +"ozX" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) "oAd" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -38419,21 +38745,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"oAG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +"oAv" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"oAC" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/area/almayer/maint/hull/lower/l_f_p) +"oAD" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) "oAQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -38441,47 +38779,37 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/charlie) -"oAY" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"oBi" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 +"oAR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"oBn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"oBo" = ( +/area/almayer/squads/alpha) +"oBF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"oBu" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"oBx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 6 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"oBI" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"oBQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) "oCf" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -38492,71 +38820,10 @@ /obj/structure/shuttle/part/dropship2/left_inner_wing_connector, /turf/open/space/basic, /area/almayer/hallways/hangar) -"oCj" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"oCn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"oCp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"oCw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"oCy" = ( -/obj/structure/machinery/botany/editor{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 5; - pixel_y = 24 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"oCC" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"oCE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +"oCi" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) "oCH" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -38565,21 +38832,30 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oCK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"oCI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"oCL" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/starboard) "oCM" = ( /obj/structure/toilet{ pixel_y = 16 @@ -38594,184 +38870,148 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"oCP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"oCV" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/cryo_cells) +"oDe" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/maint/hull/lower/l_m_p) -"oCU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"oDj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oDl" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = 11; - pixel_y = 37; - req_access_txt = "200" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oDC" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"oDt" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"oDA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "Brig" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"oDL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"oDI" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"oDN" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"oDJ" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"oDO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/briefing) +"oDK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"oDS" = ( -/obj/structure/machinery/door_control{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"oDP" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; - id = "tc03"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = -23 + name = "\improper Brig Equipment" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"oDZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"oEg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/device/binoculars, -/obj/item/storage/bible, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"oEh" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/general_equipment) +"oDX" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"oEk" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor5, -/area/almayer/engineering/lower/engine_core) -"oEn" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "oEt" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"oEy" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) "oED" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/commandbunks) -"oEJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) -"oEM" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -8; - pixel_y = 28 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/upper/aft_hallway) +"oEL" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) "oFd" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"oFx" = ( -/obj/structure/machinery/light{ - dir = 4 +"oFl" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"oFz" = ( -/obj/structure/platform_decoration{ +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"oFP" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"oFt" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"oFu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 +/turf/open/floor/almayer/emerald/northeast, +/area/almayer/squads/charlie) +"oFv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"oFA" = ( +/obj/structure/closet, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"oFS" = ( -/obj/structure/pipes/standard/cap/hidden{ +/area/almayer/living/port_emb) +"oFN" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"oGc" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/living/briefing) -"oGh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oFZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oGd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "oGt" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -38779,9 +39019,37 @@ /obj/item/device/binoculars, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"oGH" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) +"oGw" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"oGB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oGE" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"oGF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"oGK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "oGL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -38789,33 +39057,71 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/offices/flight) -"oGN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"oGS" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"oGT" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"oHe" = ( -/obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"oGU" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"oGY" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"oHl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) "oHm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"oHo" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"oHp" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"oHr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"oHw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"oHA" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "oHB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -38828,34 +39134,21 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"oHG" = ( +"oHQ" = ( /obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"oHT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"oHX" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/status_display{ + pixel_y = -32 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"oIf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/vending/coffee, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oIg" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"oIg" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/command/computerlab) @@ -38870,34 +39163,79 @@ /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"oIp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"oIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" +/obj/structure/surface/table/almayer, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"oIA" = ( -/obj/structure/largecrate/random/case/double, +/obj/item/toy/deck/uno, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_s) +"oIz" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"oIL" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oIM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/obj/structure/sign/safety/laser{ + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "oIO" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"oJa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"oIU" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oIW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"oIZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) "oJe" = ( /obj/structure/machinery/processor, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) +"oJl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "oJm" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -38905,34 +39243,16 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/evidence_storage) -"oJo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"oJt" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +"oJB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "oJC" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/comp_closed, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"oJE" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"oJO" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"oJX" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) "oKn" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -38945,13 +39265,6 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"oKo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) "oKr" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -38978,53 +39291,10 @@ /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"oKy" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"oKO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oKT" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +"oKC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) "oLb" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -39032,20 +39302,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oLf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) "oLg" = ( /obj/structure/bed/chair{ dir = 8 @@ -39055,24 +39311,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"oLl" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; +"oLr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/obj/structure/sign/poster{ + desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; + icon_state = "poster14"; + name = "propaganda poster"; pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oLo" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oLt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oLu" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_a_s) "oLx" = ( /obj/structure/surface/table/almayer, /obj/item/trash/boonie{ @@ -39083,155 +39350,232 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"oLB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"oLF" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/hydroponics) -"oMe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"oMj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"oMp" = ( -/obj/item/storage/firstaid/fire/empty, -/obj/item/storage/firstaid/o2/empty, -/obj/item/storage/firstaid/rad/empty, -/obj/item/storage/firstaid/toxin/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"oMF" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"oLJ" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oLN" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oMc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"oMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"oMw" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"oMC" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/hallways/hangar) "oMK" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "80" }, /area/almayer/hallways/hangar) -"oNk" = ( -/obj/structure/sign/poster{ +"oMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"oMV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"oNi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "oNu" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"oNB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" +"oNx" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"oNz" = ( +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"oNF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oNG" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"oNL" = ( +/obj/item/stack/sheet/mineral/plastic{ + amount = 15 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_emb) -"oND" = ( -/obj/structure/machinery/vending/cola/research{ - pixel_x = 4 +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"oNE" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"oOo" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"oNK" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"oOb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"oOp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"oOv" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"oOB" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"oOD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"oOl" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_y_offset = 0 +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"oOn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ +/obj/structure/sign/safety/hazard{ pixel_x = -17; pixel_y = -8 }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"oOO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"oOq" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/warden_office) -"oOz" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"oOP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oOI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/poster{ - desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; - icon_state = "poster14"; - name = "propaganda poster"; - pixel_y = 32 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oOU" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"oPg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"oOX" = ( +/obj/item/clothing/mask/rebreather/scarf, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"oPd" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"oPj" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc03"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = -23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"oPm" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"oPz" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "oPF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -39249,28 +39593,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"oPI" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"oPM" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"oPR" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) "oPT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -39281,50 +39603,38 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"oPU" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"oQf" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +"oQo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/sign/safety/north{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "oQv" = ( /turf/closed/shuttle/dropship2{ icon_state = "37" }, /area/almayer/hallways/hangar) -"oQx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/execution) -"oQE" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"oQL" = ( -/obj/structure/stairs{ - dir = 4 +"oQy" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) "oQS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -39338,94 +39648,118 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"oQX" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"oRt" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"oRw" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 3"; - locked = 1; - name = "\improper Containment Cell 3"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 3"; - name = "\improper Containment Cell 3" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"oQT" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"oRd" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oRe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"oRq" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/hangar) +"oRr" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"oRJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"oRA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"oRB" = ( -/obj/item/mortar_kit, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"oRE" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"oRW" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oRG" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"oSc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -11; - pixel_y = 16 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"oSb" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 4; - pixel_y = 16 +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"oSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/medical_science) +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "oSm" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"oSq" = ( +"oSn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"oSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/hallways/lower/starboard_midship_hallway) +"oSt" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"oSx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) +"oSA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "oSB" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 2"; @@ -39436,12 +39770,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"oSI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) "oSJ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -39449,55 +39777,57 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"oSS" = ( -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 +"oST" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"oSU" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"oSX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"oTk" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"oTn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"oTd" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Execution Equipment" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oTf" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oTr" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"oTz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"oTp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"oTw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"oTy" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) "oTA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -39506,19 +39836,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"oTI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) "oTM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39529,21 +39846,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"oTT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"oTV" = ( -/obj/structure/prop/almayer/missile_tube, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"oTO" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"oUq" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"oTY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) "oUy" = ( /obj/structure/machinery/shower{ dir = 8 @@ -39552,305 +39869,333 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/numbertwobunks) -"oUC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"oUE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, +"oUz" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oUN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/lower/l_m_s) +"oUB" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"oUP" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"oUT" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"oUU" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "oUW" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"oVc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oVl" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/processing) -"oVD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"oVF" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) +"oVC" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) "oVL" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) -"oVY" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"oVZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +"oVT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) "oWe" = ( /obj/effect/landmark/start/doctor, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"oWh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"oWt" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Spare Prison Uniforms" }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) -"oWr" = ( +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"oWv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"oWw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"oWx" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -11; + pixel_y = 16 }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 4; + pixel_y = 16 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"oWy" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"oWP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"oWR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/medical_science) +"oWW" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) "oWY" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"oXh" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"oXq" = ( -/obj/structure/machinery/light{ +"oXu" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"oXt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oXv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"oXT" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) -"oYm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"oYB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, +/area/almayer/engineering/upper_engineering/starboard) +"oXx" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"oYL" = ( +/area/almayer/living/gym) +"oXS" = ( +/obj/structure/ladder{ + height = 1; + id = "med2" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"oXU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"oZa" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"oZg" = ( -/obj/structure/bed/chair{ +"oXZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"oZh" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/port_midship_hallway) +"oYh" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"oZm" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"oZr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Tanker Quarters"; - req_one_access_txt = "19;27" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_midship_hallway) +"oYp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/tankerbunks) -"oZL" = ( -/obj/structure/disposalpipe/sortjunction{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - negdir = 4; - posdir = 1 + pixel_x = 12; + pixel_y = 13 }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"oZN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"pak" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"pao" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/area/almayer/maint/hull/upper/u_f_p) +"oYq" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"oYt" = ( +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"oYA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"oYC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"oYI" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"oZg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"oZk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"oZt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/northwest, /area/almayer/hallways/upper/aft_hallway) -"pap" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" +"oZv" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/turf/open/floor/almayer/cargo_arrow, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"oZy" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"oZL" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + negdir = 4; + posdir = 1 + }, +/turf/closed/wall/almayer, /area/almayer/squads/req) -"pav" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"oZN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"paE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"oZQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"pah" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"paj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"par" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"paL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"pbl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"pbm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/lobby) +"pbz" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"paX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"pbf" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pbn" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/squads/delta) +"pbC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/reagent_dispensers/ethanoltank{ - anchored = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"pbs" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"pbG" = ( +/obj/structure/phone_base{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"pbM" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"pbU" = ( +/obj/item/stack/tile/carpet{ + amount = 20 }, +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_p) "pbX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"pcb" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) "pcc" = ( /obj/structure/disposalpipe/junction{ dir = 2; @@ -39858,116 +40203,107 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pcf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" +"pcg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 4; + pixel_y = 12 }, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + name = "Dropship Remote Control Console"; + pixel_y = -12; + shuttleId = "dropship_normandy"; + disabled = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) "pch" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"pco" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"pcJ" = ( -/obj/structure/machinery/light/small{ +"pcj" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"pck" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"pcl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"pcM" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/obj/item/toy/dice/d20, -/obj/item/toy/deck/uno, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"pcU" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"pcv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"pcF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"pcG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"pcV" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"pcI" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"pcW" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"pcL" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"pcM" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/item/toy/dice/d20, +/obj/item/toy/deck/uno, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) "pde" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"pdr" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"pds" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"pdu" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +"pdA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) "pdE" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/status_display{ @@ -39975,57 +40311,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"pdT" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 - }, +"pdF" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/engineering/lower/workshop) +"pdX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ + id = "aft_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) "pee" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"pep" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"pev" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 - }, -/obj/structure/phone_base/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -17; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"pey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) +"pek" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) "peC" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -40033,197 +40334,212 @@ }, /turf/open/floor/plating, /area/almayer/medical/chemistry) +"peI" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "peJ" = ( /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"peL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"peO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"peP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"peK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"peS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/area/almayer/engineering/lower/workshop) +"pff" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"pfj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - dir = 8; - name = "\improper Containment Airlock" +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"pfm" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"pfo" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"peU" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"pfs" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"peW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/turf/open/floor/almayer, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) -"pff" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +"pfx" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "pfD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"pfJ" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"pfM" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pfY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"pfP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) "pga" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie_delta_shared) -"pgb" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) "pgd" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"pgA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 +"pgj" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/lifeboat) +"pgk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"pgG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"pgm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"pgL" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"pgs" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"pgy" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"phv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"phD" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"pgC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"pgH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"pgU" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"pgY" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"phS" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ +/area/almayer/engineering/lower/workshop/hangar) +"phc" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"phd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"phV" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"phf" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"phY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"phu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"phG" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"phH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cic) -"pid" = ( +"phJ" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"pie" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"phO" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/upper_engineering/starboard) -"pih" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"phT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/turf/open/floor/almayer/silver/north, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) -"pil" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"phX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"pim" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) "piu" = ( /obj/structure/surface/table/almayer, /obj/item/folder/red, @@ -40235,133 +40551,103 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"piJ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +"pix" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"piL" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"piP" = ( -/obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"piY" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"piy" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"piK" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) +"pjd" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "pje" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"pjo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 +"pjf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/execution) -"pjr" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/cic) -"pjV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Kitchen"; - req_one_access_txt = "30;19" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"pjx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"pki" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D1"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"pkw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/squads/alpha_bravo_shared) +"pjA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pjH" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pjM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) -"pky" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pjR" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"pjT" = ( +/obj/structure/machinery/light, /turf/open/floor/plating, -/area/almayer/hallways/hangar) -"pkE" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"pkK" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_m_p) -"pkN" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"pkT" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"pkZ" = ( -/obj/item/stool{ - pixel_x = 15; +/area/almayer/maint/hull/lower/l_f_p) +"pkj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"plg" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"pln" = ( -/obj/structure/barricade/metal, -/turf/open/floor/almayer/cargo, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"pky" = ( +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"pkP" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"plf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/southwest, /area/almayer/living/cryo_cells) -"plo" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "plp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -40369,20 +40655,12 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"plq" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"plt" = ( -/obj/structure/disposalpipe/junction{ +"pls" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) "plz" = ( /obj/structure/surface/table/almayer, @@ -40390,189 +40668,162 @@ /obj/item/tool/pen, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"plU" = ( -/obj/structure/machinery/light{ - dir = 8 +"plX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"pml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" +/obj/structure/machinery/door_control{ + id = "cmp_armory"; + name = "Armory Lockdown"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "4" }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"pmq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"pmh" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"pmJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"pmL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"pmk" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"pmO" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"pmW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"pmX" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"pmS" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_three) +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/pilotbunks) "pna" = ( /obj/docking_port/stationary/emergency_response/external/port5, /turf/open/space/basic, /area/space) -"pnp" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +"pnc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"pni" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cichallway) +"pnl" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"pnu" = ( +/area/almayer/command/telecomms) +"pns" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"pnx" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"pnA" = ( /obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"pnv" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pnz" = ( -/obj/structure/machinery/door_control{ - id = "perma_exit"; - name = "\improper Exit Shutters"; - pixel_y = -22; - req_access_txt = "3" - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/perma) -"pnB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/upper/u_f_s) +"pnE" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"pnG" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"pnT" = ( -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"pnV" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"pnW" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 16 +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"pnX" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -5; - pixel_y = 1 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"pnZ" = ( -/obj/structure/machinery/alarm/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"pog" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"pos" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/almayer/squads/alpha) +"pop" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/parachute{ - pixel_y = 8 - }, -/obj/item/parachute, -/obj/item/parachute{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/hallways/lower/repair_bay) -"poG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/surface/table/reinforced/black, -/obj/item/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"poH" = ( -/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"poN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/offices) +"por" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pow" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/platform{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"poP" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/two{ - dir = 8; - id = "starboard_door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"ppa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"poB" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"poE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ppn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/hallways/upper/aft_hallway) +"ppf" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/starboard_garden) +"ppk" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) "ppp" = ( /obj/structure/window/reinforced{ dir = 8; @@ -40587,92 +40838,71 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"ppv" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 6"; - buildstate = 1 +"ppw" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 2"; + locked = 1; + name = "\improper Containment Cell 2" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"ppT" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 2"; + name = "\improper Containment Cell 2" }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ppU" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ppV" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"ppX" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"ppy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"ppZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"pqa" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"ppH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"pqb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"pqg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"pqk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_x = -2; - pixel_y = 7 +/area/almayer/hallways/upper/aft_hallway) +"ppK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"pql" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"pqq" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) "pqu" = ( /obj/structure/machinery/light{ dir = 8 @@ -40694,109 +40924,103 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"pqE" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pqH" = ( -/obj/structure/machinery/light{ - dir = 4 +"pqD" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"pqL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"pqF" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"pqR" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) "pqW" = ( /turf/closed/shuttle/dropship2{ icon_state = "43" }, /area/almayer/hallways/hangar) +"pqZ" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/upper/aft_hallway) "prf" = ( /turf/closed/wall/almayer, /area/almayer/living/bridgebunks) -"prr" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"prx" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"prL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"prl" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"prO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 16 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"prN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"prV" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/port_missiles) -"prZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"prY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"psa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"psb" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"psh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) "pso" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"psy" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"psE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"pst" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "3" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"psF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"psI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"psM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"psN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) "psR" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -40804,31 +41028,24 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"psS" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/clipboard{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "psY" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room) -"ptc" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 - }, +"pti" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ptd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"ptg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_s) "ptp" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -40851,315 +41068,257 @@ }, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"ptt" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"ptO" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"puc" = ( +"ptr" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"ptA" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 3 + pixel_y = 1 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/starboard_umbilical) +"pug" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"puk" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"puo" = ( +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/starboard_midship_hallway) "pur" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/starboard_missiles) -"puu" = ( +"puE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"pvv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"puw" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"puz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/dogtag{ - desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"puU" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/briefing) -"pvg" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"pvx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"pvs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"pvB" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"pvF" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"pvP" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"pvQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"pvy" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +"pvR" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"pvE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) +/area/almayer/maint/hull/upper/u_f_p) "pvZ" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"pwa" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"pwt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"pwy" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"pwz" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/aft_hallway) +"pwN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"pwj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilottex{ + pixel_x = -7; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pwY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"pwl" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"pxo" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"pxr" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"pwn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"pwo" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/area/almayer/maint/hull/upper/u_f_s) +"pxt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"pxx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"pwq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"pwr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"pxA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"pxF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pwt" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"pxG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"pwv" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"pxH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"pwA" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"pwB" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"pxL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"pyc" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/aft_hallway) -"pwG" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"pyw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/item/storage/box/evidence{ - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"pyA" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/general_equipment) -"pwR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"pxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/engineering/port_atmos) +"pzc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pxp" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"pxs" = ( -/obj/structure/morgue, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"pxw" = ( -/obj/structure/pipes/standard/simple/visible{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"pzz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"pxy" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"pxI" = ( -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"pzC" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"pxN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"pyc" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/living/auxiliary_officer_office) +"pzL" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pzR" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"pyg" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pys" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/warden_office) -"pyL" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"pyO" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"pAh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"pzc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/hydroponics) +"pAk" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"pzj" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"pzq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"pzu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"pzB" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/general_equipment) -"pzS" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/command/cic) +/area/almayer/engineering/lower/workshop) "pAn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -41172,130 +41331,41 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/cafeteria_officer) -"pAE" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"pAH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"pAL" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 +"pAD" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "pAQ" = ( /turf/closed/shuttle/dropship2{ icon_state = "56" }, /area/almayer/hallways/hangar) -"pBg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pBo" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, +"pAT" = ( +/obj/structure/machinery/pipedispenser, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"pBw" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light{ +/area/almayer/engineering/lower) +"pBz" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"pBE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"pBL" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"pBH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"pBN" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"pBQ" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pBU" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"pBW" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge4" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"pBX" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 + icon_state = "SW-out" }, -/obj/structure/sign/safety/maint{ - pixel_y = -26 +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pBJ" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "pBZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -41305,12 +41375,20 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"pCl" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"pCo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) +/area/almayer/squads/bravo) "pCs" = ( /obj/item/tool/crowbar/red, /obj/structure/disposalpipe/segment{ @@ -41319,329 +41397,252 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"pCt" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, +"pCC" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"pCM" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"pCQ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"pCu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"pCV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"pCx" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"pCD" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pDo" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"pCO" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/warden_office) -"pDg" = ( -/obj/structure/machinery/landinglight/ds1{ +/area/almayer/living/numbertwobunks) +"pDI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pDh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Upper Engineering" +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"pDO" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pDY" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) +"pEa" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"pDi" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"pDj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"pDl" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"pDA" = ( -/obj/structure/platform, -/obj/structure/platform{ +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"pEn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"pDB" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"pEN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"pDE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"pDR" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -15; - req_access_txt = "200" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"pFu" = ( +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_x = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pFx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 6; - pixel_y = 3 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lockerroom) +"pFJ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 2 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"pFL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"pEg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pFT" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"pEm" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer{ - density = 0; - pixel_x = -30 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"pFW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"pEt" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"pGd" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"pED" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"pGh" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"pGj" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"pGn" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"pEE" = ( +/area/almayer/shipboard/port_point_defense) +"pGy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/commandbunks) +"pGD" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"pGJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"pEG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pGK" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"pGL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"pHa" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"pEW" = ( -/obj/structure/target{ - name = "punching bag" +/area/almayer/squads/bravo) +"pHG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"pHL" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SEA Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"pFn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"pHR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"pFD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/cic) +"pIe" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pFP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"pFY" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"pGr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"pGs" = ( -/obj/structure/machinery/photocopier, -/obj/item/paper{ - color = "grey"; - info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; - name = "photocopied image"; - pixel_y = 5 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"pGt" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"pGy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/commandbunks) -"pGK" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"pGS" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"pGT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"pHn" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"pHo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"pHq" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/upper/aft_hallway) -"pHs" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"pIh" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"pHC" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"pHF" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"pHL" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SEA Office Shutters"; - name = "\improper Privacy Shutters" +/area/almayer/maint/hull/lower/l_a_s) +"pIk" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 }, -/turf/open/floor/plating, -/area/almayer/shipboard/sea_office) -"pHM" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer/cargo_arrow, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"pHZ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"pIf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) "pIl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) +"pIs" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) "pIv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) @@ -41652,38 +41653,42 @@ "pIF" = ( /turf/closed/wall/almayer/white/outer_tile, /area/almayer/medical/medical_science) -"pII" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"pIQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2 + icon_state = "NW-out" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"pIK" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/upper_medical) -"pJE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"pJj" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"pJp" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/upper/u_m_s) +"pJG" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "pJK" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "98" }, /area/almayer/hallways/hangar) -"pJQ" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +"pJM" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "pJS" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -41694,51 +41699,50 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"pKW" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"pLc" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"pLq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"pLC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"pLG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"pKx" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"pKZ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_two) +"pMb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"pMg" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower/engine_core) +"pMh" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"pMa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"pMl" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "pMq" = ( /turf/closed/shuttle/dropship2{ icon_state = "82" }, /area/almayer/hallways/hangar) +"pMt" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) "pMu" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; @@ -41746,68 +41750,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"pMx" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"pMK" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"pML" = ( -/obj/item/trash/c_tube{ - pixel_x = 16; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"pMP" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"pMS" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"pMU" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"pMV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/toy/deck/uno, +"pME" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/squads/delta) +"pMM" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) "pNb" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname/almayer{ @@ -41815,11 +41764,22 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"pNr" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) +"pNf" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"pNh" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/port_missiles) +"pNt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "pNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -41832,123 +41792,113 @@ "pNE" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/lifeboat_pumps/north1) -"pNH" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"pNP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pOb" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"pOd" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +"pNG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/area/almayer/maint/hull/upper/u_a_p) +"pNS" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) "pOg" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"pOt" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 5 +"pOm" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" }, -/obj/item/paper, -/obj/item/restraint/handcuffs, -/obj/item/clothing/mask/cigarette/cigar/classic, -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"pOu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "pOv" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/disposalpipe/segment, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"pOw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"pOy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"pOx" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"pOC" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"pOD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pOI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"pOQ" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"pOK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = -25 }, +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"pPb" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/maint/hull/upper/u_m_s) "pPd" = ( /turf/closed/shuttle/dropship2{ icon_state = "83" }, /area/almayer/hallways/hangar) -"pPl" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"pPn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"pPF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) +"pPt" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pPG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) "pPH" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -41956,179 +41906,106 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"pPK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"pPO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"pPR" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"pPW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pQg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"pQh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"pQk" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/living/briefing) -"pQs" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pQy" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"pQz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"pQl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "pQC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"pQH" = ( +"pQF" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"pRc" = ( +/turf/closed/wall/almayer, +/area/almayer/living/starboard_emb) +"pRd" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"pRe" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering) -"pQL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"pQQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"pQR" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"pRc" = ( -/turf/closed/wall/almayer, -/area/almayer/living/starboard_emb) -"pRd" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"pRe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"pRi" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" +"pRf" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"pRh" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"pRl" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"pRq" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"pRG" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"pRt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"pRI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"pRK" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pRM" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"pRP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"pRY" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/green/west, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/aft_hallway) -"pSc" = ( +"pRU" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/cryo_cells) +"pSe" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"pSg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"pSf" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "pSh" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 6; @@ -42136,38 +42013,50 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"pSk" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ +"pSi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"pSt" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pSv" = ( +/obj/structure/machinery/conveyor{ dir = 8; - name = "ship-grade camera" + id = "gym_2"; + name = "treadmill" }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"pSm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"pSB" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/upper/u_f_s) +"pSC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) "pSD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"pSE" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/ce_room) -"pSF" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) "pSI" = ( /obj/effect/attach_point/electronics/dropship2{ dir = 1 @@ -42175,20 +42064,23 @@ /obj/structure/shuttle/part/dropship2/transparent/inner_left_weapons, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"pSL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" +"pTb" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"pTf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"pSW" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"pTh" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/squads/bravo) "pTC" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -42199,31 +42091,39 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"pTK" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/living/briefing) -"pTP" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"pUb" = ( +"pTG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"pTL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/turf/open/floor/almayer/red/northeast, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"pTO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/hallways/upper/aft_hallway) -"pUc" = ( -/obj/structure/machinery/landinglight/ds2{ +"pTV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/workshop) +"pUd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pUi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "pUm" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -42232,70 +42132,114 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"pUq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +"pUr" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"pUu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/upper/aft_hallway) -"pUs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"pUD" = ( +"pUw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"pUx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SE-out" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/door_control{ + id = "OTStore"; + name = "Shutters"; + pixel_y = -24 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"pUZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"pUE" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"pVs" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"pVH" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"pUU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"pVa" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/obj/item/restraint/handcuffs, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -7; + pixel_y = 13 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/item/device/camera{ + pixel_x = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pVI" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/living/pilotbunks) +"pVe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_f_p) +"pVp" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"pVt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"pVv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"pVy" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"pVA" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"pVE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) "pVL" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -42307,379 +42251,388 @@ icon_state = "63" }, /area/almayer/hallways/hangar) -"pVP" = ( +"pVV" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pVZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30; + pixel_y = -6 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"pWf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"pWN" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/engineering/port_atmos) +"pXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"pXm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"pXo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"pXq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pXx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"pVQ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"pXz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"pVR" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"pXI" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"pXZ" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pVS" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"pVU" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"pYg" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext"; + name = "Window Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "28" + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_x = -26; + pixel_y = 1; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"pYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pWd" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"pYt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"pWi" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"pYS" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"pYT" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"pYV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pWk" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/evidence_storage) -"pWl" = ( -/obj/structure/closet/firecloset, +/area/almayer/medical/morgue) +"pYW" = ( +/obj/structure/morgue, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"pWJ" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/medical/morgue) +"pZm" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"pZt" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"pWM" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/perma) +"pZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"pZD" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"pWO" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"pWW" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/area/almayer/maint/hull/upper/u_m_p) +"pZG" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"pXp" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"pXr" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"pXs" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/engineering/port_atmos) -"pXB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper) -"pXI" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"pXP" = ( /turf/open/floor/almayer, -/area/almayer/engineering/lower) -"pXU" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/squads/charlie_delta_shared) +"pZM" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"pXY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"pYl" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"pYm" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"pZX" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"pZZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"pYv" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/starboard_missiles) -"pYy" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"qai" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pYA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pYM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Brig"; - req_access = null; - req_one_access_txt = "1;3" + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"pYY" = ( -/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"pZf" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cic) -"pZl" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/squads/alpha) +"qat" = ( +/turf/closed/wall/almayer, +/area/almayer/living/chapel) +"qav" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8; + icon_state = "containment_window_h" }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"pZn" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/medical/containment/cell/cl) +"qaC" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"pZB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"qaN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 }, -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"pZC" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"qaO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"pZF" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"qaQ" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"qaW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Officer's Study" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"pZG" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +/area/almayer/living/officer_study) +"qbk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"qbm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"pZH" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"pZN" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"qaf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"qal" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qbw" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"qbx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "S" }, /turf/open/floor/almayer/plating/northeast, /area/almayer/command/cic) -"qar" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/hull/upper/u_a_p) -"qat" = ( -/turf/closed/wall/almayer, -/area/almayer/living/chapel) -"qau" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/window/reinforced/tinted/frosted, -/obj/item/tool/soap/deluxe, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) -"qav" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"qaF" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"qaJ" = ( -/obj/effect/step_trigger/clone_cleaner, +"qbD" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, /turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"qaY" = ( -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) -"qba" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/shipboard/weapon_room) +"qbS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/obj/item/book/manual/chef_recipes, +/obj/structure/sign/safety/coffee{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/target{ - name = "punching bag" +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"qbV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"qby" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"qbF" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"qcd" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"qbQ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"qcg" = ( +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"qbY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"qcj" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/orangefull, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"qch" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering) -"qcn" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 5"; - buildstate = 1 +"qcl" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"qcx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"qcJ" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"qcM" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qcG" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper) -"qcQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"qcP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qcV" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/squads/req) -"qdr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/recycler, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_m_p) +"qdc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"qdj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"qdl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"qdo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) "qdE" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -42708,139 +42661,104 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/upper_medical) -"qdL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"qdO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"qdP" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) "qdS" = ( /turf/open/floor/engine/nitrogen, /area/almayer/engineering/airmix) -"qei" = ( +"qea" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"qen" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/chief_mp_office) +"qet" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"qes" = ( /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"qeP" = ( +/area/almayer/command/telecomms) +"qev" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/pilotbunks) +"qex" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"qeJ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"qeR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/stamp{ + pixel_x = 3; + pixel_y = 10 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"qeO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"qeQ" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"qeS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) "qeX" = ( /turf/open/space, /area/space) -"qeZ" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"qfe" = ( -/obj/structure/pipes/binary/pump/on{ +"qfi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"qfm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"qfq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/hallways/upper/aft_hallway) +"qfj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"qfv" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"qfw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"qfO" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"qfC" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"qfD" = ( -/obj/structure/target, -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"qfE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/upper/u_m_p) +"qgb" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qfG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) -"qfU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) "qgg" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -42850,17 +42768,29 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"qgy" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"qgJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"qgk" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"qgK" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"qgs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/sign/safety/conference_room{ + pixel_x = -17 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"qgx" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qgK" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -42870,83 +42800,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"qgN" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"qgP" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/holohoop{ - density = 0; - pixel_y = 29 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"qhh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"qho" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qhz" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"qhP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"qhN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) -"qhQ" = ( -/obj/structure/platform{ - dir = 4 +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qhW" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "qhX" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qhY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) +"qhZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "qii" = ( /obj/structure/machinery/door/poddoor/railing{ id = "supply_elevator_railing" }, /turf/open/floor/almayer, /area/almayer/squads/req) -"qip" = ( -/obj/structure/machinery/light/small, +"qil" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"qiA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/area/almayer/maint/hull/lower/l_m_s) +"qit" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"qix" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"qiF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "qiK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42956,9 +42870,49 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) +"qiM" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red, +/area/almayer/maint/hull/upper/u_a_p) "qiN" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell) +"qiS" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"qiX" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qje" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/living/starboard_emb) +"qjf" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qjh" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"qji" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) "qjr" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -42975,14 +42929,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"qjs" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n150{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) "qjy" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -43000,30 +42946,10 @@ /obj/structure/largecrate/random/case, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qjA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/lower) -"qjD" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"qjJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +"qjI" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "qjK" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -43035,6 +42961,24 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"qjM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/machinery/computer/secure_data{ + pixel_x = 17 + }, +/obj/structure/machinery/computer/card{ + pixel_x = -16 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) "qjN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -43043,12 +42987,27 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"qjO" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer1" +"qjP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"qjW" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) "qjX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -43065,231 +43024,193 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"qkb" = ( -/obj/structure/largecrate/random/barrel/blue, +"qjY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qke" = ( -/obj/structure/platform{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_p) +"qkn" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"qkt" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qkq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"qks" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 }, -/turf/open/shuttle/dropship/light_grey_top_right, -/area/almayer/hallways/hangar) -"qkI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"qkS" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"qkZ" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -25 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"qli" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"qky" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) -"qln" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/weapon_room) -"qlw" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"qkA" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"qkG" = ( +/obj/structure/machinery/vending/security, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qlJ" = ( +/area/almayer/shipboard/brig/general_equipment) +"qkL" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/hallways/lower/port_midship_hallway) -"qlQ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"qlV" = ( -/obj/structure/bed/chair{ - dir = 4 +"qkW" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor5, +/area/almayer/engineering/lower/engine_core) +"qlh" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"qlx" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"qlY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"qlO" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"qmd" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qlS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "qme" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"qml" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) +"qmh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"qmm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) "qmq" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 }, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"qmr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"qms" = ( +/turf/open/floor/almayer/orange, +/area/almayer/living/briefing) +"qmv" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"qmE" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/hull/upper/u_a_p) +"qmT" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"qmt" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"qnb" = ( /obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qmI" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"qne" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"qmY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"qna" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) "qnf" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/cryo_cells) -"qno" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"qnB" = ( -/obj/structure/disposalpipe/segment{ +"qng" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"qni" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/upper/u_f_p) +"qnj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"qnp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) +"qnu" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "qnK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"qnN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"qnY" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"qnZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"qoa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +"qnL" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) "qod" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -43299,164 +43220,126 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qoj" = ( -/obj/structure/window/reinforced{ - dir = 8 +"qoi" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"qot" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - health = 80 + icon_state = "pipe-c" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"qol" = ( -/obj/item/tool/warning_cone, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"qou" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qop" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/living/grunt_rnr) +"qov" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qoX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"qow" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"qpa" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"qoy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qpe" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"qpf" = ( +/obj/structure/machinery/light/containment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"qpi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1; - pixel_y = -29 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"qoB" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"qoH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"qoK" = ( -/obj/structure/machinery/door_control{ - id = "crate_room"; - name = "storage shutters"; - pixel_x = -25; - pixel_y = -1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"qoL" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/hallways/lower/port_midship_hallway) -"qpu" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "qpA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"qpF" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/evidence_storage) -"qpJ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, +"qpI" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, /turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qpO" = ( +/turf/open/floor/almayer/orange, /area/almayer/squads/alpha_bravo_shared) -"qpL" = ( -/obj/structure/machinery/telecomms/receiver/preset_left, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/radio_rad{ - pixel_x = 16; - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"qpS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/surface/rack, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"qpW" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"qqg" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"qql" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"qqv" = ( +"qpR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_umbilical) -"qqJ" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"qqB" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"qqE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "qqM" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -43464,25 +43347,13 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"qqV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ +"qqX" = ( +/obj/structure/machinery/door/poddoor/railing{ dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"qqZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 + id = "vehicle_elevator_railing_aux" }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "qrc" = ( /obj/structure/cargo_container/lockmart/right{ layer = 3.1; @@ -43490,57 +43361,66 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"qrn" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"qrq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/aft_hallway) -"qrs" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 +"qrd" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"qrh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"qrj" = ( +/obj/structure/closet/crate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"qrx" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"qrL" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"qsg" = ( -/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qrz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qsp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_m_s) +"qrB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"qrE" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qrO" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"qrT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"qsh" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 }, -/obj/structure/platform_decoration{ - dir = 4 +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"qsq" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) "qss" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -43548,35 +43428,12 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"qsz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"qsB" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"qsE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/vending/snack, +"qsG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"qsF" = ( -/obj/structure/closet/crate, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"qsN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) "qsQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -43590,39 +43447,9 @@ /obj/structure/sign/prop1, /turf/closed/wall/almayer/reinforced, /area/almayer/living/commandbunks) -"qsU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"qsZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/reagent_scanner{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clipboard{ - pixel_x = 8 - }, -/obj/item/paper{ - pixel_x = 8 - }, -/obj/effect/spawner/random/toolbox{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +"qsV" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) "qtc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43632,20 +43459,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"qtf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter/zippo, -/obj/item/toy/dice/d20, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 +"qtg" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/living/basketball) "qtl" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, @@ -43655,15 +43476,10 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"qtm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) +"qtt" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) "qtD" = ( /turf/closed/wall/almayer, /area/almayer/living/cafeteria_officer) @@ -43671,23 +43487,16 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"qtQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "line2"; - pixel_x = -4; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/door_control{ - id = "ROlobby2"; - name = "RO Line 2 Shutters"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "1;21" +"qtP" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/living/gym) +"qui" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) "quk" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -43695,6 +43504,63 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/alpha) +"qul" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"qum" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/folded_tent/cmd, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"qus" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"quA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"quC" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"quD" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"quG" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"quH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) "quM" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -43702,16 +43568,44 @@ }, /turf/open/floor/plating, /area/almayer/living/basketball) -"quP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +"quQ" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8; + layer = 3.1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_med"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"quT" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"quU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"quV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "quY" = ( /turf/open/floor/almayer, /area/almayer/squads/delta) @@ -43723,341 +43617,381 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"qvm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"qvw" = ( +"qvd" = ( /obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 - }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"qvA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"qvl" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qvn" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 5; - pixel_y = 14 +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/attachable/bayonet{ - pixel_x = -14; - pixel_y = 3 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"qvu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"qvF" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qvz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"qvC" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"qvE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"qvJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "qvK" = ( /turf/closed/shuttle/dropship2{ icon_state = "10" }, /area/almayer/hallways/hangar) -"qvZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"qwc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"qvX" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qwl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/cryo) -"qwk" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) "qwv" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"qwB" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +"qwC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"qwE" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"qwF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"qwI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qwU" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"qwX" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"qxc" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"qwN" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"qxd" = ( -/obj/structure/machinery/power/apc/power/west, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/orange/west, -/area/almayer/shipboard/brig/lobby) -"qxy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"qxH" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"qxP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/hangar) +"qxn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"qyb" = ( +/area/almayer/engineering/lower) +"qxp" = ( +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) +"qxs" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qyu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/hallways/lower/port_midship_hallway) +"qxD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qxW" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"qxY" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"qyc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = 28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"qyf" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qyv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10 +/area/almayer/shipboard/starboard_point_defense) +"qyo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = list(36) }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"qyO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/synthcloset) +"qys" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qyw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"qyD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"qyJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "qyP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) -"qzh" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_lobby) -"qzn" = ( +"qyR" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-5"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qzp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"qzt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"qzr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"qzu" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qzw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"qzA" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +"qzD" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "qzF" = ( /obj/structure/sign/safety/maint{ pixel_y = 26 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"qAp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"qAs" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"qAu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"qAA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"qAD" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/aft_hallway) -"qAF" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or02"; - name = "Operating Theatre 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_two) -"qAO" = ( -/obj/structure/machinery/power/apc/power/south, +"qzG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out"; + pixel_x = -1 }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"qzJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment/cell) -"qAU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qzO" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"qzP" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"qzS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"qBf" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qBn" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"qzT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"qAg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/maint/hull/upper/u_f_p) -"qBu" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"qAq" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"qBC" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"qAt" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"qBI" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/hangar) +"qAx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = 7 + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"qBQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"qBV" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 3"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/maint/hull/upper/u_m_p) +"qAz" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/clothing/head/helmet/space/compression/uscm, +/obj/item/cell/crap{ + pixel_x = 7 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"qBX" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"qAA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"qAH" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = -2 +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = -2 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qBd" = ( +/turf/open/floor/almayer/orange, +/area/almayer/command/cic) +"qBf" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qBg" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper) +"qBh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qCh" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Oxygen Supply Console" }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/engineering/lower) +"qBt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) "qCi" = ( /obj/structure/machinery/light{ dir = 4 @@ -44067,183 +44001,187 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"qCn" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"qCo" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - dir = 1; - name = "Corporate Liaison's Bedroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"qCq" = ( -/obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"qCI" = ( +"qCy" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"qCR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"qCT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"qCL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"qCU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"qDo" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) "qDs" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"qDw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"qDH" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/book/spacebeast, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/evidence_storage) +"qDK" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"qDU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"qDZ" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = -25; + pixel_y = 23; + req_access_txt = "200" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qDx" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"qEa" = ( +/area/almayer/maint/hull/upper/u_m_p) +"qEf" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"qEc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-2"; - req_access = null +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"qEe" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"qEr" = ( +/obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"qEj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"qEo" = ( +/area/almayer/living/tankerbunks) +"qEu" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"qEv" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"qEQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"qEp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/aft_hallway) -"qEq" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/red/southeast, -/area/almayer/maint/hull/upper/u_a_p) -"qEK" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) -"qEO" = ( +"qEZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qEP" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"qER" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"qET" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"qEX" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"qFd" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"qFb" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"qFg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform_decoration, +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"qFk" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"qFv" = ( -/obj/structure/curtain/medical, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"qFx" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"qFF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) -"qFH" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "qFK" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -44257,74 +44195,115 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"qGa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"qFX" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"qGj" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"qGt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"qGk" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"qGl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Kitchen Hydroponics"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"qGo" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"qGr" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"qGL" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"qGO" = ( +/obj/structure/machinery/door_control{ + id = "pobunk2"; + name = "PO2 Privacy Shutters"; + pixel_x = -24 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"qGv" = ( -/obj/structure/sign/safety/hvac_old{ +/area/almayer/living/pilotbunks) +"qGU" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"qHg" = ( +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"qGC" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/engine_core) -"qGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"qHl" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) -"qGJ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"qHb" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"qHi" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"qHo" = ( /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qIs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/maint/hull/lower/l_m_s) +"qHm" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"qIx" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 37; - req_one_access = null +/area/almayer/shipboard/starboard_point_defense) +"qHR" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"qIv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"qIy" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"qID" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/gear/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) "qIE" = ( /obj/structure/machinery/light{ dir = 8 @@ -44336,25 +44315,20 @@ /obj/item/book/manual/evaguide, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qIK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +"qIO" = ( +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"qIL" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"qIM" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "qIS" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -44362,185 +44336,289 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"qIV" = ( +"qJk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"qJq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"qJA" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"qJB" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/computer{ - pixel_x = 7 +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = 25 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qJX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/stamp/ro{ + name = "spare requisitions officer's rubber stamp"; + pixel_x = -7; + pixel_y = 11 }, -/obj/item/prop/magazine/book/borntokill{ - pixel_x = -6; - pixel_y = 7 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qKa" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"qKb" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"qKc" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"qIX" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"qJn" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"qKe" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qKk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"qJN" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"qKn" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qJS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"qJU" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/engineering/upper_engineering/port) "qKC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"qKK" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qKV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qLa" = ( -/turf/open/floor/almayer/plate, +"qKG" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, /area/almayer/engineering/lower) -"qLe" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +"qKN" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/aft_hallway) -"qLr" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"qKR" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"qKX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) +"qLl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"qLC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"qLF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"qLO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"qLP" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 16; + pixel_y = 26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"qLQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"qLD" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/medical/morgue) "qLT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qMp" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"qMt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"qMh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/green/northeast, +/area/almayer/shipboard/brig/cells) "qMu" = ( /obj/structure/shuttle/part/dropship2/transparent/nose_center, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"qMw" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qML" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"qMI" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qMJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"qMK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"qMQ" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qMM" = ( /turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) -"qNa" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ +"qMR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/mousetraps, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"qMT" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"qNa" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; req_access_txt = 19; req_one_access = null }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"qNc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"qNl" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"qNy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +"qNe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qNi" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"qNK" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"qNs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"qNw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"qNS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"qNA" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) +"qNJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"qNQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"qOb" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop) "qOc" = ( /turf/open/floor/almayer, /area/almayer/living/briefing) -"qOd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "qOe" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -44551,37 +44629,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"qOj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"qOt" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qOu" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) "qOF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -44589,110 +44636,150 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qOL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"qOQ" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"qOS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"qOU" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qPc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"qPf" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"qPs" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/orange/southwest, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"qPd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"qPh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) -"qPw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qPD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"qPl" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"qPx" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/upper/u_f_p) +"qPz" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"qPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"qPU" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) -"qQp" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"qQC" = ( -/obj/structure/prop/server_equipment/broken, +/area/almayer/hallways/lower/vehiclehangar) +"qPO" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"qPX" = ( /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"qQW" = ( -/obj/structure/machinery/light/small{ +/area/almayer/engineering/upper_engineering) +"qPY" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk{ dir = 4 }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"qQd" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"qQA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"qQP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"qQX" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"qRq" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"qRw" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"qQY" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"qRf" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/maint/hull/upper/u_a_p) -"qRs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"qRB" = ( +/obj/structure/machinery/power/apc/power/east, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 1 + layer = 3.33; + pixel_x = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"qRD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/upper/aft_hallway) "qRO" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, @@ -44700,29 +44787,35 @@ /obj/item/device/whistle, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"qRU" = ( -/obj/structure/machinery/light{ - dir = 4 +"qSf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"qRW" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"qSs" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) "qSx" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/south1) -"qSH" = ( +"qSy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "qSJ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -44731,65 +44824,70 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) +"qST" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"qSZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"qTg" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"qTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "qTA" = ( /turf/closed/shuttle/dropship2{ icon_state = "53" }, /area/almayer/hallways/hangar) -"qTL" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/lobby) -"qTM" = ( -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17; - pixel_y = -7 - }, -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer/mono, +"qTF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/medical_science) -"qTX" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"qTZ" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +"qTG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"qUo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"qUf" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"qUx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"qUE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"qUq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"qUU" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"qUI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"qUK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/warden_office) "qUX" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -44797,74 +44895,50 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"qVe" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) "qVf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/chapel) -"qVy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"qVA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/machinery/status_display{ - pixel_y = -29 +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"qVB" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "qVE" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "39" }, /area/almayer/hallways/hangar) -"qVH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"qVP" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"qVQ" = ( -/turf/open/floor/almayer/silvercorner/north, +"qVU" = ( +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/aft_hallway) -"qVS" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 +"qVV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 5 }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "qVY" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -44877,158 +44951,220 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) -"qWj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" +"qWl" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "delivery outlet"; + pixel_x = -1; + pixel_y = 25; + range = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"qWn" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"qWp" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"qWr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"qWs" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"qWB" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) "qWG" = ( /turf/closed/shuttle/dropship2{ icon_state = "59" }, /area/almayer/hallways/hangar) -"qWV" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"qXe" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/cic) +"qWP" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"qWR" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) "qXh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"qXz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, +"qXu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"qXW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"qXZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"qYd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Brig Equipment" +/area/almayer/maint/hull/lower/l_m_s) +"qXv" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"qXM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/surface/rack{ + density = 0; + pixel_x = -16 }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"qXY" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/general_equipment) -"qYf" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"qYl" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qYA" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qYW" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qYY" = ( -/obj/structure/bed/chair/comfy{ +/area/almayer/squads/req) +"qYo" = ( +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"qYt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/auxiliary_officer_office) +"qYw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"qYZ" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"qZe" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"qYx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qZo" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_missiles) -"qZt" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qZu" = ( -/obj/structure/machinery/landinglight/ds1/delayone, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qYC" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"qZx" = ( +"qYF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"qYJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/general_equipment) +"qYU" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1" + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_one) +"qZf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Perma Cells" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qZg" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qZj" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"qZz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/device/helmet_visor{ + pixel_x = 8; + pixel_y = 13 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qZA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"qZo" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_missiles) +"qZI" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"qZE" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"qZM" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"qZQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) "qZR" = ( /obj/structure/bed/chair{ dir = 4 @@ -45038,16 +45174,18 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"qZX" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/starboard_missiles) -"rab" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"qZT" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/living/pilotbunks) +"raa" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) "raj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -45059,33 +45197,12 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"ran" = ( -/obj/structure/machinery/light{ +"rao" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper) -"rax" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/maint/hull/upper/u_m_p) -"raz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "raE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -45096,84 +45213,69 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"raS" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +"raT" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"raW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"rbp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + id = "engidorm"; + name = "\improper Privacy Shutters" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"raU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"rbu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"raV" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"rbv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"rbb" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rby" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"rbf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) -"rbg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"rbI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"rbP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"rbp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - id = "engidorm"; - name = "\improper Privacy Shutters" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"rbz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/warden_office) -"rbA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rbE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"rbH" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rbJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/workshop) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) "rbV" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -45181,47 +45283,83 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"rbW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rbY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"rcg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ + dir = 2 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"rcp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"rbX" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rcq" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"rcu" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"rcB" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +/area/almayer/squads/alpha) "rcD" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/laundry) -"rcQ" = ( -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) -"rde" = ( -/obj/structure/bed/chair/office/dark, +"rcJ" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/area/almayer/maint/hull/lower/l_f_s) +"rcP" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"rcZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"rdb" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"rdd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) "rdg" = ( /obj/structure/machinery/light{ dir = 8 @@ -45234,73 +45372,21 @@ "rdo" = ( /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"rdq" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"rdr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_y = 24; - req_access_txt = "3" - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/perma) -"rdv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"rdA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"rdL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"rdQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D4"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +"rdp" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"rdG" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"rdS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "rdT" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/gym) -"rdU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) "rea" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -45320,103 +45406,86 @@ icon_state = "67" }, /area/almayer/hallways/hangar) -"reh" = ( -/obj/structure/largecrate/random/barrel/yellow, +"rei" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ret" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/area/almayer/maint/hull/upper/u_a_p) +"ren" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"reC" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"rew" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"reJ" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"rey" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"reB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/machinery/door/window/tinted{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"reI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"reU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"reV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/hydroponics) -"rfd" = ( -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"rfg" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"rfu" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"rfC" = ( -/obj/structure/bed/chair{ +/area/almayer/medical/medical_science) +"rfp" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"rfE" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 4"; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/cells) -"rfF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"rfI" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"rfN" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"rfD" = ( +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_m_p) +"rfM" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "rfO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -45428,132 +45497,77 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"rfV" = ( +"rfS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "W" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/maint/hull/upper/u_m_p) -"rfW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"rgh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"rgt" = ( -/obj/structure/platform_decoration{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"rgE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"rgF" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"rhf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/hallways/lower/port_midship_hallway) +"rgn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"rhg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rgp" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"rhh" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_missiles) -"rhn" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"rgq" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) -"rhp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "MTline"; - name = "Next button"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "2;7" - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"rhu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, +"rgN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"rhw" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/area/almayer/command/cic) +"rgZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research/main_terminal{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"rhc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"rhy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"rhf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rhh" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_missiles) +"rhC" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) "rhH" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -45566,59 +45580,41 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"rhO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4; - layer = 2.99; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rhR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ +"rhI" = ( +/obj/structure/sink{ dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/command/cichallway) -"rhV" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + pixel_y = -10 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"rit" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"rhQ" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = 7 + pixel_y = 32 }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"rib" = ( +/obj/structure/machinery/computer/arcade, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"rik" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"riv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/engineering/lower/workshop) +"rin" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"riy" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "riA" = ( /obj/structure/machinery/cm_vending/clothing/dress{ req_access = list(1) @@ -45628,94 +45624,40 @@ "riD" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/starboard_point_defense) -"riE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"riI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"riO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) "riP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"riV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cic) -"riZ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +"riT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rja" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"rjc" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"rjj" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, /area/almayer/engineering/lower) -"rjs" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +"rjb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"rjB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +/area/almayer/hallways/lower/port_midship_hallway) +"rjW" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"rjR" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) -"rjS" = ( -/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"rkc" = ( +/obj/structure/bookcase/manuals/medical, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/item/clipboard, -/obj/item/paper, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) +/area/almayer/maint/hull/upper/u_f_s) "rkk" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -45723,25 +45665,10 @@ }, /turf/open/floor/plating, /area/almayer/living/briefing) -"rkp" = ( -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"rkr" = ( -/obj/structure/machinery/door/poddoor/almayer/blended{ - id = "RoomDivider"; - layer = 3.1; - name = "\improper Room Divider" - }, +"rks" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) +/area/almayer/command/lifeboat) "rkx" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -45783,39 +45710,53 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"rkO" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"rla" = ( -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"rli" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"rlC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/north, +"rkP" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"rkS" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rle" = ( +/turf/open/floor/almayer/blue/northwest, /area/almayer/hallways/upper/aft_hallway) -"rlJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/marine, -/obj/item/clothing/accessory/storage/surg_vest, -/obj/item/tool/portadialysis, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"rmb" = ( -/obj/structure/bed/chair{ +"rlh" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/gym) +"rlA" = ( +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"rlP" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"rme" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "rmg" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -45836,205 +45777,203 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"rml" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/ladder/fragile_almayer{ - height = 1; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"rmm" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"rmo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +"rmC" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"rnf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/hallways/lower/starboard_umbilical) +"rnd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"rng" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 27 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"rnL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"rnh" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"roc" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"rnm" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"rno" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/aft_hallway) +"roO" = ( /obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 +/obj/item/stack/rods/plasteel{ + amount = 36 }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"rnz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"roQ" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"rpe" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rpl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"rpq" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"rps" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rnC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/southwest, /area/almayer/hallways/upper/aft_hallway) -"rnD" = ( +"rpt" = ( /obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"roj" = ( -/obj/structure/machinery/door_control{ - id = "or02"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"roA" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"roS" = ( +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"rpL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"rpa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/computerlab) -"rpi" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/briefing) -"rpP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"rqb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"rpQ" = ( -/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"rpY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"rqc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"rqe" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/starboard_missiles) +"rqf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rqj" = ( +/area/almayer/engineering/lower/workshop) +"rqg" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"rqq" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) "rqs" = ( /turf/open/floor/almayer, /area/almayer/living/chapel) -"rqB" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter, -/obj/structure/machinery/faxmachine/uscm, +"rqt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"rqA" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rqE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"rqH" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"rqJ" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/area/almayer/hallways/lower/repair_bay) +"rqI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/aft_hallway) -"rqL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"rqO" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"rqQ" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"rrd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/command/cic) +"rqU" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"rqV" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rre" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"rrg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "rrh" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -46045,17 +45984,21 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"rrr" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"rrl" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) +"rrm" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) "rry" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46065,100 +46008,148 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"rrz" = ( -/obj/structure/machinery/power/apc/power/north, +"rrB" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/item/storage/firstaid/regular, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"rrE" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/shipboard/starboard_point_defense) +"rrI" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"rrM" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"rsd" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"rsh" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"rsr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"rrU" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rst" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"rsC" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"rsJ" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"rrW" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/structure/sink{ + pixel_y = 24 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/chief_mp_office) +"rsL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"rse" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"rsi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rsN" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"rsr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"rsO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"rsy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"rsQ" = ( +/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/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"rsS" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Lifeboat Control Bubble"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"rtf" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"rti" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rsG" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"rsH" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"rtt" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, /turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) -"rsV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"rsX" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"rtq" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) "rtx" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) @@ -46172,13 +46163,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"rtN" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) "rtO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -46188,52 +46172,54 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"rui" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"ruo" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" +"rtP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"rur" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"rtW" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"rua" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/folder/black_random, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"rue" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rux" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/green/west, -/area/almayer/shipboard/brig/cells) -"rvc" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"ruT" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) "rvi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -46248,60 +46234,93 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"rvj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) "rvq" = ( /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"rvs" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"rvv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"rvz" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell/cl) -"rvF" = ( -/obj/structure/sign/safety/maint{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"rvw" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"rvx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"rvL" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"rwg" = ( -/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"rwo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"rwJ" = ( +/area/almayer/hallways/lower/vehiclehangar) +"rwi" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"rwk" = ( /obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"rwm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/toy/deck{ +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rwz" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = 8 + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"rwN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"rwC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"rwI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"rwJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"rwN" = ( /obj/structure/machinery/door_control{ id = "CIC_Conference"; name = "Conference Lockdown"; @@ -46318,165 +46337,136 @@ "rwP" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"rwQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"rwU" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Spare Restraints"; - req_one_access_txt = "3" +"rwX" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"rxn" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/aft_hallway) +"rxw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"rxg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"rxh" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/command/lifeboat) -"rxx" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/maint/hull/lower/l_a_p) "rxF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"rxS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 +"rxH" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/briefing) +"rxM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"ryk" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer/cargo/southwest, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) -"ryl" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"rxO" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"ryd" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ryx" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ryy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/basketball) +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"ryj" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) "ryz" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"ryA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"ryO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"rzQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - name = "Autopsy"; - req_access_txt = "25"; - req_one_access = null +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"rzf" = ( +/obj/structure/machinery/light/containment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"rzR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"rzS" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"rzq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"rzF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rzL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, /obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"rzZ" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/area/almayer/engineering/lower/workshop) +"rAb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/shipboard/brig/medical) -"rAe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "rAf" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"rAw" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - layer = 3.2; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/reagent_container/food/snacks/grown/orange{ - layer = 3.3; - pixel_x = 1; - pixel_y = 13 - }, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/starboard_emb) +"rAi" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rAC" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "rAD" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46485,34 +46475,31 @@ }, /turf/open/floor/plating, /area/almayer/living/captain_mess) -"rAE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"rAH" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_y_offset = 0 }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"rAS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"rAI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 +"rAU" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rAQ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"rAR" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "rBb" = ( /obj/structure/machinery/light{ dir = 8 @@ -46523,149 +46510,194 @@ /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"rBk" = ( -/obj/structure/window/reinforced{ - dir = 8 +"rBu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"rBH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"rCk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"rCo" = ( +/obj/structure/bed/chair/comfy/orange, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"rBx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"rBM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/almayer/maint/hull/upper/u_a_p) +"rCy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Engineering Storage" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"rCN" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 }, /turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rCP" = ( +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) -"rBZ" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/lifeboat) -"rCa" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"rCg" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"rCx" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"rCW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform_decoration, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"rDb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"rCG" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +"rDo" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"rCI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/trash/popcorn{ - layer = 3.1; - pixel_x = -3; - pixel_y = 13 +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"rCJ" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"rDp" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rDf" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"rDj" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/north, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"rDr" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) -"rDE" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"rDW" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"rDZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"rDA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"rDJ" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"rEe" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rEi" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/cryo_cells) -"rEm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"rEt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_s) +"rDN" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"rEd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"rEp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie) "rEC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"rEG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) "rEK" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_garden) +"rES" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"rEU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"rEV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"rEW" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "24;31" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"rEX" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "rFd" = ( /obj/item/storage/donut_box{ pixel_y = 8 @@ -46675,240 +46707,177 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"rFf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rFq" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"rFy" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"rFB" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "rFG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"rFS" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"rFL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"rFU" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"rFY" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 }, -/obj/structure/phone_base/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"rGa" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"rGg" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"rGh" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/starboard_missiles) +"rGI" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"rGQ" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"rGq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rHd" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"rGr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"rGs" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rHH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"rIa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"rGG" = ( -/obj/structure/window/reinforced{ - dir = 8 +/area/almayer/maint/hull/lower/l_m_p) +"rIb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/sign/safety/hazard{ +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"rGI" = ( -/obj/structure/bed, -/obj/item/bedsheet/hop, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"rGN" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"rGV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"rGW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"rHJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"rHL" = ( -/obj/structure/platform{ +/area/almayer/maint/hull/lower/l_m_p) +"rIg" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"rHM" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"rHO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"rHT" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"rHV" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"rId" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/mousetraps, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 +/area/almayer/shipboard/brig/perma) +"rIi" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"rIk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"rIu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"rIm" = ( +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"rIz" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rIB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"rIx" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/living/grunt_rnr) -"rIF" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/hallways/lower/vehiclehangar) -"rIH" = ( -/obj/structure/window/reinforced{ +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; dir = 1; - layer = 3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/basketball) -"rIK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rIR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"rIC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"rIV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"rJb" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rJe" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) +/area/almayer/hallways/lower/starboard_midship_hallway) +"rIW" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"rJc" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "rJl" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -46919,14 +46888,29 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"rJx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +"rJr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rJw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/command/cic) "rJC" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -46934,27 +46918,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rJL" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/plate, +"rJS" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) -"rJP" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 9; - pixel_y = 15 - }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) "rJV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" @@ -46962,285 +46929,164 @@ /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"rJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +"rKc" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"rKe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"rKb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/area/almayer/hallways/lower/port_midship_hallway) +"rKi" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rKo" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) "rKu" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"rKE" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) +"rKv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"rKL" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) "rKM" = ( /obj/structure/filingcabinet, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"rKN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "rKQ" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rLc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - pixel_y = 17 - }, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4 - }, -/obj/structure/machinery/computer/card{ - dir = 4; - pixel_y = -16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) "rLj" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rLk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"rLr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"rLz" = ( /turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"rLy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"rLB" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 +/area/almayer/shipboard/brig/general_equipment) +"rLD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"rLC" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 3"; - layer = 3.2; - name = "Cell 3 Control"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 2"; - layer = 3.2; - name = "Cell 2 Control"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 2"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = 7; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 3"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = -6; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +/area/almayer/maint/hull/lower/l_f_s) "rLK" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rLQ" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"rLV" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"rLX" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"rMF" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower) -"rMG" = ( -/obj/item/tool/wet_sign, +"rLM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"rLN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rMH" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"rLT" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/upper/aft_hallway) +"rMh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"rMn" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "rMM" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rMO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"rMQ" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) "rMS" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"rNa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 +"rMY" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rMZ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 4"; - name = "\improper Courtyard Divider" +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"rNf" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"rNd" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rNj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/upper/u_a_s) +"rNo" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ - dir = 1 + dir = 4; + invisibility = 101 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"rNe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"rNk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"rNl" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or04"; - name = "Operating Theatre 4" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_four) -"rNm" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"rNs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rNt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"rNt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"rNF" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) +"rNx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) "rNK" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -47248,75 +47094,87 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"rNO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"rNP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "rNR" = ( /turf/closed/wall/almayer, /area/almayer/engineering/starboard_atmos) -"rNW" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" +"rOb" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 12; + pixel_y = 25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"rNZ" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"rOf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"rOe" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"rOi" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/waterhazard{ - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 32 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"rOl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"rOs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rOt" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"rOu" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"rOD" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/shipboard/brig/processing) "rOF" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/wy_mre, /obj/item/storage/box/wy_mre, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) -"rOQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rOG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"rOP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"rOU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/almayer/medical/containment/cell) "rPb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge{ @@ -47325,79 +47183,83 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"rPg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"rPf" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"rPp" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters/clippers, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"rPl" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"rPw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"rPo" = ( -/obj/structure/pipes/standard/simple/visible{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"rPO" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower) -"rPq" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"rPD" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/lobby) +"rQe" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"rQl" = ( +/obj/structure/closet/firecloset, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_midship_hallway) -"rPK" = ( -/obj/structure/bed/chair/comfy/delta{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rQn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"rQd" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"rQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"rQo" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 8; + pixel_y = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rQh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -7; + pixel_y = -1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"rQk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, -/obj/structure/machinery/door_control{ - id = "officers_mess"; - name = "Privacy Shutters"; - pixel_y = -19 +/obj/item/trash/crushed_cup{ + pixel_y = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "rQt" = ( /obj/structure/toilet{ pixel_y = 16 @@ -47425,101 +47287,43 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"rQC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_windoor"; - name = "Windoor Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "28" - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/sign/safety/biohazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_se_2"; - name = "Window Shutters"; - pixel_x = -7; - pixel_y = 4; - req_access_txt = "28" - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"rQI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"rQQ" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"rQR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"rQS" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) "rQW" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/starboard) -"rRa" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"rRv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"rRd" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"rRE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rRQ" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 +/area/almayer/squads/alpha_bravo_shared) +"rRo" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rRD" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"rRX" = ( -/obj/structure/barricade/plasteel/metal{ - dir = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"rSc" = ( /turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"rRH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "rSd" = ( /obj/structure/window/framed/almayer, @@ -47528,14 +47332,21 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) -"rSo" = ( +"rSf" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/magazine/book/spacebeast, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/evidence_storage) -"rSr" = ( +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"rSh" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"rSC" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"rSH" = ( /turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering) +/area/almayer/living/starboard_garden) "rSL" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -47548,17 +47359,12 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"rSN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"rSO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) +/area/almayer/maint/hull/upper/u_m_s) "rSP" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_1"; @@ -47566,45 +47372,28 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"rSR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"rSZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"rTc" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"rTi" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"rTB" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 +"rSS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"rTA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/marine, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/tool/portadialysis, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"rTJ" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"rTK" = ( -/obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) +/area/almayer/squads/delta) "rTN" = ( /obj/item/tool/warning_cone{ pixel_x = -12; @@ -47615,6 +47404,21 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"rTO" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"rTS" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) "rTU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -47625,79 +47429,51 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"rTY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"rUe" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"rUu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + name = "\improper Research Reception Laboratory" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"rUn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/auxiliary_officer_office) -"rUp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"rUv" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = -25; - pixel_y = 23; - req_access_txt = "200" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) "rUA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"rUI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"rUF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"rUR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"rUS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "rUX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47711,45 +47487,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"rVy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"rVH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"rVN" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/obj/structure/sign/safety/debark_lounge{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rVV" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"rVW" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 +"rVp" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"rVv" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"rVx" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) "rWh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47766,25 +47516,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"rWq" = ( +"rWv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rWC" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"rWI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"rWH" = ( -/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/briefing) +"rWO" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"rWK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ +/area/almayer/maint/hull/lower) +"rWS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/command/cic) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "rWV" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -47794,167 +47555,196 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"rXr" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"rXA" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) +"rXv" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"rXw" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "rXG" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"rXN" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) -"rXS" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"rXT" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"rYh" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rYi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"rYj" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"rXQ" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"rXU" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/upper/aft_hallway) +"rYd" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/broken, +/obj/item/reagent_container/food/drinks/cans/beer{ + layer = 3.1; + pixel_x = -7; + pixel_y = 16 }, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rYk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/living/port_emb) +"rYe" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"rYr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rYo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"rYv" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rYF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "rYH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/basketball) -"rYK" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"rYR" = ( -/obj/structure/pipes/vents/pump{ +"rYJ" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) +"rYO" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"rZj" = ( -/obj/structure/machinery/power/apc/power/west, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = 14 +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"rYQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/shipboard/brig/cells) -"rZM" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"rYS" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rZR" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"rZY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"sag" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"rZe" = ( +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"rZu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"saj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"rZx" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"sal" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"rZE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"saF" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/living/captain_mess) +"rZJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"san" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"sao" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = -3 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"saX" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop) -"sba" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"sbe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"sar" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"sbg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sas" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"saB" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"saM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_m_p) "sbi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution) +"sbm" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "sbp" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) @@ -47964,136 +47754,166 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"sbz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atm{ - pixel_y = 32 +"sbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"sbN" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"sbL" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/adv, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"sbR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Pilot's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"sbS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"scb" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"sbU" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) "sci" = ( /obj/item/bedsheet/red, /obj/structure/bed, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) +"scj" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/cic) +"scn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) "sco" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"scG" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"scs" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliaison) +"scC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"scM" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"scP" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/offices/flight) +"scT" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"scW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flash, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"sdi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"sdl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"sdy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"scR" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"scV" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/general_equipment) -"sdf" = ( +/area/almayer/maint/hull/upper/u_a_s) +"sdH" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"sdI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out" }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"sdr" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/gym) -"sdt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"sdu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"sdA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"sdU" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"sei" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sdD" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sdM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ +/area/almayer/engineering/lower/engine_core) +"ser" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"set" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; - icon_state = "pipe-c" + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ses" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"sev" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"sew" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"seC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"seE" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_f_s) "seL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical{ @@ -48103,27 +47923,33 @@ /obj/item/tool/wrench, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"seZ" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"sfc" = ( -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/structure/machinery/power/apc/power/west, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"sfm" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 +"seN" = ( +/obj/item/toy/deck{ + pixel_y = 12 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"seP" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"seX" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/briefing) +"sfp" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, /area/almayer/maint/hull/upper/u_f_p) "sfx" = ( /obj/structure/stairs/perspective{ @@ -48141,16 +47967,10 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"sfH" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 14"; - buildstate = 1 - }, -/turf/open/floor/almayer/test_floor4, +"sfS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"sfQ" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/starboard_missiles) "sfZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ @@ -48158,10 +47978,19 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"sgk" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) +"sgd" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"sgi" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + id = "port_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) "sgo" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -48172,149 +48001,362 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"sgq" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"sgB" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) "sgC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"sgG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"sgL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 +"sgH" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"sgQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "Brig" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"sgM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"sgZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"shi" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"shv" = ( +/area/almayer/hallways/upper/aft_hallway) +"sgT" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"sgV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"sgW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"sha" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"shf" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"shg" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"shu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/aft_hallway) +"shy" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"shD" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "shE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/magazine/dirty, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"shH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) "shL" = ( /turf/closed/wall/almayer, /area/almayer/living/offices) -"shX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/aft_hallway) -"sio" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"shO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"siz" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"shV" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"shZ" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"sig" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"sin" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"siY" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_m_s) +"sip" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/basketball) +"siD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer/redfull, -/area/almayer/engineering/lower/workshop/hangar) +/area/almayer/squads/alpha) +"siP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) +"sjj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Officer's Bunks"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/port_atmos) +"sjl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"sjq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"sjr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"sjt" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/medical) "sjC" = ( /obj/structure/shuttle/part/dropship2/nose_front_left, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"sjH" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/command/cichallway) +"sjD" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"skp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"sku" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) "skx" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/cic) -"skA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"skE" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/perma) +"skF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) "skL" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie) -"slI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"slM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 +"skP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"skR" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"slP" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"skZ" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"slR" = ( -/turf/open/floor/almayer/green, +"slh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"slk" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"sln" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"slu" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northeast, /area/almayer/squads/req) -"smg" = ( -/obj/item/device/flashlight/pen{ +"slC" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ pixel_x = 4; - pixel_y = -6 + pixel_y = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"slJ" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"slN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"slU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) "smh" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/morgue) @@ -48324,16 +48366,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"smB" = ( -/obj/structure/largecrate/random/secure, +"smH" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"smC" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"smI" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) "smJ" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -48344,28 +48389,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"smM" = ( +"smT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"sne" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"smS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"smV" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) "snl" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -48378,40 +48418,55 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"snw" = ( +"snq" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"snD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"snN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"snI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"snR" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"snY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"snX" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"sob" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack{ + amount = 40; + pixel_x = -4; + pixel_y = -4 }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"soa" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/obj/item/stack/sheet/plasteel/small_stack{ + amount = 15 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "som" = ( /obj/structure/sign/safety/security{ pixel_x = -16 @@ -48425,147 +48480,247 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"sox" = ( -/obj/structure/machinery/scoreboard_button{ - id = "basketball"; - name = "Scoreboard Reset Button"; - pixel_x = -20 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"soN" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 +"soC" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"soT" = ( +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"soJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"soM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"soY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"soX" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) -"spe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"spq" = ( +"spa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/command/cichallway) +"spd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"spg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"sps" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"spu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"spx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) "spy" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"spT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"spO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"sqd" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/starboard) -"sqf" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/area/almayer/hallways/lower/vehiclehangar) +"spP" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_m_p) +"spS" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"spW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/starboard_garden) +"spX" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"sqv" = ( -/obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"sqB" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"sqw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/aft_hallway) "sqC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"sqL" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sqM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 +"sqI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"sqV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer{ - pixel_x = 2; - pixel_y = 3 +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"sqP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "srd" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"srh" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"srz" = ( -/obj/structure/barricade/handrail{ +"srg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/unary/freezer{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"srp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"srx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"srD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ dir = 1; - pixel_y = 2 + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"srE" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/hallways/lower/vehiclehangar) +"srH" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"srM" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"srS" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/item/paper_bin/uscm{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = -6 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"srN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"srP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/squads/req) "srT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -48576,120 +48731,155 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"srY" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, +"srV" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/securestorage) +"sse" = ( +/obj/structure/prop/almayer/missile_tube, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"ssg" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = -32 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ssv" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/area/almayer/shipboard/navigation) +"ssN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"ssV" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"stb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Briefing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"ssT" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"stj" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"sty" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"stk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"stl" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/general_equipment) +"stt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_four) +"stx" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"stA" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"stE" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"stG" = ( +/obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/aft_hallway) -"stD" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"stV" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + dir = 8; + id = "starboard_door" }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"stH" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"stZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_midship_hallway) -"stN" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) "sub" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"suh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"suk" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"sue" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"suf" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "sul" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"sum" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, +"sux" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"suD" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"sun" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"suo" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/upper/u_m_s) "suE" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"suJ" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/command/cic) -"suP" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"sva" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"suR" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 14"; + buildstate = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/engineering/lower/engine_core) "svg" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -48697,352 +48887,284 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"svi" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +"svr" = ( +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + pixel_y = -20; + req_access_txt = "5" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"svj" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"svI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"svA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/warden_office) -"svC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_a_s) -"svK" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ +/obj/structure/machinery/status_display{ pixel_x = 32 }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"svR" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "5" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"svU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) +/area/almayer/hallways/lower/port_midship_hallway) +"svL" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"svX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) "svY" = ( /turf/closed/shuttle/dropship2{ icon_state = "69" }, /area/almayer/hallways/hangar) -"swi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/obj/structure/sign/poster{ - desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; - icon_state = "poster14"; - name = "propaganda poster"; - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"swj" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"swC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"swq" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"swD" = ( /obj/item/device/radio/intercom{ freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = -8 + name = "Saferoom Channel"; + pixel_y = -28 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"swA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"swB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"swK" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"swP" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"swV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) +"sxm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/cic) +"sxn" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"swJ" = ( -/obj/structure/toilet{ - dir = 1 +/area/almayer/squads/charlie) +"sxt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) -"swR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"sxb" = ( -/obj/structure/platform_decoration{ - dir = 4 +"sxy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"sxO" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/briefing) +"sxV" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sxc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"sxr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ +/area/almayer/engineering/lower/workshop) +"syb" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"syi" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"syu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"sxx" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"sxB" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/area/almayer/maint/hull/lower/l_m_p) +"szD" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"sxS" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"sxW" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/living/starboard_emb) +"szH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"syy" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" +/area/almayer/maint/hull/upper/u_f_p) +"szI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"syY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/structure/machinery/computer/emails{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"szR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"szl" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/combat, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"szT" = ( +/obj/item/tool/screwdriver, /obj/structure/machinery/light{ dir = 1 }, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"szu" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"szQ" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer/red/northwest, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "sAa" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sAf" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"sAs" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"sAw" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sAy" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +"sAd" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 }, -/obj/structure/phone_base{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"sAz" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"sAi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"sAj" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/orangecorner/east, +/turf/open/floor/almayer/cargo, /area/almayer/command/telecomms) -"sAL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"sAx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sAT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"sBa" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"sBc" = ( -/obj/structure/machinery/light{ +/area/almayer/maint/hull/upper/u_f_s) +"sAA" = ( +/obj/structure/disposalpipe/junction{ dir = 1 }, -/obj/structure/bedsheetbin{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"sAF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"sBd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/phone_base{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"sAM" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/officer_study) +"sAN" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/blend, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"sBl" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_f_s) -"sBp" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) -"sBt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"sBi" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"sBG" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/maint/hull/lower/l_f_p) +"sBv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"sBM" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) -"sBQ" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"sBV" = ( +/area/almayer/living/briefing) +"sBz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"sBC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/co2_knife{ - pixel_x = 8; - pixel_y = 9 - }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"sBX" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sCg" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"sCj" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/shipboard/port_point_defense) +"sBF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"sCk" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "sCl" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -49053,66 +49175,34 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"sCv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sCC" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/living/briefing) -"sCZ" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"sDd" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 +"sCL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"sCR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"sCS" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"sDh" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/pilotbunks) -"sDj" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/hallways/lower/starboard_midship_hallway) +"sCX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/obj/item/device/binoculars, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) "sDq" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/item/ammo_magazine/shotgun, @@ -49135,111 +49225,105 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"sDY" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack{ - amount = 40; - pixel_x = -4; - pixel_y = -4 +"sDF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"sDI" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc04"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = 23 }, -/obj/item/stack/sheet/plasteel/small_stack{ - amount = 15 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"sDK" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"sDN" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"sDO" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"sEe" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"sEh" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/briefing) +"sEp" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"sDZ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"sEc" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"sEg" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"sEj" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/brig/general_equipment) -"sEr" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"sEB" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi"; - name = "\improper Umbillical Airlock" +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"sEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"sEE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"sEF" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) -"sEJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"sEP" = ( +/area/almayer/engineering/upper_engineering) +"sEK" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"sEN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"sEY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"sFq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sFf" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"sFr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) +/area/almayer/living/offices) "sFs" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -49250,126 +49334,108 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"sFP" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"sGj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 +"sFu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"sGt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "containmentlockdown_S"; - name = "\improper Containment Lockdown" +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"sGD" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"sHc" = ( -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sFH" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"sGb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"sGk" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 4; name = "ship-grade camera" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"sHn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"sHp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"sHz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"sHD" = ( +/area/almayer/engineering/upper_engineering) +"sGm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"sHN" = ( -/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/hydroponics) +"sGH" = ( +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"sHS" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/area/almayer/living/captain_mess) +"sGX" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sHq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + id = "crate_room2"; + name = "\improper Storage Shutters" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"sHs" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"sHG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"sHO" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"sHX" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"sIc" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"sHY" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"sIe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/clipboard{ - pixel_x = 12 +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"sIs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"sIx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/area/almayer/command/cic) +"sIG" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"sIy" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) +/area/almayer/shipboard/navigation) "sIH" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -49380,248 +49446,248 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"sJb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"sIJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"sIN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"sJh" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"sIP" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"sJl" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"sJo" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/living/briefing) -"sJp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"sIX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"sJj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"sJq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/area/almayer/command/telecomms) +"sJu" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) "sJv" = ( /obj/structure/sign/poster, /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"sJA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sJB" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + layer = 3.2; + pixel_x = 4; + pixel_y = 17 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; + pixel_y = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/item/reagent_container/food/snacks/grown/orange{ + layer = 3.3; + pixel_x = 1; + pixel_y = 13 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/starboard_emb) "sJF" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/cafeteria_officer) -"sKc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"sKh" = ( -/obj/structure/machinery/door_control{ - id = "ROlobby1"; - name = "RO Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/line_nexter_control{ - id = "line1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "1;21" - }, +"sJJ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"sKk" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"sKp" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_four) -"sKA" = ( +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"sJL" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"sKd" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sKS" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"sKf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"sKX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"sLa" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south2) -"sLc" = ( +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"sKm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"sLy" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/upper/aft_hallway) -"sLA" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sLB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"sKr" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"sLQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"sKt" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"sKz" = ( +/obj/structure/machinery/door_control{ + id = "or04"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sLT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"sKC" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"sMc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"sKQ" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"sMh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"sKX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"sLa" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south2) +"sLd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"sLf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"sMi" = ( -/obj/item/tool/warning_cone, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sMk" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) -"sMv" = ( +"sLk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"sLq" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"sLD" = ( /obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = 1; - pixel_y = -5 - }, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"sMM" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ +/area/almayer/maint/hull/lower/l_f_p) +"sLF" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sMN" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sMQ" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"sLG" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_p) +"sLP" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"sMm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 15 +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"sMo" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" }, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 22 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"sMD" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"sMZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"sMT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/engineering/lower) +"sNh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "sNl" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -49633,12 +49699,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"sNm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "sNs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -49649,47 +49709,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"sND" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"sNu" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"sNJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"sNy" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + access_modified = 1; + name = "\improper Senior Enlisted Advisor's Office"; + req_access = null; + req_access_txt = "19;29" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"sNW" = ( +/obj/structure/machinery/light/small, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"sNT" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"sNX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"sOa" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"sOl" = ( +/area/almayer/maint/hull/upper/u_f_s) +"sOf" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"sOg" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"sOn" = ( /obj/item/bedsheet/purple{ layer = 3.2 }, /obj/item/bedsheet/purple{ pixel_y = 13 }, -/obj/item/clothing/head/beret/centcom/captain{ - color = "#4b5320"; - desc = "Dusty beret bearing the logo of the royal marines. How did this get here?"; - name = "dusty beret"; - pixel_y = -6 - }, /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -49708,28 +49774,53 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer/emerald/southwest, +/turf/open/floor/almayer/emerald, /area/almayer/living/port_emb) -"sOJ" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +"sOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"sOL" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"sOM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sOQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "sOT" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"sPa" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) "sPe" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -49737,47 +49828,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"sPm" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) "sPo" = ( /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"sPs" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"sPC" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"sPJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, +"sPt" = ( +/obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"sPO" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/engineering/upper_engineering) +"sPw" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"sPx" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"sPG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; dir = 1; - icon_state = "pipe-c" + name = "\improper Power Control Room"; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;6" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"sPS" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/area/almayer/shipboard/brig/processing) +"sPK" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"sPL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"sPR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "sPX" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -49789,261 +49886,356 @@ }, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"sQx" = ( +"sQd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"sQg" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"sQj" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"sQB" = ( +/obj/structure/machinery/cm_vending/gear/medic, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"sQE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"sQL" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) +/area/almayer/squads/bravo) +"sQJ" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/chem_simulator{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"sQK" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "sQM" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"sQU" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"sRc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"sQV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"sRv" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/squads/delta) -"sRw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 4; + icon_state = "exposed01-supply" }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" }, -/obj/item/tool/pen, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"sRA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"sSf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/phone_base/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/door/window/westright{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sRk" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_four) -"sSg" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Commanding Officer's Mess" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"sRl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"sRm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"sSk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"sRy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"sSl" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"sSp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Cryogenics Bay" +"sRz" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"sRO" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"sSt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"sSB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_midship_hallway) +"sSz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Brig" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"sSA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"sSO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"sSF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"sSP" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"sSV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/door_control{ - id = "OTStore"; - name = "Shutters"; - pixel_y = -24 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"sTd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Cryogenics Bay" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"sSZ" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"sTc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"sTh" = ( -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_x = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sTz" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor5, /area/almayer/hallways/lower/starboard_midship_hallway) -"sTt" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"sTC" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" +"sTB" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"sTS" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend/north, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"sTQ" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"sTX" = ( +/area/almayer/command/telecomms) +"sTT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"sUC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"sUH" = ( -/turf/closed/wall/almayer, -/area/almayer/living/numbertwobunks) -"sUI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"sUk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"sUS" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/light, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"sVc" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sUn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/brig/general_equipment) -"sVo" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"sWb" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, +/obj/structure/prop/almayer/hangar_stencil, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"sWm" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 +/area/almayer/hallways/hangar) +"sUq" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sUt" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"sUv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"sUF" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, /turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"sUH" = ( +/turf/closed/wall/almayer, /area/almayer/living/numbertwobunks) -"sWw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"sUP" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/landinglight/ds2{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"sUW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"sVd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"sVf" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"sWB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sWC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +"sVh" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/item/pizzabox/mushroom{ - pixel_y = 11 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"sVi" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/hull/lower/l_m_s) +"sVt" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/living/grunt_rnr) +"sVG" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"sWd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/item/poster, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"sWk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"sWm" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"sWp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"sWq" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"sWD" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "sWM" = ( /obj/item/bedsheet/orange, /obj/structure/bed{ @@ -50057,280 +50249,319 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"sWR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"sWU" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"sWW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) "sXe" = ( /obj/docking_port/stationary/emergency_response/external/hangar_port{ dwidth = 8 }, /turf/open/space, /area/space) -"sXt" = ( +"sXj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sXn" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"sXy" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/aft_hallway) -"sXv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"sXA" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "sXF" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"sXI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"sXO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"sXJ" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"sXL" = ( -/obj/item/reagent_container/food/snacks/grown/poppy{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"sXN" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/hangar) "sXP" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"sYm" = ( -/obj/structure/bed/chair{ +"sXR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"sXT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sYa" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"sYk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) "sYn" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/living/briefing) -"sYs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 16; - req_access_txt = "3" - }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) "sYw" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"sYA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"sYB" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"sYN" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +"sYI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"sYU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sYJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"sZb" = ( -/obj/structure/cargo_container/wy/mid, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"sYO" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"sZc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"sZg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 42 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/squads/charlie) "sZi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"sZm" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"sZo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"sZG" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sZw" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"sZO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"sZQ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"sZZ" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"taa" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"tag" = ( -/turf/open/floor/almayer_hull/outerhull_dir/north, -/area/space) -"tao" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"tax" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/almayer/living/port_emb) +"sZH" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"taI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"taR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"sZJ" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/shipboard/brig/cic_hallway) +"sZK" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"sZT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/paper_bin/uscm{ - pixel_x = -6; - pixel_y = 7 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/offices) +"sZY" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/tool/pen{ - pixel_x = -6 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"tav" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"taT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"taw" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"tba" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"tbl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door" +/area/almayer/maint/hull/upper/u_a_p) +"tbz" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"tbR" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) -"tbF" = ( -/obj/structure/bed/chair{ - dir = 4 +"tbX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"tbN" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"tbY" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_a_p) +"tbZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "tcb" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -50338,110 +50569,93 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"tck" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"tcm" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"tcl" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) "tcn" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/telecomms) -"tcs" = ( +"tco" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_y = 1 + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"tcu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tcv" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"tcC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) "tcJ" = ( /obj/structure/supply_drop/bravo, /turf/open/floor/plating, /area/almayer/squads/req) -"tcP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"tcY" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 +"tcK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) -"tdd" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"tcU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sink{ + pixel_y = 16 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"tde" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/carrotseed, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/mirror{ + pixel_y = 21 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/shipboard/brig/cells) -"tdo" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"tdr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Computer Lab"; - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"tcW" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"tdu" = ( -/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) -"tdw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"tdC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"tdE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"tdF" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/clothing/glasses/mgoggles, +/obj/item/clothing/glasses/mgoggles, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "tdI" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -50450,16 +50664,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"tdK" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"tdO" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) "tdP" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -50469,57 +50673,57 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"tdR" = ( -/obj/structure/machinery/light{ +"ted" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"tdW" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"ten" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"teg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cic) +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"tek" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop) "teo" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"tet" = ( -/obj/structure/machinery/door_control{ - id = "OTStore"; - name = "Shutters"; - pixel_y = 24 +"teq" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"teR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"teV" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) -"teY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +"teS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"teU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) "tfc" = ( /obj/structure/machinery/light{ dir = 8 @@ -50534,34 +50738,47 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/medical_science) -"tfp" = ( -/obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"tfu" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/engineering/upper_engineering/starboard) -"tfD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tfr" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) +"tfx" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"tfC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"tfF" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"tfG" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/living/offices) "tfJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -50571,109 +50788,113 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"tfX" = ( +"tfO" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tfY" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/aft_hallway) -"tfZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"tgh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"tgi" = ( -/obj/structure/largecrate/random/case/double, +/area/almayer/maint/hull/lower) +"tgk" = ( +/obj/structure/platform, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tgj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/maint/hull/upper/u_a_p) +"tgp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 17 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4 + }, +/obj/structure/machinery/computer/card{ dir = 4; - icon_state = "pipe-c" + pixel_y = -16 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"tgu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/shipboard/brig/warden_office) "tgy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tgD" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; +"tgL" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"tgE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/computerlab) -"tgF" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"tgG" = ( +/area/almayer/engineering/upper_engineering/starboard) +"tgW" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/clothing/head/hardhat{ + pixel_y = 15 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"tgK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"tgO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "tgX" = ( /obj/structure/bed/chair/wood/normal, /obj/item/bedsheet/brown, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"thf" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 +"thd" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"thk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"thj" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"thp" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "thq" = ( /obj/structure/sign/safety/cryo{ pixel_x = -6; @@ -50681,25 +50902,39 @@ }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"tht" = ( +"thu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"thJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) "thQ" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"tim" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"tiy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"thW" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/briefing) +"tib" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"tif" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/living/briefing) "tiE" = ( /obj/item/stack/catwalk, /obj/structure/machinery/status_display{ @@ -50707,480 +50942,330 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"tiO" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/appleseed, +"tiH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"tiW" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"tjk" = ( +/obj/structure/bed/chair/dropship/pilot{ dir = 1 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/shipboard/brig/cells) -"tiU" = ( -/obj/structure/machinery/light{ +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"tjo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"tjN" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"tjS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ dir = 1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"tkb" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"tkc" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"tiZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"tke" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 10; + pixel_y = 15 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 3 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 6 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 9 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/warden_office) +"tkf" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"tjm" = ( -/turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"tjn" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"tjt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"tkj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"tjw" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cic) +"tld" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"tlg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "ship-grade camera" + name = "\improper Starboard Viewing Room" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"tjx" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"tjA" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"tlL" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"tjU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating, +/area/almayer/command/cic) +"tmo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "north_central_checkpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/obj/structure/sign/safety/biolab{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tjY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17; + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"tko" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"tks" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"tmx" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue Processing"; + req_access_txt = "25"; + req_one_access = null }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"tkA" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"tkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/water{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"tmL" = ( +/obj/structure/sign/safety/ladder{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"tkZ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) -"tle" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"tlf" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/lifeboat) -"tlp" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"tlt" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"tlw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tlB" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"tlF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/prop/magazine/boots/n055{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/offices/flight) -"tlK" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"tlL" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/command/cic) -"tmh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"tmn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"tmo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/obj/structure/sign/safety/biolab{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"tmq" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tmu" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) -"tmD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical{ +"tna" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"tmE" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"tnd" = ( +/obj/structure/shuttle/part/dropship2/transparent/upper_right_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"tnr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"tmF" = ( -/obj/structure/largecrate/random/barrel/blue, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) -"tmM" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 20 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"tmO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"tmY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) -"tnb" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"tnc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"tob" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"tnd" = ( -/obj/structure/shuttle/part/dropship2/transparent/upper_right_wing, -/turf/open/floor/plating, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"tnq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"toi" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"tok" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) -"tnz" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"tnF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"top" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_corner, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) -"tnN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"tnP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"tot" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"tow" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/two{ - id = "port_door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"toC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"toz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper XO's Quarters"; + req_access = null; + req_access_txt = "1" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"toJ" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_lobby) +/area/almayer/living/numbertwobunks) +"toB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "toK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"toO" = ( -/obj/structure/largecrate/random/case/double, +"toS" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/bombcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"toX" = ( +/area/almayer/engineering/lower/workshop/hangar) +"tpl" = ( /obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) -"tpy" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 +"tpw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"tpD" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Memorial Room" +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"tpG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"tqb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/red/northwest, /area/almayer/living/starboard_garden) -"tpQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/structure/sign/catclock{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"tpW" = ( -/obj/structure/machinery/power/apc/power/east, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +"tqc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "tqd" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"tqw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"tqx" = ( +"tqy" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tqB" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/port) +"tqE" = ( +/obj/structure/machinery/power/apc/power/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"tqG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"tqK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"tqI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) "tqN" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -51190,15 +51275,6 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"tqO" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "tqP" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8; @@ -51206,169 +51282,232 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tqQ" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -18 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"trd" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/he, -/obj/item/mortar_shell/he, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"trl" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"tro" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"trG" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"trI" = ( -/obj/structure/machinery/light/small{ +"tqV" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tqY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, +/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"trN" = ( +/area/almayer/living/bridgebunks) +"tra" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"trO" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"trZ" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"tsg" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"tsu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"tsz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/hallways/lower/port_midship_hallway) +"trr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tsA" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/hallways/lower/port_umbilical) +"trt" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"trx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"tsP" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/living/briefing) -"tsW" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"try" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/sign/safety/chem_lab{ + pixel_x = -17 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"tta" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/chemistry) +"trz" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"trA" = ( +/obj/structure/disposalpipe/junction{ dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"trD" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"trJ" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"trM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"tto" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 8 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"ttz" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"trR" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "SW-out"; + layer = 2.5 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "NW-out" }, /turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/aft_hallway) -"ttI" = ( -/obj/structure/stairs{ - dir = 4 +"trV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tse" = ( +/obj/structure/disposalpipe/up/almayer{ + id = "almayerlink_OT_req" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"ttR" = ( -/obj/structure/sign/safety/refridgeration{ +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tsg" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"tsj" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"tud" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"tus" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tuB" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"tsv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"tsx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tsJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ttf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tts" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"ttA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"ttD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ttJ" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ttM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"ttS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"tuc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"tun" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"tuq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"tuD" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "tuE" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -51379,6 +51518,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"tuG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) "tuH" = ( /obj/structure/sink{ dir = 1; @@ -51398,174 +51543,113 @@ /obj/item/tool/soap/syndie, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"tuT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"tuW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"tuX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"tve" = ( -/obj/structure/bed/chair/comfy{ +"tuU" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"tvl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"tvg" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) +"tvq" = ( +/obj/structure/window/framed/almayer, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/squads/charlie) "tvs" = ( /obj/structure/machinery/cm_vending/gear/commanding_officer, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"tvD" = ( -/obj/structure/machinery/computer/dropship_weapons/dropship2, -/obj/structure/phone_base/rotary{ - name = "Normandy Telephone"; - phone_category = "Dropship"; - phone_id = "Normandy"; - pixel_x = 11; - pixel_y = 16 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"tvI" = ( +"tvx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "W" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"tvP" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"tvQ" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/light{ +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"tvy" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"tvA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"twb" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"tvB" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"tvE" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"twa" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"twe" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) -"twi" = ( -/obj/vehicle/powerloader, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) "twj" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"twp" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"twt" = ( -/obj/structure/closet/secure_closet/staff_officer/gear, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"twx" = ( -/obj/structure/machinery/cm_vending/clothing/leader/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"twz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 +"twr" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/obj/item/device/binoculars, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "twK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"twO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 +"twQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"twP" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"twR" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) +/area/almayer/maint/hull/lower/l_m_s) "twV" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"txf" = ( +"txk" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"txL" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"txM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/sterile_green, -/area/almayer/shipboard/brig/medical) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"txp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "txN" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -51582,136 +51666,146 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"tyu" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 8 +"tyb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/computer/emails{ + dir = 4 }, /turf/open/floor/almayer/silver/southwest, -/area/almayer/living/briefing) -"tyG" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - name = "Corporate Liaison's Closet" +/area/almayer/shipboard/brig/cic_hallway) +"tyf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/lower/port_midship_hallway) +"tyn" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/ce_room) +"tys" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"tyt" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"tyE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tyK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "tyM" = ( /obj/structure/shuttle/part/dropship2/transparent/upper_left_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"tyP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"tyY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"tzg" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"tzk" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"tzs" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +"tyN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"tzD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/hydroponics) -"tzW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"tzu" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"tAb" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"tzw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"tzH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/head/ushanka{ - layer = 3.3 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/window/reinforced{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"tzJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"tzM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"tzN" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tAc" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_x = -2; - pixel_y = 4 + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" }, -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"tAk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"tAf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"tAm" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"tAp" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"tAu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"tAw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tAM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/offices) +"tAy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"tAL" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "tAO" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -51719,266 +51813,298 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"tAR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) -"tAY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"tBo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/squad_changer{ - pixel_x = -9 - }, -/obj/structure/machinery/computer/card{ - pixel_x = 9 +"tBk" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tBq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Execution Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"tBm" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"tBp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"tBw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Rest and Relaxation Area" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution) +/area/almayer/living/grunt_rnr) +"tBG" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "tBJ" = ( /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) -"tCh" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"tCn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ +"tBN" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tBO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"tBQ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"tCo" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"tCz" = ( +/obj/structure/stairs{ dir = 8; - id = "cmp_armory"; - name = "\improper Armory Shutters" + icon_state = "ramptop" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Armory" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"tCs" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"tCD" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"tCK" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"tCH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"tCY" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/port_missiles) +"tDd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"tDt" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"tDz" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/starboard_emb) +"tDC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"tCU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"tDD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"tDg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"tDr" = ( -/obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"tDB" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"tDT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"tDM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/upper_engineering) -"tEA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"tDX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"tEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"tEk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/storage/box/masks{ + pixel_x = 5 + }, +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 + }, +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"tEl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"tEF" = ( -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"tEO" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"tEZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"tFm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tFx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cic) -"tFG" = ( +"tEm" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"tFL" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tFU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/command/cic) +"tEu" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"tED" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/workshop) +"tEN" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tFX" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/maint/hull/upper/u_a_s) +"tEO" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"tFZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/lifeboat_pumps/south1) +"tES" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"tGf" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"tEV" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/vehicle/powerloader{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"tGj" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 4"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/hallways/lower/vehiclehangar) +"tEW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell/cl) -"tGk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"tGl" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tEZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"tFu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"tGs" = ( -/obj/item/ammo_casing/bullet, +"tFv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"tFA" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"tGB" = ( +/area/almayer/maint/hull/lower/l_m_s) +"tFJ" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"tFX" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"tGC" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"tGF" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tGK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"tGy" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tGM" = ( -/turf/closed/wall/almayer/white/outer_tile, -/area/almayer/maint/hull/upper) -"tGP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"tGH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"tGI" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/hallways/lower/port_midship_hallway) +"tGR" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"tGY" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"tGU" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"tHf" = ( +/obj/structure/phone_base{ + name = "Brig Offices Telephone"; + phone_category = "Almayer"; + phone_id = "Brig Main Offices"; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"tHb" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"tHu" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "tHD" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -51989,214 +52115,142 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"tHF" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"tHG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ - dir = 1 +"tHI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"tHH" = ( -/obj/structure/bed/chair{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tHN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ dir = 8 }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Dropship Remote Control Console"; + shuttleId = "dropship_normandy"; + disabled = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tHR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, /area/almayer/command/cic) -"tIp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"tIv" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"tIM" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"tJp" = ( -/obj/structure/machinery/light{ +"tHQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tIu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tJr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"tIP" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"tJw" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"tJC" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"tIT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"tJe" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"tJH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tJD" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/maint/hull/lower/l_m_s) -"tJN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tJI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/engineering/starboard_atmos) +"tJQ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "tJW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"tKk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"tKq" = ( -/obj/structure/disposalpipe/segment{ +"tJX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"tKG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"tKm" = ( +/obj/structure/closet{ + name = "backpack storage" }, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/mortarpack, +/obj/item/storage/backpack/marine/mortarpack, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"tKH" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "tKJ" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/chief_mp_office) +"tKQ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "tKS" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/north2) -"tLm" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"tLp" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"tLr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"tLw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/chief_mp_office) -"tLz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ +"tKX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"tLA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"tLL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"tLu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) "tLN" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17 }, /turf/closed/wall/almayer, /area/almayer/command/securestorage) +"tLQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "tLZ" = ( /obj/structure/machinery/light{ dir = 1 @@ -52204,219 +52258,126 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"tMb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"tMe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 +"tML" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"tMf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"tMA" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"tMS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"tMG" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi_ext"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"tMI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"tNi" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ +/obj/structure/bed/chair{ dir = 8; - health = 80 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"tNn" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"tNv" = ( -/obj/structure/machinery/door_control{ - id = "agentshuttle"; - indestructible = 1; - name = "Shutters"; - pixel_y = 25; - req_one_access_txt = "201"; - use_power = 0 + pixel_y = 3 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"tNz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"tMT" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"tNk" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"tNp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/greenfull, +/area/almayer/shipboard/brig/cells) "tNG" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"tNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tNP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"tNI" = ( -/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"tOh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, +/area/almayer/living/starboard_garden) +"tNU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"tNW" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"tOi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"tOq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"tOw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/red/west, +/turf/open/floor/almayer/redcorner/east, /area/almayer/shipboard/brig/perma) -"tOB" = ( +"tOu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"tOD" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"tON" = ( -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"tOS" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"tPa" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/aft_hallway) -"tPw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"tPx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +"tOy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"tPA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tPZ" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, +/area/almayer/living/briefing) +"tOG" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_a_s) +"tOM" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/brown, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"tOQ" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tPo" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/cameras/dropship/two, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"tPs" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"tQb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "tQg" = ( /obj/structure/machinery/brig_cell/cell_4{ pixel_x = -32; @@ -52424,92 +52385,115 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"tQp" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) +"tQj" = ( +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17; + pixel_y = -7 + }, +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"tQn" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"tQr" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tQv" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"tQD" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) "tQF" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"tQK" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"tQY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tRb" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"tRc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"tRh" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 1"; - locked = 1; - name = "\improper Containment Cell 1" +"tQO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 1"; - name = "\improper Containment Cell 1"; - unacidable = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"tRu" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-2"; - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"tRC" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"tQS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tQZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/shipboard/brig/cells) +"tRl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"tRG" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"tRt" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/light, /turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"tRK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/lower/l_a_p) +"tRw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"tRR" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/cic) +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"tRH" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) "tRS" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -52519,66 +52503,73 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"tRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) "tRY" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"tSa" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"tSf" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) "tSh" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) -"tSj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"tSp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tSs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"tSJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/aft_hallway) +"tSR" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"tSw" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"tSD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"tSI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"tSO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "NE-out"; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"tSS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower) "tSX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -52597,258 +52588,149 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"tTd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/autoopenclose{ +"tTf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/structure/sign/safety/rewire{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"tTe" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"tTm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"tTn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"tTM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"tTR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"tTp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"tTq" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"tTB" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/securestorage) -"tTN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tTO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 1 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"tTP" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) +"tUu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"tTT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 }, -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"tUD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_y = 13 + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"tUH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"tUO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - pixel_x = 12; - pixel_y = 13 + id = "Secretroom"; + indestructible = 1; + unacidable = 1 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"tUX" = ( +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tTW" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tUh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"tVg" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"tVl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"tUo" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/upper/u_f_p) -"tUp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower) +"tVr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tUx" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tVs" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"tUC" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"tUH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"tUP" = ( -/obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"tUU" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"tVf" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tVu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"tVt" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"tVB" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/area/almayer/medical/medical_science) "tVC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"tVG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"tVP" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"tVW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"tWf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"tWr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 10; - pixel_y = 15 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/warden_office) -"tWv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 +"tVL" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_one) -"tWw" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"tVS" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"tVY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"tWB" = ( -/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"tWC" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"tWI" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"tWO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/hallways/lower/starboard_midship_hallway) +"tWo" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"tWR" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"tWy" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/almayer/green/northeast, /area/almayer/living/offices) -"tWV" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +"tWA" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) "tXg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52856,30 +52738,64 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"tXC" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +"tXh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"tXm" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"tXq" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"tXu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"tXH" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"tXv" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tXS" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"tXE" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/cic) +"tXG" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"tXM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) "tXV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -52894,44 +52810,71 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"tXX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"tYf" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tYg" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tYn" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tYq" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"tYs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"tYK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"tYL" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"tYw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/living/briefing) +"tYM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tYP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"tYX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"tZd" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"tZn" = ( -/obj/structure/bed/chair, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) +"tZl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) "tZq" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -52943,29 +52886,26 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"tZu" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/living/starboard_garden) -"tZD" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"tZJ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +"tZz" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"tZR" = ( -/obj/structure/machinery/door/airlock/almayer/security{ +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tZG" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" + name = "\improper Evacuation Airlock PU-5"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) +/area/almayer/powered) +"tZO" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "uac" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -52976,181 +52916,140 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"ual" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 +"uam" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"uaC" = ( -/obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"uaJ" = ( -/turf/open/floor/almayer/orangecorner/west, +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"uan" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"uar" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) +"uaQ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"uaU" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"uaZ" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rewire{ + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "ubi" = ( /obj/structure/lattice, /turf/open/space/basic, /area/space) -"ubm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ubw" = ( -/turf/open/floor/almayer/blue/northeast, +"ubo" = ( +/obj/structure/girder/displaced, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ubu" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) -"ubx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"ubK" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"ubS" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"ubD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" +/area/almayer/living/pilotbunks) +"ucb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"ucd" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"ubG" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/warden_office) -"ubM" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ucm" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/aft_hallway) -"ucp" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"uct" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"ucG" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"ucP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"udc" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"udj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"uci" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, +/obj/structure/machinery/optable, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"udn" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"ucx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/orange/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"ucA" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"ucK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"ucS" = ( +/turf/closed/wall/almayer/outer, /area/almayer/engineering/lower) -"udr" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) -"uds" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"ucV" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"udG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/living/offices) -"udP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"udQ" = ( -/obj/item/stack/tile/carpet{ - amount = 20 +/area/almayer/maint/hull/lower/l_m_p) +"udk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uem" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"ueq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_s) -"uet" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"uey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/lower/repair_bay) -"ueD" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/warden_office) -"ueE" = ( -/obj/structure/machinery/prop/almayer/orbital_cannon_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"ueF" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_p) +"ueb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 }, /turf/open/floor/almayer, -/area/almayer/engineering/lower) +/area/almayer/hallways/lower/port_midship_hallway) "ueH" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/cameras/wooden_tv/almayer{ @@ -53158,15 +53057,10 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"ueM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/aft_hallway) +"ueN" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) "ueP" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 2; @@ -53183,12 +53077,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"ueQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"ueU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) "ueX" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -53208,15 +53102,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"ufc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) "ufd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -53228,66 +53113,65 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) -"ufe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"ufj" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"ufl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"ufo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) "ufr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"ufI" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ufT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"ufY" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer4" +"ufA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"ufB" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"ugd" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"ufC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"ufH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 4 }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"ugg" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"ugh" = ( +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"ugf" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/engineering/lower/engine_core) "ugm" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"ugr" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "ugs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -53308,30 +53192,19 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"ugA" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/glasses/disco_fever{ +"ugu" = ( +/obj/structure/sign/safety/chem_lab{ pixel_x = 5; - pixel_y = 4 + pixel_y = 29 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ugx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) "ugE" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -53341,6 +53214,35 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"ugM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"ugP" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"uhd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"uhe" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"uhk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "uhu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -53355,45 +53257,40 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"uhL" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"uhN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"uhA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"uhV" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"uhQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/maint/hull/upper/u_f_s) +"uhX" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"uih" = ( +/obj/structure/sign/safety/north{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/lobby) -"uhZ" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"uis" = ( /obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" + name = "\improper Bathroom" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "uiA" = ( /obj/structure/platform{ layer = 3.1 @@ -53414,124 +53311,114 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"uiC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3" +"uiB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"uiG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"uiI" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"uiM" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"uiU" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"uiO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"uji" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"uiQ" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"ujr" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"ujs" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"uju" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/tool/plantspray/weeds, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 1"; + name = "\improper Courtyard Divider" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"ujA" = ( +/obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) "ujD" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"ujM" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +"ujP" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "ujR" = ( /turf/closed/wall/biodome, /area/almayer/powered/agent) -"ujV" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"ukj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ujS" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "ukr" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell) -"ukC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Nitrogen Control Console" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"uli" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ +"ukt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"ukR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"ulf" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) "ull" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cichallway) -"ult" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"ulv" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"ulJ" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) "ulP" = ( /obj/structure/disposalpipe/down/almayer{ dir = 8; @@ -53539,66 +53426,55 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"umk" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 +"umv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/shipboard/brig/medical) -"umm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"umo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"umz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"umE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"umP" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/starboard_missiles) +"umQ" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "29" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/area/almayer/hallways/hangar) +"umT" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Commanding Officer's Mess" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"umq" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/storage/photo_album{ - pixel_x = -6; - pixel_y = -17 - }, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"umH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"umQ" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "29" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) "umW" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -53612,69 +53488,128 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"umY" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"unj" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"unk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) +"unc" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"und" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 1"; + buildstate = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"unm" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) "unq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"unt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"unu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "unv" = ( /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) -"unC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"unA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc01"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "unE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cic) -"unT" = ( -/obj/structure/machinery/line_nexter/med{ +"unS" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"unX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"uog" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uob" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"uod" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"uof" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) "uoi" = ( /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"uor" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uoB" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +"uok" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uov" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"uoG" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/living/grunt_rnr) +"uoH" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) "uoJ" = ( /obj/structure/safe, /obj/item/moneybag, @@ -53687,21 +53622,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"uoO" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"uoP" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"uoT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_m_p) "uoV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/generic/press{ @@ -53710,171 +53630,151 @@ }, /turf/open/floor/almayer, /area/almayer/command/combat_correspondent) +"uoY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"upc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"upe" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cl_shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) "upf" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/lobby) -"upi" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +"ups" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"upt" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"upC" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"upF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/disposal/delivery{ +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"upP" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_engi"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"upH" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"upO" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"upQ" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 + pixel_x = -11; + pixel_y = -1 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"uqs" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"upX" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"uqc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"uqg" = ( -/obj/structure/machinery/alarm/almayer{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"uqi" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uqj" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"uqn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/living/offices/flight) -"uqB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"uqy" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"uqD" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"uqG" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"uqP" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"uqR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/item/storage/box/pillbottles{ + pixel_x = 6; + pixel_y = 7 }, -/obj/structure/machinery/photocopier, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/pillbottles, /turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/area/almayer/medical/hydroponics) +"uqQ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) "uqW" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uqZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair{ - dir = 4 +"uqY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) -"ure" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"ura" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 13"; + buildstate = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Armory" +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"urh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"urk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"urp" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/engineering/lower/engine_core) +"uri" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "ury" = ( /turf/closed/wall/almayer, /area/almayer/command/telecomms) -"urF" = ( -/obj/structure/machinery/door_control{ - id = "kitchen2"; - name = "Main Kitchen Shutters"; - pixel_x = -28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"urN" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"urA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"urV" = ( -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"urL" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"urM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"urW" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "urY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -53900,193 +53800,337 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"usM" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"usW" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"usZ" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/upper/aft_hallway) -"utl" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"uts" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 +"usb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"usd" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"utF" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 3 +/area/almayer/maint/hull/upper/u_f_p) +"usi" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/machinery/door_control{ - id = "cl_shutters"; - name = "Privacy Shutters"; - pixel_x = -5; - pixel_y = 6; - req_access_txt = "200" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"usl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ - id = "RoomDivider"; - name = "Room Divider"; - pixel_x = -5; - pixel_y = -3; - req_access_txt = "200" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"utJ" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 + id = "north_central_checkpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"utM" = ( +/area/almayer/living/briefing) +"usy" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"usF" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/general_equipment) +"usG" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"usH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "8" }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"uuf" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "78" +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/area/almayer/hallways/hangar) -"uuj" = ( /turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"uuo" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"uut" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"uuw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/medical/lockerroom) +"ute" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/maint/hull/upper/u_f_p) -"uuy" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"utf" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uuH" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"uto" = ( +/obj/structure/closet/crate/internals, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"utt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"uuT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"utw" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"uvg" = ( +/area/almayer/maint/hull/lower/l_f_s) +"uua" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"uuf" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "78" }, -/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"uvk" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/radio/headset, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"uvv" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"uvw" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"uvP" = ( +"uui" = ( /obj/structure/sign/safety/escapepod{ + pixel_x = 8; pixel_y = -32 }, -/obj/structure/sign/safety/south{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"uun" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"uup" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"uux" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"uuy" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uva" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"uvi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"uvm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"uvs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"uvz" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"uvO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "uvT" = ( /obj/docking_port/stationary/emergency_response/external/hangar_starboard{ dwidth = 8 }, /turf/open/space, /area/space) -"uwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"uwf" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"uwm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"uww" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"uwx" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"uwA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"uwC" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"uwU" = ( +/area/almayer/living/bridgebunks) +"uwG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"uwP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"uwS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uwT" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"uxa" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"uxb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"uxc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) "uxe" = ( /turf/closed/wall/almayer, /area/almayer/living/briefing) -"uxw" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"uxp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"uxV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"uxt" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"uxu" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"uxE" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"uye" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/book/manual/surgery{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uxO" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; pixel_y = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uxW" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"uyd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"uyk" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) +/area/almayer/hallways/hangar) +"uyf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"uyi" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "uyr" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -54097,39 +54141,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"uyu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"uyv" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"uyC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uyy" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"uyD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"uyJ" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"uyK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) +/area/almayer/hallways/hangar) +"uyB" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) "uyN" = ( /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) @@ -54143,113 +54173,174 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"uzC" = ( -/obj/structure/window/framed/almayer, +"uyY" = ( /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"uzE" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/chemistry) -"uzN" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/area/almayer/maint/hull/upper/u_a_s) +"uzc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"uzh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/almayer/no_build, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"uzi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) -"uzX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +"uzn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"uzZ" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"uAg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"uzr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"uzO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"uAa" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"uAh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "uAk" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"uAt" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"uAB" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"uAG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"uAR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"uAn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uAw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/briefing) +"uAA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"uAI" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"uAJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"uAS" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/shipboard/brig/medical) "uAT" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/perma) +"uAZ" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"uBe" = ( +/turf/closed/wall/almayer/white/outer_tile, +/area/almayer/maint/hull/upper) "uBf" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"uBv" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) -"uBQ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"uBX" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"uCd" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"uBg" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"uBh" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"uBI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"uBJ" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"uBU" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uCa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) "uCf" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -54257,29 +54348,61 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"uCp" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) "uCu" = ( /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) -"uCx" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"uCz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"uCv" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"uCC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"uCF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"uCM" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"uCN" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"uCP" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"uCW" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) "uCY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ @@ -54287,74 +54410,117 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uDg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"uDx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"uDP" = ( -/obj/item/device/radio/intercom/normandy{ - layer = 3.5; - pixel_x = 10 - }, -/turf/closed/shuttle/dropship2{ - icon_state = "54" - }, -/area/almayer/hallways/hangar) -"uDV" = ( -/obj/structure/machinery/camera/autoname/almayer{ +"uDn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "ship-grade camera" + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"uDp" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"uEd" = ( +/area/almayer/squads/alpha_bravo_shared) +"uDr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"uDv" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"uDI" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/green/northwest, /area/almayer/hallways/lower/starboard_midship_hallway) -"uEs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"uDO" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"uDP" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = 10 + }, +/turf/closed/shuttle/dropship2{ + icon_state = "54" + }, +/area/almayer/hallways/hangar) +"uEa" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"uEg" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"uEn" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/maint/hull/upper/u_f_p) "uEt" = ( /obj/structure/sign/safety/hvac_old, /turf/closed/wall/almayer, /area/almayer/squads/req) +"uEz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"uEA" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uEC" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "uEG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"uEK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"uEO" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc04"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 23 +"uEM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/starboard_emb) "uER" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -54367,28 +54533,33 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/armory) +"uEV" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) "uEW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"uEY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) +"uFc" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "uFd" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) +"uFe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"uFf" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "uFh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -54399,15 +54570,23 @@ /obj/structure/machinery/computer/tech_control, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"uFp" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"uFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"uFq" = ( +/obj/structure/machinery/door/window/westleft{ + dir = 2 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower/engine_core) +/obj/structure/machinery/shower, +/obj/item/tool/soap, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"uFz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"uFE" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) "uFF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -54417,122 +54596,160 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) -"uFH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 8 +"uFJ" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"uFK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_four) "uFM" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) -"uFQ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"uFW" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/evidence_storage) -"uFX" = ( -/turf/closed/wall/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uGs" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/upper/u_f_p) -"uGd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"uGu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"uGl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/phone_base/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"uGC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"uGr" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) -"uHd" = ( -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"uGF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"uHe" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"uHi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"uHg" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/briefing) -"uHr" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"uHj" = ( +/obj/structure/machinery/door_control{ + id = "perma_exit"; + name = "\improper Exit Shutters"; + pixel_y = -22; + req_access_txt = "3" + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/perma) +"uHn" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"uHy" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"uHA" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"uHK" = ( +/turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_f_s) -"uHS" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) +"uHR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "uHW" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"uIs" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"uIy" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"uIF" = ( -/obj/structure/largecrate/random/barrel/yellow, +"uIf" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"uII" = ( -/obj/structure/pipes/vents/pump{ +/area/almayer/maint/hull/lower/l_f_p) +"uIk" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"uIB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, +/obj/structure/bed/stool, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"uIP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) "uIQ" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"uJb" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"uJn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) +"uJe" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "uJs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -54542,32 +54759,66 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) +"uJD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"uJG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"uJR" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = -16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"uJV" = ( +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"uJY" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) "uJZ" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/chief_mp_office) -"uKq" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 +"uKd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/bed/chair/office/dark{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"uKe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"uKv" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"uKx" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "Perma 1L"; + name = "\improper cell shutter" }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Isolation Cell" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) "uKG" = ( /obj/structure/bed/chair{ buckling_y = 6; @@ -54576,35 +54827,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"uKL" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/tool/pen, -/obj/structure/machinery/door/firedoor/border_only/almayer, +"uKH" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/chief_mp_office) +"uKI" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"uKN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_f_p) +"uKU" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 3"; + locked = 1; + name = "\improper Containment Cell 3"; + unacidable = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"uKQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 3"; + name = "\improper Containment Cell 3" }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/area/almayer/medical/containment/cell) "uKV" = ( /obj/structure/toilet{ dir = 1 @@ -54619,9 +54879,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"uKX" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/starboard_umbilical) +"uKW" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) "uKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -54632,14 +54899,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"uLd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) "uLh" = ( /obj/structure/shuttle/part/dropship2/transparent/middle_left_wing, /turf/open/floor/plating, @@ -54651,52 +54910,29 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"uLo" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"uLp" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"uLs" = ( -/obj/item/clothing/under/shorts/black, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"uLt" = ( -/obj/structure/machinery/cm_vending/clothing/military_police_warden, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"uLI" = ( -/turf/open/floor/almayer/plate, +"uLA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"uLT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"uMc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"uMg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 5 +"uLL" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"uLM" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"uLO" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"uMh" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) "uMj" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -54706,53 +54942,99 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"uMk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "uMm" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north2) -"uMq" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"uMA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "7;19" +"uMy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"uMZ" = ( +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"uMF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"uMG" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/aft_hallway) -"uNa" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) -"uNg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"uNk" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/starboard_emb) +"uMJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/engineering/upper_engineering/starboard) +"uMO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"uMT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "uNl" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/plating/plating_catwalk, @@ -54762,64 +55044,79 @@ /obj/effect/spawner/random/tool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"uNF" = ( +"uNB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uNC" = ( +/obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/offices/flight) "uNH" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"uNZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"uOn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"uOq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"uOu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"uNI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/ce_room) +"uNK" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"uOz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/lower/starboard_midship_hallway) +"uNL" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"uOg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"uOh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) +"uOi" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "uOB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"uOC" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"uOJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +"uOW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "uOX" = ( /obj/structure/machinery/cm_vending/clothing/tl/bravo{ density = 0; @@ -54827,127 +55124,168 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"uPb" = ( -/obj/structure/largecrate/random/barrel/green, +"uPf" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/storage/box/cups, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uPd" = ( +/area/almayer/maint/hull/lower/l_f_s) +"uPq" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/starboard_garden) +"uPs" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, +/obj/item/reagent_container/food/snacks/bloodsoup{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"uPg" = ( +/area/almayer/command/cichallway) +"uPt" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uPx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"uPv" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"uPI" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"uPJ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_f_p) +"uPA" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) "uPL" = ( /obj/structure/toilet{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"uPN" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"uPQ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +"uQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"uQo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/red, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_p) "uQq" = ( /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uQv" = ( -/obj/item/device/radio/intercom/normandy{ - layer = 3.5; - pixel_x = 21; - pixel_y = 43 +"uQD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"uQG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"uQJ" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uQH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"uQR" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - dir = 8; - name = "\improper Containment Airlock" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uQT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uQX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"uRd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) "uRe" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/chapel) -"uRB" = ( -/obj/structure/bed, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"uRQ" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"uRZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +"uRg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"uRq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"uSy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) -"uSA" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "Perma 1L"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Isolation Cell" +"uRx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) +/area/almayer/living/commandbunks) +"uSf" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"uSm" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"uSz" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/living/cryo_cells) "uSF" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 @@ -54957,232 +55295,267 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"uSL" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 17 +"uSH" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"uSR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"uST" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "uSV" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uTl" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"uTc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"uTi" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"uTo" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/reagent_scanner{ + pixel_x = -8; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/obj/item/clipboard{ + pixel_x = 8 + }, +/obj/item/paper{ + pixel_x = 8 + }, +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"uTs" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) "uTu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"uTG" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/clipboard, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"uTK" = ( -/obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) +"uTw" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_y_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"uTH" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"uTO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"uTS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Liasion's Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) "uTT" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"uTV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower/engine_core) -"uTW" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"uUk" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"uTZ" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/briefing) +"uUa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/window/reinforced/ultra{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/window/reinforced/ultra{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"uUf" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/briefing) -"uUq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"uUs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"uUy" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"uUE" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 +/area/almayer/living/bridgebunks) +"uUh" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uUr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"uUW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"uUt" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"uUx" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"uUZ" = ( -/obj/structure/machinery/photocopier, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"uVj" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"uUC" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uUS" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"uVg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"uVi" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"uVj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"uVm" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or3privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 +"uVB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"uVo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 5 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uVE" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"uVZ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"uVW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = list(2,34,30) }, -/obj/structure/machinery/optable, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"uWh" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"uWi" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"uWo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uWw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"uWj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc02"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = 23 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"uWz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"uWp" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/aft_hallway) -"uWC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/aft_hallway) -"uWG" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "uWJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uWY" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"uWL" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uXb" = ( -/turf/open/floor/almayer/cargo_arrow/west, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) +"uWU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "uXk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -55190,133 +55563,66 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"uXq" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) -"uXv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"uXz" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uXB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +"uXr" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"uXu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; + icon_state = "HotlineAlt"; + layer = 2.9; + name = "Richard the tiger" }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"uXx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "uXJ" = ( /obj/structure/supply_drop/echo, /turf/open/floor/almayer, /area/almayer/squads/req) -"uXN" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +"uXO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "uXY" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"uXZ" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/offices/flight) -"uYp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"uYs" = ( -/obj/structure/ladder{ - height = 1; - id = "med2" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32; - pixel_y = -8 +"uYj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"uYw" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "uYz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"uYF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"uYI" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) "uYP" = ( /turf/closed/shuttle/dropship2{ icon_state = "68" }, /area/almayer/hallways/hangar) -"uYR" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/aluminum{ - amount = 20 - }, -/obj/item/stack/sheet/copper{ - amount = 20; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/silver{ - amount = 5; - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +"uYS" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) "uYU" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7 @@ -55326,156 +55632,217 @@ "uYX" = ( /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"uZh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"uYZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"uZa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"uZb" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"uZi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"uZu" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"uZv" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/sign/safety/storage{ + pixel_x = -24 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"uZy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"uZs" = ( +/area/almayer/living/port_emb) +"uZG" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 1 }, -/turf/open/floor/almayer/red/southwest, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Nitrogen Control Console" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"uZM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"uZP" = ( +/turf/open/floor/almayer/red/southeast, /area/almayer/living/starboard_garden) +"uZT" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "uZZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"vaq" = ( -/obj/structure/bed/chair/comfy{ +"vae" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"vah" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"vat" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"vai" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"vav" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"vaE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 10 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/kitchen/knife, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"vaO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"vaZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"vaR" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"vbg" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"vbs" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"vbz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"vbH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"vbI" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"vbZ" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"vbS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/upper/u_a_s) -"vbV" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"vcd" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"vcm" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "vcr" = ( /obj/structure/lattice, /turf/open/space, /area/space) -"vcy" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" +"vcI" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"vcS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"vcJ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"vcN" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"vcV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"vcW" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "vdc" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray, @@ -55497,95 +55864,83 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"vdi" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/frame/light_fixture, -/obj/item/frame/light_fixture, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) "vdj" = ( /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"vdk" = ( -/obj/structure/machinery/brig_cell/cell_1{ - pixel_x = 32; - pixel_y = -32 +"vdq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"vdr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"vdA" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"vdI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/lower/port_midship_hallway) -"vdD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 5 +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"veb" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"vee" = ( +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"vel" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 14 }, -/obj/item/tool/pen/red/clicky{ - pixel_x = 1; - pixel_y = 2 +/obj/item/device/flash{ + pixel_y = -8 }, +/obj/structure/machinery/faxmachine/uscm/brig, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vdZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/power/apc/power/west, -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/reinforced{ - amount = 50 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/shipboard/brig/processing) -"ved" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/shipboard/brig/warden_office) +"vep" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"ver" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/southleft{ + desc = "A window, that is also a door. A windoor if you will. This one is stronger."; + health = 500; + name = "Reinforced Glass door"; + req_one_access_txt = "2;35" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"vee" = ( /turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"veq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/area/almayer/engineering/lower/workshop/hangar) +"vet" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"veu" = ( -/obj/structure/closet/firecloset, +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) -"vez" = ( -/obj/structure/sign/safety/reception{ +"veY" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"vfe" = ( +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"veL" = ( -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"veX" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "vfg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55601,140 +55956,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"vfh" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cl_shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"vfk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"vfs" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"vfv" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"vfy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"vfH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"vfV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"vfW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"vfl" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"vfY" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/starboard_emb) -"vge" = ( -/obj/structure/machinery/door_control{ +/obj/structure/bed/chair/vehicle{ dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_y = 29; - req_access_txt = "28" + pixel_x = -8 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"vgi" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cic) -"vgm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"vfD" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"vfO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"vgo" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"vgG" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"vgx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"vgC" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vgD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"vgE" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"vgJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vgK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "vgO" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -55744,10 +56001,6 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"vgR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) "vgS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ @@ -55764,108 +56017,53 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"vhb" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red, -/area/almayer/maint/hull/upper/u_a_p) -"vhn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"vhq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vhs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"vhu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"vhy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" +"vhj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"vhl" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"vhJ" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"via" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) "vib" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood/gibs, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"vif" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"vix" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower) +"viL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"viu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"viz" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"viK" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"viM" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"viR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/engineering/lower/engine_core) +"viP" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer/redfull, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"viX" = ( +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/upper/aft_hallway) "vjg" = ( /obj/effect/decal/warning_stripes{ @@ -55873,84 +56071,23 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) -"vjh" = ( -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) -"vji" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"vjq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"vjx" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"vjG" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/vehiclehangar) -"vjI" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"vjT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"vjZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) +"vjo" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/weapon/gun/rifle/m41aMK1/ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "vkd" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"vke" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Chief MP's Bedroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"vko" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +"vkj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "vkw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55963,16 +56100,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"vkA" = ( +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vkE" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"vkJ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vkK" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"vkM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"vlb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) "vlc" = ( /obj/structure/pipes/unary/outlet_injector, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"vlf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) "vll" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -55983,78 +56144,53 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vln" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"vly" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) -"vlp" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"vlr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"vls" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"vlu" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"vlB" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/safety/fridge{ - pixel_x = 32 - }, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"vlG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"vmd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, +"vlD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vlJ" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/starboard_missiles) +"vlL" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vmi" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/command/lifeboat) -"vmm" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/engineering/upper_engineering/starboard) +"vlV" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"vmf" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) "vmn" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"vmr" = ( -/obj/structure/platform_decoration{ - dir = 8 +"vmp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"vmz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/rack, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "vmK" = ( /obj/structure/supply_drop/alpha, /obj/structure/machinery/light{ @@ -56062,54 +56198,47 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"vmN" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +"vmL" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vmS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"vmX" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"vmV" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "vnb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"vng" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"vnp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/waterhazard{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"vnk" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"vnm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vno" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"vnu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 32 }, -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/living/briefing) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vnx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) "vnE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56119,221 +56248,189 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"vnL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"vnM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"vnI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"vnR" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"vnU" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"vnW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/plating/almayer/no_build, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"vol" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"vnX" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +"vom" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"vnY" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vop" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"voc" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"voG" = ( +/obj/structure/toilet{ dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"voq" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"vph" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer{ + density = 0; + pixel_y = 16 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"vpz" = ( +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) -"vor" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"voC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Officer's Bunks"; - req_access = null + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/port_atmos) -"voZ" = ( +/area/almayer/command/telecomms) +"vpC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"vpo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/area/almayer/hallways/lower/starboard_midship_hallway) +"vpO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D3"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, -/obj/structure/mirror{ - pixel_x = -28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"vpR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"vpp" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"vpy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"vpV" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"vpL" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"vpM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"vqe" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"vpX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"vqr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vqb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"vqJ" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"vqK" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"vqh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"vqu" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"vrp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/lower/l_f_p) +"vra" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"vrx" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"vry" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"vrA" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"vrb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"vrr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"vrO" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"vrP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_2"; - name = "\improper Bathroom" +/area/almayer/hallways/hangar) +"vsj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_emb) -"vrQ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/maint/hull/lower/l_f_s) +"vsu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"vrW" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"vsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"vsF" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"vsT" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"vsw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) "vsU" = ( /obj/structure/disposalpipe/down/almayer{ dir = 4; @@ -56341,55 +56438,90 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"vsX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"vta" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +"vth" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"vti" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 }, -/obj/structure/catwalk{ - health = null +/obj/item/clothing/glasses/welding{ + pixel_y = 6 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"vtg" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vtm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/helmet/marine/pilot, /turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/area/almayer/command/cic) "vto" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"vtJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vtv" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"vtF" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop) +"vtL" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/chemistry) +"vtT" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/aluminum{ + amount = 20 + }, +/obj/item/stack/sheet/copper{ + amount = 20; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"vtS" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vtX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_display/research_cell{ + dir = 1; + id = "Containment Cell 5"; + name = "Cell 5 Control"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 5"; + name = "Containment Lockdown"; + pixel_x = -8; + pixel_y = -3; + req_one_access_txt = "19;28" + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "vuh" = ( /obj/structure/cargo_container/lockmart/mid{ layer = 3.1; @@ -56397,22 +56529,34 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"vus" = ( +"vun" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"vuw" = ( -/obj/structure/catwalk{ - health = null +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"vuu" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"vuy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/pilotbunks) +"vuz" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "vuE" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -56432,21 +56576,24 @@ }, /turf/open/floor/plating, /area/almayer/squads/bravo) -"vuU" = ( -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"vvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"vuQ" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"vvp" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"vvr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/blue, -/area/almayer/living/basketball) -"vvm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/reagent_container/food/snacks/cheesewedge{ + pixel_x = -10; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) +/mob/living/simple_animal/mouse/white/Doc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "vvv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) @@ -56456,19 +56603,20 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"vvS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 +"vvE" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"vvN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "vvT" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -56476,56 +56624,14 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"vvU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"vvX" = ( +/obj/structure/machinery/prop/almayer/computer{ dir = 4; - icon_state = "exposed01-supply" - }, -/obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 - }, -/obj/structure/machinery/door/window/westright{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vvV" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = 7 + pixel_x = -17 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) "vvY" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -56536,9 +56642,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"vwf" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) +"vwk" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "vwm" = ( /obj/structure/machinery/shower{ dir = 1 @@ -56553,27 +56660,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"vwr" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"vwv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -32 +"vwt" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/vehiclehangar) +"vwz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"vwy" = ( -/obj/structure/machinery/cm_vending/clothing/engi/delta, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/maint/hull/upper/u_f_p) +"vwH" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) "vwJ" = ( /obj/structure/machinery/light{ dir = 1 @@ -56596,145 +56700,119 @@ }, /turf/open/space, /area/space) -"vxd" = ( -/obj/structure/machinery/door_control{ - id = "tcomms_apc"; - name = "Telecommuncation Power"; - pixel_x = -25 +"vxg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vxk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"vxj" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/engineering/upper_engineering/starboard) +"vxD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/hangar) -"vxH" = ( -/obj/structure/bed/chair/comfy/charlie{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"vxK" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"vxL" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) "vxP" = ( /obj/effect/landmark/supply_elevator, /turf/open/floor/almayer/empty, /area/supply/station) -"vxX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"vyh" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"vyl" = ( +"vyD" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced/ultra{ - dir = 1 +/obj/structure/machinery/microwave{ + pixel_y = 5 }, -/obj/structure/window/reinforced/ultra{ - dir = 4 +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 19 }, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/briefing) -"vyn" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 16 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"vyx" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vyV" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vzc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"vzd" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vyJ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vyQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"vzh" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 4"; + buildstate = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"vyU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_1"; - name = "\improper Bathroom" +/area/almayer/engineering/lower/engine_core) +"vzi" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/lifeboat) +"vzw" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"vzH" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vzM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_emb) -"vyY" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"vyZ" = ( -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"vza" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"vzm" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"vzQ" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 }, /turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"vzK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/living/synthcloset) "vzU" = ( /obj/structure/surface/table/almayer, /obj/item/storage/bible{ @@ -56743,58 +56821,33 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"vzV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 +"vzX" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 }, -/obj/item/device/flash, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"vAk" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"vAf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/basketball) -"vAo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) "vAz" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vAB" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"vAL" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"vAV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +"vAA" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "vBb" = ( /obj/structure/surface/table/almayer, /obj/item/stack/rods{ @@ -56803,55 +56856,65 @@ /obj/item/device/lightreplacer, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"vBf" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) "vBi" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"vBm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"vBk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"vBy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"vBr" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"vBF" = ( -/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"vBz" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vBQ" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"vBR" = ( -/obj/structure/platform{ +/area/almayer/maint/hull/lower/l_f_s) +"vBC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vBO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) -"vCc" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"vCd" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/vehiclehangar) +"vBT" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"vCa" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"vCf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "vCg" = ( /obj/structure/platform{ dir = 4; @@ -56863,16 +56926,15 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vCi" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +"vCk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, +/obj/item/clipboard, +/obj/item/paper, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/shipboard/weapon_room) "vCl" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Evacuation Airlock PL-3"; @@ -56880,48 +56942,36 @@ }, /turf/open/floor/plating, /area/almayer/powered) -"vCp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vCy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"vCn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vCU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/command/combat_correspondent) +"vCo" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vCz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"vCK" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/silver/west, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/aft_hallway) -"vCW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +"vCO" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "vCX" = ( /obj/structure/sink{ dir = 4; @@ -56940,24 +56990,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"vDa" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/cryo_cells) -"vDt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Research Armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"vDc" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"vDd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"vDi" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/evidence_storage) +"vDk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) +/area/almayer/engineering/upper_engineering) +"vDq" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) "vDu" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -56967,6 +57025,31 @@ }, /turf/open/floor/almayer/research/containment/corner3, /area/almayer/medical/containment/cell) +"vDv" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"vDI" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"vDX" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"vDZ" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "vEa" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/heavyduty{ @@ -56974,6 +57057,25 @@ }, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/south1) +"vEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_y = 24; + req_access_txt = "3" + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) "vEf" = ( /obj/structure/machinery/cm_vending/clothing/vehicle_crew{ density = 0; @@ -56981,116 +57083,104 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"vEg" = ( +"vEn" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"vER" = ( +/obj/item/stack/tile/carpet{ + amount = 12 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"vEo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"vEF" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer/red/southwest, -/area/almayer/maint/hull/upper/u_a_p) -"vEG" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"vEH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"vFi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"vFk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"vEJ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vFm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"vFp" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/port) +"vFv" = ( /obj/structure/machinery/light{ dir = 8 }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vFC" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"vGs" = ( /obj/structure/stairs/perspective{ - icon_state = "p_stair_full" + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"vEM" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/aft_hallway) -"vEP" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vGx" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"vGB" = ( /obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/pilotbunks) -"vES" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"vGD" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + pixel_y = 13 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"vEY" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"vFp" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/port) -"vFx" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"vGI" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/shipboard/weapon_room) +"vGO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"vFy" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"vFF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"vFO" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"vFT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"vFW" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"vGn" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/hallways/lower/port_midship_hallway) "vGQ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -57098,123 +57188,95 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"vGS" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/weapon_room) -"vHa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/obj/structure/machinery/door_control{ - id = "medicalemergency"; - name = "Medbay Lockdown"; - pixel_y = -23; - req_one_access_txt = "2;3;12;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"vHd" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"vHh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/ce_room) -"vHi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"vGU" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"vHz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"vHC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"vHn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"vHo" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"vHw" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/squads/bravo) "vHF" = ( /obj/structure/machinery/keycard_auth{ pixel_y = 25 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"vIo" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"vIq" = ( -/obj/structure/machinery/light{ - dir = 1 +"vHP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vIC" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, +/area/almayer/maint/hull/lower/l_a_p) +"vHU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vHX" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"vIa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"vIu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"vIQ" = ( +/obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"vJa" = ( -/obj/structure/closet/emcloset, +/area/almayer/shipboard/starboard_point_defense) +"vIS" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"vIX" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"vJg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"vJv" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/spacecash/c500{ - pixel_x = 4; - pixel_y = 8 +/area/almayer/maint/hull/lower/l_f_p) +"vJi" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/ashtray/bronze{ - pixel_x = -13; - pixel_y = -4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vJs" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) "vJy" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -57222,110 +57284,75 @@ }, /turf/open/floor/plating, /area/almayer/living/chapel) -"vJz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cichallway) "vJP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"vKe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"vKm" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/medical) "vKv" = ( /turf/closed/shuttle/dropship2{ icon_state = "19" }, /area/almayer/hallways/hangar) -"vKD" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"vKG" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +"vKx" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/warden_office) "vKK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"vKM" = ( -/obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"vKR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"vKY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"vKP" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/turf/open/floor/almayer/orange, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vKU" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) -"vLc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +"vKZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) -"vLp" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"vLu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"vLv" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/morgue) "vLw" = ( /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"vLA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) +"vLz" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "vLD" = ( /obj/structure/machinery/light{ dir = 8 @@ -57342,72 +57369,116 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"vLH" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"vLI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"vLS" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +"vLQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"vLU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper XO's Quarters"; - req_access = null; - req_access_txt = "1" +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) -"vLX" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) "vMc" = ( /obj/structure/shuttle/part/dropship2/lower_left_wall, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"vNb" = ( -/obj/item/stack/sheet/metal, +"vMk" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"vMl" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/briefing) +"vMm" = ( +/obj/structure/machinery/door_control{ + id = "crate_room2"; + name = "storage shutters"; + pixel_y = 26 + }, +/obj/structure/machinery/recharge_station{ + desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; + name = "Working Joe charging station" + }, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 36 + }, +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"vMt" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) +"vMN" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"vMQ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"vMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vMU" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/execution) +"vMV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_s) "vNg" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"vNE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"vNh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) -"vNF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"vNm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"vNy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"vNL" = ( +/obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"vNK" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) "vNW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/sign/prop3{ @@ -57428,21 +57499,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"vOd" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"vOp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"vOr" = ( +"vOb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/ce_room) +"vOn" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vOr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, @@ -57463,28 +57534,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"vOs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"vOw" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"vOG" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"vOO" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"vOQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, /turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"vPc" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/area/almayer/maint/hull/lower/l_f_s) +"vOK" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/squads/bravo) +"vOS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) "vPj" = ( /obj/structure/machinery/crema_switch{ pixel_x = -24; @@ -57492,62 +57574,34 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"vPl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"vPJ" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vPL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"vPo" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 20 }, /turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"vPR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +/area/almayer/command/corporateliaison) +"vPB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"vPG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vPS" = ( +/turf/open/floor/almayer/greencorner, /area/almayer/living/grunt_rnr) -"vPX" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"vQf" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/manipulator/nano{ - pixel_y = -9 - }, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = 4; - pixel_y = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +"vQc" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"vQd" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) "vQq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -57557,388 +57611,383 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"vQu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"vQy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vQJ" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"vQA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"vQP" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"vQC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"vQQ" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"vQM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; pixel_y = 16 }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/phone_base/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"vQR" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vQT" = ( +/obj/structure/surface/rack, +/obj/structure/sign/safety/rewire{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"vQU" = ( -/obj/structure/platform{ - dir = 8 + pixel_y = 32 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/effect/spawner/random/facepaint, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"vRa" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"vQW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/mirror{ + pixel_x = 29 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/turf/open/floor/almayer/sterile, +/area/almayer/living/captain_mess) +"vRb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"vQX" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/hangar) -"vQY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"vQZ" = ( -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"vRi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/chief_mp_office) -"vRk" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"vRH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"vRX" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vRf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"vSt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"vRg" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/janitorialcart, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vRs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"vSy" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"vSF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"vRD" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vRM" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"vSJ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"vSP" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_one) -"vSR" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vTe" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vTi" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/area/almayer/maint/hull/lower/l_m_s) +"vRT" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vTz" = ( +/area/almayer/squads/charlie_delta_shared) +"vSk" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"vTA" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"vTH" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"vTL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"vTS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"vTW" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"vUe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"vUr" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/pilotbunks) -"vUy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"vUB" = ( -/obj/structure/pipes/valve/digital/open{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"vSm" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"vSr" = ( +/obj/structure/closet/secure_closet/staff_officer/gear, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"vUJ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"vSP" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_one) +"vSV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"vSX" = ( +/obj/structure/bed/chair/office/dark, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"vUK" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/living/briefing) +"vTq" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/sign/safety/terminal{ + pixel_x = -6; + pixel_y = -26 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -26 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"vUM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"vVb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ +/obj/structure/sign/safety/hazard{ + pixel_x = 20; + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"vTB" = ( +/obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"vVh" = ( -/obj/structure/surface/rack, -/obj/item/storage/beer_pack, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"vVm" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"vTM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"vVy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"vTT" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"vVU" = ( -/obj/structure/machinery/cryopod/right, /turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"vVX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"vWa" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"vWe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/shipboard/brig/cryo) +"vUg" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vUk" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"vWg" = ( -/obj/vehicle/powerloader, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"vUl" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/shipboard/weapon_room) -"vWi" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +/obj/item/paper, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/cigarette/cigar/classic, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"vUt" = ( /obj/structure/window/reinforced{ dir = 4; - health = 80 + pixel_x = -2; + pixel_y = 4 }, /obj/structure/window/reinforced{ dir = 8; - health = 80 + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"vWj" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/cargo_arrow/north, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"vUN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) -"vWr" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/delta, +"vVC" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/upper/aft_hallway) +"vVN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"vVP" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/sign/safety/twilight_zone_terminator{ + pixel_x = 8; + pixel_y = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"vVV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vWf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, /area/almayer/squads/delta) -"vWx" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) +"vWi" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"vWA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "vWB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"vWF" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "vWG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"vWK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"vWU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"vWL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vWV" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vWW" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" + }, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) "vWX" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper{ @@ -57952,58 +58001,73 @@ /obj/structure/shuttle/part/dropship2/transparent/nose_top_left, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"vXl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vXg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/upper/aft_hallway) -"vXG" = ( -/obj/item/tank/phoron, -/turf/open/floor/almayer/redfull, +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"vXi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"vXH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"vXk" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/shipboard/starboard_point_defense) +"vXs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vXu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"vXw" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/briefing) +"vXx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D1"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) "vXK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"vXR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"vXM" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"vXU" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"vXN" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"vXW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/centrifuge{ + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "vYb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -58011,187 +58075,149 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"vYc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"vYl" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"vYv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) -"vYx" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"vYD" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"vYI" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + dir = 8; + pixel_x = 16 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vYB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"vYZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"vYO" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"vZg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) "vZi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vZj" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +"vZo" = ( +/obj/structure/sink{ + pixel_y = 32 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"vZs" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) "vZw" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/lockerroom) -"vZQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"vZV" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"vZD" = ( +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_x = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vZW" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"vZX" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/aft_hallway) -"vZY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"vZE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"wal" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"vZL" = ( /obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"wam" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wat" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"waE" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/aft_hallway) -"waF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"vZM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "Brig"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"waL" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"vZS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"vZT" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/maint/hull/upper/u_a_s) +"vZY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"waO" = ( -/obj/structure/machinery/cm_vending/gear/tl{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"waj" = ( +/obj/structure/machinery/vending/cigarette{ density = 0; - pixel_x = -32; - vend_x_offset = 1 + pixel_y = 16 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"wax" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"waV" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wbm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"waz" = ( /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) +/area/almayer/engineering/lower/engine_core) +"waG" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"waY" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "wbB" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"wbD" = ( +/obj/structure/bed, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) "wbM" = ( /turf/open/floor/almayer, /area/almayer/command/cichallway) @@ -58202,122 +58228,118 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"wbQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"wbP" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wbV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"wbS" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_midship_hallway) -"wbZ" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"wbT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"wcn" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/crap, -/obj/item/tool/crowbar, -/obj/structure/machinery/cell_charger, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"wco" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/living/briefing) +"wbX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wce" = ( +/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wcq" = ( -/obj/structure/ladder{ - height = 1; - id = "engineeringladder" +/area/almayer/living/captain_mess) +"wcj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/workshop) -"wcC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"wcE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 - }, +/area/almayer/engineering/lower/engine_core) +"wcz" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"wcA" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"wcM" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) +/area/almayer/engineering/upper_engineering) "wcQ" = ( /obj/structure/sign/prop1, /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"wda" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment{ - dir = 4 +"wcU" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"wdl" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 17"; - buildstate = 1 - }, -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"wdo" = ( /obj/structure/machinery/door_control{ id = "cl_shutters"; name = "Privacy Shutters"; - pixel_y = -20; + pixel_x = -5; + pixel_y = 6; req_access_txt = "200" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/machinery/door_control{ + id = "RoomDivider"; + name = "Room Divider"; + pixel_x = -5; + pixel_y = -3; + req_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"wcY" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"wdc" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wdr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "wdF" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) -"wdR" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +"wdL" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"wdO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) "wdT" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -58326,113 +58348,94 @@ }, /turf/closed/wall/almayer, /area/almayer/living/starboard_garden) -"wdU" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/cic) -"wek" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"wem" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 5; - pixel_y = -2 +"wdZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"wer" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/structure/sign/safety/life_support{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"weE" = ( +/area/almayer/engineering/lower) +"wef" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"wen" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"weJ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"weK" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"weS" = ( -/obj/structure/machinery/vending/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"weU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/shipboard/starboard_missiles) +"wex" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"weL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) -"weY" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"weP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"wfm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"wfP" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"wfS" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"weZ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"wfZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"wfb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"wfM" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"wfX" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) "wgb" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = -16 @@ -58444,189 +58447,237 @@ /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"wgf" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southwest, -/area/space) -"wgy" = ( -/obj/structure/platform{ +"wgj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"wgq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wgI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"wgJ" = ( -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/space) -"wgN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/disposalpipe/junction, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/storage/box/handcuffs, /turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"wgz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc03"; + name = "\improper Treatment Center" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"wgE" = ( +/turf/open/floor/almayer/uscm/directional/southeast, /area/almayer/living/briefing) -"wgS" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 +"wgM" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"wgU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"wha" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"whf" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"whq" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"whD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/effect/spawner/random/balaclavas, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"whj" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +"whJ" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_two) -"whp" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"whT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"whU" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"wia" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"wii" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) +"wij" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"wir" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"wiG" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"wiN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"wiR" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"wjc" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "pipe-c" + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"whw" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"wji" = ( /turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"whz" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) -"whH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +"wju" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"whL" = ( +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wjx" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = -6 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"wjC" = ( /obj/structure/machinery/power/apc/power/south, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, /turf/open/floor/almayer/blue/east, /area/almayer/squads/delta) -"whY" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"wik" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"wjn" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"wjM" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"wjN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering/starboard) -"wjW" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/lower/repair_bay) -"wka" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/device/reagent_scanner, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"wkb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) "wkc" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "34" }, /area/almayer/hallways/hangar) -"wke" = ( -/obj/structure/largecrate/random/barrel/blue, +"wkg" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_a_p) "wkj" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"wkk" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"wky" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_2"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 +"wkv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"wkz" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, /turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"wkR" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/maint/hull/lower/l_a_p) +"wkC" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"wkE" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Chief MP's Bedroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"wkN" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"wkP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) "wkT" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -58636,50 +58687,78 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"wkY" = ( -/obj/structure/machinery/light{ - dir = 1 +"wkV" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wkX" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/upper/aft_hallway) +"wld" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"wlf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) "wlg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"wlx" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +"wlh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"wlj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"wlz" = ( -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"wlT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wmc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar/red, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = 4 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"wln" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/lower/l_m_s) +"wlL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"wlP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"wmf" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "wmg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -58687,149 +58766,145 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"wmn" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"wmo" = ( -/obj/structure/pipes/vents/scrubber{ +"wmy" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/medical/containment/cell/cl) +"wmB" = ( +/obj/structure/machinery/light/containment{ dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"wmq" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"wmw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"wmI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"wmx" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering/port) -"wmM" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/warden_office) -"wmP" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"wmO" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"wmX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal5, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 12 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"wmY" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"wnh" = ( -/obj/effect/step_trigger/clone_cleaner, +/area/almayer/maint/hull/upper/u_m_s) +"wnj" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"wnn" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"wnC" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"wnF" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/living/briefing) -"wnP" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"wnU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 + dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/aft_hallway) -"wnW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"wnl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"wnq" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wnX" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "woc" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"woe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"woh" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"woj" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" +/area/almayer/squads/delta) +"woq" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"woB" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + pixel_y = 24 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"woA" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"woD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"woH" = ( -/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/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/ammunition{ +/obj/structure/surface/rack{ + density = 0; + pixel_x = 16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"woM" = ( +/obj/structure/machinery/telecomms/receiver/preset_left, +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"woV" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"woX" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_p) +"wpd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wpg" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "wph" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -58837,185 +58912,228 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"wpp" = ( -/obj/effect/decal/cleanable/cobweb, +"wpl" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"wpq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/storage/bible, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wpw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"wpz" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"wpF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wpI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +/area/almayer/shipboard/port_point_defense) +"wpn" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/starboard_missiles) +"wpv" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"wpK" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/living/starboard_garden) "wpT" = ( /turf/closed/shuttle/dropship2{ icon_state = "42" }, /area/almayer/hallways/hangar) -"wqb" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"wql" = ( +"wqc" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"wqo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"wqE" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/shipboard/brig/cic_hallway) -"wqO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"wqv" = ( +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/aft_hallway) -"wqQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"wqT" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"wqW" = ( -/obj/structure/largecrate/random/case/small, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"wqy" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"wrf" = ( -/obj/structure/bed/chair, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"wri" = ( -/obj/structure/platform{ - dir = 8 +/area/almayer/maint/hull/lower/l_f_s) +"wqZ" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wra" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"wrd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/kitchen/knife, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "wrq" = ( /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"wrr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/ce_room) -"wrt" = ( +"wrv" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"wrw" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/clothing/mask/cigarette{ - pixel_y = 8 +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 4; - pixel_y = 11 +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 20 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"wrx" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) "wry" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"wrz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"wrO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"wrR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"wrU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"wrT" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"wrV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"wsk" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/living/grunt_rnr) -"wsw" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"wsU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"wsY" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/down/almayer{ - dir = 1; - id = "almayerlink" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"wsd" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"wsg" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wsh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/aft_hallway) -"wtc" = ( +"wsm" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wtk" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/lower/l_a_s) +"wsn" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"wst" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"wsv" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_top_right, +/area/almayer/hallways/hangar) +"wsD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"wsF" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"wsK" = ( +/obj/structure/machinery/door_control{ + id = "OTStore"; + name = "Shutters"; + pixel_y = 24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"wth" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"wtj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) "wto" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -59027,133 +59145,106 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"wtx" = ( +"wtp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"wtC" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"wtV" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wtW" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/upper/aft_hallway) -"wtB" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"wtU" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"wui" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/west, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +/area/almayer/engineering/upper_engineering) +"wtZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"wul" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"wuk" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/aft_hallway) -"wun" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"wuv" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"wuK" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_f_s) -"wuQ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"wuT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"wvg" = ( +/obj/structure/curtain/medical, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"wuX" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/area/almayer/medical/morgue) +"wvr" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"wvy" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"wvA" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"wvN" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"wuY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"wvY" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"wve" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wwf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"wvf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"wvi" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"wvF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_midship_hallway) -"wvR" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/almayer/orangecorner, -/area/almayer/shipboard/brig/evidence_storage) -"wvV" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/command/cic) +/area/almayer/shipboard/brig/cryo) "wwg" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -59164,17 +59255,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wwj" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"wwt" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/maint/hull/upper/u_m_p) -"wwm" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/squads/delta) +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) "wwu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -59183,65 +59270,62 @@ }, /turf/open/floor/plating, /area/almayer/living/offices/flight) -"wwy" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"wwD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"wwH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) -"wwR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +"wwC" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"wwF" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"wwM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, /obj/structure/sign/safety/terminal{ - pixel_x = -17 + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"wwY" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"wxg" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - anchored = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"wxC" = ( +/area/almayer/engineering/upper_engineering) +"wwP" = ( /obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/obj/item/pizzabox/mushroom{ + pixel_y = 11 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ +/obj/item/poster, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"wxc" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wxh" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - pixel_x = -17 + id = "panicroomback"; + name = "\improper Safe Room Shutters" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"wxo" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"wxT" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) "wxV" = ( /obj/structure/closet/medical_wall{ pixel_x = 30 @@ -59252,13 +59336,13 @@ /obj/item/reagent_container/food/drinks/cans/souto/diet/peach, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wya" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +"wxW" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/aft_hallway) +"wyd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "wyf" = ( /obj/structure/sign/safety/rewire{ pixel_y = -32 @@ -59272,446 +59356,408 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"wys" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"wyr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"wyx" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"wyz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"wyI" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"wza" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ +/area/almayer/maint/hull/lower/l_f_p) +"wyy" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/perma) -"wzh" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"wzj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 4"; - locked = 1; - name = "\improper Containment Cell 4" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell/cl) -"wzn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"wyR" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"wze" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/workshop) +"wzu" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"wzx" = ( -/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/helmet/marine/tech/tanker, /obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) "wzy" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"wzB" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +"wzC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "wzD" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "89" }, /area/almayer/hallways/hangar) -"wzQ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +"wzF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"wzY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"wzL" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wzN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"wAf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"wAi" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"wAl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"wAn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"wAu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"wAy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"wAC" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 3"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"wAJ" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/maint/hull/upper/u_a_p) +"wAL" = ( +/obj/structure/machinery/iv_drip, /turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/containment) -"wAr" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/port_missiles) -"wBb" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, +"wAP" = ( +/turf/open/floor/almayer/silver/northeast, /area/almayer/hallways/upper/aft_hallway) -"wBd" = ( -/obj/structure/machinery/light{ - dir = 4 +"wAT" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 }, -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"wBg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"wBj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"wBn" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 + }, +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "wBo" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wBz" = ( -/obj/structure/machinery/light{ - dir = 1 +"wBs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wBJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"wBK" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/red/west, +/area/almayer/living/offices/flight) +"wBM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"wBS" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wBY" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"wBZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/hangar) +"wBU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wCa" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) -"wCc" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 8 +"wCg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"wCq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"wCv" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/lifeboat) +"wCz" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"wCD" = ( +/obj/structure/bed/chair{ + dir = 8; pixel_y = 3 }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"wCK" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"wCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/storage/firstaid/adv, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"wCu" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"wCy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"wCE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"wCH" = ( -/obj/structure/toilet{ - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"wCP" = ( -/obj/structure/phone_base/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"wCS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/almayer/engineering/upper_engineering) +"wCY" = ( +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"wDe" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"wDB" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/maint/hull/lower/l_a_p) -"wDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/hull/lower/l_m_s) +"wDs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wDz" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/obj/structure/sign/safety/ref_chem_storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/aft_hallway) -"wDJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"wDR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"wDU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wEb" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) -"wDV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_p) -"wEc" = ( -/obj/structure/machinery/light/small{ +"wEk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"wEd" = ( -/obj/structure/closet/secure_closet/guncabinet, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"wEe" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wEf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"wEq" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"wEi" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/tool/pen/clicky{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 5 + name = "ship-grade camera" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"wEx" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"wEB" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"wEF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"wEu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "37" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"wEK" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"wEH" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"wEM" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"wEN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_two) -"wFb" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/hull/upper/u_a_s) +"wEI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"wFj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_one) +"wER" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"wFm" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = 4; - pixel_y = 12 +/area/almayer/hallways/upper/aft_hallway) +"wFi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"wFo" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/chair/comfy{ dir = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"wFL" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc01"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = -23 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"wFN" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wFU" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"wFO" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"wGs" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"wFV" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/upper/aft_hallway) -"wGl" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wGt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/lower/l_f_p) +"wGv" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "wGz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -59719,23 +59765,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"wGI" = ( +"wGC" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"wGD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"wGJ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"wGQ" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"wGO" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop) +"wHa" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"wHd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"wHh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_midship_hallway) -"wGT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) "wHi" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -59745,98 +59816,81 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"wHp" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +"wHl" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "wHs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"wHQ" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/liaison_suit/formal, -/obj/item/clothing/under/liaison_suit, -/obj/item/clothing/under/liaison_suit/outing, -/obj/item/clothing/under/liaison_suit/suspenders, -/obj/item/clothing/under/blackskirt{ - desc = "A stylish skirt, in a business-black and red colour scheme."; - name = "liaison's skirt" - }, -/obj/item/clothing/under/suit_jacket/charcoal{ - desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; - name = "liaison's black suit" - }, -/obj/item/clothing/under/suit_jacket/navy{ - desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; - name = "liaison's navy suit" - }, -/obj/item/clothing/under/suit_jacket/trainee, -/obj/item/clothing/under/liaison_suit/charcoal, -/obj/item/clothing/under/liaison_suit/outing/red, -/obj/item/clothing/under/liaison_suit/blazer, -/obj/item/clothing/suit/storage/snow_suit/liaison, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/marine/dress, -/obj/item/clothing/glasses/sunglasses/big, -/obj/item/clothing/accessory/blue, -/obj/item/clothing/accessory/red, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"wHR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"wId" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"wHu" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"wIf" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/lower/repair_bay) -"wIm" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"wHv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"wHB" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/orange/north, +/obj/structure/surface/rack, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"wIs" = ( +"wHG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wHO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"wIl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wIw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/east, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/aft_hallway) "wIx" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/offices) -"wIy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Computer Lab" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) "wIA" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/machinery/light{ @@ -59844,100 +59898,94 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"wIC" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/light{ - dir = 4 +"wIH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"wIG" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"wIK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"wIJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"wIU" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"wIX" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/phone_base/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"wJa" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"wJh" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 +/area/almayer/hallways/lower/repair_bay) +"wIV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"wJp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) "wJt" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"wJv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +"wJy" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"wJw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"wJC" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"wJF" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"wJJ" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"wJG" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wJH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/aft_hallway) +"wJI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "wJL" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -59961,188 +60009,193 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"wKi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"wJS" = ( /turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"wKb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"wKk" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"wKv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"wKz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/aft_hallway) -"wKO" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"wKC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lockerroom) -"wKR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/aft_hallway) +"wLg" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"wLs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "northcheckpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wLA" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"wLI" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"wLX" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"wMh" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"wMk" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 1"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"wLp" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"wMl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"wLy" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"wMr" = ( +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"wLz" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"wLH" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/engineering/port_atmos) -"wMf" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/living/grunt_rnr) -"wMq" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"wMU" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"wNf" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"wNh" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"wMv" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_m_s) +"wMD" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"wME" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "wNm" = ( /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer, /area/almayer/living/briefing) -"wNG" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +"wNt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wNJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"wNA" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"wNF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"wNW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"wNX" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/surface/table/almayer{ + layer = 3 }, +/obj/item/device/megaphone, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"wOa" = ( -/obj/structure/bed/chair, -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 21; - pixel_y = 27 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"wOm" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"wOn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/security{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 +/area/almayer/hallways/hangar) +"wNV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"wOt" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wOb" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"wOk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 10 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"wOz" = ( -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"wOq" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"wOy" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"wOM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"wON" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/starboard_garden) +"wOQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc04"; + name = "\improper Treatment Center" }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"wOH" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_midship_hallway) -"wOT" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "wOZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"wPf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/lobby) -"wPn" = ( -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/upper/aft_hallway) -"wPp" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) "wPq" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60154,159 +60207,121 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"wPv" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +"wPr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"wPs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"wPy" = ( -/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wPw" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"wPJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"wPE" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"wQc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"wPG" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"wQi" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"wQA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wQl" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"wQK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"wQR" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wQq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wQG" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"wQJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wQL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"wQO" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) "wQT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"wRd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"wRj" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, +"wRE" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"wRn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"wRo" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) -"wRD" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/plants{ - pixel_x = -3 - }, -/obj/item/storage/bag/plants{ - pixel_x = 3 - }, -/obj/item/storage/bag/plants{ - pixel_y = -3 - }, -/obj/item/tool/scythe, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"wRK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/engineering/upper_engineering/port) +"wRU" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wRT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 8; - pixel_y = -12 +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"wSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Dropship Remote Control Console"; - pixel_y = 12; - shuttleId = "dropship_alamo"; - disabled = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) "wSd" = ( /obj/structure/bed/chair{ dir = 4 @@ -60319,15 +60334,29 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) +"wSe" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/almayer/hallways/hangar) +"wSs" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wSt" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/hull/upper/u_a_s) "wSw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room/notunnel) -"wSE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) "wSF" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -60335,57 +60364,133 @@ }, /turf/open/floor/plating, /area/almayer/medical/lower_medical_lobby) -"wSJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +"wSM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"wSK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"wSP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) +"wSV" = ( +/obj/item/paper/almayer_storage, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wST" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/upper/u_a_p) +"wSY" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wTg" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/item/reagent_container/food/snacks/margheritaslice{ + desc = "A slice of classic pizza ruined by the corps."; + name = "dirty margherita slice"; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8 + }, +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/stack/medical/ointment{ + layer = 3.5; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"wTk" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"wTn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"wTq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/weapon_room) -"wTd" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"wTQ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"wTS" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 3"; - name = "Quarters Shutters"; - pixel_x = 25; - req_access_txt = "200" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"wTE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"wTJ" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"wTR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "wUf" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wUm" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/cic) "wUr" = ( /obj/structure/machinery/light{ dir = 1 @@ -60394,32 +60499,32 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wUB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"wUE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 +"wUv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/general_equipment) +"wUG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wUK" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/lower/repair_bay) +"wUL" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/offices/flight) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"wUP" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "wUT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/emails{ @@ -60428,32 +60533,33 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"wUU" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"wVd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "wVe" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) -"wVi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/warden_office) -"wVj" = ( -/obj/structure/platform_decoration{ - dir = 8 +"wVy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wVk" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"wVu" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/area/almayer/maint/hull/lower/l_m_p) "wVA" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -60464,109 +60570,169 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"wVB" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"wVQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, -/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"wVM" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) +/area/almayer/living/starboard_emb) "wVR" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wVS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, +"wVV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"wWh" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"wWd" = ( -/obj/structure/sign/safety/fibre_optics{ - pixel_y = 32 +/area/almayer/maint/hull/lower/l_f_s) +"wWq" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"wWu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"wWj" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"wWF" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/clothing/head/helmet/marine/tech{ layer = 4.1; - pixel_y = -29 + pixel_y = 12 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie) +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/mob/living/simple_animal/mouse/brown{ + name = "rat" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "wWJ" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/processing) -"wWS" = ( +"wWP" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/lifeboat) +"wWW" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"wWY" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/hull/upper/u_f_p) -"wWU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"wXh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"wXi" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wXt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lockerroom) -"wXC" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"wXd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"wXJ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"wXU" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"wXo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"wXy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"wXS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"wXV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "wXX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -60576,62 +60742,78 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"wYj" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) +"wXZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"wYk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wYu" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"wYw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "wYz" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"wYC" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/upper/aft_hallway) -"wYE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +"wYB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"wYF" = ( -/obj/structure/surface/rack, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"wYN" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"wYP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8 }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"wZb" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 7 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wZg" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"wZf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"wZl" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/port_umbilical) -"wZx" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"wZo" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "wZE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -60655,354 +60837,345 @@ "wZJ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/port_missiles) -"wZS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"wZO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"wZY" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/megaphone, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"wZV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"wZX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "xak" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) -"xas" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"xan" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/stack/sheet/metal{ - layer = 4.1; - pixel_x = -3; - pixel_y = 14 - }, -/obj/item/tool/weldingtool{ - layer = 4.1; - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"xaR" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"xaT" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 }, -/obj/item/bedsheet/red{ - layer = 3.2 +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"xaZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/bedsheet/red{ +/obj/item/storage/firstaid{ + pixel_x = -13; pixel_y = 13 }, +/obj/item/clipboard, +/obj/item/paper, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"xat" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"xay" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"xaz" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"xaL" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "weapon targetting computer" +/area/almayer/maint/hull/lower/l_a_s) +"xbd" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"xbq" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; +/obj/structure/sign/safety/debark_lounge{ pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xaP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xaR" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"xbh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/command/lifeboat) +"xbr" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"xbs" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"xbC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"xbP" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xbQ" = ( -/obj/structure/sink{ - pixel_y = 24 +/area/almayer/engineering/lower) +"xbA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"xcj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"xcm" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xcF" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xbJ" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 3"; + layer = 3.2; + name = "Cell 3 Control"; + pixel_x = 16; + pixel_y = -16 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"xcM" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 2"; + layer = 3.2; + name = "Cell 2 Control"; + pixel_x = 16; pixel_y = 16 }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 2"; + name = "Containment Lockdown"; pixel_x = 13; - pixel_y = 15 + pixel_y = 7; + req_one_access_txt = "19;28" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 3"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = -6; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"xbS" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"xbV" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"xcO" = ( +/area/almayer/hallways/hangar) +"xbY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"xcQ" = ( -/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xcS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/area/almayer/living/offices) +"xcx" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xcV" = ( -/obj/structure/largecrate/random/case/small, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) +"xcA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xcE" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/upper/aft_hallway) +"xcL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "xcY" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_missiles) -"xda" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, +"xdd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"xdc" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 5"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/area/almayer/command/lifeboat) +"xdi" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"xdH" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"xdo" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/aft_hallway) -"xdq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"xdv" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"xdw" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"xdJ" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +"xdK" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xdS" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"xdP" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) -"xdY" = ( -/obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xeb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 +"xdW" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/sign/safety/fire_haz{ +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"xef" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"xej" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"xek" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"xeD" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"xeQ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"xeW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"xer" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"xex" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"xfb" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/hydroponics) +"xeM" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/command/lifeboat) +"xeN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) "xfc" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"xfg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"xfo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-4"; - req_access = null +"xfe" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"xfm" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "xfq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"xfr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"xfB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/warden_office) -"xft" = ( -/obj/structure/pipes/vents/scrubber, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xfC" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xfF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"xgg" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"xfD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"xgi" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"xgn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "S" }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"xfN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"xgc" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"xgx" = ( -/obj/structure/toilet{ - dir = 1 +/area/almayer/engineering/lower/engine_core) +"xgp" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"xgq" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"xgz" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = -32 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xgD" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/aft_hallway) @@ -61012,6 +61185,16 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"xgT" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"xgU" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) "xgV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -61023,16 +61206,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"xgX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) "xhi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61042,181 +61215,87 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"xhx" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"xhj" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"xid" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south1) +"xis" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"xhB" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend/north, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xit" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"xhD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"xhQ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/broken, -/obj/item/reagent_container/food/drinks/cans/beer{ - layer = 3.1; - pixel_x = -7; - pixel_y = 16 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"xix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"xiI" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"xhY" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" +/area/almayer/squads/charlie_delta_shared) +"xiK" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"xic" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = 7; - pixel_y = 16 +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"xiQ" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"xiX" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = -8; - pixel_y = 16 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xje" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"xju" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"xid" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south1) -"xig" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"xil" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"xin" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xiD" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_x = 24; - pixel_y = 6; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"xiH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xiK" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"xiQ" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"xiZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Mixed Air Control" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"xjd" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"xjg" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-4"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"xjl" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"xjm" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"xjn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"xjx" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) "xjK" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"xjS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"xjT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"xjN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) "xjX" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -61228,187 +61307,248 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"xjZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"xke" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"xkg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) "xkj" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"xku" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +"xkl" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"xkq" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"xks" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"xkw" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"xkG" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"xkS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"xkT" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"xkZ" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) -"xle" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"xli" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"xlf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xlm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 +/area/almayer/maint/hull/lower/l_m_s) +"xlT" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"xmd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lockerroom) -"xlY" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/turf/open/floor/almayer/green/east, +/area/almayer/living/starboard_garden) +"xmy" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"xmz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xmJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xmc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/command/cic) +"xmV" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xmZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"xmr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"xmN" = ( /turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"xmT" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/area/almayer/living/offices) +"xnc" = ( +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"xnh" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"xmX" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"xmY" = ( +/area/almayer/squads/charlie) +"xnl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"xnn" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"xne" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xng" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"xnz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "xnE" = ( /obj/structure/largecrate/random, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"xnH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xnU" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/squads/alpha) -"xnS" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"xos" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_midship_hallway) +"xnZ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xom" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_umbilical) +"xot" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xox" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"xoY" = ( +/area/almayer/maint/hull/upper/u_m_p) +"xoA" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"xoP" = ( /obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 3 }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 9; + pixel_y = 15 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"xpb" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"xpf" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xoU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"xpa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/north, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"xph" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 +"xpi" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"xpn" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - isopen = 1; - starting_helmet_type = null; - starting_mask_type = null; - starting_suit_type = null; - starting_tank_type = null +/obj/structure/filingcabinet/security{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/chief_mp_office) +"xpl" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/hallways/lower/starboard_umbilical) +"xpp" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) "xps" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -61420,72 +61560,61 @@ /obj/structure/shuttle/part/dropship2/right_inner_wing_connector, /turf/open/space/basic, /area/almayer/hallways/hangar) +"xpF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) "xpK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"xpR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/aft_hallway) -"xpV" = ( -/obj/structure/machinery/computer/supplycomp, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"xpM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"xpZ" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/briefing) -"xqc" = ( -/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"xpO" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"xqe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) +/area/almayer/shipboard/port_point_defense) "xqm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"xqu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; +"xqy" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"xqA" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" + name = "\improper Computer Lab"; + req_access = null }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"xqx" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"xqz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"xqL" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"xqT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) "xqV" = ( /obj/structure/bed{ can_buckle = 0 @@ -61513,389 +61642,368 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"xqX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) "xqY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"xrc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"xqZ" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"xrA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"xrG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_three) +"xre" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"xrK" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/warden_office) -"xrV" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/telecomms) -"xsi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"xso" = ( -/obj/effect/attach_point/fuel/dropship2{ - pixel_x = -32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xrh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "33" - }, -/area/almayer/hallways/hangar) -"xsp" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"xri" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xrk" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xsA" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"xsE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"xsJ" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"xrw" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"xrI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/tcomms, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"xrV" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/command/telecomms) -"xsM" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"xsN" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/upper/aft_hallway) -"xsT" = ( -/obj/structure/machinery/light/small{ +"xrZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"xsY" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/area/almayer/living/bridgebunks) +"xsa" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"xtn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"xse" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/dropper, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 12 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xsi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xtr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"xts" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"xtx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/area/almayer/lifeboat_pumps/south1) +"xsn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"xso" = ( +/obj/effect/attach_point/fuel/dropship2{ + pixel_x = -32 + }, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "33" + }, +/area/almayer/hallways/hangar) +"xsP" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - pixel_x = 24 + unacidable = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"xty" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xtF" = ( -/obj/structure/machinery/telecomms/server/presets/squads, -/obj/structure/sign/safety/commline_connection{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/shipboard/weapon_room/notunnel) +"xta" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xtM" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"xtR" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/aft_hallway) -"xub" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"xtW" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xtZ" = ( +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/small, +/obj/item/ammo_box/magazine/empty, +/obj/item/ammo_box/magazine/empty, +/obj/structure/machinery/door_control{ + id = "crate_room3"; + name = "storage shutters"; + pixel_x = -26 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"xuj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"xug" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "xuw" = ( /turf/open/floor/almayer, /area/almayer/living/offices) -"xuy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 +"xuQ" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/squads/req) +"xuR" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"xuX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 8; + pixel_y = 9 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xuL" = ( -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_y = 28; - req_one_access_txt = "28" +/area/almayer/living/grunt_rnr) +"xvc" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"xvz" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xvF" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 }, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xvP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "SE-out" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"xuY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"xvX" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"xwa" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"xwj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xwr" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"xvm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) +"xwA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"xwC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/hallways/hangar) -"xvq" = ( -/obj/item/clothing/head/helmet/marine/reporter, -/obj/item/clothing/suit/storage/marine/light/reporter, -/obj/item/clothing/head/cmcap/reporter, -/obj/item/clothing/head/fedora, -/obj/structure/closet/secure_closet, -/obj/item/storage/box/tapes, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"xvw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"xvy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-6"; - req_access = null +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"xvE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"xvI" = ( +/area/almayer/command/cic) +"xwD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"xwE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xwn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"xwN" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"xws" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flash, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/warden_office) -"xww" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xwP" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Cryogenics Bay" - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"xxd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/medical/morgue) "xxf" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"xxk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +"xxj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"xxm" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xxr" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -29 +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"xxt" = ( -/obj/structure/machinery/line_nexter/med{ +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"xxo" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"xxu" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"xxF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/obj/item/tool/pen, +/obj/item/book/manual/marine_law{ + pixel_x = 15; + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"xyi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/book/manual/security_space_law{ + pixel_x = 16; + pixel_y = 9 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"xyn" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"xxq" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"xxs" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/living/briefing) +"xxL" = ( +/obj/structure/stairs{ dir = 8; - name = "ship-grade camera" + icon_state = "ramptop" }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"xxS" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xxT" = ( /turf/open/floor/almayer/orangecorner, -/area/almayer/command/telecomms) +/area/almayer/maint/hull/upper/u_a_s) +"xyo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Chief Engineer's Bunk"; + no_panel = 1; + req_access = list(); + req_one_access_txt = "1;6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) "xyt" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -61905,189 +62013,236 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"xyA" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"xyE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"xyF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"xyZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xyW" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xze" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"xzk" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"xzl" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +/area/almayer/medical/containment) +"xzp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/command/cichallway) "xzu" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/lobby) -"xzG" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Engine Monitoring" +"xzE" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"xzU" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"xAq" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"xzI" = ( +/obj/structure/machinery/power/apc/power/south, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"xAE" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"xAW" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"xBq" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge1" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment/cell) +"xzK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"xBs" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"xBw" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 9"; - buildstate = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"xBA" = ( -/obj/structure/largecrate/random/barrel/white, +/area/almayer/squads/charlie) +"xzT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"xzU" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"xBB" = ( +/area/almayer/squads/alpha) +"xzY" = ( /obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"xAd" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xAk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xAp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"xBH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc04"; - name = "\improper Treatment Center" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_medbay) +"xAC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xAH" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"xAY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"xBe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xBh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"xBo" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"xBx" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xBK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) "xBN" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/pouch/general/large, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"xBV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"xCl" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"xCa" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xCr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"xCp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "xCv" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"xCz" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/cic) -"xCF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 +"xCx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"xCy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"xCH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "xCP" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"xCV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"xCY" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/cryo_cells) +"xDd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"xDi" = ( +/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_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xCX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) "xDj" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -62095,32 +62250,23 @@ }, /turf/open/floor/plating, /area/almayer/command/computerlab) -"xDq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" +"xDk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/protein_pack, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xDz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"xDv" = ( -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"xDy" = ( -/obj/structure/machinery/cm_vending/gear/medic, +/area/almayer/shipboard/port_point_defense) +"xDB" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/hallways/lower/starboard_midship_hallway) "xDJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -62132,626 +62278,474 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_three) -"xEo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"xDL" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xEt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"xDR" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"xEB" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/securestorage) -"xEH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"xDT" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"xEP" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/power/west, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"xES" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xEV" = ( -/obj/structure/machinery/light/containment{ +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"xEe" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"xEW" = ( -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - pixel_y = -20; - req_access_txt = "5" - }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/upper_medical) -"xFa" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/obj/structure/machinery/meter, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"xFp" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"xFs" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xFB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"xFF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"xFP" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer/red, -/area/almayer/maint/hull/upper/u_a_p) -"xFU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Support Officers Quarters"; - req_one_access_txt = "37" +/obj/structure/machinery/iv_drip, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"xEg" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"xFX" = ( +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"xEo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/distribution_pipes{ +/obj/structure/sign/safety/storage{ pixel_x = 32 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"xGg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"xGl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"xGn" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"xEw" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) -"xGt" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, +"xED" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/gym) +"xEM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"xEU" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/flash{ - pixel_y = -8 +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/warden_office) -"xGz" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/plating, /area/almayer/maint/hull/lower/l_f_p) -"xGG" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xGK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xGQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"xEX" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"xFf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"xGV" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"xGZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer/plate, /area/almayer/squads/delta) -"xHe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"xHH" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xHO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"xHW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"xId" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/living/briefing) -"xIe" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xIi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"xIj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/general_equipment) -"xIm" = ( +"xFm" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"xID" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"xIQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/item/storage/fancy/vials/empty{ - pixel_y = 10; - start_vials = 2 - }, -/obj/item/tool/pen{ - pixel_y = 8 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, /turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xJp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"xJr" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xJG" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"xJO" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) -"xJW" = ( +"xFu" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"xFz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"xFV" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"xKd" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"xKg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/area/almayer/living/starboard_garden) +"xGv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"xKn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"xKx" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"xGy" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"xKL" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing everything you need to stop a CLF uprising."; - name = "\improper USCM crate 'FOB supplies'" - }, -/obj/structure/sign/arcturianstopsign{ - pixel_y = 32 - }, -/obj/item/folded_tent/big{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 12 +/area/almayer/maint/hull/upper/u_m_s) +"xGH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) -"xKR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"xKS" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xKT" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 + dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"xKU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"xGK" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"xLj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"xLk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/hangar) +"xGT" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"xLo" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xGY" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"xHd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) -"xLt" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"xLz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"xLV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"xHx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 10 }, /turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"xLX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/engineering/lower/workshop/hangar) +"xHz" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/carrotseed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/shipboard/brig/cells) +"xHC" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, /obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"xMc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"xHG" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"xHQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"xMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"xMq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) +"xIo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"xMr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"xMt" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"xMx" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"xIu" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"xMI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xIH" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"xJg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"xMY" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/sign/safety/hazard{ +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ pixel_y = 32 }, -/obj/structure/sign/safety/airlock{ +/obj/structure/sign/safety/fire_haz{ pixel_x = 15; pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"xJA" = ( +/obj/structure/sink{ + pixel_y = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"xNg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/shipboard/brig/perma) +"xJI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/orangecorner/east, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"xNv" = ( +"xJJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xNx" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or01"; - name = "Operating Theatre 1" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"xKb" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"xKD" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"xKF" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"xKG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/computerlab) +"xKI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) +"xLd" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"xLn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/shipboard/brig/medical) +"xLw" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 5; + pixel_y = 14 + }, +/obj/item/attachable/bayonet{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"xLy" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"xLQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 3"; + name = "\improper Courtyard Divider" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_one) -"xNK" = ( -/obj/structure/machinery/alarm/almayer{ +/area/almayer/shipboard/brig/cells) +"xLR" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"xNV" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"xMh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"xOd" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/hallways/upper/aft_hallway) -"xOj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"xMt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"xNk" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"xNq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/turf/open/floor/almayer/blue/east, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/aft_hallway) -"xOp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"xNs" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"xND" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"xNI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"xOr" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower/engine_core) +"xOi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"xOt" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"xOl" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"xOn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ +/obj/structure/sign/safety/nonpress_ag{ pixel_x = 15; - pixel_y = 32 + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"xOJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1; - pixel_y = -1 +"xOq" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower) +"xOu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xOw" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"xOE" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/starboard_garden) +"xOL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/armory) +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) "xON" = ( /obj/structure/closet/secure_closet/commander, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"xOQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) "xOR" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /obj/structure/machinery/light{ @@ -62759,56 +62753,53 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xOS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"xOU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"xOW" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"xOZ" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"xOV" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"xOY" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/warden_office) -"xPc" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"xPf" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/port_missiles) -"xPk" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"xPm" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"xPw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"xPt" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"xPv" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"xPz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/aft_hallway) +"xPx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "xPA" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -62819,12 +62810,28 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"xPQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"xPH" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"xPJ" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xPR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"xPW" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_s) "xQf" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -62832,93 +62839,60 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"xQs" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/aft_hallway) -"xQA" = ( -/obj/structure/reagent_dispensers/acidtank, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"xQB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc02"; - name = "\improper Treatment Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"xQF" = ( -/obj/structure/sign/safety/rad_shield{ - pixel_x = 32 +"xQy" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "xQJ" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) -"xQN" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"xQQ" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/obj/item/storage/pouch/tools, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"xQU" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xRb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" +/area/almayer/squads/alpha) +"xRc" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xRi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"xRd" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"xRq" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/general_equipment) -"xRh" = ( -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"xRj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) +/area/almayer/maint/hull/upper/u_a_p) "xRs" = ( /obj/effect/landmark/start/researcher, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"xRv" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/shipboard/brig/cells) "xRB" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -62926,57 +62900,33 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"xRD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"xRP" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"xRJ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xRN" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xRU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xSd" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xSh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_s) +"xRX" = ( +/obj/structure/toilet{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"xSj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "xSl" = ( /obj/structure/bed/chair{ dir = 4 @@ -62985,36 +62935,84 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"xSo" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) +"xSs" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"xSu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) "xSv" = ( /obj/structure/prop/almayer/ship_memorial, /turf/open/floor/plating/almayer, /area/almayer/living/starboard_garden) -"xSx" = ( +"xSw" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"xSF" = ( -/obj/structure/stairs{ +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xSA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"xSI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"xSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xSL" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/engineering/upper_engineering) "xSN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -63029,104 +63027,159 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"xTo" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) -"xTu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"xST" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"xSX" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/north{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"xTi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xTk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"xTq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "xTz" = ( /obj/structure/platform, /turf/open/floor/almayer, /area/almayer/living/briefing) -"xTB" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_m_p) -"xTL" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"xUg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"xTM" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"xTQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) "xUi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"xUA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, +"xUu" = ( /turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +/area/almayer/lifeboat_pumps/north1) +"xUv" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"xUx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "19;29" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) "xUB" = ( /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"xUE" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xUF" = ( -/obj/structure/platform{ - dir = 8 +"xUV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/syringes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"xVa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/stack/sheet/metal, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xUS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/living/auxiliary_officer_office) +"xVq" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"xUZ" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"xVw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"xVv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"xVB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"xVG" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"xVH" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"xVQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"xVL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"xVR" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/weapon/gun/rifle/m41aMK1/ap, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "xVS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -63161,19 +63214,20 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"xWe" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) +"xWa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"xWh" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"xWi" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) "xWj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -63182,90 +63236,134 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"xWx" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) +"xWr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"xWs" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"xWu" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"xWv" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xWE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/general_equipment) "xWF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"xWX" = ( -/turf/open/floor/almayer/orange, -/area/almayer/living/briefing) -"xXe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"xWL" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/storage/box/matches, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"xWN" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"xWW" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"xXf" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"xXn" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"xXy" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xXA" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +/area/almayer/living/cafeteria_officer) +"xXE" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"xXP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"xXD" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/turf/open/floor/almayer/sterile_green_corner/east, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) -"xXH" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 +"xYs" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"xXM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"xYu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xXO" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/aft_hallway) +"xYz" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"xXR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"xYc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"xYA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"xYO" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower) +"xYP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/command/cic) -"xYK" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"xYQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "xYV" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -63276,43 +63374,31 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"xZa" = ( +"xZo" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"xZx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/phone_base{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - pixel_y = 29 + dir = 4 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 23; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"xZd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"xZC" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xZF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Liasion's Bathroom" +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xZG" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) "xZJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -63325,55 +63411,56 @@ /obj/item/prop/magazine/book/theartofwar, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"xZU" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"xZK" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"xZL" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/obj/structure/closet, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_emb) +/area/almayer/squads/delta) "yaa" = ( /turf/closed/wall/almayer/research/containment/wall/divide, /area/almayer/medical/containment/cell) -"yae" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/starboard_garden) -"yaq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"yab" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door_display/research_cell{ - dir = 1; - id = "Containment Cell 5"; - name = "Cell 5 Control"; - pixel_x = 4; - pixel_y = -3 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 5"; - name = "Containment Lockdown"; - pixel_x = -8; - pixel_y = -3; - req_one_access_txt = "19;28" +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 }, /turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) +"yas" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"yaw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "yax" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"yaE" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "yaH" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -63385,113 +63472,136 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"yaN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"yaY" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"ybc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"yaI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"yaK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"yaM" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/cic) +"yaR" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"yaV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"ybd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"yaW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/window/westright{ + dir = 4; + req_access_txt = "28" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"ybz" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ybG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - dir = 1; - name = "\improper Engineering Bunks" +/area/almayer/medical/medical_science) +"yaY" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"ybi" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ybC" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "ybK" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"ybM" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +"ybN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "ybR" = ( /turf/open/floor/almayer, /area/almayer/living/officer_study) -"yck" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32 +"ybT" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"ycv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar/red, +/obj/item/clipboard{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 }, +/obj/item/reagent_container/spray/cleaner, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ycn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/brig/warden_office) +"ycC" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"ycq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"ycL" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = list(); + req_access_txt = "26" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"ycw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) -"ycQ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ycP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ycW" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/command/lifeboat) +"ycY" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ydi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -63500,105 +63610,28 @@ "ydm" = ( /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"ydn" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"ydo" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/evidence_storage) -"yds" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"ydu" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Perma 1"; - pixel_y = 24 - }, +"ydE" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"ydw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ydx" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"ydF" = ( -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/aft_hallway) -"ydH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/maint/hull/lower/l_a_p) +"ydM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper High Security Storage" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"ydW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/securestorage) -"ydI" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ydK" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/almayer/test_floor4, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"ydT" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) -"ydV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"yeb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_two) -"yec" = ( -/obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) "yei" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -63609,6 +63642,9 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"yep" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/aft_hallway) "yes" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -63616,29 +63652,33 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"yet" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_f_p) -"yev" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"yeI" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"yff" = ( +"yeA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"yeW" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) +"yeZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"yfa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) "yfl" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -63649,176 +63689,153 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"yfq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"yfn" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"yfu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"yfO" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"yfZ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ygc" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ygg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"ygu" = ( +/area/almayer/hallways/lower/starboard_midship_hallway) +"yfp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"ygy" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"ygE" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"ygP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"yfw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"yfR" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/port_missiles) +"yga" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"ygv" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"ygI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/aft_hallway) -"ygW" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "south_central_checkpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"ygX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"yhf" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/almayer/living/briefing) +"ygQ" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"yhh" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "yhi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"yhw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) "yhA" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"yhI" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"yhL" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 +"yhY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"yhT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"yip" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "yiF" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/bravo) -"yjs" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +"yiI" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"yjG" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"yjN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"yiJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cic) +"yiV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"yiY" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; name = "ship-grade camera" }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"yjh" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"yji" = ( +/obj/structure/closet/boxinggloves, /turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) +/area/almayer/living/gym) +"yjn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"yjr" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "yjO" = ( /obj/structure/window/framed/almayer/hull, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/chief_mp_office) -"yjW" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 +"yjS" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"yks" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/suit/space/compression/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_one) "ykw" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -63827,30 +63844,43 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"ykV" = ( -/obj/structure/machinery/autolathe/armylathe/full, -/turf/open/floor/almayer/orange/north, +"ykR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"ylh" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) -"ylb" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"ylj" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 +"yli" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"yln" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext"; + name = "\improper Umbillical Airlock" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"ylt" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) "ylx" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"yly" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "ylz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63861,47 +63891,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ylC" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/command/lifeboat) -"ylG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"ylI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ylL" = ( -/obj/structure/machinery/light{ +"ymb" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"ylU" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"ymf" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) (1,1,1) = {" qeX @@ -64556,15 +64556,15 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +hIJ +nGX +nGX +nGX +nGX +nGX +nGX +nGX +oWW qeX qeX qeX @@ -64649,27 +64649,27 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +hIJ +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +oWW qeX qeX qeX @@ -64758,7 +64758,7 @@ qeX qeX qeX qeX -tag +klp uJZ uJZ yjO @@ -64766,7 +64766,7 @@ yjO yjO uJZ uJZ -tEF +rcq qeX qeX qeX @@ -64851,7 +64851,7 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl @@ -64871,7 +64871,7 @@ ndl ndl ndl ndl -tEF +rcq qeX mOJ mOJ @@ -64955,25 +64955,25 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX +nGX ndl uJZ -ghf -iDu -iDu -iDu -fvA +xpi +lUu +lUu +lUu +cNq uJZ ndl -wgJ -wgJ -wgJ -wgJ -wgf +nGX +nGX +nGX +nGX +oWW qeX qeX qeX @@ -65053,7 +65053,7 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl @@ -65073,7 +65073,7 @@ ndl ndl ndl ndl -tEF +rcq qeX mOJ mOJ @@ -65157,7 +65157,7 @@ qeX qeX qeX qeX -tag +klp uJZ uJZ uJZ @@ -65165,17 +65165,17 @@ uJZ uJZ uJZ vHF -iqv -guE -afI -lRd +jOU +uBI +qea +gUV uJZ -frm -frm -frm -frm -frm -tEF +asO +asO +asO +asO +asO +rcq qeX qeX qeX @@ -65249,16 +65249,16 @@ qeX qeX qeX mOJ -fDe -wgJ -wgJ -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX +nGX +nGX ndl byJ -aIF -aIF +xsP +xsP byJ ndl ndl @@ -65270,18 +65270,18 @@ ndl ndl ndl byJ -aIF -aIF +xsP +xsP byJ ndl ndl ndl -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +nGX +nGX +nGX +nGX +nGX +oWW mOJ qeX qeX @@ -65357,29 +65357,29 @@ qeX qeX qeX qeX -fDe -wgJ +hIJ +nGX ndl uJZ qNa bBv lol bBv -vke +wkE hcf mBA piu wHi -tcm +eDL tKJ -vCW -lqu -oiY -tmF -frm +aKJ +gxl +rLM +bYd +asO ndl -wgJ -wgf +nGX +oWW qeX qeX qeX @@ -65451,12 +65451,12 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -oGH -oGH -oGH +nTU +nTU +nTU +nTU ndl byJ wSw @@ -65478,12 +65478,12 @@ byJ ndl ndl ndl -ewq -ewq -ewq -ewq +pDY +pDY +pDY +pDY ndl -tEF +rcq mOJ qeX qeX @@ -65559,29 +65559,29 @@ qeX qeX qeX qeX -tag -oEJ -oEJ +klp +wSP +wSP uJZ -pOt +vUl bBv lcA -hme +atz tKJ gES -vRi -tLw -deo +uKH +awp +eKQ hcf tKJ -veu -oZm -oZm -joI -frm -frm -frm -tEF +rYv +bLp +bLp +bUO +asO +asO +asO +rcq qeX qeX qeX @@ -65653,16 +65653,16 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -ruo -fFV +nTU +vop +sNW psY psY psY -aIF -aIF +xsP +xsP psY jHR jHR @@ -65674,18 +65674,18 @@ ndl ndl psY psY -aIF -aIF +xsP +xsP psY jHR jHR jHR psY -erG -nGp -ewq +pJM +gPs +pDY ndl -tEF +rcq mOJ qeX qeX @@ -65753,45 +65753,45 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -oEJ -oEJ -eLd +hIJ +nGX +nGX +nGX +nGX +nGX +nGX +nGX +wSP +wSP +rQl tKJ rFd sci lcA -jwk +rsJ tKJ nqq nqq tKJ -akU +lVv tKJ tKJ -pCO -pCO -vVm -xrA -dTT -dos -frm -frm -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +aGM +aGM +lSH +mEp +fOM +dHt +asO +asO +nGX +nGX +nGX +nGX +nGX +nGX +nGX +oWW qeX qeX qeX @@ -65855,17 +65855,17 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -dZq -qZA +nTU +rKv +dKC bAv -lbc -lEI -xTM -xTM -xTM +qNJ +ixY +pCM +pCM +pCM fPo laW psY @@ -65876,18 +65876,18 @@ ndl ndl psY dZy -aEN -aEN -xTM +vmf +vmf +pCM dcY -dCz -rDZ +nsO +sku bAv -gOc -hjr -ewq +qhZ +vFk +pDY ndl -tEF +rcq mOJ qeX qeX @@ -65955,45 +65955,45 @@ qeX qeX qeX qeX -tag -oEJ -oEJ -oEJ -oEJ -oEJ -oEJ -oEJ -oEJ -jfH -lgK +klp +wSP +wSP +wSP +wSP +wSP +wSP +wSP +wSP +lLl +vUk tKJ tKJ tKJ tKJ tKJ tKJ -rKE -aia -cGM -nJc -kcA -snI -dhU -snI -xrA -hIu -oZm -jtV -woj -frm -frm -frm -frm -frm -frm -frm -frm -tEF +jtw +vkE +aYx +gxZ +rEW +lle +jrm +lle +mEp +xuR +bLp +fAG +iJU +asO +asO +asO +asO +asO +asO +asO +asO +rcq qeX qeX qeX @@ -66057,17 +66057,17 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -vcy -ouv +nTU +uxp +wfX bAv -vSJ -lEI -xTM -xTM -xTM +kOa +ixY +pCM +pCM +pCM dZy bZb psY @@ -66078,18 +66078,18 @@ psY psY psY ocs -aEN -aEN -xTM +vmf +vmf +pCM dZy -dCz -rrE +nsO +njt bAv -jKd -xDq -ewq +sLG +hpY +pDY ndl -tEF +rcq mOJ qeX qeX @@ -66157,45 +66157,45 @@ qeX qeX qeX qeX -tag -oEJ -kBy -tdK -pYA -pYA -orA -pYA -cQL -gWW -mLF -pCO -udP -nGL -xws -nuc -heZ -jFF -gfi -gfi -nJc -ueD -pCO +klp +wSP +mjG +ayZ +ifx +ifx +kgj +ifx +rsO +xYQ +cRV +aGM +mWf +dJO +scW +aTK +mMA +mGd +roQ +roQ +gxZ +vKx +aGM oaa oaa oaa oaa -oZm -tGK -eag -vKe -oZm -iKR -xrA -oZm -oZm -ejh -frm -tEF +bLp +bNQ +nWb +uvO +bLp +vAf +mEp +bLp +bLp +vwz +asO +rcq mOJ mOJ qeX @@ -66259,39 +66259,39 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -oeG -jJI -uMA -lgJ -lEI -xTM -xTM -xTM -jdH +nTU +xrI +eHa +dky +fZo +ixY +pCM +pCM +pCM +hBl dZy edW -cHF -uKq -rjS -cHF -uKq +gMo +jNL +vCk +gMo +jNL edW dZy -aEN -aEN -xTM -ueE -dCz -ids -uMA -sXN -aza -ewq +vmf +vmf +pCM +coj +nsO +sEK +dky +hnY +kWF +pDY ndl -tEF +rcq mOJ qeX qeX @@ -66357,49 +66357,49 @@ qeX qeX qeX mOJ -fDe -wgJ +hIJ +nGX ndl -oEJ -tdK -pYA -tdK -dbW -iVe -wEc -vor -pYA -tDg -pCO -egA -aia -aia -xrK -heZ -tCh -gfi -gfi -nJc -ubG -xGt +wSP +ayZ +ifx +ayZ +bvp +meE +dch +xYs +ifx +bHp +aGM +slU +vkE +vkE +aHt +mMA +uxu +roQ +roQ +gxZ +hIg +eub oaa -uHd -llf +kJD +lGR oaa oaa oaa -xrA -xrA -jyn -rjR -wmP -xrA -xrA -oZm -frm +mEp +mEp +mUq +uGs +brM +mEp +mEp +bLp +asO ndl -wgJ -wgf +nGX +oWW mOJ qeX qeX @@ -66461,39 +66461,39 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -jJI -aDw +nTU +eHa +xnZ bAv -eTQ -lEI -xTM -xTM -jza -dPh +cev +ixY +pCM +pCM +eJU +kEc dZy edW -lgJ -eOV -vGS -vfv -ids +fZo +crk +iBd +iML +sEK edW dZy -aEN -aEN -jza -dPh -dCz -jTC +vmf +vmf +eJU +kEc +nsO +hjM bAv -uog -sXN -ewq +ehO +hnY +pDY ndl -tEF +rcq mOJ qeX qeX @@ -66559,35 +66559,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -oEJ -tdK -pYA -pCO -pCO -pCO -pCO -pCO -sSB -pCO -pCO -jEB -kIr -xtr -bHh -ktZ -pys -xtr -xtr -jPa -gfi -jto +wSP +wSP +ayZ +ifx +aGM +aGM +aGM +aGM +aGM +cGa +aGM +aGM +cCK +qCR +aNc +iUN +bRJ +miI +aNc +aNc +qIv +roQ +fye oaa -jHE -aKu -wHR +cgS +oxo +eGh pBZ oaa oaa @@ -66596,12 +66596,12 @@ oaa oaa oaa oaa -oZm -xrA -frm -frm +bLp +mEp +asO +asO ndl -tEF +rcq mOJ mOJ qeX @@ -66663,39 +66663,39 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -hrB -xiH +nTU +kBu +pXq bAv -ocl -flG -bqS -wNW -cnv -cnv -cnv -oLf -mdr +ikp +nSj +ene +fOZ +dbr +dbr +dbr +kVn +aKp vXK qpA vXK -gTg -oLf -cnv -cnv -cnv -qop -bqS -vUJ -xUA +mqd +kVn +dbr +dbr +dbr +kMV +ene +dNC +vlV bAv -nys -xJr -ewq +lcZ +uZT +pDY ndl -tEF +rcq mOJ qeX qeX @@ -66761,49 +66761,49 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -pKW -tdK -kBy -pCO -ymf -oyy -eCm -pCO -gfi -ydn -gkF -wmM -nJc -ueD -sTQ -eMW -ipv -gfi -pZl -xfr -phD -vcS +wSP +cqq +ayZ +mjG +aGM +lMg +ooV +fvS +aGM +roQ +spg +fNA +mcD +gxZ +vKx +mTf +kaf +qIy +roQ +teS +coV +bzA +aVG oaa -cMW -jTT +nvl +kYm oaa rQy -cXW -qrs +htS +kcW mYM -tde -rux -nMP +xHz +tQZ +tSf oaa -tmF -xrA -oZm -frm +bYd +mEp +bLp +asO ndl -tEF +rcq mOJ mOJ qeX @@ -66865,39 +66865,39 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -xiH -jJI +nTU +pXq +eHa bAv -dmI +tNk pXI pXI -wST -lxp -lxp -lxp +kbI +ldU +ldU +ldU edW -xnS -dFC -wBd -kwN -xrc +vEn +qbD +gge +tkb +iDd edW -lxp -lxp -lxp -qln +ldU +ldU +ldU +dCi pXI pXI -jdc +lzt bAv -sXN -eRl -ewq +hnY +irc +pDY ndl -tEF +rcq mOJ qeX qeX @@ -66963,30 +66963,30 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -iDr -pYA -tOD -pCO -tCh -vry -vry -aNM -gfi -ueD -sTQ -sTQ -aBR -rhV +wSP +hVL +ifx +pPt +aGM +uxu +mZd +mZd +oCI +roQ +vKx +mTf +mTf +qUK +eLg jim jim jim -aPb +xHQ jim -gKI -sgQ +dIL +oDA dRC oaa oaa @@ -66996,16 +66996,16 @@ jXc hgw aCW oNu -omZ +pmW aQY -gUP +vTq oaa -xsT -xrA -oZm -frm +vet +mEp +bLp +asO ndl -tEF +rcq mOJ mOJ qeX @@ -67067,16 +67067,16 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -xSd -xiH +nTU +jLH +pXq bAv -mRX +kil hWW hWW -sTX +gka ibv ibv ibv @@ -67090,16 +67090,16 @@ ibv ibv ibv ibv -sUS +vMN hWW hWW -tot +uof bAv -sXN -nys -ewq +hnY +lcZ +pDY ndl -tEF +rcq mOJ qeX qeX @@ -67165,49 +67165,49 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -pYA -tdK -pCO -pCO -gzM -gzM -gzM -pCO -kvP -ilV -rqQ -rqQ -jiI -xOY +wSP +ifx +ayZ +aGM +aGM +pOm +pOm +pOm +aGM +eVY +lJA +bzB +bzB +foW +abb jim -pHn -qpF -ydo +aGS +vDi +kQh oJm -dop +nxQ jTK -oCw +dAR oaa -fPf -oyL +ssT +xKF oaa cBN jnN jnN oNu -chU +kyR hgw -dKL +smI oaa oaa -oZm -xrA -frm +bLp +mEp +asO ndl -tEF +rcq mOJ mOJ qeX @@ -67269,39 +67269,39 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -pRt -jJI +nTU +eov +eHa bAv -mRX +kil hWW hWW -bGr +ldb ibv -cSb -dQx -cgE +isf +ilI +rOG ibv -emJ -nXs -eFD +cIb +cOX +vVP ibv -sEg -jIG -aiC +pIs +wzF +cyH ibv -eRy +lDm hWW hWW -tot +uof bAv -nSV -uEK -ewq +whD +eaj +pDY ndl -tEF +rcq mOJ qeX qeX @@ -67367,49 +67367,49 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -pYA -tdK -pCO -neq -jkn -jfk -jfk -pCO -rqL -jyO -pOI -fnU -eqz -fsF +tvg +ifx +ayZ +aGM +xEg +fIJ +eqw +eqw +aGM +tuc +tTR +nKS +oxb +hEP +ooD jim -eNR -boI -rSo +fvK +dVa +qDH oJm -dop +nxQ jTK -vdk +nZi uyr hgw dME -lOi +uju ecR aQY aQY oNu -cof +syb hgw -xRv -iPW +lzB +rPp oaa -oZm -xrA -xTo +bLp +mEp +geX ndl -baT +sMD mOJ mOJ qeX @@ -67471,39 +67471,39 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -dRW -jJI +nTU +xcx +eHa bAv -iiu +tFv pXI qVY -sTX +gka ibv -rAR +ylt fYA -eoG -idR -hce +hHz +gnP +cdP fYA -eoG -idR -hce +hHz +gnP +cdP fYA -hnq +jkQ ibv -dMP +iTb qVY pXI -cga +ltw bAv -ajO -nys -ewq +jpz +lcZ +pDY ndl -tEF +rcq mOJ qeX qeX @@ -67569,31 +67569,31 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -tdK -pYA -pCO -neq -lKh -lks -sTQ -jPK -gfi -nJc -ueD -dqe -sTQ -kpt +tvg +ayZ +ifx +aGM +xEg +jGa +alU +mTf +lNm +roQ +gxZ +vKx +rIi +mTf +iaa jim -pHn -uFQ -pWk +aGS +aoy +gUa oJm -dop +nxQ jTK -vIo +eOG oaa xyt oaa @@ -67602,16 +67602,16 @@ rtO aQY aQY oNu -omZ +pmW yhi aIc -eAn +iek oaa -hhC -xrA -xTo +fxH +mEp +geX ndl -tEF +rcq mOJ mOJ qeX @@ -67673,39 +67673,39 @@ qeX qeX qeX mOJ -tag +klp ndl -oGH -rNs -jJI +nTU +vBz +eHa bAv -fxf +bDx hWW rWl cVm -hqV +tqI cSy xWj xWj uTu -xng -kxe -miR +tPs +nJg +yga riP xWj xWj cSy -hqV +tqI cVm hnN hWW -tot +uof bAv -sXN -uAt -ewq +hnY +vIX +pDY ndl -tEF +rcq mOJ qeX qeX @@ -67771,49 +67771,49 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -jEg -pYA -pCO -pCO -pCO -pCO -pCO -pCO -dlh -nJc -mlP +tvg +cOh +ifx +aGM +aGM +aGM +aGM +aGM +aGM +tHf +gxZ +oix cXN cXN cXN cXN jim jim -aen +oxC jim -fgr +pEn jTK -ckx +dSz oaa -fPf -aeQ +ssT +xkT oaa srT aQY yes mYM -tiO +qMh ecR aQY -ovO +jMj oaa -haT -oZm -xTo +nlU +bLp +geX ndl -qjO +ouL mOJ mOJ qeX @@ -67874,41 +67874,41 @@ qeX qeX qeX qeX -fDe +hIJ ndl ndl -oGH -iJl -cXK +nTU +mcW +gAC bAv -jCj +uBg hWW iYD -ids +sEK ibv -fZw +dRR aTI fYA hes -mfn +bmS bfH -wEB +eLi hes fYA xMt -hMd +kjb ibv -lgJ +fZo iYD hWW -lha +oYq bAv -opP -sXN -ewq +kXd +hnY +pDY ndl ndl -wgf +oWW qeX qeX qeX @@ -67973,49 +67973,49 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -kBy -ndN -pCO -wmc -hkf -hKU -rLc -eWf -tCh -nJc -kZj +wSP +mjG +chA +aGM +ycv +vel +dBD +tgp +hjm +uxu +gxZ +bjV cXN -pHZ -pHZ -pHZ +vTT +vTT +vTT cXN -pPR -gXS -aII -dwh +iMe +eXr +jRN +iwS jTK -beF +mOI oSB hgw dME -alQ +fVf qAA aQY aQY mYM mYM -dTG -bbd +iSR +tNp mYM oaa -rSR -oZm -frm +dsZ +bLp +asO ndl -tEF +rcq mOJ mOJ qeX @@ -68076,41 +68076,41 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -oGH -jJI -jJI +nTU +nTU +eHa +eHa bAv -bQf +sZo pXI sby -eTo +uwG ibv -ifV +lAu aTI klu iEm -lkl +pck hes -hnq +jkQ fEA xgI xMt -lvD +blb ibv -vWg +vGI sby pXI -xeb +jsP bAv -eho -sXN -ewq -ewq +uIf +hnY +pDY +pDY ndl -tEF +rcq qeX qeX qeX @@ -68175,35 +68175,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -wdR -tdK -pCO -ffH -sBM -adi -jVt -aia -wmM -nJc -xOY -iSA +wSP +pnA +ayZ +aGM +qeJ +gnB +qXv +eng +vkE +mcD +gxZ +abb +gnK hBF hBF hBF -xwP -eYZ -ckf -uLo -knB -fBY -pCO -pCO -oOq -pCO -pCO +edd +aHV +jvD +xOW +rpL +kgs +aGM +aGM +qGj +aGM +aGM rWh hgw gfA @@ -68213,11 +68213,11 @@ qAA hgw enM oaa -oiY -oZm -frm +rLM +bLp +asO ndl -lhW +itl mOJ mOJ qeX @@ -68278,41 +68278,41 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -hrB -xiH -jiA +nTU +kBu +pXq +whJ bAv -tpy +pqF hWW daY -ids +sEK ibv -eRz -fzs -qyO +euF +cMg +eWS dZj -qEa -wrO -ixS +kVS +eJe +gSt wXX -hgL -lTP -pAL +vMk +lHH +ciy ibv -rUp -ebs +mxT +cip hWW -uet +ePu bAv -snX -sXN -uAt -ewq +fFS +hnY +vIX +pDY ndl -tEF +rcq mOJ mOJ mOJ @@ -68377,35 +68377,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -odZ -tdK -pCO -fjH -lJH -cTY -gfi -gfi -gfi -nJc -xOY -mVF +tvg +erR +ayZ +aGM +qjM +gAu +kMW +roQ +roQ +roQ +gxZ +abb +kfm hBF hBF hBF -mVF -gXS -sPm +kfm +eXr +pjd eND gmG -gYU -svA -wEd -cOf -uLt -ekD +hQv +efp +cjr +hoG +aat +bgU ecR uqW uqW @@ -68415,11 +68415,11 @@ gno uqW aQY lZi -rWH -xrA -xTo +uKI +mEp +geX ndl -tEF +rcq mOJ mOJ qeX @@ -68476,19 +68476,19 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX ndl -oGH -oGH -xiH -jJI -tgF +nTU +nTU +pXq +eHa +apF bAv bAv -jyl +jui bAv bAv ibv @@ -68496,29 +68496,29 @@ eVE ibv ibv ibv -hRN +emw ibv -aIU +lwW ibv ibv ibv -rXN -rXN -rXN -rXN -qWj -rXN -rXN -sxx -nys -sXN -ewq -ewq +hpO +hpO +hpO +hpO +xIo +hpO +hpO +lCY +lcZ +hnY +pDY +pDY ndl -wgJ -wgJ -wgJ -wgf +nGX +nGX +nGX +oWW qeX qeX qeX @@ -68579,35 +68579,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -pYA -pYA -pCO -rqQ -cAF -nJc -gfi -gfi -gfi -nJc -hLX +tvg +ifx +ifx +aGM +bzB +iJq +gxZ +roQ +roQ +roQ +gxZ +jVw cXN -mRi -mQq -mRi +dfa +uam +dfa cXN -wOa -sPm +iev +pjd sOT qiK -sPm -igj -tCh -kVd -kFt -ekD +pjd +jhf +uxu +bTM +jGO +bgU qAA aFt uqW @@ -68617,11 +68617,11 @@ pcM lCE aQY lZi -iMs -oZm -xTo +cEf +bLp +geX ndl -mep +odY mOJ mOJ qeX @@ -68678,49 +68678,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -oGH -oGH -oGH -xiH -xiH -lXX -lXX -lXX -jtD -jJI -kgv +nTU +nTU +nTU +nTU +pXq +pXq +uHK +uHK +uHK +xQy +eHa +xkq cdT erA uPL ibv -aCc -jaZ +lqK +uTi vnE -gOP +chM fYA -iMJ -aua +bcx +ssg ibv -mcS -vjG -sdf -kOl -ipE -xlY -mFD -mFD -mFD -nys -sXN -ewq -ewq -ewq -ewq +hbh +vwt +qPB +kGB +dVY +rvL +foT +foT +foT +lcZ +hnY +pDY +pDY +pDY +pDY ndl -tEF +rcq qeX qeX qeX @@ -68781,35 +68781,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -tdK -pYA -pCO -svU -rbz -jzf -taR -tWr -jPk -tsA -fMX +tvg +ayZ +ifx +aGM +aJv +wBj +plX +srM +tke +nZC +cjs +oHQ cXN cXN cXN cXN cXN -pkE -sPm +sKC +pjd iTS qiK -uoP -svA -tCh -gfi -hZA -pCO +lQR +efp +uxu +roQ +lGF +aGM rtO aFt uqW @@ -68819,11 +68819,11 @@ eea lCE oKw lZi -nwD -oZm -xTo +bdy +bLp +geX ndl -tEF +rcq mOJ mOJ qeX @@ -68880,49 +68880,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -xqz -xiH -jJI -xiH -jJI -lXX -xiH -jJI -dQr -jJI -bmW +nTU +uPf +pXq +eHa +pXq +eHa +uHK +pXq +eHa +kic +eHa +kzR cdT -mOH -gTb +kTe +gIW ibv -tJw -bmF +sIG +ccl vnE -gbR +weP fYA -mEW -eKp +owa +aAj ibv -djn -vjG -qfU -nxk -nxk -nxk -ipE -qEK -mFD -nys -sXN -nys -nVk -lfc -ewq +tYP +vwt +dPp +saB +saB +saB +dVY +cWK +foT +lcZ +hnY +lcZ +gVW +peI +pDY ndl -tEF +rcq qeX qeX qeX @@ -68983,35 +68983,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -pYA -pYA +wSP +ifx +ifx hPk hPk -tCn +jCl hPk hPk -fcO -gfi -gfi -qsE -vKm -dmM -rzZ -pzq -mQF +hOX +roQ +roQ +nUA +mbT +ltK +olw +kev +adE eWH -dSS +ktJ vdh -iFY -cwh -wVi -nnN -kVK -kVK -abL +bPr +cwQ +goT +tJX +kCW +kCW +jYb sPe cye cye @@ -69021,11 +69021,11 @@ lrY pOv fVA oaa -xrA -bbH -frm +mEp +aiu +asO ndl -ufY +kaM mOJ mOJ qeX @@ -69082,49 +69082,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -urN -xiH -jJI -xiH -xcV -lXX -xiH +nTU +wWh +pXq +eHa +pXq +eIN +uHK +pXq cdT cdT -mZN +wEu cdT cdT -esy +qwC cdT ibv ibv ibv -fau +czw ibv -aIU +lwW ibv ibv ibv -dRk -pUD -iPr -gqr -aWb -aWb -aWb -xNv -mFD -tOS -nys -sXN -sXN -uAt -ewq +pSC +kGg +qEQ +gNY +fPi +fPi +fPi +eyD +foT +dZc +lcZ +hnY +hnY +vIX +pDY ndl -tEF +rcq qeX qeX qeX @@ -69185,35 +69185,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -tdK -dBC +wSP +ayZ +gTT hPk sDq cZE jOk uER -lzX -gfi -gfi -jrp -vKm -kik -txM -vjZ -fCj -sbz -sPm +aSb +roQ +roQ +xCy +mbT +fGJ +xLn +kcx +act +fHa +pjd eND -lOq -eto -pCO -pCO -oOq -pCO -pCO +eBL +bni +aGM +aGM +qGj +aGM +aGM cqD uqW uqW @@ -69223,11 +69223,11 @@ fgf uqW ylz oaa -xrA -oZm -frm +mEp +bLp +asO ndl -tEF +rcq mOJ mOJ qeX @@ -69284,49 +69284,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -jJI -jJI -xiH -jJI -kio -lXX -xiH +nTU +eHa +eHa +pXq +eHa +por +uHK +pXq cdT -muU -mOH -mOH -pOQ -pdT +ihz +kTe +kTe +xYz +oBI cdT -rsV -rQI -pvy -mge -sLc -csR -pvy -csR -kje -jxy -iYO -dWy -dWy -dWy -dWy -dWy -cXz +eSD +gbF +lIv +sRl +ltv +ggQ +lIv +ggQ +nlX +kgp +ufB +qqX +qqX +qqX +qqX +qqX +oQT aVk aVk aVk aVk aVk -sXN -ewq +hnY +pDY ndl -tEF +rcq qeX qeX qeX @@ -69387,35 +69387,35 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -tdK -sYB +tvg +ayZ +pCQ hPk gJg cZE jQz uER -tCh -gfi -gfi -noI -vKm -ual -umk -smM -vKm -dop -sPm +uxu +roQ +roQ +qwl +mbT +vTB +uAS +cGq +mbT +nxQ +pjd cZk -lOq +eBL fHh joE gZn hgw cYJ -jxz +xLQ hgw uqW pch @@ -69425,11 +69425,11 @@ fgf uqW uXk lZi -xrA -oZm -xTo +mEp +bLp +geX ndl -fwT +fbo mOJ mOJ qeX @@ -69486,49 +69486,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -xiH -xiH -jJI -qgy -rJb -lXX -jJI +nTU +pXq +pXq +eHa +dDv +suf +uHK +eHa cdT -qzn -bpb -hWT -jKk -jKk +jcs +ojp +xxo +nTg +nTg cdT -ipE -pDE -pDE -qnZ -pDE -pDE -pDE -pDE -kje -hcM -rIF -lpr -lpr -lpr -lpr -lpr -cdO -oZr +dVY +kWA +kWA +vBO +kWA +kWA +kWA +kWA +nlX +azz +srE +qxp +qxp +qxp +qxp +qxp +lvz +dvb kMt eDK -vsd +rwk aVk -aza -ewq +kWF +pDY ndl -tEF +rcq qeX qeX qeX @@ -69589,34 +69589,34 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -tdK -gYP +tvg +ayZ +seE hPk iCp cZE -afi +jMc uER -nIP -rCG -gfi -nNa -vKm -vjI -mox -smM -vKm -mOt -hJt -fqE -tle +jTG +ksp +roQ +kNc +mbT +jiT +veY +cGq +mbT +mrh +klU +cUF +nJf fHh -ckx +dSz oaa -jbR -cMT +lmI +fXI oaa tAO uSV @@ -69627,11 +69627,11 @@ fTR uqW hgw lZi -mLh -nwD -xTo +lUe +bdy +geX ndl -tEF +rcq mOJ mOJ qeX @@ -69688,49 +69688,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -oeG -xiH -lXX -lXX -lXX -lXX -jJI +nTU +xrI +pXq +uHK +uHK +uHK +uHK +eHa cdT -mwQ -dhI +pzC +emT gKu fqB uYz cdT -ipE -csR -csR -nRI -xLj -xLj -xLj -xLj -hdV -tht -kXr -lpr -lpr -lpr -lpr -lpr -cdO +dVY +ggQ +ggQ +ksT +nCQ +nCQ +nCQ +nCQ +spO +cJU +uWi +qxp +qxp +qxp +qxp +qxp +lvz aVk vEf kMt -mbi +qEr aVk -sXN -ewq +hnY +pDY ndl -tEF +rcq qeX qeX qeX @@ -69791,31 +69791,31 @@ qeX qeX mOJ mOJ -tag +klp ndl -sEF -pYA -jEg +tvg +ifx +cOh hPk lBn cZE -cVD +fPw hPk -ure +set hPk -kPP -hVR -fCj -bWY -bWY -uiC -bWY +cdI +osv +act +eZA +eZA +fSh +eZA oHB -gXS -oVl -nlE +eXr +fLv +iIc fHh -vIo +eOG oaa xyt oaa @@ -69829,11 +69829,11 @@ uqW uqW hgw lZi -oZm -xBA -xTo +bLp +irS +geX ndl -jkW +ugP mOJ mOJ qeX @@ -69890,49 +69890,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -jJI -xiH -lXX -xKd -gWn -lXX -wrV +nTU +eHa +pXq +uHK +aJY +rcJ +uHK +ycP cdT -mVb -rUn -qvA -nQv -xMk -xFU -bEM -bEM -bEM -vCd -ipE -ipE -ipE -ipE -kje -nxk -rIF -lpr -lpr -bMu -lpr -lpr -jdq +baX +qYt +xLw +htx +wOk +inf +qmh +qmh +qmh +cHH +dVY +dVY +dVY +dVY +nlX +saB +srE +qxp +qxp +vMt +qxp +qxp +nYH aVk aNW kMt aVk fUF -uEK -ewq +eaj +pDY ndl -tEF +rcq qeX qeX qeX @@ -69993,35 +69993,35 @@ qeX mOJ mOJ mOJ -tag +klp ndl -oEJ -pYA -pYA +wSP +ifx +ifx hPk mrA cZE -xOJ -lLT +eAP +azH uVj hPk -iiY +ehN eKs -ncf -vKm -jki -bkc -bWY -gKI -sgQ +qYJ +mbT +fQO +wsD +eZA +dIL +oDA wWJ -sYs +uYZ fHh tQg aCS hgw cYJ -rNa +agK aQY pde hgw @@ -70031,11 +70031,11 @@ hgw aQY pPH oaa -oZm -mKK -frm +bLp +aQv +asO ndl -tEF +rcq mOJ mOJ qeX @@ -70092,49 +70092,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -hrB -jJI -lXX -dme -eAo -lXX -xiH +nTU +kBu +eHa +uHK +nqx +enh +uHK +pXq cdT -nqO -rab -mOH -mOH -sPJ +lTI +xVa +kTe +kTe +dim cdT -ipE -csR -csR -mge -ipE -csR -csR -csR -kje -nxk -xXA -lpr -lpr -lpr -lpr -lpr -cdO +dVY +ggQ +ggQ +sRl +dVY +ggQ +ggQ +ggQ +nlX +saB +weZ +qxp +qxp +qxp +qxp +qxp +lvz aVk -qfw -qfw +jGm +jGm aVk -cgQ -qip -ewq +jCI +rpl +pDY ndl -tEF +rcq qeX qeX qeX @@ -70195,11 +70195,11 @@ qeX mOJ mOJ mOJ -tag +klp ndl -oEJ -iDr -pYA +wSP +hVL +ifx hPk hRo cZE @@ -70207,22 +70207,22 @@ cZE cZE pdE hPk -axT +vYD eKs -aKd -vKm -vpy -eTh -bWY -dop -sPm +dJs +mbT +vQA +eOi +eZA +nxQ +pjd kii -tKk +iVc fHh -fBY +kgs oaa -jbR -rfE +lmI +ctS oaa uAT uAT @@ -70233,11 +70233,11 @@ uAT nfh uAT uAT -oZm -xrA -frm +bLp +mEp +asO ndl -tEF +rcq mOJ mOJ qeX @@ -70294,49 +70294,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -xiH -jJI -hiC -xiH -xiH -lXX -xiH +nTU +pXq +eHa +wxT +pXq +pXq +uHK +pXq cdT cdT cdT -guO +aUZ cdT cdT cdT -ipE -pDE -pDE -mge -ipE -csR -pDE -pDE -kje -jBY -rIF -lpr -lpr -lpr -lpr -lpr -cdO +dVY +kWA +kWA +sRl +dVY +ggQ +kWA +kWA +nlX +oDK +srE +qxp +qxp +qxp +qxp +qxp +lvz aVk wVe wVe aVk -nys -sXN -ewq +lcZ +hnY +pDY ndl -tEF +rcq qeX qeX qeX @@ -70397,49 +70397,49 @@ qeX mOJ mOJ mOJ -tag +klp ndl -oEJ -tdK -ndN +wSP +ayZ +chA hPk mrA cZE -jTB -iMN -ago +gOS +ftH +dWs hPk -mql +gUT eKs -lrK -vKm -gQg -bkc -bWY -dop -sPm +usF +mbT +byt +wsD +eZA +nxQ +pjd kii -iqD +oWt fHh -xdv +snR oaa oaa oaa oaa uAT -ydu -wXJ -nPO +gnq +err +mPl uAT -nPO -wXJ -bfl +mPl +err +bWG uAT -rSR -oZm -frm +dsZ +bLp +asO ndl -tEF +rcq mOJ mOJ qeX @@ -70496,49 +70496,49 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -xiH -jJI -lXX -pcJ -xiH -lXX -xiH -kio +nTU +pXq +eHa +uHK +vRg +pXq +uHK +pXq +por cdT -puz +mYB sPo -mOH -qIx +kTe +oqn cdT -wgI -csR -pDE -mge -ipE -csR -pDE -csR -kje -jxy -iYO -aMK -aMK -aMK -aMK -aMK -cXz +abp +ggQ +kWA +sRl +dVY +ggQ +kWA +ggQ +nlX +kgp +ufB +iif +iif +iif +iif +iif +oQT aVk -ipD -dut +gmE +euw aVk -nys -nys -ewq +lcZ +lcZ +pDY ndl -tEF +rcq qeX qeX qeX @@ -70599,11 +70599,11 @@ qeX qeX mOJ mOJ -tag -oEJ -oEJ -pYA -tDg +klp +wSP +wSP +ifx +bHp hPk muL muL @@ -70611,37 +70611,37 @@ muL hPk hPk hPk -eSI +lqg eKs dYs -bWY -bWY -uiC -bWY -gKI -sgQ +eZA +eZA +fSh +eZA +dIL +oDA wWJ -rwU +laI fHh -emW +gfw wWJ -vdZ -qxd -rZj +rOt +guZ +mse uAT -pxI +xJA sKX -iui +bvc uAT -ePg +gVq sKX -eTy +mFG uAT -rfF -oZm -frm -frm -tEF +bYs +bLp +asO +asO +rcq mOJ mOJ qeX @@ -70696,53 +70696,53 @@ qeX qeX qeX qeX -oGH -oGH -oGH -oGH -oGH -vHd -lXX -lXX -lXX -vHd -lXX -jJI -xiH +nTU +nTU +nTU +nTU +nTU +kfZ +uHK +uHK +uHK +kfZ +uHK +eHa +pXq cdT -hvT +fag aRY -mOH +kTe cdT cdT -mFD -csR -pDE -mge -ipE -csR -pDE -csR -mFD -jiq -kCb -adL -iHa -sSF -sSF -sSF -nZb +foT +ggQ +kWA +sRl +dVY +ggQ +kWA +ggQ +foT +bIE +wzN +iCz +pZw +ueU +ueU +ueU +oSt aVk aVk aVk aVk -ccm -vUM -ewq -ewq -ewq -ewq -ewq +hWO +nKX +pDY +pDY +pDY +pDY +pDY qeX qeX qeX @@ -70801,49 +70801,49 @@ qeX qeX mOJ mOJ -tag -oEJ -ydx -tdK -cxB +klp +wSP +oYI +ayZ +uhV dYs -jvh -xIj -pwG +ktA +xWE +eNF rSd -any -hkb -scV +stl +rLz +gpp eKs upf -uhQ -kCV -pkw -sJh -eHq -klw +afZ +gyk +oHr +xBK +wWu +cep upf -nsu +kBj fHh jTK -hYS -bhg -wvR -nxj +sPG +sjt +iKk +aSM uAT -wCH -wXJ -mhQ +ims +err +cEI uAT -mhQ -wXJ -xgx +cEI +err +rIg uAT -mlL -xrA -oZm -frm -tEF +alL +mEp +bLp +asO +rcq mOJ mOJ qeX @@ -70898,53 +70898,53 @@ qeX qeX qeX qeX -oGH -xiH -wbZ -xiH -jJI -jJI -kcH -xiH -sZQ -xiH -fhB -jJI -cia +nTU +pXq +toi +pXq +eHa +eHa +edh +pXq +aHS +pXq +vDI +eHa +jKr cdT -fvt -afl -tfF +nBv +eTG +tvE cdT cdT -mFD -oXq -pDE -mge -ipE -csR -pDE -vFO -mFD -rsV -pDE -oWy -nof -nSP -pDE -ipE -qGJ -dHH -nys -woV -sXN -sDj -nys -nys -sXN -ybM -sXN -ewq +foT +gqn +kWA +sRl +dVY +ggQ +kWA +gBy +foT +eSD +kWA +wUU +tEV +hoB +kWA +dVY +lMB +enW +lcZ +eWs +hnY +iZS +lcZ +lcZ +hnY +lir +hnY +pDY qeX qeX qeX @@ -71003,29 +71003,29 @@ qeX qeX mOJ mOJ -tag -oEJ -xPc -tdK +klp +wSP +cmZ +ayZ dYs dYs -wlx +kry jti hjf -qYd -ngS +oDP +dtl epe epe eKs -pYM -klw -klw -pkw -wPf -dYa -qTL +cmj +cep +cep +oHr +oMm +gkQ +apZ xzu -pkT +cMN qiK wyf uAT @@ -71034,18 +71034,18 @@ uAT uAT uAT uAT -uSA +uKx fbj uAT fuC -fWC +nDt uAT uAT uAT -xrA -oZm -frm -tEF +mEp +bLp +asO +rcq mOJ mOJ qeX @@ -71100,16 +71100,16 @@ qeX qeX qeX qeX -uKX -blV -aot -aot -aot -aot -aot -aot -aot -aot +aOE +oPd +sDK +sDK +sDK +sDK +sDK +sDK +sDK +sDK ydm ydm cdT @@ -71119,34 +71119,34 @@ cdT cdT cdT cdT -mFD -wjM -uOu -kGh -gua -wjM -uOu -wjM -mFD -mFD -mFD -mFD -mFD -mFD -mFD -mFD -mFD -mFD -nUk -nUk -lCI -nUk -nUk -nUk -nUk -nUk -dfX -ofN +foT +gNH +uFf +eTs +iiX +gNH +uFf +gNH +foT +foT +foT +foT +foT +foT +foT +foT +foT +foT +bmP +bmP +dKT +bmP +bmP +bmP +bmP +bmP +exn +fim qeX qeX qeX @@ -71205,49 +71205,49 @@ qeX qeX mOJ mOJ -tag -oEJ -pYA -tdK +klp +wSP +ifx +ayZ dYs -tnz -sEj -mOU -nmo +ugg +jic +iXF +lwZ fjD -xRd +spX nHj mrt hNv -jHF -feC -feC -vLc -bJu -qPU -sUC +uGC +vCz +vCz +drT +lsa +aWA +bYK xzu -pkT +cMN eab cJX -kcb -tOw -xRD -qZx +fBr +lPA +wnl +bvK hCJ -nvL -aWq -kmt -gZl -kmt -aWq -mzk -gKt +aMu +skE +wGC +ufH +wGC +skE +bcv +kph uAT -oZm -hxH -frm -tEF +bLp +elv +asO +rcq mOJ mOJ qeX @@ -71302,53 +71302,53 @@ qeX qeX qeX qeX -uKX -kwU -aot -bmx -wpz -eKd -ufl -vln -wpz -aot -kra -qsg -smB -ebG -xcQ -reh -aba -dWw -nWA -nll +aOE +rre +sDK +tSR +cPR +esv +xSA +osN +cPR +sDK +grt +seP +oGd +cAq +xbV +gJW +ilP +cyX +swP +dHo uYX qLT rry -aba +ilP uYX qLT uYX -iXT -aba -dXQ -tgi -cGc -ncJ -xcQ -vTi -aba -own -nUk -gfk -hmC -jvt -oPR -cgZ -tdd -nUk -lSD -ofN +qjf +ilP +qvl +wBS +wvN +dDQ +xbV +hvN +ilP +ara +bmP +bFh +quA +hhk +nmc +pmO +wiR +bmP +kcl +fim qeX qeX qeX @@ -71406,37 +71406,37 @@ qeX qeX qeX mOJ -fDe +hIJ ndl -oEJ -neD -pYA +wSP +kCO +ifx dYs -tnz -sEj -bdG -bBp +ugg +jic +nOB +qkG gsO -gsw +mOC epe cnt -oqy +foA upf -cxg -ycQ -klw -eHq -dMZ -ouf +pbm +rPO +cep +wWu +bQg +aUk upf -eYZ +aHV jTK jTK -vSF -wPJ -xiD -vSF -ean +ayX +vYO +pst +ayX +tOi eGK sbp sbp @@ -71444,13 +71444,13 @@ sbp sbp sbp opo -qkq +maw uAT -oZm -eQR -frm +bLp +wMD +asO ndl -wgf +oWW mOJ qeX qeX @@ -71504,16 +71504,16 @@ qeX qeX qeX qeX -uNk -uMq -uNk -gkd -gUN -mZY -gUN -jSe -jQV -nsh +bZl +jYC +bZl +ptA +sjD +hyG +sjD +dJY +rmC +kgO qLT uYX qjz @@ -71525,11 +71525,11 @@ vuh dhH qLT uYX -qEO -vYx -amK -amK -xfb +qov +esP +fGR +fGR +rNP eCf qhX qhX @@ -71541,16 +71541,16 @@ qhX qhX eCf qhX -qdL -gvQ -wZf -nkg -ddg -nkg -jkr -osi -sPO -oDN +hYP +qzr +nfw +tXh +pzz +tXh +cEY +ksf +trr +dWU qeX qeX qeX @@ -71608,26 +71608,26 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -eoq -ndN +wSP +mDF +chA dYs -tnz -sEj -bdG -mBT +ugg +jic +nOB +tib gsO -pey +kxY epe -qzt +wUv dYs upf upf upf -dJF -waF +luZ +iBw upf upf upf @@ -71638,21 +71638,21 @@ uAT uAT uAT uAT -rdr +vEb rFG kWI kWI aYw -iBc -ial -mLk -wza +hoT +pVZ +laD +kyH uAT -mLh -xBA -frm +lUe +irS +asO ndl -tEF +rcq mOJ mOJ qeX @@ -71706,16 +71706,16 @@ qeX qeX qeX qeX -uNk -uMq -uNk -cYU -jQV -eAa -nkC -rTY -fKk -nsh +bZl +jYC +bZl +gHm +rmC +rEd +uvs +rBH +jqG +kgO qLT uYX uYX @@ -71727,11 +71727,11 @@ qrc icV uYX uYX -qEO +qov eXD -aba +ilP qLT -uvg +rzF uYX uYX uYX @@ -71743,16 +71743,16 @@ uYX uYX uYX qLT -mJH -vfy -pBL -dmG -clg -qYf -giw -oDN -qfm -oDN +aYs +cyO +qKk +pxL +gBB +imb +kjX +dWU +erf +dWU qeX qeX qeX @@ -71810,51 +71810,51 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -iDr -pYA +wSP +hVL +ifx dYs -tnz -sEj -fzk -bBp +ugg +jic +qDK +qkG gsO -dka -oqy +pcv +foA dYs dYs -sWC -brX -rmb +wwP +lqw +hty oWY rsr -wOn -uhL -vjq -uhL -uhL -uhL -azt -blp -mRL +clU +ptr +ezU +ptr +ptr +ptr +dda +gbl +tyb uAT -nii +qKX sbp sbp sbp eGK -pnz +uHj uAT iRj iRj uAT -vVm -nwD -frm +lSH +bdy +asO ndl -tEF +rcq mOJ mOJ qeX @@ -71908,53 +71908,53 @@ qeX qeX qeX qeX -uNk -uMq -uNk -cYU -jQV -jQV -jQV -mFk -hTk -nsh +bZl +jYC +bZl +gHm +rmC +rmC +rmC +gYf +xit +kgO qLT -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -snw +eIY +eIY +eIY +eIY +eIY +eIY +eIY +eIY +eIY +eIY +oXU eXD -aba +ilP qLT -nDG -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH +jby +eIY +eIY +eIY +eIY +eIY +eIY +eIY +eIY +eIY +eIY qLT -mJH -wNJ -pMa -qYf -qYf -qYf -giw -oDN -qfm -oDN +aYs +nGk +pUw +imb +imb +imb +kjX +dWU +erf +dWU qeX qeX qeX @@ -72012,22 +72012,22 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -pYA -tdK +wSP +ifx +ayZ dYs -hOx -sVc -hmE -bBp +kwO +egV +spu +qkG gsO -qei -pzB +idU +jQY ufd -kBi -pTP +gwq +bmh rtM pYm jcw @@ -72040,23 +72040,23 @@ jcw jcw hzx qgK -ogZ +rtP uAT -mdK -dBA -mLk -mLk +hPz +mtw +laD +laD eGK isW -frz -cjO -aWq -frz -xrA -oIA -frm +iUo +pZt +skE +iUo +mEp +pCC +asO ndl -tEF +rcq mOJ mOJ qeX @@ -72110,16 +72110,16 @@ qeX qeX qeX qeX -uNk -uMq -uNk -gVf -lkT -kwe -txf -qqv -deY -lju +bZl +jYC +bZl +gZv +vFm +tIu +aSi +xom +vly +jwx sgC eIS sgC @@ -72133,7 +72133,7 @@ sgC sgC sgC pOg -vnm +vrr sgC sgC sgC @@ -72147,16 +72147,16 @@ sgC sgC eIS sgC -aBg -qgJ -fkU -bax -emi -djc -adc -oDN -qfm -oDN +cCi +wAu +bRf +ngk +beZ +rQe +nux +dWU +erf +dWU qeX qeX qeX @@ -72214,51 +72214,51 @@ qeX qeX mOJ mOJ -tag +klp ndl -oEJ -pYA -tdK +wSP +ifx +ayZ dYs dYs dYs dYs dYs gsO -qei -pzB +idU +jQY ufd -tdu +stA rtM dWM oWY -css -vsF -vsF -vsF -vsF -vsF -dUD -vsF -wqE +rsC +qnL +qnL +qnL +qnL +qnL +rnL +qnL +sZJ fxT -ufc +fXo uAT uAT sbi gCq gCq -tBq +asi sbi sbi uAT uAT uAT -xrA -rWH -frm +mEp +uKI +asO ndl -tEF +rcq mOJ mOJ qeX @@ -72312,53 +72312,53 @@ qeX qeX qeX qeX -uKX -wXC -aot -xMY -wpz -iBt -wVS -vln -wpz -aot -nmB +aOE +rDo +sDK +iTU +cPR +xkg +xpl +osN +cPR +sDK +oGB eXD -aba -aba -aba -eWp -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -mDI -aba -aba -aba +ilP +ilP +ilP +qxc +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +caW +ilP +ilP +ilP eXD -haQ -nUk -tGC -sCj -nGr -fgR -cgZ -tdd -nUk -oaz -ofN +xfB +bmP +pSe +vzw +aup +sAi +pmO +wiR +bmP +xGv +fim qeX qeX qeX @@ -72412,29 +72412,29 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX ndl ndl -oEJ -wdR -pYA -suk -pYA -mtG -qqJ +wSP +pnA +ifx +iSt +ifx +icN +sWU iRu cXN -vtJ -obn +wwf +iJT iRu -wvi +hom rsr oWY -rfC -pgb +rYO +wSM ull ull vgO @@ -72442,29 +72442,29 @@ vgO vgO ull ull -tcP -wqE +vsw +sZJ xYV -wIJ -ppn +iSs +xWs sbi jPF dyk fRZ ixK sbi -oZm -lna -xyE -xrA -oIA -frm +bLp +uEn +uVW +mEp +pCC +asO ndl ndl -wgJ -wgJ -wgJ -wgf +nGX +nGX +nGX +oWW qeX qeX qeX @@ -72514,19 +72514,19 @@ qeX qeX qeX qeX -uKX -blV -aot -aot -aot -aot -aot -aot -ktr -mZC -aba +aOE +oPd +sDK +sDK +sDK +sDK +sDK +sDK +pZX +kly +ilP eXD -aba +ilP uYX uYX uYX @@ -72548,19 +72548,19 @@ qLT pyc qLT uYX -aba +ilP eXD -aba +ilP ydm -ccm -ccm -ccm -ccm -ccm -ccm -ccm -hzq -ofN +hWO +hWO +hWO +hWO +hWO +hWO +hWO +aDR +fim qeX qeX qeX @@ -72614,59 +72614,59 @@ qeX qeX qeX qeX -tag +klp qZo qZo qZo qZo qZo qZo -cDQ -cwl -suk -tdK -tdK -enY +fOj +iPe +iSt +ayZ +ayZ +urW iRu -pHZ -peP -fzv +vTT +fyp +gzs iRu -jaM +tcW fWB -css -otg +rsC +dZf ull ull -knZ -mXN -vno -jdB -kEe +kpR +hMn +orh +qJB +gZy ull ull -kWB -wqE +xqy +sZJ xhi -kME +eBE dZd -rJe +piy hek qWf -oQx +lam sbi -xrA -oZm -xyE -oZm -eVX +mEp +bLp +uVW +bLp +kYY xcY xcY xcY xcY xcY xcY -tEF +rcq qeX qeX qeX @@ -72716,21 +72716,21 @@ qeX qeX qeX qeX -oGH -tPZ -lXX -dAB -hjA -brj -pRi -wuK -gTk -rNW -aba +nTU +eBa +uHK +vOw +eSj +edM +bZD +cCq +fzV +aNm +ilP eXD -dfR -qSH -fbx +rcp +eIY +etm uYX kYb qLT @@ -72748,21 +72748,21 @@ qLT uYX uQq ydm -mpl -qSH -kEI +gzY +eIY +nwQ eXD qLT ydm -wpp -qhz -bGT -mhA -qHb -xcF -ccm -dXh -ewq +cvf +oSl +pVy +rMn +sEe +jBG +hWO +xOn +pDY qeX qeX qeX @@ -72816,59 +72816,59 @@ qeX qeX qeX qeX -tag +klp qZo -pak -pak -oTV -lEn +jMb +jMb +sse +vlJ glg glg glg glg -hgu -tdK -ect +ljC +ayZ +dTK iRu -xzk -peP -fzv +hVi +fyp +gzs iRu -qyv +daG lEt -xft +uxa ull ull -gCk -sjH -sjH -sjH -sjH -sjH -rhR +fwa +lGB +lGB +lGB +lGB +lGB +spa ull ull -swC +meO gJa -cLy +bto dZd -rJe +piy hek tXg -pcV +aGg sbi -xrA -nvF +mEp +fUe rhh rhh rhh rhh -uOC -gEM -kdd -cid +nQu +lLQ +jaR +oZv xcY -tEF +rcq qeX qeX qeX @@ -72918,21 +72918,21 @@ qeX qeX qeX qeX -oGH -xiH -lXX -jsQ -hst -mGG -lXX -sBl -lFq -qXz -aba +nTU +pXq +uHK +iOO +hdR +bav +uHK +vqJ +fUp +qZf +ilP eXD -qEO -aba -uvg +qov +ilP +rzF uYX oJC uYX @@ -72950,21 +72950,21 @@ uYX uYX qLT aaE -qEO -aba -uvg +qov +ilP +rzF eXD uYX ydm -rfI -bGT -bGT -bGT -bGT -bGT -cYF -qxP -ewq +vLz +pVy +pVy +pVy +pVy +pVy +bBX +sRm +pDY qeX qeX qeX @@ -73018,59 +73018,59 @@ qeX qeX qeX qeX -tag +klp qZo -idf -pak -oTV -wyx -fJr +kgh +jMb +sse +fAF +wkN tFX bjg glg -dNa -tdK -pYA +qyD +ayZ +ifx iRu -mRi -tYL -qwc +dfa +dnA +gaN iRu -cSs +mKL oiv -kME +eBE qSJ -uVo -nqc +sVd +lGy ibf oEt oEt oEt ibf -xjd -vFF +tQD +bJG qSJ -cSs +mKL xhi -kME +eBE dZd -aDz +nAs hek uFF -hYq +sgW sbi -xrA -nvF +mEp +fUe rhh -uyD -pZn -prV -jEj -gEM -kdd -tRG +iHf +lGV +pNh +nKb +lLQ +jaR +hQZ xcY -tEF +rcq qeX qeX qeX @@ -73120,53 +73120,53 @@ qeX qeX qeX qeX -oGH -xiH -ouv -ouv -ouv -ouv -ouv -opf -vnL -qXz -aba +nTU +pXq +wfX +wfX +wfX +wfX +wfX +kEu +lfR +qZf +ilP eXD -lnW -wuX -jhz -kxj -rIK -wuX -pUc -kxj -rIK -wuX -pUc -kxj -rIK -wuX -pUc -kxj -rIK -wuX -pUc -kxj -dbk -wuX -gnM +sXO +qpI +pgm +jCH +mIq +qpI +rMY +jCH +mIq +qpI +rMY +jCH +mIq +qpI +rMY +jCH +mIq +qpI +rMY +jCH +rDb +qpI +uyd eXD uQq ydm -bqt -bGT -bGT -bGT -bGT -qCn -ccm -geH -ewq +faO +pVy +pVy +pVy +pVy +dSG +hWO +dtn +pDY qeX qeX qeX @@ -73220,59 +73220,59 @@ qeX qeX qeX qeX -tag +klp qZo -pak -pak -oTV -fww -qZX +jMb +jMb +sse +umP +rGh jPA uFh glg -iDr -tdK -pYA +hVL +ayZ +ifx iRu iRu -ucP -okP +lwH +bih iRu -vPJ +knr ipi -kME +eBE qSJ -odr -nqc +eXH +lGy oru cOe hYk cOe xSR -xjd -rfW +tQD +itZ qSJ -tdu +stA rsr -glJ +wXd sbi sbi -mJD +oTn sbi sbi sbi -oZm -oZm +bLp +bLp rhh -ePz +waG qva uyN -xPf -gEM -kdd -cid +tCY +lLQ +jaR +oZv xcY -tEF +rcq qeX qeX qeX @@ -73322,19 +73322,19 @@ qeX qeX qeX qeX -oGH -hrB -ouv -vIC -gMT -xEP -ouv -hWH -dxr -qXz -aba +nTU +kBu +wfX +gkp +vFv +ivi +wfX +dpX +tfx +qZf +ilP eXD -vtg +qYC pky pky pky @@ -73356,19 +73356,19 @@ twV pky pky pky -eCs +efM eXD uYX ydm -eej -bGT -tPw -anf -qbF -vOd -ccm -lLX -ewq +eVh +pVy +xxj +aJT +tgW +pjT +hWO +cNU +pDY qeX qeX qeX @@ -73422,51 +73422,51 @@ qeX qeX qeX qeX -tag +klp qZo qZo jsN jsN nIW -ixn +dPJ lcy mdY glg -cMP -tdK -pYA +dtZ +ayZ +ifx iRu -pHZ -rSN -tEA +vTT +iim +hPi iRu -jKT +jyf ipi -kME +eBE qSJ -gcL -nqc +qJX +lGy oru cOe lqM cOe xSR -xjd -jGJ +tQD +nsG qSJ -wrt +ieu rsr -kME +eBE sbi -dBp -kBA -dgt +rrl +vMU +nce sbi -xqT -oZm -xBs +gzi +bLp +vdA rhh -rAe +edf dRz uyN wZJ @@ -73474,7 +73474,7 @@ woc woc xcY xcY -tEF +rcq qeX qeX qeX @@ -73524,19 +73524,19 @@ qeX qeX qeX qeX -oGH -xiH -ouv -cfD -jJI -dVU -ouv -pBo -pBo -nbS -vIq +nTU +pXq +wfX +gKB +eHa +swq +wfX +aYS +aYS +mJh +aDx eXD -djS +dVE pky pky pky @@ -73545,8 +73545,8 @@ eka kkT rec gUI -tow -tow +sgi +sgi jcL mfM vMc @@ -73558,19 +73558,19 @@ bWR pky pky jho -iSM +lre eXD qLT ydm -aWM -bGT -bGT -bGT -bGT -bGT -ccm -qxP -ewq +cFA +pVy +pVy +pVy +pVy +pVy +hWO +sRm +pDY qeX qeX qeX @@ -73624,59 +73624,59 @@ qeX qeX qeX qeX -tag +klp pur -twz -mMR -sfQ -sfQ -pYv +sCX +prY +mwo +mwo +rqe jPA uFh glg -rRa -vrO -tdK +lUH +lYy +ayZ iRu eYc hBF hBF iRu -gga +aYW oiv -kME +eBE ull -noC -jyj +bwQ +hcR fbF rwN aZc qss tdP -evF -bPp +lof +hhD ull -tQp +bBf xhi -jSZ +sgV sbi -cfU -nnX -hTX +vWW +bjF +xXE sbi -xqT -oZm -bEf +gzi +bLp +hSB rhh -fXX +qbw uyN uyN -wAr -wAr -kFI -otB +yfR +yfR +bci +aSX cra -tEF +rcq qeX qeX qeX @@ -73726,31 +73726,31 @@ qeX qeX qeX qeX -oGH -uTl -ouv -ajB -jJI -jJI -nlO -jJI -jJI -tta -aba +nTU +lRZ +wfX +gJz +eHa +eHa +emG +eHa +eHa +fxS +ilP eXD -eTS +ieG pky pky pky pSI ggS -qVS -eQJ -qVS -uRQ -uRQ -qVS -aPa +sAd +gTB +sAd +wwF +wwF +sAd +bEp gTp wpT myQ @@ -73760,19 +73760,19 @@ ipY ciG pky mVQ -uWY +fhn eXD qLT ydm -ojh -kjE -mwb -bGT -bGT -bGT -ccm -qxP -ewq +wWY +frV +iCC +pVy +pVy +pVy +hWO +sRm +pDY qeX qeX qeX @@ -73826,10 +73826,10 @@ qeX qeX qeX qeX -tag +klp pur -sHn -vOQ +ctq +oka jPA jPA jPA @@ -73837,48 +73837,48 @@ jPA uFh glg glg -rqH -rQR +mpz +dEy iRu -mRi -mRi -xhx +dfa +dfa +rTS iRu -khE +fJh oiv -kME +eBE qSJ -pqk -nqc +hLQ +lGy oru aoK lqM cOe xSR -xjd -bkb +tQD +cgi qSJ -rJP +xoP gJa -kCn +jXv sbi -pjo -cxj +kpp +blr sbi sbi -ndX -uFX -uFX +qrx +vBT +vBT rhh -wtB +ubK uyN uyN uyN uyN -xsA -cya +aJr +fUr cra -tEF +rcq qeX qeX qeX @@ -73928,53 +73928,53 @@ qeX qeX qeX qeX -oGH -xiH -ouv -hIP -jJI -hYN -vlG -rUe -hZj -cyM -aba +nTU +pXq +wfX +slN +eHa +abI +mfc +dpa +psb +twr +ilP eXD -srY +iAz vXe sjC iSB igH ipN -nhY -sFP -sFP -sFP -sFP -sFP -iMr -qVS -jwE -qVS -aPa -qVS -aPa +mnt +sPw +sPw +sPw +sPw +sPw +wSe +sAd +uTs +sAd +bEp +sAd +bEp qvK oCh fQA -azj +mIc eXD -aba +ilP ydm -aWI -bGT -bGT -bGT -bGT -lCU -ccm -erk -ewq +xvX +pVy +pVy +pVy +pVy +eLl +hWO +cez +pDY qeX qeX qeX @@ -74028,59 +74028,59 @@ qeX qeX qeX qeX -tag +klp pur -uLd -tnN -bVZ -bVZ -qZX +dYt +vDd +kNX +kNX +rGh jPA iUz glg -vWL -ijg -pYA +gXr +uCC +ifx iRu iRu iRu iRu iRu -bOI +fkB oiv -kME +eBE qSJ -mSa -nqc +qxD +lGy oru aoK hYk cOe xSR -xjd -bkb +tQD +cgi qSJ -cSs +mKL xhi -vBr +ofP sbi sbi sbi sbi -rjR -xrA -xpb -jqg +uGs +mEp +mId +pSt rhh -kQX +cCw mrG uyN -jmc -jmc -hEQ -vRH +nfg +nfg +xOU +tGH cra -tEF +rcq qeX qeX qeX @@ -74130,53 +74130,53 @@ qeX qeX qeX qeX -oGH -jJI -ouv -ouv -hIh -ouv -ouv -lXX -lXX -lXX -aba +nTU +eHa +wfX +wfX +wxh +wfX +wfX +uHK +uHK +uHK +ilP eXD -vtg +qYC qMu fqy -fpl -hNN +tPo +cPd uuf -lmj -qVS -aPa -qVS -aPa -qVS -lmj -sFP -sFP -sFP -sFP -sFP -sFP -tbl +btx +sAd +bEp +sAd +bEp +sAd +btx +sPw +sPw +sPw +sPw +sPw +sPw +pdX pky pky -eCs +efM eXD -szu -ccm -ccm -bGT -xvw -dhG -bGT -vOd -ccm -erk -ewq +lIG +hWO +hWO +pVy +bRQ +jbF +pVy +pjT +hWO +cez +pDY qeX qeX qeX @@ -74230,50 +74230,50 @@ qeX qeX qeX qeX -tag +klp qZo qZo jsN jsN nIW -pYY +vMQ jPA qOe -lxz -sbg -jsI -fhA -oIp +wen +lll +cMY +dkk +gZV pYm pYm -hDZ -uhL -pTP +doF +ptr +bmh ipi -kME +eBE qSJ -ult -nqc +fFQ +lGy ibf uSF xiK xiK ibf -xjd -bkb +tQD +cgi qSJ -tdu +stA rsr -obo -uhL -acW +lxr +ptr +ndh lax xSN -gpz -qGt -rse -rse -aSV +cMf +tnr +uPx +uPx +gJp bDm hdF hMy @@ -74282,7 +74282,7 @@ woc woc xcY xcY -tEF +rcq qeX qeX qeX @@ -74332,53 +74332,53 @@ qeX qeX qeX qeX -oGH -aLu -lXX -coy -xiH -sHz -fAl -iYn -vKR -lXX -hAm +nTU +bVY +uHK +pql +pXq +rLD +quC +xpM +bSh +uHK +ned eXD -djS +dVE qMu iGP -dLG -uQv -pHC -cvV +ncY +fJH +hyZ +orI uYP pVM qWG pAQ qTA -kaC -sFP -hKI -sFP -hKI -sFP -hKI -uRQ +ktF +sPw +fyo +sPw +fyo +sPw +fyo +wwF pky pky -iSM +lre eXD -qol -ovJ -hOE -qRW -qvw -dDC -bGT -gYV -ccm -erk -ewq +mKO +shO +hxe +fNl +roO +ydM +pVy +waY +hWO +cez +pDY qeX qeX qeX @@ -74432,59 +74432,59 @@ qeX qeX qeX qeX -tag +klp qZo -pak -pak -oTV -lEn -pYv +jMb +jMb +sse +vlJ +rqe jPA -iGx +qMJ glg -sZw -fQh -rsy -lge +cwG +gyS +qOS +aqi oWY oWY xYV dko bIr rhf -cLy +bto ull ull -vJz -oNK -aDB -oNK -oNK -oNK -gLm +gbV +kEJ +kdM +kEJ +kEJ +kEJ +pni ull ull -hlj +qHg xYV jcw kKv iJm dzK fXH -vSy -cOy -kEd -riZ +emC +tQb +aeR +bBC rhh -wtB +ubK nDQ hMy -ikY -gEM -kdd -cid +emb +lLQ +jaR +oZv xcY -tEF +rcq qeX qeX qeX @@ -74534,53 +74534,53 @@ qeX qeX qeX qeX -oGH -jJI -fhB -xiH -jJI -lap -jJI -xiH -jJI -bNl -qEO +nTU +eHa +vDI +pXq +eHa +bmB +eHa +pXq +eHa +vsj +qov eXD -eTS +ieG qMu pJK -tvD -acd +lte +tjk oMK -lmj -qVS -aPa -qVS -aPa -qVS -lmj -sFP -sFP -sFP -sFP -sFP -sFP -uRQ +btx +sAd +bEp +sAd +bEp +sAd +btx +sPw +sPw +sPw +sPw +sPw +sPw +wwF pky pky -uWY +fhn eXD -srS -ovJ -lHI -xMx -bGT -bGT -bGT -xhY -ikR -eaP -ewq +mpU +shO +eHR +kQf +pVy +pVy +pVy +dcW +iDV +sgd +pDY qeX qeX qeX @@ -74634,59 +74634,59 @@ qeX qeX qeX qeX -tag +klp qZo -idf -pak -oTV -wyx -tHF -mvi -glM +kgh +jMb +sse +fAF +xpp +wpn +kkH glg glg -lge -tnc -iVe -iVe -hUz -wqE +aqi +xCr +meE +meE +xNk +sZJ xhi oWY -css -jBE -ycw +rsC +pvP +bTr qSJ -wJa -mZR +oiZ +ckG aXu -qli +awT sZi -xtx -ahd +mot +iNY qSJ -qml -tWI -wqE +rst +uYS +sZJ oWY xhi -css -hmq -rjR -rjR -iLV -cqv -rjR +rsC +oGF +uGs +uGs +kUl +thu +uGs rhh -ipy -clc -prV -ses -gEM -kdd -tRG +baQ +quH +pNh +tTM +lLQ +jaR +hQZ xcY -tEF +rcq qeX qeX qeX @@ -74733,59 +74733,59 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -oGH -xiH -lXX -svK -xiH -qmY -efA -vKR -fAl -lXX -kmn +hIJ +nGX +nGX +nTU +pXq +uHK +tsj +pXq +dPg +aKb +bSh +quC +uHK +nJx eXD -srY +iAz fdw bXV cnn wzD eQS -qks -sFP -sFP -sFP -sFP -sFP -gsT -qVS -xvm -dAi -aPa -qVS -aPa +wsv +sPw +sPw +sPw +sPw +sPw +cTq +sAd +vfl +vYI +bEp +sAd +bEp hdt xpv hyz -azj +mIc eXD -keq -ovJ -lHI -xMx -taa -bGT -tbF -qCn -ccm -qxP -ewq -wgJ -wgJ -wgf +oHA +shO +eHR +kQf +qkA +pVy +xdW +dSG +hWO +sRm +pDY +nGX +nGX +oWW qeX qeX qeX @@ -74836,59 +74836,59 @@ qeX qeX qeX qeX -tag +klp qZo -pak -pak -oTV -fww +jMb +jMb +sse +umP glg glg glg glg -pCt -fQh -rsy -vWL -iVe -iVe -hlj +tuD +gyS +qOS +gXr +meE +meE +qHg xhi -css -eNd +rsC +lLf ull ull ull lYi ull -hMa +ctm ull -owV +nGt ull lYi ull ull ull -wkY -wqE +stZ +sZJ xhi -kME -rjR -rjR -jqg -cOy -kEd -jTo +eBE +uGs +uGs +pSt +tQb +aeR +cSA rhh rhh rhh rhh -xPf -gEM -kdd -cid +tCY +lLQ +jaR +oZv xcY -tEF +rcq qeX qeX qeX @@ -74935,34 +74935,34 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -oGH -hrB -lXX -lXX -iGC -lXX -lXX -lXX -lXX -lXX -hUt +nTU +nTU +kBu +uHK +uHK +ncG +uHK +uHK +uHK +uHK +uHK +hZO eXD -vtg +qYC pky pky pky kCP pMq -qVS -aPa -qVS -uRQ -uRQ -qVS -aPa +sAd +bEp +sAd +wwF +wwF +sAd +bEp jFe pqW oQv @@ -74972,22 +74972,22 @@ vKv lvV pky bBY -eCs +efM eXD dYI -ccm -ccm -bGT -bGT -bGT -jju -vOd -ccm -pnB -ewq -ewq +hWO +hWO +pVy +pVy +pVy +qFb +pjT +hWO +teg +pDY +pDY ndl -tEF +rcq qeX qeX qeX @@ -75038,59 +75038,59 @@ qeX qeX qeX qeX -tag +klp qZo qZo qZo qZo qZo qZo -rTc -fQh -sMc -fQh -fQh -rsy -vWL -mqI -iVe -gga +jjZ +gyS +dZo +gyS +gyS +qOS +gXr +sOa +meE +aYW rsr -dfP +wEq ull ull ull ull -xBq -mIr -xmc +mml +qgs +miG wJt -amR -rKb -kGJ +fTj +jzS +ezv ull ull ull ull -hnr +cOB rsr -kME -rjR -aLo -jqg -pRP -nRh -hfP -iTm -kEd -hRs +eBE +uGs +qPO +pSt +hww +xAk +uKd +dHQ +aeR +ots xcY xcY xcY xcY xcY xcY -tEF +rcq qeX qeX qeX @@ -75137,22 +75137,22 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -jJI -xiH -lXX -juS -ida -vEJ -tzg -wxC -dVm -uGr -gGt +nTU +eHa +pXq +uHK +fLt +hdW +hMv +azE +lUP +jmG +oVC +hay eXD -djS +dVE pky pky pky @@ -75161,8 +75161,8 @@ pPd eFG svY cnw -poP -poP +stV +stV uDP ftl nNB @@ -75174,22 +75174,22 @@ twV pky pky eoS -iSM +lre eXD qLT eEr -pwR -bGT -bGT -bGT -gra -bGT -ccm -yff -lfc -ewq +qzD +pVy +pVy +pVy +ndE +pVy +hWO +ngD +peI +pDY ndl -tEF +rcq qeX qeX qeX @@ -75240,59 +75240,59 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl -oEJ -fQh -oJa -gXQ -dqh -dqh -xxd -fQh -eoq -iVe -aHY -sHS +wSP +gyS +wtZ +jYq +rJr +rJr +hEK +gyS +mDF +meE +qPz +iJN ull ull -kaS -aUj +uPs +kyS ull -kOG -rKb -rFf +fSN +jzS +iCv mqn -dap -rKb -pBW +lQs +jzS +uDv ull -uye -eGm +lNP +xzp ull jol -aCw -qOj -rjR -gsN -xrA -fhT -xrA -pRP -fqN -fNI -cce -frm +wGJ +nHP +uGs +hcZ +mEp +rqA +mEp +hww +xBh +cbM +hxt +asO ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -75339,22 +75339,22 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -jJI -xiH -lXX -gkE -xil -ojK -nLz -qGa -oPM -uGr -cXx +nTU +eHa +pXq +uHK +dvJ +pIk +hkD +mrd +lJR +ndR +oVC +mVl eXD -eTS +ieG pky pky pky @@ -75376,22 +75376,22 @@ bWR pky pky pky -uWY +fhn eXD qLT ydm -gry -bGT -bGT -abx -bGT -cXo -ccm -qxP -uPv -ewq +qWr +pVy +pVy +uZb +pVy +mRn +hWO +sRm +sBi +pDY ndl -tEF +rcq qeX qeX qeX @@ -75442,15 +75442,15 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl -oEJ -vrQ -bBN +wSP +eOf +tRw xQJ xQJ xQJ @@ -75458,27 +75458,27 @@ xQJ xQJ xQJ xQJ -qpW +kZW gnj -amR +fTj ull -rjs -rjs +ern +ern ull wkT ull -prZ +pcL ull -xOr +dfJ ull wkT ull -rjs -rjs +ern +ern ull -sQU +irW gnj -rui +oAD aHH lmc lmc @@ -75486,15 +75486,15 @@ prf prf prf prf -pRP -fNI -frm +hww +cbM +asO ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -75541,59 +75541,59 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -efL -eUV -lXX -cQu -pHM -jXK -mjY -nLz -gMg -uGr -pBQ +nTU +flo +gzv +uHK +lbd +dzy +urA +oDX +mrd +cDE +oVC +dON nVY sgC -cKI +bRz kYQ -oOz -ieN -lsL -oVc -oOz -ieN -lsL -oVc -oOz -ieN -lsL -rYj -rYj -rYj -hPU -rCx -hxA -sWw -lsL -kEI +kKT +eWz +cCC +cVA +kKT +eWz +cCC +cVA +kKT +eWz +cCC +sVf +sVf +sVf +mIj +qFg +gFJ +nYE +cCC +nwQ eXD uYX ydm -fKB -bGT -bGT -bGT -bGT -xyA -ccm -qxP -rBx -ewq +xEU +pVy +pVy +pVy +pVy +vgo +hWO +sRm +ltS +pDY ndl -tEF +rcq qeX qeX qeX @@ -75644,59 +75644,59 @@ qeX qeX qeX qeX -tag +klp ndl ndl -oEJ -oEJ -oEJ -oEJ -rsy -fQh +wSP +wSP +wSP +wSP +qOS +gyS xQJ xQJ xQJ xQJ -faW +qpe vvv -hWX +qyo wbM gnj -gio -qMp -oJE -oJE -cBJ -oJE -tqQ +wrx +xzE +wra +wra +sCL +wra +aKS gnj -cBJ +sCL wbM -tqQ -oJE -cBJ -oJE -oJE -vvV -mVL +aKS +wra +sCL +wra +wra +hQk +pYT gnj wbM -sSp +uVg nQE xUi -hxB -nic -qIX +fkc +uTH +oDI prf -jqg -cOy -frm -frm -frm -frm +pSt +tQb +asO +asO +asO +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -75743,59 +75743,59 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -jJI -qRD -lXX -ivT -nLz -eWj -mQi -wIf -beR -uGr -twO +nTU +eHa +gKR +uHK +lps +mrd +hvH +mco +hWS +vnI +oVC +iIE eXD -aba +ilP fPp unq uYX uYX fPp uYX -dXY -suo -dXY -suo -aFe +fdm +wdL +fdm +wdL +wOy iAF uYX -icy -cYd +wQJ +krH xGK xGK uiA -pQs -gWx -aba -uvg +wqZ +gKQ +ilP +rzF eXD -aba +ilP ydm -kBx -bGT -bGT -ijh -bGT -vOd -ccm -erk -nys -ewq +iiH +pVy +pVy +bJP +pVy +pjT +hWO +cez +lcZ +pDY ndl -tEF +rcq qeX qeX qeX @@ -75846,59 +75846,59 @@ mOJ mOJ qeX qeX -tag +klp ndl ndl -oEJ -beN -lsq -rTc -rsy -fQh +wSP +dxv +mvv +jjZ +qOS +gyS xQJ -cHa -gjp +vDq +quD qmq vvv vee eOu -iUh -mnf -cts -gbK +scn +doW +tUu +lGM cES ilS -rGV -iQq -iQq -mND -mtR -rUR -bEL -bEL -gbK +iHd +nQw +nQw +kvG +lPX +wOM +lpu +lpu +lGM ekT gMA -bSw -cts -ogb -sTt -iJv -tSD -kmu +ejc +tUu +qTG +tWA +gkv +hRE +avb dQp dQp dQp rWV -jqg -cOy -jqg -jqg -jqg -frm +pSt +tQb +pSt +pSt +pSt +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -75945,33 +75945,33 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -jJI -ekt -lXX -xqX -wwy -wwy -eoj -vHw -qaf -aoG -qEO +nTU +eHa +xPW +uHK +bDI +uLO +uLO +mef +izC +fio +iRF +qov eXD -lbt +oFZ fWv oGL yaY yaY fWv euz -dXY -ydK -dXY -suo -dXY +fdm +qGr +fdm +wdL +fdm vOr qLT qLT @@ -75980,24 +75980,24 @@ qLT qLT nVA uuy -qsp -nPw -gnM +mQp +ouK +uyd eXD -lbt +oFZ ydm -jWb -bGT -pkZ -bGT -bGT -fSx -ccm -erk -sXN -ewq +aww +pVy +iZD +pVy +pVy +irf +hWO +cez +hnY +pDY ndl -tEF +rcq qeX qeX qeX @@ -76048,29 +76048,29 @@ mOJ mOJ qeX qeX -tag +klp ndl ndl -oEJ -dJZ -jpd -dqh -phv -qBu +wSP +pSB +iMq +rJr +qNw +wPE xQJ -oww +jbN xCv xCv xCv mYZ eOu -dBx -kJk +otz +fhr hZo -gAl +gnQ hul -mzh -iBC +rCk +yfw hZo hZo hZo @@ -76078,13 +76078,13 @@ hZo hZo hZo hZo -phV -tdR +gLM +cwK qFQ -wZS +wlh hZo -cqX -fwg +vBy +fRf aHH dQp dQp @@ -76092,15 +76092,15 @@ dQp dQp dQp rWV -jqg -ceZ -mrN -xPQ -iLL -frm +pSt +yaw +frc +cCS +hHh +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -76147,59 +76147,59 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -xiH -xiH -lXX -jGW -poN -jJW -nLz -vHw -qaf -aoG -qEO +nTU +pXq +pXq +uHK +fYB +egU +iDO +mrd +izC +fio +iRF +qov eXD -aba +ilP yaY -dvH -gJw -vtm +omT +pcg +pgC yaY uYX -dXY -suo -dXY -suo -dXY +fdm +wdL +fdm +wdL +fdm vfg uYX -aba -uDg +ilP +tbR aeD uYX ptp uYX uYX uYX -sMi +gBi eXD -aba +ilP ydm -vvS -bGT -ldu -bGT -bGT -pwR -ccm -erk -sXN -ewq +vZL +pVy +iOA +pVy +pVy +qzD +hWO +cez +hnY +pDY ndl -tEF +rcq qeX qeX qeX @@ -76250,59 +76250,59 @@ mOJ mOJ qeX qeX -tag +klp ndl ndl -oEJ -oJa -qow -fQh -fQh -qoH +wSP +wtZ +vkj +gyS +gyS +eDA xQJ -dXt -xat -vQP +sDO +vzQ +iPK sPX -dhP +gKN eOu -cuP -dCV +xFu +vZE hZo hZo -wnW +qyJ hZo hZo hZo -cTi -uWw +qyc +sUk hZo -cmP -nUx +uGu +laK hZo hZo hZo -hZB +mBp hZo hZo -dWd -fIu +fhq +ooC cxN -sBa -tLp -pZB -sBa -tLp +sDN +alI +mRB +sDN +alI rWV -veu -vCW -jqg -cOy -jqg -frm +rYv +aKJ +pSt +tQb +pSt +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -76349,59 +76349,59 @@ qeX qeX qeX qeX -tag +klp ndl -oGH -sUI -jJI -lXX -gPn -gqm -pSm -nLz -vHw -qaf -aoG -qEO +nTU +dng +eHa +uHK +oBQ +uwx +uwm +mrd +izC +fio +iRF +qov eXD -eGZ +fTb fWv -wUE -iYd -tlF +fui +wBs +ktY fWv hTV -lXV -avt -wEM -suo -dXY -eIf +wmO +pXm +oEL +wdL +fdm +wNF dxe -tYg -uDg +ctW +tbR aeD aeD uYX uYX bNR blw -aba +ilP eXD uYX ydm -yet -bGT -sxS -bGT -vif -gYV -ccm -erk -aza -ewq +wwC +pVy +ixB +pVy +hdk +waY +hWO +cez +kWF +pDY ndl -tEF +rcq qeX qeX qeX @@ -76452,13 +76452,13 @@ qeX qeX qeX qeX -tag -apJ -apJ -oEJ -rsy -fQh -fQh +klp +qBg +qBg +wSP +qOS +gyS +gyS oED oED oED @@ -76468,27 +76468,27 @@ oED pGy pGy oED -ets -dCV +eZh +vZE hZo -yfZ -vhq +lgM +tEm hZo -uts -xuy -kFG -cOo -uDV -xYA -lsv -dcS -ebt +irn +vQM +bQI +pHR +sIe +aOY +dEu +rJw +cGZ hZo -hud -mJE +ybN +dll hZo -dWd -pGr +fhq +eYl aHH prf prf @@ -76498,13 +76498,13 @@ prf prf prf prf -jqg -wGt -jqg -frm -frm -frm -tEF +pSt +jSJ +pSt +asO +asO +asO +rcq qeX qeX qeX @@ -76549,46 +76549,46 @@ qeX qeX qeX mOJ -fDe -wgJ +hIJ +nGX ndl ndl -oGH -fbZ -jJI -lXX -uYI -gqm -pSm -usW -eff -pos -uGr -nBQ +nTU +uyf +eHa +uHK +jaI +uwx +uwm +kSP +aTS +kmD +oVC +mWm eXD -aba -tZR +ilP +cOx bOx oHm tVC -jFm +wNt qKC sgC dUv opM uCY sgC -pwr -aba -aba -aba -aba -aba -aba -aba -aba -sZb -aba +gRH +ilP +ilP +ilP +ilP +ilP +ilP +ilP +ilP +fOh +ilP eXD qLT ydm @@ -76596,16 +76596,16 @@ ydm ydm ydm ydm -ccm -bCk -ccm -yff -qip -ewq +hWO +dkI +hWO +ngD +rpl +pDY ndl ndl -wgJ -wgf +nGX +oWW mOJ qeX qeX @@ -76654,12 +76654,12 @@ qeX qeX qeX qeX -tag -sEF -gkn -cxB -rsy -fQh +klp +tvg +ygQ +uhV +qOS +gyS oED oED yei @@ -76668,45 +76668,45 @@ bHJ bHJ bHJ pGy -sEc -ios -cuP -dCV +qMT +jDM +xFu +vZE hZo -dzI +hjL iWo bKE -bRE -iGq -wvV -boi -eOY -pzS -suJ -ten -bvf +giK +sxm +epZ +qBd +cdL +apY +nzN +tkj +iav bKE hwO -lDn +gMF hZo -dWd -clG +fhq +bgl aHH -erS -twt -jcT -lIs -uhZ -pEm -jcT +cDl +vSr +qdl +uwC +ffa +wfM +qdl prf prf -oOb -jqg -mEF -rno -xTo -tEF +pVe +pSt +ltg +kNz +geX +rcq qeX qeX qeX @@ -76751,63 +76751,63 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -fPE -jJI -lXX -sGj -amQ -nEp -anc -uOq -gRa -kzb -vpX +nTU +fPS +eHa +uHK +xJg +oOO +oOP +wUK +nPM +uMF +wZl +vvN ctx -mzQ +bCJ fWv -bSG -uqn -bQn +uNC +bdS +gMa fWv tqP -dXY -suo -dXY -avt -dXY -pNP +fdm +wdL +fdm +pXm +fdm +dWV uYX -tYg -kvc +ctW +vpV aeD aeD uYX uYX cko hoL -aba +ilP dYe qLT ocU -xPz -bJT -nlQ +gUj +ear +bhj ydm -iYU -nys -nys -erk -nys -ewq +aVz +lcZ +lcZ +cez +lcZ +pDY ndl ndl ndl -tEF +rcq mOJ qeX qeX @@ -76856,12 +76856,12 @@ qeX qeX qeX qeX -tag -sEF -amv -fQh -rsy -fQh +klp +tvg +gbB +gyS +qOS +gyS oED riA gje @@ -76870,45 +76870,45 @@ gje bHJ rGI pGy -sEc -ios -cuP -dCV +qMT +jDM +xFu +vZE hZo -qZM +nmA iWo uFm -gtL -bAA -ciq +yaM +chV +dJi qRO -bJV +dUJ nXf -koG -pZf -vgi +lJQ +nLo +gPt uFm hwO -bBb +hKF hZo -aDu +pFW pbX -ybd -sdM +nXX +jfS uOB fHi -lIs +uwC prf -qwB -vKG -oEg +kpT +liS +iZe prf -lEJ -jqg -jqg -wkR -xTo -tEF +jSE +pSt +pSt +pvR +geX +rcq qeX qeX qeX @@ -76953,63 +76953,63 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -pCD -jJI -lXX -wjW -wjW -uGr -uvw -tTP -qaf -aoG -qEO +nTU +swK +eHa +uHK +iJZ +iJZ +oVC +cLB +sSA +fio +iRF +qov eXD -aba +ilP yaY -mqm -wRT -jBL +uZM +eXf +tZl yaY uYX -dXY -suo -dXY -suo -dXY +fdm +wdL +fdm +wdL +fdm cDy dxe -aba -tON +ilP +wHu aeD aeD aeD uYX uYX kiw -aba +ilP eXD qLT ocU -iTi +uxt mMq -fBl +xan ydm -oNE -sXN -nys -qxP -rvj -ewq +kQJ +hnY +lcZ +sRm +qqE +pDY ndl ndl ndl -tEF +rcq mOJ qeX qeX @@ -77058,12 +77058,12 @@ qeX qeX qeX qeX -tag -sEF -hGg -sEE -vQu -cCm +klp +tvg +oes +mvy +ltn +kWW oED tvs gje @@ -77074,43 +77074,43 @@ jIv pGy pGy oED -lVU +pMt fvE -jLz +cRg iWo iWo anF iWo iWo iWo -qXe -xCz -bov +iWe +otT +iCn iWo iWo iWo anF hwO iWo -aqf +moD fvE -fIu +ooC aHH -psy +gFS kAf nQE -jbE +nWp prf prf prf prf prf -tUp -vzK -rbA -uOJ -xTo -tEF +kxq +crX +dwl +fCq +geX +rcq qeX qeX qeX @@ -77155,35 +77155,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -esi -xiH -lXX -rFU -bWt -wjW -uvw -tTP -qaf -aoG -qEO +nTU +tZO +pXq +uHK +wIU +rqE +iJZ +cLB +sSA +fio +iRF +qov eXD -lbt +oFZ fWv oGL yaY yaY fWv euz -dXY -suo -dXY -brY -dXY +fdm +wdL +fdm +wKk +fdm wto sgC qod @@ -77192,26 +77192,26 @@ sgC sgC xfq lOG -wbQ -cde -flF +kYw +wpd +ydW ctx dIF ydm -jxh +mcM uYX -eJG -bfj -sXN -sXN -nys -qxP -tnP -ewq +uHA +awx +hnY +hnY +lcZ +sRm +fpp +pDY ndl ndl ndl -tEF +rcq mOJ qeX qeX @@ -77260,12 +77260,12 @@ qeX qeX qeX qeX -tag -oEJ -mqR -fQh -fQh -uKN +klp +wSP +rkc +gyS +gyS +mfX oED dKB gje @@ -77274,45 +77274,45 @@ ajc wUT jIv cse -vpo +dnF oED -cuP +xFu fvE -fSs +bgb iWo iWo -psI +wHd anF iWo iWo -tRR -wdU +scj +nzV eXy iWo iWo anF -psI +wHd hwO iWo -fSs +bgb fvE -fIu +ooC aHH -lIs -adO -lKq -lIs -uhZ -pEm -jcT -ctH +uwC +wFi +uZu +uwC +ffa +wfM +qdl +uJG prf -bKW -cOy -kaA -iLL -frm -tEF +rCN +tQb +gAc +hHh +asO +rcq qeX qeX qeX @@ -77357,63 +77357,63 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -gMJ -xiH -pDj -nLz -gTz -wjW -uvw -uey -juW -uGr -axg +nTU +gJk +pXq +tYX +mrd +ivQ +iJZ +cLB +gRM +nSg +oVC +kDE eXD -aba +ilP gSa unq uYX uYX gSa uYX -dXY -suo -dXY -suo -dXY +fdm +wdL +fdm +wdL +fdm mEL uYX -fKo -vxj +rao +qAt aeD lRo euu -pQs -pxg -aba -qol +wqZ +jtY +ilP +mKO eXD qLT ocU -oih +oFt uYX -cTV +xKb ydm -nys -sXN -nys -qxP -wPp -ewq +lcZ +hnY +lcZ +sRm +iXs +pDY ndl ndl ndl -tEF +rcq mOJ qeX qeX @@ -77462,12 +77462,12 @@ qeX mOJ qeX qeX -tag -sEF -rVW -fQh -dKc -uKN +klp +tvg +eyx +gyS +ndQ +mfX oED xON bHJ @@ -77475,46 +77475,46 @@ bHJ bHJ jdk jIv -ffv -lvI +wnj +xRX oED -emh -dCV +fNi +vZE hZo -tWO -lFP -lFP -lFP -veX -psI -hhr -wUm -pjr -psI -aIA -lFP -lFP -nwA -uBX +jpp +xhj +xhj +xhj +rwi +wHd +gZx +tXE +maW +wHd +ftW +xhj +xhj +luj +bBs hZo -mHh -fIu +jii +ooC aHH -lHJ +xrZ xZJ aph -lIs +uwC prf -qwB -vKG -jwJ +kpT +liS +tqY prf -hIw -cOy -ekG -xrA -xTo -tEF +lfy +tQb +apR +mEp +geX +rcq qeX qeX qeX @@ -77559,63 +77559,63 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -uIF -xiH -lXX -wTQ -xKR -ecC -pwq -wQA -iJt -uGr -ppT +nTU +dZv +pXq +uHK +itp +vNy +tav +amB +noX +wAT +oVC +hMW nVY sgC -fxU +eBF nNc -cmO -cNy -uoB -eKG -cmO -cNy -uoB -eKG -cmO -cNy -uoB -eKG -cPQ -fXW -hot -iwL -lpn -nXO -uoB -bOC +ycY +tob +cuW +cYV +ycY +tob +cuW +cYV +ycY +tob +cuW +cYV +dwe +cFL +uyy +oMC +iOP +eKb +cuW +nbQ eXD uYX ocU -jqV -bij -vQX +ibb +jcC +oRq ydm -ccm -drH -uKv -qxP -sXN -ewq +hWO +sLD +oAC +sRm +hnY +pDY ndl ndl ndl -tEF +rcq mOJ qeX qeX @@ -77664,59 +77664,59 @@ qeX mOJ qeX qeX -tag -sEF -lID -fQh -npy -rsy +klp +tvg +hLt +gyS +smT +qOS oED jIv jIv qsT -axn +hDf jIv jIv -raS +uRx jIv oED -miY -amp +iuU +rqg hZo -eHQ -rRE -psI +lfk +tyE +wHd iWo -vRk +fex uNl -fjR -aNk -rhO +tHN +evi +gxC anF -nBb +hcu iWo iWo dup -dmT +iFj hZo -qFd -fIu +ehp +ooC aHH -lIs +uwC qjX xBN -jbE +nWp prf prf prf prf prf -vLS -wGt -fNV -xrA -xTo -tEF +dAL +jSJ +jLV +mEp +geX +rcq qeX qeX qeX @@ -77761,24 +77761,24 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -jJI -jJI -lXX +nTU +eHa +eHa +uHK fWv -aMm +bIJ fWv yaY yaY yaY fWv -vIq +aDx eXD -sqL +jxN pky pky pky @@ -77800,24 +77800,24 @@ pky pky pky pky -qKK +lJI eXD pNz ydm ydm -kOq +sMo ocU ydm ydm -ccm -ccm -erk -sXN -ewq +hWO +hWO +cez +hnY +pDY ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -77866,59 +77866,59 @@ qeX mOJ qeX qeX -tag -sEF -bDt -fQh -qNK -rMG +klp +tvg +niP +gyS +eGJ +fyu oED jIv emK bHJ bHJ bHJ -vFW +kjR bHJ vuE oED -cuP -dCV +xFu +vZE hZo -xaL -hUb -qUx -mXe -vRk +eij +jnp +mbN +caF +fex fbv -psI -olA -dBt +wHd +jSB +pNf dat -tHR -tFx -nVV -nOO -lgu +jKf +frp +gtQ +trV +bYi hZo -dWd -fIu +fhq +ooC aHH -lIs -eIU -tve -lIs -uhZ -pEm -jcT -vKG +uwC +kIx +ehA +uwC +ffa +wfM +qdl +liS prf -aaN -cOy -ejA -xrA -xTo -tEF +pGd +tQb +iMt +mEp +geX +rcq qeX qeX qeX @@ -77963,24 +77963,24 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -jJI -jJI -lXX -rbb -fHx +nTU +eHa +eHa +uHK +sKr +noE izA gHr -ecA +nAi qtl wwu -smB +oGd eXD -qZu +fUO pky pky pky @@ -78002,24 +78002,24 @@ pky pky pky pky -nTl +nlB eXD raL -suo +wdL pJS uYX uYX uYX uKY ydm -pbs -erk -aza -ewq +lxX +cez +kWF +pDY ndl ndl ndl -tEF +rcq mOJ qeX qeX @@ -78068,12 +78068,12 @@ mOJ qeX qeX qeX -tag -oEJ -lHV -cQM -tko -rsy +klp +wSP +oqc +sAx +usy +qOS oED pQC gje @@ -78084,43 +78084,43 @@ gje bHJ rJV oED -cuP -dCV +xFu +vZE hZo hZo hZo hZo hZo -wNX -qsB -mnq -vvU -cHd -hud -vgJ +cfS +kVt +hXC +sQV +wTq +ybN +iik hZo hZo hZo hZo hZo -dWd -fIu +fhq +ooC aHH -lIs -adO -lKq -lIs +uwC +wFi +uZu +uwC prf -kqX -jHp -qwB +xcL +jbq +kpT prf -xjl -cOy -qIK -asF -frm -tEF +hPL +tQb +kiH +gKg +asO +rcq qeX qeX qeX @@ -78165,24 +78165,24 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -oGH -wLp -xiH -lXX -laZ +nTU +gkI +pXq +uHK +lBO smz -vpL -uXZ +nfC +scP uXY aAV wwu -ncJ +dDQ eXD -vBF +qys pky pky pky @@ -78204,24 +78204,24 @@ pky pky pky pky -xin +rNf eXD raL -suo +wdL qOF qLT qLT qLT hgb -bfj -mJd -erk -qip -ewq +awx +icI +cez +rpl +pDY ndl ndl ndl -tEF +rcq mOJ qeX qeX @@ -78270,12 +78270,12 @@ mOJ qeX mOJ qeX -tag -sEF -hWc -fQh -aFQ -eDz +klp +tvg +fXp +gyS +joy +cPp oED lxM gje @@ -78286,43 +78286,43 @@ gje ons gje oED -cuP -dCV +xFu +vZE hZo -egk -fQW -mnz +qum +mVd +vti hZo -nIQ +woB anF anF -vXH +xmJ anF gyg -phY +vPB hZo -sPs -mbW -eCe +muY +bxy +nBY hZo -dvR -fIu +obG +ooC aHH -lIs -bdt -mbh -jbE +uwC +etf +qzT +nWp prf prf prf prf prf -lby -cOy -ftg -eIF -xTo -tEF +xug +tQb +tpG +gvk +geX +rcq qeX qeX mOJ @@ -78364,27 +78364,27 @@ qeX qeX mOJ qeX -fDe -wgJ -wgJ +hIJ +nGX +nGX ndl ndl ndl ndl -oGH -jJI -thk -pSL +nTU +eHa +wdr +nOb rNK bOx -lUG -bqd -drL -adg +gpM +tDD +gZh +kxp wwu -aba +ilP eXD -pbf +tsx pky pky pky @@ -78406,27 +78406,27 @@ pky pky pky pky -oRE +aAa eXD raL -suo +wdL xEo uYX uYX fPp bUI ydm -ixM -qxP -nys -ewq +cXe +sRm +lcZ +pDY ndl ndl ndl ndl -wgJ -wgJ -wgf +nGX +nGX +oWW qeX mOJ qeX @@ -78472,12 +78472,12 @@ mOJ mOJ mOJ qeX -tag -sEF -ftu -fQh -lfP -nOI +klp +tvg +uzr +gyS +mCQ +sKQ oED bMO nJu @@ -78487,44 +78487,44 @@ opG opG jLh pwt -fMl +xTk pbX bJs hZo -tRb -qal -ajj -kEH -psI -psI -jHa -jHa -jHa -hud -psI -uKQ -ijZ -iYk -gOm +cPl +caQ +qbx +oxc +wHd +wHd +rqO +rqO +rqO +ybN +wHd +cJW +rgN +qbV +asl hZo -dWd -fIu +fhq +ooC aHH -lHJ -oAG -dGq -lIs -uhZ -pEm -jcT -uPd +xrZ +cDx +nGi +uwC +ffa +wfM +qdl +sPR prf -gZi -gLU -tiy -jqg -xTo -tEF +bwv +tEW +szH +pSt +geX +rcq qeX qeX mOJ @@ -78566,27 +78566,27 @@ qeX qeX mOJ qeX -tag +klp ndl ndl ndl ndl ndl ndl -oGH -jJI -mVg -lXX +nTU +eHa +aee +uHK lQz -fHx +noE xWF gHr lwQ oIo fWv -jin +apU eXD -sqL +jxN pky pky pky @@ -78608,27 +78608,27 @@ pky pky pky pky -qKK +lJI eXD cyj ydm ydm -kOq +sMo ocU ydm ydm ydm -ccm -xOt -uEK -ewq +hWO +wyr +eaj +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq qeX mOJ qeX @@ -78674,12 +78674,12 @@ mOJ mOJ mOJ mOJ -tag -sEF -dez -fQh -fQh -pVR +klp +tvg +fxF +gyS +gyS +fgz oED pVL gje @@ -78690,43 +78690,43 @@ gje fgN gje oED -cuP -dCV +xFu +vZE hZo -kvv -kAi -jlf +oyE +jNO +iuv hZo -wcM +jcH iWo jZb tdI jZb hwO -jfP +xDL hZo -uvv -kAi -iXj +iKy +jNO +vjo hZo -dWd -fIu +fhq +ooC aHH -dRd -qYY -tve -lIs +aVX +vGB +ehA +uwC prf -wCS -vKG -qwB +cYM +liS +kpT prf -xrA -wGt -pyg -pyg -xTo -tEF +mEp +jSJ +sRz +sRz +geX +rcq qeX qeX qeX @@ -78768,27 +78768,27 @@ qeX qeX mOJ qeX -tag +klp ndl ndl ndl ndl ndl ndl -oGH -iJl -mAd -lXX -qEj +nTU +mcW +vxg +uHK +dCR smz -vpL -uXZ +nfC +scP gHr -oVZ +eTx wwu -aba +ilP eXD -qZu +fUO pky pky pky @@ -78810,27 +78810,27 @@ pky pky pky pky -nTl +nlB eXD qLT ocU -bCI -tCD -rZR +rcP +xZo +aDH ydm -ccm -fRX -nys -qxP -lfc -ewq +hWO +tsJ +lcZ +sRm +peI +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq qeX mOJ qeX @@ -78876,12 +78876,12 @@ mOJ mOJ mOJ mOJ -tag -oEJ -oEJ -oEJ -rRQ -kci +klp +wSP +wSP +wSP +xmV +tyt oED gEm gje @@ -78892,43 +78892,43 @@ gje uZZ wrq oED -cuP -dCV +xFu +vZE hZo -kvv -kAi -klL +oyE +jNO +dSQ hZo -pih +rZx iWo oyO hpE ola hwO -bBb +hKF hZo -uvv -kAi -iXj +iKy +jNO +vjo hZo -dWd -fIu +fhq +ooC aHH -gOx +rAi kAf nQE -jbE +nWp prf prf prf prf prf -plo -wGt -frm -frm -frm -tEF +wOq +jSJ +asO +asO +asO +rcq qeX qeX qeX @@ -78970,27 +78970,27 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -xiH -jwv -lXX -nAn +nTU +pXq +iHR +uHK +gUm dVc -lUG -tuB -rde +gpM +dYq +bhl aAV wwu -aba +ilP eXD -vBF +qys pky pky pky @@ -79012,27 +79012,27 @@ pky pky pky pky -xin +rNf eXD uYX ocU -aRD +pGh uYX -bOp +cRT ydm -nVk -sXN -nys -qxP -osP -ewq +gVW +hnY +lcZ +sRm +jCM +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -79078,12 +79078,12 @@ qeX mOJ mOJ qeX -tag +klp ndl ndl -oEJ -fQh -gOj +wSP +gyS +gsY oED jIv emK @@ -79094,43 +79094,43 @@ eTE hfW fAw oED -cuP -dCV +xFu +vZE hZo -szl -kAi -avo +ttJ +jNO +sSZ hZo -wNX -psI -hQC -hQC -hQC -hud -vgJ +cfS +wHd +phT +phT +phT +ybN +iik hZo -oCE -kAi -gCK +tzw +jNO +xVR hZo -dWd -fIu +fhq +ooC aHH -jrg +vDX gqh nQE -lIs -uhZ -pEm -jcT -epC +uwC +ffa +wfM +qdl +bMj prf -jqg -cOy -frm +pSt +tQb +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -79172,27 +79172,27 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -xiH -pMV -lXX +nTU +pXq +oIw +uHK vvT -drL +gZh iFs gHr bdr -nFf +rua wwu -xcQ +xbV eXD -pbf +tsx pky pky pky @@ -79214,27 +79214,27 @@ pky pky pky pky -oRE +aAa eXD dIF ydm -cgA +gqv uYX -oxB +qit ydm -wQi -sXN -nys -erk -aPh -ewq +uEa +hnY +lcZ +cez +dJx +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -79280,12 +79280,12 @@ mOJ mOJ mOJ qeX -tag +klp ndl ndl -oEJ -eVe -uKN +wSP +pxr +mfX oED jIv uoJ @@ -79296,43 +79296,43 @@ xUB gTu jAN oED -cuP -amp +xFu +rqg hZo -kvv -dvL -klL +oyE +tXM +dSQ hZo -dsv +pvx iWo iWo anF iWo hwO -veq +psh hZo -eSH -dvL -iXj +oYt +tXM +vjo hZo -dWd -pGr +fhq +eYl aHH -xXH -lIs -lIs -gvX +uUf +uwC +uwC +mTp prf -edI -vKG -jwJ +lkE +liS +tqY prf -msJ -afo -frm +dGR +pYt +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -79374,17 +79374,17 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -sUI -uHr -lXX +nTU +dng +akm +uHK fWv fWv fWv @@ -79392,9 +79392,9 @@ fWv fWv fWv fWv -xos +nZc eXD -sqL +jxN pky pky pky @@ -79416,27 +79416,27 @@ pky pky pky pky -qKK +lJI eXD qLT ocU -aRD +pGh uYX -xJp +llH ydm -lfc -sXN -nys -qxP -imr -ewq +peI +hnY +lcZ +sRm +fnX +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -79482,12 +79482,12 @@ mOJ qeX qeX qeX -tag +klp ndl ndl -oEJ -hVP -uKN +wSP +jKz +mfX oED oED oED @@ -79498,43 +79498,43 @@ oED oED oED oED -dBx -kJk +otz +fhr hZo hZo hZo hZo hZo tlL -sPa +hUG tlL hZo tlL -fbe +fhU tlL hZo hZo hZo hZo hZo -cqX -fwg +vBy +fRf aHH aHH -eUv -iJk +tUD +tAc prf prf prf prf prf prf -pQQ -oqD -frm +sqP +epO +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -79576,17 +79576,17 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -xiH -bIW -lXX +nTU +pXq +kVW +uHK sXP sXP sXP @@ -79594,9 +79594,9 @@ sXP sXP sXP ydm -xcQ +xbV eXD -qZu +fUO pky pky pky @@ -79618,27 +79618,27 @@ pky pky pky pky -nTl +nlB eXD qLT ocU -fiN -bij -pBE +opX +jcC +mXP ydm -ccm -wPp -wPp -qxP -xww -ewq +hWO +iXs +iXs +sRm +wGs +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -79684,12 +79684,12 @@ qeX qeX qeX qeX -tag +klp ndl ndl -oEJ -qGv -sxW +wSP +lSM +vbZ pNE qsQ uWJ @@ -79697,33 +79697,33 @@ iei iei iei iei -bJJ -qjD -cEF -cuP -qdr -oJE -mqC -nNj -rkp +xUu +cTl +fyN +xFu +vzM +wra +mzD +gog +jND iGT -riV +yiJ iWo iWo akn iWo hwO -fVy +czD iGT -jFz -tUU -mqC -nmf -pUs -fIu -jyx -dYr -bVr +qky +bfE +mzD +cKR +ttS +ooC +urL +hlA +lDW iIL ldT iIL @@ -79731,12 +79731,12 @@ iIL sAa oCH hlk -cOy -jqg -frm +tQb +pSt +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -79778,17 +79778,17 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -jJI -bIW -lXX +nTU +eHa +kVW +uHK sXP sXP sXP @@ -79796,9 +79796,9 @@ sXP sXP sXP ydm -aba +ilP eXD -vBF +qys pky pky pky @@ -79820,27 +79820,27 @@ pky pky pky pky -xin +rNf eXD rKu ydm -ccm -bCk -ccm -ccm -ccm -ccm -ccm -yff -nys -ewq +hWO +dkI +hWO +hWO +hWO +hWO +hWO +ngD +lcZ +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -79886,29 +79886,29 @@ mOJ mOJ mOJ mOJ -tag +klp ndl ndl -oEJ -fQh -uKN +wSP +gyS +mfX pNE wUr -xTu +oTp hgR hgR hgR hgR -tsu -jbb -gpB -wqQ +rgp +thJ +uoY +abG sNs pgd pgd pgd pgd -ngR +rue unE cZB lIj @@ -79916,16 +79916,16 @@ tSX jHl iBk unE -ngR +rue pgd pgd pgd fIs mSB -exi -bME -gOv -pQh +rvx +vLu +bbQ +qmm raE raE raE @@ -79933,12 +79933,12 @@ raE nwx drv hlk -wGt -jqg -frm +jSJ +pSt +asO ndl ndl -tEF +rcq qeX qeX qeX @@ -79980,17 +79980,17 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -jJI -mVg -lXX +nTU +eHa +aee +uHK sXP sXP sXP @@ -79998,51 +79998,51 @@ sXP sXP sXP ydm -vIq +aDx eXD -xXe -gke -ghY -oZa -pDg -gke -uqi -oZa -pDg -gke -uqi -oZa -pDg -gke -uqi -oZa -pDg -gke -uqi -oZa -tdw -gke -mQI +eVM +iID +iOb +vzH +kOK +iID +grT +vzH +kOK +iID +grT +vzH +kOK +iID +grT +vzH +kOK +iID +grT +vzH +bOa +iID +sUn eXD raL -mEz -ccm -nys -woV -oDL -kEB -ccm -aPh -qxP -nys -ewq +ffY +hWO +lcZ +eWs +slC +jRV +hWO +dJx +sRm +lcZ +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -80091,9 +80091,9 @@ uFM uFM uFM uFM -oEJ -lge -byD +wSP +aqi +tlg pNE bat dlV @@ -80101,33 +80101,33 @@ iei iei pso pso -bJJ -qjD -fhG -bCP -lLJ -eqo -mzh -lLJ -lLJ +xUu +cTl +dal +eXo +exz +fyn +rCk +exz +exz iGT -vRk +fex rbV jjr skx gyg iWo -nBb +hcu iGT -lLJ +exz wbM -mzh -mGe +rCk +uNL fvE -nvj -cft -dYr -bVr +uih +wsn +hlA +lDW cNz iIL iIL @@ -80135,9 +80135,9 @@ iIL haJ iIL hlk -iLV -cqv -frm +kUl +thu +asO xid xid xid @@ -80182,17 +80182,17 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -hrB -bIW -lXX +nTU +kBu +kVW +uHK sXP sXP sXP @@ -80200,11 +80200,11 @@ sXP sXP sXP ydm -aba +ilP eXD -qEO -aba -uvg +qov +ilP +rzF uYX uYX uYX @@ -80222,29 +80222,29 @@ uYX uYX uYX uYX -qEO -aba -uvg +qov +ilP +rzF eXD raL -mEz -ccm -iGh -sXN -sXN -nys -aTX -sXN -erk -qip -ewq +ffY +hWO +kbx +hnY +hnY +lcZ +wKv +hnY +cez +rpl +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -80291,17 +80291,17 @@ fQl bcX iEf pso -nlS -ldg +sLP +mFe pzc -cOi -pWd +iZh +rti rTN iei dlV -nlS -nbr -mVm +sLP +tqG +wLg idE ePX ePX @@ -80313,35 +80313,35 @@ ePX ePX ePX hZo -mGi -vqb -ksK +qCT +tEl +cFM nBm -xmY -gSv -fwE +sdl +phH +rbP hZo csS -vLU +toz csS aKN -sSg +umT aKN aKN aKN -nVv +uob hcL -isP -tdo -tdo +jdg +hqb +hqb haJ iIL som -wGI -upH +oRJ +kgB pqu -rLk -tdo +fAT +hqb iIL uNs uNs @@ -80384,17 +80384,17 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -efL -mAd -lXX +nTU +flo +vxg +uHK sXP sXP sXP @@ -80402,11 +80402,11 @@ sXP sXP sXP ydm -tGF +emY eXD -bvM -nPw -tJp +iac +ouK +avI nqZ nqZ nqZ @@ -80424,29 +80424,29 @@ nqZ nqZ nqZ qjK -lhm -nPw -gnM +jVF +ouK +uyd eXD hgb -sdt -ccm -upQ -tGs -sXN -akN -ccm -tGU -erk -sXN -ewq +obv +hWO +may +cFj +hnY +fRG +hWO +cPU +cez +hnY +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ qeX @@ -80493,11 +80493,11 @@ tLZ oum iei iei -nlS -bJJ +sLP +xUu iei -pnG -pWd +uCP +rti iei iei dlV @@ -80505,33 +80505,33 @@ dVr eJs ohI wPq -wpq -iHN -bXO +iqu +hks +eDc idE idE -ldc -pMK -ldc -pMK +ofy +nvD +ofy +nvD hZo hZo hZo -jCE +xwC gaY -pcf +vWA hZo hZo hZo sWm -jIy +nag csS -dTc -ivh -otl +biB +vai +lpx hcL -mCl -gaq +eha +vRa hcL fFn ouN @@ -80539,11 +80539,11 @@ gdl haJ iIL iIL -wGI -hTQ +oRJ +bVD iIL -bVr -tdo +lDW +hqb iIL iIL iIL @@ -80586,17 +80586,17 @@ qeX qeX mOJ vcr -tag +klp ndl ndl ndl ndl ndl ndl -oGH -xiH -tTd -lXX +nTU +pXq +lwN +uHK sXP sXP sXP @@ -80604,9 +80604,9 @@ sXP sXP sXP ydm -qKV +mXB eXD -aba +ilP cXA cXA cXA @@ -80615,11 +80615,11 @@ cXA cXA cXA akM -vES -vHa +xXP +iKd akM -vES -scG +xXP +mTe akM iQY iQY @@ -80628,27 +80628,27 @@ iQY iQY iQY iQY -aba +ilP eXD hgb -hda -ccm -whf -jTx -xty -clq -ccm -sXN -erk -aza -ewq +nny +hWO +grB +vqK +nNC +xRc +hWO +hnY +cez +kWF +pDY ndl ndl ndl ndl ndl ndl -tEF +rcq vcr mOJ mOJ @@ -80695,57 +80695,57 @@ cSU iei iei iei -nlS -itG +sLP +jRf iei -fEm -pWd +gLN +rti iei srd hBN -nlS -nlS -nlS +sLP +sLP +sLP wPq -yhI -tZD -yhI +xlT +muT +xlT idE -oCK +mHS hti hti hti hti -iNl -owl +omI +jDR idE -hka -udc -pLC +eBp +uHn +jtm csS gIt -vVy +lLM uCu wdF csS -dTc -fRO -sNX +biB +upt +sQd hcL hcL hcL hcL -isP -tdo -tdo +jdg +hqb +hqb kQb iIL iIL -wGI -rXA +oRJ +wWq iIL -nyH -tdo +aUB +hqb iIL iIL iIL @@ -80788,17 +80788,17 @@ qeX qeX mOJ vcr -tag -oGH -oGH -oGH -oGH -oGH -oGH -oGH -jJI -rQf -lXX +klp +nTU +nTU +nTU +nTU +nTU +nTU +nTU +eHa +aPy +uHK sXP sXP sXP @@ -80806,51 +80806,51 @@ sXP sXP sXP ydm -aba +ilP eXD -aba +ilP cXA -gNM -vEY -wui -tHb -kOo +ccS +hxQ +qLC +iuJ +try fnD -tLm -rVV -rVV -mOv -rVV -rVV -qrn +ovG +eoY +eoY +eqk +eoY +eoY +ipO iQY -sfc -scR -scR -scR -lQl +qYo +uCW +uCW +uCW +bvo iQY -tGF +emY eXD ugm -jLQ -jLQ -jLQ -jLQ -jLQ -jLQ -jLQ -eLK -erk -sXN -ewq -ewq -ewq -ewq -ewq -ewq -ewq -tEF +pjR +pjR +pjR +pjR +pjR +pjR +pjR +omF +cez +hnY +pDY +pDY +pDY +pDY +pDY +pDY +pDY +rcq vcr mOJ mOJ @@ -80892,67 +80892,67 @@ mOJ mOJ ubi aiN -nlj +kQd iei cPg hgR aXi -tmn +dPL hgR hgR hgR -mAN +sHG aXi hgR vWG -fEm -yfO -itG +gLN +eQm +jRf wPq -mCx -tZD -tZD +oOX +muT +muT idE -tHG -gHi -gHi -gHi -gHi -ncX -hJl +uSR +jpl +jpl +jpl +jpl +mRo +exx idE -vCU -uMZ -uWz +bku +qPc +qyw csS dhT -uyJ +jYK uCu -mqa +aEE csS -siz -fRO -sNX -fRO -hEy -fEh +lCb +upt +sQd +upt +rIk +meR hcL -kgm -pSW -rXA +bFV +xOl +wWq kAh raE dwV -vXR +fHR raE raE raE -qsN +oSA dwV raE aTw iIL -fkY +yaK qSx ubi mOJ @@ -80990,17 +80990,17 @@ qeX qeX mOJ vcr -tag -oGH -gdy -jJI -pVI -xiH -xiH -jJI -jJI -cCO -lXX +klp +nTU +utw +eHa +jVJ +pXq +pXq +eHa +eHa +cNj +uHK sXP sXP sXP @@ -81008,51 +81008,51 @@ sXP sXP sXP ydm -qSH -lEw -cAD +eIY +dqD +uxE cXA -whw -eEN -eEN -eEN -jPN +ryj +byN +byN +byN +uyB peC -ebg -rVV -rVV -rVV -rVV -rVV -mlp +kDm +eoY +eoY +eoY +eoY +eoY +fzH iQY -oSS -uji -ojr -sMh -wka +wqv +gJb +gVu +xpF +gaF iQY -ihg -lEw -qSH -jLQ -wwR -hcz -eAI -hcz -hCM -jLQ -lfc -erk -sXN -nys -nys -sDj -nys -aMC -qJS -ewq -tEF +dvP +dqD +eIY +pjR +hWf +aNn +hOs +aNn +teU +pjR +peI +cez +hnY +lcZ +lcZ +iZS +lcZ +hOm +gUZ +pDY +rcq vcr mOJ mOJ @@ -81094,67 +81094,67 @@ mOJ mOJ ubi aiN -reI +ceW iei dlV iei -nlS -nlS -nlS -nlS -nlS -nlS -nlS +sLP +sLP +sLP +sLP +sLP +sLP +sLP huN vWG -cOi -loy -oHT +iZh +bAY +dRi wPq -fmp -agg -owi -ibn -tZD -bAm -vEP -vEP -sDh -muK +kwX +xxq +hqw +axq +muT +gec +aKf +aKf +hpl +mam idE idE -kRC -ygu -ktB +jKn +gnT +oyA csS -cNH -uyJ +bVx +jYK uCu -vYc +gsB csS -kzm -kzm -cjf -etB -xCX -jsb +fRJ +fRJ +bbz +utt +pjA +hCN rAD -mLp -hHQ -upH +htB +qDo +kgB haJ iIL -tdo -tdo -tdo -hRz -tdo -tdo -tdo +hqb +hqb +hqb +kdC +hqb +hqb +hqb eRT enS iIL -uut +qrT qSx ubi mOJ @@ -81192,17 +81192,17 @@ qeX qeX mOJ vcr -tag -oGH -xiH -xiH -jJI -jJI -thk -vTS -ufo -pcW -lXX +klp +nTU +pXq +pXq +eHa +eHa +wdr +tNU +rin +fCI +uHK sXP sXP sXP @@ -81210,51 +81210,51 @@ sXP sXP sXP ydm -bJa -lPt -bJa +ruT +ksu +ruT cXA -vZg -hFv -hFv -pUi -elr -fNz -xYc -xYc -cbO -hSF -hSF -hSF -hSF -gjj -krZ -kNJ -krZ -uNF -abw +bQi +wVV +wVV +pcG +cfk +aXn +cYR +cYR +uwA +oMU +oMU +oMU +oMU +noV +gAX +vIu +gAX +vTM +hbj iQY -bJa -lPt -bJa -jLQ -ykV -jMu -wbm -wbm -bkh -jLQ -lfc -vmd -qNc -qNc -bzK -qNc -qNc -xGz -aPh -ewq -tEF +ruT +ksu +ruT +pjR +qHR +fEp +uSm +uSm +xHx +pjR +peI +aAE +dgT +dgT +eIB +dgT +dgT +vcW +dJx +pDY +rcq vcr mOJ mOJ @@ -81297,65 +81297,65 @@ mOJ ubi uFM mas -rOi -pWd -nlS -nlS -uEY -wri -wri -wri -dCG -nlS -nlS -pWd -nlS -nlS -dmw +vnp +rti +sLP +sLP +mQP +hRA +hRA +hRA +aoh +sLP +sLP +rti +sLP +sLP +gHQ idE idE idE idE idE -tao -sIy +qZT +jrE ozw hYv -prx -cBP -bYV +uhe +nee +cnL idE -pFn -ygu -fhj +xgi +gnT +xWW csS -bdj -uyJ +rFB +jYK uCu -vgE +pDo csS -gds -hbD -vfk -esA -fRO -dyZ +lRg +wYB +jeG +wce +upt +uOh rAD -pIf -tdo -tdo -wGI -tdo -jcc -goH -oEh -oEh -oEh -vQU -tdo -tdo -wGI -ict +dQB +hqb +hqb +oRJ +hqb +vQc +uup +mvO +mvO +mvO +rpq +hqb +hqb +oRJ +xgq hlk xid ubi @@ -81394,16 +81394,16 @@ qeX qeX mOJ qeX -tag -oGH -dZq -dZq -lXX -edU -rQf -xiH -axW -dKg +klp +nTU +rKv +rKv +uHK +amA +aPy +pXq +hIn +wqy hpK hpK hpK @@ -81412,51 +81412,51 @@ hpK hpK hpK hpK -qDw -kzY -alj +nnx +lGm +oSn cXA -jKJ -eEN -xPv -mjL -lIN +nDY +byN +lxn +qSZ +nDI peC -kfb -rVV -iQx -dyB -rVV -rVV -spe +fTK +eoY +heH +hYG +eoY +eoY +qYF iQY -ckt -ojr -ePq -ojr -lGu +gbc +gVu +paj +gVu +gcR iQY -tks -iph -azh -jLQ -ckB -wbm -wbm -wbm -qBX -frO -frO -frO -frO -frO -frO -frO -frO -hjb -hjr -ewq -tEF +lAE +rfS +vSk +pjR +lHR +uSm +uSm +uSm +jbf +mgj +mgj +mgj +mgj +mgj +mgj +mgj +mgj +lWP +vFk +pDY +rcq qeX mOJ mOJ @@ -81499,65 +81499,65 @@ mOJ ubi uFM mas -qJU -pWd -nlS -lKa -jiR +mWg +rti +sLP +oNx +qWB bcG iei bcG -ctI -lKa -nlS -pWd -nlS -nlS -nlS +gvj +oNx +sLP +rti +sLP +sLP +sLP yaH -mCx -kxD -owi -sbR -tZD -hfo +oOX +gGy +hqw +mPj +muT +bOW nQg oTA -ahr -sDh -aAo +vuy +hpl +yeA idE -jcU -ygu -jDx +uEg +gnT +mQN csS csS sUH -luT +nIT sUH csS -uMg -esA -uOz -urh -fRO -fRO +qVV +wce +rZE +dKu +upt +upt rAD -nZf -tdo -tdo -wGI -tdo -iFL -vUy +rtW +hqb +hqb +oRJ +hqb +nAL +nzK jUO iIL lar -ylb -iFL -tdo -wGI -hdT +nQR +nAL +hqb +oRJ +sFH hlk xid ubi @@ -81596,13 +81596,13 @@ qeX qeX mOJ qeX -tag -oGH -xTQ -xTQ +klp +nTU +kTF +kTF hpK hpK -oPU +iiw hpK hpK hpK @@ -81610,55 +81610,55 @@ hpK aPQ cGb hpK -ctB -fLc -opT +yji +fXc +rIz hpK -ydV -vCp -ydV +cTy +rwm +cTy cXA -bvL -eEN -ggH -hLx -hzf +wDz +byN +hNj +ted +hrL peC -kfb -rVV -gZQ -dyB -dyB -rVV -qeP +fTK +eoY +aRK +hYG +hYG +eoY +wir vZw -eYL -ojr -unk -ojr -uYw +mqZ +gVu +ugM +gVu +uSH iQY -bsh -rGq -bsh -jLQ -ozb -wsw -wbm -wbm -ngG -frO -fNT -iko -wbm -pDB -xQA -oZh -frO -sva -wfm -ewq -tEF +gtf +nWV +gtf +pjR +mnY +llY +uSm +uSm +kgE +mgj +toS +aoM +uSm +tfY +hDv +jHU +mgj +mgv +nYp +pDY +rcq qeX mOJ mOJ @@ -81700,67 +81700,67 @@ mOJ mOJ ubi aiN -mkd +qvz iei dlV iei lUB -xHO +lSB bcG -lZc +cqs bcG -tax +joZ cuY iei dlV -fEm -yfO -itG +gLN +eQm +jRf yaH -yhI -eBq -pMU +xlT +eWe +hLs idE -noH -qlY -mGp -lPg -lKn -gqi -uJn -vhy -ulJ -ygu -bGa -agl +ubS +ncM +pmX +pgy +qQP +qev +nbc +sWp +cdR +gnT +aBi +tSJ csS -bcg -gzd -eCF +tcU +sYk +gnt csS -lPB -qqZ -vaq -kGy -fDa -rQk +bec +kHP +gkU +nAU +ats +nhq hcL -vEg -pSW -rXA +lsA +xOl +wWq haJ iIL eGf -fKK +dBm sqC -kzB +omi sqC -ijN +hzW tHD iIL haJ iIL -hEj +eRk qSx ubi mOJ @@ -81798,69 +81798,69 @@ qeX qeX mOJ qeX -tag -luI -pRI -pRI +klp +xKI +uww +uww hpK -iou +qtP fKQ mgY qZR jcD jcD -wnn +cCz dru nns dru dru -wnn +cCz kTn -sAL -alZ -fHK +uQT +cxZ +mKF cXA -keM -sSl -hfH -bry -uzE +vtL +qji +frd +bWd +lKX peC -kfb -rVV -iQx -dyB -rVV -rVV -ndp +fTK +eoY +heH +hYG +eoY +eoY +ugx vZw -wXt -wKO -ezQ -wKO -xlm +jpc +hJd +mBP +hJd +pFx iQY -vHn -eoe -tOq -hhp -ftE -upi -wbm -wbm -eWU -frO -frO -frO -vLI -iZX -iZX -bks -frO -ias -anr -idA -tEF +wZO +pcl +bPs +tse +ylh +jwd +uSm +uSm +wQG +mgj +mgj +mgj +ioG +qbm +qbm +iWI +mgj +ayL +dty +wii +rcq qeX mOJ mOJ @@ -81902,67 +81902,67 @@ mOJ qeX vcr aiN -kKO +jQI iei dlV iei sfx -oXh +qxW bcG -mpy +kNF lME -wNf +veb wwg iei dlV -cOi -loy -mJW +iZh +bAY +xkG yaH -hyi -cZS -cvv +pwN +awr +mEs idE -jDb -eXS -buO -xMr -mPX -lTU -wId -qmI -sSt -iLm -bGa -xnz +xfF +iEp +xPR +sGb +mxA +fSj +bWj +yhY +vep +xTq +aBi +iCZ csS oUy jqq -obZ +qWn csS -uzZ -fRO -fRO -fRO -fRO -dyZ +sGH +upt +upt +upt +upt +uOh hcL -bwC -hHQ -upH +aDT +qDo +kgB haJ iIL aoU -yhf +jcd sqC -cci +jfs sqC -nzw +bEz yfl iIL haJ iIL -eQY +uWU qSx ubi mOJ @@ -82000,69 +82000,69 @@ qeX qeX mOJ qeX -tag -luI -tTW -eqf +klp +xKI +ooT +vHU hpK -pdu +faf fKQ -wnn -jdJ -jdJ -jdJ -wnn +cCz +shD +shD +shD +cCz nUG tJW tJW nnS -wnn +cCz kTn -gEZ -bFK -qYA +gTR +rgn +unc cXA peC fnD -amI +fxI fnD peC cXA -hzl -tVW -csx -rVV -rVV -rVV -gUe +sBz +eiL +ttA +eoY +eoY +eoY +brh iQY vZw -jUv +usH iQY -mob +eKX vZw iQY -cbt -uPg -uDx -okp -nqN -kTY -wbm -wbm -bFm -kQZ -siY -frO -wbm -lwT -aQa -kBe -frO -iSn -teV -idA -tEF +iuH +jdp +azY +mpR +ver +cNM +uSm +uSm +jfD +iPU +cvB +mgj +uSm +rAU +vkA +bBF +mgj +uQb +vHz +wii +rcq qeX mOJ mOJ @@ -82105,65 +82105,65 @@ qeX vcr uFM mas -nlS -pWd -nlS -lKa -jiR +sLP +rti +sLP +oNx +qWB bcG iei bcG -ctI -lKa -nlS -pWd -nlS -nlS -jUr +gvj +oNx +sLP +rti +sLP +sLP +xCl idE idE idE idE idE -mfK -sIy -prx -bXf +snD +jrE +uhe +phJ idE idE idE idE -edT -ygu -wDG -rjR -rjR -rjR -rjR -rjR -rjR -cpD -esA -esA -hEg -fRO -fRO +aZH +gnT +dpD +uGs +uGs +uGs +uGs +uGs +uGs +ftB +wce +wce +qix +upt +upt rAD -nZf -tdo -tdo -wGI -tdo -iFL -vUy +rtW +hqb +hqb +oRJ +hqb +nAL +nzK sqC iIL aAi -ylb -iFL -tdo -wGI -tdo +nQR +nAL +hqb +oRJ +hqb hlk xid vcr @@ -82202,69 +82202,69 @@ qeX qeX mOJ qeX -tag -luI -lfg -eqf +klp +xKI +scT +vHU hpK -sJp +xSw fKQ -xKS -sdr +ang +xED dru -jky -xQU +rlh +kQu dru dru dru gUu -wnn +cCz hpK -vgC -bFK -crH +dxi +rgn +gsX wSF -jEy -xOV -xxt -iak -iak -tmD -toJ -rVV -iQx -rVV -rVV -rVV -qzh -bNx -nGm -unT -fCd -unT -rNZ +gxd +qWR +mrm +iLN +iLN +gww +cvl +eoY +heH +eoY +eoY +eoY +cgo +kyp +cOD +nlq +kJS +nlq +qFX wSF -tjm -uPg -tjm -ldA -bee -rhp -wbm -eFx -mUZ -aaa -qZz -bee -wbm -wzY -iZX -bks -frO -lkc -fOJ -idA -tEF +cov +jdp +cov +qng +lWr +nFe +uSm +sSz +pgY +eay +uRd +lWr +uSm +dyo +qbm +iWI +mgj +tzH +iqt +wii +rcq qeX mOJ mOJ @@ -82307,65 +82307,65 @@ qeX vcr uFM mas -aAM -pWd -nlS -nlS -vbI -lWO -lWO -lWO -kdv -nlS -nlS -pWd -nlS -nlS -nlS +nVi +rti +sLP +sLP +fNc +qSs +qSs +qSs +tna +sLP +sLP +rti +sLP +sLP +sLP xjX -mCx -fUX -owi -sbR -eee -vUr -gqi -haL +oOX +qGO +hqw +mPj +cXb +keo +qev +xix idE -xwn +dCY ppp idE -qdP -ygu -fhj -rjR -uuw -ccb -nXT -gxO -rjR -uOn -bPm -bPm -bPm -bPm -eFW +nKz +gnT +xWW +uGs +gib +lEY +irG +gVo +uGs +wHv +jxg +jxg +jxg +jxg +nYW rAD -nZf -tdo -tdo -wGI -tdo -tdo -ntw -vBR -vBR -vBR -mAS -tdo -tdo -wGI -ppU +rtW +hqb +hqb +oRJ +hqb +hqb +mto +wax +wax +wax +dBb +hqb +hqb +oRJ +iKa hlk xid vcr @@ -82404,69 +82404,69 @@ qeX qeX mOJ qeX -tag -luI -uUy -eqf +klp +xKI +klo +vHU hpK -xlf +sPL rvq -mvk +xxS rdT rdT rdT -srz -sBG -sBG -sBG -cPZ -sLT -eft -ydw -bNz -crH +kVO +kRX +kRX +kRX +tRl +hyA +moU +mJw +sTc +gsX wSF -gIm -rVV -rVV -rVV -rVV -rVV -rVV -rVV -iQx -rVV -rVV -rVV -rVV -dTz -dTz -rVV -rVV -dTz -mIK +quV +eoY +eoY +eoY +eoY +eoY +eoY +eoY +heH +eoY +eoY +eoY +eoY +wpg +wpg +eoY +eoY +wpg +raT wSF -tjm -uPg -tjm -ldA -bee -jZQ -wbm -cbR -faH -wbm -kSa -bee -wbm -wxg -oyW -pbn -frO -oBx -nRP -idA -tEF +cov +jdp +cov +qng +lWr +mHA +uSm +fnT +cXC +uSm +aNr +lWr +uSm +gDx +sYO +uWp +mgj +iCs +wVy +wii +rcq qeX mOJ mOJ @@ -82508,67 +82508,67 @@ qeX qeX vcr aiN -reI +ceW iei jQF bFT -nlS -nlS -nlS -nlS -nlS -nlS -nlS +sLP +sLP +sLP +sLP +sLP +sLP +sLP iei dlV -fEm -yfO -itG +gLN +eQm +jRf xjX -yhI -tZD -pMU +xlT +muT +hLs idE idE -rfu -ahG -ahG -lgc -eps +dEg +uqQ +uqQ +bkT +puE hOQ idE -hNz -ygu -ulJ -hlx -jqg -jqg -gGh -qBn -rjR -mDf -bPm -bPm -bPm -bPm -fhz +qVe +gnT +cdR +efG +pSt +pSt +lBx +sfp +uGs +uHR +jxg +jxg +jxg +jxg +iwa rAD -oJo -pSW -rXA +aiE +xOl +wWq haJ iIL -tdo -tdo -tdo -tdo -tdo -tdo -tdo +hqb +hqb +hqb +hqb +hqb +hqb +hqb iIL haJ iIL -uut +qrT qSx vcr mOJ @@ -82606,69 +82606,69 @@ qeX qeX mOJ qeX -tag -luI -khY -eqf +klp +xKI +cdE +vHU hpK -axB +uMk xjK -xKS -lbC +ang +jeE dru -dWn -xQU +nOQ +kQu jOg tJW tJW qzw -wnn +cCz kTn -crH -rnz -bos +gsX +gGp +kEh akM -wCq -rVV -rVV -rVV -fdV -rVV -rVV -rVV -iQx -rVV -rVV -rVV -rVV -rVV -fdV -rVV -rVV -rVV -bHG +aRJ +eoY +eoY +eoY +dXy +eoY +eoY +eoY +heH +eoY +eoY +eoY +eoY +eoY +dXy +eoY +eoY +eoY +fCr akM -oLl -uPg -tjm -ldA -bee -usM -wbm -iKh -aFi -wbm -sSP -frO -tet -puu -eEC -oiH -frO -dJS -gkA -idA -tEF +alA +jdp +cov +qng +lWr +aqh +uSm +wEk +cSd +uSm +pUx +mgj +wsK +cZg +gCZ +wHO +mgj +czT +kmM +wii +rcq qeX mOJ mOJ @@ -82710,67 +82710,67 @@ qeX qeX vcr aiN -nlj +kQd iei ozm hgR aXi -tmn +dPL hgR hgR hgR -tmn +dPL aXi hgR vWG -cOi -loy -oHT +iZh +bAY +dRi xjX -acr -cZS -cvv +pVa +awr +mEs idE -pzj -tqx +lLC +cNN fZj -qkZ +wRU idE idE idE idE -pxy -ygu -nAC -rjR -wWS -tUo -qUU -knV -rjR -pil -bPm -hAH -vlB -dJM -hqk +qho +gnT +bbM +uGs +cQQ +qPx +qni +cCk +uGs +lbr +jxg +pxA +jcK +etW +qbS hcL -nFu -tTq -upH +bnV +qnb +kgB kAh raE dwV -qsN +oSA raE raE raE -qsN +oSA dwV raE xsi pIB -fkY +yaK qSx vcr mOJ @@ -82808,69 +82808,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -euA +klp +xKI +vHU +eEL hpK -eBr +sWq xjK -wnn -oyb -oyb -oyb -wnn +cCz +lvB +lvB +lvB +cCz dru -sum +jXB rSP hCg -rTi +ayB kTn -crH -rnz -crH -pCu -rVV -rVV -kSS -mlp -ePF -lDe -sbe -vAo -mWK -mNr -mdM -pmL -xYc -evN -ePF -lDe -kSS -rVV -rVV -wSJ -tjm -uPg -tjm -sqf -jLQ -jFJ -wbm -cbR -hsO -wbm -yfq -tSI -rVH -cbR -xhD -pqb -btZ -iZK -vaO -idA -tEF +gsX +gGp +gsX +abf +eoY +eoY +oiq +fzH +fQt +pnx +msN +sUv +jle +swB +tcK +tXu +cYR +lVO +fQt +pnx +oiq +eoY +eoY +hlw +cov +jdp +cov +azv +pjR +tVg +uSm +fnT +ild +uSm +hHd +mXy +iEE +fnT +oLt +fnm +opa +cPL +nSC +wii +rcq qeX mOJ mOJ @@ -82917,57 +82917,57 @@ cSU iei iei iei -nlS -bxA +sLP +joS iei -cOi -nlS +iZh +sLP iei iei hBN -nlS -rOU +sLP +ile idE idE cuz cuz cuz cuz -waL -jmB +add +jkj fZj -rfu -lgc -bpY +dEg +bkT +xsa buM idE -hKy -ygu -qhN -rjR -rjR -nZp -rjR -rjR -rjR -uFX -sag -uFX -uFX -uFX -uFX -uFX +gOs +gnT +dZg +uGs +uGs +hVE +uGs +uGs +uGs +vBT +eZG +vBT +vBT +vBT +vBT +vBT hlk -isP -tdo +jdg +hqb kQb iIL iIL -tdo -upH +hqb +kgB iIL -tCs -tdo +ocy +hqb iIL iIL iIL @@ -83010,69 +83010,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -euA +klp +xKI +vHU +eEL hpK -pVU +nHB xjK dru dru sfF coX -wnn -ayI -gzS -bIX -ctF -hEN +cCz +fjw +wAi +hbZ +xDk +pSv kTn -crH -cjM -uor -ijw -lDK -lDK -ckM -lDK -lSK -gCF -xuY +gsX +msB +enj +gyz +yeZ +yeZ +eLA +yeZ +eMT +gcU +luU hWi amT -ddu +uMy amT hWi -rXS -hoo -eEI -hSF -rpP -hSF -hSF -toC -qlJ -mIy -mte -pgA -riE -hpL -fRF -aGA -nrr -apv -deT -dSH -cqr -ewc -yfq -hgQ -frO -hod -pPK -idA -tEF +ikF +hrW +qaO +oMU +rWS +oMU +oMU +tfC +dnb +tra +tJH +ueb +szR +sIJ +dJe +sAF +hvK +nlI +bnw +fGC +pSg +aAF +hHd +mFK +mgj +iuQ +dnU +wii +rcq qeX mOJ qeX @@ -83119,11 +83119,11 @@ pje iei iei iei -nlS -bJJ +sLP +xUu iei -pnG -nlS +uCP +sLP iei iei dlV @@ -83132,44 +83132,44 @@ fgO idE idE cuz -fUT -fUT +axm +axm cuz -pzj -aKD -rfu -bXf +lLC +jWd +dEg +phJ idE -lSX +evh buM idE -jXr -hNH -jbs -uFX -mLh -eAQ -hKb -kgS -ret -ksh -ksh -bvR -fIZ -hKb -hKb -njn +eGO +dKx +wxW +vBT +lUe +usd +fZt +oYp +nvu +wsd +wsd +dxD +kcE +fZt +fZt +lUx hlk bmr gdl kAh rNt iIL -tdo -hTQ +hqb +bVD iIL -bVr -tdo +lDW +hqb iIL iIL iIL @@ -83212,69 +83212,69 @@ qeX qeX mOJ qeX -tag -luI -tgD -euA +klp +xKI +ekL +eEL hpK -trO +oXx xjK dru dru -luI -luI -luI -luI -luI -luI -luI -luI -luI -crH -rnz -bos +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +gsX +gGp +kEh akM -aOW -rVV -rVV -rVV -rVV -iQx -rsH +jJi +eoY +eoY +eoY +eoY +heH +xHG lSp -dsm -sEr -tmO +qCy +uAI +lEo lSp -dZD -iQx -rVV -rVV -rVV -rVV -sQE +uoH +heH +eoY +eoY +eoY +eoY +hjW akM -oLl -rRv -lLu -idA -idA -idA -idA -idA -idA -idA -idA -idA -vrp -cbR -yfq -eDZ -frO -iZK -kJG -idA -tEF +alA +tqc +bPi +wii +wii +wii +wii +wii +wii +wii +wii +wii +kxy +fnT +hHd +tKm +mgj +cPL +jmx +wii +rcq qeX mOJ qeX @@ -83321,57 +83321,57 @@ iei iei iei pso -nbr -hHv +tqG +bfD tqd -fEm -nbr +gLN +tqG pso iei dlV -nlS -elu +sLP +eKi idE idE idE -rWK -rWK +gfT +gfT idE idE idE -pPO -xqu +mSR +lDP idE idE idE idE -dUk -uyC -tuW -uFX -uFX -sfm -uFX -uFX -uFX -uFX -uFX -uFX -uFX -uFX -uFX -syy +sWR +wIw +dtC +vBT +vBT +cbq +vBT +vBT +vBT +vBT +vBT +vBT +vBT +vBT +vBT +hGQ hlk -isP -tdo +jdg +hqb haJ iIL iIL -tdo -wuY +hqb +jXP ozK -oVD -tdo +umv +hqb iIL iIL iIL @@ -83414,69 +83414,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -euA +klp +xKI +vHU +eEL hpK -bDc +vQT xjK -yck -qba -luI -thf -thf -thf -mjj -ljG -ljG -ljG -luI -qHo -tJN -qHo +dxL +itm +xKI +oSU +oSU +oSU +ajr +lnr +lnr +lnr +xKI +jpN +tVY +jpN wSF -lDe -rsH -fdV -mfV -cpf -iaQ -wLy +pnx +xHG +dXy +iyZ +lBr +eZJ +hCl lSp -hZb -gfV -dDr +soM +oAv +bxf lSp -gVh -iaQ -cpf -kXJ -fdV -tlt -hby +uAA +eZJ +lBr +rtt +dXy +iKB +wCK wSF -iEs -qPD -iEs -idA -dis -dis -dis -lyC -bTc -bTc -bTc -idA -kEt -cbR -dWL -rrU -frO -iSn -kJG -idA -tEF +cQP +klf +cQP +wii +nXN +nXN +nXN +goY +dxj +dxj +dxj +wii +kUM +fnT +gwG +wuk +mgj +uQb +jmx +wii +rcq qeX mOJ qeX @@ -83519,65 +83519,65 @@ qeX qeX uFM mas -lDf -yfO -xPk -mth -mth -mth -mth -mth -mth +xef +eQm +ltu +tCo +tCo +tCo +tCo +tCo +tCo pso iei dlV iei iei iei -vWK -ovu -wPn -vmm -vmm -efQ -vmm -ulJ -ulJ -rQS -vmm -wwH -vmm -vmm -oWh -vmm -vmm -wwH -ghv -rQS -vmm -vmm -vmm -vmm -efQ -vmm -rnC -cIr -jnY +rKo +uEV +job +iwB +iwB +xrh +iwB +cdR +cdR +mTJ +iwB +ktQ +iwB +iwB +bNC +iwB +iwB +ktQ +cPA +mTJ +iwB +iwB +iwB +iwB +xrh +iwB +shu +jLo +yfp iIL jOh iIL haJ iIL iIL -oXT -oXT -oXT -oXT -oXT -oXT -qql -pSW -fKF +rIW +rIW +rIW +rIW +rIW +rIW +mla +xOl +ukt hlk xid qeX @@ -83616,69 +83616,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -lRj +klp +xKI +vHU +cxW hpK hpK -eaQ +fuJ hpK hpK -luI -thf -thf -thf -doo -ljG -ljG -ljG -luI -crH -rnz -crH +xKI +oSU +oSU +oSU +wvY +lnr +lnr +lnr +xKI +gsX +gGp +gsX wSF -giQ -xXD +gBI +mbD hWi hWi -aYY -buD +iTe +unA hWi hWi hWi -kFH +srH hWi hWi hWi -fHL -xQB +kRS +gXV hWi hWi -bgk -uYs +npP +oXS wSF -tjm -rRv -tjm -idA -dis -dis -dis -kGQ -bTc -bTc -bTc -idA -eqv -nRD -wbm -mro -frO -lkc -teV -idA -tEF +cov +tqc +cov +wii +nXN +nXN +nXN +lFf +dxj +dxj +dxj +wii +gZT +nWL +uSm +wvr +mgj +tzH +vHz +wii +rcq qeX mOJ qeX @@ -83721,65 +83721,65 @@ qeX qeX uFM mas -vFT -vFT -rSZ -mth -hVV -hVV -hVV -cZv -mth +kTj +kTj +xWa +tCo +uFJ +uFJ +uFJ +lif +tCo tLZ pso -ihs +pwY hgR hgR hgR -tsu -lgC -oWR -nSc -fSo -fSo -fSo -prN -fSo -fSo -cVT -guQ -guQ -fSo -jiE -fSo -prN -prN -hzE -mhr -mhr -pPn -mhr -mhr -mhr -nSc -fnl -fDU -kvk +rgp +qPd +lCv +wTR +ufA +ufA +ufA +ayi +ufA +ufA +mtZ +nPd +nPd +ufA +sgM +ufA +ayi +ayi +pTG +qST +qST +hRI +qST +qST +qST +wTR +mfu +rPw +ivq raE raE raE xsi iIL bVw -oXT -nPR -nPR -nPR -qEP -oXT -xfN -xfN -xfN +rIW +sCk +sCk +sCk +iyt +rIW +tSs +tSs +tSs hlk xid qeX @@ -83820,65 +83820,65 @@ iaN iaN iaN iaN -euA -eqf -aGk -eqf -eqf -vOs -eqf -luI -thf -thf -thf -doo -oxX -oxX -oxX -luI -crH -rnz -aac +eEL +vHU +khi +vHU +vHU +qVB +vHU +xKI +oSU +oSU +oSU +wvY +tZz +tZz +tZz +xKI +gsX +gGp +chR hWi hWi hWi hWi -hxn -gfV -wFo -dxa -jRR -rCg -gfV -cvh -jRR -jUk -dbw -gfV -vyZ +wjx +oAv +iMC +wOb +mkb +upC +oAv +mFt +mkb +uLL +uWj +oAv +wmf hWi hWi hWi hWi -dzt -qmr -tjm -idA -tAp -tAp -tAp -kGQ -bTc -bTc -bTc -idA -uYR -wbm -wbm -mro -frO -iSn -teV +pFL +uiB +cov +wii +cBc +cBc +cBc +lFf +dxj +dxj +dxj +wii +vtT +uSm +uSm +wvr +mgj +uQb +vHz orQ orQ orQ @@ -83923,65 +83923,65 @@ qeX qeX uFM mas -owC -loy -oHo -mth -hVV -hVV -hVV -hVV -mth +qNi +bAY +eUJ +tCo +uFJ +uFJ +uFJ +uFJ +tCo pso leX pso iei iei iei -bJJ -ebc -uXq -nLe -efX -mQg -pwB -mQg -mQg -vEM -mQg -mQg -mQg -mQg -mEH -mQg -vEM -mQg -mQg -mQg -mQg -mQg -pwB -mQg -wFV -nLe -eYs -pZF -bVr +xUu +dPO +kAU +uUr +rLT +aUn +uTO +aUn +aUn +iXM +aUn +aUn +aUn +aUn +spd +aUn +iXM +aUn +aUn +aUn +aUn +aUn +uTO +aUn +viX +uUr +eNo +qRw +lDW iIL iIL iIL lkY iIL iIL -oXT -nPR -nPR -nPR -nPR -oXT -hRT -hHQ -bVR +rIW +sCk +sCk +sCk +sCk +rIW +tIP +qDo +ovz hlk xid qeX @@ -84007,96 +84007,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -oDC -pDi -pDi -pDi -pDi -pDi -pDi -oDC -pDi +qsq +qsq +qsq +qsq +qsq +qyf +qsq +qsq +qsq +qsq +qsq +qsq +qyf +qsq riD -hBb -ffG -rOu -kBl -uUy -pxN -pFY -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +fOz +scC +hmP +qpa +klo +nbl +hgi +xKI +xLd +xLd +xLd +xKI +pfs +pfs +pfs +xKI +gsX +gGp +gsX hWi vBi vBi hWi -ihO -gfV -eOL -gfV -gfV -gfV -gfV -gfV -gfV -gfV -eOL -gfV -nPb +oro +oAv +tyN +oAv +oAv +oAv +oAv +oAv +oAv +oAv +tyN +oAv +hDB hWi -rdq -isr +aNY +lid hWi -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -efz -wbm -wbm -mro -frO -gSB -vcV +cov +uiB +cov +wii +jHH +jHH +jHH +wii +tCz +tCz +tCz +wii +fdn +uSm +uSm +wvr +mgj +rIa +toB fKE -yip -vyn -yip -yip -yip -yip -yip -yip -yip -vyn -yip -yip -yip -vyn -yip +kJd +cJY +kJd +kJd +kJd +kJd +kJd +kJd +kJd +cJY +kJd +kJd +kJd +cJY +kJd orQ qeX vwY @@ -84124,27 +84124,27 @@ qeX qeX qeX uFM -kRh +dVb oLb reb iei -xvy -hVV -hVV -hVV -hVV -mth -aST -mth -mth -mth -mth -mth -mth -mth -uXq -nLe -eYs +iol +uFJ +uFJ +uFJ +uFJ +tCo +wPr +tCo +tCo +tCo +tCo +tCo +tCo +tCo +kAU +uUr +eNo smh smh smh @@ -84164,27 +84164,27 @@ smh smh smh smh -wnU -nLe -rbf -oXT -oXT -oXT -oXT -oXT -oXT -vTW -oXT -oXT -nPR -nPR -nPR -nPR -atp +bAt +uUr +hHa +rIW +rIW +rIW +rIW +rIW +rIW +jlQ +rIW +rIW +sCk +sCk +sCk +sCk +buj iIL ccs avr -ajg +rHH xid qeX qeX @@ -84209,96 +84209,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -yec -npX +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +xPm +jwc riD riD -kRq +qHm riD riD riD riD riD -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +xKI +xLd +xLd +xLd +xKI +pfs +pfs +pfs +xKI +gsX +gGp +gsX hWi vBi vBi hWi -jEx -oMp -alF -gfV -gfV -oTr -oTr -oTr -gfV -gfV -uUW -bAB -wlz -lBv -dsE -rMQ +rsd +nxI +obQ +oAv +oAv +pZm +pZm +pZm +oAv +oAv +gKW +pnV +dUb +rZu +uJV +ecD hWi -tjm -rRv -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA +cov +tqc +cov +wii +jHH +jHH +jHH +wii +tCz +tCz +tCz +wii fKE fKE kWK fKE fKE -bCu +gIg fKE fKE -nCg -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -rTK -yip +hwL +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +wMh +kJd orQ qeX vwY @@ -84327,65 +84327,65 @@ qeX qeX uFM mas -nGu -yfO -trl -mth -hVV -hVV -hVV -hVV -mth -jak -mRq -jTz -cpY -vCi -qwE -vpp -mth -cHW -nLe -eYs +lkN +eQm +sdH +tCo +uFJ +uFJ +uFJ +uFJ +tCo +jTf +lwO +hlU +xRP +iIJ +oyG +xbd +tCo +xwA +uUr +eNo smh -ezE +nTR vPj -lBs -lBs -lBs -pxs +pYW +pYW +pYW +vCo ogO -kju -qkI +qdj +ttD vZY -nDW +pYV smh -uHS -eYD -tsW -gfe -enJ +uFe +lLn +eTd +hNf +hbS smh -uXq -nLe -eYs -oXT -bPO -bPO -lVz -fgD -lVz -lpk -lpk -oXT -nPR -nPR -nPR -nPR -oXT -rNF -pSW -ill +kAU +uUr +eNo +rIW +xej +xej +bsy +fbQ +bsy +sDF +sDF +rIW +sCk +sCk +sCk +sCk +rIW +egL +xOl +qzG hlk xid qeX @@ -84411,96 +84411,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +eFV riD -pCl +nDf mOo riD -mYm -uJb -ccc -piL -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -kmG -tJN -qHo +rrB +hfq +pPG +lZB +xKI +xLd +xLd +xLd +xKI +pfs +pfs +pfs +xKI +kYW +tVY +jpN vSP vSP vSP vSP vSP vSP -tfD -gfV -gfV -nMb -cIZ -haE -gfV -gfV -lQe +qEf +oAv +oAv +xUV +ibV +jMV +oAv +oAv +vun jOO jOO jOO jOO jOO jOO -iEs -ubx -bLP -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -iMO -krc -aOm -xbC +cQP +axc +tok +wii +jHH +jHH +jHH +wii +tCz +tCz +tCz +wii +aVc +fSP +xpO +eSB fKE pSD -pFP +xks fKE -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +psa +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd orQ qeX vwY @@ -84529,65 +84529,65 @@ qeX qeX uFM mas -tcs -loy -bxA -mth -hVV -hVV -hVV -hVV -mth -uPJ -rdS -gVx -tPx -gVx -rdS -uPJ -oMj -ulJ -rKN -eYs +qEZ +bAY +joS +tCo +uFJ +uFJ +uFJ +uFJ +tCo +ivm +bmA +gIh +dDq +gIh +bmA +ivm +hOw +cdR +mci +eNo smh -hMC +oif inK -cKP -cKP -cKP -cKP +xFz +xFz +xFz +xFz inK -oHG -cKP -cKP -cKP -qFv -dxE -dxE -hli -dxE -qPf +rWC +xFz +xFz +xFz +wvg +lYC +lYC +oCi +lYC +lRA smh -gGL -rKN -ulJ -fgD -lVz -lpk -lpk -oXT -wtU -lVz -lVz -oXT -nPR -nPR -nPR -nPR -oXT -oki -hHQ -pmq +qeS +mci +cdR +fbQ +bsy +sDF +sDF +rIW +uOi +bsy +bsy +rIW +sCk +sCk +sCk +sCk +rIW +rhC +qDo +enp hlk xid qeX @@ -84613,96 +84613,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +eFV riD -mTY +aDf mOo riD -wuQ +fpb eVR eVR -kMX -luI -fSr -fSr -fSr -luI -tXH -tXH -oQL -luI -oKO -rnz -crH +vIQ +xKI +xLd +xLd +xLd +xKI +pfs +pfs +iuW +xKI +oxt +gGp +gsX vSP -tWv -raz -jxa -ffL +wEI +oYC +mRW +dki fnt -pVP -gfV -vrx -wtk -wtk -uRB -rYR -gfV -geE +pbC +oAv +cSS +hRY +hRY +wbD +qNA +oAv +beG xDJ -iyr -mBL -aEX -hoa +dcV +eln +mVZ +mfR jOO -tjm -qmr -nNW -idA -iQR -aSH -aSH -idA -xCa -xCa -xCa -idA -plg +cov +uiB +wXS +wii +fWs +jHH +jHH +wii +tCz +tCz +tCz +wii +wpl kDQ kDQ -lGb +acQ fKE qtc -aOm +xpO fKE -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +psa +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd orQ qeX vwY @@ -84730,29 +84730,29 @@ qeX qeX qeX uFM -qAu +raW oLb reb rXG -mth -mth -mth -mth -mth -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -gGL -rKN -eYs +tCo +tCo +tCo +tCo +tCo +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +qeS +mci +eNo smh -jWR +cuy wmg jXO jXO @@ -84763,34 +84763,34 @@ jBQ inK inK inK -qFv -hlT -hlT -eSa -dxE -vLA +wvg +pgU +pgU +uDr +lYC +lHK smh -uXq -rKN -eYs -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -oXT -oXT -oXT -oXT -oXT +kAU +mci +eNo +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +rIW +rIW +rIW +rIW +rIW tiE vEa cTg -lOL +ezc xid qeX qeX @@ -84815,96 +84815,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj -elS +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +eFV +kEG mOo mOo -elS +kEG mOo cpm gIA vnb -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +xKI +xLd +xLd +xLd +xKI +pfs +pfs +pfs +xKI +gsX +gGp +gsX vSP -iwj -gfS -smC -kfn +eIy +kWw +cel +ebK fnt -fps -gqM -wzn -gqM -gqM -gqM -wzn -gqM -cgP +aNU +oMw +xVB +oMw +oMw +oMw +xVB +oMw +tcC xDJ -mkG -huI -eeU -ssv +eiO +bdR +imw +uCv jOO -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA +cov +uiB +cov +wii +jHH +jHH +jHH +wii +tCz +tCz +tCz +wii wph kDQ doK aoj -bHU +ucb pSD aoj -ekJ -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +xDz +psa +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd orQ qeX vwY @@ -84933,35 +84933,35 @@ qeX qeX uFM mas -vUK -yfO -jOc -mth -nHZ -rJx -nSK -nSK -hsJ -pJQ -pJQ -pJQ -hny -qxy -qxy -qxy -hsJ -rAE -nLe -eYs +nUJ +eQm +iZR +tCo +kjS +mMU +etj +etj +mrQ +rXQ +rXQ +rXQ +qIO +nvZ +nvZ +nvZ +mrQ +fcD +uUr +eNo smh -hMC +oif ozU -fJb -fJb -fJb -fJb +iLd +iLd +iLd +iLd inK -jiX +osc smh smh oIn @@ -84969,29 +84969,29 @@ smh smh smh smh -rzQ +ipG smh smh -uXq -nLe -eYs -hTG -piJ -piJ -piJ -mYs -rqJ -rqJ -rqJ -hTG -rXT -tQY -lpk -rXT -oXT -fEY -pSW -gjh +kAU +uUr +eNo +gAa +mfw +mfw +mfw +jem +tvB +tvB +tvB +gAa +tzN +dBQ +sDF +tzN +rIW +szT +xOl +czB hlk xid qeX @@ -85017,96 +85017,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -hjJ +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +cnB riD -oay +vXk svg riD -bTt +vuu eVR eVR -vat -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -bPc +eWq +xKI +xLd +xLd +xLd +xKI +pfs +pfs +pfs +xKI +gsX +gGp +mcV vSP -hps -gAR -xcj -tGP -xNx -voc -nPb -ckW -lGY -gfV -nPb -ckW -lGY -fVv -iIX -fht -pXY -rCa -uVm +kNt +dMY +sCR +xGH +qYU +sgT +hDB +sbU +wji +oAv +hDB +sbU +wji +hFM +asT +oIZ +fxx +oGE +dmu jOO -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -wqT +cov +uiB +cov +wii +jHH +jHH +jHH +wii +tCz +tCz +tCz +wii +gQt kDQ fia -sIx +omW fKE pSD -gBm +bWD fKE -aKo -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +wXZ +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd orQ qeX vwY @@ -85135,65 +85135,65 @@ qeX qeX uFM mas -vFT -vFT -vFT -mth -ktR -bMt -uPJ -uPJ -hsJ -pJQ -pJQ -pJQ -vuw -qxy -qxy -qxy -hsJ -myK -rKN -eYs +kTj +kTj +kTj +tCo +wmX +rSO +ivm +ivm +mrQ +rXQ +rXQ +rXQ +aUD +nvZ +nvZ +nvZ +mrQ +xgD +mci +eNo smh -rbX +hmL ozU -lBs -lBs -lBs -lBs +pYW +pYW +pYW +pYW inK -bym +sqI smh -iqB -uHS -mrC +luJ +uFe +sas smh -hqK -tMI -tyY +nRb +kDD +atr qdG jFY -uXq -rKN -eYs -hTG -piJ -piJ -piJ -jfR -rqJ -rqJ -rqJ -hTG -tQY -lpk -lpk -kFh -oXT -xfN -xfN -xfN +kAU +mci +eNo +gAa +mfw +mfw +mfw +qcg +tvB +tvB +tvB +gAa +dBQ +sDF +sDF +goh +rIW +tSs +tSs +tSs hlk xid qeX @@ -85219,96 +85219,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +eFV riD -pCl +nDf mOo riD -swD -aKk +lHW +fPc eVR rxF -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +xKI +xLd +xLd +xLd +xKI +pfs +pfs +pfs +xKI +gsX +gGp +gsX vSP -viz -gfS -iYY -oxg +ueN +kWw +vaZ +lxu fnt -cDv -gfV -lNv -gfV -gfV -gfV -lNv -gfV -rpQ +mxk +oAv +trt +oAv +oAv +oAv +trt +oAv +hhP xDJ -gNA -gOJ -eeU -xSo +eOz +fCl +imw +eUs jOO -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -hJQ -cCc -lHB -xdq +cov +uiB +cov +wii +jHH +jHH +jHH +wii +tCz +tCz +tCz +wii +izW +pGn +sBC +fql fKE npl -pFP +xks fKE -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +psa +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd orQ qeX vwY @@ -85337,65 +85337,65 @@ mOJ mOJ cSV cQi -dIR -nrK -uZs -mth -mth -uPJ -rdS -frK -hsJ -cQs -cQs -cQs -vta -qxy -qxy -qxy -hsJ -uXq -foB -ufe -fQN -uAG +tqb +miP +ntQ +tCo +tCo +ivm +bmA +pPb +mrQ +hCK +hCK +hCK +bZv +nvZ +nvZ +nvZ +mrQ +kAU +pUd +tOu +uCN +dvo jBQ -cKP -cKP -cKP -cKP -cKP -cKP -iNU -udr -dxE -aCa -liv -bjk -kXY -tyY +xFz +xFz +xFz +xFz +xFz +xFz +xwN +sTB +lYC +cWd +tmx +xer +wLX +atr gey jFY -iOw -rKN -eYs -hTG -piJ -piJ -piJ -kEV -lEA -lEA -lEA -hTG -mrb -lpk -lVz -oXT -oXT -hRT -hHQ -xfg +jKZ +mci +eNo +gAa +mfw +mfw +mfw +wBn +aSv +aSv +aSv +gAa +doG +sDF +bsy +rIW +rIW +tIP +qDo +fjG hlk xid mOJ @@ -85421,96 +85421,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -kpG +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +qsq +gTW riD riD -kRq +qHm riD riD riD riD -kMg -luI -luI -luI -luI -luI -rAI -toX -toX -luI -wBz -rnz -crH +bjK +xKI +xKI +xKI +xKI +xKI +iqj +spx +spx +xKI +eXO +gGp +gsX vSP -lWC -jMw -fqW -ihI +yjS +jex +qmT +lkM fnt -mrr -gfV -gfV -oRt -gZj -wDe -gfV -gfV -hoq +stG +oAv +oAv +cdC +jTL +hnB +oAv +oAv +jBj xDJ -pmS -bNk -pvE -ngF +jeQ +fdA +hYe +xqZ jOO -tjm -qmr -guH -idA -xvE -xvE -sHc -idA -idA -idA -idA -idA +cov +uiB +dCh +wii +byA +byA +oqj +wii +wii +wii +wii +wii fKE fKE -nbK +fud fKE fKE -bCu +gIg fKE fKE -jSk -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +cnh +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd +kJd orQ qeX vwY @@ -85523,97 +85523,97 @@ kIE mOJ mOJ mOJ -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX vkd -kjp +cth lQK rEK lQK -nbU -izi -rdS -gFk -frK -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -lOD -gik +sUW +eUb +bmA +aYk +pPb +mrQ +gon +gon +gon +mrQ +irk +irk +irk +mrQ +kAU +fkk +pRM smh -qkI +ttD bsJ -fJb -fJb -fJb -aRT -lFv -lFv +iLd +iLd +iLd +gFz +qLQ +qLQ smh -bKR -lth -lRX +qcG +vbH +cAl smh -ksE -kXY -jnO -uds +xju +wLX +fZQ +fnc jFY -myK -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -tQY -rXT -lVz -fgD -tdo +xgD +uUr +eNo +gAa +dLu +dLu +dLu +gAa +xxL +xxL +xxL +gAa +dBQ +tzN +bsy +fbQ +hqb iIL ccs iIL -jlv +ksM qSx -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX vwY qeX qeX @@ -85623,96 +85623,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -dUh -pDi -pDi -pDi -pDi -pDi -pDi -dUh -pDi +qsq +qsq +qsq +qsq +qsq +gXH +qsq +qsq +qsq +qsq +qsq +qsq +gXH +qsq riD -hBb -ffG -rOu -pFY -atf -wRj -mqv -uXv -hyw -avq -sEY -nLP -lgk -wam -lgk -fng -geS -qeR -crH +fOz +scC +hmP +hgi +pti +rDJ +pgH +vlD +iHE +pCV +qwI +gnU +mov +uNK +mov +jIX +eiQ +eGF +gsX vSP vSP vSP vSP vSP vSP -tNH -gfV -gfV -sLA +kfY +oAv +oAv +oIz hWi -grW -pXp -gfV -eXb +lBV +hBB +oAv +xEe jOO jOO jOO jOO jOO jOO -uqD -hCk -mte -mrv -eJW -sJq -nzk -dxZ -wJw -nXm -esF -oqH -mTU -fsS -ewj -oOn -wDV -gkN -vcV +sUF +uqs +tJH +xPx +wbX +eys +qkL +jFb +mHc +hUN +fub +oXZ +wFL +aem +tyf +bQN +syu +gxp +toB fKE -yip -rFS -yip -yip -yip -yip -yip -yip -yip -rFS -yip -yip -yip -rFS -yip +kJd +qAq +kJd +kJd +kJd +kJd +kJd +kJd +kJd +qAq +kJd +kJd +kJd +qAq +kJd orQ qeX vwY @@ -85725,7 +85725,7 @@ kIE mOJ mOJ mOJ -tag +klp ndl ndl ndl @@ -85740,27 +85740,27 @@ ndl ndl ndl vkd -kjp +cth lQK rEK jDu -mth -mth -mth -mth -mth -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -rKN -kCp +tCo +tCo +tCo +tCo +tCo +mrQ +gon +gon +gon +mrQ +irk +irk +irk +mrQ +kAU +mci +gyr gay gay gay @@ -85771,36 +85771,36 @@ gay jFY jFY jFY -cpK -eeq -cUx +nvv +uxc +vLv smh -daJ -eTA -kXY -knl -kOc -ulJ -rKN -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -oXT -oXT -oXT -oXT -oXT +cKH +aEl +wLX +lCo +mZT +cdR +mci +eNo +gAa +dLu +dLu +dLu +gAa +xxL +xxL +xxL +gAa +rIW +rIW +rIW +rIW +rIW etw ccs iIL -gQH +hGI qSx ndl ndl @@ -85840,65 +85840,65 @@ iaN iaN iaN iaN -euA -eqf -nHE -eqf -eqf -lZU -ncZ -euA -rOu -oXt -gEZ -tsz -tus -tus -tus -dzZ -crH -iAN -crH +eEL +vHU +bsq +vHU +vHU +twQ +xli +eEL +hmP +kaj +gTR +mso +ojx +ojx +ojx +tVr +gsX +ldJ +gsX hWi -iFn -jRR -rlJ -oiD +uhX +mkb +rTA +kIe lSp -tWB -gfV -gfV -mxC +imp +oAv +oAv +oSX bUe -pNr -rnm -gfV -roS +eJD +aNi +oAv +xwE lSp -nnb -lEU -fvp -lEU +hAF +chC +pow +chC hWi -tjm -qmr -tjm -mqw -efc -efc -efc -teY -uDx -msl -lwp -aRH -ctD -uDx -fuD -oWr -uNa -hwz -teV +cov +uiB +cov +ali +mTv +mTv +mTv +lbs +azY +mPa +dMQ +bKm +svI +azY +lFw +hLU +jIo +xBo +vHz orQ orQ orQ @@ -85927,7 +85927,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -85943,35 +85943,35 @@ ndl ndl cSV cQi -cCd -tZu -gmb -mth -hVV -hVV -hVV -cZv -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -rKN -eYs +wON +xOE +uZP +tCo +uFJ +uFJ +uFJ +lif +mrQ +gon +gon +gon +mrQ +irk +irk +irk +mrQ +kAU +mci +eNo gay -gox -udj -bsE -kqj -kqj +rsQ +iGu +oSb +qxY +qxY gay -vzV -msk +iia +vnW jFY jFY jFY @@ -85979,29 +85979,29 @@ jFY jFY jFY jFY -iZd -knl +wwt +lCo jFY -diY -rKN -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -qEP -oXT -nyH -pSW -rXA +are +mci +eNo +gAa +dLu +dLu +dLu +gAa +xxL +xxL +xxL +gAa +sCk +sCk +sCk +iyt +rIW +aUB +xOl +wWq hlk xid ndl @@ -86040,69 +86040,69 @@ qeX qeX qeX mOJ -tag -luI -euA -eqf -rOu +klp +xKI +eEL +vHU +hmP shL shL shL shL -qEo +dPo shL -xaP -gmq -tsz -rrr -dOs -rrr -dzZ -crH -rnz -crH +uAn +nQz +mso +aHN +eAF +aHN +tVr +gsX +gGp +gsX hWi -wXh -gfV -gfV -gfV -dpC -hzT -aMr -aMr -rOf +kZg +oAv +oAv +oAv +moZ +rsL +uGF +uGF +wlP bUe -pNr -rnm -gfV -eOL -lpv -fUR +eJD +aNi +oAv +tyN +ler +kDw heh heh aVM hWi -tjm -qmr -tjm -mqw -dpA -wnh -wvF -teY -nhm -jgZ -uNa -uNa -uNa +cov +uiB +cov +ali +bzQ +pVp +fxi +lbs +xnU +hNY +jIo +jIo +jIo vCl -uNa -uNa -uNa -kJG -teV -idA -tEF +jIo +jIo +jIo +jmx +vHz +wii +rcq mOJ qeX qeX @@ -86129,7 +86129,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -86145,65 +86145,65 @@ ndl ndl cSV cQi -dVs -nrK -yae -mth -hVV -hVV -hVV -hVV -hsJ -kBa -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -nLe -eYs +uPq +miP +eQH +tCo +uFJ +uFJ +uFJ +uFJ +mrQ +bSn +gon +gon +mrQ +irk +irk +irk +mrQ +kAU +uUr +eNo gay -woH -xfD -fFN -fFN -fFN +fAt +dIt +xUg +xUg +xUg gay -xub -mgd -svR +sIN +rVv +shV jFY -mOQ -uUZ -ioa -fGh +bCE +mFp +rgZ +mTQ jFY -qxH -knl +ilx +lCo jFY -kni -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -ppV -hTG -nPR -nPR -nPR -nPR -oXT -tCs -hHQ -upH +vpR +uUr +eNo +gAa +dLu +dLu +dLu +gAa +xxL +xxL +sXy +gAa +sCk +sCk +sCk +sCk +rIW +ocy +qDo +kgB hlk xid ndl @@ -86242,16 +86242,16 @@ qeX qeX qeX mOJ -tag -luI -tPA -eqf -rOu -aMg -bzI -aMg -ahR -hTo +klp +xKI +qcx +vHU +hmP +spS +woq +spS +jtn +vdq shL shL shL @@ -86260,33 +86260,33 @@ shL shL shL shL -foU -tJN -qHo +cbx +tVY +jpN hWi -lot -gZj -lNN -gLd +tEk +jTL +fip +unS lSp -alF -gfV -gfV -mxC +obQ +oAv +oAv +oSX bUe -pNr -rnm -gfV -uUW +eJD +aNi +oAv +gKW lSp -ehS -fbd -aEB -fbd +luY +gqC +cTI +gqC hWi -iEs -ubx -ugd +cQP +axc +qcd hwZ hwZ hwZ @@ -86294,17 +86294,17 @@ hwZ hwZ hwZ hwZ -uNa -qQp -qQp -qQp -qQp -ujV -uNa -kJG -kJG -idA -tEF +jIo +iHD +iHD +iHD +iHD +eIL +jIo +jmx +jmx +wii +rcq mOJ qeX qeX @@ -86331,7 +86331,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -86346,67 +86346,67 @@ ndl ndl ndl vkd -kjp +cth lQK rEK lQK -odj -hVV -hVV -hVV -hVV -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -lOD -rbf +qyR +uFJ +uFJ +uFJ +uFJ +mrQ +gon +gon +gon +mrQ +irk +irk +irk +mrQ +kAU +fkk +hHa gay -yds -ikK -kcJ -chl -chl +dfr +qvE +kfp +snY +snY gay -vTA -paX -cWP -dfk -tWw -nyC -uQJ -xox +ceR +eJA +fsd +tGy +jsR +lLI +sxt +pNS hFK -bjk -knl +xer +lCo xRB -uXq -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -nPR -otp +kAU +uUr +eNo +gAa +dLu +dLu +dLu +gAa +xxL +xxL +xxL +gAa +sCk +sCk +sCk +sCk +tZG iIL ccs iIL -nlD +nBo qSx ndl ndl @@ -86444,69 +86444,69 @@ qeX qeX qeX mOJ -tag -luI -euA -wke -rOu +klp +xKI +eEL +sOM +hmP mmw mmw mmw mmw -hTo +vdq eKj -jrn -jYD -rCI -oeH -olC -ggi +bdq +leL +ckL +bOO +tOM +vFC shL -jvK -iAN -aac +aDM +ldJ +chR oVL oVL oVL oVL oVL oVL -tNH -gfV -gfV -wkk +kfY +oAv +oAv +rDr hWi -ceN -kDc -gfV -jIl +par +kgJ +oAv +gZR fVO fVO fVO fVO fVO fVO -dzt -qmr -fMz +pFL +uiB +iof hwZ dXl -vVb -nWC -nvH -gLo -fcN -uNa -qQp -qQp -qQp -qQp -qQp -uNa -teV -wer -idA -tEF +uKe +pOK +fnG +vuz +jSv +jIo +iHD +iHD +iHD +iHD +iHD +jIo +vHz +xek +wii +rcq mOJ qeX qeX @@ -86533,7 +86533,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -86548,67 +86548,67 @@ ndl ndl ndl vkd -kjp +cth lQK rEK xQf -mth -hVV -hVV -hVV -hVV -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -nLe -eYs +tCo +uFJ +uFJ +uFJ +uFJ +mrQ +gon +gon +gon +mrQ +irk +irk +irk +mrQ +kAU +uUr +eNo gay -xDv -ikK -ojO -wgS -jzs +lPJ +qvE +cLX +oQy +jfr gay jFY -ixV +wkv jFY jFY -xZa -xze -tWw -gMy +oef +yas +jsR +dBH hFK -bjk -knl +xer +lCo xRB -uXq -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -nPR -oXT +kAU +uUr +eNo +gAa +dLu +dLu +dLu +gAa +xxL +xxL +xxL +gAa +sCk +sCk +sCk +sCk +rIW bkk ccs iIL -lQf +aWW qSx ndl ndl @@ -86646,69 +86646,69 @@ qeX qeX qeX mOJ -tag -luI -jnk -khY -rOu +klp +xKI +fzR +cdE +hmP eAG mmw -pWM -tfZ -fVL +xbY +keF +rbI eKj -hGT +bji xuw xuw xuw xuw -oRG +vDv shL -sZm -rnz -crH +mxJ +gGp +gsX oVL -yeb -aGL -ljD -wEN +eer +fUJ +uAJ +fJF hhH -jdZ -gfV -gfV -dxa -jRR -jUk -gfV -gfV -nQc +oof +oAv +oAv +wOb +mkb +uLL +oAv +oAv +fqT bfh -sSf -eYK -ood -jZG +uFK +dfp +qJk +stt fVO -tjm -qmr -tjm +cov +uiB +cov klE -ncn -lZt -vVX -lZt -lZt -wFO -uNa -qQp -qQp -qQp -qQp -qQp -uNa -teV -kJG -idA -tEF +hhe +sWD +obC +sWD +sWD +auE +jIo +iHD +iHD +iHD +iHD +iHD +jIo +vHz +jmx +wii +rcq mOJ qeX qeX @@ -86735,7 +86735,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -86751,65 +86751,65 @@ ndl ndl cSV cQi -cCd -tZu -gmb -mth -hVV -hVV -hVV -hVV -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -wnU -nLe -eYs +wON +xOE +uZP +tCo +uFJ +uFJ +uFJ +uFJ +mrQ +gon +gon +gon +mrQ +irk +irk +irk +mrQ +bAt +uUr +eNo gay gay -vDt +crO gay gay gay gay -eCa -eXk -swJ +uFq +ffW +ayw jFY -aXl -vRX -oBo -xEW +hVC +sJu +uhA +svr jFY -nRt -knl +lAv +lCo jFY -gGL -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -nPR -oXT -nyH -pSW -rXA +qeS +uUr +eNo +gAa +dLu +dLu +dLu +gAa +xxL +xxL +xxL +gAa +sCk +sCk +sCk +sCk +rIW +aUB +xOl +wWq hlk xid ndl @@ -86848,69 +86848,69 @@ qeX qeX qeX mOJ -tag -luI -euA -iQC -rOu -dfF -aWC -ygg -mMM -tvl -pII -fzd +klp +xKI +eEL +gte +hmP +nmi +sHX +xRi +hjq +sFq +pXz +iRK dBN dBN hak hak -gtv -iYa -sWB -iTo -mrS +xmZ +fVn +geV +wJG +xre oVL -iPl -rHT -xGQ -mUp +vZo +enf +cLM +bUY hhH -jRw -gfV -gfV -oTr -oTr -oTr -gfV -gfV -kHd +xAp +oAv +oAv +pZm +pZm +pZm +oAv +oAv +ciS bfh -nhy -llt -eQZ -rPq +apA +osH +ira +rhI fVO -tjm -qmr -tjm +cov +uiB +cov klE -nvH -lZt -fcH -lZt -lZt -kAl -uNa -qQp -qQp -qQp -qQp -qQp -uNa -teV -teV -idA -tEF +fnG +sWD +llK +sWD +sWD +upP +jIo +iHD +iHD +iHD +iHD +iHD +jIo +vHz +vHz +wii +rcq qeX mnI mnI @@ -86937,7 +86937,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -86953,32 +86953,32 @@ ndl ndl cSV cQi -dIR -nrK -fuj -mth -mth -mth -mth -mth -hsJ -gNX -gNX -gNX -hsJ -hsJ -hsJ -hsJ -hsJ -xgz -rKN -bPj +tqb +miP +spW +tCo +tCo +tCo +tCo +tCo +mrQ +xPH +xPH +xPH +mrQ +mrQ +mrQ +mrQ +mrQ +lCD +mci +qEv jFY -mOM -kXY -fWQ -rey -qbY +hVh +wLX +hRS +gGw +cGS jFY jFY jFY @@ -86986,32 +86986,32 @@ jFY jFY vLG vLG -dbS +boz vLG jFY -fbT -fWF +oFv +niE jFY -wnU -rKN -lrb -hTG -hTG -hTG -hTG -hTG -gNX -gNX -gNX -hTG -oXT -oXT -oXT -oXT -oXT -hRT -hHQ -xfg +bAt +mci +hYl +gAa +gAa +gAa +gAa +gAa +xPH +xPH +xPH +gAa +rIW +rIW +rIW +rIW +rIW +tIP +qDo +fjG hlk xid ndl @@ -87050,14 +87050,14 @@ qeX qeX qeX mOJ -tag -luI -euA -niA -rOu +klp +xKI +eEL +tFA +hmP shL shL -spT +tfG vjg mmw eKj @@ -87066,42 +87066,42 @@ xuw irM hjl bfs -uct -qIs -crH -rnz -crH +oji +tdE +gsX +gGp +gsX oVL -bnN -pSF -onS -wBg -qAF -uNZ -gfV -rYR -cxi -iGK -qAU -vrx -gfV -aBV -rNl -ihn -onl -owz -dSW +hYC +okr +knX +iZl +dGH +ahn +oAv +qNA +vCf +bit +pkj +cSS +oAv +bEY +dkn +mca +akw +ion +cwC fVO -tjm -qmr -tjm +cov +uiB +cov klE -ePI -lZt -vaE -jIp -slM -hUA +pQF +sWD +wrd +qhP +mwZ +nAq hwZ hwZ hwZ @@ -87109,10 +87109,10 @@ hwZ hwZ hwZ hwZ -teV -xLo -idA -tEF +vHz +goR +wii +rcq mnI mnI ujR @@ -87139,7 +87139,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -87154,63 +87154,63 @@ ndl ndl ndl vkd -kjp +cth lQK lQK lQK -jIz -fNX -fNX -fNX -fNX -aOd -iFe -xpR -xpR -lFk -ivK -vmm -wwH -vmm -nTe -rKN -ulJ -ngC -pIK -kXY -kXY -kXY -alc -kTZ -kTZ -paL -kTZ -kTZ -kTZ -kTZ -oBo -kTZ -kTZ -pIK -alc -ngC -ulJ -rKN -sLy -wwH -pRY -vmm -ivK -voq -qFF -qFF -hlX -xph -vmm -vmm -ulJ -vmm -fMw +ppf +nXL +nXL +nXL +nXL +wYw +oZt +jdf +jdf +hhE +nSk +iwB +ktQ +iwB +wkX +mci +cdR +xjN +ozX +wLX +wLX +wLX +opy +hNs +hNs +sKm +hNs +hNs +hNs +hNs +uhA +hNs +hNs +ozX +opy +xjN +cdR +mci +pqZ +ktQ +lgN +iwB +nSk +aLO +dNF +dNF +wJH +shg +iwB +iwB +cdR +iwB +iGY iIL iIL vsU @@ -87252,74 +87252,74 @@ mOJ mOJ mOJ mOJ -tag -luI -tPA -eqf -rOu -aMg -bzI -hTo +klp +xKI +qcx +vHU +hmP +spS +woq +vdq vjg -hpt +fWl shL -qtf +nLG xuw -tWR -oyC -peO -xhB +tWy +hGF +wqo +bxD shL -qMw -rnz -crH +mji +gGp +gsX oVL -trZ -rHT -aQk -xmX +oUT +enf +tzM +uov hhH -hFF -gqM -qNS -nCD -nCD -nCD -qNS -gqM -lOV +ute +oMw +wuT +xWh +xWh +xWh +wuT +oMw +ixs bfh -xdw -cjc -eQZ -nmd +qKR +adb +ira +rKc fVO -tjm -qmr -tjm +cov +uiB +cov klE -lJE -lZt -tLL -lZt -lZt -lZt -jgM -urF -lws -jxF -lZt -gwm +bsw +sWD +cWh +sWD +sWD +sWD +flM +dBF +daA +aKY +sWD +vwk hwZ -teV -teV -idA -tEF +vHz +vHz +wii +rcq mnI ujR ujR -hbO -ghG +uto +rSh ujR ujR mnI @@ -87341,7 +87341,7 @@ vwY qeX qeX mOJ -tag +klp ndl ndl ndl @@ -87356,63 +87356,63 @@ ndl ndl ndl vkd -kjp +cth lQK fkp lQK -opY +frw lQK lQK lQK lQK -dAP -byP -xRh -xRh -xRh -ivK -hmB -hmB -hmB -hmB -uST -kna -saj -sXv -sXv -sXv -sXv -kfC -sXv -sXv -sXv -sXv -nSd -sXv -sXv -kXC -sXv -sXv -liU -hXm -saj -kna -pUq -hmB -hmB -hmB -hmB -ivK -xRh -xRh -xRh -ucm -dAP -sOJ -sOJ -sOJ -sOJ -eYs +bZj +gcq +fuI +fuI +fuI +nSk +ups +ups +ups +ups +nDS +gxh +hsK +pfP +pfP +pfP +pfP +fpE +pfP +pfP +pfP +pfP +tBp +pfP +pfP +hXf +pfP +pfP +uFz +aSD +hsK +gxh +gel +ups +ups +ups +ups +nSk +fuI +fuI +fuI +lHx +bZj +jAB +jAB +jAB +jAB +eNo iIL sqC mZH @@ -87454,75 +87454,75 @@ mOJ mOJ mOJ mOJ -tag -luI -euA -wJh -rOu +klp +xKI +eEL +xGT +hmP qzF mmw -hTo -hQY +vdq +sZT shL shL -iVW +hXO xuw -wJp -gVv -oiy -iYq +hIb +aJn +bjo +qDU eKj -crH -rnz -crH +gsX +gGp +gsX oVL -whj -swR -roj -ehx +fBf +hBD +jrk +pKZ hhH -rDj -gfV -gfV -gfV -gfV -gfV -gfV -gfV -whz +euZ +oAv +oAv +oAv +oAv +oAv +oAv +oAv +bIN bfh -sKp -jYd -cRi -jmy +lPm +sKz +wlj +kyG fVO -tjm -qmr -lLu +cov +uiB +bPi hwZ -gDv -lZt -rrW -sun -qiA -sun -sun -sun -sun -evr -hUA -exS +kmg +sWD +rfp +llA +fhN +llA +llA +llA +llA +vqr +nAq +mDw hwZ -iKH -teV +nLu +vHz mnI mnI mnI ujR -tNv -qgN -qgN -jCk +lbT +xEX +xEX +nsv ujR mnI qeX @@ -87543,42 +87543,42 @@ vwY qeX qeX mOJ -kgF -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej +jXd +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA cSV cSV lQK qCi jrA -bRs -dRr -fze -dRr -mmB -ivK -lZC -mQg -mQg -pwB -ivK -mQg -mQg -mQg -wFV -lOD -eYs +hEp +rSH +xmd +rSH +aQq +nSk +rxn +aUn +aUn +uTO +nSk +aUn +aUn +aUn +viX +fkk +eNo pGK pGK pGK @@ -87595,45 +87595,45 @@ pGK pGK pGK pGK -jrq -vxX +hsx +sne gay -diY -lOD -efX -mQg -mQg -mQg -ivK -pwB -mQg -mQg -cfz -ivK -mQg -ulJ -gkH -mQg -cfz +are +fkk +rLT +aUn +aUn +aUn +nSk +uTO +aUn +aUn +rXU +nSk +aUn +cdR +gQp +aUn +rXU iIL xps ulP xid xid -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA vwY qeX qeX @@ -87656,75 +87656,75 @@ mOJ mOJ mOJ mOJ -tag -luI -eqf -euA -nHE -umH -umH -jtN +klp +xKI +vHU +eEL +bsq +gHS +gHS +tAu wIx shL shL -mmF +hmM xuw -eYz -vuU -sRw -iYq +oJB +ovm +uun +qDU eKj -qHo -tJN -qHo +jpN +tVY +jpN oVL oVL oVL oVL oVL oVL -wwD -gfV -oDS -jzE -gZj -wDe -uEO -gfV -mfh +oOo +oAv +oPj +fdh +jTL +hnB +sDI +oAv +rjW fVO fVO fVO fVO fVO fVO -iEs -ubx -vEo +cQP +axc +lTG hwZ hwZ -cox -vPR -vTe +dRM +fRV +bwj hwZ -pjV +wIK hwZ -hBe -lZt -tLL -lZt -ozC +arc +sWD +cWh +sWD +ijx hwZ -fjU -teV -dih -hYT -hYT -kPE -hcA -hcA -wrf -kOd +dao +vHz +oHl +bxV +bxV +ere +uDO +uDO +jrd +itw ujR mnI mOJ @@ -87760,14 +87760,14 @@ qeX qeX qeX qeX -hsJ +mrQ cQi cQi dwW dwW -tpD +nfQ cQi -tpD +nfQ cQi pND pND @@ -87778,49 +87778,49 @@ pND pND pND pND -lVP -ueM -cfz +mVN +dCf +rXU pGK -eAR -pQL -yfu -xxr -rkO +kbw +yhw +yiY +aUf +eZk pGK -uqR -aQt -sqV -xIQ -hMp -hGl -qTM +skP +fet +wIH +kXU +otu +xse +tQj pGK -tpQ -ewG -jqs +gsP +faC +ekN gay -lZC -ueM -cfz -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -xKU -oXT -oXT -oXT -oXT -oXT -oXT -hTG +rxn +dCf +rXU +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +oeS +rIW +rIW +rIW +rIW +rIW +rIW +gAa qeX qeX qeX @@ -87858,75 +87858,75 @@ mOJ mOJ mOJ mOJ -tag -luI -bKp -euA -rOu +klp +xKI +weL +eEL +hmP mmw mmw -hTo -udG +vdq +lmB shL shL -vHo +kqx xuw -wqb -qjs -juM -iYq +wij +pfx +mlO +qDU eKj -crH -rnz -crH -etr +gsX +gGp +gsX +uZa qIE lCO wNm -ufI +xri hWi hWi -alJ -clF +bqT +wgz hWi hWi hWi -alJ -xBH +bqT +wOQ hWi hWi -kIn +oDJ rLj sYn rdg -etr -tjm -qmr -tjm +uZa +cov +uiB +cov eJx -iYP -ajX -wda -wCy -fTZ -lEb +jxM +vCa +uIB +pUE +jqS +sVG rSL apj -lZt -tLL -rxS +sWD +cWh +oot cAh hwZ -liL -esU +mqe +loE mnI mnI mnI ujR -qgN -qgN -qgN -htQ +xEX +xEX +xEX +dQC ujR mnI mOJ @@ -87962,67 +87962,67 @@ qeX qeX qeX qeX -vjx -nbU -tLz -qLr -qLr -nbU -nbU -nbU +nlx +sUW +ftR +kCR +kCR +sUW +sUW +sUW cQi -uqZ -aCO -aCO -aCO -aCO -jGL -sox -vAk +evy +nPZ +nPZ +nPZ +nPZ +sip +hfp +knx pND -gXG -uyC -gXG +avT +wIw +avT pGK -aXD -aYl -xuj -nlo -vAL +kQz +oNL +aDL +vvr +kZm pGK -ohr +sQJ fBJ rPb fBJ iwy hXw -hNL +rFy pGK -cZi -ewG -jqs +kjn +faC +ekN gay -gXG -bvm -gXG -oXT -nPR -nPR -nPR -nPR -vxL -cha -tmM -idi -oXT -lVz -oXT -cCI -aRb -eNB -tlK -oLo -hTG +avT +qfi +avT +rIW +sCk +sCk +sCk +sCk +lnT +scs +vPo +ejz +rIW +bsy +rIW +epa +gUU +frk +wWW +ogd +gAa qeX qeX qeX @@ -88060,74 +88060,74 @@ mOJ mOJ mOJ mOJ -tag -luI -wFb -nEK -rOu -dfF -aWC -hTo +klp +xKI +hbp +cZh +hmP +nmi +sHX +vdq vjg -pHF +dnz shL -rqB +hCG xuw -dlN -efd -gKs -xhB +sig +lMd +cJq +bxD shL -lEl -iAN -crH -etr +tQr +ldJ +gsX +uZa qOc oCf qOc -xIe +mNJ qOc iFg qOc qOc iuq -gDO +gzV oPF qOc qOc iFg qOc -xIe +mNJ qOc qOc qOc -etr -tjm -qmr -tjm +uZa +cov +uiB +cov eJx -cPv -wMf -moi -nqX -osn -kMo +dor +vPS +qAg +mUd +ipT +bZr rSL lmN -lZt -tLL -lZt +sWD +cWh +sWD lrx hwZ -xoY -kJG -idA -tEF +omk +jmx +wii +rcq mnI ujR ujR -pqa -feD +sbL +wNA ujR ujR mnI @@ -88164,67 +88164,67 @@ qeX qeX qeX qeX -vjx -nbU +nlx +sUW nOl dEK dEK jqD qtN -nbU +sUW cQi lqv jEo xVS tRS tuE -rIH +cSc ivH -dAV +aAC quM -nEf -dUf -hqE +rle +xYu +lPE pGK -bfc -oLB -hQt -reU -oen +rzq +mBE +jmP +xex +aGG pGK -mRV -mRV -kge -mRV -kTK -mRV -xHH +vWV +vWV +sIP +vWV +drS +vWV +poB cmH -icq -ewG -jqs +xNs +faC +ekN bcN -nEf -qrq -hqE -oXT -nPR -nPR -nPR -nPR -nPR -cha -glr -vVh -oXT -lpk -oXT -ckd -oga -rwg -lpk -bcD -hTG +rle +xPw +lPE +rIW +sCk +sCk +sCk +sCk +sCk +scs +wmy +joV +rIW +sDF +rIW +ntW +pKx +cHA +sDF +iig +gAa qeX qeX qeX @@ -88262,14 +88262,14 @@ mOJ mOJ mOJ mOJ -tag -luI -wke -rfN -rOu +klp +xKI +sOM +leg +hmP shL shL -wUB +qvJ vjg oWe eKj @@ -88278,53 +88278,53 @@ xuw xuw bGE cAL -uct -tAY -crH -cjM -sWB -aOO +oji +urM +gsX +msB +geV +iMl lve lve lve -qyb +lKk mav mEa qOc qOc qOc -xIe +mNJ qOc qOc qOc btG qOc -noR +lgR jXi jXi jXi -xBV -qlJ -iVH -tjm -kGC -aNR -vlu -aCj -pnT -aFc -kMo +oMV +dnb +qlS +cov +tBw +dVG +gbv +dXj +nME +xgg +bZr rSL oJe -lZt -tLL -lZt -lkI +sWD +cWh +sWD +gVr hwZ -kJG -tqw -idA -tEF +jmx +cnf +wii +rcq mnI mnI ujR @@ -88366,67 +88366,67 @@ qeX qeX qeX qeX -hsJ +mrQ cQi lEg liX uoi uoi uoi -fXn +bQk cQi dJW hYu ieL sIH rTU -rIH +cSc ivH ivH -kPy -ulJ -ygu -fhj +qLF +cdR +gnT +xWW pGK -ixj -jaC -nuv -tzD +nnC +heC +bEg +mQr pGK pGK -oSc -vbz -tIp -hCt -hCt -bNM -vLp +oWv +mao +aXE +pHG +pHG +uUa +mlo cmH -nmq -ewG -jqs +nZB +faC +ekN bcN -qdP -rKN -fhj -oXT -nPR -nPR -nPR -nPR -nPR -cha -eDs -pMS -oXT -vWe -oXT -oXT -oXT -vTW -oXT -oXT -hTG +nKz +mci +xWW +rIW +sCk +sCk +sCk +sCk +sCk +scs +oRr +cAY +rIW +mHX +rIW +rIW +rIW +jlQ +rIW +rIW +gAa qeX qeX qeX @@ -88464,69 +88464,69 @@ mOJ mOJ mOJ mOJ -tag -luI -vyJ -euA -rOu -aMg -bzI -hTo -emg -gDd -hzK -eBc +klp +xKI +oaw +eEL +hmP +spS +woq +vdq +pTL +mXX +wbP +lke gDc gDc gDc gDc -ajz -qIs -crH -iAN -crH -etr +vcN +tdE +gsX +ldJ +gsX +uZa ehC hor iIA -xIe +mNJ wZI gxs lve lve rmg -qCL +xwj jXi jXi jXi uEG frq -mFy +sGX oeX oCf oLx -etr -tjm -hCk -arI -uNg -cEo -mlt -kXN -dNX -aFc -tMb +uZa +cov +uqs +uZi +rvv +sAA +qne +dFi +jSQ +xgg +gsc sJv hwZ -pVS -tLL -lZt -ozC +dgi +cWh +sWD +ijx hwZ -kJG -wer -idA -tEF +jmx +xek +wii +rcq qeX mnI mnI @@ -88568,73 +88568,73 @@ qeX qeX qeX qeX -hsJ +mrQ cQi -oJO +iCI uoi uoi uoi owN -diw +eAT cQi tcb ivS ieL xgV pAn -rIH +cSc rYH boK -bmD -sSt -gUp -fhj +mxW +vep +fqd +xWW pGK -tgG -tnF -jZl -cTf -boF -tEE -axH -aOv -fMF -kHl -gdC -pAH -nmn +oQo +mKB +sGm +hvt +jpw +bfr +sQj +lqq +qTF +lgX +kDW +nas +ntd cmH -xWx -ewG -jqs +mIl +faC +ekN bcN -qdP -nLe -qhN -oXT -nPR -nPR -nPR -nPR -nPR -cha -kFV -aZo -oXT -lpk -lpk -vhs -bXA -lVz -xKx -lVz -hTG +nKz +uUr +dZg +rIW +sCk +sCk +sCk +sCk +sCk +scs +noW +sgq +rIW +sDF +sDF +uRq +asZ +bsy +wCz +bsy +gAa qeX -fDe -wgJ -wgJ -wgJ -wgf +hIJ +nGX +nGX +nGX +oWW qeX qeX qeX @@ -88666,27 +88666,27 @@ mOJ mOJ mOJ mOJ -tag -luI -ghd -eqf -rOu +klp +xKI +ncm +vHU +hmP xRs xRs -buc -sBt -qsU +aFD +igI +nFh eKj -goy -vBQ -vBQ -sba -sba -iQd +pzR +eRt +eRt +ogN +ogN +jUM shL -qHo -jJR -kUW +jpN +vWU +nMN uxe uxe uxe @@ -88697,7 +88697,7 @@ uBf qOc dDK evv -xIe +mNJ fob ehC qOc @@ -88708,27 +88708,27 @@ uxe uxe uxe uxe -jWZ -ubx -iEs +tkf +axc +cQP eJx -qnB -vlu -fOq -bZQ -aFc -kMo +cQm +gbv +gEg +eNl +xgg +bZr rSL rLK -fer -nNy -lZt +qnp +koA +sWD vib hwZ -teV -fQy -idA -tEF +vHz +caV +wii +rcq mOJ mOJ mOJ @@ -88770,75 +88770,75 @@ qeX qeX qeX qeX -vjx -kjp +nlx +cth uoi jqD uoi uoi owN -diw +eAT cQi tcb cBd wJL snl pAn -rIH +cSc ivH -wkb +iyJ quM -qdP -lOD -qhN +nKz +fkk +dZg pGK -bQU -cRB -jwH -owH -rGr -lrI -lrI -otX -lbx -icq -ewG -ycq -cvI +eGD +hkl +wSa +pAh +eDR +aXL +aXL +bxn +bLD +xNs +faC +tKX +lLp pGK pGK -vge -eCY +iUg +pGJ gay -oGN -nLe -fhj -oXT -cha -cha -cha -igx -cha -cha -tyG -cha -oXT -oXT -oXT -oXT -oXT -oXT -lpk -lVz -hTG +dqW +uUr +xWW +rIW +scs +scs +scs +elW +scs +scs +dSn +scs +rIW +rIW +rIW +rIW +rIW +rIW +sDF +bsy +gAa qeX -tag +klp ndl ndl ndl ndl -wgJ -wgf +nGX +oWW qeX qeX qeX @@ -88868,69 +88868,69 @@ mOJ mOJ mOJ mOJ -tag -luI -wJC -eqf -rOu +klp +xKI +sin +vHU +hmP xRs xRs xRs mmw -vnM +pop eKj -eFL -eFL -nsy -odf -syY -uwd +tBO +tBO +pMl +lSN +tCH +ucx shL -crH -iAN -crH -acT -ezR -fQs -pSc -jUx +gsX +ldJ +gsX +kOY +aYC +wha +skF +bOy qOc qOc ekq uxe uxe -pco +viP uxe uxe vAz qOc qOc -jUx -kzW -aXC -fNb -vQJ -tjm -qmr -tjm +bOy +eSE +fJS +cvx +eGd +cov +uiB +cov eJx -qnB -vlu -sBV -vdD -aFc -kMo +cQm +gbv +xuX +iOM +xgg +bZr rSL ble -lZt -tLL -hVr +sWD +cWh +uoG gYi hwZ -teV -mOL -idA -tEF +vHz +oxa +wii +rcq mOJ mOJ mOJ @@ -88972,14 +88972,14 @@ qeX qeX qeX qeX -vjx -kjp +nlx +cth uoi uoi uoi uoi uoi -nbU +sUW cQi tcb ieL @@ -88988,59 +88988,59 @@ ieL pAn ivH ivH -eKl +ezX pND -gbD -lOD -fhj +tLu +fkk +xWW pGK -byX +cTA qXh -nlz -hMz +btp +faw pGK -jLC -plq -bMY -lbx -icq -ewG -fzJ -bhO -mfo -kPR -bZp -wDU -uzX -sSt -gUp -fhj -uLI -cha -oOI -plU -aLi -nia -pDR -ttR -cha +quQ +gyQ +iSC +bLD +xNs +faC +qUq +vnx +pYg +tjo +nDJ +iGf +oVT +vep +fqd +xWW +eLy +scs +kYq +dDZ +akv +pRq +eJu +iRq +scs aCi dKk dKk dKk eLN -oXT -lpk -pMP -hTG -wgJ +rIW +sDF +iON +gAa +nGX ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -89070,69 +89070,69 @@ mOJ mOJ mOJ mOJ -tag -luI -jnk -eqf -rOu -dfF -aWC -dfF -aWC -qUE +klp +xKI +fzR +vHU +hmP +nmi +sHX +nmi +sHX +nfj shL -hFB -nMs +xaT +cDY shL shL shL shL shL -ybz -sKA -jBk +tqV +vRb +jaE rkk -sCv -ndk +glI +fLT hkM dwp -kUC -kUC -kUC +qwX +qwX +qwX dwp -pVH -rgF -afF +tOy +qlh +qZg dwp -kUC -kUC -kUC +qwX +qwX +qwX dwp vdf -anv -hOl +kCj +foi rkk -voZ -tMA -kTm +jFD +aaU +iyU hwZ -aUc -rIx -xEH -fTZ -wsk -lVn +qPl +sVt +eaS +jqS +dhu +mFR rSL -lkI -lZt -tLL -eAz +gVr +sWD +cWh +hJP hwZ hwZ -teV -kJG -idA -tEF +vHz +jmx +wii +rcq mOJ mOJ mOJ @@ -89174,67 +89174,67 @@ qeX qeX qeX qeX -hsJ +mrQ wdT wIA -cmX -cmX -cmX +sHO +sHO +sHO uoi -fXn +bQk cQi tcb ieL ieL ieL pAn -rIH +cSc ivH dTo quM -qdP -rKN -fhj +nKz +mci +xWW pGK -hhs -cRB -nlz -iOU +lru +hkl +btp +uqP nbY -pPl -kdK -bMY -diE -gPi -qhW -qnN -kHl -tTn -xeW -kHl -hIO -nds -ulJ -plt -qfG -uWC -ght -hlb -hlb -dIU -vJv -aLi -cxC -rkr +rYS +xiX +iSC +vGx +mpL +eFT +bKy +lgX +kRH +cxK +lgX +dOC +pxF +cdR +uHy +fYQ +uOg +gKE +dgb +dgb +mBH +gQJ +akv +uJe +bBg qav -tGj -wZx -nHX +ccO +uva +kKb tSh -oXT -lpk -lVz -hTG +rIW +sDF +bsy +gAa ndl ndl ndl @@ -89242,7 +89242,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -89272,11 +89272,11 @@ mOJ mOJ mOJ mOJ -tag -luI -vsX -eqf -rOu +klp +xKI +kvi +vHU +hmP shL shL shL @@ -89286,55 +89286,55 @@ shL shL shL shL -sEJ -vYl -nlC -rOu -hva -qna -hva +eTc +eMj +psN +hmP +wtj +hXv +wtj rkk -naH -lfX +wLs +ahV gir uxe -fVl -fVl -fVl +nph +nph +nph dwp -tBo -xXR -giE +gFI +kAY +qiF dwp -cWQ -cWQ -cWQ +mjQ +mjQ +mjQ uxe jde -gLL -kcC +vSX +bxh rkk -ezq -wRn -ezq +fID +fgL +fID wcQ -nnm +sKf lgZ eMD iGD lgZ -gwZ +wTg hwZ -nWt -lZt -tLL -ldm +qou +sWD +cWh +sao hwZ -cej -teV -kJG -idA -tEF +wSY +vHz +jmx +wii +rcq mOJ mOJ mOJ @@ -89376,67 +89376,67 @@ qeX qeX qeX qeX -hsJ +mrQ cQi jqD -cmX +sHO xSv -kdj +fkv uoi -diw +eAT cQi oAk dPj eCy dPj eyk -bPY -eaa +jkA +aSA dTo quM -qdP -rKN -fhj +nKz +mci +xWW pGK -inP +eei oTM -fcq -kYr +rrg +noZ nbY pGK -dbB -bMY -vls -nYN -lrI -aAT +mde +iSC +fiQ +uhd +aXL +ujr pGK -gJC +rUu pGK -bCD +yaW nZh pGK -lmK -rKN -fhj -wdo -cha -iXS -cxC -raU -tdO -dks -cxC -rkr +lGL +mci +xWW +lxP +scs +juh +uJe +jwL +miX +xWN +uJe +bBg jVA -iVJ +sOf aIa -iVJ +sOf tSh -oXT -lVz -oXT -hTG +rIW +bsy +rIW +gAa ndl ndl ndl @@ -89444,7 +89444,7 @@ ndl ndl ndl ndl -tEF +rcq mOJ mOJ qeX @@ -89474,69 +89474,69 @@ mOJ mOJ qeX mOJ -tag -luI -euA -euA -rOu -lWh -awc -tIM -hiY -uqG -rOu -niA -niA -euA -eqf -eqf -cMr -rOu -jBk -nem -jBk +klp +xKI +eEL +eEL +hmP +hHS +wIV +bHj +fIv +vfO +hmP +tFA +tFA +eEL +vHU +vHU +iTV +hmP +jaE +kIG +jaE rkk -bbJ -hZQ -tjU +eZt +wbT +usl dwp -kUC -kUC -kUC +qwX +qwX +qwX dwp -wgN -ezR -jUE +osZ +aYC +qJq dwp -kUC -kUC -kUC +qwX +qwX +qwX dwp -kcs -maA -lRU +ygI +hYz +wzC irx -voZ -tMA -voZ +jFD +aaU +jFD hwZ -suh +uux kAr gmr kAr kAr -xig +kSX rSL -sMv -lZt -tLL -car -leA -nRo -kJG -kJG -idA -tEF +jrF +sWD +cWh +vSV +gbL +mkN +jmx +jmx +wii +rcq mOJ qeX qeX @@ -89578,67 +89578,67 @@ qeX qeX qeX qeX -hsJ +mrQ cQi uoi -cmX +sHO dVu -sXL +eEP uoi -xVw +rAb cQi tcb ieL ieL ieL pAn -rIH +cSc ivH dTo quM -qdP -rKN -fhj +nKz +mci +xWW pGK -qpS -pEg -tNi -tNi -tNi +vmz +vKZ +lAo +lAo +lAo pGK -aQs -bMY -ebB -gmo -aaO -oOU +srg +iSC +tDt +rNO +ktC +muN pGK -ggc -bMl -dOH -rQC +nWF +byI +igG +cIW pGK -qdP -rKN -fhj -cha -cha -rfd -cxC -bju -utF -aVL -cxC -rkr -wzj +nKz +mci +xWW +scs +scs +aMq +uJe +gEy +wcU +biK +uJe +bBg +boP mEV aIa -tto +yaR tSh -oXT -uSy -oXT -hTG +rIW +eom +rIW +gAa ndl ndl ndl @@ -89646,7 +89646,7 @@ ndl ndl ndl ndl -tEF +rcq mOJ mOJ qeX @@ -89676,69 +89676,69 @@ mOJ mOJ qeX mOJ -tag -luI -euA -eqf -rOu -mJM -kyt -lxt -kyt -tJD -rOu -euA -eqf -euA -euA -eqf -euA -rOu -crH -iAN -crH -acT -uHg -lTF -aOC -jUx +klp +xKI +eEL +vHU +hmP +jMi +fhJ +wln +fhJ +sVi +hmP +eEL +vHU +eEL +eEL +vHU +eEL +hmP +gsX +ldJ +gsX +kOY +jbW +seX +uTZ +bOy qOc qOc qOc -jUx -uHg -lTF -aOC -jUx +bOy +jbW +seX +uTZ +bOy qOc qOc qOc -jUx -uHg -lTF -aOC -acT -tjm -qmr -tjm +bOy +jbW +seX +uTZ +kOY +cov +uiB +cov oUW -rwQ +xAY kAr gmr kAr kAr -vfH +coo rSL neI -lej +mjh fjv -car +vSV hwZ -mdX -teV -fQy -idA -tEF +cnm +vHz +caV +wii +rcq mOJ qeX qeX @@ -89780,14 +89780,14 @@ qeX qeX qeX qeX -hsJ +mrQ cQi lEg -cmX -cmX -cmX +sHO +sHO +sHO uoi -diw +eAT cQi tcb ieL @@ -89796,59 +89796,59 @@ ieL pAn ivH ivH -ycn +wdO pND -gbD -nLe -fhj +tLu +uUr +xWW pGK -ejL +qzp grN -ndz -ikP -rvs +xCH +lRM +ngd pGK pGK -peS +hBK pGK -uQR +iIC pGK pGK pGK -tOh -vls -vls -fUE +prO +fiQ +fiQ +oiM oKn -qdP -nLe -fhj -vfh -sZO -cxC -cxC -raU -aLi -aLi -cxC -rkr +nKz +uUr +xWW +upe +pQl +uJe +uJe +jwL +akv +akv +uJe +bBg qav -iVJ +sOf aIa -iVJ +sOf tSh -oXT -lVz -oXT -hTG -gej +rIW +bsy +rIW +gAa +ucA ndl ndl ndl ndl ndl ndl -tEF +rcq mOJ mOJ qeX @@ -89878,27 +89878,27 @@ mOJ mOJ qeX mOJ -tag -luI -tPA -eqf -jxH -tUh -jkq -dRK -tyP -orb -fnL -mkP -tyP -tyP -mkP -tyP -tyP -pUZ -eut -iTo -iRw +klp +xKI +qcx +vHU +vYv +qzu +lou +eoH +pVv +gME +ohb +qXu +pVv +pVv +qXu +pVv +pVv +onY +iTB +wJG +aDI uxe dwp dwp @@ -89909,7 +89909,7 @@ uBf cfd uxe dwp -afO +lCT dwp uxe vll @@ -89920,27 +89920,27 @@ dwp dwp dwp uxe -baN -qmr -guH +srp +uiB +dCh oUW -lyu +ftV kAr mYT dYy kAr -nCb +dMr hwZ hwZ hwZ -fqZ -oqo +wef +qGl hwZ hwZ -kJG -mOL -idA -tEF +jmx +oxa +wii +rcq mOJ mOJ qeX @@ -89982,75 +89982,75 @@ qeX mOJ qeX qeX -vjx -kjp +nlx +cth uoi uoi uoi uoi uoi -pid +wpv cQi tcb rhH aZU ocX pAn -rIH +cSc ivH -cpO +ftQ quM -qdP -nLe -fhj +nKz +uUr +xWW pGK -kox -pEg -apS -djp -apS +eeo +vKZ +rqc +top +rqc pGK hUS -bMY -kRk -agk +iSC +hMc +lFI nNb pGK -huX -deC -dOd -oRA -wYE +oTO +lJG +dgg +phX +mpe oKn -qdP -nLe -fhj -vfh -rhy -bCe -bCe -bzH -eRK -eRK -oIf -rkr +nKz +uUr +xWW +upe +vMS +bLH +bLH +hSp +bMR +bMR +uVB +bBg jVA -rvz -pSk +lhD +kdY dUN tSh -oXT -lpk -lVz -hTG +rIW +sDF +bsy +gAa qeX -tag +klp ndl ndl ndl ndl -gej -gjc +ucA +rvw mOJ mOJ qeX @@ -90080,69 +90080,69 @@ mOJ mOJ qeX mOJ -tag -luI -euA -lRj -rOu -eFI -nEY -nEY -nEY -osW -rOu -upX -osW -agL -dtd -pFY -atf -rOu -crH -tGl -crH +klp +xKI +eEL +cxW +hmP +buX +lrd +lrd +lrd +goW +hmP +qcP +goW +qlO +eSs +hgi +pti +hmP +gsX +onr +gsX rkk -xIe -xIe -xIe -kNi +mNJ +mNJ +mNJ +aBF qOc uBf qOc -kNi -xIe +aBF +mNJ qOc -xIe -kNi +mNJ +aBF qOc uBf qOc -kNi -xIe -xIe -xIe +aBF +mNJ +mNJ +mNJ rkk -tjm -kuq -tjm +cov +dZU +cov hwZ -hvS -nqX -aJM -nqX -jio -wFm +qVA +mUd +lmQ +mUd +vER +mhs hwZ hwZ -wCc -aTe -fTZ -eEG +oeJ +eKy +jqS +nin hwZ -kJG -kay -idA -tEF +jmx +pfj +wii +rcq mOJ qeX qeX @@ -90184,73 +90184,73 @@ qeX mOJ mOJ qeX -vjx -kjp +nlx +cth qtN mKJ uoi uoi owN -diw +eAT cQi tcb bhH ieL xgV pAn -rIH +cSc ivH fSK -kPy -ulJ -nLe -fhj +qLF +cdR +uUr +xWW pGK -etF +ezp mHl -apS -djp -kam +rqc +top +hwd pGK oeg -bMY -pqg -xUS +iSC +fLH +qSy mJJ pGK -ooB -bMY -aYe -vls -aOT +ugu +iSC +eNt +fiQ +wEb mKY -qdP -nLe -fhj -vfh -fEc -nWu -wTS -xyF -lNS -vko -vyx -cha +nKz +uUr +xWW +upe +tBN +uyv +bSX +kkO +ddB +jgl +iBL +scs mXO jgy jgy jgy eFP -oXT -lpk -lVz -hTG +rIW +sDF +bsy +gAa qeX -kgF -gej -gej -gej -gjc +jXd +ucA +ucA +ucA +rvw qeX qeX mOJ @@ -90282,15 +90282,15 @@ mOJ mOJ qeX mOJ -tag -luI -jnk -euA -rOu -kCC -mqu -bkW -doq +klp +xKI +fzR +eEL +hmP +nvB +eKR +sLq +xfC pRc pRc pRc @@ -90300,11 +90300,11 @@ pRc pRc pRc pRc -crH -iAN -crH +gsX +ldJ +gsX rkk -xIe +mNJ qOc qOc qOc @@ -90322,11 +90322,11 @@ qOc qOc qOc qOc -xIe +mNJ rkk -tjm -qmr -tjm +cov +uiB +cov mua mua mua @@ -90336,15 +90336,15 @@ mua mua mua mua -wRD +fKs hMG lgZ -vav +clM hwZ -kJG -hyM -idA -tEF +jmx +bUP +wii +rcq mOJ qeX qeX @@ -90386,67 +90386,67 @@ qeX mOJ qeX qeX -hsJ +mrQ cQi koq qtN uoi uoi owN -diw +eAT cQi dJW eRq ieL lcV rTU -rIH +cSc ivH fSK -oMe -ulJ -nLe -fhj +sln +cdR +uUr +xWW pGK -oCy -mAH -apS -djp -apS +gyF +ehe +rqc +top +rqc pGK gtU -dRA -kER -uGd +rhc +guT +dWO neH pGK -ydI -riv -dhE -lrI -ksb +rfg +aFE +hXa +aXL +qoi pGK -gbD -nLe -qhN -cha -cha -cha -cha -jrG -cha -cha -cha -cha -cha -oXT -oXT -oXT -oXT -oXT -lpk -pMP -hTG +tLu +uUr +dZg +scs +scs +scs +scs +cTb +scs +scs +scs +scs +scs +rIW +rIW +rIW +rIW +rIW +sDF +iON +gAa mOJ mOJ mOJ @@ -90484,15 +90484,15 @@ qeX qeX qeX mOJ -tag -luI -eqf -euA -rOu -rOu -rOu -rOu -rOu +klp +xKI +vHU +eEL +hmP +hmP +hmP +hmP +hmP pRc ooX wYz @@ -90502,11 +90502,11 @@ aPN wYz nkh pRc -crH -iAN -crH +gsX +ldJ +gsX rkk -xIe +mNJ qOc tgy bPe @@ -90524,11 +90524,11 @@ qOc oKr dhe qOc -xIe +mNJ rkk -tjm -qmr -tjm +cov +uiB +cov mua vWi qwv @@ -90538,15 +90538,15 @@ rQt bIv uKV mua -ofS +kKS hMG lgZ -ocf +pcI hwZ -kJG -teV -idA -tEF +jmx +vHz +wii +rcq mOJ qeX qeX @@ -90588,67 +90588,67 @@ qeX mOJ qeX qeX -hsJ +mrQ cQi lEg liX qtN mKJ uoi -fXn +bQk cQi sFs rJl mRv jjK rrh -rIH +cSc ivH -wkb +iyJ quM -qdP -rKN -fhj +nKz +mci +xWW pGK -htG +twa vCX -fUy -bCr -rvs +pbM +lAf +ngd pGK pGK -sGt -sGt -sGt +uDn +uDn +uDn pGK pGK -lgn -mRV -mRV -mRV -dNp +nRe +vWV +vWV +vWV +kNp pGK -qdP -rKN -fhj -nMR -eII -wEi -obt -xyF -cha -wal -eMQ -ioH -cha -lpk -lpk -vhs -owb -lVz -lpk -lVz -hTG +nKz +mci +xWW +csZ +qvd +rUF +mxS +kkO +scs +sPK +jdY +lcC +scs +sDF +sDF +uRq +khe +bsy +sDF +bsy +gAa mOJ mOJ mOJ @@ -90686,15 +90686,15 @@ qeX qeX qeX mOJ -tag -luI -eqf -euA -rOu -wEK -gCP -ecS -dyi +klp +xKI +vHU +eEL +hmP +gCh +qHl +eCH +bRj pRc ooX vdj @@ -90704,33 +90704,33 @@ oCM vdj lbB pRc -qHo -jJR -qHo -ftt -xIe +jpN +vWU +jpN +ssN +mNJ qOc ewy -uaC -uaC -uaC -uaC +bCM +bCM +bCM +bCM xTz -uUk +jAF clZ -tyu +vMl dGT -kWf -kWf -kWf -kWf +cCM +cCM +cCM +cCM ewy qOc -xIe -ftt -tjm -qmr -tjm +mNJ +ssN +cov +uiB +cov mua vWi ugt @@ -90740,15 +90740,15 @@ kpn abS ghO mua -idd +hmO hMG dJy -xYK +usG hwZ -bZF -fbn -idA -tEF +och +kWv +wii +rcq mOJ qeX qeX @@ -90790,67 +90790,67 @@ qeX mOJ qeX qeX -vjx -nbU +nlx +sUW uoi jRO jRO jRO jRO -nbU -nuF -kmV -kmV -kmV -kmV -kmV -jDT +sUW +iMv +nkQ +nkQ +nkQ +nkQ +nkQ +hHY ivH -vvb +nxl pND -hoQ -rKN -fhj +dlr +mci +xWW pGK pGK pGK -stD -stD -stD +xqL +xqL +xqL pGK pGK -jEa +gnA eVz -jEa +gnA pGK pGK -oND -xFs -fYF -gRw -hSi +thd +fNG +vXN +vyD +sJJ pGK -edT -rKN -fhj -nMR -abH -oCU -cxC -xyF -tDB -kFV -ilr -kFV -cha -lpk -oXT -oXT -oXT -oXT -lVz -oXT -hTG +aZH +mci +xWW +csZ +hSS +nJO +uJe +kkO +xfe +noW +uqY +noW +scs +sDF +rIW +rIW +rIW +rIW +bsy +rIW +gAa mOJ mOJ mOJ @@ -90888,15 +90888,15 @@ qeX qeX qeX mOJ -tag -luI -gqI -fDV -dqr -ePs -qQX -euA -knH +klp +xKI +iME +wgM +iVP +lWe +vMV +eEL +coz pRc oAd eAS @@ -90906,33 +90906,33 @@ abP bnU hEh pRc -geS -mqG -crH -etr -xIe +eiQ +euH +gsX +uZa +mNJ qOc ewy -uaC -uaC -uaC -uaC +bCM +bCM +bCM +bCM xTz -sPC +lqx ijb -llu +rdp dGT -kWf -kWf -kWf -kWf +cCM +cCM +cCM +cCM vZi frq -qCL -xBV -qlJ -mqz -qlJ +xwj +oMV +dnb +uAh +dnb mua dRh jIL @@ -90942,15 +90942,15 @@ rkx jIL feO mua -idd +hmO orC rAf -sgk +njE hwZ -xjm -teV -idA -tEF +jdN +vHz +wii +rcq mOJ qeX qeX @@ -90992,38 +90992,38 @@ qeX qeX qeX qeX -vjx -nbU -nbU -aki -riO -aki -fSC -nbU +nlx +sUW +sUW +xFV +cEi +xFV +tNP +sUW cQi -lwG -nth -ePw -laT -byx -eHz -uqB -ryy +qtg +dsn +uAa +hur +uvi +xkS +sNu +ihD pND -gbD -nLe -xOd -mUz -hqE +tLu +uUr +env +yep +lPE pGK pGK pGK pGK pGK pGK -sGt -sGt -sGt +uDn +uDn +uDn pGK pGK pGK @@ -91032,27 +91032,27 @@ pGK pGK pGK pGK -jDG -nLe -fhj -nMR -nNm -aLi -aLi -jtC -vgR -tOB -ndT -chY -cha -lpk -oXT -soN -jmm -oXT -uSy -oXT -hTG +nfG +uUr +xWW +csZ +bge +akv +akv +tHQ +umE +nZm +giu +lFo +scs +sDF +rIW +euo +gdK +rIW +eom +rIW +gAa mOJ mOJ mOJ @@ -91080,89 +91080,89 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX ndl -luI -jqx -eqf -rOu -mOZ -fDV -vsT -eiB +xKI +uJR +vHU +hmP +icW +wgM +rZJ +pxo pRc pRc -vyU +gVG pRc pRc pRc -vrP +dAb pRc pRc -crH -tGl -crH +gsX +onr +gsX rkk -xIe +mNJ qOc ewy -uaC -uaC -uaC -uaC +bCM +bCM +bCM +bCM xTz -sPC +lqx feZ -llu +rdp dGT -kWf -kWf -kWf -kWf +cCM +cCM +cCM +cCM ewy qOc -xIe +mNJ rkk -tjm -kuq -tjm +cov +dZU +cov mua mua -kts +jgA mua mua mua -ouD +gPy mua mua -nKp +jyo hMG dJy -sgk +njE hwZ -kJG -teV -idA +jmx +vHz +wii ndl -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +nGX +oWW qeX qeX qeX @@ -91194,14 +91194,14 @@ qeX qeX qeX qeX -hsJ -mth -lcc -mth -mth +mrQ +tCo +sIX +tCo +tCo qat qat -vyh +qex qat qat qat @@ -91212,20 +91212,20 @@ qat qat qat qat -edT -nLe -hmB -hmB -fhj +aZH +uUr +ups +ups +xWW pGK mdk ciA ciA ciA ukr -xuL -lym -tCK +odn +ovg +ooq mdk ciA ciA @@ -91234,27 +91234,27 @@ ukr pGK pGK pGK -qdP -nLe -fhj -cha -nCf -aLi -aLi -fBw -cha -cha -cha -cha -cha -lpk -fgD -lpk -uSy -oXT -bWV -oXT -hTG +nKz +uUr +xWW +scs +eww +akv +akv +eeB +scs +scs +scs +scs +scs +sDF +fbQ +sDF +eom +rIW +tqy +rIW +gAa qeX qeX qeX @@ -91282,89 +91282,89 @@ qeX qeX qeX qeX -tag -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -euA -iPX -rOu -iRN -fXy -aRx -eqf +klp +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +eEL +oUz +hmP +ujS +vDZ +ugr +vHU pRc -qgP -aPP -rAw +fPN +uEM +sJB fuF -cnU -vfY -tiZ +uMG +tDz +aaq pRc -geS -tlw -crH +eiQ +gBe +gsX rkk -xIe +mNJ qOc ewy -uaC -uaC -uaC -uaC +bCM +bCM +bCM +bCM xTz -vyl -oCp -wZY +uAw +fJA +rWI dGT -kWf -kWf -kWf -kWf +cCM +cCM +cCM +cCM ewy qOc -xIe +mNJ rkk -tjm -bqp -qlJ +cov +eAx +dnb mua -hEB -lFA -sOl -oVY -oja -glT -aKe +wWF +uXu +bGn +rrm +lrh +kIu +cQt mua -idd +hmO kAm lgZ -sgk +njE hwZ -sXA -lBK -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -tEF +fkb +yaE +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii +rcq qeX qeX qeX @@ -91388,83 +91388,83 @@ qeX qeX mOJ mOJ -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -hsJ -yhL -uPJ -uPJ -vqu +hIJ +nGX +nGX +nGX +nGX +nGX +nGX +nGX +mrQ +oIL +ivm +ivm +hgk qat hGa xaR hGa uac dnE -pBw -vnY +iZm +osl rqs -vnY -pBw +osl +iZm rqs vJy -qdP -uyu -guQ -wql -fhj +nKz +bWW +nPd +pjf +xWW pGK iqI -dLg -nzA -kDx +bAj +pXZ +uCM lli -fJP -uuj -xLk +hZs +dqx +hso iqI -xdc -nzA -jUX +cBL +pXZ +qoX lli pGK -tfX -mUz -cAJ -nLe -qhN -cha -swi -aLi -aLi -pEE -cha -dae -plU -wHQ -cha -uPQ -oXT -lck -shH -oXT -lpk -lVz -hTG -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +hkZ +yep +arj +uUr +dZg +scs +oLr +akv +akv +lLW +scs +iOQ +dDZ +jbi +scs +yiI +rIW +eHs +wYk +rIW +sDF +bsy +gAa +nGX +nGX +nGX +nGX +nGX +nGX +nGX +oWW qeX qeX qeX @@ -91484,89 +91484,89 @@ qeX qeX qeX qeX -luI -luI -osW -euA -euA -vOs -pFY -khY -tTW -euA -vOs -euA -euA -euA -rOu -nJd -oEn -oEn -euA +xKI +xKI +goW +eEL +eEL +qVB +hgi +cdE +ooT +eEL +qVB +eEL +eEL +eEL +hmP +jhN +eZY +eZY +eEL pRc -iIS -aEJ -cLT +wqc +mVA +dgj uKG -gtm -nSJ -eNp +szD +oyJ +wVQ pRc -crH -tGl -crH +gsX +onr +gsX rkk -xIe -xIe +mNJ +mNJ ewy qOc qOc mEa qOc rKQ -ffg -sCC -gQm +rYJ +ces +aQj nlh qOc mEa qOc qOc ewy -xIe -xIe +mNJ +mNJ rkk -tjm -kuq -tjm +cov +dZU +cov mua -fAZ -wQK -fup +sZG +qYw +sOn uTT -sGD -lXp -eeX +wrv +oaS +oFA mua -mQj +pqD hMG dJy -sgk +njE hwZ -kJG -teV -teV -fBH -teV -kJG -kJG -kJG -geN -kJG -teV -teV -idA -idA +jmx +vHz +vHz +kTB +vHz +jmx +jmx +jmx +gSo +jmx +vHz +vHz +wii +wii qeX qeX qeX @@ -91590,7 +91590,7 @@ qeX qeX mOJ mOJ -tag +klp ndl ndl ndl @@ -91598,67 +91598,67 @@ ndl ndl ndl ndl -hsJ -mmz -rdS -uPJ -rdS +mrQ +tiH +bmA +ivm +bmA qat jUc xaR xaR htb jEE -vnY -vnY +osl +osl dtz -ihK -ihK +xdK +xdK fQV vJy -jXr -waE -qrL -nLe -qhN +eGO +jMv +kmw +uUr +dZg pGK iqI -mrB -mDY +wMk +cnK oQS -tRh -aMe -cxl -mkn -jrS +akX +sSV +oZk +iEZ +cop umW -mDY -uVZ +cnK +uci lli pGK -qdP -rPg -fSo -nxx -fhj -nMR -pCx -aLi -aLi -fBw -qCo -cxC -cxC -cxC -cha -lVz -oXT -oXT -oXT -oXT -vWe -lVz -hTG +nKz +rps +ufA +cxF +xWW +csZ +ojy +akv +akv +eeB +nYs +uJe +uJe +uJe +scs +bsy +rIW +rIW +rIW +rIW +mHX +bsy +gAa ndl ndl ndl @@ -91666,7 +91666,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -91686,89 +91686,89 @@ qeX qeX qeX qeX -luI -upX -eqf -eqf -eqf -euA -eqf -eqf -eqf -eqf -eqf -euA -eqf -uUy -rOu -rOu -eDY -gkX -iPX +xKI +qcP +vHU +vHU +vHU +eEL +vHU +vHU +vHU +vHU +vHU +eEL +vHU +klo +hmP +hmP +vRM +lrW +oUz pRc -mEX +bys ugs qqM uhu bup jYm -onX +leq pRc -crH -iAN -aac +gsX +ldJ +chR uxe uxe -nAS +aiG ewy -qoB -qoB +fma +fma ewy -aYR -aYR -nhH -hOc +dQG +dQG +xxs +kmx oxR -pBU -pBU +mbb +mbb ewy -vxH -vxH +atK +atK ewy -mcm +bRS uxe uxe -dzt -qmr -tjm +pFL +uiB +cov mua -sBc +qeO mvC hGq fNU bkl xSl -xhQ +rYd mua -xVG +lgp pRe iJc -xYK +usG hwZ -teV -kJG -lkU -bQe -mhG -bQe -ppa -bQe -ewb -ese -mhG -kip -teV -idA +vHz +jmx +fid +aMR +dzV +aMR +lMJ +aMR +iQZ +huP +dzV +udk +vHz +wii qeX qeX qeX @@ -91792,7 +91792,7 @@ qeX qeX mOJ mOJ -tag +klp ndl ndl ndl @@ -91800,67 +91800,67 @@ ndl ndl ndl ndl -hsJ -soa -rdS -rdS -rdS +mrQ +fUj +bmA +bmA +bmA qat kuZ xaR xaR vzU jEE -vnY -vnY +osl +osl rqs -vnY -vnY +osl +osl njc qat qat qat -oGN -lOD -fhj +dqW +fkk +xWW pGK iqI -pwj -xHW +khl +xMh ctV lli -sMQ -sPS -xLk +hZw +rcu +hso iqI -wOz -xHW -uXB +lER +xMh +sjl lli pGK -jcU -rKN -sOJ -sOJ -fhj -nMR -tWf -aLi -aLi -fBw -cha -xcS -ogH -glz -cha -uSy -oXT -aip -lpk -oXT -lpk -pMP -hTG +uEg +mci +jAB +jAB +xWW +csZ +wSs +akv +akv +eeB +scs +tHI +nYG +jiC +scs +eom +rIW +kfe +sDF +rIW +sDF +iON +gAa ndl ndl ndl @@ -91868,7 +91868,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -91888,89 +91888,89 @@ qeX qeX qeX qeX -luI -euA -eqf -rOu -rOu -rOu -rOu -rOu -rOu -osW -upX -euA -ehv -rOu -rOu -nOJ -eqf -nig -euA +xKI +eEL +vHU +hmP +hmP +hmP +hmP +hmP +hmP +goW +qcP +eEL +wCY +hmP +hmP +sar +vHU +fAz +eEL pRc -xZU -cDK +mLa +arg jgX bZw fwG bFx -xas +auX pRc -qHo -jJR -qHo -qHo +jpN +vWU +jpN +jpN uxe -xIe +mNJ ewy -qoB -qoB +fma +fma ewy -aYR -aYR -ioQ -vnu -lES -pBU -pBU +dQG +dQG +gQk +tYw +wgE +mbb +mbb ewy -vxH -vxH +atK +atK ewy -xIe +mNJ uxe -iEs -iEs -ubx -iEs +cQP +cQP +axc +cQP mua -eCr -wmo -rhw +uZy +kkp +xSs ueP -wfP -ano -eeX +eqO +pBz +oFA mua -rml +oue rJC dJy -qCq +gSV hwZ -apV -jQx -iZK -apV -jQx -uNa -uNa -btv -uNa -uNa -uBQ -iZK -lBK -idA +olx +rfD +cPL +olx +rfD +jIo +jIo +tUO +jIo +jIo +kNV +cPL +yaE +wii qeX qeX qeX @@ -91994,7 +91994,7 @@ qeX qeX mOJ mOJ -tag +klp ndl ndl ndl @@ -92002,67 +92002,67 @@ ndl ndl ndl ndl -hsJ -mIN -rdS -uPJ -rdS +mrQ +rme +bmA +ivm +bmA qat -xFp +dss xaR xaR tNG jEE -vnY -vnY +osl +osl rqs -vnY -vnY +osl +osl twK qVf qVf -xRb -kna -whH -fhj +efy +gxh +pls +xWW pGK ixd fcE eoi rmh qiN -sJb -sPS -aQx +jrC +rcu +nrn ixd ifE ovv fcE qiN pGK -hcG -nLe -xsN -waE -jbs -nMR -ecf -cxC -cxC -fBw -cha -cha -cha -cha -cha -lVz -qXZ -lVz -uSy -oXT -svi -lVz -hTG +fKL +uUr +vVC +jMv +wxW +csZ +qUo +uJe +uJe +eeB +scs +scs +scs +scs +scs +bsy +oeu +bsy +eom +rIW +aMt +bsy +gAa ndl ndl ndl @@ -92070,7 +92070,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -92090,89 +92090,89 @@ qeX qeX qeX qeX -luI -tPA -euA -rOu -nrs -nrs -nrs -nrs -bpD -bpD -bpD -dTt -bpD -bpD -eeY -eqf -eqf -rrM -dYF +xKI +qcx +eEL +hmP +hmU +hmU +hmU +hmU +noF +noF +noF +huL +noF +noF +fgU +vHU +vHU +oOB +wMv pRc -xKL +jbd nXE -mub +qje bZw xqV gHI -qVP +vUt pRc -crH -iAN -crH -crH +gsX +ldJ +gsX +gsX rkk -xIe +mNJ bwB -amy -amy +jNX +jNX iBJ -xCF -xCF -csO +fov +fov +uri iBJ -gxz -gxz -gxz +aID +aID +aID iBJ -exd -exd +lvY +lvY fNQ -xIe +mNJ rkk -tjm -tjm -qmr -tjm +cov +cov +uiB +cov mua -oKT -vEG -tAb +sEp +kkU +iLS tfJ -ugA -lqF -eeX +sdU +aWL +oFA mua -bFO -iIQ -bjv -xle +lYz +nSM +muv +fel hwZ -vcd -vcd -qOu -vcd -vcd -uNa -umo -uSL -tck -xjT -kUe -cYA -bSo -idA +kDd +kDd +kHG +kDd +kDd +jIo +njQ +csW +teR +lVS +bEP +fXN +mOR +wii qeX qeX qeX @@ -92196,7 +92196,7 @@ qeX qeX mOJ mOJ -tag +klp ndl ndl ndl @@ -92204,67 +92204,67 @@ ndl ndl ndl ndl -hsJ -sKS -uPJ -uPJ -uPJ +mrQ +vJi +ivm +ivm +ivm qat eym xaR eym eHm xfc -vnY -vnY +osl +osl uRe -ihK -ihK +xdK +xdK dli rqs rqs -gPV -ulJ -lOD -fhj +tYs +cdR +fkk +xWW pGK pGK pGK -lLD -jyt -bWb -wAl -sVo -xVQ -ekl -qGD -yaq +gUL +tAy +rdd +iJL +mGb +pim +ayu +pxH +vtX pGK pGK pGK -pFn -nLe -fhj -oXT -oXT -cha -vZV -cxC -cxC -fBw -xZF -vTH -juP -jMT -cha -uPQ -oXT -qCh -lVz -qXZ -lVz -oXT -hTG +xgi +uUr +xWW +rIW +rIW +scs +mqi +uJe +uJe +eeB +uTS +sXn +xJJ +jKc +scs +yiI +rIW +qfO +bsy +oeu +bsy +rIW +gAa ndl ndl ndl @@ -92272,7 +92272,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -92292,66 +92292,66 @@ qeX qeX qeX qeX -luI -eqf -eqf -rOu -nrs -nrs -nrs -nrs -bpD -lNb -cuf -qHo -sTh -bpD -bpD -bpD -bpD -bpD -bpD +xKI +vHU +vHU +hmP +hmU +hmU +hmU +hmU +noF +rRo +xAd +jpN +pFu +noF +noF +noF +noF +noF +noF pRc pRc pRc pRc -oNB +bXe pRc pRc pRc pRc -ryl -iAN -gEZ -crH +iwg +ldJ +gTR +gsX rkk -xIe +mNJ qOc -qoB -qoB +fma +fma qOc -aYR -aYR -aYR +dQG +dQG +dQG qOc -pBU -pBU -pBU +mbb +mbb +mbb qOc -vxH -vxH +atK +atK qOc -xIe +mNJ rkk -tjm -uDx -qmr -guH +cov +azY +uiB +dCh mua mua mua mua -cAx +iOY mua mua mua @@ -92361,20 +92361,20 @@ hwZ hwZ hwZ hwZ -vcd -lRx -oTz -xsY -ljn -uNa -jeF -kJG -ocQ -uNa -ljm -xxF -kJG -idA +kDd +vZD +nWJ +dzp +kGz +jIo +nzj +jmx +qEu +jIo +bsP +srD +jmx +wii qeX qeX qeX @@ -92398,7 +92398,7 @@ qeX qeX mOJ mOJ -tag +klp ndl ndl ndl @@ -92406,11 +92406,11 @@ ndl ndl ndl ndl -hsJ -whY -vcm -mth -lcc +mrQ +aAh +bMo +tCo +sIX qat qat qat @@ -92426,47 +92426,47 @@ rqs rqs nSs qat -qdP -ygu -fhj +nKz +gnT +xWW pGK pGK pGK pGK -jxD -arx -iTg -ekm -tNn -pZC -kRt +fFz +juG +mUH +nrF +eur +xrk +hfx pGK pGK pGK pGK -ptg -ygu -fhj -oXT -lVz -cha -ujs -cxC -cxC -gOi -cha -qau -tkZ -bIg -cha -vWe -oXT -mQE -lpk -oXT -uSy -oXT -hTG +lOU +gnT +xWW +rIW +bsy +scs +lpE +uJe +uJe +mEO +scs +ogj +voG +lDG +scs +mHX +rIW +fBs +sDF +rIW +eom +rIW +gAa ndl ndl ndl @@ -92474,7 +92474,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -92494,40 +92494,40 @@ qeX qeX qeX qeX -luI -eqf -euA -rOu -rOu -rOu -rOu -rOu -bpD -uEd -lnL -dmr -rur -rbH -gQw -rbH -amF -bKD -rbH -rur -xUE -jBz -xUE -xUE -lnM -xUE -rur -crH -crH -iAN -gEZ -crH +xKI +vHU +eEL +hmP +hmP +hmP +hmP +hmP +noF +uDI +xbA +bWr +mLD +mrK +xeN +mrK +reC +uok +mrK +mLD +vmL +ifw +vmL +vmL +vPG +vmL +mLD +gsX +gsX +ldJ +gTR +gsX rkk -xIe +mNJ qOc qOc qOc @@ -92543,40 +92543,40 @@ qOc qOc qOc qOc -xIe +mNJ rkk -tjm -uDx -qmr -tjm -tjm -cBf -uxw -gCf -tlp -tlp -tlp -tlp -cBf -rLV -rLV -ads -pWO -ylL -gyy -hPO -vdr -hPO -gou -uNa -uNa -uNa -uNa -uNa -uNa -iZK -kJG -idA +cov +azY +uiB +cov +cov +xVL +aTR +huV +qWp +qWp +qWp +qWp +xVL +bcV +bcV +mKC +wQO +qLO +hCR +qeQ +rqt +qeQ +hxJ +jIo +jIo +jIo +jIo +jIo +jIo +cPL +jmx +wii qeX qeX qeX @@ -92600,7 +92600,7 @@ qeX qeX mOJ mOJ -tag +klp ndl ndl ndl @@ -92608,15 +92608,15 @@ ndl ndl ndl ndl -hsJ -mth -mth -mth -otU -uPJ -whY -whY -whY +mrQ +tCo +tCo +tCo +gLS +ivm +aAh +aAh +aAh qat qat qat @@ -92628,47 +92628,47 @@ qat qat qat qat -pFn -ygu -fhj +xgi +gnT +xWW pIF -beo +tVu tfc pGK -cjF -nus -qsZ -obc -fte -nCY -pQg +yab +rVp +uTo +eMV +esa +eCW +nvf pGK -ran -pXB -tGM -gbD -rKN -fhj -oXT -lVz -cha -cha -cha -mFO -cha -cha -cha -cha -cha -cha -lpk -oXT -oXT -oXT -oXT -lVz -oXT -hTG +nwd +oyl +uBe +tLu +mci +xWW +rIW +bsy +scs +scs +scs +fyx +scs +scs +scs +scs +scs +scs +sDF +rIW +rIW +rIW +rIW +bsy +rIW +gAa ndl ndl ndl @@ -92676,7 +92676,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -92696,40 +92696,40 @@ qeX qeX qeX qeX -luI -pfY -euA -rOu -vWF -vWF -vWF -ssV -bpD -gCo -fLx -nUY -fvv -tTN -tTN -tTN -tTN -tTN -tTN -lyS -tTN -tTN -tTN -tTN -tTN -tTN -lfL -uor -tTN -bLm -gEZ -crH +xKI +kxw +eEL +hmP +nCN +nCN +nCN +vIS +noF +puo +iaE +lvJ +kZi +sRy +sRy +sRy +sRy +sRy +sRy +fki +sRy +sRy +sRy +sRy +sRy +sRy +kvr +enj +sRy +mgt +gTR +gsX rkk -xIe +mNJ qOc qOc qOc @@ -92745,40 +92745,40 @@ qOc qOc qOc qOc -xIe +mNJ rkk -tjm -uDx -mad -tgK -qlJ -dXu -tgK -tgK -tgK -tgK -tgK -tgK -ifG -tgK -tgK -tgK -tgK -tgK -iNR -qlJ -uCz -uDx -cfg -vcd -qQp -qQp -qQp -idn -uNa -oCP -tqw -idA +cov +azY +dgY +bqA +dnb +wGD +bqA +bqA +bqA +bqA +bqA +bqA +oOp +bqA +bqA +bqA +bqA +bqA +rKe +dnb +wXT +azY +jTb +kDd +iHD +iHD +iHD +tHu +jIo +pFT +cnf +wii qeX qeX qeX @@ -92800,87 +92800,87 @@ qeX qeX qeX qeX -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -uPJ -rdS -rdS -uPJ -rdS -rdS -mlg -uPJ -rdS -rdS -rdS -rdS -uPJ -vqu -uPJ -rdS -rdS -xbh -ulJ -ygu -ulJ -aqc -beo +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +ivm +bmA +bmA +ivm +bmA +bmA +rPf +ivm +bmA +bmA +bmA +bmA +ivm +hgk +ivm +bmA +bmA +ezY +cdR +gnT +cdR +vHX +tVu cKx pGK -gDl -arx -uBv -pZN -ydT -pZC -kqq +nKv +juG +olX +cYL +wAL +xrk +tWo pGK -qcM -pXB -ehT -ulJ -rKN -ulJ -fgD -lpk -lpk -lVz -owb -rUv -lpk -lpk -lVz -owb -lVz -lpk -lpk -lpk -vhs -bXA -lpk -lVz -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG +jmz +oyl +bUD +cdR +mci +cdR +fbQ +sDF +sDF +bsy +khe +qDZ +sDF +sDF +bsy +khe +bsy +sDF +sDF +sDF +uRq +asZ +sDF +bsy +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa qeX qeX qeX @@ -92898,89 +92898,89 @@ qeX qeX qeX qeX -luI -eqf -euA -rOu -vWF -vWF -vWF -vWF -bpD -roA -eVZ -wGl -rur -fak -fak -hyV -lwl -xsp -hbc -rur -dpo -woA -fYS -bBI -vSR -esD -rur -crH -gEZ -jJR -gEZ -aac +xKI +vHU +eEL +hmP +nCN +nCN +nCN +nCN +noF +goC +coi +aCv +mLD +nFR +nFR +czK +nma +rHd +lYQ +mLD +tVs +iFC +sUq +qvX +uUh +dhq +mLD +gsX +gTR +vWU +gTR +chR uxe -nAS -uHg -eMS -eMS -eMS -eMS -aOC -qaY -dvx -cJs -avf -lUI -lUI -lUI -lUI -oGc -mcm +aiG +jbW +nvp +nvp +nvp +nvp +uTZ +fLI +rNo +dEl +dGa +uVE +uVE +uVE +uVE +hry +bRS uxe -dzt -uDx -ubx -uDx -tjm -cBf -mIV -mIV -uFp -qoL -kPm -mbX -cBf -oze -npv -wYN -eLU -qYZ -gyy -ijV -jCy -tgK -wbV -vcd -qQp -qQp -qQp -qQp -uNa -iZK -gkA -idA +pFL +azY +axc +azY +cov +xVL +qui +qui +pMM +tGI +nFb +dbm +xVL +sBF +jvc +cVr +eCV +bby +hCR +tUX +enF +bqA +rTO +kDd +iHD +iHD +iHD +iHD +jIo +cPL +kmM +wii qeX qeX qeX @@ -93002,87 +93002,87 @@ qeX qeX qeX qeX -hsJ -jpx -jpx -anL -gZt -gZt -gZt -gZt -gZt -gZt -gZt -hsJ -gJH -rdS -mth -mth -mth -mth -mth -mth -mth -mth -mth -mth -mth -mth +mrQ +jjC +jjC +mmh +jkg +jkg +jkg +jkg +jkg +jkg +jkg +mrQ +qdc +bmA +tCo +tCo +tCo +tCo +tCo +tCo +tCo +tCo +tCo +tCo +tCo +tCo gmU gmU gmU gmU -fBj -ygu -akK +lBt +gnT +pvB pGK pGK pGK pGK -xic -pGT -tSj -rLC -bqP -wve -qAO +fzP +xyZ +vOS +xbJ +jga +jLY +xzI pGK pGK pGK pGK -qLe -rKN -eMo -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -lpk -lVz -hTG -cVN -cVN -cVN -cVN -cVN -cVN -cVN -kCy -tzk -tzk -hTG +rDp +mci +qgk +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +rIW +sDF +bsy +gAa +ndO +ndO +ndO +ndO +ndO +ndO +ndO +uaQ +pfm +pfm +gAa qeX qeX qeX @@ -93100,89 +93100,89 @@ qeX qeX qeX qeX -luI -eqf -euA -rOu -vWF -vWF -vWF -vWF -qEc -crH -uwU -krx +xKI +vHU +eEL +hmP +nCN +nCN +nCN +nCN +bpW +gsX +kbO +uYj xak xak xak -aDk -eav +mPh +bIR xak xak xak xak xak -aDk -gjU +mPh +pjx xak xak xak -crH -gEZ -jJR -gEZ -crH +gsX +gTR +vWU +gTR +gsX rkk -xIe -rgF -qhY -sYA -bAl -qhY -tsP -bNa +mNJ +qlh +bMF +mHb +bMN +bMF +aLt +iJn rMM -gzC -wnF -ncV -doM -hyr -kQH -edF -xIe +aFR +oeo +rXv +gFX +beY +mIg +vXw +mNJ rkk -tjm -uDx -ubx -uDx -tjm +cov +azY +axc +azY +cov pga pga pga -eZj -hkK +vlb +eMk pga pga pga pga pga -eZj -qvm +vlb +rcg pga pga pga -aAK -htz -tjm -mQT -qQp -qQp -qQp -qQp -uNa -iSn -oXv -idA +sTT +mYA +cov +aBN +iHD +iHD +iHD +iHD +jIo +uQb +hrd +wii qeX qeX qeX @@ -93204,87 +93204,87 @@ qeX qeX qeX qeX -hsJ -jpx -jpx -anL -gZt -gZt -gZt -gZt -gZt -gZt -gZt -hsJ -tGk -rdS -mth -hVV -hVV -hVV -hVV -sev -hVV -hVV -hVV -hVV -sev +mrQ +jjC +jjC +mmh +jkg +jkg +jkg +jkg +jkg +jkg +jkg +mrQ +ehV +bmA +tCo +uFJ +uFJ +uFJ +uFJ +tMT +uFJ +uFJ +uFJ +uFJ +tMT gmU -yjN -qdO -cpu +isF +tiW +uQD gmU -qdP -ygu -fhj +nKz +gnT +xWW pGK mdk ciA ciA hSH -bqz +ppw rvi lkm lHO -oRw +uKU tXV ciA ciA ukr pGK -qdP -rKN -fhj -oXT -nAK -uoT -nAK -oXT -nPR -nPR -nPR -nPR -nQd -nPR -nPR -nPR -nPR -nQd -oXT -lpk -dNN -hTG -cVN -cVN -cVN -cVN -cVN -cVN -cVN -kCy -tzk -tzk -hTG +nKz +mci +xWW +rIW +spP +mLO +spP +rIW +sCk +sCk +sCk +sCk +abC +sCk +sCk +sCk +sCk +abC +rIW +sDF +vBC +gAa +ndO +ndO +ndO +ndO +ndO +ndO +ndO +uaQ +pfm +pfm +gAa qeX qeX qeX @@ -93298,97 +93298,97 @@ qeX qeX vwY qeX -fDe -wgJ -wgJ -wgJ -luI -euA -eqf -rOu -vWF -vWF -vWF -vWF -bpD -ogk -gEZ -etI +hIJ +nGX +nGX +nGX +xKI +eEL +vHU +hmP +nCN +nCN +nCN +nCN +noF +dIj +gTR +iqa xak -juy -iEK -qcJ +uwf +gkC +sHs kyJ xak cho gXg cho xak -qFx -eBl -iMY -juy +vth +qpO +jAr +uwf xak -oXt -gEZ -jJR -gEZ -crH +kaj +gTR +vWU +gTR +gsX rkk -xIe -rgF -qhY -bAl -qhY -jYV -tsP -bNa +mNJ +qlh +bMF +bMN +bMF +erV +aLt +iJn rMM -gzC -wnF -ncV -utM -ncV -gWf -edF -xIe +aFR +oeo +rXv +ebf +rXv +jAb +vXw +mNJ rkk -tjm -uDx -ubx -uDx -tZJ +cov +azY +axc +azY +bNq pga -fav -hzo -aAB +jGV +ifO +nkV pZG pga xOR pUm xOR pga -eit -ajS -nIg -fav +jtT +lPu +ahh +jGV pga -gXe -htz -iQW -vcd -qQp -qQp -qQp -qQp -uNa -iSn -rEm -idA -wgJ -wgJ -wgJ -wgf +xnn +mYA +aJK +kDd +iHD +iHD +iHD +iHD +jIo +uQb +uxb +wii +nGX +nGX +nGX +oWW mOJ qeX vwY @@ -93406,87 +93406,87 @@ qeX qeX qeX qeX -hsJ -jpx -jpx -anL -gZt -gZt -gZt -gZt -gZt -gZt -gZt -hsJ -pWl -rdS -mth -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV +mrQ +jjC +jjC +mmh +jkg +jkg +jkg +jkg +jkg +jkg +jkg +mrQ +leU +bmA +tCo +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ gmU -qDx -hWm -eKE -lww -ulJ -lOD -fhj +lLt +aCl +sAM +qaW +cdR +fkk +xWW pGK iqI -dLg -tTO -tTO -jiv +bAj +nDM +nDM +rOP vDu yaa -dLg -jiv -tTO -tTO +bAj +rOP +nDM +nDM osV lli pGK -qdP -nLe -fhj -vWa -lpk -lpk -lpk -oXT -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -oXT -lpk -jlc -hTG -cVN -cVN -cVN -cVN -cVN -cVN -cVN -kCy -tzk -tzk -hTG +nKz +uUr +xWW +bhA +sDF +sDF +sDF +rIW +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +rIW +sDF +bxt +gAa +ndO +ndO +ndO +ndO +ndO +ndO +ndO +uaQ +pfm +pfm +gAa qeX qeX qeX @@ -93500,97 +93500,97 @@ qeX qeX vwY qeX -tag +klp ndl ndl ndl -luI -glX -hPK -rOu -vWF -vWF -vWF -vWF -bpD -qZe -gEZ -fjz +xKI +iwp +lJf +hmP +nCN +nCN +nCN +nCN +noF +fPu +gTR +aUo xak -phS -qoj -qcJ +sIc +kvm +sHs qDs qDs -kHp -kHp -kHp +eDU +eDU +eDU kRW qDs -eBl -qaF -qpJ +qpO +gya +aIr xak -oKO -gEZ -jJR -gEZ -crH +oxt +gTR +vWU +gTR +gsX rkk -xIe -ezR -pxp -pxp -pxp -pxp -gHq -qaY -gdv -cJs -mnQ -pBU -pBU -pBU -pBU -gGv -xIe +mNJ +aYC +tSa +tSa +tSa +tSa +tVS +fLI +ecm +dEl +gFA +mbb +mbb +mbb +mbb +nIc +mNJ rkk -tjm -uDx -ubx -uDx -sgL +cov +azY +axc +azY +lAm pga -lEP -ofl -aAB +clK +mko +nkV orW orW -mLS -mLS -mLS +adT +adT +adT dLt orW -ajS -wZb -eBT +lPu +kjq +scM pga -pep -htz -nCW -vcd -qQp -qQp -qQp -qQp -uNa -iZK -kJG -idA +cPW +mYA +dOj +kDd +iHD +iHD +iHD +iHD +jIo +cPL +jmx +wii ndl ndl ndl -tEF +rcq qeX qeX vwY @@ -93608,87 +93608,87 @@ qeX qeX qeX qeX -hsJ +mrQ nxo gpg gpg -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -bRw -wat -mth -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mgF +eVK +tCo +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ gmU -ocv -ecb +hCE +fpN ybR -vUe -ulJ -lOD -fhj +eQs +cdR +fkk +xWW pGK iqI -eoC -jlj -hip -mXK -ygX +kOU +hiR +uLM +uJY +wCg yaa -eoC -jsK -hip -seZ -ygX +kOU +gyD +uLM +uXr +wCg lli pGK -qdP -nLe -fhj -vWa -huC -rfV -wwj -oXT -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -oXT -uqj -lVk -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG +nKz +uUr +xWW +bhA +qAx +fYf +ifY +rIW +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +rIW +nsA +hNy +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa nJH nJH iCq -hTG +gAa qeX qeX qeX @@ -93702,44 +93702,44 @@ qeX qeX vwY qeX -tag +klp ndl ndl ndl -luI -euA -dAE -rOu -rOu -rOu -rOu -rOu -bpD -bcB -bcB -lhQ +xKI +eEL +kGr +hmP +hmP +hmP +hmP +hmP +noF +gLt +gLt +tQS xak -juy -ylU +uwf +dYL nBH nBH -nPV -crv -ktT -sYm -nPV +xOQ +cGO +gNp +xZG +xOQ nBH nBH -rvc -juy +qgb +uwf xak -vgC -gEZ -jJR -gEZ -crH +dxi +gTR +vWU +gTR +gsX rkk -xIe +mNJ qOc qOc qOc @@ -93755,44 +93755,44 @@ qOc qOc qOc qOc -xIe +mNJ rkk -tjm -uDx -ubx -uDx -utl +cov +azY +axc +azY +nEM pga -fav -pkN +jGV +cAc gAb gAb -qkS -nNM -fjP -uem -qkS +xiI +upF +ciP +aIR +xiI gAb gAb -bKo -fav +mDm +jGV pga -fvT -jot -wCu -vcd -uNa -uNa -uNa -uNa -uNa -iZK -wer -idA +iqZ +qzS +gJr +kDd +jIo +jIo +jIo +jIo +jIo +cPL +xek +wii ndl ndl ndl -tEF +rcq qeX qeX vwY @@ -93810,87 +93810,87 @@ qeX qeX qeX qeX -hsJ -cJQ -cJQ -iHy -oWx -oWx -oWx -oWx -oWx -oWx -oWx -vgD -cBO -wEF -mth -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV +mrQ +kaY +kaY +xwr +hrN +hrN +hrN +hrN +hrN +hrN +hrN +wJy +bEo +iOZ +tCo +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ gmU -ism -ecb +rpt +fpN ybR gmU -hZC -hNH -iku +wKC +dKx +lRO pGK iqI -eEV -jCW -mDY -aDF -ygX +fCQ +pRf +cnK +iWs +wCg yaa -qBV -vLH -mDY -jCW -lIu +wAC +czl +cnK +pRf +qpf lli pGK -eFO -xOj -jbs -vWa -rax -lpk -mTj -oXT -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -oXT -apr -cBO -uXN -uzN -uzN -uzN -uzN -uzN -uzN -uzN -eiE -cIw -cIw -hTG +ayd +cRo +wxW +bhA +lqY +sDF +nod +rIW +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +sCk +rIW +fXw +bEo +rwI +nsp +nsp +nsp +nsp +nsp +nsp +nsp +mQx +vbg +vbg +gAa qeX qeX qeX @@ -93904,26 +93904,26 @@ qeX qeX vwY qeX -tag +klp ndl ndl ndl -luI -tPA -eqf -rOu -vWF -vWF -vWF -ssV -bpD -hvf -sEY -rrd +xKI +qcx +vHU +hmP +nCN +nCN +nCN +vIS +noF +xvz +qwI +sFu xak -juy -qoj -qcJ +uwf +kvm +sHs qDs qDs mKp @@ -93931,43 +93931,43 @@ bmt fHZ qDs qDs -eBl -qaF -juy +qpO +gya +uwf xak -wBz -gEZ -jJR -gEZ -aac +eXO +gTR +vWU +gTR +chR uxe -nAS -pTK -gRP -gRP -gRP -gRP -dQd -qaY -dik -cJs -hHV -rPK -rPK -rPK -rPK -puU -mcm +aiG +aev +dCs +dCs +dCs +dCs +bzr +fLI +wth +dEl +rxH +tcl +tcl +tcl +tcl +sxO +bRS uxe -dzt -uDx -ubx -uDx -guH +pFL +azY +axc +azY +dCh pga -fav -ofl -aAB +jGV +mko +nkV orW mgV ktI @@ -93975,26 +93975,26 @@ mWU tEZ orW orW -ajS -wZb -fav +lPu +kjq +jGV pga -inY -uCF -mee -vcd -qQp -qQp -qQp -idn -uNa -iZK -kJG -idA +haB +nRN +nWq +kDd +iHD +iHD +iHD +tHu +jIo +cPL +jmx +wii ndl ndl ndl -tEF +rcq qeX qeX vwY @@ -94012,87 +94012,87 @@ qeX qeX qeX qeX -hsJ -cJQ -cJQ -iHy -oWx -oWx -oWx -oWx -oWx -oWx -oWx -hBC -kyT -wEF -mth -mth -mth -fje -mth -mth -mth -mth -nrA -mth -mth +mrQ +kaY +kaY +xwr +hrN +hrN +hrN +hrN +hrN +hrN +hrN +fVx +ocw +iOZ +tCo +tCo +tCo +dsB +tCo +tCo +tCo +tCo +bMp +tCo +tCo gmU gmU -oTT -iXU +mFZ +gVO gmU -gXG -uyC -gXG +avT +wIw +avT pGK iqI -eoC -kQk -hip -vQZ -ygX +kOU +aqt +uLM +iJo +wCg yaa -eoC -kQk -hip -vQZ -ygX +kOU +aqt +uLM +iJo +wCg lli pGK -gXG -uyC -gXG -oXT -oXT -vyY -oXT -oXT -oXT -oXT -kKE -oXT -oXT -oXT -oXT -tRu -oXT -oXT -oXT -iLF -kyT -dOf -uzN -uzN -uzN -uzN -uzN -uzN -uzN -eiE -cIw -cIw -hTG +avT +wIw +avT +rIW +rIW +ind +rIW +rIW +rIW +rIW +iDM +rIW +rIW +rIW +rIW +hgH +rIW +rIW +rIW +ngh +ocw +hmh +nsp +nsp +nsp +nsp +nsp +nsp +nsp +mQx +vbg +vbg +gAa qeX qeX qeX @@ -94106,26 +94106,26 @@ qeX qeX vwY qeX -tag +klp ndl ndl ndl -luI -euA -eqf -rOu -vWF -vWF -vWF -vWF -bpD -eGn -gEZ -wGQ +xKI +eEL +vHU +hmP +nCN +nCN +nCN +nCN +noF +uCp +gTR +fAS xak -phS -ylU -qcJ +sIc +dYL +sHs qDs qDs qDs @@ -94133,43 +94133,43 @@ oZg oZg qDs qDs -eBl -nhC -qpJ +qpO +iQP +aIr xak -crH -gEZ -jJR -gEZ -crH -ftt -xIe -xWX -gvf -gvf -bGZ -gvf -xId -bNa +gsX +gTR +vWU +gTR +gsX +ssN +mNJ +qms +cqM +cqM +wrw +cqM +jIx +iJn rMM -gzC -fsP -aDc -xAq -ozY -btW -aOp -xIe -ftt -tjm -uDx -qPD -uDx -tjm +aFR +jbV +jbI +uxO +dEa +dHA +jmd +mNJ +ssN +cov +azY +klf +azY +cov pga -lEP -pkN -aAB +clK +cAc +nkV orW orW orW @@ -94177,26 +94177,26 @@ mKa mKa orW orW -ajS -bgn -eBT +lPu +pwy +scM pga -fTN -htz -bPx -vcd -qQp -qQp -qQp -qQp -uNa -iSn -teV -idA +nUC +mYA +uui +kDd +iHD +iHD +iHD +iHD +jIo +uQb +vHz +wii ndl ndl ndl -tEF +rcq qeX qeX vwY @@ -94214,87 +94214,87 @@ qeX qeX qeX qeX -hsJ -cJQ -cJQ -iHy -oWx -oWx -oWx -okE -oWx -oWx -oWx -oly -qaJ -afT -eul -sNJ -hWN -mvY -bxk -jGj -xMI -vQW -quP -gtC -fvQ -svj -aPX -ulJ -ulJ -nNL -joH -cjD -usZ +mrQ +kaY +kaY +xwr +hrN +hrN +hrN +ehH +hrN +hrN +hrN +nSH +dsN +pFJ +xNq +rnd +sdi +hhV +fUQ +rbu +bnA +tvx +sWd +uzO +sdI +hEx +sJL +cdR +cdR +qVU +lhh +muf +xcE pGK iqI -dkL -xHW -xHW -nGE -xEV +bzD +xMh +xMh +xmy +rzf yaa -mku -nGE -xHW -xHW -etn +wmB +xmy +xMh +xMh +sMm lli pGK -joH -cjD -usZ -xts -aPX -ulJ -vBm -pgG -kKw -tFZ -uRZ -jsf -egy -xMI -bxk -qNy -jyV -lgT -pyO -nGz -qaJ -kpK -uzN -uzN -uzN -mmO -uzN -uzN -uzN -eiE -cIw -cIw -hTG +lhh +muf +xcE +gnD +sJL +cdR +fGn +jPb +trR +uHi +xJI +ajE +hbF +bnA +fUQ +uJD +ndK +fLL +vLQ +xdH +dsN +een +nsp +nsp +nsp +kpe +nsp +nsp +nsp +mQx +vbg +vbg +gAa qeX qeX qeX @@ -94307,27 +94307,27 @@ csy qeX qeX vwY -luI -luI -luI -luI -luI -luI -euA -euA -rOu -vWF -vWF -vWF -vWF -mFF -crH -gEZ -onh +xKI +xKI +xKI +xKI +xKI +xKI +eEL +eEL +hmP +nCN +nCN +nCN +nCN +bLz +gsX +gTR +kAW xak -juy -qoj -qcJ +uwf +kvm +sHs qDs qDs egG @@ -94335,43 +94335,43 @@ egG tRY qDs qDs -eBl -qaF -juy +qpO +gya +uwf xak -crH -gEZ -aUT -vAV -kFT -wfZ -bcA -xWX -gvf -qAs -vZW -gvf -xId -bNa +gsX +gTR +xcA +hPA +mSb +tLQ +sBv +qms +cqM +rSf +rYQ +cqM +jIx +iJn rMM -gzC -fsP -tLA -ozY -ozY -ozY -aOp -slI -wfZ -haA -fzt -tnq -uDx -niV +aFR +jbV +wYu +dEa +dEa +dEa +jmd +fzW +tLQ +ukR +lYA +mSx +azY +hGx pga -fav -ofl -aAB +jGV +mko +nkV orW orW hpA @@ -94379,27 +94379,27 @@ hpA orW orW orW -ajS -wZb -fav +lPu +kjq +jGV pga -dOQ -htz -tjm -hTD -qQp -qQp -qQp -qQp -uNa -lkc -teV -idA -idA -idA -idA -idA -idA +qMM +mYA +cov +aar +iHD +iHD +iHD +iHD +jIo +tzH +vHz +wii +wii +wii +wii +wii +wii qeX vwY qeX @@ -94416,39 +94416,39 @@ qeX qeX qeX qeX -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -mxq -xRh -xRh -odT -ivK -hmB -gcS -hmB -hmB -hmB -odT -hmB -gcS -ivK -sOJ -sOJ -sOJ -sOJ -gcS -kdX -ygu -jJw +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +mrQ +dJu +fuI +fuI +owT +nSk +ups +rxO +ups +ups +ups +owT +ups +rxO +nSk +jAB +jAB +jAB +jAB +rxO +cSl +gnT +nRq pGK ixd fcE @@ -94464,39 +94464,39 @@ fcE fcE qiN pGK -wul -hCW -shX -jig -sRA -sRA -sRA -sRA -ukj -jig -sRA -kgu -cig -sRA -sRA -jig -sRA -ukj -kgu -tAm -wsY -uli -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG +lcS +xVH +cbi +eMA +dRF +dRF +dRF +dRF +jgJ +eMA +dRF +rMh +rEU +dRF +dRF +eMA +dRF +jgJ +rMh +iKg +gsi +bin +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa +gAa qeX qeX qeX @@ -94509,27 +94509,27 @@ csy qeX qeX vwY -luI -dkY -euA -euA -euA -vOs -euA -osW -rOu -vWF -vWF -vWF -vWF -bpD -aZE -gnE -iJE +xKI +aqL +eEL +eEL +eEL +qVB +eEL +goW +hmP +nCN +nCN +nCN +nCN +noF +aEa +ayo +qzJ xak xak -rGG -oWP +ryd +mZQ pCs jlr cNE @@ -94537,43 +94537,43 @@ jFj ldv vto flY -iPE -kYX +haZ +sgH xak xak -crH -gEZ -sdA -bFK -eCQ +gsX +gTR +nBP +rgn +tFu uxe -ner -sJo -aYR -aYR -aYR -aYR -pQk -qaY -vJg -cJs -xpZ -dEA -dEA -dEA -dEA -rpi -goE +qYx +tif +dQG +dQG +dQG +dQG +leb +fLI +mxY +dEl +sEh +eBQ +eBQ +eBQ +eBQ +thW +dTF uxe -saF -uPg -oTz -uDx -tjm +tBG +jdp +nWJ +azY +cov pga pga -rBk -bfu +vVN +npj mbV orW vgS @@ -94581,27 +94581,27 @@ shE hFj nis czu -sIs -pEG +iOR +oLF pga pga -rPD -gpx -uYF -bpD -qQp -qQp -qQp -qQp -uNa -iSn -teV -fBH -kJG -iai -iKH -vcV -idA +wlf +dFR +tuq +noF +iHD +iHD +iHD +iHD +jIo +uQb +vHz +kTB +jmx +qjY +nLu +toB +wii qeX vwY qeX @@ -94618,39 +94618,39 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -hsJ -ntG -uPJ -izi -gJm -iAe -kid -rJY -pvs -orn -lgB -yjG -hwr -ccq -jHw -pao -bOG -hib -oYL -yjG -ulJ -ulJ -fNm -vZX -jwp -bPU +mrQ +tXv +ivm +eUb +lwy +dUg +iQn +aTQ +eMl +bNH +cnz +wyR +vRs +kck +jRj +eQX +bYJ +lIh +qBt +wyR +cdR +cdR +ceg +wAP +sqw +ayO pGK pGK pGK @@ -94666,39 +94666,39 @@ pGK pGK pGK pGK -dbt -wIs -bPU -fwL -iBo -ulJ -oKy -vza -ttz -jHw -tIv -bOG -ccq -igv -yjG -hwr -fCA -ttz -xFX -vfs -iAe -rUI -fgD -lpk -uSy -hTG +aSL +kkc +ayO +ccW +gGQ +cdR +vCK +wAf +wER +jRj +lZM +bYJ +kck +sYJ +wyR +vRs +xpa +wER +doU +pbl +dUg +gLC +fbQ +sDF +eom +gAa ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -94711,99 +94711,99 @@ csy qeX qeX vwY -luI -ghd -eqf -eqf -eqf -eqf -bqi -khY -rOu -vWF -vWF -vWF -vWF -bpD -faj -faj -faj +xKI +ncm +vHU +vHU +vHU +vHU +xWv +cdE +hmP +nCN +nCN +nCN +nCN +noF +cYp +cYp +cYp xak -ceu -bed +uDp +bpE nBH hla -nPV -mVS -aaJ -nPU -nPV +xOQ +bgI +iRv +jjy +xOQ eFe nBH -xmN -ceu +nSw +uDp xak -sZm -gEZ -wRK -eVZ -opr +mxJ +gTR +buQ +coi +mlq uxe -gsx -xIe -xIe -xIe -aKw -xIe -xIe -xIe -aKw -xIe -xIe -xIe -aKw -xIe -xIe -xIe -gwf +wPs +mNJ +mNJ +mNJ +aJk +mNJ +mNJ +mNJ +aJk +mNJ +mNJ +mNJ +aJk +mNJ +mNJ +mNJ +uQH uxe -hpo -jcr -uII -uDx -tjm +eJd +nrG +ose +azY +cov pga -hwc -wBY +vRT +uPA gAb gxc -qkS -gsn -qkS -rGW -qkS +xiI +tFJ +xiI +kfN +xiI gxc gAb -nqm -hwc +hwm +vRT pga -ngX -ngX -ngX -bpD -qQp -qQp -qQp -qQp -uNa -tFG -mhG -sYU -mhG -mhG -tjY -teV -idA +mGP +mGP +mGP +noF +iHD +iHD +iHD +iHD +jIo +xHd +dzV +mmQ +dzV +dzV +mnb +vHz +wii qeX vwY qeX @@ -94820,87 +94820,87 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -hsJ -rHJ -rdS -mth -mth -mth -mth -mth -mth -mth -aJa -sOJ -xpf -mth -mth -lcc -mth -mth +mrQ +ijB +bmA +tCo +tCo +tCo +tCo +tCo +tCo +tCo +dFl +jAB +fFl +tCo +tCo +sIX +tCo +tCo qtD qtD -dZR -nEb +swA +aJq qtD -oQf -ygu -jrb -ivK -dLo -dLo -cKW -dLo -dLo -dLo -dLo -dLo -dLo -dLo -cKW -dLo -dLo -ivK -qVQ -ygu -uvP -oXT -oXT -vTW -oXT -oXT -oXT -vTW -oXT -oXT -oXT -aJa -sOJ -xpf -oXT -oXT -oXT -oXT -oXT -oXT -oXT -lVz -pMP -hTG +xSX +gnT +cfR +nSk +nnD +nnD +gKe +nnD +nnD +nnD +nnD +nnD +nnD +nnD +gKe +nnD +nnD +nSk +nQl +gnT +cIP +rIW +rIW +jlQ +rIW +rIW +rIW +jlQ +rIW +rIW +rIW +dFl +jAB +fFl +rIW +rIW +rIW +rIW +rIW +rIW +rIW +bsy +iON +gAa ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -94913,27 +94913,27 @@ csy qeX qeX vwY -luI -euA -eqf -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -vnU -faj -faj +xKI +eEL +vHU +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +tpl +cYp +cYp xak -nlT -bed -qcJ +rRd +bpE +sHs uEW eOA qDs @@ -94941,15 +94941,15 @@ qDs qDs qDs uEW -eBl -xmN -ylj +qpO +nSw +fpR xak -qHo -qHo -sdA -wBZ -vCy +jpN +jpN +nBP +rIC +bgR uxe gcb gcb @@ -94957,11 +94957,11 @@ gcb gcb uxe uxe -wvf -jer +cPe +bGt uxe -wvf -jer +cPe +bGt uxe uxe gcb @@ -94969,15 +94969,15 @@ gcb gcb gcb uxe -rdU -eKK -oTz -iEs -iEs +jUK +rUS +nWJ +cQP +cQP pga -aCU -wBY -aAB +ayg +uPA +nkV coG orW orW @@ -94985,27 +94985,27 @@ hpA orW orW coG -ajS -nqm -oVF +lPu +hwm +rMZ pga -ngX -ngX -hnI -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -iSn -kJG -idA +mGP +mGP +jNC +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii +uQb +jmx +wii qeX vwY qeX @@ -95017,11 +95017,11 @@ vwY qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX +nGX ndl ndl ndl @@ -95029,85 +95029,85 @@ ndl ndl ndl ndl -hsJ -gJH -uPJ -uPJ -mth -hVV -hVV -hVV -kCY -mth -jwr -sOJ -xpf -mth -nSK -gyv -mIt -eZC +mrQ +qdc +ivm +ivm +tCo +uFJ +uFJ +uFJ +eZx +tCo +lFt +jAB +fFl +tCo +etj +suD +pJp +qaN qtD -nuX -uIy -uIy +uVi +vQd +vQd qtD -iJg -rKN -sOJ -ivK -sOJ -hmB -hmB -hmB -sOJ -hmB -hmB -hmB -sOJ -hmB -hmB -hmB -wzB -ivK -sOJ -ygu -dlf -oXT -tQY -lVz -tQY -oXT -uLp -lpk -lpk -oAY -oXT -aJa -sOJ -xpf -oXT -nPR -nPR -nPR -fpD -oXT -sxc -lpk -lpk -hTG -ndl -ndl -ndl -ndl -ndl -ndl -ndl -wgJ -wgJ -wgJ -wgJ -wgf +rAS +mci +jAB +nSk +jAB +ups +ups +ups +jAB +ups +ups +ups +jAB +ups +ups +ups +eUD +nSk +jAB +gnT +bIP +rIW +dBQ +bsy +dBQ +rIW +gHw +sDF +sDF +pZD +rIW +dFl +jAB +fFl +rIW +sCk +sCk +sCk +ujP +rIW +aFv +sDF +sDF +gAa +ndl +ndl +ndl +ndl +ndl +ndl +ndl +nGX +nGX +nGX +nGX +oWW vwY qeX qeX @@ -95115,27 +95115,27 @@ csy qeX qeX vwY -luI -jnk -euA -luI -ezA -ezA -lxJ -jLg -jLg -jLg -cSp -jLg -jLg -ieS -faj -faj -faj +xKI +fzR +eEL +xKI +knT +knT +vOn +pDO +pDO +pDO +fiS +pDO +pDO +rGQ +cYp +cYp +cYp xak -dVR -fmt -qcJ +uTw +vNm +sHs uEW qDs nRY @@ -95143,71 +95143,71 @@ vNW hhw qDs uEW -eBl -haI -dVR +qpO +fiT +uTw xak -crH -gEZ -oJX -fuc -rqj +gsX +gTR +qKe +lqf +wME fAn -xPt -xPt -xPt -xPt -xPt -kLT -oSq +fEi +fEi +fEi +fEi +fEi +okJ +yjn nNg -tGf +dDj nNg -oSq -kLT -xPt -xPt -xPt -xPt -xPt +yjn +okJ +fEi +fEi +fEi +fEi +fEi fAn -tjm -uPg -oTz -uDx -lLu +cov +jdp +nWJ +azY +bPi pga -oOl -wrU -aAB +rAH +kFE +nkV coG orW -xFB +dFK urY seL orW coG -nuC -xsE -oOl +lnm +oTY +rAH pga -ngX -ngX -ngX -eKW -xSF -xSF -hfy -xSF -xSF -xSF -pyL -pwA -pwA -idA -iZK -fOJ -idA +mGP +mGP +mGP +kHo +bRW +bRW +inb +bRW +bRW +bRW +cpC +rES +rES +wii +cPL +iqt +wii qeX vwY qeX @@ -95219,7 +95219,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -95231,73 +95231,73 @@ ndl ndl ndl ndl -hsJ -hsJ -rdS -rdS -mth -hVV -hVV -hVV -hVV -mth -tRK -yjG -kET -mth -gyv -rdS -uPJ -fGf +mrQ +mrQ +bmA +bmA +tCo +uFJ +uFJ +uFJ +uFJ +tCo +ctk +wyR +jjo +tCo +suD +bmA +ivm +jjv qtD -kAp -uTW -bWO +cLY +xXy +eRQ qtD -oEM -nLe -iOi -ivK -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -ivK -mRf -ygu -dkg -oXT -oXT -lpk -fFL -oXT -rjc -lVz -lpk -rjc -oXT -fvR -yjG -kET -oXT -nPR -nPR -nPR -nPR -oXT -lDl -lVz -hTG -hTG +hkN +uUr +eDf +nSk +fFb +fFb +fFb +fFb +fFb +fFb +fFb +fFb +fFb +fFb +fFb +fFb +fFb +nSk +gGk +gnT +unu +rIW +rIW +sDF +eRF +rIW +xot +bsy +sDF +xot +rIW +mAK +wyR +jjo +rIW +sCk +sCk +sCk +sCk +rIW +aRn +bsy +gAa +gAa ndl ndl ndl @@ -95309,7 +95309,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -95317,43 +95317,43 @@ csy qeX qeX vwY -luI -eqf -upX -luI -ezA -ezA -lxJ -jLg -jLg -jLg -jLg -jLg -jLg -ieS -faj -faj -faj +xKI +vHU +qcP +xKI +knT +knT +vOn +pDO +pDO +pDO +pDO +pDO +pDO +rGQ +cYp +cYp +cYp xiQ xiQ xiQ xiQ -qsz -ngL +vrb +lED obF xiQ yiF -mwm -cLp +qUI +oYA vwU vwU vwU vwU -wBz -gEZ -sdA -bFK -crH +eXO +gTR +nBP +rgn +gsX sco sco nNg @@ -95373,43 +95373,43 @@ sco nNg sco sco -tjm -uPg -oTz -uDx -guH +cov +jdp +nWJ +azY +dCh oeZ oeZ oeZ oeZ -uYp -sqM +kny +wkP kqr oeZ mIX -nGZ -jTA +pSi +fBE jZE jZE jZE jZE -ngX -ngX -ngX -eKW -xSF -xSF -xSF -xSF -xSF -xSF -pyL -pwA -pwA -idA -iSn -kJG -idA +mGP +mGP +mGP +kHo +bRW +bRW +bRW +bRW +bRW +bRW +cpC +rES +rES +wii +uQb +jmx +wii qeX vwY qeX @@ -95421,7 +95421,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -95434,31 +95434,31 @@ ndl ndl ndl ndl -hsJ -uPJ -uPJ -mth -hVV -hVV -hVV -hVV -aES -fop -hmB -kvF -mth -bcj -uPJ -uPJ -qsF +mrQ +ivm +ivm +tCo +uFJ +uFJ +uFJ +uFJ +nlk +kqG +ups +mCA +tCo +sjr +ivm +ivm +qrj qtD -kvs -tLr +cvw +wJS kdp pAz -eUk -whH -jrb +isC +pls +cfR bEW bEW bEW @@ -95474,31 +95474,31 @@ fND fND fND fND -kdX -lOD -sXt -agl -oXT -lpk -lVz -fgD -lpk -lpk -lpk -lVz -oXT -tNz -hmB -wyz -tdW -nPR -nPR -nPR -nPR -oXT -eVm -lVz -hTG +cSl +fkk +dkM +tSJ +rIW +sDF +bsy +fbQ +sDF +sDF +sDF +bsy +rIW +yaV +ups +cTM +lqR +sCk +sCk +sCk +sCk +rIW +nEZ +bsy +gAa ndl ndl ndl @@ -95511,7 +95511,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -95519,99 +95519,99 @@ csy qeX qeX vwY -luI -eqf -atf -luI -ezA -ezA -lxJ -jLg -jLg -jLg -jLg -jLg -jLg -ieS -faj -faj -faj +xKI +vHU +pti +xKI +knT +knT +vOn +pDO +pDO +pDO +pDO +pDO +pDO +rGQ +cYp +cYp +cYp xiQ -dfC -imS +cZz +lWm xiQ -lci -mAp -pNH +ftz +oet +qus xiQ -oon -aOF -sbN +vxK +jfG +drP vwU -waO -qbQ +qZI +nhv vwU -tXX -oUE -kZV -bFK -rEe -agY -agY -agY -agY -agY -agY -agY -agY -mem +oSx +tco +end +rgn +kLU +lOB +lOB +lOB +lOB +lOB +lOB +lOB +lOB +ozx nNg -mem -agY -agY -agY -agY -agY -agY -agY -agY -dcn -uPg -htz -iqd -jzz +ozx +lOB +lOB +lOB +lOB +lOB +lOB +lOB +lOB +dIh +jdp +mYA +fuQ +pjM oeZ -djQ -vlp +pRG +kTb oeZ -nwq -irw -vBf +kxu +rsh +bqH oeZ -uUE -sRv -tjA +fRS +cby +moF jZE -rNd -aik +lzW +pIe jZE -ngX -ngX -ngX -eKW -xSF -xSF -xSF -xSF -xSF -xSF -pyL -pwA -pwA -idA -dMo -fis -idA +mGP +mGP +mGP +kHo +bRW +bRW +bRW +bRW +bRW +bRW +cpC +rES +rES +wii +rIb +biD +wii qeX vwY qeX @@ -95623,7 +95623,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -95636,31 +95636,31 @@ ndl ndl ndl ndl -hsJ -uPJ -rdS -mth -hVV -hVV -hVV -hVV -mth -kVl -aPX -pUb -mth -uPJ -rdS -uPJ -gyv +mrQ +ivm +bmA +tCo +uFJ +uFJ +uFJ +uFJ +tCo +snN +sJL +kJb +tCo +ivm +bmA +ivm +suD qtD -gEp -tLr +kxh +wJS unv sJF -qrL -lOD -xsN +kmw +fkk +vVC bEW eIl eIl @@ -95671,36 +95671,36 @@ eIl eIl eIl bEW -rpa -dbI -cqi -loB +cEa +rDA +lsM +mID fND -kDz -lOD -sXt -xnz -oXT -lpk -uSy -oXT -rjc -lVz -lpk -lVz -oXT -cTu -aPX -ohW -oXT -nPR -nPR -nPR -nPR -oXT -vWe -lpk -hTG +bBU +fkk +dkM +iCZ +rIW +sDF +eom +rIW +xot +bsy +sDF +bsy +rIW +kkM +sJL +rCW +rIW +sCk +sCk +sCk +sCk +rIW +mHX +sDF +gAa ndl ndl ndl @@ -95713,7 +95713,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -95721,99 +95721,99 @@ csy qeX qeX vwY -luI -tgD -mcs -luI -sSk -cvT -cvT -luI -luI -luI -luI -luI -luI -luI -luI -luI -rOu +xKI +ekL +wvy +xKI +uWL +qOU +qOU +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +hmP xiQ -tYq +qai fBm -dhF +syi nsZ dtJ -duk +vGU xiQ -aKP +mgo fmh hYK -bPl +iMg uOX -tVP +sKt vwU -cpR -puc -kZV -bFK -cDA -xJO -xJO -lmr -sBp -gvq -rng -xJO -xJO -bzX +sCS +eVw +end +rgn +bIQ +gDF +gDF +sLF +lDk +mKq +cFP +gDF +gDF +jus lpz -gbJ -xJO -xJO -rng -gvq -dKq -pQR -xJO -xJO -pgL -uPg -htz -dbK -eIP +cpo +gDF +gDF +cFP +mKq +nIi +qSf +gDF +gDF +ghz +jdp +mYA +cyJ +cIV oeZ -gWt +qKN fwj -jgt +bKA toK skL -bBJ +tbz oeZ -oGT +ntB quY fvJ -ndM +ldI dno -jeY +gWX jZE jZE -uNa -idA -idA -idA -idA -idA -idA -idA -idA -dHV -dHV -jXq -idA -tkU -kJG -idA +jIo +wii +wii +wii +wii +wii +wii +wii +wii +nbg +nbg +dpQ +wii +fSI +jmx +wii qeX vwY qeX @@ -95825,7 +95825,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -95838,31 +95838,31 @@ ndl ndl ndl ndl -hsJ -rdS -gXZ -mth -hVV -hVV -hVV -hVV -mth -aJa -hmB -xpf -mth -rdS -rdS -uPJ -gyv +mrQ +bmA +tKQ +tCo +uFJ +uFJ +uFJ +uFJ +tCo +dFl +ups +fFl +tCo +bmA +bmA +ivm +suD qtD bhx rOF jTy qtD -hKB -lOD -xOd +pTO +fkk +env bEW eIl eIl @@ -95873,36 +95873,36 @@ eIl eIl eIl bEW -wTd +fvb kOj chO -hJW +nft xDj -kdX -lOD -iDC -oXT -oXT -lpk -lDl -oXT -tQY -owb -lpk -lVz -oXT -aJa -hmB -xpf -oXT -nPR -nPR -nPR -nPR -oXT -lpk -lVz -hTG +cSl +fkk +eaU +rIW +rIW +sDF +aRn +rIW +dBQ +khe +sDF +bsy +rIW +dFl +ups +fFl +rIW +sCk +sCk +sCk +sCk +rIW +sDF +bsy +gAa ndl ndl ndl @@ -95915,7 +95915,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -95923,43 +95923,43 @@ csy qeX qeX vwY -luI -eqf -wwY -luI -hFX -hFX -hFX -pEt -pEt -pEt -pEt -pEt -pEt -pEt -luI -rOu +xKI +vHU +kkl +xKI +ktq +ktq +ktq +luN +luN +luN +luN +luN +luN +luN +xKI +hmP xiQ xiQ xiQ xiQ xiQ iQo -iti -exu +ceh +wFU xiQ -sxB -rMH +bvx +kqM nNR vwU vwU vwU vwU vwU -mHu -kZV -bFK -gwy +chr +end +rgn +sTz mEI mEI mEI @@ -95968,9 +95968,9 @@ mEI mEI hFw hFw -sTC -mmZ -dsp +xis +sAN +iqc xPA xPA mEI @@ -95979,43 +95979,43 @@ mEI mEI mEI mEI -hkV -uPg -htz -nDH +iZc +jdp +mYA +izU oeZ oeZ oeZ oeZ oeZ ugE -oec -bHN +ygv +hVJ oeZ -iWu -wRo +xDi +rSC txN jZE jZE jZE jZE jZE -uNa -idA -tSw -tSw -tSw -tSw -tSw -tSw -tSw -pwv -pwv -pwv -idA -iSn -teV -idA +jIo +wii +ycC +ycC +ycC +ycC +ycC +ycC +ycC +ckm +ckm +ckm +wii +uQb +vHz +wii qeX vwY qeX @@ -96027,7 +96027,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -96040,31 +96040,31 @@ ndl ndl ndl ndl -hsJ -rdS -cge -mth -mth -mth -mth -mth -mth -smS -hmB -gpd -mth -bUX -gyv -bRu -tjn +mrQ +bmA +mOG +tCo +tCo +tCo +tCo +tCo +tCo +fkt +ups +uQX +tCo +xGy +suD +cmF +hhG qtD -twp -rsi -pzu +fAa +uCa +mwU qtD -sOJ -rKN -sOJ +jAB +mci +jAB bEW eIl eIl @@ -96075,36 +96075,36 @@ eIl eIl eIl bEW -wSE +pug nTA lNk -ehW +geg xDj -qVQ -lOD -ulJ -fgD -lVz -lVz -hTT -oXT -oXT -oXT -vTW -oXT -oXT -smS -hmB -gpd -oXT -oXT -oXT -oXT -oXT -oXT -lVz -lVz -hTG +nQl +fkk +cdR +fbQ +bsy +bsy +qQA +rIW +rIW +rIW +jlQ +rIW +rIW +fkt +ups +uQX +rIW +rIW +rIW +rIW +rIW +rIW +bsy +bsy +gAa ndl ndl ndl @@ -96117,7 +96117,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -96125,99 +96125,99 @@ csy qeX qeX vwY -luI -euA -eqf -luI -hFX -hFX -hFX -pEt -pEt -pEt -pEt -pEt -pEt -pEt -luI -rOu +xKI +eEL +vHU +xKI +ktq +ktq +ktq +luN +luN +luN +luN +luN +luN +luN +xKI +hmP xiQ -bgF +wzL drD -iTL +pqR drD mGH -sgG -oWw +hhF +uhk xiQ -uuT -ohM +lPf +mOe jEq blh -htE +jOI fmh -tWC +ewH vwU -crH -kZV -bFK -gwy +gsX +end +rgn +sTz mEI -dUO -dAW -pcb -qoK +acS +aON +jgE +ful sNl -bLC -sKh -tMf -xGV -tMf -qtQ -kKB +jgQ +jCv +elw +pek +elw +lKI +aZf oSJ -soX -oKo -nek -eVs +hxI +vXg +tpw +dbC mEI -jPY -uPg -htz -tjm +frT +jdp +mYA +cov oeZ -pfM +jtj pRd -fLK +ojd pRd teo -bta -ebN +cav +jcp oeZ -fkQ -xZd +csb +dif sop inu -rbE +duX inu -viK +hYB jZE -uNa -idA -tSw -tSw -tSw -tSw -tSw -tSw -tSw -pwv -pwv -pwv -idA -iZK -teV -idA +jIo +wii +ycC +ycC +ycC +ycC +ycC +ycC +ycC +ckm +ckm +ckm +wii +cPL +vHz +wii qeX vwY qeX @@ -96229,7 +96229,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -96242,31 +96242,31 @@ ndl ndl ndl ndl -hsJ -lbM -tGk -mth -hVV -hVV -hVV -kCY -mth -aJa -hmB -xpf -mth -lcc -mth -mth -mth +mrQ +xvc +ehV +tCo +uFJ +uFJ +uFJ +eZx +tCo +dFl +ups +fFl +tCo +sIX +tCo +tCo +tCo rNR rNR rNR rNR rNR -xdo -rKN -dlf +jzI +mci +bIP bEW eIl eIl @@ -96277,36 +96277,36 @@ eIl eIl eIl bEW -lKA +maZ oPT xqm xqm -tdr -fRQ -stb -amZ -oXT -oXT -oXT -oXT -oXT -uLp -fwx -lpk -cRb -oXT -aJa -hmB -xpf -oXT -nPR -nPR -nPR -fpD -oXT -jei -lVz -hTG +xqA +gcm +pUU +jDY +rIW +rIW +rIW +rIW +rIW +gHw +saM +sDF +gei +rIW +dFl +ups +fFl +rIW +sCk +sCk +sCk +ujP +rIW +lAY +bsy +gAa ndl ndl ndl @@ -96319,7 +96319,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -96327,99 +96327,99 @@ csy qeX qeX vwY -luI -jnk -euA -luI -hFX -hFX -hFX -pEt -pEt -pEt -pEt -pEt -pEt -pEt -luI -rOu +xKI +fzR +eEL +xKI +ktq +ktq +ktq +luN +luN +luN +luN +luN +luN +luN +xKI +hmP xiQ -lsP -iLK +qKc +oed xiQ -urV -xnH -hFz -yjW +eip +ikr +dGO +qJA xiQ -vWj -swj -peU -nUf +aYa +lzY +kMT +tqE vwU -emF -cew +qwF +iNQ vwU -crH -kZV -bFK -gwy +gsX +end +rgn +sTz mEI -qIL +ofY sco sco nNg sNl -uIs -oSq +jgR +yjn sco -qlQ +prl sco -oSq -uIs +yjn +jgR oSJ -sAf +trJ rfO qUX -rDE +lYu mEI -via -uPg -htz -tjm +taw +jdp +mYA +cov oeZ -clO -jjf +ePW +vmp oeZ -eyK -eWu -bBJ -wWj +tDd +eHF +tbz +iIr oeZ -oBu -lje -kpr -whL +gdV +nht +bNS +wjC jZE -aoP -kEp +vWf +cRp jZE -uNa -idA -tSw -tSw -tSw -tSw -tSw -tSw -tSw -pwv -pwv -pwv -idA -iSn -tqw -idA +jIo +wii +ycC +ycC +ycC +ycC +ycC +ycC +ycC +ckm +ckm +ckm +wii +uQb +cnf +wii qeX vwY qeX @@ -96431,7 +96431,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -96444,31 +96444,31 @@ ndl ndl ndl ndl -hsJ -uPJ -pWl -mth -hVV -hVV -hVV -hVV -mth -tRK -yjG -umm -mth -uPJ -uPJ -wzx -wzx +mrQ +ivm +leU +tCo +uFJ +uFJ +uFJ +uFJ +tCo +ctk +wyR +lwS +tCo +ivm +ivm +qrz +qrz rNR -jbP -otK -hID +lWw +tJI +bVe rNR -prr -nLe -sOJ +hqf +uUr +jAB bEW eIl eIl @@ -96479,36 +96479,36 @@ eIl eIl eIl bEW -tgE +xKG jdF lNk -qUf +moM xDj -mRf -lOD -jrb +gGk +fkk +cfR bYw -kIQ -uLT -kIQ -oXT -tQY -lVz -lpk -lVz -oXT -tRK -yjG -umm -oXT -nPR -nPR -nPR -nPR -oXT -kzX -lpk -hTG +kbN +mBv +kbN +rIW +dBQ +bsy +sDF +bsy +rIW +ctk +wyR +lwS +rIW +sCk +sCk +sCk +sCk +rIW +htK +sDF +gAa ndl ndl ndl @@ -96521,7 +96521,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -96529,99 +96529,99 @@ csy qeX qeX vwY -luI -euA -eqf -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -rOu +xKI +eEL +vHU +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +hmP xiQ xiQ xiQ xiQ xiQ -gvF -hFz -yjW +aKK +dGO +qJA xiQ -vWj -swj -oxq +aYa +lzY +ocP vwU vwU vwU vwU vwU -wBz -kZV -bFK -uXb +eXO +end +rgn +sux mEI -sDY +sob sco sco -tkA -vyQ -iSj -iSj -iSj -iSj -iSj -iSj -iSj -fVd -oSq -xSG +phG +vra +xIH +xIH +xIH +xIH +xIH +xIH +xIH +ovq +yjn +dMS sco -nEl +tun mEI -gXd -uPg -htz -guH +eGe +jdp +mYA +dCh oeZ oeZ oeZ oeZ oeZ -oHX -bBJ -wWj +fTz +tbz +iIr oeZ -oBu -lje -wcC +gdV +nht +mQf jZE jZE jZE jZE jZE -uNa -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -iZK -kJG -idA +jIo +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii +cPL +jmx +wii qeX vwY qeX @@ -96633,7 +96633,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -96646,31 +96646,31 @@ ndl ndl ndl ndl -hsJ -rdS -hHx -mth -hVV -hVV -hVV -hVV -xfo -tNz -hmB -kvF -mth -lbM -qLD -uPJ -gyv +mrQ +bmA +ktX +tCo +uFJ +uFJ +uFJ +uFJ +nFI +yaV +ups +mCA +tCo +xvc +xLy +ivm +suD rNR -dZI +tBQ iYe tBJ -epz -ulJ -lOD -sOJ +bqg +cdR +fkk +jAB bEW eIl eIl @@ -96681,36 +96681,36 @@ eIl eIl eIl bEW -gpj +yiV mDK -xUZ -glh +tGY +qWP xDj -kdX -nLe -sOJ +cSl +uUr +jAB bYw myE wkj wkj -oXT -lpk -lVz -lpk -lVz -oXT -tNz -hmB -wyz -xjg -nPR -nPR -nPR -nPR -oXT -jlc -lpk -hTG +rIW +sDF +bsy +sDF +bsy +rIW +yaV +ups +cTM +cvp +sCk +sCk +sCk +sCk +rIW +bxt +sDF +gAa ndl ndl ndl @@ -96723,7 +96723,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -96731,99 +96731,99 @@ csy qeX qeX vwY -luI -euA -eqf -eqf -bfm -eqf -euA -pxN -wqW -hlY -mcs -osW -wwY -khY -gmK -osW +xKI +eEL +vHU +vHU +vRD +vHU +eEL +nbl +njB +fcd +wvy +goW +kkl +cdE +qil +goW xiQ -kFf -bJZ -cBG +uBU +dCE +xje xiQ -jkY -hFz -mqD +ezf +dGO +rcB xiQ -qfv -fNC -xSh +vOK +dBT +bzv vwU -olK -loF -vwr +pGD +eco +sQB vwU -crH -kZV -bFK -wGl +gsX +end +rgn +aCv mEI -lmu +gNo nNg -mem -twi +ozx +hnP mEI -wCP -xAW -nkL -xAW -nkL -xAW -nkL +nlL +tBm +uFc +tBm +uFc +tBm +uFc oZL -gai -xSG -nwH -tgO +qWl +dMS +bwi +hwX mEI -aIb -uPg -htz -tjm +vfe +jdp +mYA +cov oeZ -ksr -pqL -cYB +lmU +uzc +kLJ oeZ -mgL -bBJ -kUG +tES +tbz +pfo oeZ -mTP -lje -kwp +xZL +nht +lkh jZE -piP -aKO -xDy +pME +iOW +shZ jZE -uNa -hQj -hOp -hOp -hOp -pkK -xTB -gLi -uNa -kYu -bQe -mhG -mhG -rmo -cwf -idA +jIo +kZk +oDe +oDe +oDe +cws +qcV +dwd +jIo +qot +aMR +dzV +dzV +npt +sZK +wii qeX vwY qeX @@ -96835,7 +96835,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -96848,31 +96848,31 @@ ndl ndl ndl ndl -hsJ -urp -uPJ -mth -hVV -hVV -hVV -hVV -mth -kVl -aPX -pUb -mth -rdS -rdS -uPJ -whY +mrQ +hYs +ivm +tCo +uFJ +uFJ +uFJ +uFJ +tCo +snN +sJL +kJb +tCo +bmA +bmA +ivm +aAh rNR -aUM +ppk iYe tBJ rNR -gXG -irz -gXG +avT +iQf +avT bEW bEW bEW @@ -96884,35 +96884,35 @@ bBr bBr bBr fND -wIy +niN ydi -bYk +hQl fND -gXG -irz -gXG +avT +iQf +avT bYw -gZZ -gdx -pXs -oXT -lpk -lVz -lpk -rjc -oXT -cTu -aPX -ohW -oXT -nPR -nPR -nPR -nPR -oXT -wVB -pMP -hTG +azi +kTI +jYZ +rIW +sDF +bsy +sDF +xot +rIW +kkM +sJL +rCW +rIW +sCk +sCk +sCk +sCk +rIW +aUe +iON +gAa ndl ndl ndl @@ -96925,7 +96925,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -96933,99 +96933,99 @@ csy qeX qeX vwY -luI -upX -pxN -atf -cji -euA -eqf -euA -dEf -pOb -dEf -euA -eqf -pxN -gmK -fsx +xKI +qcP +nbl +pti +gsR +eEL +vHU +eEL +gSp +rGa +gSp +eEL +vHU +nbl +qil +fzc xiQ -kFf +uBU drD -cBG +xje xiQ -arS -hFz -yjW +sue +dGO +qJA xiQ -vWj -swj -ncj +aYa +lzY +lne vwU -olK +pGD fmh -vwr +sQB vwU -crH -kZV -bFK -jis +gsX +end +rgn +idX mEI iEe iEe -sMT +lSe iEe mEI -jAw -xAW -nkL -xAW -nkL -xAW -ucG +dhW +tBm +uFc +tBm +uFc +tBm +qcl ase fqC -jAn +gtd fqC fqC mEI -uPN -uPg -htz -tjm +tYn +jdp +mYA +cov oeZ -ksr +lmU pRd -cYB +kLJ oeZ -xMc -bBJ -wWj +nVf +tbz +iIr oeZ -oBu -lje -ppX +gdV +nht +ouG jZE -piP +pME inu -xDy +shZ jZE -uNa -tFG -mhG -mhG -tjY -gtz -rAQ -ujM -uNa -lkc -teV -teV -teV -ccu -jir -idA +jIo +xHd +dzV +dzV +mnb +ucV +fIU +uBJ +jIo +tzH +vHz +vHz +vHz +hwy +dXv +wii qeX vwY qeX @@ -97037,7 +97037,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -97050,71 +97050,71 @@ ndl ndl ndl ndl -hsJ -rdS -rdS -mth -hVV -hVV -hVV -hVV -mth -viR -sOJ -hgc -mth -utJ -uPJ -rdS -whY +mrQ +bmA +bmA +tCo +uFJ +uFJ +uFJ +uFJ +tCo +pUu +jAB +wXy +tCo +oRd +ivm +bmA +aAh rNR -nPK +mJZ iYe tBJ rNR -eiq -ygu -sOJ +ikN +gnT +jAB jfB -dCH -hOB +oqY +pZM tLN -rla -lYG -dSe -lYG -lYG +uUS +lOT +tDX +lOT +lOT fND -tcY +vvX mDK -dmm -qen +bhs +ehm fND -eiq -keQ -kna -voC -jIb -jWx -cVw -oXT -lpk -lVz -cRb -oJt -oXT -viR -sOJ -hgc -oXT -nPR -nPR -nPR -nPR -oXT -bPO -lVz -hTG +ikN +lZd +gxh +sjj +tuG +kIJ +oNz +rIW +sDF +bsy +gei +maV +rIW +pUu +jAB +wXy +rIW +sCk +sCk +sCk +sCk +rIW +xej +bsy +gAa ndl ndl ndl @@ -97127,7 +97127,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -97135,99 +97135,99 @@ csy qeX qeX vwY -luI -luI -luI -luI -luI -tPA -eqf -euA -ewn -cvK -kXI -euA -eqf -euA -euA -gmK +xKI +xKI +xKI +xKI +xKI +qcx +vHU +eEL +mSe +aZF +uiO +eEL +vHU +eEL +eEL +qil xiQ -sMk +mkz drD -aAe -sHp +rCP +xgT nsZ -hFz -yjW +dGO +qJA xiQ -vWj -swj +aYa +lzY vQq -jrU -srh +uUt +rYe fmh -ghT +hhY vwU -qHo -sdA -wBZ -qHo +jpN +nBP +rIC +jpN oSJ -fCY -oic -oSq -dby -rIV -vTL -xAW -nkL -xAW -nkL -xAW -nkL -twR -wYP -fuU -wMU -uTG +cWL +bHP +yjn +mCv +vRf +isT +tBm +uFc +tBm +uFc +tBm +uFc +tdC +wtp +lfE +dZx +hwp oSJ -iEs -eKK -oTz -iEs +cQP +rUS +nWJ +cQP oeZ -wCE +hap pRd -qes -dPY +lCs +hkh toK -bBJ -wWj +tbz +iIr oeZ -oBu -lje +gdV +nht ewt -kbu -ygc +aRu +kxB inu -nQj +han jZE -uNa -uNa -uNa -uNa -fut -vNE -uNa -uNa -uNa -mvg -fbn -idA -idA -idA -idA -idA +jIo +jIo +jIo +jIo +imk +ipW +jIo +jIo +jIo +qpi +kWv +wii +wii +wii +wii +wii qeX vwY qeX @@ -97239,7 +97239,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -97252,71 +97252,71 @@ ndl ndl ndl ndl -hsJ -uPJ -uPJ -mth -mth -mth -mth -mth -mth -rIu -gXG -hpM -mth -mth -mth -lcc -mth -mth -hvo +mrQ +ivm +ivm +tCo +tCo +tCo +tCo +tCo +tCo +jIr +avT +jsz +tCo +tCo +tCo +sIX +tCo +tCo +miT iYe tBJ rNR -iJg -rKN -sOJ +rAS +mci +jAB jfB -bLJ -fat -blg -mrD -eME -eME -eME -eME -eME -mTB +gHu +qdo +qrO +oTy +tvy +tvy +tvy +tvy +tvy +wLI mDK ooe -vnX +cUZ fND -sOJ -ygu -sOJ +jAB +gnT +jAB bYw -qIV -ghD -gky -oXT -vTW -oXT -oXT -oXT -oXT -rIu -gXG -csF -oXT -oXT -oXT -oXT -oXT -oXT -lpk -lpk -hTG +kJE +aFg +nkf +rIW +jlQ +rIW +rIW +rIW +rIW +jIr +avT +nrJ +rIW +rIW +rIW +rIW +rIW +rIW +sDF +sDF +gAa ndl ndl ndl @@ -97329,7 +97329,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -97341,91 +97341,91 @@ qeX qeX qeX qeX -luI -xyW -eqf -euA -eui -nIG -eui -euA -eqf -euA -euA -eqf +xKI +dSl +vHU +eEL +nBN +rYF +nBN +eEL +vHU +eEL +eEL +vHU xiQ -kFf +uBU drD -cBG +xje xiQ -tMe -dGM -mqD +qNs +haq +rcB xiQ -qfv -swj -bpI +vOK +lzY +uEf vwU -olK +pGD fmh -vwr +sQB vwU -lTA -kZV -loa -geS -kKd -oMF +rOl +end +eQB +eiQ +aed +rwC wQT wQT -sND -tgu -hld -jpD -jpD -jpD -jpD -jpD -jpD -gbw -wik +mlm +ckC +wXo +iJd +iJd +iJd +iJd +iJd +iJd +amz +hub bJH fir -gbw -nqs -arI -taI -mFW -cuE +amz +uvz +uZi +bpg +tQn +avm oeZ -ksr +lmU pRd -cYB +kLJ oeZ -gCB -bBJ -kUG +vdI +tbz +pfo oeZ -mTP -lje -hPr +xZL +nht +wlL jZE -piP +pME inu -xDy +shZ jZE -xGg -mhG -mhG -mhG -rmo -tFG -bQe -mhG -mhG -rmo -kJG -idA +tKH +dzV +dzV +dzV +npt +xHd +aMR +dzV +dzV +npt +jmx +wii qeX qeX qeX @@ -97441,7 +97441,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -97454,36 +97454,36 @@ ndl ndl ndl ndl -hsJ -uPJ -rdS -xTL -uPJ -rdS -rdS -mlg -izi -hTe -sOJ -xNV -izi -mlg -rdS -rdS -uPJ -xbh +mrQ +ivm +bmA +bDj +ivm +bmA +bmA +rPf +eUb +dLD +jAB +wsh +eUb +rPf +bmA +bmA +ivm +ezY tBJ iYe tBJ vGQ -sOJ -nLe -sOJ +jAB +uUr +jAB jfB -cOZ -rQd -pSf -cst +vBk +jRz +nJm +hXD lNk lNk wlg @@ -97492,33 +97492,33 @@ jeW dnG huJ lNk -kAE +mhl fND -tPa -lOD -sOJ +fcz +fkk +jAB nwJ -aVt +hTO wkj -cVw -fgD -lpk -lpk -uCd -owb -fgD -hMA -sOJ -lyP -fgD -bXA -lVz -vhs -lpk -lpk -lVz -lVz -hTG +oNz +fbQ +sDF +sDF +caC +khe +fbQ +uIP +jAB +sbA +fbQ +asZ +bsy +uRq +sDF +sDF +bsy +bsy +gAa ndl ndl ndl @@ -97531,7 +97531,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -97543,91 +97543,91 @@ qeX qeX qeX qeX -luI -pFY -atf -pxN -jHA -hBb -uUy -lZU -eqf -euA -euA -eqf +xKI +hgi +pti +nbl +sXT +fOz +klo +twQ +vHU +eEL +eEL +vHU xiQ -kFf -iLK -cBG +uBU +oed +xje xiQ -gvF -wQc -yjW +aKK +axx +qJA xiQ -vWj -swj -aWu +aYa +lzY +rBu vwU -olK -emF -vwr +pGD +qwF +sQB vwU -crH -kZV -bFK -wGl +gsX +end +rgn +aCv oSJ -fDS -iSj -iSj -iSj -eni -etk +ozJ +xIH +xIH +xIH +shf +fTC txX txX -nuL +nId txX txX -dNb -fvM -oSq -oSq -mEy -viM +dPZ +xuQ +yjn +yjn +kIk +iMp oSJ -dOQ -uPg -htz -tjm +qMM +jdp +mYA +cov oeZ -ksr -jjf -cYB +lmU +vmp +kLJ oeZ -aLg -bBJ -wWj +hcc +tbz +iIr oeZ -oBu -lje -qoy +gdV +nht +bkR jZE -piP -aoP -xDy +pME +vWf +shZ jZE -gKU -teV -teV -teV -teV -kJG -ppZ -kJG -teV -teV -fjT -idA +pXo +vHz +vHz +vHz +vHz +jmx +hgd +jmx +vHz +vHz +fcL +wii qeX qeX qeX @@ -97643,7 +97643,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -97657,69 +97657,69 @@ ndl ndl ndl uMm -mth -mth -lcc -mth -mth -mth -mth -mth -fVp -yjG -uoO -mth -mth -mth -mth -rdS -mth -buS +tCo +tCo +sIX +tCo +tCo +tCo +tCo +tCo +iRz +wyR +dhs +tCo +tCo +tCo +tCo +bmA +tCo +eci iYe tBJ vGQ -sOJ -rKN -sOJ +jAB +mci +jAB jfB jfB jfB jfB -sNT -ina -ina -jAc -ina -ucp +bAp +mld +mld +dwc +mld +dEV xCP lNk lNk -vus +nqM fND -vFx -lOD -sOJ +rlP +fkk +jAB nwJ -sCg +stE wkj -avu -oXT -vWe -oXT -oXT -oXT -oXT -fVp -yjG -uoO -oXT -oXT -oXT -oXT -oXT -vTW -oXT -oXT +ucK +rIW +mHX +rIW +rIW +rIW +rIW +iRz +wyR +dhs +rIW +rIW +rIW +rIW +rIW +jlQ +rIW +rIW sLa ndl ndl @@ -97733,7 +97733,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -97745,45 +97745,45 @@ qeX qeX qeX qeX -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -bfm -cji +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +xKI +vRD +gsR xiQ xiQ xiQ xiQ xiQ -ceH -wQc -yjW +dvy +axx +qJA xiQ -vWj -swj -vSt +aYa +lzY +fTu vwU vwU vwU vwU vwU -crH -kZV -bFK -ezK +gsX +end +rgn +bvn mEI vmK -fvM -nkL -lbU -eni +xuQ +uFc +uAZ +shf pMu nps nps @@ -97791,45 +97791,45 @@ nps nps nps qii -fvM -oSq -oSq -iyO +xuQ +yjn +yjn +wPw mEI mEI -pfJ -uPg -htz -tjm +ser +jdp +mYA +cov oeZ oeZ oeZ oeZ oeZ -cEg -bBJ -wWj +jAA +tbz +iIr oeZ -oBu -lje -elZ +gdV +nht +mcd jZE jZE jZE jZE jZE -iSn -teV -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA +uQb +vHz +wii +wii +wii +wii +wii +wii +wii +wii +wii +wii qeX qeX qeX @@ -97845,7 +97845,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -97861,62 +97861,62 @@ ndl uMm hyN nXp -adH +qMI daT daT -xKn +wBM daT dfw daT -adH +qMI daT dfw daT daT -mth -rdS -mth +tCo +bmA +tCo cCl tBJ tBJ vGQ -sOJ -rKN -sOJ +jAB +mci +jAB jfB -gML -guP +uxW +giN jfB -tTB -ina -ina -ucp -ina -ucp +srV +mld +mld +dEV +mld +dEV bVq rKM lNk -ohB +oJl fND -ptd -lOD -sOJ +iTs +fkk +jAB nwJ -lSg -wLH -gZN -oXT -qBC -oXT +pyA +pWN +gil +rIW +uiM +rIW rwP rwP vLD rwP -oul +cVO rwP vLD rwP -eYr +kog rwP hCY rwP @@ -97935,7 +97935,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -97956,36 +97956,36 @@ qeX qeX qeX qeX -lmf -dvB -kHf +gaj +tzJ +qbk xiQ -sHN -bJZ -tUP +uEA +dCE +oOv xiQ -pGt -wQc -mqD +gRD +axx +rcB xiQ -qfv -swj -nCv +vOK +lzY +cPy vwU -hiO -loF -dwE +dGi +eco +hiz vwU -crH -kZV -bFK -wGl +gsX +end +rgn +aCv mEI tcJ -fvM -nkL -trd -eni +xuQ +uFc +kPp +shf pMu nps nps @@ -97993,36 +97993,36 @@ nps nps nps qii -fvM -iSj -iSj -iSj -nBK -efl -fiU -uPg -htz -tjm +xuQ +xIH +xIH +xIH +qGk +kCu +fEq +jdp +mYA +cov oeZ -lmR -pqL -fbc +oPz +uzc +tNW oeZ -dyc -uxV -kUG +rDN +jug +pfo oeZ -mTP -lje -gPU +xZL +nht +ceG jZE -vwy -aKO -fvN +eYN +iOW +qrE jZE -oDO -waV -dzH +hBG +jpM +xbr qeX qeX qeX @@ -98047,7 +98047,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -98061,69 +98061,69 @@ ndl ndl ndl tKS -psF +vhj daT esJ pIl mna -tFm +hYa pIl pIl pIl -tFm +hYa mna pIl wOZ daT -mth -otU -mth +tCo +gLS +tCo nDr nDr nDr rNR -sOJ -nLe -sOJ +jAB +uUr +jAB jfB -fHX -xEB -ydH +bKZ +coc +jXU mEh -wYF -ina -ucp -ina -ucp +wUP +mld +dEV +mld +dEV oIg dEm lNk -kAE +mhl fND -iyx -lOD -sOJ +dAu +fkk +jAB bYw nwJ nwJ nwJ -oXT -uSy -oXT +rIW +eom +rIW rwP opu jEl tUH -wek +mpw jEl jEl jEl -wek +mpw tUH jEl hDn rwP -mBB +xAC jWf ndl ndl @@ -98137,7 +98137,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -98158,73 +98158,73 @@ qeX qeX qeX qeX -lmf -sNm -kHf +gaj +jRQ +qbk xiQ -sHN +uEA drD -tUP +oOv xiQ -bmE -wQc -yjW +jCr +axx +qJA xiQ -vWj -swj -qVy +aYa +lzY +gnS vwU -hiO +dGi blh -dwE +hiz vwU -oXt -kZV -bFK -wGl +kaj +end +rgn +aCv mEI nOE uXJ -nkL -oRB -eni -nNk +uFc +vDc +shf +ayl nps nps vxP nps nps -pap -fvM -guz -guz -guz +nrH +xuQ +njo +njo +njo pTC -eMR -tjm -uPg -htz -tjm +gAy +cov +jdp +mYA +cov oeZ -lmR +oPz pRd -fbc +tNW oeZ -xMc -omw -wWj +nVf +uwP +iIr oeZ -oBu -lje -eDm +gdV +nht +obW jZE -vwy +eYN inu -fvN +qrE jZE -vpM -xbP -dzH +bTP +mHi +xbr qeX qeX qeX @@ -98249,7 +98249,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -98263,69 +98263,69 @@ ndl ndl ndl tKS -jIk +sLk daT aNq daT -adH -adH -adH -adH -adH -adH -adH +qMI +qMI +qMI +qMI +qMI +qMI +qMI ykw oIO dxn -mth -lcc -mth -ulJ -ulJ -ulJ -nNw -sOJ -nLe -sOJ +tCo +sIX +tCo +cdR +cdR +cdR +pwz +jAB +uUr +jAB jfB -hRg -hOT +wcz +uod jfB -enR -rsG -rsG -gsh -hAK -lbl -dqs -lBG -lbl -clu +gNu +xgp +xgp +naP +jUG +qRq +fGG +ntM +qRq +tEu fND -iJg -ygu -sOJ -nNw -ulJ -ulJ -ulJ -oXT -vTW -oXT +rAS +gnT +jAB +pwz +cdR +cdR +cdR +rIW +jlQ +rIW kRO hNB rwP -oul -oul -oul -oul -oul -oul -oul +cVO +cVO +cVO +cVO +cVO +cVO +cVO cMV ykN rwP -cgF +iyT jWf ndl ndl @@ -98339,7 +98339,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -98360,36 +98360,36 @@ qeX qeX qeX qeX -lmf -dvB -kHf +gaj +tzJ +qbk xiQ -bct +iSb drD -aAe -tTe +rCP +wgj nsZ -wQc -yjW +axx +qJA xiQ -vWj -swj +aYa +lzY vQq -qEX -srh +qnj +rYe blh -jCV +wDs vwU -qHo -sdA -wBZ -qHo +jpN +nBP +rIC +jpN mEI cff -fvM -nkL -gfN -eni +xuQ +uFc +fUL +shf pMu nps nps @@ -98397,36 +98397,36 @@ nps nps nps qii -fvM -obB -hok -sQL -vYB -kKa -dcn -eKK -oTz -iEs +xuQ +nUX +iNK +jKj +pnE +eCJ +dIh +rUS +nWJ +cQP oeZ -xLz +iYp pRd -qes -jNJ +lCs +bRp toK -omw -wWj +uwP +iIr oeZ -oBu -lje +gdV +nht ewt -lCN -ygc +fjs +kxB inu -rNm +lpe jZE -ffr -ehX -dzH +aYz +gXu +xbr qeX qeX qeX @@ -98451,7 +98451,7 @@ vwY qeX qeX qeX -tag +klp ndl ndl ndl @@ -98466,29 +98466,29 @@ ndl ndl uMm hyN -rPl -aYB -adH -adH -jwm -mRw -mRw -mRw -vZj -adH -adH -aYB -adH -uoO -ulJ -rvF -aPX -aPX -nNL -vvm -pHq -ohz -wtx +jTU +miD +qMI +qMI +xAH +lDX +lDX +lDX +emz +qMI +qMI +miD +qMI +dhs +cdR +haX +sJL +sJL +qVU +uRg +duD +lMZ +aYu ury ury ury @@ -98504,29 +98504,29 @@ xrV ury ury ury -pHq -qJn -dCo -vvm -xts -aPX -aPX -weJ -yjG -fVp -oul -skA -oul -oul -fDk -lfD -lfD -lfD -jeO -oul -oul -skA -pXU +duD +oyq +juC +uRg +gnD +sJL +sJL +vXM +wyR +iRz +cVO +yaI +cVO +cVO +fLW +elF +elF +elF +ymb +cVO +cVO +yaI +jFI nRy sLa ndl @@ -98541,7 +98541,7 @@ ndl ndl ndl ndl -tEF +rcq vwY qeX qeX @@ -98562,36 +98562,36 @@ qeX qeX qeX qeX -lmf -kHf -dvB +gaj +qbk +tzJ xiQ -sHN -iLK -tUP +uEA +oed +oOv xiQ -xNK -wQc -mqD +bmY +axx +rcB xiQ -qfv -lqP -brl +vOK +sjq +lKF vwU -hiO -emF -dwE +dGi +qwF +hiz vwU -crH -kZV -bFK -onh +gsX +end +rgn +kAW mEI euX -fvM -nkL -atZ -eni +xuQ +uFc +rEX +shf pMu nps nps @@ -98599,36 +98599,36 @@ nps nps nps qii -fvM -mtK +xuQ +lXk nLf nLf nLf nLf -qMQ -uPg -htz -tjm +mUf +jdp +mYA +cov oeZ -lmR -jjf -fbc +oPz +vmp +tNW oeZ -lCy -omw -kUG +lSI +uwP +pfo oeZ -mTP -iiG -lZI +xZL +xgU +uzn jZE -vwy -aoP -fvN +eYN +vWf +qrE jZE -sJA -rew -dzH +iLa +hqN +xbr qeX qeX qeX @@ -98653,11 +98653,11 @@ vwY qeX qeX qeX -kgF -gej -gej -gej -gej +jXd +ucA +ucA +ucA +ucA ndl ndl ndl @@ -98668,67 +98668,67 @@ ndl ndl uMm hyN -adH -aYB -adH -guI -dRw +qMI +miD +qMI +uEC +fiy kPO daT pSh -xxu -guI -adH -oae -tFm -jDC -iid -rHO -pPn -pPn -rHO -viu -mLG -pPn -xQs +xrw +uEC +qMI +trx +hYa +rNx +mRA +fdR +hRI +hRI +fdR +vNh +pxG +hRI +vNL xrV xrV xrV xrV -kBz -gjX -vKM -aJO -fRk -gjX -hAL +wLA +hkp +sOg +pvF +egq +hkp +hrg xrV xrV xrV xrV -xtR -vPL -psM -viu -jDC -pPn -pPn -jDC -cnM -rHO -wek -mZU -oul -npL -rHL +aLT +ajh +huU +vNh +rNx +hRI +hRI +rNx +pxx +fdR +mpw +nbk +cVO +gGW +qjh uHW rwP pee -fnw -npL -oul -skA -oul +jpZ +gGW +cVO +yaI +cVO nRy sLa ndl @@ -98739,11 +98739,11 @@ ndl ndl ndl ndl -gej -gej -gej -gej -gjc +ucA +ucA +ucA +ucA +rvw vwY qeX qeX @@ -98764,73 +98764,73 @@ qeX qeX qeX qeX -lmf -aru -oDZ +gaj +whT +iEb xiQ xiQ xiQ xiQ xiQ -gvF -wQc -yjW +aKK +axx +qJA xiQ -vWj -swj -bpI +aYa +lzY +uEf vwU vwU vwU vwU vwU -hFp -nJb -oav -hFp +nok +wHh +bYh +nok mEI -vnk -sQL -sQL -sQL -exr -klD +gZe +jKj +jKj +jKj +pgk +xFm dsz dsz -qcQ +jkf dsz dsz -isE -fvM -oSq -rhu -haP -cms +pIQ +xuQ +yjn +eWT +qXM +nLh nLf -iDP -mEi -wJv -iDP +klQ +kKI +wst +klQ oeZ oeZ oeZ oeZ oeZ -nVh -tYK -wWj +rsN +inz +iIr oeZ -oBu -lje -xEt +gdV +nht +eAp jZE jZE jZE jZE jZE -wco -ehX -dzH +lWX +gXu +xbr qeX qeX qeX @@ -98860,87 +98860,87 @@ qeX qeX mOJ qeX -kgF -gej -gej -gej -gej -gej -gej -gej +jXd +ucA +ucA +ucA +ucA +ucA +ucA +ucA tKS -lTe +tyK daT aNq daT qgg -jcx +lxc kPO -pLq +mKs kPO -djP +quG sCl daT aNq daT -xts -ulJ -iMm -yjG -yjG -fVp -vvm -qAD -wYC -sty +gnD +cdR +wKz +wyR +wyR +iRz +uRg +dSI +oil +gyc xrV -xMq -itr +tTf +eWV xrV -aJt -ecz -jyI -ecz -uTK -ecz -tfp +rJS +xkl +oGw +xkl +dWq +xkl +wiG xrV -jYN -rJL +lyg +joG xrV -koI -vXl -fyB -vvm -uoO -yjG -yjG -pGS -cQE -nNL +roc +aPd +tfr +uRg +dhs +wyR +wyR +rEG +bQq +qVU rwP hNB rwP uMj -rgt +riy apo -gEW +kQU pee -fQz +ilB kUb rwP hNB rwP -nsw +knR jWf -gej -gej -gej -gej -gej -gej -gej -gjc +ucA +ucA +ucA +ucA +ucA +ucA +ucA +rvw qeX qeX qeX @@ -98966,73 +98966,73 @@ qeX qeX qeX qeX -lmf -kHf -wnC +gaj +qbk +rIm xiQ -jwO -mbl +sQK +mtX xiQ -kQx -gyG -mxL -yjW +dTi +fTy +fzg +qJA xiQ -vWj -swj -qCI -loF +aYa +lzY +mXh +eco vwU -ntE -fHd +hMI +hYR vwU -crH -kZV -bFK -wGl +gsX +end +rgn +aCv mEI -pvg +slu sco sco -tgj -mCC -bqQ -mZm -bqQ -aQy -eDM -rYK -jxG -nkL -oSq -rhu -bhr -kwB +ldw +soY +phd +afm +phd +pyw +jGF +gXx +fqh +uFc +yjn +eWT +woD +gAS nLf -kcm -uPg -dua -vlr +evp +jdp +dPs +fyr oeZ -dvd -hZn +cRI +fYg oeZ -pqL -xMc -omw -wWj +uzc +nVf +uwP +iIr oeZ -oBu -lje -dFp -aKO +gdV +nht +ykR +iOW jZE -vWr -cUP +lPh +woh jZE -xvI -ehX -dzH +lwj +gXu +xbr qeX qeX qeX @@ -99071,69 +99071,69 @@ mOJ mOJ mOJ tKS -lTq +kfx daT aNq daT cao -kum +nOz kPO -rGN +rrI kPO -hWD +xwa wVA daT aNq dxn -ePK -ghE -ePK -tnb -ulJ -oFS -nNw -gXG -gXG -uyC +jJF +raa +jJF +lFG +cdR +uKW +pwz +avT +avT +wIw xrV -qmd +izL bEJ xrV -erT -ecz -mMN -ecz -cvj -ecz -xtF +fiI +xkl +iox +xkl +kyL +xkl +dcg xrV kwT -vOG +xwD xrV -gXG -bvm -gXG -nNw -htk -ulJ -kps -tTm -gub -tTm +avT +qfi +avT +pwz +vhJ +cdR +rlA +xXf +aWh +xXf kRO hNB rwP aWk -oFz +gJl pee -vFy +hfV uHW -ygy +cLH jfO rwP hNB rwP -maT +sbm jWf mOJ qeX @@ -99168,73 +99168,73 @@ qeX qeX qeX qeX -lmf -kHf -dvB +gaj +qbk +tzJ xiQ -xFF +obA drD -eEv +cso dtJ nsZ -wQc -mqD +axx +rcB xiQ -qfv -swj +vOK +lzY vQq fmh -kOA +qzP blh -vhu +djk vwU -aej -sdA -wBZ -qHo +uFW +nBP +rIC +jpN mEI fqC fqC -sDZ -grA +opt +fXL fqC mEI mEI -aBw -asQ +eBO +gOE mEI mEI mEI -lbf -lbf +sHq +sHq nLf nLf nLf nLf -iEs -eKK -iEs -oTz +cQP +rUS +cQP +nWJ oeZ -drj +fFc pRd -iTf +elM skL toK -omw -kUG +uwP +pfo oeZ -mTP -lje +xZL +nht ewt quY -ogD +jIC inu -kPs +klO jZE -pHo -fCh -dzH +cqF +hvk +xbr qeX qeX qeX @@ -99274,67 +99274,67 @@ qeX mOJ uMm hyN -nhi -aYB -adH -guI -dRw +mLY +miD +qMI +uEC +fiy kPO daT eAJ -xxu -guI -adH -aYB -hgN -ePK -nyw +xrw +uEC +qMI +miD +afk +jJF +elD jlC dBK dBK hxK jlC -ugf -wqO -rbg +dwm +bpk +tvA xrV -xQN +bic wGz xrV -qpL -ecz -lUQ -ecz -xdY -ecz -oHe +woM +xkl +iml +xkl +rJc +xkl +snq tcn bEJ -pLc +uOW xrV -ugf -gRt -ugf +dwm +vxD +dwm jlC hxK dBK hxK jlC -hQd -tTm -npz -skA -oul -npL -rHL +nPy +xXf +rdG +yaI +cVO +gGW +qjh pee rwP dbo -fnw -npL -oul -skA -ndb +jpZ +gGW +cVO +yaI +pTb nRy sLa mOJ @@ -99370,73 +99370,73 @@ qeX qeX qeX qeX -lmf -xLt -dvB +gaj +iTK +tzJ xiQ xiQ xiQ xiQ gBZ dlG -wQc -yjW +axx +qJA xiQ -vWj -swj +aYa +lzY gFp dtb vwU vwU vwU vwU -wBz -kZV -bFK -wGl +eXO +end +rgn +aCv mEI -lca -tXS -oSq -omc -kZh +ulf +nhj +yjn +mCs +nqw lFg -jbJ -cCa -mqV -lPR -nwY +rib +srP +mpP +lQc +lis mEI -hBO -jdy -ckw -byz -cuI +vMm +xPJ +uZv +qXY +xtZ mEI -bem -uPg -uDx -laP +mOB +jdp +azY +wNV oeZ oeZ oeZ oeZ ryz jbl -omw -wWj +uwP +iIr oeZ -oBu -lje +gdV +nht uJs qFK jZE jZE jZE jZE -xvI -waV -dzH +lwj +jpM +xbr qeX qeX qeX @@ -99476,67 +99476,67 @@ qeX mOJ uMm hyN -caf -aYB -adH -adH -ltj -kgr -jFA -jFA -pDA -adH -adH -aYB -adH -ePK -rdv +bXQ +miD +qMI +qMI +hSL +bPP +rKL +rKL +eNQ +qMI +qMI +miD +qMI +jJF +jAT jlC wzy fpM jxB jlC -tim -fMB -aeg +oHp +blR +uzi xrV -uvk +kaD bEJ xrV -wWd -ecz -ecz -ecz -ecz -ecz -ecz -clh +lBo +xkl +xkl +xkl +xkl +xkl +xkl +wTk bEJ -vOG +xwD xrV -tim -rKN -kqp +oHp +mci +fCH jlC cST fpM akF jlC -gRf -tTm -oul -skA -oul -oul -xWe -nPY -nPY -nPY -gKD -oul -oul -skA -gCl +oaN +xXf +cVO +yaI +cVO +cVO +kaR +qvC +qvC +qvC +jfN +cVO +cVO +yaI +uaZ nRy sLa mOJ @@ -99572,73 +99572,73 @@ qeX qeX qeX qeX -lmf -kHf -dvB +gaj +qbk +tzJ xiQ -xFF +obA drD -uUq +qzO dtJ nsZ -wQc -yjW +axx +qJA xiQ -vWj -swj +aYa +lzY vQq fmh -nyb +oDt blh -vhu +djk vwU -crH -kZV -bFK -wGl +gsX +end +rgn +aCv mEI -qHi +bhR nNg cXG dGA -pGs +heu mEI -lGi -ieH +omR +cxD qme rUA -ixc -niK -fTM +lPS +hag +atM nVG fIC jdV -hTs +rFY qjy -dOQ -uPg -uDx -laP +qMM +jdp +azY +wNV oeZ -drj +fFc pRd -qzA +aNO skL toK -omw -wWj +uwP +iIr oeZ -oBu -lje +gdV +nht ewt quY -tlB +gEH jms -kPs +klO jZE -oTI -rnf -dzH +mvT +rxw +xbr qeX qeX qeX @@ -99677,69 +99677,69 @@ qeX qeX mOJ tKS -lNe +xoA daT xqY aBf -adH -adH -adH -adH -adH -adH -adH +qMI +qMI +qMI +qMI +qMI +qMI +qMI daT aNq daT -ePK -rdv +jJF +jAT jlC fpM fpM fpM jlC -tim -fMB -aeg +oHp +blR +uzi xrV -wVu +vZS bEJ xrV -mqh -ecz -uiU -ecz -xsJ -ecz -isK +oIM +xkl +xfm +xkl +vzX +xkl +bYl tcn bEJ -ogu +jfJ xrV -tim -rKN -kqp +oHp +mci +fCH jlC fpM iNc fpM jlC -raV -tTm +ney +xXf rwP aaD sQM -oul -oul -oul -oul -oul -oul -oul +cVO +cVO +cVO +cVO +cVO +cVO +cVO rwP hNB rwP -fXe +mxu jWf mOJ qeX @@ -99774,73 +99774,73 @@ qeX qeX qeX qeX -lmf -dvB -kHf +gaj +tzJ +qbk xiQ -uPI -lDY +aSg +iyE xiQ -oNk -xnH -wQc -pOd +vvE +ikr +axx +pnX xiQ -buR -swj -kon -qIM +pHa +lzY +kfg +lSV vwU -iIB -orM +iNu +oNG vwU -crH -lPV -xtn -wGl +gsX +unX +rWv +aCv mEI -jQh +jeH hAq ijz mCw -hjC +tQv mEI -hVf +rwz frW -bPB -unC -eQG -oSq -fTM +mYK +nEG +noQ +yjn +atM bvw aXJ lee -kuR +xvF qjy -dOQ -tqK -gYv -laP +qMM +aVH +oog +wNV oeZ -dii -twx +hSh +xnh oeZ -wun -eWu -omw -aLR +dMn +eHF +uwP +yjr oeZ -dzo -lje -jeU -rli +bXs +nht +hUR +era jZE -fCa -wuv +ubu +bgP jZE -wco -ehX -dzH +lWX +gXu +xbr qeX qeX qeX @@ -99879,33 +99879,33 @@ qeX qeX mOJ tKS -dzx +eqn daT vWB pIl mna -tFm +hYa pIl pIl pIl -tFm +hYa mna pIl pfD daT -ePK -hOb +jJF +uyY jlC jlC jlC jlC jlC -isS -fMB -aeg +cSj +blR +uzi xrV ury -dMp +sTS xrV xrV tcn @@ -99915,33 +99915,33 @@ tcn tcn xrV xrV -jVv +vae ury xrV -tim -rKN -kqp +oHp +mci +fCH jlC jlC jlC jlC jlC -atl -tTm +kXs +xXf rwP sub jEl tUH -wek +mpw jEl jEl jEl -wek +mpw tUH jEl cvH rwP -nIA +lio jWf mOJ qeX @@ -99976,73 +99976,73 @@ qeX qeX qeX qeX -lmf -sNm -kHf +gaj +jRQ +qbk xiQ xiQ xiQ xiQ -gqK -gug -gOC +lip +nuu +juk xiQ xiQ vwU -lwx -sxr -aut +fvB +wmI +jhv vwU vwU vwU vwU -crH -iAN -doP -cFT +gsX +ldJ +uQG +unt mEI -xpV +cJp nNg xxf gPK -slR +bNh mEI -bjW +cNn dze sco sco fRW mEI -mpv -iVB -dDJ -bZi -fro +jAG +vmV +rQo +beC +koN uEt -hFl -cgT -uPg -laP +vsu +xBe +jdp +wNV oeZ oeZ oeZ oeZ -ghV -nBO -cdX +tvq +phu +xzK oeZ oeZ jZE -mhZ -tmh -uzC +apN +aKT +bzh jZE jZE jZE jZE -cFg -sBX -dzH +gjM +lBB +xbr qeX qeX qeX @@ -100086,59 +100086,59 @@ daT daT daT daT -adH +qMI daT daT daT -adH +qMI yax daT -adH +qMI thQ -ePK -rdv -xxm +jJF +jAT +kPf jlC jlC jlC jlC -tim -fMB -aeg +oHp +blR +uzi xrV -suP +ddr bEJ ury -wHp -pDl -upO -nzm -vZQ -osM -wgU +dvC +mKD +mjX +ktG +gcP +pnl +sJj ury krD -sYN +sAj xrV -tim -rKN -jGS +oHp +mci +moq aBl aBl aBl aBl aBl -gRf -tTm +oaN +xXf rwP uIQ rwP rwP -lyZ +srN rwP rwP rwP -oul +cVO rwP rwP rwP @@ -100174,81 +100174,81 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -dvB -dvB +gaj +gaj +gaj +gaj +gaj +tzJ +tzJ xiQ -cVX -kfl -dsT -eEq -csi -aQr -tVB +qLP +fhP +aIm +oBn +lsF +rSS +rkP quk -ggJ -rwo -uAg -qNl -loF -crf -cvC +rwX +oiP +szI +owR +eco +bIi +cOT hCO -crH -iAN -xjZ -wlT +gsX +ldJ +lcO +wUG mEI -eYM -lRJ -cqH -nTr -jYE +ycL +pbG +gqy +lJu +sxy mEI -ggN -oyP -hgJ -jIu -qFH +qjP +dsr +ajV +uaU +qqB mEI mEI -jTP -jTP +feR +feR mEI mEI mEI -hMV -sbS -uPg -laP +siP +vGO +jdp +wNV oAQ -fZg -vjh -hBP -iOH -eBs -sRc -tmE +sUP +rZe +mfB +byw +pVE +huO +stj oAQ -oBi -dKd -dNr -bRN -fJE -fJE -pBX +aBX +ivC +pvv +fQd +aer +aer +mpM jZE -xvI -ehX -dzH -dzH -dzH -dzH -dzH +lwj +gXu +xbr +xbr +xbr +xbr +xbr qeX qeX qeX @@ -100286,63 +100286,63 @@ uMm uMm uMm uMm -adH +qMI kPO -adH +qMI kPO -adH -ePK -ePK -ePK -ePK -ghE -ePK -ePK -rdv -cbV -ePK -ePK -ePK -ePK -tim -fMB -aeg +qMI +jJF +jJF +jJF +jJF +raa +jJF +jJF +jAT +nRU +jJF +jJF +jJF +jJF +oHp +blR +uzi xrV -lFJ +qet bEJ -vxd +vpz bEJ bEJ bEJ -vYZ +bzy rfP rfP fgM -kTf +bSk bEJ -auM +fnu xrV -tim -uST -bDN +oHp +nDS +ayz aBl -dNe -umq -imx +aJf +orx +ncc aBl -gRf -tTm -tTm -tTm -tTm -iUR -tTm -tTm -oul +oaN +xXf +xXf +xXf +xXf +qtt +xXf +xXf +cVO pee -oul +cVO pee -oul +cVO sLa sLa sLa @@ -100376,33 +100376,33 @@ qeX qeX qeX qeX -lmf -oUq -toO -hyY -uPb -kHf -dvB -nba +gaj +tJQ +pIh +bwp +tOG +qbk +tzJ +ayp hLY suE suE -pOw -cex -oYm -tVB +sLf +llq +pZZ +rkP quk blh -hmk -qML -qlV +uua +ouT +upc ixG -jaS -cvC +dBV +cOT hCO -crH -pQz -xRU +gsX +qMK +bRZ mEI mEI mEI @@ -100412,45 +100412,45 @@ mEI mEI mEI mEI -ygW +nzd mEI mEI mEI mEI -eGB -jpo -eGB -eGB -jpo +rWO +ktj +rWO +rWO +ktj mEI mEI -qOL -peL -laP +pOu +ggp +wNV oAQ -pYy -vZs +cNu +fDu gPN -qby -aYM -kOw +kzx +kgC +asK pRd oAQ -aLj -twP -tSp -ixv +jdX +iJb +cQh +trA mMy mMy pcc -reB -whp -waV -aMs -ncW -fSq -bsI -dzH +cZQ +eSV +jpM +wzu +iGs +hGj +dDk +xbr qeX qeX qeX @@ -100484,71 +100484,71 @@ qeX qeX qeX qeX -tag +klp ndl ndl uMm -adH +qMI kPO -adH +qMI kPO -adH -ePK -wEe -jpL -ePK -kww -ePK -xcm -rdv -hOb -ePK -hOb -hOb -ePK -jok -dFx -aeg +qMI +jJF +kxC +wxc +jJF +mdO +jJF +hXL +jAT +uyY +jJF +uyY +uyY +jJF +ixC +uLA +uzi xrV xrV xrV xrV -ooJ -ooJ -sAz -mlG -xyn -ooJ -ooJ +lVj +lVj +mdz +cva +gJh +lVj +lVj xrV xrV xrV xrV -xNg -rKN -kqp +vKU +mci +fCH aBl -pev +eJH kkV -qfq +vCn aBl -gRf -eAK -tTm -ptc -sMM -gxI -nwb -tTm -oul +oaN +dwA +xXf +skR +tba +eyq +wFN +xXf +cVO pee -oul +cVO pee -oul +cVO sLa ndl ndl -tEF +rcq qeX qeX qeX @@ -100578,81 +100578,81 @@ qeX qeX qeX qeX -lmf -xqc -dvB -dvB -dvB -dvB -dvB +gaj +gpt +tzJ +tzJ +tzJ +tzJ +tzJ xiQ -mFf -rBM -rBM -eba -gvF -wQc -tVB +nMO +gCc +gCc +bbB +aKK +axx +rkP quk blh -rYo +vmS vQq lXa duK -jaS -cvC +dBV +cOT hCO -crH -iAN -oSz -aTz -dXA -acm -gLl -acm -acm -fQU -mGT -mGT -mGT -abk -acm -acm -mGT -jBv -acm -hQK -mGT -acm -acm -aTz -tcu -uPg -laP +gsX +ldJ +lfq +hKG +okz +tSS +wrR +tSS +tSS +jQG +sOG +sOG +sOG +tgh +tSS +tSS +sOG +kRI +tSS +apy +sOG +tSS +tSS +hKG +lhy +jdp +wNV oAQ -pYy -vZs +cNu +fDu ybK kim toK -ylG +tRX pRd oAQ -aLj -lje -xgX -wEf -tuX -tuX -nVH +jdX +nht +nNK +sZc +xCx +xCx +xFf jZE -ehX -ehX -ehX -ehX -ehX -waV -dzH +gXu +gXu +gXu +gXu +gXu +jpM +xbr qeX qeX qeX @@ -100686,71 +100686,71 @@ qeX qeX qeX qeX -tag +klp ndl ndl uMm -adH -oFx -exe -adH -bDr -ePK -rdv -xRJ -ePK -dUp -ePK -xGG -fsN -hnX -rEt -fsN -fsN -rEt -kna -dFx -aeg +qMI +eSP +wjc +qMI +pmh +jJF +jAT +wnq +jJF +wUL +jJF +ojW +fDd +blI +sdy +fDd +fDd +sdy +gxh +uLA +uzi ury -cwF -iLU +iRk +vkK xrV xrV xrV xrV -bqr +lGQ xrV xrV xrV xrV -qcj -fCZ +arV +oST ury -tim -uST -kna +oHp +nDS +gxh uoV -sQx +wld mry -lum +hlz aBl -mKk -iAa -tTm -hAz -lRl -gxI -iWt -tTm -oul -aXx -rLy -oul -lyZ +fvc +sYI +xXf +jUN +opq +eyq +hnS +xXf +cVO +lrA +lkS +cVO +srN sLa ndl ndl -tEF +rcq qeX qeX qeX @@ -100780,81 +100780,81 @@ qeX qeX qeX qeX -lmf -hKX -dvB +gaj +mCb +tzJ xiQ xiQ xiQ xiQ xiQ xiQ -xcM -kSn -bcn -tKq -eQg +xQQ +nMz +xND +ifs +vQC xiQ xiQ -aTg -rYo -vXW +wdc +vmS +vHC wbN wbN -jaS +dBV vwU vwU -qHo -jJR -sdD -gfa -gfa -jyZ -gfa -gfa -gfa -gfa +jpN +vWU +xDB +xYO +xYO +hvV +xYO +xYO +xYO +xYO gwb gwb gwb -dUL +xUx gwb gwb gwb -gfa -gfa -gfa -jyZ -gfa -gfa -gfa -uqg -eKK -aiF +xYO +xYO +xYO +hvV +xYO +xYO +xYO +cfT +rUS +dhb oeZ oeZ -iSS +lCV aNE aNE toK -ylG -pwo +tRX +usi oeZ jZE -tzs -xBB -mCF -vOO -aor +waj +rOe +wZg +krk +eJy jZE jZE jZE jZE jZE jZE -ehX -fCh -dzH +gXu +hvk +xbr qeX qeX qeX @@ -100888,71 +100888,71 @@ qeX qeX qeX qeX -tag +klp ndl ndl -dFv -ePK -ePK -ePK -ghE -ePK -ePK -jnv -xRJ -ePK -xrG -ePK -qOt -rdv -eqm -ePK -hOb -hOb -ePK -wBb -fMB -gGA -iwv -hVg -wVk -gpH -gpH -gpH -cHb +swV +jJF +jJF +jJF +raa +jJF +jJF +hlP +wnq +jJF +bad +jJF +joW +jAT +duy +jJF +uyY +uyY +jJF +jjz +blR +bRb +sEt +hnp +aMA +pcj +pcj +pcj +nCs fRY -eIa -gpH -gpH -gpH -wVk -bNT -xOp -xtR -rKN -ydF +tDM +pcj +pcj +pcj +aMA +fMY +wAn +aLT +mci +bvP aBl -rrz +pUr pIv -lVC +ybT aBl -gxI -kCm -tTm -rOD -lRl -gxI -aJy -tTm -tTm -tTm -tTm -iUR -tTm -izO +eyq +woX +xXf +ctf +opq +eyq +wkV +xXf +xXf +xXf +xXf +qtt +xXf +fwp ndl ndl -gjc +rvw qeX qeX qeX @@ -100982,81 +100982,81 @@ qeX qeX qeX qeX -lmf -kHf -dvB +gaj +qbk +tzJ xiQ -bJO -rXr -egC -rXr -dsT -eEq -xID +pgs +cdM +iwc +cdM +aIm +oBn +teq raj mDx -cKQ -gOf +cyQ +elm xiQ vwU -vQQ -pcU +gbe +sps lkL oAl -jaS -rNk +dBV +sPx vwU -crH -rnz -crH +gsX +gGp +gsX rdo -hpP +vph hpm rdo nlK -kbm +koU hpm hmy -feV -iHg +qID +pMh hJA -aid -dKo +xDT +lFR gwb aoN -kbm +koU rBb lrq htD -kbm +koU ojs -tjm -uPg -laP +cov +jdp +wNV oeZ -mUr -vZs +oTk +fDu gPN gPN -wpI -hET +mrI +ezl oeZ oeZ -awk -lje +pbz +nht ocu jPn -lyd -bRN -fTk -vzm -wIG -vzm -fJE +nXA +fQd +nEJ +tVL +jcI +tVL +aer jZE -waV -waV -dzH +jpM +jpM +xbr qeX qeX qeX @@ -101091,32 +101091,32 @@ qeX qeX qeX qeX -tag +klp ndl -dFv -vLX -iWm -ePK -xrG -cfN -ePK -yev -xRJ -ePK -kww -ePK -pWi -rdv -cbV -ePK -hOb -cbV -ePK -ygP -jaz -qEp -nhZ -jHj +swV +pjH +txp +jJF +bad +gjy +jJF +goX +wnq +jJF +mdO +jJF +gxr +jAT +nRU +jJF +uyY +nRU +jJF +pnc +xST +jom +vDk +qLl qnK qnK qnK @@ -101128,32 +101128,32 @@ qnK qnK qnK qnK -iZP -rhg -rlC -jZU -vKY +txk +kMR +dle +fYO +vJs aBl -xvq -vrA -hvh +kMk +kUO +cTC aBl -gxI -lRl -xGl -gxI -gxI -gxI -lRl -lRl -eZU -lRl -lRl -gxI -lRl -izO +eyq +opq +xoU +eyq +eyq +eyq +opq +opq +fpK +opq +opq +eyq +opq +fwp ndl -tEF +rcq qeX qeX qeX @@ -101184,81 +101184,81 @@ qeX qeX qeX qeX -lmf -kHf -kHf +gaj +qbk +qbk xiQ drD drD -aAe +rCP drD drD -tzW -xID +dAS +teq nZA gBf -cKQ -mHC +cyQ +khS xiQ -ggJ -rYo +rwX +vmS lco wry rUX -jaS -brs +dBV +uwT vwU -crH -rnz -crH +gsX +gGp +gsX rdo -rja +ajv lCH rdo hpm -wmn +wHa hpm pHL -sqv -ecZ +qGU +qKb plz eON ejU pHL lrq -wmn +wHa gtI lrq gtI -wmn +wHa ojs -tjm -uPg -laP +cov +jdp +wNV oeZ -sFf -vZs +niS +fDu myC ddZ qjN -ylG -dOY +tRX +tzu oeZ -xmT -lje +rTJ +nht uyU tsg -lyd -xjn +nXA +xOL inu inu -ygc +kxB inu inu jZE -waV -nMf -dzH +jpM +obz +xbr qeX qeX qeX @@ -101293,32 +101293,32 @@ qeX qeX qeX qeX -tag +klp ndl -dFv -cjz -pnv -ePK -ahJ -cfN -ePK -ghE -ePK -ePK -dUp -ePK -hOb -rdv -hOb -ePK -tFL -uWG -ePK -qAD -eIw -hIG -xOp -qwN +swV +oIU +kuI +jJF +skZ +gjy +jJF +raa +jJF +jJF +wUL +jJF +uyY +jAT +uyY +jJF +rqV +auR +jJF +dSI +jtO +bNu +wAn +qPX fhM fhM fnr @@ -101330,32 +101330,32 @@ fnr fnr fhM fhM -iXp -xOp -qAD -eIw -jRT +vfD +wAn +dSI +jtO +jIE aBl aBl aBl aBl aBl -gxI -nAy -tTm -tbN -lRl -gSg -fjd -wgy -tjx -tjx -tjx -vmr -lRl -izO +eyq +wZo +xXf +soC +opq +uiI +iUd +gtj +diH +diH +diH +tuU +opq +fwp ndl -tEF +rcq qeX qeX qeX @@ -101386,81 +101386,81 @@ qeX qeX qeX qeX -lmf -oQE -kHf +gaj +kFw +qbk xiQ drD drD -aAe +rCP drD drD -tzW -xID -oxW +dAS +teq +tts dGC -cKQ +cyQ xiQ xiQ blh -rYo +vmS sul tZq -dWf -jaS +osf +dBV vwU vwU -sAw -rnz -crH +diK +gGp +gsX rdo -qnY +moQ hpm rdo hpm -mYv +geC hpm pHL -weS -ecZ +eUO +qKb fQp sYw mcI pHL lrq -sKk +uyi gtI lrq gtI -sKk +uyi ojs -tjm -uPg -laP +cov +jdp +wNV oeZ oeZ -fWS -rHM -pPW +wcY +sxn +iUr rwJ -ylG +tRX pRd oeZ jZE -pVQ +hFr nkS -ijf -lyd -xjn +gfW +nXA +xOL inu inu -ygc +kxB inu inu jZE -waV -kMi -dzH +jpM +tYM +xbr qeX qeX qeX @@ -101495,32 +101495,32 @@ qeX qeX qeX qeX -tag +klp ndl -dFv -iWm -avz -oSI -rdv -hOb -atB -hOb -bnK -rdv -rdv -oSI -rdv -rdv -hOb -ePK -ePK -ePK -ePK -gXG -cgs -oCn +swV +txp +bUW +geD +jAT +uyY +kSc +uyY +hSX +jAT +jAT +geD +jAT +jAT +uyY +jJF +jJF +jJF +jJF +avT +mRE +tbZ eOJ -iSi +nPI fnr fnr ipn @@ -101532,32 +101532,32 @@ fnr fnr fnr fnr -gOR +cey eOJ -gXG -cgs -gXG +avT +mRE +avT rtx rtx rtx rtx rtx -iuZ +qGL rtx rtx -tTm -aJy -gxI -kAc -jau -uWo -nyh -kbV -vPX -nAy -izO +xXf +wkV +eyq +tgk +bhE +vVV +uMT +fKl +xLR +wZo +fwp ndl -tEF +rcq qeX qeX qeX @@ -101588,81 +101588,81 @@ qeX qeX qeX qeX -lmf -aru -nfS +gaj +whT +otJ xiQ -jGk -bQZ -eeM -bQZ -pav -eEq -aNQ -uZh +qmv +mxw +gyO +mxw +aIV +oBn +kmm +cZb dtJ -hFz -tVB +dGO +rkP quk -iuE -cWv -iXA -iXA -weU -jaS -cvC +wrT +jye +bQj +bQj +icP +dBV +cOT hCO -crH -rnz -crH +gsX +gGp +gsX rdo -txL +xDR hpm rdo -xsM -kbm +bJe +koU hpm pHL -pEW -ecZ +mYn +qKb fQp fQp rMS pHL lrq -kbm +koU gtI lrq gtI -kbm +koU ojs -tjm -uPg -laP +cov +jdp +wNV oAQ -pYy -neR -dWc -hRK -edb -sXI -fYV +cNu +oBF +fxj +ucd +eas +wQL +kYc oAQ -aLj -lje +jdX +nht wSd -iWW -ozs -bRN -ptt -wmq -shi -wmq -pWW +ooW +fdf +fQd +uUx +pqq +fPO +pqq +tjN jZE -waV -oug -dzH +jpM +abg +xbr qeX qeX qeX @@ -101697,32 +101697,32 @@ qeX qeX qeX qeX -tag +klp ndl -dFv -ils -qwk -ePK -rdv -ajL -rCJ -iES -rdv -hOb -sWb -ePK -hOb -rdv -hOb -ePK -gNZ -bKt -ePK -dbL -lGn -qJn +swV +smH +ixT +jJF +jAT +jNf +dWY +mJf +jAT +uyY +nIz +jJF +uyY +jAT +uyY +jJF +kfP +mDA +jJF +moh +pOy +oyq plp -qwN +qPX fnr fnr vvz @@ -101734,32 +101734,32 @@ fnr fnr fhM fnr -iXp +vfD plp -ugf -lGn -rLX +dwm +pOy +mfs rtx -dmL -fbM -aQP -uLs +fco +eii +iAn +kkd dCm -nuI +sZH rtx -hJN -vNb -gxI -kAc -aJy -cyq -cyq -cyq -vPX -lRl -izO +uqy +jKF +eyq +tgk +wkV +vKP +vKP +vKP +xLR +opq +fwp ndl -tEF +rcq qeX qeX qeX @@ -101790,81 +101790,81 @@ qeX qeX qeX qeX -lmf -xLt -wnC +gaj +iTK +rIm xiQ xiQ xiQ xiQ xiQ xiQ -psE -aNQ +eBX +kmm eAf -iti -oup -tVB +ceh +xWi +rkP quk blh blh blh blh -ntK -jaS -cvC +slh +dBV +cOT hCO -qHo -tJN -qHo +jpN +tVY +jpN uYU -rSc -jNh +gIP +lwP rdo hpm -wmn +wHa hpm gwb fhF fhF -aTd +sNy fhF fhF gwb lrq -wmn +wHa gtI lrq gtI -wmn +wHa thq -wIX -eKK -oTz +gpk +rUS +nWJ oAQ -pYy -jjM -tAM +cNu +oFu +jJq pRd pRd pRd pRd oAQ -aLj -ubw -nIH +jdX +sUt +kyA bVJ -ptO -jzK +vqe +gFr jZE jZE jZE jZE jZE jZE -joU -rew -dzH +vQy +hqN +xbr qeX qeX qeX @@ -101894,79 +101894,79 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ +hIJ +nGX +nGX +nGX +nGX ndl ndl -dFv -ePK -ePK -ePK -xrG -fUP -eMU -uWh -rdv -hOb -pqE -ePK -mfp -rdv -hOb -ePK -hOb -hOb -ePK -tim -vgx -sCZ +swV +jJF +jJF +jJF +bad +gpF +wPG +jls +jAT +uyY +pVV +jJF +elo +jAT +uyY +jJF +uyY +uyY +jJF +oHp +fzI +aio tqN -wya +tjS cwU -kWc -epn -bQo -bQo -tDT -tDT -qAp -pQH +las +hlv +lro +lro +kdD +kdD +sNh +dlq fhM fhM -ckq +qKa plp -tim -fMB -kqp +oHp +blR +fCH rtx -mNc -mQY -fmA -iPP +pnW +eli +phc +jVR dCm -wfS +tld rtx -lkC -lRl -gxI -kAc -tTm -cXd -lRl -twb -sxb -seC -izO +diL +opq +eyq +tgk +xXf +cKc +opq +piK +bZg +kFK +fwp ndl ndl -wgJ -wgJ -wgJ -wgJ -wgf +nGX +nGX +nGX +nGX +oWW qeX qeX qeX @@ -101992,81 +101992,81 @@ qeX qeX qeX qeX -lmf -mPf -dvB +gaj +jXC +tzJ xiQ -bJO -rXr -egC -rXr -dsT -eEq -jVj +pgs +cdM +iwc +cdM +aIm +oBn +agT vkw -hFz -aAe -tVB +dGO +rCP +rkP quk -jeu -gDY -qWV -sqB -jov -ifI -cvC +iAc +bNd +vAA +pRh +sXR +pTh +cOT hCO -crH -rnz -crH -oaM -ecH -kbn -wsU -iqn -nlM -nbZ -lMf -bvX -hMh -rSc -ebe -bvX -lMf -iqn -cNR -nbZ -wsU -iQs -tAf -oaM -tjm -uPg -laP +gsX +gGp +gsX +fJC +cbu +bsm +bRI +afY +hOq +rRH +svL +gmH +uSz +gIP +mug +gmH +svL +afY +usb +rRH +bRI +cfi +kFX +fJC +cov +jdp +wNV oAQ -pYy -spq -fjF -vVU -qEe -vVU -qEe +cNu +rEp +qTt +ren +jvP +ren +jvP oAQ -aLj -ygc -olS +jdX +kxB +dFt edS -jqL -bRN -wIG -vzm -fTk -vzm -fJE +qjI +fQd +jcI +tVL +nEJ +tVL +aer jZE -gMW -waV -dzH +fuk +jpM +xbr qeX qeX qeX @@ -102096,79 +102096,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -dlI -hOb -oSI -rdv -fUP -iWm -pOx -rdv -ajL -hwS -ePK -pWi -rdv -eqm -ePK -hOb -hOb -ePK -eyA -vgx -aeg +swV +gKy +uyY +geD +jAT +gpF +txp +kJI +jAT +jNf +hUD +jJF +gxr +jAT +duy +jJF +uyY +uyY +jJF +lMV +fzI +uzi plp -kRJ -kgi -aaw +nYX +rqI +nWR eOJ efu efu -uKL -csk +xSL +vXi eOJ -trN +lmd fnr fnr -smV +caq plp -tim -fMB -kqp +oHp +blR +fCH rtx -fmA -iPP -fmA -smg +phc +jVR +phc +rtf dCm -fmA +phc rtx -gdI -lRl -gxI -kAc -tTm -nZG -vNb -gBx -wVj -lRl -izO +twe +opq +eyq +tgk +xXf +eJr +jKF +gPP +mPs +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -102194,81 +102194,81 @@ qeX qeX qeX qeX -lmf -vji -dvB +gaj +sha +tzJ xiQ drD drD -aAe +rCP drD drD -cDb -nrX +lhw +eNh jYJ -cKQ -cHD +cyQ +mTG xiQ xiQ vwU vwU vwU vwU -tKG -ovi +tQO +vUN vwU vwU -crH -pQz -geS -gPL -yhT -jiS -wOt -bHv -gRQ -bHv -bHv -bHv -ebe +gsX +qMK +eiQ +vIa +cuH +heB +gSJ +nMd +ePV +nMd +nMd +nMd +mug krR -hMh -bHv -bHv -bHv -gRQ -bHv -wDJ -iAT -yhT -gPL -qlJ -peL -laP +uSz +nMd +nMd +nMd +ePV +nMd +ppK +plf +cuH +vIa +dnb +ggp +wNV oeZ oeZ -xOS -fsK +rLN +flZ oeZ oeZ oeZ oeZ oeZ jZE -juB -axk +jVS +gQX bOE -hZz -xjn +wCD +xOL inu inu -ygc +kxB inu inu jZE -ehX -waV -dzH +gXu +jpM +xbr qeX qeX qeX @@ -102298,79 +102298,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -dlI -kUA -ePK -has -fUP -ils -nrq -rdv -fUP -qJN -ePK -qwk -rdv -rdv -oSI -rdv -rdv -oSI -ulJ -vgx -xLX +swV +gKy +tBk +jJF +qaC +gpF +smH +nMh +jAT +gpF +hGV +jJF +ixT +jAT +jAT +geD +jAT +jAT +geD +cdR +fzI +lnh eOJ eOJ eOJ eOJ eOJ -gLg -hVg -wVk -eOb +iCc +hnp +aMA +nuo plp -trN +lmd fhM fhM -smV +caq eOJ -tim -vgx -ulJ -ond +oHp +fzI +cdR +wTn dCm dCm dCm dCm dCm -uUs +pMb rtx -tTm -aJy -pVs -kAc -tTm -tTm -tTm -tTm -dbh -lRl -izO +xXf +wkV +vcJ +tgk +xXf +xXf +xXf +xXf +rfM +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -102396,33 +102396,33 @@ qeX qeX qeX qeX -lmf -kXF -dvB +gaj +ksj +tzJ xiQ drD drD -aAe +rCP drD drD -cDb -jmS -vHi -dIc -aAe +lhw +oyQ +sWW +fdY +rCP xiQ -bJO -jSw -bGV -jSw -ggJ -bty +pgs +oPm +gUy +oPm +rwX +xZx blh -xtM +jeB vwU -vgC -rnz -aac +dxi +gGp +chR rdo jgC jgC @@ -102444,33 +102444,33 @@ lOp lOp lOp rdo -tiU -uPg -oiL +xTi +jdp +bHS oeZ -dOY +tzu dKp -onx -xJG -uuH -eGA -uuH -dOY +naw +bIf +dzO +vcI +dzO +tzu jZE -sJl -vNF -rli -wwm -xjn +nbD +asE +era +onc +xOL inu inu -ygc +kxB inu inu jZE -waV -fCh -dzH +jpM +hvk +xbr qeX qeX qeX @@ -102500,79 +102500,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -bJp -pBg -ePK -rdv -dCK -gNP -bbA -rdv -fUP -iWm -ePK -iWm -rdv -hOb -ePK -hOb -hOb -bWZ -tim -vgx -fmu +swV +kFc +gCE +jJF +jAT +ifJ +drX +dCX +jAT +gpF +txp +jJF +txp +jAT +uyY +jJF +uyY +uyY +fes +oHp +fzI +ryO eOJ -gQK -pRl -ubM +joA +pix +dpy eOJ -vqh -qwN +hKo +qPX fhM -iXp +vfD plp -trN +lmd fhM fhM -smV +caq eOJ -isS -fMB -kqp +cSj +blR +fCH rcD -iPP -mye -iuk -iZv +jVR +iHi +trD +uvm dCm -kQM -vlf -gxI -nmY -gxI -hBQ -guG -bTj -bTj -bTj -nxW -lRl -izO +liu +wTE +eyq +xRq +eyq +xXn +xIu +jLX +jLX +jLX +ovI +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -102598,81 +102598,81 @@ qeX qeX qeX qeX -lmf -trI -dvB +gaj +dog +tzJ xiQ -jGk -bQZ -eeM -bQZ -pav -eEq -iLX -rbW -fsw -aAe -fBz +qmv +mxw +gyO +mxw +aIV +oBn +siD +tMS +wAy +rCP +tDC drD blh -srh +rYe blh blh -bty +xZx blh blh -uFH -crH -iAN -crH +fQw +gsX +ldJ +gsX rdo -rEi -dvg -pln -pQy -kDe -pQy -pQy -pQy -gby +iPz +tJe +pJj +vhl +mTT +vhl +vhl +vhl +pVA qnf -gby -pQy -pQy -pQy -kDe -pQy -sAs -aCL -vDa +pVA +vhl +vhl +vhl +mTT +vhl +wTJ +hZN +hEI rdo -tjm -uPg -laP -pLG +cov +jdp +wNV +gBN pRd dKp -onx +naw pRd pRd -qes +lCs pRd pRd -fwU -ygc -hrD -rUi -ioA -bRN -shi -wmq -ptt -wmq -pWW +cGy +kxB +kRw +clp +ttM +fQd +fPO +pqq +uUx +pqq +tjN jZE -ehX -xbP -dzH +gXu +mHi +xbr qeX qeX qeX @@ -102702,79 +102702,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -ePK -ePK -ePK -xrG -hOb -hOb -hIq -rdv -hsd -cvD -ePK -iWm -rdv -cbV -ePK -rnh -nAO -bWZ -tim -vgx -fmu +swV +jJF +jJF +jJF +bad +uyY +uyY +thj +jAT +irs +cBR +jJF +txp +jAT +nRU +jJF +yeW +tdF +fes +oHp +fzI +ryO eOJ -jxC +oTw fhM -iXp +vfD eOJ -oYB -pZH +niQ +dkV lOP -iXp -mnr -hPd -gxe -wLz -ayJ +vfD +afX +nET +hLa +ccA +eki eOJ -tim -fMB -kqp +oHp +blR +fCH rcD -xAE -naR +tcv +xnc rtx rtx -doB +ept rtx rtx -tTm -afq -gxI -wBK -jpQ -qhQ -jpQ -jpQ -tmq -lRl -izO +xXf +seN +eyq +mqq +cZf +gvt +cZf +cZf +dwz +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -102800,81 +102800,81 @@ qeX qeX qeX qeX -lmf -xqc -dvB +gaj +gpt +tzJ xiQ xiQ xiQ xiQ xiQ xiQ -rpY -fpo +fdy +cYX iqx -fNF -gWG -iso -cfu -fce -fce -fce -fce -brn -qRs -qRs -wFj -sWB -iTo -crH +kwv +ggf +lCC +jtI +cHL +cHL +cHL +cHL +wgq +bPo +bPo +rcZ +geV +wJG +gsX cxP -kjg +ant hpm -jMm -qFk -qFk -qFk -qfD -qFk -qFk +iBE +rdb +rdb +rdb +bET +rdb +rdb qnf -qFk -qFk -qfD -qFk -qFk -qFk -rRX +rdb +rdb +bET +rdb +rdb +rdb +eFZ hpm -vCc +hrF kma -tjm -gTj -rQQ -mfi -qjJ -ibl -gHJ -qjJ -qjJ -qjJ -qjJ -qjJ -bmq -xGZ -kMH +cov +iEq +ePy +kDb +dnP +sZg +nUu +dnP +dnP +dnP +dnP +dnP +bES +qvu +biN inu -prL -ono +fUk +oDl jZE jZE jZE jZE jZE jZE -ehX -iYy -dzH +gXu +qaQ +xbr qeX qeX qeX @@ -102904,79 +102904,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -hOb -wNG -uhN -rdv -hOb -ePK -ePK -ghE -ePK -ePK -ePK -qJN -rdv -hOb -ePK -ePK -ePK -ePK -tim -vgx -fmu +swV +uyY +dtX +wIl +jAT +uyY +jJF +jJF +raa +jJF +jJF +jJF +hGV +jAT +uyY +jJF +jJF +jJF +jJF +oHp +fzI +ryO eOJ -jxC +oTw fhM -iXp +vfD eOJ -rVy -qwN +njC +qPX oyi -iZP -sKc -bUU -cPq -xSx -oYB +txk +lmW +lsV +rxM +eyu +niQ eOJ -tim -vgx -kqp +oHp +fzI +fCH rtx rtx rtx rtx -pml +mJi nJl -cNp -fgd +oGY +bDX iVS -tTm -iUR -tTm -tTm -tTm -tTm -tTm -xZC -nAy -izO +xXf +qtt +xXf +xXf +xXf +xXf +xXf +ybi +wZo +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -103002,81 +103002,81 @@ qeX qeX qeX qeX -lmf -oUq -kHf -kHf -kHf -kHf -oUq -kHf +gaj +tJQ +qbk +qbk +qbk +qbk +tJQ +qbk xiQ drD drD -cWC +cHC drD drD xiQ xzU blh -srh +rYe blh blh -xXM +uMO blh blh vwU -eQp -jJR -qHo +ddU +vWU +jpN cxP -jel +qPY hpm -pln -sew -sew -sew -sew -sew -lKL +pJj +qwU +qwU +qwU +qwU +qwU +jxk qnf -lKL -sew -sew -sew -sew -sew -sAs +jxk +qwU +qwU +qwU +qwU +qwU +wTJ hpm -edG +blq kma -hHI -vPl -iEs +rjb +wVd +cQP oeZ pRd pRd -rNe +wZV pRd pRd -qes +lCs pRd meu jZE inu inu -pWW +tjN inu inu jZE -kUo -fSq -ehX -waV -waV -waV -cKB -dzH +rAC +hGj +gXu +jpM +jpM +jpM +wkz +xbr qeX qeX qeX @@ -103106,79 +103106,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -rdv -rdv -qqV -rdv -hOb -ePK -nUe -btH -aLy -ePK -pWi -hOb -rdv -hOb -hOb -dJc -cvD -ePK -tim -vgx -fmu +swV +jAT +jAT +jSz +jAT +uyY +jJF +gqc +ocj +csL +jJF +gxr +uyY +jAT +uyY +uyY +rKi +cBR +jJF +oHp +fzI +ryO eOJ -jxC +oTw fhM -iXp +vfD eOJ eOJ -cjm -kva -cjm +vzc +wCW +vzc eOJ gQe gQe gQe gQe gQe -tim -vgx -kqp +oHp +fzI +fCH iVS -wQR -eZI -bYG -kmE +cak +lST +sOL +hbo ufr ufr -unj +mAv iVS -szQ -qRf -vEF -tTm -hov -vgK -lKl -xZC -lRl -izO +bPf +wAJ +nvI +xXf +nVO +sXj +dDV +ybi +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -103204,81 +103204,81 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -kHf -dvB -kHf +gaj +gaj +gaj +gaj +gaj +qbk +tzJ +qbk xiQ -jGk -bQZ +qmv +mxw iry -jGk -bQZ +qmv +mxw xiQ -jGk -gDY -qWV -gDY -nmL -xXM +qmv +bNd +vAA +bNd +jQK +uMO blh -aTg +wdc vwU -crH -oTd -ubm -dsi +gsX +kyW +yfn +nOW oxQ iRB -wky -rSc +cro +gIP hpm hpm hpm hpm -rSc +gIP qnf -rSc +gIP hpm hpm hpm hpm -rSc -jux +gIP +abW iRB -edG -ojQ -laP -oUN -vlr +blq +lQj +wNV +pTf +fyr oeZ -pwo +usi pRd -rNe -vVU -qEe -vVU -qEe -pwo +wZV +ren +jvP +ren +jvP +usi jZE -shi -wmq +fPO +pqq fWO -shi -wmq +fPO +pqq jZE -fId -joU -rnf -dzH -dzH -dzH -dzH -dzH +xSI +vQy +rxw +xbr +xbr +xbr +xbr +xbr qeX qeX qeX @@ -103308,79 +103308,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -xrG -hOb -tTT -hOb -sXJ -ePK -nUe -iPh -foR -ePK -efe -hOb -rdv -hOb -hOb -hOb -jIH -ePK -isS -vgx -fmu -hXA -nBZ -scb -dBW -sFr -ahX -otS +swV +bad +uyY +vGD +uyY +xBx +jJF +gqc +vZT +rNj +jJF +bTK +uyY +jAT +uyY +uyY +uyY +tEN +jJF +cSj +fzI +ryO +rCy +xGY +erj +qch +adn +aqo +mkA fxV -iXp -fDj +vfD +lEW gQe -eJF -gxm -oPg +dEo +eXB +qgx gQe -tim -vgx -kqp +oHp +fzI +fCH rbp -rmm +gWF ufr ufr nJl ufr ufr -unj +mAv iVS -qar -gxI -vhb -tTm -lRl -mWM -rit -xZC -lRl -izO +qmE +eyq +qiM +xXf +opq +rCo +aTH +ybi +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -103410,10 +103410,10 @@ qeX qeX qeX qeX -lmf -oQE -dvB -kHf +gaj +kFw +tzJ +qbk xiQ iry iry @@ -103426,41 +103426,41 @@ vwU vwU vwU vwU -xIm -fWz +eHv +jtF vwU vwU -crH -iAN -crH +gsX +ldJ +gsX cxP -eou +xCY hpm -pln -pQy -pQy -pQy -pQy -pQy -gby +pJj +vhl +vhl +vhl +vhl +vhl +pVA qnf -gby -pQy -pQy -pQy -pQy -pQy -sAs +pVA +vhl +vhl +vhl +vhl +vhl +wTJ hpm -edG +blq kma -oaj -uPg -laP +oFl +jdp +wNV oeZ oeZ -sEP -lNr +lMO +bLG oeZ oeZ oeZ @@ -103473,10 +103473,10 @@ fWO fWO fWO fWO -lHQ -ehX -xbP -dzH +tbY +gXu +mHi +xbr qeX qeX qeX @@ -103510,79 +103510,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -rdv -ePK -ePK -mAc -ePK -ePK -svC -rdv -lJX -hSb -huq -uAR -huq -huq -huq -huq -huq -daQ -ufe -bvE -uiG +swV +jAT +jJF +jJF +fAQ +jJF +jJF +oLu +jAT +agG +ieg +mIs +jCZ +mIs +mIs +mIs +mIs +mIs +qCU +tOu +ppH +krl eOJ -len -kuE -veL +gNV +hqQ +jfZ eOJ -rjB -qwN +bWo +qPX smJ -xjS -hYX +ktP +fYW gQe -xcO -wXU -vXG +dWr +cxz +cQb gQe -tim -vgx -jGS +oHp +fzI +moq iVS -qqg -hOo -icD +hKc +axF +dya nJl nJl -eHC -tvP +hSK +kmB iVS -dUA -oCC -uQo -tTm -lRl -mWM -lxf -xZC -lRl -izO +cNi +wSV +kVB +xXf +opq +rCo +wDR +ybi +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -103612,73 +103612,73 @@ qeX qeX qeX qeX -lmf -mUD -dvB -dvB -dvB -dvB -dvB -dvB -dvB -kHf -dvB -kHf +gaj +xaZ +tzJ +tzJ +tzJ +tzJ +tzJ +tzJ +tzJ +qbk +tzJ +qbk vwU -xtM -xtM -ggJ -xXM +jeB +jeB +rwX +uMO blh -xtM +jeB vwU -crH -iAN -crH +gsX +ldJ +gsX cxP -kjg +ant hpm -jMm -qFk -qFk -qFk -qfD -qFk -qFk +iBE +rdb +rdb +rdb +bET +rdb +rdb qnf -qFk -qFk -qfD -qFk -qFk -qFk -rRX +rdb +rdb +bET +rdb +rdb +rdb +eFZ hpm -vCc +hrF kma -tjm -uPg -laP +cov +jdp +wNV oeZ -dOY +tzu pRd -rNe -dOY -dOY -dOY +wZV +tzu +tzu +tzu oeZ -ehX -gmF -ehX -waV -jjh -dKn -waV -ehX -ehX -ehX -ehX -dzH +gXu +kCo +gXu +jpM +ntA +cyZ +jpM +gXu +gXu +gXu +gXu +xbr qeX qeX qeX @@ -103712,79 +103712,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -rdv -ePK -xbQ -hRP -eYQ -ePK -nUe -mal -vbS -ePK -ePK -ePK -ghE -ePK -ePK -ePK -ePK -ePK -eyA -vgx -kqp +swV +jAT +jJF +lVW +nrd +eGv +jJF +gqc +xxT +aMU +jJF +jJF +jJF +raa +jJF +jJF +jJF +jJF +jJF +lMV +fzI +fCH eOJ eOJ eOJ eOJ eOJ -ofJ -qwN +ujA +qPX ggF -jeK -wVk -oqv -eko -kEM -gcJ +oUP +aMA +sSO +jVu +xnl +jRI gQe -tim -vgx -kqp +oHp +fzI +fCH iVS iVS jYn iVS -nQB -ybG +dpZ +cUt iVS iVS iVS -wOT -gxI -xFP -tTm -nCu -lRl -twb -sxb -seC -izO +bEi +eyq +okd +xXf +gtX +opq +piK +bZg +kFK +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -103814,73 +103814,73 @@ qeX qeX qeX qeX -lmf -fTm -poH -kHf -kHf -kHf -kHf -nGx -kHf -kHf -kHf -kHf +gaj +dVy +dKR +qbk +qbk +qbk +qbk +wsm +qbk +qbk +qbk +qbk vwU blh blh blh -xXM +uMO blh blh vuL -crH -iAN -crH +gsX +ldJ +gsX rdo -ldC -eou -pln -sew -gOB -sew -sew -sew -lKL +oCV +xCY +pJj +qwU +kbC +qwU +qwU +qwU +jxk qnf -lKL -sew -sew -sew -gOB -sew -sAs -cpp -aDs +jxk +qwU +qwU +qwU +kbC +qwU +wTJ +orF +pRU rdo -tjm -uPg -laP +cov +jdp +wNV wZE pRd pRd -rNe +wZV pRd pRd pRd oeZ -ehX -waV -ehX -waV -ehX -dtv -waV -ehX -waV -waV -eDl -dzH +gXu +jpM +gXu +jpM +gXu +vHP +jpM +gXu +jpM +jpM +nAR +xbr qeX qeX qeX @@ -103914,79 +103914,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -cTj -ePK -gwK -nLc -oTf -ePK -nUe -btH -vKD -ePK -wVM -iOs -bMd -bMd -bMd -bMd -bMd +swV +fOu +jJF +nUE +wSt +lZf +jJF +gqc +ocj +jwT +jJF +uiQ +jIO +cjX +cjX +cjX +cjX +cjX qyP -tim -fMB -kqp +oHp +blR +fCH eOJ -qET -qeZ -rZY +sPt +sGk +lNM eOJ -mQd -qwN +grL +qPX vvY -shv -wLz -oqv -eko -kEM -gcJ +nMM +ccA +sSO +jVu +xnl +jRI gQe -tim -fMB -kqp +oHp +blR +fCH iVS -anh -anh -anh -kmE -hVn -qtm -wem +ljy +ljy +ljy +hbo +otf +pOD +xKD iVS -eYp -gwS -qEq -tTm -piY -lRl -gBx -trG -lRl -izO +lPp +fMo +mKg +xXf +wQl +opq +gPP +bTg +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -104016,29 +104016,29 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -dvB -dOO +gaj +gaj +gaj +gaj +gaj +gaj +gaj +gaj +gaj +gaj +tzJ +pYS vwU blh blh blh -mBy -lJU -lJU +pCo +sEN +sEN vuL -qHo -jJR -qHo +jpN +vWU +jpN rdo jgC jgC @@ -104060,29 +104060,29 @@ lOp lOp lOp rdo -iEs -eKK -oTz +cQP +rUS +nWJ wZE -dBs -dBs -gUB +tAk +tAk +rYr pRd pRd pRd oeZ -waV -ehX -ehX -dzH -dzH -wzQ -dzH -dzH -dzH -dzH -dzH -dzH +jpM +gXu +gXu +xbr +xbr +qkn +xbr +xbr +xbr +xbr +xbr +xbr qeX qeX qeX @@ -104116,79 +104116,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -rdv -ePK -ePK -ePK -ePK -ePK -ePK -ghE -ePK -ePK -pYl -dpU +swV +jAT +jJF +jJF +jJF +jJF +jJF +jJF +raa +jJF +jJF +pah +wia oFd oFd oFd oFd -cCf -rOs -ulJ -fMB -kqp +wiN +vxk +cdR +blR +fCH eOJ -hws -gSZ -sdu -ybc -hTP -xqe +mtg +gtJ +ayY +rIB +dlt +mEG ijR -mqk -deJ +cuB +xke gQe -uyK -duF -vXG +cSk +aqu +cQb gQe -isS -jaz -kna -gPu +cSj +xST +gxh +gAZ mFo fkM mFo fkM mFo eMb -unj +mAv iVS -tTm -iUR -tTm -tTm -tTm -aJy -jRJ -xZC -nAy -izO +xXf +qtt +xXf +xXf +xXf +wkV +ubo +ybi +wZo +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -104227,56 +104227,56 @@ qeX qeX qeX qeX -lmf -sNm -oUq +gaj +jRQ +tJQ vwU -aTg -aTg -nmL +wdc +wdc +jQK blh blh blh vuL -crH -iAN -crH -rur -crH -crH -crH -crH -aKl -crH -qHo -crH -crH -ylI -tjm -tjm -iEs -tjm -tCU -tjm -tjm -tjm -tjm -cBf -tjm -uPg -laP +gsX +ldJ +gsX +mLD +gsX +gsX +gsX +gsX +vol +gsX +jpN +gsX +gsX +trM +cov +cov +cQP +cov +bYu +cov +cov +cov +cov +xVL +cov +jdp +wNV wZE pRd pRd pRd -pwo -pwl -pwo +usi +fMJ +usi oeZ -waV -waV -xbP -dzH +jpM +jpM +mHi +xbr qeX qeX qeX @@ -104318,79 +104318,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -xrG -wNG -eQx -wNh -cHn -ePK +swV +bad +dtX +krj +egJ +aQA +jJF gvz -hEJ -els -fsH -bZo +eby +hkC +nzO +fmZ xWl -hEJ -hEJ -pqH -hEJ -hEJ +eby +eby +cqT +eby +eby qyP -wpw -dFx -kqp +kmS +uLA +fCH eOJ -ygE -nxg -wWU -mVp -key +bde +iSI +uTc +reV +isb fnr fhM -npY -gUA +vkM +xzY gQe -sZZ -wIC -xaz +hpv +bHs +xEw gQe -tim -fMB -kqp +oHp +blR +fCH iVS -nEX -hOo -hOo -hOo -vwf +lun +axF +axF +axF +hiD liP -mjl +caX iVS -tTm -sMN -tTm -tTm -lQG -xUF -guG -sxb -lRl -izO +xXf +iIu +xXf +xXf +cYZ +nLt +xIu +bZg +opq +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -104429,56 +104429,56 @@ qeX qeX qeX qeX -lmf -dvB -kHf +gaj +tzJ +qbk vwU vwU vwU vwU -aTg -nmL -nmL +wdc +jQK +jQK vwU -crH -euI -geS -rYk -geS -sEY -wSK -sEY -sEY -sEY -nKm -sEY -sEY -kzj -tgK -tgK -urk -tgK -tgK -tgK -soT -tgK -qlJ -dXu -qlJ -aEy -itU +gsX +oFN +eiQ +umz +eiQ +qwI +xOu +qwI +qwI +qwI +cUV +qwI +qwI +xtW +bqA +bqA +wfb +bqA +bqA +bqA +bbL +bqA +dnb +wGD +dnb +hug +ilu oeZ -pwo -pwl -pwo +usi +fMJ +usi oeZ oeZ oeZ oeZ -ehX -ehX -ehX -dzH +gXu +gXu +gXu +xbr qeX qeX qeX @@ -104520,79 +104520,79 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl ndl ndl ndl -dFv -rdv -rdv -slP -rdv -rdv -oSI -hEJ -hEJ +swV +jAT +jAT +gzg +jAT +jAT +geD +eby +eby pqx gvz -pYl +pah iSL -hEJ +eby bnO bnO bnO bnO bnO -tim -vgx -jGS +oHp +fzI +moq eOJ -xGn -uCx -xzl +lcB +gvx +rpe eOJ -xqx -key +sYa +isb fhM -npY -tAw +vkM +mRZ gQe gQe gQe gQe gQe -tim -fMB -tUx +oHp +blR +wkC iVS iVS twj twj iVS -nbV +tGR gAv -unj -nTj -tTm -nAy -tTm -tTm -aJy -jRJ -vNb -lRl -udQ -izO +mAv +mnv +xXf +wZo +xXf +xXf +wkV +ubo +jKF +opq +pbU +fwp ndl ndl ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -104631,56 +104631,56 @@ qeX qeX qeX qeX -lmf -dvB -kHf -kHf -kHf -kHf -dOO -dOO -dOO -dOO -dOO -ena -peW -ubm -pFD -ubm -tJC -fuc -tJC -tJC -ubm -lXZ -ubm -ubm -vtS -mcw -mcw -pog -mcw -haA -haA -tXC -haA -mcw -xyi -mcw -mcw -jUe +gaj +tzJ +qbk +qbk +qbk +qbk +pYS +pYS +pYS +pYS +pYS +xmz +oUU +yfn +vpC +yfn +lfr +lqf +lfr +lfr +yfn +ivu +yfn +yfn +hEL +rbY +rbY +qxs +rbY +ukR +ukR +rFq +ukR +rbY +kXh +rbY +rbY +hTm oeZ oeZ oeZ oeZ oeZ -waV -waV -waV -ehX -waV -isA -dzH +jpM +jpM +jpM +gXu +jpM +quU +xbr qeX qeX qeX @@ -104722,79 +104722,79 @@ qeX qeX qeX qeX -kgF -gej -gej -gej +jXd +ucA +ucA +ucA ndl ndl ndl -dFv -huw -qlw -tqO -rCJ -rCJ -ePK +swV +oLJ +lGG +bxo +dWY +dWY +jJF qyP -qvZ +aCC qyP qyP -pYl +pah vJP -hEJ +eby bnO dEW mKM vmn bnO -tim -fMB -kqp +oHp +blR +fCH eOJ eOJ eOJ eOJ eOJ -iEi -qwN +wHB +qPX fnr -npY -acy +vkM +jpu plp -qQY -gpH -tRc -cjm -tim -fMB -jGS +dxp +pcj +tbX +vzc +oHp +blR +moq iVS ufr ufr -jZy +qiS iVS -bIl +anE xpK -unj -kUk -jdm -lRl -xGl -lRl -gxI -gxI -gxI -aHw -lup -izO +mAv +wRE +jdR +opq +xoU +opq +eyq +eyq +eyq +iyz +cKU +fwp ndl ndl ndl -gej -gej -gej -gjc +ucA +ucA +ucA +rvw qeX qeX qeX @@ -104833,56 +104833,56 @@ qeX qeX qeX qeX -lmf -miC -kHf -dvB -dvB -kHf -kHf -qER -dvB -dvB -dOO -dOO -naV -dOO -dOO -agu -xCV -sLQ -nfo -vSR -vSR -kav -tAR -tAR -tAR -tAR -tAR -kav -kGi -stH -xIi -ozN -nut -wOH -xeD -xeD -hGA -xeD -xeD -waV -waV -waV -waV -waV -waV -waV -waV -waV -fSq -dzH +gaj +ixy +qbk +tzJ +tzJ +qbk +qbk +bfW +tzJ +tzJ +pYS +pYS +aeF +pYS +pYS +otx +enT +hsT +eKA +uUh +uUh +vtF +xEM +xEM +xEM +xEM +xEM +vtF +oYh +sRO +fgo +egH +pVt +mXU +vtv +vtv +fSD +vtv +vtv +jpM +jpM +jpM +jpM +jpM +jpM +jpM +jpM +jpM +hGj +xbr qeX qeX qeX @@ -104928,71 +104928,71 @@ qeX qeX qeX qeX -tag +klp ndl ndl -dFv -hrE -oeh -fBk -qmt -iWm -ePK -hES +swV +mXt +ciK +rkS +oLN +txp +jJF +fHe uNH gvz qyP -pYl +pah iSL -mJv +npx bnO sWM obs peJ bnO -tim -fMB -kqp -ocC -nFX +oHp +blR +fCH +aaj +bpv fnr -qBQ +xOw eOJ -vXU -qwN +hQr +qPX fnr -npY -tHH +vkM +bpA plp -dhL +ibt vBb fhM -cjm -tim -fMB -kqp +vzc +oHp +blR +fCH twj -pAE -wJJ +qOQ +lrQ ufr -sTd -kmE +atG +hbo xpK -unj -dTp -tTm -lRl -tTm -tTm -lRl -lRl -bUu -qfE -tro -izO +mAv +fWd +xXf +opq +xXf +xXf +opq +opq +soJ +pNG +mDi +fwp ndl ndl -tEF +rcq qeX qeX qeX @@ -105035,56 +105035,56 @@ qeX qeX qeX qeX -lmf -nXG -doX -kHf -kHf -kHf -kHf -qER -kHf -kHf -dOO -yeI -kHf -kHf -dOO -dOO -fNW -jkO -fNW -kav -kav -kav -eVg -mXE -mki -rnD -jCp -kav -kav -kav -fNW -rIR -fNW -xeD -xeD -waV -ehX -waV -waV -ehX -ehX -ehX -waV -waV -waV -waV -ehX -pnu -hGt -dzH +gaj +ocE +cuX +qbk +qbk +qbk +qbk +bfW +qbk +qbk +pYS +vvp +qbk +qbk +pYS +pYS +kvS +bCc +kvS +vtF +vtF +vtF +orq +jeC +cie +vXs +dPd +vtF +vtF +vtF +kvS +xta +kvS +vtv +vtv +jpM +gXu +jpM +jpM +gXu +gXu +gXu +jpM +jpM +jpM +jpM +gXu +mGw +cUU +xbr qeX qeX qeX @@ -105130,71 +105130,71 @@ qeX qeX qeX qeX -tag +klp ndl ndl -dFv -dFv -dFv -dFv -dFv -dFv -dFv -buL +swV +swV +swV +swV +swV +swV +swV +qrd uNH gvz qyP -pYl +pah iSL -hEJ +eby bnO oGt obs obs bnO -tim -fMB -kqp -cjm -qwN +oHp +blR +fCH +vzc +qPX fhM -qBQ +xOw eOJ eOJ -dLM -sal -pED +cjd +oDj +wtW eOJ eOJ -kqZ +iHJ gWC fhM -cjm -tim -fMB -kqp +vzc +oHp +blR +fCH twj -haf -wKR +mZK +jBR ufr -nQB -vwf +dpZ +hiD xpK -pML +kiu vFp -izO -izO -izO -izO -izO -izO -izO -izO -izO -izO +fwp +fwp +fwp +fwp +fwp +fwp +fwp +fwp +fwp +fwp ndl ndl -tEF +rcq qeX qeX qeX @@ -105237,56 +105237,56 @@ qeX qeX qeX qeX -lmf -enC -hwu -wyI -dvB -dvB -dvB -brD -wyI -kHf -kHf -kHf -kHf -dvB -dvB -dOO -dWK -vgm -wOm -kav -rTB -ekr -wcn -saX -kVZ -mJK -vdi -taT -ivp -kav -oUC -lWF -kAF -xeD -ihw -ceC -ehX -ehX -ehX -waV -wtc -waV -ehX -waV -ehX -ehX -nzT -lAN -dEc -dzH +gaj +cGd +oco +vah +tzJ +tzJ +tzJ +pGL +vah +qbk +qbk +qbk +qbk +tzJ +tzJ +pYS +whU +hmX +xzT +vtF +fLe +aKi +epq +wGO +pdF +tek +hTF +peK +bXw +vtF +jKi +lzI +eJl +vtv +alD +tAL +gXu +gXu +gXu +jpM +lMv +jpM +gXu +jpM +gXu +gXu +iMH +wMl +uBh +xbr qeX qeX qeX @@ -105332,7 +105332,7 @@ qeX qeX qeX qeX -tag +klp ndl ndl ndl @@ -105342,47 +105342,47 @@ ndl ndl ndl dHn -cNT +pGj uNH uNH qyP -gaR +nup vJP -hEJ +eby bnO bnO bnO -aTB +xyo bnO -aeA -vgx -kqp -cjm -qwN +oMc +fzI +fCH +vzc +qPX fhM -ryk +fPD eOJ -oEy -qwN +bki +qPX fhM -npY -kWo +vkM +eaL plp -qwN +qPX kat fnr -cjm -tim -fMB -kqp +vzc +oHp +blR +fCH iVS guW ufr -iSp +gVw iVS -nbV +tGR gAv -wYj +lRQ vFp ndl ndl @@ -105396,7 +105396,7 @@ ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -105439,56 +105439,56 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -lmf -lmf -qjA -fNW -fNW -fNW -hQX -fNW -dOO -sNm -dOO -dWK -vgm -wOm -kav -qpu -drt -drt -saX -kVZ -mJK -nLF -drt -pnZ -kav -ved -lWF -kAF -xeD -ehX -xeD -fNW -hQX +gaj +gaj +gaj +gaj +gaj +gaj +gaj +ucS +kvS +kvS +kvS +aPO +kvS +pYS +jRQ +pYS +whU +hmX +xzT +vtF +hFZ +kNS +kNS +wGO +pdF +tek +vXu +kNS +iza +vtF +wxo +lzI +eJl +vtv +gXu +vtv +kvS +aPO jlC jlC jlC dwN -dzH -dzH -dzH -dzH -dzH -dzH -dzH -dzH +xbr +xbr +xbr +xbr +xbr +xbr +xbr +xbr qeX qeX qeX @@ -105534,71 +105534,71 @@ qeX qeX qeX qeX -kgF -gej -gej -gej -gej -gej -gej -gej +jXd +ucA +ucA +ucA +ucA +ucA +ucA +ucA ndl dHn -blQ +hUj uNH gvz qyP -pYl +pah iSL -hEJ +eby bnO -hyy -wrr +gih +eOI gDM nVI -tim -vgx -kqp -cjm -qwN +oHp +fzI +fCH +vzc +qPX fhM -ryk +fPD eOJ -pJE -gFO +npg +uXx nyu -dKe -cdV +gNN +axr plp -jKK +wKb fnr fhM -cjm -tim -fMB -kqp +vzc +oHp +blR +fCH twj -emH -aiY +bLW +xVq ufr -sTd -kmE +atG +hbo xpK -iUX +sVh vFp ndl ndl ndl ndl ndl -gej -gej -gej -gej -gej -gej -gej -gjc +ucA +ucA +ucA +ucA +ucA +ucA +ucA +rvw qeX qeX qeX @@ -105645,47 +105645,47 @@ qeX qeX qeX qeX -tag +klp ndl ndl -qjA -aex -qLa -fNW -ueF -eMa -fNW -pwa -dOO -dWK -vgm -kAF -tmY -fqj -fqj -fqj -sHD -sBd -tVG -fqj -fqj -fqj -tmY -dWK -lWF -vbV -xeD -vQR -fNW -rdA -iCX +ucS +whq +fUY +kvS +wyy +luA +kvS +lHG +pYS +whU +hmX +eJl +rqU +vuQ +vuQ +vuQ +xvP +pXd +mZz +vuQ +vuQ +vuQ +rqU +whU +lzI +dFs +vtv +heE +kvS +eoK +xOq dBK fpM fpM dwN ndl ndl -tEF +rcq qeX qeX qeX @@ -105744,55 +105744,55 @@ mOJ mOJ mOJ mOJ -tag +klp dHn -fDW -cix -pmJ +qWs +gTQ +ejx qyP -pYl +pah iSL -hEJ +eby bnO -sAy +jiO uFd -nIv +tyn nVI -tim -vgx -kqp -cjm -qwN +oHp +fzI +fCH +vzc +qPX fnr iAf eOJ -tFU -iXa +ohF +fJW cLs -xLV -wPy +lgY +uFE eOJ -wIm +kLK fnr fhM -cjm -tim -fMB -kqp +vzc +oHp +blR +fCH twj -haf -wPv +mZK +oRW ufr -nQB -vwf +dpZ +hiD xpK -wYj +lRQ vFp ndl ndl ndl ndl -tEF +rcq jCt mOJ mOJ @@ -105847,47 +105847,47 @@ qeX qeX qeX qeX -tag +klp ndl ndl -qjA -aex -qLa -fNW -bLs -weY -fNW -kHf -dOO -udn -kxA -tRC -ubD -vfV -dVM -mWy -ihj -wcq -uEs -loS -mqo -lHU -jDV -rxg -lJz -wRd -xeD -waV -fNW -wmY -hYj +ucS +whq +fUY +kvS +jHJ +xHC +kvS +qbk +pYS +nLI +qxn +evC +dYk +kgQ +uEz +gas +fzu +tED +fdP +kZL +gGc +dlF +bOk +jgI +vgG +luD +vtv +jpM +kvS +tXG +lCa uAk hUf drO dwN ndl ndl -tEF +rcq qeX qeX qeX @@ -105946,55 +105946,55 @@ mOJ mOJ mOJ mOJ -tag +klp dHn qyP qyP qyP qyP -pYl +pah iSL -hEJ +eby bnO -xKT +hBw qjr -nIv +tyn nVI -tim -fMB -kqp -cjm -qwN +oHp +blR +fCH +vzc +qPX fhM vNg eOJ -xCp -oGh +cto +uHe sfZ -jnr -tUC +rFL +hUv plp -gPe -gPe -oqu -cjm -tim -fMB -jGS +pkP +pkP +qjW +vzc +oHp +blR +moq iVS ufr ufr -jZy +qiS iVS -bIl +anE gAv -unj +mAv vFp vFp vFp ndl ndl -tEF +rcq mOJ mOJ mOJ @@ -106049,47 +106049,47 @@ qeX qeX qeX qeX -kgF -gej -gej -qjA -puw -qLa -qLa -ics -eQq -fNW -hQX -fNW -rQh -vgm -kAF -tmY -vWx -vWx -uGl -jmH -hXr -chT -wBJ -pWJ -vWx -tmY -dWK -lWF -kAF -fNW -hQX -fNW -cUM -vwv +jXd +ucA +ucA +ucS +jty +fUY +fUY +aHs +jxU +kvS +aPO +kvS +ibS +hmX +eJl +rqU +jVk +jVk +qrh +hie +oGK +uzh +tIT +aZB +jVk +rqU +whU +lzI +eJl +kvS +aPO +kvS +agp +jKX jlC jlC jlC dwN -gej -gej -gjc +ucA +ucA +rvw qeX qeX qeX @@ -106152,47 +106152,47 @@ aFb aFb aFb dHn -oCj -ajK -pYl +nGn +hAu +pah vJP -hEJ +eby bnO -dTO +iWc oLg dUX -bpL -wKi -dFx -kqp -cjm -qwN +nmS +poE +uLA +fCH +vzc +qPX fhM bcd eOJ -oQX -qwN +rhQ +qPX fhM mra yhA -hcN -nte -nte -kEL -cjm -tim -fMB -kqp +cBz +oZQ +oZQ +mSK +vzc +oHp +blR +fCH iVS iVS twj twj iVS -lOa +rOb xpK -unj -vPc -fFZ +mAv +rgq +hTb vFp aFb aFb @@ -106254,37 +106254,37 @@ qeX qeX qeX qeX -qjA -hNQ -qLa -qLa -pMx -mUj -fNW -otL -fNW -bmw -vgm -bEI -kav -rgE -drt -hpp -saX -jqf -mJK -jyW -mZV -hNM -kav -qYl -lWF -kMd -fNW -vng -fNW -wmY -pxw +ucS +uXO +fUY +fUY +nqT +aDO +kvS +wdZ +kvS +nri +hmX +sZY +vtF +iCJ +kNS +pAk +wGO +rik +tek +laF +kLu +sxV +vtF +tmL +lzI +rby +kvS +kAb +kvS +tXG +nnp dBK qdS qdS @@ -106350,55 +106350,55 @@ mOJ mOJ mOJ mOJ -tMG +yln wgb kIA -cOH -cWm +unm +ddV uNH -pYl +pah iSL -hEJ +eby bnO -pSE -vHh -gim +ljf +vOb +uNI bnO -isS -fMB -kqp -cjm -qwN +cSj +blR +fCH +vzc +qPX fhM -rSr -pDh +arR +kMB fhM -nBZ -wLz -wLz -wLz +xGY +ccA +ccA +ccA plp -gPe -gPe -fFP -cjm -tim -fMB -kqp +pkP +pkP +bAn +vzc +oHp +blR +fCH iVS -fsl +lGa oSm xnE cSP -nbV +tGR xpK -unj +mAv ufr -kUk -sEB +wRE +hfR kIA wgb -cuC +vwH mOJ mOJ mOJ @@ -106456,37 +106456,37 @@ qeX qeX qeX qeX -qjA -yhh -aiH -aiH -rPo -ouQ -hKQ -mYr -hKQ -cLW -sgZ -kAF -kav -kav -izk -drt -saX -fKM -mJK -drt -blX -kav -kav -ezZ -weE -hXx -fnJ -hsV -fnJ -eCN -ulv +ucS +gwo +ktk +ktk +kcR +wQq +vbs +sMZ +vbs +qrB +otV +eJl +vtF +vtF +gGX +kNS +wGO +bBP +tek +kNS +mbw +vtF +vtF +wnX +rEV +faX +cLk +pXx +cLk +bsR +qlx uAk gzT dsX @@ -106552,55 +106552,55 @@ mOJ mOJ mOJ mOJ -tMG +yln gSO jhp -cOH -cWm +unm +ddV uNH -pYl +pah iSL -mJv +npx bnO -leR -kAN -lKQ +pdA +gWN +imj bnO -tim -vgx -kqp -cjm -ilW -wLz -rSr -xOp +oHp +fzI +fCH +vzc +xdi +ccA +arR +wAn fhM fhM -qwN -qvF -dur +qPX +nRk +wcA eOJ -aro -dia -ejT -cjm -tim -fMB -kqp +aHk +wMr +uSf +vzc +oHp +blR +fCH iVS -lHb +fhd ufr ufr nJl -nbV +tGR xpK -unj +mAv ufr -kUk -sEB +wRE +hfR gLG gSO -cuC +vwH mOJ mOJ mOJ @@ -106662,33 +106662,33 @@ dwN jlC jlC jlC -hke -qLa -kNo -gGV -kNo -mGy -vgm -rMF -gLu -kav -fBS -drt -saX -fKM -mJK -drt -qno -kav -jws -qTX -lWF -enb -kNo -mCB -kNo -cfH -qfe +wGv +fUY +hJr +gmf +hJr +bLo +hmX +vix +tVl +vtF +jyz +kNS +wGO +bBP +tek +kNS +rzL +vtF +fOt +qGo +lzI +hJG +hJr +iaZ +hJr +sOQ +pEa jlC jlC jlC @@ -106758,47 +106758,47 @@ aFb aFb aFb dHn -rLB -ajK -pYl +tgL +hAu +pah vJP -hEJ +eby bnO bnO bnO bnO bnO -gXG -cgs -gXG +avT +mRE +avT eOJ eOJ eOJ eOJ eOJ -wMq -wMq -iPJ -bXp -beu +hFV +hFV +akp +oNF +wwM eOJ eOJ eOJ eOJ eOJ -gXG -cgs -gXG +avT +mRE +avT iVS -gsE +iIT nJl nJl krw -nbV +tGR gAv -unj -vPc -gyq +mAv +rgq +iNF vFp aFb aFb @@ -106864,33 +106864,33 @@ dwN fpM vlc uAk -xgc -lBq -fNW -hQX -fNW -vhn -vgm -pXP -kAF -tmY -drt -drt -saX -jqf -mJK -drt -drt -tmY -dWK -cSn -rOQ -miw -fNW -hQX -fNW -bYr -tmu +aMv +iWF +kvS +aPO +kvS +yjh +hmX +mjU +eJl +rqU +kNS +kNS +wGO +rik +tek +kNS +kNS +rqU +whU +nPA +ktg +dji +kvS +aPO +kvS +qBh +nZn uAk jAh fpM @@ -106956,24 +106956,24 @@ mOJ mOJ mOJ mOJ -tag +klp ndl ndl dHn dHn dHn -pYl +pah iSL -hEJ -hEJ -tGB -hEJ -hEJ +eby +eby +cAs +eby +eby qyP -uoO -rLr -fVp -weK +dhs +bxB +iRz +yfa ilK vLw vLw @@ -106987,24 +106987,24 @@ eOJ vLw vLw ilK -weK -uoO -rLr -wGT +yfa +dhs +bxB +kSJ iVS -anh -anh -anh -anh -kmE +ljy +ljy +ljy +ljy +hbo xpK -uqc +ufC vFp vFp vFp ndl ndl -tEF +rcq mOJ mOJ mOJ @@ -107066,33 +107066,33 @@ dwN jrR dIA uAk -xXO -wmY -fNW -kHf -dOO -cmR -nJo -tuT -gXB -sLB -hnd -hnd -rbJ -iRg -fle -hnd -hnd -vEH -iYI -xRj -aOQ -hNo -xeD -waV -fNW -ukC -kAF +xbS +tXG +kvS +qbk +pYS +hex +xVv +oKC +riT +iEX +ftI +ftI +pTV +crE +wze +ftI +ftI +awV +lVV +iyR +mIO +xDd +vtv +jpM +kvS +uZG +eJl dBK fpM sXF @@ -107158,55 +107158,55 @@ mOJ mOJ mOJ mOJ -kgF -gej -gej -gej +jXd +ucA +ucA +ucA ndl rQW -bZo +fmZ guJ vKK oFd kMF oFd kMF -jXI -kna -qoa -rHO -gad +stk +gxh +pvQ +fdR +hOu hjI azI hjI hjI -woe -gKJ -gKJ -gKJ -baD +odz +oZy +oZy +oZy +evP hjI hjI azI hjI -gad -jDC -qoa -kna -duV +hOu +rNx +pvQ +gxh +lkW mFo aHO mFo fkM aHO rEC -mjl +caX spy ndl -gej -gej -gej -gjc +ucA +ucA +ucA +rvw mOJ mOJ mOJ @@ -107268,33 +107268,33 @@ dwN fpM fpM dBK -mXv -rzS -fNW -dvB -dOO -thp -bly -pXP -gCt -kav -oFP -ajn -qfC -kXG -esL -ncU -jNa -kav -rWq -pXP -rId -bqW -xeD -ehX -fNW -cOz -rLQ +euf +njH +kvS +tzJ +pYS +bHe +meK +mjU +fQv +vtF +nTW +lop +dek +nVl +rqf +mGn +bHF +vtF +bpc +mjU +qMR +heo +vtv +gXu +kvS +qNQ +sRk uAk fVW fpM @@ -107364,47 +107364,47 @@ qeX qeX qeX qeX -tag +klp rQW -pYl -wjN -ktE -tQK -vrW -vrW -ozH +pah +kpO +qsG +geZ +xZK +xZK +iAQ qyP -xts -aPX -nNL -weK +gnD +sJL +qVU +yfa vLw nxz vLw vLw -dzE +loK nbG nbG nbG -awH +aOh vLw vLw nxz vLw -weK -xts -pBN -nNL +yfa +gnD +fQa +qVU iVS -flz +kIV gAv -dCg -owr -qQW -qMt -unj +phf +qnu +jxq +jhb +mAv spy -tEF +rcq qeX qeX qeX @@ -107470,33 +107470,33 @@ dwN dwN jlC jlC -vUB -wmY -fNW -dvB -dOO -mhf -mhf -rgh -vOp -mhf -iYV -tAR -tAR -tAR -tAR -tAR -iYV -mhf -xxk -xKg -mhf -mhf -xeD -vQR -fNW -xiZ -rMF +cHJ +tXG +kvS +tzJ +pYS +mXk +mXk +nah +cJE +mXk +qOb +xEM +xEM +xEM +xEM +xEM +qOb +mXk +viL +abM +mXk +mXk +vtv +heE +kvS +wJI +vix jlC jlC dwN @@ -107565,49 +107565,49 @@ qeX mOJ mOJ mOJ -fDe +hIJ ndl dHn -ufT -ggU +qPh +goK qyP qyP nVm -xzG +iMI qyP qyP -ePK -tpW -ePK +jJF +qRB +jJF eEh pNb wBo vLw vLw -xne -her -her -her -xne +tfO +aPC +aPC +aPC +tfO vLw vLw iMT moo eEh -tTm -tTm -tTm +xXf +xXf +xXf iVS iVS -xda +uis iVS iVS iVS -gPq -fhb +myR +xSj vFp ndl -wgf +oWW qeX qeX qeX @@ -107669,39 +107669,39 @@ qeX qeX qeX mOJ -qjA -dsH -kiB -xFa -wnP -fNW -dvB -dvB -mhf -kfE -foE -wmw -mhf -nRw -aPL -sfH -ufj -kBs -bUZ -kGq -mhf -rGs -foE -cQA -mhf -waV -ehX -fNW -wnP -pnp -nYn -pHs -qjA +ucS +cfe +eEz +gSQ +pAT +kvS +tzJ +tzJ +mXk +xOi +neB +gUC +mXk +mgZ +nji +suR +bhC +gmN +loZ +aLp +mXk +wBU +neB +jtq +mXk +jpM +gXu +kvS +pAT +xbs +iYF +kPW +ucS qeX qeX qeX @@ -107770,17 +107770,17 @@ mOJ dHn dHn dHn -pYl -iEV +pah +bkI qyP -kXW -jVC -dlM -cXp +cIY +hTj +abX +phO qyP -ePK -ePK -ePK +jJF +jJF +jJF vLw vLw nxz @@ -107796,17 +107796,17 @@ vLw nxz vLw iwe -tTm -bel -fKc +xXf +kEf +wyd iVS -lHp -ueQ -rcQ -mux +qul +mIm +jnb +qTg iVS -fek -unj +gKf +mAv vFp vFp vFp @@ -107871,39 +107871,39 @@ qeX qeX qeX mOJ -qjA -rjj -qjA -qjA -qjA -qjA -kHf -kHf -mhf -fAK -foE -wmw -wCa -gxT -igP -igP -igP -igP -igP -daM -wCa -rGs -foE -fAK -mhf -vfW -rnf -qjA -qjA -qjA -qjA -rjj -qjA +ucS +qKG +ucS +ucS +ucS +ucS +qbk +qbk +mXk +cuh +neB +gUC +oxK +wsg +bpe +bpe +bpe +bpe +bpe +bzY +oxK +wBU +neB +cuh +mXk +dzG +rxw +ucS +ucS +ucS +ucS +qKG +ucS qeX qeX qeX @@ -107970,47 +107970,47 @@ mOJ mOJ mOJ dHn -wVM -bMd -lVK -iEV +uiQ +cjX +lOM +bkI qyP -kXW -eir -jwa -kND +cIY +vCO +qsV +slJ qyP -rdv -rdv -oSI -eUd -eUd -hqA -rZM +jAT +jAT +geD +kBN +kBN +fGk +uPt eEh eEh -nGC -kiM -eor +oNi +bFF +uNB eEh eEh -vez -hqA -eUd -eUd -xGl -lRl -lRl +cCY +fGk +kBN +kBN +xoU +opq +opq iVS -aUh -vGn -vGn -rhn +gNK +mbQ +mbQ +reJ iVS -fek -hVn -anh -ngj +gKf +otf +ljy +bvd vFp qeX qeX @@ -108073,39 +108073,39 @@ qeX qeX qeX mOJ -kgF -gej +jXd +ucA ndl ndl ndl -lmf -sNm -dvB -mhf -nWX -hhc -lHL -qOd -otC -qPw -qyu -qyu -qyu -iRX -eCt -nQS -pwn -paE -tjw -mhf -vnR -sBX -dzH +gaj +jRQ +tzJ +mXk +bvY +ugh +pcF +miK +gcp +wcj +ijI +ijI +ijI +kMf +pBJ +tYf +ltt +oIW +gWs +mXk +wkg +lBB +xbr ndl ndl ndl -gej -gjc +ucA +rvw qeX qeX qeX @@ -108172,47 +108172,47 @@ mOJ mOJ mOJ dHn -pYl -wjN -djK -alq +pah +kpO +oHw +xWr qyP -niq -qRU -rtq -axi +faz +bNm +wvA +ppy qyP -hOb -vAB -ePK +uyY +kfi +jJF vwJ lQv msC vLw bTJ -vmN +awn vLw wUf vLw -wcE +eua bTJ vLw msC lQv pvZ -tTm -eKC -lRl +xXf +rXw +opq iVS -dok -vGn -wmx -rhn +nsd +mbQ +rVx +reJ iVS -pPF -kuU -qMt -unj +lZK +fuG +jhb +mAv vFp qeX qeX @@ -108277,35 +108277,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl -lmf -kHf -kHf -mhf -pXr -foE -eAd -dpY -uAB -uMc -qcn -fNM -ppv -ghF -uAB -wpF -tSO -foE -moO -mhf -waV -waV -dzH +gaj +qbk +qbk +mXk +npZ +neB +jwP +aFP +pzL +xgn +lnZ +und +cee +eyz +pzL +hPQ +qfj +neB +ckR +mXk +jpM +jpM +xbr ndl ndl -tEF +rcq qeX qeX qeX @@ -108374,47 +108374,47 @@ mOJ mOJ mOJ dHn -luL -iEV +dft +bkI qyP qyP qyP qyP qyP -qvZ +aCC qyP qyP -hOb -ePK -ePK +uyY +jJF +jJF vLw lQv msC vLw bTJ -ovl +jsY vLw vLw vLw -njp +uUC bTJ vLw msC lQv vLw -tTm -tTm -lRl +xXf +xXf +opq iVS iVS -lYM +nay iVS iVS iVS iVS iVS -fek -wpK +gKf +pmk vFp qeX qeX @@ -108479,35 +108479,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl -lmf -dvB -dvB -mhf -htI -kot -lHL -mHM -aYh -kiY -iOG -eFc -fxw -tjt -mfN -ehZ -pwn -ryA -moO -mhf -waV -waV -dzH +gaj +tzJ +tzJ +mXk +qvn +ybC +pcF +qAH +vom +pBH +rbv +vzh +mRK +uwS +cwI +vGs +ltt +sei +ckR +mXk +jpM +jpM +xbr ndl ndl -tEF +rcq qeX qeX qeX @@ -108576,19 +108576,19 @@ mOJ mOJ mOJ rQW -pYl -iEV -ePK -gQn -hOb -ryx -hOb -rdv -qkb -hOb -cbV -ePK -xRN +pah +bkI +jJF +eOW +uyY +wEH +uyY +jAT +wtV +uyY +nRU +jJF +xdP vLw lQv msC @@ -108604,19 +108604,19 @@ vLw msC lQv vLw -xRN -tTm -amm -lRl -iYm -kHe -lRl -eZU -dyr -kTQ -tTm -fek -unj +xdP +xXf +qNe +opq +tZd +uIk +opq +fpK +mMi +rei +xXf +gKf +mAv spy mOJ mOJ @@ -108681,35 +108681,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl -lmf -kHf -dvB -mhf -mhf -afx -wmw -foE -qke -iRX -uMc -aQS -ghF -tvI -nOt -foE -rGs -moO -mhf -mhf -ehX -vQR -dzH +gaj +qbk +tzJ +mXk +mXk +eeR +gUC +neB +gNf +kMf +xgn +ePh +eyz +jJV +oGU +neB +wBU +ckR +mXk +mXk +gXu +heE +xbr ndl ndl -tEF +rcq qeX qeX qeX @@ -108778,47 +108778,47 @@ mOJ mOJ mOJ rQW -pYl -iEV -ePK -gQn -hOb -jPg -hOb -rdv -jyb -hOb -iWm -ePK -umY -eUd -eUd -kwg -dfO -lzs +pah +bkI +jJF +eOW +uyY +wju +uyY +jAT +gyV +uyY +txp +jJF +wHG +kBN +kBN +pNt +kLV +rsS hjI nbG oZN nbG hjI -lzs -dfO -fPr -eUd -eUd -umY -tTm -qYW -rYh -lRl -kHe -lRl -tZn -jFr -iSY -tTm -fek -unj +rsS +kLV +hZD +kBN +kBN +wHG +xXf +dAk +erX +opq +uIk +opq +vUg +eWL +hIH +xXf +gKf +mAv spy mOJ mOJ @@ -108883,35 +108883,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl -lmf -kHf -kHf -kHf -mhf -rDf -wmw -mhf -ncI -ghF -uMc -dOk -ghF -uMc -xBw -mhf -jCK -rDf -mhf -tVt -waV -waV -dzH +gaj +qbk +qbk +qbk +mXk +fOk +gUC +mXk +lsl +eyz +xgn +kLn +eyz +xgn +bHy +mXk +flN +fOk +mXk +vkJ +jpM +jpM +xbr ndl ndl -tEF +rcq qeX qeX qeX @@ -108980,47 +108980,47 @@ mOJ mOJ mOJ rQW -pYl +pah vJP -oSI -rdv -rdv -rdv -rdv -rdv -cvD -hOb -qwk -ePK -ePK -aTv -aTv -cNS -lXO +geD +jAT +jAT +jAT +jAT +jAT +cBR +uyY +ixT +jJF +jJF +pWf +pWf +xdd +cIA eEh iiy wxV -cbC +aJQ jTW wVR eEh -tJr -cNS -aTv -hju -tTm -tTm -bwm -oqt -lRl -gxI -gxI -gxI -gxI -gxI -xGl +oRe +xdd +pWf +qZQ +xXf +xXf +cQZ +nhN +opq +eyq +eyq +eyq +eyq +eyq +xoU gAv -unj +mAv spy mOJ mOJ @@ -109085,35 +109085,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl -lmf -dvB -dvB -dvB -mhf -oEk -jwF -mhf -wdl -ghF -qhh -igP -tjt -uMc -akI -mhf -kFz -oEk -mhf -kHT -ehX -kHT -dzH +gaj +tzJ +tzJ +tzJ +mXk +qkW +ddf +mXk +atk +eyz +fZd +bpe +uwS +xgn +ura +mXk +ima +qkW +mXk +ydE +gXu +ydE +xbr ndl ndl -tEF +rcq qeX qeX qeX @@ -109182,23 +109182,23 @@ mOJ mOJ mOJ dHn -ufT -ggU -ePK -ePK -ePK -ePK -kMv -rdv -rdv -rdv -rdv -rdv -oSI -cFN -bgm -mxm -jpq +qPh +goK +jJF +jJF +jJF +jJF +hxi +jAT +jAT +jAT +jAT +jAT +geD +dpg +mIi +uan +jNx eEh eEh eEh @@ -109206,23 +109206,23 @@ eEh eEh eEh eEh -bgm -mxm -jpq -cFN -xGl -gxI -gxI -mho -gxI -kHe -nAu -tTm -tTm -tTm -tTm -gPq -fhb +mIi +uan +jNx +dpg +xoU +eyq +eyq +qsh +eyq +uIk +iVw +xXf +xXf +xXf +xXf +myR +xSj vFp mOJ mOJ @@ -109287,35 +109287,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl -lmf -lmf -oQE -kHf -mhf -oEk -wmw -mhf -iFD -bKK -aYh -uAB -qZt -grK -ate -mhf -rGs -oEk -mhf -vfW -rew -dzH -dzH +gaj +gaj +kFw +qbk +mXk +qkW +gUC +mXk +kfS +cGP +vom +pzL +pRK +cJn +daW +mXk +wBU +qkW +mXk +dzG +hqN +xbr +xbr ndl ndl -tEF +rcq qeX qeX qeX @@ -109384,47 +109384,47 @@ qeX qeX mOJ dHn -pYl -bmI -bMd -qPs -nHN -dFv -dFv -dFv -dFv -dFv -dFv -dFv -dFv +pah +hvG +cjX +tXq +mfd +swV +swV +swV +swV +swV +swV +swV +swV aBB -bSy +yli fme -wys -aaY +pDI +cEe eEh -hsq -edp -fzm +aSw +jNz +ido eEh -nLS -irK +rks +cSv wHs -eZN +nim aBB -izO -izO -izO -izO -izO -izO -izO -izO -rxx -wzh -lqX -qXW -unj +fwp +fwp +fwp +fwp +fwp +fwp +fwp +fwp +eGQ +mCM +lgv +aUL +mAv vFp mOJ mOJ @@ -109489,35 +109489,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -aru -nfS -mhf -mhf -rzR -mhf -mhf -jCP -epL -fyi -tWV -nRn -mhf -mhf -maf -mhf -mhf -lHQ -ehX -dzH +gaj +whT +otJ +mXk +mXk +lvM +mXk +mXk +nnL +kHW +pAD +wHl +cjv +mXk +mXk +rqb +mXk +mXk +tbY +gXu +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -109586,11 +109586,11 @@ mOJ mOJ mOJ dHn -lzf -xHe +jPV +eSF ivl -jwa -vJa +qsV +gVF dHn ndl ndl @@ -109600,19 +109600,19 @@ ndl ndl ndl aBB -kFu -her -xmr -eUd -aOU -gKJ -gKJ -gKJ -aOU -eUd -hvr -her -fUo +lQP +aPC +fGy +kBN +ycW +oZy +oZy +oZy +ycW +kBN +msH +aPC +xjx aBB ndl ndl @@ -109622,11 +109622,11 @@ ndl ndl ndl vFp -rYi -nbV +gre +tGR nde -vQY -wJF +mYy +xUv vFp mOJ mOJ @@ -109691,35 +109691,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -kHf -wnC -mhf -rHV -fha -qVH -wEx -gCz -dgq -dvK -dgq -uaJ -hKq -fEM -giA -hvL -mhf -ehX -sBX -dzH +gaj +qbk +rIm +mXk +xkw +hXX +bMS +oGS +pMg +waz +srx +waz +hiQ +xSu +ecN +sKd +vSm +mXk +gXu +lBB +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -109789,45 +109789,45 @@ mOJ mOJ dHn dHn -rdL -vjT -ihb +hFU +cwj +tML dHn dHn -mVD -mVD -mVD -mVD -mVD -mVD -tDr +quT +quT +quT +quT +quT +quT +tXm aBB aBB -bgm -mxm -jpq -bSy -eUd +mIi +uan +jNx +yli +kBN lQv -eUd -eZN -bgm -mxm -jpq +kBN +nim +mIi +uan +jNx aBB aBB -mVD -mVD -mVD -mVD -mVD -mVD -mbS +quT +quT +quT +quT +quT +quT +trz vFp vFp -mJc -hYO -wJF +slk +rQn +xUv vFp vFp mOJ @@ -109893,35 +109893,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -dvB -dvB -mhf -sio -fha -dgq -dgq -dgq -dgq -dvK -dgq -dgq -dgq -dgq -fha -qGC -mhf -xdJ -waV -dzH +gaj +tzJ +tzJ +mXk +puk +hXX +waz +waz +waz +waz +srx +waz +waz +waz +waz +hXX +eky +mXk +dIC +jpM +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -109989,13 +109989,13 @@ mOJ mOJ mOJ mOJ -tag +klp dHn -gAL +foa vJP -jwa +qsV dHn -tEF +rcq aIO aIO aIO @@ -110003,21 +110003,21 @@ aIO aIO aIO aIO -tag +klp aBB -oPI +fea fme -bIK -lkK -dfO +fFM +hhS +kLV oZN -dfO -bIK -lkK +kLV +fFM +hhS wHs -eeP +hKi aBB -tEF +rcq aIO aIO aIO @@ -110025,13 +110025,13 @@ aIO aIO aIO aIO -tag +klp vFp -cxG +xsn gAv -unj +mAv vFp -tEF +rcq mOJ mOJ mOJ @@ -110095,35 +110095,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -kHf -kHf -mhf -nvr -uFA -sAT -sAT -dRj -dvK -dvK -dvK -mdp -sAT -sAT -uTV -dey -mhf -ehX -fCh -dzH +gaj +qbk +qbk +mXk +htA +xNI +sfS +sfS +iVo +srx +srx +srx +vFi +sfS +sfS +nxX +fIM +mXk +gXu +hvk +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -110191,13 +110191,13 @@ mOJ mOJ mOJ mOJ -tag +klp dHn -dou +xWL vYb -lEm +jdM dHn -tEF +rcq aIO aIO aIO @@ -110205,21 +110205,21 @@ aIO aIO aIO aIO -tag +klp aBB -kFu -mTL -fUo -bSy +lQP +jJK +xjx +yli vLw -hqA +fGk vLw -eZN -kFu -mTL -fUo +nim +lQP +jJK +xjx aBB -tEF +rcq aIO aIO aIO @@ -110227,13 +110227,13 @@ aIO aIO aIO aIO -tag +klp vFp -nbV +tGR gAv -unj +mAv vFp -tEF +rcq mOJ mOJ mOJ @@ -110297,35 +110297,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -dvB -dvB -mhf -mAM -axX -dgq -dgq -lZz -dgq -dgq -dgq -dgq -dgq -dgq -qGC -wrz -mhf -waV -waV -dzH +gaj +tzJ +tzJ +mXk +dJm +ffO +waz +waz +dlQ +waz +waz +waz +waz +waz +waz +eky +wsF +mXk +jpM +jpM +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -110393,13 +110393,13 @@ mOJ mOJ mOJ mOJ -tag +klp rQW -dVd +mPv iSL -mqr +sgB rQW -tEF +rcq aIO aIO aIO @@ -110407,21 +110407,21 @@ aIO aIO aIO aIO -tag +klp aBB eEh eEh eEh -lze +uMh vLw msC vLw -yjs +stx eEh eEh eEh aBB -tEF +rcq aIO aIO aIO @@ -110429,13 +110429,13 @@ aIO aIO aIO aIO -tag +klp spy -nbV +tGR xpK -unj +mAv spy -tEF +rcq mOJ mOJ mOJ @@ -110499,35 +110499,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -kHf -kHf -mhf -stN -axX -dgq -dgq -mhf -rGg -rGg -rGg -mhf -lfQ -dgq -qGC -tTp -mhf -ehX -ehX -dzH +gaj +qbk +qbk +mXk +tys +ffO +waz +waz +mXk +xWu +xWu +xWu +mXk +dbf +waz +eky +wZX +mXk +gXu +gXu +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -110595,13 +110595,13 @@ mOJ mOJ mOJ mOJ -tag +klp rQW -kFJ +lHY iSL -jwa +qsV rQW -tEF +rcq aIO aIO aIO @@ -110609,21 +110609,21 @@ aIO aIO aIO aIO -tag +klp aBB eEh eEh eEh -bSy +yli vLw msC vLw -eZN +nim eEh eEh eEh aBB -tEF +rcq aIO aIO aIO @@ -110631,13 +110631,13 @@ aIO aIO aIO aIO -tag +klp spy -nbV +tGR xpK -unj +mAv spy -tEF +rcq mOJ mOJ mOJ @@ -110701,35 +110701,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -dvB -dvB -mhf -kfH -uuo -xQF -dgq -mhf -vaR -tvQ -sBQ -mhf -dgq -xQF -arB -kfH -mhf -waV -waV -dzH +gaj +tzJ +tzJ +mXk +nGd +mFh +nSQ +waz +mXk +wex +oUB +hAe +mXk +waz +nSQ +rqq +nGd +mXk +jpM +jpM +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -110797,13 +110797,13 @@ mOJ mOJ mOJ mOJ -tag +klp rQW -tud +qQd iSL -jwa +qsV rQW -tEF +rcq aIO aIO aIO @@ -110811,21 +110811,21 @@ aIO aIO aIO aIO -tag +klp gHF -wjn -jsn -gKJ -vmi +hLO +sWk +oZy +dYc vLw nxz vLw -dRf -gKJ -xJW -wjn +nUM +oZy +dTa +hLO gHF -tEF +rcq aIO aIO aIO @@ -110833,13 +110833,13 @@ aIO aIO aIO aIO -tag +klp spy -nbV +tGR xpK -unj +mAv spy -tEF +rcq mOJ mOJ mOJ @@ -110903,35 +110903,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -kHf -dvB -mhf -mhf -mhf -mhf -bdg -mhf -mhf -mhf -mhf -mhf -bdg -mhf -mhf -mhf -mhf -ehX -ehX -dzH +gaj +qbk +tzJ +mXk +mXk +mXk +mXk +pEN +mXk +mXk +mXk +mXk +mXk +pEN +mXk +mXk +mXk +mXk +gXu +gXu +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -110999,13 +110999,13 @@ mOJ mOJ mOJ mOJ -tag +klp dHn -qQC +vyV vJP -vmX +mgQ dHn -tEF +rcq aIO aIO aIO @@ -111013,10 +111013,10 @@ aIO aIO aIO aIO -tag +klp gHF -xES -bSy +dbj +yli vLw vLw lRt @@ -111024,10 +111024,10 @@ nxz vLw vLw vLw -eZN -xES +nim +dbj gHF -tEF +rcq aIO aIO aIO @@ -111035,13 +111035,13 @@ aIO aIO aIO aIO -tag +klp vFp -nbV +tGR gAv -wpK +pmk vFp -tEF +rcq mOJ mOJ mOJ @@ -111105,35 +111105,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -kHf -dvB -etQ -ovZ -mhf -hPe -ghF -uAB -olY -mNH -olY -uAB -uMc -hPe -mhf -rMO -bsI -waV -waV -dzH +gaj +qbk +tzJ +iEW +lyK +mXk +iBU +eyz +pzL +tOQ +kmh +tOQ +pzL +xgn +iBU +mXk +fmP +dDk +jpM +jpM +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -111203,11 +111203,11 @@ mOJ mOJ dHn dHn -jhw +yly vJP -jwa +qsV dHn -sqd +oCL aIO aIO aIO @@ -111215,10 +111215,10 @@ aIO aIO aIO aIO -iVa +hlZ aBB eEh -aXe +dYp vLw vLw vLw @@ -111226,10 +111226,10 @@ nxz vLw vLw vLw -aEK +tsv eEh aBB -iVa +hlZ aIO aIO aIO @@ -111237,11 +111237,11 @@ aIO aIO aIO aIO -eOq +tqB vFp -nbV +tGR gAv -unj +mAv vFp vFp mOJ @@ -111307,35 +111307,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -kHf -kHf -kHf -kHf -mhf -hPe -fNN -qyu -qyu -qyu -qyu -qyu -djX -hPe -mhf -waV -waV -waV -waV -dzH +gaj +qbk +qbk +qbk +qbk +mXk +iBU +ePL +ijI +ijI +ijI +ijI +ijI +kZA +iBU +mXk +jpM +jpM +jpM +jpM +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -111404,12 +111404,12 @@ mOJ qeX qeX rQW -pie -wVM -pds -dlM -kNN -tfu +shy +uiQ +vZM +abX +ifo +ftP aIO aIO aIO @@ -111417,21 +111417,21 @@ aIO aIO aIO aIO -ylC -bho -bgm -gKJ -jpq +xeM +vpO +mIi +oZy +jNx vLw vLw nxz vLw vLw -bgm -gKJ -jpq -pki -mVK +mIi +oZy +jNx +vXx +fvq aIO aIO aIO @@ -111439,12 +111439,12 @@ aIO aIO aIO aIO -gJL -fbp -wzh -ege -ngj -vNK +fyV +gWr +mCM +okh +bvd +pJG spy mOJ mOJ @@ -111509,35 +111509,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl -lmf -lmf -kDC -oDZ -oDZ -mhf -lMP -hUg -iRf -jxm -sDd -jxm -ccL -hUg -elP -mhf -ehX -ehX -sBX -dzH -dzH +gaj +gaj +dyY +iEb +iEb +mXk +erZ +jQy +cJy +wXV +qkt +wXV +jtP +jQy +uar +mXk +gXu +gXu +lBB +xbr +xbr ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -111606,12 +111606,12 @@ mOJ qeX qeX rQW -dXE -obl +jam +dul iSL -jwa -xeQ -tfu +qsV +sQg +ftP aIO aIO aIO @@ -111619,21 +111619,21 @@ aIO aIO aIO aIO -ylC -uyk -bSy +xeM +skp +yli lQv -eZN +nim ekd nbG kLX nbG dDB -bSy +yli lQv -eZN -uyk -mVK +nim +skp +fvq aIO aIO aIO @@ -111641,12 +111641,12 @@ aIO aIO aIO aIO -gJL -nQB -nbV +fyV +dpZ +tGR xpK -fSf -sHY +kiG +psS spy mOJ mOJ @@ -111711,35 +111711,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl ndl -lmf -kHf -dvB -uXz -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -waV -waV -waV -dzH +gaj +qbk +tzJ +lvq +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +jpM +jpM +jpM +xbr ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -111808,12 +111808,12 @@ mOJ qeX qeX rQW -aef -nhW -hJy -rtq -xeQ -tfu +uMJ +oey +oAR +wvA +sQg +ftP aIO aIO aIO @@ -111821,21 +111821,21 @@ aIO aIO aIO aIO -ylC -uyk -kFu -her -fUo +xeM +skp +lQP +aPC +xjx kkw bwd bDK bwd kkw -kFu -her -fUo -uyk -mVK +lQP +aPC +xjx +skp +fvq aIO aIO aIO @@ -111843,12 +111843,12 @@ aIO aIO aIO aIO -gJL -nQB -mJc -jDw -hlE -poG +fyV +dpZ +slk +jQM +sLd +ekI spy mOJ mOJ @@ -111913,35 +111913,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl ndl -lmf -kHf -dvB -kHf -dvB -wyI -kHf -luc -dvB -dvB -ehX -wXi -waV -wtc -ehX -ehX -ehX -waV -dzH +gaj +qbk +tzJ +qbk +tzJ +vah +qbk +xOZ +tzJ +tzJ +gXu +rRD +jpM +lMv +gXu +gXu +gXu +jpM +xbr ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -112011,11 +112011,11 @@ qeX qeX dHn qyP -kvw +aHv iSL -xku +kKD dHn -eSM +lFd aIO aIO aIO @@ -112023,21 +112023,21 @@ aIO aIO aIO aIO -koa +nse aBB -rVN -eUd -eUd +xbq +kBN +kBN fsB eEh eEh eEh ecW -eUd -eUd -jHN +kBN +kBN +fOn aBB -koa +nse aIO aIO aIO @@ -112045,11 +112045,11 @@ aIO aIO aIO aIO -oqa +fAg vFp -mwS +hUI xpK -qTZ +axj iVS vFp qeX @@ -112115,35 +112115,35 @@ qeX qeX qeX mOJ -tag +klp ndl ndl ndl ndl -lmf -lmf -dOO -dOO -dOO -dOO -gNJ -dOO -dOO -dOO -xeD -xeD -nWT -xeD -xeD -xeD -xeD -dzH -dzH +gaj +gaj +pYS +pYS +pYS +pYS +wtC +pYS +pYS +pYS +vtv +vtv +wbS +vtv +vtv +vtv +vtv +xbr +xbr ndl ndl ndl ndl -tEF +rcq qeX qeX qeX @@ -112213,11 +112213,11 @@ qeX qeX dHn qyP -rtN +utf iSL -auJ +eqM dHn -sqd +oCL aIO aIO aIO @@ -112225,21 +112225,21 @@ aIO aIO aIO aIO -iVa +hlZ aBB -aVR -eUd -eUd +qiX +kBN +kBN vLw eEh eEh eEh vLw -eUd -eUd -tVf +kBN +kBN +gRT aBB -iVa +hlZ aIO aIO aIO @@ -112247,11 +112247,11 @@ aIO aIO aIO aIO -eOq +tqB vFp -kUk +wRE xpK -kyI +qKn iVS vFp qeX @@ -112317,35 +112317,35 @@ qeX qeX qeX mOJ -kgF -gej -gej -gej -gej -lmf -lmf -mzq -mzq -iMj -ueq -jrB -qBI -riI -jrB -vTz -duP -kNO -wDB -nTX -rDW -rDW -dzH -dzH -gej -gej -gej -gej -gjc +jXd +ucA +ucA +ucA +ucA +gaj +gaj +cMu +cMu +ijK +eDQ +aYE +lnl +glx +aYE +jyv +oOD +osY +jYh +qpR +ogF +ogF +xbr +xbr +ucA +ucA +ucA +ucA +rvw qeX qeX qeX @@ -112414,12 +112414,12 @@ mOJ qeX qeX rQW -dzs -wVM -lEV -dlM -aIy -tfu +tkc +uiQ +hnw +abX +nCw +ftP aIO aIO aIO @@ -112427,21 +112427,21 @@ aIO aIO aIO aIO -ylC -rdQ -bgm -gKJ -jpq +xeM +dJL +mIi +oZy +jNx vLw bZe fiP bZe vLw -bgm -gKJ -jpq -byH -mVK +mIi +oZy +jNx +iJi +fvq aIO aIO aIO @@ -112449,12 +112449,12 @@ aIO aIO aIO aIO -gJL -juo -wzh -ege -ngj -vQf +fyV +ncl +mCM +okh +bvd +otY spy mOJ mOJ @@ -112525,23 +112525,23 @@ qeX qeX qeX qeX -lmf -rsX -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -dUx -imJ -dzH +gaj +cgm +cMu +cMu +cMu +cMu +cMu +cMu +cMu +ogF +ogF +ogF +ogF +ogF +san +tRH +xbr qeX qeX qeX @@ -112616,12 +112616,12 @@ mOJ qeX qeX rQW -dvm -xay +vlL +xkZ bjp -mwK -xeQ -tfu +pOC +sQg +ftP aIO aIO aIO @@ -112629,21 +112629,21 @@ aIO aIO aIO aIO -ylC -uyk -bSy +xeM +skp +yli lQv -eZN +nim lQv lQv lQv lQv lQv -bSy +yli lQv -eZN -uyk -mVK +nim +skp +fvq aIO aIO aIO @@ -112651,12 +112651,12 @@ aIO aIO aIO aIO -gJL -nQB -nbV +fyV +dpZ +tGR xpK -fSf -yks +kiG +ooK spy mOJ mOJ @@ -112727,23 +112727,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +gaj +cMu +cMu +cMu +cMu +cMu +cMu +cMu +cMu +ogF +ogF +ogF +ogF +ogF +ogF +ogF +xbr qeX qeX qeX @@ -112818,12 +112818,12 @@ mOJ qeX qeX rQW -kEl -yaN -ktE -rtq -xeQ -tfu +oXu +pns +qsG +wvA +sQg +ftP aIO aIO aIO @@ -112831,21 +112831,21 @@ aIO aIO aIO aIO -ylC -uyk -kFu -her -fUo +xeM +skp +lQP +aPC +xjx vLw vLw vLw vLw vLw -kFu -her -fUo -uyk -mVK +lQP +aPC +xjx +skp +fvq aIO aIO aIO @@ -112853,12 +112853,12 @@ aIO aIO aIO aIO -gJL -nQB -mJc -cyd -hlE -lyV +fyV +dpZ +slk +izv +sLd +qZj spy mOJ mOJ @@ -112929,23 +112929,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +gaj +cMu +cMu +cMu +cMu +cMu +cMu +cMu +cMu +ogF +ogF +ogF +ogF +ogF +ogF +ogF +xbr qeX qeX qeX @@ -113021,11 +113021,11 @@ qeX qeX dHn dHn -tNI -cMw -evX +eae +kFp +pxt dHn -eSM +lFd aIO aIO aIO @@ -113033,10 +113033,10 @@ aIO aIO aIO aIO -koa +nse aBB eEh -kVT +isl vLw vLw cUy @@ -113044,10 +113044,10 @@ xkj jZv vLw vLw -fyI +fKP eEh aBB -koa +nse aIO aIO aIO @@ -113055,11 +113055,11 @@ aIO aIO aIO aIO -oqa +fAg vFp -xpn -cAb -dGw +hgD +ogq +qAz vFp vFp mOJ @@ -113131,23 +113131,23 @@ qeX qeX qeX qeX -lmf -fJw -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -hFi -dzH +gaj +hXq +cMu +cMu +cMu +cMu +cMu +cMu +cMu +ogF +ogF +ogF +ogF +ogF +ogF +svX +xbr qeX qeX qeX @@ -113235,21 +113235,21 @@ aIO aIO aIO aIO -tag +klp gHF -xRN -bSy +xdP +yli vLw vLw -tlf -kPB -rBZ +wWP +ojL +wCv vLw vLw -eZN -xRN +nim +xdP gHF -tEF +rcq aIO aIO aIO @@ -113333,23 +113333,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +gaj +cMu +cMu +cMu +cMu +cMu +cMu +cMu +cMu +ogF +ogF +ogF +ogF +ogF +ogF +ogF +xbr qeX qeX qeX @@ -113437,21 +113437,21 @@ aIO aIO aIO aIO -tag +klp gHF -umY -bSy +wHG +yli vLw vLw -bzq -xdS +iCL +eVN kwb vLw vLw -eZN -umY +nim +wHG gHF -tEF +rcq aIO aIO aIO @@ -113535,23 +113535,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +gaj +cMu +cMu +cMu +cMu +cMu +cMu +cMu +cMu +ogF +ogF +ogF +ogF +ogF +ogF +ogF +xbr qeX qeX qeX @@ -113639,21 +113639,21 @@ aIO aIO aIO aIO -tag +klp aBB -hja -kFu -rxh +ttf +lQP +kYM vLw -lYk -hmc -jSf +pgj +vzi +dYZ vLw -crN -fUo -hja +nZM +xjx +ttf aBB -tEF +rcq aIO aIO aIO @@ -113737,23 +113737,23 @@ qeX qeX qeX qeX -lmf -rsX -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -imJ -dzH +gaj +cgm +cMu +cMu +cMu +cMu +cMu +cMu +cMu +ogF +ogF +ogF +ogF +ogF +ogF +tRH +xbr qeX qeX qeX @@ -113841,21 +113841,21 @@ aIO aIO aIO aIO -tag +klp aBB gHF aBB -oPI +fea vLw cUy xkj jZv vLw -eeP +hKi aBB gHF aBB -tEF +rcq aIO aIO aIO @@ -113939,23 +113939,23 @@ qeX qeX qeX qeX -lmf -mzq -qZE -mzq -grp -mzq -qZE -mzq -grp -rDW -dlz -rDW -pdr -rDW -dlz -rDW -dzH +gaj +cMu +jVn +cMu +vzd +cMu +jVn +cMu +vzd +ogF +acq +ogF +tRt +ogF +acq +ogF +xbr qeX qeX qeX @@ -114043,21 +114043,21 @@ aIO aIO aIO aIO -kgF -gej +jXd +ucA ndl gHF -lwR -her -her -her -her -her -crP +xYP +aPC +aPC +aPC +aPC +aPC +mnZ gHF ndl -gej -gjc +ucA +rvw aIO aIO aIO @@ -114141,23 +114141,23 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -dzH -dzH -dzH -dzH -dzH -dzH -dzH -dzH +gaj +gaj +gaj +gaj +gaj +gaj +gaj +gaj +gaj +xbr +xbr +xbr +xbr +xbr +xbr +xbr +xbr qeX qeX qeX @@ -114247,7 +114247,7 @@ aIO aIO qeX qeX -tag +klp aBB aBB gHF @@ -114257,7 +114257,7 @@ gHF gHF aBB aBB -tEF +rcq qeX qeX aIO @@ -114449,17 +114449,17 @@ aIO aIO qeX qeX -kgF -gej -gej -gej -gej -gej -gej -gej -gej -gej -gjc +jXd +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +ucA +rvw qeX qeX aIO diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index cce7060791..db7f3e3fed 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1,47 +1,18 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( +"ac" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - name = "squad one sergeant locker"; - req_access_txt = "32;39"; - req_one_access = list() +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"ae" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"af" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"ai" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 8; - name = "\improper Shared Office"; - req_access = list(); - req_one_access_txt = "12;32" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/shared_office) -"aj" = ( -/obj/structure/machinery/light{ - dir = 1 +"ah" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ak" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -49,44 +20,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"al" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"am" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light{ - dir = 4 +"an" = ( +/obj/item/tool/weldingtool{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) +"ao" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"ap" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/engineering) +"aq" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/platoonarmory) "ar" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"as" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) "au" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -108,14 +64,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"aA" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/obj/item/trash/burger, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "aB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/wy/left{ @@ -123,34 +71,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"aC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller{ - pixel_y = 17 - }, -/obj/item/roller{ - pixel_y = 23 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"aD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Second Platoon Ready Bay Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"aE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "aF" = ( /obj/structure/shuttle/part/dropship1/transparent/nose_center{ name = "\improper Tripoli" @@ -161,11 +81,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/shuttle/elevator, /area/golden_arrow/supply) -"aH" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "aI" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/medical) @@ -182,9 +97,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"aN" = ( +"aK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) +"aL" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"aO" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "aP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -195,6 +138,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonarmory) +"aR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) "aS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -227,19 +181,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"aZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ba" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "bb" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, @@ -268,9 +209,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"be" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) +"bf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "bg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -282,6 +228,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"bi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "bj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -302,18 +255,6 @@ "bk" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoonarmory) -"bl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "bm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -347,61 +288,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"br" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"bt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"bv" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 - }, +"bs" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - layer = 3.6; - pixel_y = 18 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/black/north, /area/golden_arrow/hangar) "bx" = ( /turf/closed/wall/almayer, /area/golden_arrow/dorms) -"bB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc1blastdoor"; - name = "\improper Vehicle Bay One Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"bC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"bA" = ( +/obj/item/prop/almayer/box{ + pixel_y = 17 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/golden_arrow/hangar) "bE" = ( /obj/effect/decal/warning_stripes{ @@ -430,6 +332,16 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"bH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Two Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "bI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -440,13 +352,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"bN" = ( -/obj/structure/machinery/light{ - dir = 1 +"bJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) +"bM" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black/west, +/area/golden_arrow/hangar) +"bN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, /turf/open/floor/almayer, @@ -458,90 +390,67 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"bQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"bR" = ( -/turf/open/floor/almayer/no_build/plate, -/area/golden_arrow/hangar) -"bT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, +"bS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) +"bU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 24; + req_access = list() + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/medical) +"bV" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "bX" = ( /obj/effect/decal/siding{ icon_state = "siding9" }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"bZ" = ( -/obj/structure/largecrate/supply/ammo{ - fill_from_loc = 1; - name = "sentry crate" - }, -/obj/item/ammo_magazine/sentry{ - layer = 3.01 - }, -/obj/item/defenses/handheld/sentry, -/obj/structure/largecrate/supply/explosives/grenades/less{ - icon_state = "case"; - layer = 3.1; - pixel_x = 20; - pixel_y = 10 +"ca" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) -"cb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc2blastdoor"; + name = "\improper Vehicle Bay Two Blast Door" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "cc" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"cd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/soap{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/tool/soap{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/tool/soap/weyland_yutani{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/golden_arrow/cryo_cells) -"cf" = ( +"ce" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "S"; pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "cg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"ci" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "cj" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; @@ -549,10 +458,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"cl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) "cm" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -560,54 +465,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap{ - pixel_x = 3; - pixel_y = 15 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"co" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"cp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/largecrate/random/case{ - pixel_y = 5 - }, -/obj/structure/largecrate/random/case/double{ - pixel_y = 15 - }, -/obj/structure/largecrate/random/case{ - pixel_y = -5 - }, -/obj/structure/largecrate/random/mini/small_case{ - layer = 3.1; - pixel_x = 8; - pixel_y = 14 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"cu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "cx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -634,6 +491,10 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) +"cz" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "cB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -641,31 +502,29 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"cE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"cF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton{ +"cD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + closed_layer = 3.3; + dir = 4; id = "squadblastdoor"; - name = "hangar blast door control"; - pixel_y = 28; - req_one_access_txt = "19;12" + layer = 3.3; + name = "First Platoon Ready Bay Blast Door"; + open_layer = 3.3 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) -"cG" = ( -/obj/structure/ship_ammo/minirocket, -/obj/structure/ship_ammo/minirocket{ - layer = 3.1; - pixel_y = 9 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer/cargo/southwest, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) +"cE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/hangar) "cI" = ( /obj/effect/decal/warning_stripes{ @@ -678,71 +537,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cJ" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/cryo_cells) -"cK" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = -3; - pixel_y = 25; - randpixel = 0 - }, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4; - pixel_y = 5; - randpixel = 0 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 3.3; - pixel_x = 9; - pixel_y = 23 - }, -/obj/item/storage/fancy/cigar/matchbook{ - pixel_x = -2; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"cM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +"cL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/ointment{ + pixel_x = 2; + pixel_y = 34 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"cN" = ( -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "8-9"; - layer = 2.9; - name = "cable"; - pixel_x = 4; - pixel_y = -15 - }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "1-4"; - name = "cable"; - pixel_x = -9 - }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "8-10"; - name = "cable"; - pixel_x = 21 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) "cO" = ( /obj/structure/machinery/shower{ dir = 4 @@ -753,6 +555,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) +"cP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/golden_arrow/hangar) "cQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -768,12 +576,12 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"cS" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "cU" = ( /obj/item/stack/cable_coil{ pixel_x = 7; @@ -789,19 +597,17 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"cX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "cY" = ( /obj/structure/largecrate/random/case/double, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) -"cZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "da" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -838,6 +644,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"dd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "cargolock"; + name = "\improper Cargo Elevator Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) "de" = ( /turf/closed/shuttle/midway{ icon_state = "103"; @@ -851,35 +664,28 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"dh" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open{ - pixel_x = -12; - pixel_y = 9 +"dg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet{ - pixel_x = 8; - pixel_y = 11 +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"dj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/trash/chips{ - layer = 2.7; - pixel_y = -9 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) -"di" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"dl" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"dm" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) "do" = ( /turf/closed/wall/almayer, /area/golden_arrow/shared_office) @@ -894,21 +700,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ds" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 +"dq" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"dr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_y = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "du" = ( /obj/structure/cable{ icon_state = "4-8" @@ -929,49 +738,61 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"dx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8; + pixel_x = -3 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"dy" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "dz" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) -"dA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"dC" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"dD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) -"dF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ +"dH" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"dI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"dL" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "dM" = ( /turf/closed/shuttle/midway{ icon_state = "72"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"dN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoonprep) -"dO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Storage Bay One Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "dR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -994,6 +815,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"dT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) +"dU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"dV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) "dX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/almayer_B{ @@ -1006,13 +847,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"dY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "dZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -1020,15 +854,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"ee" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, +"ea" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/shotgunpump{ + pixel_y = 17 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 6; + pixel_x = 6 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/platoonprep) "eh" = ( /turf/closed/shuttle/midway{ icon_state = "75"; @@ -1042,31 +883,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"em" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2 +"ek" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"el" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"eo" = ( -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"ep" = ( -/obj/structure/largecrate/random/case/double, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) +"en" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"eq" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"er" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"es" = ( -/turf/open/floor/almayer/uscm/directional/up_down/northeast, -/area/golden_arrow/hangar) +"eo" = ( +/turf/open/floor/almayer, +/area/golden_arrow/dorms) "et" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -1093,13 +932,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonarmory) -"eu" = ( +"ev" = ( +/obj/structure/closet, +/obj/item/maintenance_jack, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "ew" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/plating_catwalk, @@ -1109,32 +947,55 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"ey" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"eD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, +"eB" = ( +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_y = 10 + }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) -"eF" = ( +"eC" = ( /obj/structure/surface/table/almayer, -/obj/structure/bedsheetbin{ - pixel_y = 14 +/obj/structure/machinery/recharger{ + pixel_x = 5; + pixel_y = -10 }, -/obj/item/storage/pill_bottle/paracetamol{ - pixel_x = -5 +/obj/item/smartgun_battery{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/prop/magazine{ + desc = "A copy of Soldier of Fortune magazine. On the cover is a stylized imagine of a motion tracker in use, with the headline 'Combat Awareness in the 22nd Century'. The article covers the advancement in sensor technology that has made combat between peer nations like the UA and UPP increasingly lethal to those on the ground. Flipping through the magazine you see article titles such as 'Arsenal: The M2C Heavy Machinegun', and 'The Future War: advancements in Cyberdyne Systems combat AI'. At the back of the magazine is an extensive list of advertisements for private contractors and wares."; + icon_state = "poster8"; + name = "Soldier Of Fortune: Issue March 2182"; + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/clipboard{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) +"eE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"eI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"eG" = ( +/obj/structure/closet/wardrobe{ + name = "PT uniform" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, +/obj/item/clothing/under/shorts/red, +/obj/structure/barricade/handrail{ + layer = 3.1; + pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "eJ" = ( @@ -1146,59 +1007,65 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"eM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 4; - pixel_x = -6 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 9 +"eK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"eN" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"eQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonprep) +"eT" = ( +/obj/structure/machinery/door/poddoor/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"eU" = ( +/obj/structure/largecrate/supply/motiondetectors, +/obj/structure/largecrate/supply/explosives/grenades/less{ + pixel_y = 10 + }, +/obj/item/ammo_box/magazine/mk1{ + layer = 3.1; + pixel_x = -2; + pixel_y = 14 }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"eV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/blackcorner, -/area/golden_arrow/hangar) -"eP" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"eS" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "eW" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"eY" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Second Platoon Ready Bay Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"fa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"eX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_y = 11 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -5; + pixel_y = -9 }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) +"eZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/dorms) "fb" = ( /obj/structure/sign/safety/synth_storage{ pixel_y = 32 @@ -1212,68 +1079,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"fg" = ( -/obj/structure/machinery/light{ - dir = 4 +"fk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"fh" = ( +/area/golden_arrow/hangar) +"fn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"fi" = ( -/obj/structure/largecrate/supply/floodlights, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) -"fj" = ( -/obj/item/tool/weldingtool{ - pixel_y = 6 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +"fo" = ( +/turf/open/floor/almayer/no_build/plate, /area/golden_arrow/hangar) -"fl" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 14; - pixel_y = 13 - }, -/obj/structure/machinery/vending/snack/packaged{ - pixel_x = -7; - pixel_y = 14 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"fp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "\improper Platoon Commander's Quarters"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) "ft" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/golden_arrow/hangar) +"fu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"fv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "fw" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio/intercom{ @@ -1287,37 +1130,67 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"fx" = ( -/obj/structure/machinery/door/poddoor/railing, -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 1 +"fy" = ( +/obj/structure/largecrate/random/case/double{ + pixel_x = 4; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"fE" = ( -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = -4; - pixel_y = 9 +/obj/structure/largecrate/random/case/double{ + layer = 3.1; + pixel_x = 6; + pixel_y = -7 }, -/obj/structure/largecrate/supply/medicine/medkits{ +/obj/structure/largecrate/random/mini/small_case{ layer = 3.1; - pixel_x = 15; + pixel_x = 14; pixel_y = 24 }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 21 +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"fz" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"fA" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = null + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"fB" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"fC" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/briefing) "fF" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/plating, /area/golden_arrow/hangar) +"fG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) "fH" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ name = "\improper Tripoli" @@ -1357,24 +1230,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"fM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"fN" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"fP" = ( -/obj/structure/ship_ammo/rocket/napalm, +"fO" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case/double, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -2; + pixel_y = 15 + }, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"fS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 +"fQ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Second Platoon Ready Bay Blast Door" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "fV" = ( /obj/structure/bed/chair{ dir = 8 @@ -1382,13 +1256,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"fX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "fY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1420,6 +1287,12 @@ /obj/structure/machinery/telecomms/relay/preset/tower, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"gd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "gg" = ( /obj/structure/surface/table/almayer, /obj/structure/barricade/handrail{ @@ -1436,6 +1309,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"gh" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) "gi" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -1459,16 +1335,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"gl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) "gm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -1480,6 +1346,11 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, /area/golden_arrow/platoonarmory) +"go" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "gp" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -1490,15 +1361,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"gq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "gr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1533,24 +1395,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"gw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/strata_decals/grime/grime3, -/obj/structure/largecrate/supply/ammo{ - fill_from_loc = 1; - name = "materials crate" - }, -/obj/item/stack/sheet/metal/large_stack, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "gx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -1561,31 +1405,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"gz" = ( -/obj/structure/machinery/sleep_console{ - dir = 4; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"gA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"gB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "gC" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1593,23 +1412,8 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"gF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"gJ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black/north, +"gD" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "gK" = ( /obj/effect/decal/warning_stripes{ @@ -1632,15 +1436,54 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"gQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad One Weapons Locker"; - pixel_y = -4 +"gM" = ( +/obj/structure/surface/rack{ + pixel_y = 14; + pixel_x = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_y = 26; + pixel_x = 1 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_y = 26; + pixel_x = -3 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 10; + pixel_y = 28 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"gN" = ( +/obj/structure/ship_ammo/minirocket, +/obj/structure/ship_ammo/minirocket{ + layer = 3.1; + pixel_y = 9 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/golden_arrow/hangar) +"gP" = ( +/obj/structure/cable{ + layer = 2.45; + pixel_x = 7; + pixel_y = 1 + }, +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "0-8"; + name = "cable"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/golden_arrow/hangar) "gR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -1650,6 +1493,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) +"gT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "gU" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1682,54 +1536,53 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"gX" = ( +/turf/open/floor/almayer/uscm/directional/up_down/northeast, +/area/golden_arrow/hangar) "gZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"hb" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"hc" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +"ha" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad Two Equipment Locker" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "hd" = ( /obj/structure/shuttle/part/dropship1/lower_right_wall{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"he" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "hf" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "34"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"hg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"hh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing2" }, +/turf/open/floor/almayer/black/west, +/area/golden_arrow/hangar) +"hk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "hl" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) +"hm" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "hn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/disposal{ @@ -1742,6 +1595,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"hp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "hq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -1752,17 +1612,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"hs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "hu" = ( /obj/structure/shuttle/part/dropship1/right_outer_wing_connector{ name = "\improper Tripoli" @@ -1784,12 +1633,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"hy" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +"hz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) +"hB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "hC" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1808,8 +1666,20 @@ /obj/structure/shuttle/part/dropship1/transparent/upper_right_wing{ name = "\improper Tripoli" }, -/turf/open/floor/plating, -/area/golden_arrow/hangar) +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"hF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "hG" = ( /obj/structure/sign/banners/united_americas_flag{ pixel_y = 30 @@ -1819,16 +1689,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"hJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +"hH" = ( +/turf/open/floor/almayer/uscm/directional/up_down/east, +/area/golden_arrow/hangar) "hL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -1836,71 +1699,91 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"hM" = ( -/obj/effect/landmark/start/bridge, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "hN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/shuttle/elevator/grating, /area/golden_arrow/supply) -"hO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay1door"; - name = "\improper Weapons Bay One Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"hP" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) "hQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"hR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "hS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"hU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"hT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +/obj/structure/machinery/computer/cryopod{ + pixel_x = 6; + pixel_y = -2 }, /turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"hV" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"hW" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 +"hX" = ( +/obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"hY" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /obj/structure/machinery/light{ dir = 4 }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"hZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"hX" = ( -/obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing{ - name = "\improper Tripoli" +"ib" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 3; + opacity = 0 }, -/turf/open/floor/plating, +/obj/structure/cargo_container/kelland/left{ + opacity = 0; + pixel_y = 22 + }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) +"ic" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "ie" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -1934,28 +1817,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"ik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"il" = ( +/area/golden_arrow/briefing) +"ii" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Prep Lockers" + dir = 1; + name = "\improper Dorms" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + layer = 1.9 }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) +/area/golden_arrow/dorms) "im" = ( /obj/item/reagent_container/food/drinks/cans/beer{ layer = 4.2; @@ -1982,9 +1867,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"io" = ( -/turf/open/floor/almayer/uscm/directional/up_down/west, -/area/golden_arrow/hangar) "ip" = ( /obj/structure/surface/table/almayer, /obj/item/prop/tableflag{ @@ -2002,20 +1884,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"iq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Prep Lockers" +"is" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 38 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 38 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) -"ir" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/obj/structure/sign/safety/ammunition{ + pixel_y = 26 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"it" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "iw" = ( @@ -2025,6 +1908,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"ix" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "iA" = ( /obj/structure/extinguisher_cabinet/lifeboat{ pixel_x = 12 @@ -2034,6 +1923,14 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"iB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) "iC" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -2045,6 +1942,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"iD" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "iE" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -2056,19 +1960,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"iF" = ( -/obj/structure/largecrate/supply/motiondetectors, -/obj/structure/largecrate/supply/explosives/grenades/less{ - icon_state = "case"; - pixel_y = 10 - }, -/obj/item/ammo_box/magazine/mk1{ - layer = 3.1; - pixel_x = -2; - pixel_y = 14 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) "iI" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -2085,45 +1976,54 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"iJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoonprep) -"iQ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"iR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"iK" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing2" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/engineering) -"iS" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/turf/open/floor/almayer/black/west, +/area/golden_arrow/hangar) +"iM" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"iN" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"iO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/blackcorner/east, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"iU" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"iV" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Storage Bay One Blast Door" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "iW" = ( /obj/structure/window/framed/almayer, /obj/structure/curtain/red, /turf/open/floor/plating, /area/golden_arrow/platoon_commander_rooms) -"iZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "ja" = ( /obj/structure/largecrate/supply/motiondetectors, /obj/item/ammo_box/magazine/mk1{ @@ -2131,19 +2031,50 @@ pixel_x = -12; pixel_y = 14 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) -"jd" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"jb" = ( +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "8-9"; + layer = 2.9; + name = "cable"; + pixel_x = 4; + pixel_y = -15 + }, +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "1-4"; + name = "cable"; + pixel_x = -9 + }, +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "8-10"; + name = "cable"; + pixel_x = 21 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/golden_arrow/hangar) +"jc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 + icon_state = "NE-out" }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"je" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad One Equipment Locker" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "jf" = ( /obj/structure/cable{ icon_state = "2-4" @@ -2179,15 +2110,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"jh" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad Two Weapons Locker"; - pixel_y = -4 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) "ji" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -2209,36 +2131,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"jk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -11; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "jl" = ( /turf/closed/shuttle/midway{ icon_state = "54"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"jn" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = null - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"jo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/cryo{ - name = "hypersleep semiotic"; - pixel_x = 15; - pixel_y = -26 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "jp" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -2250,64 +2148,38 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"jt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" +"jr" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"jw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"jv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "jx" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "22"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"jz" = ( +"jy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/largecrate/supply/ammo{ - fill_from_loc = 1; - name = "smoke grenades case"; - pixel_y = 11 + icon_state = "S"; + pixel_x = -16 }, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"jC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"jB" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, /turf/open/floor/almayer/plate, @@ -2318,21 +2190,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"jE" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"jH" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +"jF" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "jI" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2343,13 +2206,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"jJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) "jK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -2358,13 +2214,6 @@ /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"jL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "jM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2382,6 +2231,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"jO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "jP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -2390,39 +2249,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"jQ" = ( -/obj/structure/ship_ammo/minirocket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/ship_ammo/minirocket{ - layer = 3.1; - pixel_y = 9 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) "jS" = ( /obj/structure/shuttle/part/dropship1/transparent/right_inner_bottom_wing{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"jT" = ( +"jV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"jU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "jW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2433,66 +2279,81 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"jX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "jY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"kb" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/hangar) -"kc" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/box{ - pixel_y = 9 +"jZ" = ( +/obj/vehicle/powerloader{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ke" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/effect/decal/cleanable/cobweb2, +"ka" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) +/area/golden_arrow/medical) +"kb" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/hangar) +"kd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "kf" = ( /obj/structure/shuttle/part/dropship1/transparent/right_outer_bottom_wing{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"kh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) "ki" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"kj" = ( -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "4-5"; - name = "cable"; - pixel_x = 5 +"kk" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "kl" = ( /obj/structure/shuttle/part/dropship1/nose_front_right{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"km" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "kn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -2501,14 +2362,9 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/platoonarmory) -"kq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +"ko" = ( +/turf/open/floor/almayer/uscm/directional/up_down/west, +/area/golden_arrow/hangar) "kr" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -2516,6 +2372,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"ks" = ( +/obj/structure/closet/secure_closet/platoon_sergeant, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) +"kt" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ku" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -2552,39 +2420,27 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"kB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "kG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"kI" = ( -/obj/structure/bed/chair{ - dir = 1 +"kH" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"kJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad Two Weapons Locker"; + pixel_y = -4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "kL" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -2592,64 +2448,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"kP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 +"kM" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research{ + name = "\improper Supply Elevator Hatch" }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"kN" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "kQ" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"kS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Prep Lockers" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) -"kT" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "kU" = ( /turf/closed/shuttle/midway{ icon_state = "81"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"kW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"kV" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"kX" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay1door"; - name = "\improper Weapons Bay One Blast Door" + dir = 4 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "kY" = ( /obj/structure/cable/heavyduty{ @@ -2672,19 +2500,25 @@ /obj/item/clothing/under/shorts/grey, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"lb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ld" = ( /turf/closed/shuttle/midway{ icon_state = "83"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"le" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"lf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad Two Equipment Locker" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "lg" = ( /obj/structure/bed{ can_buckle = 0 @@ -2703,61 +2537,47 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"lh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +"li" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "lj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"lk" = ( +"ln" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/vehicle_spawner/apc_movie/fixed{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) "lo" = ( /turf/closed/shuttle/midway{ icon_state = "47"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"lp" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"lq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"lr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) -"lu" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"lv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing1" +"ls" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/black, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "lw" = ( /obj/structure/disposalpipe/segment{ @@ -2765,68 +2585,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"ly" = ( +"lx" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/largecrate/random/case{ pixel_y = 11 }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) -"lB" = ( +"lA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/dorms) -"lE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4-8" - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"lF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad One Weapons Locker"; + pixel_y = -4 }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) +"lD" = ( +/obj/item/reagent_container/food/drinks/milk{ + pixel_y = 10 }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) -"lH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 6; + pixel_y = 8 }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing1" +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 5 }, -/turf/open/floor/almayer/black, -/area/golden_arrow/hangar) -"lJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - name = "squad two sergeant locker"; - req_access_txt = "32;40"; - req_one_access = list() +/obj/item/reagent_container/food/drinks/milk, +/obj/structure/closet/secure_closet{ + icon_broken = "fridgebroken"; + icon_closed = "fridge"; + icon_locked = "fridge1"; + icon_off = "fridge1"; + icon_opened = "fridgeopen"; + icon_state = "fridge1"; + name = "beverage fridge" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"lL" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 +/area/golden_arrow/cryo_cells) +"lE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"lM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer, /area/golden_arrow/hangar) "lO" = ( /obj/structure/shuttle/part/dropship1/transparent/outer_right_weapons{ @@ -2845,16 +2650,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"lR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) "lU" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_one_access = null @@ -2869,10 +2664,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"lV" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) +"lW" = ( +/obj/structure/closet/firecloset, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"lX" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "lY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/prop/tableflag/uscm{ @@ -2883,15 +2694,32 @@ pixel_x = 5; pixel_y = 6 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"lZ" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"ma" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -20; + pixel_y = -7 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -20; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"mb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ammunition{ + pixel_x = -18 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad One Weapons Locker"; + pixel_y = -4 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "mc" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -2901,13 +2729,28 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"mf" = ( +"md" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"me" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad One Equipment Locker" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "mg" = ( /turf/closed/shuttle/midway{ icon_state = "48"; @@ -2948,16 +2791,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) -"mp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, +"mm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) +"mq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "mr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -2965,17 +2814,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"mt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay2door"; - name = "\improper Weapons Bay Two Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "mu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -3007,69 +2845,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"mA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) -"mD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/tool/wet_sign{ - pixel_x = -14; - pixel_y = 14 - }, -/obj/item/tool/wet_sign{ - pixel_x = -17; - pixel_y = 10 - }, -/obj/item/tool/wet_sign{ - pixel_x = -13; - pixel_y = 6 - }, -/obj/item/tool/wet_sign{ - pixel_x = -15; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -13; - pixel_y = -2 - }, -/obj/item/tool/wet_sign{ - pixel_x = 1; - pixel_y = 16 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"mE" = ( +"mC" = ( +/obj/structure/stairs/perspective, /obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + dir = 4; + layer = 2.7 }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) -"mH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-4"; - layer = 2.36 +"mG" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoonprep) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "mI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -3085,36 +2875,51 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"mN" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32; - pixel_y = 6 +"mK" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 38 }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"mL" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "mO" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"mP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"mQ" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) -"mR" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"mS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-4"; + layer = 2.36 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) "mT" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -3129,30 +2934,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"mV" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"mX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"mY" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/research{ - name = "\improper Supply Elevator Hatch" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) "mZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -3161,21 +2942,33 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"na" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "nb" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/medical) -"ne" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 +"nc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Prep Lockers" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"ng" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -2 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) +"nd" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "nh" = ( /obj/structure/surface/table/almayer, @@ -3208,92 +3001,46 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"nl" = ( +"no" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 8 + icon_state = "SW-out" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"nn" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"nq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"ns" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_x = -16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"nv" = ( -/obj/structure/surface/table/almayer, -/obj/item/hardpoint/support/flare_launcher{ - pixel_y = 11 +"np" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"nx" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ny" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"nt" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 3 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"nD" = ( -/obj/structure/surface/rack{ - pixel_y = 14; - pixel_x = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_y = 26; - pixel_x = 1 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_y = 26; - pixel_x = -3 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 10; - pixel_y = 28 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"nE" = ( -/obj/structure/ship_ammo/rocket/widowmaker, +"nw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) +"nz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "nH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -3301,34 +3048,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"nI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/engineering) -"nK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional/up_down/north, +"nL" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"nM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"nO" = ( -/obj/vehicle/powerloader{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 +"nN" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black/north, /area/golden_arrow/hangar) "nP" = ( /obj/structure/cable{ @@ -3336,6 +3064,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/shared_office) +"nQ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/engineering) "nR" = ( /obj/structure/shuttle/part/dropship1/right_inner_wing_connector{ name = "\improper Tripoli" @@ -3363,64 +3097,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"nW" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"nV" = ( +/obj/structure/machinery/autodoc_console, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"nX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"nY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"nZ" = ( -/obj/item/prop/almayer/box{ - pixel_y = 17 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) -"od" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"oe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Dorms" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/dorms) -"og" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/cryo_cells) -"oh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_x = -8 +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 }, -/obj/structure/machinery/light, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"oi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/cryopod{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, +"og" = ( +/turf/closed/wall/almayer, /area/golden_arrow/cryo_cells) "oj" = ( /obj/effect/spawner/prop_gun/anti_tank{ @@ -3428,16 +3119,12 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/briefing) -"ol" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"ok" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "oo" = ( /obj/effect/decal/cleanable/dirt, @@ -3446,12 +3133,66 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"oq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"or" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) "os" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"ot" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"ou" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) +"ow" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "oy" = ( /obj/structure/machinery/light{ dir = 8 @@ -3459,25 +3200,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"oA" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.97 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "oB" = ( /obj/structure/machinery/door/poddoor/almayer, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"oD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" +"oC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"oF" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ +"oE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ dir = 8; - layer = 2.7 + pixel_x = -24 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "oH" = ( /obj/structure/surface/table/almayer, @@ -3509,17 +3263,12 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"oK" = ( -/obj/item/storage/box/guncase/pumpshotgun/special{ - pixel_y = 4 - }, -/obj/item/storage/box/guncase/flamer/special{ - layer = 3.1; - pixel_y = 10 +"oL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "oM" = ( /obj/structure/filingcabinet{ density = 0; @@ -3536,32 +3285,43 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"oN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "oP" = ( /obj/effect/decal/strata_decals/grime/grime4, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"oQ" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "oR" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"oS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"oV" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"oU" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -7 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "oW" = ( /obj/structure/surface/table/almayer, /obj/structure/largecrate/random/case{ @@ -3574,17 +3334,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"oX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "oY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -3596,37 +3345,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"pa" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"pb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"pc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"pd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad Two Weapons Locker"; - pixel_y = -4 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) "pf" = ( /obj/structure/machinery/door_control{ id = "cargolock"; @@ -3655,17 +3373,45 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"pi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "pl" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/shared_office) +"pn" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/west, +/area/golden_arrow/hangar) "po" = ( /obj/structure/machinery/recharge_station, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"pp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "pq" = ( /obj/structure/machinery/door/airlock/maintenance/colony{ dir = 1; @@ -3677,14 +3423,10 @@ "pr" = ( /turf/open/floor/almayer, /area/golden_arrow/engineering) -"pt" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing1" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/black/west, -/area/golden_arrow/hangar) +"ps" = ( +/obj/structure/machinery/cm_vending/gear/medic_chemical, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "pu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, @@ -3698,13 +3440,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"py" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"px" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hardpoint/locomotion/apc_wheels, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "pz" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -3726,17 +3466,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"pE" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Smartgunner"; - pixel_x = 8 - }, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Squad Sergeant"; - pixel_x = -7 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "pF" = ( /obj/structure/sign/safety/galley{ pixel_y = 28 @@ -3757,6 +3486,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"pJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) "pK" = ( /obj/item/prop/colony/canister{ pixel_x = 3; @@ -3769,19 +3506,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"pL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = -26 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/prep_hallway) "pN" = ( /obj/structure/prop/dam/crane{ bound_height = 32; @@ -3791,6 +3515,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"pP" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "pR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -3798,13 +3529,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"pT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing1" +"pS" = ( +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "4-5"; + name = "cable"; + pixel_x = 5 }, -/turf/open/floor/almayer/black/west, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/golden_arrow/hangar) "pU" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -3823,12 +3556,47 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"qc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" +"qa" = ( +/obj/item/tool/screwdriver{ + icon_state = "screwdriver3"; + layer = 3.03; + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/almayer/black/north, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"qb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/largecrate/supply/supplies/flares{ + layer = 3.1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"qd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/golden_arrow/hangar) +"qg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "qh" = ( /obj/effect/decal/warning_stripes{ @@ -3858,6 +3626,10 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"ql" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "qm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -3874,13 +3646,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"qq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "qr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/photocopier{ @@ -3892,24 +3657,25 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"qt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"qs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/obj/item/toy/plush/therapy/blue{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/toy/plush/therapy/random_color, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"qu" = ( +/turf/open/floor/almayer/uscm/directional/up_down, /area/golden_arrow/hangar) "qv" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"qw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "qx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -3923,6 +3689,40 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"qz" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"qB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"qC" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "qD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -3931,19 +3731,35 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"qE" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad One Equipment Locker" +"qF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/area/golden_arrow/hangar) +"qG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/north, +/area/golden_arrow/hangar) "qH" = ( /obj/structure/shuttle/part/dropship1/lower_left_wall{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"qI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "qJ" = ( /turf/closed/shuttle/elevator{ dir = 6 @@ -3957,13 +3773,12 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"qM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree{ +"qP" = ( +/obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "qQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -3971,11 +3786,47 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"qW" = ( -/obj/structure/closet/secure_closet/platoon_sergeant, +"qS" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/area/golden_arrow/hangar) +"qT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"qU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -8 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"qV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"qX" = ( +/obj/item/prop/almayer/comp_open{ + pixel_x = 40; + pixel_y = 4 + }, +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "4-5"; + layer = 2.8; + name = "cable"; + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/golden_arrow/hangar) "ra" = ( /obj/item/tool/mop{ pixel_x = -1; @@ -4000,14 +3851,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"rd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "squadarmory"; - name = "\improper Gear Lockers" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) "rg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -4017,6 +3860,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"rh" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -7 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"rj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) "rk" = ( /obj/effect/decal/strata_decals/grime/grime1{ dir = 1 @@ -4044,9 +3900,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"rm" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) "ro" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -4054,10 +3907,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"rr" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +"rp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"rs" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "rv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4069,43 +3930,42 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ry" = ( -/obj/structure/pipes/vents/pump{ +"rw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer/black/north, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"rz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"rA" = ( +"rE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/dorms) -"rF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "\improper Platoon Commander's Quarters"; + req_access = list(); + req_one_access_txt = "19;12" }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"rH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "rI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -4116,39 +3976,61 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"rP" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/shared_office) -"rQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"rK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"rS" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"rL" = ( +/obj/structure/cargo_container/wy/right{ + opacity = 0; + pixel_y = -17 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/device/flashlight/lamp/on{ + layer = 4.2; + pixel_x = 3; + pixel_y = 19 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"rT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +/area/golden_arrow/hangar) +"rN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"rO" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"rU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/largecrate/supply/medicine/medkits{ + layer = 3.1; + pixel_x = 15; + pixel_y = 24 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 21 }, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"rP" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/shared_office) "rV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -4159,6 +4041,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"rX" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) "rY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -4167,25 +4052,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"rZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"sa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/supply/supplies/sandbags{ - layer = 4.2; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "sb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4197,15 +4063,36 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"sc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"sd" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"se" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing2" +/obj/structure/closet/crate/trashcart{ + pixel_y = 11 }, -/turf/open/floor/almayer/black, +/obj/item/prop/colony/usedbandage, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 6; + pixel_y = 6 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13 + }, +/obj/item/storage/pill_bottle, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"sf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "sg" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -4215,50 +4102,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"sh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"sk" = ( -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"sl" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/obj/effect/decal/cleanable/dirt, +"si" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer/blackcorner/north, -/area/golden_arrow/hangar) -"sn" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -2 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"sp" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/largecrate/random/case/double, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -2; - pixel_y = 15 - }, -/obj/structure/machinery/light{ - dir = 1 +"sm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"so" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "sq" = ( /obj/effect/decal/warning_stripes{ @@ -4274,38 +4141,50 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"ss" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "su" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"sv" = ( +"sw" = ( +/obj/structure/bed/bedroll{ + buckle_lying = null; + can_buckle = 0; + color = "#333333"; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; + foldabletype = null; + name = "gym mat"; + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"sx" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; + layer = 2.5; pixel_x = -1; - pixel_y = 2 + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"sy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/obj/structure/sign/safety/autodoc{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "sz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4317,39 +4196,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"sA" = ( -/obj/structure/closet/secure_closet/smartgunner{ - name = "squad one smartgunner locker"; - req_access_txt = "14;39"; - req_one_access = list() - }, +"sB" = ( +/obj/structure/largecrate/supply/floodlights, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"sC" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/area/golden_arrow/briefing) +"sD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"sE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "sF" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/golden_arrow/hangar) -"sG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" +"sK" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"sL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) -"sH" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"sI" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "sM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -4376,62 +4272,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"sQ" = ( -/obj/structure/fence, -/obj/structure/machinery/door/poddoor/almayer/open{ - closed_layer = 3.3; - dir = 4; - id = "squadblastdoor"; - layer = 3.3; - name = "First Platoon Ready Bay Blast Door"; - open_layer = 3.3 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +"sP" = ( +/obj/structure/machinery/computer/supply_drop_console/limited/alternate{ + density = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"sR" = ( -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"sT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"sW" = ( -/obj/structure/closet/wardrobe{ - name = "PT uniform" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/head/headband/red, -/obj/item/clothing/under/shorts/red, -/obj/structure/barricade/handrail{ - layer = 3.1; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"sX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "sY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4448,15 +4294,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ta" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/light{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"tb" = ( -/turf/open/floor/almayer/cargo_arrow, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "td" = ( /obj/effect/decal/warning_stripes{ @@ -4490,6 +4336,12 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"tj" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "tl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -4500,23 +4352,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"tp" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 1; - name = "\improper Assembly Room"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/briefing) "tr" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; @@ -4532,11 +4367,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"ts" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "tt" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -4548,59 +4378,32 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"tu" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"tw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/autodoc{ - pixel_x = -17 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"tv" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/closet/coffin/woodencrate{ - name = "gym equipment" +/obj/effect/decal/strata_decals/grime/grime3, +/obj/structure/largecrate/supply/ammo{ + fill_from_loc = 1; + name = "materials crate" }, -/obj/item/clothing/gloves/boxing, -/obj/item/clothing/gloves/boxing/blue, -/obj/item/clothing/gloves/boxing/green, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"tx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"tA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +/obj/item/stack/sheet/metal/large_stack, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 }, -/obj/effect/decal/strata_decals/grime/grime1{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"tx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"tz" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "tB" = ( @@ -4611,31 +4414,38 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"tC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/largecrate/supply/supplies/flares{ - pixel_x = -3; - pixel_y = 9 +"tE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"tJ" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"tF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"tK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"tG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"tH" = ( +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "tL" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -4663,6 +4473,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"tN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/shared_office) "tO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ @@ -4671,22 +4491,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"tP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/co2_knife{ - pixel_x = 3; - pixel_y = 13 +"tQ" = ( +/obj/structure/largecrate/supply/ammo{ + fill_from_loc = 1; + name = "sentry crate" }, -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -14; - pixel_y = 16 +/obj/item/ammo_magazine/sentry{ + layer = 3.01 }, -/obj/item/storage/box/pdt_kit/advanced, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/defenses/handheld/sentry, +/obj/structure/largecrate/supply/explosives/grenades/less{ + layer = 3.1; + pixel_x = 20; + pixel_y = 10 }, /turf/open/floor/almayer, -/area/golden_arrow/platoonprep) +/area/golden_arrow/platoonarmory) +"tR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "tS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4709,28 +4537,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"tU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"tV" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Blast Door" +"tZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"tX" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) "ua" = ( /obj/structure/sign/safety/ladder{ pixel_y = 29 @@ -4760,31 +4573,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ud" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"uf" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing2" +"uc" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/box{ + pixel_y = 9 }, -/turf/open/floor/almayer/black/west, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "uh" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/prep_hallway) -"ui" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) "uj" = ( /obj/structure/surface/table/almayer, /obj/item/prop/colony/game{ @@ -4796,17 +4594,16 @@ "uk" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"ul" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"um" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"uo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, +/obj/structure/cargo_container/wy/mid{ + opacity = 0; + pixel_y = -17 + }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "uq" = ( /obj/effect/decal/cleanable/dirt, @@ -4826,6 +4623,34 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"us" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/largecrate/supply/ammo{ + fill_from_loc = 1; + name = "smoke grenades case"; + pixel_y = 11 + }, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ut" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -4847,20 +4672,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"uv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"uw" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) "uy" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee/marine{ @@ -4878,25 +4689,6 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"uA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"uC" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = -7 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) "uD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -4928,6 +4720,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"uH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) "uI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4961,28 +4766,62 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"uR" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -20; - pixel_y = -7 +"uN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -20; - pixel_y = 7 +/obj/structure/bed/bedroll{ + buckle_lying = null; + can_buckle = 0; + color = "#333333"; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; + foldabletype = null; + name = "gym mat"; + pixel_y = -4 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"uO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"uS" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"uP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out" + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"uT" = ( +/turf/open/floor/almayer/uscm/directional/up_down/northwest, /area/golden_arrow/hangar) +"uV" = ( +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/structure/closet{ + desc = "It's a fancy storage unit for long-life foodstuffs."; + name = "long-life foodstuff storage" + }, +/obj/item/storage/box/powderedmilk, +/obj/item/reagent_container/food/condiment/juice/egg, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "uW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4996,32 +4835,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"uX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full{ - pixel_y = 12 - }, -/obj/item/storage/belt/utility/full{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"uY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryo Bay" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) "uZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5071,6 +4884,17 @@ "vb" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/dorms) +"vc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"ve" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "vf" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -5081,29 +4905,6 @@ /obj/structure/closet/secure_closet, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"vg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"vk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay2door"; - name = "\improper Weapons Bay Two Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"vl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "vm" = ( /obj/structure/shuttle/part/dropship1/left_inner_wing_connector{ name = "\improper Tripoli" @@ -5125,29 +4926,15 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"vp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black, -/area/golden_arrow/hangar) "vq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"vs" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) -"vt" = ( +"vr" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, /turf/open/floor/almayer/mono, /area/golden_arrow/supply) @@ -5158,33 +4945,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"vv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"vw" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) "vx" = ( /obj/vehicle/powerloader{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"vy" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "vz" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -5192,24 +4958,42 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"vD" = ( +"vB" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"vC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"vH" = ( +/obj/effect/landmark/start/bridge, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"vI" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"vF" = ( -/obj/structure/machinery/door/poddoor/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +"vJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Storage Bay One Blast Door" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) -"vG" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "vK" = ( @@ -5218,15 +5002,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"vN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"vM" = ( +/turf/open/floor/almayer/uscm/directional/up_down/southeast, +/area/golden_arrow/hangar) +"vO" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "vP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/computer/cameras/almayer/vehicle{ @@ -5274,25 +5064,69 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"vR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/bedroll{ - buckle_lying = null; - can_buckle = 0; - color = "#333333"; - desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; - foldabletype = null; - name = "gym mat"; - pixel_x = -2 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) "vS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"vU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -11; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"vV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + density = 0; + pixel_y = 24 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/medical) +"vW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 10; + pixel_y = 18 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"vX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/soap{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/tool/soap/weyland_yutani{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"vY" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "vZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -5300,6 +5134,27 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"wa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/cryo_cells) +"wb" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"wc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "wd" = ( /obj/structure/machinery/power/terminal, /turf/open/floor/plating/plating_catwalk, @@ -5308,34 +5163,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"wf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"wg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/hangar) "wh" = ( /obj/effect/decal/cleanable/dirt, @@ -5345,30 +5178,31 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"wi" = ( -/obj/structure/ship_ammo/minirocket, -/obj/effect/decal/cleanable/dirt, -/obj/structure/ship_ammo/minirocket{ - layer = 3.1; - pixel_y = 9 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) "wj" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"wm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"wk" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/structure/cargo_container/wy/mid{ - opacity = 0; - pixel_y = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/blackcorner/north, /area/golden_arrow/hangar) +"wl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "wn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -5376,24 +5210,37 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"wr" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 3 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +"wo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"wu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ - dir = 8 +"wp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"wq" = ( +/obj/structure/closet/secure_closet/smartgunner{ + name = "squad two smartgunner locker"; + req_access_txt = "14;40"; + req_one_access = list() }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/platoonprep) +"wv" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "ww" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -5403,60 +5250,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"wx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wy" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "apc1blastdoor"; - name = "vehicle bay blast door control"; - pixel_y = 28 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "apcbayrailing1"; - name = "vehicle bay railing control"; - pixel_x = 13; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"wC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) "wE" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ req_access = list(); @@ -5480,13 +5273,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"wH" = ( -/obj/vehicle/powerloader{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "wJ" = ( /obj/structure/machinery/light{ dir = 4 @@ -5496,18 +5282,43 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/shared_office) -"wP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing1" +"wL" = ( +/obj/structure/ship_ammo/rocket/napalm, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"wN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/open/floor/almayer/black/east, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"wO" = ( +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "wQ" = ( /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"wR" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"wS" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"wT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonprep) "wU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -5531,23 +5342,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"wX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Storage Bay One Blast Door" +"wW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "wY" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) -"xa" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" +"wZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "xc" = ( /obj/effect/decal/cleanable/dirt, @@ -5556,6 +5368,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"xd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"xe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"xf" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"xg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "xi" = ( /obj/structure/bed{ can_buckle = 0 @@ -5568,50 +5414,96 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"xj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/tool/wet_sign{ + pixel_x = -14; + pixel_y = 14 + }, +/obj/item/tool/wet_sign{ + pixel_x = -17; + pixel_y = 10 + }, +/obj/item/tool/wet_sign{ + pixel_x = -13; + pixel_y = 6 + }, +/obj/item/tool/wet_sign{ + pixel_x = -15; + pixel_y = 2 + }, +/obj/item/tool/wet_sign{ + pixel_x = -13; + pixel_y = -2 + }, +/obj/item/tool/wet_sign{ + pixel_x = 1; + pixel_y = 16 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "xl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, +"xm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"xs" = ( -/turf/open/floor/almayer/uscm/directional/up_down, /area/golden_arrow/hangar) -"xy" = ( +"xo" = ( +/obj/structure/ship_ammo/minirocket, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/minirocket{ + layer = 3.1; + pixel_y = 9 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/golden_arrow/hangar) +"xq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"xz" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"xA" = ( +"xu" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"xv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 +/obj/structure/largecrate/supply/supplies/sandbags{ + layer = 4.2; + pixel_y = 7 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"xw" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/engineering) "xB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -5624,6 +5516,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"xG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "xI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -5641,23 +5543,56 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"xK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes_4{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "xN" = ( /obj/effect/landmark/observer_start, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"xO" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "xP" = ( /obj/structure/machinery/door/poddoor/railing, /obj/item/tool/warning_cone, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xR" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc2blastdoor"; - name = "\improper Vehicle Bay Two Blast Door" +"xT" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"xU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "xV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5669,6 +5604,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"xW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "xY" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -5678,35 +5620,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"yb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 8 +"yd" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black, /area/golden_arrow/hangar) -"yc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "ye" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber{ @@ -5714,44 +5634,50 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"yg" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, +"yf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"yh" = ( -/obj/structure/largecrate/supply/supplies/flares{ - layer = 2.9; - pixel_x = -7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"ym" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) -"yr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"yj" = ( +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"yk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) +"yn" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/engineering) +"yo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + name = "squad one sergeant locker"; + req_access_txt = "32;39"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) +"yp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/engineering) "ys" = ( /obj/item/storage/toolbox/mechanical/green{ pixel_x = 2; @@ -5767,31 +5693,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"yt" = ( +"yv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) -"yx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"yw" = ( +/obj/structure/machinery/door/poddoor/railing, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"yA" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/engineering) "yB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -5802,21 +5718,46 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"yF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, +"yG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 1 }, +/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"yK" = ( -/obj/structure/machinery/floodlight/landing, +"yH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"yN" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"yO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "yQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5839,19 +5780,52 @@ "yS" = ( /turf/open/floor/plating, /area/golden_arrow/engineering) -"yT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"yU" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"yV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ + locked = 1; + name = "\improper Tripoli cargo door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "yW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"yX" = ( -/turf/open/floor/plating, -/area/golden_arrow/hangar) +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"yX" = ( +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"yY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"yZ" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander" + }, +/obj/item/clothing/under/marine/officer/boiler, +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "za" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5861,16 +5835,31 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"zf" = ( -/obj/structure/bed/chair{ - dir = 1 +"zc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) -"zg" = ( -/turf/open/floor/almayer/uscm/directional/up_down/east, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"ze" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"zh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "squadarmory"; + name = "\improper Gear Lockers" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) "zj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -5903,6 +5892,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"zl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "zm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -5919,6 +5915,25 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"zo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"zp" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "zq" = ( /obj/structure/machinery/shower{ dir = 8 @@ -5928,16 +5943,14 @@ "zs" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/briefing) -"zt" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 3; - opacity = 0 +"zu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/cargo_container/kelland/left{ - opacity = 0; - pixel_y = 22 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "zw" = ( /obj/structure/window/framed/almayer, @@ -5957,37 +5970,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"zz" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"zB" = ( -/obj/structure/closet/crate/trashcart{ - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/coffee{ - pixel_x = 13; - pixel_y = 29 - }, -/obj/item/trash/candy, -/obj/item/trash/burger, -/obj/item/trash/cigbutt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"zC" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +"zA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "\improper Hangar Lockdown Blast Door" + id = "squadarmory"; + name = "\improper Gear Lockers" }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/area/golden_arrow/platoonprep) "zD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -5998,42 +5988,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"zG" = ( -/obj/structure/machinery/vending/cigarette{ - pixel_x = 4; - pixel_y = 14 +"zJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"zH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"zK" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) +"zM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"zN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay2door"; + name = "\improper Weapons Bay Two Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"zO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/secure{ + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"zR" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/largecrate/supply/supplies/flares{ + pixel_x = -3; + pixel_y = 9 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) -"zL" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"zP" = ( -/obj/structure/machinery/medical_pod/autodoc{ - pixel_y = 6 +"zV" = ( +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"zS" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = 9; + pixel_y = -3 }, -/turf/open/floor/almayer/test_floor4, +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 22 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"zW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "zX" = ( /obj/structure/bed/chair, @@ -6042,94 +6063,81 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"zY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"Ac" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1; + name = "\improper Power Substation"; + req_one_access = null }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) -"Aa" = ( -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"Ab" = ( -/obj/structure/cable{ - layer = 2.45; - pixel_x = 7; +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "0-8"; - name = "cable"; - pixel_x = 2; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) -"Af" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Aj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "SE-out" }, /obj/structure/machinery/light, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Ah" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Ai" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 38 +"Ak" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 38 +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"Al" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 26 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) +"Am" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Ao" = ( /obj/effect/decal/strata_decals/grime/grime3, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"Aq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_x = 5; - pixel_y = -10 - }, -/obj/item/smartgun_battery{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/item/prop/magazine{ - desc = "A copy of Soldier of Fortune magazine. On the cover is a stylized imagine of a motion tracker in use, with the headline 'Combat Awareness in the 22nd Century'. The article covers the advancement in sensor technology that has made combat between peer nations like the UA and UPP increasingly lethal to those on the ground. Flipping through the magazine you see article titles such as 'Arsenal: The M2C Heavy Machinegun', and 'The Future War: advancements in Cyberdyne Systems combat AI'. At the back of the magazine is an extensive list of advertisements for private contractors and wares."; - icon_state = "poster8"; - name = "Soldier Of Fortune: Issue March 2182"; - pixel_x = 7; - pixel_y = 15 - }, -/obj/item/clipboard{ - pixel_x = -7; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"Ap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/area/golden_arrow/hangar) +"Ar" = ( +/obj/structure/sink{ + layer = 3.1; + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_x = -1; + pixel_y = 35 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "As" = ( /obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment{ @@ -6138,13 +6146,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Au" = ( -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_y = 10 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) "Aw" = ( /obj/structure/bed{ can_buckle = 0; @@ -6189,6 +6190,19 @@ /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/platoon_commander_rooms) +"AA" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m4ra/pve{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "AC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -6196,20 +6210,38 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"AD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 +"AF" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Smartgunner"; + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Squad Sergeant"; + pixel_x = -7 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"AJ" = ( -/obj/structure/machinery/landinglight/ds1{ +/area/golden_arrow/cryo_cells) +"AH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/dorms) +"AI" = ( +/obj/structure/closet/secure_closet/smartgunner{ + name = "squad one smartgunner locker"; + req_access_txt = "14;39"; + req_one_access = list() + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/platoonprep) "AK" = ( /obj/structure/machinery/cryopod, /turf/open/floor/plating/plating_catwalk, @@ -6230,23 +6262,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"AM" = ( -/obj/structure/machinery/door/airlock/maintenance/colony{ - dir = 1; - name = "\improper Power Substation"; - req_one_access = null - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) "AN" = ( /obj/structure/sign/safety/storage{ pixel_x = -18 @@ -6260,35 +6275,39 @@ }, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"AU" = ( +"AS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"AT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"AV" = ( -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/structure/closet{ - desc = "It's a fancy storage unit for long-life foodstuffs."; - name = "long-life foodstuff storage" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/obj/item/storage/box/powderedmilk, -/obj/item/reagent_container/food/condiment/juice/egg, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"AW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/tool/weldingtool/hugetank, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) "AY" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, @@ -6314,6 +6333,49 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"Bb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay1door"; + name = "\improper Weapons Bay One Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Bd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"Be" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = -3; + pixel_y = 25; + randpixel = 0 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4; + pixel_y = 5; + randpixel = 0 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 3.3; + pixel_x = 9; + pixel_y = 23 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "Bf" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -6326,26 +6388,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Bg" = ( -/turf/open/floor/almayer/cargo_arrow/north, +"Bi" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Bh" = ( +"Bk" = ( +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Bq" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, /turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/shared_office) -"Bk" = ( -/turf/open/floor/almayer, -/area/golden_arrow/cryo_cells) -"Bl" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/area/golden_arrow/platoonarmory) "Br" = ( /obj/structure/machinery/computer/station_alert{ dir = 8; @@ -6359,34 +6419,34 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"Bs" = ( +"Bu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"Bx" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "By" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Bz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +"BB" = ( +/obj/structure/machinery/medical_pod/autodoc{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"BA" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/west, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "BC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -6406,59 +6466,65 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"BF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"BH" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"BJ" = ( +"BE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "S"; pixel_y = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) -"BQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) -"BS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +"BN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) +"BO" = ( /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) +"BR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Prep Lockers" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) "BT" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "86"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"BZ" = ( -/obj/item/tool/screwdriver{ - icon_state = "screwdriver3"; - layer = 3.03; - pixel_x = -4; - pixel_y = 7 +"BU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/obj/structure/largecrate/random/case/small{ + layer = 3.1; + pixel_x = 3; + pixel_y = 35 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"BV" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Ca" = ( /obj/effect/decal/warning_stripes{ @@ -6487,10 +6553,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Cd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonprep) "Ce" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -6501,19 +6563,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Cg" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black, -/area/golden_arrow/hangar) "Ch" = ( /obj/effect/decal/siding{ icon_state = "siding4" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"Ci" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/medical) "Ck" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -6524,6 +6583,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonarmory) +"Cl" = ( +/obj/structure/surface/table/almayer, +/obj/item/hardpoint/support/flare_launcher{ + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Cm" = ( /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) @@ -6551,16 +6617,9 @@ dir = 9 }, /area/golden_arrow/supply) -"Cr" = ( -/obj/item/stack/catwalk{ - pixel_x = 4 - }, -/obj/item/stack/catwalk{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +"Cs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -6574,49 +6633,54 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"Cw" = ( -/obj/structure/bed/chair{ - dir = 1 +"Cz" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Two Blast Door" }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) -"Cy" = ( -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"CD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"CA" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 1; + name = "\improper Assembly Room"; + req_access = list(); + req_one_access_txt = "19;12" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"CB" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "CE" = ( /turf/closed/wall/almayer, /area/golden_arrow/medical) -"CF" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/blackcorner/north, -/area/golden_arrow/hangar) "CG" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"CI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/north, +"CH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "CJ" = ( /obj/structure/barricade/handrail{ @@ -6635,53 +6699,26 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"CL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"CM" = ( -/obj/structure/closet/firecloset, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"CN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/largecrate/random/case/small{ - layer = 3.1; - pixel_x = 3; - pixel_y = 35 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"CQ" = ( +/turf/closed/shuttle/midway{ + icon_state = "94"; + name = "\improper Tripoli" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"CP" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 3 +"CT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"CQ" = ( -/turf/closed/shuttle/midway{ - icon_state = "94"; - name = "\improper Tripoli" +"CV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "CX" = ( /obj/structure/gun_rack/m41, @@ -6694,47 +6731,63 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Db" = ( -/obj/structure/cargo_container/kelland/right{ - opacity = 0 +"Dd" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, -/obj/structure/cargo_container/kelland/right{ - opacity = 0; - pixel_y = 22 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + layer = 3.6; + pixel_y = 18 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"De" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Dg" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "apc2blastdoor"; + name = "vehicle bay blast door control"; + pixel_y = 28 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "apcbayrailing2"; + name = "vehicle bay railing control"; + pixel_x = 13; + pixel_y = 28 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Dc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad Two Equipment Locker" +"Dh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Emergency Infirmary"; + req_one_access = null }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"Df" = ( -/obj/structure/largecrate/random/case/double{ - pixel_x = 4; - pixel_y = 5 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/largecrate/random/case/double{ - layer = 3.1; - pixel_x = 6; - pixel_y = -7 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"Di" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Sergeant"; + pixel_x = -7 }, -/obj/structure/largecrate/random/mini/small_case{ - layer = 3.1; - pixel_x = 14; - pixel_y = 24 +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Corpsman"; + pixel_x = 8 }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Dj" = ( /obj/structure/cable{ icon_state = "1-2" @@ -6747,14 +6800,21 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Dn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/medical/ointment{ - pixel_x = 2; - pixel_y = 34 +"Dm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 8; + name = "\improper Shared Office"; + req_access = list(); + req_one_access_txt = "12;32" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/shared_office) "Do" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera{ @@ -6779,6 +6839,16 @@ }, /turf/closed/wall/almayer, /area/golden_arrow/cryo_cells) +"Dr" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Dv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/heavyduty{ @@ -6790,40 +6860,31 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"Dy" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +"Dw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"Dx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Dz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton{ + id = "squadblastdoor"; + name = "hangar blast door control"; + pixel_y = 28; + req_one_access_txt = "19;12" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) "DA" = ( /turf/closed/wall/almayer, /area/golden_arrow/engineering) -"DB" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) -"DC" = ( -/obj/structure/sign/banners/united_americas_flag{ - pixel_x = -30; - pixel_y = 31 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/dinnerware, -/obj/item/ashtray/glass{ - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "DD" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6848,14 +6909,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) +"DG" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/blackcorner, +/area/golden_arrow/hangar) "DI" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"DJ" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) "DK" = ( /obj/structure/surface/table/almayer, /obj/item/prop{ @@ -6868,14 +6939,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"DL" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) "DM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -6900,14 +6963,16 @@ "DQ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoonprep) -"DT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing1" +"DS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "DV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/poddoor/almayer{ @@ -6916,6 +6981,17 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"DX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "DY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump{ @@ -6923,57 +6999,39 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ea" = ( +"DZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Ef" = ( -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) -"Eg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"Ed" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"Eh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_x = -8; - pixel_y = 3 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) +"Ee" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"Ej" = ( +"Ei" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1{ - layer = 3.1; - pixel_x = 3; - pixel_y = 13 - }, -/obj/item/facepaint/sunscreen_stick{ - layer = 3.2; - pixel_x = -2; - pixel_y = 2 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 24; - serial_number = 11 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/area/golden_arrow/hangar) "Ek" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -6981,6 +7039,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"El" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Em" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/cable{ @@ -6989,51 +7051,67 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"En" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-2" +"Ep" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" }, -/obj/structure/closet/crate/trashcart{ - pixel_y = 11 +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Et" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" }, -/obj/item/prop/colony/usedbandage, -/obj/item/prop/colony/usedbandage{ +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Eu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/prop/colony/usedbandage{ - dir = 6; - pixel_y = 6 - }, -/obj/item/prop/colony/usedbandage{ - dir = 10; - pixel_y = 13 - }, -/obj/item/storage/pill_bottle, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"Ep" = ( -/obj/effect/decal/siding{ - icon_state = "siding10" +"Ev" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/hangar) -"Ez" = ( +"Ew" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"Ex" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"Ey" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"EA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"EB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "ED" = ( /obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, @@ -7049,43 +7127,24 @@ "EG" = ( /turf/open/space/basic, /area/space) -"EH" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"EJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) -"EK" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "cargolock"; - name = "\improper Cargo Elevator Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) +"EI" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "EL" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"EP" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 +"EM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"EQ" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit{ - locked = 1 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "ER" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7112,9 +7171,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"EU" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/engineering) "EV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -7130,31 +7186,51 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"EZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"Fa" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Fe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m4ra/pve{ - pixel_y = 8 +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"Ff" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Fb" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer/plate, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/hangar) +"Fc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Fg" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) +"Fh" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -30; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/dinnerware, +/obj/item/ashtray/glass{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Fi" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ @@ -7169,80 +7245,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Fl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = -3; - pixel_y = 3 +"Fm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 12; - pixel_y = 18 +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, -/obj/item/trash/plate{ - pixel_x = -5; +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) +"Fr" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ pixel_y = 3 }, -/obj/item/trash/plate{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_y = 18; - pixel_x = 2 - }, -/obj/item/trash/plate{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Fn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Fo" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Commander" - }, -/obj/item/clothing/under/marine/officer/boiler, -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Fp" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"Fq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "Fs" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -7255,6 +7273,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Ft" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) "Fw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -7266,45 +7289,17 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"FA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8; - pixel_x = -3 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"FB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"FC" = ( +"Fx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 + icon_state = "SE-out"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "SW-out" }, +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"FD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/coffee/marine{ - pixel_x = -4; - pixel_y = 14 - }, -/obj/item/ashtray/plastic{ - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "FE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7315,12 +7310,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"FJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Two Blast Door" +"FG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 14 }, -/turf/open/floor/almayer/test_floor4, +/obj/item/storage/pill_bottle/paracetamol{ + pixel_x = -5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"FL" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + layer = 3.1; + pixel_x = 8; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "FM" = ( /obj/effect/decal/cleanable/dirt, @@ -7338,6 +7345,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"FO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) "FP" = ( /turf/closed/shuttle/midway{ icon_state = "25"; @@ -7350,27 +7369,6 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"FS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"FU" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) "FV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7381,52 +7379,51 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"FY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) -"FZ" = ( +"FW" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/soap/deluxe{ - pixel_x = -7; - pixel_y = 10 +/obj/item/prop/almayer/comp_open{ + pixel_x = -12; + pixel_y = 9 }, -/turf/open/floor/almayer, -/area/golden_arrow/cryo_cells) -"Gb" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.97 +/obj/item/reagent_container/food/drinks/cans/souto/diet{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/trash/chips{ + layer = 2.7; + pixel_y = -9 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Gd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"FX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryo Bay" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad One Equipment Locker" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"Ge" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/golden_arrow/cryo_cells) +"FZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/soap/deluxe{ + pixel_x = -7; + pixel_y = 10 }, -/obj/structure/bed/bedroll{ - buckle_lying = null; - can_buckle = 0; - color = "#333333"; - desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; - foldabletype = null; - name = "gym mat"; - pixel_y = -4 +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Gf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "Gg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7437,40 +7434,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Gj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/bodybags{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 10; - pixel_y = 18 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Gk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonprep) -"Gn" = ( +"Gh" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Gi" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Gp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -7481,36 +7457,37 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Gq" = ( +"Gt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) -"Gs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Gv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + name = "squad two sergeant locker"; + req_access_txt = "32;40"; + req_one_access = list() }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Gw" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Sergeant"; - pixel_x = -7 +/area/golden_arrow/platoonprep) +"Gx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Corpsman"; - pixel_x = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "Gy" = ( /obj/structure/surface/table/almayer, /obj/structure/barricade/handrail{ @@ -7522,29 +7499,33 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"Gz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "GA" = ( /turf/closed/shuttle/elevator, /area/golden_arrow/supply) -"GF" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +"GB" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"GD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/plate, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay1door"; + name = "\improper Weapons Bay One Blast Door" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"GG" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/machinery/light{ +"GE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "GH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/heavyduty{ @@ -7555,16 +7536,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"GI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldingtool/hugetank, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) "GL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire{ @@ -7575,19 +7546,19 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"GM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +"GO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "GP" = ( /obj/structure/bed/chair{ dir = 8 @@ -7609,6 +7580,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"GR" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/blackcorner/west, +/area/golden_arrow/hangar) +"GS" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "GU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7617,11 +7602,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"GV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "GW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/heavyduty{ @@ -7633,89 +7613,49 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Ha" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/supply/supplies/mre{ - layer = 3.1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"He" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"Hf" = ( +"Hd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "SE-out" }, -/obj/structure/machinery/light{ +/obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Hg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/toy/plush/therapy/blue{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/toy/plush/therapy/random_color, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/area/golden_arrow/hangar) "Hi" = ( /obj/structure/cargo_container/arious/mid, /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Hj" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "Hk" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck/uno, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"Hm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"Ho" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/catwalk{ - pixel_x = 2; - pixel_y = -9 - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +"Hn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_x = -8; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Hp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/golden_arrow/medical) +"Hr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Hs" = ( /obj/structure/bed/chair{ dir = 8; @@ -7726,6 +7666,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) +"Hu" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/cryo_cells) "Hv" = ( /obj/structure/machinery/light{ dir = 1 @@ -7736,6 +7679,12 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/golden_arrow/platoon_commander_rooms) +"Hx" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "Hy" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -7745,17 +7694,35 @@ /obj/item/trash/plate{ pixel_x = -3 }, -/turf/open/floor/almayer, -/area/golden_arrow/cryo_cells) -"HA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Hz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"HB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"HC" = ( +/obj/vehicle/powerloader{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "HD" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "38"; @@ -7773,49 +7740,42 @@ /obj/item/defenses/handheld/sentry, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"HF" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"HH" = ( -/obj/structure/machinery/light{ - dir = 1 +"HG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"HK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer, -/area/golden_arrow/cryo_cells) -"HL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"HM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"HI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"HN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/cable{ - icon_state = "0-8"; - layer = 2.36 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"HK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) "HO" = ( /obj/structure/shuttle/part/dropship1/left_outer_wing_connector{ name = "\improper Tripoli" @@ -7830,25 +7790,6 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"HR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"HS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) "HT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -7861,6 +7802,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"HU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap{ + pixel_x = 3; + pixel_y = 15 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "HW" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7880,18 +7831,25 @@ "HZ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoonarmory) -"Ia" = ( +"Ib" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 8; + name = "\improper Chemistry Subsection"; + req_one_access = list(); + req_one_access_txt = "8;12" + }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, /obj/structure/cable{ - icon_state = "0-8"; - layer = 2.36 + icon_state = "4-8" }, -/turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Id" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -7904,9 +7862,19 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"Ig" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo, +"If" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Ii" = ( /obj/effect/decal/cleanable/dirt, @@ -7915,35 +7883,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Ij" = ( +"Im" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"In" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Il" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Io" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 6 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Iq" = ( -/turf/open/floor/almayer/uscm/directional/up_down/northwest, -/area/golden_arrow/hangar) "Ir" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoonprep) -"It" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "Iu" = ( /obj/structure/sign/safety/rewire{ pixel_x = 32 @@ -7956,17 +7927,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Iw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "Iz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -7979,34 +7939,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"IA" = ( -/turf/open/floor/almayer/uscm/directional/up_down/southeast, -/area/golden_arrow/hangar) -"IB" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-8"; - layer = 2.36 - }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) "IC" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/engineering) -"IE" = ( -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"IF" = ( -/obj/structure/machinery/door/poddoor/railing, +"IG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/cryo_cells) "IH" = ( /turf/closed/shuttle/elevator{ dir = 4 @@ -8036,46 +7982,55 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"IL" = ( -/obj/structure/cargo_container/wy/right{ - opacity = 0; - pixel_y = -17 - }, +"IK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/item/device/flashlight/lamp/on{ - layer = 4.2; - pixel_x = 3; - pixel_y = 19 - }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"IM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_y = 11 +"IQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"IR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -5; - pixel_y = -9 +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"IO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 +/area/golden_arrow/cryo_cells) +"IS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -29 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc1blastdoor"; + name = "\improper Vehicle Bay One Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"IT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional/up_down/north, +/area/golden_arrow/hangar) +"IU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "IV" = ( @@ -8087,8 +8042,17 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"IW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) "IX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8096,13 +8060,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"IZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "Ja" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -8117,41 +8074,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"Jc" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit{ + locked = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Jd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Jk" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/cable{ - icon_state = "0-2" +"Jg" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 }, -/turf/open/floor/almayer, -/area/golden_arrow/shared_office) -"Jm" = ( -/obj/structure/machinery/power/smes/buildable, /obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/electrical{ - pixel_y = 10 +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"Jh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"Jo" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony{ - pixel_y = 33 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/largecrate/supply/supplies/mre{ + layer = 3.1 }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/supply) -"Jp" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Jl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Jr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) +"Js" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 3; + pixel_y = 13 + }, +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -14; + pixel_y = 16 + }, +/obj/item/storage/box/pdt_kit/advanced, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) "Jt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/alarm/almayer{ @@ -8159,6 +8148,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/briefing) +"Jw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Jx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -8172,33 +8167,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"Jy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/stool{ - pixel_x = -1; - pixel_y = 12 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"JB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) -"JC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) "JE" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -8214,17 +8182,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"JG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "JH" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "89"; @@ -8245,24 +8202,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"JK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"JL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/largecrate/supply/supplies/flares{ - layer = 3.1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "JM" = ( /obj/structure/largecrate/supply/ammo/m41amk1, /obj/structure/largecrate/supply/ammo/m41amk1{ @@ -8302,13 +8241,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"JT" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black/west, -/area/golden_arrow/hangar) "JW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair{ @@ -8317,44 +8249,71 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Kc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/supply) -"Ke" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, +"JX" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"JY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Ka" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Kb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Kd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "Kf" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Kg" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 +"Ki" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/engineering) -"Kh" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Kj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Kk" = ( /obj/structure/bed/chair/comfy, @@ -8382,6 +8341,48 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Kq" = ( +/obj/structure/largecrate/supply/supplies/flares{ + layer = 2.9; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Kr" = ( +/obj/structure/cargo_container/kelland/right{ + opacity = 0 + }, +/obj/structure/cargo_container/kelland/right{ + opacity = 0; + pixel_y = 22 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ks" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Kt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/vehicle_spawner/apc_movie/fixed{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Ky" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -8393,10 +8394,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Kz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "KA" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "23"; @@ -8433,13 +8430,29 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"KJ" = ( +"KF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"KG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"KI" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "KK" = ( /obj/structure/cable{ @@ -8488,6 +8501,13 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"KM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "KO" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ layer = 2.1; @@ -8505,34 +8525,6 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"KQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/secure{ - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"KR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"KS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "KT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -8544,51 +8536,60 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "KV" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KW" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"La" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"KX" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "apc1blastdoor"; + name = "vehicle bay blast door control"; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door_control/brbutton{ + id = "apcbayrailing1"; + name = "vehicle bay railing control"; + pixel_x = 13; + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/hangar) +"KY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"KZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/coffin/woodencrate{ + name = "gym equipment" + }, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/green, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Lc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Lf" = ( -/turf/open/shuttle/elevator, -/area/golden_arrow/supply) -"Lg" = ( -/obj/structure/surface/table/reinforced/prison, +"Le" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/tool/pen{ - pixel_x = -7; - pixel_y = 4 +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) +"Lf" = ( +/turf/open/shuttle/elevator, +/area/golden_arrow/supply) "Lh" = ( /obj/structure/machinery/power/terminal, /obj/effect/decal/cleanable/dirt, @@ -8602,16 +8603,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Ll" = ( +"Li" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Lk" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) "Lm" = ( /obj/effect/decal/siding{ icon_state = "siding2" @@ -8632,39 +8640,35 @@ "Lo" = ( /turf/closed/shuttle/elevator/gears, /area/golden_arrow/supply) -"Lq" = ( -/obj/structure/machinery/light{ - dir = 4 +"Lp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) +"Lv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Lr" = ( /turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"Lt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - closed_layer = 3.3; - dir = 4; - id = "squadblastdoor"; - layer = 3.3; - name = "First Platoon Ready Bay Blast Door"; - open_layer = 3.3 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +"Lw" = ( +/obj/structure/cargo_container/wy/left{ + opacity = 0; + pixel_y = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"Lu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/toy/plush/therapy/red{ + desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days."; + force = 15; + layer = 4.1; + name = "Discharged Huggs"; + pixel_x = 5; + pixel_y = 32; + throwforce = 15 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -8684,12 +8688,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"LA" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"Ly" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = -11; + pixel_y = 9 }, -/turf/open/floor/almayer/plate, +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = 14; + pixel_y = 9 + }, +/obj/structure/largecrate/supply/medicine/medkits{ + layer = 3.1; + pixel_x = 8; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "LC" = ( /obj/effect/decal/cleanable/dirt, @@ -8699,43 +8713,29 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"LD" = ( +"LG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17; - pixel_y = -15 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"LH" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/platoonprep) "LI" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"LJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"LK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case{ + pixel_y = 11 }, -/turf/open/floor/almayer/cargo/southwest, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"LL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"LN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -8748,20 +8748,35 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"LP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/catwalk{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "LQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"LU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"LS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"LT" = ( +/obj/structure/machinery/sleep_console{ + dir = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "LV" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -8774,50 +8789,66 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"LW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/case, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "LX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Ma" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"LY" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"LZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 12; + pixel_y = 18 + }, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_y = 18; + pixel_x = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/item/trash/plate{ + pixel_x = -4; + pixel_y = 7 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Md" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Mf" = ( -/obj/structure/machinery/computer/supply_drop_console/limited/alternate{ - density = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"Mh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"Mg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"Mi" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "Mj" = ( /obj/item/stack/sheet/metal, /obj/item/stack/rods{ @@ -8851,32 +8882,35 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"Mm" = ( -/obj/structure/sink{ - layer = 3.1; - pixel_y = 24 +"Ml" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller{ + pixel_y = 17 }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 35 +/obj/item/roller{ + pixel_y = 23 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 1 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/medical) "Mn" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "80"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"Mr" = ( -/obj/structure/largecrate/supply/medicine/medkits{ - layer = 3.1; - pixel_x = 8; - pixel_y = 24 +"Mo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "Ms" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -8911,28 +8945,37 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Mv" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Mw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +"Mx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"MB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/golden_arrow/cryo_cells) +"Mz" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 }, -/turf/open/floor/almayer/plate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_y = 11 + }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) +"MA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "MC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8947,13 +8990,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"MF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ME" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -2 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "MG" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -8976,27 +9021,23 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"MI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Prep Lockers" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) "MJ" = ( /obj/structure/shuttle/part/dropship1/transparent/lower_left_wing{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"ML" = ( -/obj/item/prop/almayer/comp_open{ - pixel_x = 40; - pixel_y = 4 - }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "4-5"; - layer = 2.8; - name = "cable"; - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +"MK" = ( +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "MM" = ( /obj/effect/decal/cleanable/dirt, @@ -9005,17 +9046,19 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"MN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"MO" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "MQ" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9027,13 +9070,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"MR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 - }, +"MS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "MT" = ( /obj/effect/decal/cleanable/dirt, @@ -9043,13 +9085,6 @@ /obj/structure/janitorialcart, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"MU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "MV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -9070,10 +9105,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"MY" = ( -/obj/structure/machinery/cm_vending/gear/medic_chemical, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "MZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -9082,6 +9113,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"Na" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "Nb" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable{ @@ -9093,100 +9131,73 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Ne" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +"Nd" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/supply) -"Ng" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Nf" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"Ni" = ( -/turf/open/floor/almayer/uscm/directional/up_down/southwest, -/area/golden_arrow/hangar) -"No" = ( -/obj/effect/attach_point/fuel/midway{ - pixel_x = -32 - }, -/turf/closed/shuttle/midway/transparent{ - icon_state = "33"; - name = "\improper Tripoli" - }, -/area/golden_arrow/hangar) -"Np" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/golden_arrow/cryo_cells) -"Nq" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/shuttle/dropship/flight, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"Ns" = ( -/obj/structure/bed/bedroll{ - buckle_lying = null; - can_buckle = 0; - color = "#333333"; - desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; - foldabletype = null; - name = "gym mat"; - pixel_x = -2; - pixel_y = -3 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"Nt" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Nu" = ( -/obj/structure/closet/secure_closet{ - icon_broken = "fridgebroken"; - icon_closed = "fridge"; - icon_locked = "fridge1"; - icon_off = "fridge1"; - icon_opened = "fridgeopen"; - icon_state = "fridge1"; - name = "beverage fridge" - }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_x = 8; - pixel_y = -7 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/platoon_commander_rooms) +"Nj" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc2blastdoor"; + name = "\improper Vehicle Bay Two Blast Door" }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = -1 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Nk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_x = -2; - pixel_y = -4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = -9 +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Nv" = ( +/area/golden_arrow/hangar) +"Nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Nn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "S"; + layer = 3.3 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"No" = ( +/obj/effect/attach_point/fuel/midway{ + pixel_x = -32 + }, +/turf/closed/shuttle/midway/transparent{ + icon_state = "33"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Np" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) "Ny" = ( /obj/structure/surface/table/almayer, /obj/item/notepad/black, @@ -9200,26 +9211,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"Nz" = ( -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/coffee/marine{ - pixel_x = 9; - pixel_y = -3 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "NA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"NC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"ND" = ( +/obj/structure/machinery/door/poddoor/railing, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "NF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/heavyduty{ @@ -9227,92 +9238,66 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"NG" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 33 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"NH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"NI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "NJ" = ( /obj/structure/cargo_container/arious/leftmid, /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"NK" = ( +"NL" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; pixel_x = -1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "NM" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "32"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"NQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/shared_office) -"NR" = ( -/obj/structure/largecrate/supply/weapons/m56d{ - pixel_x = 9; - pixel_y = 10 +"NN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/largecrate/supply/weapons/m56d{ - pixel_x = 9; - pixel_y = 25 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"NP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"NU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/ammunition{ - pixel_x = -18 +"NQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 6 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad One Weapons Locker"; - pixel_y = -4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"NT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"NW" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) "NX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -9395,6 +9380,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) +"Oi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full{ + pixel_y = 12 + }, +/obj/item/storage/belt/utility/full{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Oj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -9404,15 +9401,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ol" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"Ok" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Two Blast Door" - }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Om" = ( +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "Oo" = ( /obj/structure/bed{ @@ -9436,6 +9433,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"Or" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "Ot" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -9443,23 +9448,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonarmory) -"Ou" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Ov" = ( +"Ow" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/photocopier{ - pixel_y = 4 +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = -4; + pixel_y = 14 }, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/item/ashtray/plastic{ + pixel_x = -10; + pixel_y = 3 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Ox" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Oy" = ( /turf/closed/shuttle/midway{ icon_state = "73"; @@ -9477,9 +9484,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"OB" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/platoonarmory) "OD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -9491,6 +9495,10 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"OE" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "OF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -9502,13 +9510,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"OI" = ( -/obj/structure/cable{ - icon_state = "4-8" +"OG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/platoon_commander_rooms) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "OJ" = ( /obj/structure/prop{ can_buckle = 1; @@ -9532,24 +9543,28 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ON" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"OO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1{ + layer = 3.1; + pixel_x = 3; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/obj/item/facepaint/sunscreen_stick{ + layer = 3.2; + pixel_x = -2; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"OP" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2 +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 24; + serial_number = 11 }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/platoonprep) "OQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -9559,51 +9574,35 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"OU" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"OW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"OR" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"OS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing1" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black/west, /area/golden_arrow/hangar) -"OX" = ( +"OT" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"OZ" = ( -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = -11; - pixel_y = 9 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad One Equipment Locker" }, -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = 14; - pixel_y = 9 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) +"OV" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/structure/largecrate/supply/medicine/medkits{ - layer = 3.1; - pixel_x = 8; - pixel_y = 24 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/blackcorner/west, /area/golden_arrow/hangar) "Pc" = ( /obj/structure/barricade/handrail{ @@ -9636,6 +9635,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) +"Pf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Pg" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Ph" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc1blastdoor"; + name = "\improper Vehicle Bay One Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "Pi" = ( /obj/structure/cargo_container/wy/left{ pixel_y = 5 @@ -9643,16 +9666,28 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Pj" = ( +"Pk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/medical) -"Pl" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) +"Pm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Pq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Pr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -9679,6 +9714,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"Pt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/cryo{ + name = "hypersleep semiotic"; + pixel_x = 15; + pixel_y = -26 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Pu" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -9686,27 +9730,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"PA" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +"Pw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"PF" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; - layer = 2.5; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Py" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/engineering) +"PB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "PH" = ( /obj/structure/surface/table/almayer, /obj/item/trash/wy_chips_pepper{ @@ -9715,17 +9762,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"PI" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -29 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) "PJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/storage{ @@ -9778,6 +9814,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"PQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Second Platoon Ready Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "PR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -9788,12 +9834,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"PT" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/engineering) "PV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/crane/cargo{ @@ -9814,20 +9854,26 @@ dir = 10 }, /area/golden_arrow/supply) -"PY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad One Equipment Locker" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) "PZ" = ( /obj/structure/shuttle/part/dropship1/transparent/outer_left_weapons{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"Qc" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"Qd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "Qg" = ( /obj/structure/bed/chair{ dir = 4 @@ -9839,58 +9885,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Qi" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) "Qj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Qk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "Qm" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Qn" = ( +"Qq" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Qo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -12; - pixel_y = 7 - }, -/obj/item/stack/medical/ointment{ - pixel_x = 2; - pixel_y = 12 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Qp" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/no_build/plate, /area/golden_arrow/hangar) -"Qr" = ( -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) "Qs" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/comp_open{ @@ -9898,69 +9908,23 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Qt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Qu" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Qv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Qw" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Qx" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Qy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc2blastdoor"; - name = "\improper Vehicle Bay Two Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"Qz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/supply_drop/echo, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/almayer, /area/golden_arrow/engineering) +"Qu" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Qx" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) "QA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -9971,15 +9935,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"QB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"QC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "QD" = ( /turf/closed/shuttle/midway{ icon_state = "67"; @@ -9989,15 +9944,9 @@ "QE" = ( /turf/open/shuttle/elevator/grating, /area/golden_arrow/supply) -"QG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/hardpoint/locomotion/apc_wheels, -/turf/open/floor/almayer/plate, +"QI" = ( +/turf/open/floor/almayer/uscm/directional/up_down/southwest, /area/golden_arrow/hangar) -"QH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "QJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -10021,24 +9970,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"QL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"QM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "QN" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -10081,6 +10012,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) +"QQ" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/engineering) +"QR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "QS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -10098,25 +10040,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"QV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - density = 0; - pixel_y = 24 +"QT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/medical) +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) +"QU" = ( +/obj/structure/machinery/door/poddoor/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) "QW" = ( /turf/open/floor/almayer, /area/golden_arrow/briefing) -"QX" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoonprep) "QY" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"QZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Ra" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/dartboard{ @@ -10143,20 +10101,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Rh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad Two Equipment Locker" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"Ri" = ( -/obj/structure/closet, -/obj/item/maintenance_jack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) +"Re" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Rj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/wy/right{ @@ -10164,6 +10113,40 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Rk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Rl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoonprep) +"Rm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Rn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -10189,12 +10172,40 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Ru" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" +"Rq" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/floor/almayer/black/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Rs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Rt" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Rw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) "Rz" = ( /obj/structure/machinery/shower{ dir = 4 @@ -10210,18 +10221,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"RD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) "RF" = ( /obj/structure/bed/chair{ dir = 4 @@ -10240,13 +10239,31 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"RI" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 +"RJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoonprep) +"RK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"RL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + buckle_lying = null; + can_buckle = 0; + color = "#333333"; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; + foldabletype = null; + name = "gym mat"; + pixel_x = -2 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "RM" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ name = "\improper Tripoli" @@ -10279,37 +10296,65 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"RO" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +"RP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"RQ" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "RR" = ( /obj/effect/decal/siding, /turf/open/floor/plating, /area/golden_arrow/hangar) -"RS" = ( -/obj/structure/machinery/autodoc_console, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "RT" = ( /obj/structure/shuttle/part/dropship1/transparent/engine_right_exhaust{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"RU" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoonprep) +"RV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"RW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"RX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "RY" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -10340,23 +10385,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Sc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ - locked = 1; - name = "\improper Tripoli cargo door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"Se" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2-8" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Sf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -10364,16 +10392,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Sh" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "Si" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/golden_arrow/supply) -"Sj" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, +"Sk" = ( +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "Sl" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ @@ -10382,14 +10413,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Sn" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"Sm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"So" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/coffee{ + pixel_x = 13; + pixel_y = 29 + }, +/obj/item/trash/candy, +/obj/item/trash/burger, +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Sp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -10400,6 +10448,15 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"Sr" = ( +/obj/item/storage/box/guncase/flamer/special{ + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/surface/rack, +/obj/item/storage/box/guncase/shotguncombat, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) "Ss" = ( /obj/structure/bed/chair{ buckling_y = 10; @@ -10409,23 +10466,24 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"St" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/platoonprep) "Sw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Sx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) "Sy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -10434,18 +10492,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"Sz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"SA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) +"SD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "SE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable{ @@ -10453,23 +10517,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"SH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"SI" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"SL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) "SM" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -10478,13 +10531,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"SN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "SO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -10525,58 +10571,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"SR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"SS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) -"ST" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"SU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"SV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) "SW" = ( /turf/closed/shuttle/midway{ icon_state = "31"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"SX" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black, -/area/golden_arrow/hangar) -"SY" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/supply) "SZ" = ( /obj/structure/barricade/handrail, /obj/structure/reagent_dispensers/fueltank{ @@ -10587,24 +10587,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Ta" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) "Tb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10630,14 +10612,34 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"Tg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"Te" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/golden_arrow/hangar) +"Th" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Tj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Tk" = ( /obj/structure/machinery/prop{ @@ -10650,6 +10652,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Tl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Tm" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -10662,28 +10673,44 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Tp" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"Tq" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"Ts" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8 - }, +"Tn" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/cryo_cells) +"To" = ( +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Tt" = ( /obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"Tv" = ( +/obj/structure/largecrate/supply/weapons/m56d{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/structure/largecrate/supply/weapons/m56d{ + pixel_x = 9; + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Tw" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"Tx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "Ty" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner{ @@ -10704,6 +10731,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"Tz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) "TB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -10711,21 +10746,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"TC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17; + pixel_y = -15 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "TD" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) -"TF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, +"TG" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"TH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) "TI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10757,46 +10801,42 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"TL" = ( +"TM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) +"TO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 3.3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"TP" = ( -/obj/effect/decal/cleanable/blood/oil, +"TS" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) -"TQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "TU" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"TW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"TX" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/obj/item/trash/burger, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "TY" = ( /obj/structure/sign/banners/united_americas_flag{ pixel_x = -16; @@ -10807,28 +10847,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"TZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes_4{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/storage/fancy/cigar/matchbook{ - pixel_x = -1; - pixel_y = 6 +"Ub" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"Ua" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad Two Weapons Locker"; - pixel_y = -4 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/area/golden_arrow/hangar) "Uc" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -10837,43 +10863,44 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Uf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "squadarmory"; - name = "\improper Gear Lockers" +"Ud" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) -"Ug" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/structure/largecrate/random/case{ + pixel_y = 5 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = 15 + }, +/obj/structure/largecrate/random/case{ + pixel_y = -5 + }, +/obj/structure/largecrate/random/mini/small_case{ + layer = 3.1; + pixel_x = 8; + pixel_y = 14 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W" }, -/turf/open/floor/almayer/blackcorner/west, -/area/golden_arrow/hangar) -"Uj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Uk" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "apc2blastdoor"; - name = "vehicle bay blast door control"; - pixel_y = 28 +"Uh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/obj/item/storage/box/cups{ + pixel_x = -1; + pixel_y = 16 }, -/obj/structure/machinery/door_control/brbutton{ - id = "apcbayrailing2"; - name = "vehicle bay railing control"; - pixel_x = 13; - pixel_y = 28 +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Ul" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black/north, /area/golden_arrow/hangar) "Um" = ( /obj/structure/cable/heavyduty{ @@ -10885,15 +10912,6 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonarmory) -"Uo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) "Up" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ req_access = list(); @@ -10905,43 +10923,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"Ur" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Us" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"Ut" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) -"Uu" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/blackcorner, -/area/golden_arrow/hangar) "Uw" = ( /obj/structure/machinery/autolathe, /obj/item/stack/sheet/mineral/phoron/small_stack{ @@ -10955,46 +10936,35 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Uz" = ( +"Uy" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"UE" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) -"UA" = ( -/obj/structure/cargo_container/wy/left{ - opacity = 0; - pixel_y = -17 +"UG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/item/toy/plush/therapy/red{ - desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days."; - force = 15; - layer = 4.1; - name = "Discharged Huggs"; - pixel_x = 5; - pixel_y = 32; - throwforce = 15 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"UB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"UF" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 +/obj/item/stool{ + pixel_x = -1; + pixel_y = 12 }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "UH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -11007,12 +10977,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"UI" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 17" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) "UK" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 @@ -11026,6 +10990,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) +"UO" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Smartgunner"; + pixel_x = -7 + }, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Squad Sergeant"; + pixel_x = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"UP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "UQ" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ @@ -11037,21 +11022,16 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"UU" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Smartgunner"; - pixel_x = -7 - }, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Squad Sergeant"; - pixel_x = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"UV" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "UW" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 2; @@ -11059,42 +11039,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"UY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"UZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/dorms) -"Va" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"Vd" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) "Ve" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11105,6 +11049,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Vg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Vh" = ( /obj/structure/machinery/light{ dir = 4 @@ -11120,10 +11074,6 @@ /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"Vj" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Vn" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ @@ -11134,20 +11084,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Vo" = ( +"Vp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Vr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Vs" = ( /obj/structure/surface/table/almayer, /obj/structure/barricade/handrail{ @@ -11169,6 +11120,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"Vt" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "Vu" = ( /obj/structure/surface/table/almayer, /obj/item/storage/bible{ @@ -11207,64 +11165,108 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Vy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"VA" = ( +/obj/item/stack/catwalk{ + pixel_x = 4 + }, +/obj/item/stack/catwalk{ + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"Vz" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/landinglight/ds1{ - dir = 1 + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "VB" = ( /turf/closed/shuttle/elevator/freight, /area/golden_arrow/supply) +"VC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "VD" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"VE" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"VH" = ( -/obj/structure/closet/secure_closet/smartgunner{ - name = "squad two smartgunner locker"; - req_access_txt = "14;40"; - req_one_access = list() +"VJ" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/blackcorner/north, +/area/golden_arrow/hangar) "VK" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"VL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "VM" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"VN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"VS" = ( +"VO" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) +"VQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"VR" = ( +/obj/structure/fence, +/obj/structure/machinery/door/poddoor/almayer/open{ + closed_layer = 3.3; + dir = 4; + id = "squadblastdoor"; + layer = 3.3; + name = "First Platoon Ready Bay Blast Door"; + open_layer = 3.3 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) +"VT" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony{ + pixel_y = 33 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/supply) +"VU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "VV" = ( /obj/structure/sign/safety/storage{ pixel_x = 9; @@ -11272,6 +11274,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"VX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "VZ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -11279,10 +11286,14 @@ "Wa" = ( /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Wd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/supply) +"Wb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay2door"; + name = "\improper Weapons Bay Two Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "We" = ( /obj/structure/bed{ can_buckle = 0 @@ -11306,32 +11317,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"Wg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "Wh" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/cryo_cells) -"Wk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" +"Wi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonprep) -"Wm" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Wl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Wn" = ( @@ -11341,6 +11341,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Wo" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Wp" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11384,20 +11387,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Wu" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 38 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) "Wv" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffeecup{ @@ -11412,29 +11401,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Ww" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "Wx" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Wz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/cargo_arrow, +"Wy" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "WA" = ( /obj/effect/decal/warning_stripes{ @@ -11482,28 +11458,40 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"WE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "WF" = ( /turf/closed/shuttle/midway{ icon_state = "62"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"WG" = ( +"WH" = ( +/obj/structure/ship_ammo/minirocket, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/ship_ammo/minirocket{ + layer = 3.1; + pixel_y = 9 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) -"WK" = ( +"WJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "WL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -11548,15 +11536,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"WU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"WV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "WY" = ( /obj/effect/decal/warning_stripes{ @@ -11572,6 +11561,20 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"WZ" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/no_build/plate, +/area/golden_arrow/hangar) +"Xa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Xb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -11581,6 +11584,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"Xc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "Xd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -11593,17 +11606,13 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Xh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Emergency Infirmary"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"Xf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Xi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -11617,61 +11626,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"Xm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) -"Xn" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +"Xk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"Xo" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Xp" = ( -/obj/item/reagent_container/food/drinks/milk{ - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 5 +/area/golden_arrow/hangar) +"Xq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" }, -/obj/item/reagent_container/food/drinks/milk, -/obj/structure/closet/secure_closet{ - icon_broken = "fridgebroken"; - icon_closed = "fridge"; - icon_locked = "fridge1"; - icon_off = "fridge1"; - icon_opened = "fridgeopen"; - icon_state = "fridge1"; - name = "beverage fridge" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Xr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Xu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" + dir = 6 }, /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) +"Xs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Xv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -11711,6 +11707,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/briefing) +"XB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "XC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -11727,17 +11734,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"XD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "XE" = ( /obj/structure/machinery/light{ dir = 8 @@ -11764,6 +11760,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"XH" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "XI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -11784,6 +11787,14 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"XL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "XM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -11807,40 +11818,6 @@ }, /turf/closed/wall/almayer, /area/golden_arrow/medical) -"XO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"XQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"XR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "XS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -11848,15 +11825,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"XT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/double, -/obj/item/storage/box/cups{ - pixel_x = -1; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "XU" = ( /obj/structure/curtain/red, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -11864,13 +11832,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"XZ" = ( -/obj/structure/machinery/light{ - dir = 8 +"XW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 4; + pixel_x = -6 }, -/obj/structure/largecrate/random/case, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) +/obj/item/tool/kitchen/knife{ + pixel_x = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"XY" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad Two Weapons Locker"; + pixel_y = -4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "Ya" = ( /obj/structure/prop{ can_buckle = 1; @@ -11895,16 +11876,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Ye" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/platoonarmory) "Yf" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -11936,41 +11907,23 @@ /obj/structure/stairs/perspective, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"Yk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"Yn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Yl" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Yo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/engineering) -"Yr" = ( -/turf/open/floor/almayer, -/area/golden_arrow/platoonprep) -"Ys" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Yt" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer/cargo, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/blackcorner/east, /area/golden_arrow/hangar) +"Yr" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) "Yu" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -11978,16 +11931,9 @@ "Yv" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/synthcloset) -"Yw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Yx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 +"Yy" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -11997,15 +11943,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"YD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 24; - req_access = list() +"YC" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/medical) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/blackcorner, +/area/golden_arrow/hangar) "YF" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/phone_base{ @@ -12035,6 +11985,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) +"YI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "YJ" = ( /turf/closed/shuttle/midway{ icon_state = "104"; @@ -12053,15 +12010,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"YM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) "YP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -12112,25 +12060,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"YV" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 8; - name = "\improper Chemistry Subsection"; - req_one_access = list(); - req_one_access_txt = "8;12" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "YW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump{ @@ -12145,6 +12074,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) +"Za" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Zc" = ( /obj/structure/bed/bedroll{ layer = 3.1; @@ -12183,18 +12134,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Zg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"Zf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -12; + pixel_y = 7 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/item/stack/medical/ointment{ + pixel_x = 2; + pixel_y = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/platoonprep) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Zh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -12227,22 +12179,11 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"Zk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) -"Zn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc1blastdoor"; - name = "\improper Vehicle Bay One Blast Door" +"Zm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) @@ -12253,14 +12194,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Zp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3; - pixel_x = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "Zq" = ( /obj/structure/ladder{ height = -1; @@ -12268,6 +12201,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"Zr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/supply) "Zs" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -12279,10 +12218,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Zt" = ( -/obj/structure/machinery/door/poddoor/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) "Zu" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/straight_razor{ @@ -12301,6 +12236,24 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"Zw" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Zx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "Zz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -12309,13 +12262,29 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"ZA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" +"ZB" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad Two Weapons Locker"; + pixel_y = -4 }, /turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) +"ZC" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"ZD" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 3 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ZE" = ( /obj/structure/bed/chair/office/dark{ @@ -12324,12 +12293,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"ZF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"ZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/cargo/southwest, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) +"ZH" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) "ZI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -12337,24 +12316,11 @@ /obj/item/tool/warning_cone, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ZJ" = ( -/obj/structure/pipes/vents/scrubber{ +"ZM" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"ZL" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "ZN" = ( /obj/structure/cable{ @@ -12372,16 +12338,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ZS" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, +"ZP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"ZQ" = ( +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) +"ZR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/blackcorner/west, -/area/golden_arrow/hangar) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "ZT" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/cable/heavyduty{ @@ -12400,6 +12374,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) +"ZW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "ZX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/walkman{ @@ -12414,6 +12395,32 @@ /obj/item/trash/barcardine, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"ZY" = ( +/obj/structure/closet/secure_closet{ + icon_broken = "fridgebroken"; + icon_closed = "fridge"; + icon_locked = "fridge1"; + icon_off = "fridge1"; + icon_opened = "fridgeopen"; + icon_state = "fridge1"; + name = "beverage fridge" + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = -9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) (1,1,1) = {" EG @@ -16578,29 +16585,29 @@ EG EG EG Wh -wu +sD AK kL AK kL -ik +Zb AK kL AK kL -mR +DX zx -dF +Ey AK kL AK kL -nl +iO AK kL AK kL -Hf +IR Wh EG EG @@ -16730,29 +16737,29 @@ EG EG EG Wh -EZ -sk -BH -hM -sk -AU -sk -BH -hM -sk -HL -mP -WK -Aa -IE -It -It -ON -Aa -IE -It -It -UY +Pq +tH +qC +vH +tH +In +tH +qC +vH +tH +Ka +dD +hz +ZC +yj +Hx +Hx +dr +ZC +yj +Hx +Hx +RP Wh EG EG @@ -16882,29 +16889,29 @@ EG EG EG Wh -Ww -eI -cb -cb -eI -sv -eI -cb -cb -xp -BS -dA -mp -Wg -jU -Wg -fh -kB -Wg -Wg -jU -Wg -pc +ZW +qI +bS +bS +qI +zc +qI +bS +bS +Xr +jX +SA +NL +sL +wc +sL +Rm +Rk +sL +sL +wc +sL +Gt Wh EG EG @@ -17034,7 +17041,7 @@ EG EG EG Wh -aN +BO Bk og Bk @@ -17044,7 +17051,7 @@ Bk Bk og yQ -jo +Pt bx bx bx @@ -17186,7 +17193,7 @@ EG EG EG Wh -od +Bx Sb du NA @@ -17196,13 +17203,13 @@ NA NA kw yQ -aN +BO bx ZX We bx We -GM +uH bx LC RY @@ -17338,17 +17345,17 @@ EG EG EG Wh -aN -aN +BO +BO hq -aN -Xo -oi -ne -aN +BO +bV +hT +cS +BO Og -Yw -aN +dU +BO bx oo mk @@ -17491,15 +17498,15 @@ EG EG Wh og -aN -Ez -aN +BO +yO +BO og og og -bl -br -jw +Mx +xU +fu og bx SQ @@ -17642,17 +17649,17 @@ EG EG EG Wh -UU -aN +UO +BO bm -aN -oU +BO +rh og -oU -aN +rh +BO bm -QH -UU +Tn +UO bx vf Xy @@ -17946,17 +17953,17 @@ EG EG EG Wh -Fo +yZ NA YS Bk -Gw +Di og -Gw +Di NA YS NA -Fo +yZ bx ut bp @@ -18061,7 +18068,7 @@ IC IC IC ua -Yo +ap Zq IC IC @@ -18250,22 +18257,22 @@ Wh Wh Wh Wh -pE -QH -fa -Xm -oU +AF +Tn +IW +TH +rh og -oU -Xm -fa -aN -pE +rh +TH +IW +BO +AF bx Ln KE -rA -lB +AH +eZ We bx ET @@ -18399,25 +18406,25 @@ EG EG EG Wh -Dn -gF +cL +If og og og -yc -sX +JX +li og og og -TQ -Hm +Tx +Mo og og bx bx bx -UZ -oe +or +ii bx bx bx @@ -18515,11 +18522,11 @@ EG IC av PR -Gs -Ys -Ys -Ys -TF +Zx +jF +jF +jF +KF PR Ss IC @@ -18551,33 +18558,33 @@ EG EG EG Wh -Mm -Ou -Kz -VN -wD -BJ -Qr -KU -CL -aN -Xm -Ll -sW +Ar +eE +IQ +PB +aR +Rw +ZQ +VQ +qP +BO +TH +NT +eG cO cO Rz og -zH -be +Im +xu EL UK PP EL Fk -nX -Zt -er +Dw +eT +rX Cm uE oB @@ -18667,11 +18674,11 @@ EG IC pK yW -em +Na yS yS yS -fx +yw rb Zi IC @@ -18703,8 +18710,8 @@ EG EG EG Wh -eF -Qw +FG +kt WR og og @@ -18718,7 +18725,7 @@ jW Bk Bk Bk -QH +Tn og zj mZ @@ -18727,9 +18734,9 @@ UN mZ Ao vQ -jJ -vF -Yk +Gf +QU +sm UN gR oB @@ -18819,11 +18826,11 @@ IC IC GL Qs -OP +XH yS yS yS -IF +ND gt DA IC @@ -18856,10 +18863,10 @@ EG EG Wh fI -HF +xf WR og -rr +iU Ze Np Wq @@ -18868,9 +18875,9 @@ DI As Em dZ -cd +vX FZ -cn +HU og jg Cm @@ -18965,17 +18972,17 @@ EG EG EG IC -jn -Bl -uX +fA +wb +Oi DA DA lU -ui -Ts -rS -Ts -lR +DS +Sh +fB +Sh +UP PR pr Ty @@ -19008,10 +19015,10 @@ EG EG Wh fI -HF +xf WR og -rr +iU jW Bk DI @@ -19022,14 +19029,14 @@ bm Bk Bk NA -aN +BO og -OU +np kQ Hp -fS -Hg -MY +vc +qs +ps CE CE aI @@ -19117,11 +19124,11 @@ EG EG EG IC -mD -SL -di -di -AM +xj +zo +km +km +Ac Zo LQ oP @@ -19163,15 +19170,15 @@ Wh Wh Wh Wh -HH +wW bm Bk Uc Uc db hS -Xu -sW +Mg +eG YH YH zq @@ -19179,10 +19186,10 @@ og QP Cm Hp -KW -iQ -kT -Lg +Wo +EI +KY +Pf CE aI EG @@ -19269,10 +19276,10 @@ EG EG EG IC -lV +LY Co wd -lV +LY DA po jP @@ -19315,14 +19322,14 @@ EG EG EG Wh -Xp +lD bm NA Bk Bk Bk hS -Qn +na og og og @@ -19331,10 +19338,10 @@ og Iz EL CE -En -HM -FA -FD +se +GE +dx +Ow CE aI EG @@ -19421,18 +19428,18 @@ EG EG EG IC -Jm +Zw GQ DP -tX +Hj IC IC IC IC IC IC -EU -nI +yn +Py IC IC IC @@ -19467,15 +19474,15 @@ EG EG EG Wh -Nu +ZY bm NA mO Ro Qm hL -Fq -aN +VU +BO og pF UK @@ -19484,7 +19491,7 @@ YU Cm CE CE -YV +Ib CE CE CE @@ -19573,14 +19580,14 @@ EG EG EG IC -ke +OR mc Lh -tX +Hj IC Yv -vw -GG +dy +mQ Yv IC vK @@ -19619,7 +19626,7 @@ EG EG EG Wh -HH +wW pB HK tB @@ -19627,19 +19634,19 @@ gU gp Nb uK -cM -uY -FB +wa +FX +NC IJ rY QS Cm Hp -Gj -jt -tJ -kW -Tq +vW +rw +mG +yf +hm aI EG EG @@ -19731,12 +19738,12 @@ IC IC IC Yv -DJ +sK ro -Ri +ev IC -Kg -iR +xw +yp IC EG EG @@ -19771,7 +19778,7 @@ EG EG EG Wh -rr +iU Bk Bk Kk @@ -19779,19 +19786,19 @@ Hy Da Bk Bk -cJ -JB -er +Hu +fG +rX QP EL DD EL Hp -aC -jt -hP -nM -gz +Ml +rw +pP +Ks +LT aI aI EG @@ -19923,7 +19930,7 @@ EG EG EG Wh -rr +iU Bk NA mO @@ -19931,20 +19938,20 @@ gW Qm Bk Bk -QH +Tn zx Cm xB Yu df -rT -Xh -IZ -NK -Zp -XQ -KS -tu +Qd +Dh +yk +xe +XL +Ee +uP +sx aI EG EG @@ -20035,7 +20042,7 @@ EG EG Yv xZ -Cy +ot gr oY IC @@ -20083,20 +20090,20 @@ BD Qm Bk NA -QH +Tn zx if WC Cm Cm -mN -HR -fX -Iw -NH -BF -wf -zP +Vt +ka +KG +SD +ZP +hR +hB +BB aI EG EG @@ -20187,9 +20194,9 @@ EG EG Yv qi -Bs +Uy Br -GI +AW IC Fi wj @@ -20228,14 +20235,14 @@ EG EG Wh og -DC -Lq -aN +Fh +Wi +BO EY -QH -fg -QH -kq +Tn +kN +Tn +Am og jD QP @@ -20243,11 +20250,11 @@ EL CE CE CE -QV -hJ -KW -Eh -oh +vV +Vg +Wo +Hn +qU CE aI EG @@ -20382,9 +20389,9 @@ Wh Wh Wh Wh -zB -Yn -py +So +IG +zl og og og @@ -20395,12 +20402,12 @@ LI CE nb XN -Pj -yr -NI -Qo -ns -RI +Ci +Vr +qV +Zf +jy +kk aI EG EG @@ -20492,7 +20499,7 @@ EG EG IC IC -rF +xG pr pq pr @@ -20533,26 +20540,26 @@ EG EG EG Wh -nD -HF -rQ -HF -Fl -AV +gM +xf +Hr +xf +LZ +uV og -CM +lW Bf RZ rk CE nb CE -YD -Qv -Ah -pb -XR -RS +bU +wl +xT +Eu +Fc +nV aI EG EG @@ -20643,23 +20650,23 @@ EG EG EG IC -eq -MF -Yo +dH +Li +ap IC -Yo -nI +ap +Py IC EG EG EG EG EG -UI -UI -UI -UI -UI +Nd +Nd +Nd +Nd +Nd EG EG EG @@ -20685,14 +20692,14 @@ EG EG EG Wh -fl -HF -rQ -HF -HF -HF +Fa +xf +Hr +xf +xf +xf og -Va +MA TB LV YW @@ -20795,8 +20802,8 @@ EG EG EG IC -Mf -Jy +sP +UG wF IC wV @@ -20807,11 +20814,11 @@ EG EG EG EG -UI +Nd gb -UI -UI -UI +Nd +Nd +Nd EG EG EG @@ -20837,12 +20844,12 @@ EG EG EG Wh -zG -aA -vN -nW -Nz -eM +ah +TX +Tl +bi +zV +XW og Dq Ms @@ -20948,22 +20955,22 @@ EG EG IC IC -Qz -PT +JY +nQ IC -sR -sR +QQ +QQ IC EG EG EG EG EG -UI -UI -UI -UI -UI +Nd +Nd +Nd +Nd +Nd EG EG EG @@ -21004,10 +21011,10 @@ aI aI aI IH -Kc +vr hN hN -Kc +vr Lo hl EG @@ -21136,26 +21143,26 @@ EG EG EG DQ -lJ -VH +Gv +wq Ir -sA -ab +AI +yo Ir -qW -IM -Fe -nn +ks +eX +ea +AA Ir Vi og Cm Iz bF -uR -EK -SY -mY +ma +dd +ao +kM hN Lf aG @@ -21288,26 +21295,26 @@ EG EG DQ DQ -Uf -rd +zh +zA Ir -rd -rd +zA +zA Ir -rd -rd -rd -rd +zA +zA +zA +zA Ir Ir Ir MT Iz Ca -nX -EK -Wd -rm +Dw +dd +zM +sd QE Lf Lf @@ -21456,10 +21463,10 @@ Ir ra Iz bF -nX -EK -Wd -rm +Dw +dd +zM +sd QE Lf aG @@ -21603,15 +21610,15 @@ qD Vh Xb sb -dN -iq -Us +Rl +BR +Ft ER bF -NG -EK -Ne -rm +xO +dd +dl +sd QE Lf aG @@ -21737,11 +21744,11 @@ zs jK Dj IV -Fp -Cw -Cw -Cw -Sz +fC +kd +kd +kd +hF YY qx Tb @@ -21755,19 +21762,19 @@ JE Ir Vs bI -iJ -FY -er +RJ +Ed +rX ji mr TD TD TD qK -Jo +VT hN QE -vt +Zr Lo hl EG @@ -21889,13 +21896,13 @@ zs uZ QW oH -TW -lq -kI -DB -Ta -tp -Zg +sC +vO +RX +xg +HG +CA +St Td wU Ir @@ -21905,7 +21912,7 @@ wE Cb wE Ir -tP +Js HT cx zw @@ -22041,13 +22048,13 @@ zs TY QW DO -Mh -kh -La -ZJ -sT +ic +ih +tE +MO +qB YY -mH +mS bI NX Ir @@ -22059,9 +22066,9 @@ JE Ir dc ww -iJ -il -er +RJ +MI +rX Oh Cm eW @@ -22190,14 +22197,14 @@ EG EG EG zs -IB +ZH Xz Ny -LU -Cw -Cw -Cw -Sx +vY +kd +kd +kd +ZR YY hG XM @@ -22211,15 +22218,15 @@ RA Oz cx GH -QX -FY -er +RU +Ed +rX FN -pL +yY eW Ay eW -Ov +yJ mz eW TD @@ -22345,15 +22352,15 @@ zs Jt Iu Yj -yg -Cw -SV -zf -uA +hY +kd +ow +el +AS YY Yr -Gk -Cd +wT +eQ rI FM Yr @@ -22362,12 +22369,12 @@ YL RH Wf Yr -Wk +LG Yr eW Hw Hw -fp +rE eW eW eW @@ -22504,22 +22511,22 @@ YY YY YY VZ -RD -kS +bJ +nc VZ Ir -Ej -cK -Aq -TZ +OO +Be +eC +xK do YK -ai +Dm YK eW Yi tx -OI +Nf tl JI iW @@ -22656,8 +22663,8 @@ bk bk da wQ -Ye -OB +Bq +aq Ps bk bk @@ -22666,7 +22673,7 @@ YK YK do Lx -Bh +tN Fg eW YF @@ -22804,14 +22811,14 @@ EG EG EG HZ -oK -NU +Sr +mb pI Ot Ck Ot Ba -qE +je JR do NQ @@ -22826,7 +22833,7 @@ uk fK Cc MZ -al +oV pU QA QK @@ -22957,17 +22964,17 @@ EG EG HZ CX -gQ +lA qk Cv au Cv qk -PY -iF +OT +eU do Vu -Jk +Ak pl wJ Pu @@ -23109,13 +23116,13 @@ EG EG HZ CX -gQ +lA HY wQ ga wQ Yg -Gd +me HE do rP @@ -23129,23 +23136,23 @@ dz dz dz dz -fP +wL oy -fP +wL kb -fP +wL TU -fP +wL dz AY dz -lp +Re oy -nE +nd kb -pa +iN TU -nE +nd dz dz dz @@ -23271,43 +23278,43 @@ gn bk kb Zc -UA -JL -cZ +Lw +qb +bf vx -yF -yb -jz +HI +NP +us dz AY dz -Ef +To ki -Ef +To kb -Ef +To jY -QB +EB dz AY dz -Ef +To jY -Ef +To kb -Ef +To jY -QB +EB dz AY dz -fE -jC -cZ +rO +tG +bf VD -yx -jC -jT +lr +tG +Dx dz EG EG @@ -23413,23 +23420,23 @@ EG EG HZ zk -Ua +XY QJ Cv ga wQ oI -Dc -bZ +ha +tQ kb cy -wm -Bg -bC +um +Sk +ls jY -tK -xy -fi +Xf +rj +sB dz AY dz @@ -23453,13 +23460,13 @@ pz dz AY dz -OZ -Mr -BQ +Ly +FL +Ap VD -tK -xy -wH +Xf +rj +HC dz EG EG @@ -23565,53 +23572,53 @@ EG EG HZ CX -jh +ZB qk wQ MG Cv qk -Dc +ha ja kb dz -IL -Ha -XO +rL +Jh +qg kG -QL -Ea -Ea +Fx +CH +CH dz AY dz jM -cG +gN VD -wi +WH VD -cG +gN jI dz AY dz xV -cG +gN jY -cG +gN VD -cG +gN OD dz AY dz -NR -JG -Vo +Tv +XB +jV kG -QL -JG -JG +Fx +XB +XB dz EG EG @@ -23716,54 +23723,54 @@ EG EG EG HZ -oK -pd +Sr +kJ Jx Ot aP Ot mI -Rh +lf JM kb im -zt -Au -gw +ib +eB +tw LX -Lu -tb -wH +Cs +MK +HC dz AY dz za -cG +gN VD -jQ +xo jY -cG +gN cR dz AY dz za -cG +gN jY -wi +WH Xe -wi +WH tt dz AY dz -Df -Bg -Ij +fy +Sk +WE RG -Lu -xy -Ef +Cs +rj +To dz EG EG @@ -23870,7 +23877,7 @@ EG HZ HZ kn -Ia +FO ur rl IX @@ -23879,13 +23886,13 @@ fZ bk kb dz -Db -sa -xA +Kr +xv +Nk Gg -WU -oX -Nv +no +Gx +IK dz AY dz @@ -23909,13 +23916,13 @@ YT dz AY dz -cp -CN -FS +Ud +BU +Pw sz -Ur -Ea -Nv +Rs +CH +IK dz EG EG @@ -24022,61 +24029,61 @@ EG EG EG HZ -cF -vs -sI -vs -DL +Dz +gh +ln +gh +Lp bk kb kb dz dz -Sn -fN -EA -fN -fN +UE +Tw +VC +Tw +Tw dz dz AY dz dz -Sn -fN -EA -fN -fN +UE +Tw +VC +Tw +Tw dz dz dz dz dz -Sn -fN -EA -cl -cl +UE +Tw +VC +Kd +Kd dz dz AY dz dz -cl -cl -EA -fN -fN +Kd +Kd +VC +Tw +Tw dz dz EG EG dz -fN -fN -EA -fN -fN +Tw +Tw +VC +Tw +Tw dz EG EG @@ -24174,61 +24181,61 @@ EG EG EG HZ -sQ -sQ -Lt -sQ -sQ +VR +VR +cD +VR +VR bk TJ -LD +TC Iv dz -wX -wX -dO -wX -wX +iV +iV +vJ +iV +iV dz AY AY AY dz -kX -kX -hO -kX -kX +Bb +Bb +GD +Bb +Bb dz -sp +fO jj -ud +zW dz -vk -vk -mt -vk -vk +Wb +Wb +zN +Wb +Wb dz AY AY AY dz -FJ -FJ -Ol -FJ -FJ +Cz +Cz +bH +Cz +Cz dz EG EG EG dz -eY -eY -aD -eY -eY +fQ +fQ +PQ +fQ +fQ dz EG EG @@ -24326,61 +24333,61 @@ dz dz dz dz -lL -fM -Uo -fM -PI +wv +wp +dj +wp +Jg kb nT XF nT dz -jH -ey -JC -fM -FU +zp +Om +VO +wp +qz dz dz dz dz dz -Wu -ey -Vy -fM -fM +mK +Om +gd +wp +wp dz -Qk +fz Cp -rH +rp dz -Ai -fM -JC -fM -ey +is +wp +VO +wp +Om dz dz dz dz dz -Xn -ey -JC -fM -IO +aL +Om +VO +wp +WV dz dz dz dz dz -Xn -fM -VS -ey -IO +aL +wp +dI +Om +WV dz dz dz @@ -24472,68 +24479,68 @@ EG EG dz dz -aH -vy -lu -Jp -le -qt -ST -TL -wg -FC -FC -PF -ST -sy -ST -XD -ST -ST -sy -Mw -ST -Bz -vg -Jp -vg -cT -ST -ST -sy -ST -ST -jd -Ef +Bi +yU +wO +rs +zJ +VL +TO +aK +oq +Ki +Ki +si +TO +eK +TO +WJ +TO +TO +eK +vC +TO +Ub +Kj +rs +Kj +qT +TO +TO +eK +TO +TO +Tj +To xc -Ef -wx -ST -ST -sy -ST -ST -tA -vg -lu -vg -cT -ST -ST -sy -Qt -Qt -Bz -Nt -Jp -nO -cT -ST -ST -sy -ST -Qt -ee +To +jO +TO +TO +eK +TO +TO +oE +Kj +wO +Kj +qT +TO +TO +eK +tR +tR +Ub +aO +rs +jZ +qT +TO +TO +eK +TO +tR +wo kb dz EG @@ -24629,12 +24636,12 @@ qL Wa RF Wa -aZ +LN zD Wp -KR -yT -yT +pp +hk +hk AL bq QN @@ -24656,9 +24663,9 @@ Sw Wa Wa os -QB +EB Cp -zL +ve qh sY sY @@ -24685,8 +24692,8 @@ Xd bg sY SM -lu -lu +wO +wO dz dz EG @@ -24781,12 +24788,12 @@ pN OJ cE Wa -Ff +Jw Wa os -hy +cX OL -lu +wO fY VD hv @@ -24808,9 +24815,9 @@ vq ES zD Ja -eD +tF Ek -Ig +nw TI ES ES @@ -24838,7 +24845,7 @@ vq Id vo DM -SN +Aj kb dz dz @@ -24924,21 +24931,21 @@ dz ni Pi NJ -SU -zS -MR +RK +en +iB Wa aB Wa sO cE Wa -Ff +Jw cE os -hy +cX KO -lu +wO TK ys Xe @@ -24990,10 +24997,10 @@ WT WT JO FE -Ke -UF -zS -Bg +pi +jr +en +Sk gC EG EG @@ -25076,21 +25083,21 @@ dz ni wG Hi -SU -ZA -MR +RK +Xq +iB cE va Ya Wa Wa Wa -Ff +Jw WA gs -Se -gA -hU +Hz +gT +Th QO PN PN @@ -25142,10 +25149,10 @@ sY sY rv RG -ol -xy -zS -Bg +Nn +rj +en +Sk gC EG EG @@ -25228,40 +25235,40 @@ dz ni PW cW -SU -ZA -MR +RK +Xq +iB Wa Rj Ra Wa cE Wa -ul +YI OQ -wC -PA -GF -QM -Gn -jL -GF -hb -Gn -jL -sh -sn -Sj -jL -GF -hb -Gn -PA -GF -hb -Sj -PA -SH +QR +oL +Rq +Gh +ac +Nl +Rq +Rt +ac +Nl +CT +ME +kH +Nl +Rq +Rt +ac +oL +Rq +Rt +kH +oL +QZ cB Wa Wa @@ -25269,35 +25276,35 @@ oW Wa cE nH -xz -lu -cC -lu -lu -lu -lu -cC -lu -lu -lu -ng -lu -cC -cC -cC -lu -lu -lu -lu -cC -lu -xz +ze +wO +Ei +wO +wO +wO +wO +Ei +wO +wO +wO +Gi +wO +Ei +Ei +Ei +wO +wO +wO +wO +Ei +wO +ze Ve gZ -Fn -uo -uv -SS +Xk +Ew +xd +sf Ce EG EG @@ -25380,18 +25387,18 @@ dz Wn lj lj -bt -Tg -Gq +fn +Et +ce DM cE cE Qj Wa Wa -ul +YI OQ -yA +ql yX yX yX @@ -25413,7 +25420,7 @@ yX yX yX yX -hc +lX jN Wa Wa @@ -25421,7 +25428,7 @@ LO Wa Wa os -lu +wO bX Sq Sq @@ -25443,13 +25450,13 @@ Sq Sq MM Ep -lu +wO Ve RG -ol -xy -zS -Bg +Nn +rj +en +Sk gC EG EG @@ -25532,18 +25539,18 @@ dz JJ Wa Wa -as -zS -mf -zY +dg +en +Bd +qd zD WO lj JW zD -nY +yH OQ -Mi +nL yX yX yX @@ -25565,7 +25572,7 @@ yX yX yX yX -Dy +SI jN cE Tk @@ -25573,7 +25580,7 @@ Vn Wa cE os -cC +Ei RR yX PV @@ -25595,13 +25602,13 @@ mv yX yX gu -zz +Fr jp Ky -CD -xy -zS -Bg +GO +rj +en +Sk gC EG EG @@ -25687,15 +25694,15 @@ dz dz dz dz -HS +zu Wa VD jY VD oR -QC +Vp OQ -Uj +Ih yX yX yX @@ -25717,7 +25724,7 @@ yX yX yX yX -nx +Yy cB cE Wa @@ -25725,7 +25732,7 @@ MH Wa Wa os -cC +Ei RR yX yX @@ -25747,10 +25754,10 @@ hX Rc yX kz -dh +FW HP Md -Ma +eV dz dz dz @@ -25836,18 +25843,18 @@ Wa cE cE Wa -as -xa -MR -ZF +dg +ok +iB +cP Wa cE Wa Wa Wa -Ff +Jw OQ -bT +GS yX yX yX @@ -25869,15 +25876,15 @@ yX yX yX yX -dY +uO sM jY -bR -Qp -bR +fo +WZ +fo VD os -cC +Ei RR yX yX @@ -25885,9 +25892,9 @@ yX yX Tt kU -fj -Kh -Qi +an +dC +Qc lo Pd Pd @@ -25899,13 +25906,13 @@ HO cY yX Lm -cC +Ei Zs FE -Ke -xy -xa -mf +pi +rj +ok +Bd Wa cE Wa @@ -25988,18 +25995,18 @@ Wa cE cE Wa -as -KJ -MR -ZF +dg +Zm +iB +cP Wa cE Wa Wa cE -Ff +Jw OQ -yA +ql yX yX yX @@ -26021,15 +26028,15 @@ yX yX yX yX -Vz +xm cB -bR -Ni -xs -IA -bR +fo +QI +qu +vM +fo nH -lu +wO RR yX DN @@ -26037,27 +26044,27 @@ gL Zj BT iA -nZ -uC -RO -mV -sH -XZ -ly -sH -Sc +bA +Te +mC +Dr +gD +LW +lx +gD +yV Rc yX yX yX Lm -lu +wO we RG -ol -xy -xa -mf +Nn +rj +ok +Bd Wa cE cE @@ -26140,18 +26147,18 @@ Wa oR XS XS -Wz -wB -Zk +AT +EM +BE xJ zF GW zF zF VM -HA +fk lE -VE +KI yX yX yX @@ -26173,43 +26180,43 @@ yX yX yX yX -lZ +dq jN -Qp -io -CI -zg -Qp +WZ +ko +qG +hH +WZ nH -xz +ze RR yX aF Dp -Nq -EP -EQ -kj -ML +Wy +Ox +Jc +pS +qX Aw -mE -sH -sH -sH -sH -eS +Xs +gD +gD +gD +gD +so yX yX yX yX Lm -xz +ze we gZ -Fn -uo -oD -mA +Xk +Ew +jv +yv lj lj DY @@ -26292,18 +26299,18 @@ Wa Wa cE cE -as -xa -mf -ZF +dg +ok +Bd +cP Wa rJ Wa Wa cE -Ff +Jw OQ -ae +OE yX yX yX @@ -26325,15 +26332,15 @@ yX yX yX yX -nx +Yy jN -bR -Iq -nK -es -bR +fo +uT +IT +gX +fo os -lu +wO RR yX Vw @@ -26341,27 +26348,27 @@ kl CQ JH Mn -cN -Ab -oF -He -sH -TP -sH -sH -eS +jb +gP +Ex +Al +gD +CB +gD +gD +so yX yX yX yX Lm -lu +wO Ve RG -ol -tb -xa -mf +Nn +MK +ok +Bd cE Wa Wa @@ -26444,18 +26451,18 @@ cE cE cE Wa -as -xa -MR -ZF +dg +ok +iB +cP Wa ZO Wa Wa Wa -Ff +Jw OQ -bT +GS yX yX yX @@ -26477,15 +26484,15 @@ yX yX yX yX -ZL +tj cB VD -bR -Qp -bR +fo +WZ +fo VD nH -lu +wO RR yX yX @@ -26493,9 +26500,9 @@ yX yX Pe FQ -BZ -eP -Vd +qa +TS +iD mg jl jl @@ -26507,13 +26514,13 @@ hu oJ yX Lm -lu +wO jp Ky -CD -tb -xa -mf +GO +MK +ok +Bd Wa Wa Wa @@ -26599,15 +26606,15 @@ dz dz dz dz -HS +zu cE HW VD jY xY -nY +yH OQ -lM +VX yX yX yX @@ -26629,7 +26636,7 @@ yX yX yX yX -hc +lX cB Wa Wa @@ -26637,7 +26644,7 @@ qv Wa Wa os -lu +wO RR yX yX @@ -26659,10 +26666,10 @@ jS sF yX Lm -cC +Ei GU Md -Ma +eV dz dz dz @@ -26748,18 +26755,18 @@ dz Gp Wa Wa -as -zS -mf -LJ +dg +en +Bd +DZ Xd OF sY Xd sY -hs +md OQ -GV +lb yX yX yX @@ -26781,7 +26788,7 @@ yX yX yX yX -hc +lX cB Wa Wa @@ -26789,7 +26796,7 @@ tg Wa Wa os -lu +wO RR Rc yX @@ -26811,13 +26818,13 @@ kf yX yX gu -lu +wO Zs FE -yt -xy -zS -Bg +RV +rj +en +Sk gC EG EG @@ -26900,18 +26907,18 @@ dz CJ US MX -hg -uv -Gq +wZ +xd +ce eJ -jE -iZ -yK -aE -QB -MB +hV +ek +oQ +Lv +EB +Xa OQ -ae +OE yX yX yX @@ -26933,7 +26940,7 @@ yX yX yX yX -Dy +SI jN Wa Wa @@ -26941,7 +26948,7 @@ nh Wa cE os -lu +wO mU Ch Ch @@ -26963,13 +26970,13 @@ Ch Ch Ch Zz -lu +wO Ve RG -ol -tb -zS -Bg +Nn +MK +en +Sk gC EG EG @@ -27052,40 +27059,40 @@ dz ni iE ni -SU -zS -mf +RK +en +Bd os -yh -tC +Kq +zR VD -vG -QB -MB +cz +EB +Xa OQ -Gz -ir -Pl -MU -qM -ir -Ho -Cr -qM -ir -Pl -wr -Wm -eu -Uz -AJ -Wm -eu -Pl -AJ -Wm -ir -lh +Jl +jB +ix +Ok +rz +jB +LP +VA +rz +jB +ix +ZD +UV +hp +vI +iM +UV +hp +ix +iM +UV +jB +yG cB Wa Wa @@ -27093,35 +27100,35 @@ PH cE Wa os -xz -lu -cC -cC -lu -cC -lu -lu -lu -lu -lu -CP -lu -lu -cC -lu -lu -lu -Vj -lu -cC -lu -xz +ze +wO +Ei +Ei +wO +Ei +wO +wO +wO +wO +wO +nt +wO +wO +Ei +wO +wO +wO +BV +wO +Ei +wO +ze Ve gZ -Fn -uo -uv -SS +Xk +Ew +xd +sf gC EG EG @@ -27204,16 +27211,16 @@ dz ni ni ni -SU -ZA -MR +RK +Xq +iB os -Yt -Ng +TG +xq By -Lr -Ef -MB +Pg +To +Xa Rn YA YA @@ -27270,10 +27277,10 @@ YA YA tS RG -ol -tb -zS -Bg +Nn +MK +en +Sk gC EG EG @@ -27356,16 +27363,16 @@ dz ni ni ni -SU -ZA -MR +RK +Xq +iB os -dm -he +GB +mL Jb -Lr -Ef -MB +Pg +To +Xa zy zF zF @@ -27422,10 +27429,10 @@ sY sY Tm Ky -CD -Tp -zS -Bg +GO +ZM +en +Sk gC EG EG @@ -27512,12 +27519,12 @@ wY dz dz sZ -ep -iZ -yK -Lr -QB -cu +go +ek +oQ +Pg +EB +NN zD ES qQ @@ -27544,9 +27551,9 @@ kG ES zD uI -Ig +nw Ek -Ig +nw TI ES ES @@ -27574,7 +27581,7 @@ kG ES aX WL -Af +tZ kb dz dz @@ -27669,7 +27676,7 @@ Ob YA YA YA -cf +Sm Wa Wa Sw @@ -27696,9 +27703,9 @@ Ws Wa Wa nH -tv +KZ Cp -nq +LS dR WT Xv @@ -27725,8 +27732,8 @@ WT Ky WT bn -lu -LA +wO +vB dz dz EG @@ -27816,68 +27823,68 @@ EG EG dz dz -cC -HN -lu -EH -Yx -qq -qw -qw -Il -LL -qw -ba -kP -cC -ny -qq -LL -LL -Il -LL -LL -ba -AD -EH -Yx -gq -LL -LL -Il -LL -LL -vl -ss +Ei +rK +wO +wR +kV +KM +Pm +Pm +hZ +nz +Pm +Wl +HB +Ei +tz +KM +nz +nz +hZ +nz +nz +Wl +oN +wR +kV +Hd +nz +nz +hZ +nz +nz +jc +El vz -QB -OW -Ge -LL -Il -LL -LL -SR -hW -lu -ny -gB -LL -LL -Il -LL -LL -uS -cC -LH -lu -am -LL -LL -Il -LL -LL -SR +EB +OG +uN +nz +hZ +nz +nz +wN +dL +wO +tz +sE +nz +nz +hZ +nz +nz +tc +Ei +yN +wO +Za +nz +nz +hZ +nz +nz +wN kb dz EG @@ -27974,61 +27981,61 @@ dz dz dz dz -Xn -cl -ta -cl -IO +aL +Kd +IU +Kd +WV dz dz dz dz dz -Xn -cl -EA -fN -IO +aL +Kd +VC +Tw +WV dz dz dz dz dz -Xn -fN -EA -fN -FU +aL +Tw +VC +Tw +qz dz -XT +Uh kY -bQ +rN dz -bv -vR -EA -Ns -IO +Dd +RL +VC +sw +WV dz dz dz dz dz -ds -cl -EA -fN -IO +Mz +Kd +VC +Tw +WV dz dz dz dz dz -Xn -fN -EA -cl -IO +aL +Tw +VC +Kd +WV dz dz dz @@ -28126,61 +28133,61 @@ EG EG EG dz -zC -zC -rU -zC -zC +Kb +Kb +qF +Kb +Kb dz EG EG EG dz -tV -tV -tU -tV -tV +xW +xW +Xc +xW +xW dz EG EG EG dz -Zn -Zn -bB -Zn -Zn +Ph +Ph +IS +Ph +Ph dz -vD +ZG iC -af +RQ dz -xR -xR -Qy -xR -xR +Nj +Nj +ca +Nj +Nj dz EG EG EG dz -zC -zC -rU -zC -zC +Kb +Kb +qF +Kb +Kb dz EG EG EG dz -zC -zC -rU -zC -zC +Kb +Kb +qF +Kb +Kb dz EG EG @@ -28278,61 +28285,61 @@ EG EG EG dz -ey -ey -Vy -ey -ey +Om +Om +gd +Om +Om dz EG EG EG dz -ey -ey -Vy -ey -ey +Om +Om +gd +Om +Om dz EG dz dz dz -Eg -ey -Vy -ey -ey +Or +Om +gd +Om +Om dz dz dz dz dz -vv -fM -Vy -fM -fM +Bu +wp +gd +wp +wp dz dz dz EG dz -ey -ey -Vy -ey -ey +Om +Om +gd +Om +Om dz EG EG EG dz -ey -ey -Vy -ey -ey +Om +Om +gd +Om +Om dz EG EG @@ -28448,25 +28455,25 @@ AC dz EG dz -wy -qt -Qt -Qt -sy -Qt -ST -ee -cC +KX +VL +tR +tR +eK +tR +TO +wo +Ei dz -Uk -oS -Qt -ST -sy -Qt -ST -Bz -cC +Dg +CV +tR +TO +eK +tR +TO +Ub +Ei dz EG dz @@ -28600,25 +28607,25 @@ EG EG EG dz -lu -Uu -DT -DT -gl -wP -DT -iS -cC +wO +YC +pJ +pJ +mm +TM +pJ +Yl +Ei dz -cC -eN -YM -Ut -MN -YM -YM -iS -cC +Ei +DG +Pk +Tz +Ev +Pk +Pk +Yl +Ei dz EG EG @@ -28752,25 +28759,25 @@ EG EG EG dz -aj -lv +fv +BN ki VD VD jY jY -lF -ts +Fm +wS dz -WG -vp +MS +Le VD VD VD VD jY -EJ -JK +Jr +Qq dz EG EG @@ -28904,25 +28911,25 @@ EG EG EG dz -UB -lv +Io +BN jY -cC -lu -lu +Ei +wO +wO jY -lF -cC +Fm +Ei dz -cC -vp +Ei +Le VD -lu -cC -lu +wO +Ei +wO Xe -EJ -ci +Jr +LK dz EG EG @@ -29056,25 +29063,25 @@ EG EG EG dz -KQ -lv +zO +BN VD -cC -lu -lu +Ei +wO +wO VD -lF -Gb +Fm +oA dz -cC -vp +Ei +Le VD -lu -cC -lu +wO +Ei +wO jY -EJ -jk +Jr +vU dz EG EG @@ -29208,25 +29215,25 @@ EG EG EG dz -QG -lH +px +ou VD -cC -lk -cC +Ei +Kt +Ei VD -gJ -cC +Fb +Ei dz -cC -sc +Ei +Lk Xe -cC -lu -lu +Ei +wO +wO jY -ry -lu +QT +wO dz EG EG @@ -29360,25 +29367,25 @@ EG EG EG dz -nv -SX +Cl +zK VD -cC -lu -lu +Ei +wO +wO ew -Ru -cC +Ul +Ei dz -rZ -Cg +RW +yd VD -cC -lu -lu +Ei +wO +wO jY -uw -lu +nN +wO dz EG EG @@ -29512,25 +29519,25 @@ EG EG EG dz -cC -SX +Ei +zK VD -lu -lu -lu +wO +wO +wO VD -ym -cC +bs +Ei dz -kc -Cg +uc +yd VD -lu -lu -lu +wO +wO +wO jY -qc -lu +dT +wO dz EG EG @@ -29664,25 +29671,25 @@ EG EG EG dz -NW -SX +mq +zK VD VD jY VD jY -sG -ts +dV +wS dz -mX -Cg +oC +yd VD VD VD jY jY -uw -Mv +nN +De dz EG EG @@ -29816,25 +29823,25 @@ EG EG EG dz -cC -Ug -pt -JT -JT -JT -pT -sl -cC +Ei +OV +bM +pn +pn +pn +OS +VJ +Ei dz -cC -ZS -BA -uf -uf -uf -uf -CF -cC +Ei +GR +hh +iK +iK +iK +iK +wk +Ei dz EG EG @@ -29968,25 +29975,25 @@ EG EG EG dz -co -lu -lu -cC -lu -cC -cC -cC -cC +it +wO +wO +Ei +wO +Ei +Ei +Ei +Ei dz -OX -cC -cC -cC -lu -lu -cC -cC -cC +qS +Ei +Ei +Ei +wO +wO +Ei +Ei +Ei dz EG EG diff --git a/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm index 658ff77e06..241a0d4f04 100644 --- a/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm +++ b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm @@ -1,71 +1,59 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ad" = ( -/obj/structure/machinery/light, -/obj/structure/target{ - name = "ready line Ronald" +"ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -16; + pixel_y = 30 }, -/obj/item/clothing/suit/storage/marine/heavy/smooth, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"af" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"ag" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, /area/golden_arrow/briefing) -"ah" = ( +"ae" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, /obj/effect/decal/cleanable/dirt, -/obj/item/tool/warning_cone{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"al" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"af" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"am" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"aj" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap, +/obj/item/tool/soap{ + pixel_y = 4; + pixel_x = 6 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/obj/item/tool/soap{ + pixel_y = -5; + pixel_x = -5 }, +/obj/item/tool/soap, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"an" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"aq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/area/golden_arrow/cryo_cells) +"au" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"ar" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"av" = ( +/obj/structure/target, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) "aw" = ( /obj/structure/sign/safety/storage{ pixel_x = 9; @@ -73,21 +61,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ax" = ( -/obj/structure/cargo_container/arious/mid, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ay" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 12; - pixel_y = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "aA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/platform/stair_cut, @@ -97,31 +70,25 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"aB" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"aG" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"aI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, +"aC" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 1 + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"aF" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 12 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/canteen) +"aH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/platoon_sergeant) "aJ" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -134,26 +101,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"aN" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) +"aK" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"aM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "aO" = ( /obj/item/prop/colony/game, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"aQ" = ( -/obj/structure/sign/safety/galley{ - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"aS" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 17" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) "aT" = ( /obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; @@ -171,12 +138,29 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"aX" = ( -/obj/structure/platform_decoration{ +"aY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/supply) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"aZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ba" = ( /obj/item/tool/warning_cone{ pixel_x = 4; @@ -185,159 +169,172 @@ /obj/item/stool, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/synthcloset) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"bf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"bg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) "bh" = ( /obj/effect/landmark/start/marine/leader/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"bl" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/firingrange) -"bo" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"bq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"bj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"br" = ( +"bk" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"bl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/firingrange) +"bp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"bs" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, /obj/structure/closet/secure_closet/marine_personal{ pixel_x = 8 }, /obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 + pixel_x = -8; + job = "Smartgunner" }, /turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"bu" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, +"bt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"bw" = ( -/obj/structure/curtain/red, +"bx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"by" = ( +/area/golden_arrow/hangar) +"bC" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"bB" = ( -/obj/effect/decal/cleanable/dirt, +"bF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"bD" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"bJ" = ( +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 7; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"bL" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Corpsman"; - has_cryo_gear = 0 +/obj/item/prop/helmetgarb/gunoil, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 }, -/obj/item/clothing/shoes/marine/knife, -/obj/item/device/radio/headset/almayer/marine, -/obj/item/clothing/under/marine/medic, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "bO" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_one_access = list() }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"bQ" = ( +"bP" = ( /obj/structure/machinery/landinglight/ds1{ - dir = 1 + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"bR" = ( -/obj/structure/bed/chair/comfy, +"bU" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"bV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"bS" = ( -/obj/structure/platform/stair_cut/alt, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/golden_arrow/platoon_commander_rooms) +"bY" = ( +/obj/structure/machinery/conveyor{ + dir = 10 }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"bZ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supply) "ca" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) -"ce" = ( +"cb" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"cf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"ch" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "cj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -351,124 +348,59 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"cl" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, +"cn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"co" = ( -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) -"cp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"cr" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"cs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"ct" = ( +/area/golden_arrow/briefing) +"cu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"cw" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"cv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/engineering) -"cy" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1, -/obj/item/ammo_magazine/rifle/m41aMK1/heap{ - desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contained High-Explosive Armor-Piercing bullets. It also has some... notches on the side..?"; - current_rounds = 0; - pixel_y = 6; - pixel_x = 13 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"cz" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"cA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;40"; - req_one_access = list() - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) "cB" = ( /obj/structure/machinery/camera/autoname/golden_arrow, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cD" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/storage/box/co2_knife{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"cG" = ( +"cF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "SW-out"; + pixel_x = -1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"cH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"cJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"cL" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/prep_hallway) +"cM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/flare{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "cR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -482,92 +414,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"cS" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Platoon Medic Office"; - req_one_access = list(); - req_one_access_txt = "8" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) "cT" = ( /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"cU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"dc" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"cV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/pumpshotgun/special, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"cZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"dd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/notepad, +/obj/item/maintenance_jack, +/obj/structure/closet, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"de" = ( +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/storage/photo_album, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"dh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) +"do" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"dg" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"di" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"dj" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"dl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/coffee{ - pixel_x = -19 +/area/golden_arrow/hangar) +"dq" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/machinery/vending/cigarette, +/obj/structure/platform, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"dm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"dn" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/area/golden_arrow/briefing) "dr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -584,155 +469,201 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"dt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"dw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"dv" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"dA" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"dB" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"dE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/dorms) +"dx" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Private Briefing Room"; + req_access = list(); + req_one_access_txt = "12;19;32" }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"dG" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"dy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"dH" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, +"dz" = ( +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander"; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_state = "cabinetdetective_locked"; + icon_opened = "cabinetdetective_open"; + icon_off = "cabinetdetective_broken"; + has_cryo_gear = 0 + }, +/obj/item/clothing/under/marine/officer/boiler, /turf/open/floor/almayer/plate, /area/golden_arrow/platoon_commander_rooms) +"dI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "dJ" = ( /turf/open/floor/plating, /area/golden_arrow/hangar) -"dO" = ( +"dK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"dP" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"dQ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "dX" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"ea" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"eh" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = -5 +"ee" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"ek" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) -"eo" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"eu" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"eg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"ei" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"el" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"ep" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/synthcloset) -"eB" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"eq" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"ev" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"eH" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"eJ" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"eL" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"eR" = ( +/area/golden_arrow/prep_hallway) +"ex" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;39"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"ez" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"eE" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"eK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) +"eM" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"eP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 10 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "eT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -753,37 +684,46 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"eU" = ( +"eV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"eW" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"eY" = ( -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) -"fe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ff" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"eX" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, +/obj/structure/sign/safety/terminal{ + pixel_x = -20 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"fa" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"fg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional/southwest, /area/golden_arrow/briefing) +"fb" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "fh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -793,115 +733,108 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"fl" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "fm" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/engineering) -"fo" = ( +"fu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"fA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"fB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + pixel_x = -1; pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"fp" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"fq" = ( -/obj/structure/machinery/conveyor{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) -"ft" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"fv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/golden_arrow/canteen) +"fD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"fx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"fy" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"fE" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + pixel_x = -30 }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"fH" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;39" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"fF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/squad_one) +"fK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;39" }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"fJ" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"fN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;39"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"fL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"fO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list(); - req_one_access_txt = "8" + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) +"fU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;40"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"fV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "fW" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/machinery/alarm/almayer{ @@ -909,64 +842,61 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"fX" = ( -/obj/effect/decal/cleanable/dirt, +"ge" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"fY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = list() +/obj/item/clothing/ears/earmuffs{ + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"gd" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/item/device/walkman{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "gf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"gg" = ( -/obj/effect/decal/cleanable/dirt, +"gi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"gk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -7; + pixel_y = 9 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"gh" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"gl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"go" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"gn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/golden_arrow/synthcloset) -"gp" = ( -/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) +/area/golden_arrow/canteen) "gq" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -974,127 +904,68 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"gt" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +"gs" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"gw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"gx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"gB" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"gz" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"gA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"gB" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"gD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "gE" = ( /turf/closed/wall/almayer, /area/golden_arrow/supply) -"gG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"gH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"gI" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight/lamp/on{ - pixel_y = 13 +"gJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 }, -/obj/item/weapon/straight_razor{ - pixel_x = 4; - pixel_y = -6 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"gL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"gX" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/golden_arrow/briefing) +"hb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"gM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"gQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"gS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) -"gT" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) -"gW" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"ha" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/hangar) "he" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"hk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, +"hh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"ho" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 +"hm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "hq" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -1108,6 +979,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) +"hs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "hy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1115,12 +992,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"hA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "hC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -1137,171 +1008,176 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) -"hD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"hE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "hF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"hG" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"hL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/sign/safety/electronics{ - pixel_x = 31; - pixel_y = 6 +"hH" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 31; +/obj/item/weapon/straight_razor{ + pixel_x = 4; pixel_y = -6 }, -/obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/platoon_sergeant) +"hJ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) "hM" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/firingrange) -"hN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"hQ" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"hP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 29 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"hR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "hS" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"hU" = ( +"hT" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 12; + pixel_y = 29 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 - }, -/obj/item/device/flashlight{ - pixel_x = -4; - pixel_y = 7 + pixel_y = 1 }, -/obj/item/tool/warning_cone, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"hX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"hW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"ie" = ( +/obj/item/prop/magazine/book/bladerunner, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 2; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"hY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/light, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"if" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"ik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"hZ" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"ia" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_two) +"ic" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 14; + pixel_y = -28 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"il" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"id" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"ip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" +"ig" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) -"iy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"ii" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"ij" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"im" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"io" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"iq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"ir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"is" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"iv" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"iw" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "iA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"iC" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -25 - }, -/obj/structure/sign/safety/west{ - pixel_x = 3; - pixel_y = -25 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) "iE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -1312,11 +1188,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"iG" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) +"iI" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "iK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -1333,106 +1211,75 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"iN" = ( +"iM" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"iQ" = ( -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/briefing) +"iO" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"iR" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"iX" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"jb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"jc" = ( -/obj/structure/closet/firecloset, +/area/golden_arrow/canteen) +"iU" = ( +/obj/structure/largecrate/supply/supplies/water, /turf/open/floor/almayer/cargo, -/area/golden_arrow/prep_hallway) -"je" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"jf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/engineering) +"iW" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) -"jg" = ( +"iY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"jj" = ( +/obj/structure/prop/almayer/hangar_stencil, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"jl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/area/golden_arrow/hangar) +"ja" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"jh" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"jm" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"ju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"js" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"jv" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Corpsman"; + has_cryo_gear = 0 }, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; +/obj/item/clothing/shoes/marine/knife, +/obj/item/device/radio/headset/almayer/marine, +/obj/item/clothing/under/marine/medic, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"jw" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"jx" = ( +/obj/structure/largecrate/supply/explosives/grenades/less, +/obj/structure/largecrate/supply/motiondetectors{ pixel_y = 10 }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) -"jt" = ( -/obj/structure/target, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) "jy" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/computer/station_alert{ @@ -1442,6 +1289,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/synthcloset) +"jA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"jB" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "jD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1451,160 +1309,167 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"jG" = ( +"jE" = ( +/obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"jN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"jO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/area/golden_arrow/canteen) +"jL" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ + density = 0 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"jQ" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/cargo, +/area/golden_arrow/platoon_sergeant) +"jP" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" + }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) +"jR" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "jS" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"jU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"jX" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"jV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list() +/area/golden_arrow/cryo_cells) +"jY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"kg" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/briefing) -"kh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"kk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/golden_arrow/prep_hallway) +"kc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional/southwest, +/area/golden_arrow/briefing) +"ke" = ( +/obj/structure/closet/wardrobe{ + name = "PT uniform" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, +/obj/item/clothing/under/shorts/red, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"ko" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = -5 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = 5 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"ks" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"km" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"kq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"kt" = ( +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"kr" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) "kw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"kB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, +"kx" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"kF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ky" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 9 +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"kz" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"kA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Smartgunner" + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Smartgunner" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"kH" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 1 +/area/golden_arrow/dorms) +"kB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/almayer, /area/golden_arrow/engineering) +"kG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "kI" = ( /obj/structure/machinery/light{ dir = 8 @@ -1614,6 +1479,20 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"kJ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"kN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "kO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -1621,6 +1500,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) +"kQ" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"kR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) "kS" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) @@ -1631,62 +1527,74 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"kV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"kW" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, -/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"kX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"lc" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap, -/obj/item/tool/soap{ - pixel_y = 4; - pixel_x = 6 - }, -/obj/item/tool/soap{ - pixel_y = -5; - pixel_x = -5 +"kY" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"lb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/item/tool/soap, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"ld" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"lg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) +"le" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/synthcloset) +"lf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "lh" = ( /obj/structure/machinery/floodlight/landing, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"lm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, +"lk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"ln" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "lo" = ( /obj/effect/decal/warning_stripes{ @@ -1696,25 +1604,64 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"ly" = ( +"lp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"lr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/shotguncombat, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"lt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"lA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"lB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"lw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"lx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"ly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"lC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"lD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) "lE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1722,38 +1669,91 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"lG" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"lK" = ( +"lH" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 +/obj/structure/machinery/recharger{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"lQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) +"lI" = ( +/obj/structure/closet/crate/supply, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"lL" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 7; + pixel_y = -28 + }, +/obj/structure/reagent_dispensers/ammoniatank, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"lN" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "lS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"lV" = ( +"lT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"lU" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;39" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"lW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/canteen) +"ma" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "mb" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -1761,19 +1761,6 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) -"mc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"me" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Briefing Room"; - req_access = list() - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/briefing) "mf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -1784,13 +1771,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) -"mk" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/briefing) -"ml" = ( -/obj/structure/ship_ammo/minirocket, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +"mg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"mj" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "mm" = ( /obj/structure/cargo_container/lockmart/mid{ layer = 3.1; @@ -1798,120 +1788,146 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"mo" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"ms" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/prep_hallway) -"mB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"mq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/obj/structure/prop/almayer/hangar_stencil, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"mD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;39" +"mt" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/golden_arrow/briefing) +"mu" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"my" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/squad_one) -"mR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"mW" = ( -/obj/structure/machinery/landinglight/ds1, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"mY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"mz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"mA" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"mZ" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"mC" = ( +/obj/structure/machinery/power/apc/almayer/east, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"mL" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/droppouch, /turf/open/floor/almayer/test_floor5, /area/golden_arrow/supply) -"nb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad Two Armoury"; - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer/test_floor4, +"mR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, /area/golden_arrow/squad_two) -"nd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"mS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"mT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"mV" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Platoon Medic Office"; + req_one_access = list(); + req_one_access_txt = "8" }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"mX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"na" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ng" = ( +"nc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/obj/structure/machinery/light, -/obj/structure/largecrate, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"nm" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"nn" = ( +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"ni" = ( +/area/golden_arrow/hangar) +"np" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"nj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Smartgunner" +/area/golden_arrow/platoon_sergeant) +"ns" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"nt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Smartgunner" +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"nv" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"nm" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 +/area/golden_arrow/canteen) +"nw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"nx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) +/area/golden_arrow/hangar) "ny" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -1923,163 +1939,157 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"nD" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +"nz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"nC" = ( +/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"nF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/golden_arrow/hangar) +"nE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/power/apc/almayer/north, /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "nG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"nH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/prep_hallway) -"nK" = ( +"nO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"nL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"nM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/banners/united_americas_flag{ - pixel_x = -16; - pixel_y = 30 +/obj/structure/sign/safety/synth_storage{ + pixel_x = -20 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"nN" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"nR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/area/golden_arrow/prep_hallway) +"nP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = 12 }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"nT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 }, -/obj/structure/cargo_container/wy/right, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = 24 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"nV" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -7; + pixel_y = 14 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) +"nU" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "nY" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"oa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 +"nZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"oe" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"og" = ( -/obj/structure/machinery/light{ - dir = 1 +"oc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"oh" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"ol" = ( -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional/logo_c/west, /area/golden_arrow/briefing) -"oo" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = list() - }, +"of" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, /turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"or" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supply) -"ot" = ( -/obj/structure/largecrate/supply/ammo{ - name = "sentry crate"; - fill_from_loc = 1 +"oi" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"op" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/prep_hallway) +"oq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/ammo_magazine/sentry{ - layer = 3.01 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"os" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/obj/item/defenses/handheld/sentry, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/soap, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ow" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"ou" = ( -/turf/open/floor/almayer_hull/outerhull_dir/north, /area/golden_arrow/hangar) -"ov" = ( -/obj/structure/machinery/light{ - dir = 1 +"ox" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 30 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Platoon Sergeant" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "oA" = ( /obj/structure/machinery/shower{ dir = 8 @@ -2088,105 +2098,137 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"oC" = ( -/obj/structure/plasticflaps, -/obj/structure/machinery/conveyor{ - dir = 8 +"oE" = ( +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) -"oH" = ( +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"oF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oG" = ( /obj/structure/machinery/light{ dir = 4 }, +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"oJ" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 +/area/golden_arrow/firingrange) +"oO" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"oK" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) -"oL" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"oP" = ( +/obj/structure/machinery/light, +/obj/structure/target{ + name = "ready line Ronald" }, +/obj/item/clothing/suit/storage/marine/heavy/smooth, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"oM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +/area/golden_arrow/hangar) +"oV" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 +/obj/item/trash/ceramic_plate{ + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 23 }, /turf/open/floor/almayer/plate, /area/golden_arrow/canteen) -"oO" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, +"oY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"oQ" = ( -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 7; - pixel_y = 6 +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 13 }, -/obj/item/prop/helmetgarb/gunoil, -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/canteen) +"pa" = ( +/obj/structure/ladder{ + height = 1; + id = "req1" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"oW" = ( -/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"pc" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"oX" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) +"pe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Sergeants Room"; + req_one_access_txt = "12;32" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) "pf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/heap/empty, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) +"pi" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) "pl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"pt" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" +"pp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"pr" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"ps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"pu" = ( +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"pv" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, /area/golden_arrow/prep_hallway) "pw" = ( /obj/effect/decal/cleanable/dirt, @@ -2198,54 +2240,52 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"pB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"pD" = ( +"px" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"py" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"pC" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) "pF" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"pG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "pJ" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer/outer, /area/golden_arrow/squad_one) -"pO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +"pL" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "pR" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"pS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) +"pT" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"pV" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "pW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -2253,12 +2293,9 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"pZ" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/prep_hallway) -"qa" = ( +"pX" = ( /turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/squad_one) +/area/golden_arrow/prep_hallway) "qc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2266,81 +2303,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"qf" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"qe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms" }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"qh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) +"ql" = ( /obj/structure/machinery/light{ dir = 4 }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"qi" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"qm" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"qu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" +"qr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"qt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/briefing) +/obj/structure/machinery/light, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "qv" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"qw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"qz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) "qA" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_sergeant) -"qD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 +"qB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) +/area/golden_arrow/canteen) "qE" = ( /obj/structure/barricade/metal{ dir = 8 @@ -2351,265 +2363,297 @@ }, /turf/open/floor/almayer, /area/golden_arrow/firingrange) -"qI" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, +"qF" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"qH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"qQ" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoon_sergeant) -"qR" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"qT" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/golden_arrow/briefing) -"qU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"qW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"rb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"qO" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, /turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) -"rd" = ( -/obj/structure/closet/wardrobe{ - name = "PT uniform" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/head/headband/red, -/obj/item/clothing/under/shorts/red, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"rf" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +"qU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"qY" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"qZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/dorms) +"ra" = ( +/obj/structure/cargo_container/arious/mid, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"rh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"rk" = ( +"rj" = ( /obj/structure/cargo_container/arious/left, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"rl" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/golden_arrow/briefing) -"ro" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"rq" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"rr" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/golden_arrow/briefing) -"rt" = ( +"rm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"rs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"rx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/area/golden_arrow/cryo_cells) +"ru" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ry" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"rA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/janitorialcart, -/obj/item/tool/mop{ - pixel_x = -1; - pixel_y = -10 +"rC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"rH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"rI" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 28; - pixel_y = 5; - serial_number = 12 +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"rG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - pixel_x = 32; - serial_number = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 6; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/briefing) "rJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/briefing) +"rK" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "rM" = ( /obj/structure/cargo_container/wy/mid, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"rV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional, -/area/golden_arrow/briefing) -"rX" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Squad Sergeant" +"rN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad{ + pixel_x = -7; + pixel_y = 2 }, -/obj/structure/closet/secure_closet/marine_personal{ +/obj/item/storage/firstaid/toxin{ pixel_x = 8; - job = "Squad Sergeant" + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"rZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"rQ" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"sa" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/supply_drop_console/limited/alternate, /turf/open/floor/almayer/plate, /area/golden_arrow/supply) -"sc" = ( +"rT" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"rV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional, +/area/golden_arrow/briefing) +"rW" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoon_sergeant) +"sb" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"sd" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"se" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = -10 + }, +/obj/item/storage/box/cups{ + pixel_x = 11; + pixel_y = -9 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/canteen) "sf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"sg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/dorms) -"sk" = ( -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"sm" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/golden_arrow/briefing) -"so" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"sv" = ( +"sh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"sy" = ( +/area/golden_arrow/hangar) +"si" = ( +/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"sl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"sp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"sC" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/platoon_sergeant) -"sE" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"sI" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/cryo_cells) -"sN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"sr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/prep_hallway) -"sO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, +"st" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"su" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/firingrange) +"sw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_two) +"sz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/canteen) +"sA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"sC" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_sergeant) +"sH" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/briefing) +"sI" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/cryo_cells) +"sJ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "sR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair{ @@ -2617,87 +2661,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"sS" = ( +"sT" = ( /obj/structure/surface/table/almayer, +/obj/item/device/megaphone, /turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"sU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "sV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) -"sX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"sY" = ( -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/service/tanker, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Commander"; - icon_broken = "cabinetdetective_broken"; - icon_closed = "cabinetdetective"; - icon_locked = "cabinetdetective_locked"; - icon_state = "cabinetdetective_locked"; - icon_opened = "cabinetdetective_open"; - icon_off = "cabinetdetective_broken"; - has_cryo_gear = 0 - }, -/obj/item/clothing/under/marine/officer/boiler, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"tb" = ( -/obj/structure/sign/safety/firingrange{ - pixel_x = -24; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -24; - pixel_y = -7 +"sZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/hangar) "tf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/firingrange) -"ti" = ( -/obj/effect/decal/cleanable/dirt, +"tj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer/dark_sterile, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) +"tk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "to" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder{ layer = 2.1 @@ -2707,12 +2720,27 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"tp" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"tq" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/briefing) "tr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"tt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "tv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" @@ -2735,59 +2763,106 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) +"tz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "tA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"tB" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"tS" = ( +"tC" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;40" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) -"tT" = ( +"tD" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"tV" = ( -/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"tE" = ( +/obj/structure/machinery/cryopod, /turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"tX" = ( +/area/golden_arrow/cryo_cells) +"tN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"ua" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 +"tP" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"tU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -5; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"ue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ub" = ( -/obj/structure/machinery/light, +"uh" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"uj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/canteen) -"ug" = ( +"uk" = ( +/obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; + dir = 8; name = "ship-grade camera" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "um" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/firealarm{ @@ -2796,47 +2871,25 @@ /obj/structure/machinery/faxmachine/uscm/command/capt, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"uo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) -"up" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"uq" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"ur" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) +/area/golden_arrow/hangar) "us" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -2844,6 +2897,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"ut" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "uu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -2852,51 +2909,54 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"uw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"uA" = ( -/obj/structure/machinery/light, +"uv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"uE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"uB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 10 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"uF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +/area/golden_arrow/engineering) +"uC" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "uG" = ( /obj/item/tool/warning_cone, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"uH" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 +"uI" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"uK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"uL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "uO" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -2913,16 +2973,10 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"uQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +"uR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "uS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -2930,10 +2984,35 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"uX" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/almayer/test_floor5, +"uT" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) +"uU" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"va" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) "vb" = ( /obj/structure/surface/table/reinforced/almayer_B{ layer = 2.0; @@ -2941,13 +3020,17 @@ }, /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"vc" = ( -/obj/structure/machinery/light{ - dir = 1 +"vd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/test_floor5, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) +"ve" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_two) "vg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -2959,18 +3042,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"vk" = ( +"vl" = ( +/obj/structure/target, /obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/briefing) -"vo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"vn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) "vp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -2983,30 +3066,51 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"vt" = ( -/obj/structure/machinery/power/apc/almayer/north, +"vq" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"vr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"vw" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"vA" = ( +/area/golden_arrow/briefing) +"vx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access_txt = "12" - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"vB" = ( +/area/golden_arrow/firingrange) +"vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "S" }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"vC" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"vF" = ( -/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/squad_two) "vG" = ( /obj/structure/machinery/power/terminal{ @@ -3024,196 +3128,117 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"vJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"vI" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"vM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"vU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"wb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_x = -1; pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"vK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"wf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/obj/item/storage/toolbox/electrical, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) -"vL" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19 - }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"wh" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"wk" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, /area/golden_arrow/prep_hallway) -"vN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"vP" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"vS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"vU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"wa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"wc" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"wd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"wi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "wl" = ( /turf/open/floor/almayer, /area/golden_arrow/dorms) +"wm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "wn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"wp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"wx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"ws" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 30 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/item/device/walkman{ - pixel_x = 4; - pixel_y = -6 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"wI" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"wJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +"wu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/prop/magazine/book/bladerunner, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 2; - pixel_y = 18 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"wv" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/golden_arrow/briefing) +"ww" = ( +/obj/structure/barricade/plasteel{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"wK" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"wA" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wN" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, +/area/golden_arrow/squad_two) +"wO" = ( /turf/open/floor/almayer/plate, -/area/golden_arrow/synthcloset) +/area/golden_arrow/squad_one) +"wR" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "wS" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"wV" = ( +"wU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Platoon Sergeant's Bunk"; @@ -3222,10 +3247,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoon_sergeant) -"wX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) "xf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -3234,90 +3255,77 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xm" = ( +"xj" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"xk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/engineering{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"xo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/engineering) +"xl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/plate, /area/golden_arrow/prep_hallway) +"xs" = ( +/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"xu" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) "xx" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"xz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, +"xy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) -"xB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 6 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"xJ" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"xK" = ( +"xA" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"xC" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"xD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"xM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"xG" = ( +/obj/structure/ship_ammo/minirocket/incendiary, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"xH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"xQ" = ( +/obj/structure/machinery/power/apc/almayer/north, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/galley{ - pixel_x = -19 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"xX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/dorms) -"yc" = ( +/area/golden_arrow/briefing) +"xI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, @@ -3327,58 +3335,71 @@ }, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"ye" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/engineering) -"yg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/supply_drop/echo, +"xN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer/test_floor5, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) -"yj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" +"xP" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"xS" = ( +/obj/structure/machinery/conveyor{ + dir = 9 }, -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"yo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/status_display{ - pixel_y = -30 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"xT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"xU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"ys" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"yt" = ( -/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"xV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoon_sergeant) -"yv" = ( +"xZ" = ( +/obj/structure/closet/secure_closet/platoon_sergeant, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"yd" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"yw" = ( -/obj/item/toy/deck/uno, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"yx" = ( +"ye" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/engineering) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/galley{ + pixel_x = -19 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"yl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -3386,26 +3407,90 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"yy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"yA" = ( +"yq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;39"; - req_one_access = list() +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"yw" = ( +/obj/item/toy/deck/uno, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"yB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 28; + pixel_y = 5; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_x = 32; + serial_number = 16 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 6; + pixel_y = 16 }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"yF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"yD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"yE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yG" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"yH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "yJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -3420,26 +3505,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"yL" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/obj/structure/gun_rack/m41, -/obj/item/ashtray/plastic{ - pixel_y = 14; - pixel_x = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"yM" = ( +"yK" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"yN" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = -9; - pixel_y = -3 - }, +/obj/item/storage/belt/utility/full, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) +/area/golden_arrow/engineering) "yO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -3447,102 +3522,166 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"yT" = ( +"yP" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"yS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) "yU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/supply) -"yY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"yZ" = ( -/obj/structure/machinery/light{ +"yV" = ( +/obj/structure/machinery/computer/cryopod{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"za" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"zk" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_one_access = list(); - req_one_access_txt = "8;12;39" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"zl" = ( -/obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/engineering) -"zn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +"yX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"zt" = ( -/obj/structure/machinery/light{ - dir = 8 +"yY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"zv" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"zb" = ( /turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"zy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"zA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/platoon_commander_rooms) +"zd" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"zD" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"zG" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"ze" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"zI" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/mop{ - pixel_x = -9; +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"zf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"zi" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"zj" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"zm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -9; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"zs" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"zu" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"zy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"zC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"zG" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zI" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/mop{ + pixel_x = -9; pixel_y = 20 }, /obj/effect/decal/warning_stripes{ @@ -3557,58 +3696,119 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"zK" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 7; - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"zL" = ( -/obj/effect/decal/cleanable/dirt, +"zR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"zM" = ( +"zS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"zU" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"zP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"zX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) -"zV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "zY" = ( /obj/structure/closet/secure_closet/engineering_electrical{ req_one_access = list() }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"zZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) "Ad" = ( /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"Ah" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/synthcloset) +"Ai" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Ak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Al" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 + }, +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar{ + pixel_x = 6 + }, +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Am" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) "Ap" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate, @@ -3617,80 +3817,51 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"As" = ( +"Ar" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"Aw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/canteen) +/area/golden_arrow/hangar) "Ax" = ( /obj/structure/machinery/shower{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Ay" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" +"Az" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) -"AA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"AC" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +/area/golden_arrow/canteen) +"AB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/stack/catwalk{ - pixel_x = 12; - pixel_y = -9 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"AG" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/firingrange) "AH" = ( /turf/open/floor/almayer, /area/golden_arrow/engineering) -"AK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"AL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"AO" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +"AI" = ( +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "AP" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ layer = 2.1 @@ -3709,24 +3880,20 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"AY" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" +"AW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"Bd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/hangar_stencil, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Bf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) +"Bb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/briefing) "Bg" = ( /obj/structure/bed/chair{ dir = 4 @@ -3734,64 +3901,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Bh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"Bi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "Bj" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/almayer, /area/golden_arrow/medical) +"Bl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Bm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "Bo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Bq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"Bp" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Br" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Bt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/stack/catwalk{ + pixel_x = 12; + pixel_y = -9 }, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"Bu" = ( -/obj/item/ammo_magazine/sentry{ - layer = 3.01 - }, -/obj/item/defenses/handheld/sentry, -/obj/structure/largecrate/supply/ammo{ - name = "sentry crate"; - fill_from_loc = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"Bv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "Damage Control Locker"; - req_one_access = list() - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) "Bw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/rewire{ @@ -3802,75 +3944,57 @@ "Bz" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"BA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 4 +"BB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -3 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/item/storage/toolbox{ - pixel_y = -5 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 6 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"BC" = ( -/obj/structure/target, -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) -"BD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"BK" = ( -/obj/structure/bed{ - can_buckle = 0 +/area/golden_arrow/platoon_sergeant) +"BH" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/obj/structure/cargo_container/wy/right, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"BM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/area/golden_arrow/hangar) +"BJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"BO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) +"BL" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "BP" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"BW" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "BY" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -3882,7 +4006,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Cb" = ( +"Ca" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m4ra/pve{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Cg" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Ci" = ( +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Cj" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze{ pixel_x = 7; @@ -3904,40 +4051,12 @@ pixel_x = 5; pixel_y = 4 }, -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"Ce" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 14 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Cf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"Cg" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Cl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) +/area/golden_arrow/dorms) "Cn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -3947,132 +4066,53 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Co" = ( -/obj/structure/barricade/plasteel{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) "Cr" = ( /turf/open/space/basic, /area/space) -"Cs" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Cu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Sergeants Room"; - req_one_access_txt = "12;32" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_sergeant) -"Cv" = ( -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"Cw" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"Cy" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) "CA" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"CC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/flamer/special, -/obj/item/explosive/grenade/smokebomb{ - pixel_y = 14; - pixel_x = -5 - }, -/obj/item/explosive/grenade/smokebomb{ - pixel_y = 11; - pixel_x = -9 - }, +"CE" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"CF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +/area/golden_arrow/firingrange) +"CH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"CQ" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"CJ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - name = "Weyland-Yutani premium shampoo"; - desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." +/obj/item/bedsheet/brown{ + layer = 3.4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"CK" = ( +/area/golden_arrow/platoon_sergeant) +"CR" = ( +/obj/structure/bed/chair/comfy, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"CN" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"CP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"CU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"CS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/computer/supply_drop_console/limited/alternate, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"CX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) +"CY" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/golden_arrow/briefing) "CZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ @@ -4091,63 +4131,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Df" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 16 +"Dd" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/device/flashlight/flare{ - pixel_x = 10 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"Dg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"Di" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/spent_slug{ - pixel_y = -9; - pixel_x = 8; - name = "spent snailshot"; - layer = 2.7 +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/obj/item/storage/box/guncase/pumpshotgun/special, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"Dl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +/area/golden_arrow/dorms) +"Dj" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/golden_arrow/hangar) +"Dm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/dorms) +"Do" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Dp" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"Dw" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"Dq" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Dr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/area/golden_arrow/medical) "Dx" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4168,51 +4215,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"DB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Dy" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -25 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) +/obj/structure/sign/safety/west{ + pixel_x = 3; + pixel_y = -25 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "DC" = ( /turf/open/floor/almayer, /area/golden_arrow/supply) -"DE" = ( +"DJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"DN" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"DR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, /area/golden_arrow/squad_two) -"DF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"DS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"DM" = ( -/obj/structure/machinery/power/apc/almayer/south, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"DT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"DR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"DW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "DX" = ( /obj/structure/toilet{ pixel_y = 16 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"DY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) "Ea" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) @@ -4220,26 +4296,53 @@ /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"Ei" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/flamer/special, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_y = 18 +"Ec" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"Eo" = ( -/obj/structure/platform_decoration, -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ed" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"Ee" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"El" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/aesthetic, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Em" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"En" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/hangar) "Ep" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -4253,12 +4356,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) +"Eq" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "Er" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Es" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) "Eu" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -4267,6 +4380,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"Ev" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "Ey" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4274,54 +4402,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"EA" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +"Ez" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"EE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"EG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"EB" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"ED" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"EF" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"EI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bathunisex{ - pixel_y = 29 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"EH" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) -"EJ" = ( +"EL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"EK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/structure/sign/safety/electronics{ + pixel_x = 31; + pixel_y = 6 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/cryo_cells) +/obj/structure/sign/safety/high_voltage{ + pixel_x = 31; + pixel_y = -6 + }, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "EN" = ( /obj/structure/barricade/metal{ dir = 8 @@ -4329,79 +4455,75 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/firingrange) -"EO" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"EQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"EP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ER" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"EW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"EY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"EX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"EZ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, +/obj/item/tool/warning_cone, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Fa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"Fb" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 7; + pixel_y = -2 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 }, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"Fe" = ( -/obj/effect/decal/cleanable/dirt, +"Fc" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/canteen) "Ff" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -4412,16 +4534,15 @@ "Fg" = ( /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"Fi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +"Fh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Fj" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4434,27 +4555,81 @@ /obj/item/facepaint/black, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"Fk" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Fl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"Fu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"Fm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Fw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Fn" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = -24; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -24; + pixel_y = -7 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Fq" = ( +/obj/structure/machinery/cryopod, /obj/structure/machinery/light{ - dir = 1 + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"Fs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) +"Ft" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Fu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"Fx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "Fy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -4464,37 +4639,44 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"FA" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"FB" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"FD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "FE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) +"FG" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "FI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) -"FN" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 - }, +"FO" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "FP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4502,53 +4684,40 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"FQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) "FR" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"FX" = ( +/obj/structure/ship_ammo/minirocket, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"FY" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"FT" = ( +/area/golden_arrow/dorms) +"Ga" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"FV" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"FW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Gf" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Gb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/prop{ dir = 8; @@ -4580,130 +4749,125 @@ }, /turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"Gg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Gi" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 14; - pixel_y = -28 +"Gd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"Gk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/area/golden_arrow/squad_one) +"Ge" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Gj" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Briefing Room"; + req_access = list() }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) "Gl" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/prep_hallway) -"Gq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, +"Gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee/simple, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Gs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/platoon_sergeant) +"Go" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Gu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"Gp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gy" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"GA" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"GG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"GK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, +/area/golden_arrow/hangar) +"Gr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - id = "Delta_1"; - name = "\improper Bathroom" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) -"GL" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Gs" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Gu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gy" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"GD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"GE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"GN" = ( +"GF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"GG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"GO" = ( +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"GI" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"GJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/synth_storage{ - pixel_x = -20 +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = -1; + pixel_y = -10 }, /turf/open/floor/almayer/plate, /area/golden_arrow/prep_hallway) +"GM" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) "GQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -4712,152 +4876,135 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"GU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"GV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/bluefull, -/area/golden_arrow/platoon_commander_rooms) -"GY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/briefing) -"Hc" = ( +"GR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - dir = 4; - name = "Lower Deck Waste Tank Control" +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"Hd" = ( -/obj/structure/sign/banners/united_americas_flag{ - pixel_y = 30 +"GT" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"GX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Platoon Sergeant" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ha" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"Hi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"Hh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) -"Hj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_y = 29 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"Hk" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/accessory/storage/droppouch, -/obj/item/clothing/accessory/storage/droppouch, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) "Hm" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"Hu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/target, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) -"Hv" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"Hn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Ho" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Hw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/device/flashlight{ + pixel_x = -4; + pixel_y = 7 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;40" +/obj/item/tool/warning_cone, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/squad_two) -"Hx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/aesthetic, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"HG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 +"Hr" = ( +/obj/structure/sign/poster{ + pixel_y = -8; + pixel_x = -25; + icon_state = "poster15"; + name = "pulse rifle pinup"; + desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Hs" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Squad Sergeant" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"HH" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Squad Sergeant" }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Ht" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/briefing) +"HA" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) "HK" = ( /turf/closed/wall/almayer, /area/golden_arrow/cryo_cells) -"HQ" = ( -/obj/structure/machinery/light, +"HM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"HO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"HR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluefull, -/area/golden_arrow/hangar) -"HS" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/engineering) "HT" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -4865,25 +5012,14 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"HV" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +"HZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"HX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "Ib" = ( /obj/structure/barricade/metal{ dir = 8 @@ -4894,49 +5030,92 @@ /obj/structure/sign/safety/one{ pixel_y = 22 }, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"Ii" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"Is" = ( +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"Ie" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"If" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Il" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) -"It" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 9 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Im" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ip" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/engineering) +"Ir" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1, +/obj/item/ammo_magazine/rifle/m41aMK1/heap{ + desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contained High-Explosive Armor-Piercing bullets. It also has some... notches on the side..?"; + current_rounds = 0; + pixel_y = 6; + pixel_x = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "Iw" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"Iy" = ( -/obj/structure/computer3frame, +"Ix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"IC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/hangar) +"IA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"ID" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_sergeant) +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;40"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "IE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -4949,74 +5128,113 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) +"IF" = ( +/obj/structure/plasticflaps, +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) "IH" = ( /obj/structure/barricade/metal{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/firingrange) -"IP" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"IR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +"II" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 7 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"IS" = ( -/obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; + dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"IT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -4; + pixel_y = 32; + serial_number = 11 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"IJ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"IK" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 }, -/obj/structure/prop/almayer/hangar_stencil, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"IU" = ( +/area/golden_arrow/prep_hallway) +"IM" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"IW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/golden_arrow/dorms) +"IN" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/floor/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"IX" = ( +"IO" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"IZ" = ( +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"IP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"IW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer, /area/golden_arrow/hangar) "Jc" = ( /obj/effect/decal/warning_stripes{ @@ -5025,27 +5243,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Jg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 +"Jf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 5 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"Jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) -"Jk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/golden_arrow/squad_one) +"Jm" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/hangar) "Jn" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -5061,49 +5273,65 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"Jp" = ( -/obj/structure/machinery/conveyor{ - dir = 9 +"Jo" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Jr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/largecrate, +/turf/open/floor/almayer, /area/golden_arrow/supply) -"Jq" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +"Ju" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Jx" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"JA" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Jv" = ( -/obj/structure/machinery/light{ - dir = 8 +"JB" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"JC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) +/area/golden_arrow/platoon_sergeant) "JD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"JI" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cigarette, +"JL" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"JM" = ( +/obj/structure/computer3frame, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"JJ" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 +/area/golden_arrow/engineering) +"JN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"JL" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) +/area/golden_arrow/hangar) "JP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5111,51 +5339,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"JT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +"JQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"JU" = ( -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"JZ" = ( +/area/golden_arrow/prep_hallway) +"JV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Kb" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"Kd" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Ke" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"JX" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/golden_arrow/briefing) +"JY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) "Ki" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -5170,198 +5380,160 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Kl" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"Kp" = ( -/obj/structure/largecrate/supply/motiondetectors, -/obj/structure/largecrate/supply/explosives/grenades/less{ - icon_state = "case"; - pixel_y = 10; - pixel_x = 3 +"Kj" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Kn" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"Ku" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_one_access = list(); +/area/golden_arrow/briefing) +"Ko" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad Two Armoury"; req_one_access_txt = "8;12;40" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/squad_two) +"Ks" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Kv" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"Kx" = ( +"Kw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"KC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"KF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"KD" = ( +"KG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "KH" = ( /obj/vehicle/powerloader, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"KL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"KM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/barricade/handrail{ - dir = 4 - }, +"KJ" = ( +/obj/structure/machinery/disposal, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) +/area/golden_arrow/platoon_sergeant) +"KN" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) "KO" = ( /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"KQ" = ( +"KT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/conference_room{ + pixel_y = 29 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"KU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/prep_hallway) -"KY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"KW" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"KX" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"KZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) "La" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Ld" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +"Lb" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Smartgunner" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Lc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "Lf" = ( /obj/effect/landmark/start/marine/tl/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Lg" = ( -/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"Lh" = ( -/obj/structure/sign/poster{ - pixel_y = -8; - pixel_x = -25; - icon_state = "poster15"; - name = "pulse rifle pinup"; - desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." - }, +"Lg" = ( +/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Lj" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"Ll" = ( -/obj/structure/ship_ammo/minirocket/incendiary, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"Ln" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/area/golden_arrow/squad_one) "Lo" = ( /obj/structure/machinery/light{ dir = 4 @@ -5369,23 +5541,54 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ls" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ - density = 0 +"Lq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Lr" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) +"Lt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/coffee{ + pixel_x = -19 }, +/obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer/plate, /area/golden_arrow/platoon_sergeant) -"Lx" = ( -/obj/structure/machinery/landinglight/ds1{ +"Lu" = ( +/obj/structure/platform_decoration{ dir = 8 }, +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"LC" = ( +/area/golden_arrow/briefing) +"Lv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/test_floor5, +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"LA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) +"LD" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_one) "LE" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; @@ -5393,63 +5596,65 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"LF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/squad_one) -"LH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +"LI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"LJ" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/golden_arrow/briefing) -"LK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/hangar) "LL" = ( /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/start/marine/alpha, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"LQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"LM" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"LN" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"LP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"LS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"LW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;39" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"LT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"LX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/firingrange) "LZ" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"Ma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "Mc" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -5466,135 +5671,128 @@ "Me" = ( /turf/closed/wall/almayer, /area/golden_arrow/squad_two) -"Mf" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/obj/item/notepad, -/obj/item/maintenance_jack, -/obj/structure/closet, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 +"Mq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/storage/photo_album, /turf/open/floor/almayer/plate, -/area/golden_arrow/synthcloset) -"Mi" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/engineering) +"Mt" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Mw" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Mj" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"Ml" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/rad{ - pixel_x = -7; +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 2 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Mx" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/gun_rack/m41, +/obj/item/ashtray/plastic{ + pixel_y = 14; + pixel_x = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Mn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/cryo_cells) -"Mu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"Mz" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/squad_one) +"MF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/golden_arrow/firingrange) -"MB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "S" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"MH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"MC" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "MI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"MJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) "MK" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) -"ML" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) "MN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"MW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"MO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"MQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"MT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"MU" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"MV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"MZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/dorms) -"Na" = ( -/obj/structure/machinery/light{ - dir = 1 + icon_state = "N"; + pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"Ne" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/briefing) +"MX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "Nf" = ( /turf/closed/wall/almayer/white, /area/golden_arrow/medical) @@ -5604,12 +5802,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"Nh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "Nk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Nl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "No" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -5632,121 +5842,50 @@ /obj/effect/spawner/prop_gun/anti_tank, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"Nx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"Nz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +"Nv" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Ny" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"NB" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 + icon_state = "S" }, +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -3 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"ND" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29; - layer = 3 - }, -/obj/structure/gun_rack/m41, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_y = 22; - pixel_x = 9 +/area/golden_arrow/hangar) +"NF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 3 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"NE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/platoon_commander_rooms) -"NI" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"NO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"NT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"NG" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/golden_arrow/briefing) +"NP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"NU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"NV" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 - }, -/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) -"NZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"Ob" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +"NS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/hangar) "Oc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -5755,17 +5894,34 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Od" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/briefing) "Of" = ( /turf/closed/wall/almayer, /area/golden_arrow/firingrange) -"Oj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, +"Oh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Oi" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/supply) "Ol" = ( /obj/item/reagent_container/spray/cleaner{ pixel_x = 5; @@ -5774,44 +5930,110 @@ /obj/structure/janitorialcart, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"Om" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "Op" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"Os" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Oy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) +"Ox" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "Oz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"OA" = ( +"OB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"OD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"OC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 3 +/area/golden_arrow/cryo_cells) +"OK" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) +"OM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 18 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"OG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/golden_arrow/squad_one) +"OP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/obj/item/explosive/grenade/smokebomb{ + pixel_y = 14; + pixel_x = -5 + }, +/obj/item/explosive/grenade/smokebomb{ + pixel_y = 11; + pixel_x = -9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"OS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 5; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"OV" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 7; + pixel_y = 29 }, /turf/open/floor/almayer/plate, /area/golden_arrow/prep_hallway) -"OH" = ( +"OW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -5819,44 +6041,6 @@ }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"OI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"OJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ON" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"OU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/squad_two) -"OX" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/golden_arrow/briefing) -"OY" = ( -/obj/structure/ladder{ - height = 2; - id = "req1" - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) "OZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -5868,179 +6052,106 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Pc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/tool/kitchen/tray{ - pixel_x = 16; - pixel_y = -10 - }, -/obj/item/storage/box/cups{ - pixel_x = 11; - pixel_y = -9 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 +"Pa" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"Pe" = ( -/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"Pg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Pf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bedsheetbin{ - pixel_y = 6 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Office" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Ph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"Pj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Pl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Pm" = ( -/obj/structure/largecrate/supply/explosives/grenades/less{ - icon_state = "case" - }, -/obj/structure/largecrate/supply/motiondetectors{ - pixel_y = 10 +/area/golden_arrow/engineering) +"Pq" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Pu" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"Pp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad One Armoury"; - req_one_access_txt = "8;12;39" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/squad_one) -"Pr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Ps" = ( -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/closet/crate/construction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"Pt" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "Px" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"Py" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +"PB" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"PA" = ( -/obj/structure/closet/crate/supply, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"PF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"PG" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"PI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"PE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + name = "Lower Deck Waste Tank Control" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/firingrange) -"PL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"PQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"PN" = ( +/obj/structure/platform_decoration, +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoon_sergeant) -"PS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) -"PW" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Private Briefing Room"; - req_access = list(); - req_one_access_txt = "12;19;32" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"PY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"PO" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29; + layer = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/gun_rack/m41, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_y = 22; + pixel_x = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"PU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "PZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -6053,6 +6164,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) +"Qb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Qc" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -6085,51 +6203,59 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"Qi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/conference_room{ - pixel_y = 29 +"Qj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/hangar) "Qk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Ql" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"Qq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() +"Qm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"Qn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Qp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"Qt" = ( -/obj/effect/decal/cleanable/dirt, +"Qs" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 +/obj/item/tool/kitchen/tray{ + pixel_y = -10 }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = -6; - pixel_y = 1 +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 7; + pixel_y = -3 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "Qu" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -6159,290 +6285,98 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Qz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"QD" = ( +"Qy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"QB" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"QE" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"QI" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = -7; - pixel_y = 9 +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"QJ" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/squad_one) -"QL" = ( +/area/golden_arrow/supply) +"QC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"QM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"QH" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"QK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"QN" = ( -/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/prep_hallway) "QO" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"QP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) "QQ" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"QS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"QT" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"QW" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"QX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"Ra" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Rc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Supply Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) -"Rd" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/supply) -"Rg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Rh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"Ri" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) -"Rl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Rr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Rt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Rv" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/canteen) -"Rx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -10 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Ry" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -4; - pixel_y = 32; - serial_number = 11 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"RD" = ( -/obj/effect/landmark/late_join, -/obj/effect/landmark/start/marine/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"RK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"RM" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"RN" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; - pixel_y = -9 +"QU" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"QW" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/engineering) -"RO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;40"; - req_one_access = list() +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) -"RP" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rd" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/supply) +"Re" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"RT" = ( -/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"RW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/briefing) +"Rj" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"RY" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) -"Sc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Sd" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Ro" = ( /obj/structure/sign/poster{ desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; @@ -6451,81 +6385,125 @@ pixel_y = 29; serial_number = 16 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"Si" = ( -/obj/structure/machinery/light, +/area/golden_arrow/squad_two) +"Rr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rs" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + name = "Weyland-Yutani premium shampoo"; + desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) -"Sj" = ( +"Rv" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/canteen) +"Rw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"RC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"Sl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 11; - pixel_y = -10 +/area/golden_arrow/firingrange) +"RD" = ( +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"RF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Sn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/cryo_cells) +"RH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Firing Range" }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"So" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/firingrange) +"RP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"RQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Sq" = ( +"RS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RU" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Su" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 7; - pixel_y = -3 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RV" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"RW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"RZ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Sg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Sr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) +"Ss" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/briefing) "Sw" = ( /obj/structure/machinery/shower{ dir = 1 @@ -6540,14 +6518,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Sy" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) "SB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -6567,14 +6537,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"SE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/target, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/redfull, -/area/golden_arrow/firingrange) +"SG" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "SI" = ( /obj/structure/bed/chair{ dir = 4 @@ -6596,23 +6563,11 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"SR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ST" = ( +"SS" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/flare{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/device/flashlight/flare{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;40" }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) @@ -6628,10 +6583,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"SY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) "Tb" = ( /obj/item/toy/deck, /obj/structure/surface/table/almayer, @@ -6651,111 +6602,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Tg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"Tj" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"Tk" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, +"Tf" = ( /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"To" = ( +/area/golden_arrow/squad_two) +"Th" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/cryo_cells) -"Tr" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Tu" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 - }, +/area/golden_arrow/canteen) +"Ti" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Tq" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Tx" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Tt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/squad_one) "Ty" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/squad_one) @@ -6794,21 +6670,15 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"TI" = ( +"TF" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/golden_arrow/briefing) +"TG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"TK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) @@ -6819,60 +6689,56 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"TP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"TS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 9 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/engineering) "TT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"TW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/synthcloset) -"TY" = ( -/obj/structure/barricade/handrail{ +"TU" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ dir = 1; - pixel_y = 12 + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/canteen) -"Ub" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"TX" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"Uf" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Uc" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Ue" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "NW-out"; pixel_x = -1; - pixel_y = 1 + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ug" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"Uh" = ( -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) "Ui" = ( /turf/closed/wall/almayer, /area/golden_arrow/canteen) -"Uj" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_sergeant) "Uk" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c10{ @@ -6881,42 +6747,100 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"Um" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - pixel_x = -30 +"Un" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"Uv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"UI" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"UK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m4ra/pve{ - pixel_y = 8 +/area/golden_arrow/briefing) +"Uo" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Up" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Uq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Us" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"Uw" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Uz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_y = 29 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoon_sergeant) -"UN" = ( +"UA" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"UB" = ( +/obj/structure/ladder{ + height = 2; + id = "req1" + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"UI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"UM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "UO" = ( /obj/structure/bed/chair{ dir = 4 @@ -6926,22 +6850,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"UT" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +"UP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "Damage Control Locker"; + req_one_access = list() }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"UX" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"US" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"UY" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "Va" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -6949,140 +6878,173 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Vc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Ve" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_y = 32 +"Vg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Vh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/barricade/handrail{ + dir = 4 }, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Vi" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Vk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/tool/soap, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Vj" = ( /turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"Vp" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/dorms) -"Vq" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Vr" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"Vu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Supply Bay" +"Vl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) -"Vv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Vm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Vp" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/dorms) +"Vs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"Vz" = ( +"Vt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"Vw" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"VG" = ( -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) -"VJ" = ( -/obj/structure/ladder{ - height = 1; - id = "req1" +/area/golden_arrow/squad_one) +"Vx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Vy" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"VB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) -"VK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;39"; - req_one_access = list() +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"VC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad One Armoury"; + req_one_access_txt = "8;12;39" }, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/squad_one) -"VL" = ( -/obj/structure/closet/secure_closet/platoon_sergeant, +"VM" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"VQ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) -"VT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 +/area/golden_arrow/briefing) +"VN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner"; - pixel_x = -10 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"VP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/supply) +"VU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_one) +"VV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/tool/stamp/ro{ - pixel_x = -8; - pixel_y = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/item/storage/fancy/cigar{ - pixel_x = 6 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"VY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 4 }, -/obj/item/ashtray/glass{ - pixel_x = 11; - pixel_y = 9 +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -3 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"VX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/toolbox{ + pixel_y = -5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/squad_two) +"Wd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Wf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -7095,21 +7057,10 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Wg" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"Wj" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/dorms) +"Wi" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "Wl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -7125,24 +7076,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Wo" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) "Wp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -7153,53 +7086,83 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ws" = ( -/obj/item/tool/warning_cone, +"Wx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"Wy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"WC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"WD" = ( +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"Wu" = ( -/obj/structure/largecrate/random/case/double, +"WF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"WH" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"WI" = ( +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"WJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"Wv" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +"WL" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"WM" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Wy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"WA" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"WT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/almayer/north, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"WG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/supply) -"WK" = ( /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"WP" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/briefing) +/area/golden_arrow/cryo_cells) +"WW" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "WY" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -7214,93 +7177,129 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Xa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"WZ" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Xb" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/item/folder/yellow, -/obj/item/book/manual/engineering_construction, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "Xc" = ( /obj/structure/machinery/shower{ pixel_y = 16 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Xd" = ( -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"Xj" = ( -/obj/structure/pipes/vents/pump, +"Xe" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Xf" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Xh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -20 +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_two) +"Xi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, /turf/open/floor/almayer/plate, /area/golden_arrow/supply) +"Xk" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Xn" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Xq" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "Xs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Xu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Firing Range" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/firingrange) -"Xv" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 +"Xx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/bluefull, -/area/golden_arrow/platoon_commander_rooms) -"Xw" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Xz" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"XC" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"XD" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Xy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"XG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Xz" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "XI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -7310,79 +7309,68 @@ "XJ" = ( /turf/closed/wall/almayer, /area/golden_arrow/briefing) -"XL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = 12 +"XT" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 +/obj/item/stack/sheet/glass{ + amount = 50 }, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = 24 +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -7; - pixel_y = 14 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"XN" = ( -/obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/almayer/test_floor5, /area/golden_arrow/engineering) -"XP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 7; - pixel_y = -28 - }, -/obj/structure/reagent_dispensers/ammoniatank, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"XQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) -"XR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/ceramic_plate{ - pixel_y = 19 +"XU" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/item/trash/ceramic_plate{ - pixel_y = 23 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) +/area/golden_arrow/supply) "XV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Ya" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/squad_two) -"Yc" = ( +"XW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; - pixel_y = 10 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"XX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"XY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"XZ" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/prep_hallway) "Yd" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7391,17 +7379,6 @@ /obj/item/folder/black_random, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"Ye" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) "Yh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7412,24 +7389,9 @@ "Yj" = ( /turf/closed/wall/almayer, /area/golden_arrow/hangar) -"Yk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/firingrange) -"Yl" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"Ym" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, +"Yn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluefull, /area/golden_arrow/hangar) "Yp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7437,23 +7399,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"Ys" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 21 +"Yq" = ( +/obj/structure/sign/safety/galley{ + pixel_y = 29 }, -/obj/item/trash/ceramic_plate{ - pixel_x = 5; - pixel_y = 23 +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Yr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Yu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Yv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7464,104 +7425,93 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Yw" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"Yx" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -5; - pixel_y = 23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"YA" = ( +"Yy" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/briefing) +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Yz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoon_sergeant) "YB" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/engineering) -"YG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"YC" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"YK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"YD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + pixel_y = 6 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"YO" = ( -/obj/structure/closet/crate, +/area/golden_arrow/platoon_sergeant) +"YJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) "YP" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/briefing) -"YQ" = ( +"YR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"YV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "YX" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Zb" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 +"Za" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_two) +/area/golden_arrow/hangar) +"Zc" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Zd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -7570,31 +7520,77 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Zf" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Zk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/prep_hallway) -"Zl" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/pipes/vents/scrubber, +"Zi" = ( +/obj/structure/largecrate/supply/motiondetectors, +/obj/structure/largecrate/supply/explosives/grenades/less{ + pixel_y = 10; + pixel_x = 3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Zm" = ( /obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1, +/obj/item/prop/helmetgarb/spent_slug{ + pixel_y = -9; + pixel_x = 8; + name = "spent snailshot"; + layer = 2.7 + }, +/obj/item/storage/box/guncase/shotguncombat, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) -"Zw" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"ZB" = ( +"Zn" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"Zp" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zq" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"Zr" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"Zt" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_sergeant) +/area/golden_arrow/hangar) +"Zv" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"ZA" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "ZC" = ( /turf/closed/wall/almayer, /area/golden_arrow/squad_one) @@ -7606,38 +7602,39 @@ "ZJ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/synthcloset) -"ZL" = ( +"ZK" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ZP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ZM" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/canteen) "ZQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/firingrange) -"ZR" = ( +"ZS" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "ZU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"ZV" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"ZX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/engineering{ +"ZZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) (1,1,1) = {" Cr @@ -14429,10 +14426,10 @@ Cr Cr Cr Qw -ot -Lh -pB -Pm +oE +Hr +Bm +jx Qw Cr Cr @@ -14577,23 +14574,23 @@ sC sC sC sC -pt -pt -pt +hJ +hJ +hJ Qw -ND +PO Fg Px -CC +OP Qw Cr Cr bl -Oy -SE -zv -Hu -ek +Kw +nt +ja +MQ +qr bl Cr Cr @@ -14691,21 +14688,21 @@ Cr Cr Cr ca -Ln -wz -gz -wK -gz -Pt -tV +Jo +ut +eM +Ix +eM +na +xs ca -ml -wz -Ll -wK -Ll -wz -ml +FX +ut +xG +Ix +xG +ut +FX ca Cr Cr @@ -14717,35 +14714,35 @@ Xz Xz sC sC -VL +xZ sC sC -wJ -VQ +hX +KJ qA -zV -KQ +aH +el qA -dl -Bh +Lt +Gn qA -zK +OV pW -iC +Dy Me -Zl -DE +sJ +wA DR -Di +Zm Qw Cr Cr bl -VG -hD -zv -zP -VG +vI +yS +ja +RC +vI bl Cr Cr @@ -14843,21 +14840,21 @@ Cr Cr Cr ca -Xd -wz -Xd -wz -Xd -wz -Xd +WI +ut +WI +ut +WI +ut +WI ca -ml -wz -Ll -wz -Ll -wz -ml +FX +ut +xG +ut +xG +ut +FX ca Cr Cr @@ -14868,36 +14865,36 @@ sC sC sC sC -Ls -KQ +jL +el sC -QX -rH +Ju +hE dr -wV +wU dr tr kI Hm -DY +fA qA -FS +JQ XI -oh +WW Me Me Me -Hw +Xh Me Qw Qw Qw bl -VG -Ri -zv -Yk -VG +vI +RS +ja +lD +vI bl Cr Cr @@ -14995,21 +14992,21 @@ Cr Cr Cr ca -wz -jl -JZ -JZ -JZ -fe -wz +ut +Qb +hb +hb +hb +sZ +ut ca -Pt -jl -JZ -SR -SR -wx -Pt +na +Qb +hb +bt +bt +HZ +na ca Cr Cr @@ -15021,35 +15018,35 @@ SC Kv sC sC -Uj +xu sC -Tj +yG SI Kv -yt +dh Kv yY Yd Iw -BO +bp qA -og +xl XI -IU +FO Me -BA -xB +VY +lH Yp -gd -ST -Df +Tf +cM +eP Me Me -jt -Jj -BD -Is -BC +av +CH +Ug +gi +vl bl Cr Cr @@ -15143,25 +15140,25 @@ Cr Cr Cr ca -Yw -Yw -Yw +DT +DT +DT ca -Ln -So +Jo +Im KO KO Rr -Kx -tV +ue +xs ca -ml -So +FX +Im KO KO KO -Kx -ml +ue +FX ca Cr Cr @@ -15171,11 +15168,11 @@ Cr sC fW dr -vA +MX lS lS -ft -gQ +bU +ij Ap uO qA @@ -15183,25 +15180,25 @@ Qu pF Fj Jn -BO +bp qA -Oj +zu TC -wp +XZ Me -lQ +tC Fg Yp Fg Fg -gd -tS +Tf +Ak Me -VG -hD -zv -zP -VG +vI +yS +ja +RC +vI bl Cr Cr @@ -15295,25 +15292,25 @@ Cr Cr Cr ca -sc +oi MN -wz +ut ca -Xd -UX +WI +Ny Rr Ea KO -Kx -Xd +ue +WI ca -ml -UX +FX +Ny Rr Ea KO -kV -ml +Gr +FX ca Cr Cr @@ -15321,39 +15318,39 @@ Cr Cr Cr sC -gI -BK +hH +CQ sC -mc -KQ -bw -KQ -QS -gA +kG +el +Jx +el +rT +JC qA -Rh +fV Kv Qe Cg -qQ -Cu -ED +rW +pe +pX TC -eo -nb -vF +jw +Ko +ve Fg IE ty Fg Fg -Ku +SS Me -PS -ce -zv -FK -PS +RU +AB +ja +Wx +RU bl Cr Cr @@ -15447,23 +15444,23 @@ Cr Cr Cr ca -wz +ut Dc -wz +ut ca ca ca -Yw -Yw -Yw +DT +DT +DT ca ca ca ca ca -Yw -Yw -Yw +DT +DT +DT ca ca ca @@ -15487,23 +15484,23 @@ qA Ng fh Tz -PQ -ID -zM +Yz +xV +xT TO -KU -OU -Ya +uR +ia +sw mR hC mf Fy DR -tS +Ak Me Ib EN -Co +ww IH qE bl @@ -15599,53 +15596,53 @@ Cr Cr ca ca -wz +ut Dc -HQ +wh ca ca -Tu -wz -ZL -ZL -ZL -ZL -hk -ZL -BW -ZL -ZL -ZL -wz -wz -wz -wz -ZL -wz -wz +uq +ut +wR +wR +wR +wR +oF +wR +YC +wR +wR +wR +ut +ut +ut +ut +wR +ut +ut ca ca -ZL -CN -rk +wR +MU +rj ZJ -wN -Yl -Um -NI -gn +Zq +fE +Ma +kz +is ZJ -hN +YD Kv Kv Kv -Dg +np qA -Qi +KT TC -Gi +ic Me -Zb +Ro Fg Nr pf @@ -15655,7 +15652,7 @@ Db Me tf hM -zv +ja hM tf bl @@ -15751,66 +15748,66 @@ Cr Cr ca ca -ZL +wR Dc -ZL +wR ca ca -lB +KF IW IW -by -GN +lC +JN kU -GN -by +JN +lC JP JP IW -by -CK +lC +nc kU -AK -EX +WJ +dI JP IW -Kx +ue ca ca -ZL +wR mm -ax +ra ZJ -nF +Vl eT hq Ep No ZJ -Hj +Uz Kv Kv -DY -gM +fA +sd qA -rA +GJ XI -wp +XZ Me -PG -gd +Zv +Tf dX -pB +Bm Fg TT Me Of -hQ -wX +LX +vx ZQ -wX -KL -Kb +vx +FQ +CE bl Cr Cr @@ -15903,66 +15900,66 @@ Cr Cr ca ca -ZL +wR Dc -ZL -ug -wz -So +wR +kW +ut +Im KO Nk -nN -eU +qY +hh MN -qi -Xd +WD +WI hF Lo KO -Xd -qi +WI +WD he -eU -gD +hh +Wd Rr KO -pD -ug -wz -ZL +En +kW +ut +wR AQ xh ZJ -TW +le yJ ba jy -Mf +dc ZJ -ZB -KQ -UK -Kl +BE +el +Ca +lU qA qA -Fw +hm XI -jj +MO Me Me -js +WM Qw -qD -cA -RO +vC +IA +fU Me Of -uE -BD -Mz -nL -BD -eh +rC +Ug +oG +Zr +Ug +ko bl Cr Cr @@ -16053,9 +16050,9 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Qk pl pl @@ -16063,19 +16060,19 @@ Gs FP zy JD -Ym -qi +Vs +WD Dc -Wu -Xd -DM +Nh +WI +tP Yj KH -Xd -qi +WI +WD Dc -qi -hA +WD +Yu zy zy GQ @@ -16083,10 +16080,10 @@ pl pl pl yO -wz +ut ZJ ZJ -ey +Ah ZJ ZJ ZJ @@ -16096,11 +16093,11 @@ qA qA qA qA -jc +pv Jc -nH +sr GG -Zk +op Me Me Me @@ -16109,8 +16106,8 @@ Me Me Me Of -PI -Xu +su +RH Of Of bl @@ -16205,9 +16202,9 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO KO @@ -16215,19 +16212,19 @@ KO MI Rr Rr -Bf -ua +Qn +uU Dc -qi -Xd +WD +WI Bw Yj KH -Xd -qi +WI +WD Dc -qi -Xd +WD +WI KO KO Yh @@ -16235,37 +16232,37 @@ KO uG KO Dc -wz -oK -wp -gS -GO -iN -iN -iN -vL -AY -wp -wp -cU +ut +Es +XZ +mS +nO +RV +RV +RV +IK +UA +XZ +XZ +cF lo Eu XI Wl uu WY -iN -wp -iN -wp -iN -wp -tb -xo -RY -iN -oh -Ay +RV +XZ +RV +XZ +RV +XZ +Fn +io +QU +RV +WW +GD Cr Cr Cr @@ -16357,55 +16354,55 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO -Ke -al -TP +tz +Gp +iY Rr QW -Xd -qi +WI +WD Xs -eU -qw +hh +OB zy SL BP -qw -eU +OB +hh Td -qi -Xd +WD +WI TD KO -sy -Ph -IT +EY +ow +AW KO Qk -lm -iG +mX +FB SO Fu -SY +mg iK iK SO -zM +xT iK iK SO -SY +mg SO iK wn iK SO -so +Ha SO iK iK @@ -16417,7 +16414,7 @@ Wy Ad Op CA -Ay +GD Cr Cr Cr @@ -16511,65 +16508,65 @@ Cr Cr ca ca -ZL +wR Dc KO -pD -ZL -Rg +En +wR +hY KO rM -dP -qi +jB +WD Wr -qi -Xd +WD +WI KO Rr Rr -Xd -qi +WI +WD lh -km -Xd +ZS +WI KO KO -pD -wz -Ws -zD +En +ut +Zc +jR Dc -ZL -oK -ms -ms -iN -pZ -pZ -iN -wp -wp -iN -iN -sN +wR +Es +qH +qH +RV +xP +xP +RV +XZ +XZ +RV +RV +ev Va Wm XI gq Va iL -iN -wp -iN -iN -iN -wp -wp -pZ -ms -wp -iN -Ay +RV +XZ +RV +RV +RV +XZ +XZ +xP +qH +XZ +RV +GD Cr Cr Cr @@ -16663,52 +16660,52 @@ Cr Cr ca ca -yZ +do Dc KO -Vv -HV -cp -HV -nT -JI -Py -HV -fl -aB -EZ -HV -Wv -aB -EZ -HV -Wv -HS -EZ -cl -jO -aB -nd +EP +my +lw +my +BH +IN +Vi +my +zs +Up +pc +my +mq +Up +pc +my +mq +CU +pc +Dq +aY +Up +NS KO Dc -oe +Zp XJ -kg -qu +gs +vn XJ -kg -qu +gs +vn Vp Vp Vp Vp Vp Vp -Zk +op Jc TC GG -jc +pv ZC ZC ZC @@ -16717,8 +16714,8 @@ ZC ZC Ty Gl -pt -pt +hJ +hJ Gl Gl Gl @@ -16815,10 +16812,10 @@ Cr Cr ca ca -ZL +wR Dc -ZL -cL +wR +Zt dJ dJ dJ @@ -16840,33 +16837,33 @@ dJ dJ dJ dJ -bQ +RZ KO Dc -ad +oP XJ -YA -Od -Sy -mk -vk +au +vM +fa +pr +zU Vp -KZ -gL -sk -uH +IM +DN +Ci +WZ Vp Vp -wd -XQ -KD +mT +vr +QK ZC ZC -Yc +Lv Ty -cz -VK -yA +Vw +fN +ex Ty Cr Cr @@ -16965,12 +16962,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc nm -RT +nC dJ dJ dJ @@ -16992,29 +16989,29 @@ dJ dJ dJ dJ -dB -aN +yE +sb Dc -eY +uh XJ -As -As -Vr -Vr -As +eV +eV +cb +cb +eV Vp -am +zi JL Tb -KK +Ex JL Vp -OG +jY XI -iN +RV ZC -TI -cs +Jf +Qy af cT cT @@ -17117,12 +17114,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc AP -mW +LM dJ dJ dJ @@ -17144,30 +17141,30 @@ dJ dJ dJ dJ -dA -lg +XC +Qm Dc -eY -ag -As +uh +pi +eV Np Np rJ -As +eV Vp -EF +ez JL aO yw -Vz +lt Vp -xm +Vx XI -wp +XZ ZC -Fe +Lj cT -cD +zd aJ iE xx @@ -17269,12 +17266,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc -ZL -OJ +wR +bx dJ dJ dJ @@ -17296,34 +17293,34 @@ dJ dJ dJ dJ -AG -lg +PU +Qm Dc -eY -ag -As -qT -LJ -fg -Vr +uh +pi +eV +TF +wv +kc +cb Vp -Tk +Uo wl vU sR -MZ -sg -SY +qZ +qe +mg TO -yT -Pp -LF +eW +VC +VU nG PZ Dx UI cT -lV +fK Ty Cr Cr @@ -17423,10 +17420,10 @@ Cr Cr ca ca -ZL +wR Dc KO -cL +Zt dJ dJ dJ @@ -17448,34 +17445,34 @@ dJ dJ dJ dJ -gh -aN +ru +sb Dc -eY +uh XJ -Vr -rl -ol +cb +mt +JX rV -Vr +cb Vp -Hd +ox wl FE wl -xX -Wj -ED +Dm +OK +pX TC -eo -QJ -qa +jw +qF +LD cT cR Uk cT cT -zk +fH Ty Cr Cr @@ -17575,10 +17572,10 @@ Cr Cr ca ca -yZ +do Dc KO -RT +nC dJ dJ dJ @@ -17600,34 +17597,34 @@ dJ dJ dJ dJ -dB -zD +yE +jR Qk -MC +SG XJ -dv -rr -OX -sm -uA +VM +gX +CY +NG +vw Vp -rX +Hs wl FI Bo -ld +yD Vp -ys +rK XI -Gi +ic ZC -zZ +Tt cT sf cT cT -cs -lV +Qy +fK Ty Cr Cr @@ -17727,10 +17724,10 @@ Cr Cr ca ca -ZL +wR Dc KO -mW +LM dJ dJ dJ @@ -17752,33 +17749,33 @@ dJ dJ dJ dJ -LH -aN +Ar +sb Dc -eY +uh XJ -Vr +cb Np Np rJ -As +eV Vp -Ld +bs pw Wf pw -nj +kA Vp -kX +iw vp -Ql +kN ZC -Ry -LK +II +Gd sf -oQ -OI -rI +bJ +XD +yB Ty Ty Cr @@ -17877,12 +17874,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc -ZL -OJ +wR +bx dJ dJ dJ @@ -17904,30 +17901,30 @@ dJ dJ dJ dJ -AG -lg +PU +Qm Dc -eY -ag -FT -FT -FT -sv -vB +uh +pi +oc +oc +oc +Re +Ht Vp -EQ +Om Bg FE wl -EQ +Om Vp -Oj +zu XI -iN +RV ZC ZC ZC -mD +LW ZC Ty Ty @@ -18029,12 +18026,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc to -cL +Zt dJ dJ dJ @@ -18056,31 +18053,31 @@ dJ dJ dJ dJ -gh -lg +ru +Qm Dc -eY -ag -WP -WP -WP -WP -Jk +uh +pi +Ss +Ss +Ss +Ss +bF Vp -yx +yl Bo UO wl -yj +dQ Vp -FS -XQ -PF +JQ +vr +wk ZC -cy -ha +Ir +xA Wp -Ei +OM Ty Cr Cr @@ -18181,12 +18178,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc AP -RT +nC dJ dJ dJ @@ -18208,31 +18205,31 @@ dJ dJ dJ dJ -dB -lg +yE +Qm Dc -eY +uh XJ -WP -WP -WP -WP -KY +Ss +Ss +Ss +Ss +py Vp -Tg +dw wl FR wl -ur +Dd Vp -UT +Nv XI -wp +XZ ZC -yL +Mx xf cT -cV +lr Ty Cr Cr @@ -18335,10 +18332,10 @@ Cr Cr ca ca -ZL +wR Dc -ZL -mW +wR +LM dJ dJ dJ @@ -18360,31 +18357,31 @@ dJ dJ dJ dJ -dA -zD +XC +jR Dc -bf +fM XJ -aI -VX -VX -VX -vN +rG +lk +lk +lk +zf Vp -Sd -Cb -Gf -MJ -br +Ai +Cj +Gb +FY +WL Vp -aQ +Yq XI -wp +XZ ZC -Bu -WK -PA -Kp +pu +wO +lI +Zi Ty Cr Cr @@ -18487,41 +18484,41 @@ Cr Cr ca ca -yZ +do Dc KO -Ke -Tx -ct -qI -rf -ON -Jq -ar -Lx -Tx -JT -qI -Lx -Tx -Jq -ar -Lx -ON -JT -ar -vS -Tx -mB -aN +tz +mu +bj +Jm +JA +QH +Uq +nU +bP +mu +Uw +Jm +bP +mu +Uq +nU +bP +QH +Uw +nU +ER +mu +yq +sb Dc -eY +uh XJ -WP -WP -WP -WP -KY +Ss +Ss +Ss +Ss +py Ui Ui Ui @@ -18529,9 +18526,9 @@ Ui Ui Ui Ui -ZM -Fa -ZM +Lr +kR +Lr Ui HK HK @@ -18639,51 +18636,51 @@ Cr Cr ca ca -ZL +wR Qk zy -YQ -AL -IZ +eg +RQ +nw zy pl pl pl zy Oz -aN +sb KO KO KO Ea Ea KO -aN +sb KO KO KO -pD -ZL -So -aN +En +wR +Im +sb Dc -eY -ag -WP -WP -WP -WP -KY +uh +pi +Ss +Ss +Ss +Ss +py Ui Ui -YK -Jv -NO -QI -XR -Xw -NT -KM +mz +iO +Wi +gk +oV +go +tN +Vh Ui HK HK @@ -18691,14 +18688,14 @@ Ax Ax Ax HK -Pf -KP +eK +jh HK -Ii -nR -QT -nR -rb +tE +ep +Fq +ep +Eq sI Cr Cr @@ -18789,66 +18786,66 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO -Xy -fx -bq -JZ -JZ -SR -SR -pO -Rt -OH -SR -fx -SR -Cl -JZ -JZ -ff -SR -SR -je -Vv -SR -pG -lg +ln +LI +DS +hb +hb +bt +bt +ir +ju +OW +bt +LI +bt +ch +hb +hb +sh +bt +bt +ks +EP +bt +JV +Qm Dc -eY -ag -Eo -Ob -Ob -Ob -oL +uh +pi +PN +Kn +Kn +Kn +Lu Ui -nK -Cf -ik -bR -Rl -Kd -Cs -NT -UN -qR +lX +Ft +Vm +CR +Fb +GX +fB +tN +oY +pV HK Xc -YG -yF -yF -LQ -fX -ti -To +XG +DJ +DJ +lW +EE +dy +iq BY BY -cr +tp BY BY sI @@ -18941,25 +18938,25 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO hS hS vb -bo -bo +Zn +Zn hS hS -ay +hT Dc -Rg +hY Nf Nf Bj -cS +mV Bj Bj Nf @@ -18969,38 +18966,38 @@ Nf Bj Bj Nf -lg +Qm Dc -eY +uh XJ -fy -fL -sS -sS -bS +Un +sT +iM +iM +dq Ui -oM -CF -dO -Os -Rx -Ys -LS -NT -TY -qR +qB +BB +Ue +eE +sl +OS +lN +tN +aF +pV HK Xc -QD -ZV -Mi -ZV -rh -gg -To +yX +Kj +zX +Kj +BJ +Fm +iq bh RD -cr +tp LL LL sI @@ -19093,68 +19090,68 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc -ZL +wR hS CZ aT Qc Bz Mc -bo -eu +Zn +Zu Dc -ie +If Nf -JU -Cv -Cv -dd -bL +hZ +AI +AI +lp +jv Nf -fY -hW -Fi -jf -oJ +xD +xy +DW +YR +iW Nf zJ Dc -bf +fM XJ -Vr +cb Np -Uh +tq Np -As +eV Ui -Pc -FV -Zf -Zf -Zf -Zf -sO -QM -TY -qR +se +Az +BL +BL +BL +BL +Dp +MF +aF +pV HK Xc -QD -ZV +yX +Kj HK -Tr -Xa -NV +ma +NP +ig HK -kr -qm -eL -qm -qf +ZA +qO +Us +qO +EH sI Cr Cr @@ -19247,60 +19244,60 @@ Cr Cr ca ca -ZL +wR Dc -ZL +wR hS um QO SV Bz -GV -bD -HR +JY +TU +Yn pR -Rg +hY Nf -uF -OA -OA -dm -Mj +WF +pL +pL +Tq +lf Nf -gG -OA -OA -jg -Cw +yH +pL +pL +XX +yP Nf KO Ey -lg -me -GY +Qm +Gj +Bb Np Np rJ -As +eV Ui -yM -Dl -Zf -Zf -Zf -Zf -Zf -QM -TY -qR +zm +GE +BL +BL +BL +BL +BL +MF +aF +pV HK HK -za -Si +Xf +ZK HK -Na -dG -di +hs +UM +pT HK HK HK @@ -19399,9 +19396,9 @@ Cr Cr ca ca -ZL +wR Dc -ZL +wR hS BZ Bz @@ -19409,56 +19406,56 @@ iA Bz LZ hS -HH +Mw Dc -Rg +hY Nf -cH -cJ -OA -dt -ea -fO -Pr -PY -Pr -jG -xz -jV -lm +Ez +WH +pL +Xx +gl +Rw +Nl +lT +Nl +MH +Dr +uK +mX ly -ZL +wR XJ -yv -As -Ne -tT -IX +xH +eV +sH +kJ +ql Ui -Gz -Dw -Gk -Os -Sl -Yx -lG -QM -TY -qR +zC +fD +tR +eE +fb +tU +uI +MF +aF +pV HK Xc -kq -Vc +MV +uv HK -XL -fJ -NB +nP +vz +Fk HK -QT -nR -Ii -nR -rb +Fq +ep +tE +ep +Eq sI Cr Cr @@ -19551,9 +19548,9 @@ Cr Cr ca ca -ZL +wR Dc -bf +fM hS Bz Bz @@ -19561,54 +19558,54 @@ Bz LE tv hS -pD +En Dc -Rg +hY Nf -ov -OA -OA -OA -eJ +ZZ +pL +pL +pL +aK Nf -ho -iy -ho -jU -JJ +FG +fT +FG +EG +UY Nf cB lE -wz +ut XJ XJ XJ -PW +dx XJ XJ Ui -tX -Uv -GL -Pe -Su -rx -up -Bq -TY -qR +rm +FD +Sr +jE +Qs +Th +ei +VB +aF +pV HK Xc -kq -ZV -zt -ZV -xM -ti -To +MV +Kj +jX +Kj +lb +dy +iq BY BY -cr +tp BY BY sI @@ -19703,64 +19700,64 @@ Cr Cr Cr ca -ZL +wR Dc -ZL +wR hS hS -wc +mj hS hS hS hS -iX +px Er -Rg +hY Nf -ZR -QE -cZ -dE -Mj +Vt +Em +zS +IO +lf Nf -hG -jb -hG -jb -FN +Pa +Ed +Pa +Ed +GT Nf KO Dc -wz +ut XJ XJ -As -mk -uw -As +eV +pr +KX +eV Ui Ui -DF -oH -NO -Ub -XR -dn -QM -ub +uj +nv +Wi +Fc +oV +lx +MF +sz Ui HK Xc -QD -ZV -Mi -ZV -rh -Sq -To +yX +Kj +zX +Kj +BJ +aM +iq ZI ZI -cr +tp BY BY sI @@ -19855,19 +19852,19 @@ Cr Cr Cr ca -ZL +wR Xs -QN +nn MK MK -Xv -iR +Am +zb Bz qU hS -RK +nZ Er -vP +mA Nf Nf Nf @@ -19883,38 +19880,38 @@ Nf Nf KO Dc -bf +fM YP -ni +yd ry ry Np rJ -As +eV Rv Ui Ui Ui Ui Ui -ZM -Aw -ZM +Lr +Fs +Lr Ui HK HK -hR -Vc +Ks +uv HK -AA -Xa -NV +RF +NP +ig HK -eL -qm -kr -qm -qf +Us +qO +ZA +qO +EH sI Cr Cr @@ -20007,19 +20004,19 @@ Cr Cr Cr ca -Yw -Yw -Yw +DT +DT +DT MK MK BZ -iR +zb Bz -OC +NF hS -pD +En Er -Rg +hY gE gE gE @@ -20035,32 +20032,32 @@ gE gE aw Dc -ZL +wR YP -nM +ab Eb Eb nY Np -As +eV sI Ki -xK +VV Sw HK -FW -eR -bb -dG -xQ +yu +EW +OD +UM +yf HK -EO -QD -Si +zj +yX +ZK HK -nV -Xa -di +YV +NP +pT HK HK HK @@ -20164,32 +20161,32 @@ Cr Cr Cr MK -vt -iR +pp +zb Bz -Jg +GF hS -bu +bC Dc -Rg +hY gE gE -Xj -Qt +eX +xN gE -Hk +mL OZ yU yU ZU Fl lA -Vu +sA kw qc -Gq +ZP YP -oa +cn qv qv Np @@ -20197,28 +20194,28 @@ wS YP sI Ki -Hv +Pu Sw HK -gH -QD -bb -dG -Sc -BM -Br -QD -ZV +WT +yX +OD +UM +Yr +aC +Xn +yX +Kj HK -Vc -Xa -NV +uv +NP +ig HK -QT -nR -Ii -nR -rb +Fq +ep +tE +ep +Eq sI Cr Cr @@ -20316,59 +20313,59 @@ Cr Cr Cr MK -sY -iR +dz +zb Bz -dH +pC hS -pD +En Dc -Rg +hY gE -iQ +Vy Cn -VT +Al gE -ML +Xq ny SB -nx -de -sa -QP -bZ +Ge +LP +Aj +LA +ns Er Rr -Rt +ju YP -qh -Vr -Vr -Vr +jA +cb +cb +cb YP YP sI -Ve -HG -Pl -GK -Gg -sU -Ra -dG -Sc -Mn -Sc -QD -ZV -zt -ZV -xM -rZ -To +os +gJ +uL +tj +cu +HM +oq +UM +Yr +Go +Yr +yX +Kj +jX +Kj +lb +rs +iq Lf Lf -cr +tp BY BY sI @@ -20470,28 +20467,28 @@ Cr MK MK hS -MB +xU hS hS -oW +Za Dc -Rg +hY gE -sX +cf tA gE gE -ML +Xq ny uS -ng +qt TN -EB -EB +vq +vq ye -Qq +Hi TN -Qq +Hi YB YB YB @@ -20501,26 +20498,26 @@ YP YP sI HK -ip +va HK HK -EI -mY -zn -Bi -Sc -EK -Sc -fo -IC -IC -IC -IC -Bi -To +hP +Oh +ee +Ec +Yr +YJ +Yr +kx +KC +KC +KC +KC +Ec +iq BY YX -cr +tp BY BY sI @@ -20621,60 +20618,60 @@ Cr Cr Cr MK -NE -DB -Wg +bV +wu +Lb hS -pD +En Dc -Rg +hY gE -Wo +st iF -Rc +Pg Md kO vg RW -LC +of TN Fz AH AH Gv -LT +Xe Gv -Hc -lK -kF +PE +fu +TS YB Cr Cr Cr sI DX -HX +aZ Qx HK -Sc -Sc +Yr +Yr HK -Br -Br +Xn +Xn HK -lc -CJ -Br +aj +Rs +Xn HK -Br -Br -rd +Xn +Xn +ke HK -eL -qm -kr -qm -qf +Us +qO +ZA +qO +EH sI Cr Cr @@ -20775,30 +20772,30 @@ Cr MK oA QQ -gp +si hS -pD +En Dc -vP +mA gE -qz +Xi Zd gE -WA +Jr DC DC RW -mZ +Lc TN -CX +Mq IP gf -Bd -CP -PL +Vg +HO +uB hy AH -ZX +xk YB Cr Cr @@ -20929,28 +20926,28 @@ MK MK MK MK -wi +Qj Td -Rg +hY gE -co -OY +GI +UB gE gE -Cy -sa -nD +Oi +Aj +XU gE TN TN -gW -It +Mt +Bl TN TN -wI +Hn Gv IP -jN +Ox YB Cr Cr @@ -21081,17 +21078,17 @@ Cr Cr Cr MK -Yw -Yw -Yw +DT +DT +DT kS kS kS kS kS -oC +IF kS -oC +IF kS TN Ol @@ -21099,10 +21096,10 @@ zI jD bO TN -vo +Pj Gv IP -Iy +JM YB Cr Cr @@ -21241,20 +21238,20 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN -xJ +uT Oc zA -gx +vd TN -CX +Mq La us -gt +ii YB Cr Cr @@ -21393,9 +21390,9 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN zY @@ -21403,10 +21400,10 @@ zG Ff Gy TN -kH +yV kB RP -hL +EL YB Cr Cr @@ -21545,9 +21542,9 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN TN @@ -21556,8 +21553,8 @@ TN TN TN TN -Hh -NU +VN +MT YB YB YB @@ -21697,9 +21694,9 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN fm @@ -21708,13 +21705,13 @@ fm fm fm TN -yc -Sn -Vq +xI +tk +JB YB -RN -tB -RM +XT +FA +Ti YB YB Cr @@ -21849,9 +21846,9 @@ kS kS kS kS -gT +LN kS -gT +LN kS TN TN @@ -21860,14 +21857,14 @@ TN TN TN TN -Nz -rt -XP +sp +tt +lL YB -bB -EJ -zL -oo +TG +Vk +nE +Rj YB Cr Cr @@ -21998,28 +21995,28 @@ Cr Cr kS kS -VJ -co +pa +GI kS -gT +LN kS -gT +LN kS TN -kh -qW -GU -Ml -AO -EA -yc -aq -Uf -Bv -Vj -Xb -Bt -fp +yN +GR +wm +rN +iI +TX +xI +XW +Fh +UP +uC +ky +WC +Ee YB Cr Cr @@ -22149,29 +22146,29 @@ Cr Cr Cr kS -eB -uo -WG +QB +xj +VP kS -gT +LN kS -gT +LN kS TN -Ce -fv -Sj -TK -MW -QL -IR -cG -fF -gW -Vj -cw -Bt -Ps +wf +ae +Qp +Ev +Ie +zR +wb +Ga +id +Mt +uC +tD +WC +kt YB Cr Cr @@ -22301,29 +22298,29 @@ Cr Cr Cr kS -CS -vK +rQ +gw aA kS -gT +LN kS -gT +LN kS TN -vc -il -wa -sE -Nx -sE -Ye -Sn -uX +cv +dK +US +Uc +Fx +Uc +Do +tk +bk YB -dj -fF -uQ -pS +ws +id +QC +Sg YB Cr Cr @@ -22454,27 +22451,27 @@ Cr Cr kS kS -yg -aX +ps +xC kS -gT +LN kS -gT +LN kS TN -Qz -il -wa +Lq +dK +US oO -AC +Bp HT -ah -wa -yo +KG +US +iv YB -yy -mo -an +Ip +Pq +KW YB YB Cr @@ -22609,20 +22606,20 @@ kS mb kS kS -gT +LN kS -gT +LN kS TN -NZ -il -Sn +KN +dK +tk jS vG ds -hU -wa -Hx +Ho +US +El YB YB YB @@ -22761,20 +22758,20 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN -NZ -il -Sn -sE -zl -sE -wH -Sn -XN +KN +dK +tk +Uc +uk +Uc +ge +tk +IJ YB Cr Cr @@ -22913,18 +22910,18 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN TN TN -Mu +XY TN TN TN -Qq +Hi TN YB YB @@ -23065,19 +23062,19 @@ Rd kS kS kS -gT +LN kS -gT +LN kS kS YB -Vq +JB Yv -if -IS -YO +HA +nz +kY cj -Vq +JB YB Cr Cr @@ -23215,21 +23212,21 @@ Cr kS Rd kS -or -or -fq +eq +eq +bY kS -Jp -or -or +xS +eq +eq YB -bg -kk +Yy +ze Gu Gu Gu -vJ -oX +Il +yK YB Cr Cr @@ -23375,13 +23372,13 @@ kS kS kS YB -ro -rq -jQ -GA -dg -aG -Zw +iU +GM +jm +mC +kQ +Xk +im YB Cr Cr @@ -25651,11 +25648,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +jP +jP +jP +jP +jP Cr Cr Cr @@ -25803,11 +25800,11 @@ Cr Cr Cr Cr -aS +jP gB -aS -aS -aS +jP +jP +jP Cr Cr Cr @@ -25955,11 +25952,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +jP +jP +jP +jP +jP Cr Cr Cr diff --git a/maps/map_files/rover/rover.dmm b/maps/map_files/rover/rover.dmm index 000f106d1d..da709e5cfa 100644 --- a/maps/map_files/rover/rover.dmm +++ b/maps/map_files/rover/rover.dmm @@ -7,28 +7,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ad" = ( -/obj/structure/closet/secure_closet/squad_sergeant_forecon, +"ai" = ( /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"ae" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/bluefull, /area/golden_arrow/platoon_commander_rooms) -"ag" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"ap" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"ak" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) -"ar" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) "ax" = ( /obj/structure/machinery/prop{ @@ -43,14 +31,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"aA" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) "aB" = ( /obj/structure/foamed_metal, /turf/open/space/basic, @@ -62,6 +42,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_one) +"aG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"aI" = ( +/obj/structure/window/framed/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) "aK" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -71,6 +66,12 @@ /obj/structure/platform, /turf/open/floor/almayer, /area/golden_arrow/supply) +"aL" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "aN" = ( /obj/item/tool/warning_cone{ pixel_x = 4; @@ -79,12 +80,31 @@ /obj/item/stool, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/synthcloset) -"aS" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 17" +"aO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"aV" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 11 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "bb" = ( /obj/structure/largecrate/random/secure{ layer = 2.9 @@ -99,13 +119,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"be" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - density = 0; - pixel_x = -30 +"bc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "bf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/prop{ @@ -123,6 +149,48 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"bh" = ( +/obj/structure/ladder{ + id = "rover2" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"bk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"bl" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 30; + pixel_y = 7 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"bm" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"bx" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"by" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "bC" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -137,39 +205,58 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"bN" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +"bF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"bQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"bS" = ( -/obj/structure/sign/poster/music{ - pixel_y = 29 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/poster/music{ - pixel_x = 8; - pixel_y = 34 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/gun_rack/m41/recon/unloaded, -/obj/item/attachable/attached_gun/grenade/mk1{ - pixel_y = 15; - pixel_x = 8 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"bJ" = ( +/obj/structure/machinery/conveyor{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"bO" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"bP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, +/obj/structure/machinery/power/apc/almayer/south, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"ca" = ( +/area/golden_arrow/supply) +"bW" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"bY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ce" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"ci" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + layer = 3.3 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/area/golden_arrow/canteen) "cl" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/sign/safety/distribution_pipes{ @@ -196,53 +283,59 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"cp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"cs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "ct" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/sniper, /obj/item/attachable/attached_gun/grenade/mk1, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"cJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow, +"cz" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/item/trash/ceramic_plate{ + pixel_y = 1 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 2 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"cS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/area/golden_arrow/canteen) +"cD" = ( +/obj/structure/largecrate/random/case, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"cI" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Subsection"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"cL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/medical) +"cM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "cT" = ( /obj/structure/largecrate/random/secure{ layer = 5.2; @@ -250,15 +343,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) "cV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber{ @@ -266,71 +350,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cX" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) -"dd" = ( +"cW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"dm" = ( -/obj/structure/machinery/photocopier, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 + layer = 2.5 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"do" = ( +/area/golden_arrow/hangar) +"dA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"dv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0 + icon_state = "NW-out" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"dx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"dz" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/area/golden_arrow/hangar) "dB" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ dir = 1; @@ -340,114 +372,65 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"dE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/medic/forecon, -/obj/effect/landmark/late_join/forecon, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "dG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"dJ" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"dH" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"dN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"dL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) +/area/golden_arrow/hangar) +"dM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "dO" = ( /obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ roundstart_template = /datum/map_template/shuttle/cyclone }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"dR" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "dV" = ( /turf/closed/wall/almayer, /area/golden_arrow/canteen) -"ea" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"ec" = ( +"ed" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"ef" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"eh" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/handheld1{ - pixel_x = -8 - }, -/obj/item/prop/almayer/handheld1{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/structure/machinery/floodlight/landing/floor{ - layer = 2.79 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"en" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/special{ - pixel_y = 10 +"ei" = ( +/obj/structure/anti_air_cannon{ + pixel_x = -13; + pixel_y = 8 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"es" = ( +/obj/structure/ladder{ + height = -1; + id = "rover2" }, -/obj/item/ammo_magazine/shotgun/buckshot/special, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"ex" = ( -/obj/structure/largecrate/random/barrel/blue{ - pixel_x = -10 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"ez" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 16; - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) "eB" = ( /obj/structure/window/reinforced{ dir = 4; @@ -499,13 +482,6 @@ /obj/item/facepaint/skull, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"eJ" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"eL" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/canteen) "eO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -513,50 +489,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"eX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"ff" = ( -/obj/structure/largecrate, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) -"fj" = ( -/obj/structure/ladder{ - id = "rover1" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"fk" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/line_nexter{ - dir = 2 +"eT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"eU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/food_storage{ - pixel_x = -20; - pixel_y = 35 +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"fi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/canteen) -"fm" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "fn" = ( /obj/structure/prop{ can_buckle = 1; @@ -571,12 +520,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"fo" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) "fq" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -585,53 +528,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"fs" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -27 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 - }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"fy" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/nade_box{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/item/storage/box/nade_box{ - pixel_x = -9; - pixel_y = -4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) "fB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"fI" = ( +"fE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "fK" = ( @@ -642,39 +550,37 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"fM" = ( -/obj/structure/closet/secure_closet/platoon_sergeant_forecon, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"fO" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"fP" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -6 - }, -/obj/item/trash/plate{ - pixel_y = 3 +"fN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/synthcloset) +"fR" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "fX" = ( /turf/closed/wall/almayer, /area/golden_arrow/cryo_cells) -"gc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 +"fZ" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "gd" = ( /obj/structure/machinery/light{ dir = 4; @@ -687,14 +593,39 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ge" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"gh" = ( +/obj/structure/cargo_container/arious/mid{ + opacity = 0 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"gi" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"gm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/gun_rack/m41/recon/unloaded, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"gs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "gz" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -706,12 +637,6 @@ /obj/structure/machinery/telecomms/relay/preset/tower, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"gK" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) "gL" = ( /obj/structure/barricade/handrail{ dir = 4; @@ -720,140 +645,151 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/supply) +"gR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/machete/full, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "gS" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"gT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"he" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"hf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 +"gX" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/nade_box{ + pixel_x = 2; + pixel_y = -4 }, -/obj/structure/mirror{ - pixel_y = 21 +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/box/nade_box{ + pixel_x = -9; + pixel_y = -4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"hj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluefull, -/area/golden_arrow/hangar) -"hk" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"hd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"hm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"hC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"ho" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/forecon{ + req_access = list(); + req_one_access_txt = "8;12;13;39" }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"hr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"hG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/tl/forecon, -/obj/effect/landmark/late_join/forecon, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"hI" = ( -/obj/structure/machinery/light/small{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"hv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"hy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"hB" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 10 + }, +/obj/structure/machinery/conveyor{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"hN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/golden_arrow/supply) +"hD" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/largecrate/random/barrel/green{ + layer = 3.01; + pixel_x = 12; + pixel_y = 22 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"hM" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 8 }, +/obj/item/weapon/gun/rifle/m4ra/pve, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"hR" = ( +/obj/structure/machinery/cm_vending/clothing/medic/forecon, /turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) "hV" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"hW" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"hX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) "hZ" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/plating, /area/golden_arrow/hangar) -"io" = ( -/obj/structure/pipes/vents/scrubber, +"ia" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/prop_gun{ + custom_gun_desc = "Welp. Too delicate for jungles, it seems. Nothing beats MK1."; + custom_gun_name = "Broken M39 submachinegun"; + prop_gun_type = /obj/item/weapon/gun/smg/m39 + }, +/obj/item/tool/screwdriver/tactical{ + pixel_x = -9; + pixel_y = -3 + }, +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"ir" = ( +/area/golden_arrow/dorms) +"ic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"in" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"iq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light{ - pixel_x = -17; - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"iu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ix" = ( /obj/structure/sign/banners/united_americas_flag{ pixel_y = 30 @@ -861,14 +797,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"iy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = -29 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) "iB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -876,130 +804,116 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) +"iC" = ( +/obj/structure/ladder{ + height = -1; + id = "rover3" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"iF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "iI" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/synthcloset) -"iQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/squad_one) "iR" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"iX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"iY" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 +"iT" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"iZ" = ( -/obj/structure/largecrate/random/case, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) -"jb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"iW" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/start/marine/smartgunner/alpha, /obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/forecon, /obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/start/marine/smartgunner/forecon, /obj/effect/landmark/late_join, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"je" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"iX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"iY" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"jp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"jt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"jv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"jy" = ( -/obj/structure/sign/safety/landingzone{ - pixel_x = -19 +"jh" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"jn" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"jF" = ( -/turf/open/floor/almayer_hull/blackfull, -/area/space) -"jG" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/largecrate/random/barrel/green{ - layer = 3.01; - pixel_x = 12; - pixel_y = 22 +"jo" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"jr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) -"jO" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"jQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/hangar) +"jL" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, /obj/structure/machinery/light/small{ - dir = 4 + dir = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"jY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"kd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, +/area/golden_arrow/synthcloset) +"jT" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/prep_hallway) +"jW" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "ki" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -1009,53 +923,94 @@ "ko" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/cryo_cells) -"kq" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southwest, -/area/space) +"kp" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"kw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"kx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/classcola, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"kA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/light{ + dir = 1; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "kC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"kD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) "kF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"kG" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +"kH" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +/obj/item/storage/box/guncase/shotguncombat, +/obj/item/storage/box/guncase/shotguncombat{ + pixel_y = 6 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"kU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/area/golden_arrow/squad_one) +"kJ" = ( +/obj/structure/sign/poster/music{ + pixel_y = 29 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/poster/music{ + pixel_x = 8; + pixel_y = 34 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, +/obj/structure/gun_rack/m41/recon/unloaded, +/obj/item/attachable/attached_gun/grenade/mk1{ + pixel_y = 15; + pixel_x = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"kK" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) +"kP" = ( +/obj/structure/largecrate, +/obj/structure/machinery/light, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_y = 15 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"kS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"kY" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) "la" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/dorms) @@ -1070,18 +1025,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"lf" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) "lg" = ( /obj/structure/machinery/shower{ dir = 1 @@ -1099,52 +1042,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"lm" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +"lk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ln" = ( /turf/open/floor/plating, /area/golden_arrow/hangar) -"lp" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/attachable/attached_gun/grenade/mk1{ - pixel_y = -1; - pixel_x = 6 - }, +"lo" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"lq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"lr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) +/area/golden_arrow/prep_hallway) "ls" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) @@ -1161,28 +1081,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"lw" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer/bluefull, -/area/golden_arrow/platoon_commander_rooms) -"lA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"lB" = ( -/obj/structure/ladder{ - height = -1; - id = "rover2" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "lH" = ( /turf/closed/wall/almayer, /area/golden_arrow/supply) @@ -1191,13 +1089,14 @@ /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"lJ" = ( +"lM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/ammunition{ - pixel_x = -18 +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + pixel_x = -30 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "lN" = ( /obj/structure/machinery/power/smes/buildable, /obj/item/clothing/ears/earmuffs{ @@ -1207,53 +1106,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"lQ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/squad_one) -"lY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) "lZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"mf" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Medical Subsection"; - req_one_access = list(); - req_one_access_txt = "8" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) "mi" = ( /obj/structure/largecrate/random/case{ pixel_y = 11 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ml" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/plush/therapy/blue{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/toy/plush/therapy/orange{ - pixel_x = -2; - pixel_y = 6 +"mk" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 }, -/obj/item/toy/plush/therapy/red{ - pixel_x = -7; - pixel_y = 2 +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 13 }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "ms" = ( /obj/structure/prop/almayer/computers/sensor_computer1, /obj/structure/machinery/light{ @@ -1264,10 +1139,17 @@ "mv" = ( /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"my" = ( +"mB" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"mE" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "mH" = ( /obj/structure/sink{ dir = 4; @@ -1282,14 +1164,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"mJ" = ( -/obj/structure/largecrate, -/obj/structure/machinery/light, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_y = 15 +"mL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "mM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1300,80 +1181,150 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"mR" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"mU" = ( +"mQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 2.5 }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"mW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"mS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"mX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Sergeant" }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"mZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "na" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"nx" = ( +"nd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"nj" = ( +/obj/structure/prop/invuln/overhead_pipe, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"nl" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/m94/signal, -/obj/item/storage/box/m94/signal{ - pixel_x = 5; - pixel_y = 5 +/obj/item/prop/almayer/handheld1{ + pixel_x = -8 }, -/obj/item/device/binoculars/range/designator, +/obj/item/prop/almayer/handheld1{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/structure/machinery/floodlight/landing/floor{ + layer = 2.79 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"nz" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 +/area/golden_arrow/hangar) +"nn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ladder{ + pixel_x = -16; + pixel_y = -27 }, -/obj/item/tool/pen{ - pixel_x = -9 +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"ns" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() }, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = 8 +/obj/structure/sign/safety/chem_lab{ + pixel_x = -20 }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Squad Leader Telephone"; - phone_category = "Command"; - phone_id = "Squad Leader"; - pixel_x = 6; - pixel_y = -7 +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"nv" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/safety{ + pixel_x = -27 + }, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/weapon/gun/flamer{ + current_mag = null; + pixel_y = 4 + }, +/obj/item/attachable/attached_gun/extinguisher/pyro{ + layer = 3.01 }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"nH" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, +"nC" = ( +/obj/structure/prop/invuln/overhead_pipe, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"nE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ammunition{ + pixel_x = -18 }, /turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"nG" = ( +/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) +"nN" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/device/motiondetector, +/obj/item/device/motiondetector, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"nS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "nX" = ( /obj/structure/bed/chair{ dir = 1 @@ -1386,26 +1337,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"oc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"oh" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"of" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"oo" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "op" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1413,40 +1354,74 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"os" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ot" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) -"ou" = ( -/turf/open/floor/almayer/plate, +"ov" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) -"oJ" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/plate, +"oz" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"oM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) +"oI" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "oQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"oR" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"pa" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, -/obj/structure/machinery/light{ - pixel_x = -17; - unacidable = 1; - unslashable = 1 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"pd" = ( +/obj/structure/ladder{ + height = -1; + id = "rover1" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"pe" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/attachable/attached_gun/grenade/mk1{ + pixel_y = -1; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"pf" = ( +/obj/structure/machinery/cm_vending/gear/medic_chemical, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "ph" = ( /obj/structure/cargo_container/lockmart/right{ layer = 5.2; @@ -1454,22 +1429,56 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"pi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"pl" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/beer{ + layer = 3.3; + pixel_x = -4; + pixel_y = 15 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 29 }, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/forecon, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"pu" = ( +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Commando Huggs"; + pixel_x = 9; + pixel_y = 3; + throwforce = 15 + }, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"pm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/plush/therapy/blue{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/toy/plush/therapy/orange{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/toy/plush/therapy/red{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"pp" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "pw" = ( @@ -1479,116 +1488,30 @@ "pB" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/prep_hallway) -"pF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) "pI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/supply) -"pM" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/safety{ - pixel_x = -27 - }, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/weapon/gun/flamer{ - current_mag = null; - pixel_y = 4 - }, -/obj/item/attachable/attached_gun/extinguisher/pyro{ - layer = 3.01 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"pS" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/plate, +"pV" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"pU" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"pW" = ( -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/closet/crate/construction, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"pZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"qb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/floor/almayer/cargo_arrow/north, +"pY" = ( +/obj/structure/largecrate, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/supply) -"qi" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"qm" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"qo" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"qs" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/grown/lime, -/obj/item/reagent_container/food/snacks/grown/lime{ - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"qt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"qx" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"qy" = ( -/obj/structure/ladder{ - height = -1; - id = "rover3" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +"qu" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) "qA" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/forecon{ req_one_access = list(); @@ -1600,37 +1523,27 @@ /obj/effect/landmark/observer_start, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"qC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"qE" = ( -/obj/structure/machinery/conveyor{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) "qF" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"qJ" = ( -/obj/structure/cargo_container/arious/right{ - opacity = 0 +"qI" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Corpsman" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"qN" = ( -/turf/open/floor/plating/plating_catwalk, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/medic/standard, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"qN" = ( +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"qP" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, +"qR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) "qU" = ( /obj/structure/machinery/door/airlock/almayer/generic, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1638,22 +1551,49 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"qV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/dark_sterile, +"rc" = ( +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) +"ri" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "rl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"rm" = ( +/obj/structure/closet/crate/green, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "ro" = ( /obj/structure/showcase{ desc = "Nobody knows how a mannequin got aboard, but last Halloween it got dressed up as Voorhees and scared the shit out of new guy. Heh, good times."; @@ -1686,53 +1626,17 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"rt" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"rv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"rz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - id = "Delta_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, +"rx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - layer = 2.5 + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "rA" = ( /turf/closed/wall/almayer, /area/golden_arrow/hangar) -"rD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"rE" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) "rH" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -1740,35 +1644,58 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"rJ" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"rL" = ( +/obj/structure/machinery/power/apc/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "rQ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/canteen) -"rS" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"rT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "rX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"sc" = ( -/obj/structure/computer3frame, +"rY" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, /turf/open/floor/almayer/plate, /area/golden_arrow/engineering) +"se" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"si" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "sk" = ( /obj/structure/barricade/handrail{ dir = 4; @@ -1783,15 +1710,6 @@ /obj/item/tool/shovel/snow, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"sp" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) "sq" = ( /obj/structure/prop/tower{ desc = "Military-grade communications tower."; @@ -1800,20 +1718,20 @@ }, /turf/open/floor/almayer_hull, /area/space) -"sv" = ( -/obj/structure/prop/invuln/overhead_pipe, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = 12 +"st" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = 24 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/canteen) "sw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -1831,98 +1749,45 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"sK" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"sN" = ( -/obj/structure/anti_air_cannon{ - pixel_x = -13; - pixel_y = 8 - }, -/turf/open/floor/almayer_hull/outerhull_dir/southwest, -/area/space) -"sR" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) -"sT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"sG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"sX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"sO" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"sY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" +"sQ" = ( +/obj/structure/machinery/conveyor{ + dir = 10 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"sZ" = ( -/obj/structure/prop/invuln/overhead_pipe, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"td" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"tn" = ( -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"to" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 33 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"tt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"te" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"th" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_y = 27 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"tA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Supply Bay" +/obj/structure/sign/safety/autodoc{ + pixel_x = 13; + pixel_y = 27 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"tD" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"tG" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 30; - pixel_y = 7 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"tI" = ( +/area/golden_arrow/prep_hallway) +"tj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 @@ -1930,47 +1795,38 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, /area/golden_arrow/synthcloset) -"tJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/machete/full, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +"tn" = ( +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"tD" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"tE" = ( +/obj/structure/prop/invuln/overhead_pipe, +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = -28 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "tM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"tO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/leader/forecon, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"tQ" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/accessory/storage/droppouch, -/obj/item/clothing/accessory/storage/droppouch, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/supply) -"tS" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 +"tR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/m41amk1/forecon, +/obj/structure/largecrate/supply/ammo/m41amk1/forecon{ + pixel_x = 3; + pixel_y = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"tW" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"tX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "ua" = ( /obj/structure/machinery/power/terminal, /turf/open/floor/plating/plating_catwalk, @@ -1988,111 +1844,109 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"uo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"un" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"uC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/facepaint/black{ - pixel_x = -8 - }, -/obj/item/facepaint/brown, -/obj/item/facepaint/green{ - pixel_x = 9 +/area/golden_arrow/hangar) +"uv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"uJ" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"uO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) -"vd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"uw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"vq" = ( -/obj/structure/prop/invuln/overhead_pipe, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = -28 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/late_join, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"vx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"vy" = ( +"uz" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"vI" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 +/area/golden_arrow/hangar) +"uA" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"vi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"vM" = ( -/obj/structure/machinery/power/apc/almayer/west, +/area/golden_arrow/squad_one) +"vj" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"vR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"vS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"vT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"vt" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"vX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, +/area/golden_arrow/platoon_commander_rooms) +"vD" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"vP" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"wc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/medic/forecon, +/obj/effect/landmark/late_join/forecon, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"wd" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -5; - pixel_y = 3 +"we" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - pixel_x = 9; - pixel_y = 3 +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"wf" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/supply) "wg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -2107,17 +1961,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"wl" = ( -/obj/structure/cargo_container/arious/mid{ - opacity = 0 +"wi" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/canteen) +"wo" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"wm" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" +"wq" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"wr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "wu" = ( @@ -2125,15 +1992,12 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"wx" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"wz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +"ww" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/droppouch, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "wB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -2142,26 +2006,36 @@ "wD" = ( /turf/closed/wall/almayer/white, /area/golden_arrow/medical) -"wH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"wF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + req_one_access = list() }, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) +"wG" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "wN" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"wQ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"wV" = ( +"wU" = ( +/obj/structure/machinery/recharge_station, /turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/area/golden_arrow/synthcloset) "wX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -2175,33 +2049,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"wZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "xe" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/engineering) -"xj" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/synthcloset) "xk" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"xq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "xw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2210,41 +2072,46 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"xx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"xz" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"xJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) -"xL" = ( +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"xB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"xF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + layer = 2.5 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"xR" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" }, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"xM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "xW" = ( /obj/structure/toilet{ dir = 8 @@ -2271,17 +2138,57 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"yc" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"yj" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 +"yd" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"ye" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_one) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"yg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/sign/safety/manualopenclose, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"yh" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/squad_one) +"yl" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"ym" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 29 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"yq" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "yt" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/computer/station_alert{ @@ -2295,169 +2202,143 @@ /obj/structure/foamed_metal, /turf/open/space/basic, /area/golden_arrow/squad_one) -"yB" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) "yC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"yX" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"zi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"zr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"zD" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, +"yG" = ( +/obj/structure/flora/pottedplant/random, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"zF" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/squad_one) +"yJ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, /obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Sergeant" + has_cryo_gear = 0 }, /obj/item/clothing/shoes/marine/jungle/knife, /obj/item/device/radio/headset/almayer/sof/survivor_forecon, /obj/item/clothing/under/marine/standard, /turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"zK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"yP" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"zO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) +"yU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"zU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/leader/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/late_join, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"zV" = ( -/obj/structure/closet/firecloset, +"yV" = ( +/obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"zZ" = ( -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -8 +/area/golden_arrow/engineering) +"yY" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = -17; + unacidable = 1; + unslashable = 1 }, -/obj/item/reagent_container/food/drinks/coffee/marine{ - pixel_x = -7; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"ze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/machinery/light{ + pixel_x = -17; + unacidable = 1; + unslashable = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"Ag" = ( -/obj/structure/blocker/invisible_wall, +/area/golden_arrow/prep_hallway) +"zf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"zr" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"Ap" = ( -/obj/structure/machinery/light{ +"zC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"As" = ( -/obj/structure/closet/crate/green, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" +/area/golden_arrow/canteen) +"zO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Ac" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Ae" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" +/obj/item/clipboard{ + pixel_x = 8; + pixel_y = 3 }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" +/obj/item/tool/pen{ + pixel_x = 12 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Ag" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Az" = ( +/obj/structure/dropship_equipment/paradrop_system, /turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"Au" = ( -/obj/structure/machinery/conveyor{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/supply) -"AA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/beer{ - layer = 3.3; - pixel_x = -4; - pixel_y = 15 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 29 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Commando Huggs"; - pixel_x = 9; - pixel_y = 3; - throwforce = 15 - }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) "AC" = ( /obj/structure/sink{ dir = 4; @@ -2474,35 +2355,6 @@ /obj/item/attachable/attached_gun/grenade/mk1, /turf/open/floor/plating, /area/golden_arrow/hangar) -"AF" = ( -/obj/vehicle/powerloader, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"AG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dorms" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"AH" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"AJ" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 10; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "AK" = ( /obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; @@ -2512,14 +2364,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/medical) -"AP" = ( -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/engineering) +"AL" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"AO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "AQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -2530,20 +2382,32 @@ /obj/structure/closet/firecloset, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"AW" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"Bc" = ( -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"Bh" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/device/motiondetector, -/obj/item/device/motiondetector, +"AX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/clothing/head/headset{ + pixel_x = -6; + pixel_y = 8 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) +"Ba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Bg" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "Bj" = ( /obj/structure/machinery/shower{ dir = 4 @@ -2560,124 +2424,141 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Bw" = ( +"BA" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"BD" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"BI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BO" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"Bz" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +"BP" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/service/tanker, /turf/open/floor/almayer/plate, /area/golden_arrow/platoon_commander_rooms) -"BF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"BR" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"BV" = ( +/obj/structure/closet/secure_closet/squad_sergeant_forecon, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"BY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/m94/signal, +/obj/item/storage/box/m94/signal{ + pixel_x = 5; + pixel_y = 5 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, +/obj/item/device/binoculars/range/designator, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/squad_one) "Cd" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Cl" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) +"Cn" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "Cr" = ( /turf/open/space/basic, /area/space) -"CD" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 - }, -/turf/open/floor/almayer/test_floor5, +"CG" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) -"CO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/m41amk1/forecon, -/obj/structure/largecrate/supply/ammo/m41amk1/forecon{ - pixel_x = 3; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"CR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"CI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "CV" = ( /obj/structure/machinery/computer/supply_drop_console/limited/alternate, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Dc" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 +"CX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"CY" = ( +/obj/structure/window/framed/almayer, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"Dv" = ( +/area/golden_arrow/engineering) +"Db" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"Dd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Dw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Dx" = ( -/obj/structure/machinery/cm_vending/gear/medic_chemical, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"DB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"DC" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"DH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Dq" = ( +/obj/structure/ladder{ + id = "rover3" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"DM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/classcola, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/area/golden_arrow/prep_hallway) +"Dw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"DN" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "DP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"DV" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee/marine, -/obj/item/reagent_container/food/drinks/coffee/marine, -/obj/effect/decal/cleanable/dirt, +"DQ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"DW" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "DY" = ( /obj/structure/cargo_container/wy/right, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2686,16 +2567,30 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Eo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 3 +"DZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ec" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Ej" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Eq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"Et" = ( -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/hangar) +"Eu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Ev" = ( @@ -2714,34 +2609,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ew" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Ey" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/prop_gun{ - custom_gun_desc = "Welp. Too delicate for jungles, it seems. Nothing beats MK1."; - custom_gun_name = "Broken M39 submachinegun"; - prop_gun_type = /obj/item/weapon/gun/smg/m39 - }, -/obj/item/tool/screwdriver/tactical{ - pixel_x = -9; - pixel_y = -3 - }, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"EF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/gun_rack/m41/recon/unloaded, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +"EA" = ( +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "EN" = ( /obj/structure/machinery/light{ dir = 8; @@ -2750,91 +2620,95 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"EO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() +"EP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"EQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/facepaint/black{ + pixel_x = -8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/facepaint/brown, +/obj/item/facepaint/green{ + pixel_x = 9 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"EW" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"EY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/squad_one) +"ER" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"ES" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) "Fg" = ( /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Fp" = ( -/obj/effect/decal/cleanable/dirt, +"Fh" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Fj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Fs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"Fv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/medical{ - pixel_y = 27 +/area/golden_arrow/hangar) +"Fm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/autodoc{ - pixel_x = 13; - pixel_y = 27 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/tl/forecon, +/obj/effect/landmark/late_join/forecon, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Fz" = ( +/obj/structure/cargo_container/arious/right{ + opacity = 0 }, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/hangar) "FE" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"FH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"FF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"FI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"FL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"FM" = ( -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"FP" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" +"FO" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "FT" = ( /obj/structure/window/reinforced{ dir = 8; @@ -2857,10 +2731,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"Ga" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/squad_one) "Gr" = ( /obj/structure/supply_drop/echo, /obj/structure/platform{ @@ -2868,12 +2743,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Gs" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_one_access = list() - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) "GI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" @@ -2889,19 +2758,10 @@ "GQ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/squad_one) -"GS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/ladder{ - pixel_x = -16; - pixel_y = -27 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) -"GZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, +"GV" = ( +/obj/structure/window/framed/almayer/hull, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/area/golden_arrow/platoon_commander_rooms) "Hc" = ( /obj/structure/machinery/shower{ dir = 8 @@ -2910,46 +2770,16 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"Hk" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Hp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"HA" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) -"HJ" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +"Hw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/notepad, -/obj/item/maintenance_jack, -/obj/structure/closet, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/storage/photo_album, -/turf/open/floor/almayer/plate, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "HL" = ( /turf/open/floor/almayer_hull, /area/space) @@ -2957,6 +2787,10 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) +"HO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "HQ" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ dir = 1; @@ -2978,32 +2812,50 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"HV" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) -"Ib" = ( -/obj/structure/window/framed/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"Id" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/squad_one) -"If" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1; - pixel_y = -1 + icon_state = "N"; + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ij" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"In" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"Is" = ( -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) +/area/golden_arrow/prep_hallway) +"Im" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"It" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Iu" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -3023,48 +2875,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"IA" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space) -"IF" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) -"IM" = ( -/obj/structure/machinery/light{ - pixel_x = -17; - unacidable = 1; - unslashable = 1 - }, +"IB" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/canteen) "IS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"IW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/machinery/light{ - dir = 1; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"IX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/item/clothing/head/headset{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) "Jb" = ( /obj/structure/surface/table/reinforced/almayer_B{ layer = 2.0; @@ -3072,157 +2892,134 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) -"Jc" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"Jf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Jn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Jp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Jt" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/item/clothing/mask/cigarette/weed, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 10; + pixel_y = -5 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ju" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Jy" = ( +/obj/structure/computer3frame, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"JA" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/item/notepad, +/obj/item/maintenance_jack, +/obj/structure/closet, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 }, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/storage/photo_album, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"JL" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 +/area/golden_arrow/synthcloset) +"JD" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = -19 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"JS" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/clothing/glasses/welding{ - pixel_x = -7; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"JE" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"JJ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"JV" = ( +"JT" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Kc" = ( /obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 10 - }, -/obj/structure/machinery/conveyor{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"Ka" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"Kd" = ( -/obj/structure/sign/prop3{ - pixel_x = -30 +/obj/structure/machinery/line_nexter{ + dir = 2 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Smartgunner" +/obj/structure/sign/safety/food_storage{ + pixel_x = -20; + pixel_y = 35 }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"Ke" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - req_one_access = list() +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/canteen) +"Kf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Kg" = ( /turf/closed/wall/almayer, /area/golden_arrow/squad_one) -"Kh" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Ki" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "Kk" = ( /turf/closed/wall/almayer/white/hull, /area/golden_arrow/medical) -"Ko" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Kp" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/forecon{ - req_access = list(); - req_one_access_txt = "8;12;13;39" +"Kl" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Kt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 3 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"Ku" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/platoon_commander_rooms) +"Kz" = ( +/obj/structure/ladder{ + id = "rover1" }, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"KF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Kw" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"KD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"KE" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/medical) "KG" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KH" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) "KM" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; @@ -3230,21 +3027,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"KO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 +"KN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"KX" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) -"KV" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) "Lf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3253,44 +3047,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Lg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Ll" = ( -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"Lm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Ln" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 11 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 12; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) -"Lx" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/canteen) +"Lo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "Ly" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3298,66 +3058,142 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"LC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 +"LE" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"LK" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"LI" = ( +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 + }, +/obj/structure/closet/crate/construction, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"LR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"LW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; + dir = 4; name = "ship-grade camera" }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"LL" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"LN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/area/golden_arrow/medical) +"LY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) +/area/golden_arrow/dorms) "LZ" = ( /obj/structure/machinery/door/airlock/maintenance/colony{ req_one_access = list() }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Mb" = ( -/turf/open/floor/almayer_hull/outerhull_dir/north, -/area/space) -"Mj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"Ma" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "Its tongs molded together after someone tried a bite of that arcturian curry."; + name = "melted fork"; + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/resin_fruit{ + desc = "Never let Joes cook alien cuisine. Eugh."; + name = "arcturian curry"; + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ml" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Mm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/squad_one) +"Ms" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -20; + pixel_y = 6 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -20; + pixel_y = -7 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -32 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Mo" = ( -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Mu" = ( +/obj/structure/sign/prop3{ + pixel_x = -30 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/dorms) +"Mw" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Radio Telephone Operator" + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "My" = ( /obj/structure/machinery/door/airlock/almayer/generic{ id = "Delta_1"; @@ -3374,23 +3210,6 @@ "MG" = ( /turf/closed/wall/almayer, /area/golden_arrow/engineering) -"MI" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/item/trash/ceramic_plate{ - pixel_y = 1 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 2 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) "MJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -3405,29 +3224,48 @@ /obj/structure/machinery/light/small, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"MN" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +"MT" = ( +/obj/structure/closet/secure_closet/platoon_sergeant_forecon, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"MV" = ( +/turf/open/floor/almayer_hull/blackfull, +/area/space) +"MW" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"MP" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/item/tool/pen{ + pixel_x = -9 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/obj/structure/phone_base/rotary/no_dnd{ + name = "Squad Leader Telephone"; + phone_category = "Command"; + phone_id = "Squad Leader"; + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"MY" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"Nb" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) "Nc" = ( /turf/closed/wall/almayer, /area/golden_arrow/dorms) -"Nf" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) "Ni" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -3438,6 +3276,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Nk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Nr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -3445,37 +3301,39 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Ns" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Nu" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"Ny" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Nz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"NB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"NI" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +/area/golden_arrow/engineering) +"NM" = ( /obj/structure/machinery/light{ - dir = 1; - pixel_x = -17; - unacidable = 1; - unslashable = 1 + dir = 8 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -20; + pixel_y = 6 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -20; + pixel_y = -7 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"NO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Supply Bay" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) +/area/golden_arrow/supply) "NQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3483,42 +3341,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"Oc" = ( -/obj/structure/machinery/cm_vending/clothing/medic/forecon, +"Oe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, /turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) -"Of" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"Oq" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"Or" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + id = "Delta_1"; + name = "\improper Bathroom" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"Om" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Ov" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 1 + layer = 3.33; + pixel_x = 2 }, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/forecon, -/obj/effect/landmark/late_join/forecon, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_y = 29 + icon_state = "W"; + layer = 2.5 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) +"Ow" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "Oy" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -3548,113 +3405,90 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"OC" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northwest, -/area/space) -"OJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, +"OH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"ON" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"OK" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) -"OO" = ( -/obj/structure/ladder{ - id = "rover3" +/area/golden_arrow/cryo_cells) +"OL" = ( +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"OU" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Squad Sergeant" +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, /turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) -"Pf" = ( -/obj/structure/ladder{ - id = "rover2" +/area/golden_arrow/hangar) +"OP" = ( +/obj/structure/cargo_container/lockmart/left{ + pixel_y = 5 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/prep_hallway) -"Pj" = ( +/area/golden_arrow/hangar) +"OV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 1 + layer = 3.33; + pixel_x = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"OX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"OY" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 }, +/obj/structure/sign/safety/manualopenclose, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Pc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/start/marine/smartgunner/forecon, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Ps" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Pt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"Pw" = ( -/obj/structure/cargo_container/lockmart/left{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"PE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"PH" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/start/marine/smartgunner/forecon, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) -"PI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/canteen) -"PM" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northeast, -/area/space) -"PN" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Radio Telephone Operator" +"PJ" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer/plate, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "PY" = ( /obj/structure/machinery/light{ dir = 4; @@ -3668,37 +3502,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"PZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"Qc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Qa" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/clothing/glasses/welding{ + pixel_x = -7; + pixel_y = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Qn" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -3708,51 +3519,78 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) +"Qo" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Qp" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Qq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"Qy" = ( -/obj/structure/machinery/floodlight/landing/floor, +"Qr" = ( +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"QB" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 +"Qs" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"QD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 13 +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) -"QH" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"QE" = ( +/obj/structure/machinery/photocopier, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "SE-out"; + pixel_y = -1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"QO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; - layer = 3.33; - pixel_x = 2 + pixel_x = 1 }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"QP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/late_join, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) +"QV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "QW" = ( /obj/structure/bed/chair{ dir = 1 @@ -3763,55 +3601,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"QX" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) -"Ra" = ( -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/space) -"Rc" = ( -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"Rm" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Rr" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Rs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Rv" = ( -/obj/structure/bed/chair/comfy{ +"Ru" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/obj/structure/platform, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"Ry" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/area/golden_arrow/platoon_commander_rooms) +"RK" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"RL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "RO" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Sb" = ( +"RW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"RX" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Sf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Sg" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -3825,10 +3675,8 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Ss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, +"Sr" = ( +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "St" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3854,31 +3702,46 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"SM" = ( -/obj/structure/ship_ammo/rocket/keeper, -/turf/open/floor/almayer/cargo, +"SH" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 16; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"SQ" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"SR" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Corpsman" +"SU" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"SV" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"Ta" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Tb" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/medic/standard, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/canteen) "Tc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Td" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Tl" = ( /obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; @@ -3896,161 +3759,164 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"To" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -20; - pixel_y = 6 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -20; - pixel_y = -7 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"Tp" = ( -/obj/structure/ladder{ - height = -1; - id = "rover1" - }, -/turf/open/floor/almayer/plate, +"Tr" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"Ts" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/supply) -"Tt" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) "Tu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"Ty" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"Tz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/backpack/marine/satchel/rto, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) "TD" = ( /turf/closed/wall/almayer/outer, /area/space) +"TF" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) "TJ" = ( /obj/structure/cargo_container/lockmart/mid{ pixel_y = 5 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"TQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 +"TM" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"TS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoon_commander_rooms) +/area/golden_arrow/canteen) "TV" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Uc" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m4ra/pve, -/turf/open/floor/almayer/plate, -/area/golden_arrow/squad_one) -"Ux" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Uy" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() +"Uj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/hangar) +"Uk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Um" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"Uz" = ( -/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/supply) +"Up" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Uq" = ( +/obj/vehicle/powerloader, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) +"Uv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ux" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) "UB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"UJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "UO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"Va" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters" +"UV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"Vj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Vo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/supply) "Vp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"Vz" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/hangar) -"VK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"Vr" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Vu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 11 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Vz" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"VB" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "VX" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Wf" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/synthcloset) -"Wg" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +"Wc" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "Wk" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -4080,60 +3946,56 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Wv" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"WI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, +"Wu" = ( /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"WP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +"Wz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"WV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -20; - pixel_y = 6 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -20; - pixel_y = -7 +/area/golden_arrow/canteen) +"WC" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/sign/safety/storage{ - pixel_x = -32 +/obj/structure/machinery/light{ + pixel_x = -17; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"Xd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"WM" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 33 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"WR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/backpack/marine/satchel/rto, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Xe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"Xh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Xi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() }, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "Xj" = ( /obj/item/reagent_container/spray/cleaner{ pixel_x = 5; @@ -4148,25 +4010,53 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Xw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, +"Xx" = ( +/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"XF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"Xy" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + layer = 3.7 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"XN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"XP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Midway Remote Control Console"; + shuttleId = "dropship_midway" }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"XW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"XX" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"XJ" = ( +"Yc" = ( /obj/structure/surface/table/almayer, /obj/item/smartgun_battery{ pixel_x = 4; @@ -4183,26 +4073,17 @@ }, /turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"XP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - name = "Midway Remote Control Console"; - shuttleId = "dropship_midway" +"Yf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/bluefull, /area/golden_arrow/platoon_commander_rooms) -"XX" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Ya" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"Yg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee/marine, +/obj/item/reagent_container/food/drinks/coffee/marine, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Yh" = ( @@ -4211,62 +4092,100 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"Yi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Yj" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/almayer, /area/golden_arrow/medical) -"Yk" = ( +"Yl" = ( +/obj/structure/bed/chair/comfy, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Yn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Yw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = list() - }, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -20 +"Yo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) -"YB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Yt" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/start/marine/smartgunner/forecon, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) +/area/golden_arrow/cryo_cells) +"Yx" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -6 + }, +/obj/item/trash/plate{ + pixel_y = 3 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Yz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "YG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"YH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "Its tongs molded together after someone tried a bite of that arcturian curry."; - name = "melted fork"; - pixel_x = -9; - pixel_y = 9 +"YK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/resin_fruit{ - desc = "Never let Joes cook alien cuisine. Eugh."; - name = "arcturian curry"; - pixel_x = 6; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"YO" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + density = 0; + pixel_x = -30 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"YV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "YZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -4276,10 +4195,69 @@ "Zb" = ( /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Zj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/hangar) +"Zf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/grown/lime, +/obj/item/reagent_container/food/snacks/grown/lime{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Zr" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -27 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Zx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"Zz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ZA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"ZB" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) "ZC" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/forecon{ req_access = list(); @@ -4290,10 +4268,32 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"ZL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer/sterile_green, -/area/golden_arrow/medical) +"ZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ZX" = ( +/obj/structure/machinery/light{ + pixel_x = -17; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) (1,1,1) = {" Cr @@ -6348,22 +6348,22 @@ Cr Cr Cr Vz -yc -Et -DW -FH -DW -td -SM +jh +un +Ju +Dd +Ju +dM +nG Vz -Ty -Et -ou -wV -FH -wV -ou -wV +Az +un +Wu +EA +Dd +EA +Wu +EA Vz Cr Cr @@ -6500,22 +6500,22 @@ Cr Cr Cr Vz -wV -Et -wV -Et -wV -Et -wV +EA +un +EA +un +EA +un +EA Vz -As -Et -ou -wV -Et -wV -ou -wV +rm +un +Wu +EA +un +EA +Wu +EA Vz iI iI @@ -6652,29 +6652,29 @@ Cr Cr Cr Vz -Et -kd -WI -WI -WI -cp -Et +un +os +uv +uv +uv +Yi +un Vz -td -Et -kd -WI -Ya -Ya -wZ -td +dM +un +os +uv +mL +mL +fE +dM Vz iI -xj -Ka -eX -be -tI +jL +mE +lM +YO +tj iI Cr Cr @@ -6804,25 +6804,25 @@ Cr Cr Cr Vz -yc -fI +jh +dL Fg Fg kF -lA -SM +wr +nG Vz -wV -Et -fI +EA +un +dL Fg Fg Fg -lA -wV +wr +EA Vz iI -Qc +LE Oy um wX @@ -6956,29 +6956,29 @@ Cr Cr Cr Vz -wV -ge +EA +Yn kF Rr Fg -lA -wV +wr +EA Vz -wV -Et -ge +EA +un +Yn kF Rr Fg -BF -wV +jr +EA Vz iI -Wf +wU wg aN yt -HJ +JA iI Cr Cr @@ -7110,24 +7110,24 @@ Vz Vz Vz Vz -pS -pS -pS +Eq +Eq +Eq Vz Vz Vz Vz Vz Vz -pS -pS -pS +Eq +Eq +Eq Vz Vz Vz iI iI -VK +fN iI iI iI @@ -7262,29 +7262,29 @@ Ag Ag ax Bt -Uz -Uz -jj -WV -jG -Ln -Zj -Is -To -Sb -Uz -Uz +ce +ce +si +NM +hD +aV +pV +DN +Ms +UJ +ce +ce Fg KG AU rA -wm -ou -ou -ou -Pw -Om -oJ +JJ +Wu +Wu +Wu +OP +RX +DQ Cr Cr Cr @@ -7417,12 +7417,12 @@ wB wB Ni Nr -GZ -ex -ap -iZ -tW -Ki +hy +by +FI +cD +Xe +Jf xw Ni Ni @@ -7435,8 +7435,8 @@ qF bb Fg TJ -AH -oJ +VB +DQ Cr Cr Cr @@ -7569,12 +7569,12 @@ Fg Fg Fg DP -AF -lY -sT -Is -fm -FM +Uq +Db +zs +DN +Tr +Ej Lf kF kF @@ -7587,8 +7587,8 @@ kF ya Fg ph -my -oJ +mB +DQ Cr Cr Cr @@ -7714,33 +7714,33 @@ Cr Vz Fg Xk -Qy -ou -ou -ou -ou -ou -Xw -mU -mU -Yk -mU -mU -mU -Rs -ou -ou -ou -ou -ou -Qy +Xx +Wu +Wu +Wu +Wu +Wu +tc +cW +cW +mQ +cW +cW +cW +dA +Wu +Wu +Wu +Wu +Wu +Xx Fg kF lZ Cd Ev -AJ -oJ +Jt +DQ Cr Cr Cr @@ -7866,7 +7866,7 @@ TD Vz Fg Xk -Et +un ln ln ln @@ -7885,14 +7885,14 @@ ln ln ln ln -bN +SQ mi Fg lZ xk cT -qm -oJ +AL +DQ Cr Cr Cr @@ -8018,7 +8018,7 @@ TD Vz kF yC -Et +un ln ln ln @@ -8037,13 +8037,13 @@ ln ln ln ln -Mo +OL Fg Fg op fn Fg -wl +gh Vz Cr Cr @@ -8170,7 +8170,7 @@ TD Vz MF yC -Td +fZ ln ln ln @@ -8189,13 +8189,13 @@ ln ln ln ln -KE +bx Fg Fg lZ nX Fg -qJ +Fz Vz Vz Vz @@ -8318,11 +8318,11 @@ Cr Cr Cr Cr -Mb -wQ +te +Fh Fg yC -yj +OY ln ln ln @@ -8341,16 +8341,16 @@ ln ln ln ln -ou +Wu kF kF QW Fg Fg -ou -jy -sK -Tp +Wu +JD +Sr +pd Vz Cr Cr @@ -8470,11 +8470,11 @@ Cr Cr Cr Cr -Mb -wQ +te +Fh kF IS -LL +Eu ln ln ln @@ -8493,16 +8493,16 @@ ln ln ln ln -Qy -Et -Ss -vX -ou -ou -ou -ou -sK -lB +Xx +un +uz +qR +Wu +Wu +Wu +Wu +Sr +es Vz Cr Cr @@ -8622,11 +8622,11 @@ Cr Cr Cr Cr -Mb -wQ +te +Fh Fg yC -Td +fZ ln ln ln @@ -8645,16 +8645,16 @@ ln ln ln ln -ou +Wu Fg Fg yC Fg Fg -ou -ou -sK -qy +Wu +Wu +Sr +iC Vz Cr Cr @@ -8778,7 +8778,7 @@ TD Vz MF yC -yj +OY ln ln ln @@ -8797,13 +8797,13 @@ ln ln ln ln -ou +Wu Fg kF yC Fg Fg -bQ +Xh rA rA rA @@ -8930,7 +8930,7 @@ TD Vz Fg yC -ou +Wu ln ln ln @@ -8949,18 +8949,18 @@ ln ln ln ln -Ns +Qo Fg kF yC Fg Fg -rt +kp MG -Gs -of -vM -qP +aL +OH +rL +rY xe Cr Cr @@ -9082,7 +9082,7 @@ TD Vz Fg Sz -ou +Wu ln ln ln @@ -9101,18 +9101,18 @@ ln ln ln ln -DV +Yg Fg Fg yC Fg Fg -ou +Wu MG -fo +LR tn na -sc +Jy xe Cr Cr @@ -9234,37 +9234,37 @@ Cr Vz Fg Sz -Rm -ou -ou -ou -ou -ou -ou -ou -Et -Hk -ou -ou -ou -ou -ou -ou -ou -Et -ou -eh +JE +Wu +Wu +Wu +Wu +Wu +Wu +Wu +un +sG +Wu +Wu +Wu +Wu +Wu +Wu +Wu +un +Wu +nl Fg Fg IS sw qF -FW -Ke -FG +AO +wF +vj rl tn -Tt +yV xe Cr Cr @@ -9411,9 +9411,9 @@ Fg Xk Fg Fg -ou -rS -ec +Wu +ER +NB dG tD xe @@ -9558,14 +9558,14 @@ Ni Ni Ni iY -vR +ov qF -uO +XN kF Fg -ou -Wv -Fp +Wu +CY +ef Qp XX xe @@ -9694,32 +9694,32 @@ Fg Fg Fg PY -pu -lq -pu +bO +ri +bO gd Nj Fg -vx +pp Fg PY Fg -lq +ri Fg Fg KG AU rA -HA -JS -QB -Wg -ou -ou -Wv -qt +Xy +Qa +mk +Qr +Wu +Wu +CY +fi cl -rS +ER xe Cr Cr @@ -9842,22 +9842,22 @@ Cr ot ot Jb -In -In -In +GV +GV +GV ot -pS -nH -pS +Eq +Fj +Eq Vz rA rA LZ rA rA -Kw +oz Su -Kw +oz lH lH lH @@ -9869,9 +9869,9 @@ lH lH MG MG -Uy +nS MG -EO +Xi xe xe xe @@ -9998,33 +9998,33 @@ bC Ps Yh Nu -ou +Wu Sz -ou +Wu Vz ro ln ln Xj rA -ou +Wu Xk -ou -tA -Rc -jv -yX -Ts -lr -dm -If +Wu +NO +Qs +cM +wf +Um +Ae +QE +Vo lH -pW -xL -EQ -wH -wH -hk +LI +we +UV +Uk +Uk +eT hV xe Cr @@ -10148,35 +10148,35 @@ St Ux HT Ps -ae -FP -hj +Yf +dH +Uj Ly -Et +un Vz AD ln ln hZ rA -Et +un YG -FW -gT -gT +AO +mZ +mZ pI ki iR Oz oQ -tQ +ww lH -AP -dx +BR +hr ua xX rH -hC +Sf zr xe Cr @@ -10302,18 +10302,18 @@ RO Ps mP Nu -ou +Wu Rr -ou +Wu Vz Vz Vz Vz Vz Vz -Et +un lZ -ou +Wu lH ms pw @@ -10321,14 +10321,14 @@ GL NQ Oz oQ -mJ +kP lH -sR -dx +kY +hr qN qN Tc -hC +Sf YZ xe Cr @@ -10454,18 +10454,18 @@ Ps KM GI Nu -ou +Wu Rr -ou +Wu Vz Cr Cr Cr Cr Vz -Et +un lZ -ou +Wu lH CV Oz @@ -10473,14 +10473,14 @@ Oz gS Oz oQ -CD +PJ lH -pF -OJ +zf +bF ua lN gz -XF +Pc sm xe Cr @@ -10601,39 +10601,39 @@ Cr Cr ot Nu -Va +jW Nu Nu Nu Nu -ou +Wu Rr -bQ +Xh Vz Cr Cr Cr Cr Vz -xM +Vr lZ -Vj +wo lH -cX +CG aK sk Oz gL oQ -ff +pY lH -oM -mW -CR -PZ -zK -kD -mR +Kl +Hw +OX +It +YV +ic +pa xe Cr Cr @@ -10753,31 +10753,31 @@ Cr Cr ot ot -lw -pU +yP +ai Ps AQ Nu -ou +Wu Rr -ou +Wu Vz Cr Cr Cr Cr Vz -ou +Wu lZ -Et +un lH Gr -qb -JV -hX -gK -rE -pZ +Ru +hB +Ac +Cn +Vu +bP ls xe xe @@ -10906,28 +10906,28 @@ Cr ot ot wN -pU +ai Ps -Eo +Kt Nu -ou +Wu Rr -ou +Wu Vz Cr Cr Cr Cr Vz -ou +Wu lZ -Et +un ls ls ls -xJ +MY ls -xJ +MY ls ls ls @@ -11057,29 +11057,29 @@ Cr Cr Cr ot -HV -pU +jo +ai Ps -TQ +BQ Nu -ou +Wu Fg -ou +Wu Vz Cr Cr Cr Cr Vz -qC +KN cV -ou +Wu Vz Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -11209,29 +11209,29 @@ Cr Cr Cr ot -Bz -pU +vt +ai Ps -zD +BA Nu -ou +Wu Fg -ou +Wu Vz Cr Cr Cr Cr Vz -dR +jn Fg -ou +Wu Vz Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -11363,27 +11363,27 @@ Cr ot ot Nu -cU +Zx Nu ot -pS -pS -pS +Eq +Eq +Eq Vz Cr Cr Cr Cr Vz -pS -pS -pS +Eq +Eq +Eq Vz Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -11514,9 +11514,9 @@ Cr Cr Cr ot -hf -YB -lf +se +Jn +Ry ot Cr Cr @@ -11533,9 +11533,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -11668,7 +11668,7 @@ Cr ot Hc xW -aA +yl ot Cr Cr @@ -11685,9 +11685,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -11837,9 +11837,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -11989,9 +11989,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12141,9 +12141,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12293,9 +12293,9 @@ ls ls ls ls -lm +wq ls -lm +wq ls Cr Cr @@ -12442,12 +12442,12 @@ Cr Cr Cr ls -qE -qE -qE -Au -qE -Au +bJ +bJ +bJ +sQ +bJ +sQ ls Cr Cr @@ -14112,17 +14112,17 @@ Cr Cr Cr Kk -wz -rv -Ll -Dx +hv +Yz +rc +pf Kk pB pB pB pB -Ra -kq +SV +ed Cr Cr Cr @@ -14264,18 +14264,18 @@ Cr Cr Cr Kk -SR -zi -wx -Pt +qI +Kf +RK +aO wD -fj -Pf -OO +Kz +bh +Dq pB HL HL -kq +ed Cr Cr Cr @@ -14416,19 +14416,19 @@ Cr Cr Cr Kk -Oc -hN -MN -ml +hR +Oe +iF +pm wD -Cl -Cl -GS +TF +TF +nn pB HL HL HL -kq +ed Cr Cr Cr @@ -14569,19 +14569,19 @@ Cr Cr Kk wD -mf +cI Yj wD wD -kG +gi lv -ir +ze pB HL -IA -IA +in +in HL -sN +ei Cr Cr Cr @@ -14720,20 +14720,20 @@ Cr Cr Cr Kk -Yw -EY -qV -tS +ns +KF +LW +fR wD -AW +vP mM -KV -IF -Bc -jF -jF -Mb -Bc +bW +vD +Nb +MV +MV +te +Nb Cr Cr Cr @@ -14872,20 +14872,20 @@ Cr Cr Cr Kk -ZL -EY -ca -oo +ES +KF +iq +kK Yj -KV +bW kC -KV -IF -Bc -jF -jF -Mb -Bc +bW +vD +Nb +MV +MV +te +Nb Cr Cr Cr @@ -15024,20 +15024,20 @@ Cr Cr Cr Kk -IW -Ny -DB -kU +kA +CI +BD +bc AK -FL +HO Tu -KV -IF -Bc -jF -jF -Mb -Bc +bW +vD +Nb +MV +MV +te +Nb Cr Cr Cr @@ -15176,20 +15176,20 @@ Cr Cr Cr Kk -KO -vT -oc -he +OV +yg +FF +TM Yj -KV +bW mM -KV +bW pB HL -Ra -Ra +SV +SV HL -Bc +Nb Cr Cr Cr @@ -15328,20 +15328,20 @@ Cr Cr Cr Kk -JL -xx -qi -Dc +bm +cL +oI +Oq wD -Fv +th kC -IM +ZX pB HL HL HL HL -Bc +Nb Cr Cr Cr @@ -15480,20 +15480,20 @@ Cr Cr Cr Kk -KH -Xd -KH +KX +YK +KX wD wD -EW +lo kC -KV +bW pB pB HL HL HL -Bc +Nb Cr Cr Cr @@ -15636,16 +15636,16 @@ wD wD wD wD -zV -KV +Ij +bW mM -to -rD +WM +jT pB HL HL HL -Bc +Nb Cr Cr Cr @@ -15797,7 +15797,7 @@ GQ GQ HL HL -Bc +Nb Cr Cr Cr @@ -15940,11 +15940,11 @@ yu yu Kg Kg -en -pM +kH +nv fB -Uc -jO +yh +hM Kg GQ GQ @@ -16091,17 +16091,17 @@ GQ yu yu Kg -fy -ag +gX +JT Vp fB mv -ag -Bh +JT +nN Kg -tJ -lp -ad +gR +pe +BV GQ Cr Cr @@ -16235,25 +16235,25 @@ Cr Cr Cr Cr -OC -Ra -Ra +SU +SV +SV TD GQ yu yu Kg -bS +kJ mv Vp lh UO UO -iQ +Mm dB -uo -hI -ag +tX +BO +JT GQ Cr Cr @@ -16386,7 +16386,7 @@ Cr Cr Cr Cr -OC +SU HL HL HL @@ -16395,13 +16395,13 @@ GQ Kg Kg Kg -EF +gm mv mv qA mv mv -sY +CX Kg Kg Kg @@ -16538,27 +16538,27 @@ Cr Cr Cr Cr -Mb +te HL HL HL HL -lQ -Tz -zZ +ZB +WR +Ml Kg -ez +SH mv mv ZC Vp mv -iy +bk Kg -wd -dv -nz -qx +Im +Ta +MW +yG GQ Cr Cr @@ -16690,27 +16690,27 @@ Cr Cr Cr Cr -Mb +te HL sq HL HL -lQ -LC -io +ZB +RL +yq HQ -Bw +ye UO UO HM UO UO -iQ +Mm Qn -uo -Nz -LN -Kp +tX +ZA +RW +ho GQ Cr Cr @@ -16842,27 +16842,27 @@ Cr Cr Cr Cr -Mb +te HL HL HL HL -lQ -nx -IX +ZB +BY +AX Kg -uC -CO +EP +tR mv iB mv aC -XJ +Yc Kg -fM -jQ -vy -Hp +MT +aG +yf +Ga GQ Cr Cr @@ -16994,7 +16994,7 @@ Cr Cr Cr Cr -PM +qu HL HL HL @@ -17005,9 +17005,9 @@ Kg Kg Kg Kg -Qq -Ib -Qq +vi +aI +vi Kg Kg Kg @@ -17147,7 +17147,7 @@ Cr Cr Cr Cr -PM +qu HL HL TD @@ -17156,20 +17156,20 @@ aB aB dV dV -sp -eJ -DH -eJ -lJ -eJ -AG +FO +yd +zC +yd +nE +yd +LY Zb -Jc -fs +xz +Zr eB -vI +yJ FT -Kd +Mu eF la Cr @@ -17300,21 +17300,21 @@ Cr Cr Cr Cr -Mb +te HL TD rQ aB aB dV -ar -fk -sX -Kh -Rv -dz -PI -Fs +IB +Kc +QV +wG +iT +st +Ec +Lo iX tM tM @@ -17452,20 +17452,20 @@ Cr Cr Cr Cr -Mb +te HL HL rQ aB aB dV -ar -eL -dJ -YH -jY -fP -Of +IB +wi +Yl +Ma +sO +Yx +ci Nc ix lI @@ -17604,28 +17604,28 @@ Cr Cr Cr Cr -Mb +te HL HL rQ aB aB dV -NI -eL -dJ -MI -DM -qs -oR +yY +wi +Yl +cz +kx +Zf +WC Nc -PN -Ap -Ey -OU +Mw +Yo +ia +rJ bf -AA -zF +pl +mX VX la Cr @@ -17756,20 +17756,20 @@ Cr Cr Cr Cr -Mb +te HL HL rQ aB aB dV -ar -Lx -ON -MP -vS -vS -LK +IB +Tb +BI +Wc +DZ +DZ +xq la la la @@ -17908,7 +17908,7 @@ Cr Cr Cr Cr -Mb +te HL HL rQ @@ -17916,12 +17916,12 @@ aB aB dV dV -dN -Ko -jp -yB -tG -Dv +TS +ak +mS +BP +bl +Nk rQ Cr Cr @@ -18060,7 +18060,7 @@ Cr Cr Cr Cr -Mb +te HL HL rQ @@ -18069,9 +18069,9 @@ dV dV dV dV -je -hW -je +Bg +Wz +Bg dV dV rQ @@ -18212,7 +18212,7 @@ Cr Cr Cr Cr -Mb +te HL HL HL @@ -18221,9 +18221,9 @@ OA Bj Bj fX -sv -sZ -vq +nj +nC +tE fX Bj Bj @@ -18370,15 +18370,15 @@ ko ko ko OA -dd -Mj -DC -hm -rT -Lg -qo -Mj -cs +Ba +rx +OK +bY +Nl +Jp +Up +rx +nd lg ko Cr @@ -18522,15 +18522,15 @@ fX Sn fX OA -Lm -fO -fO -vd +XW +kw +kw +kS fX -cJ -fO -fO -do +eU +kw +kw +hd lg ko Cr @@ -18674,15 +18674,15 @@ fX My fX fX -WP -fO -fO -ea +Id +kw +kw +oh fX -fO -fO -fO -wa +kw +kw +kw +gs fX ko Cr @@ -18821,21 +18821,21 @@ Cr Cr ko fq -cS -QH -gc -rz -zU -KD -tt -KD -Ew -Ku -fO -fO -jt -Lg -uJ +lk +ZU +Zz +Or +xF +xB +QO +xB +iu +QD +kw +kw +Uv +Jp +uA ko Cr Cr @@ -18977,17 +18977,17 @@ AC mH AC fX -Ov -dE +ym +wc Dw -Pj -jb +iW +QP Dw -tO -pi +yU +uw Dw -hG -PE +Fm +Yt ko Cr Cr @@ -19129,17 +19129,17 @@ ko ko ko ko -Nf -QX +Ow +PH Dw -Nf -QX +Ow +PH Dw -Nf -QX +Ow +PH Dw -Nf -QX +Ow +PH ko Cr Cr @@ -22307,11 +22307,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +xR +xR +xR +xR +xR Cr Cr Cr @@ -22459,11 +22459,11 @@ Cr Cr Cr Cr -aS +xR gB -aS -aS -aS +xR +xR +xR Cr Cr Cr @@ -22611,11 +22611,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +xR +xR +xR +xR +xR Cr Cr Cr diff --git a/maps/shuttles/ert_shuttle_big.dmm b/maps/shuttles/ert_shuttle_big.dmm index 80495885fb..3768dfdbe1 100644 --- a/maps/shuttles/ert_shuttle_big.dmm +++ b/maps/shuttles/ert_shuttle_big.dmm @@ -88,6 +88,31 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) +"fP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/item/storage/backpack/lightpack, +/obj/item/storage/backpack/lightpack, +/obj/item/storage/backpack/lightpack, +/obj/item/storage/box/bodybags{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"fX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("Military","Almayer"); + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "gN" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -438,13 +463,13 @@ /area/shuttle/ert) "yU" = ( /obj/structure/surface/table/almayer, -/obj/item/weapon/gun/pistol/mod88{ +/obj/item/weapon/gun/pistol/vp70{ pixel_y = 4 }, -/obj/item/ammo_magazine/pistol/mod88/normalpoint{ +/obj/item/ammo_magazine/pistol/vp70{ pixel_x = 5 }, -/obj/item/ammo_magazine/pistol/mod88/normalpoint{ +/obj/item/ammo_magazine/pistol/vp70{ pixel_x = 5 }, /turf/open/floor/almayer/plate, @@ -505,6 +530,19 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) +"Ca" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"Cd" = ( +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/obj/item/tool/soap, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "Cw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -690,6 +728,20 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) +"PB" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/obj/item/tool/pen, +/obj/item/tool/pen, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "PE" = ( /turf/closed/wall/almayer/white/hull, /area/shuttle/ert) diff --git a/sound/weapons/gun_88m4_reload.ogg b/sound/weapons/gun_vp70_reload.ogg similarity index 100% rename from sound/weapons/gun_88m4_reload.ogg rename to sound/weapons/gun_vp70_reload.ogg diff --git a/sound/weapons/gun_88m4_unload.ogg b/sound/weapons/gun_vp70_unload.ogg similarity index 100% rename from sound/weapons/gun_88m4_unload.ogg rename to sound/weapons/gun_vp70_unload.ogg diff --git a/sound/weapons/gun_88m4_v7.ogg b/sound/weapons/gun_vp70_v7.ogg similarity index 100% rename from sound/weapons/gun_88m4_v7.ogg rename to sound/weapons/gun_vp70_v7.ogg diff --git a/tgui/packages/tgui/interfaces/OverwatchConsole.jsx b/tgui/packages/tgui/interfaces/OverwatchConsole.jsx index 21288ea486..9ee3ad2f69 100644 --- a/tgui/packages/tgui/interfaces/OverwatchConsole.jsx +++ b/tgui/packages/tgui/interfaces/OverwatchConsole.jsx @@ -368,12 +368,13 @@ const SquadMonitor = (props) => { let determine_status_color = (status) => { let conscious = status.includes('Conscious'); + let incapacitated = status.includes('Incapacitated'); let unconscious = status.includes('Unconscious'); let state_color = 'red'; if (conscious) { state_color = 'green'; - } else if (unconscious) { + } else if (incapacitated || unconscious) { state_color = 'yellow'; } return state_color;